vmlinux.lds.h 27.6 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

R
Rusty Russell 已提交
57
#include <linux/export.h>
L
Linus Torvalds 已提交
58

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

62 63 64 65 66
/*
 * 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.
67 68 69
 *
 * RODATA_MAIN is not used because existing code already defines .rodata.x
 * sections to be brought in with rodata.
70 71 72 73
 */
#ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
#define TEXT_MAIN .text .text.[0-9a-zA-Z_]*
#define DATA_MAIN .data .data.[0-9a-zA-Z_]*
74 75
#define SDATA_MAIN .sdata .sdata.[0-9a-zA-Z_]*
#define RODATA_MAIN .rodata .rodata.[0-9a-zA-Z_]*
76
#define BSS_MAIN .bss .bss.[0-9a-zA-Z_]*
77
#define SBSS_MAIN .sbss .sbss.[0-9a-zA-Z_]*
78 79 80
#else
#define TEXT_MAIN .text
#define DATA_MAIN .data
81 82
#define SDATA_MAIN .sdata
#define RODATA_MAIN .rodata
83
#define BSS_MAIN .bss
84
#define SBSS_MAIN .sbss
85 86
#endif

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

94 95 96 97 98 99 100 101 102 103 104 105
/* 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

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

114
#ifdef CONFIG_FTRACE_MCOUNT_RECORD
115
#define MCOUNT_REC()	. = ALIGN(8);				\
116
			__start_mcount_loc = .;			\
117
			KEEP(*(__mcount_loc))			\
118
			__stop_mcount_loc = .;
119 120 121
#else
#define MCOUNT_REC()
#endif
122

123
#ifdef CONFIG_TRACE_BRANCH_PROFILING
124
#define LIKELY_PROFILE()	__start_annotated_branch_profile = .;	\
125
				KEEP(*(_ftrace_annotated_branch))	\
126
				__stop_annotated_branch_profile = .;
127 128 129 130
#else
#define LIKELY_PROFILE()
#endif

131
#ifdef CONFIG_PROFILE_ALL_BRANCHES
132
#define BRANCH_PROFILE()	__start_branch_profile = .;		\
133
				KEEP(*(_ftrace_branch))			\
134
				__stop_branch_profile = .;
135 136 137 138
#else
#define BRANCH_PROFILE()
#endif

139
#ifdef CONFIG_KPROBES
140
#define KPROBE_BLACKLIST()	. = ALIGN(8);				      \
141
				__start_kprobe_blacklist = .;		      \
142
				KEEP(*(_kprobe_blacklist))		      \
143
				__stop_kprobe_blacklist = .;
144 145 146 147
#else
#define KPROBE_BLACKLIST()
#endif

148
#ifdef CONFIG_FUNCTION_ERROR_INJECTION
149
#define ERROR_INJECT_WHITELIST()	STRUCT_ALIGN();			      \
150
			__start_error_injection_whitelist = .;		      \
151
			KEEP(*(_error_injection_whitelist))		      \
152
			__stop_error_injection_whitelist = .;
153
#else
154
#define ERROR_INJECT_WHITELIST()
155 156
#endif

157
#ifdef CONFIG_EVENT_TRACING
158
#define FTRACE_EVENTS()	. = ALIGN(8);					\
159
			__start_ftrace_events = .;			\
160
			KEEP(*(_ftrace_events))				\
161 162
			__stop_ftrace_events = .;			\
			__start_ftrace_eval_maps = .;			\
163
			KEEP(*(_ftrace_eval_map))			\
164
			__stop_ftrace_eval_maps = .;
165 166 167 168
#else
#define FTRACE_EVENTS()
#endif

L
Lai Jiangshan 已提交
169
#ifdef CONFIG_TRACING
170
#define TRACE_PRINTKS()	 __start___trace_bprintk_fmt = .;      \
171
			 KEEP(*(__trace_printk_fmt)) /* Trace_printk fmt' pointer */ \
172 173
			 __stop___trace_bprintk_fmt = .;
#define TRACEPOINT_STR() __start___tracepoint_str = .;	\
174
			 KEEP(*(__tracepoint_str)) /* Trace_printk fmt' pointer */ \
175
			 __stop___tracepoint_str = .;
L
Lai Jiangshan 已提交
176 177
#else
#define TRACE_PRINTKS()
178
#define TRACEPOINT_STR()
L
Lai Jiangshan 已提交
179 180
#endif

