Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 1 | /* |
Masahiro Yamada | de634f8 | 2020-01-17 13:45:14 +0900 | [diff] [blame] | 2 | * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 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> |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 9 | #include <platform_def.h> |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 10 | |
| 11 | OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT) |
| 12 | OUTPUT_ARCH(PLATFORM_LINKER_ARCH) |
Jeenu Viswambharan | 2a30a75 | 2014-03-11 11:06:45 +0000 | [diff] [blame] | 13 | ENTRY(tsp_entrypoint) |
| 14 | |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 15 | |
| 16 | MEMORY { |
Sandrine Bailleux | 5ac3cc9 | 2014-05-20 17:22:24 +0100 | [diff] [blame] | 17 | RAM (rwx): ORIGIN = TSP_SEC_MEM_BASE, LENGTH = TSP_SEC_MEM_SIZE |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 18 | } |
| 19 | |
| 20 | |
| 21 | SECTIONS |
| 22 | { |
| 23 | . = BL32_BASE; |
Antonio Nino Diaz | 2ce2b09 | 2017-11-15 11:45:35 +0000 | [diff] [blame] | 24 | ASSERT(. == ALIGN(PAGE_SIZE), |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 25 | "BL32_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 | *tsp_entrypoint.o(.text*) |
| 31 | *(.text*) |
| 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 | |
| 37 | .rodata . : { |
| 38 | __RODATA_START__ = .; |
| 39 | *(.rodata*) |
Masahiro Yamada | de634f8 | 2020-01-17 13:45:14 +0900 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * Keep the .got section in the RO section as it is patched |
| 43 | * prior to enabling the MMU and having the .got in RO is better for |
| 44 | * security. GOT is a table of addresses so ensure 8-byte alignment. |
| 45 | */ |
| 46 | . = ALIGN(8); |
| 47 | __GOT_START__ = .; |
| 48 | *(.got) |
| 49 | __GOT_END__ = .; |
| 50 | |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 51 | . = ALIGN(PAGE_SIZE); |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 52 | __RODATA_END__ = .; |
| 53 | } >RAM |
| 54 | #else |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 55 | ro . : { |
| 56 | __RO_START__ = .; |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 57 | *tsp_entrypoint.o(.text*) |
| 58 | *(.text*) |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 59 | *(.rodata*) |
Masahiro Yamada | de634f8 | 2020-01-17 13:45:14 +0900 | [diff] [blame] | 60 | |
| 61 | /* |
| 62 | * Keep the .got section in the RO section as it is patched |
| 63 | * prior to enabling the MMU and having the .got in RO is better for |
| 64 | * security. GOT is a table of addresses so ensure 8-byte alignment. |
| 65 | */ |
| 66 | . = ALIGN(8); |
| 67 | __GOT_START__ = .; |
| 68 | *(.got) |
| 69 | __GOT_END__ = .; |
| 70 | |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 71 | *(.vectors) |
Masahiro Yamada | de634f8 | 2020-01-17 13:45:14 +0900 | [diff] [blame] | 72 | |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 73 | __RO_END_UNALIGNED__ = .; |
| 74 | /* |
| 75 | * Memory page(s) mapped to this section will be marked as |
| 76 | * read-only, executable. No RW data from the next section must |
| 77 | * creep in. Ensure the rest of the current memory page is unused. |
| 78 | */ |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 79 | . = ALIGN(PAGE_SIZE); |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 80 | __RO_END__ = .; |
| 81 | } >RAM |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 82 | #endif |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 83 | |
Achin Gupta | e9c4a64 | 2015-09-11 16:03:13 +0100 | [diff] [blame] | 84 | /* |
| 85 | * Define a linker symbol to mark start of the RW memory area for this |
| 86 | * image. |
| 87 | */ |
| 88 | __RW_START__ = . ; |
| 89 | |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 90 | .data . : { |
| 91 | __DATA_START__ = .; |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 92 | *(.data*) |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 93 | __DATA_END__ = .; |
| 94 | } >RAM |
| 95 | |
Masahiro Yamada | de634f8 | 2020-01-17 13:45:14 +0900 | [diff] [blame] | 96 | /* |
| 97 | * .rela.dyn needs to come after .data for the read-elf utility to parse |
| 98 | * this section correctly. Ensure 8-byte alignment so that the fields of |
| 99 | * RELA data structure are aligned. |
| 100 | */ |
| 101 | . = ALIGN(8); |
| 102 | __RELA_START__ = .; |
| 103 | .rela.dyn . : { |
| 104 | } >RAM |
| 105 | __RELA_END__ = .; |
| 106 | |
Dan Handley | 4fd2f5c | 2014-08-04 11:41:20 +0100 | [diff] [blame] | 107 | #ifdef TSP_PROGBITS_LIMIT |
| 108 | ASSERT(. <= TSP_PROGBITS_LIMIT, "TSP progbits has exceeded its limit.") |
Sandrine Bailleux | e2e0c65 | 2014-06-16 16:12:27 +0100 | [diff] [blame] | 109 | #endif |
| 110 | |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 111 | stacks (NOLOAD) : { |
| 112 | __STACKS_START__ = .; |
| 113 | *(tzfw_normal_stacks) |
| 114 | __STACKS_END__ = .; |
| 115 | } >RAM |
| 116 | |
| 117 | /* |
| 118 | * The .bss section gets initialised to 0 at runtime. |
Douglas Raillard | 21362a9 | 2016-12-02 13:51:54 +0000 | [diff] [blame] | 119 | * Its base address should be 16-byte aligned for better performance of the |
| 120 | * zero-initialization code. |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 121 | */ |
| 122 | .bss : ALIGN(16) { |
| 123 | __BSS_START__ = .; |
Andrew Thoelke | e01ea34 | 2014-03-18 07:13:52 +0000 | [diff] [blame] | 124 | *(SORT_BY_ALIGNMENT(.bss*)) |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 125 | *(COMMON) |
| 126 | __BSS_END__ = .; |
| 127 | } >RAM |
| 128 | |
Masahiro Yamada | 0b67e56 | 2020-03-09 17:39:48 +0900 | [diff] [blame] | 129 | XLAT_TABLE_SECTION >RAM |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 130 | |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 131 | #if USE_COHERENT_MEM |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 132 | /* |
| 133 | * The base address of the coherent memory section must be page-aligned (4K) |
| 134 | * to guarantee that the coherent data are stored on their own pages and |
| 135 | * are not mixed with normal data. This is required to set up the correct |
| 136 | * memory attributes for the coherent data page tables. |
| 137 | */ |
Antonio Nino Diaz | 2ce2b09 | 2017-11-15 11:45:35 +0000 | [diff] [blame] | 138 | coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) { |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 139 | __COHERENT_RAM_START__ = .; |
| 140 | *(tzfw_coherent_mem) |
| 141 | __COHERENT_RAM_END_UNALIGNED__ = .; |
| 142 | /* |
| 143 | * Memory page(s) mapped to this section will be marked |
| 144 | * as device memory. No other unexpected data must creep in. |
| 145 | * Ensure the rest of the current memory page is unused. |
| 146 | */ |
Roberto Vargas | d93fde3 | 2018-04-11 11:53:31 +0100 | [diff] [blame] | 147 | . = ALIGN(PAGE_SIZE); |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 148 | __COHERENT_RAM_END__ = .; |
| 149 | } >RAM |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 150 | #endif |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 151 | |
Achin Gupta | e9c4a64 | 2015-09-11 16:03:13 +0100 | [diff] [blame] | 152 | /* |
| 153 | * Define a linker symbol to mark the end of the RW memory area for this |
| 154 | * image. |
| 155 | */ |
| 156 | __RW_END__ = .; |
Sandrine Bailleux | e701e30 | 2014-05-20 17:28:25 +0100 | [diff] [blame] | 157 | __BL32_END__ = .; |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 158 | |
Masahiro Yamada | de634f8 | 2020-01-17 13:45:14 +0900 | [diff] [blame] | 159 | /DISCARD/ : { |
| 160 | *(.dynsym .dynstr .hash .gnu.hash) |
| 161 | } |
| 162 | |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 163 | __BSS_SIZE__ = SIZEOF(.bss); |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 164 | #if USE_COHERENT_MEM |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 165 | __COHERENT_RAM_UNALIGNED_SIZE__ = |
| 166 | __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__; |
Soby Mathew | 2ae2043 | 2015-01-08 18:02:44 +0000 | [diff] [blame] | 167 | #endif |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 168 | |
Juan Castillo | 7d19941 | 2015-12-14 09:35:25 +0000 | [diff] [blame] | 169 | ASSERT(. <= BL32_LIMIT, "BL32 image has exceeded its limit.") |
Achin Gupta | 7c88f3f | 2014-02-18 18:09:12 +0000 | [diff] [blame] | 170 | } |