blob: bc033130c3fbd0f513da915e51815d658c224acb [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Jeenu Viswambharan955242d2017-07-18 15:42:50 +01002 * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Dan Handley60eea552015-03-19 19:17:53 +00007#include <arm_config.h>
8#include <arm_def.h>
Jeenu Viswambharan955242d2017-07-18 15:42:50 +01009#include <assert.h>
10#include <cci.h>
Soby Mathew71237872016-03-24 10:12:42 +000011#include <ccn.h>
Dan Handley35e98e52014-04-09 13:13:04 +010012#include <debug.h>
Achin Gupta27573c52015-11-03 14:18:34 +000013#include <gicv2.h>
Dan Handley97043ac2014-04-09 13:14:54 +010014#include <mmio.h>
Dan Handley60eea552015-03-19 19:17:53 +000015#include <plat_arm.h>
16#include <v2m_def.h>
Dan Handley5f0cdb02014-05-14 17:44:19 +010017#include "../fvp_def.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010018
Achin Gupta27573c52015-11-03 14:18:34 +000019/* Defines for GIC Driver build time selection */
20#define FVP_GICV2 1
21#define FVP_GICV3 2
22#define FVP_GICV3_LEGACY 3
23
Achin Gupta4f6ad662013-10-25 09:08:21 +010024/*******************************************************************************
Dan Handley60eea552015-03-19 19:17:53 +000025 * arm_config holds the characteristics of the differences between the three FVP
26 * platforms (Base, A53_A57 & Foundation). It will be populated during cold boot
Vikram Kanigiri6355f232016-02-15 11:54:14 +000027 * at each boot stage by the primary before enabling the MMU (to allow
28 * interconnect configuration) & used thereafter. Each BL will have its own copy
29 * to allow independent operation.
Achin Gupta4f6ad662013-10-25 09:08:21 +010030 ******************************************************************************/
Dan Handley60eea552015-03-19 19:17:53 +000031arm_config_t arm_config;
Soby Mathewd0ecd972014-09-03 17:48:44 +010032
33#define MAP_DEVICE0 MAP_REGION_FLAT(DEVICE0_BASE, \
34 DEVICE0_SIZE, \
35 MT_DEVICE | MT_RW | MT_SECURE)
36
37#define MAP_DEVICE1 MAP_REGION_FLAT(DEVICE1_BASE, \
38 DEVICE1_SIZE, \
39 MT_DEVICE | MT_RW | MT_SECURE)
40
Sandrine Bailleux284c3d62017-05-26 15:48:10 +010041/*
42 * Need to be mapped with write permissions in order to set a new non-volatile
43 * counter value.
44 */
Juan Castillo95cfd4a2015-04-14 12:49:03 +010045#define MAP_DEVICE2 MAP_REGION_FLAT(DEVICE2_BASE, \
46 DEVICE2_SIZE, \
Antonio Nino Diazfe7de032016-05-20 14:14:16 +010047 MT_DEVICE | MT_RW | MT_SECURE)
Juan Castillo95cfd4a2015-04-14 12:49:03 +010048
49
Jon Medhurst38aa76a2014-02-26 16:27:53 +000050/*
Sandrine Bailleuxb5fa6562016-05-18 16:11:47 +010051 * Table of memory regions for various BL stages to map using the MMU.
52 * This doesn't include Trusted SRAM as arm_setup_page_tables() already
53 * takes care of mapping it.
Sandrine Bailleux91fad652016-06-14 17:01:00 +010054 *
55 * The flash needs to be mapped as writable in order to erase the FIP's Table of
56 * Contents in case of unrecoverable error (see plat_error_handler()).
Jon Medhurst38aa76a2014-02-26 16:27:53 +000057 */
Masahiro Yamada3d8256b2016-12-25 23:36:24 +090058#ifdef IMAGE_BL1
Dan Handley60eea552015-03-19 19:17:53 +000059const mmap_region_t plat_arm_mmap[] = {
60 ARM_MAP_SHARED_RAM,
Juan Castillo7b4c1402015-10-06 14:01:35 +010061 V2M_MAP_FLASH0_RW,
Dan Handley60eea552015-03-19 19:17:53 +000062 V2M_MAP_IOFPGA,
Soby Mathewd0ecd972014-09-03 17:48:44 +010063 MAP_DEVICE0,
64 MAP_DEVICE1,
Yatharth Kochar436223d2015-10-11 14:14:55 +010065#if TRUSTED_BOARD_BOOT
Sandrine Bailleux284c3d62017-05-26 15:48:10 +010066 /* To access the Root of Trust Public Key registers. */
67 MAP_DEVICE2,
68 /* Map DRAM to authenticate NS_BL2U image. */
Yatharth Kochar436223d2015-10-11 14:14:55 +010069 ARM_MAP_NS_DRAM1,
70#endif
Jon Medhurst38aa76a2014-02-26 16:27:53 +000071 {0}
72};
Soby Mathewd0ecd972014-09-03 17:48:44 +010073#endif
Masahiro Yamada3d8256b2016-12-25 23:36:24 +090074#ifdef IMAGE_BL2
Dan Handley60eea552015-03-19 19:17:53 +000075const mmap_region_t plat_arm_mmap[] = {
76 ARM_MAP_SHARED_RAM,
Juan Castillo7b4c1402015-10-06 14:01:35 +010077 V2M_MAP_FLASH0_RW,
Dan Handley60eea552015-03-19 19:17:53 +000078 V2M_MAP_IOFPGA,
Soby Mathewd0ecd972014-09-03 17:48:44 +010079 MAP_DEVICE0,
80 MAP_DEVICE1,
Dan Handley60eea552015-03-19 19:17:53 +000081 ARM_MAP_NS_DRAM1,
Sandrine Bailleux3eb2d672017-08-30 10:59:22 +010082#ifdef SPD_tspd
Dan Handley60eea552015-03-19 19:17:53 +000083 ARM_MAP_TSP_SEC_MEM,
Sandrine Bailleux3eb2d672017-08-30 10:59:22 +010084#endif
Sandrine Bailleux284c3d62017-05-26 15:48:10 +010085#if TRUSTED_BOARD_BOOT
86 /* To access the Root of Trust Public Key registers. */
87 MAP_DEVICE2,
88#endif
David Wang4518dd92016-03-07 11:02:57 +080089#if ARM_BL31_IN_DRAM
90 ARM_MAP_BL31_SEC_DRAM,
91#endif
Jens Wiklander810d9212017-08-25 10:07:20 +020092#ifdef SPD_opteed
Soby Mathewb3ba6fd2017-09-01 13:43:50 +010093 ARM_MAP_OPTEE_CORE_MEM,
Jens Wiklander810d9212017-08-25 10:07:20 +020094 ARM_OPTEE_PAGEABLE_LOAD_MEM,
95#endif
Soby Mathewd0ecd972014-09-03 17:48:44 +010096 {0}
97};
98#endif
Masahiro Yamada3d8256b2016-12-25 23:36:24 +090099#ifdef IMAGE_BL2U
Yatharth Kochardcda29f2015-10-14 15:28:11 +0100100const mmap_region_t plat_arm_mmap[] = {
101 MAP_DEVICE0,
102 V2M_MAP_IOFPGA,
103 {0}
104};
105#endif
Masahiro Yamada3d8256b2016-12-25 23:36:24 +0900106#ifdef IMAGE_BL31
Dan Handley60eea552015-03-19 19:17:53 +0000107const mmap_region_t plat_arm_mmap[] = {
108 ARM_MAP_SHARED_RAM,
109 V2M_MAP_IOFPGA,
Soby Mathewd0ecd972014-09-03 17:48:44 +0100110 MAP_DEVICE0,
111 MAP_DEVICE1,
Roberto Vargasf1454032017-08-03 09:16:43 +0100112 ARM_V2M_MAP_MEM_PROTECT,
Soby Mathewd0ecd972014-09-03 17:48:44 +0100113 {0}
114};
115#endif
Masahiro Yamada3d8256b2016-12-25 23:36:24 +0900116#ifdef IMAGE_BL32
Dan Handley60eea552015-03-19 19:17:53 +0000117const mmap_region_t plat_arm_mmap[] = {
Soby Mathew877cf3f2016-07-11 14:13:56 +0100118#ifdef AARCH32
119 ARM_MAP_SHARED_RAM,
120#endif
Dan Handley60eea552015-03-19 19:17:53 +0000121 V2M_MAP_IOFPGA,
Soby Mathewd0ecd972014-09-03 17:48:44 +0100122 MAP_DEVICE0,
123 MAP_DEVICE1,
124 {0}
125};
126#endif
Jon Medhurst38aa76a2014-02-26 16:27:53 +0000127
Dan Handley60eea552015-03-19 19:17:53 +0000128ARM_CASSERT_MMAP
Soby Mathewce412502015-01-22 11:22:22 +0000129
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100130#if FVP_INTERCONNECT_DRIVER != FVP_CCN
131static const int fvp_cci400_map[] = {
132 PLAT_FVP_CCI400_CLUS0_SL_PORT,
133 PLAT_FVP_CCI400_CLUS1_SL_PORT,
134};
135
136static const int fvp_cci5xx_map[] = {
137 PLAT_FVP_CCI5XX_CLUS0_SL_PORT,
138 PLAT_FVP_CCI5XX_CLUS1_SL_PORT,
139};
140
141static unsigned int get_interconnect_master(void)
142{
143 unsigned int master;
144 u_register_t mpidr;
145
146 mpidr = read_mpidr_el1();
147 master = (arm_config.flags & ARM_CONFIG_FVP_SHIFTED_AFF) ?
148 MPIDR_AFFLVL2_VAL(mpidr) : MPIDR_AFFLVL1_VAL(mpidr);
149
150 assert(master < FVP_CLUSTER_COUNT);
151 return master;
152}
153#endif
Dan Handley60eea552015-03-19 19:17:53 +0000154
Achin Gupta4f6ad662013-10-25 09:08:21 +0100155/*******************************************************************************
156 * A single boot loader stack is expected to work on both the Foundation FVP
157 * models and the two flavours of the Base FVP models (AEMv8 & Cortex). The
158 * SYS_ID register provides a mechanism for detecting the differences between
159 * these platforms. This information is stored in a per-BL array to allow the
160 * code to take the correct path.Per BL platform configuration.
161 ******************************************************************************/
Dan Handley60eea552015-03-19 19:17:53 +0000162void fvp_config_setup(void)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100163{
Soby Mathewadd40352014-08-14 12:49:05 +0100164 unsigned int rev, hbi, bld, arch, sys_id;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100165
Dan Handley60eea552015-03-19 19:17:53 +0000166 sys_id = mmio_read_32(V2M_SYSREGS_BASE + V2M_SYS_ID);
167 rev = (sys_id >> V2M_SYS_ID_REV_SHIFT) & V2M_SYS_ID_REV_MASK;
168 hbi = (sys_id >> V2M_SYS_ID_HBI_SHIFT) & V2M_SYS_ID_HBI_MASK;
169 bld = (sys_id >> V2M_SYS_ID_BLD_SHIFT) & V2M_SYS_ID_BLD_MASK;
170 arch = (sys_id >> V2M_SYS_ID_ARCH_SHIFT) & V2M_SYS_ID_ARCH_MASK;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100171
Andrew Thoelke90e31472014-06-26 14:27:26 +0100172 if (arch != ARCH_MODEL) {
173 ERROR("This firmware is for FVP models\n");
James Morrissey40a6f642014-02-10 14:24:36 +0000174 panic();
Andrew Thoelke90e31472014-06-26 14:27:26 +0100175 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100176
177 /*
178 * The build field in the SYS_ID tells which variant of the GIC
179 * memory is implemented by the model.
180 */
181 switch (bld) {
182 case BLD_GIC_VE_MMAP:
Soby Mathew21a39732016-01-13 17:06:00 +0000183 ERROR("Legacy Versatile Express memory map for GIC peripheral"
184 " is not supported\n");
Achin Gupta27573c52015-11-03 14:18:34 +0000185 panic();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100186 break;
187 case BLD_GIC_A53A57_MMAP:
Achin Gupta4f6ad662013-10-25 09:08:21 +0100188 break;
189 default:
Andrew Thoelke90e31472014-06-26 14:27:26 +0100190 ERROR("Unsupported board build %x\n", bld);
191 panic();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100192 }
193
194 /*
195 * The hbi field in the SYS_ID is 0x020 for the Base FVP & 0x010
196 * for the Foundation FVP.
197 */
198 switch (hbi) {
Dan Handley60eea552015-03-19 19:17:53 +0000199 case HBI_FOUNDATION_FVP:
Dan Handley60eea552015-03-19 19:17:53 +0000200 arm_config.flags = 0;
Andrew Thoelke90e31472014-06-26 14:27:26 +0100201
202 /*
203 * Check for supported revisions of Foundation FVP
204 * Allow future revisions to run but emit warning diagnostic
205 */
206 switch (rev) {
Dan Handley60eea552015-03-19 19:17:53 +0000207 case REV_FOUNDATION_FVP_V2_0:
208 case REV_FOUNDATION_FVP_V2_1:
209 case REV_FOUNDATION_FVP_v9_1:
Sandrine Bailleux4faa4a12016-09-22 09:46:50 +0100210 case REV_FOUNDATION_FVP_v9_6:
Andrew Thoelke90e31472014-06-26 14:27:26 +0100211 break;
212 default:
213 WARN("Unrecognized Foundation FVP revision %x\n", rev);
214 break;
215 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100216 break;
Dan Handley60eea552015-03-19 19:17:53 +0000217 case HBI_BASE_FVP:
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100218 arm_config.flags |= (ARM_CONFIG_BASE_MMAP | ARM_CONFIG_HAS_TZC);
Andrew Thoelke90e31472014-06-26 14:27:26 +0100219
220 /*
221 * Check for supported revisions
222 * Allow future revisions to run but emit warning diagnostic
223 */
224 switch (rev) {
Dan Handley60eea552015-03-19 19:17:53 +0000225 case REV_BASE_FVP_V0:
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100226 arm_config.flags |= ARM_CONFIG_FVP_HAS_CCI400;
227 break;
228 case REV_BASE_FVP_REVC:
Isla Mitchell84316352017-08-17 12:25:34 +0100229 arm_config.flags |= (ARM_CONFIG_FVP_HAS_SMMUV3 |
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100230 ARM_CONFIG_FVP_HAS_CCI5XX);
Andrew Thoelke90e31472014-06-26 14:27:26 +0100231 break;
232 default:
233 WARN("Unrecognized Base FVP revision %x\n", rev);
234 break;
235 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100236 break;
237 default:
Andrew Thoelke90e31472014-06-26 14:27:26 +0100238 ERROR("Unsupported board HBI number 0x%x\n", hbi);
239 panic();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100240 }
Isla Mitchell84316352017-08-17 12:25:34 +0100241
242 /*
243 * We assume that the presence of MT bit, and therefore shifted
244 * affinities, is uniform across the platform: either all CPUs, or no
245 * CPUs implement it.
246 */
247 if (read_mpidr_el1() & MPIDR_MT_MASK)
248 arm_config.flags |= ARM_CONFIG_FVP_SHIFTED_AFF;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100249}
250
Vikram Kanigiri4991ecd2015-02-26 15:25:58 +0000251
Vikram Kanigiri6355f232016-02-15 11:54:14 +0000252void fvp_interconnect_init(void)
Vikram Kanigiridbad1ba2014-04-24 11:02:16 +0100253{
Soby Mathew71237872016-03-24 10:12:42 +0000254#if FVP_INTERCONNECT_DRIVER == FVP_CCN
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100255 if (ccn_get_part0_id(PLAT_ARM_CCN_BASE) != CCN_502_PART0_ID) {
256 ERROR("Unrecognized CCN variant detected. Only CCN-502"
257 " is supported");
258 panic();
Soby Mathew71237872016-03-24 10:12:42 +0000259 }
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100260
261 plat_arm_interconnect_init();
262#else
263 uintptr_t cci_base = 0;
264 const int *cci_map = 0;
265 unsigned int map_size = 0;
266
267 if (!(arm_config.flags & (ARM_CONFIG_FVP_HAS_CCI400 |
268 ARM_CONFIG_FVP_HAS_CCI5XX))) {
269 return;
270 }
271
272 /* Initialize the right interconnect */
273 if (arm_config.flags & ARM_CONFIG_FVP_HAS_CCI5XX) {
274 cci_base = PLAT_FVP_CCI5XX_BASE;
275 cci_map = fvp_cci5xx_map;
276 map_size = ARRAY_SIZE(fvp_cci5xx_map);
277 } else if (arm_config.flags & ARM_CONFIG_FVP_HAS_CCI400) {
278 cci_base = PLAT_FVP_CCI400_BASE;
279 cci_map = fvp_cci400_map;
280 map_size = ARRAY_SIZE(fvp_cci400_map);
281 }
282
283 assert(cci_base);
284 assert(cci_map);
285 cci_init(cci_base, cci_map, map_size);
286#endif
Dan Handleycae3ef92014-08-04 16:11:15 +0100287}
288
Vikram Kanigiri6355f232016-02-15 11:54:14 +0000289void fvp_interconnect_enable(void)
Dan Handleycae3ef92014-08-04 16:11:15 +0100290{
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100291#if FVP_INTERCONNECT_DRIVER == FVP_CCN
292 plat_arm_interconnect_enter_coherency();
293#else
294 unsigned int master;
295
296 if (arm_config.flags & (ARM_CONFIG_FVP_HAS_CCI400 |
297 ARM_CONFIG_FVP_HAS_CCI5XX)) {
298 master = get_interconnect_master();
299 cci_enable_snoop_dvm_reqs(master);
300 }
301#endif
Vikram Kanigiri4991ecd2015-02-26 15:25:58 +0000302}
303
Vikram Kanigiri6355f232016-02-15 11:54:14 +0000304void fvp_interconnect_disable(void)
Vikram Kanigiri4991ecd2015-02-26 15:25:58 +0000305{
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100306#if FVP_INTERCONNECT_DRIVER == FVP_CCN
307 plat_arm_interconnect_exit_coherency();
308#else
309 unsigned int master;
310
311 if (arm_config.flags & (ARM_CONFIG_FVP_HAS_CCI400 |
312 ARM_CONFIG_FVP_HAS_CCI5XX)) {
313 master = get_interconnect_master();
314 cci_disable_snoop_dvm_reqs(master);
315 }
316#endif
Vikram Kanigiridbad1ba2014-04-24 11:02:16 +0100317}