Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 1 | /* |
| 2 | * ld script to make ARM Linux kernel |
| 3 | * taken from the i386 version by Russell King |
| 4 | * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> |
| 5 | */ |
| 6 | |
| 7 | #include <asm-generic/vmlinux.lds.h> |
Ard Biesheuvel | 98fb754 | 2015-12-01 13:20:40 +0100 | [diff] [blame] | 8 | #include <asm/cache.h> |
Suzuki K. Poulose | 87d1587 | 2015-10-19 14:19:27 +0100 | [diff] [blame] | 9 | #include <asm/kernel-pgtable.h> |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 10 | #include <asm/thread_info.h> |
| 11 | #include <asm/memory.h> |
| 12 | #include <asm/page.h> |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 13 | #include <asm/pgtable.h> |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 14 | |
Mark Rutland | a2c1d73 | 2014-06-24 16:51:36 +0100 | [diff] [blame] | 15 | #include "image.h" |
| 16 | |
Will Deacon | 07c802b | 2014-11-25 15:26:13 +0000 | [diff] [blame] | 17 | /* .exit.text needed in case of alternative patching */ |
| 18 | #define ARM_EXIT_KEEP(x) x |
| 19 | #define ARM_EXIT_DISCARD(x) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 20 | |
| 21 | OUTPUT_ARCH(aarch64) |
Geoff Levand | af885f4 | 2014-05-16 18:26:01 +0100 | [diff] [blame] | 22 | ENTRY(_text) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 23 | |
| 24 | jiffies = jiffies_64; |
| 25 | |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 26 | #define HYPERVISOR_TEXT \ |
| 27 | /* \ |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 28 | * Align to 4 KB so that \ |
| 29 | * a) the HYP vector table is at its minimum \ |
| 30 | * alignment of 2048 bytes \ |
| 31 | * b) the HYP init code will not cross a page \ |
| 32 | * boundary if its size does not exceed \ |
| 33 | * 4 KB (see related ASSERT() below) \ |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 34 | */ \ |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 35 | . = ALIGN(SZ_4K); \ |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 36 | VMLINUX_SYMBOL(__hyp_idmap_text_start) = .; \ |
| 37 | *(.hyp.idmap.text) \ |
| 38 | VMLINUX_SYMBOL(__hyp_idmap_text_end) = .; \ |
| 39 | VMLINUX_SYMBOL(__hyp_text_start) = .; \ |
| 40 | *(.hyp.text) \ |
| 41 | VMLINUX_SYMBOL(__hyp_text_end) = .; |
| 42 | |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 43 | #define IDMAP_TEXT \ |
| 44 | . = ALIGN(SZ_4K); \ |
| 45 | VMLINUX_SYMBOL(__idmap_text_start) = .; \ |
| 46 | *(.idmap.text) \ |
| 47 | VMLINUX_SYMBOL(__idmap_text_end) = .; |
| 48 | |
James Morse | 82869ac | 2016-04-27 17:47:12 +0100 | [diff] [blame] | 49 | #ifdef CONFIG_HIBERNATION |
| 50 | #define HIBERNATE_TEXT \ |
| 51 | . = ALIGN(SZ_4K); \ |
| 52 | VMLINUX_SYMBOL(__hibernate_exit_text_start) = .;\ |
| 53 | *(.hibernate_exit.text) \ |
| 54 | VMLINUX_SYMBOL(__hibernate_exit_text_end) = .; |
| 55 | #else |
| 56 | #define HIBERNATE_TEXT |
| 57 | #endif |
| 58 | |
Ard Biesheuvel | a352ea3 | 2014-10-10 18:42:55 +0200 | [diff] [blame] | 59 | /* |
| 60 | * The size of the PE/COFF section that covers the kernel image, which |
| 61 | * runs from stext to _edata, must be a round multiple of the PE/COFF |
| 62 | * FileAlignment, which we set to its minimum value of 0x200. 'stext' |
| 63 | * itself is 4 KB aligned, so padding out _edata to a 0x200 aligned |
| 64 | * boundary should be sufficient. |
| 65 | */ |
| 66 | PECOFF_FILE_ALIGNMENT = 0x200; |
| 67 | |
| 68 | #ifdef CONFIG_EFI |
| 69 | #define PECOFF_EDATA_PADDING \ |
| 70 | .pecoff_edata_padding : { BYTE(0); . = ALIGN(PECOFF_FILE_ALIGNMENT); } |
| 71 | #else |
| 72 | #define PECOFF_EDATA_PADDING |
| 73 | #endif |
| 74 | |
Mark Rutland | cb08381 | 2015-10-26 21:42:33 +0000 | [diff] [blame] | 75 | #if defined(CONFIG_DEBUG_ALIGN_RODATA) |
Ard Biesheuvel | 9774005 | 2016-03-30 17:43:09 +0200 | [diff] [blame] | 76 | /* |
| 77 | * 4 KB granule: 1 level 2 entry |
| 78 | * 16 KB granule: 128 level 3 entries, with contiguous bit |
| 79 | * 64 KB granule: 32 level 3 entries, with contiguous bit |
| 80 | */ |
| 81 | #define SEGMENT_ALIGN SZ_2M |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 82 | #else |
Ard Biesheuvel | 9774005 | 2016-03-30 17:43:09 +0200 | [diff] [blame] | 83 | /* |
| 84 | * 4 KB granule: 16 level 3 entries, with contiguous bit |
| 85 | * 16 KB granule: 4 level 3 entries, without contiguous bit |
| 86 | * 64 KB granule: 1 level 3 entry |
| 87 | */ |
| 88 | #define SEGMENT_ALIGN SZ_64K |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 89 | #endif |
| 90 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 91 | SECTIONS |
| 92 | { |
| 93 | /* |
| 94 | * XXX: The linker does not define how output sections are |
| 95 | * assigned to input sections when there are multiple statements |
| 96 | * matching the same input section name. There is no documented |
| 97 | * order of matching. |
| 98 | */ |
| 99 | /DISCARD/ : { |
| 100 | ARM_EXIT_DISCARD(EXIT_TEXT) |
| 101 | ARM_EXIT_DISCARD(EXIT_DATA) |
| 102 | EXIT_CALL |
| 103 | *(.discard) |
| 104 | *(.discard.*) |
Ard Biesheuvel | 1e48ef7 | 2016-01-26 09:13:44 +0100 | [diff] [blame] | 105 | *(.interp .dynamic) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 106 | } |
| 107 | |
Ard Biesheuvel | ab893fb | 2016-02-16 13:52:36 +0100 | [diff] [blame] | 108 | . = KIMAGE_VADDR + TEXT_OFFSET; |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 109 | |
| 110 | .head.text : { |
| 111 | _text = .; |
| 112 | HEAD_TEXT |
| 113 | } |
| 114 | .text : { /* Real text segment */ |
| 115 | _stext = .; /* Text and read-only data */ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 116 | __exception_text_start = .; |
| 117 | *(.exception.text) |
| 118 | __exception_text_end = .; |
| 119 | IRQENTRY_TEXT |
Alexander Potapenko | be7635e | 2016-03-25 14:22:05 -0700 | [diff] [blame] | 120 | SOFTIRQENTRY_TEXT |
Pratyush Anand | 888b3c8 | 2016-07-08 12:35:50 -0400 | [diff] [blame] | 121 | ENTRY_TEXT |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 122 | TEXT_TEXT |
| 123 | SCHED_TEXT |
| 124 | LOCK_TEXT |
Sandeepa Prabhu | 2dd0e8d | 2016-07-08 12:35:48 -0400 | [diff] [blame] | 125 | KPROBES_TEXT |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 126 | HYPERVISOR_TEXT |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 127 | IDMAP_TEXT |
James Morse | 82869ac | 2016-04-27 17:47:12 +0100 | [diff] [blame] | 128 | HIBERNATE_TEXT |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 129 | *(.fixup) |
| 130 | *(.gnu.warning) |
| 131 | . = ALIGN(16); |
| 132 | *(.got) /* Global offset table */ |
| 133 | } |
| 134 | |
Ard Biesheuvel | 9774005 | 2016-03-30 17:43:09 +0200 | [diff] [blame] | 135 | . = ALIGN(SEGMENT_ALIGN); |
Ard Biesheuvel | 9fdc14c5 | 2016-06-23 15:53:17 +0200 | [diff] [blame] | 136 | _etext = .; /* End of text section */ |
| 137 | |
| 138 | RO_DATA(PAGE_SIZE) /* everything from this point to */ |
| 139 | EXCEPTION_TABLE(8) /* __init_begin will be marked RO NX */ |
Mark Salter | c80b7ee | 2013-08-23 16:16:42 +0100 | [diff] [blame] | 140 | NOTES |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 141 | |
Ard Biesheuvel | 9774005 | 2016-03-30 17:43:09 +0200 | [diff] [blame] | 142 | . = ALIGN(SEGMENT_ALIGN); |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 143 | __init_begin = .; |
| 144 | |
| 145 | INIT_TEXT_SECTION(8) |
| 146 | .exit.text : { |
| 147 | ARM_EXIT_KEEP(EXIT_TEXT) |
| 148 | } |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 149 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 150 | .init.data : { |
| 151 | INIT_DATA |
| 152 | INIT_SETUP(16) |
| 153 | INIT_CALLS |
| 154 | CON_INITCALL |
| 155 | SECURITY_INITCALL |
| 156 | INIT_RAM_FS |
Ard Biesheuvel | 1ce99bf | 2016-02-17 12:35:58 +0000 | [diff] [blame] | 157 | *(.init.rodata.* .init.bss) /* from the EFI stub */ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 158 | } |
| 159 | .exit.data : { |
| 160 | ARM_EXIT_KEEP(EXIT_DATA) |
| 161 | } |
| 162 | |
Ard Biesheuvel | 98fb754 | 2015-12-01 13:20:40 +0100 | [diff] [blame] | 163 | PERCPU_SECTION(L1_CACHE_BYTES) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 164 | |
Andre Przywara | e039ee4 | 2014-11-14 15:54:08 +0000 | [diff] [blame] | 165 | . = ALIGN(4); |
| 166 | .altinstructions : { |
| 167 | __alt_instructions = .; |
| 168 | *(.altinstructions) |
| 169 | __alt_instructions_end = .; |
| 170 | } |
| 171 | .altinstr_replacement : { |
| 172 | *(.altinstr_replacement) |
| 173 | } |
Ard Biesheuvel | 1e48ef7 | 2016-01-26 09:13:44 +0100 | [diff] [blame] | 174 | .rela : ALIGN(8) { |
Ard Biesheuvel | 1e48ef7 | 2016-01-26 09:13:44 +0100 | [diff] [blame] | 175 | *(.rela .rela*) |
Ard Biesheuvel | 1e48ef7 | 2016-01-26 09:13:44 +0100 | [diff] [blame] | 176 | } |
| 177 | .dynsym : ALIGN(8) { |
Ard Biesheuvel | 1e48ef7 | 2016-01-26 09:13:44 +0100 | [diff] [blame] | 178 | *(.dynsym) |
| 179 | } |
| 180 | .dynstr : { |
| 181 | *(.dynstr) |
| 182 | } |
| 183 | .hash : { |
| 184 | *(.hash) |
| 185 | } |
Andre Przywara | e039ee4 | 2014-11-14 15:54:08 +0000 | [diff] [blame] | 186 | |
Ard Biesheuvel | 0cd3def | 2016-04-18 17:09:43 +0200 | [diff] [blame] | 187 | __rela_offset = ADDR(.rela) - KIMAGE_VADDR; |
| 188 | __rela_size = SIZEOF(.rela); |
| 189 | __dynsym_offset = ADDR(.dynsym) - KIMAGE_VADDR; |
| 190 | |
Ard Biesheuvel | 9774005 | 2016-03-30 17:43:09 +0200 | [diff] [blame] | 191 | . = ALIGN(SEGMENT_ALIGN); |
Mark Rutland | 9aa4ec1 | 2015-12-09 12:44:38 +0000 | [diff] [blame] | 192 | __init_end = .; |
| 193 | |
Mark Salter | 3c62062 | 2013-11-04 16:38:47 +0000 | [diff] [blame] | 194 | _data = .; |
Mark Salter | 3c62062 | 2013-11-04 16:38:47 +0000 | [diff] [blame] | 195 | _sdata = .; |
Ard Biesheuvel | 98fb754 | 2015-12-01 13:20:40 +0100 | [diff] [blame] | 196 | RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE) |
Ard Biesheuvel | a352ea3 | 2014-10-10 18:42:55 +0200 | [diff] [blame] | 197 | PECOFF_EDATA_PADDING |
Mark Salter | 3c62062 | 2013-11-04 16:38:47 +0000 | [diff] [blame] | 198 | _edata = .; |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 199 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 200 | BSS_SECTION(0, 0, 0) |
Mark Rutland | bd00cd5f | 2014-06-24 16:51:35 +0100 | [diff] [blame] | 201 | |
| 202 | . = ALIGN(PAGE_SIZE); |
| 203 | idmap_pg_dir = .; |
| 204 | . += IDMAP_DIR_SIZE; |
| 205 | swapper_pg_dir = .; |
| 206 | . += SWAPPER_DIR_SIZE; |
| 207 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 208 | _end = .; |
| 209 | |
| 210 | STABS_DEBUG |
Mark Rutland | a2c1d73 | 2014-06-24 16:51:36 +0100 | [diff] [blame] | 211 | |
| 212 | HEAD_SYMBOLS |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 213 | } |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 214 | |
| 215 | /* |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 216 | * The HYP init code and ID map text can't be longer than a page each, |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 217 | * and should not cross a page boundary. |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 218 | */ |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 219 | ASSERT(__hyp_idmap_text_end - (__hyp_idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K, |
| 220 | "HYP init code too big or misaligned") |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 221 | ASSERT(__idmap_text_end - (__idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K, |
| 222 | "ID map text too big or misaligned") |
James Morse | 82869ac | 2016-04-27 17:47:12 +0100 | [diff] [blame] | 223 | #ifdef CONFIG_HIBERNATION |
| 224 | ASSERT(__hibernate_exit_text_end - (__hibernate_exit_text_start & ~(SZ_4K - 1)) |
| 225 | <= SZ_4K, "Hibernate exit text too big or misaligned") |
| 226 | #endif |
Mark Rutland | da57a36 | 2014-06-24 16:51:37 +0100 | [diff] [blame] | 227 | |
| 228 | /* |
| 229 | * If padding is applied before .head.text, virt<->phys conversions will fail. |
| 230 | */ |
Ard Biesheuvel | ab893fb | 2016-02-16 13:52:36 +0100 | [diff] [blame] | 231 | ASSERT(_text == (KIMAGE_VADDR + TEXT_OFFSET), "HEAD is misaligned") |