vmlinux.lds.h 28.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Helper macros to support writing architecture specific
 * linker scripts.
 *
 * A minimal linker scripts has following content:
 * [This is a sample, architectures may have special requiriements]
 *
 * OUTPUT_FORMAT(...)
 * OUTPUT_ARCH(...)
 * ENTRY(...)
 * SECTIONS
 * {
 *	. = START;
 *	__init_begin = .;
S
Sam Ravnborg 已提交
15
 *	HEAD_TEXT_SECTION
16 17
 *	INIT_TEXT_SECTION(PAGE_SIZE)
 *	INIT_DATA_SECTION(...)
18
 *	PERCPU_SECTION(CACHELINE_SIZE)
19 20 21 22 23 24 25 26 27 28 29 30 31 32
 *	__init_end = .;
 *
 *	_stext = .;
 *	TEXT_SECTION = 0
 *	_etext = .;
 *
 *      _sdata = .;
 *	RO_DATA_SECTION(PAGE_SIZE)
 *	RW_DATA_SECTION(...)
 *	_edata = .;
 *
 *	EXCEPTION_TABLE(...)
 *	NOTES
 *
33
 *	BSS_SECTION(0, 0, 0)
34 35 36 37
 *	_end = .;
 *
 *	STABS_DEBUG
 *	DWARF_DEBUG
38 39
 *
 *	DISCARDS		// must be the last
40 41 42
 * }
 *
 * [__init_begin, __init_end] is the init section that may be freed after init
43 44
 * 	// __init_begin and __init_end should be page aligned, so that we can
 *	// free the whole .init memory
45 46 47 48 49 50 51
 * [_stext, _etext] is the text section
 * [_sdata, _edata] is the data section
 *
 * Some of the included output section have their own set of constants.
 * Examples are: [__initramfs_start, __initramfs_end] for initramfs and
 *               [__nosave_begin, __nosave_end] for the nosave data
 */
T
Tim Abbott 已提交
52

L
Linus Torvalds 已提交
53 54 55 56
#ifndef LOAD_OFFSET
#define LOAD_OFFSET 0
#endif

57 58 59
/* Align . to a 8 byte boundary equals to maximum function alignment. */
#define ALIGN_FUNCTION()  . = ALIGN(8)

60 61 62 63 64
/*
 * LD_DEAD_CODE_DATA_ELIMINATION option enables -fdata-sections, which
 * generates .data.identifier sections, which need to be pulled in with
 * .data. We don't want to pull in .data..other sections, which Linux
 * has defined. Same for text and bss.
65 66 67
 *
 * RODATA_MAIN is not used because existing code already defines .rodata.x
 * sections to be brought in with rodata.
68 69 70
 */
#ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
#define TEXT_MAIN .text .text.[0-9a-zA-Z_]*
71
#define DATA_MAIN .data .data.[0-9a-zA-Z_]* .data..LPBX*
72 73
#define SDATA_MAIN .sdata .sdata.[0-9a-zA-Z_]*
#define RODATA_MAIN .rodata .rodata.[0-9a-zA-Z_]*
74
#define BSS_MAIN .bss .bss.[0-9a-zA-Z_]*
75
#define SBSS_MAIN .sbss .sbss.[0-9a-zA-Z_]*
76 77 78
#else
#define TEXT_MAIN .text
#define DATA_MAIN .data
79 80
#define SDATA_MAIN .sdata
#define RODATA_MAIN .rodata
81
#define BSS_MAIN .bss
82
#define SBSS_MAIN .sbss
83 84
#endif

85 86 87 88
/*
 * Align to a 32 byte boundary equal to the
 * alignment gcc 4.5 uses for a struct
 */
89 90
#define STRUCT_ALIGNMENT 32
#define STRUCT_ALIGN() . = ALIGN(STRUCT_ALIGNMENT)
91

92 93 94 95 96 97 98 99 100 101 102 103
/* The actual configuration determine if the init/exit sections
 * are handled as text/data or they can be discarded (which
 * often happens at runtime)
 */
#ifdef CONFIG_HOTPLUG_CPU
#define CPU_KEEP(sec)    *(.cpu##sec)
#define CPU_DISCARD(sec)
#else
#define CPU_KEEP(sec)
#define CPU_DISCARD(sec) *(.cpu##sec)
#endif

104
#if defined(CONFIG_MEMORY_HOTPLUG)
105 106 107 108 109 110 111
#define MEM_KEEP(sec)    *(.mem##sec)
#define MEM_DISCARD(sec)
#else
#define MEM_KEEP(sec)
#define MEM_DISCARD(sec) *(.mem##sec)
#endif

112
#ifdef CONFIG_FTRACE_MCOUNT_RECORD
S
Sven Schnelle 已提交
113
#ifdef CC_USING_PATCHABLE_FUNCTION_ENTRY
114
/*
115
 * Need to also make ftrace_stub_graph point to ftrace_stub
116 117 118
 * so that the same stub location may have different protocols
 * and not mess up with C verifiers.
 */
S
Sven Schnelle 已提交
119 120 121
#define MCOUNT_REC()	. = ALIGN(8);				\
			__start_mcount_loc = .;			\
			KEEP(*(__patchable_function_entries))	\
122
			__stop_mcount_loc = .;			\
123
			ftrace_stub_graph = ftrace_stub;
S
Sven Schnelle 已提交
124
#else
125
#define MCOUNT_REC()	. = ALIGN(8);				\
126
			__start_mcount_loc = .;			\
127
			KEEP(*(__mcount_loc))			\
128
			__stop_mcount_loc = .;			\
129
			ftrace_stub_graph = ftrace_stub;
S
Sven Schnelle 已提交
130
#endif
131
#else
132
# ifdef CONFIG_FUNCTION_TRACER
133
#  define MCOUNT_REC()	ftrace_stub_graph = ftrace_stub;
134 135 136
# else
#  define MCOUNT_REC()
# endif
137
#endif
138

