blob: f38c357bc3836955f0f262f127859016057bb56c [file] [log] [blame]
Dan Handleyb4315302015-03-19 18:58:55 +00001/*
David Cunado9edac042017-01-19 10:26:16 +00002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Dan Handleyb4315302015-03-19 18:58:55 +00003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Dan Handleyb4315302015-03-19 18:58:55 +00005 */
6#ifndef __ARM_DEF_H__
7#define __ARM_DEF_H__
8
Soby Mathew38dce702015-07-01 16:16:20 +01009#include <arch.h>
Dan Handleyb4315302015-03-19 18:58:55 +000010#include <common_def.h>
Jeenu Viswambharanb2c363b2017-09-22 08:59:59 +010011#include <gic_common.h>
12#include <interrupt_props.h>
Dan Handleyb4315302015-03-19 18:58:55 +000013#include <platform_def.h>
Juan Castillodff93c82015-05-07 14:52:44 +010014#include <tbbr_img_def.h>
Scott Branden53d9c9c2017-04-10 11:45:52 -070015#include <utils_def.h>
Antonio Nino Diazbf75a372017-02-23 17:22:58 +000016#include <xlat_tables_defs.h>
Dan Handleyb4315302015-03-19 18:58:55 +000017
18
19/******************************************************************************
20 * Definitions common to all ARM standard platforms
21 *****************************************************************************/
22
Juan Castillod1786372015-12-14 09:35:25 +000023/* Special value used to verify platform parameters from BL2 to BL31 */
Dan Handleyb4315302015-03-19 18:58:55 +000024#define ARM_BL31_PLAT_PARAM_VAL 0x0f1e2d3c4b5a6978ULL
25
Soby Mathew5f3a6032015-05-08 10:18:59 +010026#define ARM_SYSTEM_COUNT 1
Dan Handleyb4315302015-03-19 18:58:55 +000027
28#define ARM_CACHE_WRITEBACK_SHIFT 6
29
Soby Mathew38dce702015-07-01 16:16:20 +010030/*
31 * Macros mapping the MPIDR Affinity levels to ARM Platform Power levels. The
32 * power levels have a 1:1 mapping with the MPIDR affinity levels.
33 */
34#define ARM_PWR_LVL0 MPIDR_AFFLVL0
35#define ARM_PWR_LVL1 MPIDR_AFFLVL1
Soby Mathew5f3a6032015-05-08 10:18:59 +010036#define ARM_PWR_LVL2 MPIDR_AFFLVL2
Soby Mathew38dce702015-07-01 16:16:20 +010037
38/*
39 * Macros for local power states in ARM platforms encoded by State-ID field
40 * within the power-state parameter.
41 */
42/* Local power state for power domains in Run state. */
43#define ARM_LOCAL_STATE_RUN 0
44/* Local power state for retention. Valid only for CPU power domains */
45#define ARM_LOCAL_STATE_RET 1
46/* Local power state for OFF/power-down. Valid for CPU and cluster power
47 domains */
48#define ARM_LOCAL_STATE_OFF 2
49
Dan Handleyb4315302015-03-19 18:58:55 +000050/* Memory location options for TSP */
51#define ARM_TRUSTED_SRAM_ID 0
52#define ARM_TRUSTED_DRAM_ID 1
53#define ARM_DRAM_ID 2
54
55/* The first 4KB of Trusted SRAM are used as shared memory */
56#define ARM_TRUSTED_SRAM_BASE 0x04000000
57#define ARM_SHARED_RAM_BASE ARM_TRUSTED_SRAM_BASE
58#define ARM_SHARED_RAM_SIZE 0x00001000 /* 4 KB */
59
60/* The remaining Trusted SRAM is used to load the BL images */
61#define ARM_BL_RAM_BASE (ARM_SHARED_RAM_BASE + \
62 ARM_SHARED_RAM_SIZE)
63#define ARM_BL_RAM_SIZE (PLAT_ARM_TRUSTED_SRAM_SIZE - \
64 ARM_SHARED_RAM_SIZE)
65
66/*
67 * The top 16MB of DRAM1 is configured as secure access only using the TZC
68 * - SCP TZC DRAM: If present, DRAM reserved for SCP use
69 * - AP TZC DRAM: The remaining TZC secured DRAM reserved for AP use
70 */
David Cunado9edac042017-01-19 10:26:16 +000071#define ARM_TZC_DRAM1_SIZE ULL(0x01000000)
Dan Handleyb4315302015-03-19 18:58:55 +000072
73#define ARM_SCP_TZC_DRAM1_BASE (ARM_DRAM1_BASE + \
74 ARM_DRAM1_SIZE - \
75 ARM_SCP_TZC_DRAM1_SIZE)
76#define ARM_SCP_TZC_DRAM1_SIZE PLAT_ARM_SCP_TZC_DRAM1_SIZE
77#define ARM_SCP_TZC_DRAM1_END (ARM_SCP_TZC_DRAM1_BASE + \
78 ARM_SCP_TZC_DRAM1_SIZE - 1)
79
Soby Mathewa22dffc2017-10-05 12:27:33 +010080/*
81 * Define a 2MB region within the TZC secured DRAM for use by EL3 runtime
82 * firmware. This region is meant to be NOLOAD and will not be zero
83 * initialized. Data sections with the attribute `arm_el3_tzc_dram` will be
84 * placed here.
85 */
86#define ARM_EL3_TZC_DRAM1_BASE (ARM_SCP_TZC_DRAM1_BASE - ARM_EL3_TZC_DRAM1_SIZE)
87#define ARM_EL3_TZC_DRAM1_SIZE ULL(0x00200000) /* 2 MB */
88#define ARM_EL3_TZC_DRAM1_END (ARM_EL3_TZC_DRAM1_BASE + \
89 ARM_EL3_TZC_DRAM1_SIZE - 1)
90
Dan Handleyb4315302015-03-19 18:58:55 +000091#define ARM_AP_TZC_DRAM1_BASE (ARM_DRAM1_BASE + \
92 ARM_DRAM1_SIZE - \
93 ARM_TZC_DRAM1_SIZE)
94#define ARM_AP_TZC_DRAM1_SIZE (ARM_TZC_DRAM1_SIZE - \
Soby Mathewa22dffc2017-10-05 12:27:33 +010095 (ARM_SCP_TZC_DRAM1_SIZE + \
96 ARM_EL3_TZC_DRAM1_SIZE))
Dan Handleyb4315302015-03-19 18:58:55 +000097#define ARM_AP_TZC_DRAM1_END (ARM_AP_TZC_DRAM1_BASE + \
98 ARM_AP_TZC_DRAM1_SIZE - 1)
99
Soby Mathewe60f2af2017-05-10 11:50:30 +0100100/* Define the Access permissions for Secure peripherals to NS_DRAM */
101#if ARM_CRYPTOCELL_INTEG
102/*
103 * Allow Secure peripheral to read NS DRAM when integrated with CryptoCell.
104 * This is required by CryptoCell to authenticate BL33 which is loaded
105 * into the Non Secure DDR.
106 */
107#define ARM_TZC_NS_DRAM_S_ACCESS TZC_REGION_S_RD
108#else
109#define ARM_TZC_NS_DRAM_S_ACCESS TZC_REGION_S_NONE
110#endif
111
Summer Qin54661cd2017-04-24 16:49:28 +0100112#ifdef SPD_opteed
113/*
Jens Wiklander04f72ba2017-08-24 15:39:09 +0200114 * BL2 needs to map 4MB at the end of TZC_DRAM1 in order to
115 * load/authenticate the trusted os extra image. The first 512KB of
116 * TZC_DRAM1 are reserved for trusted os (OPTEE). The extra image loading
117 * for OPTEE is paged image which only include the paging part using
118 * virtual memory but without "init" data. OPTEE will copy the "init" data
119 * (from pager image) to the first 512KB of TZC_DRAM, and then copy the
120 * extra image behind the "init" data.
Summer Qin54661cd2017-04-24 16:49:28 +0100121 */
Jens Wiklander04f72ba2017-08-24 15:39:09 +0200122#define ARM_OPTEE_PAGEABLE_LOAD_BASE (ARM_AP_TZC_DRAM1_BASE + \
123 ARM_AP_TZC_DRAM1_SIZE - \
124 ARM_OPTEE_PAGEABLE_LOAD_SIZE)
125#define ARM_OPTEE_PAGEABLE_LOAD_SIZE 0x400000
Summer Qin54661cd2017-04-24 16:49:28 +0100126#define ARM_OPTEE_PAGEABLE_LOAD_MEM MAP_REGION_FLAT( \
127 ARM_OPTEE_PAGEABLE_LOAD_BASE, \
128 ARM_OPTEE_PAGEABLE_LOAD_SIZE, \
129 MT_MEMORY | MT_RW | MT_SECURE)
Soby Mathewb3ba6fd2017-09-01 13:43:50 +0100130
131/*
132 * Map the memory for the OP-TEE core (also known as OP-TEE pager when paging
133 * support is enabled).
134 */
135#define ARM_MAP_OPTEE_CORE_MEM MAP_REGION_FLAT( \
136 BL32_BASE, \
137 BL32_LIMIT - BL32_BASE, \
138 MT_MEMORY | MT_RW | MT_SECURE)
Summer Qin54661cd2017-04-24 16:49:28 +0100139#endif /* SPD_opteed */
Dan Handleyb4315302015-03-19 18:58:55 +0000140
141#define ARM_NS_DRAM1_BASE ARM_DRAM1_BASE
142#define ARM_NS_DRAM1_SIZE (ARM_DRAM1_SIZE - \
143 ARM_TZC_DRAM1_SIZE)
144#define ARM_NS_DRAM1_END (ARM_NS_DRAM1_BASE + \
145 ARM_NS_DRAM1_SIZE - 1)
146
David Cunado9edac042017-01-19 10:26:16 +0000147#define ARM_DRAM1_BASE ULL(0x80000000)
148#define ARM_DRAM1_SIZE ULL(0x80000000)
Dan Handleyb4315302015-03-19 18:58:55 +0000149#define ARM_DRAM1_END (ARM_DRAM1_BASE + \
150 ARM_DRAM1_SIZE - 1)
151
David Cunado9edac042017-01-19 10:26:16 +0000152#define ARM_DRAM2_BASE ULL(0x880000000)
Dan Handleyb4315302015-03-19 18:58:55 +0000153#define ARM_DRAM2_SIZE PLAT_ARM_DRAM2_SIZE
154#define ARM_DRAM2_END (ARM_DRAM2_BASE + \
155 ARM_DRAM2_SIZE - 1)
156
157#define ARM_IRQ_SEC_PHY_TIMER 29
158
159#define ARM_IRQ_SEC_SGI_0 8
160#define ARM_IRQ_SEC_SGI_1 9
161#define ARM_IRQ_SEC_SGI_2 10
162#define ARM_IRQ_SEC_SGI_3 11
163#define ARM_IRQ_SEC_SGI_4 12
164#define ARM_IRQ_SEC_SGI_5 13
165#define ARM_IRQ_SEC_SGI_6 14
166#define ARM_IRQ_SEC_SGI_7 15
167
Achin Gupta27573c52015-11-03 14:18:34 +0000168/*
Jeenu Viswambharanb2c363b2017-09-22 08:59:59 +0100169 * List of secure interrupts are deprecated, but are retained only to support
170 * legacy configurations.
Achin Gupta27573c52015-11-03 14:18:34 +0000171 */
172#define ARM_G1S_IRQS ARM_IRQ_SEC_PHY_TIMER, \
173 ARM_IRQ_SEC_SGI_1, \
174 ARM_IRQ_SEC_SGI_2, \
175 ARM_IRQ_SEC_SGI_3, \
176 ARM_IRQ_SEC_SGI_4, \
177 ARM_IRQ_SEC_SGI_5, \
178 ARM_IRQ_SEC_SGI_7
179
180#define ARM_G0_IRQS ARM_IRQ_SEC_SGI_0, \
181 ARM_IRQ_SEC_SGI_6
182
Jeenu Viswambharanb2c363b2017-09-22 08:59:59 +0100183/*
184 * Define a list of Group 1 Secure and Group 0 interrupt properties as per GICv3
185 * terminology. On a GICv2 system or mode, the lists will be merged and treated
186 * as Group 0 interrupts.
187 */
188#define ARM_G1S_IRQ_PROPS(grp) \
189 INTR_PROP_DESC(ARM_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, grp, \
190 GIC_INTR_CFG_LEVEL), \
191 INTR_PROP_DESC(ARM_IRQ_SEC_SGI_1, GIC_HIGHEST_SEC_PRIORITY, grp, \
192 GIC_INTR_CFG_EDGE), \
193 INTR_PROP_DESC(ARM_IRQ_SEC_SGI_2, GIC_HIGHEST_SEC_PRIORITY, grp, \
194 GIC_INTR_CFG_EDGE), \
195 INTR_PROP_DESC(ARM_IRQ_SEC_SGI_3, GIC_HIGHEST_SEC_PRIORITY, grp, \
196 GIC_INTR_CFG_EDGE), \
197 INTR_PROP_DESC(ARM_IRQ_SEC_SGI_4, GIC_HIGHEST_SEC_PRIORITY, grp, \
198 GIC_INTR_CFG_EDGE), \
199 INTR_PROP_DESC(ARM_IRQ_SEC_SGI_5, GIC_HIGHEST_SEC_PRIORITY, grp, \
200 GIC_INTR_CFG_EDGE), \
201 INTR_PROP_DESC(ARM_IRQ_SEC_SGI_7, GIC_HIGHEST_SEC_PRIORITY, grp, \
202 GIC_INTR_CFG_EDGE)
203
204#define ARM_G0_IRQ_PROPS(grp) \
Jeenu Viswambharan0baec2a2017-09-22 08:32:10 +0100205 INTR_PROP_DESC(ARM_IRQ_SEC_SGI_0, PLAT_SDEI_NORMAL_PRI, grp, \
Jeenu Viswambharanb2c363b2017-09-22 08:59:59 +0100206 GIC_INTR_CFG_EDGE), \
207 INTR_PROP_DESC(ARM_IRQ_SEC_SGI_6, GIC_HIGHEST_SEC_PRIORITY, grp, \
208 GIC_INTR_CFG_EDGE)
209
Dan Handleyb4315302015-03-19 18:58:55 +0000210#define ARM_MAP_SHARED_RAM MAP_REGION_FLAT( \
211 ARM_SHARED_RAM_BASE, \
212 ARM_SHARED_RAM_SIZE, \
Juan Castillo74eb26e2016-01-13 15:01:09 +0000213 MT_DEVICE | MT_RW | MT_SECURE)
Dan Handleyb4315302015-03-19 18:58:55 +0000214
215#define ARM_MAP_NS_DRAM1 MAP_REGION_FLAT( \
216 ARM_NS_DRAM1_BASE, \
217 ARM_NS_DRAM1_SIZE, \
218 MT_MEMORY | MT_RW | MT_NS)
219
Roberto Vargasb09ba052017-08-08 11:27:20 +0100220#define ARM_MAP_DRAM2 MAP_REGION_FLAT( \
221 ARM_DRAM2_BASE, \
222 ARM_DRAM2_SIZE, \
223 MT_MEMORY | MT_RW | MT_NS)
Sandrine Bailleux3eb2d672017-08-30 10:59:22 +0100224#ifdef SPD_tspd
Roberto Vargasb09ba052017-08-08 11:27:20 +0100225
Dan Handleyb4315302015-03-19 18:58:55 +0000226#define ARM_MAP_TSP_SEC_MEM MAP_REGION_FLAT( \
227 TSP_SEC_MEM_BASE, \
228 TSP_SEC_MEM_SIZE, \
229 MT_MEMORY | MT_RW | MT_SECURE)
Sandrine Bailleux3eb2d672017-08-30 10:59:22 +0100230#endif
Dan Handleyb4315302015-03-19 18:58:55 +0000231
David Wang4518dd92016-03-07 11:02:57 +0800232#if ARM_BL31_IN_DRAM
233#define ARM_MAP_BL31_SEC_DRAM MAP_REGION_FLAT( \
234 BL31_BASE, \
235 PLAT_ARM_MAX_BL31_SIZE, \
236 MT_MEMORY | MT_RW | MT_SECURE)
237#endif
Dan Handleyb4315302015-03-19 18:58:55 +0000238
Soby Mathewa22dffc2017-10-05 12:27:33 +0100239#define ARM_MAP_EL3_TZC_DRAM MAP_REGION_FLAT( \
240 ARM_EL3_TZC_DRAM1_BASE, \
241 ARM_EL3_TZC_DRAM1_SIZE, \
242 MT_MEMORY | MT_RW | MT_SECURE)
243
Dan Handleyb4315302015-03-19 18:58:55 +0000244/*
245 * The number of regions like RO(code), coherent and data required by
246 * different BL stages which need to be mapped in the MMU.
247 */
248#if USE_COHERENT_MEM
249#define ARM_BL_REGIONS 3
250#else
251#define ARM_BL_REGIONS 2
252#endif
253
254#define MAX_MMAP_REGIONS (PLAT_ARM_MMAP_ENTRIES + \
255 ARM_BL_REGIONS)
256
257/* Memory mapped Generic timer interfaces */
258#define ARM_SYS_CNTCTL_BASE 0x2a430000
259#define ARM_SYS_CNTREAD_BASE 0x2a800000
260#define ARM_SYS_TIMCTL_BASE 0x2a810000
261
262#define ARM_CONSOLE_BAUDRATE 115200
263
Juan Castillo7b4c1402015-10-06 14:01:35 +0100264/* Trusted Watchdog constants */
265#define ARM_SP805_TWDG_BASE 0x2a490000
266#define ARM_SP805_TWDG_CLK_HZ 32768
267/* The TBBR document specifies a watchdog timeout of 256 seconds. SP805
268 * asserts reset after two consecutive countdowns (2 x 128 = 256 sec) */
269#define ARM_TWDG_TIMEOUT_SEC 128
270#define ARM_TWDG_LOAD_VAL (ARM_SP805_TWDG_CLK_HZ * \
271 ARM_TWDG_TIMEOUT_SEC)
272
Dan Handleyb4315302015-03-19 18:58:55 +0000273/******************************************************************************
274 * Required platform porting definitions common to all ARM standard platforms
275 *****************************************************************************/
276
Roberto Vargasb09ba052017-08-08 11:27:20 +0100277/*
278 * We need to access DRAM2 from BL2 for PSCI_MEM_PROTECT for
279 * AArch64 builds
280 */
281#ifdef AARCH64
282#define PLAT_PHY_ADDR_SPACE_SIZE (1ull << 36)
283#define PLAT_VIRT_ADDR_SPACE_SIZE (1ull << 36)
284#else
Antonio Nino Diaze60e74b2016-12-13 13:48:31 +0000285#define PLAT_PHY_ADDR_SPACE_SIZE (1ull << 32)
286#define PLAT_VIRT_ADDR_SPACE_SIZE (1ull << 32)
Roberto Vargasb09ba052017-08-08 11:27:20 +0100287#endif
288
Dan Handleyb4315302015-03-19 18:58:55 +0000289
Soby Mathew38dce702015-07-01 16:16:20 +0100290/*
291 * This macro defines the deepest retention state possible. A higher state
292 * id will represent an invalid or a power down state.
293 */
294#define PLAT_MAX_RET_STATE ARM_LOCAL_STATE_RET
295
296/*
297 * This macro defines the deepest power down states possible. Any state ID
298 * higher than this is invalid.
299 */
300#define PLAT_MAX_OFF_STATE ARM_LOCAL_STATE_OFF
301
Dan Handleyb4315302015-03-19 18:58:55 +0000302/*
303 * Some data must be aligned on the biggest cache line size in the platform.
304 * This is known only to the platform as it might have a combination of
305 * integrated and external caches.
306 */
307#define CACHE_WRITEBACK_GRANULE (1 << ARM_CACHE_WRITEBACK_SHIFT)
308
Dan Handleyb4315302015-03-19 18:58:55 +0000309
310/*******************************************************************************
311 * BL1 specific defines.
312 * BL1 RW data is relocated from ROM to RAM at runtime so we need 2 sets of
313 * addresses.
314 ******************************************************************************/
315#define BL1_RO_BASE PLAT_ARM_TRUSTED_ROM_BASE
316#define BL1_RO_LIMIT (PLAT_ARM_TRUSTED_ROM_BASE \
317 + PLAT_ARM_TRUSTED_ROM_SIZE)
318/*
Vikram Kanigiriecf70f72016-01-21 14:08:15 +0000319 * Put BL1 RW at the top of the Trusted SRAM.
Dan Handleyb4315302015-03-19 18:58:55 +0000320 */
Dan Handleyb4315302015-03-19 18:58:55 +0000321#define BL1_RW_BASE (ARM_BL_RAM_BASE + \
322 ARM_BL_RAM_SIZE - \
Vikram Kanigiriecf70f72016-01-21 14:08:15 +0000323 PLAT_ARM_MAX_BL1_RW_SIZE)
Dan Handleyb4315302015-03-19 18:58:55 +0000324#define BL1_RW_LIMIT (ARM_BL_RAM_BASE + ARM_BL_RAM_SIZE)
325
326/*******************************************************************************
327 * BL2 specific defines.
328 ******************************************************************************/
Soby Mathew5744e872017-11-14 14:10:10 +0000329#if ARM_BL31_IN_DRAM
David Wang4518dd92016-03-07 11:02:57 +0800330/*
dp-arma4409002017-02-15 11:07:55 +0000331 * For AArch64 BL31 is loaded in the DRAM.
David Wang4518dd92016-03-07 11:02:57 +0800332 * Put BL2 just below BL1.
333 */
334#define BL2_BASE (BL1_RW_BASE - PLAT_ARM_MAX_BL2_SIZE)
335#define BL2_LIMIT BL1_RW_BASE
Soby Mathew5744e872017-11-14 14:10:10 +0000336
337#elif defined(AARCH32) || JUNO_AARCH32_EL3_RUNTIME
338/*
339 * Put BL2 just below BL32.
340 */
341#define BL2_BASE (BL32_BASE - PLAT_ARM_MAX_BL2_SIZE)
342#define BL2_LIMIT BL32_BASE
343
David Wang4518dd92016-03-07 11:02:57 +0800344#else
Dan Handleyb4315302015-03-19 18:58:55 +0000345/*
Vikram Kanigiriecf70f72016-01-21 14:08:15 +0000346 * Put BL2 just below BL31.
Dan Handleyb4315302015-03-19 18:58:55 +0000347 */
Vikram Kanigiriecf70f72016-01-21 14:08:15 +0000348#define BL2_BASE (BL31_BASE - PLAT_ARM_MAX_BL2_SIZE)
Dan Handleyb4315302015-03-19 18:58:55 +0000349#define BL2_LIMIT BL31_BASE
David Wang4518dd92016-03-07 11:02:57 +0800350#endif
Dan Handleyb4315302015-03-19 18:58:55 +0000351
352/*******************************************************************************
Juan Castillod1786372015-12-14 09:35:25 +0000353 * BL31 specific defines.
Dan Handleyb4315302015-03-19 18:58:55 +0000354 ******************************************************************************/
David Wang4518dd92016-03-07 11:02:57 +0800355#if ARM_BL31_IN_DRAM
356/*
357 * Put BL31 at the bottom of TZC secured DRAM
358 */
359#define BL31_BASE ARM_AP_TZC_DRAM1_BASE
360#define BL31_LIMIT (ARM_AP_TZC_DRAM1_BASE + \
361 PLAT_ARM_MAX_BL31_SIZE)
Qixiang Xufd5763e2017-08-31 11:45:32 +0800362#elif (RESET_TO_BL31)
363/*
364 * Put BL31_BASE in the middle of the Trusted SRAM.
365 */
366#define BL31_BASE (ARM_TRUSTED_SRAM_BASE + \
367 (PLAT_ARM_TRUSTED_SRAM_SIZE >> 1))
368#define BL31_LIMIT (ARM_BL_RAM_BASE + ARM_BL_RAM_SIZE)
David Wang4518dd92016-03-07 11:02:57 +0800369#else
Dan Handleyb4315302015-03-19 18:58:55 +0000370/*
Vikram Kanigiriecf70f72016-01-21 14:08:15 +0000371 * Put BL31 at the top of the Trusted SRAM.
Dan Handleyb4315302015-03-19 18:58:55 +0000372 */
373#define BL31_BASE (ARM_BL_RAM_BASE + \
374 ARM_BL_RAM_SIZE - \
Vikram Kanigiriecf70f72016-01-21 14:08:15 +0000375 PLAT_ARM_MAX_BL31_SIZE)
Dan Handleyb4315302015-03-19 18:58:55 +0000376#define BL31_PROGBITS_LIMIT BL1_RW_BASE
377#define BL31_LIMIT (ARM_BL_RAM_BASE + ARM_BL_RAM_SIZE)
David Wang4518dd92016-03-07 11:02:57 +0800378#endif
Dan Handleyb4315302015-03-19 18:58:55 +0000379
Soby Mathew5744e872017-11-14 14:10:10 +0000380#if defined(AARCH32) || JUNO_AARCH32_EL3_RUNTIME
Dan Handleyb4315302015-03-19 18:58:55 +0000381/*******************************************************************************
Soby Mathew5744e872017-11-14 14:10:10 +0000382 * BL32 specific defines for EL3 runtime in AArch32 mode
383 ******************************************************************************/
384# if RESET_TO_SP_MIN && !JUNO_AARCH32_EL3_RUNTIME
385/* SP_MIN is the only BL image in SRAM. Allocate the whole of SRAM to BL32 */
386# define BL32_BASE ARM_BL_RAM_BASE
387# define BL32_LIMIT (ARM_BL_RAM_BASE + ARM_BL_RAM_SIZE)
388# else
389/* Put BL32 at the top of the Trusted SRAM.*/
390# define BL32_BASE (ARM_BL_RAM_BASE + \
391 ARM_BL_RAM_SIZE - \
392 PLAT_ARM_MAX_BL32_SIZE)
393# define BL32_PROGBITS_LIMIT BL1_RW_BASE
394# define BL32_LIMIT (ARM_BL_RAM_BASE + ARM_BL_RAM_SIZE)
395# endif /* RESET_TO_SP_MIN && !JUNO_AARCH32_EL3_RUNTIME */
396
397#else
398/*******************************************************************************
399 * BL32 specific defines for EL3 runtime in AArch64 mode
Dan Handleyb4315302015-03-19 18:58:55 +0000400 ******************************************************************************/
401/*
402 * On ARM standard platforms, the TSP can execute from Trusted SRAM,
403 * Trusted DRAM (if available) or the DRAM region secured by the TrustZone
404 * controller.
405 */
Soby Mathew5744e872017-11-14 14:10:10 +0000406# if ENABLE_SPM
407# define TSP_SEC_MEM_BASE (ARM_AP_TZC_DRAM1_BASE + ULL(0x200000))
408# define TSP_SEC_MEM_SIZE (ARM_AP_TZC_DRAM1_SIZE - ULL(0x200000))
409# define BL32_BASE (ARM_AP_TZC_DRAM1_BASE + ULL(0x200000))
410# define BL32_LIMIT (ARM_AP_TZC_DRAM1_BASE + \
Antonio Nino Diaze29efeb2017-11-09 11:34:09 +0000411 ARM_AP_TZC_DRAM1_SIZE)
Soby Mathew5744e872017-11-14 14:10:10 +0000412# elif ARM_BL31_IN_DRAM
413# define TSP_SEC_MEM_BASE (ARM_AP_TZC_DRAM1_BASE + \
David Wang4518dd92016-03-07 11:02:57 +0800414 PLAT_ARM_MAX_BL31_SIZE)
Soby Mathew5744e872017-11-14 14:10:10 +0000415# define TSP_SEC_MEM_SIZE (ARM_AP_TZC_DRAM1_SIZE - \
David Wang4518dd92016-03-07 11:02:57 +0800416 PLAT_ARM_MAX_BL31_SIZE)
Soby Mathew5744e872017-11-14 14:10:10 +0000417# define BL32_BASE (ARM_AP_TZC_DRAM1_BASE + \
David Wang4518dd92016-03-07 11:02:57 +0800418 PLAT_ARM_MAX_BL31_SIZE)
Soby Mathew5744e872017-11-14 14:10:10 +0000419# define BL32_LIMIT (ARM_AP_TZC_DRAM1_BASE + \
David Wang4518dd92016-03-07 11:02:57 +0800420 ARM_AP_TZC_DRAM1_SIZE)
Soby Mathew5744e872017-11-14 14:10:10 +0000421# elif ARM_TSP_RAM_LOCATION_ID == ARM_TRUSTED_SRAM_ID
422# define TSP_SEC_MEM_BASE ARM_BL_RAM_BASE
423# define TSP_SEC_MEM_SIZE ARM_BL_RAM_SIZE
424# define TSP_PROGBITS_LIMIT BL2_BASE
425# define BL32_BASE ARM_BL_RAM_BASE
426# define BL32_LIMIT BL31_BASE
427# elif ARM_TSP_RAM_LOCATION_ID == ARM_TRUSTED_DRAM_ID
428# define TSP_SEC_MEM_BASE PLAT_ARM_TRUSTED_DRAM_BASE
429# define TSP_SEC_MEM_SIZE PLAT_ARM_TRUSTED_DRAM_SIZE
430# define BL32_BASE PLAT_ARM_TRUSTED_DRAM_BASE
431# define BL32_LIMIT (PLAT_ARM_TRUSTED_DRAM_BASE \
Dan Handleyb4315302015-03-19 18:58:55 +0000432 + (1 << 21))
Soby Mathew5744e872017-11-14 14:10:10 +0000433# elif ARM_TSP_RAM_LOCATION_ID == ARM_DRAM_ID
434# define TSP_SEC_MEM_BASE ARM_AP_TZC_DRAM1_BASE
435# define TSP_SEC_MEM_SIZE ARM_AP_TZC_DRAM1_SIZE
436# define BL32_BASE ARM_AP_TZC_DRAM1_BASE
437# define BL32_LIMIT (ARM_AP_TZC_DRAM1_BASE + \
Dan Handleyb4315302015-03-19 18:58:55 +0000438 ARM_AP_TZC_DRAM1_SIZE)
Soby Mathew5744e872017-11-14 14:10:10 +0000439# else
440# error "Unsupported ARM_TSP_RAM_LOCATION_ID value"
441# endif
442#endif /* AARCH32 || JUNO_AARCH32_EL3_RUNTIME */
Dan Handleyb4315302015-03-19 18:58:55 +0000443
Antonio Nino Diaze29efeb2017-11-09 11:34:09 +0000444/*
445 * BL32 is mandatory in AArch32. In AArch64, undefine BL32_BASE if there is no
446 * SPD and no SPM, as they are the only ones that can be used as BL32.
447 */
Soby Mathew5744e872017-11-14 14:10:10 +0000448#if !(defined(AARCH32) || JUNO_AARCH32_EL3_RUNTIME)
Antonio Nino Diaze29efeb2017-11-09 11:34:09 +0000449# if defined(SPD_none) && !ENABLE_SPM
450# undef BL32_BASE
Soby Mathew5744e872017-11-14 14:10:10 +0000451# endif /* defined(SPD_none) && !ENABLE_SPM */
452#endif /* !(defined(AARCH32) || JUNO_AARCH32_EL3_RUNTIME) */
Antonio Nino Diaz81d139d2016-04-05 11:38:49 +0100453
Yatharth Kochar436223d2015-10-11 14:14:55 +0100454/*******************************************************************************
455 * FWU Images: NS_BL1U, BL2U & NS_BL2U defines.
456 ******************************************************************************/
457#define BL2U_BASE BL2_BASE
Soby Mathew5744e872017-11-14 14:10:10 +0000458#define BL2U_LIMIT BL2_LIMIT
459
Yatharth Kochar436223d2015-10-11 14:14:55 +0100460#define NS_BL2U_BASE ARM_NS_DRAM1_BASE
Yatharth Kochar843ddee2016-02-01 11:04:46 +0000461#define NS_BL1U_BASE (PLAT_ARM_NVM_BASE + 0x03EB8000)
Yatharth Kochar436223d2015-10-11 14:14:55 +0100462
Dan Handleyb4315302015-03-19 18:58:55 +0000463/*
464 * ID of the secure physical generic timer interrupt used by the TSP.
465 */
466#define TSP_IRQ_SEC_PHY_TIMER ARM_IRQ_SEC_PHY_TIMER
467
468
Vikram Kanigirie25e6f42015-09-09 10:52:13 +0100469/*
470 * One cache line needed for bakery locks on ARM platforms
471 */
472#define PLAT_PERCPU_BAKERY_LOCK_SIZE (1 * CACHE_WRITEBACK_GRANULE)
473
Jeenu Viswambharan0bef0ed2017-10-24 11:47:13 +0100474/* Priority levels for ARM platforms */
475#define PLAT_SDEI_CRITICAL_PRI 0x60
476#define PLAT_SDEI_NORMAL_PRI 0x70
477
478/* ARM platforms use 3 upper bits of secure interrupt priority */
479#define ARM_PRI_BITS 3
Vikram Kanigirie25e6f42015-09-09 10:52:13 +0100480
Jeenu Viswambharan0baec2a2017-09-22 08:32:10 +0100481/* SGI used for SDEI signalling */
482#define ARM_SDEI_SGI ARM_IRQ_SEC_SGI_0
483
484/* ARM SDEI dynamic private event numbers */
485#define ARM_SDEI_DP_EVENT_0 1000
486#define ARM_SDEI_DP_EVENT_1 1001
487#define ARM_SDEI_DP_EVENT_2 1002
488
489/* ARM SDEI dynamic shared event numbers */
490#define ARM_SDEI_DS_EVENT_0 2000
491#define ARM_SDEI_DS_EVENT_1 2001
492#define ARM_SDEI_DS_EVENT_2 2002
493
Jeenu Viswambharan7bdf0c12017-12-08 10:38:24 +0000494#define ARM_SDEI_PRIVATE_EVENTS \
495 SDEI_DEFINE_EVENT_0(ARM_SDEI_SGI), \
496 SDEI_PRIVATE_EVENT(ARM_SDEI_DP_EVENT_0, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC), \
497 SDEI_PRIVATE_EVENT(ARM_SDEI_DP_EVENT_1, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC), \
498 SDEI_PRIVATE_EVENT(ARM_SDEI_DP_EVENT_2, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC)
499
500#define ARM_SDEI_SHARED_EVENTS \
501 SDEI_SHARED_EVENT(ARM_SDEI_DS_EVENT_0, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC), \
502 SDEI_SHARED_EVENT(ARM_SDEI_DS_EVENT_1, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC), \
503 SDEI_SHARED_EVENT(ARM_SDEI_DS_EVENT_2, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC)
504
Dan Handleyb4315302015-03-19 18:58:55 +0000505#endif /* __ARM_DEF_H__ */