1/* 2 * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7#include <platform_def.h> 8 9#include <lib/xlat_tables/xlat_tables_defs.h> 10 11OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT) 12OUTPUT_ARCH(PLATFORM_LINKER_ARCH) 13ENTRY(bl31_entrypoint) 14 15 16MEMORY { 17 RAM (rwx): ORIGIN = BL31_BASE, LENGTH = BL31_LIMIT - BL31_BASE 18} 19 20#ifdef PLAT_EXTRA_LD_SCRIPT 21#include <plat.ld.S> 22#endif 23 24SECTIONS 25{ 26 . = BL31_BASE; 27 ASSERT(. == ALIGN(PAGE_SIZE), 28 "BL31_BASE address is not aligned on a page boundary.") 29 30 __BL31_START__ = .; 31 32#if SEPARATE_CODE_AND_RODATA 33 .text . : { 34 __TEXT_START__ = .; 35 *bl31_entrypoint.o(.text*) 36 *(.text*) 37 *(.vectors) 38 . = ALIGN(PAGE_SIZE); 39 __TEXT_END__ = .; 40 } >RAM 41 42 .rodata . : { 43 __RODATA_START__ = .; 44 *(.rodata*) 45 46 /* Ensure 8-byte alignment for descriptors and ensure inclusion */ 47 . = ALIGN(8); 48 __RT_SVC_DESCS_START__ = .; 49 KEEP(*(rt_svc_descs)) 50 __RT_SVC_DESCS_END__ = .; 51 52#if ENABLE_PMF 53 /* Ensure 8-byte alignment for descriptors and ensure inclusion */ 54 . = ALIGN(8); 55 __PMF_SVC_DESCS_START__ = .; 56 KEEP(*(pmf_svc_descs)) 57 __PMF_SVC_DESCS_END__ = .; 58#endif /* ENABLE_PMF */ 59 60 /* 61 * Ensure 8-byte alignment for cpu_ops so that its fields are also 62 * aligned. Also ensure cpu_ops inclusion. 63 */ 64 . = ALIGN(8); 65 __CPU_OPS_START__ = .; 66 KEEP(*(cpu_ops)) 67 __CPU_OPS_END__ = .; 68 69 /* 70 * Keep the .got section in the RO section as it is patched 71 * prior to enabling the MMU and having the .got in RO is better for 72 * security. GOT is a table of addresses so ensure 8-byte alignment. 73 */ 74 . = ALIGN(8); 75 __GOT_START__ = .; 76 *(.got) 77 __GOT_END__ = .; 78 79 /* Place pubsub sections for events */ 80 . = ALIGN(8); 81#include <lib/el3_runtime/pubsub_events.h> 82 83 . = ALIGN(PAGE_SIZE); 84 __RODATA_END__ = .; 85 } >RAM 86#else 87 ro . : { 88 __RO_START__ = .; 89 *bl31_entrypoint.o(.text*) 90 *(.text*) 91 *(.rodata*) 92 93 /* Ensure 8-byte alignment for descriptors and ensure inclusion */ 94 . = ALIGN(8); 95 __RT_SVC_DESCS_START__ = .; 96 KEEP(*(rt_svc_descs)) 97 __RT_SVC_DESCS_END__ = .; 98 99#if ENABLE_PMF 100 /* Ensure 8-byte alignment for descriptors and ensure inclusion */ 101 . = ALIGN(8); 102 __PMF_SVC_DESCS_START__ = .; 103 KEEP(*(pmf_svc_descs)) 104 __PMF_SVC_DESCS_END__ = .; 105#endif /* ENABLE_PMF */ 106 107 /* 108 * Ensure 8-byte alignment for cpu_ops so that its fields are also 109 * aligned. Also ensure cpu_ops inclusion. 110 */ 111 . = ALIGN(8); 112 __CPU_OPS_START__ = .; 113 KEEP(*(cpu_ops)) 114 __CPU_OPS_END__ = .; 115 116 /* 117 * Keep the .got section in the RO section as it is patched 118 * prior to enabling the MMU and having the .got in RO is better for 119 * security. GOT is a table of addresses so ensure 8-byte alignment. 120 */ 121 . = ALIGN(8); 122 __GOT_START__ = .; 123 *(.got) 124 __GOT_END__ = .; 125 126 /* Place pubsub sections for events */ 127 . = ALIGN(8); 128#include <lib/el3_runtime/pubsub_events.h> 129 130 *(.vectors) 131 __RO_END_UNALIGNED__ = .; 132 /* 133 * Memory page(s) mapped to this section will be marked as read-only, 134 * executable. No RW data from the next section must creep in. 135 * Ensure the rest of the current memory page is unused. 136 */ 137 . = ALIGN(PAGE_SIZE); 138 __RO_END__ = .; 139 } >RAM 140#endif 141 142 ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__, 143 "cpu_ops not defined for this platform.") 144 145#if ENABLE_SPM 146 /* 147 * Exception vectors of the SPM shim layer. They must be aligned to a 2K 148 * address, but we need to place them in a separate page so that we can set 149 * individual permissions to them, so the actual alignment needed is 4K. 150 * 151 * There's no need to include this into the RO section of BL31 because it 152 * doesn't need to be accessed by BL31. 153 */ 154 spm_shim_exceptions : ALIGN(PAGE_SIZE) { 155 __SPM_SHIM_EXCEPTIONS_START__ = .; 156 *(.spm_shim_exceptions) 157 . = ALIGN(PAGE_SIZE); 158 __SPM_SHIM_EXCEPTIONS_END__ = .; 159 } >RAM 160#endif 161 162 /* 163 * Define a linker symbol to mark start of the RW memory area for this 164 * image. 165 */ 166 __RW_START__ = . ; 167 168 /* 169 * .data must be placed at a lower address than the stacks if the stack 170 * protector is enabled. Alternatively, the .data.stack_protector_canary 171 * section can be placed independently of the main .data section. 172 */ 173 .data . : { 174 __DATA_START__ = .; 175 *(.data*) 176 __DATA_END__ = .; 177 } >RAM 178 179 /* 180 * .rela.dyn needs to come after .data for the read-elf utility to parse 181 * this section correctly. Ensure 8-byte alignment so that the fields of 182 * RELA data structure are aligned. 183 */ 184 . = ALIGN(8); 185 __RELA_START__ = .; 186 .rela.dyn . : { 187 } >RAM 188 __RELA_END__ = .; 189 190#ifdef BL31_PROGBITS_LIMIT 191 ASSERT(. <= BL31_PROGBITS_LIMIT, "BL31 progbits has exceeded its limit.") 192#endif 193 194 stacks (NOLOAD) : { 195 __STACKS_START__ = .; 196 *(tzfw_normal_stacks) 197 __STACKS_END__ = .; 198 } >RAM 199 200 /* 201 * The .bss section gets initialised to 0 at runtime. 202 * Its base address should be 16-byte aligned for better performance of the 203 * zero-initialization code. 204 */ 205 .bss (NOLOAD) : ALIGN(16) { 206 __BSS_START__ = .; 207 *(.bss*) 208 *(COMMON) 209#if !USE_COHERENT_MEM 210 /* 211 * Bakery locks are stored in normal .bss memory 212 * 213 * Each lock's data is spread across multiple cache lines, one per CPU, 214 * but multiple locks can share the same cache line. 215 * The compiler will allocate enough memory for one CPU's bakery locks, 216 * the remaining cache lines are allocated by the linker script 217 */ 218 . = ALIGN(CACHE_WRITEBACK_GRANULE); 219 __BAKERY_LOCK_START__ = .; 220 *(bakery_lock) 221 . = ALIGN(CACHE_WRITEBACK_GRANULE); 222 __PERCPU_BAKERY_LOCK_SIZE__ = ABSOLUTE(. - __BAKERY_LOCK_START__); 223 . = . + (__PERCPU_BAKERY_LOCK_SIZE__ * (PLATFORM_CORE_COUNT - 1)); 224 __BAKERY_LOCK_END__ = .; 225 226 /* 227 * If BL31 doesn't use any bakery lock then __PERCPU_BAKERY_LOCK_SIZE__ 228 * will be zero. For this reason, the only two valid values for 229 * __PERCPU_BAKERY_LOCK_SIZE__ are 0 or the platform defined value 230 * PLAT_PERCPU_BAKERY_LOCK_SIZE. 231 */ 232#ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE 233 ASSERT((__PERCPU_BAKERY_LOCK_SIZE__ == 0) || (__PERCPU_BAKERY_LOCK_SIZE__ == PLAT_PERCPU_BAKERY_LOCK_SIZE), 234 "PLAT_PERCPU_BAKERY_LOCK_SIZE does not match bakery lock requirements"); 235#endif 236#endif 237 238#if ENABLE_PMF 239 /* 240 * Time-stamps are stored in normal .bss memory 241 * 242 * The compiler will allocate enough memory for one CPU's time-stamps, 243 * the remaining memory for other CPU's is allocated by the 244 * linker script 245 */ 246 . = ALIGN(CACHE_WRITEBACK_GRANULE); 247 __PMF_TIMESTAMP_START__ = .; 248 KEEP(*(pmf_timestamp_array)) 249 . = ALIGN(CACHE_WRITEBACK_GRANULE); 250 __PMF_PERCPU_TIMESTAMP_END__ = .; 251 __PERCPU_TIMESTAMP_SIZE__ = ABSOLUTE(. - __PMF_TIMESTAMP_START__); 252 . = . + (__PERCPU_TIMESTAMP_SIZE__ * (PLATFORM_CORE_COUNT - 1)); 253 __PMF_TIMESTAMP_END__ = .; 254#endif /* ENABLE_PMF */ 255 __BSS_END__ = .; 256 } >RAM 257 258 /* 259 * The xlat_table section is for full, aligned page tables (4K). 260 * Removing them from .bss avoids forcing 4K alignment on 261 * the .bss section. The tables are initialized to zero by the translation 262 * tables library. 263 */ 264 xlat_table (NOLOAD) : { 265 *(xlat_table) 266 } >RAM 267 268#if USE_COHERENT_MEM 269 /* 270 * The base address of the coherent memory section must be page-aligned (4K) 271 * to guarantee that the coherent data are stored on their own pages and 272 * are not mixed with normal data. This is required to set up the correct 273 * memory attributes for the coherent data page tables. 274 */ 275 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) { 276 __COHERENT_RAM_START__ = .; 277 /* 278 * Bakery locks are stored in coherent memory 279 * 280 * Each lock's data is contiguous and fully allocated by the compiler 281 */ 282 *(bakery_lock) 283 *(tzfw_coherent_mem) 284 __COHERENT_RAM_END_UNALIGNED__ = .; 285 /* 286 * Memory page(s) mapped to this section will be marked 287 * as device memory. No other unexpected data must creep in. 288 * Ensure the rest of the current memory page is unused. 289 */ 290 . = ALIGN(PAGE_SIZE); 291 __COHERENT_RAM_END__ = .; 292 } >RAM 293#endif 294 295 /* 296 * Define a linker symbol to mark end of the RW memory area for this 297 * image. 298 */ 299 __RW_END__ = .; 300 __BL31_END__ = .; 301 302 ASSERT(. <= BL31_LIMIT, "BL31 image has exceeded its limit.") 303} 304