blob: 7428c0345b0fb7629debeb826906062f716e78dd [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
Masahiro Yamada0b67e562020-03-09 17:39:48 +09007#include <common/bl_common.ld.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <lib/xlat_tables/xlat_tables_defs.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
Masahiro Yamada583f8dd2020-03-26 10:57:12 +090040 RODATA_COMMON
Masahiro Yamadade634f82020-01-17 13:45:14 +090041
Roberto Vargasd93fde32018-04-11 11:53:31 +010042 . = ALIGN(PAGE_SIZE);
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010043 __RODATA_END__ = .;
44 } >RAM
45#else
Achin Gupta7c88f3f2014-02-18 18:09:12 +000046 ro . : {
47 __RO_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +000048 *tsp_entrypoint.o(.text*)
49 *(.text*)
Achin Gupta7c88f3f2014-02-18 18:09:12 +000050 *(.rodata*)
Masahiro Yamadade634f82020-01-17 13:45:14 +090051
Masahiro Yamada583f8dd2020-03-26 10:57:12 +090052 RODATA_COMMON
Masahiro Yamadade634f82020-01-17 13:45:14 +090053
Achin Gupta7c88f3f2014-02-18 18:09:12 +000054 *(.vectors)
Masahiro Yamadade634f82020-01-17 13:45:14 +090055
Achin Gupta7c88f3f2014-02-18 18:09:12 +000056 __RO_END_UNALIGNED__ = .;
57 /*
58 * Memory page(s) mapped to this section will be marked as
59 * read-only, executable. No RW data from the next section must
60 * creep in. Ensure the rest of the current memory page is unused.
61 */
Roberto Vargasd93fde32018-04-11 11:53:31 +010062 . = ALIGN(PAGE_SIZE);
Achin Gupta7c88f3f2014-02-18 18:09:12 +000063 __RO_END__ = .;
64 } >RAM
Sandrine Bailleuxf91f1442016-07-08 14:37:40 +010065#endif
Achin Gupta7c88f3f2014-02-18 18:09:12 +000066
Achin Guptae9c4a642015-09-11 16:03:13 +010067 /*
68 * Define a linker symbol to mark start of the RW memory area for this
69 * image.
70 */
71 __RW_START__ = . ;
72
Achin Gupta7c88f3f2014-02-18 18:09:12 +000073 .data . : {
74 __DATA_START__ = .;
Andrew Thoelkee01ea342014-03-18 07:13:52 +000075 *(.data*)
Achin Gupta7c88f3f2014-02-18 18:09:12 +000076 __DATA_END__ = .;
77 } >RAM
78
Masahiro Yamadade634f82020-01-17 13:45:14 +090079 /*
80 * .rela.dyn needs to come after .data for the read-elf utility to parse
81 * this section correctly. Ensure 8-byte alignment so that the fields of
82 * RELA data structure are aligned.
83 */
84 . = ALIGN(8);
85 __RELA_START__ = .;
86 .rela.dyn . : {
87 } >RAM
88 __RELA_END__ = .;
89
Dan Handley4fd2f5c2014-08-04 11:41:20 +010090#ifdef TSP_PROGBITS_LIMIT
91 ASSERT(. <= TSP_PROGBITS_LIMIT, "TSP progbits has exceeded its limit.")
Sandrine Bailleuxe2e0c652014-06-16 16:12:27 +010092#endif
93
Masahiro Yamada403990e2020-04-07 13:04:24 +090094 STACK_SECTION >RAM
Masahiro Yamadadd053b62020-03-26 13:16:33 +090095 BSS_SECTION >RAM
Masahiro Yamada0b67e562020-03-09 17:39:48 +090096 XLAT_TABLE_SECTION >RAM
Achin Gupta7c88f3f2014-02-18 18:09:12 +000097
Soby Mathew2ae20432015-01-08 18:02:44 +000098#if USE_COHERENT_MEM
Achin Gupta7c88f3f2014-02-18 18:09:12 +000099 /*
100 * The base address of the coherent memory section must be page-aligned (4K)
101 * to guarantee that the coherent data are stored on their own pages and
102 * are not mixed with normal data. This is required to set up the correct
103 * memory attributes for the coherent data page tables.
104 */
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +0000105 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000106 __COHERENT_RAM_START__ = .;
107 *(tzfw_coherent_mem)
108 __COHERENT_RAM_END_UNALIGNED__ = .;
109 /*
110 * Memory page(s) mapped to this section will be marked
111 * as device memory. No other unexpected data must creep in.
112 * Ensure the rest of the current memory page is unused.
113 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100114 . = ALIGN(PAGE_SIZE);
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000115 __COHERENT_RAM_END__ = .;
116 } >RAM
Soby Mathew2ae20432015-01-08 18:02:44 +0000117#endif
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000118
Achin Guptae9c4a642015-09-11 16:03:13 +0100119 /*
120 * Define a linker symbol to mark the end of the RW memory area for this
121 * image.
122 */
123 __RW_END__ = .;
Sandrine Bailleuxe701e302014-05-20 17:28:25 +0100124 __BL32_END__ = .;
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000125
Masahiro Yamadade634f82020-01-17 13:45:14 +0900126 /DISCARD/ : {
127 *(.dynsym .dynstr .hash .gnu.hash)
128 }
129
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000130 __BSS_SIZE__ = SIZEOF(.bss);
Soby Mathew2ae20432015-01-08 18:02:44 +0000131#if USE_COHERENT_MEM
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000132 __COHERENT_RAM_UNALIGNED_SIZE__ =
133 __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
Soby Mathew2ae20432015-01-08 18:02:44 +0000134#endif
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000135
Juan Castillo7d199412015-12-14 09:35:25 +0000136 ASSERT(. <= BL32_LIMIT, "BL32 image has exceeded its limit.")
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000137}