1 /* SPDX-License-Identifier: GPL-2.0 */
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>
7 /* No __ro_after_init data in the .rodata section - which will always be ro */
8 #define RO_AFTER_INIT_DATA
10 #include <linux/sizes.h>
12 #include <asm/vmlinux.lds.h>
13 #include <asm/cache.h>
14 #include <asm/thread_info.h>
15 #include <asm/memory.h>
25 jiffies = jiffies_64 + 4;
31 * XXX: The linker does not define how output sections are
32 * assigned to input sections when there are multiple statements
33 * matching the same input section name. There is no documented
36 * unwind exit sections must be discarded before the rest of the
37 * unwind sections get included.
45 . = XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR);
46 _xiprom = .; /* XIP ROM area to be mapped */
53 .text : { /* Real text segment */
54 _stext = .; /* Text and read-only data */
61 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
62 __start___ex_table = .;
63 ARM_MMU_KEEP(*(__ex_table))
64 __stop___ex_table = .;
67 #ifdef CONFIG_ARM_UNWIND
71 _etext = .; /* End of text and rodata section */
76 ARM_EXIT_KEEP(EXIT_TEXT)
79 ARM_CPU_DISCARD(PROC_INFO)
82 __arch_info_begin = .;
101 _exiprom = .; /* End of XIP ROM area */
104 * From this point, stuff is considered writable and will be copied to RAM
106 __data_loc = ALIGN(4); /* location in file */
107 . = PAGE_OFFSET + TEXT_OFFSET; /* location in memory */
109 #define LOAD_OFFSET (PAGE_OFFSET + TEXT_OFFSET - __data_loc)
111 . = ALIGN(THREAD_SIZE);
113 RW_DATA(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
114 .data.ro_after_init : AT(ADDR(.data.ro_after_init) - LOAD_OFFSET) {
115 *(.data..ro_after_init)
119 . = ALIGN(PAGE_SIZE);
121 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) {
124 .exit.data : AT(ADDR(.exit.data) - LOAD_OFFSET) {
125 ARM_EXIT_KEEP(EXIT_DATA)
128 PERCPU_SECTION(L1_CACHE_BYTES)
131 #ifdef CONFIG_HAVE_TCM
136 * End of copied data. We need a dummy section to get its LMA.
137 * Also located before final ALIGN() as trailing padding is not stored
138 * in the resulting binary file and useless to copy.
140 .data.endmark : AT(ADDR(.data.endmark) - LOAD_OFFSET) { }
141 _edata_loc = LOADADDR(.data.endmark);
143 . = ALIGN(PAGE_SIZE);
147 #ifdef CONFIG_ARM_MPU
148 . = ALIGN(PMSAv8_MINALIGN);
160 * These must never be empty
161 * If you have to comment these two assert statements out, your
162 * binutils is too old (for other reasons as well)
164 ASSERT((__proc_info_end - __proc_info_begin), "missing CPU support")
165 ASSERT((__arch_info_end - __arch_info_begin), "no machine record defined")
167 #ifdef CONFIG_XIP_DEFLATED_DATA
169 * The .bss is used as a stack area for __inflate_kernel_data() whose stack
170 * frame is 9568 bytes. Make sure it has extra room left.
172 ASSERT((_end - __bss_start) >= 12288, ".bss too small for CONFIG_XIP_DEFLATED_DATA")
175 #ifdef CONFIG_ARM_MPU
177 * Due to PMSAv7 restriction on base address and size we have to
178 * enforce minimal alignment restrictions. It was seen that weaker
179 * alignment restriction on _xiprom will likely force XIP address
180 * space spawns multiple MPU regions thus it is likely we run in
181 * situation when we are reprogramming MPU region we run on with
182 * something which doesn't cover reprogramming code itself, so as soon
183 * as we update MPU settings we'd immediately try to execute straight
184 * from background region which is XN.
185 * It seem that alignment in 1M should suit most users.
186 * _exiprom is aligned as 1/8 of 1M so can be covered by subregion
189 ASSERT(!(_xiprom & (SZ_1M - 1)), "XIP start address may cause MPU programming issues")
190 ASSERT(!(_exiprom & (SZ_128K - 1)), "XIP end address may cause MPU programming issues")