Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 1 | /* |
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 2 | * Copyright (c) 2015-2020, ARM Limited and Contributors. All rights reserved. |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <platform_def.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | |
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 9 | #include <common/bl_common.ld.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <lib/xlat_tables/xlat_tables_defs.h> |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 11 | |
| 12 | OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT) |
| 13 | OUTPUT_ARCH(PLATFORM_LINKER_ARCH) |
| 14 | ENTRY(bl2u_entrypoint) |
| 15 | |
| 16 | MEMORY { |
| 17 | RAM (rwx): ORIGIN = BL2U_BASE, LENGTH = BL2U_LIMIT - BL2U_BASE |
| 18 | } |
| 19 | |
| 20 | |
| 21 | SECTIONS |
| 22 | { |
| 23 | . = BL2U_BASE; |
Antonio Nino Diaz | 2ce2b09 | 2017-11-15 11:45:35 +0000 | [diff] [blame] | 24 | ASSERT(. == ALIGN(PAGE_SIZE), |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 25 | "BL2U_BASE address is not aligned on a page boundary.") |
| 26 | |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 27 | #if SEPARATE_CODE_AND_RODATA |
| 28 | .text . : { |
| 29 | __TEXT_START__ = .; |
| 30 | *bl2u_entrypoint.o(.text*) |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 31 | *(SORT_BY_ALIGNMENT(.text*)) |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 32 | *(.vectors) |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 33 | . = ALIGN(PAGE_SIZE); |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 34 | __TEXT_END__ = .; |
| 35 | } >RAM |
| 36 | |
Roberto Vargas | 1d04c63 | 2018-05-10 11:01:16 +0100 | [diff] [blame] | 37 | /* .ARM.extab and .ARM.exidx are only added because Clang need them */ |
| 38 | .ARM.extab . : { |
| 39 | *(.ARM.extab* .gnu.linkonce.armextab.*) |
| 40 | } >RAM |
| 41 | |
| 42 | .ARM.exidx . : { |
| 43 | *(.ARM.exidx* .gnu.linkonce.armexidx.*) |
| 44 | } >RAM |
| 45 | |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 46 | .rodata . : { |
| 47 | __RODATA_START__ = .; |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 48 | *(SORT_BY_ALIGNMENT(.rodata*)) |
Masahiro Yamada | 583f8dd | 2020-03-26 10:57:12 +0900 | [diff] [blame] | 49 | |
| 50 | RODATA_COMMON |
| 51 | |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 52 | . = ALIGN(PAGE_SIZE); |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 53 | __RODATA_END__ = .; |
| 54 | } >RAM |
| 55 | #else |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 56 | ro . : { |
| 57 | __RO_START__ = .; |
| 58 | *bl2u_entrypoint.o(.text*) |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 59 | *(SORT_BY_ALIGNMENT(.text*)) |
| 60 | *(SORT_BY_ALIGNMENT(.rodata*)) |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 61 | |
Masahiro Yamada | 583f8dd | 2020-03-26 10:57:12 +0900 | [diff] [blame] | 62 | RODATA_COMMON |
| 63 | |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 64 | *(.vectors) |
| 65 | __RO_END_UNALIGNED__ = .; |
| 66 | /* |
| 67 | * Memory page(s) mapped to this section will be marked as |
| 68 | * read-only, executable. No RW data from the next section must |
| 69 | * creep in. Ensure the rest of the current memory page is unused. |
| 70 | */ |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 71 | . = ALIGN(PAGE_SIZE); |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 72 | __RO_END__ = .; |
| 73 | } >RAM |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 74 | #endif |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 75 | |
| 76 | /* |
| 77 | * Define a linker symbol to mark start of the RW memory area for this |
| 78 | * image. |
| 79 | */ |
| 80 | __RW_START__ = . ; |
| 81 | |
Douglas Raillard | 306593d | 2017-02-24 18:14:15 +0000 | [diff] [blame] | 82 | /* |
| 83 | * .data must be placed at a lower address than the stacks if the stack |
| 84 | * protector is enabled. Alternatively, the .data.stack_protector_canary |
| 85 | * section can be placed independently of the main .data section. |
| 86 | */ |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 87 | .data . : { |
| 88 | __DATA_START__ = .; |
Samuel Holland | 23f5e54 | 2019-10-20 16:11:25 -0500 | [diff] [blame] | 89 | *(SORT_BY_ALIGNMENT(.data*)) |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 90 | __DATA_END__ = .; |
| 91 | } >RAM |
| 92 | |
| 93 | stacks (NOLOAD) : { |
| 94 | __STACKS_START__ = .; |
| 95 | *(tzfw_normal_stacks) |
| 96 | __STACKS_END__ = .; |
| 97 | } >RAM |
| 98 | |
Masahiro Yamada | dd053b6 | 2020-03-26 13:16:33 +0900 | [diff] [blame] | 99 | BSS_SECTION >RAM |
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 100 | XLAT_TABLE_SECTION >RAM |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 101 | |
| 102 | #if USE_COHERENT_MEM |
| 103 | /* |
| 104 | * The base address of the coherent memory section must be page-aligned (4K) |
| 105 | * to guarantee that the coherent data are stored on their own pages and |
| 106 | * are not mixed with normal data. This is required to set up the correct |
| 107 | * memory attributes for the coherent data page tables. |
| 108 | */ |
Antonio Nino Diaz | 2ce2b09 | 2017-11-15 11:45:35 +0000 | [diff] [blame] | 109 | coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) { |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 110 | __COHERENT_RAM_START__ = .; |
| 111 | *(tzfw_coherent_mem) |
| 112 | __COHERENT_RAM_END_UNALIGNED__ = .; |
| 113 | /* |
| 114 | * Memory page(s) mapped to this section will be marked |
| 115 | * as device memory. No other unexpected data must creep in. |
| 116 | * Ensure the rest of the current memory page is unused. |
| 117 | */ |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 118 | . = ALIGN(PAGE_SIZE); |
Yatharth Kochar | b1c2fe0 | 2015-10-14 15:27:24 +0100 | [diff] [blame] | 119 | __COHERENT_RAM_END__ = .; |
| 120 | } >RAM |
| 121 | #endif |
| 122 | |
| 123 | /* |
| 124 | * Define a linker symbol to mark end of the RW memory area for this |
| 125 | * image. |
| 126 | */ |
| 127 | __RW_END__ = .; |
| 128 | __BL2U_END__ = .; |
| 129 | |
| 130 | __BSS_SIZE__ = SIZEOF(.bss); |
| 131 | |
| 132 | ASSERT(. <= BL2U_LIMIT, "BL2U image has exceeded its limit.") |
| 133 | } |