Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 7 | #include <assert.h> |
Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 8 | #include <errno.h> |
Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 9 | #include <string.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | |
| 11 | #include <arch_helpers.h> |
| 12 | #include <common/bl_common.h> |
| 13 | #include <common/debug.h> |
| 14 | #include <common/desc_image_load.h> |
| 15 | #include <drivers/arm/pl011.h> |
| 16 | #include <drivers/generic_delay_timer.h> |
| 17 | #include <drivers/partition/partition.h> |
| 18 | #include <drivers/synopsys/dw_mmc.h> |
| 19 | #include <drivers/mmc.h> |
| 20 | #include <lib/mmio.h> |
| 21 | #include <lib/optee_utils.h> |
| 22 | #include <plat/common/platform.h> |
| 23 | |
Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 24 | #include "hi3798cv200.h" |
| 25 | #include "plat_private.h" |
| 26 | |
| 27 | /* Memory ranges for code and read only data sections */ |
| 28 | #define BL2_RO_BASE (unsigned long)(&__RO_START__) |
| 29 | #define BL2_RO_LIMIT (unsigned long)(&__RO_END__) |
| 30 | |
| 31 | /* Memory ranges for coherent memory section */ |
| 32 | #define BL2_COHERENT_RAM_BASE (unsigned long)(&__COHERENT_RAM_START__) |
| 33 | #define BL2_COHERENT_RAM_LIMIT (unsigned long)(&__COHERENT_RAM_END__) |
| 34 | |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 35 | static meminfo_t bl2_tzram_layout __aligned(CACHE_WRITEBACK_GRANULE); |
Jerome Forissier | 74a19f2 | 2018-11-08 11:57:30 +0000 | [diff] [blame] | 36 | static console_pl011_t console; |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 37 | |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 38 | /******************************************************************************* |
| 39 | * Transfer SCP_BL2 from Trusted RAM using the SCP Download protocol. |
| 40 | * Return 0 on success, -1 otherwise. |
| 41 | ******************************************************************************/ |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 42 | int plat_poplar_bl2_handle_scp_bl2(image_info_t *scp_bl2_image_info) |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 43 | { |
| 44 | /* |
| 45 | * This platform has no SCP_BL2 yet |
| 46 | */ |
| 47 | return 0; |
| 48 | } |
| 49 | |
| 50 | /******************************************************************************* |
| 51 | * Gets SPSR for BL32 entry |
| 52 | ******************************************************************************/ |
| 53 | uint32_t poplar_get_spsr_for_bl32_entry(void) |
| 54 | { |
| 55 | /* |
| 56 | * The Secure Payload Dispatcher service is responsible for |
| 57 | * setting the SPSR prior to entry into the BL3-2 image. |
| 58 | */ |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | /******************************************************************************* |
| 63 | * Gets SPSR for BL33 entry |
| 64 | ******************************************************************************/ |
| 65 | #ifndef AARCH32 |
| 66 | uint32_t poplar_get_spsr_for_bl33_entry(void) |
| 67 | { |
| 68 | unsigned long el_status; |
| 69 | unsigned int mode; |
| 70 | uint32_t spsr; |
| 71 | |
| 72 | /* Figure out what mode we enter the non-secure world in */ |
| 73 | el_status = read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL2_SHIFT; |
| 74 | el_status &= ID_AA64PFR0_ELX_MASK; |
| 75 | |
| 76 | mode = (el_status) ? MODE_EL2 : MODE_EL1; |
| 77 | |
| 78 | /* |
| 79 | * TODO: Consider the possibility of specifying the SPSR in |
| 80 | * the FIP ToC and allowing the platform to have a say as |
| 81 | * well. |
| 82 | */ |
| 83 | spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS); |
| 84 | return spsr; |
| 85 | } |
| 86 | #else |
| 87 | uint32_t poplar_get_spsr_for_bl33_entry(void) |
| 88 | { |
| 89 | unsigned int hyp_status, mode, spsr; |
| 90 | |
| 91 | hyp_status = GET_VIRT_EXT(read_id_pfr1()); |
| 92 | |
| 93 | mode = (hyp_status) ? MODE32_hyp : MODE32_svc; |
| 94 | |
| 95 | /* |
| 96 | * TODO: Consider the possibility of specifying the SPSR in |
| 97 | * the FIP ToC and allowing the platform to have a say as |
| 98 | * well. |
| 99 | */ |
| 100 | spsr = SPSR_MODE32(mode, plat_get_ns_image_entrypoint() & 0x1, |
| 101 | SPSR_E_LITTLE, DISABLE_ALL_EXCEPTIONS); |
| 102 | return spsr; |
| 103 | } |
| 104 | #endif /* AARCH32 */ |
| 105 | |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 106 | int poplar_bl2_handle_post_image_load(unsigned int image_id) |
| 107 | { |
| 108 | int err = 0; |
| 109 | bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id); |
Victor Chong | aa03347 | 2018-02-01 00:35:39 +0900 | [diff] [blame] | 110 | #ifdef SPD_opteed |
| 111 | bl_mem_params_node_t *pager_mem_params = NULL; |
| 112 | bl_mem_params_node_t *paged_mem_params = NULL; |
| 113 | #endif |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 114 | |
| 115 | assert(bl_mem_params); |
| 116 | |
| 117 | switch (image_id) { |
| 118 | #ifdef AARCH64 |
| 119 | case BL32_IMAGE_ID: |
Victor Chong | aa03347 | 2018-02-01 00:35:39 +0900 | [diff] [blame] | 120 | #ifdef SPD_opteed |
| 121 | pager_mem_params = get_bl_mem_params_node(BL32_EXTRA1_IMAGE_ID); |
| 122 | assert(pager_mem_params); |
| 123 | |
| 124 | paged_mem_params = get_bl_mem_params_node(BL32_EXTRA2_IMAGE_ID); |
| 125 | assert(paged_mem_params); |
| 126 | |
| 127 | err = parse_optee_header(&bl_mem_params->ep_info, |
| 128 | &pager_mem_params->image_info, |
| 129 | &paged_mem_params->image_info); |
| 130 | if (err != 0) { |
| 131 | WARN("OPTEE header parse error.\n"); |
| 132 | } |
| 133 | |
| 134 | /* |
| 135 | * OP-TEE expect to receive DTB address in x2. |
| 136 | * This will be copied into x2 by dispatcher. |
| 137 | * Set this (arg3) if necessary |
| 138 | */ |
| 139 | /* bl_mem_params->ep_info.args.arg3 = PLAT_HIKEY_DT_BASE; */ |
| 140 | #endif |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 141 | bl_mem_params->ep_info.spsr = poplar_get_spsr_for_bl32_entry(); |
| 142 | break; |
| 143 | #endif |
| 144 | |
| 145 | case BL33_IMAGE_ID: |
| 146 | /* BL33 expects to receive the primary CPU MPID (through r0) */ |
| 147 | bl_mem_params->ep_info.args.arg0 = 0xffff & read_mpidr(); |
| 148 | bl_mem_params->ep_info.spsr = poplar_get_spsr_for_bl33_entry(); |
| 149 | break; |
| 150 | |
| 151 | #ifdef SCP_BL2_BASE |
| 152 | case SCP_BL2_IMAGE_ID: |
| 153 | /* The subsequent handling of SCP_BL2 is platform specific */ |
| 154 | err = plat_poplar_bl2_handle_scp_bl2(&bl_mem_params->image_info); |
| 155 | if (err) { |
| 156 | WARN("Failure in platform-specific handling of SCP_BL2 image.\n"); |
| 157 | } |
| 158 | break; |
| 159 | #endif |
Jonathan Wright | ff957ed | 2018-03-14 15:24:00 +0000 | [diff] [blame] | 160 | default: |
| 161 | /* Do nothing in default case */ |
| 162 | break; |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | return err; |
| 166 | } |
| 167 | |
| 168 | /******************************************************************************* |
| 169 | * This function can be used by the platforms to update/use image |
| 170 | * information for given `image_id`. |
| 171 | ******************************************************************************/ |
| 172 | int bl2_plat_handle_post_image_load(unsigned int image_id) |
| 173 | { |
| 174 | return poplar_bl2_handle_post_image_load(image_id); |
| 175 | } |
| 176 | |
Antonio Nino Diaz | e93cde1 | 2018-09-24 17:15:15 +0100 | [diff] [blame] | 177 | void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1, |
| 178 | u_register_t arg2, u_register_t arg3) |
Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 179 | { |
Antonio Nino Diaz | e93cde1 | 2018-09-24 17:15:15 +0100 | [diff] [blame] | 180 | struct meminfo *mem_layout = (struct meminfo *)arg1; |
Shawn Guo | d793ff0 | 2018-09-27 16:48:00 +0800 | [diff] [blame] | 181 | #if !POPLAR_RECOVERY |
Haojian Zhuang | 3eff409 | 2018-08-04 18:07:26 +0800 | [diff] [blame] | 182 | struct mmc_device_info info; |
| 183 | |
Victor Chong | 539408d | 2018-01-03 01:53:08 +0900 | [diff] [blame] | 184 | dw_mmc_params_t params = EMMC_INIT_PARAMS(POPLAR_EMMC_DESC_BASE); |
Victor Chong | f0c7c61 | 2018-01-16 00:29:47 +0900 | [diff] [blame] | 185 | #endif |
Victor Chong | 539408d | 2018-01-03 01:53:08 +0900 | [diff] [blame] | 186 | |
Jerome Forissier | 74a19f2 | 2018-11-08 11:57:30 +0000 | [diff] [blame] | 187 | console_pl011_register(PL011_UART0_BASE, PL011_UART0_CLK_IN_HZ, |
| 188 | PL011_BAUDRATE, &console); |
Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 189 | |
| 190 | /* Enable arch timer */ |
| 191 | generic_delay_timer_init(); |
| 192 | |
| 193 | bl2_tzram_layout = *mem_layout; |
Victor Chong | 539408d | 2018-01-03 01:53:08 +0900 | [diff] [blame] | 194 | |
Victor Chong | f0c7c61 | 2018-01-16 00:29:47 +0900 | [diff] [blame] | 195 | #if !POPLAR_RECOVERY |
Victor Chong | 539408d | 2018-01-03 01:53:08 +0900 | [diff] [blame] | 196 | /* SoC-specific emmc register are initialized/configured by bootrom */ |
| 197 | INFO("BL2: initializing emmc\n"); |
Haojian Zhuang | 3eff409 | 2018-08-04 18:07:26 +0800 | [diff] [blame] | 198 | info.mmc_dev_type = MMC_IS_EMMC; |
| 199 | dw_mmc_init(¶ms, &info); |
Victor Chong | f0c7c61 | 2018-01-16 00:29:47 +0900 | [diff] [blame] | 200 | #endif |
Victor Chong | 539408d | 2018-01-03 01:53:08 +0900 | [diff] [blame] | 201 | |
| 202 | plat_io_setup(); |
Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | void bl2_plat_arch_setup(void) |
| 206 | { |
| 207 | plat_configure_mmu_el1(bl2_tzram_layout.total_base, |
| 208 | bl2_tzram_layout.total_size, |
| 209 | BL2_RO_BASE, |
| 210 | BL2_RO_LIMIT, |
| 211 | BL2_COHERENT_RAM_BASE, |
| 212 | BL2_COHERENT_RAM_LIMIT); |
| 213 | } |
| 214 | |
| 215 | void bl2_platform_setup(void) |
| 216 | { |
Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 217 | } |
| 218 | |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 219 | uintptr_t plat_get_ns_image_entrypoint(void) |
Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 220 | { |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 221 | #ifdef PRELOADED_BL33_BASE |
| 222 | return PRELOADED_BL33_BASE; |
| 223 | #else |
Victor Chong | 6df271c | 2017-10-27 00:09:14 +0900 | [diff] [blame] | 224 | return PLAT_POPLAR_NS_IMAGE_OFFSET; |
Victor Chong | 175dd8a | 2018-02-01 00:35:22 +0900 | [diff] [blame] | 225 | #endif |
Jorge Ramirez-Ortiz | a29d9a6 | 2017-06-28 10:11:31 +0200 | [diff] [blame] | 226 | } |