blob: af93a0ce9ff8b7dc31dd83f16ccff54f7a2646f9 [file] [log] [blame]
Roberto Vargase0e99462017-10-30 14:43:43 +00001/*
Antonio Nino Diaz7c2a3ca2018-02-23 15:07:54 +00002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Roberto Vargase0e99462017-10-30 14:43:43 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <platform_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
9#include <lib/xlat_tables/xlat_tables_defs.h>
Roberto Vargase0e99462017-10-30 14:43:43 +000010
11OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT)
12OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
13ENTRY(bl2_entrypoint)
14
15MEMORY {
Jiafei Pan43a7bf42018-03-21 07:20:09 +000016#if BL2_IN_XIP_MEM
17 ROM (rx): ORIGIN = BL2_RO_BASE, LENGTH = BL2_RO_LIMIT - BL2_RO_BASE
18 RAM (rwx): ORIGIN = BL2_RW_BASE, LENGTH = BL2_RW_LIMIT - BL2_RW_BASE
19#else
Roberto Vargase0e99462017-10-30 14:43:43 +000020 RAM (rwx): ORIGIN = BL2_BASE, LENGTH = BL2_LIMIT - BL2_BASE
Jiafei Pan43a7bf42018-03-21 07:20:09 +000021#endif
Roberto Vargase0e99462017-10-30 14:43:43 +000022}
23
24
25SECTIONS
26{
Jiafei Pan43a7bf42018-03-21 07:20:09 +000027#if BL2_IN_XIP_MEM
28 . = BL2_RO_BASE;
29 ASSERT(. == ALIGN(PAGE_SIZE),
30 "BL2_RO_BASE address is not aligned on a page boundary.")
31#else
Roberto Vargase0e99462017-10-30 14:43:43 +000032 . = BL2_BASE;
33 ASSERT(. == ALIGN(PAGE_SIZE),
34 "BL2_BASE address is not aligned on a page boundary.")
Jiafei Pan43a7bf42018-03-21 07:20:09 +000035#endif
Roberto Vargase0e99462017-10-30 14:43:43 +000036
37#if SEPARATE_CODE_AND_RODATA
38 .text . : {
39 __TEXT_START__ = .;
Roberto Vargas51abc342017-11-17 10:51:54 +000040 __TEXT_RESIDENT_START__ = .;
41 *bl2_el3_entrypoint.o(.text*)
42 *(.text.asm.*)
43 __TEXT_RESIDENT_END__ = .;
Roberto Vargase0e99462017-10-30 14:43:43 +000044 *(.text*)
45 *(.vectors)
Roberto Vargasd93fde32018-04-11 11:53:31 +010046 . = ALIGN(PAGE_SIZE);
Roberto Vargase0e99462017-10-30 14:43:43 +000047 __TEXT_END__ = .;
Jiafei Pan43a7bf42018-03-21 07:20:09 +000048#if BL2_IN_XIP_MEM
49 } >ROM
50#else
Roberto Vargase0e99462017-10-30 14:43:43 +000051 } >RAM
Jiafei Pan43a7bf42018-03-21 07:20:09 +000052#endif
Roberto Vargase0e99462017-10-30 14:43:43 +000053
54 .rodata . : {
55 __RODATA_START__ = .;
56 *(.rodata*)
57
58 /* Ensure 8-byte alignment for descriptors and ensure inclusion */
59 . = ALIGN(8);
60 __PARSER_LIB_DESCS_START__ = .;
61 KEEP(*(.img_parser_lib_descs))
62 __PARSER_LIB_DESCS_END__ = .;
63
64 /*
65 * Ensure 8-byte alignment for cpu_ops so that its fields are also
66 * aligned. Also ensure cpu_ops inclusion.
67 */
68 . = ALIGN(8);
69 __CPU_OPS_START__ = .;
70 KEEP(*(cpu_ops))
71 __CPU_OPS_END__ = .;
72
Roberto Vargasd93fde32018-04-11 11:53:31 +010073 . = ALIGN(PAGE_SIZE);
Roberto Vargase0e99462017-10-30 14:43:43 +000074 __RODATA_END__ = .;
Jiafei Pan43a7bf42018-03-21 07:20:09 +000075#if BL2_IN_XIP_MEM
76 } >ROM
77#else
Roberto Vargase0e99462017-10-30 14:43:43 +000078 } >RAM
Jiafei Pan43a7bf42018-03-21 07:20:09 +000079#endif
Roberto Vargas51abc342017-11-17 10:51:54 +000080
81 ASSERT(__TEXT_RESIDENT_END__ - __TEXT_RESIDENT_START__ <= PAGE_SIZE,
82 "Resident part of BL2 has exceeded its limit.")
Roberto Vargase0e99462017-10-30 14:43:43 +000083#else
84 ro . : {
85 __RO_START__ = .;
Roberto Vargas51abc342017-11-17 10:51:54 +000086 __TEXT_RESIDENT_START__ = .;
87 *bl2_el3_entrypoint.o(.text*)
88 *(.text.asm.*)
89 __TEXT_RESIDENT_END__ = .;
Roberto Vargase0e99462017-10-30 14:43:43 +000090 *(.text*)
91 *(.rodata*)
92
93 /*
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
102 /* Ensure 8-byte alignment for descriptors and ensure inclusion */
103 . = ALIGN(8);
104 __PARSER_LIB_DESCS_START__ = .;
105 KEEP(*(.img_parser_lib_descs))
106 __PARSER_LIB_DESCS_END__ = .;
107
108 *(.vectors)
109 __RO_END_UNALIGNED__ = .;
110 /*
111 * Memory page(s) mapped to this section will be marked as
112 * read-only, executable. No RW data from the next section must
113 * creep in. Ensure the rest of the current memory page is unused.
114 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100115 . = ALIGN(PAGE_SIZE);
Roberto Vargase0e99462017-10-30 14:43:43 +0000116
117 __RO_END__ = .;
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000118#if BL2_IN_XIP_MEM
119 } >ROM
120#else
Roberto Vargase0e99462017-10-30 14:43:43 +0000121 } >RAM
122#endif
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000123#endif
Roberto Vargase0e99462017-10-30 14:43:43 +0000124
125 ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__,
126 "cpu_ops not defined for this platform.")
127
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000128#if BL2_IN_XIP_MEM
129 . = BL2_RW_BASE;
130 ASSERT(BL2_RW_BASE == ALIGN(PAGE_SIZE),
131 "BL2_RW_BASE address is not aligned on a page boundary.")
132#endif
133
Roberto Vargase0e99462017-10-30 14:43:43 +0000134 /*
135 * Define a linker symbol to mark start of the RW memory area for this
136 * image.
137 */
138 __RW_START__ = . ;
139
140 /*
141 * .data must be placed at a lower address than the stacks if the stack
142 * protector is enabled. Alternatively, the .data.stack_protector_canary
143 * section can be placed independently of the main .data section.
144 */
145 .data . : {
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000146 __DATA_RAM_START__ = .;
Roberto Vargase0e99462017-10-30 14:43:43 +0000147 *(.data*)
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000148 __DATA_RAM_END__ = .;
149#if BL2_IN_XIP_MEM
150 } >RAM AT>ROM
151#else
Roberto Vargase0e99462017-10-30 14:43:43 +0000152 } >RAM
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000153#endif
Roberto Vargase0e99462017-10-30 14:43:43 +0000154
155 stacks (NOLOAD) : {
156 __STACKS_START__ = .;
157 *(tzfw_normal_stacks)
158 __STACKS_END__ = .;
159 } >RAM
160
161 /*
162 * The .bss section gets initialised to 0 at runtime.
163 * Its base address should be 16-byte aligned for better performance of the
164 * zero-initialization code.
165 */
166 .bss : ALIGN(16) {
167 __BSS_START__ = .;
168 *(SORT_BY_ALIGNMENT(.bss*))
169 *(COMMON)
170 __BSS_END__ = .;
171 } >RAM
172
173 /*
174 * The xlat_table section is for full, aligned page tables (4K).
175 * Removing them from .bss avoids forcing 4K alignment on
Antonio Nino Diaz7c2a3ca2018-02-23 15:07:54 +0000176 * the .bss section. The tables are initialized to zero by the translation
177 * tables library.
Roberto Vargase0e99462017-10-30 14:43:43 +0000178 */
179 xlat_table (NOLOAD) : {
180 *(xlat_table)
181 } >RAM
182
183#if USE_COHERENT_MEM
184 /*
185 * The base address of the coherent memory section must be page-aligned (4K)
186 * to guarantee that the coherent data are stored on their own pages and
187 * are not mixed with normal data. This is required to set up the correct
188 * memory attributes for the coherent data page tables.
189 */
190 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
191 __COHERENT_RAM_START__ = .;
192 *(tzfw_coherent_mem)
193 __COHERENT_RAM_END_UNALIGNED__ = .;
194 /*
195 * Memory page(s) mapped to this section will be marked
196 * as device memory. No other unexpected data must creep in.
197 * Ensure the rest of the current memory page is unused.
198 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100199 . = ALIGN(PAGE_SIZE);
Roberto Vargase0e99462017-10-30 14:43:43 +0000200 __COHERENT_RAM_END__ = .;
201 } >RAM
202#endif
203
204 /*
205 * Define a linker symbol to mark end of the RW memory area for this
206 * image.
207 */
208 __RW_END__ = .;
209 __BL2_END__ = .;
210
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000211#if BL2_IN_XIP_MEM
212 __BL2_RAM_START__ = ADDR(.data);
213 __BL2_RAM_END__ = .;
214
215 __DATA_ROM_START__ = LOADADDR(.data);
216 __DATA_SIZE__ = SIZEOF(.data);
217
218 /*
219 * The .data section is the last PROGBITS section so its end marks the end
220 * of BL2's RO content in XIP memory..
221 */
222 __BL2_ROM_END__ = __DATA_ROM_START__ + __DATA_SIZE__;
223 ASSERT(__BL2_ROM_END__ <= BL2_RO_LIMIT,
224 "BL2's RO content has exceeded its limit.")
225#endif
Roberto Vargase0e99462017-10-30 14:43:43 +0000226 __BSS_SIZE__ = SIZEOF(.bss);
227
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000228
Roberto Vargase0e99462017-10-30 14:43:43 +0000229#if USE_COHERENT_MEM
230 __COHERENT_RAM_UNALIGNED_SIZE__ =
231 __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
232#endif
233
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000234#if BL2_IN_XIP_MEM
235 ASSERT(. <= BL2_RW_LIMIT, "BL2's RW content has exceeded its limit.")
236#else
Roberto Vargase0e99462017-10-30 14:43:43 +0000237 ASSERT(. <= BL2_LIMIT, "BL2 image has exceeded its limit.")
Jiafei Pan43a7bf42018-03-21 07:20:09 +0000238#endif
Roberto Vargase0e99462017-10-30 14:43:43 +0000239}