]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/powerpc/kernel/vmlinux.lds.S
Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-artful-kernel.git] / arch / powerpc / kernel / vmlinux.lds.S
CommitLineData
c51e3a41 1#ifdef CONFIG_PPC64
e8222502 2#define PROVIDE32(x) PROVIDE(__unused__##x)
c51e3a41 3#else
e8222502 4#define PROVIDE32(x) PROVIDE(x)
c51e3a41 5#endif
4846c5de 6#include <asm/page.h>
14cf11af 7#include <asm-generic/vmlinux.lds.h>
bd67fcf9 8#include <asm/cache.h>
62bef288 9#include <asm/thread_info.h>
14cf11af 10
e19e4ab4
ME
11ENTRY(_stext)
12
c69cccc9
SB
13PHDRS {
14 kernel PT_LOAD FLAGS(7); /* RWX */
15 notes PT_NOTE FLAGS(0);
16 dummy PT_NOTE FLAGS(0);
17
18 /* binutils < 2.18 has a bug that makes it misbehave when taking an
19 ELF file with all segments at load address 0 as input. This
20 happens when running "strip" on vmlinux, because of the AT() magic
21 in this linker script. People using GCC >= 4.2 won't run into
22 this problem, because the "build-id" support will put some data
23 into the "notes" segment (at a non-zero load address).
24
25 To work around this, we force some data into both the "dummy"
26 segment and the kernel segment, so the dummy segment will get a
27 non-zero load address. It's not enough to always create the
28 "notes" segment, since if nothing gets assigned to it, its load
29 address will be zero. */
30}
31
cabb5587
SR
32#ifdef CONFIG_PPC64
33OUTPUT_ARCH(powerpc:common64)
34jiffies = jiffies_64;
35#else
14cf11af
PM
36OUTPUT_ARCH(powerpc:common)
37jiffies = jiffies_64 + 4;
cabb5587 38#endif
14cf11af
PM
39SECTIONS
40{
d4703aef
RR
41 . = 0;
42 reloc_start = .;
43
e8222502 44 . = KERNELBASE;
14cf11af 45
e8222502
BH
46/*
47 * Text, read only data and other permanent read-only sections
48 */
49
50 /* Text and gots */
366234f6 51 .text : AT(ADDR(.text) - LOAD_OFFSET) {
748a7683 52 ALIGN_FUNCTION();
e7039845 53 HEAD_TEXT
fd593d12 54 _text = .;
13beadd9
TA
55 /* careful! __ftr_alt_* sections need to be close to .text */
56 *(.text .fixup __ftr_alt_* .ref.text)
e8222502
BH
57 SCHED_TEXT
58 LOCK_TEXT
59 KPROBES_TEXT
6794c782 60 IRQENTRY_TEXT
14cf11af 61
e8222502
BH
62#ifdef CONFIG_PPC32
63 *(.got1)
64 __got2_start = .;
65 *(.got2)
66 __got2_end = .;
67#endif /* CONFIG_PPC32 */
68
c69cccc9 69 } :kernel
e8222502 70
303996da
SR
71 . = ALIGN(PAGE_SIZE);
72 _etext = .;
73 PROVIDE32 (etext = .);
74
e8222502
BH
75 /* Read-only data */
76 RODATA
77
62bef288 78 EXCEPTION_TABLE(0)
14cf11af 79
c69cccc9
SB
80 NOTES :kernel :notes
81
82 /* The dummy segment contents for the bug workaround mentioned above
83 near PHDRS. */
80c60bf9 84 .dummy : AT(ADDR(.dummy) - LOAD_OFFSET) {
e16459c6
MM
85 LONG(0)
86 LONG(0)
87 LONG(0)
c69cccc9 88 } :kernel :dummy
8fb775ee 89
e8222502
BH
90/*
91 * Init sections discarded at runtime
92 */
93 . = ALIGN(PAGE_SIZE);
94 __init_begin = .;
62bef288 95 INIT_TEXT_SECTION(PAGE_SIZE) :kernel
e8222502
BH
96
97 /* .exit.text is discarded at runtime, not link time,
98 * to deal with references from __bug_table
99 */
366234f6 100 .exit.text : AT(ADDR(.exit.text) - LOAD_OFFSET) {
01ba2bdc
SR
101 EXIT_TEXT
102 }
e8222502 103
366234f6 104 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) {
01ba2bdc 105 INIT_DATA
e8222502
BH
106 __vtop_table_begin = .;
107 *(.vtop_fixup);
108 __vtop_table_end = .;
109 __ptov_table_begin = .;
110 *(.ptov_fixup);
111 __ptov_table_end = .;
c4e3ea25
SR
112#ifdef CONFIG_PPC_ISERIES
113 __dt_strings_start = .;
114 *(.dt_strings);
115 __dt_strings_end = .;
116#endif
e8222502
BH
117 }
118
366234f6 119 .init.setup : AT(ADDR(.init.setup) - LOAD_OFFSET) {
62bef288 120 INIT_SETUP(16)
e8222502
BH
121 }
122
366234f6 123 .initcall.init : AT(ADDR(.initcall.init) - LOAD_OFFSET) {
62bef288
TA
124 INIT_CALLS
125 }
e8222502 126
366234f6 127 .con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) {
62bef288 128 CON_INITCALL
e8222502
BH
129 }
130
131 SECURITY_INIT
132
133 . = ALIGN(8);
366234f6 134 __ftr_fixup : AT(ADDR(__ftr_fixup) - LOAD_OFFSET) {
cabb5587
SR
135 __start___ftr_fixup = .;
136 *(__ftr_fixup)
137 __stop___ftr_fixup = .;
138 }
2d1b2027 139 . = ALIGN(8);
7c03d653
BH
140 __mmu_ftr_fixup : AT(ADDR(__mmu_ftr_fixup) - LOAD_OFFSET) {
141 __start___mmu_ftr_fixup = .;
142 *(__mmu_ftr_fixup)
143 __stop___mmu_ftr_fixup = .;
144 }
145 . = ALIGN(8);
2d1b2027
KG
146 __lwsync_fixup : AT(ADDR(__lwsync_fixup) - LOAD_OFFSET) {
147 __start___lwsync_fixup = .;
148 *(__lwsync_fixup)
149 __stop___lwsync_fixup = .;
150 }
3f639ee8
SR
151#ifdef CONFIG_PPC64
152 . = ALIGN(8);
366234f6 153 __fw_ftr_fixup : AT(ADDR(__fw_ftr_fixup) - LOAD_OFFSET) {
3f639ee8
SR
154 __start___fw_ftr_fixup = .;
155 *(__fw_ftr_fixup)
156 __stop___fw_ftr_fixup = .;
157 }
158#endif
366234f6 159 .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) {
62bef288 160 INIT_RAM_FS
e8222502 161 }
62bef288 162
0415b00d 163 PERCPU_SECTION(L1_CACHE_BYTES)
14cf11af 164
e8222502 165 . = ALIGN(8);
366234f6 166 .machine.desc : AT(ADDR(.machine.desc) - LOAD_OFFSET) {
e8222502
BH
167 __machine_desc_start = . ;
168 *(.machine.desc)
169 __machine_desc_end = . ;
170 }
2a4b9c5a 171#ifdef CONFIG_RELOCATABLE
549e8152 172 . = ALIGN(8);
9c5f7d39
SP
173 .dynsym : AT(ADDR(.dynsym) - LOAD_OFFSET)
174 {
175#ifdef CONFIG_RELOCATABLE_PPC32
176 __dynamic_symtab = .;
177#endif
178 *(.dynsym)
179 }
549e8152
PM
180 .dynstr : AT(ADDR(.dynstr) - LOAD_OFFSET) { *(.dynstr) }
181 .dynamic : AT(ADDR(.dynamic) - LOAD_OFFSET)
182 {
183 __dynamic_start = .;
184 *(.dynamic)
185 }
186 .hash : AT(ADDR(.hash) - LOAD_OFFSET) { *(.hash) }
187 .interp : AT(ADDR(.interp) - LOAD_OFFSET) { *(.interp) }
188 .rela.dyn : AT(ADDR(.rela.dyn) - LOAD_OFFSET)
189 {
190 __rela_dyn_start = .;
191 *(.rela*)
192 }
2a4b9c5a 193#endif
e8222502
BH
194
195 /* freed after init ends here */
196 . = ALIGN(PAGE_SIZE);
197 __init_end = .;
198
199/*
200 * And now the various read/write data
201 */
202
203 . = ALIGN(PAGE_SIZE);
204 _sdata = .;
14cf11af 205
cabb5587 206#ifdef CONFIG_PPC32
366234f6 207 .data : AT(ADDR(.data) - LOAD_OFFSET) {
ca967258 208 DATA_DATA
e8222502
BH
209 *(.sdata)
210 *(.got.plt) *(.got)
211 }
cabb5587 212#else
366234f6 213 .data : AT(ADDR(.data) - LOAD_OFFSET) {
3ae0aa9f
MD
214 DATA_DATA
215 *(.data.rel*)
216 *(.toc1)
e8222502
BH
217 *(.branch_lt)
218 }
14cf11af 219
366234f6 220 .opd : AT(ADDR(.opd) - LOAD_OFFSET) {
e8222502
BH
221 *(.opd)
222 }
223
366234f6 224 .got : AT(ADDR(.got) - LOAD_OFFSET) {
e8222502
BH
225 __toc_start = .;
226 *(.got)
227 *(.toc)
228 }
cabb5587 229#endif
14cf11af 230
e8222502 231 /* The initial task and kernel stack */
2af7687f 232 INIT_TASK_DATA_SECTION(THREAD_SIZE)
14cf11af 233
75b13483 234 .data..page_aligned : AT(ADDR(.data..page_aligned) - LOAD_OFFSET) {
62bef288 235 PAGE_ALIGNED_DATA(PAGE_SIZE)
e8222502 236 }
14cf11af 237
4af57b78 238 .data..cacheline_aligned : AT(ADDR(.data..cacheline_aligned) - LOAD_OFFSET) {
62bef288 239 CACHELINE_ALIGNED_DATA(L1_CACHE_BYTES)
e8222502 240 }
14cf11af 241
54cb27a7 242 .data..read_mostly : AT(ADDR(.data..read_mostly) - LOAD_OFFSET) {
62bef288 243 READ_MOSTLY_DATA(L1_CACHE_BYTES)
bd67fcf9
TB
244 }
245
5be2a213 246 . = ALIGN(PAGE_SIZE);
366234f6 247 .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) {
62bef288 248 NOSAVE_DATA
e8222502 249 }
4a288563 250
903444e4
ME
251 . = ALIGN(PAGE_SIZE);
252 _edata = .;
253 PROVIDE32 (edata = .);
254
e8222502
BH
255/*
256 * And finally the bss
257 */
258
62bef288 259 BSS_SECTION(0, 0, 0)
14cf11af 260
e8222502
BH
261 . = ALIGN(PAGE_SIZE);
262 _end = . ;
263 PROVIDE32 (end = .);
023bf6f1
TH
264
265 /* Sections to be discarded. */
266 DISCARDS
14cf11af 267}