Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2004-2008 Texas Instruments |
| 3 | * |
| 4 | * (C) Copyright 2002 |
| 5 | * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de> |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Marc Zyngier | bf433af | 2014-07-12 14:24:02 +0100 | [diff] [blame] | 10 | #include <config.h> |
Chen-Yu Tsai | 980d6a5 | 2016-06-19 12:38:36 +0800 | [diff] [blame] | 11 | #include <asm/psci.h> |
Marc Zyngier | bf433af | 2014-07-12 14:24:02 +0100 | [diff] [blame] | 12 | |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 13 | OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") |
| 14 | OUTPUT_ARCH(arm) |
| 15 | ENTRY(_start) |
| 16 | SECTIONS |
| 17 | { |
Simon Glass | c135211 | 2016-03-13 19:07:29 -0600 | [diff] [blame] | 18 | #ifndef CONFIG_CMDLINE |
| 19 | /DISCARD/ : { *(.u_boot_list_2_cmd_*) } |
| 20 | #endif |
Wang Dongsheng | c5e954e | 2016-01-18 11:02:40 +0800 | [diff] [blame] | 21 | #if defined(CONFIG_ARMV7_SECURE_BASE) && defined(CONFIG_ARMV7_NONSEC) |
Peng Fan | d47cb0b | 2015-10-23 10:13:03 +0800 | [diff] [blame] | 22 | /* |
Wang Dongsheng | c5e954e | 2016-01-18 11:02:40 +0800 | [diff] [blame] | 23 | * If CONFIG_ARMV7_SECURE_BASE is true, secure code will not |
| 24 | * bundle with u-boot, and code offsets are fixed. Secure zone |
| 25 | * only needs to be copied from the loading address to |
| 26 | * CONFIG_ARMV7_SECURE_BASE, which is the linking and running |
| 27 | * address for secure code. |
Peng Fan | d47cb0b | 2015-10-23 10:13:03 +0800 | [diff] [blame] | 28 | * |
Wang Dongsheng | c5e954e | 2016-01-18 11:02:40 +0800 | [diff] [blame] | 29 | * If CONFIG_ARMV7_SECURE_BASE is undefined, the secure zone will |
| 30 | * be included in u-boot address space, and some absolute address |
| 31 | * were used in secure code. The absolute addresses of the secure |
| 32 | * code also needs to be relocated along with the accompanying u-boot |
| 33 | * code. |
| 34 | * |
| 35 | * So DISCARD is only for CONFIG_ARMV7_SECURE_BASE. |
Peng Fan | d47cb0b | 2015-10-23 10:13:03 +0800 | [diff] [blame] | 36 | */ |
| 37 | /DISCARD/ : { *(.rel._secure*) } |
Wang Dongsheng | c5e954e | 2016-01-18 11:02:40 +0800 | [diff] [blame] | 38 | #endif |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 39 | . = 0x00000000; |
| 40 | |
| 41 | . = ALIGN(4); |
| 42 | .text : |
| 43 | { |
Albert ARIBAUD | d026dec | 2013-06-11 14:17:33 +0200 | [diff] [blame] | 44 | *(.__image_copy_start) |
Albert ARIBAUD | 41623c9 | 2014-04-15 16:13:51 +0200 | [diff] [blame] | 45 | *(.vectors) |
Stephen Warren | b68d671 | 2012-10-22 06:19:32 +0000 | [diff] [blame] | 46 | CPUDIR/start.o (.text*) |
| 47 | *(.text*) |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 48 | } |
| 49 | |
Jan Kiszka | 104d6fb | 2015-04-21 07:18:24 +0200 | [diff] [blame] | 50 | #ifdef CONFIG_ARMV7_NONSEC |
Marc Zyngier | bf433af | 2014-07-12 14:24:02 +0100 | [diff] [blame] | 51 | |
Chen-Yu Tsai | a1274cc | 2016-06-19 12:38:34 +0800 | [diff] [blame] | 52 | /* Align the secure section only if we're going to use it in situ */ |
| 53 | .__secure_start : |
| 54 | #ifndef CONFIG_ARMV7_SECURE_BASE |
| 55 | ALIGN(CONSTANT(COMMONPAGESIZE)) |
| 56 | #endif |
| 57 | { |
| 58 | KEEP(*(.__secure_start)) |
| 59 | } |
| 60 | |
Marc Zyngier | bf433af | 2014-07-12 14:24:02 +0100 | [diff] [blame] | 61 | #ifndef CONFIG_ARMV7_SECURE_BASE |
| 62 | #define CONFIG_ARMV7_SECURE_BASE |
Chen-Yu Tsai | b56e06d | 2016-06-07 10:54:27 +0800 | [diff] [blame] | 63 | #define __ARMV7_PSCI_STACK_IN_RAM |
Marc Zyngier | bf433af | 2014-07-12 14:24:02 +0100 | [diff] [blame] | 64 | #endif |
| 65 | |
Marc Zyngier | bf433af | 2014-07-12 14:24:02 +0100 | [diff] [blame] | 66 | .secure_text CONFIG_ARMV7_SECURE_BASE : |
| 67 | AT(ADDR(.__secure_start) + SIZEOF(.__secure_start)) |
| 68 | { |
| 69 | *(._secure.text) |
| 70 | } |
| 71 | |
Chen-Yu Tsai | a5aa7ff | 2016-07-05 21:45:06 +0800 | [diff] [blame] | 72 | .secure_data : AT(LOADADDR(.secure_text) + SIZEOF(.secure_text)) |
| 73 | { |
| 74 | *(._secure.data) |
| 75 | } |
| 76 | |
Masahiro Yamada | 2fe1281 | 2016-09-26 14:21:30 +0900 | [diff] [blame] | 77 | #ifdef CONFIG_ARMV7_PSCI |
Chen-Yu Tsai | a5aa7ff | 2016-07-05 21:45:06 +0800 | [diff] [blame] | 78 | .secure_stack ALIGN(ADDR(.secure_data) + SIZEOF(.secure_data), |
Chen-Yu Tsai | 980d6a5 | 2016-06-19 12:38:36 +0800 | [diff] [blame] | 79 | CONSTANT(COMMONPAGESIZE)) (NOLOAD) : |
Chen-Yu Tsai | b56e06d | 2016-06-07 10:54:27 +0800 | [diff] [blame] | 80 | #ifdef __ARMV7_PSCI_STACK_IN_RAM |
Chen-Yu Tsai | 980d6a5 | 2016-06-19 12:38:36 +0800 | [diff] [blame] | 81 | AT(ADDR(.secure_stack)) |
| 82 | #else |
Chen-Yu Tsai | a5aa7ff | 2016-07-05 21:45:06 +0800 | [diff] [blame] | 83 | AT(LOADADDR(.secure_data) + SIZEOF(.secure_data)) |
Chen-Yu Tsai | 980d6a5 | 2016-06-19 12:38:36 +0800 | [diff] [blame] | 84 | #endif |
| 85 | { |
| 86 | KEEP(*(.__secure_stack_start)) |
Masahiro Yamada | 2fe1281 | 2016-09-26 14:21:30 +0900 | [diff] [blame] | 87 | |
Chen-Yu Tsai | 980d6a5 | 2016-06-19 12:38:36 +0800 | [diff] [blame] | 88 | /* Skip addreses for stack */ |
| 89 | . = . + CONFIG_ARMV7_PSCI_NR_CPUS * ARM_PSCI_STACK_SIZE; |
Masahiro Yamada | 2fe1281 | 2016-09-26 14:21:30 +0900 | [diff] [blame] | 90 | |
Chen-Yu Tsai | 980d6a5 | 2016-06-19 12:38:36 +0800 | [diff] [blame] | 91 | /* Align end of stack section to page boundary */ |
| 92 | . = ALIGN(CONSTANT(COMMONPAGESIZE)); |
| 93 | |
| 94 | KEEP(*(.__secure_stack_end)) |
Chen-Yu Tsai | 3eff681 | 2016-06-19 12:38:39 +0800 | [diff] [blame] | 95 | |
| 96 | #ifdef CONFIG_ARMV7_SECURE_MAX_SIZE |
| 97 | /* |
| 98 | * We are not checking (__secure_end - __secure_start) here, |
| 99 | * as these are the load addresses, and do not include the |
| 100 | * stack section. Instead, use the end of the stack section |
| 101 | * and the start of the text section. |
| 102 | */ |
| 103 | ASSERT((. - ADDR(.secure_text)) <= CONFIG_ARMV7_SECURE_MAX_SIZE, |
| 104 | "Error: secure section exceeds secure memory size"); |
| 105 | #endif |
Chen-Yu Tsai | 980d6a5 | 2016-06-19 12:38:36 +0800 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | #ifndef __ARMV7_PSCI_STACK_IN_RAM |
| 109 | /* Reset VMA but don't allocate space if we have secure SRAM */ |
| 110 | . = LOADADDR(.secure_stack); |
Chen-Yu Tsai | b56e06d | 2016-06-07 10:54:27 +0800 | [diff] [blame] | 111 | #endif |
| 112 | |
Masahiro Yamada | 2fe1281 | 2016-09-26 14:21:30 +0900 | [diff] [blame] | 113 | #endif |
| 114 | |
Chen-Yu Tsai | 980d6a5 | 2016-06-19 12:38:36 +0800 | [diff] [blame] | 115 | .__secure_end : AT(ADDR(.__secure_end)) { |
Marc Zyngier | bf433af | 2014-07-12 14:24:02 +0100 | [diff] [blame] | 116 | *(.__secure_end) |
| 117 | LONG(0x1d1071c); /* Must output something to reset LMA */ |
| 118 | } |
| 119 | #endif |
| 120 | |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 121 | . = ALIGN(4); |
| 122 | .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } |
| 123 | |
| 124 | . = ALIGN(4); |
| 125 | .data : { |
Stephen Warren | b68d671 | 2012-10-22 06:19:32 +0000 | [diff] [blame] | 126 | *(.data*) |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | . = ALIGN(4); |
| 130 | |
| 131 | . = .; |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 132 | |
| 133 | . = ALIGN(4); |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 134 | .u_boot_list : { |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 135 | KEEP(*(SORT(.u_boot_list*))); |
Marek Vasut | 5567514 | 2012-10-12 10:27:03 +0000 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | . = ALIGN(4); |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 139 | |
Alexander Graf | 50149ea | 2016-03-04 01:10:01 +0100 | [diff] [blame] | 140 | .__efi_runtime_start : { |
| 141 | *(.__efi_runtime_start) |
| 142 | } |
| 143 | |
| 144 | .efi_runtime : { |
| 145 | *(efi_runtime_text) |
| 146 | *(efi_runtime_data) |
| 147 | } |
| 148 | |
| 149 | .__efi_runtime_stop : { |
| 150 | *(.__efi_runtime_stop) |
| 151 | } |
| 152 | |
| 153 | .efi_runtime_rel_start : |
| 154 | { |
| 155 | *(.__efi_runtime_rel_start) |
| 156 | } |
| 157 | |
| 158 | .efi_runtime_rel : { |
| 159 | *(.relefi_runtime_text) |
| 160 | *(.relefi_runtime_data) |
| 161 | } |
| 162 | |
| 163 | .efi_runtime_rel_stop : |
| 164 | { |
| 165 | *(.__efi_runtime_rel_stop) |
| 166 | } |
| 167 | |
Tom Rini | 83ebd4a | 2017-06-14 09:13:21 -0400 | [diff] [blame] | 168 | . = ALIGN(4); |
Alexander Graf | 50149ea | 2016-03-04 01:10:01 +0100 | [diff] [blame] | 169 | |
Albert ARIBAUD | d026dec | 2013-06-11 14:17:33 +0200 | [diff] [blame] | 170 | .image_copy_end : |
| 171 | { |
| 172 | *(.__image_copy_end) |
| 173 | } |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 174 | |
Albert ARIBAUD | 47bd65e | 2013-06-11 14:17:34 +0200 | [diff] [blame] | 175 | .rel_dyn_start : |
| 176 | { |
| 177 | *(.__rel_dyn_start) |
| 178 | } |
| 179 | |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 180 | .rel.dyn : { |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 181 | *(.rel*) |
Albert ARIBAUD | 47bd65e | 2013-06-11 14:17:34 +0200 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | .rel_dyn_end : |
| 185 | { |
| 186 | *(.__rel_dyn_end) |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Albert ARIBAUD | d0b5d9d | 2014-02-22 17:53:42 +0100 | [diff] [blame] | 189 | .end : |
| 190 | { |
| 191 | *(.__end) |
| 192 | } |
| 193 | |
| 194 | _image_binary_end = .; |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 195 | |
| 196 | /* |
| 197 | * Deprecated: this MMU section is used by pxa at present but |
| 198 | * should not be used by new boards/CPUs. |
| 199 | */ |
| 200 | . = ALIGN(4096); |
| 201 | .mmutable : { |
| 202 | *(.mmutable) |
| 203 | } |
| 204 | |
Albert ARIBAUD | f84a7b8 | 2013-04-11 05:43:21 +0000 | [diff] [blame] | 205 | /* |
| 206 | * Compiler-generated __bss_start and __bss_end, see arch/arm/lib/bss.c |
| 207 | * __bss_base and __bss_limit are for linker only (overlay ordering) |
| 208 | */ |
| 209 | |
Albert ARIBAUD | 3ebd1cb | 2013-02-25 00:58:59 +0000 | [diff] [blame] | 210 | .bss_start __rel_dyn_start (OVERLAY) : { |
| 211 | KEEP(*(.__bss_start)); |
Albert ARIBAUD | f84a7b8 | 2013-04-11 05:43:21 +0000 | [diff] [blame] | 212 | __bss_base = .; |
Albert ARIBAUD | 3ebd1cb | 2013-02-25 00:58:59 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Albert ARIBAUD | f84a7b8 | 2013-04-11 05:43:21 +0000 | [diff] [blame] | 215 | .bss __bss_base (OVERLAY) : { |
Stephen Warren | b68d671 | 2012-10-22 06:19:32 +0000 | [diff] [blame] | 216 | *(.bss*) |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 217 | . = ALIGN(4); |
Albert ARIBAUD | f84a7b8 | 2013-04-11 05:43:21 +0000 | [diff] [blame] | 218 | __bss_limit = .; |
Albert ARIBAUD | 3ebd1cb | 2013-02-25 00:58:59 +0000 | [diff] [blame] | 219 | } |
Tom Rini | 0ce033d | 2013-03-18 12:31:00 -0400 | [diff] [blame] | 220 | |
Albert ARIBAUD | f84a7b8 | 2013-04-11 05:43:21 +0000 | [diff] [blame] | 221 | .bss_end __bss_limit (OVERLAY) : { |
| 222 | KEEP(*(.__bss_end)); |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Albert ARIBAUD | d0b5d9d | 2014-02-22 17:53:42 +0100 | [diff] [blame] | 225 | .dynsym _image_binary_end : { *(.dynsym) } |
Albert ARIBAUD | 47ed5dd | 2013-11-07 14:21:46 +0100 | [diff] [blame] | 226 | .dynbss : { *(.dynbss) } |
| 227 | .dynstr : { *(.dynstr*) } |
| 228 | .dynamic : { *(.dynamic*) } |
| 229 | .plt : { *(.plt*) } |
| 230 | .interp : { *(.interp*) } |
Andreas Färber | 2c67e0e | 2014-01-27 05:48:11 +0100 | [diff] [blame] | 231 | .gnu.hash : { *(.gnu.hash) } |
Albert ARIBAUD | 47ed5dd | 2013-11-07 14:21:46 +0100 | [diff] [blame] | 232 | .gnu : { *(.gnu*) } |
| 233 | .ARM.exidx : { *(.ARM.exidx*) } |
Albert ARIBAUD | b02bfc4 | 2014-01-13 14:57:05 +0100 | [diff] [blame] | 234 | .gnu.linkonce.armexidx : { *(.gnu.linkonce.armexidx.*) } |
Simon Glass | dde3b70 | 2012-02-23 03:28:41 +0000 | [diff] [blame] | 235 | } |