blob: fd53ed82c286e5227ac1eba19b652bb2a4fc9f75 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Antonio Nino Diaz7c2a3ca2018-02-23 15:07:54 +00002 * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Dan Handleyed6ff952014-05-14 17:44:19 +01007#include <platform_def.h>
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +00008#include <xlat_tables_defs.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +01009
10OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT)
11OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
Jeenu Viswambharan2a30a752014-03-11 11:06:45 +000012ENTRY(bl31_entrypoint)
Achin Gupta4f6ad662013-10-25 09:08:21 +010013
14
15MEMORY {
Juan Castillofd8c0772014-09-16 10:40:35 +010016 RAM (rwx): ORIGIN = BL31_BASE, LENGTH = BL31_LIMIT - BL31_BASE
Achin Gupta4f6ad662013-10-25 09:08:21 +010017}
18
Caesar Wangd90f43e2016-10-11 09:36:00 +080019#ifdef PLAT_EXTRA_LD_SCRIPT
20#include <plat.ld.S>
21#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +010022
23SECTIONS
24{
Sandrine Bailleux8d69a032013-11-27 09:38:52 +000025 . = BL31_BASE;
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +000026 ASSERT(. == ALIGN(PAGE_SIZE),
Sandrine Bailleux8d69a032013-11-27 09:38:52 +000027 "BL31_BASE address is not aligned on a page boundary.")
Achin Gupta4f6ad662013-10-25 09:08:21 +010028
Soby Mathew4e28c202018-10-14 08:09:22 +010029 __BL31_START__ = .;
30
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010031#if SEPARATE_CODE_AND_RODATA
32 .text . : {
33 __TEXT_START__ = .;
34 *bl31_entrypoint.o(.text*)
35 *(.text*)
36 *(.vectors)
Roberto Vargasd93fde32018-04-11 11:53:31 +010037 . = ALIGN(PAGE_SIZE);
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010038 __TEXT_END__ = .;
39 } >RAM
40
41 .rodata . : {
42 __RODATA_START__ = .;
43 *(.rodata*)
44
45 /* Ensure 8-byte alignment for descriptors and ensure inclusion */
46 . = ALIGN(8);
47 __RT_SVC_DESCS_START__ = .;
48 KEEP(*(rt_svc_descs))
49 __RT_SVC_DESCS_END__ = .;
50
51#if ENABLE_PMF
52 /* Ensure 8-byte alignment for descriptors and ensure inclusion */
53 . = ALIGN(8);
54 __PMF_SVC_DESCS_START__ = .;
55 KEEP(*(pmf_svc_descs))
56 __PMF_SVC_DESCS_END__ = .;
57#endif /* ENABLE_PMF */
58
59 /*
60 * Ensure 8-byte alignment for cpu_ops so that its fields are also
61 * aligned. Also ensure cpu_ops inclusion.
62 */
63 . = ALIGN(8);
64 __CPU_OPS_START__ = .;
65 KEEP(*(cpu_ops))
66 __CPU_OPS_END__ = .;
67
Soby Mathew4e28c202018-10-14 08:09:22 +010068 /*
Soby Mathew2b3fc1d2018-12-12 14:33:11 +000069 * Keep the .got section in the RO section as it is patched
Soby Mathew4e28c202018-10-14 08:09:22 +010070 * prior to enabling the MMU and having the .got in RO is better for
Soby Mathew2b3fc1d2018-12-12 14:33:11 +000071 * security. GOT is a table of addresses so ensure 8-byte alignment.
Soby Mathew4e28c202018-10-14 08:09:22 +010072 */
Soby Mathew2b3fc1d2018-12-12 14:33:11 +000073 . = ALIGN(8);
Soby Mathew4e28c202018-10-14 08:09:22 +010074 __GOT_START__ = .;
75 *(.got)
76 __GOT_END__ = .;
77
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010078 /* Place pubsub sections for events */
79 . = ALIGN(8);
80#include <pubsub_events.h>
81
Roberto Vargasd93fde32018-04-11 11:53:31 +010082 . = ALIGN(PAGE_SIZE);
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010083 __RODATA_END__ = .;
84 } >RAM
85#else
Sandrine Bailleux8d69a032013-11-27 09:38:52 +000086 ro . : {
87 __RO_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +000088 *bl31_entrypoint.o(.text*)
89 *(.text*)
Sandrine Bailleux8d69a032013-11-27 09:38:52 +000090 *(.rodata*)
Achin Gupta7421b462014-02-01 18:53:26 +000091
Andrew Thoelkee01ea342014-03-18 07:13:52 +000092 /* Ensure 8-byte alignment for descriptors and ensure inclusion */
Achin Gupta7421b462014-02-01 18:53:26 +000093 . = ALIGN(8);
94 __RT_SVC_DESCS_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +000095 KEEP(*(rt_svc_descs))
Achin Gupta7421b462014-02-01 18:53:26 +000096 __RT_SVC_DESCS_END__ = .;
97
Yatharth Kochar9518d022016-03-11 14:20:19 +000098#if ENABLE_PMF
99 /* Ensure 8-byte alignment for descriptors and ensure inclusion */
100 . = ALIGN(8);
101 __PMF_SVC_DESCS_START__ = .;
102 KEEP(*(pmf_svc_descs))
103 __PMF_SVC_DESCS_END__ = .;
104#endif /* ENABLE_PMF */
105
Soby Mathewc704cbc2014-08-14 11:33:56 +0100106 /*
107 * Ensure 8-byte alignment for cpu_ops so that its fields are also
108 * aligned. Also ensure cpu_ops inclusion.
109 */
110 . = ALIGN(8);
111 __CPU_OPS_START__ = .;
112 KEEP(*(cpu_ops))
113 __CPU_OPS_END__ = .;
114
Soby Mathew2b3fc1d2018-12-12 14:33:11 +0000115 /*
116 * Keep the .got section in the RO section as it is patched
117 * prior to enabling the MMU and having the .got in RO is better for
118 * security. GOT is a table of addresses so ensure 8-byte alignment.
119 */
120 . = ALIGN(8);
121 __GOT_START__ = .;
122 *(.got)
123 __GOT_END__ = .;
124
Jeenu Viswambharane3f22002017-09-22 08:32:10 +0100125 /* Place pubsub sections for events */
126 . = ALIGN(8);
127#include <pubsub_events.h>
128
Achin Guptab739f222014-01-18 16:50:09 +0000129 *(.vectors)
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000130 __RO_END_UNALIGNED__ = .;
131 /*
132 * Memory page(s) mapped to this section will be marked as read-only,
133 * executable. No RW data from the next section must creep in.
134 * Ensure the rest of the current memory page is unused.
135 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100136 . = ALIGN(PAGE_SIZE);
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000137 __RO_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100138 } >RAM
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +0100139#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100140
Soby Mathewc704cbc2014-08-14 11:33:56 +0100141 ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__,
142 "cpu_ops not defined for this platform.")
143
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100144#if ENABLE_SPM
145 /*
146 * Exception vectors of the SPM shim layer. They must be aligned to a 2K
147 * address, but we need to place them in a separate page so that we can set
148 * individual permissions to them, so the actual alignment needed is 4K.
149 *
150 * There's no need to include this into the RO section of BL31 because it
151 * doesn't need to be accessed by BL31.
152 */
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +0000153 spm_shim_exceptions : ALIGN(PAGE_SIZE) {
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100154 __SPM_SHIM_EXCEPTIONS_START__ = .;
155 *(.spm_shim_exceptions)
Roberto Vargasd93fde32018-04-11 11:53:31 +0100156 . = ALIGN(PAGE_SIZE);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100157 __SPM_SHIM_EXCEPTIONS_END__ = .;
158 } >RAM
159#endif
160
Achin Guptae9c4a642015-09-11 16:03:13 +0100161 /*
162 * Define a linker symbol to mark start of the RW memory area for this
163 * image.
164 */
165 __RW_START__ = . ;
166
Douglas Raillard306593d2017-02-24 18:14:15 +0000167 /*
168 * .data must be placed at a lower address than the stacks if the stack
169 * protector is enabled. Alternatively, the .data.stack_protector_canary
170 * section can be placed independently of the main .data section.
171 */
172 .data . : {
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000173 __DATA_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +0000174 *(.data*)
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000175 __DATA_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100176 } >RAM
177
Soby Mathew4e28c202018-10-14 08:09:22 +0100178 /*
179 * .rela.dyn needs to come after .data for the read-elf utility to parse
Soby Mathew2b3fc1d2018-12-12 14:33:11 +0000180 * this section correctly. Ensure 8-byte alignment so that the fields of
181 * RELA data structure are aligned.
Soby Mathew4e28c202018-10-14 08:09:22 +0100182 */
Soby Mathew2b3fc1d2018-12-12 14:33:11 +0000183 . = ALIGN(8);
Soby Mathew4e28c202018-10-14 08:09:22 +0100184 __RELA_START__ = .;
185 .rela.dyn . : {
186 } >RAM
187 __RELA_END__ = .;
188
Sandrine Bailleuxe2e0c652014-06-16 16:12:27 +0100189#ifdef BL31_PROGBITS_LIMIT
Juan Castillo7d199412015-12-14 09:35:25 +0000190 ASSERT(. <= BL31_PROGBITS_LIMIT, "BL31 progbits has exceeded its limit.")
Sandrine Bailleuxe2e0c652014-06-16 16:12:27 +0100191#endif
192
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000193 stacks (NOLOAD) : {
194 __STACKS_START__ = .;
195 *(tzfw_normal_stacks)
196 __STACKS_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100197 } >RAM
198
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000199 /*
200 * The .bss section gets initialised to 0 at runtime.
Douglas Raillard21362a92016-12-02 13:51:54 +0000201 * Its base address should be 16-byte aligned for better performance of the
202 * zero-initialization code.
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000203 */
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100204 .bss (NOLOAD) : ALIGN(16) {
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000205 __BSS_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +0000206 *(.bss*)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100207 *(COMMON)
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100208#if !USE_COHERENT_MEM
209 /*
210 * Bakery locks are stored in normal .bss memory
211 *
212 * Each lock's data is spread across multiple cache lines, one per CPU,
213 * but multiple locks can share the same cache line.
214 * The compiler will allocate enough memory for one CPU's bakery locks,
215 * the remaining cache lines are allocated by the linker script
216 */
217 . = ALIGN(CACHE_WRITEBACK_GRANULE);
218 __BAKERY_LOCK_START__ = .;
219 *(bakery_lock)
220 . = ALIGN(CACHE_WRITEBACK_GRANULE);
Vikram Kanigiri405fafe2015-09-24 15:45:43 +0100221 __PERCPU_BAKERY_LOCK_SIZE__ = ABSOLUTE(. - __BAKERY_LOCK_START__);
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100222 . = . + (__PERCPU_BAKERY_LOCK_SIZE__ * (PLATFORM_CORE_COUNT - 1));
223 __BAKERY_LOCK_END__ = .;
Roberto Vargas00996942017-11-13 13:41:58 +0000224
225 /*
226 * If BL31 doesn't use any bakery lock then __PERCPU_BAKERY_LOCK_SIZE__
227 * will be zero. For this reason, the only two valid values for
228 * __PERCPU_BAKERY_LOCK_SIZE__ are 0 or the platform defined value
229 * PLAT_PERCPU_BAKERY_LOCK_SIZE.
230 */
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100231#ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE
Roberto Vargas00996942017-11-13 13:41:58 +0000232 ASSERT((__PERCPU_BAKERY_LOCK_SIZE__ == 0) || (__PERCPU_BAKERY_LOCK_SIZE__ == PLAT_PERCPU_BAKERY_LOCK_SIZE),
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100233 "PLAT_PERCPU_BAKERY_LOCK_SIZE does not match bakery lock requirements");
234#endif
235#endif
Yatharth Kochar9518d022016-03-11 14:20:19 +0000236
237#if ENABLE_PMF
238 /*
239 * Time-stamps are stored in normal .bss memory
240 *
241 * The compiler will allocate enough memory for one CPU's time-stamps,
242 * the remaining memory for other CPU's is allocated by the
243 * linker script
244 */
245 . = ALIGN(CACHE_WRITEBACK_GRANULE);
246 __PMF_TIMESTAMP_START__ = .;
247 KEEP(*(pmf_timestamp_array))
248 . = ALIGN(CACHE_WRITEBACK_GRANULE);
249 __PMF_PERCPU_TIMESTAMP_END__ = .;
250 __PERCPU_TIMESTAMP_SIZE__ = ABSOLUTE(. - __PMF_TIMESTAMP_START__);
251 . = . + (__PERCPU_TIMESTAMP_SIZE__ * (PLATFORM_CORE_COUNT - 1));
252 __PMF_TIMESTAMP_END__ = .;
253#endif /* ENABLE_PMF */
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000254 __BSS_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100255 } >RAM
256
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000257 /*
Jeenu Viswambharan97cc9ee2014-02-24 15:20:28 +0000258 * The xlat_table section is for full, aligned page tables (4K).
Achin Guptaa0cd9892014-02-09 13:30:38 +0000259 * Removing them from .bss avoids forcing 4K alignment on
Antonio Nino Diaz7c2a3ca2018-02-23 15:07:54 +0000260 * the .bss section. The tables are initialized to zero by the translation
261 * tables library.
Achin Guptaa0cd9892014-02-09 13:30:38 +0000262 */
263 xlat_table (NOLOAD) : {
264 *(xlat_table)
265 } >RAM
266
Soby Mathew2ae20432015-01-08 18:02:44 +0000267#if USE_COHERENT_MEM
Achin Guptaa0cd9892014-02-09 13:30:38 +0000268 /*
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000269 * The base address of the coherent memory section must be page-aligned (4K)
270 * to guarantee that the coherent data are stored on their own pages and
271 * are not mixed with normal data. This is required to set up the correct
272 * memory attributes for the coherent data page tables.
273 */
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +0000274 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000275 __COHERENT_RAM_START__ = .;
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100276 /*
277 * Bakery locks are stored in coherent memory
278 *
279 * Each lock's data is contiguous and fully allocated by the compiler
280 */
281 *(bakery_lock)
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000282 *(tzfw_coherent_mem)
283 __COHERENT_RAM_END_UNALIGNED__ = .;
284 /*
285 * Memory page(s) mapped to this section will be marked
286 * as device memory. No other unexpected data must creep in.
287 * Ensure the rest of the current memory page is unused.
288 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100289 . = ALIGN(PAGE_SIZE);
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000290 __COHERENT_RAM_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100291 } >RAM
Soby Mathew2ae20432015-01-08 18:02:44 +0000292#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100293
Achin Guptae9c4a642015-09-11 16:03:13 +0100294 /*
295 * Define a linker symbol to mark end of the RW memory area for this
296 * image.
297 */
298 __RW_END__ = .;
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000299 __BL31_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100300
Juan Castillo7d199412015-12-14 09:35:25 +0000301 ASSERT(. <= BL31_LIMIT, "BL31 image has exceeded its limit.")
Achin Gupta4f6ad662013-10-25 09:08:21 +0100302}