181
#ifdef CONFIG_FTRACE_SYSCALLS
182
#define TRACE_SYSCALLS() . = ALIGN(8);					\
183
			 __start_syscalls_metadata = .;			\
184
			 KEEP(*(__syscalls_metadata))			\
185
			 __stop_syscalls_metadata = .;
186 187 188 189
#else
#define TRACE_SYSCALLS()
#endif

190 191
#ifdef CONFIG_BPF_EVENTS
#define BPF_RAW_TP() STRUCT_ALIGN();					\
192
			 __start__bpf_raw_tp = .;			\
193
			 KEEP(*(__bpf_raw_tp_map))			\
194
			 __stop__bpf_raw_tp = .;
195 196 197 198
#else
#define BPF_RAW_TP()
#endif

199
#ifdef CONFIG_SERIAL_EARLYCON
200
#define EARLYCON_TABLE() . = ALIGN(8);				\
201
			 __earlycon_table = .;			\
202
			 KEEP(*(__earlycon_table))		\
203
			 __earlycon_table_end = .;
204 205 206
#else
#define EARLYCON_TABLE()
#endif
207

208 209
#define ___OF_TABLE(cfg, name)	_OF_TABLE_##cfg(name)
#define __OF_TABLE(cfg, name)	___OF_TABLE(cfg, name)
210
#define OF_TABLE(cfg, name)	__OF_TABLE(IS_ENABLED(cfg), name)
211 212
#define _OF_TABLE_0(name)
#define _OF_TABLE_1(name)						\
213
	. = ALIGN(8);							\
214
	__##name##_of_table = .;					\
