Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 2 | * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 7 | #include <arm_config.h> |
| 8 | #include <arm_def.h> |
Antonio Nino Diaz | 7289f92 | 2017-11-09 11:34:09 +0000 | [diff] [blame] | 9 | #include <arm_spm_def.h> |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 10 | #include <assert.h> |
| 11 | #include <cci.h> |
Soby Mathew | 7356b1e | 2016-03-24 10:12:42 +0000 | [diff] [blame] | 12 | #include <ccn.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 13 | #include <debug.h> |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 14 | #include <gicv2.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 15 | #include <mmio.h> |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 16 | #include <plat_arm.h> |
Antonio Nino Diaz | 7289f92 | 2017-11-09 11:34:09 +0000 | [diff] [blame] | 17 | #include <secure_partition.h> |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 18 | #include <v2m_def.h> |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 19 | #include "../fvp_def.h" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 20 | |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 21 | /* Defines for GIC Driver build time selection */ |
| 22 | #define FVP_GICV2 1 |
| 23 | #define FVP_GICV3 2 |
| 24 | #define FVP_GICV3_LEGACY 3 |
| 25 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 26 | /******************************************************************************* |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 27 | * arm_config holds the characteristics of the differences between the three FVP |
| 28 | * platforms (Base, A53_A57 & Foundation). It will be populated during cold boot |
Vikram Kanigiri | fbb1301 | 2016-02-15 11:54:14 +0000 | [diff] [blame] | 29 | * at each boot stage by the primary before enabling the MMU (to allow |
| 30 | * interconnect configuration) & used thereafter. Each BL will have its own copy |
| 31 | * to allow independent operation. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 32 | ******************************************************************************/ |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 33 | arm_config_t arm_config; |
Soby Mathew | b08bc04 | 2014-09-03 17:48:44 +0100 | [diff] [blame] | 34 | |
| 35 | #define MAP_DEVICE0 MAP_REGION_FLAT(DEVICE0_BASE, \ |
| 36 | DEVICE0_SIZE, \ |
| 37 | MT_DEVICE | MT_RW | MT_SECURE) |
| 38 | |
| 39 | #define MAP_DEVICE1 MAP_REGION_FLAT(DEVICE1_BASE, \ |
| 40 | DEVICE1_SIZE, \ |
| 41 | MT_DEVICE | MT_RW | MT_SECURE) |
| 42 | |
Sandrine Bailleux | d9160a5 | 2017-05-26 15:48:10 +0100 | [diff] [blame] | 43 | /* |
| 44 | * Need to be mapped with write permissions in order to set a new non-volatile |
| 45 | * counter value. |
| 46 | */ |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 47 | #define MAP_DEVICE2 MAP_REGION_FLAT(DEVICE2_BASE, \ |
| 48 | DEVICE2_SIZE, \ |
Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 49 | MT_DEVICE | MT_RW | MT_SECURE) |
Juan Castillo | 31a68f0 | 2015-04-14 12:49:03 +0100 | [diff] [blame] | 50 | |
| 51 | |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 52 | /* |
Sandrine Bailleux | 4a1267a | 2016-05-18 16:11:47 +0100 | [diff] [blame] | 53 | * Table of memory regions for various BL stages to map using the MMU. |
| 54 | * This doesn't include Trusted SRAM as arm_setup_page_tables() already |
| 55 | * takes care of mapping it. |
Sandrine Bailleux | 889ca03 | 2016-06-14 17:01:00 +0100 | [diff] [blame] | 56 | * |
| 57 | * The flash needs to be mapped as writable in order to erase the FIP's Table of |
| 58 | * Contents in case of unrecoverable error (see plat_error_handler()). |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 59 | */ |
Masahiro Yamada | 441bfdd | 2016-12-25 23:36:24 +0900 | [diff] [blame] | 60 | #ifdef IMAGE_BL1 |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 61 | const mmap_region_t plat_arm_mmap[] = { |
| 62 | ARM_MAP_SHARED_RAM, |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 63 | V2M_MAP_FLASH0_RW, |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 64 | V2M_MAP_IOFPGA, |
Soby Mathew | b08bc04 | 2014-09-03 17:48:44 +0100 | [diff] [blame] | 65 | MAP_DEVICE0, |
| 66 | MAP_DEVICE1, |
Yatharth Kochar | 736a3bf | 2015-10-11 14:14:55 +0100 | [diff] [blame] | 67 | #if TRUSTED_BOARD_BOOT |
Sandrine Bailleux | d9160a5 | 2017-05-26 15:48:10 +0100 | [diff] [blame] | 68 | /* To access the Root of Trust Public Key registers. */ |
| 69 | MAP_DEVICE2, |
| 70 | /* Map DRAM to authenticate NS_BL2U image. */ |
Yatharth Kochar | 736a3bf | 2015-10-11 14:14:55 +0100 | [diff] [blame] | 71 | ARM_MAP_NS_DRAM1, |
| 72 | #endif |
Soby Mathew | b08bc04 | 2014-09-03 17:48:44 +0100 | [diff] [blame] | 73 | {0} |
| 74 | }; |
| 75 | #endif |
Masahiro Yamada | 441bfdd | 2016-12-25 23:36:24 +0900 | [diff] [blame] | 76 | #ifdef IMAGE_BL2 |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 77 | const mmap_region_t plat_arm_mmap[] = { |
| 78 | ARM_MAP_SHARED_RAM, |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 79 | V2M_MAP_FLASH0_RW, |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 80 | V2M_MAP_IOFPGA, |
Soby Mathew | b08bc04 | 2014-09-03 17:48:44 +0100 | [diff] [blame] | 81 | MAP_DEVICE0, |
| 82 | MAP_DEVICE1, |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 83 | ARM_MAP_NS_DRAM1, |
Roberto Vargas | f8fda10 | 2017-08-08 11:27:20 +0100 | [diff] [blame] | 84 | #ifdef AARCH64 |
| 85 | ARM_MAP_DRAM2, |
| 86 | #endif |
Sandrine Bailleux | b260c3a | 2017-08-30 10:59:22 +0100 | [diff] [blame] | 87 | #ifdef SPD_tspd |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 88 | ARM_MAP_TSP_SEC_MEM, |
Sandrine Bailleux | b260c3a | 2017-08-30 10:59:22 +0100 | [diff] [blame] | 89 | #endif |
Sandrine Bailleux | d9160a5 | 2017-05-26 15:48:10 +0100 | [diff] [blame] | 90 | #if TRUSTED_BOARD_BOOT |
| 91 | /* To access the Root of Trust Public Key registers. */ |
| 92 | MAP_DEVICE2, |
| 93 | #endif |
Antonio Nino Diaz | 7289f92 | 2017-11-09 11:34:09 +0000 | [diff] [blame] | 94 | #if ENABLE_SPM |
| 95 | ARM_SP_IMAGE_MMAP, |
| 96 | #endif |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 97 | #if ARM_BL31_IN_DRAM |
| 98 | ARM_MAP_BL31_SEC_DRAM, |
| 99 | #endif |
Jens Wiklander | 0814c6a | 2017-08-25 10:07:20 +0200 | [diff] [blame] | 100 | #ifdef SPD_opteed |
Soby Mathew | 874fc9e | 2017-09-01 13:43:50 +0100 | [diff] [blame] | 101 | ARM_MAP_OPTEE_CORE_MEM, |
Jens Wiklander | 0814c6a | 2017-08-25 10:07:20 +0200 | [diff] [blame] | 102 | ARM_OPTEE_PAGEABLE_LOAD_MEM, |
| 103 | #endif |
Soby Mathew | b08bc04 | 2014-09-03 17:48:44 +0100 | [diff] [blame] | 104 | {0} |
| 105 | }; |
| 106 | #endif |
Masahiro Yamada | 441bfdd | 2016-12-25 23:36:24 +0900 | [diff] [blame] | 107 | #ifdef IMAGE_BL2U |
Yatharth Kochar | 3a11eda | 2015-10-14 15:28:11 +0100 | [diff] [blame] | 108 | const mmap_region_t plat_arm_mmap[] = { |
| 109 | MAP_DEVICE0, |
| 110 | V2M_MAP_IOFPGA, |
| 111 | {0} |
| 112 | }; |
| 113 | #endif |
Masahiro Yamada | 441bfdd | 2016-12-25 23:36:24 +0900 | [diff] [blame] | 114 | #ifdef IMAGE_BL31 |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 115 | const mmap_region_t plat_arm_mmap[] = { |
| 116 | ARM_MAP_SHARED_RAM, |
Soby Mathew | 9ca2806 | 2017-10-11 16:08:58 +0100 | [diff] [blame] | 117 | ARM_MAP_EL3_TZC_DRAM, |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 118 | V2M_MAP_IOFPGA, |
Soby Mathew | b08bc04 | 2014-09-03 17:48:44 +0100 | [diff] [blame] | 119 | MAP_DEVICE0, |
| 120 | MAP_DEVICE1, |
Roberto Vargas | a1c16b6 | 2017-08-03 09:16:43 +0100 | [diff] [blame] | 121 | ARM_V2M_MAP_MEM_PROTECT, |
Antonio Nino Diaz | 7289f92 | 2017-11-09 11:34:09 +0000 | [diff] [blame] | 122 | #if ENABLE_SPM |
| 123 | ARM_SPM_BUF_EL3_MMAP, |
| 124 | #endif |
| 125 | {0} |
| 126 | }; |
| 127 | |
| 128 | #if ENABLE_SPM && defined(IMAGE_BL31) |
| 129 | const mmap_region_t plat_arm_secure_partition_mmap[] = { |
| 130 | V2M_MAP_IOFPGA_EL0, /* for the UART */ |
| 131 | ARM_SP_IMAGE_MMAP, |
| 132 | ARM_SP_IMAGE_NS_BUF_MMAP, |
| 133 | ARM_SP_IMAGE_RW_MMAP, |
| 134 | ARM_SPM_BUF_EL0_MMAP, |
Soby Mathew | b08bc04 | 2014-09-03 17:48:44 +0100 | [diff] [blame] | 135 | {0} |
| 136 | }; |
| 137 | #endif |
Antonio Nino Diaz | 7289f92 | 2017-11-09 11:34:09 +0000 | [diff] [blame] | 138 | #endif |
Masahiro Yamada | 441bfdd | 2016-12-25 23:36:24 +0900 | [diff] [blame] | 139 | #ifdef IMAGE_BL32 |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 140 | const mmap_region_t plat_arm_mmap[] = { |
Soby Mathew | 0d268dc | 2016-07-11 14:13:56 +0100 | [diff] [blame] | 141 | #ifdef AARCH32 |
| 142 | ARM_MAP_SHARED_RAM, |
| 143 | #endif |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 144 | V2M_MAP_IOFPGA, |
Soby Mathew | b08bc04 | 2014-09-03 17:48:44 +0100 | [diff] [blame] | 145 | MAP_DEVICE0, |
| 146 | MAP_DEVICE1, |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 147 | {0} |
| 148 | }; |
Soby Mathew | b08bc04 | 2014-09-03 17:48:44 +0100 | [diff] [blame] | 149 | #endif |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 150 | |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 151 | ARM_CASSERT_MMAP |
Soby Mathew | 13ee968 | 2015-01-22 11:22:22 +0000 | [diff] [blame] | 152 | |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 153 | #if FVP_INTERCONNECT_DRIVER != FVP_CCN |
| 154 | static const int fvp_cci400_map[] = { |
| 155 | PLAT_FVP_CCI400_CLUS0_SL_PORT, |
| 156 | PLAT_FVP_CCI400_CLUS1_SL_PORT, |
| 157 | }; |
| 158 | |
| 159 | static const int fvp_cci5xx_map[] = { |
| 160 | PLAT_FVP_CCI5XX_CLUS0_SL_PORT, |
| 161 | PLAT_FVP_CCI5XX_CLUS1_SL_PORT, |
| 162 | }; |
| 163 | |
| 164 | static unsigned int get_interconnect_master(void) |
| 165 | { |
| 166 | unsigned int master; |
| 167 | u_register_t mpidr; |
| 168 | |
| 169 | mpidr = read_mpidr_el1(); |
| 170 | master = (arm_config.flags & ARM_CONFIG_FVP_SHIFTED_AFF) ? |
| 171 | MPIDR_AFFLVL2_VAL(mpidr) : MPIDR_AFFLVL1_VAL(mpidr); |
| 172 | |
| 173 | assert(master < FVP_CLUSTER_COUNT); |
| 174 | return master; |
| 175 | } |
Antonio Nino Diaz | 7289f92 | 2017-11-09 11:34:09 +0000 | [diff] [blame] | 176 | #endif |
| 177 | |
| 178 | #if ENABLE_SPM && defined(IMAGE_BL31) |
| 179 | /* |
| 180 | * Boot information passed to a secure partition during initialisation. Linear |
| 181 | * indices in MP information will be filled at runtime. |
| 182 | */ |
| 183 | static secure_partition_mp_info_t sp_mp_info[] = { |
| 184 | [0] = {0x80000000, 0}, |
| 185 | [1] = {0x80000001, 0}, |
| 186 | [2] = {0x80000002, 0}, |
| 187 | [3] = {0x80000003, 0}, |
| 188 | [4] = {0x80000100, 0}, |
| 189 | [5] = {0x80000101, 0}, |
| 190 | [6] = {0x80000102, 0}, |
| 191 | [7] = {0x80000103, 0}, |
| 192 | }; |
| 193 | |
| 194 | const secure_partition_boot_info_t plat_arm_secure_partition_boot_info = { |
| 195 | .h.type = PARAM_SP_IMAGE_BOOT_INFO, |
| 196 | .h.version = VERSION_1, |
| 197 | .h.size = sizeof(secure_partition_boot_info_t), |
| 198 | .h.attr = 0, |
| 199 | .sp_mem_base = ARM_SP_IMAGE_BASE, |
| 200 | .sp_mem_limit = ARM_SP_IMAGE_LIMIT, |
| 201 | .sp_image_base = ARM_SP_IMAGE_BASE, |
| 202 | .sp_stack_base = PLAT_SP_IMAGE_STACK_BASE, |
| 203 | .sp_heap_base = ARM_SP_IMAGE_HEAP_BASE, |
| 204 | .sp_ns_comm_buf_base = ARM_SP_IMAGE_NS_BUF_BASE, |
| 205 | .sp_shared_buf_base = PLAT_SPM_BUF_BASE, |
| 206 | .sp_image_size = ARM_SP_IMAGE_SIZE, |
| 207 | .sp_pcpu_stack_size = PLAT_SP_IMAGE_STACK_PCPU_SIZE, |
| 208 | .sp_heap_size = ARM_SP_IMAGE_HEAP_SIZE, |
| 209 | .sp_ns_comm_buf_size = ARM_SP_IMAGE_NS_BUF_SIZE, |
| 210 | .sp_shared_buf_size = PLAT_SPM_BUF_SIZE, |
| 211 | .num_sp_mem_regions = ARM_SP_IMAGE_NUM_MEM_REGIONS, |
| 212 | .num_cpus = PLATFORM_CORE_COUNT, |
| 213 | .mp_info = &sp_mp_info[0], |
| 214 | }; |
| 215 | |
| 216 | const struct mmap_region *plat_get_secure_partition_mmap(void *cookie) |
| 217 | { |
| 218 | return plat_arm_secure_partition_mmap; |
| 219 | } |
| 220 | |
| 221 | const struct secure_partition_boot_info *plat_get_secure_partition_boot_info( |
| 222 | void *cookie) |
| 223 | { |
| 224 | return &plat_arm_secure_partition_boot_info; |
| 225 | } |
| 226 | |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 227 | #endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 228 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 229 | /******************************************************************************* |
| 230 | * A single boot loader stack is expected to work on both the Foundation FVP |
| 231 | * models and the two flavours of the Base FVP models (AEMv8 & Cortex). The |
| 232 | * SYS_ID register provides a mechanism for detecting the differences between |
| 233 | * these platforms. This information is stored in a per-BL array to allow the |
| 234 | * code to take the correct path.Per BL platform configuration. |
| 235 | ******************************************************************************/ |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 236 | void fvp_config_setup(void) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 237 | { |
Soby Mathew | 8e2f287 | 2014-08-14 12:49:05 +0100 | [diff] [blame] | 238 | unsigned int rev, hbi, bld, arch, sys_id; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 239 | |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 240 | sys_id = mmio_read_32(V2M_SYSREGS_BASE + V2M_SYS_ID); |
| 241 | rev = (sys_id >> V2M_SYS_ID_REV_SHIFT) & V2M_SYS_ID_REV_MASK; |
| 242 | hbi = (sys_id >> V2M_SYS_ID_HBI_SHIFT) & V2M_SYS_ID_HBI_MASK; |
| 243 | bld = (sys_id >> V2M_SYS_ID_BLD_SHIFT) & V2M_SYS_ID_BLD_MASK; |
| 244 | arch = (sys_id >> V2M_SYS_ID_ARCH_SHIFT) & V2M_SYS_ID_ARCH_MASK; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 245 | |
Andrew Thoelke | 960347d | 2014-06-26 14:27:26 +0100 | [diff] [blame] | 246 | if (arch != ARCH_MODEL) { |
| 247 | ERROR("This firmware is for FVP models\n"); |
James Morrissey | 40a6f64 | 2014-02-10 14:24:36 +0000 | [diff] [blame] | 248 | panic(); |
Andrew Thoelke | 960347d | 2014-06-26 14:27:26 +0100 | [diff] [blame] | 249 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 250 | |
| 251 | /* |
| 252 | * The build field in the SYS_ID tells which variant of the GIC |
| 253 | * memory is implemented by the model. |
| 254 | */ |
| 255 | switch (bld) { |
| 256 | case BLD_GIC_VE_MMAP: |
Soby Mathew | cf022c5 | 2016-01-13 17:06:00 +0000 | [diff] [blame] | 257 | ERROR("Legacy Versatile Express memory map for GIC peripheral" |
| 258 | " is not supported\n"); |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 259 | panic(); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 260 | break; |
| 261 | case BLD_GIC_A53A57_MMAP: |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 262 | break; |
| 263 | default: |
Andrew Thoelke | 960347d | 2014-06-26 14:27:26 +0100 | [diff] [blame] | 264 | ERROR("Unsupported board build %x\n", bld); |
| 265 | panic(); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | /* |
| 269 | * The hbi field in the SYS_ID is 0x020 for the Base FVP & 0x010 |
| 270 | * for the Foundation FVP. |
| 271 | */ |
| 272 | switch (hbi) { |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 273 | case HBI_FOUNDATION_FVP: |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 274 | arm_config.flags = 0; |
Andrew Thoelke | 960347d | 2014-06-26 14:27:26 +0100 | [diff] [blame] | 275 | |
| 276 | /* |
| 277 | * Check for supported revisions of Foundation FVP |
| 278 | * Allow future revisions to run but emit warning diagnostic |
| 279 | */ |
| 280 | switch (rev) { |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 281 | case REV_FOUNDATION_FVP_V2_0: |
| 282 | case REV_FOUNDATION_FVP_V2_1: |
| 283 | case REV_FOUNDATION_FVP_v9_1: |
Sandrine Bailleux | 8b33d70 | 2016-09-22 09:46:50 +0100 | [diff] [blame] | 284 | case REV_FOUNDATION_FVP_v9_6: |
Andrew Thoelke | 960347d | 2014-06-26 14:27:26 +0100 | [diff] [blame] | 285 | break; |
| 286 | default: |
| 287 | WARN("Unrecognized Foundation FVP revision %x\n", rev); |
| 288 | break; |
| 289 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 290 | break; |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 291 | case HBI_BASE_FVP: |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 292 | arm_config.flags |= (ARM_CONFIG_BASE_MMAP | ARM_CONFIG_HAS_TZC); |
Andrew Thoelke | 960347d | 2014-06-26 14:27:26 +0100 | [diff] [blame] | 293 | |
| 294 | /* |
| 295 | * Check for supported revisions |
| 296 | * Allow future revisions to run but emit warning diagnostic |
| 297 | */ |
| 298 | switch (rev) { |
Dan Handley | 2b6b574 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 299 | case REV_BASE_FVP_V0: |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 300 | arm_config.flags |= ARM_CONFIG_FVP_HAS_CCI400; |
| 301 | break; |
| 302 | case REV_BASE_FVP_REVC: |
Isla Mitchell | c7860cf | 2017-08-17 12:25:34 +0100 | [diff] [blame] | 303 | arm_config.flags |= (ARM_CONFIG_FVP_HAS_SMMUV3 | |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 304 | ARM_CONFIG_FVP_HAS_CCI5XX); |
Andrew Thoelke | 960347d | 2014-06-26 14:27:26 +0100 | [diff] [blame] | 305 | break; |
| 306 | default: |
| 307 | WARN("Unrecognized Base FVP revision %x\n", rev); |
| 308 | break; |
| 309 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 310 | break; |
| 311 | default: |
Andrew Thoelke | 960347d | 2014-06-26 14:27:26 +0100 | [diff] [blame] | 312 | ERROR("Unsupported board HBI number 0x%x\n", hbi); |
| 313 | panic(); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 314 | } |
Isla Mitchell | c7860cf | 2017-08-17 12:25:34 +0100 | [diff] [blame] | 315 | |
| 316 | /* |
| 317 | * We assume that the presence of MT bit, and therefore shifted |
| 318 | * affinities, is uniform across the platform: either all CPUs, or no |
| 319 | * CPUs implement it. |
| 320 | */ |
| 321 | if (read_mpidr_el1() & MPIDR_MT_MASK) |
| 322 | arm_config.flags |= ARM_CONFIG_FVP_SHIFTED_AFF; |
Sandrine Bailleux | 3fa9847 | 2014-03-31 11:25:18 +0100 | [diff] [blame] | 323 | } |
Vikram Kanigiri | 9637745 | 2014-04-24 11:02:16 +0100 | [diff] [blame] | 324 | |
Vikram Kanigiri | 4e97e54 | 2015-02-26 15:25:58 +0000 | [diff] [blame] | 325 | |
Vikram Kanigiri | fbb1301 | 2016-02-15 11:54:14 +0000 | [diff] [blame] | 326 | void fvp_interconnect_init(void) |
Vikram Kanigiri | 9637745 | 2014-04-24 11:02:16 +0100 | [diff] [blame] | 327 | { |
Soby Mathew | 7356b1e | 2016-03-24 10:12:42 +0000 | [diff] [blame] | 328 | #if FVP_INTERCONNECT_DRIVER == FVP_CCN |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 329 | if (ccn_get_part0_id(PLAT_ARM_CCN_BASE) != CCN_502_PART0_ID) { |
| 330 | ERROR("Unrecognized CCN variant detected. Only CCN-502" |
| 331 | " is supported"); |
| 332 | panic(); |
| 333 | } |
| 334 | |
| 335 | plat_arm_interconnect_init(); |
| 336 | #else |
| 337 | uintptr_t cci_base = 0; |
| 338 | const int *cci_map = 0; |
| 339 | unsigned int map_size = 0; |
| 340 | |
| 341 | if (!(arm_config.flags & (ARM_CONFIG_FVP_HAS_CCI400 | |
| 342 | ARM_CONFIG_FVP_HAS_CCI5XX))) { |
| 343 | return; |
| 344 | } |
| 345 | |
| 346 | /* Initialize the right interconnect */ |
| 347 | if (arm_config.flags & ARM_CONFIG_FVP_HAS_CCI5XX) { |
| 348 | cci_base = PLAT_FVP_CCI5XX_BASE; |
| 349 | cci_map = fvp_cci5xx_map; |
| 350 | map_size = ARRAY_SIZE(fvp_cci5xx_map); |
| 351 | } else if (arm_config.flags & ARM_CONFIG_FVP_HAS_CCI400) { |
| 352 | cci_base = PLAT_FVP_CCI400_BASE; |
| 353 | cci_map = fvp_cci400_map; |
| 354 | map_size = ARRAY_SIZE(fvp_cci400_map); |
Soby Mathew | 7356b1e | 2016-03-24 10:12:42 +0000 | [diff] [blame] | 355 | } |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 356 | |
| 357 | assert(cci_base); |
| 358 | assert(cci_map); |
| 359 | cci_init(cci_base, cci_map, map_size); |
| 360 | #endif |
Dan Handley | be234f9 | 2014-08-04 16:11:15 +0100 | [diff] [blame] | 361 | } |
| 362 | |
Vikram Kanigiri | fbb1301 | 2016-02-15 11:54:14 +0000 | [diff] [blame] | 363 | void fvp_interconnect_enable(void) |
Dan Handley | be234f9 | 2014-08-04 16:11:15 +0100 | [diff] [blame] | 364 | { |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 365 | #if FVP_INTERCONNECT_DRIVER == FVP_CCN |
| 366 | plat_arm_interconnect_enter_coherency(); |
| 367 | #else |
| 368 | unsigned int master; |
| 369 | |
| 370 | if (arm_config.flags & (ARM_CONFIG_FVP_HAS_CCI400 | |
| 371 | ARM_CONFIG_FVP_HAS_CCI5XX)) { |
| 372 | master = get_interconnect_master(); |
| 373 | cci_enable_snoop_dvm_reqs(master); |
| 374 | } |
| 375 | #endif |
Vikram Kanigiri | 4e97e54 | 2015-02-26 15:25:58 +0000 | [diff] [blame] | 376 | } |
| 377 | |
Vikram Kanigiri | fbb1301 | 2016-02-15 11:54:14 +0000 | [diff] [blame] | 378 | void fvp_interconnect_disable(void) |
Vikram Kanigiri | 4e97e54 | 2015-02-26 15:25:58 +0000 | [diff] [blame] | 379 | { |
Jeenu Viswambharan | 9e78b92 | 2017-07-18 15:42:50 +0100 | [diff] [blame] | 380 | #if FVP_INTERCONNECT_DRIVER == FVP_CCN |
| 381 | plat_arm_interconnect_exit_coherency(); |
| 382 | #else |
| 383 | unsigned int master; |
| 384 | |
| 385 | if (arm_config.flags & (ARM_CONFIG_FVP_HAS_CCI400 | |
| 386 | ARM_CONFIG_FVP_HAS_CCI5XX)) { |
| 387 | master = get_interconnect_master(); |
| 388 | cci_disable_snoop_dvm_reqs(master); |
| 389 | } |
| 390 | #endif |
Vikram Kanigiri | 9637745 | 2014-04-24 11:02:16 +0100 | [diff] [blame] | 391 | } |