blob: 3db5f894666cd4efc522a0ea0f42b996cd0d49bb [file] [log] [blame]
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01001/*
Antonio Nino Diaz7c2a3ca2018-02-23 15:07:54 +00002 * Copyright (c) 2015-2018, 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 Diaz2ce2b092017-11-15 11:45:35 +00008#include <xlat_tables_defs.h>
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +01009
10OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT)
11OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
12ENTRY(bl2u_entrypoint)
13
14MEMORY {
15 RAM (rwx): ORIGIN = BL2U_BASE, LENGTH = BL2U_LIMIT - BL2U_BASE
16}
17
18
19SECTIONS
20{
21 . = BL2U_BASE;
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +000022 ASSERT(. == ALIGN(PAGE_SIZE),
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010023 "BL2U_BASE address is not aligned on a page boundary.")
24
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010025#if SEPARATE_CODE_AND_RODATA
26 .text . : {
27 __TEXT_START__ = .;
28 *bl2u_entrypoint.o(.text*)
29 *(.text*)
30 *(.vectors)
Roberto Vargasd93fde32018-04-11 11:53:31 +010031 . = ALIGN(PAGE_SIZE);
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010032 __TEXT_END__ = .;
33 } >RAM
34
Roberto Vargas1d04c632018-05-10 11:01:16 +010035 /* .ARM.extab and .ARM.exidx are only added because Clang need them */
36 .ARM.extab . : {
37 *(.ARM.extab* .gnu.linkonce.armextab.*)
38 } >RAM
39
40 .ARM.exidx . : {
41 *(.ARM.exidx* .gnu.linkonce.armexidx.*)
42 } >RAM
43
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010044 .rodata . : {
45 __RODATA_START__ = .;
46 *(.rodata*)
Roberto Vargasd93fde32018-04-11 11:53:31 +010047 . = ALIGN(PAGE_SIZE);
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010048 __RODATA_END__ = .;
49 } >RAM
50#else
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010051 ro . : {
52 __RO_START__ = .;
53 *bl2u_entrypoint.o(.text*)
54 *(.text*)
55 *(.rodata*)
56
57 *(.vectors)
58 __RO_END_UNALIGNED__ = .;
59 /*
60 * Memory page(s) mapped to this section will be marked as
61 * read-only, executable. No RW data from the next section must
62 * creep in. Ensure the rest of the current memory page is unused.
63 */
Roberto Vargasd93fde32018-04-11 11:53:31 +010064 . = ALIGN(PAGE_SIZE);
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010065 __RO_END__ = .;
66 } >RAM
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010067#endif
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010068
69 /*
70 * Define a linker symbol to mark start of the RW memory area for this
71 * image.
72 */
73 __RW_START__ = . ;
74
Douglas Raillard306593d2017-02-24 18:14:15 +000075 /*
76 * .data must be placed at a lower address than the stacks if the stack
77 * protector is enabled. Alternatively, the .data.stack_protector_canary
78 * section can be placed independently of the main .data section.
79 */
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010080 .data . : {
81 __DATA_START__ = .;
82 *(.data*)
83 __DATA_END__ = .;
84 } >RAM
85
86 stacks (NOLOAD) : {
87 __STACKS_START__ = .;
88 *(tzfw_normal_stacks)
89 __STACKS_END__ = .;
90 } >RAM
91
92 /*
93 * The .bss section gets initialised to 0 at runtime.
Douglas Raillard21362a92016-12-02 13:51:54 +000094 * Its base address should be 16-byte aligned for better performance of the
95 * zero-initialization code.
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +010096 */
97 .bss : ALIGN(16) {
98 __BSS_START__ = .;
99 *(SORT_BY_ALIGNMENT(.bss*))
100 *(COMMON)
101 __BSS_END__ = .;
102 } >RAM
103
104 /*
105 * The xlat_table section is for full, aligned page tables (4K).
106 * Removing them from .bss avoids forcing 4K alignment on
Antonio Nino Diaz7c2a3ca2018-02-23 15:07:54 +0000107 * the .bss section. The tables are initialized to zero by the translation
108 * tables library.
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +0100109 */
110 xlat_table (NOLOAD) : {
111 *(xlat_table)
112 } >RAM
113
114#if USE_COHERENT_MEM
115 /*
116 * The base address of the coherent memory section must be page-aligned (4K)
117 * to guarantee that the coherent data are stored on their own pages and
118 * are not mixed with normal data. This is required to set up the correct
119 * memory attributes for the coherent data page tables.
120 */
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +0000121 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +0100122 __COHERENT_RAM_START__ = .;
123 *(tzfw_coherent_mem)
124 __COHERENT_RAM_END_UNALIGNED__ = .;
125 /*
126 * Memory page(s) mapped to this section will be marked
127 * as device memory. No other unexpected data must creep in.
128 * Ensure the rest of the current memory page is unused.
129 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100130 . = ALIGN(PAGE_SIZE);
Yatharth Kocharb1c2fe02015-10-14 15:27:24 +0100131 __COHERENT_RAM_END__ = .;
132 } >RAM
133#endif
134
135 /*
136 * Define a linker symbol to mark end of the RW memory area for this
137 * image.
138 */
139 __RW_END__ = .;
140 __BL2U_END__ = .;
141
142 __BSS_SIZE__ = SIZEOF(.bss);
143
144 ASSERT(. <= BL2U_LIMIT, "BL2U image has exceeded its limit.")
145}