139
#ifdef CONFIG_TRACE_BRANCH_PROFILING
140
#define LIKELY_PROFILE()	__start_annotated_branch_profile = .;	\
141
				KEEP(*(_ftrace_annotated_branch))	\
142
				__stop_annotated_branch_profile = .;
143 144 145 146
#else
#define LIKELY_PROFILE()
#endif

147
#ifdef CONFIG_PROFILE_ALL_BRANCHES
148
#define BRANCH_PROFILE()	__start_branch_profile = .;		\
149
				KEEP(*(_ftrace_branch))			\
150
				__stop_branch_profile = .;
151 152 153 154
#else
#define BRANCH_PROFILE()
#endif

155
#ifdef CONFIG_KPROBES
156
#define KPROBE_BLACKLIST()	. = ALIGN(8);				      \
157
				__start_kprobe_blacklist = .;		      \
158
				KEEP(*(_kprobe_blacklist))		      \
159
				__stop_kprobe_blacklist = .;
160 161 162 163
#else
#define KPROBE_BLACKLIST()
#endif

164
#ifdef CONFIG_FUNCTION_ERROR_INJECTION
165
#define ERROR_INJECT_WHITELIST()	STRUCT_ALIGN();			      \
166
			__start_error_injection_whitelist = .;		      \
167
			KEEP(*(_error_injection_whitelist))		      \
168
			__stop_error_injection_whitelist = .;
169
#else
170
#define ERROR_INJECT_WHITELIST()
171 172
#endif

173
#ifdef CONFIG_EVENT_TRACING
174
#define FTRACE_EVENTS()	. = ALIGN(8);					\
175
			__start_ftrace_events = .;			\
176
			KEEP(*(_ftrace_events))				\
177 178
			__stop_ftrace_events = .;			\
			__start_ftrace_eval_maps = .;			\
179
			KEEP(*(_ftrace_eval_map))			\
180
			__stop_ftrace_eval_maps = .;
181 182 183 184
#else
#define FTRACE_EVENTS()
#endif

L
Lai Jiangshan 已提交
185
#ifdef CONFIG_TRACING
186
#define TRACE_PRINTKS()	 __start___trace_bprintk_fmt = .;      \
187
			 KEEP(*(__trace_printk_fmt)) /* Trace_printk fmt' pointer */ \
188 189
			 __stop___trace_bprintk_fmt = .;
#define TRACEPOINT_STR() __start___tracepoint_str = .;	\
190
			 KEEP(*(__tracepoint_str)) /* Trace_printk fmt' pointer */ \
191
			 __stop___tracepoint_str = .;
L
Lai Jiangshan 已提交
192 193
#else
#define TRACE_PRINTKS()
194
#define TRACEPOINT_STR()
L
Lai Jiangshan 已提交
195 196
#endif

197
#ifdef CONFIG_FTRACE_SYSCALLS
198
#define TRACE_SYSCALLS() . = ALIGN(8);					\
199
			 __start_syscalls_metadata = .;			\
200
			 KEEP(*(__syscalls_metadata))			\
201
			 __stop_syscalls_metadata = .;
202 203 204 205
#else
#define TRACE_SYSCALLS()
#endif

206 207
#ifdef CONFIG_BPF_EVENTS
#define BPF_RAW_TP() STRUCT_ALIGN();					\
208
			 __start__bpf_raw_tp = .;			\
209
			 KEEP(*(__bpf_raw_tp_map))			\
210
			 __stop__bpf_raw_tp = .;
211 212 213 214
#else
#define BPF_RAW_TP()
#endif

215
#ifdef CONFIG_SERIAL_EARLYCON
216
#define EARLYCON_TABLE() . = ALIGN(8);				\
217
			 __earlycon_table = .;			\
218
			 KEEP(*(__earlycon_table))		\
219
			 __earlycon_table_end = .;
220 221 222
#else
#define EARLYCON_TABLE()
#endif
223

224 225 226 227 228
#ifdef CONFIG_SECURITY
#define LSM_TABLE()	. = ALIGN(8);					\
			__start_lsm_info = .;				\
			KEEP(*(.lsm_info.init))				\
			__end_lsm_info = .;
M
Matthew Garrett 已提交
229 230 231 232
#define EARLY_LSM_TABLE()	. = ALIGN(8);				\
			__start_early_lsm_info = .;			\
			KEEP(*(.early_lsm_info.init))			\
			__end_early_lsm_info = .;
233 234
#else
#define LSM_TABLE()
M
Matthew Garrett 已提交
235
#define EARLY_LSM_TABLE()
236 237
#endif

238 239
#define ___OF_TABLE(cfg, name)	_OF_TABLE_##cfg(name)
#define __OF_TABLE(cfg, name)	___OF_TABLE(cfg, name)
240
#define OF_TABLE(cfg, name)	__OF_TABLE(IS_ENABLED(cfg), name)
241 242
#define _OF_TABLE_0(name)
#define _OF_TABLE_1(name)						\
243
	. = ALIGN(8);							\
244
	__##name##_of_table = .;					\
