Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 1 | /* |
Marcin Juszkiewicz | b6839fb | 2023-05-10 10:03:01 +0200 | [diff] [blame] | 2 | * Copyright (c) 2015-2023, ARM Limited and Contributors. All rights reserved. |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <assert.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | #include <common/bl_common.h> |
Maxim Uvarov | a0b85c2 | 2020-12-14 10:17:44 +0000 | [diff] [blame] | 10 | #include <drivers/arm/pl061_gpio.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | #include <plat/common/platform.h> |
| 12 | |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 13 | #include "qemu_private.h" |
| 14 | |
Chen Baozi | f7d9aa8 | 2023-02-20 10:50:15 +0000 | [diff] [blame] | 15 | #define MAP_BL31_TOTAL MAP_REGION_FLAT( \ |
| 16 | BL31_BASE, \ |
| 17 | BL31_END - BL31_BASE, \ |
| 18 | MT_MEMORY | MT_RW | EL3_PAS) |
| 19 | #define MAP_BL31_RO MAP_REGION_FLAT( \ |
| 20 | BL_CODE_BASE, \ |
| 21 | BL_CODE_END - BL_CODE_BASE, \ |
| 22 | MT_CODE | EL3_PAS), \ |
| 23 | MAP_REGION_FLAT( \ |
| 24 | BL_RO_DATA_BASE, \ |
| 25 | BL_RO_DATA_END \ |
| 26 | - BL_RO_DATA_BASE, \ |
| 27 | MT_RO_DATA | EL3_PAS) |
| 28 | |
Chen Baozi | 097a43a | 2023-03-12 20:58:04 +0800 | [diff] [blame] | 29 | #if USE_COHERENT_MEM |
Chen Baozi | f7d9aa8 | 2023-02-20 10:50:15 +0000 | [diff] [blame] | 30 | #define MAP_BL_COHERENT_RAM MAP_REGION_FLAT( \ |
| 31 | BL_COHERENT_RAM_BASE, \ |
| 32 | BL_COHERENT_RAM_END \ |
| 33 | - BL_COHERENT_RAM_BASE, \ |
| 34 | MT_DEVICE | MT_RW | EL3_PAS) |
Chen Baozi | 097a43a | 2023-03-12 20:58:04 +0800 | [diff] [blame] | 35 | #endif |
Chen Baozi | f7d9aa8 | 2023-02-20 10:50:15 +0000 | [diff] [blame] | 36 | |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 37 | /* |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 38 | * Placeholder variables for copying the arguments that have been passed to |
| 39 | * BL3-1 from BL2. |
| 40 | */ |
| 41 | static entry_point_info_t bl32_image_ep_info; |
| 42 | static entry_point_info_t bl33_image_ep_info; |
| 43 | |
| 44 | /******************************************************************************* |
| 45 | * Perform any BL3-1 early platform setup. Here is an opportunity to copy |
John Tsichritzis | d653d33 | 2018-09-14 10:34:57 +0100 | [diff] [blame] | 46 | * parameters passed by the calling EL (S-EL1 in BL2 & EL3 in BL1) before |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 47 | * they are lost (potentially). This needs to be done before the MMU is |
| 48 | * initialized so that the memory layout can be used while creating page |
| 49 | * tables. BL2 has flushed this information to memory, so we are guaranteed |
| 50 | * to pick up good data. |
| 51 | ******************************************************************************/ |
Jens Wiklander | e22b91e | 2018-09-04 14:07:19 +0200 | [diff] [blame] | 52 | void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1, |
| 53 | u_register_t arg2, u_register_t arg3) |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 54 | { |
| 55 | /* Initialize the console to provide early debug support */ |
Michalis Pappas | cca6cb7 | 2018-03-04 15:43:38 +0800 | [diff] [blame] | 56 | qemu_console_init(); |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 57 | |
Marcin Juszkiewicz | b6839fb | 2023-05-10 10:03:01 +0200 | [diff] [blame] | 58 | /* Platform names have to be lowercase. */ |
| 59 | #ifdef PLAT_qemu_sbsa |
| 60 | sip_svc_init(); |
| 61 | #endif |
| 62 | |
Fu Wei | c2f7844 | 2017-05-27 21:21:42 +0800 | [diff] [blame] | 63 | /* |
| 64 | * Check params passed from BL2 |
| 65 | */ |
Jens Wiklander | e22b91e | 2018-09-04 14:07:19 +0200 | [diff] [blame] | 66 | bl_params_t *params_from_bl2 = (bl_params_t *)arg0; |
Fu Wei | c2f7844 | 2017-05-27 21:21:42 +0800 | [diff] [blame] | 67 | |
| 68 | assert(params_from_bl2); |
| 69 | assert(params_from_bl2->h.type == PARAM_BL_PARAMS); |
| 70 | assert(params_from_bl2->h.version >= VERSION_2); |
| 71 | |
| 72 | bl_params_node_t *bl_params = params_from_bl2->head; |
| 73 | |
| 74 | /* |
| 75 | * Copy BL33 and BL32 (if present), entry point information. |
| 76 | * They are stored in Secure RAM, in BL2's address space. |
| 77 | */ |
| 78 | while (bl_params) { |
| 79 | if (bl_params->image_id == BL32_IMAGE_ID) |
| 80 | bl32_image_ep_info = *bl_params->ep_info; |
| 81 | |
| 82 | if (bl_params->image_id == BL33_IMAGE_ID) |
| 83 | bl33_image_ep_info = *bl_params->ep_info; |
| 84 | |
| 85 | bl_params = bl_params->next_params_info; |
| 86 | } |
| 87 | |
| 88 | if (!bl33_image_ep_info.pc) |
| 89 | panic(); |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | void bl31_plat_arch_setup(void) |
| 93 | { |
Chen Baozi | f7d9aa8 | 2023-02-20 10:50:15 +0000 | [diff] [blame] | 94 | const mmap_region_t bl_regions[] = { |
| 95 | MAP_BL31_TOTAL, |
| 96 | MAP_BL31_RO, |
Chen Baozi | 097a43a | 2023-03-12 20:58:04 +0800 | [diff] [blame] | 97 | #if USE_COHERENT_MEM |
Chen Baozi | f7d9aa8 | 2023-02-20 10:50:15 +0000 | [diff] [blame] | 98 | MAP_BL_COHERENT_RAM, |
Chen Baozi | 097a43a | 2023-03-12 20:58:04 +0800 | [diff] [blame] | 99 | #endif |
Chen Baozi | f7d9aa8 | 2023-02-20 10:50:15 +0000 | [diff] [blame] | 100 | {0} |
| 101 | }; |
| 102 | |
| 103 | setup_page_tables(bl_regions, plat_qemu_get_mmap()); |
| 104 | |
| 105 | enable_mmu_el3(0); |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 106 | } |
| 107 | |
Maxim Uvarov | a0b85c2 | 2020-12-14 10:17:44 +0000 | [diff] [blame] | 108 | static void qemu_gpio_init(void) |
| 109 | { |
| 110 | #ifdef SECURE_GPIO_BASE |
| 111 | pl061_gpio_init(); |
| 112 | pl061_gpio_register(SECURE_GPIO_BASE, 0); |
| 113 | #endif |
| 114 | } |
| 115 | |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 116 | void bl31_platform_setup(void) |
| 117 | { |
Hongbo Zhang | 32338ec | 2018-04-19 13:06:07 +0800 | [diff] [blame] | 118 | plat_qemu_gic_init(); |
Maxim Uvarov | a0b85c2 | 2020-12-14 10:17:44 +0000 | [diff] [blame] | 119 | qemu_gpio_init(); |
Jens Wiklander | 52c798e | 2015-12-07 14:37:10 +0100 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | unsigned int plat_get_syscnt_freq2(void) |
| 123 | { |
| 124 | return SYS_COUNTER_FREQ_IN_TICKS; |
| 125 | } |
| 126 | |
| 127 | /******************************************************************************* |
| 128 | * Return a pointer to the 'entry_point_info' structure of the next image |
| 129 | * for the security state specified. BL3-3 corresponds to the non-secure |
| 130 | * image type while BL3-2 corresponds to the secure image type. A NULL |
| 131 | * pointer is returned if the image does not exist. |
| 132 | ******************************************************************************/ |
| 133 | entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type) |
| 134 | { |
| 135 | entry_point_info_t *next_image_info; |
| 136 | |
| 137 | assert(sec_state_is_valid(type)); |
| 138 | next_image_info = (type == NON_SECURE) |
| 139 | ? &bl33_image_ep_info : &bl32_image_ep_info; |
| 140 | /* |
| 141 | * None of the images on the ARM development platforms can have 0x0 |
| 142 | * as the entrypoint |
| 143 | */ |
| 144 | if (next_image_info->pc) |
| 145 | return next_image_info; |
| 146 | else |
| 147 | return NULL; |
| 148 | } |