blob: 4559903bf829ef0b29b9b45cae2ffeff74cc59f4 [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
58 /*
59 * Ensure 4-byte alignment for cpu_ops so that its fields are also
60 * aligned. Also ensure cpu_ops inclusion.
61 */
62 . = ALIGN(4);
63 __CPU_OPS_START__ = .;
64 KEEP(*(cpu_ops))
65 __CPU_OPS_END__ = .;
66
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010067 /* Place pubsub sections for events */
68 . = ALIGN(8);
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000069#include <lib/el3_runtime/pubsub_events.h>
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010070
Roberto Vargasd93fde32018-04-11 11:53:31 +010071 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +010072 __RODATA_END__ = .;
73 } >RAM
74#else
75 ro . : {
76 __RO_START__ = .;
77 *entrypoint.o(.text*)
78 *(.text*)
79 *(.rodata*)
80
81 /* Ensure 4-byte alignment for descriptors and ensure inclusion */
82 . = ALIGN(4);
83 __RT_SVC_DESCS_START__ = .;
84 KEEP(*(rt_svc_descs))
85 __RT_SVC_DESCS_END__ = .;
86
87 /*
88 * Ensure 4-byte alignment for cpu_ops so that its fields are also
89 * aligned. Also ensure cpu_ops inclusion.
90 */
91 . = ALIGN(4);
92 __CPU_OPS_START__ = .;
93 KEEP(*(cpu_ops))
94 __CPU_OPS_END__ = .;
95
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010096 /* Place pubsub sections for events */
97 . = ALIGN(8);
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000098#include <lib/el3_runtime/pubsub_events.h>
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010099
Yatharth Kochar06460cd2016-06-30 15:02:31 +0100100 *(.vectors)
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100101 __RO_END_UNALIGNED__ = .;
102
103 /*
104 * Memory page(s) mapped to this section will be marked as
105 * read-only, executable. No RW data from the next section must
106 * creep in. Ensure the rest of the current memory block is unused.
107 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100108 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100109 __RO_END__ = .;
110 } >RAM
111#endif
112
113 ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__,
114 "cpu_ops not defined for this platform.")
115 /*
116 * Define a linker symbol to mark start of the RW memory area for this
117 * image.
118 */
119 __RW_START__ = . ;
120
121 .data . : {
122 __DATA_START__ = .;
123 *(.data*)
124 __DATA_END__ = .;
125 } >RAM
126
Soby Mathewbf169232017-11-14 14:10:10 +0000127#ifdef BL32_PROGBITS_LIMIT
128 ASSERT(. <= BL32_PROGBITS_LIMIT, "BL32 progbits has exceeded its limit.")
129#endif
130
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100131 stacks (NOLOAD) : {
132 __STACKS_START__ = .;
133 *(tzfw_normal_stacks)
134 __STACKS_END__ = .;
135 } >RAM
136
137 /*
138 * The .bss section gets initialised to 0 at runtime.
Douglas Raillard21362a92016-12-02 13:51:54 +0000139 * Its base address should be 8-byte aligned for better performance of the
140 * zero-initialization code.
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100141 */
Douglas Raillard21362a92016-12-02 13:51:54 +0000142 .bss (NOLOAD) : ALIGN(8) {
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100143 __BSS_START__ = .;
144 *(.bss*)
145 *(COMMON)
146#if !USE_COHERENT_MEM
147 /*
148 * Bakery locks are stored in normal .bss memory
149 *
150 * Each lock's data is spread across multiple cache lines, one per CPU,
151 * but multiple locks can share the same cache line.
152 * The compiler will allocate enough memory for one CPU's bakery locks,
153 * the remaining cache lines are allocated by the linker script
154 */
155 . = ALIGN(CACHE_WRITEBACK_GRANULE);
156 __BAKERY_LOCK_START__ = .;
Varun Wadekar77c382c2019-01-30 08:26:20 -0800157 __PERCPU_BAKERY_LOCK_START__ = .;
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100158 *(bakery_lock)
159 . = ALIGN(CACHE_WRITEBACK_GRANULE);
Varun Wadekar77c382c2019-01-30 08:26:20 -0800160 __PERCPU_BAKERY_LOCK_END__ = .;
161 __PERCPU_BAKERY_LOCK_SIZE__ = ABSOLUTE(__PERCPU_BAKERY_LOCK_END__ - __PERCPU_BAKERY_LOCK_START__);
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100162 . = . + (__PERCPU_BAKERY_LOCK_SIZE__ * (PLATFORM_CORE_COUNT - 1));
163 __BAKERY_LOCK_END__ = .;
164#ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE
165 ASSERT(__PERCPU_BAKERY_LOCK_SIZE__ == PLAT_PERCPU_BAKERY_LOCK_SIZE,
166 "PLAT_PERCPU_BAKERY_LOCK_SIZE does not match bakery lock requirements");
167#endif
168#endif
169
170#if ENABLE_PMF
171 /*
172 * Time-stamps are stored in normal .bss memory
173 *
174 * The compiler will allocate enough memory for one CPU's time-stamps,
Paul Beesley1fbc97b2019-01-11 18:26:51 +0000175 * the remaining memory for other CPUs is allocated by the
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100176 * linker script
177 */
178 . = ALIGN(CACHE_WRITEBACK_GRANULE);
179 __PMF_TIMESTAMP_START__ = .;
180 KEEP(*(pmf_timestamp_array))
181 . = ALIGN(CACHE_WRITEBACK_GRANULE);
182 __PMF_PERCPU_TIMESTAMP_END__ = .;
183 __PERCPU_TIMESTAMP_SIZE__ = ABSOLUTE(. - __PMF_TIMESTAMP_START__);
184 . = . + (__PERCPU_TIMESTAMP_SIZE__ * (PLATFORM_CORE_COUNT - 1));
185 __PMF_TIMESTAMP_END__ = .;
186#endif /* ENABLE_PMF */
187
188 __BSS_END__ = .;
189 } >RAM
190
191 /*
192 * The xlat_table section is for full, aligned page tables (4K).
193 * Removing them from .bss avoids forcing 4K alignment on
Antonio Nino Diaz7c2a3ca2018-02-23 15:07:54 +0000194 * the .bss section. The tables are initialized to zero by the translation
195 * tables library.
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100196 */
197 xlat_table (NOLOAD) : {
198 *(xlat_table)
199 } >RAM
200
201 __BSS_SIZE__ = SIZEOF(.bss);
202
203#if USE_COHERENT_MEM
204 /*
205 * The base address of the coherent memory section must be page-aligned (4K)
206 * to guarantee that the coherent data are stored on their own pages and
207 * are not mixed with normal data. This is required to set up the correct
208 * memory attributes for the coherent data page tables.
209 */
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +0000210 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100211 __COHERENT_RAM_START__ = .;
212 /*
213 * Bakery locks are stored in coherent memory
214 *
215 * Each lock's data is contiguous and fully allocated by the compiler
216 */
217 *(bakery_lock)
218 *(tzfw_coherent_mem)
219 __COHERENT_RAM_END_UNALIGNED__ = .;
220 /*
221 * Memory page(s) mapped to this section will be marked
222 * as device memory. No other unexpected data must creep in.
223 * Ensure the rest of the current memory page is unused.
224 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100225 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100226 __COHERENT_RAM_END__ = .;
227 } >RAM
228
229 __COHERENT_RAM_UNALIGNED_SIZE__ =
230 __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
231#endif
232
233 /*
234 * Define a linker symbol to mark end of the RW memory area for this
235 * image.
236 */
237 __RW_END__ = .;
238
239 __BL32_END__ = .;
240}