Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 1 | /* |
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 2 | * Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved. |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 7 | #include <common/bl_common.ld.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | #include <lib/xlat_tables/xlat_tables_defs.h> |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 9 | |
| 10 | OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT) |
| 11 | OUTPUT_ARCH(PLATFORM_LINKER_ARCH) |
| 12 | ENTRY(bl2_entrypoint) |
| 13 | |
| 14 | MEMORY { |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 15 | #if BL2_IN_XIP_MEM |
| 16 | ROM (rx): ORIGIN = BL2_RO_BASE, LENGTH = BL2_RO_LIMIT - BL2_RO_BASE |
| 17 | RAM (rwx): ORIGIN = BL2_RW_BASE, LENGTH = BL2_RW_LIMIT - BL2_RW_BASE |
| 18 | #else |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 19 | RAM (rwx): ORIGIN = BL2_BASE, LENGTH = BL2_LIMIT - BL2_BASE |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 20 | #endif |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 21 | } |
| 22 | |
Masahiro Yamada | 5289b67 | 2019-06-14 17:49:17 +0900 | [diff] [blame] | 23 | #if !BL2_IN_XIP_MEM |
| 24 | #define ROM RAM |
| 25 | #endif |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 26 | |
| 27 | SECTIONS |
| 28 | { |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 29 | #if BL2_IN_XIP_MEM |
| 30 | . = BL2_RO_BASE; |
| 31 | ASSERT(. == ALIGN(PAGE_SIZE), |
| 32 | "BL2_RO_BASE address is not aligned on a page boundary.") |
| 33 | #else |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 34 | . = BL2_BASE; |
| 35 | ASSERT(. == ALIGN(PAGE_SIZE), |
| 36 | "BL2_BASE address is not aligned on a page boundary.") |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 37 | #endif |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 38 | |
| 39 | #if SEPARATE_CODE_AND_RODATA |
| 40 | .text . : { |
| 41 | __TEXT_START__ = .; |
Roberto Vargas | 51abc34 | 2017-11-17 10:51:54 +0000 | [diff] [blame] | 42 | __TEXT_RESIDENT_START__ = .; |
| 43 | *bl2_el3_entrypoint.o(.text*) |
| 44 | *(.text.asm.*) |
| 45 | __TEXT_RESIDENT_END__ = .; |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 46 | *(SORT_BY_ALIGNMENT(.text*)) |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 47 | *(.vectors) |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 48 | . = ALIGN(PAGE_SIZE); |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 49 | __TEXT_END__ = .; |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 50 | } >ROM |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 51 | |
| 52 | .rodata . : { |
| 53 | __RODATA_START__ = .; |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 54 | *(SORT_BY_ALIGNMENT(.rodata*)) |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 55 | |
Masahiro Yamada | 583f8dd | 2020-03-26 10:57:12 +0900 | [diff] [blame] | 56 | RODATA_COMMON |
Masahiro Yamada | 65d699d | 2020-01-17 13:45:02 +0900 | [diff] [blame] | 57 | |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 58 | . = ALIGN(PAGE_SIZE); |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 59 | __RODATA_END__ = .; |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 60 | } >ROM |
Roberto Vargas | 51abc34 | 2017-11-17 10:51:54 +0000 | [diff] [blame] | 61 | |
| 62 | ASSERT(__TEXT_RESIDENT_END__ - __TEXT_RESIDENT_START__ <= PAGE_SIZE, |
| 63 | "Resident part of BL2 has exceeded its limit.") |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 64 | #else |
| 65 | ro . : { |
| 66 | __RO_START__ = .; |
Roberto Vargas | 51abc34 | 2017-11-17 10:51:54 +0000 | [diff] [blame] | 67 | __TEXT_RESIDENT_START__ = .; |
| 68 | *bl2_el3_entrypoint.o(.text*) |
| 69 | *(.text.asm.*) |
| 70 | __TEXT_RESIDENT_END__ = .; |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 71 | *(SORT_BY_ALIGNMENT(.text*)) |
| 72 | *(SORT_BY_ALIGNMENT(.rodata*)) |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 73 | |
Masahiro Yamada | 583f8dd | 2020-03-26 10:57:12 +0900 | [diff] [blame] | 74 | RODATA_COMMON |
Masahiro Yamada | 65d699d | 2020-01-17 13:45:02 +0900 | [diff] [blame] | 75 | |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 76 | *(.vectors) |
| 77 | __RO_END_UNALIGNED__ = .; |
| 78 | /* |
| 79 | * Memory page(s) mapped to this section will be marked as |
| 80 | * read-only, executable. No RW data from the next section must |
| 81 | * creep in. Ensure the rest of the current memory page is unused. |
| 82 | */ |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 83 | . = ALIGN(PAGE_SIZE); |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 84 | |
| 85 | __RO_END__ = .; |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 86 | } >ROM |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 87 | #endif |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 88 | |
| 89 | ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__, |
| 90 | "cpu_ops not defined for this platform.") |
| 91 | |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 92 | #if BL2_IN_XIP_MEM |
| 93 | . = BL2_RW_BASE; |
| 94 | ASSERT(BL2_RW_BASE == ALIGN(PAGE_SIZE), |
| 95 | "BL2_RW_BASE address is not aligned on a page boundary.") |
| 96 | #endif |
| 97 | |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 98 | /* |
| 99 | * Define a linker symbol to mark start of the RW memory area for this |
| 100 | * image. |
| 101 | */ |
| 102 | __RW_START__ = . ; |
| 103 | |
Masahiro Yamada | c5864d8 | 2020-04-22 10:50:12 +0900 | [diff] [blame] | 104 | DATA_SECTION >RAM AT>ROM |
| 105 | __DATA_RAM_START__ = __DATA_START__; |
| 106 | __DATA_RAM_END__ = __DATA_END__; |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 107 | |
Masahiro Yamada | 85fa00e | 2020-04-22 11:27:55 +0900 | [diff] [blame] | 108 | RELA_SECTION >RAM |
Masahiro Yamada | 403990e | 2020-04-07 13:04:24 +0900 | [diff] [blame] | 109 | STACK_SECTION >RAM |
Masahiro Yamada | dd053b6 | 2020-03-26 13:16:33 +0900 | [diff] [blame] | 110 | BSS_SECTION >RAM |
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 111 | XLAT_TABLE_SECTION >RAM |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 112 | |
| 113 | #if USE_COHERENT_MEM |
| 114 | /* |
| 115 | * The base address of the coherent memory section must be page-aligned (4K) |
| 116 | * to guarantee that the coherent data are stored on their own pages and |
| 117 | * are not mixed with normal data. This is required to set up the correct |
| 118 | * memory attributes for the coherent data page tables. |
| 119 | */ |
| 120 | coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) { |
| 121 | __COHERENT_RAM_START__ = .; |
| 122 | *(tzfw_coherent_mem) |
| 123 | __COHERENT_RAM_END_UNALIGNED__ = .; |
| 124 | /* |
| 125 | * Memory page(s) mapped to this section will be marked |
| 126 | * as device memory. No other unexpected data must creep in. |
| 127 | * Ensure the rest of the current memory page is unused. |
| 128 | */ |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 129 | . = ALIGN(PAGE_SIZE); |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 130 | __COHERENT_RAM_END__ = .; |
| 131 | } >RAM |
| 132 | #endif |
| 133 | |
| 134 | /* |
| 135 | * Define a linker symbol to mark end of the RW memory area for this |
| 136 | * image. |
| 137 | */ |
| 138 | __RW_END__ = .; |
| 139 | __BL2_END__ = .; |
| 140 | |
Masahiro Yamada | 65d699d | 2020-01-17 13:45:02 +0900 | [diff] [blame] | 141 | /DISCARD/ : { |
| 142 | *(.dynsym .dynstr .hash .gnu.hash) |
| 143 | } |
| 144 | |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 145 | #if BL2_IN_XIP_MEM |
| 146 | __BL2_RAM_START__ = ADDR(.data); |
| 147 | __BL2_RAM_END__ = .; |
| 148 | |
| 149 | __DATA_ROM_START__ = LOADADDR(.data); |
| 150 | __DATA_SIZE__ = SIZEOF(.data); |
| 151 | |
| 152 | /* |
| 153 | * The .data section is the last PROGBITS section so its end marks the end |
| 154 | * of BL2's RO content in XIP memory.. |
| 155 | */ |
| 156 | __BL2_ROM_END__ = __DATA_ROM_START__ + __DATA_SIZE__; |
| 157 | ASSERT(__BL2_ROM_END__ <= BL2_RO_LIMIT, |
| 158 | "BL2's RO content has exceeded its limit.") |
| 159 | #endif |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 160 | __BSS_SIZE__ = SIZEOF(.bss); |
| 161 | |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 162 | |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 163 | #if USE_COHERENT_MEM |
| 164 | __COHERENT_RAM_UNALIGNED_SIZE__ = |
| 165 | __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__; |
| 166 | #endif |
| 167 | |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 168 | #if BL2_IN_XIP_MEM |
| 169 | ASSERT(. <= BL2_RW_LIMIT, "BL2's RW content has exceeded its limit.") |
| 170 | #else |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 171 | ASSERT(. <= BL2_LIMIT, "BL2 image has exceeded its limit.") |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 172 | #endif |
Roberto Vargas | e0e9946 | 2017-10-30 14:43:43 +0000 | [diff] [blame] | 173 | } |