blob: f1d4d0b3f82add8e5124f450679889e68752b082 [file] [log] [blame]
Soby Mathewec8ac1c2016-05-05 14:32:05 +01001/*
Douglas Raillard21362a92016-12-02 13:51:54 +00002 * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
Soby Mathewec8ac1c2016-05-05 14:32:05 +01003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#include <platform_def.h>
32
33OUTPUT_FORMAT(elf32-littlearm)
34OUTPUT_ARCH(arm)
35ENTRY(sp_min_vector_table)
36
37MEMORY {
38 RAM (rwx): ORIGIN = BL32_BASE, LENGTH = BL32_LIMIT - BL32_BASE
39}
40
41
42SECTIONS
43{
44 . = BL32_BASE;
45 ASSERT(. == ALIGN(4096),
46 "BL32_BASE address is not aligned on a page boundary.")
47
48#if SEPARATE_CODE_AND_RODATA
49 .text . : {
50 __TEXT_START__ = .;
51 *entrypoint.o(.text*)
52 *(.text*)
Yatharth Kochar06460cd2016-06-30 15:02:31 +010053 *(.vectors)
Soby Mathewec8ac1c2016-05-05 14:32:05 +010054 . = NEXT(4096);
55 __TEXT_END__ = .;
56 } >RAM
57
58 .rodata . : {
59 __RODATA_START__ = .;
60 *(.rodata*)
61
62 /* Ensure 4-byte alignment for descriptors and ensure inclusion */
63 . = ALIGN(4);
64 __RT_SVC_DESCS_START__ = .;
65 KEEP(*(rt_svc_descs))
66 __RT_SVC_DESCS_END__ = .;
67
68 /*
69 * Ensure 4-byte alignment for cpu_ops so that its fields are also
70 * aligned. Also ensure cpu_ops inclusion.
71 */
72 . = ALIGN(4);
73 __CPU_OPS_START__ = .;
74 KEEP(*(cpu_ops))
75 __CPU_OPS_END__ = .;
76
77 . = NEXT(4096);
78 __RODATA_END__ = .;
79 } >RAM
80#else
81 ro . : {
82 __RO_START__ = .;
83 *entrypoint.o(.text*)
84 *(.text*)
85 *(.rodata*)
86
87 /* Ensure 4-byte alignment for descriptors and ensure inclusion */
88 . = ALIGN(4);
89 __RT_SVC_DESCS_START__ = .;
90 KEEP(*(rt_svc_descs))
91 __RT_SVC_DESCS_END__ = .;
92
93 /*
94 * Ensure 4-byte alignment for cpu_ops so that its fields are also
95 * aligned. Also ensure cpu_ops inclusion.
96 */
97 . = ALIGN(4);
98 __CPU_OPS_START__ = .;
99 KEEP(*(cpu_ops))
100 __CPU_OPS_END__ = .;
101
Yatharth Kochar06460cd2016-06-30 15:02:31 +0100102 *(.vectors)
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100103 __RO_END_UNALIGNED__ = .;
104
105 /*
106 * Memory page(s) mapped to this section will be marked as
107 * read-only, executable. No RW data from the next section must
108 * creep in. Ensure the rest of the current memory block is unused.
109 */
110 . = NEXT(4096);
111 __RO_END__ = .;
112 } >RAM
113#endif
114
115 ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__,
116 "cpu_ops not defined for this platform.")
117 /*
118 * Define a linker symbol to mark start of the RW memory area for this
119 * image.
120 */
121 __RW_START__ = . ;
122
123 .data . : {
124 __DATA_START__ = .;
125 *(.data*)
126 __DATA_END__ = .;
127 } >RAM
128
129 stacks (NOLOAD) : {
130 __STACKS_START__ = .;
131 *(tzfw_normal_stacks)
132 __STACKS_END__ = .;
133 } >RAM
134
135 /*
136 * The .bss section gets initialised to 0 at runtime.
Douglas Raillard21362a92016-12-02 13:51:54 +0000137 * Its base address should be 8-byte aligned for better performance of the
138 * zero-initialization code.
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100139 */
Douglas Raillard21362a92016-12-02 13:51:54 +0000140 .bss (NOLOAD) : ALIGN(8) {
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100141 __BSS_START__ = .;
142 *(.bss*)
143 *(COMMON)
144#if !USE_COHERENT_MEM
145 /*
146 * Bakery locks are stored in normal .bss memory
147 *
148 * Each lock's data is spread across multiple cache lines, one per CPU,
149 * but multiple locks can share the same cache line.
150 * The compiler will allocate enough memory for one CPU's bakery locks,
151 * the remaining cache lines are allocated by the linker script
152 */
153 . = ALIGN(CACHE_WRITEBACK_GRANULE);
154 __BAKERY_LOCK_START__ = .;
155 *(bakery_lock)
156 . = ALIGN(CACHE_WRITEBACK_GRANULE);
157 __PERCPU_BAKERY_LOCK_SIZE__ = ABSOLUTE(. - __BAKERY_LOCK_START__);
158 . = . + (__PERCPU_BAKERY_LOCK_SIZE__ * (PLATFORM_CORE_COUNT - 1));
159 __BAKERY_LOCK_END__ = .;
160#ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE
161 ASSERT(__PERCPU_BAKERY_LOCK_SIZE__ == PLAT_PERCPU_BAKERY_LOCK_SIZE,
162 "PLAT_PERCPU_BAKERY_LOCK_SIZE does not match bakery lock requirements");
163#endif
164#endif
165
166#if ENABLE_PMF
167 /*
168 * Time-stamps are stored in normal .bss memory
169 *
170 * The compiler will allocate enough memory for one CPU's time-stamps,
171 * the remaining memory for other CPU's is allocated by the
172 * linker script
173 */
174 . = ALIGN(CACHE_WRITEBACK_GRANULE);
175 __PMF_TIMESTAMP_START__ = .;
176 KEEP(*(pmf_timestamp_array))
177 . = ALIGN(CACHE_WRITEBACK_GRANULE);
178 __PMF_PERCPU_TIMESTAMP_END__ = .;
179 __PERCPU_TIMESTAMP_SIZE__ = ABSOLUTE(. - __PMF_TIMESTAMP_START__);
180 . = . + (__PERCPU_TIMESTAMP_SIZE__ * (PLATFORM_CORE_COUNT - 1));
181 __PMF_TIMESTAMP_END__ = .;
182#endif /* ENABLE_PMF */
183
184 __BSS_END__ = .;
185 } >RAM
186
187 /*
188 * The xlat_table section is for full, aligned page tables (4K).
189 * Removing them from .bss avoids forcing 4K alignment on
190 * the .bss section and eliminates the unecessary zero init
191 */
192 xlat_table (NOLOAD) : {
193 *(xlat_table)
194 } >RAM
195
196 __BSS_SIZE__ = SIZEOF(.bss);
197
198#if USE_COHERENT_MEM
199 /*
200 * The base address of the coherent memory section must be page-aligned (4K)
201 * to guarantee that the coherent data are stored on their own pages and
202 * are not mixed with normal data. This is required to set up the correct
203 * memory attributes for the coherent data page tables.
204 */
205 coherent_ram (NOLOAD) : ALIGN(4096) {
206 __COHERENT_RAM_START__ = .;
207 /*
208 * Bakery locks are stored in coherent memory
209 *
210 * Each lock's data is contiguous and fully allocated by the compiler
211 */
212 *(bakery_lock)
213 *(tzfw_coherent_mem)
214 __COHERENT_RAM_END_UNALIGNED__ = .;
215 /*
216 * Memory page(s) mapped to this section will be marked
217 * as device memory. No other unexpected data must creep in.
218 * Ensure the rest of the current memory page is unused.
219 */
220 . = NEXT(4096);
221 __COHERENT_RAM_END__ = .;
222 } >RAM
223
224 __COHERENT_RAM_UNALIGNED_SIZE__ =
225 __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
226#endif
227
228 /*
229 * Define a linker symbol to mark end of the RW memory area for this
230 * image.
231 */
232 __RW_END__ = .;
233
234 __BL32_END__ = .;
235}