blob: b295f6a85cf121a6ba43aa3a9aed2234f7e6ae85 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 .init : { /* Init code and data */
27 _stext = .;
28 _sinittext = .;
29 *(.init.text)
30 _einittext = .;
31 __proc_info_begin = .;
Ben Dooks02b7dd12005-09-20 16:35:03 +010032 *(.proc.info.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 __proc_info_end = .;
34 __arch_info_begin = .;
Ben Dooks9d0fd1e2005-09-20 16:45:20 +010035 *(.arch.info.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 __arch_info_end = .;
37 __tagtable_begin = .;
Ben Dooks95060572005-09-20 16:20:49 +010038 *(.taglist.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 __tagtable_end = .;
40 . = ALIGN(16);
41 __setup_start = .;
42 *(.init.setup)
43 __setup_end = .;
44 __early_begin = .;
Ben Dooksbfe68152005-09-20 16:25:12 +010045 *(.early_param.init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 __early_end = .;
47 __initcall_start = .;
Andrew Morton61ce1ef2006-10-27 11:41:44 -070048 INITCALLS
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 __initcall_end = .;
50 __con_initcall_start = .;
51 *(.con_initcall.init)
52 __con_initcall_end = .;
53 __security_initcall_start = .;
54 *(.security_initcall.init)
55 __security_initcall_end = .;
Jean-Paul Saman67d38222007-02-10 01:44:44 -080056#ifdef CONFIG_BLK_DEV_INITRD
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 . = ALIGN(32);
58 __initramfs_start = .;
59 usr/built-in.o(.init.ramfs)
60 __initramfs_end = .;
Jean-Paul Saman67d38222007-02-10 01:44:44 -080061#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 . = ALIGN(64);
63 __per_cpu_start = .;
64 *(.data.percpu)
65 __per_cpu_end = .;
66#ifndef CONFIG_XIP_KERNEL
67 __init_begin = _stext;
68 *(.init.data)
69 . = ALIGN(4096);
70 __init_end = .;
71#endif
72 }
73
74 /DISCARD/ : { /* Exit code and data */
75 *(.exit.text)
76 *(.exit.data)
77 *(.exitcall.exit)
Russell King9641c7c2006-06-21 20:38:17 +010078#ifndef CONFIG_MMU
79 *(.fixup)
80 *(__ex_table)
81#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
83
84 .text : { /* Real text segment */
85 _text = .; /* Text and read-only data */
Russell King7ab3f8d2007-03-02 15:01:36 +000086 __exception_text_start = .;
87 *(.exception.text)
88 __exception_text_end = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 *(.text)
90 SCHED_TEXT
91 LOCK_TEXT
Russell King9641c7c2006-06-21 20:38:17 +010092#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *(.fixup)
Russell King9641c7c2006-06-21 20:38:17 +010094#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 *(.gnu.warning)
96 *(.rodata)
97 *(.rodata.*)
98 *(.glue_7)
99 *(.glue_7t)
100 *(.got) /* Global offset table */
101 }
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 RODATA
104
105 _etext = .; /* End of text and rodata section */
106
107#ifdef CONFIG_XIP_KERNEL
108 __data_loc = ALIGN(4); /* location in binary */
Russell King9d4f13e2006-01-03 17:28:33 +0000109 . = PAGE_OFFSET + TEXT_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#else
Russell King4f7a1812005-05-05 13:11:00 +0100111 . = ALIGN(THREAD_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 __data_loc = .;
113#endif
114
115 .data : AT(__data_loc) {
116 __data_start = .; /* address in memory */
117
118 /*
119 * first, the init task union, aligned
120 * to an 8192 byte boundary.
121 */
122 *(.init.task)
123
124#ifdef CONFIG_XIP_KERNEL
125 . = ALIGN(4096);
126 __init_begin = .;
127 *(.init.data)
128 . = ALIGN(4096);
129 __init_end = .;
130#endif
131
132 . = ALIGN(4096);
133 __nosave_begin = .;
134 *(.data.nosave)
135 . = ALIGN(4096);
136 __nosave_end = .;
137
138 /*
139 * then the cacheline aligned data
140 */
141 . = ALIGN(32);
142 *(.data.cacheline_aligned)
143
144 /*
Nicolas Pitre13b1f642005-10-13 22:04:37 +0100145 * The exception fixup table (might need resorting at runtime)
146 */
147 . = ALIGN(32);
148 __start___ex_table = .;
Russell King9641c7c2006-06-21 20:38:17 +0100149#ifdef CONFIG_MMU
Nicolas Pitre13b1f642005-10-13 22:04:37 +0100150 *(__ex_table)
Russell King9641c7c2006-06-21 20:38:17 +0100151#endif
Nicolas Pitre13b1f642005-10-13 22:04:37 +0100152 __stop___ex_table = .;
153
154 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * and the usual data section
156 */
157 *(.data)
158 CONSTRUCTORS
159
160 _edata = .;
161 }
Nicolas Pitree98ff7f2007-02-22 16:18:09 +0100162 _edata_loc = __data_loc + SIZEOF(.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 .bss : {
165 __bss_start = .; /* BSS */
166 *(.bss)
167 *(COMMON)
168 _end = .;
169 }
170 /* Stabs debugging sections. */
171 .stab 0 : { *(.stab) }
172 .stabstr 0 : { *(.stabstr) }
173 .stab.excl 0 : { *(.stab.excl) }
174 .stab.exclstr 0 : { *(.stab.exclstr) }
175 .stab.index 0 : { *(.stab.index) }
176 .stab.indexstr 0 : { *(.stab.indexstr) }
177 .comment 0 : { *(.comment) }
178}
179
Russell King728f5c02005-11-17 16:43:14 +0000180/*
181 * These must never be empty
182 * If you have to comment these two assert statements out, your
183 * binutils is too old (for other reasons as well)
184 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185ASSERT((__proc_info_end - __proc_info_begin), "missing CPU support")
186ASSERT((__arch_info_end - __arch_info_begin), "no machine record defined")