blob: 37e658ad346db76a02cb7e92234bda849b90e704 [file] [log] [blame]
Yatharth Kochar9003fa02015-10-14 15:27:24 +01001/*
Masahiro Yamada665e71b82020-03-09 17:39:48 +09002 * Copyright (c) 2015-2020, ARM Limited and Contributors. All rights reserved.
Yatharth Kochar9003fa02015-10-14 15:27:24 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kochar9003fa02015-10-14 15:27:24 +01005 */
6
7#include <platform_def.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +00008
Masahiro Yamada665e71b82020-03-09 17:39:48 +09009#include <common/bl_common.ld.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000010#include <lib/xlat_tables/xlat_tables_defs.h>
Yatharth Kochar9003fa02015-10-14 15:27:24 +010011
12OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT)
13OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
14ENTRY(bl2u_entrypoint)
15
16MEMORY {
17 RAM (rwx): ORIGIN = BL2U_BASE, LENGTH = BL2U_LIMIT - BL2U_BASE
18}
19
20
21SECTIONS
22{
23 . = BL2U_BASE;
Antonio Nino Diaza2aedac2017-11-15 11:45:35 +000024 ASSERT(. == ALIGN(PAGE_SIZE),
Yatharth Kochar9003fa02015-10-14 15:27:24 +010025 "BL2U_BASE address is not aligned on a page boundary.")
26
Sandrine Bailleux5d1c1042016-07-08 14:37:40 +010027#if SEPARATE_CODE_AND_RODATA
28 .text . : {
29 __TEXT_START__ = .;
30 *bl2u_entrypoint.o(.text*)
Samuel Hollandebd6efa2019-10-20 16:11:25 -050031 *(SORT_BY_ALIGNMENT(.text*))
Sandrine Bailleux5d1c1042016-07-08 14:37:40 +010032 *(.vectors)
Roberto Vargas5629b2b2018-04-11 11:53:31 +010033 . = ALIGN(PAGE_SIZE);
Sandrine Bailleux5d1c1042016-07-08 14:37:40 +010034 __TEXT_END__ = .;
35 } >RAM
36
Roberto Vargasad925092018-05-10 11:01:16 +010037 /* .ARM.extab and .ARM.exidx are only added because Clang need them */
38 .ARM.extab . : {
39 *(.ARM.extab* .gnu.linkonce.armextab.*)
40 } >RAM
41
42 .ARM.exidx . : {
43 *(.ARM.exidx* .gnu.linkonce.armexidx.*)
44 } >RAM
45
Sandrine Bailleux5d1c1042016-07-08 14:37:40 +010046 .rodata . : {
47 __RODATA_START__ = .;
Samuel Hollandebd6efa2019-10-20 16:11:25 -050048 *(SORT_BY_ALIGNMENT(.rodata*))
Masahiro Yamada0a0a7a92020-03-26 10:57:12 +090049
50 RODATA_COMMON
51
Roberto Vargas5629b2b2018-04-11 11:53:31 +010052 . = ALIGN(PAGE_SIZE);
Sandrine Bailleux5d1c1042016-07-08 14:37:40 +010053 __RODATA_END__ = .;
54 } >RAM
55#else
Yatharth Kochar9003fa02015-10-14 15:27:24 +010056 ro . : {
57 __RO_START__ = .;
58 *bl2u_entrypoint.o(.text*)
Samuel Hollandebd6efa2019-10-20 16:11:25 -050059 *(SORT_BY_ALIGNMENT(.text*))
60 *(SORT_BY_ALIGNMENT(.rodata*))
Yatharth Kochar9003fa02015-10-14 15:27:24 +010061
Masahiro Yamada0a0a7a92020-03-26 10:57:12 +090062 RODATA_COMMON
63
Yatharth Kochar9003fa02015-10-14 15:27:24 +010064 *(.vectors)
65 __RO_END_UNALIGNED__ = .;
66 /*
67 * Memory page(s) mapped to this section will be marked as
68 * read-only, executable. No RW data from the next section must
69 * creep in. Ensure the rest of the current memory page is unused.
70 */
Roberto Vargas5629b2b2018-04-11 11:53:31 +010071 . = ALIGN(PAGE_SIZE);
Yatharth Kochar9003fa02015-10-14 15:27:24 +010072 __RO_END__ = .;
73 } >RAM
Sandrine Bailleux5d1c1042016-07-08 14:37:40 +010074#endif
Yatharth Kochar9003fa02015-10-14 15:27:24 +010075
76 /*
77 * Define a linker symbol to mark start of the RW memory area for this
78 * image.
79 */
80 __RW_START__ = . ;
81
Douglas Raillard51faada2017-02-24 18:14:15 +000082 /*
83 * .data must be placed at a lower address than the stacks if the stack
84 * protector is enabled. Alternatively, the .data.stack_protector_canary
85 * section can be placed independently of the main .data section.
86 */
Yatharth Kochar9003fa02015-10-14 15:27:24 +010087 .data . : {
88 __DATA_START__ = .;
Samuel Hollandebd6efa2019-10-20 16:11:25 -050089 *(SORT_BY_ALIGNMENT(.data*))
Yatharth Kochar9003fa02015-10-14 15:27:24 +010090 __DATA_END__ = .;
91 } >RAM
92
93 stacks (NOLOAD) : {
94 __STACKS_START__ = .;
95 *(tzfw_normal_stacks)
96 __STACKS_END__ = .;
97 } >RAM
98
99 /*
100 * The .bss section gets initialised to 0 at runtime.
Douglas Raillard308d3592016-12-02 13:51:54 +0000101 * Its base address should be 16-byte aligned for better performance of the
102 * zero-initialization code.
Yatharth Kochar9003fa02015-10-14 15:27:24 +0100103 */
104 .bss : ALIGN(16) {
105 __BSS_START__ = .;
106 *(SORT_BY_ALIGNMENT(.bss*))
107 *(COMMON)
108 __BSS_END__ = .;
109 } >RAM
110
Masahiro Yamada665e71b82020-03-09 17:39:48 +0900111 XLAT_TABLE_SECTION >RAM
Yatharth Kochar9003fa02015-10-14 15:27:24 +0100112
113#if USE_COHERENT_MEM
114 /*
115 * The base address of the coherent memory section must be page-aligned (4K)
116 * to guarantee that the coherent data are stored on their own pages and
117 * are not mixed with normal data. This is required to set up the correct
118 * memory attributes for the coherent data page tables.
119 */
Antonio Nino Diaza2aedac2017-11-15 11:45:35 +0000120 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
Yatharth Kochar9003fa02015-10-14 15:27:24 +0100121 __COHERENT_RAM_START__ = .;
122 *(tzfw_coherent_mem)
123 __COHERENT_RAM_END_UNALIGNED__ = .;
124 /*
125 * Memory page(s) mapped to this section will be marked
126 * as device memory. No other unexpected data must creep in.
127 * Ensure the rest of the current memory page is unused.
128 */
Roberto Vargas5629b2b2018-04-11 11:53:31 +0100129 . = ALIGN(PAGE_SIZE);
Yatharth Kochar9003fa02015-10-14 15:27:24 +0100130 __COHERENT_RAM_END__ = .;
131 } >RAM
132#endif
133
134 /*
135 * Define a linker symbol to mark end of the RW memory area for this
136 * image.
137 */
138 __RW_END__ = .;
139 __BL2U_END__ = .;
140
141 __BSS_SIZE__ = SIZEOF(.bss);
142
143 ASSERT(. <= BL2U_LIMIT, "BL2U image has exceeded its limit.")
144}