vmlinux.lds.h 26.1 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
/*
 * Align to a 32 byte boundary equal to the
 * alignment gcc 4.5 uses for a struct
 */
66 67
#define STRUCT_ALIGNMENT 32
#define STRUCT_ALIGN() . = ALIGN(STRUCT_ALIGNMENT)
68

69 70 71 72 73 74 75 76 77 78 79 80
/* 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

81
#if defined(CONFIG_MEMORY_HOTPLUG)
82 83 84 85 86 87 88
#define MEM_KEEP(sec)    *(.mem##sec)
#define MEM_DISCARD(sec)
#else
#define MEM_KEEP(sec)
#define MEM_DISCARD(sec) *(.mem##sec)
#endif

89
#ifdef CONFIG_FTRACE_MCOUNT_RECORD
90 91
#define MCOUNT_REC()	. = ALIGN(8);				\
			VMLINUX_SYMBOL(__start_mcount_loc) = .; \
92 93 94 95 96
			*(__mcount_loc)				\
			VMLINUX_SYMBOL(__stop_mcount_loc) = .;
#else
#define MCOUNT_REC()
#endif
97

98
#ifdef CONFIG_TRACE_BRANCH_PROFILING
99 100 101
#define LIKELY_PROFILE()	VMLINUX_SYMBOL(__start_annotated_branch_profile) = .; \
				*(_ftrace_annotated_branch)			      \
				VMLINUX_SYMBOL(__stop_annotated_branch_profile) = .;
102 103 104 105
#else
#define LIKELY_PROFILE()
#endif

106 107 108 109 110 111 112 113
#ifdef CONFIG_PROFILE_ALL_BRANCHES
#define BRANCH_PROFILE()	VMLINUX_SYMBOL(__start_branch_profile) = .;   \
				*(_ftrace_branch)			      \
				VMLINUX_SYMBOL(__stop_branch_profile) = .;
#else
#define BRANCH_PROFILE()
#endif

114
#ifdef CONFIG_KPROBES
115 116
#define KPROBE_BLACKLIST()	. = ALIGN(8);				      \
				VMLINUX_SYMBOL(__start_kprobe_blacklist) = .; \
117 118 119 120 121 122
				*(_kprobe_blacklist)			      \
				VMLINUX_SYMBOL(__stop_kprobe_blacklist) = .;
#else
#define KPROBE_BLACKLIST()
#endif

123
#ifdef CONFIG_EVENT_TRACING
124 125
#define FTRACE_EVENTS()	. = ALIGN(8);					\
			VMLINUX_SYMBOL(__start_ftrace_events) = .;	\
126
			*(_ftrace_events)				\
127 128 129 130
			VMLINUX_SYMBOL(__stop_ftrace_events) = .;	\
			VMLINUX_SYMBOL(__start_ftrace_enum_maps) = .;	\
			*(_ftrace_enum_map)				\
			VMLINUX_SYMBOL(__stop_ftrace_enum_maps) = .;
131 132 133 134
#else
#define FTRACE_EVENTS()
#endif

L
Lai Jiangshan 已提交
135 136 137 138
#ifdef CONFIG_TRACING
#define TRACE_PRINTKS() VMLINUX_SYMBOL(__start___trace_bprintk_fmt) = .;      \
			 *(__trace_printk_fmt) /* Trace_printk fmt' pointer */ \
			 VMLINUX_SYMBOL(__stop___trace_bprintk_fmt) = .;
139 140 141
#define TRACEPOINT_STR() VMLINUX_SYMBOL(__start___tracepoint_str) = .;	\
			 *(__tracepoint_str) /* Trace_printk fmt' pointer */ \
			 VMLINUX_SYMBOL(__stop___tracepoint_str) = .;
L
Lai Jiangshan 已提交
142 143
#else
#define TRACE_PRINTKS()
144
#define TRACEPOINT_STR()
L
Lai Jiangshan 已提交
145 146
#endif

147
#ifdef CONFIG_FTRACE_SYSCALLS
148 149
#define TRACE_SYSCALLS() . = ALIGN(8);					\
			 VMLINUX_SYMBOL(__start_syscalls_metadata) = .;	\
150 151 152 153 154 155
			 *(__syscalls_metadata)				\
			 VMLINUX_SYMBOL(__stop_syscalls_metadata) = .;
#else
#define TRACE_SYSCALLS()
#endif

