blob: 96545a3abad92c14b8fd31df8442d5a66da51d38 [file] [log] [blame]
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001/*
Masahiro Yamada0b67e562020-03-09 17:39:48 +09002 * Copyright (c) 2015-2020, ARM Limited and Contributors. All rights reserved.
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01005 */
6
7#include <platform_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
Masahiro Yamada0b67e562020-03-09 17:39:48 +09009#include <common/bl_common.ld.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <lib/xlat_tables/xlat_tables_defs.h>
Yatharth Kocharb1c2fe02015-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 Diaz2ce2b092017-11-15 11:45:35 +000024 ASSERT(. == ALIGN(PAGE_SIZE),
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010025 "BL2U_BASE address is not aligned on a page boundary.")
26
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010027#if SEPARATE_CODE_AND_RODATA
28 .text . : {
29 __TEXT_START__ = .;
30 *bl2u_entrypoint.o(.text*)
Samuel Holland23f5e542019-10-20 16:11:25 -050031 *(SORT_BY_ALIGNMENT(.text*))
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010032 *(.vectors)
Roberto Vargasd93fde32018-04-11 11:53:31 +010033 . = ALIGN(PAGE_SIZE);
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010034 __TEXT_END__ = .;
35 } >RAM
36
Roberto Vargas1d04c632018-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 Bailleuxf91f1442016-07-08 14:37:40 +010046 .rodata . : {
47 __RODATA_START__ = .;
Samuel Holland23f5e542019-10-20 16:11:25 -050048 *(SORT_BY_ALIGNMENT(.rodata*))
Roberto Vargasd93fde32018-04-11 11:53:31 +010049 . = ALIGN(PAGE_SIZE);
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010050 __RODATA_END__ = .;
51 } >RAM
52#else
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010053 ro . : {
54 __RO_START__ = .;
55 *bl2u_entrypoint.o(.text*)
Samuel Holland23f5e542019-10-20 16:11:25 -050056 *(SORT_BY_ALIGNMENT(.text*))
57 *(SORT_BY_ALIGNMENT(.rodata*))
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010058
59 *(.vectors)
60 __RO_END_UNALIGNED__ = .;
61 /*
62 * Memory page(s) mapped to this section will be marked as
63 * read-only, executable. No RW data from the next section must
64 * creep in. Ensure the rest of the current memory page is unused.
65 */
Roberto Vargasd93fde32018-04-11 11:53:31 +010066 . = ALIGN(PAGE_SIZE);
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010067 __RO_END__ = .;
68 } >RAM
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010069#endif
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010070
71 /*
72 * Define a linker symbol to mark start of the RW memory area for this
73 * image.
74 */
75 __RW_START__ = . ;
76
Douglas Raillard306593d2017-02-24 18:14:15 +000077 /*
78 * .data must be placed at a lower address than the stacks if the stack
79 * protector is enabled. Alternatively, the .data.stack_protector_canary
80 * section can be placed independently of the main .data section.
81 */
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010082 .data . : {
83 __DATA_START__ = .;
Samuel Holland23f5e542019-10-20 16:11:25 -050084 *(SORT_BY_ALIGNMENT(.data*))
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010085 __DATA_END__ = .;
86 } >RAM
87
88 stacks (NOLOAD) : {
89 __STACKS_START__ = .;
90 *(tzfw_normal_stacks)
91 __STACKS_END__ = .;
92 } >RAM
93
94 /*
95 * The .bss section gets initialised to 0 at runtime.
Douglas Raillard21362a92016-12-02 13:51:54 +000096 * Its base address should be 16-byte aligned for better performance of the
97 * zero-initialization code.
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010098 */
99 .bss : ALIGN(16) {
100 __BSS_START__ = .;
101 *(SORT_BY_ALIGNMENT(.bss*))
102 *(COMMON)
103 __BSS_END__ = .;
104 } >RAM
105
Masahiro Yamada0b67e562020-03-09 17:39:48 +0900106 XLAT_TABLE_SECTION >RAM
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +0100107
108#if USE_COHERENT_MEM
109 /*
110 * The base address of the coherent memory section must be page-aligned (4K)
111 * to guarantee that the coherent data are stored on their own pages and
112 * are not mixed with normal data. This is required to set up the correct
113 * memory attributes for the coherent data page tables.
114 */
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +0000115 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +0100116 __COHERENT_RAM_START__ = .;
117 *(tzfw_coherent_mem)
118 __COHERENT_RAM_END_UNALIGNED__ = .;
119 /*
120 * Memory page(s) mapped to this section will be marked
121 * as device memory. No other unexpected data must creep in.
122 * Ensure the rest of the current memory page is unused.
123 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100124 . = ALIGN(PAGE_SIZE);
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +0100125 __COHERENT_RAM_END__ = .;
126 } >RAM
127#endif
128
129 /*
130 * Define a linker symbol to mark end of the RW memory area for this
131 * image.
132 */
133 __RW_END__ = .;
134 __BL2U_END__ = .;
135
136 __BSS_SIZE__ = SIZEOF(.bss);
137
138 ASSERT(. <= BL2U_LIMIT, "BL2U image has exceeded its limit.")
139}