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> |
Suzuki K. Poulose | 87d1587 | 2015-10-19 14:19:27 +0100 | [diff] [blame^] | 8 | #include <asm/kernel-pgtable.h> |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 9 | #include <asm/thread_info.h> |
| 10 | #include <asm/memory.h> |
| 11 | #include <asm/page.h> |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 12 | #include <asm/pgtable.h> |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 13 | |
Mark Rutland | a2c1d73 | 2014-06-24 16:51:36 +0100 | [diff] [blame] | 14 | #include "image.h" |
| 15 | |
Will Deacon | 07c802b | 2014-11-25 15:26:13 +0000 | [diff] [blame] | 16 | /* .exit.text needed in case of alternative patching */ |
| 17 | #define ARM_EXIT_KEEP(x) x |
| 18 | #define ARM_EXIT_DISCARD(x) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 19 | |
| 20 | OUTPUT_ARCH(aarch64) |
Geoff Levand | af885f4 | 2014-05-16 18:26:01 +0100 | [diff] [blame] | 21 | ENTRY(_text) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 22 | |
| 23 | jiffies = jiffies_64; |
| 24 | |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 25 | #define HYPERVISOR_TEXT \ |
| 26 | /* \ |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 27 | * Align to 4 KB so that \ |
| 28 | * a) the HYP vector table is at its minimum \ |
| 29 | * alignment of 2048 bytes \ |
| 30 | * b) the HYP init code will not cross a page \ |
| 31 | * boundary if its size does not exceed \ |
| 32 | * 4 KB (see related ASSERT() below) \ |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 33 | */ \ |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 34 | . = ALIGN(SZ_4K); \ |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 35 | VMLINUX_SYMBOL(__hyp_idmap_text_start) = .; \ |
| 36 | *(.hyp.idmap.text) \ |
| 37 | VMLINUX_SYMBOL(__hyp_idmap_text_end) = .; \ |
| 38 | VMLINUX_SYMBOL(__hyp_text_start) = .; \ |
| 39 | *(.hyp.text) \ |
| 40 | VMLINUX_SYMBOL(__hyp_text_end) = .; |
| 41 | |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 42 | #define IDMAP_TEXT \ |
| 43 | . = ALIGN(SZ_4K); \ |
| 44 | VMLINUX_SYMBOL(__idmap_text_start) = .; \ |
| 45 | *(.idmap.text) \ |
| 46 | VMLINUX_SYMBOL(__idmap_text_end) = .; |
| 47 | |
Ard Biesheuvel | a352ea3 | 2014-10-10 18:42:55 +0200 | [diff] [blame] | 48 | /* |
| 49 | * The size of the PE/COFF section that covers the kernel image, which |
| 50 | * runs from stext to _edata, must be a round multiple of the PE/COFF |
| 51 | * FileAlignment, which we set to its minimum value of 0x200. 'stext' |
| 52 | * itself is 4 KB aligned, so padding out _edata to a 0x200 aligned |
| 53 | * boundary should be sufficient. |
| 54 | */ |
| 55 | PECOFF_FILE_ALIGNMENT = 0x200; |
| 56 | |
| 57 | #ifdef CONFIG_EFI |
| 58 | #define PECOFF_EDATA_PADDING \ |
| 59 | .pecoff_edata_padding : { BYTE(0); . = ALIGN(PECOFF_FILE_ALIGNMENT); } |
| 60 | #else |
| 61 | #define PECOFF_EDATA_PADDING |
| 62 | #endif |
| 63 | |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 64 | #ifdef CONFIG_DEBUG_ALIGN_RODATA |
| 65 | #define ALIGN_DEBUG_RO . = ALIGN(1<<SECTION_SHIFT); |
| 66 | #define ALIGN_DEBUG_RO_MIN(min) ALIGN_DEBUG_RO |
| 67 | #else |
| 68 | #define ALIGN_DEBUG_RO |
| 69 | #define ALIGN_DEBUG_RO_MIN(min) . = ALIGN(min); |
| 70 | #endif |
| 71 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 72 | SECTIONS |
| 73 | { |
| 74 | /* |
| 75 | * XXX: The linker does not define how output sections are |
| 76 | * assigned to input sections when there are multiple statements |
| 77 | * matching the same input section name. There is no documented |
| 78 | * order of matching. |
| 79 | */ |
| 80 | /DISCARD/ : { |
| 81 | ARM_EXIT_DISCARD(EXIT_TEXT) |
| 82 | ARM_EXIT_DISCARD(EXIT_DATA) |
| 83 | EXIT_CALL |
| 84 | *(.discard) |
| 85 | *(.discard.*) |
| 86 | } |
| 87 | |
| 88 | . = PAGE_OFFSET + TEXT_OFFSET; |
| 89 | |
| 90 | .head.text : { |
| 91 | _text = .; |
| 92 | HEAD_TEXT |
| 93 | } |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 94 | ALIGN_DEBUG_RO |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 95 | .text : { /* Real text segment */ |
| 96 | _stext = .; /* Text and read-only data */ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 97 | __exception_text_start = .; |
| 98 | *(.exception.text) |
| 99 | __exception_text_end = .; |
| 100 | IRQENTRY_TEXT |
| 101 | TEXT_TEXT |
| 102 | SCHED_TEXT |
| 103 | LOCK_TEXT |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 104 | HYPERVISOR_TEXT |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 105 | IDMAP_TEXT |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 106 | *(.fixup) |
| 107 | *(.gnu.warning) |
| 108 | . = ALIGN(16); |
| 109 | *(.got) /* Global offset table */ |
| 110 | } |
| 111 | |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 112 | ALIGN_DEBUG_RO |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 113 | RO_DATA(PAGE_SIZE) |
Will Deacon | adace89 | 2013-05-08 17:29:24 +0100 | [diff] [blame] | 114 | EXCEPTION_TABLE(8) |
Mark Salter | c80b7ee | 2013-08-23 16:16:42 +0100 | [diff] [blame] | 115 | NOTES |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 116 | ALIGN_DEBUG_RO |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 117 | _etext = .; /* End of text and rodata section */ |
| 118 | |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 119 | ALIGN_DEBUG_RO_MIN(PAGE_SIZE) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 120 | __init_begin = .; |
| 121 | |
| 122 | INIT_TEXT_SECTION(8) |
| 123 | .exit.text : { |
| 124 | ARM_EXIT_KEEP(EXIT_TEXT) |
| 125 | } |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 126 | |
| 127 | ALIGN_DEBUG_RO_MIN(16) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 128 | .init.data : { |
| 129 | INIT_DATA |
| 130 | INIT_SETUP(16) |
| 131 | INIT_CALLS |
| 132 | CON_INITCALL |
| 133 | SECURITY_INITCALL |
| 134 | INIT_RAM_FS |
| 135 | } |
| 136 | .exit.data : { |
| 137 | ARM_EXIT_KEEP(EXIT_DATA) |
| 138 | } |
| 139 | |
| 140 | PERCPU_SECTION(64) |
| 141 | |
Yalin Wang | 562c85c | 2014-09-26 03:30:59 +0100 | [diff] [blame] | 142 | . = ALIGN(PAGE_SIZE); |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 143 | __init_end = .; |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 144 | |
Andre Przywara | e039ee4 | 2014-11-14 15:54:08 +0000 | [diff] [blame] | 145 | . = ALIGN(4); |
| 146 | .altinstructions : { |
| 147 | __alt_instructions = .; |
| 148 | *(.altinstructions) |
| 149 | __alt_instructions_end = .; |
| 150 | } |
| 151 | .altinstr_replacement : { |
| 152 | *(.altinstr_replacement) |
| 153 | } |
| 154 | |
| 155 | . = ALIGN(PAGE_SIZE); |
Mark Salter | 3c62062 | 2013-11-04 16:38:47 +0000 | [diff] [blame] | 156 | _data = .; |
Mark Salter | 3c62062 | 2013-11-04 16:38:47 +0000 | [diff] [blame] | 157 | _sdata = .; |
| 158 | RW_DATA_SECTION(64, PAGE_SIZE, THREAD_SIZE) |
Ard Biesheuvel | a352ea3 | 2014-10-10 18:42:55 +0200 | [diff] [blame] | 159 | PECOFF_EDATA_PADDING |
Mark Salter | 3c62062 | 2013-11-04 16:38:47 +0000 | [diff] [blame] | 160 | _edata = .; |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 161 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 162 | BSS_SECTION(0, 0, 0) |
Mark Rutland | bd00cd5f | 2014-06-24 16:51:35 +0100 | [diff] [blame] | 163 | |
| 164 | . = ALIGN(PAGE_SIZE); |
| 165 | idmap_pg_dir = .; |
| 166 | . += IDMAP_DIR_SIZE; |
| 167 | swapper_pg_dir = .; |
| 168 | . += SWAPPER_DIR_SIZE; |
| 169 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 170 | _end = .; |
| 171 | |
| 172 | STABS_DEBUG |
Mark Rutland | a2c1d73 | 2014-06-24 16:51:36 +0100 | [diff] [blame] | 173 | |
| 174 | HEAD_SYMBOLS |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 175 | } |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 176 | |
| 177 | /* |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 178 | * 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] | 179 | * and should not cross a page boundary. |
Marc Zyngier | 2240bbb | 2012-12-07 18:40:43 +0000 | [diff] [blame] | 180 | */ |
Ard Biesheuvel | 06f75a1 | 2015-03-19 16:42:26 +0000 | [diff] [blame] | 181 | ASSERT(__hyp_idmap_text_end - (__hyp_idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K, |
| 182 | "HYP init code too big or misaligned") |
Ard Biesheuvel | 5dfe9d7 | 2015-06-01 13:40:33 +0200 | [diff] [blame] | 183 | ASSERT(__idmap_text_end - (__idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K, |
| 184 | "ID map text too big or misaligned") |
Mark Rutland | da57a36 | 2014-06-24 16:51:37 +0100 | [diff] [blame] | 185 | |
| 186 | /* |
| 187 | * If padding is applied before .head.text, virt<->phys conversions will fail. |
| 188 | */ |
| 189 | ASSERT(_text == (PAGE_OFFSET + TEXT_OFFSET), "HEAD is misaligned") |