]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/powerpc/kernel/vmlinux.lds.S
powerpc/64s: Add support for a store forwarding barrier at kernel entry/exit
[mirror_ubuntu-bionic-kernel.git] / arch / powerpc / kernel / vmlinux.lds.S
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
c51e3a41 2#ifdef CONFIG_PPC64
e8222502 3#define PROVIDE32(x) PROVIDE(__unused__##x)
c51e3a41 4#else
e8222502 5#define PROVIDE32(x) PROVIDE(x)
c51e3a41 6#endif
4846c5de 7#include <asm/page.h>
14cf11af 8#include <asm-generic/vmlinux.lds.h>
bd67fcf9 9#include <asm/cache.h>
62bef288 10#include <asm/thread_info.h>
14cf11af 11
95902e6c 12#if defined(CONFIG_STRICT_KERNEL_RWX) && !defined(CONFIG_PPC32)
d924cc3f
BS
13#define STRICT_ALIGN_SIZE (1 << 24)
14#else
15#define STRICT_ALIGN_SIZE PAGE_SIZE
16#endif
17
e19e4ab4
ME
18ENTRY(_stext)
19
c69cccc9
SB
20PHDRS {
21 kernel PT_LOAD FLAGS(7); /* RWX */
22 notes PT_NOTE FLAGS(0);
23 dummy PT_NOTE FLAGS(0);
24
25 /* binutils < 2.18 has a bug that makes it misbehave when taking an
26 ELF file with all segments at load address 0 as input. This
27 happens when running "strip" on vmlinux, because of the AT() magic
28 in this linker script. People using GCC >= 4.2 won't run into
29 this problem, because the "build-id" support will put some data
30 into the "notes" segment (at a non-zero load address).
31
32 To work around this, we force some data into both the "dummy"
33 segment and the kernel segment, so the dummy segment will get a
34 non-zero load address. It's not enough to always create the
35 "notes" segment, since if nothing gets assigned to it, its load
36 address will be zero. */
37}
38
cabb5587
SR
39#ifdef CONFIG_PPC64
40OUTPUT_ARCH(powerpc:common64)
41jiffies = jiffies_64;
42#else
14cf11af
PM
43OUTPUT_ARCH(powerpc:common)
44jiffies = jiffies_64 + 4;
cabb5587 45#endif
14cf11af
PM
46SECTIONS
47{
e8222502 48 . = KERNELBASE;
14cf11af 49
e8222502
BH
50/*
51 * Text, read only data and other permanent read-only sections
52 */
53
57f26649
NP
54 _text = .;
55 _stext = .;
56
57 /*
58 * Head text.
59 * This needs to be in its own output section to avoid ld placing
60 * branch trampoline stubs randomly throughout the fixed sections,
61 * which it will do (even if the branch comes from another section)
62 * in order to optimize stub generation.
63 */
64 .head.text : AT(ADDR(.head.text) - LOAD_OFFSET) {
65#ifdef CONFIG_PPC64
66 KEEP(*(.head.text.first_256B));
67#ifdef CONFIG_PPC_BOOK3E
57f26649
NP
68#else
69 KEEP(*(.head.text.real_vectors));
70 *(.head.text.real_trampolines);
71 KEEP(*(.head.text.virt_vectors));
72 *(.head.text.virt_trampolines);
73# if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
74 KEEP(*(.head.data.fwnmi_page));
57f26649
NP
75# endif
76#endif
57f26649
NP
77#else /* !CONFIG_PPC64 */
78 HEAD_TEXT
79#endif
80 } :kernel
81
7aa5b018
NR
82 __head_end = .;
83
dadc4a1b
NP
84#ifdef CONFIG_PPC64
85 /*
86 * BLOCK(0) overrides the default output section alignment because
87 * this needs to start right after .head.text in order for fixed
88 * section placement to work.
89 */
90 .text BLOCK(0) : AT(ADDR(.text) - LOAD_OFFSET) {
951eedeb
NP
91#ifdef CONFIG_LD_HEAD_STUB_CATCH
92 *(.linker_stub_catch);
93 . = . ;
94#endif
95
dadc4a1b 96#else
366234f6 97 .text : AT(ADDR(.text) - LOAD_OFFSET) {
748a7683 98 ALIGN_FUNCTION();
dadc4a1b 99#endif
13beadd9 100 /* careful! __ftr_alt_* sections need to be close to .text */
83a092cf 101 *(.text.hot .text .text.fixup .text.unlikely .fixup __ftr_alt_* .ref.text);
e8222502 102 SCHED_TEXT
6727ad9e 103 CPUIDLE_TEXT
e8222502
BH
104 LOCK_TEXT
105 KPROBES_TEXT
6794c782 106 IRQENTRY_TEXT
be7635e7 107 SOFTIRQENTRY_TEXT
e8c68825
NP
108 /*
109 * -Os builds call FP save/restore functions. The powerpc64
110 * linker generates those on demand in the .sfpr section.
111 * .sfpr gets placed at the beginning of a group of input
112 * sections, which can break start-of-text offset if it is
113 * included with the main text sections, so put it by itself.
114 */
115 *(.sfpr);
7de3b27b
ME
116 MEM_KEEP(init.text)
117 MEM_KEEP(exit.text)
14cf11af 118
e8222502
BH
119#ifdef CONFIG_PPC32
120 *(.got1)
121 __got2_start = .;
122 *(.got2)
123 __got2_end = .;
124#endif /* CONFIG_PPC32 */
125
c69cccc9 126 } :kernel
e8222502 127
303996da
SR
128 . = ALIGN(PAGE_SIZE);
129 _etext = .;
130 PROVIDE32 (etext = .);
131
e8222502 132 /* Read-only data */
d924cc3f 133 RO_DATA(PAGE_SIZE)
e8222502 134
aa8a5e00 135#ifdef CONFIG_PPC64
cc437c1d
NP
136 . = ALIGN(8);
137 __stf_entry_barrier_fixup : AT(ADDR(__stf_entry_barrier_fixup) - LOAD_OFFSET) {
138 __start___stf_entry_barrier_fixup = .;
139 *(__stf_entry_barrier_fixup)
140 __stop___stf_entry_barrier_fixup = .;
141 }
142
143 . = ALIGN(8);
144 __stf_exit_barrier_fixup : AT(ADDR(__stf_exit_barrier_fixup) - LOAD_OFFSET) {
145 __start___stf_exit_barrier_fixup = .;
146 *(__stf_exit_barrier_fixup)
147 __stop___stf_exit_barrier_fixup = .;
148 }
149
aa8a5e00
ME
150 . = ALIGN(8);
151 __rfi_flush_fixup : AT(ADDR(__rfi_flush_fixup) - LOAD_OFFSET) {
152 __start___rfi_flush_fixup = .;
153 *(__rfi_flush_fixup)
154 __stop___rfi_flush_fixup = .;
155 }
156#endif
157
62bef288 158 EXCEPTION_TABLE(0)
14cf11af 159
c69cccc9
SB
160 NOTES :kernel :notes
161
162 /* The dummy segment contents for the bug workaround mentioned above
163 near PHDRS. */
80c60bf9 164 .dummy : AT(ADDR(.dummy) - LOAD_OFFSET) {
e16459c6
MM
165 LONG(0)
166 LONG(0)
167 LONG(0)
c69cccc9 168 } :kernel :dummy
8fb775ee 169
e8222502
BH
170/*
171 * Init sections discarded at runtime
172 */
d924cc3f 173 . = ALIGN(STRICT_ALIGN_SIZE);
e8222502 174 __init_begin = .;
62bef288 175 INIT_TEXT_SECTION(PAGE_SIZE) :kernel
e8222502
BH
176
177 /* .exit.text is discarded at runtime, not link time,
178 * to deal with references from __bug_table
179 */
366234f6 180 .exit.text : AT(ADDR(.exit.text) - LOAD_OFFSET) {
01ba2bdc
SR
181 EXIT_TEXT
182 }
e8222502 183
366234f6 184 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) {
01ba2bdc 185 INIT_DATA
e8222502
BH
186 __vtop_table_begin = .;
187 *(.vtop_fixup);
188 __vtop_table_end = .;
189 __ptov_table_begin = .;
190 *(.ptov_fixup);
191 __ptov_table_end = .;
192 }
193
366234f6 194 .init.setup : AT(ADDR(.init.setup) - LOAD_OFFSET) {
62bef288 195 INIT_SETUP(16)
e8222502
BH
196 }
197
366234f6 198 .initcall.init : AT(ADDR(.initcall.init) - LOAD_OFFSET) {
62bef288
TA
199 INIT_CALLS
200 }
e8222502 201
366234f6 202 .con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) {
62bef288 203 CON_INITCALL
e8222502
BH
204 }
205
206 SECURITY_INIT
207
208 . = ALIGN(8);
366234f6 209 __ftr_fixup : AT(ADDR(__ftr_fixup) - LOAD_OFFSET) {
cabb5587
SR
210 __start___ftr_fixup = .;
211 *(__ftr_fixup)
212 __stop___ftr_fixup = .;
213 }
2d1b2027 214 . = ALIGN(8);
7c03d653
BH
215 __mmu_ftr_fixup : AT(ADDR(__mmu_ftr_fixup) - LOAD_OFFSET) {
216 __start___mmu_ftr_fixup = .;
217 *(__mmu_ftr_fixup)
218 __stop___mmu_ftr_fixup = .;
219 }
220 . = ALIGN(8);
2d1b2027
KG
221 __lwsync_fixup : AT(ADDR(__lwsync_fixup) - LOAD_OFFSET) {
222 __start___lwsync_fixup = .;
223 *(__lwsync_fixup)
224 __stop___lwsync_fixup = .;
225 }
3f639ee8
SR
226#ifdef CONFIG_PPC64
227 . = ALIGN(8);
366234f6 228 __fw_ftr_fixup : AT(ADDR(__fw_ftr_fixup) - LOAD_OFFSET) {
3f639ee8
SR
229 __start___fw_ftr_fixup = .;
230 *(__fw_ftr_fixup)
231 __stop___fw_ftr_fixup = .;
232 }
233#endif
366234f6 234 .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) {
62bef288 235 INIT_RAM_FS
e8222502 236 }
62bef288 237
0415b00d 238 PERCPU_SECTION(L1_CACHE_BYTES)
14cf11af 239
e8222502 240 . = ALIGN(8);
366234f6 241 .machine.desc : AT(ADDR(.machine.desc) - LOAD_OFFSET) {
e8222502
BH
242 __machine_desc_start = . ;
243 *(.machine.desc)
244 __machine_desc_end = . ;
245 }
2a4b9c5a 246#ifdef CONFIG_RELOCATABLE
549e8152 247 . = ALIGN(8);
9c5f7d39
SP
248 .dynsym : AT(ADDR(.dynsym) - LOAD_OFFSET)
249 {
27d11496 250#ifdef CONFIG_PPC32
9c5f7d39
SP
251 __dynamic_symtab = .;
252#endif
253 *(.dynsym)
254 }
549e8152
PM
255 .dynstr : AT(ADDR(.dynstr) - LOAD_OFFSET) { *(.dynstr) }
256 .dynamic : AT(ADDR(.dynamic) - LOAD_OFFSET)
257 {
258 __dynamic_start = .;
259 *(.dynamic)
260 }
261 .hash : AT(ADDR(.hash) - LOAD_OFFSET) { *(.hash) }
262 .interp : AT(ADDR(.interp) - LOAD_OFFSET) { *(.interp) }
263 .rela.dyn : AT(ADDR(.rela.dyn) - LOAD_OFFSET)
264 {
265 __rela_dyn_start = .;
266 *(.rela*)
267 }
2a4b9c5a 268#endif
4c812318
SR
269 /* .exit.data is discarded at runtime, not link time,
270 * to deal with references from .exit.text
271 */
272 .exit.data : AT(ADDR(.exit.data) - LOAD_OFFSET) {
273 EXIT_DATA
274 }
e8222502
BH
275
276 /* freed after init ends here */
277 . = ALIGN(PAGE_SIZE);
278 __init_end = .;
279
280/*
281 * And now the various read/write data
282 */
283
284 . = ALIGN(PAGE_SIZE);
285 _sdata = .;
14cf11af 286
cabb5587 287#ifdef CONFIG_PPC32
366234f6 288 .data : AT(ADDR(.data) - LOAD_OFFSET) {
ca967258 289 DATA_DATA
e8222502 290 *(.sdata)
83a092cf 291 *(.sdata2)
e8222502 292 *(.got.plt) *(.got)
83a092cf 293 *(.plt)
e8222502 294 }
cabb5587 295#else
366234f6 296 .data : AT(ADDR(.data) - LOAD_OFFSET) {
3ae0aa9f
MD
297 DATA_DATA
298 *(.data.rel*)
299 *(.toc1)
e8222502
BH
300 *(.branch_lt)
301 }
14cf11af 302
366234f6 303 .opd : AT(ADDR(.opd) - LOAD_OFFSET) {
e8222502
BH
304 *(.opd)
305 }
306
5e95235c 307 . = ALIGN(256);
366234f6 308 .got : AT(ADDR(.got) - LOAD_OFFSET) {
e8222502 309 __toc_start = .;
5ac47f7a
AB
310#ifndef CONFIG_RELOCATABLE
311 __prom_init_toc_start = .;
312 arch/powerpc/kernel/prom_init.o*(.toc .got)
313 __prom_init_toc_end = .;
314#endif
e8222502
BH
315 *(.got)
316 *(.toc)
317 }
cabb5587 318#endif
14cf11af 319
e8222502 320 /* The initial task and kernel stack */
2af7687f 321 INIT_TASK_DATA_SECTION(THREAD_SIZE)
14cf11af 322
75b13483 323 .data..page_aligned : AT(ADDR(.data..page_aligned) - LOAD_OFFSET) {
62bef288 324 PAGE_ALIGNED_DATA(PAGE_SIZE)
e8222502 325 }
14cf11af 326
4af57b78 327 .data..cacheline_aligned : AT(ADDR(.data..cacheline_aligned) - LOAD_OFFSET) {
62bef288 328 CACHELINE_ALIGNED_DATA(L1_CACHE_BYTES)
e8222502 329 }
14cf11af 330
54cb27a7 331 .data..read_mostly : AT(ADDR(.data..read_mostly) - LOAD_OFFSET) {
62bef288 332 READ_MOSTLY_DATA(L1_CACHE_BYTES)
bd67fcf9
TB
333 }
334
5be2a213 335 . = ALIGN(PAGE_SIZE);
366234f6 336 .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) {
62bef288 337 NOSAVE_DATA
e8222502 338 }
4a288563 339
b5effd38
PZ
340 BUG_TABLE
341
903444e4
ME
342 . = ALIGN(PAGE_SIZE);
343 _edata = .;
344 PROVIDE32 (edata = .);
345
e8222502
BH
346/*
347 * And finally the bss
348 */
349
62bef288 350 BSS_SECTION(0, 0, 0)
14cf11af 351
e8222502
BH
352 . = ALIGN(PAGE_SIZE);
353 _end = . ;
354 PROVIDE32 (end = .);
023bf6f1 355
83a092cf
NP
356 STABS_DEBUG
357
358 DWARF_DEBUG
359
023bf6f1 360 DISCARDS
83a092cf
NP
361 /DISCARD/ : {
362 *(*.EMB.apuinfo)
363 *(.glink .iplt .plt .rela* .comment)
364 *(.gnu.version*)
365 *(.gnu.attributes)
366 *(.eh_frame)
367 }
14cf11af 368}