blob: 8d5a5149bb3a65a092b204095f05e8a3c45da93d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ld script to make x86-64 Linux kernel
2 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>;
3 */
4
Eric W. Biederman5ded01e2005-06-25 14:57:48 -07005#define LOAD_OFFSET __START_KERNEL_map
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <asm-generic/vmlinux.lds.h>
Eric W. Biederman5ded01e2005-06-25 14:57:48 -07008#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Andi Kleenbb334212006-01-11 22:43:54 +010010#undef i386 /* in case the preprocessor is a 32bit one */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012OUTPUT_FORMAT("elf64-x86-64", "elf64-x86-64", "elf64-x86-64")
13OUTPUT_ARCH(i386:x86-64)
14ENTRY(phys_startup_64)
15jiffies_64 = jiffies;
16SECTIONS
17{
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070018 . = __START_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 phys_startup_64 = startup_64 - LOAD_OFFSET;
20 _text = .; /* Text and read-only data */
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070021 .text : AT(ADDR(.text) - LOAD_OFFSET) {
Arjan van de Ven4bdc3b72006-03-25 16:30:49 +010022 /* First the code that has to be first for bootstrapping */
Arjan van de Veneaeae0c2006-03-25 16:30:28 +010023 *(.bootstrap.text)
Arjan van de Ven4bdc3b72006-03-25 16:30:49 +010024 /* Then all the functions that are "hot" in profiles, to group them
25 onto the same hugetlb entry */
26 #include "functionlist"
27 /* Then the rest */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *(.text)
29 SCHED_TEXT
30 LOCK_TEXT
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -070031 KPROBES_TEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 *(.fixup)
33 *(.gnu.warning)
34 } = 0x9090
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070035 /* out-of-line lock text */
36 .text.lock : AT(ADDR(.text.lock) - LOAD_OFFSET) { *(.text.lock) }
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38 _etext = .; /* End of text section */
39
40 . = ALIGN(16); /* Exception table */
41 __start___ex_table = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070042 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { *(__ex_table) }
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 __stop___ex_table = .;
44
45 RODATA
46
Jan Beulichb538ed22006-06-26 13:57:32 +020047#ifdef CONFIG_STACK_UNWIND
48 . = ALIGN(8);
49 .eh_frame : AT(ADDR(.eh_frame) - LOAD_OFFSET) {
50 __start_unwind = .;
51 *(.eh_frame)
52 __end_unwind = .;
53 }
54#endif
55
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070056 /* Data */
57 .data : AT(ADDR(.data) - LOAD_OFFSET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *(.data)
59 CONSTRUCTORS
60 }
61
62 _edata = .; /* End of data section */
63
64 __bss_start = .; /* BSS */
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070065 .bss : AT(ADDR(.bss) - LOAD_OFFSET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 *(.bss.page_aligned)
67 *(.bss)
68 }
Andi Kleen2bc04142005-11-05 17:25:53 +010069 __bss_stop = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070071 . = ALIGN(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 . = ALIGN(CONFIG_X86_L1_CACHE_BYTES);
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070073 .data.cacheline_aligned : AT(ADDR(.data.cacheline_aligned) - LOAD_OFFSET) {
74 *(.data.cacheline_aligned)
75 }
Ravikiran G Thirumalaie405d062006-04-07 19:50:09 +020076 . = ALIGN(CONFIG_X86_INTERNODE_CACHE_BYTES);
Christoph Lameter6c036522005-07-07 17:56:59 -070077 .data.read_mostly : AT(ADDR(.data.read_mostly) - LOAD_OFFSET) {
78 *(.data.read_mostly)
79 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070081#define VSYSCALL_ADDR (-10*1024*1024)
Andrew Mortond312ced2005-07-12 13:58:13 -070082#define VSYSCALL_PHYS_ADDR ((LOADADDR(.data.read_mostly) + SIZEOF(.data.read_mostly) + 4095) & ~(4095))
83#define VSYSCALL_VIRT_ADDR ((ADDR(.data.read_mostly) + SIZEOF(.data.read_mostly) + 4095) & ~(4095))
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070085#define VLOAD_OFFSET (VSYSCALL_ADDR - VSYSCALL_PHYS_ADDR)
86#define VLOAD(x) (ADDR(x) - VLOAD_OFFSET)
87
88#define VVIRT_OFFSET (VSYSCALL_ADDR - VSYSCALL_VIRT_ADDR)
89#define VVIRT(x) (ADDR(x) - VVIRT_OFFSET)
90
91 . = VSYSCALL_ADDR;
92 .vsyscall_0 : AT(VSYSCALL_PHYS_ADDR) { *(.vsyscall_0) }
93 __vsyscall_0 = VSYSCALL_VIRT_ADDR;
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 . = ALIGN(CONFIG_X86_L1_CACHE_BYTES);
Eric W. Biederman5ded01e2005-06-25 14:57:48 -070096 .xtime_lock : AT(VLOAD(.xtime_lock)) { *(.xtime_lock) }
97 xtime_lock = VVIRT(.xtime_lock);
98
99 .vxtime : AT(VLOAD(.vxtime)) { *(.vxtime) }
100 vxtime = VVIRT(.vxtime);
101
Vojtech Pavlikc08c8202006-09-26 10:52:28 +0200102 .vgetcpu_mode : AT(VLOAD(.vgetcpu_mode)) { *(.vgetcpu_mode) }
103 vgetcpu_mode = VVIRT(.vgetcpu_mode);
104
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700105 .wall_jiffies : AT(VLOAD(.wall_jiffies)) { *(.wall_jiffies) }
106 wall_jiffies = VVIRT(.wall_jiffies);
107
108 .sys_tz : AT(VLOAD(.sys_tz)) { *(.sys_tz) }
109 sys_tz = VVIRT(.sys_tz);
110
111 .sysctl_vsyscall : AT(VLOAD(.sysctl_vsyscall)) { *(.sysctl_vsyscall) }
112 sysctl_vsyscall = VVIRT(.sysctl_vsyscall);
113
114 .xtime : AT(VLOAD(.xtime)) { *(.xtime) }
115 xtime = VVIRT(.xtime);
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 . = ALIGN(CONFIG_X86_L1_CACHE_BYTES);
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700118 .jiffies : AT(VLOAD(.jiffies)) { *(.jiffies) }
119 jiffies = VVIRT(.jiffies);
120
121 .vsyscall_1 ADDR(.vsyscall_0) + 1024: AT(VLOAD(.vsyscall_1)) { *(.vsyscall_1) }
122 .vsyscall_2 ADDR(.vsyscall_0) + 2048: AT(VLOAD(.vsyscall_2)) { *(.vsyscall_2) }
123 .vsyscall_3 ADDR(.vsyscall_0) + 3072: AT(VLOAD(.vsyscall_3)) { *(.vsyscall_3) }
124
125 . = VSYSCALL_VIRT_ADDR + 4096;
126
127#undef VSYSCALL_ADDR
128#undef VSYSCALL_PHYS_ADDR
129#undef VSYSCALL_VIRT_ADDR
130#undef VLOAD_OFFSET
131#undef VLOAD
132#undef VVIRT_OFFSET
133#undef VVIRT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 . = ALIGN(8192); /* init_task */
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700136 .data.init_task : AT(ADDR(.data.init_task) - LOAD_OFFSET) {
137 *(.data.init_task)
138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 . = ALIGN(4096);
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700141 .data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET) {
142 *(.data.page_aligned)
143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200145 /* might get freed after init */
146 . = ALIGN(4096);
147 __smp_alt_begin = .;
148 __smp_alt_instructions = .;
149 .smp_altinstructions : AT(ADDR(.smp_altinstructions) - LOAD_OFFSET) {
150 *(.smp_altinstructions)
151 }
152 __smp_alt_instructions_end = .;
153 . = ALIGN(8);
154 __smp_locks = .;
155 .smp_locks : AT(ADDR(.smp_locks) - LOAD_OFFSET) {
156 *(.smp_locks)
157 }
158 __smp_locks_end = .;
159 .smp_altinstr_replacement : AT(ADDR(.smp_altinstr_replacement) - LOAD_OFFSET) {
160 *(.smp_altinstr_replacement)
161 }
162 . = ALIGN(4096);
163 __smp_alt_end = .;
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 . = ALIGN(4096); /* Init code and data */
166 __init_begin = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700167 .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 _sinittext = .;
169 *(.init.text)
170 _einittext = .;
171 }
172 __initdata_begin = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700173 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) { *(.init.data) }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 __initdata_end = .;
175 . = ALIGN(16);
176 __setup_start = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700177 .init.setup : AT(ADDR(.init.setup) - LOAD_OFFSET) { *(.init.setup) }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 __setup_end = .;
179 __initcall_start = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700180 .initcall.init : AT(ADDR(.initcall.init) - LOAD_OFFSET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 *(.initcall1.init)
182 *(.initcall2.init)
183 *(.initcall3.init)
184 *(.initcall4.init)
185 *(.initcall5.init)
186 *(.initcall6.init)
187 *(.initcall7.init)
188 }
189 __initcall_end = .;
190 __con_initcall_start = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700191 .con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) {
192 *(.con_initcall.init)
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 __con_initcall_end = .;
195 SECURITY_INIT
196 . = ALIGN(8);
197 __alt_instructions = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700198 .altinstructions : AT(ADDR(.altinstructions) - LOAD_OFFSET) {
199 *(.altinstructions)
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 __alt_instructions_end = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700202 .altinstr_replacement : AT(ADDR(.altinstr_replacement) - LOAD_OFFSET) {
203 *(.altinstr_replacement)
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /* .exit.text is discard at runtime, not link time, to deal with references
206 from .altinstructions and .eh_frame */
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700207 .exit.text : AT(ADDR(.exit.text) - LOAD_OFFSET) { *(.exit.text) }
208 .exit.data : AT(ADDR(.exit.data) - LOAD_OFFSET) { *(.exit.data) }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 . = ALIGN(4096);
210 __initramfs_start = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700211 .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) { *(.init.ramfs) }
Andi Kleen14c3f852006-02-03 21:51:56 +0100212 __initramfs_end = .;
213 /* temporary here to work around NR_CPUS. If you see this comment in 2.6.17+
214 complain */
215 . = ALIGN(4096);
216 __init_end = .;
Zach Brown16acc0c2006-02-03 21:51:35 +0100217 . = ALIGN(CONFIG_X86_L1_CACHE_BYTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 __per_cpu_start = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700219 .data.percpu : AT(ADDR(.data.percpu) - LOAD_OFFSET) { *(.data.percpu) }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 __per_cpu_end = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 . = ALIGN(4096);
223 __nosave_begin = .;
Eric W. Biederman5ded01e2005-06-25 14:57:48 -0700224 .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) { *(.data.nosave) }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 . = ALIGN(4096);
226 __nosave_end = .;
227
228 _end = . ;
229
230 /* Sections to be discarded */
231 /DISCARD/ : {
232 *(.exitcall.exit)
Jan Beulich6e0c47e2006-01-11 22:42:05 +0100233#ifndef CONFIG_UNWIND_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 *(.eh_frame)
235#endif
236 }
237
Paolo 'Blaisorblade' Giarrusso4413a512005-09-10 19:44:55 +0200238 STABS_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Paolo 'Blaisorblade' Giarrusso4413a512005-09-10 19:44:55 +0200240 DWARF_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}