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