blob: e232745733a23461e95c2d90f52b8ccb427ce522 [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
93 ARM_OPTEE_PAGEABLE_LOAD_MEM,
94#endif
Soby Mathewd0ecd972014-09-03 17:48:44 +010095 {0}
96};
97#endif
Masahiro Yamada3d8256b2016-12-25 23:36:24 +090098#ifdef IMAGE_BL2U
Yatharth Kochardcda29f2015-10-14 15:28:11 +010099const mmap_region_t plat_arm_mmap[] = {
100 MAP_DEVICE0,
101 V2M_MAP_IOFPGA,
102 {0}
103};
104#endif
Masahiro Yamada3d8256b2016-12-25 23:36:24 +0900105#ifdef IMAGE_BL31
Dan Handley60eea552015-03-19 19:17:53 +0000106const mmap_region_t plat_arm_mmap[] = {
107 ARM_MAP_SHARED_RAM,
108 V2M_MAP_IOFPGA,
Soby Mathewd0ecd972014-09-03 17:48:44 +0100109 MAP_DEVICE0,
110 MAP_DEVICE1,
111 {0}
112};
113#endif
Masahiro Yamada3d8256b2016-12-25 23:36:24 +0900114#ifdef IMAGE_BL32
Dan Handley60eea552015-03-19 19:17:53 +0000115const mmap_region_t plat_arm_mmap[] = {
Soby Mathew877cf3f2016-07-11 14:13:56 +0100116#ifdef AARCH32
117 ARM_MAP_SHARED_RAM,
118#endif
Dan Handley60eea552015-03-19 19:17:53 +0000119 V2M_MAP_IOFPGA,
Soby Mathewd0ecd972014-09-03 17:48:44 +0100120 MAP_DEVICE0,
121 MAP_DEVICE1,
122 {0}
123};
124#endif
Jon Medhurst38aa76a2014-02-26 16:27:53 +0000125
Dan Handley60eea552015-03-19 19:17:53 +0000126ARM_CASSERT_MMAP
Soby Mathewce412502015-01-22 11:22:22 +0000127
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100128#if FVP_INTERCONNECT_DRIVER != FVP_CCN
129static const int fvp_cci400_map[] = {
130 PLAT_FVP_CCI400_CLUS0_SL_PORT,
131 PLAT_FVP_CCI400_CLUS1_SL_PORT,
132};
133
134static const int fvp_cci5xx_map[] = {
135 PLAT_FVP_CCI5XX_CLUS0_SL_PORT,
136 PLAT_FVP_CCI5XX_CLUS1_SL_PORT,
137};
138
139static unsigned int get_interconnect_master(void)
140{
141 unsigned int master;
142 u_register_t mpidr;
143
144 mpidr = read_mpidr_el1();
145 master = (arm_config.flags & ARM_CONFIG_FVP_SHIFTED_AFF) ?
146 MPIDR_AFFLVL2_VAL(mpidr) : MPIDR_AFFLVL1_VAL(mpidr);
147
148 assert(master < FVP_CLUSTER_COUNT);
149 return master;
150}
151#endif
Dan Handley60eea552015-03-19 19:17:53 +0000152
Achin Gupta4f6ad662013-10-25 09:08:21 +0100153/*******************************************************************************
154 * A single boot loader stack is expected to work on both the Foundation FVP
155 * models and the two flavours of the Base FVP models (AEMv8 & Cortex). The
156 * SYS_ID register provides a mechanism for detecting the differences between
157 * these platforms. This information is stored in a per-BL array to allow the
158 * code to take the correct path.Per BL platform configuration.
159 ******************************************************************************/
Dan Handley60eea552015-03-19 19:17:53 +0000160void fvp_config_setup(void)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100161{
Soby Mathewadd40352014-08-14 12:49:05 +0100162 unsigned int rev, hbi, bld, arch, sys_id;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100163
Dan Handley60eea552015-03-19 19:17:53 +0000164 sys_id = mmio_read_32(V2M_SYSREGS_BASE + V2M_SYS_ID);
165 rev = (sys_id >> V2M_SYS_ID_REV_SHIFT) & V2M_SYS_ID_REV_MASK;
166 hbi = (sys_id >> V2M_SYS_ID_HBI_SHIFT) & V2M_SYS_ID_HBI_MASK;
167 bld = (sys_id >> V2M_SYS_ID_BLD_SHIFT) & V2M_SYS_ID_BLD_MASK;
168 arch = (sys_id >> V2M_SYS_ID_ARCH_SHIFT) & V2M_SYS_ID_ARCH_MASK;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100169
Andrew Thoelke90e31472014-06-26 14:27:26 +0100170 if (arch != ARCH_MODEL) {
171 ERROR("This firmware is for FVP models\n");
James Morrissey40a6f642014-02-10 14:24:36 +0000172 panic();
Andrew Thoelke90e31472014-06-26 14:27:26 +0100173 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100174
175 /*
176 * The build field in the SYS_ID tells which variant of the GIC
177 * memory is implemented by the model.
178 */
179 switch (bld) {
180 case BLD_GIC_VE_MMAP:
Soby Mathew21a39732016-01-13 17:06:00 +0000181 ERROR("Legacy Versatile Express memory map for GIC peripheral"
182 " is not supported\n");
Achin Gupta27573c52015-11-03 14:18:34 +0000183 panic();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100184 break;
185 case BLD_GIC_A53A57_MMAP:
Achin Gupta4f6ad662013-10-25 09:08:21 +0100186 break;
187 default:
Andrew Thoelke90e31472014-06-26 14:27:26 +0100188 ERROR("Unsupported board build %x\n", bld);
189 panic();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100190 }
191
192 /*
193 * The hbi field in the SYS_ID is 0x020 for the Base FVP & 0x010
194 * for the Foundation FVP.
195 */
196 switch (hbi) {
Dan Handley60eea552015-03-19 19:17:53 +0000197 case HBI_FOUNDATION_FVP:
Dan Handley60eea552015-03-19 19:17:53 +0000198 arm_config.flags = 0;
Andrew Thoelke90e31472014-06-26 14:27:26 +0100199
200 /*
201 * Check for supported revisions of Foundation FVP
202 * Allow future revisions to run but emit warning diagnostic
203 */
204 switch (rev) {
Dan Handley60eea552015-03-19 19:17:53 +0000205 case REV_FOUNDATION_FVP_V2_0:
206 case REV_FOUNDATION_FVP_V2_1:
207 case REV_FOUNDATION_FVP_v9_1:
Sandrine Bailleux4faa4a12016-09-22 09:46:50 +0100208 case REV_FOUNDATION_FVP_v9_6:
Andrew Thoelke90e31472014-06-26 14:27:26 +0100209 break;
210 default:
211 WARN("Unrecognized Foundation FVP revision %x\n", rev);
212 break;
213 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100214 break;
Dan Handley60eea552015-03-19 19:17:53 +0000215 case HBI_BASE_FVP:
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100216 arm_config.flags |= (ARM_CONFIG_BASE_MMAP | ARM_CONFIG_HAS_TZC);
Andrew Thoelke90e31472014-06-26 14:27:26 +0100217
218 /*
219 * Check for supported revisions
220 * Allow future revisions to run but emit warning diagnostic
221 */
222 switch (rev) {
Dan Handley60eea552015-03-19 19:17:53 +0000223 case REV_BASE_FVP_V0:
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100224 arm_config.flags |= ARM_CONFIG_FVP_HAS_CCI400;
225 break;
226 case REV_BASE_FVP_REVC:
Isla Mitchell84316352017-08-17 12:25:34 +0100227 arm_config.flags |= (ARM_CONFIG_FVP_HAS_SMMUV3 |
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100228 ARM_CONFIG_FVP_HAS_CCI5XX);
Andrew Thoelke90e31472014-06-26 14:27:26 +0100229 break;
230 default:
231 WARN("Unrecognized Base FVP revision %x\n", rev);
232 break;
233 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100234 break;
235 default:
Andrew Thoelke90e31472014-06-26 14:27:26 +0100236 ERROR("Unsupported board HBI number 0x%x\n", hbi);
237 panic();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100238 }
Isla Mitchell84316352017-08-17 12:25:34 +0100239
240 /*
241 * We assume that the presence of MT bit, and therefore shifted
242 * affinities, is uniform across the platform: either all CPUs, or no
243 * CPUs implement it.
244 */
245 if (read_mpidr_el1() & MPIDR_MT_MASK)
246 arm_config.flags |= ARM_CONFIG_FVP_SHIFTED_AFF;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100247}
248
Vikram Kanigiri4991ecd2015-02-26 15:25:58 +0000249
Vikram Kanigiri6355f232016-02-15 11:54:14 +0000250void fvp_interconnect_init(void)
Vikram Kanigiridbad1ba2014-04-24 11:02:16 +0100251{
Soby Mathew71237872016-03-24 10:12:42 +0000252#if FVP_INTERCONNECT_DRIVER == FVP_CCN
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100253 if (ccn_get_part0_id(PLAT_ARM_CCN_BASE) != CCN_502_PART0_ID) {
254 ERROR("Unrecognized CCN variant detected. Only CCN-502"
255 " is supported");
256 panic();
Soby Mathew71237872016-03-24 10:12:42 +0000257 }
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100258
259 plat_arm_interconnect_init();
260#else
261 uintptr_t cci_base = 0;
262 const int *cci_map = 0;
263 unsigned int map_size = 0;
264
265 if (!(arm_config.flags & (ARM_CONFIG_FVP_HAS_CCI400 |
266 ARM_CONFIG_FVP_HAS_CCI5XX))) {
267 return;
268 }
269
270 /* Initialize the right interconnect */
271 if (arm_config.flags & ARM_CONFIG_FVP_HAS_CCI5XX) {
272 cci_base = PLAT_FVP_CCI5XX_BASE;
273 cci_map = fvp_cci5xx_map;
274 map_size = ARRAY_SIZE(fvp_cci5xx_map);
275 } else if (arm_config.flags & ARM_CONFIG_FVP_HAS_CCI400) {
276 cci_base = PLAT_FVP_CCI400_BASE;
277 cci_map = fvp_cci400_map;
278 map_size = ARRAY_SIZE(fvp_cci400_map);
279 }
280
281 assert(cci_base);
282 assert(cci_map);
283 cci_init(cci_base, cci_map, map_size);
284#endif
Dan Handleycae3ef92014-08-04 16:11:15 +0100285}
286
Vikram Kanigiri6355f232016-02-15 11:54:14 +0000287void fvp_interconnect_enable(void)
Dan Handleycae3ef92014-08-04 16:11:15 +0100288{
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100289#if FVP_INTERCONNECT_DRIVER == FVP_CCN
290 plat_arm_interconnect_enter_coherency();
291#else
292 unsigned int master;
293
294 if (arm_config.flags & (ARM_CONFIG_FVP_HAS_CCI400 |
295 ARM_CONFIG_FVP_HAS_CCI5XX)) {
296 master = get_interconnect_master();
297 cci_enable_snoop_dvm_reqs(master);
298 }
299#endif
Vikram Kanigiri4991ecd2015-02-26 15:25:58 +0000300}
301
Vikram Kanigiri6355f232016-02-15 11:54:14 +0000302void fvp_interconnect_disable(void)
Vikram Kanigiri4991ecd2015-02-26 15:25:58 +0000303{
Jeenu Viswambharan955242d2017-07-18 15:42:50 +0100304#if FVP_INTERCONNECT_DRIVER == FVP_CCN
305 plat_arm_interconnect_exit_coherency();
306#else
307 unsigned int master;
308
309 if (arm_config.flags & (ARM_CONFIG_FVP_HAS_CCI400 |
310 ARM_CONFIG_FVP_HAS_CCI5XX)) {
311 master = get_interconnect_master();
312 cci_disable_snoop_dvm_reqs(master);
313 }
314#endif
Vikram Kanigiridbad1ba2014-04-24 11:02:16 +0100315}