blob: aecf87dfbaec2357355889871e6bc6e43412a5f3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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>
4 */
5
6#include <asm-generic/vmlinux.lds.h>
Russell King4f7a1812005-05-05 13:11:00 +01007#include <asm/thread_info.h>
Nicolas Pitre37d07b72005-10-29 21:44:56 +01008#include <asm/memory.h>
Linus Walleijf6430a92009-06-24 23:38:56 +01009#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11OUTPUT_ARCH(arm)
12ENTRY(stext)
Nicolas Pitre37d07b72005-10-29 21:44:56 +010013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#ifndef __ARMEB__
15jiffies = jiffies_64;
16#else
17jiffies = jiffies_64 + 4;
18#endif
Nicolas Pitre37d07b72005-10-29 21:44:56 +010019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020SECTIONS
21{
Russell King9d4f13e2006-01-03 17:28:33 +000022#ifdef CONFIG_XIP_KERNEL
23 . = XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR);
24#else
25 . = PAGE_OFFSET + TEXT_OFFSET;
26#endif
Russell King08fdffd2007-05-08 15:15:45 +010027 .text.head : {
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 _stext = .;
Russell King08fdffd2007-05-08 15:15:45 +010029 _sinittext = .;
30 *(.text.head)
31 }
32
33 .init : { /* Init code and data */
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +010034 INIT_TEXT
Russell King08fdffd2007-05-08 15:15:45 +010035 _einittext = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 __proc_info_begin = .;
Ben Dooks02b7dd12005-09-20 16:35:03 +010037 *(.proc.info.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 __proc_info_end = .;
39 __arch_info_begin = .;
Ben Dooks9d0fd1e2005-09-20 16:45:20 +010040 *(.arch.info.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 __arch_info_end = .;
42 __tagtable_begin = .;
Ben Dooks95060572005-09-20 16:20:49 +010043 *(.taglist.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 __tagtable_end = .;
45 . = ALIGN(16);
46 __setup_start = .;
47 *(.init.setup)
48 __setup_end = .;
49 __early_begin = .;
Ben Dooksbfe68152005-09-20 16:25:12 +010050 *(.early_param.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 __early_end = .;
52 __initcall_start = .;
Andrew Morton61ce1ef2006-10-27 11:41:44 -070053 INITCALLS
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 __initcall_end = .;
55 __con_initcall_start = .;
56 *(.con_initcall.init)
57 __con_initcall_end = .;
58 __security_initcall_start = .;
59 *(.security_initcall.init)
60 __security_initcall_end = .;
Jean-Paul Saman67d38222007-02-10 01:44:44 -080061#ifdef CONFIG_BLK_DEV_INITRD
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 . = ALIGN(32);
63 __initramfs_start = .;
64 usr/built-in.o(.init.ramfs)
65 __initramfs_end = .;
Jean-Paul Saman67d38222007-02-10 01:44:44 -080066#endif
Linus Walleijf6430a92009-06-24 23:38:56 +010067 . = ALIGN(PAGE_SIZE);
Tejun Heo19390c42009-03-10 16:27:48 +090068 __per_cpu_load = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 __per_cpu_start = .;
Tejun Heo74e79042009-01-17 15:26:32 +090070 *(.data.percpu.page_aligned)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 *(.data.percpu)
Fenghua Yu5fb7dc32007-07-19 01:48:12 -070072 *(.data.percpu.shared_aligned)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 __per_cpu_end = .;
74#ifndef CONFIG_XIP_KERNEL
75 __init_begin = _stext;
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +010076 INIT_DATA
Linus Walleijf6430a92009-06-24 23:38:56 +010077 . = ALIGN(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 __init_end = .;
79#endif
80 }
81
82 /DISCARD/ : { /* Exit code and data */
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +010083 EXIT_TEXT
84 EXIT_DATA
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 *(.exitcall.exit)
Tejun Heo405d9672009-06-24 15:13:38 +090086 *(.discard)
Catalin Marinasbff595c2009-02-16 11:41:36 +010087 *(.ARM.exidx.exit.text)
88 *(.ARM.extab.exit.text)
Catalin Marinas74361272009-06-19 16:39:29 +010089#ifndef CONFIG_HOTPLUG_CPU
90 *(.ARM.exidx.cpuexit.text)
91 *(.ARM.extab.cpuexit.text)
92#endif
93#ifndef CONFIG_HOTPLUG
94 *(.ARM.exidx.devexit.text)
95 *(.ARM.extab.devexit.text)
96#endif
Russell King9641c7c2006-06-21 20:38:17 +010097#ifndef CONFIG_MMU
98 *(.fixup)
99 *(__ex_table)
100#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
102
103 .text : { /* Real text segment */
104 _text = .; /* Text and read-only data */
Russell King7ab3f8d2007-03-02 15:01:36 +0000105 __exception_text_start = .;
106 *(.exception.text)
107 __exception_text_end = .;
Sam Ravnborg76647092007-05-13 00:31:33 +0200108 TEXT_TEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 SCHED_TEXT
110 LOCK_TEXT
Nicolas Pitre785d3cd2007-12-03 15:27:56 -0500111 KPROBES_TEXT
Russell King9641c7c2006-06-21 20:38:17 +0100112#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 *(.fixup)
Russell King9641c7c2006-06-21 20:38:17 +0100114#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 *(.gnu.warning)
116 *(.rodata)
117 *(.rodata.*)
118 *(.glue_7)
119 *(.glue_7t)
120 *(.got) /* Global offset table */
121 }
122
Linus Walleijf6430a92009-06-24 23:38:56 +0100123 RO_DATA(PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 _etext = .; /* End of text and rodata section */
126
Catalin Marinasbff595c2009-02-16 11:41:36 +0100127#ifdef CONFIG_ARM_UNWIND
128 /*
129 * Stack unwinding tables
130 */
131 . = ALIGN(8);
132 .ARM.unwind_idx : {
133 __start_unwind_idx = .;
134 *(.ARM.exidx*)
135 __stop_unwind_idx = .;
136 }
137 .ARM.unwind_tab : {
138 __start_unwind_tab = .;
139 *(.ARM.extab*)
140 __stop_unwind_tab = .;
141 }
142#endif
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#ifdef CONFIG_XIP_KERNEL
145 __data_loc = ALIGN(4); /* location in binary */
Russell King9d4f13e2006-01-03 17:28:33 +0000146 . = PAGE_OFFSET + TEXT_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#else
Russell King4f7a1812005-05-05 13:11:00 +0100148 . = ALIGN(THREAD_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 __data_loc = .;
150#endif
151
152 .data : AT(__data_loc) {
Russell King37efe642008-12-01 11:53:07 +0000153 _data = .; /* address in memory */
Catalin Marinas8c7e6572009-05-30 14:00:17 +0100154 _sdata = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 /*
157 * first, the init task union, aligned
158 * to an 8192 byte boundary.
159 */
Russell King4efb4482007-05-08 12:39:37 +0100160 *(.data.init_task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162#ifdef CONFIG_XIP_KERNEL
Linus Walleijf6430a92009-06-24 23:38:56 +0100163 . = ALIGN(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 __init_begin = .;
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +0100165 INIT_DATA
Linus Walleijf6430a92009-06-24 23:38:56 +0100166 . = ALIGN(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 __init_end = .;
168#endif
169
Linus Walleijf6430a92009-06-24 23:38:56 +0100170 . = ALIGN(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 __nosave_begin = .;
172 *(.data.nosave)
Linus Walleijf6430a92009-06-24 23:38:56 +0100173 . = ALIGN(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 __nosave_end = .;
175
176 /*
177 * then the cacheline aligned data
178 */
179 . = ALIGN(32);
180 *(.data.cacheline_aligned)
181
182 /*
Nicolas Pitre13b1f642005-10-13 22:04:37 +0100183 * The exception fixup table (might need resorting at runtime)
184 */
185 . = ALIGN(32);
186 __start___ex_table = .;
Russell King9641c7c2006-06-21 20:38:17 +0100187#ifdef CONFIG_MMU
Nicolas Pitre13b1f642005-10-13 22:04:37 +0100188 *(__ex_table)
Russell King9641c7c2006-06-21 20:38:17 +0100189#endif
Nicolas Pitre13b1f642005-10-13 22:04:37 +0100190 __stop___ex_table = .;
191
192 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * and the usual data section
194 */
Sam Ravnborgca967252007-05-17 13:38:44 +0200195 DATA_DATA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 CONSTRUCTORS
197
198 _edata = .;
199 }
Nicolas Pitree98ff7f2007-02-22 16:18:09 +0100200 _edata_loc = __data_loc + SIZEOF(.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Linus Walleijbc581772009-09-15 17:30:37 +0100202#ifdef CONFIG_HAVE_TCM
203 /*
204 * We align everything to a page boundary so we can
205 * free it after init has commenced and TCM contents have
206 * been copied to its destination.
207 */
208 .tcm_start : {
209 . = ALIGN(PAGE_SIZE);
210 __tcm_start = .;
211 __itcm_start = .;
212 }
213
214 /*
215 * Link these to the ITCM RAM
216 * Put VMA to the TCM address and LMA to the common RAM
217 * and we'll upload the contents from RAM to TCM and free
218 * the used RAM after that.
219 */
220 .text_itcm ITCM_OFFSET : AT(__itcm_start)
221 {
222 __sitcm_text = .;
223 *(.tcm.text)
224 *(.tcm.rodata)
225 . = ALIGN(4);
226 __eitcm_text = .;
227 }
228
229 /*
230 * Reset the dot pointer, this is needed to create the
231 * relative __dtcm_start below (to be used as extern in code).
232 */
233 . = ADDR(.tcm_start) + SIZEOF(.tcm_start) + SIZEOF(.text_itcm);
234
235 .dtcm_start : {
236 __dtcm_start = .;
237 }
238
239 /* TODO: add remainder of ITCM as well, that can be used for data! */
240 .data_dtcm DTCM_OFFSET : AT(__dtcm_start)
241 {
242 . = ALIGN(4);
243 __sdtcm_data = .;
244 *(.tcm.data)
245 . = ALIGN(4);
246 __edtcm_data = .;
247 }
248
249 /* Reset the dot pointer or the linker gets confused */
250 . = ADDR(.dtcm_start) + SIZEOF(.data_dtcm);
251
252 /* End marker for freeing TCM copy in linked object */
253 .tcm_end : AT(ADDR(.dtcm_start) + SIZEOF(.data_dtcm)){
254 . = ALIGN(PAGE_SIZE);
255 __tcm_end = .;
256 }
257#endif
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 .bss : {
260 __bss_start = .; /* BSS */
261 *(.bss)
262 *(COMMON)
Catalin Marinas8c7e6572009-05-30 14:00:17 +0100263 __bss_stop = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 _end = .;
265 }
266 /* Stabs debugging sections. */
267 .stab 0 : { *(.stab) }
268 .stabstr 0 : { *(.stabstr) }
269 .stab.excl 0 : { *(.stab.excl) }
270 .stab.exclstr 0 : { *(.stab.exclstr) }
271 .stab.index 0 : { *(.stab.index) }
272 .stab.indexstr 0 : { *(.stab.indexstr) }
273 .comment 0 : { *(.comment) }
274}
275
Russell King728f5c02005-11-17 16:43:14 +0000276/*
277 * These must never be empty
278 * If you have to comment these two assert statements out, your
279 * binutils is too old (for other reasons as well)
280 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281ASSERT((__proc_info_end - __proc_info_begin), "missing CPU support")
282ASSERT((__arch_info_end - __arch_info_begin), "no machine record defined")