2 #define PROVIDE32(x) PROVIDE(__unused__##x)
4 #define PROVIDE32(x) PROVIDE(x)
7 #include <asm-generic/vmlinux.lds.h>
9 #include <asm/thread_info.h>
14 kernel PT_LOAD FLAGS(7); /* RWX */
15 notes PT_NOTE FLAGS(0);
16 dummy PT_NOTE FLAGS(0);
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).
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. */
33 OUTPUT_ARCH(powerpc:common64)
36 OUTPUT_ARCH(powerpc:common)
37 jiffies = jiffies_64 + 4;
44 * Text, read only data and other permanent read-only sections
48 .text : AT(ADDR(.text) - LOAD_OFFSET) {
52 /* careful! __ftr_alt_* sections need to be close to .text */
53 *(.text .fixup __ftr_alt_* .ref.text)
65 #endif /* CONFIG_PPC32 */
71 PROVIDE32 (etext = .);
80 /* The dummy segment contents for the bug workaround mentioned above
82 .dummy : AT(ADDR(.dummy) - LOAD_OFFSET) {
89 * Init sections discarded at runtime
93 INIT_TEXT_SECTION(PAGE_SIZE) :kernel
95 /* .exit.text is discarded at runtime, not link time,
96 * to deal with references from __bug_table
98 .exit.text : AT(ADDR(.exit.text) - LOAD_OFFSET) {
102 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) {
104 __vtop_table_begin = .;
106 __vtop_table_end = .;
107 __ptov_table_begin = .;
109 __ptov_table_end = .;
112 .init.setup : AT(ADDR(.init.setup) - LOAD_OFFSET) {
116 .initcall.init : AT(ADDR(.initcall.init) - LOAD_OFFSET) {
120 .con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) {
127 __ftr_fixup : AT(ADDR(__ftr_fixup) - LOAD_OFFSET) {
128 __start___ftr_fixup = .;
130 __stop___ftr_fixup = .;
133 __mmu_ftr_fixup : AT(ADDR(__mmu_ftr_fixup) - LOAD_OFFSET) {
134 __start___mmu_ftr_fixup = .;
136 __stop___mmu_ftr_fixup = .;
139 __lwsync_fixup : AT(ADDR(__lwsync_fixup) - LOAD_OFFSET) {
140 __start___lwsync_fixup = .;
142 __stop___lwsync_fixup = .;
146 __fw_ftr_fixup : AT(ADDR(__fw_ftr_fixup) - LOAD_OFFSET) {
147 __start___fw_ftr_fixup = .;
149 __stop___fw_ftr_fixup = .;
152 .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) {
156 PERCPU_SECTION(L1_CACHE_BYTES)
159 .machine.desc : AT(ADDR(.machine.desc) - LOAD_OFFSET) {
160 __machine_desc_start = . ;
162 __machine_desc_end = . ;
164 #ifdef CONFIG_RELOCATABLE
166 .dynsym : AT(ADDR(.dynsym) - LOAD_OFFSET)
169 __dynamic_symtab = .;
173 .dynstr : AT(ADDR(.dynstr) - LOAD_OFFSET) { *(.dynstr) }
174 .dynamic : AT(ADDR(.dynamic) - LOAD_OFFSET)
179 .hash : AT(ADDR(.hash) - LOAD_OFFSET) { *(.hash) }
180 .interp : AT(ADDR(.interp) - LOAD_OFFSET) { *(.interp) }
181 .rela.dyn : AT(ADDR(.rela.dyn) - LOAD_OFFSET)
183 __rela_dyn_start = .;
187 /* .exit.data is discarded at runtime, not link time,
188 * to deal with references from .exit.text
190 .exit.data : AT(ADDR(.exit.data) - LOAD_OFFSET) {
194 /* freed after init ends here */
195 . = ALIGN(PAGE_SIZE);
199 * And now the various read/write data
202 . = ALIGN(PAGE_SIZE);
206 .data : AT(ADDR(.data) - LOAD_OFFSET) {
212 .data : AT(ADDR(.data) - LOAD_OFFSET) {
219 .opd : AT(ADDR(.opd) - LOAD_OFFSET) {
224 .got : AT(ADDR(.got) - LOAD_OFFSET) {
226 #ifndef CONFIG_RELOCATABLE
227 __prom_init_toc_start = .;
228 arch/powerpc/kernel/prom_init.o*(.toc .got)
229 __prom_init_toc_end = .;
236 /* The initial task and kernel stack */
237 INIT_TASK_DATA_SECTION(THREAD_SIZE)
239 .data..page_aligned : AT(ADDR(.data..page_aligned) - LOAD_OFFSET) {
240 PAGE_ALIGNED_DATA(PAGE_SIZE)
243 .data..cacheline_aligned : AT(ADDR(.data..cacheline_aligned) - LOAD_OFFSET) {
244 CACHELINE_ALIGNED_DATA(L1_CACHE_BYTES)
247 .data..read_mostly : AT(ADDR(.data..read_mostly) - LOAD_OFFSET) {
248 READ_MOSTLY_DATA(L1_CACHE_BYTES)
251 . = ALIGN(PAGE_SIZE);
252 .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) {
256 . = ALIGN(PAGE_SIZE);
258 PROVIDE32 (edata = .);
261 * And finally the bss
266 . = ALIGN(PAGE_SIZE);
270 /* Sections to be discarded. */