blob: b8deffa9e1bf3ec06d9411afb7849695df27d6d2 [file] [log] [blame]
Catalin Marinas8c2c3df2012-04-20 14:45:54 +01001/*
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 Biesheuvel98fb7542015-12-01 13:20:40 +01008#include <asm/cache.h>
Suzuki K. Poulose87d15872015-10-19 14:19:27 +01009#include <asm/kernel-pgtable.h>
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010010#include <asm/thread_info.h>
11#include <asm/memory.h>
12#include <asm/page.h>
Laura Abbottda141702015-01-21 17:36:06 -080013#include <asm/pgtable.h>
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010014
Mark Rutlanda2c1d732014-06-24 16:51:36 +010015#include "image.h"
16
Will Deacon07c802b2014-11-25 15:26:13 +000017/* .exit.text needed in case of alternative patching */
18#define ARM_EXIT_KEEP(x) x
19#define ARM_EXIT_DISCARD(x)
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010020
21OUTPUT_ARCH(aarch64)
Geoff Levandaf885f42014-05-16 18:26:01 +010022ENTRY(_text)
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010023
24jiffies = jiffies_64;
25
Marc Zyngier2240bbb2012-12-07 18:40:43 +000026#define HYPERVISOR_TEXT \
27 /* \
Ard Biesheuvel06f75a12015-03-19 16:42:26 +000028 * 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 Zyngier2240bbb2012-12-07 18:40:43 +000034 */ \
Ard Biesheuvel06f75a12015-03-19 16:42:26 +000035 . = ALIGN(SZ_4K); \
Marc Zyngier2240bbb2012-12-07 18:40:43 +000036 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 Biesheuvel5dfe9d72015-06-01 13:40:33 +020043#define IDMAP_TEXT \
44 . = ALIGN(SZ_4K); \
45 VMLINUX_SYMBOL(__idmap_text_start) = .; \
46 *(.idmap.text) \
47 VMLINUX_SYMBOL(__idmap_text_end) = .;
48
James Morse82869ac2016-04-27 17:47:12 +010049#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 Biesheuvela352ea32014-10-10 18:42:55 +020059/*
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 */
66PECOFF_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 Rutlandcb083812015-10-26 21:42:33 +000075#if defined(CONFIG_DEBUG_ALIGN_RODATA)
Ard Biesheuvel97740052016-03-30 17:43:09 +020076/*
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 Abbottda141702015-01-21 17:36:06 -080082#else
Ard Biesheuvel97740052016-03-30 17:43:09 +020083/*
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 Abbottda141702015-01-21 17:36:06 -080089#endif
90
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010091SECTIONS
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 Biesheuvel1e48ef72016-01-26 09:13:44 +0100105 *(.interp .dynamic)
Ard Biesheuvel08cc55b2016-07-24 14:00:13 +0200106 *(.dynsym .dynstr .hash)
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100107 }
108
Ard Biesheuvelab893fb92016-02-16 13:52:36 +0100109 . = KIMAGE_VADDR + TEXT_OFFSET;
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100110
111 .head.text : {
112 _text = .;
113 HEAD_TEXT
114 }
115 .text : { /* Real text segment */
116 _stext = .; /* Text and read-only data */
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100117 __exception_text_start = .;
118 *(.exception.text)
119 __exception_text_end = .;
120 IRQENTRY_TEXT
Alexander Potapenkobe7635e2016-03-25 14:22:05 -0700121 SOFTIRQENTRY_TEXT
Pratyush Anand888b3c82016-07-08 12:35:50 -0400122 ENTRY_TEXT
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100123 TEXT_TEXT
124 SCHED_TEXT
Chris Metcalf6727ad92016-10-07 17:02:55 -0700125 CPUIDLE_TEXT
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100126 LOCK_TEXT
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -0400127 KPROBES_TEXT
Marc Zyngier2240bbb2012-12-07 18:40:43 +0000128 HYPERVISOR_TEXT
Ard Biesheuvel5dfe9d72015-06-01 13:40:33 +0200129 IDMAP_TEXT
James Morse82869ac2016-04-27 17:47:12 +0100130 HIBERNATE_TEXT
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100131 *(.fixup)
132 *(.gnu.warning)
133 . = ALIGN(16);
134 *(.got) /* Global offset table */
135 }
136
Ard Biesheuvel97740052016-03-30 17:43:09 +0200137 . = ALIGN(SEGMENT_ALIGN);
Ard Biesheuvel9fdc14c52016-06-23 15:53:17 +0200138 _etext = .; /* End of text section */
139
140 RO_DATA(PAGE_SIZE) /* everything from this point to */
141 EXCEPTION_TABLE(8) /* __init_begin will be marked RO NX */
Mark Salterc80b7ee2013-08-23 16:16:42 +0100142 NOTES
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100143
Ard Biesheuvel97740052016-03-30 17:43:09 +0200144 . = ALIGN(SEGMENT_ALIGN);
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100145 __init_begin = .;
146
147 INIT_TEXT_SECTION(8)
148 .exit.text : {
149 ARM_EXIT_KEEP(EXIT_TEXT)
150 }
Laura Abbottda141702015-01-21 17:36:06 -0800151
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100152 .init.data : {
153 INIT_DATA
154 INIT_SETUP(16)
155 INIT_CALLS
156 CON_INITCALL
157 SECURITY_INITCALL
158 INIT_RAM_FS
Ard Biesheuvel1ce99bf2016-02-17 12:35:58 +0000159 *(.init.rodata.* .init.bss) /* from the EFI stub */
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100160 }
161 .exit.data : {
162 ARM_EXIT_KEEP(EXIT_DATA)
163 }
164
Ard Biesheuvel98fb7542015-12-01 13:20:40 +0100165 PERCPU_SECTION(L1_CACHE_BYTES)
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100166
Andre Przywarae039ee42014-11-14 15:54:08 +0000167 . = ALIGN(4);
168 .altinstructions : {
169 __alt_instructions = .;
170 *(.altinstructions)
171 __alt_instructions_end = .;
172 }
173 .altinstr_replacement : {
174 *(.altinstr_replacement)
175 }
Ard Biesheuvel1e48ef72016-01-26 09:13:44 +0100176 .rela : ALIGN(8) {
Ard Biesheuvel1e48ef72016-01-26 09:13:44 +0100177 *(.rela .rela*)
Ard Biesheuvel1e48ef72016-01-26 09:13:44 +0100178 }
Andre Przywarae039ee42014-11-14 15:54:08 +0000179
Ard Biesheuveld6732fc2016-07-28 16:15:14 +0200180 __rela_offset = ABSOLUTE(ADDR(.rela) - KIMAGE_VADDR);
Ard Biesheuvel0cd3def2016-04-18 17:09:43 +0200181 __rela_size = SIZEOF(.rela);
Ard Biesheuvel0cd3def2016-04-18 17:09:43 +0200182
Ard Biesheuvel97740052016-03-30 17:43:09 +0200183 . = ALIGN(SEGMENT_ALIGN);
Mark Rutland9aa4ec152015-12-09 12:44:38 +0000184 __init_end = .;
185
Mark Salter3c620622013-11-04 16:38:47 +0000186 _data = .;
Mark Salter3c620622013-11-04 16:38:47 +0000187 _sdata = .;
Ard Biesheuvel98fb7542015-12-01 13:20:40 +0100188 RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
James Morseb6113032016-08-24 18:27:29 +0100189
190 /*
191 * Data written with the MMU off but read with the MMU on requires
192 * cache lines to be invalidated, discarding up to a Cache Writeback
193 * Granule (CWG) of data from the cache. Keep the section that
194 * requires this type of maintenance to be in its own Cache Writeback
195 * Granule (CWG) area so the cache maintenance operations don't
196 * interfere with adjacent data.
197 */
198 .mmuoff.data.write : ALIGN(SZ_2K) {
199 __mmuoff_data_start = .;
200 *(.mmuoff.data.write)
201 }
202 . = ALIGN(SZ_2K);
203 .mmuoff.data.read : {
204 *(.mmuoff.data.read)
205 __mmuoff_data_end = .;
206 }
207
Ard Biesheuvela352ea32014-10-10 18:42:55 +0200208 PECOFF_EDATA_PADDING
Mark Salter3c620622013-11-04 16:38:47 +0000209 _edata = .;
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100210
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100211 BSS_SECTION(0, 0, 0)
Mark Rutlandbd00cd5f2014-06-24 16:51:35 +0100212
213 . = ALIGN(PAGE_SIZE);
214 idmap_pg_dir = .;
215 . += IDMAP_DIR_SIZE;
216 swapper_pg_dir = .;
217 . += SWAPPER_DIR_SIZE;
218
Catalin Marinas005bf1a2016-07-01 16:53:00 +0100219#ifdef CONFIG_ARM64_SW_TTBR0_PAN
220 reserved_ttbr0 = .;
221 . += RESERVED_TTBR0_SIZE;
222#endif
223
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100224 _end = .;
225
226 STABS_DEBUG
Mark Rutlanda2c1d732014-06-24 16:51:36 +0100227
228 HEAD_SYMBOLS
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100229}
Marc Zyngier2240bbb2012-12-07 18:40:43 +0000230
231/*
Ard Biesheuvel5dfe9d72015-06-01 13:40:33 +0200232 * The HYP init code and ID map text can't be longer than a page each,
Ard Biesheuvel06f75a12015-03-19 16:42:26 +0000233 * and should not cross a page boundary.
Marc Zyngier2240bbb2012-12-07 18:40:43 +0000234 */
Ard Biesheuvel06f75a12015-03-19 16:42:26 +0000235ASSERT(__hyp_idmap_text_end - (__hyp_idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
236 "HYP init code too big or misaligned")
Ard Biesheuvel5dfe9d72015-06-01 13:40:33 +0200237ASSERT(__idmap_text_end - (__idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
238 "ID map text too big or misaligned")
James Morse82869ac2016-04-27 17:47:12 +0100239#ifdef CONFIG_HIBERNATION
240ASSERT(__hibernate_exit_text_end - (__hibernate_exit_text_start & ~(SZ_4K - 1))
241 <= SZ_4K, "Hibernate exit text too big or misaligned")
242#endif
Mark Rutlandda57a362014-06-24 16:51:37 +0100243
244/*
245 * If padding is applied before .head.text, virt<->phys conversions will fail.
246 */
Ard Biesheuvelab893fb92016-02-16 13:52:36 +0100247ASSERT(_text == (KIMAGE_VADDR + TEXT_OFFSET), "HEAD is misaligned")