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 #include <asm-generic/vmlinux.lds.h>
9 #include <asm/kernel-pgtable.h>
10 #include <asm/thread_info.h>
11 #include <asm/memory.h>
13 #include <asm/pgtable.h>
17 /* .exit.text needed in case of alternative patching */
18 #define ARM_EXIT_KEEP(x) x
19 #define ARM_EXIT_DISCARD(x)
26 #define HYPERVISOR_TEXT \
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) \
36 VMLINUX_SYMBOL(__hyp_idmap_text_start) = .; \
38 VMLINUX_SYMBOL(__hyp_idmap_text_end) = .; \
39 VMLINUX_SYMBOL(__hyp_text_start) = .; \
41 VMLINUX_SYMBOL(__hyp_text_end) = .;
45 VMLINUX_SYMBOL(__idmap_text_start) = .; \
47 VMLINUX_SYMBOL(__idmap_text_end) = .;
50 * The size of the PE/COFF section that covers the kernel image, which
51 * runs from stext to _edata, must be a round multiple of the PE/COFF
52 * FileAlignment, which we set to its minimum value of 0x200. 'stext'
53 * itself is 4 KB aligned, so padding out _edata to a 0x200 aligned
54 * boundary should be sufficient.
56 PECOFF_FILE_ALIGNMENT = 0x200;
59 #define PECOFF_EDATA_PADDING \
60 .pecoff_edata_padding : { BYTE(0); . = ALIGN(PECOFF_FILE_ALIGNMENT); }
62 #define PECOFF_EDATA_PADDING
65 #if defined(CONFIG_DEBUG_ALIGN_RODATA)
66 #define ALIGN_DEBUG_RO . = ALIGN(1<<SECTION_SHIFT);
67 #define ALIGN_DEBUG_RO_MIN(min) ALIGN_DEBUG_RO
68 #elif defined(CONFIG_DEBUG_RODATA)
69 #define ALIGN_DEBUG_RO . = ALIGN(1<<PAGE_SHIFT);
70 #define ALIGN_DEBUG_RO_MIN(min) ALIGN_DEBUG_RO
72 #define ALIGN_DEBUG_RO
73 #define ALIGN_DEBUG_RO_MIN(min) . = ALIGN(min);
79 * XXX: The linker does not define how output sections are
80 * assigned to input sections when there are multiple statements
81 * matching the same input section name. There is no documented
85 ARM_EXIT_DISCARD(EXIT_TEXT)
86 ARM_EXIT_DISCARD(EXIT_DATA)
92 . = PAGE_OFFSET + TEXT_OFFSET;
99 .text : { /* Real text segment */
100 _stext = .; /* Text and read-only data */
101 __exception_text_start = .;
103 __exception_text_end = .;
113 *(.got) /* Global offset table */
121 _etext = .; /* End of text and rodata section */
123 ALIGN_DEBUG_RO_MIN(PAGE_SIZE)
128 ARM_EXIT_KEEP(EXIT_TEXT)
131 ALIGN_DEBUG_RO_MIN(16)
141 ARM_EXIT_KEEP(EXIT_DATA)
144 PERCPU_SECTION(L1_CACHE_BYTES)
146 . = ALIGN(PAGE_SIZE);
151 __alt_instructions = .;
153 __alt_instructions_end = .;
155 .altinstr_replacement : {
156 *(.altinstr_replacement)
159 . = ALIGN(PAGE_SIZE);
162 RW_DATA_SECTION(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
168 . = ALIGN(PAGE_SIZE);
172 . += SWAPPER_DIR_SIZE;
182 * The HYP init code and ID map text can't be longer than a page each,
183 * and should not cross a page boundary.
185 ASSERT(__hyp_idmap_text_end - (__hyp_idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
186 "HYP init code too big or misaligned")
187 ASSERT(__idmap_text_end - (__idmap_text_start & ~(SZ_4K - 1)) <= SZ_4K,
188 "ID map text too big or misaligned")
191 * If padding is applied before .head.text, virt<->phys conversions will fail.
193 ASSERT(_text == (PAGE_OFFSET + TEXT_OFFSET), "HEAD is misaligned")