blob: 6997a7fdbd6678b6600c461be58376f344268407 [file] [log] [blame]
Soby Mathewec8ac1c2016-05-05 14:32:05 +01001/*
Paul Beesley1fbc97b2019-01-11 18:26:51 +00002 * Copyright (c) 2016-2019, ARM Limited and Contributors. All rights reserved.
Soby Mathewec8ac1c2016-05-05 14:32:05 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathewec8ac1c2016-05-05 14:32:05 +01005 */
6
7#include <platform_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
9#include <lib/xlat_tables/xlat_tables_defs.h>
Soby Mathewec8ac1c2016-05-05 14:32:05 +010010
11OUTPUT_FORMAT(elf32-littlearm)
12OUTPUT_ARCH(arm)
13ENTRY(sp_min_vector_table)
14
15MEMORY {
16 RAM (rwx): ORIGIN = BL32_BASE, LENGTH = BL32_LIMIT - BL32_BASE
17}
18
Heiko Stuebner95ba3552019-04-11 15:26:07 +020019#ifdef PLAT_SP_MIN_EXTRA_LD_SCRIPT
20#include <plat_sp_min.ld.S>
21#endif
Soby Mathewec8ac1c2016-05-05 14:32:05 +010022
23SECTIONS
24{
25 . = BL32_BASE;
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +000026 ASSERT(. == ALIGN(PAGE_SIZE),
Soby Mathewec8ac1c2016-05-05 14:32:05 +010027 "BL32_BASE address is not aligned on a page boundary.")
28
29#if SEPARATE_CODE_AND_RODATA
30 .text . : {
31 __TEXT_START__ = .;
32 *entrypoint.o(.text*)
33 *(.text*)
Yatharth Kochar06460cd2016-06-30 15:02:31 +010034 *(.vectors)
Roberto Vargasd93fde32018-04-11 11:53:31 +010035 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +010036 __TEXT_END__ = .;
37 } >RAM
38
Roberto Vargas1d04c632018-05-10 11:01:16 +010039 /* .ARM.extab and .ARM.exidx are only added because Clang need them */
40 .ARM.extab . : {
41 *(.ARM.extab* .gnu.linkonce.armextab.*)
42 } >RAM
43
44 .ARM.exidx . : {
45 *(.ARM.exidx* .gnu.linkonce.armexidx.*)
46 } >RAM
47
Soby Mathewec8ac1c2016-05-05 14:32:05 +010048 .rodata . : {
49 __RODATA_START__ = .;
50 *(.rodata*)
51
52 /* Ensure 4-byte alignment for descriptors and ensure inclusion */
53 . = ALIGN(4);
54 __RT_SVC_DESCS_START__ = .;
55 KEEP(*(rt_svc_descs))
56 __RT_SVC_DESCS_END__ = .;
57
Bence Szépkúti78dc10c2019-11-07 12:09:24 +010058#if ENABLE_PMF
59 /* Ensure 4-byte alignment for descriptors and ensure inclusion */
60 . = ALIGN(4);
61 __PMF_SVC_DESCS_START__ = .;
62 KEEP(*(pmf_svc_descs))
63 __PMF_SVC_DESCS_END__ = .;
64#endif /* ENABLE_PMF */
65
Soby Mathewec8ac1c2016-05-05 14:32:05 +010066 /*
67 * Ensure 4-byte alignment for cpu_ops so that its fields are also
68 * aligned. Also ensure cpu_ops inclusion.
69 */
70 . = ALIGN(4);
71 __CPU_OPS_START__ = .;
72 KEEP(*(cpu_ops))
73 __CPU_OPS_END__ = .;
74
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010075 /* Place pubsub sections for events */
76 . = ALIGN(8);
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000077#include <lib/el3_runtime/pubsub_events.h>
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010078
Roberto Vargasd93fde32018-04-11 11:53:31 +010079 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +010080 __RODATA_END__ = .;
81 } >RAM
82#else
83 ro . : {
84 __RO_START__ = .;
85 *entrypoint.o(.text*)
86 *(.text*)
87 *(.rodata*)
88
89 /* Ensure 4-byte alignment for descriptors and ensure inclusion */
90 . = ALIGN(4);
91 __RT_SVC_DESCS_START__ = .;
92 KEEP(*(rt_svc_descs))
93 __RT_SVC_DESCS_END__ = .;
94
95 /*
96 * Ensure 4-byte alignment for cpu_ops so that its fields are also
97 * aligned. Also ensure cpu_ops inclusion.
98 */
99 . = ALIGN(4);
100 __CPU_OPS_START__ = .;
101 KEEP(*(cpu_ops))
102 __CPU_OPS_END__ = .;
103
Jeenu Viswambharane3f22002017-09-22 08:32:10 +0100104 /* Place pubsub sections for events */
105 . = ALIGN(8);
Antonio Nino Diaze0f90632018-12-14 00:18:21 +0000106#include <lib/el3_runtime/pubsub_events.h>
Jeenu Viswambharane3f22002017-09-22 08:32:10 +0100107
Yatharth Kochar06460cd2016-06-30 15:02:31 +0100108 *(.vectors)
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100109 __RO_END_UNALIGNED__ = .;
110
111 /*
112 * Memory page(s) mapped to this section will be marked as
113 * read-only, executable. No RW data from the next section must
114 * creep in. Ensure the rest of the current memory block is unused.
115 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100116 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100117 __RO_END__ = .;
118 } >RAM
119#endif
120
121 ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__,
122 "cpu_ops not defined for this platform.")
123 /*
124 * Define a linker symbol to mark start of the RW memory area for this
125 * image.
126 */
127 __RW_START__ = . ;
128
129 .data . : {
130 __DATA_START__ = .;
131 *(.data*)
132 __DATA_END__ = .;
133 } >RAM
134
Soby Mathewbf169232017-11-14 14:10:10 +0000135#ifdef BL32_PROGBITS_LIMIT
136 ASSERT(. <= BL32_PROGBITS_LIMIT, "BL32 progbits has exceeded its limit.")
137#endif
138
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100139 stacks (NOLOAD) : {
140 __STACKS_START__ = .;
141 *(tzfw_normal_stacks)
142 __STACKS_END__ = .;
143 } >RAM
144
145 /*
146 * The .bss section gets initialised to 0 at runtime.
Douglas Raillard21362a92016-12-02 13:51:54 +0000147 * Its base address should be 8-byte aligned for better performance of the
148 * zero-initialization code.
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100149 */
Douglas Raillard21362a92016-12-02 13:51:54 +0000150 .bss (NOLOAD) : ALIGN(8) {
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100151 __BSS_START__ = .;
152 *(.bss*)
153 *(COMMON)
154#if !USE_COHERENT_MEM
155 /*
156 * Bakery locks are stored in normal .bss memory
157 *
158 * Each lock's data is spread across multiple cache lines, one per CPU,
159 * but multiple locks can share the same cache line.
160 * The compiler will allocate enough memory for one CPU's bakery locks,
161 * the remaining cache lines are allocated by the linker script
162 */
163 . = ALIGN(CACHE_WRITEBACK_GRANULE);
164 __BAKERY_LOCK_START__ = .;
Varun Wadekar77c382c2019-01-30 08:26:20 -0800165 __PERCPU_BAKERY_LOCK_START__ = .;
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100166 *(bakery_lock)
167 . = ALIGN(CACHE_WRITEBACK_GRANULE);
Varun Wadekar77c382c2019-01-30 08:26:20 -0800168 __PERCPU_BAKERY_LOCK_END__ = .;
169 __PERCPU_BAKERY_LOCK_SIZE__ = ABSOLUTE(__PERCPU_BAKERY_LOCK_END__ - __PERCPU_BAKERY_LOCK_START__);
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100170 . = . + (__PERCPU_BAKERY_LOCK_SIZE__ * (PLATFORM_CORE_COUNT - 1));
171 __BAKERY_LOCK_END__ = .;
172#ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE
173 ASSERT(__PERCPU_BAKERY_LOCK_SIZE__ == PLAT_PERCPU_BAKERY_LOCK_SIZE,
174 "PLAT_PERCPU_BAKERY_LOCK_SIZE does not match bakery lock requirements");
175#endif
176#endif
177
178#if ENABLE_PMF
179 /*
180 * Time-stamps are stored in normal .bss memory
181 *
182 * The compiler will allocate enough memory for one CPU's time-stamps,
Paul Beesley1fbc97b2019-01-11 18:26:51 +0000183 * the remaining memory for other CPUs is allocated by the
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100184 * linker script
185 */
186 . = ALIGN(CACHE_WRITEBACK_GRANULE);
187 __PMF_TIMESTAMP_START__ = .;
188 KEEP(*(pmf_timestamp_array))
189 . = ALIGN(CACHE_WRITEBACK_GRANULE);
190 __PMF_PERCPU_TIMESTAMP_END__ = .;
191 __PERCPU_TIMESTAMP_SIZE__ = ABSOLUTE(. - __PMF_TIMESTAMP_START__);
192 . = . + (__PERCPU_TIMESTAMP_SIZE__ * (PLATFORM_CORE_COUNT - 1));
193 __PMF_TIMESTAMP_END__ = .;
194#endif /* ENABLE_PMF */
195
196 __BSS_END__ = .;
197 } >RAM
198
199 /*
200 * The xlat_table section is for full, aligned page tables (4K).
201 * Removing them from .bss avoids forcing 4K alignment on
Antonio Nino Diaz7c2a3ca2018-02-23 15:07:54 +0000202 * the .bss section. The tables are initialized to zero by the translation
203 * tables library.
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100204 */
205 xlat_table (NOLOAD) : {
206 *(xlat_table)
207 } >RAM
208
209 __BSS_SIZE__ = SIZEOF(.bss);
210
211#if USE_COHERENT_MEM
212 /*
213 * The base address of the coherent memory section must be page-aligned (4K)
214 * to guarantee that the coherent data are stored on their own pages and
215 * are not mixed with normal data. This is required to set up the correct
216 * memory attributes for the coherent data page tables.
217 */
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +0000218 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100219 __COHERENT_RAM_START__ = .;
220 /*
221 * Bakery locks are stored in coherent memory
222 *
223 * Each lock's data is contiguous and fully allocated by the compiler
224 */
225 *(bakery_lock)
226 *(tzfw_coherent_mem)
227 __COHERENT_RAM_END_UNALIGNED__ = .;
228 /*
229 * Memory page(s) mapped to this section will be marked
230 * as device memory. No other unexpected data must creep in.
231 * Ensure the rest of the current memory page is unused.
232 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100233 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100234 __COHERENT_RAM_END__ = .;
235 } >RAM
236
237 __COHERENT_RAM_UNALIGNED_SIZE__ =
238 __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
239#endif
240
241 /*
242 * Define a linker symbol to mark end of the RW memory area for this
243 * image.
244 */
245 __RW_END__ = .;
246
247 __BL32_END__ = .;
248}