215 216
	KEEP(*(__##name##_of_table))					\
	KEEP(*(__##name##_of_table_end))
217

218
#define TIMER_OF_TABLES()	OF_TABLE(CONFIG_TIMER_OF, timer)
219 220 221 222
#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)
223
#define CPUIDLE_METHOD_OF_TABLES() OF_TABLE(CONFIG_CPU_IDLE, cpuidle_method)
224

225 226 227
#ifdef CONFIG_ACPI
#define ACPI_PROBE_TABLE(name)						\
	. = ALIGN(8);							\
228
	__##name##_acpi_probe_table = .;				\
229
	KEEP(*(__##name##_acpi_probe_table))				\
230
	__##name##_acpi_probe_table_end = .;
231 232 233 234
#else
#define ACPI_PROBE_TABLE(name)
#endif

235 236
#define KERNEL_DTB()							\
	STRUCT_ALIGN();							\
237
	__dtb_start = .;						\
238
	KEEP(*(.dtb.init.rodata))					\
239
	__dtb_end = .;
240

241 242 243
/*
 * .data section
 */
244
#define DATA_DATA							\
245
	*(.xiptext)							\
246
	*(DATA_MAIN)							\
247
	*(.ref.data)							\
248
	*(.data..shared_aligned) /* percpu related */			\
249 250
	MEM_KEEP(init.data*)						\
	MEM_KEEP(exit.data*)						\
251
	*(.data.unlikely)						\
252
	__start_once = .;						\
253
	*(.data.once)							\
254
	__end_once = .;							\
255
	STRUCT_ALIGN();							\
M
Mathieu Desnoyers 已提交
256
	*(__tracepoints)						\
257
	/* implement dynamic printk debug */				\
258
	. = ALIGN(8);                                                   \
259
	__start___jump_table = .;					\
260
	KEEP(*(__jump_table))                                           \
261
	__stop___jump_table = .;					\
262
	. = ALIGN(8);							\
263
	__start___verbose = .;						\
264
	KEEP(*(__verbose))                                              \
265
	__stop___verbose = .;						\
266
	LIKELY_PROFILE()		       				\
267
	BRANCH_PROFILE()						\
268
	TRACE_PRINTKS()							\
269
	BPF_RAW_TP()							\
270
	TRACEPOINT_STR()
271

272 273 274 275 276
/*
 * Data section helpers
 */
#define NOSAVE_DATA							\
	. = ALIGN(PAGE_SIZE);						\
277
	__nosave_begin = .;						\
278
	*(.data..nosave)						\
279
	. = ALIGN(PAGE_SIZE);						\
280
	__nosave_end = .;
281 282 283

#define PAGE_ALIGNED_DATA(page_align)					\
	. = ALIGN(page_align);						\
284
	*(.data..page_aligned)
285 286 287

#define READ_MOSTLY_DATA(align)						\
	. = ALIGN(align);						\
288 289
	*(.data..read_mostly)						\
	. = ALIGN(align);
290 291 292

#define CACHELINE_ALIGNED_DATA(align)					\
	. = ALIGN(align);						\
293
	*(.data..cacheline_aligned)
294

295
#define INIT_TASK_DATA(align)						\
296
	. = ALIGN(align);						\
297 298 299
	__start_init_task = .;						\
	init_thread_union = .;						\
	init_stack = .;							\
300 301
	KEEP(*(.data..init_task))					\
	KEEP(*(.data..init_thread_info))				\
302 303
	. = __start_init_task + THREAD_SIZE;				\
	__end_init_task = .;
304

305 306 307 308 309
/*
 * Allow architectures to handle ro_after_init data on their
 * own by defining an empty RO_AFTER_INIT_DATA.
 */
#ifndef RO_AFTER_INIT_DATA
310
#define RO_AFTER_INIT_DATA						\
311
	__start_ro_after_init = .;					\
312
	*(.data..ro_after_init)						\
313
	__end_ro_after_init = .;
314 315
#endif

316 317 318 319
/*
 * Read only Data
 */
#define RO_DATA_SECTION(align)						\
320
	. = ALIGN((align));						\
L
Linus Torvalds 已提交
321
	.rodata           : AT(ADDR(.rodata) - LOAD_OFFSET) {		\
322
		__start_rodata = .;					\
L
Linus Torvalds 已提交
323
		*(.rodata) *(.rodata.*)					\
324
		RO_AFTER_INIT_DATA	/* Read only after init */	\
325
		KEEP(*(__vermagic))	/* Kernel version magic */	\
326
		. = ALIGN(8);						\
327
		__start___tracepoints_ptrs = .;				\
328
		KEEP(*(__tracepoints_ptrs)) /* Tracepoints: pointer array */ \
329
		__stop___tracepoints_ptrs = .;				\
M
Mathieu Desnoyers 已提交
330
		*(__tracepoints_strings)/* Tracepoints: strings */	\
L
Linus Torvalds 已提交
331 332 333 334 335 336 337 338
	}								\
									\
	.rodata1          : AT(ADDR(.rodata1) - LOAD_OFFSET) {		\
		*(.rodata1)						\
	}								\
									\
	/* PCI quirks */						\
	.pci_fixup        : AT(ADDR(.pci_fixup) - LOAD_OFFSET) {	\
339
		__start_pci_fixups_early = .;				\
340
		KEEP(*(.pci_fixup_early))				\
341 342
		__end_pci_fixups_early = .;				\
		__start_pci_fixups_header = .;				\
343
		KEEP(*(.pci_fixup_header))				\
344 345
		__end_pci_fixups_header = .;				\
		__start_pci_fixups_final = .;				\
346
		KEEP(*(.pci_fixup_final))				\
347 348
		__end_pci_fixups_final = .;				\
		__start_pci_fixups_enable = .;				\
349
		KEEP(*(.pci_fixup_enable))				\
350 351
		__end_pci_fixups_enable = .;				\
		__start_pci_fixups_resume = .;				\
352
		KEEP(*(.pci_fixup_resume))				\
353 354
		__end_pci_fixups_resume = .;				\
		__start_pci_fixups_resume_early = .;			\
355
		KEEP(*(.pci_fixup_resume_early))			\
356 357
		__end_pci_fixups_resume_early = .;			\
		__start_pci_fixups_suspend = .;				\
358
		KEEP(*(.pci_fixup_suspend))				\
359 360
		__end_pci_fixups_suspend = .;				\
		__start_pci_fixups_suspend_late = .;			\
361
		KEEP(*(.pci_fixup_suspend_late))			\
362
		__end_pci_fixups_suspend_late = .;			\
L
Linus Torvalds 已提交
363 364
	}								\
									\
365 366
	/* Built-in firmware blobs */					\
	.builtin_fw        : AT(ADDR(.builtin_fw) - LOAD_OFFSET) {	\
367
		__start_builtin_fw = .;					\
368
		KEEP(*(.builtin_fw))					\
369
		__end_builtin_fw = .;					\
370 371
	}								\
									\
J
Jan Beulich 已提交
372 373
	TRACEDATA							\
									\
L
Linus Torvalds 已提交
374 375
	/* Kernel symbol table: Normal symbols */			\
	__ksymtab         : AT(ADDR(__ksymtab) - LOAD_OFFSET) {		\
376
		__start___ksymtab = .;					\
377
		KEEP(*(SORT(___ksymtab+*)))				\
378
		__stop___ksymtab = .;					\
L
Linus Torvalds 已提交
379 380 381 382
	}								\
									\
	/* Kernel symbol table: GPL-only symbols */			\
	__ksymtab_gpl     : AT(ADDR(__ksymtab_gpl) - LOAD_OFFSET) {	\
383
		__start___ksymtab_gpl = .;				\
384
		KEEP(*(SORT(___ksymtab_gpl+*)))				\
385
		__stop___ksymtab_gpl = .;				\
L
Linus Torvalds 已提交
386 387
	}								\
									\
388 389
	/* Kernel symbol table: Normal unused symbols */		\
	__ksymtab_unused  : AT(ADDR(__ksymtab_unused) - LOAD_OFFSET) {	\
390
		__start___ksymtab_unused = .;				\
391
		KEEP(*(SORT(___ksymtab_unused+*)))			\
392
		__stop___ksymtab_unused = .;				\
393 394 395 396
	}								\
									\
	/* Kernel symbol table: GPL-only unused symbols */		\
	__ksymtab_unused_gpl : AT(ADDR(__ksymtab_unused_gpl) - LOAD_OFFSET) { \
397
		__start___ksymtab_unused_gpl = .;			\
398
		KEEP(*(SORT(___ksymtab_unused_gpl+*)))			\
399
		__stop___ksymtab_unused_gpl = .;			\
400 401
	}								\
									\
402 403
	/* Kernel symbol table: GPL-future-only symbols */		\
	__ksymtab_gpl_future : AT(ADDR(__ksymtab_gpl_future) - LOAD_OFFSET) { \
404
		__start___ksymtab_gpl_future = .;			\
405
		KEEP(*(SORT(___ksymtab_gpl_future+*)))			\
406
		__stop___ksymtab_gpl_future = .;			\
407 408
	}								\
									\
L
Linus Torvalds 已提交
409 410
	/* Kernel symbol table: Normal symbols */			\
	__kcrctab         : AT(ADDR(__kcrctab) - LOAD_OFFSET) {		\
411
		__start___kcrctab = .;					\
412
		KEEP(*(SORT(___kcrctab+*)))				\
413
		__stop___kcrctab = .;					\
L
Linus Torvalds 已提交
414 415 416 417
	}								\
									\
	/* Kernel symbol table: GPL-only symbols */			\
	__kcrctab_gpl     : AT(ADDR(__kcrctab_gpl) - LOAD_OFFSET) {	\
418
		__start___kcrctab_gpl = .;				\
419
		KEEP(*(SORT(___kcrctab_gpl+*)))				\
420
		__stop___kcrctab_gpl = .;				\
L
Linus Torvalds 已提交
421 422
	}								\
									\
423 424
	/* Kernel symbol table: Normal unused symbols */		\
	__kcrctab_unused  : AT(ADDR(__kcrctab_unused) - LOAD_OFFSET) {	\
425
		__start___kcrctab_unused = .;				\
426
		KEEP(*(SORT(___kcrctab_unused+*)))			\
427
		__stop___kcrctab_unused = .;				\
428 429 430 431
	}								\
									\
	/* Kernel symbol table: GPL-only unused symbols */		\
	__kcrctab_unused_gpl : AT(ADDR(__kcrctab_unused_gpl) - LOAD_OFFSET) { \
432
		__start___kcrctab_unused_gpl = .;			\
433
		KEEP(*(SORT(___kcrctab_unused_gpl+*)))			\
434
		__stop___kcrctab_unused_gpl = .;			\
435 436
	}								\
									\
437 438
	/* Kernel symbol table: GPL-future-only symbols */		\
	__kcrctab_gpl_future : AT(ADDR(__kcrctab_gpl_future) - LOAD_OFFSET) { \
439
		__start___kcrctab_gpl_future = .;			\
440
		KEEP(*(SORT(___kcrctab_gpl_future+*)))			\
441
		__stop___kcrctab_gpl_future = .;			\
442 443
	}								\
									\
L
Linus Torvalds 已提交
444 445
	/* Kernel symbol table: strings */				\
        __ksymtab_strings : AT(ADDR(__ksymtab_strings) - LOAD_OFFSET) {	\
446
		*(__ksymtab_strings)					\
L
Linus Torvalds 已提交
447 448
	}								\
									\
449 450
	/* __*init sections */						\
	__init_rodata : AT(ADDR(__init_rodata) - LOAD_OFFSET) {		\
451
		*(.ref.rodata)						\
452 453 454 455
		MEM_KEEP(init.rodata)					\
		MEM_KEEP(exit.rodata)					\
	}								\
									\
L
Linus Torvalds 已提交
456 457
	/* Built-in module parameters. */				\
	__param : AT(ADDR(__param) - LOAD_OFFSET) {			\
458
		__start___param = .;					\
459
		KEEP(*(__param))					\
460
		__stop___param = .;					\
461 462 463 464
	}								\
									\
	/* Built-in module versions. */					\
	__modver : AT(ADDR(__modver) - LOAD_OFFSET) {			\
465
		__start___modver = .;					\
466
		KEEP(*(__modver))					\
467
		__stop___modver = .;					\
468
		. = ALIGN((align));					\
469
		__end_rodata = .;					\
470
	}								\
471 472
	. = ALIGN((align));

473
/* RODATA & RO_DATA provided for backward compatibility.
474
 * All archs are supposed to use RO_DATA() */
475 476
#define RODATA          RO_DATA_SECTION(4096)
#define RO_DATA(align)  RO_DATA_SECTION(align)
L
Linus Torvalds 已提交
477 478

#define SECURITY_INIT							\
479
	.security_initcall.init : AT(ADDR(.security_initcall.init) - LOAD_OFFSET) { \
480
		__security_initcall_start = .;				\
481
		KEEP(*(.security_initcall.init))			\
482
		__security_initcall_end = .;				\
L
Linus Torvalds 已提交
483 484
	}

485 486
/*
 * .text section. Map to function alignment to avoid address changes
487
 * during second ld run in second ld pass when generating System.map
488 489 490 491 492
 *
 * 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.
 */
493 494
#define TEXT_TEXT							\
		ALIGN_FUNCTION();					\
495
		*(.text.hot TEXT_MAIN .text.fixup .text.unlikely)	\
496
		*(.text..refcount)					\
497
		*(.ref.text)						\
498 499
	MEM_KEEP(init.text*)						\
	MEM_KEEP(exit.text*)						\
500

501

502 503
/* 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 已提交
504
#define SCHED_TEXT							\
505
		ALIGN_FUNCTION();					\
506
		__sched_text_start = .;					\
L
Linus Torvalds 已提交
507
		*(.sched.text)						\
508
		__sched_text_end = .;
L
Linus Torvalds 已提交
509

510 511
/* 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 已提交
512
#define LOCK_TEXT							\
513
		ALIGN_FUNCTION();					\
514
		__lock_text_start = .;					\
L
Linus Torvalds 已提交
515
		*(.spinlock.text)					\
516
		__lock_text_end = .;
517

518 519
#define CPUIDLE_TEXT							\
		ALIGN_FUNCTION();					\
520
		__cpuidle_text_start = .;				\
521
		*(.cpuidle.text)					\
522
		__cpuidle_text_end = .;
523

524 525
#define KPROBES_TEXT							\
		ALIGN_FUNCTION();					\
526
		__kprobes_text_start = .;				\
527
		*(.kprobes.text)					\
528
		__kprobes_text_end = .;
529

J
Jiri Olsa 已提交
530 531
#define ENTRY_TEXT							\
		ALIGN_FUNCTION();					\
532
		__entry_text_start = .;					\
J
Jiri Olsa 已提交
533
		*(.entry.text)						\
534
		__entry_text_end = .;
J
Jiri Olsa 已提交
535

536 537
#define IRQENTRY_TEXT							\
		ALIGN_FUNCTION();					\
538
		__irqentry_text_start = .;				\
539
		*(.irqentry.text)					\
540
		__irqentry_text_end = .;
541

542 543
#define SOFTIRQENTRY_TEXT						\
		ALIGN_FUNCTION();					\
544
		__softirqentry_text_start = .;				\
545
		*(.softirqentry.text)					\
546
		__softirqentry_text_end = .;
547

548
/* Section used for early init (in .S files) */
549
#define HEAD_TEXT  KEEP(*(.head.text))
550

S
Sam Ravnborg 已提交
551
#define HEAD_TEXT_SECTION							\
552 553 554 555 556 557 558 559 560 561
	.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) {		\
562
		__start___ex_table = .;					\
563
		KEEP(*(__ex_table))					\
564
		__stop___ex_table = .;					\
565 566 567 568 569
	}

/*
 * Init task
 */
570
#define INIT_TASK_DATA_SECTION(align)					\
571
	. = ALIGN(align);						\
572
	.data..init_task :  AT(ADDR(.data..init_task) - LOAD_OFFSET) {	\
573
		INIT_TASK_DATA(align)					\
574
	}
575

576
#ifdef CONFIG_CONSTRUCTORS
577
#define KERNEL_CTORS()	. = ALIGN(8);			   \
578
			__ctors_start = .;		   \
579 580 581
			KEEP(*(.ctors))			   \
			KEEP(*(SORT(.init_array.*)))	   \
			KEEP(*(.init_array))		   \
582
			__ctors_end = .;
583 584 585 586
#else
#define KERNEL_CTORS()
#endif

587
/* init and exit section handling */
588
#define INIT_DATA							\
589
	KEEP(*(SORT(___kentry+*)))					\
590 591
	*(.init.data init.data.*)					\
	MEM_DISCARD(init.data*)						\
592
	KERNEL_CTORS()							\
593
	MCOUNT_REC()							\
594
	*(.init.rodata .init.rodata.*)					\
595
	FTRACE_EVENTS()							\
596
	TRACE_SYSCALLS()						\
597
	KPROBE_BLACKLIST()						\
598
	ERROR_INJECT_WHITELIST()					\
599
	MEM_DISCARD(init.rodata)					\
600
	CLK_OF_TABLES()							\
601
	RESERVEDMEM_OF_TABLES()						\
602
	TIMER_OF_TABLES()						\
603
	CPU_METHOD_OF_TABLES()						\
604
	CPUIDLE_METHOD_OF_TABLES()					\
605
	KERNEL_DTB()							\
R
Rob Herring 已提交
606
	IRQCHIP_OF_MATCH_TABLE()					\
607
	ACPI_PROBE_TABLE(irqchip)					\
608
	ACPI_PROBE_TABLE(timer)						\
609
	EARLYCON_TABLE()
610 611

#define INIT_TEXT							\
612
	*(.init.text .init.text.*)					\
613
	*(.text.startup)						\
614
	MEM_DISCARD(init.text*)
615 616

#define EXIT_DATA							\
617
	*(.exit.data .exit.data.*)					\
618 619
	*(.fini_array)							\
	*(.dtors)							\
620 621
	MEM_DISCARD(exit.data*)						\
	MEM_DISCARD(exit.rodata*)
622

623 624
#define EXIT_TEXT							\
	*(.exit.text)							\
625
	*(.text.exit)							\
626
	MEM_DISCARD(exit.text)
627

S
Sam Ravnborg 已提交
628 629 630
#define EXIT_CALL							\
	*(.exitcall.exit)

631 632 633 634
/*
 * bss (Block Started by Symbol) - uninitialized data
 * zeroed during startup
 */
635 636
#define SBSS(sbss_align)						\
	. = ALIGN(sbss_align);						\
637
	.sbss : AT(ADDR(.sbss) - LOAD_OFFSET) {				\
638
		*(.dynsbss)						\
639
		*(SBSS_MAIN)						\
640 641 642
		*(.scommon)						\
	}

643 644 645 646 647 648 649 650
/*
 * 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

651 652 653
#define BSS(bss_align)							\
	. = ALIGN(bss_align);						\
	.bss : AT(ADDR(.bss) - LOAD_OFFSET) {				\
654
		BSS_FIRST_SECTIONS					\
655
		*(.bss..page_aligned)					\
656
		*(.dynbss)						\
657
		*(BSS_MAIN)						\
658 659 660 661 662 663 664 665
		*(COMMON)						\
	}

/*
 * DWARF debug sections.
 * Symbols in the DWARF debugging sections are relative to
 * the beginning of the section so we begin them at 0.
 */
666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
#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) }		\
685 686 687
		.debug_pubtypes 0 : { *(.debug_pubtypes) }		\
		/* DWARF 3 */						\
		.debug_ranges	0 : { *(.debug_ranges) }		\
688 689 690 691 692
		/* 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) }		\
693 694 695 696 697 698 699 700
		/* 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) }
701 702 703 704 705 706 707 708 709 710

		/* 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) }
711

J
Jan Beulich 已提交
712
#ifdef CONFIG_GENERIC_BUG
713 714 715
#define BUG_TABLE							\
	. = ALIGN(8);							\
	__bug_table : AT(ADDR(__bug_table) - LOAD_OFFSET) {		\
716
		__start___bug_table = .;				\
717
		KEEP(*(__bug_table))					\
718
		__stop___bug_table = .;					\
719
	}
J
Jan Beulich 已提交
720 721 722
#else
#define BUG_TABLE
#endif
723

724
#ifdef CONFIG_UNWINDER_ORC
725 726 727
#define ORC_UNWIND_TABLE						\
	. = ALIGN(4);							\
	.orc_unwind_ip : AT(ADDR(.orc_unwind_ip) - LOAD_OFFSET) {	\
728
		__start_orc_unwind_ip = .;				\
729
		KEEP(*(.orc_unwind_ip))					\
730
		__stop_orc_unwind_ip = .;				\
731 732 733
	}								\
	. = ALIGN(6);							\
	.orc_unwind : AT(ADDR(.orc_unwind) - LOAD_OFFSET) {		\
734
		__start_orc_unwind = .;					\
735
		KEEP(*(.orc_unwind))					\
736
		__stop_orc_unwind = .;					\
737 738 739
	}								\
	. = ALIGN(4);							\
	.orc_lookup : AT(ADDR(.orc_lookup) - LOAD_OFFSET) {		\
740
		orc_lookup = .;						\
741 742
		. += (((SIZEOF(.text) + LOOKUP_BLOCK_SIZE - 1) /	\
			LOOKUP_BLOCK_SIZE) + 1) * 4;			\
743
		orc_lookup_end = .;					\
744 745 746 747 748
	}
#else
#define ORC_UNWIND_TABLE
#endif

J
Jan Beulich 已提交
749 750 751 752
#ifdef CONFIG_PM_TRACE
#define TRACEDATA							\
	. = ALIGN(4);							\
	.tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) {		\
753
		__tracedata_start = .;					\
754
		KEEP(*(.tracedata))					\
755
		__tracedata_end = .;					\
J
Jan Beulich 已提交
756 757 758 759 760
	}
#else
#define TRACEDATA
#endif

761
#define NOTES								\
762
	.notes : AT(ADDR(.notes) - LOAD_OFFSET) {			\
763
		__start_notes = .;					\
764
		KEEP(*(.note.*))					\
765
		__stop_notes = .;					\
766
	}
767

768 769
#define INIT_SETUP(initsetup_align)					\
		. = ALIGN(initsetup_align);				\
770
		__setup_start = .;					\
771
		KEEP(*(.init.setup))					\
772
		__setup_end = .;
773

774
#define INIT_CALLS_LEVEL(level)						\
775
		__initcall##level##_start = .;				\
776 777
		KEEP(*(.initcall##level##.init))			\
		KEEP(*(.initcall##level##s.init))			\
778

779
#define INIT_CALLS							\
780
		__initcall_start = .;					\
781
		KEEP(*(.initcallearly.init))				\
782 783 784 785 786 787 788 789 790
		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)					\
791
		__initcall_end = .;
792 793

#define CON_INITCALL							\
794
		__con_initcall_start = .;				\
795
		KEEP(*(.con_initcall.init))				\
796
		__con_initcall_end = .;
797 798

#define SECURITY_INITCALL						\
799
		__security_initcall_start = .;				\
800
		KEEP(*(.security_initcall.init))			\
801
		__security_initcall_end = .;
802 803 804

#ifdef CONFIG_BLK_DEV_INITRD
#define INIT_RAM_FS							\
805
	. = ALIGN(4);							\
806
	__initramfs_start = .;						\
807
	KEEP(*(.init.ramfs))						\
808
	. = ALIGN(8);							\
809
	KEEP(*(.init.ramfs.info))
810
#else
811
#define INIT_RAM_FS
812 813
#endif

814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831
/*
 * 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


832 833 834 835 836 837 838 839 840
/*
 * 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.
 */
841 842 843 844
#define DISCARDS							\
	/DISCARD/ : {							\
	EXIT_TEXT							\
	EXIT_DATA							\
845
	EXIT_CALL							\
846
	*(.discard)							\
847
	*(.discard.*)							\
848 849
	}

850 851 852 853 854 855 856 857 858 859 860
/**
 * 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)						\
861
	__per_cpu_start = .;						\
862 863 864 865
	*(.data..percpu..first)						\
	. = ALIGN(PAGE_SIZE);						\
	*(.data..percpu..page_aligned)					\
	. = ALIGN(cacheline);						\
866
	*(.data..percpu..read_mostly)					\
867 868 869
	. = ALIGN(cacheline);						\
	*(.data..percpu)						\
	*(.data..percpu..shared_aligned)				\
870
	PERCPU_DECRYPTED_SECTION					\
871
	__per_cpu_end = .;
872

873
/**
874
 * PERCPU_VADDR - define output section for percpu area
875
 * @cacheline: cacheline size
876 877 878
 * @vaddr: explicit base address (optional)
 * @phdr: destination PHDR (optional)
 *
879 880 881 882 883 884 885 886
 * 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.
887 888 889 890 891 892
 *
 * @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.
 *
893 894
 * 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
895
 * address, use PERCPU_SECTION.
896
 */
897
#define PERCPU_VADDR(cacheline, vaddr, phdr)				\
898 899
	__per_cpu_load = .;						\
	.data..percpu vaddr : AT(__per_cpu_load - LOAD_OFFSET) {	\
900
		PERCPU_INPUT(cacheline)					\
901
	} phdr								\
902
	. = __per_cpu_load + SIZEOF(.data..percpu);
903 904

/**
905
 * PERCPU_SECTION - define output section for percpu area, simple version
906
 * @cacheline: cacheline size
907
 *
908 909
 * Align to PAGE_SIZE and outputs output section for percpu area.  This
 * macro doesn't manipulate @vaddr or @phdr and __per_cpu_load and
910
 * __per_cpu_start will be identical.
911
 *
912
 * This macro is equivalent to ALIGN(PAGE_SIZE); PERCPU_VADDR(@cacheline,,)
913 914
 * except that __per_cpu_load is defined as a relative symbol against
 * .data..percpu which is required for relocatable x86_32 configuration.
915
 */
916 917
#define PERCPU_SECTION(cacheline)					\
	. = ALIGN(PAGE_SIZE);						\
918
	.data..percpu	: AT(ADDR(.data..percpu) - LOAD_OFFSET) {	\
919
		__per_cpu_load = .;					\
920
		PERCPU_INPUT(cacheline)					\
921
	}
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938


/*
 * 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 已提交
939
 * matches the requirement of PAGE_ALIGNED_DATA.
940
 *
S
Sam Ravnborg 已提交
941
 * use 0 as page_align if page_aligned data is not used */
942
#define RW_DATA_SECTION(cacheline, pagealigned, inittask)		\
943 944
	. = ALIGN(PAGE_SIZE);						\
	.data : AT(ADDR(.data) - LOAD_OFFSET) {				\
945
		INIT_TASK_DATA(inittask)				\
946 947
		NOSAVE_DATA						\
		PAGE_ALIGNED_DATA(pagealigned)				\
948 949 950 951
		CACHELINE_ALIGNED_DATA(cacheline)			\
		READ_MOSTLY_DATA(cacheline)				\
		DATA_DATA						\
		CONSTRUCTORS						\
952
	}								\
953
	BUG_TABLE							\
954 955 956 957

#define INIT_TEXT_SECTION(inittext_align)				\
	. = ALIGN(inittext_align);					\
	.init.text : AT(ADDR(.init.text) - LOAD_OFFSET) {		\
958
		_sinittext = .;						\
959
		INIT_TEXT						\
960
		_einittext = .;						\
961 962 963 964 965 966 967 968 969 970 971 972
	}

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

973 974
#define BSS_SECTION(sbss_align, bss_align, stop_align)			\
	. = ALIGN(sbss_align);						\
975
	__bss_start = .;						\
976
	SBSS(sbss_align)						\
977
	BSS(bss_align)							\
978
	. = ALIGN(stop_align);						\
979
	__bss_stop = .;