156
#ifdef CONFIG_SERIAL_EARLYCON
157
#define EARLYCON_TABLE() STRUCT_ALIGN();			\
158 159
			 VMLINUX_SYMBOL(__earlycon_table) = .;	\
			 *(__earlycon_table)			\
160
			 VMLINUX_SYMBOL(__earlycon_table_end) = .;
161 162 163
#else
#define EARLYCON_TABLE()
#endif
164

165 166
#define ___OF_TABLE(cfg, name)	_OF_TABLE_##cfg(name)
#define __OF_TABLE(cfg, name)	___OF_TABLE(cfg, name)
167
#define OF_TABLE(cfg, name)	__OF_TABLE(IS_ENABLED(cfg), name)
168 169
#define _OF_TABLE_0(name)
#define _OF_TABLE_1(name)						\
170
	. = ALIGN(8);							\
171 172 173 174 175 176 177
	VMLINUX_SYMBOL(__##name##_of_table) = .;			\
	*(__##name##_of_table)						\
	*(__##name##_of_table_end)

#define CLKSRC_OF_TABLES()	OF_TABLE(CONFIG_CLKSRC_OF, clksrc)
#define IRQCHIP_OF_MATCH_TABLE() OF_TABLE(CONFIG_IRQCHIP, irqchip)
#define CLK_OF_TABLES()		OF_TABLE(CONFIG_COMMON_CLK, clk)
178
#define IOMMU_OF_TABLES()	OF_TABLE(CONFIG_OF_IOMMU, iommu)
179 180
#define RESERVEDMEM_OF_TABLES()	OF_TABLE(CONFIG_OF_RESERVED_MEM, reservedmem)
#define CPU_METHOD_OF_TABLES()	OF_TABLE(CONFIG_SMP, cpu_method)
181
#define CPUIDLE_METHOD_OF_TABLES() OF_TABLE(CONFIG_CPU_IDLE, cpuidle_method)
182

183 184 185 186 187 188 189 190 191 192
#ifdef CONFIG_ACPI
#define ACPI_PROBE_TABLE(name)						\
	. = ALIGN(8);							\
	VMLINUX_SYMBOL(__##name##_acpi_probe_table) = .;		\
	*(__##name##_acpi_probe_table)					\
	VMLINUX_SYMBOL(__##name##_acpi_probe_table_end) = .;
#else
#define ACPI_PROBE_TABLE(name)
#endif

193 194 195 196 197 198
#define KERNEL_DTB()							\
	STRUCT_ALIGN();							\
	VMLINUX_SYMBOL(__dtb_start) = .;				\
	*(.dtb.init.rodata)						\
	VMLINUX_SYMBOL(__dtb_end) = .;

199 200 201 202 203 204
/*
 * .data section
 * -fdata-sections generates .data.identifier which needs to be pulled in
 * with .data, but don't want to pull in .data..stuff which has its own
 * requirements. Same for bss.
 */
205
#define DATA_DATA							\
206
	*(.data .data.[0-9a-zA-Z_]*)					\
207
	*(.ref.data)							\
208
	*(.data..shared_aligned) /* percpu related */			\
209 210
	MEM_KEEP(init.data)						\
	MEM_KEEP(exit.data)						\
211
	*(.data.unlikely)						\
212
	STRUCT_ALIGN();							\
M
Mathieu Desnoyers 已提交
213
	*(__tracepoints)						\
214
	/* implement dynamic printk debug */				\
215 216 217 218
	. = ALIGN(8);                                                   \
	VMLINUX_SYMBOL(__start___jump_table) = .;                       \
	*(__jump_table)                                                 \
	VMLINUX_SYMBOL(__stop___jump_table) = .;                        \
219 220 221 222
	. = ALIGN(8);							\
	VMLINUX_SYMBOL(__start___verbose) = .;                          \
	*(__verbose)                                                    \
	VMLINUX_SYMBOL(__stop___verbose) = .;				\
223
	LIKELY_PROFILE()		       				\
224
	BRANCH_PROFILE()						\
225 226
	TRACE_PRINTKS()							\
	TRACEPOINT_STR()
227

228 229 230 231 232 233
/*
 * Data section helpers
 */
#define NOSAVE_DATA							\
	. = ALIGN(PAGE_SIZE);						\
	VMLINUX_SYMBOL(__nosave_begin) = .;				\
234
	*(.data..nosave)						\
235 236 237 238 239
	. = ALIGN(PAGE_SIZE);						\
	VMLINUX_SYMBOL(__nosave_end) = .;

#define PAGE_ALIGNED_DATA(page_align)					\
	. = ALIGN(page_align);						\
240
	*(.data..page_aligned)
241 242 243

#define READ_MOSTLY_DATA(align)						\
	. = ALIGN(align);						\
244 245
	*(.data..read_mostly)						\
	. = ALIGN(align);
246 247 248

#define CACHELINE_ALIGNED_DATA(align)					\
	. = ALIGN(align);						\
249
	*(.data..cacheline_aligned)
250

251
#define INIT_TASK_DATA(align)						\
252
	. = ALIGN(align);						\
253 254 255
	VMLINUX_SYMBOL(__start_init_task) = .;				\
	*(.data..init_task)						\
	VMLINUX_SYMBOL(__end_init_task) = .;
256

257 258 259 260 261 262 263 264
/*
 * Allow architectures to handle ro_after_init data on their
 * own by defining an empty RO_AFTER_INIT_DATA.
 */
#ifndef RO_AFTER_INIT_DATA
#define RO_AFTER_INIT_DATA *(.data..ro_after_init)
#endif

265 266 267 268
/*
 * Read only Data
 */
#define RO_DATA_SECTION(align)						\
269
	. = ALIGN((align));						\
L
Linus Torvalds 已提交
270
	.rodata           : AT(ADDR(.rodata) - LOAD_OFFSET) {		\
271
		VMLINUX_SYMBOL(__start_rodata) = .;			\
L
Linus Torvalds 已提交
272
		*(.rodata) *(.rodata.*)					\
273
		RO_AFTER_INIT_DATA	/* Read only after init */	\
L
Linus Torvalds 已提交
274
		*(__vermagic)		/* Kernel version magic */	\
275 276 277 278
		. = ALIGN(8);						\
		VMLINUX_SYMBOL(__start___tracepoints_ptrs) = .;		\
		*(__tracepoints_ptrs)	/* Tracepoints: pointer array */\
		VMLINUX_SYMBOL(__stop___tracepoints_ptrs) = .;		\
M
Mathieu Desnoyers 已提交
279
		*(__tracepoints_strings)/* Tracepoints: strings */	\
L
Linus Torvalds 已提交
280 281 282 283 284 285
	}								\
									\
	.rodata1          : AT(ADDR(.rodata1) - LOAD_OFFSET) {		\
		*(.rodata1)						\
	}								\
									\
J
Jan Beulich 已提交
286 287
	BUG_TABLE							\
									\
L
Linus Torvalds 已提交
288 289 290 291 292 293 294 295 296 297 298 299 300 301
	/* PCI quirks */						\
	.pci_fixup        : AT(ADDR(.pci_fixup) - LOAD_OFFSET) {	\
		VMLINUX_SYMBOL(__start_pci_fixups_early) = .;		\
		*(.pci_fixup_early)					\
		VMLINUX_SYMBOL(__end_pci_fixups_early) = .;		\
		VMLINUX_SYMBOL(__start_pci_fixups_header) = .;		\
		*(.pci_fixup_header)					\
		VMLINUX_SYMBOL(__end_pci_fixups_header) = .;		\
		VMLINUX_SYMBOL(__start_pci_fixups_final) = .;		\
		*(.pci_fixup_final)					\
		VMLINUX_SYMBOL(__end_pci_fixups_final) = .;		\
		VMLINUX_SYMBOL(__start_pci_fixups_enable) = .;		\
		*(.pci_fixup_enable)					\
		VMLINUX_SYMBOL(__end_pci_fixups_enable) = .;		\
302 303 304
		VMLINUX_SYMBOL(__start_pci_fixups_resume) = .;		\
		*(.pci_fixup_resume)					\
		VMLINUX_SYMBOL(__end_pci_fixups_resume) = .;		\
305 306 307 308 309 310
		VMLINUX_SYMBOL(__start_pci_fixups_resume_early) = .;	\
		*(.pci_fixup_resume_early)				\
		VMLINUX_SYMBOL(__end_pci_fixups_resume_early) = .;	\
		VMLINUX_SYMBOL(__start_pci_fixups_suspend) = .;		\
		*(.pci_fixup_suspend)					\
		VMLINUX_SYMBOL(__end_pci_fixups_suspend) = .;		\
311 312 313
		VMLINUX_SYMBOL(__start_pci_fixups_suspend_late) = .;	\
		*(.pci_fixup_suspend_late)				\
		VMLINUX_SYMBOL(__end_pci_fixups_suspend_late) = .;	\
L
Linus Torvalds 已提交
314 315
	}								\
									\
316 317 318 319 320 321 322
	/* Built-in firmware blobs */					\
	.builtin_fw        : AT(ADDR(.builtin_fw) - LOAD_OFFSET) {	\
		VMLINUX_SYMBOL(__start_builtin_fw) = .;			\
		*(.builtin_fw)						\
		VMLINUX_SYMBOL(__end_builtin_fw) = .;			\
	}								\
									\
J
Jan Beulich 已提交
323 324
	TRACEDATA							\
									\
L
Linus Torvalds 已提交
325 326 327
	/* Kernel symbol table: Normal symbols */			\
	__ksymtab         : AT(ADDR(__ksymtab) - LOAD_OFFSET) {		\
		VMLINUX_SYMBOL(__start___ksymtab) = .;			\
328
		KEEP(*(SORT(___ksymtab+*)))				\
L
Linus Torvalds 已提交
329 330 331 332 333 334
		VMLINUX_SYMBOL(__stop___ksymtab) = .;			\
	}								\
									\
	/* Kernel symbol table: GPL-only symbols */			\
	__ksymtab_gpl     : AT(ADDR(__ksymtab_gpl) - LOAD_OFFSET) {	\
		VMLINUX_SYMBOL(__start___ksymtab_gpl) = .;		\
335
		KEEP(*(SORT(___ksymtab_gpl+*)))				\
L
Linus Torvalds 已提交
336 337 338
		VMLINUX_SYMBOL(__stop___ksymtab_gpl) = .;		\
	}								\
									\
339 340 341
	/* Kernel symbol table: Normal unused symbols */		\
	__ksymtab_unused  : AT(ADDR(__ksymtab_unused) - LOAD_OFFSET) {	\
		VMLINUX_SYMBOL(__start___ksymtab_unused) = .;		\
342
		KEEP(*(SORT(___ksymtab_unused+*)))			\
343 344 345 346 347 348
		VMLINUX_SYMBOL(__stop___ksymtab_unused) = .;		\
	}								\
									\
	/* Kernel symbol table: GPL-only unused symbols */		\
	__ksymtab_unused_gpl : AT(ADDR(__ksymtab_unused_gpl) - LOAD_OFFSET) { \
		VMLINUX_SYMBOL(__start___ksymtab_unused_gpl) = .;	\
349
		KEEP(*(SORT(___ksymtab_unused_gpl+*)))			\
350 351 352
		VMLINUX_SYMBOL(__stop___ksymtab_unused_gpl) = .;	\
	}								\
									\
353 354 355
	/* Kernel symbol table: GPL-future-only symbols */		\
	__ksymtab_gpl_future : AT(ADDR(__ksymtab_gpl_future) - LOAD_OFFSET) { \
		VMLINUX_SYMBOL(__start___ksymtab_gpl_future) = .;	\
356
		KEEP(*(SORT(___ksymtab_gpl_future+*)))			\
357 358 359
		VMLINUX_SYMBOL(__stop___ksymtab_gpl_future) = .;	\
	}								\
									\
L
Linus Torvalds 已提交
360 361 362
	/* Kernel symbol table: Normal symbols */			\
	__kcrctab         : AT(ADDR(__kcrctab) - LOAD_OFFSET) {		\
		VMLINUX_SYMBOL(__start___kcrctab) = .;			\
363
		KEEP(*(SORT(___kcrctab+*)))				\
L
Linus Torvalds 已提交
364 365 366 367 368 369
		VMLINUX_SYMBOL(__stop___kcrctab) = .;			\
	}								\
									\
	/* Kernel symbol table: GPL-only symbols */			\
	__kcrctab_gpl     : AT(ADDR(__kcrctab_gpl) - LOAD_OFFSET) {	\
		VMLINUX_SYMBOL(__start___kcrctab_gpl) = .;		\
370
		KEEP(*(SORT(___kcrctab_gpl+*)))				\
L
Linus Torvalds 已提交
371 372 373
		VMLINUX_SYMBOL(__stop___kcrctab_gpl) = .;		\
	}								\
									\
374 375 376
	/* Kernel symbol table: Normal unused symbols */		\
	__kcrctab_unused  : AT(ADDR(__kcrctab_unused) - LOAD_OFFSET) {	\
		VMLINUX_SYMBOL(__start___kcrctab_unused) = .;		\
377
		KEEP(*(SORT(___kcrctab_unused+*)))			\
378 379 380 381 382 383
		VMLINUX_SYMBOL(__stop___kcrctab_unused) = .;		\
	}								\
									\
	/* Kernel symbol table: GPL-only unused symbols */		\
	__kcrctab_unused_gpl : AT(ADDR(__kcrctab_unused_gpl) - LOAD_OFFSET) { \
		VMLINUX_SYMBOL(__start___kcrctab_unused_gpl) = .;	\
384
		KEEP(*(SORT(___kcrctab_unused_gpl+*)))			\
385 386 387
		VMLINUX_SYMBOL(__stop___kcrctab_unused_gpl) = .;	\
	}								\
									\
388 389 390
	/* Kernel symbol table: GPL-future-only symbols */		\
	__kcrctab_gpl_future : AT(ADDR(__kcrctab_gpl_future) - LOAD_OFFSET) { \
		VMLINUX_SYMBOL(__start___kcrctab_gpl_future) = .;	\
391
		KEEP(*(SORT(___kcrctab_gpl_future+*)))			\
392 393 394
		VMLINUX_SYMBOL(__stop___kcrctab_gpl_future) = .;	\
	}								\
									\
L
Linus Torvalds 已提交
395 396
	/* Kernel symbol table: strings */				\
        __ksymtab_strings : AT(ADDR(__ksymtab_strings) - LOAD_OFFSET) {	\
397
		KEEP(*(__ksymtab_strings))				\
L
Linus Torvalds 已提交
398 399
	}								\
									\
400 401
	/* __*init sections */						\
	__init_rodata : AT(ADDR(__init_rodata) - LOAD_OFFSET) {		\
402
		*(.ref.rodata)						\
403 404 405 406
		MEM_KEEP(init.rodata)					\
		MEM_KEEP(exit.rodata)					\
	}								\
									\
L
Linus Torvalds 已提交
407 408 409 410 411
	/* Built-in module parameters. */				\
	__param : AT(ADDR(__param) - LOAD_OFFSET) {			\
		VMLINUX_SYMBOL(__start___param) = .;			\
		*(__param)						\
		VMLINUX_SYMBOL(__stop___param) = .;			\
412 413 414 415 416 417 418
	}								\
									\
	/* Built-in module versions. */					\
	__modver : AT(ADDR(__modver) - LOAD_OFFSET) {			\
		VMLINUX_SYMBOL(__start___modver) = .;			\
		*(__modver)						\
		VMLINUX_SYMBOL(__stop___modver) = .;			\
419
		. = ALIGN((align));					\
420
		VMLINUX_SYMBOL(__end_rodata) = .;			\
421
	}								\
422 423
	. = ALIGN((align));

424
/* RODATA & RO_DATA provided for backward compatibility.
425
 * All archs are supposed to use RO_DATA() */
426 427
#define RODATA          RO_DATA_SECTION(4096)
#define RO_DATA(align)  RO_DATA_SECTION(align)
L
Linus Torvalds 已提交
428 429

#define SECURITY_INIT							\
430
	.security_initcall.init : AT(ADDR(.security_initcall.init) - LOAD_OFFSET) { \
L
Linus Torvalds 已提交
431
		VMLINUX_SYMBOL(__security_initcall_start) = .;		\
432
		KEEP(*(.security_initcall.init))			\
L
Linus Torvalds 已提交
433 434 435
		VMLINUX_SYMBOL(__security_initcall_end) = .;		\
	}

436 437 438 439
/* .text section. Map to function alignment to avoid address changes
 * during second ld run in second ld pass when generating System.map */
#define TEXT_TEXT							\
		ALIGN_FUNCTION();					\
440
		*(.text.hot .text .text.fixup .text.unlikely .text.*)	\
441
		*(.ref.text)						\
442
	MEM_KEEP(init.text)						\
443
	MEM_KEEP(exit.text)						\
444

445

446 447
/* 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 已提交
448
#define SCHED_TEXT							\
449
		ALIGN_FUNCTION();					\
L
Linus Torvalds 已提交
450 451 452 453
		VMLINUX_SYMBOL(__sched_text_start) = .;			\
		*(.sched.text)						\
		VMLINUX_SYMBOL(__sched_text_end) = .;

454 455
/* 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 已提交
456
#define LOCK_TEXT							\
457
		ALIGN_FUNCTION();					\
L
Linus Torvalds 已提交
458 459 460
		VMLINUX_SYMBOL(__lock_text_start) = .;			\
		*(.spinlock.text)					\
		VMLINUX_SYMBOL(__lock_text_end) = .;
461 462 463 464 465 466

#define KPROBES_TEXT							\
		ALIGN_FUNCTION();					\
		VMLINUX_SYMBOL(__kprobes_text_start) = .;		\
		*(.kprobes.text)					\
		VMLINUX_SYMBOL(__kprobes_text_end) = .;
467

J
Jiri Olsa 已提交
468 469 470 471 472 473
#define ENTRY_TEXT							\
		ALIGN_FUNCTION();					\
		VMLINUX_SYMBOL(__entry_text_start) = .;			\
		*(.entry.text)						\
		VMLINUX_SYMBOL(__entry_text_end) = .;

474
#if defined(CONFIG_FUNCTION_GRAPH_TRACER) || defined(CONFIG_KASAN)
475 476 477 478 479 480 481 482 483
#define IRQENTRY_TEXT							\
		ALIGN_FUNCTION();					\
		VMLINUX_SYMBOL(__irqentry_text_start) = .;		\
		*(.irqentry.text)					\
		VMLINUX_SYMBOL(__irqentry_text_end) = .;
#else
#define IRQENTRY_TEXT
#endif

484 485 486 487 488 489 490 491 492 493
#if defined(CONFIG_FUNCTION_GRAPH_TRACER) || defined(CONFIG_KASAN)
#define SOFTIRQENTRY_TEXT						\
		ALIGN_FUNCTION();					\
		VMLINUX_SYMBOL(__softirqentry_text_start) = .;		\
		*(.softirqentry.text)					\
		VMLINUX_SYMBOL(__softirqentry_text_end) = .;
#else
#define SOFTIRQENTRY_TEXT
#endif

494
/* Section used for early init (in .S files) */
S
Sam Ravnborg 已提交
495
#define HEAD_TEXT  *(.head.text)
496

S
Sam Ravnborg 已提交
497
#define HEAD_TEXT_SECTION							\
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
	.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) {		\
		VMLINUX_SYMBOL(__start___ex_table) = .;			\
		*(__ex_table)						\
		VMLINUX_SYMBOL(__stop___ex_table) = .;			\
	}

/*
 * Init task
 */
516
#define INIT_TASK_DATA_SECTION(align)					\
517
	. = ALIGN(align);						\
518
	.data..init_task :  AT(ADDR(.data..init_task) - LOAD_OFFSET) {	\
519
		INIT_TASK_DATA(align)					\
520
	}
521

522
#ifdef CONFIG_CONSTRUCTORS
523 524
#define KERNEL_CTORS()	. = ALIGN(8);			   \
			VMLINUX_SYMBOL(__ctors_start) = .; \
525
			*(.ctors)			   \
526
			*(SORT(.init_array.*))		   \
527
			*(.init_array)			   \
528 529 530 531 532
			VMLINUX_SYMBOL(__ctors_end) = .;
#else
#define KERNEL_CTORS()
#endif

533
/* init and exit section handling */
534
#define INIT_DATA							\
535
	KEEP(*(SORT(___kentry+*)))					\
536 537
	*(.init.data)							\
	MEM_DISCARD(init.data)						\
538
	KERNEL_CTORS()							\
539
	MCOUNT_REC()							\
540
	*(.init.rodata)							\
541
	FTRACE_EVENTS()							\
542
	TRACE_SYSCALLS()						\
543
	KPROBE_BLACKLIST()						\
544
	MEM_DISCARD(init.rodata)					\
545
	CLK_OF_TABLES()							\
546
	RESERVEDMEM_OF_TABLES()						\
547
	CLKSRC_OF_TABLES()						\
548
	IOMMU_OF_TABLES()						\
549
	CPU_METHOD_OF_TABLES()						\
550
	CPUIDLE_METHOD_OF_TABLES()					\
551
	KERNEL_DTB()							\
R
Rob Herring 已提交
552
	IRQCHIP_OF_MATCH_TABLE()					\
553
	ACPI_PROBE_TABLE(irqchip)					\
554
	ACPI_PROBE_TABLE(clksrc)					\
555
	EARLYCON_TABLE()
556 557 558

#define INIT_TEXT							\
	*(.init.text)							\
559
	*(.text.startup)						\
560 561 562 563
	MEM_DISCARD(init.text)

#define EXIT_DATA							\
	*(.exit.data)							\
564 565
	*(.fini_array)							\
	*(.dtors)							\
566 567
	MEM_DISCARD(exit.data)						\
	MEM_DISCARD(exit.rodata)
568

569 570
#define EXIT_TEXT							\
	*(.exit.text)							\
571
	*(.text.exit)							\
572
	MEM_DISCARD(exit.text)
573

S
Sam Ravnborg 已提交
574 575 576
#define EXIT_CALL							\
	*(.exitcall.exit)

577 578 579 580
/*
 * bss (Block Started by Symbol) - uninitialized data
 * zeroed during startup
 */
581 582
#define SBSS(sbss_align)						\
	. = ALIGN(sbss_align);						\
583 584 585 586 587
	.sbss : AT(ADDR(.sbss) - LOAD_OFFSET) {				\
		*(.sbss)						\
		*(.scommon)						\
	}

588 589 590 591 592 593 594 595
/*
 * 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

596 597 598
#define BSS(bss_align)							\
	. = ALIGN(bss_align);						\
	.bss : AT(ADDR(.bss) - LOAD_OFFSET) {				\
599
		BSS_FIRST_SECTIONS					\
600
		*(.bss..page_aligned)					\
601
		*(.dynbss)						\
602
		*(.bss .bss.[0-9a-zA-Z_]*)				\
603 604 605 606 607 608 609 610
		*(COMMON)						\
	}

/*
 * DWARF debug sections.
 * Symbols in the DWARF debugging sections are relative to
 * the beginning of the section so we begin them at 0.
 */
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
#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) }		\
		/* 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) }		\

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

J
Jan Beulich 已提交
646
#ifdef CONFIG_GENERIC_BUG
647 648 649
#define BUG_TABLE							\
	. = ALIGN(8);							\
	__bug_table : AT(ADDR(__bug_table) - LOAD_OFFSET) {		\
650
		VMLINUX_SYMBOL(__start___bug_table) = .;		\
651
		*(__bug_table)						\
652
		VMLINUX_SYMBOL(__stop___bug_table) = .;			\
653
	}
J
Jan Beulich 已提交
654 655 656
#else
#define BUG_TABLE
#endif
657

J
Jan Beulich 已提交
658 659 660 661
#ifdef CONFIG_PM_TRACE
#define TRACEDATA							\
	. = ALIGN(4);							\
	.tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) {		\
662
		VMLINUX_SYMBOL(__tracedata_start) = .;			\
J
Jan Beulich 已提交
663
		*(.tracedata)						\
664
		VMLINUX_SYMBOL(__tracedata_end) = .;			\
J
Jan Beulich 已提交
665 666 667 668 669
	}
#else
#define TRACEDATA
#endif

670
#define NOTES								\
671 672 673 674 675
	.notes : AT(ADDR(.notes) - LOAD_OFFSET) {			\
		VMLINUX_SYMBOL(__start_notes) = .;			\
		*(.note.*)						\
		VMLINUX_SYMBOL(__stop_notes) = .;			\
	}
676

677 678 679 680 681 682
#define INIT_SETUP(initsetup_align)					\
		. = ALIGN(initsetup_align);				\
		VMLINUX_SYMBOL(__setup_start) = .;			\
		*(.init.setup)						\
		VMLINUX_SYMBOL(__setup_end) = .;

683 684
#define INIT_CALLS_LEVEL(level)						\
		VMLINUX_SYMBOL(__initcall##level##_start) = .;		\
685 686
		KEEP(*(.initcall##level##.init))			\
		KEEP(*(.initcall##level##s.init))			\
687

688 689
#define INIT_CALLS							\
		VMLINUX_SYMBOL(__initcall_start) = .;			\
690
		KEEP(*(.initcallearly.init))				\
691 692 693 694 695 696 697 698 699
		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)					\
700 701 702 703
		VMLINUX_SYMBOL(__initcall_end) = .;

#define CON_INITCALL							\
		VMLINUX_SYMBOL(__con_initcall_start) = .;		\
704
		KEEP(*(.con_initcall.init))				\
705 706 707 708
		VMLINUX_SYMBOL(__con_initcall_end) = .;

#define SECURITY_INITCALL						\
		VMLINUX_SYMBOL(__security_initcall_start) = .;		\
709
		KEEP(*(.security_initcall.init))			\
710 711 712 713
		VMLINUX_SYMBOL(__security_initcall_end) = .;

#ifdef CONFIG_BLK_DEV_INITRD
#define INIT_RAM_FS							\
714
	. = ALIGN(4);							\
715
	VMLINUX_SYMBOL(__initramfs_start) = .;				\
716
	KEEP(*(.init.ramfs))						\
717
	. = ALIGN(8);							\
718
	KEEP(*(.init.ramfs.info))
719
#else
720
#define INIT_RAM_FS
721 722
#endif

723 724 725 726 727 728 729 730 731
/*
 * 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.
 */
732 733 734 735
#define DISCARDS							\
	/DISCARD/ : {							\
	EXIT_TEXT							\
	EXIT_DATA							\
736
	EXIT_CALL							\
737
	*(.discard)							\
738
	*(.discard.*)							\
739 740
	}

741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
/**
 * 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)						\
	VMLINUX_SYMBOL(__per_cpu_start) = .;				\
	*(.data..percpu..first)						\
	. = ALIGN(PAGE_SIZE);						\
	*(.data..percpu..page_aligned)					\
	. = ALIGN(cacheline);						\
757
	*(.data..percpu..read_mostly)					\
758 759 760 761 762
	. = ALIGN(cacheline);						\
	*(.data..percpu)						\
	*(.data..percpu..shared_aligned)				\
	VMLINUX_SYMBOL(__per_cpu_end) = .;

763
/**
764
 * PERCPU_VADDR - define output section for percpu area
765
 * @cacheline: cacheline size
766 767 768
 * @vaddr: explicit base address (optional)
 * @phdr: destination PHDR (optional)
 *
769 770 771 772 773 774 775 776
 * 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.
777 778 779 780 781 782
 *
 * @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.
 *
783 784
 * 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
785
 * address, use PERCPU_SECTION.
786
 */
787
#define PERCPU_VADDR(cacheline, vaddr, phdr)				\
788
	VMLINUX_SYMBOL(__per_cpu_load) = .;				\
789
	.data..percpu vaddr : AT(VMLINUX_SYMBOL(__per_cpu_load)		\
790
				- LOAD_OFFSET) {			\
791
		PERCPU_INPUT(cacheline)					\
792
	} phdr								\
793
	. = VMLINUX_SYMBOL(__per_cpu_load) + SIZEOF(.data..percpu);
794 795

/**
796
 * PERCPU_SECTION - define output section for percpu area, simple version
797
 * @cacheline: cacheline size
798
 *
799 800
 * Align to PAGE_SIZE and outputs output section for percpu area.  This
 * macro doesn't manipulate @vaddr or @phdr and __per_cpu_load and
801
 * __per_cpu_start will be identical.
802
 *
803
 * This macro is equivalent to ALIGN(PAGE_SIZE); PERCPU_VADDR(@cacheline,,)
804 805
 * except that __per_cpu_load is defined as a relative symbol against
 * .data..percpu which is required for relocatable x86_32 configuration.
806
 */
807 808
#define PERCPU_SECTION(cacheline)					\
	. = ALIGN(PAGE_SIZE);						\
809
	.data..percpu	: AT(ADDR(.data..percpu) - LOAD_OFFSET) {	\
810
		VMLINUX_SYMBOL(__per_cpu_load) = .;			\
811
		PERCPU_INPUT(cacheline)					\
812
	}
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829


/*
 * 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 已提交
830
 * matches the requirement of PAGE_ALIGNED_DATA.
831
 *
S
Sam Ravnborg 已提交
832
 * use 0 as page_align if page_aligned data is not used */
833
#define RW_DATA_SECTION(cacheline, pagealigned, inittask)		\
834 835
	. = ALIGN(PAGE_SIZE);						\
	.data : AT(ADDR(.data) - LOAD_OFFSET) {				\
836
		INIT_TASK_DATA(inittask)				\
837 838
		NOSAVE_DATA						\
		PAGE_ALIGNED_DATA(pagealigned)				\
839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862
		CACHELINE_ALIGNED_DATA(cacheline)			\
		READ_MOSTLY_DATA(cacheline)				\
		DATA_DATA						\
		CONSTRUCTORS						\
	}

#define INIT_TEXT_SECTION(inittext_align)				\
	. = ALIGN(inittext_align);					\
	.init.text : AT(ADDR(.init.text) - LOAD_OFFSET) {		\
		VMLINUX_SYMBOL(_sinittext) = .;				\
		INIT_TEXT						\
		VMLINUX_SYMBOL(_einittext) = .;				\
	}

#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						\
	}

863 864 865 866
#define BSS_SECTION(sbss_align, bss_align, stop_align)			\
	. = ALIGN(sbss_align);						\
	VMLINUX_SYMBOL(__bss_start) = .;				\
	SBSS(sbss_align)						\
867
	BSS(bss_align)							\
868 869
	. = ALIGN(stop_align);						\
	VMLINUX_SYMBOL(__bss_stop) = .;