1 /* ld script to make ARM Linux kernel
2 * taken from the i386 version by Russell King
3 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>
6 #include <asm-generic/vmlinux.lds.h>
8 #include <asm/thread_info.h>
9 #include <asm/memory.h>
14 VMLINUX_SYMBOL(__proc_info_begin) = .; \
16 VMLINUX_SYMBOL(__proc_info_end) = .;
20 VMLINUX_SYMBOL(__idmap_text_start) = .; \
22 VMLINUX_SYMBOL(__idmap_text_end) = .;
24 #ifdef CONFIG_HOTPLUG_CPU
25 #define ARM_CPU_DISCARD(x)
26 #define ARM_CPU_KEEP(x) x
28 #define ARM_CPU_DISCARD(x) x
29 #define ARM_CPU_KEEP(x)
32 #if (defined(CONFIG_SMP_ON_UP) && !defined(CONFIG_DEBUG_SPINLOCK)) || \
33 defined(CONFIG_GENERIC_BUG)
34 #define ARM_EXIT_KEEP(x) x
35 #define ARM_EXIT_DISCARD(x)
37 #define ARM_EXIT_KEEP(x)
38 #define ARM_EXIT_DISCARD(x) x
47 jiffies = jiffies_64 + 4;
53 * XXX: The linker does not define how output sections are
54 * assigned to input sections when there are multiple statements
55 * matching the same input section name. There is no documented
58 * unwind exit sections must be discarded before the rest of the
59 * unwind sections get included.
62 *(.ARM.exidx.exit.text)
63 *(.ARM.extab.exit.text)
64 ARM_CPU_DISCARD(*(.ARM.exidx.cpuexit.text))
65 ARM_CPU_DISCARD(*(.ARM.extab.cpuexit.text))
66 ARM_EXIT_DISCARD(EXIT_TEXT)
67 ARM_EXIT_DISCARD(EXIT_DATA)
69 #ifndef CONFIG_HOTPLUG
70 *(.ARM.exidx.devexit.text)
71 *(.ARM.extab.devexit.text)
77 #ifndef CONFIG_SMP_ON_UP
84 #ifdef CONFIG_XIP_KERNEL
85 . = XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR);
87 . = PAGE_OFFSET + TEXT_OFFSET;
93 .text : { /* Real text segment */
94 _stext = .; /* Text and read-only data */
95 __exception_text_start = .;
97 __exception_text_end = .;
111 *(.got) /* Global offset table */
112 ARM_CPU_KEEP(PROC_INFO)
117 #ifdef CONFIG_ARM_UNWIND
119 * Stack unwinding tables
123 __start_unwind_idx = .;
125 __stop_unwind_idx = .;
128 __start_unwind_tab = .;
130 __stop_unwind_tab = .;
134 _etext = .; /* End of text and rodata section */
136 #ifndef CONFIG_XIP_KERNEL
137 . = ALIGN(PAGE_SIZE);
143 ARM_EXIT_KEEP(EXIT_TEXT)
146 ARM_CPU_DISCARD(PROC_INFO)
149 __arch_info_begin = .;
154 __tagtable_begin = .;
158 #ifdef CONFIG_SMP_ON_UP
166 __pv_table_begin = .;
171 #ifndef CONFIG_XIP_KERNEL
180 #ifndef CONFIG_XIP_KERNEL
182 ARM_EXIT_KEEP(EXIT_DATA)
186 PERCPU_SECTION(L1_CACHE_BYTES)
188 #ifdef CONFIG_XIP_KERNEL
189 __data_loc = ALIGN(4); /* location in binary */
190 . = PAGE_OFFSET + TEXT_OFFSET;
193 . = ALIGN(THREAD_SIZE);
197 .data : AT(__data_loc) {
198 _data = .; /* address in memory */
202 * first, the init task union, aligned
203 * to an 8192 byte boundary.
205 INIT_TASK_DATA(THREAD_SIZE)
207 #ifdef CONFIG_XIP_KERNEL
208 . = ALIGN(PAGE_SIZE);
211 ARM_EXIT_KEEP(EXIT_DATA)
212 . = ALIGN(PAGE_SIZE);
217 CACHELINE_ALIGNED_DATA(L1_CACHE_BYTES)
218 READ_MOSTLY_DATA(L1_CACHE_BYTES)
221 * The exception fixup table (might need resorting at runtime)
224 __start___ex_table = .;
228 __stop___ex_table = .;
231 * and the usual data section
238 _edata_loc = __data_loc + SIZEOF(.data);
240 #ifdef CONFIG_HAVE_TCM
242 * We align everything to a page boundary so we can
243 * free it after init has commenced and TCM contents have
244 * been copied to its destination.
247 . = ALIGN(PAGE_SIZE);
253 * Link these to the ITCM RAM
254 * Put VMA to the TCM address and LMA to the common RAM
255 * and we'll upload the contents from RAM to TCM and free
256 * the used RAM after that.
258 .text_itcm ITCM_OFFSET : AT(__itcm_start)
268 * Reset the dot pointer, this is needed to create the
269 * relative __dtcm_start below (to be used as extern in code).
271 . = ADDR(.tcm_start) + SIZEOF(.tcm_start) + SIZEOF(.text_itcm);
277 /* TODO: add remainder of ITCM as well, that can be used for data! */
278 .data_dtcm DTCM_OFFSET : AT(__dtcm_start)
287 /* Reset the dot pointer or the linker gets confused */
288 . = ADDR(.dtcm_start) + SIZEOF(.data_dtcm);
290 /* End marker for freeing TCM copy in linked object */
291 .tcm_end : AT(ADDR(.dtcm_start) + SIZEOF(.data_dtcm)){
292 . = ALIGN(PAGE_SIZE);
303 .comment 0 : { *(.comment) }
307 * These must never be empty
308 * If you have to comment these two assert statements out, your
309 * binutils is too old (for other reasons as well)
311 ASSERT((__proc_info_end - __proc_info_begin), "missing CPU support")
312 ASSERT((__arch_info_end - __arch_info_begin), "no machine record defined")