Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Madhukar Pappireddy | f4e6ea6 | 2020-01-27 15:32:15 -0600 | [diff] [blame] | 2 | * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 7 | #include <platform_def.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | |
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 9 | #include <common/bl_common.ld.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <lib/xlat_tables/xlat_tables_defs.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 11 | |
| 12 | OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT) |
| 13 | OUTPUT_ARCH(PLATFORM_LINKER_ARCH) |
Jeenu Viswambharan | 2a30a75 | 2014-03-11 11:06:45 +0000 | [diff] [blame] | 14 | ENTRY(bl31_entrypoint) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 15 | |
| 16 | |
| 17 | MEMORY { |
Juan Castillo | fd8c077 | 2014-09-16 10:40:35 +0100 | [diff] [blame] | 18 | RAM (rwx): ORIGIN = BL31_BASE, LENGTH = BL31_LIMIT - BL31_BASE |
Samuel Holland | 31a14e1 | 2018-10-17 21:40:18 -0500 | [diff] [blame] | 19 | #if SEPARATE_NOBITS_REGION |
| 20 | NOBITS (rw!a): ORIGIN = BL31_NOBITS_BASE, LENGTH = BL31_NOBITS_LIMIT - BL31_NOBITS_BASE |
| 21 | #else |
| 22 | #define NOBITS RAM |
| 23 | #endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 24 | } |
| 25 | |
Caesar Wang | d90f43e | 2016-10-11 09:36:00 +0800 | [diff] [blame] | 26 | #ifdef PLAT_EXTRA_LD_SCRIPT |
| 27 | #include <plat.ld.S> |
| 28 | #endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 29 | |
| 30 | SECTIONS |
| 31 | { |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 32 | . = BL31_BASE; |
Antonio Nino Diaz | 2ce2b09 | 2017-11-15 11:45:35 +0000 | [diff] [blame] | 33 | ASSERT(. == ALIGN(PAGE_SIZE), |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 34 | "BL31_BASE address is not aligned on a page boundary.") |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 35 | |
Soby Mathew | 4e28c20 | 2018-10-14 08:09:22 +0100 | [diff] [blame] | 36 | __BL31_START__ = .; |
| 37 | |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 38 | #if SEPARATE_CODE_AND_RODATA |
| 39 | .text . : { |
| 40 | __TEXT_START__ = .; |
| 41 | *bl31_entrypoint.o(.text*) |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 42 | *(SORT_BY_ALIGNMENT(.text*)) |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 43 | *(.vectors) |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 44 | . = ALIGN(PAGE_SIZE); |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 45 | __TEXT_END__ = .; |
| 46 | } >RAM |
| 47 | |
| 48 | .rodata . : { |
| 49 | __RODATA_START__ = .; |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 50 | *(SORT_BY_ALIGNMENT(.rodata*)) |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 51 | |
| 52 | /* Ensure 8-byte alignment for descriptors and ensure inclusion */ |
| 53 | . = ALIGN(8); |
| 54 | __RT_SVC_DESCS_START__ = .; |
| 55 | KEEP(*(rt_svc_descs)) |
| 56 | __RT_SVC_DESCS_END__ = .; |
| 57 | |
Madhukar Pappireddy | ae9677b | 2020-01-27 13:37:51 -0600 | [diff] [blame] | 58 | . = ALIGN(8); |
| 59 | __FCONF_POPULATOR_START__ = .; |
| 60 | KEEP(*(.fconf_populator)) |
| 61 | __FCONF_POPULATOR_END__ = .; |
| 62 | |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 63 | #if ENABLE_PMF |
| 64 | /* Ensure 8-byte alignment for descriptors and ensure inclusion */ |
| 65 | . = ALIGN(8); |
| 66 | __PMF_SVC_DESCS_START__ = .; |
| 67 | KEEP(*(pmf_svc_descs)) |
| 68 | __PMF_SVC_DESCS_END__ = .; |
| 69 | #endif /* ENABLE_PMF */ |
| 70 | |
| 71 | /* |
| 72 | * Ensure 8-byte alignment for cpu_ops so that its fields are also |
| 73 | * aligned. Also ensure cpu_ops inclusion. |
| 74 | */ |
| 75 | . = ALIGN(8); |
| 76 | __CPU_OPS_START__ = .; |
| 77 | KEEP(*(cpu_ops)) |
| 78 | __CPU_OPS_END__ = .; |
| 79 | |
Soby Mathew | 4e28c20 | 2018-10-14 08:09:22 +0100 | [diff] [blame] | 80 | /* |
Soby Mathew | 2b3fc1d | 2018-12-12 14:33:11 +0000 | [diff] [blame] | 81 | * Keep the .got section in the RO section as it is patched |
Soby Mathew | 4e28c20 | 2018-10-14 08:09:22 +0100 | [diff] [blame] | 82 | * prior to enabling the MMU and having the .got in RO is better for |
Soby Mathew | 2b3fc1d | 2018-12-12 14:33:11 +0000 | [diff] [blame] | 83 | * security. GOT is a table of addresses so ensure 8-byte alignment. |
Soby Mathew | 4e28c20 | 2018-10-14 08:09:22 +0100 | [diff] [blame] | 84 | */ |
Soby Mathew | 2b3fc1d | 2018-12-12 14:33:11 +0000 | [diff] [blame] | 85 | . = ALIGN(8); |
Soby Mathew | 4e28c20 | 2018-10-14 08:09:22 +0100 | [diff] [blame] | 86 | __GOT_START__ = .; |
| 87 | *(.got) |
| 88 | __GOT_END__ = .; |
| 89 | |
Jeenu Viswambharan | e3f2200 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 90 | /* Place pubsub sections for events */ |
| 91 | . = ALIGN(8); |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 92 | #include <lib/el3_runtime/pubsub_events.h> |
Jeenu Viswambharan | e3f2200 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 93 | |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 94 | . = ALIGN(PAGE_SIZE); |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 95 | __RODATA_END__ = .; |
| 96 | } >RAM |
| 97 | #else |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 98 | ro . : { |
| 99 | __RO_START__ = .; |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 100 | *bl31_entrypoint.o(.text*) |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 101 | *(SORT_BY_ALIGNMENT(.text*)) |
| 102 | *(SORT_BY_ALIGNMENT(.rodata*)) |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 103 | |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 104 | /* Ensure 8-byte alignment for descriptors and ensure inclusion */ |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 105 | . = ALIGN(8); |
| 106 | __RT_SVC_DESCS_START__ = .; |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 107 | KEEP(*(rt_svc_descs)) |
Achin Gupta | 7421b46 | 2014-02-01 18:53:26 +0000 | [diff] [blame] | 108 | __RT_SVC_DESCS_END__ = .; |
| 109 | |
Madhukar Pappireddy | ae9677b | 2020-01-27 13:37:51 -0600 | [diff] [blame] | 110 | . = ALIGN(8); |
| 111 | __FCONF_POPULATOR_START__ = .; |
| 112 | KEEP(*(.fconf_populator)) |
| 113 | __FCONF_POPULATOR_END__ = .; |
| 114 | |
Yatharth Kochar | 9518d02 | 2016-03-11 14:20:19 +0000 | [diff] [blame] | 115 | #if ENABLE_PMF |
| 116 | /* Ensure 8-byte alignment for descriptors and ensure inclusion */ |
| 117 | . = ALIGN(8); |
| 118 | __PMF_SVC_DESCS_START__ = .; |
| 119 | KEEP(*(pmf_svc_descs)) |
| 120 | __PMF_SVC_DESCS_END__ = .; |
| 121 | #endif /* ENABLE_PMF */ |
| 122 | |
Soby Mathew | c704cbc | 2014-08-14 11:33:56 +0100 | [diff] [blame] | 123 | /* |
| 124 | * Ensure 8-byte alignment for cpu_ops so that its fields are also |
| 125 | * aligned. Also ensure cpu_ops inclusion. |
| 126 | */ |
| 127 | . = ALIGN(8); |
| 128 | __CPU_OPS_START__ = .; |
| 129 | KEEP(*(cpu_ops)) |
| 130 | __CPU_OPS_END__ = .; |
| 131 | |
Soby Mathew | 2b3fc1d | 2018-12-12 14:33:11 +0000 | [diff] [blame] | 132 | /* |
| 133 | * Keep the .got section in the RO section as it is patched |
| 134 | * prior to enabling the MMU and having the .got in RO is better for |
| 135 | * security. GOT is a table of addresses so ensure 8-byte alignment. |
| 136 | */ |
| 137 | . = ALIGN(8); |
| 138 | __GOT_START__ = .; |
| 139 | *(.got) |
| 140 | __GOT_END__ = .; |
| 141 | |
Jeenu Viswambharan | e3f2200 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 142 | /* Place pubsub sections for events */ |
| 143 | . = ALIGN(8); |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 144 | #include <lib/el3_runtime/pubsub_events.h> |
Jeenu Viswambharan | e3f2200 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 145 | |
Achin Gupta | b739f22 | 2014-01-18 16:50:09 +0000 | [diff] [blame] | 146 | *(.vectors) |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 147 | __RO_END_UNALIGNED__ = .; |
| 148 | /* |
| 149 | * Memory page(s) mapped to this section will be marked as read-only, |
| 150 | * executable. No RW data from the next section must creep in. |
| 151 | * Ensure the rest of the current memory page is unused. |
| 152 | */ |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 153 | . = ALIGN(PAGE_SIZE); |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 154 | __RO_END__ = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 155 | } >RAM |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 156 | #endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 157 | |
Soby Mathew | c704cbc | 2014-08-14 11:33:56 +0100 | [diff] [blame] | 158 | ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__, |
| 159 | "cpu_ops not defined for this platform.") |
| 160 | |
Paul Beesley | db4e25a | 2019-10-14 15:27:12 +0000 | [diff] [blame] | 161 | #if SPM_MM |
Ard Biesheuvel | 447d56f | 2019-01-06 10:07:24 +0100 | [diff] [blame] | 162 | #ifndef SPM_SHIM_EXCEPTIONS_VMA |
| 163 | #define SPM_SHIM_EXCEPTIONS_VMA RAM |
| 164 | #endif |
| 165 | |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 166 | /* |
| 167 | * Exception vectors of the SPM shim layer. They must be aligned to a 2K |
| 168 | * address, but we need to place them in a separate page so that we can set |
| 169 | * individual permissions to them, so the actual alignment needed is 4K. |
| 170 | * |
| 171 | * There's no need to include this into the RO section of BL31 because it |
| 172 | * doesn't need to be accessed by BL31. |
| 173 | */ |
Antonio Nino Diaz | 2ce2b09 | 2017-11-15 11:45:35 +0000 | [diff] [blame] | 174 | spm_shim_exceptions : ALIGN(PAGE_SIZE) { |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 175 | __SPM_SHIM_EXCEPTIONS_START__ = .; |
| 176 | *(.spm_shim_exceptions) |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 177 | . = ALIGN(PAGE_SIZE); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 178 | __SPM_SHIM_EXCEPTIONS_END__ = .; |
Ard Biesheuvel | 447d56f | 2019-01-06 10:07:24 +0100 | [diff] [blame] | 179 | } >SPM_SHIM_EXCEPTIONS_VMA AT>RAM |
| 180 | |
| 181 | PROVIDE(__SPM_SHIM_EXCEPTIONS_LMA__ = LOADADDR(spm_shim_exceptions)); |
| 182 | . = LOADADDR(spm_shim_exceptions) + SIZEOF(spm_shim_exceptions); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 183 | #endif |
| 184 | |
Achin Gupta | e9c4a64 | 2015-09-11 16:03:13 +0100 | [diff] [blame] | 185 | /* |
| 186 | * Define a linker symbol to mark start of the RW memory area for this |
| 187 | * image. |
| 188 | */ |
| 189 | __RW_START__ = . ; |
| 190 | |
Douglas Raillard | 306593d | 2017-02-24 18:14:15 +0000 | [diff] [blame] | 191 | /* |
| 192 | * .data must be placed at a lower address than the stacks if the stack |
| 193 | * protector is enabled. Alternatively, the .data.stack_protector_canary |
| 194 | * section can be placed independently of the main .data section. |
| 195 | */ |
| 196 | .data . : { |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 197 | __DATA_START__ = .; |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 198 | *(SORT_BY_ALIGNMENT(.data*)) |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 199 | __DATA_END__ = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 200 | } >RAM |
| 201 | |
Soby Mathew | 4e28c20 | 2018-10-14 08:09:22 +0100 | [diff] [blame] | 202 | /* |
| 203 | * .rela.dyn needs to come after .data for the read-elf utility to parse |
Soby Mathew | 2b3fc1d | 2018-12-12 14:33:11 +0000 | [diff] [blame] | 204 | * this section correctly. Ensure 8-byte alignment so that the fields of |
| 205 | * RELA data structure are aligned. |
Soby Mathew | 4e28c20 | 2018-10-14 08:09:22 +0100 | [diff] [blame] | 206 | */ |
Soby Mathew | 2b3fc1d | 2018-12-12 14:33:11 +0000 | [diff] [blame] | 207 | . = ALIGN(8); |
Soby Mathew | 4e28c20 | 2018-10-14 08:09:22 +0100 | [diff] [blame] | 208 | __RELA_START__ = .; |
| 209 | .rela.dyn . : { |
| 210 | } >RAM |
| 211 | __RELA_END__ = .; |
| 212 | |
Sandrine Bailleux | e2e0c65 | 2014-06-16 16:12:27 +0100 | [diff] [blame] | 213 | #ifdef BL31_PROGBITS_LIMIT |
Juan Castillo | 7d19941 | 2015-12-14 09:35:25 +0000 | [diff] [blame] | 214 | ASSERT(. <= BL31_PROGBITS_LIMIT, "BL31 progbits has exceeded its limit.") |
Sandrine Bailleux | e2e0c65 | 2014-06-16 16:12:27 +0100 | [diff] [blame] | 215 | #endif |
| 216 | |
Samuel Holland | 31a14e1 | 2018-10-17 21:40:18 -0500 | [diff] [blame] | 217 | #if SEPARATE_NOBITS_REGION |
| 218 | /* |
| 219 | * Define a linker symbol to mark end of the RW memory area for this |
| 220 | * image. |
| 221 | */ |
Madhukar Pappireddy | f4e6ea6 | 2020-01-27 15:32:15 -0600 | [diff] [blame] | 222 | . = ALIGN(PAGE_SIZE); |
Samuel Holland | 31a14e1 | 2018-10-17 21:40:18 -0500 | [diff] [blame] | 223 | __RW_END__ = .; |
| 224 | __BL31_END__ = .; |
| 225 | |
| 226 | ASSERT(. <= BL31_LIMIT, "BL31 image has exceeded its limit.") |
| 227 | |
| 228 | . = BL31_NOBITS_BASE; |
| 229 | ASSERT(. == ALIGN(PAGE_SIZE), |
| 230 | "BL31 NOBITS base address is not aligned on a page boundary.") |
| 231 | |
| 232 | __NOBITS_START__ = .; |
| 233 | #endif |
| 234 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 235 | stacks (NOLOAD) : { |
| 236 | __STACKS_START__ = .; |
| 237 | *(tzfw_normal_stacks) |
| 238 | __STACKS_END__ = .; |
Samuel Holland | 31a14e1 | 2018-10-17 21:40:18 -0500 | [diff] [blame] | 239 | } >NOBITS |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 240 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 241 | /* |
| 242 | * The .bss section gets initialised to 0 at runtime. |
Douglas Raillard | 21362a9 | 2016-12-02 13:51:54 +0000 | [diff] [blame] | 243 | * Its base address should be 16-byte aligned for better performance of the |
| 244 | * zero-initialization code. |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 245 | */ |
Andrew Thoelke | e466c9f | 2015-09-10 11:39:36 +0100 | [diff] [blame] | 246 | .bss (NOLOAD) : ALIGN(16) { |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 247 | __BSS_START__ = .; |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 248 | *(SORT_BY_ALIGNMENT(.bss*)) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 249 | *(COMMON) |
Andrew Thoelke | e466c9f | 2015-09-10 11:39:36 +0100 | [diff] [blame] | 250 | #if !USE_COHERENT_MEM |
| 251 | /* |
| 252 | * Bakery locks are stored in normal .bss memory |
| 253 | * |
| 254 | * Each lock's data is spread across multiple cache lines, one per CPU, |
| 255 | * but multiple locks can share the same cache line. |
| 256 | * The compiler will allocate enough memory for one CPU's bakery locks, |
| 257 | * the remaining cache lines are allocated by the linker script |
| 258 | */ |
| 259 | . = ALIGN(CACHE_WRITEBACK_GRANULE); |
| 260 | __BAKERY_LOCK_START__ = .; |
Varun Wadekar | 77c382c | 2019-01-30 08:26:20 -0800 | [diff] [blame] | 261 | __PERCPU_BAKERY_LOCK_START__ = .; |
Andrew Thoelke | e466c9f | 2015-09-10 11:39:36 +0100 | [diff] [blame] | 262 | *(bakery_lock) |
| 263 | . = ALIGN(CACHE_WRITEBACK_GRANULE); |
Varun Wadekar | 77c382c | 2019-01-30 08:26:20 -0800 | [diff] [blame] | 264 | __PERCPU_BAKERY_LOCK_END__ = .; |
| 265 | __PERCPU_BAKERY_LOCK_SIZE__ = ABSOLUTE(__PERCPU_BAKERY_LOCK_END__ - __PERCPU_BAKERY_LOCK_START__); |
Andrew Thoelke | e466c9f | 2015-09-10 11:39:36 +0100 | [diff] [blame] | 266 | . = . + (__PERCPU_BAKERY_LOCK_SIZE__ * (PLATFORM_CORE_COUNT - 1)); |
| 267 | __BAKERY_LOCK_END__ = .; |
Roberto Vargas | 0099694 | 2017-11-13 13:41:58 +0000 | [diff] [blame] | 268 | |
| 269 | /* |
| 270 | * If BL31 doesn't use any bakery lock then __PERCPU_BAKERY_LOCK_SIZE__ |
| 271 | * will be zero. For this reason, the only two valid values for |
| 272 | * __PERCPU_BAKERY_LOCK_SIZE__ are 0 or the platform defined value |
| 273 | * PLAT_PERCPU_BAKERY_LOCK_SIZE. |
| 274 | */ |
Andrew Thoelke | e466c9f | 2015-09-10 11:39:36 +0100 | [diff] [blame] | 275 | #ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE |
Roberto Vargas | 0099694 | 2017-11-13 13:41:58 +0000 | [diff] [blame] | 276 | ASSERT((__PERCPU_BAKERY_LOCK_SIZE__ == 0) || (__PERCPU_BAKERY_LOCK_SIZE__ == PLAT_PERCPU_BAKERY_LOCK_SIZE), |
Andrew Thoelke | e466c9f | 2015-09-10 11:39:36 +0100 | [diff] [blame] | 277 | "PLAT_PERCPU_BAKERY_LOCK_SIZE does not match bakery lock requirements"); |
| 278 | #endif |
| 279 | #endif |
Yatharth Kochar | 9518d02 | 2016-03-11 14:20:19 +0000 | [diff] [blame] | 280 | |
| 281 | #if ENABLE_PMF |
| 282 | /* |
| 283 | * Time-stamps are stored in normal .bss memory |
| 284 | * |
| 285 | * The compiler will allocate enough memory for one CPU's time-stamps, |
Paul Beesley | 1fbc97b | 2019-01-11 18:26:51 +0000 | [diff] [blame] | 286 | * the remaining memory for other CPUs is allocated by the |
Yatharth Kochar | 9518d02 | 2016-03-11 14:20:19 +0000 | [diff] [blame] | 287 | * linker script |
| 288 | */ |
| 289 | . = ALIGN(CACHE_WRITEBACK_GRANULE); |
| 290 | __PMF_TIMESTAMP_START__ = .; |
| 291 | KEEP(*(pmf_timestamp_array)) |
| 292 | . = ALIGN(CACHE_WRITEBACK_GRANULE); |
| 293 | __PMF_PERCPU_TIMESTAMP_END__ = .; |
| 294 | __PERCPU_TIMESTAMP_SIZE__ = ABSOLUTE(. - __PMF_TIMESTAMP_START__); |
| 295 | . = . + (__PERCPU_TIMESTAMP_SIZE__ * (PLATFORM_CORE_COUNT - 1)); |
| 296 | __PMF_TIMESTAMP_END__ = .; |
| 297 | #endif /* ENABLE_PMF */ |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 298 | __BSS_END__ = .; |
Samuel Holland | 31a14e1 | 2018-10-17 21:40:18 -0500 | [diff] [blame] | 299 | } >NOBITS |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 300 | |
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 301 | XLAT_TABLE_SECTION >NOBITS |
Achin Gupta | a0cd989 | 2014-02-09 13:30:38 +0000 | [diff] [blame] | 302 | |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 303 | #if USE_COHERENT_MEM |
Achin Gupta | a0cd989 | 2014-02-09 13:30:38 +0000 | [diff] [blame] | 304 | /* |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 305 | * The base address of the coherent memory section must be page-aligned (4K) |
| 306 | * to guarantee that the coherent data are stored on their own pages and |
| 307 | * are not mixed with normal data. This is required to set up the correct |
| 308 | * memory attributes for the coherent data page tables. |
| 309 | */ |
Antonio Nino Diaz | 2ce2b09 | 2017-11-15 11:45:35 +0000 | [diff] [blame] | 310 | coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) { |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 311 | __COHERENT_RAM_START__ = .; |
Andrew Thoelke | e466c9f | 2015-09-10 11:39:36 +0100 | [diff] [blame] | 312 | /* |
| 313 | * Bakery locks are stored in coherent memory |
| 314 | * |
| 315 | * Each lock's data is contiguous and fully allocated by the compiler |
| 316 | */ |
| 317 | *(bakery_lock) |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 318 | *(tzfw_coherent_mem) |
| 319 | __COHERENT_RAM_END_UNALIGNED__ = .; |
| 320 | /* |
| 321 | * Memory page(s) mapped to this section will be marked |
| 322 | * as device memory. No other unexpected data must creep in. |
| 323 | * Ensure the rest of the current memory page is unused. |
| 324 | */ |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 325 | . = ALIGN(PAGE_SIZE); |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 326 | __COHERENT_RAM_END__ = .; |
Samuel Holland | 31a14e1 | 2018-10-17 21:40:18 -0500 | [diff] [blame] | 327 | } >NOBITS |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 328 | #endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 329 | |
Samuel Holland | 31a14e1 | 2018-10-17 21:40:18 -0500 | [diff] [blame] | 330 | #if SEPARATE_NOBITS_REGION |
| 331 | /* |
| 332 | * Define a linker symbol to mark end of the NOBITS memory area for this |
| 333 | * image. |
| 334 | */ |
| 335 | __NOBITS_END__ = .; |
| 336 | |
| 337 | ASSERT(. <= BL31_NOBITS_LIMIT, "BL31 NOBITS region has exceeded its limit.") |
| 338 | #else |
Achin Gupta | e9c4a64 | 2015-09-11 16:03:13 +0100 | [diff] [blame] | 339 | /* |
| 340 | * Define a linker symbol to mark end of the RW memory area for this |
| 341 | * image. |
| 342 | */ |
| 343 | __RW_END__ = .; |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 344 | __BL31_END__ = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 345 | |
Masahiro Yamada | d3e7baa | 2020-01-17 13:44:50 +0900 | [diff] [blame] | 346 | /DISCARD/ : { |
| 347 | *(.dynsym .dynstr .hash .gnu.hash) |
| 348 | } |
| 349 | |
Juan Castillo | 7d19941 | 2015-12-14 09:35:25 +0000 | [diff] [blame] | 350 | ASSERT(. <= BL31_LIMIT, "BL31 image has exceeded its limit.") |
Samuel Holland | 31a14e1 | 2018-10-17 21:40:18 -0500 | [diff] [blame] | 351 | #endif |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 352 | } |