2 * Helper macros to support writing architecture specific
5 * A minimal linker scripts has following content:
6 * [This is a sample, architectures may have special requiriements]
16 * INIT_TEXT_SECTION(PAGE_SIZE)
17 * INIT_DATA_SECTION(...)
18 * PERCPU_SECTION(CACHELINE_SIZE)
30 * EXCEPTION_TABLE(...)
32 * BSS_SECTION(0, 0, 0)
39 * DISCARDS // must be the last
42 * [__init_begin, __init_end] is the init section that may be freed after init
43 * // __init_begin and __init_end should be page aligned, so that we can
44 * // free the whole .init memory
45 * [_stext, _etext] is the text section
46 * [_sdata, _edata] is the data section
48 * Some of the included output section have their own set of constants.
49 * Examples are: [__initramfs_start, __initramfs_end] for initramfs and
50 * [__nosave_begin, __nosave_end] for the nosave data
58 * Only some architectures want to have the .notes segment visible in
59 * a separate PT_NOTE ELF Program Header. When this happens, it needs
60 * to be visible in both the kernel text's PT_LOAD and the PT_NOTE
61 * Program Headers. In this case, though, the PT_LOAD needs to be made
62 * the default again so that all the following sections don't also end
63 * up in the PT_NOTE Program Header.
66 #define NOTES_HEADERS :text :note
67 #define NOTES_HEADERS_RESTORE __restore_ph : { *(.__restore_ph) } :text
70 #define NOTES_HEADERS_RESTORE
74 * Some architectures have non-executable read-only exception tables.
75 * They can be added to the RO_DATA segment by specifying their desired
78 #ifdef RO_EXCEPTION_TABLE_ALIGN
79 #define RO_EXCEPTION_TABLE EXCEPTION_TABLE(RO_EXCEPTION_TABLE_ALIGN)
81 #define RO_EXCEPTION_TABLE
84 /* Align . to a 8 byte boundary equals to maximum function alignment. */
85 #define ALIGN_FUNCTION() . = ALIGN(8)
88 * LD_DEAD_CODE_DATA_ELIMINATION option enables -fdata-sections, which
89 * generates .data.identifier sections, which need to be pulled in with
90 * .data. We don't want to pull in .data..other sections, which Linux
91 * has defined. Same for text and bss.
93 * RODATA_MAIN is not used because existing code already defines .rodata.x
94 * sections to be brought in with rodata.
96 #ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
97 #define TEXT_MAIN .text .text.[0-9a-zA-Z_]*
98 #define DATA_MAIN .data .data.[0-9a-zA-Z_]* .data..LPBX*
99 #define SDATA_MAIN .sdata .sdata.[0-9a-zA-Z_]*
100 #define RODATA_MAIN .rodata .rodata.[0-9a-zA-Z_]*
101 #define BSS_MAIN .bss .bss.[0-9a-zA-Z_]*
102 #define SBSS_MAIN .sbss .sbss.[0-9a-zA-Z_]*
104 #define TEXT_MAIN .text
105 #define DATA_MAIN .data
106 #define SDATA_MAIN .sdata
107 #define RODATA_MAIN .rodata
108 #define BSS_MAIN .bss
109 #define SBSS_MAIN .sbss
113 * GCC 4.5 and later have a 32 bytes section alignment for structures.
114 * Except GCC 4.9, that feels the need to align on 64 bytes.
116 #if __GNUC__ == 4 && __GNUC_MINOR__ == 9
117 #define STRUCT_ALIGNMENT 64
119 #define STRUCT_ALIGNMENT 32
121 #define STRUCT_ALIGN() . = ALIGN(STRUCT_ALIGNMENT)
124 * The order of the sched class addresses are important, as they are
125 * used to determine the order of the priority of each sched class in
126 * relation to each other.
130 __begin_sched_classes = .; \
131 *(__idle_sched_class) \
132 *(__fair_sched_class) \
133 *(__rt_sched_class) \
134 *(__dl_sched_class) \
135 *(__stop_sched_class) \
136 __end_sched_classes = .;
138 /* The actual configuration determine if the init/exit sections
139 * are handled as text/data or they can be discarded (which
140 * often happens at runtime)
142 #ifdef CONFIG_HOTPLUG_CPU
143 #define CPU_KEEP(sec) *(.cpu##sec)
144 #define CPU_DISCARD(sec)
146 #define CPU_KEEP(sec)
147 #define CPU_DISCARD(sec) *(.cpu##sec)
150 #if defined(CONFIG_MEMORY_HOTPLUG)
151 #define MEM_KEEP(sec) *(.mem##sec)
152 #define MEM_DISCARD(sec)
154 #define MEM_KEEP(sec)
155 #define MEM_DISCARD(sec) *(.mem##sec)
158 #ifdef CONFIG_FTRACE_MCOUNT_RECORD
160 * The ftrace call sites are logged to a section whose name depends on the
161 * compiler option used. A given kernel image will only use one, AKA
162 * FTRACE_CALLSITE_SECTION. We capture all of them here to avoid header
163 * dependencies for FTRACE_CALLSITE_SECTION's definition.
165 * Need to also make ftrace_stub_graph point to ftrace_stub
166 * so that the same stub location may have different protocols
167 * and not mess up with C verifiers.
169 #define MCOUNT_REC() . = ALIGN(8); \
170 __start_mcount_loc = .; \
171 KEEP(*(__mcount_loc)) \
172 KEEP(*(__patchable_function_entries)) \
173 __stop_mcount_loc = .; \
174 ftrace_stub_graph = ftrace_stub;
176 # ifdef CONFIG_FUNCTION_TRACER
177 # define MCOUNT_REC() ftrace_stub_graph = ftrace_stub;
179 # define MCOUNT_REC()
183 #ifdef CONFIG_TRACE_BRANCH_PROFILING
184 #define LIKELY_PROFILE() __start_annotated_branch_profile = .; \
185 KEEP(*(_ftrace_annotated_branch)) \
186 __stop_annotated_branch_profile = .;
188 #define LIKELY_PROFILE()
191 #ifdef CONFIG_PROFILE_ALL_BRANCHES
192 #define BRANCH_PROFILE() __start_branch_profile = .; \
193 KEEP(*(_ftrace_branch)) \
194 __stop_branch_profile = .;
196 #define BRANCH_PROFILE()
199 #ifdef CONFIG_KPROBES
200 #define KPROBE_BLACKLIST() . = ALIGN(8); \
201 __start_kprobe_blacklist = .; \
202 KEEP(*(_kprobe_blacklist)) \
203 __stop_kprobe_blacklist = .;
205 #define KPROBE_BLACKLIST()
208 #ifdef CONFIG_FUNCTION_ERROR_INJECTION
209 #define ERROR_INJECT_WHITELIST() STRUCT_ALIGN(); \
210 __start_error_injection_whitelist = .; \
211 KEEP(*(_error_injection_whitelist)) \
212 __stop_error_injection_whitelist = .;
214 #define ERROR_INJECT_WHITELIST()
217 #ifdef CONFIG_EVENT_TRACING
218 #define FTRACE_EVENTS() . = ALIGN(8); \
219 __start_ftrace_events = .; \
220 KEEP(*(_ftrace_events)) \
221 __stop_ftrace_events = .; \
222 __start_ftrace_eval_maps = .; \
223 KEEP(*(_ftrace_eval_map)) \
224 __stop_ftrace_eval_maps = .;
226 #define FTRACE_EVENTS()
229 #ifdef CONFIG_TRACING
230 #define TRACE_PRINTKS() __start___trace_bprintk_fmt = .; \
231 KEEP(*(__trace_printk_fmt)) /* Trace_printk fmt' pointer */ \
232 __stop___trace_bprintk_fmt = .;
233 #define TRACEPOINT_STR() __start___tracepoint_str = .; \
234 KEEP(*(__tracepoint_str)) /* Trace_printk fmt' pointer */ \
235 __stop___tracepoint_str = .;
237 #define TRACE_PRINTKS()
238 #define TRACEPOINT_STR()
241 #ifdef CONFIG_FTRACE_SYSCALLS
242 #define TRACE_SYSCALLS() . = ALIGN(8); \
243 __start_syscalls_metadata = .; \
244 KEEP(*(__syscalls_metadata)) \
245 __stop_syscalls_metadata = .;
247 #define TRACE_SYSCALLS()
250 #ifdef CONFIG_BPF_EVENTS
251 #define BPF_RAW_TP() STRUCT_ALIGN(); \
252 __start__bpf_raw_tp = .; \
253 KEEP(*(__bpf_raw_tp_map)) \
254 __stop__bpf_raw_tp = .;
259 #ifdef CONFIG_SERIAL_EARLYCON
260 #define EARLYCON_TABLE() . = ALIGN(8); \
261 __earlycon_table = .; \
262 KEEP(*(__earlycon_table)) \
263 __earlycon_table_end = .;
265 #define EARLYCON_TABLE()
268 #ifdef CONFIG_SECURITY
269 #define LSM_TABLE() . = ALIGN(8); \
270 __start_lsm_info = .; \
271 KEEP(*(.lsm_info.init)) \
273 #define EARLY_LSM_TABLE() . = ALIGN(8); \
274 __start_early_lsm_info = .; \
275 KEEP(*(.early_lsm_info.init)) \
276 __end_early_lsm_info = .;
279 #define EARLY_LSM_TABLE()
282 #define ___OF_TABLE(cfg, name) _OF_TABLE_##cfg(name)
283 #define __OF_TABLE(cfg, name) ___OF_TABLE(cfg, name)
284 #define OF_TABLE(cfg, name) __OF_TABLE(IS_ENABLED(cfg), name)
285 #define _OF_TABLE_0(name)
286 #define _OF_TABLE_1(name) \
288 __##name##_of_table = .; \
289 KEEP(*(__##name##_of_table)) \
290 KEEP(*(__##name##_of_table_end))
292 #define TIMER_OF_TABLES() OF_TABLE(CONFIG_TIMER_OF, timer)
293 #define IRQCHIP_OF_MATCH_TABLE() OF_TABLE(CONFIG_IRQCHIP, irqchip)
294 #define CLK_OF_TABLES() OF_TABLE(CONFIG_COMMON_CLK, clk)
295 #define RESERVEDMEM_OF_TABLES() OF_TABLE(CONFIG_OF_RESERVED_MEM, reservedmem)
296 #define CPU_METHOD_OF_TABLES() OF_TABLE(CONFIG_SMP, cpu_method)
297 #define CPUIDLE_METHOD_OF_TABLES() OF_TABLE(CONFIG_CPU_IDLE, cpuidle_method)
300 #define ACPI_PROBE_TABLE(name) \
302 __##name##_acpi_probe_table = .; \
303 KEEP(*(__##name##_acpi_probe_table)) \
304 __##name##_acpi_probe_table_end = .;
306 #define ACPI_PROBE_TABLE(name)
309 #ifdef CONFIG_THERMAL
310 #define THERMAL_TABLE(name) \
312 __##name##_thermal_table = .; \
313 KEEP(*(__##name##_thermal_table)) \
314 __##name##_thermal_table_end = .;
316 #define THERMAL_TABLE(name)
319 #define KERNEL_DTB() \
322 KEEP(*(.dtb.init.rodata)) \
332 *(.data..shared_aligned) /* percpu related */ \
333 MEM_KEEP(init.data*) \
334 MEM_KEEP(exit.data*) \
341 /* implement dynamic printk debug */ \
343 __start___dyndbg = .; \
345 __stop___dyndbg = .; \
353 * Data section helpers
355 #define NOSAVE_DATA \
356 . = ALIGN(PAGE_SIZE); \
357 __nosave_begin = .; \
359 . = ALIGN(PAGE_SIZE); \
362 #define PAGE_ALIGNED_DATA(page_align) \
363 . = ALIGN(page_align); \
364 *(.data..page_aligned) \
365 . = ALIGN(page_align);
367 #define READ_MOSTLY_DATA(align) \
369 *(.data..read_mostly) \
372 #define CACHELINE_ALIGNED_DATA(align) \
374 *(.data..cacheline_aligned)
376 #define INIT_TASK_DATA(align) \
378 __start_init_task = .; \
379 init_thread_union = .; \
381 KEEP(*(.data..init_task)) \
382 KEEP(*(.data..init_thread_info)) \
383 . = __start_init_task + THREAD_SIZE; \
386 #define JUMP_TABLE_DATA \
388 __start___jump_table = .; \
389 KEEP(*(__jump_table)) \
390 __stop___jump_table = .;
392 #define STATIC_CALL_DATA \
394 __start_static_call_sites = .; \
395 KEEP(*(.static_call_sites)) \
396 __stop_static_call_sites = .;
399 * Allow architectures to handle ro_after_init data on their
400 * own by defining an empty RO_AFTER_INIT_DATA.
402 #ifndef RO_AFTER_INIT_DATA
403 #define RO_AFTER_INIT_DATA \
405 __start_ro_after_init = .; \
406 *(.data..ro_after_init) \
409 __end_ro_after_init = .;
415 #define RO_DATA(align) \
416 . = ALIGN((align)); \
417 .rodata : AT(ADDR(.rodata) - LOAD_OFFSET) { \
418 __start_rodata = .; \
419 *(.rodata) *(.rodata.*) \
421 RO_AFTER_INIT_DATA /* Read only after init */ \
423 __start___tracepoints_ptrs = .; \
424 KEEP(*(__tracepoints_ptrs)) /* Tracepoints: pointer array */ \
425 __stop___tracepoints_ptrs = .; \
426 *(__tracepoints_strings)/* Tracepoints: strings */ \
429 .rodata1 : AT(ADDR(.rodata1) - LOAD_OFFSET) { \
434 .pci_fixup : AT(ADDR(.pci_fixup) - LOAD_OFFSET) { \
435 __start_pci_fixups_early = .; \
436 KEEP(*(.pci_fixup_early)) \
437 __end_pci_fixups_early = .; \
438 __start_pci_fixups_header = .; \
439 KEEP(*(.pci_fixup_header)) \
440 __end_pci_fixups_header = .; \
441 __start_pci_fixups_final = .; \
442 KEEP(*(.pci_fixup_final)) \
443 __end_pci_fixups_final = .; \
444 __start_pci_fixups_enable = .; \
445 KEEP(*(.pci_fixup_enable)) \
446 __end_pci_fixups_enable = .; \
447 __start_pci_fixups_resume = .; \
448 KEEP(*(.pci_fixup_resume)) \
449 __end_pci_fixups_resume = .; \
450 __start_pci_fixups_resume_early = .; \
451 KEEP(*(.pci_fixup_resume_early)) \
452 __end_pci_fixups_resume_early = .; \
453 __start_pci_fixups_suspend = .; \
454 KEEP(*(.pci_fixup_suspend)) \
455 __end_pci_fixups_suspend = .; \
456 __start_pci_fixups_suspend_late = .; \
457 KEEP(*(.pci_fixup_suspend_late)) \
458 __end_pci_fixups_suspend_late = .; \
461 /* Built-in firmware blobs */ \
462 .builtin_fw : AT(ADDR(.builtin_fw) - LOAD_OFFSET) { \
463 __start_builtin_fw = .; \
464 KEEP(*(.builtin_fw)) \
465 __end_builtin_fw = .; \
470 /* Kernel symbol table: Normal symbols */ \
471 __ksymtab : AT(ADDR(__ksymtab) - LOAD_OFFSET) { \
472 __start___ksymtab = .; \
473 KEEP(*(SORT(___ksymtab+*))) \
474 __stop___ksymtab = .; \
477 /* Kernel symbol table: GPL-only symbols */ \
478 __ksymtab_gpl : AT(ADDR(__ksymtab_gpl) - LOAD_OFFSET) { \
479 __start___ksymtab_gpl = .; \
480 KEEP(*(SORT(___ksymtab_gpl+*))) \
481 __stop___ksymtab_gpl = .; \
484 /* Kernel symbol table: Normal unused symbols */ \
485 __ksymtab_unused : AT(ADDR(__ksymtab_unused) - LOAD_OFFSET) { \
486 __start___ksymtab_unused = .; \
487 KEEP(*(SORT(___ksymtab_unused+*))) \
488 __stop___ksymtab_unused = .; \
491 /* Kernel symbol table: GPL-only unused symbols */ \
492 __ksymtab_unused_gpl : AT(ADDR(__ksymtab_unused_gpl) - LOAD_OFFSET) { \
493 __start___ksymtab_unused_gpl = .; \
494 KEEP(*(SORT(___ksymtab_unused_gpl+*))) \
495 __stop___ksymtab_unused_gpl = .; \
498 /* Kernel symbol table: GPL-future-only symbols */ \
499 __ksymtab_gpl_future : AT(ADDR(__ksymtab_gpl_future) - LOAD_OFFSET) { \
500 __start___ksymtab_gpl_future = .; \
501 KEEP(*(SORT(___ksymtab_gpl_future+*))) \
502 __stop___ksymtab_gpl_future = .; \
505 /* Kernel symbol table: Normal symbols */ \
506 __kcrctab : AT(ADDR(__kcrctab) - LOAD_OFFSET) { \
507 __start___kcrctab = .; \
508 KEEP(*(SORT(___kcrctab+*))) \
509 __stop___kcrctab = .; \
512 /* Kernel symbol table: GPL-only symbols */ \
513 __kcrctab_gpl : AT(ADDR(__kcrctab_gpl) - LOAD_OFFSET) { \
514 __start___kcrctab_gpl = .; \
515 KEEP(*(SORT(___kcrctab_gpl+*))) \
516 __stop___kcrctab_gpl = .; \
519 /* Kernel symbol table: Normal unused symbols */ \
520 __kcrctab_unused : AT(ADDR(__kcrctab_unused) - LOAD_OFFSET) { \
521 __start___kcrctab_unused = .; \
522 KEEP(*(SORT(___kcrctab_unused+*))) \
523 __stop___kcrctab_unused = .; \
526 /* Kernel symbol table: GPL-only unused symbols */ \
527 __kcrctab_unused_gpl : AT(ADDR(__kcrctab_unused_gpl) - LOAD_OFFSET) { \
528 __start___kcrctab_unused_gpl = .; \
529 KEEP(*(SORT(___kcrctab_unused_gpl+*))) \
530 __stop___kcrctab_unused_gpl = .; \
533 /* Kernel symbol table: GPL-future-only symbols */ \
534 __kcrctab_gpl_future : AT(ADDR(__kcrctab_gpl_future) - LOAD_OFFSET) { \
535 __start___kcrctab_gpl_future = .; \
536 KEEP(*(SORT(___kcrctab_gpl_future+*))) \
537 __stop___kcrctab_gpl_future = .; \
540 /* Kernel symbol table: strings */ \
541 __ksymtab_strings : AT(ADDR(__ksymtab_strings) - LOAD_OFFSET) { \
542 *(__ksymtab_strings) \
545 /* __*init sections */ \
546 __init_rodata : AT(ADDR(__init_rodata) - LOAD_OFFSET) { \
548 MEM_KEEP(init.rodata) \
549 MEM_KEEP(exit.rodata) \
552 /* Built-in module parameters. */ \
553 __param : AT(ADDR(__param) - LOAD_OFFSET) { \
554 __start___param = .; \
556 __stop___param = .; \
559 /* Built-in module versions. */ \
560 __modver : AT(ADDR(__modver) - LOAD_OFFSET) { \
561 __start___modver = .; \
563 __stop___modver = .; \
570 . = ALIGN((align)); \
574 * Non-instrumentable text section
576 #define NOINSTR_TEXT \
578 __noinstr_text_start = .; \
580 __noinstr_text_end = .;
583 * .text section. Map to function alignment to avoid address changes
584 * during second ld run in second ld pass when generating System.map
586 * TEXT_MAIN here will match .text.fixup and .text.unlikely if dead
587 * code elimination is enabled, so these sections should be converted
592 *(.text.hot .text.hot.*) \
593 *(TEXT_MAIN .text.fixup) \
594 *(.text.unlikely .text.unlikely.*) \
595 *(.text.unknown .text.unknown.*) \
599 MEM_KEEP(init.text*) \
600 MEM_KEEP(exit.text*) \
603 /* sched.text is aling to function alignment to secure we have same
604 * address even at second ld pass when generating System.map */
607 __sched_text_start = .; \
609 __sched_text_end = .;
611 /* spinlock.text is aling to function alignment to secure we have same
612 * address even at second ld pass when generating System.map */
615 __lock_text_start = .; \
619 #define CPUIDLE_TEXT \
621 __cpuidle_text_start = .; \
623 __cpuidle_text_end = .;
625 #define KPROBES_TEXT \
627 __kprobes_text_start = .; \
629 __kprobes_text_end = .;
633 __entry_text_start = .; \
635 __entry_text_end = .;
637 #define IRQENTRY_TEXT \
639 __irqentry_text_start = .; \
641 __irqentry_text_end = .;
643 #define SOFTIRQENTRY_TEXT \
645 __softirqentry_text_start = .; \
646 *(.softirqentry.text) \
647 __softirqentry_text_end = .;
649 #define STATIC_CALL_TEXT \
651 __static_call_text_start = .; \
652 *(.static_call.text) \
653 __static_call_text_end = .;
655 /* Section used for early init (in .S files) */
656 #define HEAD_TEXT KEEP(*(.head.text))
658 #define HEAD_TEXT_SECTION \
659 .head.text : AT(ADDR(.head.text) - LOAD_OFFSET) { \
666 #define EXCEPTION_TABLE(align) \
668 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { \
669 __start___ex_table = .; \
670 KEEP(*(__ex_table)) \
671 __stop___ex_table = .; \
677 #ifdef CONFIG_DEBUG_INFO_BTF
679 .BTF : AT(ADDR(.BTF) - LOAD_OFFSET) { \
685 .BTF_ids : AT(ADDR(.BTF_ids) - LOAD_OFFSET) { \
695 #define INIT_TASK_DATA_SECTION(align) \
697 .data..init_task : AT(ADDR(.data..init_task) - LOAD_OFFSET) { \
698 INIT_TASK_DATA(align) \
701 #ifdef CONFIG_CONSTRUCTORS
702 #define KERNEL_CTORS() . = ALIGN(8); \
704 KEEP(*(SORT(.ctors.*))) \
706 KEEP(*(SORT(.init_array.*))) \
707 KEEP(*(.init_array)) \
710 #define KERNEL_CTORS()
713 /* init and exit section handling */
715 KEEP(*(SORT(___kentry+*))) \
716 *(.init.data init.data.*) \
717 MEM_DISCARD(init.data*) \
720 *(.init.rodata .init.rodata.*) \
724 ERROR_INJECT_WHITELIST() \
725 MEM_DISCARD(init.rodata) \
727 RESERVEDMEM_OF_TABLES() \
729 CPU_METHOD_OF_TABLES() \
730 CPUIDLE_METHOD_OF_TABLES() \
732 IRQCHIP_OF_MATCH_TABLE() \
733 ACPI_PROBE_TABLE(irqchip) \
734 ACPI_PROBE_TABLE(timer) \
735 THERMAL_TABLE(governor) \
742 *(.init.text .init.text.*) \
744 MEM_DISCARD(init.text*)
747 *(.exit.data .exit.data.*) \
748 *(.fini_array .fini_array.*) \
750 MEM_DISCARD(exit.data*) \
751 MEM_DISCARD(exit.rodata*)
756 MEM_DISCARD(exit.text)
762 * bss (Block Started by Symbol) - uninitialized data
763 * zeroed during startup
765 #define SBSS(sbss_align) \
766 . = ALIGN(sbss_align); \
767 .sbss : AT(ADDR(.sbss) - LOAD_OFFSET) { \
774 * Allow archectures to redefine BSS_FIRST_SECTIONS to add extra
775 * sections to the front of bss.
777 #ifndef BSS_FIRST_SECTIONS
778 #define BSS_FIRST_SECTIONS
781 #define BSS(bss_align) \
782 . = ALIGN(bss_align); \
783 .bss : AT(ADDR(.bss) - LOAD_OFFSET) { \
785 . = ALIGN(PAGE_SIZE); \
786 *(.bss..page_aligned) \
787 . = ALIGN(PAGE_SIZE); \
794 * DWARF debug sections.
795 * Symbols in the DWARF debugging sections are relative to
796 * the beginning of the section so we begin them at 0.
798 #define DWARF_DEBUG \
800 .debug 0 : { *(.debug) } \
801 .line 0 : { *(.line) } \
802 /* GNU DWARF 1 extensions */ \
803 .debug_srcinfo 0 : { *(.debug_srcinfo) } \
804 .debug_sfnames 0 : { *(.debug_sfnames) } \
805 /* DWARF 1.1 and DWARF 2 */ \
806 .debug_aranges 0 : { *(.debug_aranges) } \
807 .debug_pubnames 0 : { *(.debug_pubnames) } \
809 .debug_info 0 : { *(.debug_info \
810 .gnu.linkonce.wi.*) } \
811 .debug_abbrev 0 : { *(.debug_abbrev) } \
812 .debug_line 0 : { *(.debug_line) } \
813 .debug_frame 0 : { *(.debug_frame) } \
814 .debug_str 0 : { *(.debug_str) } \
815 .debug_loc 0 : { *(.debug_loc) } \
816 .debug_macinfo 0 : { *(.debug_macinfo) } \
817 .debug_pubtypes 0 : { *(.debug_pubtypes) } \
819 .debug_ranges 0 : { *(.debug_ranges) } \
820 /* SGI/MIPS DWARF 2 extensions */ \
821 .debug_weaknames 0 : { *(.debug_weaknames) } \
822 .debug_funcnames 0 : { *(.debug_funcnames) } \
823 .debug_typenames 0 : { *(.debug_typenames) } \
824 .debug_varnames 0 : { *(.debug_varnames) } \
825 /* GNU DWARF 2 extensions */ \
826 .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } \
827 .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } \
829 .debug_types 0 : { *(.debug_types) } \
831 .debug_macro 0 : { *(.debug_macro) } \
832 .debug_addr 0 : { *(.debug_addr) }
834 /* Stabs debugging sections. */
835 #define STABS_DEBUG \
836 .stab 0 : { *(.stab) } \
837 .stabstr 0 : { *(.stabstr) } \
838 .stab.excl 0 : { *(.stab.excl) } \
839 .stab.exclstr 0 : { *(.stab.exclstr) } \
840 .stab.index 0 : { *(.stab.index) } \
841 .stab.indexstr 0 : { *(.stab.indexstr) }
843 /* Required sections not related to debugging. */
844 #define ELF_DETAILS \
845 .comment 0 : { *(.comment) } \
846 .symtab 0 : { *(.symtab) } \
847 .strtab 0 : { *(.strtab) } \
848 .shstrtab 0 : { *(.shstrtab) }
850 #ifdef CONFIG_GENERIC_BUG
853 __bug_table : AT(ADDR(__bug_table) - LOAD_OFFSET) { \
854 __start___bug_table = .; \
855 KEEP(*(__bug_table)) \
856 __stop___bug_table = .; \
862 #ifdef CONFIG_UNWINDER_ORC
863 #define ORC_UNWIND_TABLE \
865 .orc_unwind_ip : AT(ADDR(.orc_unwind_ip) - LOAD_OFFSET) { \
866 __start_orc_unwind_ip = .; \
867 KEEP(*(.orc_unwind_ip)) \
868 __stop_orc_unwind_ip = .; \
871 .orc_unwind : AT(ADDR(.orc_unwind) - LOAD_OFFSET) { \
872 __start_orc_unwind = .; \
873 KEEP(*(.orc_unwind)) \
874 __stop_orc_unwind = .; \
877 .orc_lookup : AT(ADDR(.orc_lookup) - LOAD_OFFSET) { \
879 . += (((SIZEOF(.text) + LOOKUP_BLOCK_SIZE - 1) / \
880 LOOKUP_BLOCK_SIZE) + 1) * 4; \
881 orc_lookup_end = .; \
884 #define ORC_UNWIND_TABLE
887 #ifdef CONFIG_PM_TRACE
890 .tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) { \
891 __tracedata_start = .; \
892 KEEP(*(.tracedata)) \
893 __tracedata_end = .; \
900 .notes : AT(ADDR(.notes) - LOAD_OFFSET) { \
905 NOTES_HEADERS_RESTORE
907 #define INIT_SETUP(initsetup_align) \
908 . = ALIGN(initsetup_align); \
910 KEEP(*(.init.setup)) \
913 #define INIT_CALLS_LEVEL(level) \
914 __initcall##level##_start = .; \
915 KEEP(*(.initcall##level##.init)) \
916 KEEP(*(.initcall##level##s.init)) \
919 __initcall_start = .; \
920 KEEP(*(.initcallearly.init)) \
921 INIT_CALLS_LEVEL(0) \
922 INIT_CALLS_LEVEL(1) \
923 INIT_CALLS_LEVEL(2) \
924 INIT_CALLS_LEVEL(3) \
925 INIT_CALLS_LEVEL(4) \
926 INIT_CALLS_LEVEL(5) \
927 INIT_CALLS_LEVEL(rootfs) \
928 INIT_CALLS_LEVEL(6) \
929 INIT_CALLS_LEVEL(7) \
932 #define CON_INITCALL \
933 __con_initcall_start = .; \
934 KEEP(*(.con_initcall.init)) \
935 __con_initcall_end = .;
937 /* Alignment must be consistent with (kunit_suite *) in include/kunit/test.h */
938 #define KUNIT_TABLE() \
940 __kunit_suites_start = .; \
941 KEEP(*(.kunit_test_suites)) \
942 __kunit_suites_end = .;
944 #ifdef CONFIG_BLK_DEV_INITRD
945 #define INIT_RAM_FS \
947 __initramfs_start = .; \
948 KEEP(*(.init.ramfs)) \
950 KEEP(*(.init.ramfs.info))
956 * Memory encryption operates on a page basis. Since we need to clear
957 * the memory encryption mask for this section, it needs to be aligned
958 * on a page boundary and be a page-size multiple in length.
960 * Note: We use a separate section so that only this section gets
961 * decrypted to avoid exposing more than we wish.
963 #ifdef CONFIG_AMD_MEM_ENCRYPT
964 #define PERCPU_DECRYPTED_SECTION \
965 . = ALIGN(PAGE_SIZE); \
966 *(.data..percpu..decrypted) \
967 . = ALIGN(PAGE_SIZE);
969 #define PERCPU_DECRYPTED_SECTION
974 * Default discarded sections.
976 * Some archs want to discard exit text/data at runtime rather than
977 * link time due to cross-section references such as alt instructions,
978 * bug table, eh_frame, etc. DISCARDS must be the last of output
979 * section definitions so that such archs put those in earlier section
982 #ifdef RUNTIME_DISCARD_EXIT
983 #define EXIT_DISCARDS
985 #define EXIT_DISCARDS \
991 * Clang's -fsanitize=kernel-address and -fsanitize=thread produce
992 * unwanted sections (.eh_frame and .init_array.*), but
993 * CONFIG_CONSTRUCTORS wants to keep any .init_array.* sections.
994 * https://bugs.llvm.org/show_bug.cgi?id=46478
996 #if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KCSAN)
997 # ifdef CONFIG_CONSTRUCTORS
998 # define SANITIZER_DISCARDS \
1001 # define SANITIZER_DISCARDS \
1002 *(.init_array) *(.init_array.*) \
1006 # define SANITIZER_DISCARDS
1009 #define COMMON_DISCARDS \
1010 SANITIZER_DISCARDS \
1014 /* ld.bfd warns about .gnu.version* even when not emitted */ \
1025 * PERCPU_INPUT - the percpu input sections
1026 * @cacheline: cacheline size
1028 * The core percpu section names and core symbols which do not rely
1029 * directly upon load addresses.
1031 * @cacheline is used to align subsections to avoid false cacheline
1032 * sharing between subsections for different purposes.
1034 #define PERCPU_INPUT(cacheline) \
1035 __per_cpu_start = .; \
1036 *(.data..percpu..first) \
1037 . = ALIGN(PAGE_SIZE); \
1038 *(.data..percpu..page_aligned) \
1039 . = ALIGN(cacheline); \
1040 *(.data..percpu..read_mostly) \
1041 . = ALIGN(cacheline); \
1043 *(.data..percpu..shared_aligned) \
1044 PERCPU_DECRYPTED_SECTION \
1048 * PERCPU_VADDR - define output section for percpu area
1049 * @cacheline: cacheline size
1050 * @vaddr: explicit base address (optional)
1051 * @phdr: destination PHDR (optional)
1053 * Macro which expands to output section for percpu area.
1055 * @cacheline is used to align subsections to avoid false cacheline
1056 * sharing between subsections for different purposes.
1058 * If @vaddr is not blank, it specifies explicit base address and all
1059 * percpu symbols will be offset from the given address. If blank,
1060 * @vaddr always equals @laddr + LOAD_OFFSET.
1062 * @phdr defines the output PHDR to use if not blank. Be warned that
1063 * output PHDR is sticky. If @phdr is specified, the next output
1064 * section in the linker script will go there too. @phdr should have
1067 * Note that this macros defines __per_cpu_load as an absolute symbol.
1068 * If there is no need to put the percpu section at a predetermined
1069 * address, use PERCPU_SECTION.
1071 #define PERCPU_VADDR(cacheline, vaddr, phdr) \
1072 __per_cpu_load = .; \
1073 .data..percpu vaddr : AT(__per_cpu_load - LOAD_OFFSET) { \
1074 PERCPU_INPUT(cacheline) \
1076 . = __per_cpu_load + SIZEOF(.data..percpu);
1079 * PERCPU_SECTION - define output section for percpu area, simple version
1080 * @cacheline: cacheline size
1082 * Align to PAGE_SIZE and outputs output section for percpu area. This
1083 * macro doesn't manipulate @vaddr or @phdr and __per_cpu_load and
1084 * __per_cpu_start will be identical.
1086 * This macro is equivalent to ALIGN(PAGE_SIZE); PERCPU_VADDR(@cacheline,,)
1087 * except that __per_cpu_load is defined as a relative symbol against
1088 * .data..percpu which is required for relocatable x86_32 configuration.
1090 #define PERCPU_SECTION(cacheline) \
1091 . = ALIGN(PAGE_SIZE); \
1092 .data..percpu : AT(ADDR(.data..percpu) - LOAD_OFFSET) { \
1093 __per_cpu_load = .; \
1094 PERCPU_INPUT(cacheline) \
1099 * Definition of the high level *_SECTION macros
1100 * They will fit only a subset of the architectures
1106 * All sections are combined in a single .data section.
1107 * The sections following CONSTRUCTORS are arranged so their
1108 * typical alignment matches.
1109 * A cacheline is typical/always less than a PAGE_SIZE so
1110 * the sections that has this restriction (or similar)
1111 * is located before the ones requiring PAGE_SIZE alignment.
1112 * NOSAVE_DATA starts and ends with a PAGE_SIZE alignment which
1113 * matches the requirement of PAGE_ALIGNED_DATA.
1115 * use 0 as page_align if page_aligned data is not used */
1116 #define RW_DATA(cacheline, pagealigned, inittask) \
1117 . = ALIGN(PAGE_SIZE); \
1118 .data : AT(ADDR(.data) - LOAD_OFFSET) { \
1119 INIT_TASK_DATA(inittask) \
1121 PAGE_ALIGNED_DATA(pagealigned) \
1122 CACHELINE_ALIGNED_DATA(cacheline) \
1123 READ_MOSTLY_DATA(cacheline) \
1129 #define INIT_TEXT_SECTION(inittext_align) \
1130 . = ALIGN(inittext_align); \
1131 .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) { \
1137 #define INIT_DATA_SECTION(initsetup_align) \
1138 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) { \
1140 INIT_SETUP(initsetup_align) \
1146 #define BSS_SECTION(sbss_align, bss_align, stop_align) \
1147 . = ALIGN(sbss_align); \
1151 . = ALIGN(stop_align); \