blob: 592e24557629d6076293db2aeb7a12b3187947cf [file] [log] [blame]
Achin Gupta7c88f3f2014-02-18 18:09:12 +00001/*
Masahiro Yamadade634f82020-01-17 13:45:14 +09002 * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
Achin Gupta7c88f3f2014-02-18 18:09:12 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta7c88f3f2014-02-18 18:09:12 +00005 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <lib/xlat_tables/xlat_tables_defs.h>
Dan Handleyed6ff952014-05-14 17:44:19 +01008#include <platform_def.h>
Achin Gupta7c88f3f2014-02-18 18:09:12 +00009
10OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT)
11OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
Jeenu Viswambharan2a30a752014-03-11 11:06:45 +000012ENTRY(tsp_entrypoint)
13
Achin Gupta7c88f3f2014-02-18 18:09:12 +000014
15MEMORY {
Sandrine Bailleux5ac3cc92014-05-20 17:22:24 +010016 RAM (rwx): ORIGIN = TSP_SEC_MEM_BASE, LENGTH = TSP_SEC_MEM_SIZE
Achin Gupta7c88f3f2014-02-18 18:09:12 +000017}
18
19
20SECTIONS
21{
22 . = BL32_BASE;
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +000023 ASSERT(. == ALIGN(PAGE_SIZE),
Achin Gupta7c88f3f2014-02-18 18:09:12 +000024 "BL32_BASE address is not aligned on a page boundary.")
25
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010026#if SEPARATE_CODE_AND_RODATA
27 .text . : {
28 __TEXT_START__ = .;
29 *tsp_entrypoint.o(.text*)
30 *(.text*)
31 *(.vectors)
Roberto Vargasd93fde32018-04-11 11:53:31 +010032 . = ALIGN(PAGE_SIZE);
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010033 __TEXT_END__ = .;
34 } >RAM
35
36 .rodata . : {
37 __RODATA_START__ = .;
38 *(.rodata*)
Masahiro Yamadade634f82020-01-17 13:45:14 +090039
40 /*
41 * Keep the .got section in the RO section as it is patched
42 * prior to enabling the MMU and having the .got in RO is better for
43 * security. GOT is a table of addresses so ensure 8-byte alignment.
44 */
45 . = ALIGN(8);
46 __GOT_START__ = .;
47 *(.got)
48 __GOT_END__ = .;
49
Roberto Vargasd93fde32018-04-11 11:53:31 +010050 . = ALIGN(PAGE_SIZE);
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010051 __RODATA_END__ = .;
52 } >RAM
53#else
Achin Gupta7c88f3f2014-02-18 18:09:12 +000054 ro . : {
55 __RO_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +000056 *tsp_entrypoint.o(.text*)
57 *(.text*)
Achin Gupta7c88f3f2014-02-18 18:09:12 +000058 *(.rodata*)
Masahiro Yamadade634f82020-01-17 13:45:14 +090059
60 /*
61 * Keep the .got section in the RO section as it is patched
62 * prior to enabling the MMU and having the .got in RO is better for
63 * security. GOT is a table of addresses so ensure 8-byte alignment.
64 */
65 . = ALIGN(8);
66 __GOT_START__ = .;
67 *(.got)
68 __GOT_END__ = .;
69
Achin Gupta7c88f3f2014-02-18 18:09:12 +000070 *(.vectors)
Masahiro Yamadade634f82020-01-17 13:45:14 +090071
Achin Gupta7c88f3f2014-02-18 18:09:12 +000072 __RO_END_UNALIGNED__ = .;
73 /*
74 * Memory page(s) mapped to this section will be marked as
75 * read-only, executable. No RW data from the next section must
76 * creep in. Ensure the rest of the current memory page is unused.
77 */
Roberto Vargasd93fde32018-04-11 11:53:31 +010078 . = ALIGN(PAGE_SIZE);
Achin Gupta7c88f3f2014-02-18 18:09:12 +000079 __RO_END__ = .;
80 } >RAM
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010081#endif
Achin Gupta7c88f3f2014-02-18 18:09:12 +000082
Achin Guptae9c4a642015-09-11 16:03:13 +010083 /*
84 * Define a linker symbol to mark start of the RW memory area for this
85 * image.
86 */
87 __RW_START__ = . ;
88
Achin Gupta7c88f3f2014-02-18 18:09:12 +000089 .data . : {
90 __DATA_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +000091 *(.data*)
Achin Gupta7c88f3f2014-02-18 18:09:12 +000092 __DATA_END__ = .;
93 } >RAM
94
Masahiro Yamadade634f82020-01-17 13:45:14 +090095 /*
96 * .rela.dyn needs to come after .data for the read-elf utility to parse
97 * this section correctly. Ensure 8-byte alignment so that the fields of
98 * RELA data structure are aligned.
99 */
100 . = ALIGN(8);
101 __RELA_START__ = .;
102 .rela.dyn . : {
103 } >RAM
104 __RELA_END__ = .;
105
Dan Handley4fd2f5c2014-08-04 11:41:20 +0100106#ifdef TSP_PROGBITS_LIMIT
107 ASSERT(. <= TSP_PROGBITS_LIMIT, "TSP progbits has exceeded its limit.")
Sandrine Bailleuxe2e0c652014-06-16 16:12:27 +0100108#endif
109
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000110 stacks (NOLOAD) : {
111 __STACKS_START__ = .;
112 *(tzfw_normal_stacks)
113 __STACKS_END__ = .;
114 } >RAM
115
116 /*
117 * The .bss section gets initialised to 0 at runtime.
Douglas Raillard21362a92016-12-02 13:51:54 +0000118 * Its base address should be 16-byte aligned for better performance of the
119 * zero-initialization code.
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000120 */
121 .bss : ALIGN(16) {
122 __BSS_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +0000123 *(SORT_BY_ALIGNMENT(.bss*))
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000124 *(COMMON)
125 __BSS_END__ = .;
126 } >RAM
127
128 /*
129 * The xlat_table section is for full, aligned page tables (4K).
130 * Removing them from .bss avoids forcing 4K alignment on
Antonio Nino Diaz7c2a3ca2018-02-23 15:07:54 +0000131 * the .bss section. The tables are initialized to zero by the translation
132 * tables library.
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000133 */
134 xlat_table (NOLOAD) : {
135 *(xlat_table)
136 } >RAM
137
Soby Mathew2ae20432015-01-08 18:02:44 +0000138#if USE_COHERENT_MEM
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000139 /*
140 * The base address of the coherent memory section must be page-aligned (4K)
141 * to guarantee that the coherent data are stored on their own pages and
142 * are not mixed with normal data. This is required to set up the correct
143 * memory attributes for the coherent data page tables.
144 */
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +0000145 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000146 __COHERENT_RAM_START__ = .;
147 *(tzfw_coherent_mem)
148 __COHERENT_RAM_END_UNALIGNED__ = .;
149 /*
150 * Memory page(s) mapped to this section will be marked
151 * as device memory. No other unexpected data must creep in.
152 * Ensure the rest of the current memory page is unused.
153 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100154 . = ALIGN(PAGE_SIZE);
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000155 __COHERENT_RAM_END__ = .;
156 } >RAM
Soby Mathew2ae20432015-01-08 18:02:44 +0000157#endif
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000158
Achin Guptae9c4a642015-09-11 16:03:13 +0100159 /*
160 * Define a linker symbol to mark the end of the RW memory area for this
161 * image.
162 */
163 __RW_END__ = .;
Sandrine Bailleuxe701e302014-05-20 17:28:25 +0100164 __BL32_END__ = .;
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000165
Masahiro Yamadade634f82020-01-17 13:45:14 +0900166 /DISCARD/ : {
167 *(.dynsym .dynstr .hash .gnu.hash)
168 }
169
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000170 __BSS_SIZE__ = SIZEOF(.bss);
Soby Mathew2ae20432015-01-08 18:02:44 +0000171#if USE_COHERENT_MEM
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000172 __COHERENT_RAM_UNALIGNED_SIZE__ =
173 __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
Soby Mathew2ae20432015-01-08 18:02:44 +0000174#endif
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000175
Juan Castillo7d199412015-12-14 09:35:25 +0000176 ASSERT(. <= BL32_LIMIT, "BL32 image has exceeded its limit.")
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000177}