245 246
	KEEP(*(__##name##_of_table))					\
	KEEP(*(__##name##_of_table_end))
247

248
#define TIMER_OF_TABLES()	OF_TABLE(CONFIG_TIMER_OF, timer)
249 250 251 252
#define IRQCHIP_OF_MATCH_TABLE() OF_TABLE(CONFIG_IRQCHIP, irqchip)
#define CLK_OF_TABLES()		OF_TABLE(CONFIG_COMMON_CLK, clk)
#define RESERVEDMEM_OF_TABLES()	OF_TABLE(CONFIG_OF_RESERVED_MEM, reservedmem)
#define CPU_METHOD_OF_TABLES()	OF_TABLE(CONFIG_SMP, cpu_method)
253
#define CPUIDLE_METHOD_OF_TABLES() OF_TABLE(CONFIG_CPU_IDLE, cpuidle_method)
254

255 256 257
#ifdef CONFIG_ACPI
#define ACPI_PROBE_TABLE(name)						\
	. = ALIGN(8);							\
258
	__##name##_acpi_probe_table = .;				\
259
	KEEP(*(__##name##_acpi_probe_table))				\
260
	__##name##_acpi_probe_table_end = .;
261 262 263 264
#else
#define ACPI_PROBE_TABLE(name)
#endif

265 266 267 268 269 270 271 272 273 274
#ifdef CONFIG_THERMAL
#define THERMAL_TABLE(name)						\
	. = ALIGN(8);							\
	__##name##_thermal_table = .;					\
	KEEP(*(__##name##_thermal_table))				\
	__##name##_thermal_table_end = .;
#else
#define THERMAL_TABLE(name)
#endif

275 276
#define KERNEL_DTB()							\
	STRUCT_ALIGN();							\
277
	__dtb_start = .;						\
278
	KEEP(*(.dtb.init.rodata))					\
279
	__dtb_end = .;
280

281 282 283
/*
 * .data section
 */
284
#define DATA_DATA							\
285
	*(.xiptext)							\
286
	*(DATA_MAIN)							\
287
	*(.ref.data)							\
288
	*(.data..shared_aligned) /* percpu related */			\
289 290
	MEM_KEEP(init.data*)						\
	MEM_KEEP(exit.data*)						\
291
	*(.data.unlikely)						\
292
	__start_once = .;						\
293
	*(.data.once)							\
294
	__end_once = .;							\
295
	STRUCT_ALIGN();							\
M
Mathieu Desnoyers 已提交
296
	*(__tracepoints)						\
297 298
	/* implement dynamic printk debug */				\
	. = ALIGN(8);							\
299
	__start___verbose = .;						\
300
	KEEP(*(__verbose))                                              \
301
	__stop___verbose = .;						\
302
	LIKELY_PROFILE()		       				\
303
	BRANCH_PROFILE()						\
304
	TRACE_PRINTKS()							\
305
	BPF_RAW_TP()							\
306
	TRACEPOINT_STR()
307

308 309 310 311 312
/*
 * Data section helpers
 */
#define NOSAVE_DATA							\
	. = ALIGN(PAGE_SIZE);						\
313
	__nosave_begin = .;						\
314
	*(.data..nosave)						\
315
	. = ALIGN(PAGE_SIZE);						\
316
	__nosave_end = .;
317 318 319

#define PAGE_ALIGNED_DATA(page_align)					\
	. = ALIGN(page_align);						\
320
	*(.data..page_aligned)
321 322 323

#define READ_MOSTLY_DATA(align)						\
	. = ALIGN(align);						\
324 325
	*(.data..read_mostly)						\
	. = ALIGN(align);
326 327 328

#define CACHELINE_ALIGNED_DATA(align)					\
	. = ALIGN(align);						\
329
	*(.data..cacheline_aligned)
330

331
#define INIT_TASK_DATA(align)						\
332
	. = ALIGN(align);						\
333 334 335
	__start_init_task = .;						\
	init_thread_union = .;						\
	init_stack = .;							\
336 337
	KEEP(*(.data..init_task))					\
	KEEP(*(.data..init_thread_info))				\
338 339
	. = __start_init_task + THREAD_SIZE;				\
	__end_init_task = .;
340

341 342 343 344 345 346
#define JUMP_TABLE_DATA							\
	. = ALIGN(8);							\
	__start___jump_table = .;					\
	KEEP(*(__jump_table))						\
	__stop___jump_table = .;

347 348 349 350 351
/*
 * Allow architectures to handle ro_after_init data on their
 * own by defining an empty RO_AFTER_INIT_DATA.
 */
#ifndef RO_AFTER_INIT_DATA
352
#define RO_AFTER_INIT_DATA						\
353
	__start_ro_after_init = .;					\
354
	*(.data..ro_after_init)						\
355
	JUMP_TABLE_DATA							\
356
	__end_ro_after_init = .;
357 358
#endif

359 360 361 362
/*
 * Read only Data
 */
#define RO_DATA_SECTION(align)						\
363
	. = ALIGN((align));						\
L
Linus Torvalds 已提交
364
	.rodata           : AT(ADDR(.rodata) - LOAD_OFFSET) {		\
365
		__start_rodata = .;					\
L
Linus Torvalds 已提交
366
		*(.rodata) *(.rodata.*)					\
367
		RO_AFTER_INIT_DATA	/* Read only after init */	\
368
		. = ALIGN(8);						\
369
		__start___tracepoints_ptrs = .;				\
370
		KEEP(*(__tracepoints_ptrs)) /* Tracepoints: pointer array */ \
371
		__stop___tracepoints_ptrs = .;				\
M
Mathieu Desnoyers 已提交
372
		*(__tracepoints_strings)/* Tracepoints: strings */	\
L
Linus Torvalds 已提交
373 374 375 376 377 378 379 380
	}								\
									\
	.rodata1          : AT(ADDR(.rodata1) - LOAD_OFFSET) {		\
		*(.rodata1)						\
	}								\
									\
	/* PCI quirks */						\
	.pci_fixup        : AT(ADDR(.pci_fixup) - LOAD_OFFSET) {	\
381
		__start_pci_fixups_early = .;				\
382
		KEEP(*(.pci_fixup_early))				\
383 384
		__end_pci_fixups_early = .;				\
		__start_pci_fixups_header = .;				\
385
		KEEP(*(.pci_fixup_header))				\
386 387
		__end_pci_fixups_header = .;				\
		__start_pci_fixups_final = .;				\
388
		KEEP(*(.pci_fixup_final))				\
389 390
		__end_pci_fixups_final = .;				\
		__start_pci_fixups_enable = .;				\
391
		KEEP(*(.pci_fixup_enable))				\
392 393
		__end_pci_fixups_enable = .;				\
		__start_pci_fixups_resume = .;				\
394
		KEEP(*(.pci_fixup_resume))				\
395 396
		__end_pci_fixups_resume = .;				\
		__start_pci_fixups_resume_early = .;			\
397
		KEEP(*(.pci_fixup_resume_early))			\
398 399
		__end_pci_fixups_resume_early = .;			\
		__start_pci_fixups_suspend = .;				\
400
		KEEP(*(.pci_fixup_suspend))				\
401 402
		__end_pci_fixups_suspend = .;				\
		__start_pci_fixups_suspend_late = .;			\
403
		KEEP(*(.pci_fixup_suspend_late))			\
404
		__end_pci_fixups_suspend_late = .;			\
L
Linus Torvalds 已提交
405 406
	}								\
									\
407 408
	/* Built-in firmware blobs */					\
	.builtin_fw        : AT(ADDR(.builtin_fw) - LOAD_OFFSET) {	\
409
		__start_builtin_fw = .;					\
410
		KEEP(*(.builtin_fw))					\
411
		__end_builtin_fw = .;					\
412 413
	}								\
									\
J
Jan Beulich 已提交
414 415
	TRACEDATA							\
									\
L
Linus Torvalds 已提交
416 417
	/* Kernel symbol table: Normal symbols */			\
	__ksymtab         : AT(ADDR(__ksymtab) - LOAD_OFFSET) {		\
418
		__start___ksymtab = .;					\
419
		KEEP(*(SORT(___ksymtab+*)))				\
420
		__stop___ksymtab = .;					\
L
Linus Torvalds 已提交
421 422 423 424
	}								\
									\
	/* Kernel symbol table: GPL-only symbols */			\
	__ksymtab_gpl     : AT(ADDR(__ksymtab_gpl) - LOAD_OFFSET) {	\
425
		__start___ksymtab_gpl = .;				\
426
		KEEP(*(SORT(___ksymtab_gpl+*)))				\
427
		__stop___ksymtab_gpl = .;				\
L
Linus Torvalds 已提交
428 429
	}								\
									\
430 431
	/* Kernel symbol table: Normal unused symbols */		\
	__ksymtab_unused  : AT(ADDR(__ksymtab_unused) - LOAD_OFFSET) {	\
432
		__start___ksymtab_unused = .;				\
433
		KEEP(*(SORT(___ksymtab_unused+*)))			\
434
		__stop___ksymtab_unused = .;				\
435 436 437 438
	}								\
									\
	/* Kernel symbol table: GPL-only unused symbols */		\
	__ksymtab_unused_gpl : AT(ADDR(__ksymtab_unused_gpl) - LOAD_OFFSET) { \
439
		__start___ksymtab_unused_gpl = .;			\
440
		KEEP(*(SORT(___ksymtab_unused_gpl+*)))			\
441
		__stop___ksymtab_unused_gpl = .;			\
442 443
	}								\
									\
444 445
	/* Kernel symbol table: GPL-future-only symbols */		\
	__ksymtab_gpl_future : AT(ADDR(__ksymtab_gpl_future) - LOAD_OFFSET) { \
446
		__start___ksymtab_gpl_future = .;			\
447
		KEEP(*(SORT(___ksymtab_gpl_future+*)))			\
448
		__stop___ksymtab_gpl_future = .;			\
449 450
	}								\
									\
L
Linus Torvalds 已提交
451 452
	/* Kernel symbol table: Normal symbols */			\
	__kcrctab         : AT(ADDR(__kcrctab) - LOAD_OFFSET) {		\
453
		__start___kcrctab = .;					\
454
		KEEP(*(SORT(___kcrctab+*)))				\
455
		__stop___kcrctab = .;					\
L
Linus Torvalds 已提交
456 457 458 459
	}								\
									\
	/* Kernel symbol table: GPL-only symbols */			\
	__kcrctab_gpl     : AT(ADDR(__kcrctab_gpl) - LOAD_OFFSET) {	\
460
		__start___kcrctab_gpl = .;				\
461
		KEEP(*(SORT(___kcrctab_gpl+*)))				\
462
		__stop___kcrctab_gpl = .;				\
L
Linus Torvalds 已提交
463 464
	}								\
									\
465 466
	/* Kernel symbol table: Normal unused symbols */		\
	__kcrctab_unused  : AT(ADDR(__kcrctab_unused) - LOAD_OFFSET) {	\
467
		__start___kcrctab_unused = .;				\
468
		KEEP(*(SORT(___kcrctab_unused+*)))			\
469
		__stop___kcrctab_unused = .;				\
470 471 472 473
	}								\
									\
	/* Kernel symbol table: GPL-only unused symbols */		\
	__kcrctab_unused_gpl : AT(ADDR(__kcrctab_unused_gpl) - LOAD_OFFSET) { \
474
		__start___kcrctab_unused_gpl = .;			\
475
		KEEP(*(SORT(___kcrctab_unused_gpl+*)))			\
476
		__stop___kcrctab_unused_gpl = .;			\
477 478
	}								\
									\
479 480
	/* Kernel symbol table: GPL-future-only symbols */		\
	__kcrctab_gpl_future : AT(ADDR(__kcrctab_gpl_future) - LOAD_OFFSET) { \
481
		__start___kcrctab_gpl_future = .;			\
482
		KEEP(*(SORT(___kcrctab_gpl_future+*)))			\
483
		__stop___kcrctab_gpl_future = .;			\
484 485
	}								\
									\
L
Linus Torvalds 已提交
486 487
	/* Kernel symbol table: strings */				\
        __ksymtab_strings : AT(ADDR(__ksymtab_strings) - LOAD_OFFSET) {	\
488
		*(__ksymtab_strings)					\
L
Linus Torvalds 已提交
489 490
	}								\
									\
491 492
	/* __*init sections */						\
	__init_rodata : AT(ADDR(__init_rodata) - LOAD_OFFSET) {		\
493
		*(.ref.rodata)						\
494 495 496 497
		MEM_KEEP(init.rodata)					\
		MEM_KEEP(exit.rodata)					\
	}								\
									\
L
Linus Torvalds 已提交
498 499
	/* Built-in module parameters. */				\
	__param : AT(ADDR(__param) - LOAD_OFFSET) {			\
500
		__start___param = .;					\
501
		KEEP(*(__param))					\
502
		__stop___param = .;					\
503 504 505 506
	}								\
									\
	/* Built-in module versions. */					\
	__modver : AT(ADDR(__modver) - LOAD_OFFSET) {			\
507
		__start___modver = .;					\
508
		KEEP(*(__modver))					\
509
		__stop___modver = .;					\
510
		. = ALIGN((align));					\
511
		__end_rodata = .;					\
512
	}								\
513 514
	. = ALIGN((align));

515
/* RODATA & RO_DATA provided for backward compatibility.
516
 * All archs are supposed to use RO_DATA() */
517 518
#define RODATA          RO_DATA_SECTION(4096)
#define RO_DATA(align)  RO_DATA_SECTION(align)
L
Linus Torvalds 已提交
519

520 521
/*
 * .text section. Map to function alignment to avoid address changes
522
 * during second ld run in second ld pass when generating System.map
523 524 525 526 527
 *
 * TEXT_MAIN here will match .text.fixup and .text.unlikely if dead
 * code elimination is enabled, so these sections should be converted
 * to use ".." first.
 */
528 529
#define TEXT_TEXT							\
		ALIGN_FUNCTION();					\
530
		*(.text.hot TEXT_MAIN .text.fixup .text.unlikely)	\
531
		*(.text..refcount)					\
532
		*(.ref.text)						\
533 534
	MEM_KEEP(init.text*)						\
	MEM_KEEP(exit.text*)						\
535

536

537 538
/* sched.text is aling to function alignment to secure we have same
 * address even at second ld pass when generating System.map */
L
Linus Torvalds 已提交
539
#define SCHED_TEXT							\
540
		ALIGN_FUNCTION();					\
541
		__sched_text_start = .;					\
L
Linus Torvalds 已提交
542
		*(.sched.text)						\
543
		__sched_text_end = .;
L
Linus Torvalds 已提交
544

545 546
/* spinlock.text is aling to function alignment to secure we have same
 * address even at second ld pass when generating System.map */
L
Linus Torvalds 已提交
547
#define LOCK_TEXT							\
548
		ALIGN_FUNCTION();					\
549
		__lock_text_start = .;					\
L
Linus Torvalds 已提交
550
		*(.spinlock.text)					\
551
		__lock_text_end = .;
552

553 554
#define CPUIDLE_TEXT							\
		ALIGN_FUNCTION();					\
555
		__cpuidle_text_start = .;				\
556
		*(.cpuidle.text)					\
557
		__cpuidle_text_end = .;
558

559 560
#define KPROBES_TEXT							\
		ALIGN_FUNCTION();					\
561
		__kprobes_text_start = .;				\
562
		*(.kprobes.text)					\
563
		__kprobes_text_end = .;
564

J
Jiri Olsa 已提交
565 566
#define ENTRY_TEXT							\
		ALIGN_FUNCTION();					\
567
		__entry_text_start = .;					\
J
Jiri Olsa 已提交
568
		*(.entry.text)						\
569
		__entry_text_end = .;
J
Jiri Olsa 已提交
570

571 572
#define IRQENTRY_TEXT							\
		ALIGN_FUNCTION();					\
573
		__irqentry_text_start = .;				\
574
		*(.irqentry.text)					\
575
		__irqentry_text_end = .;
576

577 578
#define SOFTIRQENTRY_TEXT						\
		ALIGN_FUNCTION();					\
579
		__softirqentry_text_start = .;				\
580
		*(.softirqentry.text)					\
581
		__softirqentry_text_end = .;
582

583
/* Section used for early init (in .S files) */
584
#define HEAD_TEXT  KEEP(*(.head.text))
585

S
Sam Ravnborg 已提交
586
#define HEAD_TEXT_SECTION							\
587 588 589 590 591 592 593 594 595 596
	.head.text : AT(ADDR(.head.text) - LOAD_OFFSET) {		\
		HEAD_TEXT						\
	}

/*
 * Exception table
 */
#define EXCEPTION_TABLE(align)						\
	. = ALIGN(align);						\
	__ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {		\
597
		__start___ex_table = .;					\
598
		KEEP(*(__ex_table))					\
599
		__stop___ex_table = .;					\
600 601 602 603 604
	}

/*
 * Init task
 */
605
#define INIT_TASK_DATA_SECTION(align)					\
606
	. = ALIGN(align);						\
607
	.data..init_task :  AT(ADDR(.data..init_task) - LOAD_OFFSET) {	\
608
		INIT_TASK_DATA(align)					\
609
	}
610

611
#ifdef CONFIG_CONSTRUCTORS
612
#define KERNEL_CTORS()	. = ALIGN(8);			   \
613
			__ctors_start = .;		   \
614 615 616
			KEEP(*(.ctors))			   \
			KEEP(*(SORT(.init_array.*)))	   \
			KEEP(*(.init_array))		   \
617
			__ctors_end = .;
618 619 620 621
#else
#define KERNEL_CTORS()
#endif

622
/* init and exit section handling */
623
#define INIT_DATA							\
624
	KEEP(*(SORT(___kentry+*)))					\
625 626
	*(.init.data init.data.*)					\
	MEM_DISCARD(init.data*)						\
627
	KERNEL_CTORS()							\
628
	MCOUNT_REC()							\
629
	*(.init.rodata .init.rodata.*)					\
630
	FTRACE_EVENTS()							\
631
	TRACE_SYSCALLS()						\
632
	KPROBE_BLACKLIST()						\
633
	ERROR_INJECT_WHITELIST()					\
634
	MEM_DISCARD(init.rodata)					\
635
	CLK_OF_TABLES()							\
636
	RESERVEDMEM_OF_TABLES()						\
637
	TIMER_OF_TABLES()						\
638
	CPU_METHOD_OF_TABLES()						\
639
	CPUIDLE_METHOD_OF_TABLES()					\
640
	KERNEL_DTB()							\
R
Rob Herring 已提交
641
	IRQCHIP_OF_MATCH_TABLE()					\
642
	ACPI_PROBE_TABLE(irqchip)					\
643
	ACPI_PROBE_TABLE(timer)						\
644
	THERMAL_TABLE(governor)						\
645
	EARLYCON_TABLE()						\
M
Matthew Garrett 已提交
646 647
	LSM_TABLE()							\
	EARLY_LSM_TABLE()
648 649

#define INIT_TEXT							\
650
	*(.init.text .init.text.*)					\
651
	*(.text.startup)						\
652
	MEM_DISCARD(init.text*)
653 654

#define EXIT_DATA							\
655
	*(.exit.data .exit.data.*)					\
656 657
	*(.fini_array .fini_array.*)					\
	*(.dtors .dtors.*)						\
658 659
	MEM_DISCARD(exit.data*)						\
	MEM_DISCARD(exit.rodata*)
660

661 662
#define EXIT_TEXT							\
	*(.exit.text)							\
663
	*(.text.exit)							\
664
	MEM_DISCARD(exit.text)
665

S
Sam Ravnborg 已提交
666 667 668
#define EXIT_CALL							\
	*(.exitcall.exit)

669 670 671 672
/*
 * bss (Block Started by Symbol) - uninitialized data
 * zeroed during startup
 */
673 674
#define SBSS(sbss_align)						\
	. = ALIGN(sbss_align);						\
675
	.sbss : AT(ADDR(.sbss) - LOAD_OFFSET) {				\
676
		*(.dynsbss)						\
677
		*(SBSS_MAIN)						\
678 679 680
		*(.scommon)						\
	}

681 682 683 684 685 686 687 688
/*
 * Allow archectures to redefine BSS_FIRST_SECTIONS to add extra
 * sections to the front of bss.
 */
#ifndef BSS_FIRST_SECTIONS
#define BSS_FIRST_SECTIONS
#endif

689 690 691
#define BSS(bss_align)							\
	. = ALIGN(bss_align);						\
	.bss : AT(ADDR(.bss) - LOAD_OFFSET) {				\
692
		BSS_FIRST_SECTIONS					\
693
		*(.bss..page_aligned)					\
694
		*(.dynbss)						\
695
		*(BSS_MAIN)						\
696 697 698 699 700 701 702 703
		*(COMMON)						\
	}

/*
 * DWARF debug sections.
 * Symbols in the DWARF debugging sections are relative to
 * the beginning of the section so we begin them at 0.
 */
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
#define DWARF_DEBUG							\
		/* DWARF 1 */						\
		.debug          0 : { *(.debug) }			\
		.line           0 : { *(.line) }			\
		/* GNU DWARF 1 extensions */				\
		.debug_srcinfo  0 : { *(.debug_srcinfo) }		\
		.debug_sfnames  0 : { *(.debug_sfnames) }		\
		/* DWARF 1.1 and DWARF 2 */				\
		.debug_aranges  0 : { *(.debug_aranges) }		\
		.debug_pubnames 0 : { *(.debug_pubnames) }		\
		/* DWARF 2 */						\
		.debug_info     0 : { *(.debug_info			\
				.gnu.linkonce.wi.*) }			\
		.debug_abbrev   0 : { *(.debug_abbrev) }		\
		.debug_line     0 : { *(.debug_line) }			\
		.debug_frame    0 : { *(.debug_frame) }			\
		.debug_str      0 : { *(.debug_str) }			\
		.debug_loc      0 : { *(.debug_loc) }			\
		.debug_macinfo  0 : { *(.debug_macinfo) }		\
723 724 725
		.debug_pubtypes 0 : { *(.debug_pubtypes) }		\
		/* DWARF 3 */						\
		.debug_ranges	0 : { *(.debug_ranges) }		\
726 727 728 729 730
		/* SGI/MIPS DWARF 2 extensions */			\
		.debug_weaknames 0 : { *(.debug_weaknames) }		\
		.debug_funcnames 0 : { *(.debug_funcnames) }		\
		.debug_typenames 0 : { *(.debug_typenames) }		\
		.debug_varnames  0 : { *(.debug_varnames) }		\
731 732 733 734 735 736 737 738
		/* GNU DWARF 2 extensions */				\
		.debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) }	\
		.debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) }	\
		/* DWARF 4 */						\
		.debug_types	0 : { *(.debug_types) }			\
		/* DWARF 5 */						\
		.debug_macro	0 : { *(.debug_macro) }			\
		.debug_addr	0 : { *(.debug_addr) }
739 740 741 742 743 744 745 746 747 748

		/* Stabs debugging sections.  */
#define STABS_DEBUG							\
		.stab 0 : { *(.stab) }					\
		.stabstr 0 : { *(.stabstr) }				\
		.stab.excl 0 : { *(.stab.excl) }			\
		.stab.exclstr 0 : { *(.stab.exclstr) }			\
		.stab.index 0 : { *(.stab.index) }			\
		.stab.indexstr 0 : { *(.stab.indexstr) }		\
		.comment 0 : { *(.comment) }
749

J
Jan Beulich 已提交
750
#ifdef CONFIG_GENERIC_BUG
751 752 753
#define BUG_TABLE							\
	. = ALIGN(8);							\
	__bug_table : AT(ADDR(__bug_table) - LOAD_OFFSET) {		\
754
		__start___bug_table = .;				\
755
		KEEP(*(__bug_table))					\
756
		__stop___bug_table = .;					\
757
	}
J
Jan Beulich 已提交
758 759 760
#else
#define BUG_TABLE
#endif
761

762
#ifdef CONFIG_UNWINDER_ORC
763 764 765
#define ORC_UNWIND_TABLE						\
	. = ALIGN(4);							\
	.orc_unwind_ip : AT(ADDR(.orc_unwind_ip) - LOAD_OFFSET) {	\
766
		__start_orc_unwind_ip = .;				\
767
		KEEP(*(.orc_unwind_ip))					\
768
		__stop_orc_unwind_ip = .;				\
769
	}								\
770
	. = ALIGN(2);							\
771
	.orc_unwind : AT(ADDR(.orc_unwind) - LOAD_OFFSET) {		\
772
		__start_orc_unwind = .;					\
773
		KEEP(*(.orc_unwind))					\
774
		__stop_orc_unwind = .;					\
775 776 777
	}								\
	. = ALIGN(4);							\
	.orc_lookup : AT(ADDR(.orc_lookup) - LOAD_OFFSET) {		\
778
		orc_lookup = .;						\
779 780
		. += (((SIZEOF(.text) + LOOKUP_BLOCK_SIZE - 1) /	\
			LOOKUP_BLOCK_SIZE) + 1) * 4;			\
781
		orc_lookup_end = .;					\
782 783 784 785 786
	}
#else
#define ORC_UNWIND_TABLE
#endif

J
Jan Beulich 已提交
787 788 789 790
#ifdef CONFIG_PM_TRACE
#define TRACEDATA							\
	. = ALIGN(4);							\
	.tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) {		\
791
		__tracedata_start = .;					\
792
		KEEP(*(.tracedata))					\
793
		__tracedata_end = .;					\
J
Jan Beulich 已提交
794 795 796 797 798
	}
#else
#define TRACEDATA
#endif

799
#define NOTES								\
800
	.notes : AT(ADDR(.notes) - LOAD_OFFSET) {			\
801
		__start_notes = .;					\
802
		KEEP(*(.note.*))					\
803
		__stop_notes = .;					\
804
	}
805

806 807
#define INIT_SETUP(initsetup_align)					\
		. = ALIGN(initsetup_align);				\
808
		__setup_start = .;					\
809
		KEEP(*(.init.setup))					\
810
		__setup_end = .;
811

812
#define INIT_CALLS_LEVEL(level)						\
813
		__initcall##level##_start = .;				\
814 815
		KEEP(*(.initcall##level##.init))			\
		KEEP(*(.initcall##level##s.init))			\
816

817
#define INIT_CALLS							\
818
		__initcall_start = .;					\
819
		KEEP(*(.initcallearly.init))				\
820 821 822 823 824 825 826 827 828
		INIT_CALLS_LEVEL(0)					\
		INIT_CALLS_LEVEL(1)					\
		INIT_CALLS_LEVEL(2)					\
		INIT_CALLS_LEVEL(3)					\
		INIT_CALLS_LEVEL(4)					\
		INIT_CALLS_LEVEL(5)					\
		INIT_CALLS_LEVEL(rootfs)				\
		INIT_CALLS_LEVEL(6)					\
		INIT_CALLS_LEVEL(7)					\
829
		__initcall_end = .;
830 831

#define CON_INITCALL							\
832
		__con_initcall_start = .;				\
833
		KEEP(*(.con_initcall.init))				\
834
		__con_initcall_end = .;
835 836 837

#ifdef CONFIG_BLK_DEV_INITRD
#define INIT_RAM_FS							\
838
	. = ALIGN(4);							\
839
	__initramfs_start = .;						\
840
	KEEP(*(.init.ramfs))						\
841
	. = ALIGN(8);							\
842
	KEEP(*(.init.ramfs.info))
843
#else
844
#define INIT_RAM_FS
845 846
#endif

847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864
/*
 * Memory encryption operates on a page basis. Since we need to clear
 * the memory encryption mask for this section, it needs to be aligned
 * on a page boundary and be a page-size multiple in length.
 *
 * Note: We use a separate section so that only this section gets
 * decrypted to avoid exposing more than we wish.
 */
#ifdef CONFIG_AMD_MEM_ENCRYPT
#define PERCPU_DECRYPTED_SECTION					\
	. = ALIGN(PAGE_SIZE);						\
	*(.data..percpu..decrypted)					\
	. = ALIGN(PAGE_SIZE);
#else
#define PERCPU_DECRYPTED_SECTION
#endif


865 866 867 868 869 870 871 872 873
/*
 * Default discarded sections.
 *
 * Some archs want to discard exit text/data at runtime rather than
 * link time due to cross-section references such as alt instructions,
 * bug table, eh_frame, etc.  DISCARDS must be the last of output
 * section definitions so that such archs put those in earlier section
 * definitions.
 */
874 875 876 877
#define DISCARDS							\
	/DISCARD/ : {							\
	EXIT_TEXT							\
	EXIT_DATA							\
878
	EXIT_CALL							\
879
	*(.discard)							\
880
	*(.discard.*)							\
881
	*(.modinfo)							\
882 883
	}

884 885 886 887 888 889 890 891 892 893 894
/**
 * PERCPU_INPUT - the percpu input sections
 * @cacheline: cacheline size
 *
 * The core percpu section names and core symbols which do not rely
 * directly upon load addresses.
 *
 * @cacheline is used to align subsections to avoid false cacheline
 * sharing between subsections for different purposes.
 */
#define PERCPU_INPUT(cacheline)						\
895
	__per_cpu_start = .;						\
896 897 898 899
	*(.data..percpu..first)						\
	. = ALIGN(PAGE_SIZE);						\
	*(.data..percpu..page_aligned)					\
	. = ALIGN(cacheline);						\
900
	*(.data..percpu..read_mostly)					\
901 902 903
	. = ALIGN(cacheline);						\
	*(.data..percpu)						\
	*(.data..percpu..shared_aligned)				\
904
	PERCPU_DECRYPTED_SECTION					\
905
	__per_cpu_end = .;
906

907
/**
908
 * PERCPU_VADDR - define output section for percpu area
909
 * @cacheline: cacheline size
910 911 912
 * @vaddr: explicit base address (optional)
 * @phdr: destination PHDR (optional)
 *
913 914 915 916 917 918 919 920
 * Macro which expands to output section for percpu area.
 *
 * @cacheline is used to align subsections to avoid false cacheline
 * sharing between subsections for different purposes.
 *
 * If @vaddr is not blank, it specifies explicit base address and all
 * percpu symbols will be offset from the given address.  If blank,
 * @vaddr always equals @laddr + LOAD_OFFSET.
921 922 923 924 925 926
 *
 * @phdr defines the output PHDR to use if not blank.  Be warned that
 * output PHDR is sticky.  If @phdr is specified, the next output
 * section in the linker script will go there too.  @phdr should have
 * a leading colon.
 *
927 928
 * Note that this macros defines __per_cpu_load as an absolute symbol.
 * If there is no need to put the percpu section at a predetermined
929
 * address, use PERCPU_SECTION.
930
 */
931
#define PERCPU_VADDR(cacheline, vaddr, phdr)				\
932 933
	__per_cpu_load = .;						\
	.data..percpu vaddr : AT(__per_cpu_load - LOAD_OFFSET) {	\
934
		PERCPU_INPUT(cacheline)					\
935
	} phdr								\
936
	. = __per_cpu_load + SIZEOF(.data..percpu);
937 938

/**
939
 * PERCPU_SECTION - define output section for percpu area, simple version
940
 * @cacheline: cacheline size
941
 *
942 943
 * Align to PAGE_SIZE and outputs output section for percpu area.  This
 * macro doesn't manipulate @vaddr or @phdr and __per_cpu_load and
944
 * __per_cpu_start will be identical.
945
 *
946
 * This macro is equivalent to ALIGN(PAGE_SIZE); PERCPU_VADDR(@cacheline,,)
947 948
 * except that __per_cpu_load is defined as a relative symbol against
 * .data..percpu which is required for relocatable x86_32 configuration.
949
 */
950 951
#define PERCPU_SECTION(cacheline)					\
	. = ALIGN(PAGE_SIZE);						\
952
	.data..percpu	: AT(ADDR(.data..percpu) - LOAD_OFFSET) {	\
953
		__per_cpu_load = .;					\
954
		PERCPU_INPUT(cacheline)					\
955
	}
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972


/*
 * Definition of the high level *_SECTION macros
 * They will fit only a subset of the architectures
 */


/*
 * Writeable data.
 * All sections are combined in a single .data section.
 * The sections following CONSTRUCTORS are arranged so their
 * typical alignment matches.
 * A cacheline is typical/always less than a PAGE_SIZE so
 * the sections that has this restriction (or similar)
 * is located before the ones requiring PAGE_SIZE alignment.
 * NOSAVE_DATA starts and ends with a PAGE_SIZE alignment which
L
Lucas De Marchi 已提交
973
 * matches the requirement of PAGE_ALIGNED_DATA.
974
 *
S
Sam Ravnborg 已提交
975
 * use 0 as page_align if page_aligned data is not used */
976
#define RW_DATA_SECTION(cacheline, pagealigned, inittask)		\
977 978
	. = ALIGN(PAGE_SIZE);						\
	.data : AT(ADDR(.data) - LOAD_OFFSET) {				\
979
		INIT_TASK_DATA(inittask)				\
980 981
		NOSAVE_DATA						\
		PAGE_ALIGNED_DATA(pagealigned)				\
982 983 984 985
		CACHELINE_ALIGNED_DATA(cacheline)			\
		READ_MOSTLY_DATA(cacheline)				\
		DATA_DATA						\
		CONSTRUCTORS						\
986
	}								\
987
	BUG_TABLE							\
988 989 990 991

#define INIT_TEXT_SECTION(inittext_align)				\
	. = ALIGN(inittext_align);					\
	.init.text : AT(ADDR(.init.text) - LOAD_OFFSET) {		\
992
		_sinittext = .;						\
993
		INIT_TEXT						\
994
		_einittext = .;						\
995 996 997 998 999 1000 1001 1002 1003 1004 1005
	}

#define INIT_DATA_SECTION(initsetup_align)				\
	.init.data : AT(ADDR(.init.data) - LOAD_OFFSET) {		\
		INIT_DATA						\
		INIT_SETUP(initsetup_align)				\
		INIT_CALLS						\
		CON_INITCALL						\
		INIT_RAM_FS						\
	}

1006 1007
#define BSS_SECTION(sbss_align, bss_align, stop_align)			\
	. = ALIGN(sbss_align);						\
1008
	__bss_start = .;						\
1009
	SBSS(sbss_align)						\
1010
	BSS(bss_align)							\
1011
	. = ALIGN(stop_align);						\
1012
	__bss_stop = .;