Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Harrison Mutai | e420d1a | 2023-04-19 09:30:15 +0100 | [diff] [blame] | 2 | * Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
6 | |||||
Masahiro Yamada | c5864d8 | 2020-04-22 10:50:12 +0900 | [diff] [blame] | 7 | /* |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 8 | * The .data section gets copied from ROM to RAM at runtime. Its LMA should be |
9 | * 16-byte aligned to allow efficient copying of 16-bytes aligned regions in it. | ||||
Masahiro Yamada | c5864d8 | 2020-04-22 10:50:12 +0900 | [diff] [blame] | 10 | * Its VMA must be page-aligned as it marks the first read/write page. |
11 | */ | ||||
12 | #define DATA_ALIGN 16 | ||||
13 | |||||
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 14 | #include <common/bl_common.ld.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 15 | #include <lib/xlat_tables/xlat_tables_defs.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 16 | |
17 | OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT) | ||||
18 | OUTPUT_ARCH(PLATFORM_LINKER_ARCH) | ||||
Jeenu Viswambharan | 2a30a75 | 2014-03-11 11:06:45 +0000 | [diff] [blame] | 19 | ENTRY(bl1_entrypoint) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 20 | |
21 | MEMORY { | ||||
Juan Castillo | fd8c077 | 2014-09-16 10:40:35 +0100 | [diff] [blame] | 22 | ROM (rx): ORIGIN = BL1_RO_BASE, LENGTH = BL1_RO_LIMIT - BL1_RO_BASE |
23 | RAM (rwx): ORIGIN = BL1_RW_BASE, LENGTH = BL1_RW_LIMIT - BL1_RW_BASE | ||||
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 24 | } |
25 | |||||
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 26 | SECTIONS { |
Harrison Mutai | e420d1a | 2023-04-19 09:30:15 +0100 | [diff] [blame] | 27 | ROM_REGION_START = ORIGIN(ROM); |
28 | ROM_REGION_LENGTH = LENGTH(ROM); | ||||
29 | RAM_REGION_START = ORIGIN(RAM); | ||||
30 | RAM_REGION_LENGTH = LENGTH(RAM); | ||||
31 | |||||
Sandrine Bailleux | f748806 | 2014-05-22 15:21:35 +0100 | [diff] [blame] | 32 | . = BL1_RO_BASE; |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 33 | |
Antonio Nino Diaz | 2ce2b09 | 2017-11-15 11:45:35 +0000 | [diff] [blame] | 34 | ASSERT(. == ALIGN(PAGE_SIZE), |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 35 | "BL1_RO_BASE address is not aligned on a page boundary.") |
Sandrine Bailleux | f748806 | 2014-05-22 15:21:35 +0100 | [diff] [blame] | 36 | |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 37 | #if SEPARATE_CODE_AND_RODATA |
38 | .text . : { | ||||
39 | __TEXT_START__ = .; | ||||
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 40 | |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 41 | *bl1_entrypoint.o(.text*) |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 42 | *(SORT_BY_ALIGNMENT(.text*)) |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 43 | *(.vectors) |
Michal Simek | 80c530e | 2023-04-27 14:26:03 +0200 | [diff] [blame] | 44 | __TEXT_END_UNALIGNED__ = .; |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 45 | |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 46 | . = ALIGN(PAGE_SIZE); |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 47 | |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 48 | __TEXT_END__ = .; |
Jorge Troncoso | da284d5 | 2022-10-20 21:42:06 -0700 | [diff] [blame] | 49 | } >ROM |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 50 | |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 51 | /* .ARM.extab and .ARM.exidx are only added because Clang needs them */ |
Jorge Troncoso | da284d5 | 2022-10-20 21:42:06 -0700 | [diff] [blame] | 52 | .ARM.extab . : { |
Roberto Vargas | 1d04c63 | 2018-05-10 11:01:16 +0100 | [diff] [blame] | 53 | *(.ARM.extab* .gnu.linkonce.armextab.*) |
Jorge Troncoso | da284d5 | 2022-10-20 21:42:06 -0700 | [diff] [blame] | 54 | } >ROM |
Roberto Vargas | 1d04c63 | 2018-05-10 11:01:16 +0100 | [diff] [blame] | 55 | |
Jorge Troncoso | da284d5 | 2022-10-20 21:42:06 -0700 | [diff] [blame] | 56 | .ARM.exidx . : { |
Roberto Vargas | 1d04c63 | 2018-05-10 11:01:16 +0100 | [diff] [blame] | 57 | *(.ARM.exidx* .gnu.linkonce.armexidx.*) |
Jorge Troncoso | da284d5 | 2022-10-20 21:42:06 -0700 | [diff] [blame] | 58 | } >ROM |
Roberto Vargas | 1d04c63 | 2018-05-10 11:01:16 +0100 | [diff] [blame] | 59 | |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 60 | .rodata . : { |
61 | __RODATA_START__ = .; | ||||
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 62 | |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 63 | *(SORT_BY_ALIGNMENT(.rodata*)) |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 64 | |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 65 | RODATA_COMMON |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 66 | |
67 | /* | ||||
68 | * No need to pad out the .rodata section to a page boundary. Next is | ||||
69 | * the .data section, which can mapped in ROM with the same memory | ||||
70 | * attributes as the .rodata section. | ||||
Arve Hjønnevåg | 1488cbe | 2020-02-07 14:12:35 -0800 | [diff] [blame] | 71 | * |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 72 | * Pad out to 16 bytes though as .data section needs to be 16-byte |
73 | * aligned and lld does not align the LMA to the alignment specified | ||||
Arve Hjønnevåg | 1488cbe | 2020-02-07 14:12:35 -0800 | [diff] [blame] | 74 | * on the .data section. |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 75 | */ |
Michal Simek | 80c530e | 2023-04-27 14:26:03 +0200 | [diff] [blame] | 76 | __RODATA_END_UNALIGNED__ = .; |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 77 | __RODATA_END__ = .; |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 78 | |
79 | . = ALIGN(16); | ||||
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 80 | } >ROM |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 81 | #else /* SEPARATE_CODE_AND_RODATA */ |
Chris Kay | 33bfc5e | 2023-02-14 11:30:04 +0000 | [diff] [blame] | 82 | .ro . : { |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 83 | __RO_START__ = .; |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 84 | |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 85 | *bl1_entrypoint.o(.text*) |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 86 | *(SORT_BY_ALIGNMENT(.text*)) |
87 | *(SORT_BY_ALIGNMENT(.rodata*)) | ||||
Soby Mathew | c704cbc | 2014-08-14 11:33:56 +0100 | [diff] [blame] | 88 | |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 89 | RODATA_COMMON |
Soby Mathew | c704cbc | 2014-08-14 11:33:56 +0100 | [diff] [blame] | 90 | |
Achin Gupta | b739f22 | 2014-01-18 16:50:09 +0000 | [diff] [blame] | 91 | *(.vectors) |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 92 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 93 | __RO_END__ = .; |
Arve Hjønnevåg | 1488cbe | 2020-02-07 14:12:35 -0800 | [diff] [blame] | 94 | |
95 | /* | ||||
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 96 | * Pad out to 16 bytes as the .data section needs to be 16-byte aligned |
97 | * and lld does not align the LMA to the alignment specified on the | ||||
98 | * .data section. | ||||
Arve Hjønnevåg | 1488cbe | 2020-02-07 14:12:35 -0800 | [diff] [blame] | 99 | */ |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 100 | . = ALIGN(16); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 101 | } >ROM |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 102 | #endif /* SEPARATE_CODE_AND_RODATA */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 103 | |
Soby Mathew | c704cbc | 2014-08-14 11:33:56 +0100 | [diff] [blame] | 104 | ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__, |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 105 | "cpu_ops not defined for this platform.") |
Soby Mathew | c704cbc | 2014-08-14 11:33:56 +0100 | [diff] [blame] | 106 | |
Harrison Mutai | e420d1a | 2023-04-19 09:30:15 +0100 | [diff] [blame] | 107 | ROM_REGION_END = .; |
Douglas Raillard | 306593d | 2017-02-24 18:14:15 +0000 | [diff] [blame] | 108 | . = BL1_RW_BASE; |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 109 | |
Antonio Nino Diaz | 2ce2b09 | 2017-11-15 11:45:35 +0000 | [diff] [blame] | 110 | ASSERT(BL1_RW_BASE == ALIGN(PAGE_SIZE), |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 111 | "BL1_RW_BASE address is not aligned on a page boundary.") |
Douglas Raillard | 306593d | 2017-02-24 18:14:15 +0000 | [diff] [blame] | 112 | |
Masahiro Yamada | c5864d8 | 2020-04-22 10:50:12 +0900 | [diff] [blame] | 113 | DATA_SECTION >RAM AT>ROM |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 114 | |
Masahiro Yamada | c5864d8 | 2020-04-22 10:50:12 +0900 | [diff] [blame] | 115 | __DATA_RAM_START__ = __DATA_START__; |
116 | __DATA_RAM_END__ = __DATA_END__; | ||||
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 117 | |
Masahiro Yamada | 403990e | 2020-04-07 13:04:24 +0900 | [diff] [blame] | 118 | STACK_SECTION >RAM |
Masahiro Yamada | dd053b6 | 2020-03-26 13:16:33 +0900 | [diff] [blame] | 119 | BSS_SECTION >RAM |
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 120 | XLAT_TABLE_SECTION >RAM |
Jeenu Viswambharan | 74cbb83 | 2014-02-17 17:26:51 +0000 | [diff] [blame] | 121 | |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 122 | #if USE_COHERENT_MEM |
Jeenu Viswambharan | 74cbb83 | 2014-02-17 17:26:51 +0000 | [diff] [blame] | 123 | /* |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 124 | * The base address of the coherent memory section must be page-aligned to |
125 | * guarantee that the coherent data are stored on their own pages and are | ||||
126 | * not mixed with normal data. This is required to set up the correct memory | ||||
127 | * attributes for the coherent data page tables. | ||||
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 128 | */ |
Chris Kay | 33bfc5e | 2023-02-14 11:30:04 +0000 | [diff] [blame] | 129 | .coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) { |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 130 | __COHERENT_RAM_START__ = .; |
Chris Kay | 33bfc5e | 2023-02-14 11:30:04 +0000 | [diff] [blame] | 131 | *(.tzfw_coherent_mem) |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 132 | __COHERENT_RAM_END_UNALIGNED__ = .; |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 133 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 134 | /* |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 135 | * Memory page(s) mapped to this section will be marked as device |
136 | * memory. No other unexpected data must creep in. Ensure the rest of | ||||
137 | * the current memory page is unused. | ||||
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 138 | */ |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 139 | . = ALIGN(PAGE_SIZE); |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 140 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 141 | __COHERENT_RAM_END__ = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 142 | } >RAM |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 143 | #endif /* USE_COHERENT_MEM */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 144 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 145 | __BL1_RAM_START__ = ADDR(.data); |
146 | __BL1_RAM_END__ = .; | ||||
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 147 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 148 | __DATA_ROM_START__ = LOADADDR(.data); |
149 | __DATA_SIZE__ = SIZEOF(.data); | ||||
Sandrine Bailleux | 6c2daed | 2016-06-15 13:53:50 +0100 | [diff] [blame] | 150 | |
Sandrine Bailleux | 6c8b359 | 2014-05-22 15:28:26 +0100 | [diff] [blame] | 151 | /* |
152 | * The .data section is the last PROGBITS section so its end marks the end | ||||
Sandrine Bailleux | 6c2daed | 2016-06-15 13:53:50 +0100 | [diff] [blame] | 153 | * of BL1's actual content in Trusted ROM. |
Sandrine Bailleux | 6c8b359 | 2014-05-22 15:28:26 +0100 | [diff] [blame] | 154 | */ |
Sandrine Bailleux | 6c2daed | 2016-06-15 13:53:50 +0100 | [diff] [blame] | 155 | __BL1_ROM_END__ = __DATA_ROM_START__ + __DATA_SIZE__; |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 156 | |
Sandrine Bailleux | 6c2daed | 2016-06-15 13:53:50 +0100 | [diff] [blame] | 157 | ASSERT(__BL1_ROM_END__ <= BL1_RO_LIMIT, |
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 158 | "BL1's ROM content has exceeded its limit.") |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 159 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 160 | __BSS_SIZE__ = SIZEOF(.bss); |
161 | |||||
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 162 | #if USE_COHERENT_MEM |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 163 | __COHERENT_RAM_UNALIGNED_SIZE__ = |
164 | __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__; | ||||
Chris Kay | 4b7660a | 2022-09-29 14:36:53 +0100 | [diff] [blame] | 165 | #endif /* USE_COHERENT_MEM */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 166 | |
Sandrine Bailleux | 6c8b359 | 2014-05-22 15:28:26 +0100 | [diff] [blame] | 167 | ASSERT(. <= BL1_RW_LIMIT, "BL1's RW section has exceeded its limit.") |
Harrison Mutai | e420d1a | 2023-04-19 09:30:15 +0100 | [diff] [blame] | 168 | RAM_REGION_END = .; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 169 | } |