blob: 4340bf3d2c84a8feae21eea058283f143640a698 [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 Torvalds1da177e2005-04-16 15:20:36 -07009
10OUTPUT_ARCH(arm)
11ENTRY(stext)
Nicolas Pitre37d07b72005-10-29 21:44:56 +010012
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#ifndef __ARMEB__
14jiffies = jiffies_64;
15#else
16jiffies = jiffies_64 + 4;
17#endif
Nicolas Pitre37d07b72005-10-29 21:44:56 +010018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019SECTIONS
20{
Russell King9d4f13e2006-01-03 17:28:33 +000021#ifdef CONFIG_XIP_KERNEL
22 . = XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR);
23#else
24 . = PAGE_OFFSET + TEXT_OFFSET;
25#endif
Russell King08fdffd2007-05-08 15:15:45 +010026 .text.head : {
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 _stext = .;
Russell King08fdffd2007-05-08 15:15:45 +010028 _sinittext = .;
29 *(.text.head)
30 }
31
32 .init : { /* Init code and data */
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +010033 INIT_TEXT
Russell King08fdffd2007-05-08 15:15:45 +010034 _einittext = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 __proc_info_begin = .;
Ben Dooks02b7dd12005-09-20 16:35:03 +010036 *(.proc.info.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 __proc_info_end = .;
38 __arch_info_begin = .;
Ben Dooks9d0fd1e2005-09-20 16:45:20 +010039 *(.arch.info.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 __arch_info_end = .;
41 __tagtable_begin = .;
Ben Dooks95060572005-09-20 16:20:49 +010042 *(.taglist.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 __tagtable_end = .;
44 . = ALIGN(16);
45 __setup_start = .;
46 *(.init.setup)
47 __setup_end = .;
48 __early_begin = .;
Ben Dooksbfe68152005-09-20 16:25:12 +010049 *(.early_param.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 __early_end = .;
51 __initcall_start = .;
Andrew Morton61ce1ef2006-10-27 11:41:44 -070052 INITCALLS
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 __initcall_end = .;
54 __con_initcall_start = .;
55 *(.con_initcall.init)
56 __con_initcall_end = .;
57 __security_initcall_start = .;
58 *(.security_initcall.init)
59 __security_initcall_end = .;
Jean-Paul Saman67d38222007-02-10 01:44:44 -080060#ifdef CONFIG_BLK_DEV_INITRD
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 . = ALIGN(32);
62 __initramfs_start = .;
63 usr/built-in.o(.init.ramfs)
64 __initramfs_end = .;
Jean-Paul Saman67d38222007-02-10 01:44:44 -080065#endif
Jeremy Fitzhardingeb6e35902007-05-02 19:27:12 +020066 . = ALIGN(4096);
Tejun Heo19390c42009-03-10 16:27:48 +090067 __per_cpu_load = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 __per_cpu_start = .;
Tejun Heo74e79042009-01-17 15:26:32 +090069 *(.data.percpu.page_aligned)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 *(.data.percpu)
Fenghua Yu5fb7dc32007-07-19 01:48:12 -070071 *(.data.percpu.shared_aligned)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 __per_cpu_end = .;
73#ifndef CONFIG_XIP_KERNEL
74 __init_begin = _stext;
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +010075 INIT_DATA
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 . = ALIGN(4096);
77 __init_end = .;
78#endif
79 }
80
81 /DISCARD/ : { /* Exit code and data */
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +010082 EXIT_TEXT
83 EXIT_DATA
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 *(.exitcall.exit)
Catalin Marinasbff595c2009-02-16 11:41:36 +010085 *(.ARM.exidx.exit.text)
86 *(.ARM.extab.exit.text)
Catalin Marinas74361272009-06-19 16:39:29 +010087#ifndef CONFIG_HOTPLUG_CPU
88 *(.ARM.exidx.cpuexit.text)
89 *(.ARM.extab.cpuexit.text)
90#endif
91#ifndef CONFIG_HOTPLUG
92 *(.ARM.exidx.devexit.text)
93 *(.ARM.extab.devexit.text)
94#endif
Russell King9641c7c2006-06-21 20:38:17 +010095#ifndef CONFIG_MMU
96 *(.fixup)
97 *(__ex_table)
98#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
100
101 .text : { /* Real text segment */
102 _text = .; /* Text and read-only data */
Russell King7ab3f8d2007-03-02 15:01:36 +0000103 __exception_text_start = .;
104 *(.exception.text)
105 __exception_text_end = .;
Sam Ravnborg76647092007-05-13 00:31:33 +0200106 TEXT_TEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 SCHED_TEXT
108 LOCK_TEXT
Nicolas Pitre785d3cd2007-12-03 15:27:56 -0500109 KPROBES_TEXT
Russell King9641c7c2006-06-21 20:38:17 +0100110#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *(.fixup)
Russell King9641c7c2006-06-21 20:38:17 +0100112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 *(.gnu.warning)
114 *(.rodata)
115 *(.rodata.*)
116 *(.glue_7)
117 *(.glue_7t)
118 *(.got) /* Global offset table */
119 }
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 RODATA
122
123 _etext = .; /* End of text and rodata section */
124
Catalin Marinasbff595c2009-02-16 11:41:36 +0100125#ifdef CONFIG_ARM_UNWIND
126 /*
127 * Stack unwinding tables
128 */
129 . = ALIGN(8);
130 .ARM.unwind_idx : {
131 __start_unwind_idx = .;
132 *(.ARM.exidx*)
133 __stop_unwind_idx = .;
134 }
135 .ARM.unwind_tab : {
136 __start_unwind_tab = .;
137 *(.ARM.extab*)
138 __stop_unwind_tab = .;
139 }
140#endif
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#ifdef CONFIG_XIP_KERNEL
143 __data_loc = ALIGN(4); /* location in binary */
Russell King9d4f13e2006-01-03 17:28:33 +0000144 . = PAGE_OFFSET + TEXT_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#else
Russell King4f7a1812005-05-05 13:11:00 +0100146 . = ALIGN(THREAD_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 __data_loc = .;
148#endif
149
150 .data : AT(__data_loc) {
Russell King37efe642008-12-01 11:53:07 +0000151 _data = .; /* address in memory */
Catalin Marinas8c7e6572009-05-30 14:00:17 +0100152 _sdata = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /*
155 * first, the init task union, aligned
156 * to an 8192 byte boundary.
157 */
Russell King4efb4482007-05-08 12:39:37 +0100158 *(.data.init_task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160#ifdef CONFIG_XIP_KERNEL
161 . = ALIGN(4096);
162 __init_begin = .;
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +0100163 INIT_DATA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 . = ALIGN(4096);
165 __init_end = .;
166#endif
167
168 . = ALIGN(4096);
169 __nosave_begin = .;
170 *(.data.nosave)
171 . = ALIGN(4096);
172 __nosave_end = .;
173
174 /*
175 * then the cacheline aligned data
176 */
177 . = ALIGN(32);
178 *(.data.cacheline_aligned)
179
180 /*
Nicolas Pitre13b1f642005-10-13 22:04:37 +0100181 * The exception fixup table (might need resorting at runtime)
182 */
183 . = ALIGN(32);
184 __start___ex_table = .;
Russell King9641c7c2006-06-21 20:38:17 +0100185#ifdef CONFIG_MMU
Nicolas Pitre13b1f642005-10-13 22:04:37 +0100186 *(__ex_table)
Russell King9641c7c2006-06-21 20:38:17 +0100187#endif
Nicolas Pitre13b1f642005-10-13 22:04:37 +0100188 __stop___ex_table = .;
189
190 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * and the usual data section
192 */
Sam Ravnborgca967252007-05-17 13:38:44 +0200193 DATA_DATA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 CONSTRUCTORS
195
196 _edata = .;
197 }
Nicolas Pitree98ff7f2007-02-22 16:18:09 +0100198 _edata_loc = __data_loc + SIZEOF(.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 .bss : {
201 __bss_start = .; /* BSS */
202 *(.bss)
203 *(COMMON)
Catalin Marinas8c7e6572009-05-30 14:00:17 +0100204 __bss_stop = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 _end = .;
206 }
207 /* Stabs debugging sections. */
208 .stab 0 : { *(.stab) }
209 .stabstr 0 : { *(.stabstr) }
210 .stab.excl 0 : { *(.stab.excl) }
211 .stab.exclstr 0 : { *(.stab.exclstr) }
212 .stab.index 0 : { *(.stab.index) }
213 .stab.indexstr 0 : { *(.stab.indexstr) }
214 .comment 0 : { *(.comment) }
215}
216
Russell King728f5c02005-11-17 16:43:14 +0000217/*
218 * These must never be empty
219 * If you have to comment these two assert statements out, your
220 * binutils is too old (for other reasons as well)
221 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222ASSERT((__proc_info_end - __proc_info_begin), "missing CPU support")
223ASSERT((__arch_info_end - __arch_info_begin), "no machine record defined")