Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 1 | /* |
Manish V Badarkhe | 5a4f9b8 | 2023-04-30 09:25:15 +0100 | [diff] [blame] | 2 | * Copyright (c) 2015-2023, Arm Limited and Contributors. All rights reserved. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 5 | */ |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 6 | #ifndef ARM_DEF_H |
| 7 | #define ARM_DEF_H |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 8 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | #include <arch.h> |
| 10 | #include <common/interrupt_props.h> |
| 11 | #include <common/tbbr/tbbr_img_def.h> |
| 12 | #include <drivers/arm/gic_common.h> |
| 13 | #include <lib/utils_def.h> |
| 14 | #include <lib/xlat_tables/xlat_tables_defs.h> |
Manish V Badarkhe | 5586151 | 2020-03-27 13:25:51 +0000 | [diff] [blame] | 15 | #include <plat/arm/common/smccc_def.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 16 | #include <plat/common/common_def.h> |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 17 | |
| 18 | /****************************************************************************** |
| 19 | * Definitions common to all ARM standard platforms |
| 20 | *****************************************************************************/ |
| 21 | |
Max Shvetsov | 06dba29 | 2019-12-06 11:50:12 +0000 | [diff] [blame] | 22 | /* |
laurenw-arm | 055199b | 2022-10-28 11:26:32 -0500 | [diff] [blame] | 23 | * Root of trust key lengths |
Max Shvetsov | 06dba29 | 2019-12-06 11:50:12 +0000 | [diff] [blame] | 24 | */ |
| 25 | #define ARM_ROTPK_HEADER_LEN 19 |
| 26 | #define ARM_ROTPK_HASH_LEN 32 |
laurenw-arm | 055199b | 2022-10-28 11:26:32 -0500 | [diff] [blame] | 27 | /* ARM_ROTPK_KEY_LEN includes DER header + raw key material */ |
| 28 | #define ARM_ROTPK_KEY_LEN 294 |
Max Shvetsov | 06dba29 | 2019-12-06 11:50:12 +0000 | [diff] [blame] | 29 | |
Juan Castillo | 7d19941 | 2015-12-14 09:35:25 +0000 | [diff] [blame] | 30 | /* Special value used to verify platform parameters from BL2 to BL31 */ |
Antonio Nino Diaz | ab5d2b1 | 2018-10-30 16:12:32 +0000 | [diff] [blame] | 31 | #define ARM_BL31_PLAT_PARAM_VAL ULL(0x0f1e2d3c4b5a6978) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 32 | |
Deepika Bhavnani | 4287c0c | 2019-12-13 10:23:18 -0600 | [diff] [blame] | 33 | #define ARM_SYSTEM_COUNT U(1) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 34 | |
| 35 | #define ARM_CACHE_WRITEBACK_SHIFT 6 |
| 36 | |
Soby Mathew | fec4eb7 | 2015-07-01 16:16:20 +0100 | [diff] [blame] | 37 | /* |
| 38 | * Macros mapping the MPIDR Affinity levels to ARM Platform Power levels. The |
| 39 | * power levels have a 1:1 mapping with the MPIDR affinity levels. |
| 40 | */ |
| 41 | #define ARM_PWR_LVL0 MPIDR_AFFLVL0 |
| 42 | #define ARM_PWR_LVL1 MPIDR_AFFLVL1 |
Soby Mathew | a869de1 | 2015-05-08 10:18:59 +0100 | [diff] [blame] | 43 | #define ARM_PWR_LVL2 MPIDR_AFFLVL2 |
Chandni Cherukuri | 9ec4a11 | 2018-10-16 14:42:19 +0530 | [diff] [blame] | 44 | #define ARM_PWR_LVL3 MPIDR_AFFLVL3 |
Soby Mathew | fec4eb7 | 2015-07-01 16:16:20 +0100 | [diff] [blame] | 45 | |
| 46 | /* |
| 47 | * Macros for local power states in ARM platforms encoded by State-ID field |
| 48 | * within the power-state parameter. |
| 49 | */ |
| 50 | /* Local power state for power domains in Run state. */ |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 51 | #define ARM_LOCAL_STATE_RUN U(0) |
Soby Mathew | fec4eb7 | 2015-07-01 16:16:20 +0100 | [diff] [blame] | 52 | /* Local power state for retention. Valid only for CPU power domains */ |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 53 | #define ARM_LOCAL_STATE_RET U(1) |
Soby Mathew | fec4eb7 | 2015-07-01 16:16:20 +0100 | [diff] [blame] | 54 | /* Local power state for OFF/power-down. Valid for CPU and cluster power |
| 55 | domains */ |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 56 | #define ARM_LOCAL_STATE_OFF U(2) |
Soby Mathew | fec4eb7 | 2015-07-01 16:16:20 +0100 | [diff] [blame] | 57 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 58 | /* Memory location options for TSP */ |
| 59 | #define ARM_TRUSTED_SRAM_ID 0 |
| 60 | #define ARM_TRUSTED_DRAM_ID 1 |
| 61 | #define ARM_DRAM_ID 2 |
| 62 | |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 63 | #ifdef PLAT_ARM_TRUSTED_SRAM_BASE |
laurenw-arm | 7c7b198 | 2020-10-21 13:34:40 -0500 | [diff] [blame] | 64 | #define ARM_TRUSTED_SRAM_BASE PLAT_ARM_TRUSTED_SRAM_BASE |
| 65 | #else |
Antonio Nino Diaz | 5f47579 | 2018-10-15 14:58:11 +0100 | [diff] [blame] | 66 | #define ARM_TRUSTED_SRAM_BASE UL(0x04000000) |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 67 | #endif /* PLAT_ARM_TRUSTED_SRAM_BASE */ |
laurenw-arm | 7c7b198 | 2020-10-21 13:34:40 -0500 | [diff] [blame] | 68 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 69 | #define ARM_SHARED_RAM_BASE ARM_TRUSTED_SRAM_BASE |
Antonio Nino Diaz | 5f47579 | 2018-10-15 14:58:11 +0100 | [diff] [blame] | 70 | #define ARM_SHARED_RAM_SIZE UL(0x00001000) /* 4 KB */ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 71 | |
| 72 | /* The remaining Trusted SRAM is used to load the BL images */ |
| 73 | #define ARM_BL_RAM_BASE (ARM_SHARED_RAM_BASE + \ |
| 74 | ARM_SHARED_RAM_SIZE) |
| 75 | #define ARM_BL_RAM_SIZE (PLAT_ARM_TRUSTED_SRAM_SIZE - \ |
| 76 | ARM_SHARED_RAM_SIZE) |
| 77 | |
| 78 | /* |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 79 | * The top 16MB (or 64MB if RME is enabled) of DRAM1 is configured as |
| 80 | * follows: |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 81 | * - SCP TZC DRAM: If present, DRAM reserved for SCP use |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 82 | * - L1 GPT DRAM: Reserved for L1 GPT if RME is enabled |
| 83 | * - REALM DRAM: Reserved for Realm world if RME is enabled |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 84 | * - TF-A <-> RMM SHARED: Area shared for communication between TF-A and RMM |
Manish V Badarkhe | b65ae4e | 2022-12-12 10:14:25 +0000 | [diff] [blame] | 85 | * - Event Log: Area for Event Log if MEASURED_BOOT feature is enabled |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 86 | * - AP TZC DRAM: The remaining TZC secured DRAM reserved for AP use |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 87 | * |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 88 | * RME enabled(64MB) RME not enabled(16MB) |
| 89 | * -------------------- ------------------- |
| 90 | * | | | | |
| 91 | * | AP TZC (~28MB) | | AP TZC (~14MB) | |
| 92 | * -------------------- ------------------- |
Manish V Badarkhe | b65ae4e | 2022-12-12 10:14:25 +0000 | [diff] [blame] | 93 | * | Event Log | | Event Log | |
| 94 | * | (4KB) | | (4KB) | |
| 95 | * -------------------- ------------------- |
| 96 | * | REALM (RMM) | | | |
| 97 | * | (32MB - 4KB) | | EL3 TZC (2MB) | |
| 98 | * -------------------- ------------------- |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 99 | * | | | | |
Manish V Badarkhe | b65ae4e | 2022-12-12 10:14:25 +0000 | [diff] [blame] | 100 | * | TF-A <-> RMM | | SCP TZC | |
| 101 | * | SHARED (4KB) | 0xFFFF_FFFF------------------- |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 102 | * -------------------- |
| 103 | * | | |
| 104 | * | EL3 TZC (3MB) | |
| 105 | * -------------------- |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 106 | * | L1 GPT + SCP TZC | |
| 107 | * | (~1MB) | |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 108 | * 0xFFFF_FFFF -------------------- |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 109 | */ |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 110 | #if ENABLE_RME |
| 111 | #define ARM_TZC_DRAM1_SIZE UL(0x04000000) /* 64MB */ |
| 112 | /* |
| 113 | * Define a region within the TZC secured DRAM for use by EL3 runtime |
| 114 | * firmware. This region is meant to be NOLOAD and will not be zero |
Chris Kay | 33bfc5e | 2023-02-14 11:30:04 +0000 | [diff] [blame] | 115 | * initialized. Data sections with the attribute `.arm_el3_tzc_dram` will be |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 116 | * placed here. 3MB region is reserved if RME is enabled, 2MB otherwise. |
| 117 | */ |
| 118 | #define ARM_EL3_TZC_DRAM1_SIZE UL(0x00300000) /* 3MB */ |
| 119 | #define ARM_L1_GPT_SIZE UL(0x00100000) /* 1MB */ |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 120 | /* 32MB - ARM_EL3_RMM_SHARED_SIZE */ |
| 121 | #define ARM_REALM_SIZE (UL(0x02000000) - \ |
| 122 | ARM_EL3_RMM_SHARED_SIZE) |
| 123 | #define ARM_EL3_RMM_SHARED_SIZE (PAGE_SIZE) /* 4KB */ |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 124 | #else |
| 125 | #define ARM_TZC_DRAM1_SIZE UL(0x01000000) /* 16MB */ |
| 126 | #define ARM_EL3_TZC_DRAM1_SIZE UL(0x00200000) /* 2MB */ |
| 127 | #define ARM_L1_GPT_SIZE UL(0) |
| 128 | #define ARM_REALM_SIZE UL(0) |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 129 | #define ARM_EL3_RMM_SHARED_SIZE UL(0) |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 130 | #endif /* ENABLE_RME */ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 131 | |
| 132 | #define ARM_SCP_TZC_DRAM1_BASE (ARM_DRAM1_BASE + \ |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 133 | ARM_DRAM1_SIZE - \ |
| 134 | (ARM_SCP_TZC_DRAM1_SIZE + \ |
| 135 | ARM_L1_GPT_SIZE)) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 136 | #define ARM_SCP_TZC_DRAM1_SIZE PLAT_ARM_SCP_TZC_DRAM1_SIZE |
| 137 | #define ARM_SCP_TZC_DRAM1_END (ARM_SCP_TZC_DRAM1_BASE + \ |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 138 | ARM_SCP_TZC_DRAM1_SIZE - 1U) |
Manish V Badarkhe | b65ae4e | 2022-12-12 10:14:25 +0000 | [diff] [blame] | 139 | |
| 140 | # if (defined(SPD_tspd) || defined(SPD_opteed) || defined(SPD_spmd)) && \ |
| 141 | MEASURED_BOOT |
| 142 | #define ARM_EVENT_LOG_DRAM1_SIZE UL(0x00001000) /* 4KB */ |
| 143 | |
| 144 | #if ENABLE_RME |
| 145 | #define ARM_EVENT_LOG_DRAM1_BASE (ARM_REALM_BASE - \ |
| 146 | ARM_EVENT_LOG_DRAM1_SIZE) |
| 147 | #else |
| 148 | #define ARM_EVENT_LOG_DRAM1_BASE (ARM_EL3_TZC_DRAM1_BASE - \ |
| 149 | ARM_EVENT_LOG_DRAM1_SIZE) |
| 150 | #endif /* ENABLE_RME */ |
| 151 | #define ARM_EVENT_LOG_DRAM1_END (ARM_EVENT_LOG_DRAM1_BASE + \ |
| 152 | ARM_EVENT_LOG_DRAM1_SIZE - \ |
| 153 | 1U) |
| 154 | #else |
| 155 | #define ARM_EVENT_LOG_DRAM1_SIZE UL(0) |
| 156 | #endif /* (SPD_tspd || SPD_opteed || SPD_spmd) && MEASURED_BOOT */ |
| 157 | |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 158 | #if ENABLE_RME |
| 159 | #define ARM_L1_GPT_ADDR_BASE (ARM_DRAM1_BASE + \ |
| 160 | ARM_DRAM1_SIZE - \ |
| 161 | ARM_L1_GPT_SIZE) |
| 162 | #define ARM_L1_GPT_END (ARM_L1_GPT_ADDR_BASE + \ |
| 163 | ARM_L1_GPT_SIZE - 1U) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 164 | |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 165 | #define ARM_REALM_BASE (ARM_EL3_RMM_SHARED_BASE - \ |
| 166 | ARM_REALM_SIZE) |
| 167 | |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 168 | #define ARM_REALM_END (ARM_REALM_BASE + ARM_REALM_SIZE - 1U) |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 169 | |
| 170 | #define ARM_EL3_RMM_SHARED_BASE (ARM_DRAM1_BASE + \ |
| 171 | ARM_DRAM1_SIZE - \ |
| 172 | (ARM_SCP_TZC_DRAM1_SIZE + \ |
| 173 | ARM_L1_GPT_SIZE + \ |
| 174 | ARM_EL3_RMM_SHARED_SIZE + \ |
| 175 | ARM_EL3_TZC_DRAM1_SIZE)) |
| 176 | |
| 177 | #define ARM_EL3_RMM_SHARED_END (ARM_EL3_RMM_SHARED_BASE + \ |
| 178 | ARM_EL3_RMM_SHARED_SIZE - 1U) |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 179 | #endif /* ENABLE_RME */ |
| 180 | |
| 181 | #define ARM_EL3_TZC_DRAM1_BASE (ARM_SCP_TZC_DRAM1_BASE - \ |
| 182 | ARM_EL3_TZC_DRAM1_SIZE) |
Soby Mathew | 3b5156e | 2017-10-05 12:27:33 +0100 | [diff] [blame] | 183 | #define ARM_EL3_TZC_DRAM1_END (ARM_EL3_TZC_DRAM1_BASE + \ |
Alexei Fedorov | c717617 | 2020-07-13 12:11:05 +0100 | [diff] [blame] | 184 | ARM_EL3_TZC_DRAM1_SIZE - 1U) |
Soby Mathew | 3b5156e | 2017-10-05 12:27:33 +0100 | [diff] [blame] | 185 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 186 | #define ARM_AP_TZC_DRAM1_BASE (ARM_DRAM1_BASE + \ |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 187 | ARM_DRAM1_SIZE - \ |
| 188 | ARM_TZC_DRAM1_SIZE) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 189 | #define ARM_AP_TZC_DRAM1_SIZE (ARM_TZC_DRAM1_SIZE - \ |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 190 | (ARM_SCP_TZC_DRAM1_SIZE + \ |
| 191 | ARM_EL3_TZC_DRAM1_SIZE + \ |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 192 | ARM_EL3_RMM_SHARED_SIZE + \ |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 193 | ARM_REALM_SIZE + \ |
Manish V Badarkhe | b65ae4e | 2022-12-12 10:14:25 +0000 | [diff] [blame] | 194 | ARM_L1_GPT_SIZE + \ |
| 195 | ARM_EVENT_LOG_DRAM1_SIZE)) |
| 196 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 197 | #define ARM_AP_TZC_DRAM1_END (ARM_AP_TZC_DRAM1_BASE + \ |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 198 | ARM_AP_TZC_DRAM1_SIZE - 1U) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 199 | |
Soby Mathew | 7e4d665 | 2017-05-10 11:50:30 +0100 | [diff] [blame] | 200 | /* Define the Access permissions for Secure peripherals to NS_DRAM */ |
| 201 | #if ARM_CRYPTOCELL_INTEG |
| 202 | /* |
| 203 | * Allow Secure peripheral to read NS DRAM when integrated with CryptoCell. |
| 204 | * This is required by CryptoCell to authenticate BL33 which is loaded |
| 205 | * into the Non Secure DDR. |
| 206 | */ |
| 207 | #define ARM_TZC_NS_DRAM_S_ACCESS TZC_REGION_S_RD |
| 208 | #else |
| 209 | #define ARM_TZC_NS_DRAM_S_ACCESS TZC_REGION_S_NONE |
| 210 | #endif |
| 211 | |
Summer Qin | 9db8f2e | 2017-04-24 16:49:28 +0100 | [diff] [blame] | 212 | #ifdef SPD_opteed |
| 213 | /* |
Jens Wiklander | ae73b16 | 2017-08-24 15:39:09 +0200 | [diff] [blame] | 214 | * BL2 needs to map 4MB at the end of TZC_DRAM1 in order to |
| 215 | * load/authenticate the trusted os extra image. The first 512KB of |
| 216 | * TZC_DRAM1 are reserved for trusted os (OPTEE). The extra image loading |
| 217 | * for OPTEE is paged image which only include the paging part using |
| 218 | * virtual memory but without "init" data. OPTEE will copy the "init" data |
| 219 | * (from pager image) to the first 512KB of TZC_DRAM, and then copy the |
| 220 | * extra image behind the "init" data. |
Summer Qin | 9db8f2e | 2017-04-24 16:49:28 +0100 | [diff] [blame] | 221 | */ |
Jens Wiklander | ae73b16 | 2017-08-24 15:39:09 +0200 | [diff] [blame] | 222 | #define ARM_OPTEE_PAGEABLE_LOAD_BASE (ARM_AP_TZC_DRAM1_BASE + \ |
| 223 | ARM_AP_TZC_DRAM1_SIZE - \ |
| 224 | ARM_OPTEE_PAGEABLE_LOAD_SIZE) |
Antonio Nino Diaz | 5f47579 | 2018-10-15 14:58:11 +0100 | [diff] [blame] | 225 | #define ARM_OPTEE_PAGEABLE_LOAD_SIZE UL(0x400000) |
Summer Qin | 9db8f2e | 2017-04-24 16:49:28 +0100 | [diff] [blame] | 226 | #define ARM_OPTEE_PAGEABLE_LOAD_MEM MAP_REGION_FLAT( \ |
| 227 | ARM_OPTEE_PAGEABLE_LOAD_BASE, \ |
| 228 | ARM_OPTEE_PAGEABLE_LOAD_SIZE, \ |
| 229 | MT_MEMORY | MT_RW | MT_SECURE) |
Soby Mathew | 874fc9e | 2017-09-01 13:43:50 +0100 | [diff] [blame] | 230 | |
| 231 | /* |
| 232 | * Map the memory for the OP-TEE core (also known as OP-TEE pager when paging |
| 233 | * support is enabled). |
| 234 | */ |
| 235 | #define ARM_MAP_OPTEE_CORE_MEM MAP_REGION_FLAT( \ |
| 236 | BL32_BASE, \ |
| 237 | BL32_LIMIT - BL32_BASE, \ |
| 238 | MT_MEMORY | MT_RW | MT_SECURE) |
Summer Qin | 9db8f2e | 2017-04-24 16:49:28 +0100 | [diff] [blame] | 239 | #endif /* SPD_opteed */ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 240 | |
| 241 | #define ARM_NS_DRAM1_BASE ARM_DRAM1_BASE |
| 242 | #define ARM_NS_DRAM1_SIZE (ARM_DRAM1_SIZE - \ |
| 243 | ARM_TZC_DRAM1_SIZE) |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 244 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 245 | #define ARM_NS_DRAM1_END (ARM_NS_DRAM1_BASE + \ |
Alexei Fedorov | c717617 | 2020-07-13 12:11:05 +0100 | [diff] [blame] | 246 | ARM_NS_DRAM1_SIZE - 1U) |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 247 | #ifdef PLAT_ARM_DRAM1_BASE |
laurenw-arm | 7c7b198 | 2020-10-21 13:34:40 -0500 | [diff] [blame] | 248 | #define ARM_DRAM1_BASE PLAT_ARM_DRAM1_BASE |
| 249 | #else |
Sandrine Bailleux | 6c32fc7 | 2018-10-31 14:28:17 +0100 | [diff] [blame] | 250 | #define ARM_DRAM1_BASE ULL(0x80000000) |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 251 | #endif /* PLAT_ARM_DRAM1_BASE */ |
laurenw-arm | 7c7b198 | 2020-10-21 13:34:40 -0500 | [diff] [blame] | 252 | |
Sandrine Bailleux | 6c32fc7 | 2018-10-31 14:28:17 +0100 | [diff] [blame] | 253 | #define ARM_DRAM1_SIZE ULL(0x80000000) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 254 | #define ARM_DRAM1_END (ARM_DRAM1_BASE + \ |
Alexei Fedorov | c717617 | 2020-07-13 12:11:05 +0100 | [diff] [blame] | 255 | ARM_DRAM1_SIZE - 1U) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 256 | |
Sami Mujawar | a43ae7c | 2019-05-09 13:35:02 +0100 | [diff] [blame] | 257 | #define ARM_DRAM2_BASE PLAT_ARM_DRAM2_BASE |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 258 | #define ARM_DRAM2_SIZE PLAT_ARM_DRAM2_SIZE |
| 259 | #define ARM_DRAM2_END (ARM_DRAM2_BASE + \ |
Alexei Fedorov | c717617 | 2020-07-13 12:11:05 +0100 | [diff] [blame] | 260 | ARM_DRAM2_SIZE - 1U) |
AlexeiFedorov | 8e754f9 | 2022-12-14 17:28:11 +0000 | [diff] [blame] | 261 | /* Number of DRAM banks */ |
AlexeiFedorov | 334d235 | 2022-12-29 15:57:40 +0000 | [diff] [blame] | 262 | #define ARM_DRAM_NUM_BANKS 2UL |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 263 | |
| 264 | #define ARM_IRQ_SEC_PHY_TIMER 29 |
| 265 | |
| 266 | #define ARM_IRQ_SEC_SGI_0 8 |
| 267 | #define ARM_IRQ_SEC_SGI_1 9 |
| 268 | #define ARM_IRQ_SEC_SGI_2 10 |
| 269 | #define ARM_IRQ_SEC_SGI_3 11 |
| 270 | #define ARM_IRQ_SEC_SGI_4 12 |
| 271 | #define ARM_IRQ_SEC_SGI_5 13 |
| 272 | #define ARM_IRQ_SEC_SGI_6 14 |
| 273 | #define ARM_IRQ_SEC_SGI_7 15 |
| 274 | |
Achin Gupta | 1fa7eb6 | 2015-11-03 14:18:34 +0000 | [diff] [blame] | 275 | /* |
Jeenu Viswambharan | 723dce0 | 2017-09-22 08:59:59 +0100 | [diff] [blame] | 276 | * Define a list of Group 1 Secure and Group 0 interrupt properties as per GICv3 |
| 277 | * terminology. On a GICv2 system or mode, the lists will be merged and treated |
| 278 | * as Group 0 interrupts. |
| 279 | */ |
| 280 | #define ARM_G1S_IRQ_PROPS(grp) \ |
Antonio Nino Diaz | e590fd5 | 2018-08-21 09:42:26 +0100 | [diff] [blame] | 281 | INTR_PROP_DESC(ARM_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, (grp), \ |
Jeenu Viswambharan | 723dce0 | 2017-09-22 08:59:59 +0100 | [diff] [blame] | 282 | GIC_INTR_CFG_LEVEL), \ |
Antonio Nino Diaz | e590fd5 | 2018-08-21 09:42:26 +0100 | [diff] [blame] | 283 | INTR_PROP_DESC(ARM_IRQ_SEC_SGI_1, GIC_HIGHEST_SEC_PRIORITY, (grp), \ |
Jeenu Viswambharan | 723dce0 | 2017-09-22 08:59:59 +0100 | [diff] [blame] | 284 | GIC_INTR_CFG_EDGE), \ |
Antonio Nino Diaz | e590fd5 | 2018-08-21 09:42:26 +0100 | [diff] [blame] | 285 | INTR_PROP_DESC(ARM_IRQ_SEC_SGI_2, GIC_HIGHEST_SEC_PRIORITY, (grp), \ |
Jeenu Viswambharan | 723dce0 | 2017-09-22 08:59:59 +0100 | [diff] [blame] | 286 | GIC_INTR_CFG_EDGE), \ |
Antonio Nino Diaz | e590fd5 | 2018-08-21 09:42:26 +0100 | [diff] [blame] | 287 | INTR_PROP_DESC(ARM_IRQ_SEC_SGI_3, GIC_HIGHEST_SEC_PRIORITY, (grp), \ |
Jeenu Viswambharan | 723dce0 | 2017-09-22 08:59:59 +0100 | [diff] [blame] | 288 | GIC_INTR_CFG_EDGE), \ |
Antonio Nino Diaz | e590fd5 | 2018-08-21 09:42:26 +0100 | [diff] [blame] | 289 | INTR_PROP_DESC(ARM_IRQ_SEC_SGI_4, GIC_HIGHEST_SEC_PRIORITY, (grp), \ |
Jeenu Viswambharan | 723dce0 | 2017-09-22 08:59:59 +0100 | [diff] [blame] | 290 | GIC_INTR_CFG_EDGE), \ |
Antonio Nino Diaz | e590fd5 | 2018-08-21 09:42:26 +0100 | [diff] [blame] | 291 | INTR_PROP_DESC(ARM_IRQ_SEC_SGI_5, GIC_HIGHEST_SEC_PRIORITY, (grp), \ |
Jeenu Viswambharan | 723dce0 | 2017-09-22 08:59:59 +0100 | [diff] [blame] | 292 | GIC_INTR_CFG_EDGE), \ |
Antonio Nino Diaz | e590fd5 | 2018-08-21 09:42:26 +0100 | [diff] [blame] | 293 | INTR_PROP_DESC(ARM_IRQ_SEC_SGI_7, GIC_HIGHEST_SEC_PRIORITY, (grp), \ |
Jeenu Viswambharan | 723dce0 | 2017-09-22 08:59:59 +0100 | [diff] [blame] | 294 | GIC_INTR_CFG_EDGE) |
| 295 | |
| 296 | #define ARM_G0_IRQ_PROPS(grp) \ |
Antonio Nino Diaz | e590fd5 | 2018-08-21 09:42:26 +0100 | [diff] [blame] | 297 | INTR_PROP_DESC(ARM_IRQ_SEC_SGI_0, PLAT_SDEI_NORMAL_PRI, (grp), \ |
Jeenu Viswambharan | 723dce0 | 2017-09-22 08:59:59 +0100 | [diff] [blame] | 298 | GIC_INTR_CFG_EDGE), \ |
Antonio Nino Diaz | e590fd5 | 2018-08-21 09:42:26 +0100 | [diff] [blame] | 299 | INTR_PROP_DESC(ARM_IRQ_SEC_SGI_6, GIC_HIGHEST_SEC_PRIORITY, (grp), \ |
Jeenu Viswambharan | 723dce0 | 2017-09-22 08:59:59 +0100 | [diff] [blame] | 300 | GIC_INTR_CFG_EDGE) |
| 301 | |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 302 | #define ARM_MAP_SHARED_RAM MAP_REGION_FLAT( \ |
| 303 | ARM_SHARED_RAM_BASE, \ |
| 304 | ARM_SHARED_RAM_SIZE, \ |
| 305 | MT_DEVICE | MT_RW | EL3_PAS) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 306 | |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 307 | #define ARM_MAP_NS_DRAM1 MAP_REGION_FLAT( \ |
| 308 | ARM_NS_DRAM1_BASE, \ |
| 309 | ARM_NS_DRAM1_SIZE, \ |
| 310 | MT_MEMORY | MT_RW | MT_NS) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 311 | |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 312 | #define ARM_MAP_DRAM2 MAP_REGION_FLAT( \ |
| 313 | ARM_DRAM2_BASE, \ |
| 314 | ARM_DRAM2_SIZE, \ |
| 315 | MT_MEMORY | MT_RW | MT_NS) |
Roberto Vargas | f8fda10 | 2017-08-08 11:27:20 +0100 | [diff] [blame] | 316 | |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 317 | #define ARM_MAP_TSP_SEC_MEM MAP_REGION_FLAT( \ |
| 318 | TSP_SEC_MEM_BASE, \ |
| 319 | TSP_SEC_MEM_SIZE, \ |
| 320 | MT_MEMORY | MT_RW | MT_SECURE) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 321 | |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 322 | #if ARM_BL31_IN_DRAM |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 323 | #define ARM_MAP_BL31_SEC_DRAM MAP_REGION_FLAT( \ |
| 324 | BL31_BASE, \ |
| 325 | PLAT_ARM_MAX_BL31_SIZE, \ |
| 326 | MT_MEMORY | MT_RW | MT_SECURE) |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 327 | #endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 328 | |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 329 | #define ARM_MAP_EL3_TZC_DRAM MAP_REGION_FLAT( \ |
| 330 | ARM_EL3_TZC_DRAM1_BASE, \ |
| 331 | ARM_EL3_TZC_DRAM1_SIZE, \ |
| 332 | MT_MEMORY | MT_RW | EL3_PAS) |
Soby Mathew | 3b5156e | 2017-10-05 12:27:33 +0100 | [diff] [blame] | 333 | |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 334 | #define ARM_MAP_TRUSTED_DRAM MAP_REGION_FLAT( \ |
| 335 | PLAT_ARM_TRUSTED_DRAM_BASE, \ |
| 336 | PLAT_ARM_TRUSTED_DRAM_SIZE, \ |
| 337 | MT_MEMORY | MT_RW | MT_SECURE) |
Manish V Badarkhe | b65ae4e | 2022-12-12 10:14:25 +0000 | [diff] [blame] | 338 | |
| 339 | # if (defined(SPD_tspd) || defined(SPD_opteed) || defined(SPD_spmd)) && \ |
| 340 | MEASURED_BOOT |
| 341 | #define ARM_MAP_EVENT_LOG_DRAM1 \ |
| 342 | MAP_REGION_FLAT( \ |
| 343 | ARM_EVENT_LOG_DRAM1_BASE, \ |
| 344 | ARM_EVENT_LOG_DRAM1_SIZE, \ |
| 345 | MT_MEMORY | MT_RW | MT_SECURE) |
| 346 | #endif /* (SPD_tspd || SPD_opteed || SPD_spmd) && MEASURED_BOOT */ |
Achin Gupta | e97351d | 2019-10-11 15:15:19 +0100 | [diff] [blame] | 347 | |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 348 | #if ENABLE_RME |
Soby Mathew | 0338e9e | 2022-07-06 16:01:40 +0100 | [diff] [blame] | 349 | /* |
| 350 | * We add the EL3_RMM_SHARED size to RMM mapping to map the region as a block. |
| 351 | * Else we end up requiring more pagetables in BL2 for ROMLIB build. |
| 352 | */ |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 353 | #define ARM_MAP_RMM_DRAM MAP_REGION_FLAT( \ |
| 354 | PLAT_ARM_RMM_BASE, \ |
Soby Mathew | 0338e9e | 2022-07-06 16:01:40 +0100 | [diff] [blame] | 355 | (PLAT_ARM_RMM_SIZE + \ |
| 356 | ARM_EL3_RMM_SHARED_SIZE), \ |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 357 | MT_MEMORY | MT_RW | MT_REALM) |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 358 | |
| 359 | |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 360 | #define ARM_MAP_GPT_L1_DRAM MAP_REGION_FLAT( \ |
| 361 | ARM_L1_GPT_ADDR_BASE, \ |
| 362 | ARM_L1_GPT_SIZE, \ |
| 363 | MT_MEMORY | MT_RW | EL3_PAS) |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 364 | |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 365 | #define ARM_MAP_EL3_RMM_SHARED_MEM \ |
| 366 | MAP_REGION_FLAT( \ |
| 367 | ARM_EL3_RMM_SHARED_BASE, \ |
| 368 | ARM_EL3_RMM_SHARED_SIZE, \ |
| 369 | MT_MEMORY | MT_RW | MT_REALM) |
| 370 | |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 371 | #endif /* ENABLE_RME */ |
Achin Gupta | e97351d | 2019-10-11 15:15:19 +0100 | [diff] [blame] | 372 | |
Daniel Boulby | 4e97abd | 2018-07-16 14:09:15 +0100 | [diff] [blame] | 373 | /* |
John Tsichritzis | c34341a | 2018-07-30 13:41:52 +0100 | [diff] [blame] | 374 | * Mapping for the BL1 RW region. This mapping is needed by BL2 in order to |
| 375 | * share the Mbed TLS heap. Since the heap is allocated inside BL1, it resides |
| 376 | * in the BL1 RW region. Hence, BL2 needs access to the BL1 RW region in order |
| 377 | * to be able to access the heap. |
| 378 | */ |
| 379 | #define ARM_MAP_BL1_RW MAP_REGION_FLAT( \ |
| 380 | BL1_RW_BASE, \ |
| 381 | BL1_RW_LIMIT - BL1_RW_BASE, \ |
Zelalem Aweke | 65e9263 | 2021-07-12 22:33:55 -0500 | [diff] [blame] | 382 | MT_MEMORY | MT_RW | EL3_PAS) |
John Tsichritzis | c34341a | 2018-07-30 13:41:52 +0100 | [diff] [blame] | 383 | |
| 384 | /* |
Daniel Boulby | 4e97abd | 2018-07-16 14:09:15 +0100 | [diff] [blame] | 385 | * If SEPARATE_CODE_AND_RODATA=1 we define a region for each section |
| 386 | * otherwise one region is defined containing both. |
| 387 | */ |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 388 | #if SEPARATE_CODE_AND_RODATA |
Daniel Boulby | 4e97abd | 2018-07-16 14:09:15 +0100 | [diff] [blame] | 389 | #define ARM_MAP_BL_RO MAP_REGION_FLAT( \ |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 390 | BL_CODE_BASE, \ |
| 391 | BL_CODE_END - BL_CODE_BASE, \ |
Zelalem Aweke | 65e9263 | 2021-07-12 22:33:55 -0500 | [diff] [blame] | 392 | MT_CODE | EL3_PAS), \ |
Daniel Boulby | 4e97abd | 2018-07-16 14:09:15 +0100 | [diff] [blame] | 393 | MAP_REGION_FLAT( \ |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 394 | BL_RO_DATA_BASE, \ |
| 395 | BL_RO_DATA_END \ |
| 396 | - BL_RO_DATA_BASE, \ |
Zelalem Aweke | 65e9263 | 2021-07-12 22:33:55 -0500 | [diff] [blame] | 397 | MT_RO_DATA | EL3_PAS) |
Daniel Boulby | 4e97abd | 2018-07-16 14:09:15 +0100 | [diff] [blame] | 398 | #else |
| 399 | #define ARM_MAP_BL_RO MAP_REGION_FLAT( \ |
| 400 | BL_CODE_BASE, \ |
| 401 | BL_CODE_END - BL_CODE_BASE, \ |
Zelalem Aweke | 65e9263 | 2021-07-12 22:33:55 -0500 | [diff] [blame] | 402 | MT_CODE | EL3_PAS) |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 403 | #endif |
| 404 | #if USE_COHERENT_MEM |
| 405 | #define ARM_MAP_BL_COHERENT_RAM MAP_REGION_FLAT( \ |
| 406 | BL_COHERENT_RAM_BASE, \ |
| 407 | BL_COHERENT_RAM_END \ |
| 408 | - BL_COHERENT_RAM_BASE, \ |
Zelalem Aweke | 65e9263 | 2021-07-12 22:33:55 -0500 | [diff] [blame] | 409 | MT_DEVICE | MT_RW | EL3_PAS) |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 410 | #endif |
Roberto Vargas | e3adc37 | 2018-05-23 09:27:06 +0100 | [diff] [blame] | 411 | #if USE_ROMLIB |
| 412 | #define ARM_MAP_ROMLIB_CODE MAP_REGION_FLAT( \ |
| 413 | ROMLIB_RO_BASE, \ |
| 414 | ROMLIB_RO_LIMIT - ROMLIB_RO_BASE,\ |
Zelalem Aweke | 65e9263 | 2021-07-12 22:33:55 -0500 | [diff] [blame] | 415 | MT_CODE | EL3_PAS) |
Roberto Vargas | e3adc37 | 2018-05-23 09:27:06 +0100 | [diff] [blame] | 416 | |
| 417 | #define ARM_MAP_ROMLIB_DATA MAP_REGION_FLAT( \ |
| 418 | ROMLIB_RW_BASE, \ |
| 419 | ROMLIB_RW_END - ROMLIB_RW_BASE,\ |
Zelalem Aweke | 65e9263 | 2021-07-12 22:33:55 -0500 | [diff] [blame] | 420 | MT_MEMORY | MT_RW | EL3_PAS) |
Roberto Vargas | e3adc37 | 2018-05-23 09:27:06 +0100 | [diff] [blame] | 421 | #endif |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 422 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 423 | /* |
Antonio Nino Diaz | 48bfb54 | 2018-10-11 13:02:34 +0100 | [diff] [blame] | 424 | * Map mem_protect flash region with read and write permissions |
| 425 | */ |
| 426 | #define ARM_V2M_MAP_MEM_PROTECT MAP_REGION_FLAT(PLAT_ARM_MEM_PROT_ADDR, \ |
| 427 | V2M_FLASH_BLOCK_SIZE, \ |
| 428 | MT_DEVICE | MT_RW | MT_SECURE) |
Manish V Badarkhe | 5e3ef6c | 2020-07-16 05:45:25 +0100 | [diff] [blame] | 429 | /* |
| 430 | * Map the region for device tree configuration with read and write permissions |
| 431 | */ |
| 432 | #define ARM_MAP_BL_CONFIG_REGION MAP_REGION_FLAT(ARM_BL_RAM_BASE, \ |
| 433 | (ARM_FW_CONFIGS_LIMIT \ |
| 434 | - ARM_BL_RAM_BASE), \ |
Zelalem Aweke | 65e9263 | 2021-07-12 22:33:55 -0500 | [diff] [blame] | 435 | MT_MEMORY | MT_RW | EL3_PAS) |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 436 | /* |
| 437 | * Map L0_GPT with read and write permissions |
| 438 | */ |
| 439 | #if ENABLE_RME |
| 440 | #define ARM_MAP_L0_GPT_REGION MAP_REGION_FLAT(ARM_L0_GPT_ADDR_BASE, \ |
| 441 | ARM_L0_GPT_SIZE, \ |
| 442 | MT_MEMORY | MT_RW | MT_ROOT) |
| 443 | #endif |
Antonio Nino Diaz | 48bfb54 | 2018-10-11 13:02:34 +0100 | [diff] [blame] | 444 | |
| 445 | /* |
Daniel Boulby | 4e97abd | 2018-07-16 14:09:15 +0100 | [diff] [blame] | 446 | * The max number of regions like RO(code), coherent and data required by |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 447 | * different BL stages which need to be mapped in the MMU. |
| 448 | */ |
Manish V Badarkhe | fc0b853 | 2022-02-22 14:45:43 +0000 | [diff] [blame] | 449 | #define ARM_BL_REGIONS 7 |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 450 | |
| 451 | #define MAX_MMAP_REGIONS (PLAT_ARM_MMAP_ENTRIES + \ |
| 452 | ARM_BL_REGIONS) |
| 453 | |
| 454 | /* Memory mapped Generic timer interfaces */ |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 455 | #ifdef PLAT_ARM_SYS_CNTCTL_BASE |
laurenw-arm | 56f1e3e | 2021-03-03 14:19:38 -0600 | [diff] [blame] | 456 | #define ARM_SYS_CNTCTL_BASE PLAT_ARM_SYS_CNTCTL_BASE |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 457 | #else |
Antonio Nino Diaz | 5f47579 | 2018-10-15 14:58:11 +0100 | [diff] [blame] | 458 | #define ARM_SYS_CNTCTL_BASE UL(0x2a430000) |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 459 | #endif |
| 460 | |
| 461 | #ifdef PLAT_ARM_SYS_CNTREAD_BASE |
laurenw-arm | 56f1e3e | 2021-03-03 14:19:38 -0600 | [diff] [blame] | 462 | #define ARM_SYS_CNTREAD_BASE PLAT_ARM_SYS_CNTREAD_BASE |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 463 | #else |
Antonio Nino Diaz | 5f47579 | 2018-10-15 14:58:11 +0100 | [diff] [blame] | 464 | #define ARM_SYS_CNTREAD_BASE UL(0x2a800000) |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 465 | #endif |
| 466 | |
| 467 | #ifdef PLAT_ARM_SYS_TIMCTL_BASE |
laurenw-arm | 56f1e3e | 2021-03-03 14:19:38 -0600 | [diff] [blame] | 468 | #define ARM_SYS_TIMCTL_BASE PLAT_ARM_SYS_TIMCTL_BASE |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 469 | #else |
Antonio Nino Diaz | 5f47579 | 2018-10-15 14:58:11 +0100 | [diff] [blame] | 470 | #define ARM_SYS_TIMCTL_BASE UL(0x2a810000) |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 471 | #endif |
| 472 | |
| 473 | #ifdef PLAT_ARM_SYS_CNT_BASE_S |
laurenw-arm | 56f1e3e | 2021-03-03 14:19:38 -0600 | [diff] [blame] | 474 | #define ARM_SYS_CNT_BASE_S PLAT_ARM_SYS_CNT_BASE_S |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 475 | #else |
Antonio Nino Diaz | 5f47579 | 2018-10-15 14:58:11 +0100 | [diff] [blame] | 476 | #define ARM_SYS_CNT_BASE_S UL(0x2a820000) |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 477 | #endif |
| 478 | |
| 479 | #ifdef PLAT_ARM_SYS_CNT_BASE_NS |
laurenw-arm | 56f1e3e | 2021-03-03 14:19:38 -0600 | [diff] [blame] | 480 | #define ARM_SYS_CNT_BASE_NS PLAT_ARM_SYS_CNT_BASE_NS |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 481 | #else |
Antonio Nino Diaz | 5f47579 | 2018-10-15 14:58:11 +0100 | [diff] [blame] | 482 | #define ARM_SYS_CNT_BASE_NS UL(0x2a830000) |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 483 | #endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 484 | |
| 485 | #define ARM_CONSOLE_BAUDRATE 115200 |
| 486 | |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 487 | /* Trusted Watchdog constants */ |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 488 | #ifdef PLAT_ARM_SP805_TWDG_BASE |
laurenw-arm | 56f1e3e | 2021-03-03 14:19:38 -0600 | [diff] [blame] | 489 | #define ARM_SP805_TWDG_BASE PLAT_ARM_SP805_TWDG_BASE |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 490 | #else |
Antonio Nino Diaz | 5f47579 | 2018-10-15 14:58:11 +0100 | [diff] [blame] | 491 | #define ARM_SP805_TWDG_BASE UL(0x2a490000) |
Gary Morrison | 3d7f654 | 2021-01-27 13:08:47 -0600 | [diff] [blame] | 492 | #endif |
Juan Castillo | b6132f1 | 2015-10-06 14:01:35 +0100 | [diff] [blame] | 493 | #define ARM_SP805_TWDG_CLK_HZ 32768 |
| 494 | /* The TBBR document specifies a watchdog timeout of 256 seconds. SP805 |
| 495 | * asserts reset after two consecutive countdowns (2 x 128 = 256 sec) */ |
| 496 | #define ARM_TWDG_TIMEOUT_SEC 128 |
| 497 | #define ARM_TWDG_LOAD_VAL (ARM_SP805_TWDG_CLK_HZ * \ |
| 498 | ARM_TWDG_TIMEOUT_SEC) |
| 499 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 500 | /****************************************************************************** |
| 501 | * Required platform porting definitions common to all ARM standard platforms |
| 502 | *****************************************************************************/ |
| 503 | |
Roberto Vargas | f8fda10 | 2017-08-08 11:27:20 +0100 | [diff] [blame] | 504 | /* |
Soby Mathew | fec4eb7 | 2015-07-01 16:16:20 +0100 | [diff] [blame] | 505 | * This macro defines the deepest retention state possible. A higher state |
| 506 | * id will represent an invalid or a power down state. |
| 507 | */ |
| 508 | #define PLAT_MAX_RET_STATE ARM_LOCAL_STATE_RET |
| 509 | |
| 510 | /* |
| 511 | * This macro defines the deepest power down states possible. Any state ID |
| 512 | * higher than this is invalid. |
| 513 | */ |
| 514 | #define PLAT_MAX_OFF_STATE ARM_LOCAL_STATE_OFF |
| 515 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 516 | /* |
| 517 | * Some data must be aligned on the biggest cache line size in the platform. |
| 518 | * This is known only to the platform as it might have a combination of |
| 519 | * integrated and external caches. |
| 520 | */ |
Antonio Nino Diaz | 5f47579 | 2018-10-15 14:58:11 +0100 | [diff] [blame] | 521 | #define CACHE_WRITEBACK_GRANULE (U(1) << ARM_CACHE_WRITEBACK_SHIFT) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 522 | |
Soby Mathew | 7c6df5b | 2018-01-15 14:43:42 +0000 | [diff] [blame] | 523 | /* |
Manish V Badarkhe | 1da211a | 2020-05-31 10:17:59 +0100 | [diff] [blame] | 524 | * To enable FW_CONFIG to be loaded by BL1, define the corresponding base |
Soby Mathew | 7c6df5b | 2018-01-15 14:43:42 +0000 | [diff] [blame] | 525 | * and limit. Leave enough space of BL2 meminfo. |
| 526 | */ |
Manish V Badarkhe | 1da211a | 2020-05-31 10:17:59 +0100 | [diff] [blame] | 527 | #define ARM_FW_CONFIG_BASE (ARM_BL_RAM_BASE + sizeof(meminfo_t)) |
Manish V Badarkhe | 0bafa82 | 2020-06-29 11:14:07 +0100 | [diff] [blame] | 528 | #define ARM_FW_CONFIG_LIMIT ((ARM_BL_RAM_BASE + PAGE_SIZE) \ |
| 529 | + (PAGE_SIZE / 2U)) |
Sathees Balya | 9095009 | 2018-11-15 14:22:30 +0000 | [diff] [blame] | 530 | |
| 531 | /* |
| 532 | * Boot parameters passed from BL2 to BL31/BL32 are stored here |
| 533 | */ |
Manish V Badarkhe | 0bafa82 | 2020-06-29 11:14:07 +0100 | [diff] [blame] | 534 | #define ARM_BL2_MEM_DESC_BASE (ARM_FW_CONFIG_LIMIT) |
| 535 | #define ARM_BL2_MEM_DESC_LIMIT (ARM_BL2_MEM_DESC_BASE \ |
| 536 | + (PAGE_SIZE / 2U)) |
Sathees Balya | 9095009 | 2018-11-15 14:22:30 +0000 | [diff] [blame] | 537 | |
| 538 | /* |
| 539 | * Define limit of firmware configuration memory: |
Manish V Badarkhe | 1da211a | 2020-05-31 10:17:59 +0100 | [diff] [blame] | 540 | * ARM_FW_CONFIG + ARM_BL2_MEM_DESC memory |
Sathees Balya | 9095009 | 2018-11-15 14:22:30 +0000 | [diff] [blame] | 541 | */ |
Manish V Badarkhe | bd30506 | 2023-06-27 11:29:34 +0100 | [diff] [blame] | 542 | #define ARM_FW_CONFIGS_SIZE (PAGE_SIZE * 2) |
| 543 | #define ARM_FW_CONFIGS_LIMIT (ARM_BL_RAM_BASE + ARM_FW_CONFIGS_SIZE) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 544 | |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 545 | #if ENABLE_RME |
| 546 | /* |
| 547 | * Store the L0 GPT on Trusted SRAM next to firmware |
| 548 | * configuration memory, 4KB aligned. |
| 549 | */ |
| 550 | #define ARM_L0_GPT_SIZE (PAGE_SIZE) |
| 551 | #define ARM_L0_GPT_ADDR_BASE (ARM_FW_CONFIGS_LIMIT) |
| 552 | #define ARM_L0_GPT_LIMIT (ARM_L0_GPT_ADDR_BASE + ARM_L0_GPT_SIZE) |
| 553 | #else |
| 554 | #define ARM_L0_GPT_SIZE U(0) |
| 555 | #endif |
| 556 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 557 | /******************************************************************************* |
| 558 | * BL1 specific defines. |
| 559 | * BL1 RW data is relocated from ROM to RAM at runtime so we need 2 sets of |
| 560 | * addresses. |
| 561 | ******************************************************************************/ |
| 562 | #define BL1_RO_BASE PLAT_ARM_TRUSTED_ROM_BASE |
laurenw-arm | 56f1e3e | 2021-03-03 14:19:38 -0600 | [diff] [blame] | 563 | #ifdef PLAT_BL1_RO_LIMIT |
| 564 | #define BL1_RO_LIMIT PLAT_BL1_RO_LIMIT |
| 565 | #else |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 566 | #define BL1_RO_LIMIT (PLAT_ARM_TRUSTED_ROM_BASE \ |
Roberto Vargas | e3adc37 | 2018-05-23 09:27:06 +0100 | [diff] [blame] | 567 | + (PLAT_ARM_TRUSTED_ROM_SIZE - \ |
| 568 | PLAT_ARM_MAX_ROMLIB_RO_SIZE)) |
laurenw-arm | 56f1e3e | 2021-03-03 14:19:38 -0600 | [diff] [blame] | 569 | #endif |
| 570 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 571 | /* |
Vikram Kanigiri | 5d86f2e | 2016-01-21 14:08:15 +0000 | [diff] [blame] | 572 | * Put BL1 RW at the top of the Trusted SRAM. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 573 | */ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 574 | #define BL1_RW_BASE (ARM_BL_RAM_BASE + \ |
| 575 | ARM_BL_RAM_SIZE - \ |
Roberto Vargas | e3adc37 | 2018-05-23 09:27:06 +0100 | [diff] [blame] | 576 | (PLAT_ARM_MAX_BL1_RW_SIZE +\ |
| 577 | PLAT_ARM_MAX_ROMLIB_RW_SIZE)) |
| 578 | #define BL1_RW_LIMIT (ARM_BL_RAM_BASE + \ |
| 579 | (ARM_BL_RAM_SIZE - PLAT_ARM_MAX_ROMLIB_RW_SIZE)) |
| 580 | |
| 581 | #define ROMLIB_RO_BASE BL1_RO_LIMIT |
| 582 | #define ROMLIB_RO_LIMIT (PLAT_ARM_TRUSTED_ROM_BASE + PLAT_ARM_TRUSTED_ROM_SIZE) |
| 583 | |
| 584 | #define ROMLIB_RW_BASE (BL1_RW_BASE + PLAT_ARM_MAX_BL1_RW_SIZE) |
| 585 | #define ROMLIB_RW_END (ROMLIB_RW_BASE + PLAT_ARM_MAX_ROMLIB_RW_SIZE) |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 586 | |
| 587 | /******************************************************************************* |
| 588 | * BL2 specific defines. |
| 589 | ******************************************************************************/ |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 590 | #if RESET_TO_BL2 |
Manish V Badarkhe | 103569f | 2022-06-13 18:23:01 +0100 | [diff] [blame] | 591 | #if ENABLE_PIE |
| 592 | /* |
| 593 | * As the BL31 image size appears to be increased when built with the ENABLE_PIE |
| 594 | * option, set BL2 base address to have enough space for BL31 in Trusted SRAM. |
| 595 | */ |
Olivier Deprez | d66c3ad | 2023-09-04 14:24:07 +0200 | [diff] [blame] | 596 | #define BL2_OFFSET (0x5000) |
Manish V Badarkhe | 103569f | 2022-06-13 18:23:01 +0100 | [diff] [blame] | 597 | #else |
Dimitris Papastamos | 2583649 | 2018-06-11 11:07:58 +0100 | [diff] [blame] | 598 | /* Put BL2 towards the middle of the Trusted SRAM */ |
Olivier Deprez | d66c3ad | 2023-09-04 14:24:07 +0200 | [diff] [blame] | 599 | #define BL2_OFFSET (0x2000) |
Manish V Badarkhe | 103569f | 2022-06-13 18:23:01 +0100 | [diff] [blame] | 600 | #endif /* ENABLE_PIE */ |
Olivier Deprez | d66c3ad | 2023-09-04 14:24:07 +0200 | [diff] [blame] | 601 | |
| 602 | #define BL2_BASE (ARM_TRUSTED_SRAM_BASE + \ |
| 603 | (PLAT_ARM_TRUSTED_SRAM_SIZE >> 1) + \ |
| 604 | BL2_OFFSET) |
Roberto Vargas | 5220780 | 2017-11-17 13:22:18 +0000 | [diff] [blame] | 605 | #define BL2_LIMIT (ARM_BL_RAM_BASE + ARM_BL_RAM_SIZE) |
| 606 | |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 607 | #else |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 608 | /* |
Soby Mathew | af14b46 | 2018-06-01 16:53:38 +0100 | [diff] [blame] | 609 | * Put BL2 just below BL1. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 610 | */ |
Soby Mathew | af14b46 | 2018-06-01 16:53:38 +0100 | [diff] [blame] | 611 | #define BL2_BASE (BL1_RW_BASE - PLAT_ARM_MAX_BL2_SIZE) |
| 612 | #define BL2_LIMIT BL1_RW_BASE |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 613 | #endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 614 | |
| 615 | /******************************************************************************* |
Juan Castillo | 7d19941 | 2015-12-14 09:35:25 +0000 | [diff] [blame] | 616 | * BL31 specific defines. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 617 | ******************************************************************************/ |
Madhukar Pappireddy | d741944 | 2020-01-27 15:38:26 -0600 | [diff] [blame] | 618 | #if ARM_BL31_IN_DRAM || SEPARATE_NOBITS_REGION |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 619 | /* |
| 620 | * Put BL31 at the bottom of TZC secured DRAM |
| 621 | */ |
| 622 | #define BL31_BASE ARM_AP_TZC_DRAM1_BASE |
| 623 | #define BL31_LIMIT (ARM_AP_TZC_DRAM1_BASE + \ |
| 624 | PLAT_ARM_MAX_BL31_SIZE) |
Madhukar Pappireddy | d741944 | 2020-01-27 15:38:26 -0600 | [diff] [blame] | 625 | /* |
| 626 | * For SEPARATE_NOBITS_REGION, BL31 PROGBITS are loaded in TZC secured DRAM. |
| 627 | * And BL31 NOBITS are loaded in Trusted SRAM such that BL2 is overwritten. |
| 628 | */ |
| 629 | #if SEPARATE_NOBITS_REGION |
| 630 | #define BL31_NOBITS_BASE BL2_BASE |
| 631 | #define BL31_NOBITS_LIMIT BL2_LIMIT |
| 632 | #endif /* SEPARATE_NOBITS_REGION */ |
Qixiang Xu | a5f7281 | 2017-08-31 11:45:32 +0800 | [diff] [blame] | 633 | #elif (RESET_TO_BL31) |
Manish Pandey | 2207e93 | 2019-11-06 13:17:46 +0000 | [diff] [blame] | 634 | /* Ensure Position Independent support (PIE) is enabled for this config.*/ |
| 635 | # if !ENABLE_PIE |
| 636 | # error "BL31 must be a PIE if RESET_TO_BL31=1." |
| 637 | #endif |
Qixiang Xu | a5f7281 | 2017-08-31 11:45:32 +0800 | [diff] [blame] | 638 | /* |
Soby Mathew | 68e6928 | 2018-12-12 14:13:52 +0000 | [diff] [blame] | 639 | * Since this is PIE, we can define BL31_BASE to 0x0 since this macro is solely |
Soby Mathew | c5e1745 | 2019-01-07 14:07:58 +0000 | [diff] [blame] | 640 | * used for building BL31 and not used for loading BL31. |
Qixiang Xu | a5f7281 | 2017-08-31 11:45:32 +0800 | [diff] [blame] | 641 | */ |
Soby Mathew | c5e1745 | 2019-01-07 14:07:58 +0000 | [diff] [blame] | 642 | # define BL31_BASE 0x0 |
| 643 | # define BL31_LIMIT PLAT_ARM_MAX_BL31_SIZE |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 644 | #else |
Soby Mathew | af14b46 | 2018-06-01 16:53:38 +0100 | [diff] [blame] | 645 | /* Put BL31 below BL2 in the Trusted SRAM.*/ |
| 646 | #define BL31_BASE ((ARM_BL_RAM_BASE + ARM_BL_RAM_SIZE)\ |
| 647 | - PLAT_ARM_MAX_BL31_SIZE) |
| 648 | #define BL31_PROGBITS_LIMIT BL2_BASE |
Dimitris Papastamos | 2583649 | 2018-06-11 11:07:58 +0100 | [diff] [blame] | 649 | /* |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 650 | * For RESET_TO_BL2 make sure the BL31 can grow up until BL2_BASE. |
| 651 | * This is because in the RESET_TO_BL2 configuration, |
| 652 | * BL2 is always resident. |
Dimitris Papastamos | 2583649 | 2018-06-11 11:07:58 +0100 | [diff] [blame] | 653 | */ |
Arvind Ram Prakash | 11b9b49 | 2022-11-22 14:41:00 -0600 | [diff] [blame] | 654 | #if RESET_TO_BL2 |
Dimitris Papastamos | 2583649 | 2018-06-11 11:07:58 +0100 | [diff] [blame] | 655 | #define BL31_LIMIT BL2_BASE |
| 656 | #else |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 657 | #define BL31_LIMIT (ARM_BL_RAM_BASE + ARM_BL_RAM_SIZE) |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 658 | #endif |
Zelalem Aweke | c43c563 | 2021-07-12 23:41:05 -0500 | [diff] [blame] | 659 | #endif |
| 660 | |
| 661 | /****************************************************************************** |
| 662 | * RMM specific defines |
| 663 | *****************************************************************************/ |
| 664 | #if ENABLE_RME |
| 665 | #define RMM_BASE (ARM_REALM_BASE) |
| 666 | #define RMM_LIMIT (RMM_BASE + ARM_REALM_SIZE) |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 667 | #define RMM_SHARED_BASE (ARM_EL3_RMM_SHARED_BASE) |
| 668 | #define RMM_SHARED_SIZE (ARM_EL3_RMM_SHARED_SIZE) |
Dimitris Papastamos | 2583649 | 2018-06-11 11:07:58 +0100 | [diff] [blame] | 669 | #endif |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 670 | |
Julius Werner | 8e0ef0f | 2019-07-09 14:02:43 -0700 | [diff] [blame] | 671 | #if !defined(__aarch64__) || JUNO_AARCH32_EL3_RUNTIME |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 672 | /******************************************************************************* |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 673 | * BL32 specific defines for EL3 runtime in AArch32 mode |
| 674 | ******************************************************************************/ |
| 675 | # if RESET_TO_SP_MIN && !JUNO_AARCH32_EL3_RUNTIME |
Manish Pandey | 928da86 | 2021-06-10 15:22:48 +0100 | [diff] [blame] | 676 | /* Ensure Position Independent support (PIE) is enabled for this config.*/ |
| 677 | # if !ENABLE_PIE |
| 678 | # error "BL32 must be a PIE if RESET_TO_SP_MIN=1." |
| 679 | #endif |
Soby Mathew | af14b46 | 2018-06-01 16:53:38 +0100 | [diff] [blame] | 680 | /* |
Manish Pandey | 928da86 | 2021-06-10 15:22:48 +0100 | [diff] [blame] | 681 | * Since this is PIE, we can define BL32_BASE to 0x0 since this macro is solely |
| 682 | * used for building BL32 and not used for loading BL32. |
Soby Mathew | af14b46 | 2018-06-01 16:53:38 +0100 | [diff] [blame] | 683 | */ |
Manish Pandey | 928da86 | 2021-06-10 15:22:48 +0100 | [diff] [blame] | 684 | # define BL32_BASE 0x0 |
| 685 | # define BL32_LIMIT PLAT_ARM_MAX_BL32_SIZE |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 686 | # else |
Soby Mathew | af14b46 | 2018-06-01 16:53:38 +0100 | [diff] [blame] | 687 | /* Put BL32 below BL2 in the Trusted SRAM.*/ |
| 688 | # define BL32_BASE ((ARM_BL_RAM_BASE + ARM_BL_RAM_SIZE)\ |
| 689 | - PLAT_ARM_MAX_BL32_SIZE) |
| 690 | # define BL32_PROGBITS_LIMIT BL2_BASE |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 691 | # define BL32_LIMIT (ARM_BL_RAM_BASE + ARM_BL_RAM_SIZE) |
| 692 | # endif /* RESET_TO_SP_MIN && !JUNO_AARCH32_EL3_RUNTIME */ |
| 693 | |
| 694 | #else |
| 695 | /******************************************************************************* |
| 696 | * BL32 specific defines for EL3 runtime in AArch64 mode |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 697 | ******************************************************************************/ |
| 698 | /* |
| 699 | * On ARM standard platforms, the TSP can execute from Trusted SRAM, |
| 700 | * Trusted DRAM (if available) or the DRAM region secured by the TrustZone |
| 701 | * controller. |
| 702 | */ |
Marc Bonnici | f586700 | 2021-12-20 10:53:52 +0000 | [diff] [blame] | 703 | # if SPM_MM || SPMC_AT_EL3 |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 704 | # define TSP_SEC_MEM_BASE (ARM_AP_TZC_DRAM1_BASE + ULL(0x200000)) |
| 705 | # define TSP_SEC_MEM_SIZE (ARM_AP_TZC_DRAM1_SIZE - ULL(0x200000)) |
| 706 | # define BL32_BASE (ARM_AP_TZC_DRAM1_BASE + ULL(0x200000)) |
| 707 | # define BL32_LIMIT (ARM_AP_TZC_DRAM1_BASE + \ |
Antonio Nino Diaz | 7289f92 | 2017-11-09 11:34:09 +0000 | [diff] [blame] | 708 | ARM_AP_TZC_DRAM1_SIZE) |
Achin Gupta | e97351d | 2019-10-11 15:15:19 +0100 | [diff] [blame] | 709 | # elif defined(SPD_spmd) |
| 710 | # define TSP_SEC_MEM_BASE (ARM_AP_TZC_DRAM1_BASE + ULL(0x200000)) |
| 711 | # define TSP_SEC_MEM_SIZE (ARM_AP_TZC_DRAM1_SIZE - ULL(0x200000)) |
Arunachalam Ganapathy | 40618cf | 2020-07-27 13:51:30 +0100 | [diff] [blame] | 712 | # define BL32_BASE PLAT_ARM_SPMC_BASE |
| 713 | # define BL32_LIMIT (PLAT_ARM_SPMC_BASE + \ |
| 714 | PLAT_ARM_SPMC_SIZE) |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 715 | # elif ARM_BL31_IN_DRAM |
| 716 | # define TSP_SEC_MEM_BASE (ARM_AP_TZC_DRAM1_BASE + \ |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 717 | PLAT_ARM_MAX_BL31_SIZE) |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 718 | # define TSP_SEC_MEM_SIZE (ARM_AP_TZC_DRAM1_SIZE - \ |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 719 | PLAT_ARM_MAX_BL31_SIZE) |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 720 | # define BL32_BASE (ARM_AP_TZC_DRAM1_BASE + \ |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 721 | PLAT_ARM_MAX_BL31_SIZE) |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 722 | # define BL32_LIMIT (ARM_AP_TZC_DRAM1_BASE + \ |
David Wang | 0ba499f | 2016-03-07 11:02:57 +0800 | [diff] [blame] | 723 | ARM_AP_TZC_DRAM1_SIZE) |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 724 | # elif ARM_TSP_RAM_LOCATION_ID == ARM_TRUSTED_SRAM_ID |
| 725 | # define TSP_SEC_MEM_BASE ARM_BL_RAM_BASE |
| 726 | # define TSP_SEC_MEM_SIZE ARM_BL_RAM_SIZE |
Soby Mathew | af14b46 | 2018-06-01 16:53:38 +0100 | [diff] [blame] | 727 | # define TSP_PROGBITS_LIMIT BL31_BASE |
Manish V Badarkhe | 1da211a | 2020-05-31 10:17:59 +0100 | [diff] [blame] | 728 | # define BL32_BASE ARM_FW_CONFIGS_LIMIT |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 729 | # define BL32_LIMIT BL31_BASE |
| 730 | # elif ARM_TSP_RAM_LOCATION_ID == ARM_TRUSTED_DRAM_ID |
| 731 | # define TSP_SEC_MEM_BASE PLAT_ARM_TRUSTED_DRAM_BASE |
| 732 | # define TSP_SEC_MEM_SIZE PLAT_ARM_TRUSTED_DRAM_SIZE |
| 733 | # define BL32_BASE PLAT_ARM_TRUSTED_DRAM_BASE |
| 734 | # define BL32_LIMIT (PLAT_ARM_TRUSTED_DRAM_BASE \ |
Manish V Badarkhe | 5a4f9b8 | 2023-04-30 09:25:15 +0100 | [diff] [blame] | 735 | + SZ_4M) |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 736 | # elif ARM_TSP_RAM_LOCATION_ID == ARM_DRAM_ID |
| 737 | # define TSP_SEC_MEM_BASE ARM_AP_TZC_DRAM1_BASE |
| 738 | # define TSP_SEC_MEM_SIZE ARM_AP_TZC_DRAM1_SIZE |
| 739 | # define BL32_BASE ARM_AP_TZC_DRAM1_BASE |
| 740 | # define BL32_LIMIT (ARM_AP_TZC_DRAM1_BASE + \ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 741 | ARM_AP_TZC_DRAM1_SIZE) |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 742 | # else |
| 743 | # error "Unsupported ARM_TSP_RAM_LOCATION_ID value" |
| 744 | # endif |
Julius Werner | 8e0ef0f | 2019-07-09 14:02:43 -0700 | [diff] [blame] | 745 | #endif /* !__aarch64__ || JUNO_AARCH32_EL3_RUNTIME */ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 746 | |
Antonio Nino Diaz | 7289f92 | 2017-11-09 11:34:09 +0000 | [diff] [blame] | 747 | /* |
| 748 | * BL32 is mandatory in AArch32. In AArch64, undefine BL32_BASE if there is no |
Marc Bonnici | f586700 | 2021-12-20 10:53:52 +0000 | [diff] [blame] | 749 | * SPD and no SPM-MM and no SPMC-AT-EL3, as they are the only ones that can be |
| 750 | * used as BL32. |
Antonio Nino Diaz | 7289f92 | 2017-11-09 11:34:09 +0000 | [diff] [blame] | 751 | */ |
Julius Werner | 8e0ef0f | 2019-07-09 14:02:43 -0700 | [diff] [blame] | 752 | #if defined(__aarch64__) && !JUNO_AARCH32_EL3_RUNTIME |
Marc Bonnici | f586700 | 2021-12-20 10:53:52 +0000 | [diff] [blame] | 753 | # if defined(SPD_none) && !SPM_MM && !SPMC_AT_EL3 |
Antonio Nino Diaz | 7289f92 | 2017-11-09 11:34:09 +0000 | [diff] [blame] | 754 | # undef BL32_BASE |
Marc Bonnici | f586700 | 2021-12-20 10:53:52 +0000 | [diff] [blame] | 755 | # endif /* defined(SPD_none) && !SPM_MM || !SPMC_AT_EL3 */ |
Julius Werner | 8e0ef0f | 2019-07-09 14:02:43 -0700 | [diff] [blame] | 756 | #endif /* defined(__aarch64__) && !JUNO_AARCH32_EL3_RUNTIME */ |
Antonio Nino Diaz | e4fa370 | 2016-04-05 11:38:49 +0100 | [diff] [blame] | 757 | |
Yatharth Kochar | 736a3bf | 2015-10-11 14:14:55 +0100 | [diff] [blame] | 758 | /******************************************************************************* |
| 759 | * FWU Images: NS_BL1U, BL2U & NS_BL2U defines. |
| 760 | ******************************************************************************/ |
| 761 | #define BL2U_BASE BL2_BASE |
Soby Mathew | bf16923 | 2017-11-14 14:10:10 +0000 | [diff] [blame] | 762 | #define BL2U_LIMIT BL2_LIMIT |
| 763 | |
Yatharth Kochar | 736a3bf | 2015-10-11 14:14:55 +0100 | [diff] [blame] | 764 | #define NS_BL2U_BASE ARM_NS_DRAM1_BASE |
Antonio Nino Diaz | ab5d2b1 | 2018-10-30 16:12:32 +0000 | [diff] [blame] | 765 | #define NS_BL1U_BASE (PLAT_ARM_NVM_BASE + UL(0x03EB8000)) |
Yatharth Kochar | 736a3bf | 2015-10-11 14:14:55 +0100 | [diff] [blame] | 766 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 767 | /* |
| 768 | * ID of the secure physical generic timer interrupt used by the TSP. |
| 769 | */ |
| 770 | #define TSP_IRQ_SEC_PHY_TIMER ARM_IRQ_SEC_PHY_TIMER |
| 771 | |
| 772 | |
Vikram Kanigiri | d79214c | 2015-09-09 10:52:13 +0100 | [diff] [blame] | 773 | /* |
| 774 | * One cache line needed for bakery locks on ARM platforms |
| 775 | */ |
| 776 | #define PLAT_PERCPU_BAKERY_LOCK_SIZE (1 * CACHE_WRITEBACK_GRANULE) |
| 777 | |
Jeenu Viswambharan | b183745 | 2017-10-24 11:47:13 +0100 | [diff] [blame] | 778 | /* Priority levels for ARM platforms */ |
Omkar Anand Kulkarni | 014ae05 | 2023-06-22 19:35:59 +0530 | [diff] [blame] | 779 | #if RAS_FFH_SUPPORT |
Jeenu Viswambharan | a5b5b8d | 2018-02-06 12:21:39 +0000 | [diff] [blame] | 780 | #define PLAT_RAS_PRI 0x10 |
Omkar Anand Kulkarni | 014ae05 | 2023-06-22 19:35:59 +0530 | [diff] [blame] | 781 | #endif |
Jeenu Viswambharan | b183745 | 2017-10-24 11:47:13 +0100 | [diff] [blame] | 782 | #define PLAT_SDEI_CRITICAL_PRI 0x60 |
| 783 | #define PLAT_SDEI_NORMAL_PRI 0x70 |
| 784 | |
Omkar Anand Kulkarni | bc20432 | 2023-07-21 14:29:49 +0530 | [diff] [blame] | 785 | /* CPU Fault Handling Interrupt(FHI) PPI interrupt ID */ |
| 786 | #define PLAT_CORE_FAULT_IRQ 17 |
| 787 | |
Jeenu Viswambharan | b183745 | 2017-10-24 11:47:13 +0100 | [diff] [blame] | 788 | /* ARM platforms use 3 upper bits of secure interrupt priority */ |
Sandeep Tripathy | 1c47839 | 2020-08-12 18:42:13 +0530 | [diff] [blame] | 789 | #define PLAT_PRI_BITS 3 |
Vikram Kanigiri | d79214c | 2015-09-09 10:52:13 +0100 | [diff] [blame] | 790 | |
Jeenu Viswambharan | a5acc0a | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 791 | /* SGI used for SDEI signalling */ |
| 792 | #define ARM_SDEI_SGI ARM_IRQ_SEC_SGI_0 |
| 793 | |
Balint Dobszay | d0dbd5e | 2019-12-18 15:28:00 +0100 | [diff] [blame] | 794 | #if SDEI_IN_FCONF |
| 795 | /* ARM SDEI dynamic private event max count */ |
| 796 | #define ARM_SDEI_DP_EVENT_MAX_CNT 3 |
| 797 | |
| 798 | /* ARM SDEI dynamic shared event max count */ |
| 799 | #define ARM_SDEI_DS_EVENT_MAX_CNT 3 |
| 800 | #else |
Jeenu Viswambharan | a5acc0a | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 801 | /* ARM SDEI dynamic private event numbers */ |
| 802 | #define ARM_SDEI_DP_EVENT_0 1000 |
| 803 | #define ARM_SDEI_DP_EVENT_1 1001 |
| 804 | #define ARM_SDEI_DP_EVENT_2 1002 |
| 805 | |
| 806 | /* ARM SDEI dynamic shared event numbers */ |
| 807 | #define ARM_SDEI_DS_EVENT_0 2000 |
| 808 | #define ARM_SDEI_DS_EVENT_1 2001 |
| 809 | #define ARM_SDEI_DS_EVENT_2 2002 |
| 810 | |
Jeenu Viswambharan | 6e28446 | 2017-12-08 10:38:24 +0000 | [diff] [blame] | 811 | #define ARM_SDEI_PRIVATE_EVENTS \ |
| 812 | SDEI_DEFINE_EVENT_0(ARM_SDEI_SGI), \ |
| 813 | SDEI_PRIVATE_EVENT(ARM_SDEI_DP_EVENT_0, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC), \ |
| 814 | SDEI_PRIVATE_EVENT(ARM_SDEI_DP_EVENT_1, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC), \ |
| 815 | SDEI_PRIVATE_EVENT(ARM_SDEI_DP_EVENT_2, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC) |
| 816 | |
| 817 | #define ARM_SDEI_SHARED_EVENTS \ |
| 818 | SDEI_SHARED_EVENT(ARM_SDEI_DS_EVENT_0, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC), \ |
| 819 | SDEI_SHARED_EVENT(ARM_SDEI_DS_EVENT_1, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC), \ |
| 820 | SDEI_SHARED_EVENT(ARM_SDEI_DS_EVENT_2, SDEI_DYN_IRQ, SDEI_MAPF_DYNAMIC) |
Balint Dobszay | d0dbd5e | 2019-12-18 15:28:00 +0100 | [diff] [blame] | 821 | #endif /* SDEI_IN_FCONF */ |
Jeenu Viswambharan | 6e28446 | 2017-12-08 10:38:24 +0000 | [diff] [blame] | 822 | |
Antonio Nino Diaz | 6f3ccc5 | 2018-07-20 09:17:26 +0100 | [diff] [blame] | 823 | #endif /* ARM_DEF_H */ |