vmlinux.lds.S 5.4 KB
Newer Older
1
#ifdef CONFIG_PPC64
2
#define PROVIDE32(x)	PROVIDE(__unused__##x)
3
#else
4
#define PROVIDE32(x)	PROVIDE(x)
5
#endif
6
#include <asm/page.h>
7
#include <asm-generic/vmlinux.lds.h>
8
#include <asm/cache.h>
9
#include <asm/thread_info.h>
10

11 12
ENTRY(_stext)

13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
PHDRS {
	kernel PT_LOAD FLAGS(7); /* RWX */
	notes PT_NOTE FLAGS(0);
	dummy PT_NOTE FLAGS(0);

	/* binutils < 2.18 has a bug that makes it misbehave when taking an
	   ELF file with all segments at load address 0 as input.  This
	   happens when running "strip" on vmlinux, because of the AT() magic
	   in this linker script.  People using GCC >= 4.2 won't run into
	   this problem, because the "build-id" support will put some data
	   into the "notes" segment (at a non-zero load address).

	   To work around this, we force some data into both the "dummy"
	   segment and the kernel segment, so the dummy segment will get a
	   non-zero load address.  It's not enough to always create the
	   "notes" segment, since if nothing gets assigned to it, its load
	   address will be zero.  */
}

S
Stephen Rothwell 已提交
32 33 34 35
#ifdef CONFIG_PPC64
OUTPUT_ARCH(powerpc:common64)
jiffies = jiffies_64;
#else
36 37
OUTPUT_ARCH(powerpc:common)
jiffies = jiffies_64 + 4;
S
Stephen Rothwell 已提交
38
#endif
39 40
SECTIONS
{
41 42 43
	. = 0;
	reloc_start = .;

44
	. = KERNELBASE;
45

46 47 48 49 50
/*
 * Text, read only data and other permanent read-only sections
 */

	/* Text and gots */
51
	.text : AT(ADDR(.text) - LOAD_OFFSET) {
52
		ALIGN_FUNCTION();
53
		HEAD_TEXT
54
		_text = .;
55 56
		/* careful! __ftr_alt_* sections need to be close to .text */
		*(.text .fixup __ftr_alt_* .ref.text)
57 58 59
		SCHED_TEXT
		LOCK_TEXT
		KPROBES_TEXT
60
		IRQENTRY_TEXT
61

62 63 64 65 66 67 68
#ifdef CONFIG_PPC32
		*(.got1)
		__got2_start = .;
		*(.got2)
		__got2_end = .;
#endif /* CONFIG_PPC32 */

69
	} :kernel
70

71 72 73 74
	. = ALIGN(PAGE_SIZE);
	_etext = .;
	PROVIDE32 (etext = .);

75 76 77
	/* Read-only data */
	RODATA

78
	EXCEPTION_TABLE(0)
79

80 81 82 83
	NOTES :kernel :notes

	/* The dummy segment contents for the bug workaround mentioned above
	   near PHDRS.  */
84
	.dummy : AT(ADDR(.dummy) - LOAD_OFFSET) {
85 86 87
		LONG(0)
		LONG(0)
		LONG(0)
88
	} :kernel :dummy
89

90 91 92 93 94
/*
 * Init sections discarded at runtime
 */
	. = ALIGN(PAGE_SIZE);
	__init_begin = .;
95
	INIT_TEXT_SECTION(PAGE_SIZE) :kernel
96 97 98 99

	/* .exit.text is discarded at runtime, not link time,
	 * to deal with references from __bug_table
	 */
100
	.exit.text : AT(ADDR(.exit.text) - LOAD_OFFSET) {
101 102
		EXIT_TEXT
	}
103

104
	.init.data : AT(ADDR(.init.data) - LOAD_OFFSET) {
105
		INIT_DATA
106 107 108 109 110 111
		__vtop_table_begin = .;
		*(.vtop_fixup);
		__vtop_table_end = .;
		__ptov_table_begin = .;
		*(.ptov_fixup);
		__ptov_table_end = .;
112 113 114 115 116
#ifdef CONFIG_PPC_ISERIES
		__dt_strings_start = .;
		*(.dt_strings);
		__dt_strings_end = .;
#endif
117 118
	}

119
	.init.setup : AT(ADDR(.init.setup) - LOAD_OFFSET) {
120
		INIT_SETUP(16)
121 122
	}

123
	.initcall.init : AT(ADDR(.initcall.init) - LOAD_OFFSET) {
124 125
		INIT_CALLS
	}
126

127
	.con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) {
128
		CON_INITCALL
129 130 131 132 133
	}

	SECURITY_INIT

	. = ALIGN(8);
134
	__ftr_fixup : AT(ADDR(__ftr_fixup) - LOAD_OFFSET) {
S
Stephen Rothwell 已提交
135 136 137 138
		__start___ftr_fixup = .;
		*(__ftr_fixup)
		__stop___ftr_fixup = .;
	}
