blob: 7f442d008070f602c030bc4e4e7fac5e2386c0c9 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Douglas Raillard21362a92016-12-02 13:51:54 +00002 * Copyright (c) 2013-2017, 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>
Achin Gupta4f6ad662013-10-25 09:08:21 +01008
9OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT)
10OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
Jeenu Viswambharan2a30a752014-03-11 11:06:45 +000011ENTRY(bl31_entrypoint)
Achin Gupta4f6ad662013-10-25 09:08:21 +010012
13
14MEMORY {
Juan Castillofd8c0772014-09-16 10:40:35 +010015 RAM (rwx): ORIGIN = BL31_BASE, LENGTH = BL31_LIMIT - BL31_BASE
Achin Gupta4f6ad662013-10-25 09:08:21 +010016}
17
Caesar Wangd90f43e2016-10-11 09:36:00 +080018#ifdef PLAT_EXTRA_LD_SCRIPT
19#include <plat.ld.S>
20#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +010021
22SECTIONS
23{
Sandrine Bailleux8d69a032013-11-27 09:38:52 +000024 . = BL31_BASE;
25 ASSERT(. == ALIGN(4096),
26 "BL31_BASE address is not aligned on a page boundary.")
Achin Gupta4f6ad662013-10-25 09:08:21 +010027
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010028#if SEPARATE_CODE_AND_RODATA
29 .text . : {
30 __TEXT_START__ = .;
31 *bl31_entrypoint.o(.text*)
32 *(.text*)
33 *(.vectors)
34 . = NEXT(4096);
35 __TEXT_END__ = .;
36 } >RAM
37
38 .rodata . : {
39 __RODATA_START__ = .;
40 *(.rodata*)
41
42 /* Ensure 8-byte alignment for descriptors and ensure inclusion */
43 . = ALIGN(8);
44 __RT_SVC_DESCS_START__ = .;
45 KEEP(*(rt_svc_descs))
46 __RT_SVC_DESCS_END__ = .;
47
48#if ENABLE_PMF
49 /* Ensure 8-byte alignment for descriptors and ensure inclusion */
50 . = ALIGN(8);
51 __PMF_SVC_DESCS_START__ = .;
52 KEEP(*(pmf_svc_descs))
53 __PMF_SVC_DESCS_END__ = .;
54#endif /* ENABLE_PMF */
55
56 /*
57 * Ensure 8-byte alignment for cpu_ops so that its fields are also
58 * aligned. Also ensure cpu_ops inclusion.
59 */
60 . = ALIGN(8);
61 __CPU_OPS_START__ = .;
62 KEEP(*(cpu_ops))
63 __CPU_OPS_END__ = .;
64
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010065 /* Place pubsub sections for events */
66 . = ALIGN(8);
67#include <pubsub_events.h>
68
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010069 . = NEXT(4096);
70 __RODATA_END__ = .;
71 } >RAM
72#else
Sandrine Bailleux8d69a032013-11-27 09:38:52 +000073 ro . : {
74 __RO_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +000075 *bl31_entrypoint.o(.text*)
76 *(.text*)
Sandrine Bailleux8d69a032013-11-27 09:38:52 +000077 *(.rodata*)
Achin Gupta7421b462014-02-01 18:53:26 +000078
Andrew Thoelkee01ea342014-03-18 07:13:52 +000079 /* Ensure 8-byte alignment for descriptors and ensure inclusion */
Achin Gupta7421b462014-02-01 18:53:26 +000080 . = ALIGN(8);
81 __RT_SVC_DESCS_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +000082 KEEP(*(rt_svc_descs))
Achin Gupta7421b462014-02-01 18:53:26 +000083 __RT_SVC_DESCS_END__ = .;
84
Yatharth Kochar9518d022016-03-11 14:20:19 +000085#if ENABLE_PMF
86 /* Ensure 8-byte alignment for descriptors and ensure inclusion */
87 . = ALIGN(8);
88 __PMF_SVC_DESCS_START__ = .;
89 KEEP(*(pmf_svc_descs))
90 __PMF_SVC_DESCS_END__ = .;
91#endif /* ENABLE_PMF */
92
Soby Mathewc704cbc2014-08-14 11:33:56 +010093 /*
94 * Ensure 8-byte alignment for cpu_ops so that its fields are also
95 * aligned. Also ensure cpu_ops inclusion.
96 */
97 . = ALIGN(8);
98 __CPU_OPS_START__ = .;
99 KEEP(*(cpu_ops))
100 __CPU_OPS_END__ = .;
101
Jeenu Viswambharane3f22002017-09-22 08:32:10 +0100102 /* Place pubsub sections for events */
103 . = ALIGN(8);
104#include <pubsub_events.h>
105
Achin Guptab739f222014-01-18 16:50:09 +0000106 *(.vectors)
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000107 __RO_END_UNALIGNED__ = .;
108 /*
109 * Memory page(s) mapped to this section will be marked as read-only,
110 * executable. No RW data from the next section must creep in.
111 * Ensure the rest of the current memory page is unused.
112 */
113 . = NEXT(4096);
114 __RO_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100115 } >RAM
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +0100116#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100117
Soby Mathewc704cbc2014-08-14 11:33:56 +0100118 ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__,
119 "cpu_ops not defined for this platform.")
120
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100121#if ENABLE_SPM
122 /*
123 * Exception vectors of the SPM shim layer. They must be aligned to a 2K
124 * address, but we need to place them in a separate page so that we can set
125 * individual permissions to them, so the actual alignment needed is 4K.
126 *
127 * There's no need to include this into the RO section of BL31 because it
128 * doesn't need to be accessed by BL31.
129 */
130 spm_shim_exceptions : ALIGN(4096) {
131 __SPM_SHIM_EXCEPTIONS_START__ = .;
132 *(.spm_shim_exceptions)
133 . = NEXT(4096);
134 __SPM_SHIM_EXCEPTIONS_END__ = .;
135 } >RAM
136#endif
137
Achin Guptae9c4a642015-09-11 16:03:13 +0100138 /*
139 * Define a linker symbol to mark start of the RW memory area for this
140 * image.
141 */
142 __RW_START__ = . ;
143
Douglas Raillard306593d2017-02-24 18:14:15 +0000144 /*
145 * .data must be placed at a lower address than the stacks if the stack
146 * protector is enabled. Alternatively, the .data.stack_protector_canary
147 * section can be placed independently of the main .data section.
148 */
149 .data . : {
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000150 __DATA_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +0000151 *(.data*)
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000152 __DATA_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100153 } >RAM
154
Sandrine Bailleuxe2e0c652014-06-16 16:12:27 +0100155#ifdef BL31_PROGBITS_LIMIT
Juan Castillo7d199412015-12-14 09:35:25 +0000156 ASSERT(. <= BL31_PROGBITS_LIMIT, "BL31 progbits has exceeded its limit.")
Sandrine Bailleuxe2e0c652014-06-16 16:12:27 +0100157#endif
158
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000159 stacks (NOLOAD) : {
160 __STACKS_START__ = .;
161 *(tzfw_normal_stacks)
162 __STACKS_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100163 } >RAM
164
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000165 /*
166 * The .bss section gets initialised to 0 at runtime.
Douglas Raillard21362a92016-12-02 13:51:54 +0000167 * Its base address should be 16-byte aligned for better performance of the
168 * zero-initialization code.
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000169 */
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100170 .bss (NOLOAD) : ALIGN(16) {
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000171 __BSS_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +0000172 *(.bss*)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100173 *(COMMON)
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100174#if !USE_COHERENT_MEM
175 /*
176 * Bakery locks are stored in normal .bss memory
177 *
178 * Each lock's data is spread across multiple cache lines, one per CPU,
179 * but multiple locks can share the same cache line.
180 * The compiler will allocate enough memory for one CPU's bakery locks,
181 * the remaining cache lines are allocated by the linker script
182 */
183 . = ALIGN(CACHE_WRITEBACK_GRANULE);
184 __BAKERY_LOCK_START__ = .;
185 *(bakery_lock)
186 . = ALIGN(CACHE_WRITEBACK_GRANULE);
Vikram Kanigiri405fafe2015-09-24 15:45:43 +0100187 __PERCPU_BAKERY_LOCK_SIZE__ = ABSOLUTE(. - __BAKERY_LOCK_START__);
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100188 . = . + (__PERCPU_BAKERY_LOCK_SIZE__ * (PLATFORM_CORE_COUNT - 1));
189 __BAKERY_LOCK_END__ = .;
190#ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE
191 ASSERT(__PERCPU_BAKERY_LOCK_SIZE__ == PLAT_PERCPU_BAKERY_LOCK_SIZE,
192 "PLAT_PERCPU_BAKERY_LOCK_SIZE does not match bakery lock requirements");
193#endif
194#endif
Yatharth Kochar9518d022016-03-11 14:20:19 +0000195
196#if ENABLE_PMF
197 /*
198 * Time-stamps are stored in normal .bss memory
199 *
200 * The compiler will allocate enough memory for one CPU's time-stamps,
201 * the remaining memory for other CPU's is allocated by the
202 * linker script
203 */
204 . = ALIGN(CACHE_WRITEBACK_GRANULE);
205 __PMF_TIMESTAMP_START__ = .;
206 KEEP(*(pmf_timestamp_array))
207 . = ALIGN(CACHE_WRITEBACK_GRANULE);
208 __PMF_PERCPU_TIMESTAMP_END__ = .;
209 __PERCPU_TIMESTAMP_SIZE__ = ABSOLUTE(. - __PMF_TIMESTAMP_START__);
210 . = . + (__PERCPU_TIMESTAMP_SIZE__ * (PLATFORM_CORE_COUNT - 1));
211 __PMF_TIMESTAMP_END__ = .;
212#endif /* ENABLE_PMF */
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000213 __BSS_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100214 } >RAM
215
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000216 /*
Jeenu Viswambharan97cc9ee2014-02-24 15:20:28 +0000217 * The xlat_table section is for full, aligned page tables (4K).
Achin Guptaa0cd9892014-02-09 13:30:38 +0000218 * Removing them from .bss avoids forcing 4K alignment on
219 * the .bss section and eliminates the unecessary zero init
220 */
221 xlat_table (NOLOAD) : {
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100222#if ENABLE_SPM
223 __SP_IMAGE_XLAT_TABLES_START__ = .;
224 *secure_partition*.o(xlat_table)
225 /* Make sure that the rest of the page is empty. */
226 . = NEXT(4096);
227 __SP_IMAGE_XLAT_TABLES_END__ = .;
228#endif
Achin Guptaa0cd9892014-02-09 13:30:38 +0000229 *(xlat_table)
230 } >RAM
231
Soby Mathew2ae20432015-01-08 18:02:44 +0000232#if USE_COHERENT_MEM
Achin Guptaa0cd9892014-02-09 13:30:38 +0000233 /*
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000234 * The base address of the coherent memory section must be page-aligned (4K)
235 * to guarantee that the coherent data are stored on their own pages and
236 * are not mixed with normal data. This is required to set up the correct
237 * memory attributes for the coherent data page tables.
238 */
239 coherent_ram (NOLOAD) : ALIGN(4096) {
240 __COHERENT_RAM_START__ = .;
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100241 /*
242 * Bakery locks are stored in coherent memory
243 *
244 * Each lock's data is contiguous and fully allocated by the compiler
245 */
246 *(bakery_lock)
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000247 *(tzfw_coherent_mem)
248 __COHERENT_RAM_END_UNALIGNED__ = .;
249 /*
250 * Memory page(s) mapped to this section will be marked
251 * as device memory. No other unexpected data must creep in.
252 * Ensure the rest of the current memory page is unused.
253 */
254 . = NEXT(4096);
255 __COHERENT_RAM_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100256 } >RAM
Soby Mathew2ae20432015-01-08 18:02:44 +0000257#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100258
Achin Guptae9c4a642015-09-11 16:03:13 +0100259 /*
260 * Define a linker symbol to mark end of the RW memory area for this
261 * image.
262 */
263 __RW_END__ = .;
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000264 __BL31_END__ = .;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100265
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000266 __BSS_SIZE__ = SIZEOF(.bss);
Soby Mathew2ae20432015-01-08 18:02:44 +0000267#if USE_COHERENT_MEM
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000268 __COHERENT_RAM_UNALIGNED_SIZE__ =
269 __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
Soby Mathew2ae20432015-01-08 18:02:44 +0000270#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100271
Juan Castillo7d199412015-12-14 09:35:25 +0000272 ASSERT(. <= BL31_LIMIT, "BL31 image has exceeded its limit.")
Achin Gupta4f6ad662013-10-25 09:08:21 +0100273}