1 /* SPDX-License-Identifier: GPL-2.0 */
3 * ld script to make ARM Linux kernel
4 * taken from the i386 version by Russell King
5 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>
8 #include <asm/hyp_image.h>
10 #define HYPERVISOR_EXTABLE \
12 __start___kvm_ex_table = .; \
14 __stop___kvm_ex_table = .;
16 #define HYPERVISOR_DATA_SECTIONS \
17 HYP_SECTION_NAME(.rodata) : { \
18 . = ALIGN(PAGE_SIZE); \
19 __hyp_rodata_start = .; \
20 *(HYP_SECTION_NAME(.data..ro_after_init)) \
21 *(HYP_SECTION_NAME(.rodata)) \
22 . = ALIGN(PAGE_SIZE); \
23 __hyp_rodata_end = .; \
26 #define HYPERVISOR_PERCPU_SECTION \
27 . = ALIGN(PAGE_SIZE); \
28 HYP_SECTION_NAME(.data..percpu) : { \
29 *(HYP_SECTION_NAME(.data..percpu)) \
32 #define HYPERVISOR_RELOC_SECTION \
33 .hyp.reloc : ALIGN(4) { \
34 __hyp_reloc_begin = .; \
36 __hyp_reloc_end = .; \
39 #define BSS_FIRST_SECTIONS \
40 __hyp_bss_start = .; \
41 *(HYP_SECTION_NAME(.bss)) \
42 . = ALIGN(PAGE_SIZE); \
46 * We require that __hyp_bss_start and __bss_start are aligned, and enforce it
47 * with an assertion. But the BSS_SECTION macro places an empty .sbss section
48 * between them, which can in some cases cause the linker to misalign them. To
49 * work around the issue, force a page alignment for __bss_start.
51 #define SBSS_ALIGN PAGE_SIZE
52 #else /* CONFIG_KVM */
53 #define HYPERVISOR_EXTABLE
54 #define HYPERVISOR_DATA_SECTIONS
55 #define HYPERVISOR_PERCPU_SECTION
56 #define HYPERVISOR_RELOC_SECTION
60 #define RO_EXCEPTION_TABLE_ALIGN 4
61 #define RUNTIME_DISCARD_EXIT
63 #include <asm-generic/vmlinux.lds.h>
64 #include <asm/cache.h>
65 #include <asm/kernel-pgtable.h>
66 #include <asm/kexec.h>
67 #include <asm/memory.h>
77 #define HYPERVISOR_TEXT \
78 . = ALIGN(PAGE_SIZE); \
79 __hyp_idmap_text_start = .; \
81 __hyp_idmap_text_end = .; \
82 __hyp_text_start = .; \
85 . = ALIGN(PAGE_SIZE); \
90 __idmap_text_start = .; \
94 #ifdef CONFIG_HIBERNATION
95 #define HIBERNATE_TEXT \
97 __hibernate_exit_text_start = .; \
98 *(.hibernate_exit.text) \
99 __hibernate_exit_text_end = .;
101 #define HIBERNATE_TEXT
104 #ifdef CONFIG_KEXEC_CORE
107 __relocate_new_kernel_start = .; \
108 *(.kexec_relocate.text) \
109 __relocate_new_kernel_end = .;
114 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
116 . = ALIGN(PAGE_SIZE); \
117 __entry_tramp_text_start = .; \
118 *(.entry.tramp.text) \
119 . = ALIGN(PAGE_SIZE); \
120 __entry_tramp_text_end = .; \
121 *(.entry.tramp.rodata)
126 #ifdef CONFIG_UNWIND_TABLES
127 #define UNWIND_DATA_SECTIONS \
129 __pi___eh_frame_start = .; \
131 __pi___eh_frame_end = .; \
134 #define UNWIND_DATA_SECTIONS
138 * The size of the PE/COFF section that covers the kernel image, which
139 * runs from _stext to _edata, must be a round multiple of the PE/COFF
140 * FileAlignment, which we set to its minimum value of 0x200. '_stext'
141 * itself is 4 KB aligned, so padding out _edata to a 0x200 aligned
142 * boundary should be sufficient.
144 PECOFF_FILE_ALIGNMENT = 0x200;
147 #define PECOFF_EDATA_PADDING \
148 .pecoff_edata_padding : { BYTE(0); . = ALIGN(PECOFF_FILE_ALIGNMENT); }
150 #define PECOFF_EDATA_PADDING
156 * XXX: The linker does not define how output sections are
157 * assigned to input sections when there are multiple statements
158 * matching the same input section name. There is no documented
164 *(.dynsym .dynstr .hash .gnu.hash)
173 .text : ALIGN(SEGMENT_ALIGN) { /* Real text segment */
174 _stext = .; /* Text and read-only data */
186 . = ALIGN(SEGMENT_ALIGN);
187 _etext = .; /* End of text section */
189 /* everything from this point to __init_begin will be marked RO NX */
192 HYPERVISOR_DATA_SECTIONS
196 * Make sure that the .got.plt is either completely empty or it
197 * contains only the lazy dispatch entries.
199 .got.plt : { *(.got.plt) }
200 ASSERT(SIZEOF(.got.plt) == 0 || SIZEOF(.got.plt) == 0x18,
201 "Unexpected GOT/PLT entries detected!")
203 /* code sections that are never executed via the kernel mapping */
209 . = ALIGN(PAGE_SIZE);
215 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
226 . = ALIGN(SEGMENT_ALIGN);
228 __inittext_begin = .;
232 __exittext_begin = .;
240 __alt_instructions = .;
242 __alt_instructions_end = .;
247 . = ALIGN(SEGMENT_ALIGN);
249 __initdata_begin = .;
251 init_idmap_pg_dir = .;
252 . += INIT_IDMAP_DIR_SIZE;
253 init_idmap_pg_end = .;
261 *(.init.altinstructions .init.bss) /* from the EFI stub */
267 RUNTIME_CONST_VARIABLES
269 PERCPU_SECTION(L1_CACHE_BYTES)
270 HYPERVISOR_PERCPU_SECTION
272 HYPERVISOR_RELOC_SECTION
274 .rela.dyn : ALIGN(8) {
280 .relr.dyn : ALIGN(8) {
286 . = ALIGN(SEGMENT_ALIGN);
290 .data.rel.ro : { *(.data.rel.ro) }
291 ASSERT(SIZEOF(.data.rel.ro) == 0, "Unexpected RELRO detected!")
295 RW_DATA(L1_CACHE_BYTES, PAGE_SIZE, THREAD_ALIGN)
298 * Data written with the MMU off but read with the MMU on requires
299 * cache lines to be invalidated, discarding up to a Cache Writeback
300 * Granule (CWG) of data from the cache. Keep the section that
301 * requires this type of maintenance to be in its own Cache Writeback
302 * Granule (CWG) area so the cache maintenance operations don't
303 * interfere with adjacent data.
305 .mmuoff.data.write : ALIGN(SZ_2K) {
306 __mmuoff_data_start = .;
307 *(.mmuoff.data.write)
310 .mmuoff.data.read : {
312 __mmuoff_data_end = .;
316 __pecoff_data_rawsize = ABSOLUTE(. - __initdata_begin);
319 /* start of zero-init region */
320 BSS_SECTION(SBSS_ALIGN, 0, 0)
322 . = ALIGN(PAGE_SIZE);
326 /* end of zero-init region */
328 . += SZ_4K; /* stack for the early C runtime */
329 early_init_stack = .;
331 . = ALIGN(SEGMENT_ALIGN);
332 __pecoff_data_size = ABSOLUTE(. - __initdata_begin);
342 * Sections that should stay zero sized, which is safer to
343 * explicitly check instead of blindly discarding.
346 *(.plt) *(.plt.*) *(.iplt) *(.igot .igot.plt)
348 ASSERT(SIZEOF(.plt) == 0, "Unexpected run-time procedure linkages detected!")
351 #include "image-vars.h"
354 * The HYP init code and ID map text can't be longer than a page each. The
355 * former is page-aligned, but the latter may not be with 16K or 64K pages, so
356 * it should also not cross a page boundary.
358 ASSERT(__hyp_idmap_text_end - __hyp_idmap_text_start <= PAGE_SIZE,
359 "HYP init code too big")
360 ASSERT(__idmap_text_end - (__idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
361 "ID map text too big or misaligned")
362 #ifdef CONFIG_HIBERNATION
363 ASSERT(__hibernate_exit_text_end - __hibernate_exit_text_start <= SZ_4K,
364 "Hibernate exit text is bigger than 4 KiB")
365 ASSERT(__hibernate_exit_text_start == swsusp_arch_suspend_exit,
366 "Hibernate exit text does not start with swsusp_arch_suspend_exit")
368 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
369 ASSERT((__entry_tramp_text_end - __entry_tramp_text_start) <= 3*PAGE_SIZE,
370 "Entry trampoline text too big")
373 ASSERT(__hyp_bss_start == __bss_start, "HYP and Host BSS are misaligned")
376 * If padding is applied before .head.text, virt<->phys conversions will fail.
378 ASSERT(_text == KIMAGE_VADDR, "HEAD is misaligned")
380 ASSERT(swapper_pg_dir - reserved_pg_dir == RESERVED_SWAPPER_OFFSET,
381 "RESERVED_SWAPPER_OFFSET is wrong!")
383 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
384 ASSERT(swapper_pg_dir - tramp_pg_dir == TRAMP_SWAPPER_OFFSET,
385 "TRAMP_SWAPPER_OFFSET is wrong!")
388 #ifdef CONFIG_KEXEC_CORE
389 /* kexec relocation code should fit into one KEXEC_CONTROL_PAGE_SIZE */
390 ASSERT(__relocate_new_kernel_end - __relocate_new_kernel_start <= SZ_4K,
391 "kexec relocation code is bigger than 4 KiB")
392 ASSERT(KEXEC_CONTROL_PAGE_SIZE >= SZ_4K, "KEXEC_CONTROL_PAGE_SIZE is broken")
393 ASSERT(__relocate_new_kernel_start == arm64_relocate_new_kernel,
394 "kexec control page does not start with arm64_relocate_new_kernel")