K
Kumar Gala 已提交
139
	. = ALIGN(8);
140 141 142 143 144 145
	__mmu_ftr_fixup : AT(ADDR(__mmu_ftr_fixup) - LOAD_OFFSET) {
		__start___mmu_ftr_fixup = .;
		*(__mmu_ftr_fixup)
		__stop___mmu_ftr_fixup = .;
	}
	. = ALIGN(8);
K
Kumar Gala 已提交
146 147 148 149 150
	__lwsync_fixup : AT(ADDR(__lwsync_fixup) - LOAD_OFFSET) {
		__start___lwsync_fixup = .;
		*(__lwsync_fixup)
		__stop___lwsync_fixup = .;
	}
151 152
#ifdef CONFIG_PPC64
	. = ALIGN(8);
153
	__fw_ftr_fixup : AT(ADDR(__fw_ftr_fixup) - LOAD_OFFSET) {
154 155 156 157 158
		__start___fw_ftr_fixup = .;
		*(__fw_ftr_fixup)
		__stop___fw_ftr_fixup = .;
	}
#endif
159
	.init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) {
160
		INIT_RAM_FS
161
	}
162

163
	PERCPU(PAGE_SIZE)
164

165
	. = ALIGN(8);
166
	.machine.desc : AT(ADDR(.machine.desc) - LOAD_OFFSET) {
167 168 169 170
		__machine_desc_start = . ;
		*(.machine.desc)
		__machine_desc_end = . ;
	}
171
#ifdef CONFIG_RELOCATABLE
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
	. = ALIGN(8);
	.dynsym : AT(ADDR(.dynsym) - LOAD_OFFSET) { *(.dynsym) }
	.dynstr : AT(ADDR(.dynstr) - LOAD_OFFSET) { *(.dynstr) }
	.dynamic : AT(ADDR(.dynamic) - LOAD_OFFSET)
	{
		__dynamic_start = .;
		*(.dynamic)
	}
	.hash : AT(ADDR(.hash) - LOAD_OFFSET) { *(.hash) }
	.interp : AT(ADDR(.interp) - LOAD_OFFSET) { *(.interp) }
	.rela.dyn : AT(ADDR(.rela.dyn) - LOAD_OFFSET)
	{
		__rela_dyn_start = .;
		*(.rela*)
	}
187
#endif
188 189 190 191 192 193 194 195 196 197 198

	/* freed after init ends here */
	. = ALIGN(PAGE_SIZE);
	__init_end = .;

/*
 * And now the various read/write data
 */

	. = ALIGN(PAGE_SIZE);
	_sdata = .;
199

S
Stephen Rothwell 已提交
200
#ifdef CONFIG_PPC32
201
	.data : AT(ADDR(.data) - LOAD_OFFSET) {
202
		DATA_DATA
203 204 205
		*(.sdata)
		*(.got.plt) *(.got)
	}
S
Stephen Rothwell 已提交
206
#else
207
	.data : AT(ADDR(.data) - LOAD_OFFSET) {
208 209 210
		DATA_DATA
		*(.data.rel*)
		*(.toc1)
211 212
		*(.branch_lt)
	}
213

214
	.opd : AT(ADDR(.opd) - LOAD_OFFSET) {
215 216 217
		*(.opd)
	}

218
	.got : AT(ADDR(.got) - LOAD_OFFSET) {
219 220 221 222
		__toc_start = .;
		*(.got)
		*(.toc)
	}
S
Stephen Rothwell 已提交
223
#endif
224

225
	/* The initial task and kernel stack */
226
	.data.init_task : AT(ADDR(.data.init_task) - LOAD_OFFSET) {
227
		INIT_TASK_DATA(THREAD_SIZE)
228
	}
229

230
	.data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET) {
231
		PAGE_ALIGNED_DATA(PAGE_SIZE)
232
	}
233

234
	.data..cacheline_aligned : AT(ADDR(.data..cacheline_aligned) - LOAD_OFFSET) {
235
		CACHELINE_ALIGNED_DATA(L1_CACHE_BYTES)
236
	}
237

238
	.data.read_mostly : AT(ADDR(.data.read_mostly) - LOAD_OFFSET) {
239
		READ_MOSTLY_DATA(L1_CACHE_BYTES)
240 241
	}

242
	. = ALIGN(PAGE_SIZE);
243
	.data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) {
244
		NOSAVE_DATA
245
	}
246

247 248 249 250
	. = ALIGN(PAGE_SIZE);
	_edata  =  .;
	PROVIDE32 (edata = .);

251 252 253 254
/*
 * And finally the bss
 */

255
	BSS_SECTION(0, 0, 0)
256

257 258 259
	. = ALIGN(PAGE_SIZE);
	_end = . ;
	PROVIDE32 (end = .);
260 261 262

	/* Sections to be discarded. */
	DISCARDS
263
}