]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - arch/i386/kernel/vmlinux.lds.S
define new percpu interface for shared data
[mirror_ubuntu-kernels.git] / arch / i386 / kernel / vmlinux.lds.S
CommitLineData
1da177e4
LT
1/* ld script to make i386 Linux kernel
2 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>;
6569580d
VG
3 *
4 * Don't define absolute symbols until and unless you know that symbol
5 * value is should remain constant even if kernel image is relocated
6 * at run time. Absolute symbols are not relocated. If symbol value should
7 * change if kernel is relocated, make the symbol section relative and
8 * put it inside the section definition.
1da177e4
LT
9 */
10
79929fd1
VG
11/* Don't define absolute symbols until and unless you know that symbol
12 * value is should remain constant even if kernel image is relocated
13 * at run time. Absolute symbols are not relocated. If symbol value should
14 * change if kernel is relocated, make the symbol section relative and
15 * put it inside the section definition.
16 */
ad0d75eb
EB
17#define LOAD_OFFSET __PAGE_OFFSET
18
1da177e4
LT
19#include <asm-generic/vmlinux.lds.h>
20#include <asm/thread_info.h>
21#include <asm/page.h>
379b5441 22#include <asm/cache.h>
e69f202d 23#include <asm/boot.h>
1da177e4
LT
24
25OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
26OUTPUT_ARCH(i386)
ad0d75eb 27ENTRY(phys_startup_32)
1da177e4 28jiffies = jiffies_64;
9c9b8b38
JF
29
30PHDRS {
31 text PT_LOAD FLAGS(5); /* R_E */
32 data PT_LOAD FLAGS(7); /* RWE */
03df4f6e 33 note PT_NOTE FLAGS(0); /* ___ */
9c9b8b38 34}
1da177e4
LT
35SECTIONS
36{
e69f202d 37 . = LOAD_OFFSET + LOAD_PHYSICAL_ADDR;
ad0d75eb 38 phys_startup_32 = startup_32 - LOAD_OFFSET;
f8657e1b
VG
39
40 .text.head : AT(ADDR(.text.head) - LOAD_OFFSET) {
41 _text = .; /* Text and read-only data */
42 *(.text.head)
43 } :text = 0x9090
44
1da177e4 45 /* read-only */
ad0d75eb 46 .text : AT(ADDR(.text) - LOAD_OFFSET) {
7664709b 47 TEXT_TEXT
1da177e4
LT
48 SCHED_TEXT
49 LOCK_TEXT
3d97ae5b 50 KPROBES_TEXT
1da177e4
LT
51 *(.fixup)
52 *(.gnu.warning)
6569580d
VG
53 _etext = .; /* End of text section */
54 } :text = 0x9090
1da177e4
LT
55
56 . = ALIGN(16); /* Exception table */
6569580d
VG
57 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
58 __start___ex_table = .;
59 *(__ex_table)
60 __stop___ex_table = .;
61 }
1da177e4 62
91768d6c
JF
63 BUG_TABLE
64
eb71c87a 65 . = ALIGN(4);
eb71c87a 66 .tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) {
6569580d 67 __tracedata_start = .;
eb71c87a 68 *(.tracedata)
6569580d 69 __tracedata_end = .;
eb71c87a 70 }
eb71c87a 71
6fb14755
JB
72 RODATA
73
1da177e4 74 /* writeable */
c06cb8b1 75 . = ALIGN(4096);
ad0d75eb 76 .data : AT(ADDR(.data) - LOAD_OFFSET) { /* Data */
ca967258 77 DATA_DATA
1da177e4 78 CONSTRUCTORS
9c9b8b38 79 } :data
1da177e4
LT
80
81 . = ALIGN(4096);
6569580d
VG
82 .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) {
83 __nosave_begin = .;
84 *(.data.nosave)
85 . = ALIGN(4096);
86 __nosave_end = .;
87 }
1da177e4
LT
88
89 . = ALIGN(4096);
ad0d75eb 90 .data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET) {
5ead97c8 91 *(.data.page_aligned)
ad0d75eb
EB
92 *(.data.idt)
93 }
1da177e4
LT
94
95 . = ALIGN(32);
ad0d75eb
EB
96 .data.cacheline_aligned : AT(ADDR(.data.cacheline_aligned) - LOAD_OFFSET) {
97 *(.data.cacheline_aligned)
98 }
1da177e4 99
6c036527
CL
100 /* rarely changed data like cpu maps */
101 . = ALIGN(32);
6569580d
VG
102 .data.read_mostly : AT(ADDR(.data.read_mostly) - LOAD_OFFSET) {
103 *(.data.read_mostly)
104 _edata = .; /* End of data section */
105 }
1da177e4
LT
106
107 . = ALIGN(THREAD_SIZE); /* init_task */
ad0d75eb
EB
108 .data.init_task : AT(ADDR(.data.init_task) - LOAD_OFFSET) {
109 *(.data.init_task)
110 }
1da177e4 111
9a0b5817
GH
112 /* might get freed after init */
113 . = ALIGN(4096);
9a0b5817 114 .smp_locks : AT(ADDR(.smp_locks) - LOAD_OFFSET) {
6569580d 115 __smp_locks = .;
9a0b5817 116 *(.smp_locks)
6569580d 117 __smp_locks_end = .;
9a0b5817 118 }
6ed01884
VG
119 /* will be freed after init
120 * Following ALIGN() is required to make sure no other data falls on the
121 * same page where __smp_alt_end is pointing as that page might be freed
122 * after boot. Always make sure that ALIGN() directive is present after
123 * the section which contains __smp_alt_end.
124 */
9a0b5817 125 . = ALIGN(4096);
9a0b5817 126
1da177e4
LT
127 /* will be freed after init */
128 . = ALIGN(4096); /* Init code and data */
ad0d75eb 129 .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) {
6569580d 130 __init_begin = .;
1da177e4
LT
131 _sinittext = .;
132 *(.init.text)
133 _einittext = .;
134 }
ad0d75eb 135 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) { *(.init.data) }
1da177e4 136 . = ALIGN(16);
6569580d
VG
137 .init.setup : AT(ADDR(.init.setup) - LOAD_OFFSET) {
138 __setup_start = .;
139 *(.init.setup)
140 __setup_end = .;
141 }
ad0d75eb 142 .initcall.init : AT(ADDR(.initcall.init) - LOAD_OFFSET) {
6569580d 143 __initcall_start = .;
61ce1efe 144 INITCALLS
6569580d 145 __initcall_end = .;
1da177e4 146 }
ad0d75eb 147 .con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) {
6569580d 148 __con_initcall_start = .;
ad0d75eb 149 *(.con_initcall.init)
6569580d 150 __con_initcall_end = .;
ad0d75eb 151 }
1da177e4
LT
152 SECURITY_INIT
153 . = ALIGN(4);
ad0d75eb 154 .altinstructions : AT(ADDR(.altinstructions) - LOAD_OFFSET) {
6569580d 155 __alt_instructions = .;
ad0d75eb 156 *(.altinstructions)
6569580d 157 __alt_instructions_end = .;
ad0d75eb 158 }
ad0d75eb
EB
159 .altinstr_replacement : AT(ADDR(.altinstr_replacement) - LOAD_OFFSET) {
160 *(.altinstr_replacement)
161 }
139ec7c4 162 . = ALIGN(4);
139ec7c4 163 .parainstructions : AT(ADDR(.parainstructions) - LOAD_OFFSET) {
441d40dc 164 __parainstructions = .;
139ec7c4 165 *(.parainstructions)
441d40dc 166 __parainstructions_end = .;
139ec7c4 167 }
1da177e4
LT
168 /* .exit.text is discard at runtime, not link time, to deal with references
169 from .altinstructions and .eh_frame */
ad0d75eb
EB
170 .exit.text : AT(ADDR(.exit.text) - LOAD_OFFSET) { *(.exit.text) }
171 .exit.data : AT(ADDR(.exit.data) - LOAD_OFFSET) { *(.exit.data) }
67d38229 172#if defined(CONFIG_BLK_DEV_INITRD)
1da177e4 173 . = ALIGN(4096);
6569580d
VG
174 .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) {
175 __initramfs_start = .;
176 *(.init.ramfs)
177 __initramfs_end = .;
178 }
67d38229 179#endif
b6e3590f 180 . = ALIGN(4096);
6569580d
VG
181 .data.percpu : AT(ADDR(.data.percpu) - LOAD_OFFSET) {
182 __per_cpu_start = .;
183 *(.data.percpu)
5fb7dc37 184 *(.data.percpu.shared_aligned)
6569580d
VG
185 __per_cpu_end = .;
186 }
1da177e4 187 . = ALIGN(4096);
1da177e4
LT
188 /* freed after init ends here */
189
ad0d75eb 190 .bss : AT(ADDR(.bss) - LOAD_OFFSET) {
6569580d
VG
191 __init_end = .;
192 __bss_start = .; /* BSS */
193 *(.bss.page_aligned)
1da177e4 194 *(.bss)
6569580d
VG
195 . = ALIGN(4);
196 __bss_stop = .;
197 _end = . ;
198 /* This is where the kernel creates the early boot page tables */
199 . = ALIGN(4096);
200 pg0 = . ;
1da177e4 201 }
1da177e4
LT
202
203 /* Sections to be discarded */
204 /DISCARD/ : {
205 *(.exitcall.exit)
206 }
207
a7d0c210
PBG
208 STABS_DEBUG
209
210 DWARF_DEBUG
9c9b8b38
JF
211
212 NOTES
1da177e4 213}