blob: 39da8d8b561d30b2b1f9e5d97ffba66528a6b736 [file] [log] [blame]
Sam Ravnborgef53dae2009-06-07 20:46:37 +02001/*
2 * Helper macros to support writing architecture specific
3 * linker scripts.
4 *
5 * A minimal linker scripts has following content:
6 * [This is a sample, architectures may have special requiriements]
7 *
8 * OUTPUT_FORMAT(...)
9 * OUTPUT_ARCH(...)
10 * ENTRY(...)
11 * SECTIONS
12 * {
13 * . = START;
14 * __init_begin = .;
Sam Ravnborg7923f902009-06-14 22:10:41 +020015 * HEAD_TEXT_SECTION
Sam Ravnborgef53dae2009-06-07 20:46:37 +020016 * INIT_TEXT_SECTION(PAGE_SIZE)
17 * INIT_DATA_SECTION(...)
Tejun Heo0415b00d12011-03-24 18:50:09 +010018 * PERCPU_SECTION(CACHELINE_SIZE)
Sam Ravnborgef53dae2009-06-07 20:46:37 +020019 * __init_end = .;
20 *
21 * _stext = .;
22 * TEXT_SECTION = 0
23 * _etext = .;
24 *
25 * _sdata = .;
Kees Cook93240b32019-10-29 14:13:34 -070026 * RO_DATA(PAGE_SIZE)
Kees Cookc9174042019-10-29 14:13:35 -070027 * RW_DATA(...)
Sam Ravnborgef53dae2009-06-07 20:46:37 +020028 * _edata = .;
29 *
30 * EXCEPTION_TABLE(...)
Sam Ravnborgef53dae2009-06-07 20:46:37 +020031 *
Tim Abbott04e448d2009-07-12 18:23:33 -040032 * BSS_SECTION(0, 0, 0)
Sam Ravnborgef53dae2009-06-07 20:46:37 +020033 * _end = .;
34 *
Sam Ravnborgef53dae2009-06-07 20:46:37 +020035 * STABS_DEBUG
36 * DWARF_DEBUG
Tejun Heo023bf6f2009-07-09 11:27:40 +090037 *
38 * DISCARDS // must be the last
Sam Ravnborgef53dae2009-06-07 20:46:37 +020039 * }
40 *
41 * [__init_begin, __init_end] is the init section that may be freed after init
Yalin Wang562c85c2014-09-26 03:30:59 +010042 * // __init_begin and __init_end should be page aligned, so that we can
43 * // free the whole .init memory
Sam Ravnborgef53dae2009-06-07 20:46:37 +020044 * [_stext, _etext] is the text section
45 * [_sdata, _edata] is the data section
46 *
47 * Some of the included output section have their own set of constants.
48 * Examples are: [__initramfs_start, __initramfs_end] for initramfs and
49 * [__nosave_begin, __nosave_end] for the nosave data
50 */
Tim Abbottc80d4712009-04-25 22:10:56 -040051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#ifndef LOAD_OFFSET
53#define LOAD_OFFSET 0
54#endif
55
Kees Cook441110a2019-10-29 14:13:30 -070056/*
57 * Only some architectures want to have the .notes segment visible in
Kees Cookfbe6a8e2019-10-29 14:13:31 -070058 * a separate PT_NOTE ELF Program Header. When this happens, it needs
59 * to be visible in both the kernel text's PT_LOAD and the PT_NOTE
60 * Program Headers. In this case, though, the PT_LOAD needs to be made
61 * the default again so that all the following sections don't also end
62 * up in the PT_NOTE Program Header.
Kees Cook441110a2019-10-29 14:13:30 -070063 */
64#ifdef EMITS_PT_NOTE
65#define NOTES_HEADERS :text :note
Kees Cookfbe6a8e2019-10-29 14:13:31 -070066#define NOTES_HEADERS_RESTORE __restore_ph : { *(.__restore_ph) } :text
67#else
68#define NOTES_HEADERS
69#define NOTES_HEADERS_RESTORE
Kees Cook441110a2019-10-29 14:13:30 -070070#endif
71
Kees Cookb8c2f772019-10-29 14:13:36 -070072/*
73 * Some architectures have non-executable read-only exception tables.
74 * They can be added to the RO_DATA segment by specifying their desired
75 * alignment.
76 */
77#ifdef RO_EXCEPTION_TABLE_ALIGN
78#define RO_EXCEPTION_TABLE EXCEPTION_TABLE(RO_EXCEPTION_TABLE_ALIGN)
79#else
80#define RO_EXCEPTION_TABLE
81#endif
82
Sam Ravnborg6d30e3a2005-07-14 20:15:44 +000083/* Align . to a 8 byte boundary equals to maximum function alignment. */
84#define ALIGN_FUNCTION() . = ALIGN(8)
85
Sam Ravnborg07fca0e2010-07-10 08:35:00 +020086/*
Nicholas Piggincb874812017-07-26 22:46:27 +100087 * LD_DEAD_CODE_DATA_ELIMINATION option enables -fdata-sections, which
88 * generates .data.identifier sections, which need to be pulled in with
89 * .data. We don't want to pull in .data..other sections, which Linux
90 * has defined. Same for text and bss.
Nicholas Piggin266ff2a82018-05-09 22:59:58 +100091 *
92 * RODATA_MAIN is not used because existing code already defines .rodata.x
93 * sections to be brought in with rodata.
Nicholas Piggincb874812017-07-26 22:46:27 +100094 */
95#ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
96#define TEXT_MAIN .text .text.[0-9a-zA-Z_]*
Peter Oberparleiter52c8ee52018-09-13 13:00:00 +020097#define DATA_MAIN .data .data.[0-9a-zA-Z_]* .data..LPBX*
Nicholas Piggin266ff2a82018-05-09 22:59:58 +100098#define SDATA_MAIN .sdata .sdata.[0-9a-zA-Z_]*
99#define RODATA_MAIN .rodata .rodata.[0-9a-zA-Z_]*
Nicholas Piggincb874812017-07-26 22:46:27 +1000100#define BSS_MAIN .bss .bss.[0-9a-zA-Z_]*
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000101#define SBSS_MAIN .sbss .sbss.[0-9a-zA-Z_]*
Nicholas Piggincb874812017-07-26 22:46:27 +1000102#else
103#define TEXT_MAIN .text
104#define DATA_MAIN .data
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000105#define SDATA_MAIN .sdata
106#define RODATA_MAIN .rodata
Nicholas Piggincb874812017-07-26 22:46:27 +1000107#define BSS_MAIN .bss
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000108#define SBSS_MAIN .sbss
Nicholas Piggincb874812017-07-26 22:46:27 +1000109#endif
110
111/*
Sam Ravnborg07fca0e2010-07-10 08:35:00 +0200112 * Align to a 32 byte boundary equal to the
113 * alignment gcc 4.5 uses for a struct
114 */
Dirk Brandewieaab94332010-12-22 11:57:26 -0800115#define STRUCT_ALIGNMENT 32
116#define STRUCT_ALIGN() . = ALIGN(STRUCT_ALIGNMENT)
Sam Ravnborg07fca0e2010-07-10 08:35:00 +0200117
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100118/* The actual configuration determine if the init/exit sections
119 * are handled as text/data or they can be discarded (which
120 * often happens at runtime)
121 */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100122#ifdef CONFIG_HOTPLUG_CPU
123#define CPU_KEEP(sec) *(.cpu##sec)
124#define CPU_DISCARD(sec)
125#else
126#define CPU_KEEP(sec)
127#define CPU_DISCARD(sec) *(.cpu##sec)
128#endif
129
Adrian Bunk1a3fb6d2008-01-24 22:20:18 +0100130#if defined(CONFIG_MEMORY_HOTPLUG)
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100131#define MEM_KEEP(sec) *(.mem##sec)
132#define MEM_DISCARD(sec)
133#else
134#define MEM_KEEP(sec)
135#define MEM_DISCARD(sec) *(.mem##sec)
136#endif
137
Steven Rostedt8da38212008-08-14 15:45:07 -0400138#ifdef CONFIG_FTRACE_MCOUNT_RECORD
Mark Rutlanda1326b172019-10-16 18:17:11 +0100139/*
140 * The ftrace call sites are logged to a section whose name depends on the
141 * compiler option used. A given kernel image will only use one, AKA
142 * FTRACE_CALLSITE_SECTION. We capture all of them here to avoid header
143 * dependencies for FTRACE_CALLSITE_SECTION's definition.
Linus Torvalds95f1fa92019-11-27 11:42:01 -0800144 *
Steven Rostedt (VMware)46f94692019-11-18 10:41:29 -0500145 * Need to also make ftrace_stub_graph point to ftrace_stub
Steven Rostedt (VMware)b83b43f2019-10-15 09:00:55 -0400146 * so that the same stub location may have different protocols
147 * and not mess up with C verifiers.
Mark Rutlanda1326b172019-10-16 18:17:11 +0100148 */
John Reiser4b3b4c52009-07-27 11:23:50 -0700149#define MCOUNT_REC() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900150 __start_mcount_loc = .; \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000151 KEEP(*(__mcount_loc)) \
Mark Rutlanda1326b172019-10-16 18:17:11 +0100152 KEEP(*(__patchable_function_entries)) \
Steven Rostedt (VMware)b83b43f2019-10-15 09:00:55 -0400153 __stop_mcount_loc = .; \
Steven Rostedt (VMware)46f94692019-11-18 10:41:29 -0500154 ftrace_stub_graph = ftrace_stub;
Steven Rostedt8da38212008-08-14 15:45:07 -0400155#else
Steven Rostedt (VMware)b83b43f2019-10-15 09:00:55 -0400156# ifdef CONFIG_FUNCTION_TRACER
Steven Rostedt (VMware)46f94692019-11-18 10:41:29 -0500157# define MCOUNT_REC() ftrace_stub_graph = ftrace_stub;
Steven Rostedt (VMware)b83b43f2019-10-15 09:00:55 -0400158# else
159# define MCOUNT_REC()
160# endif
Steven Rostedt8da38212008-08-14 15:45:07 -0400161#endif
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100162
Steven Rostedt2ed84ee2008-11-12 15:24:24 -0500163#ifdef CONFIG_TRACE_BRANCH_PROFILING
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900164#define LIKELY_PROFILE() __start_annotated_branch_profile = .; \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000165 KEEP(*(_ftrace_annotated_branch)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900166 __stop_annotated_branch_profile = .;
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500167#else
168#define LIKELY_PROFILE()
169#endif
170
Steven Rostedt2bcd5212008-11-21 01:30:54 -0500171#ifdef CONFIG_PROFILE_ALL_BRANCHES
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900172#define BRANCH_PROFILE() __start_branch_profile = .; \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000173 KEEP(*(_ftrace_branch)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900174 __stop_branch_profile = .;
Steven Rostedt2bcd5212008-11-21 01:30:54 -0500175#else
176#define BRANCH_PROFILE()
177#endif
178
Masami Hiramatsu376e2422014-04-17 17:17:05 +0900179#ifdef CONFIG_KPROBES
Vineet Gupta69902c72014-05-01 10:56:44 +0530180#define KPROBE_BLACKLIST() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900181 __start_kprobe_blacklist = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100182 KEEP(*(_kprobe_blacklist)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900183 __stop_kprobe_blacklist = .;
Masami Hiramatsu376e2422014-04-17 17:17:05 +0900184#else
185#define KPROBE_BLACKLIST()
186#endif
187
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900188#ifdef CONFIG_FUNCTION_ERROR_INJECTION
Masami Hiramatsu663faf92018-01-13 02:55:33 +0900189#define ERROR_INJECT_WHITELIST() STRUCT_ALIGN(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900190 __start_error_injection_whitelist = .; \
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900191 KEEP(*(_error_injection_whitelist)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900192 __stop_error_injection_whitelist = .;
Josef Bacik92ace992017-12-11 11:36:46 -0500193#else
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900194#define ERROR_INJECT_WHITELIST()
Josef Bacik92ace992017-12-11 11:36:46 -0500195#endif
196
Tom Zanussi5f77a882009-04-08 03:14:01 -0500197#ifdef CONFIG_EVENT_TRACING
Steven Rostedte4a9ea52011-01-27 09:15:30 -0500198#define FTRACE_EVENTS() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900199 __start_ftrace_events = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100200 KEEP(*(_ftrace_events)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900201 __stop_ftrace_events = .; \
202 __start_ftrace_eval_maps = .; \
Jeremy Linton02fd7f62017-05-31 16:56:42 -0500203 KEEP(*(_ftrace_eval_map)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900204 __stop_ftrace_eval_maps = .;
Steven Rostedtb77e38a2009-02-24 10:21:36 -0500205#else
206#define FTRACE_EVENTS()
207#endif
208
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100209#ifdef CONFIG_TRACING
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900210#define TRACE_PRINTKS() __start___trace_bprintk_fmt = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100211 KEEP(*(__trace_printk_fmt)) /* Trace_printk fmt' pointer */ \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900212 __stop___trace_bprintk_fmt = .;
213#define TRACEPOINT_STR() __start___tracepoint_str = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100214 KEEP(*(__tracepoint_str)) /* Trace_printk fmt' pointer */ \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900215 __stop___tracepoint_str = .;
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100216#else
217#define TRACE_PRINTKS()
Steven Rostedt (Red Hat)102c9322013-07-12 17:07:27 -0400218#define TRACEPOINT_STR()
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100219#endif
220
Frederic Weisbeckerbed1ffc2009-03-13 15:42:11 +0100221#ifdef CONFIG_FTRACE_SYSCALLS
Steven Rostedt3d56e332011-02-02 17:06:09 -0500222#define TRACE_SYSCALLS() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900223 __start_syscalls_metadata = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100224 KEEP(*(__syscalls_metadata)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900225 __stop_syscalls_metadata = .;
Frederic Weisbeckerbed1ffc2009-03-13 15:42:11 +0100226#else
227#define TRACE_SYSCALLS()
228#endif
229
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700230#ifdef CONFIG_BPF_EVENTS
231#define BPF_RAW_TP() STRUCT_ALIGN(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900232 __start__bpf_raw_tp = .; \
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700233 KEEP(*(__bpf_raw_tp_map)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900234 __stop__bpf_raw_tp = .;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700235#else
236#define BPF_RAW_TP()
237#endif
238
Peter Hurley470ca0d2015-03-09 16:27:21 -0400239#ifdef CONFIG_SERIAL_EARLYCON
Daniel Kurtzdd709e72018-04-06 17:21:53 -0600240#define EARLYCON_TABLE() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900241 __earlycon_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100242 KEEP(*(__earlycon_table)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900243 __earlycon_table_end = .;
Peter Hurley470ca0d2015-03-09 16:27:21 -0400244#else
245#define EARLYCON_TABLE()
246#endif
Dirk Brandewieaab94332010-12-22 11:57:26 -0800247
Kees Cook3ac946d2018-10-10 17:18:22 -0700248#ifdef CONFIG_SECURITY
249#define LSM_TABLE() . = ALIGN(8); \
250 __start_lsm_info = .; \
251 KEEP(*(.lsm_info.init)) \
252 __end_lsm_info = .;
Matthew Garrette6b1db92019-08-19 17:17:37 -0700253#define EARLY_LSM_TABLE() . = ALIGN(8); \
254 __start_early_lsm_info = .; \
255 KEEP(*(.early_lsm_info.init)) \
256 __end_early_lsm_info = .;
Kees Cook3ac946d2018-10-10 17:18:22 -0700257#else
258#define LSM_TABLE()
Matthew Garrette6b1db92019-08-19 17:17:37 -0700259#define EARLY_LSM_TABLE()
Kees Cook3ac946d2018-10-10 17:18:22 -0700260#endif
261
Rob Herring06309282014-03-24 16:59:20 -0500262#define ___OF_TABLE(cfg, name) _OF_TABLE_##cfg(name)
263#define __OF_TABLE(cfg, name) ___OF_TABLE(cfg, name)
Masahiro Yamada5ee02af2016-06-14 14:58:58 +0900264#define OF_TABLE(cfg, name) __OF_TABLE(IS_ENABLED(cfg), name)
Rob Herring06309282014-03-24 16:59:20 -0500265#define _OF_TABLE_0(name)
266#define _OF_TABLE_1(name) \
Thomas Petazzonif6e916b2012-11-20 23:00:52 +0100267 . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900268 __##name##_of_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100269 KEEP(*(__##name##_of_table)) \
270 KEEP(*(__##name##_of_table_end))
Dirk Brandewieaab94332010-12-22 11:57:26 -0800271
Daniel Lezcanobb0eb052017-05-26 19:34:11 +0200272#define TIMER_OF_TABLES() OF_TABLE(CONFIG_TIMER_OF, timer)
Rob Herring06309282014-03-24 16:59:20 -0500273#define IRQCHIP_OF_MATCH_TABLE() OF_TABLE(CONFIG_IRQCHIP, irqchip)
274#define CLK_OF_TABLES() OF_TABLE(CONFIG_COMMON_CLK, clk)
275#define RESERVEDMEM_OF_TABLES() OF_TABLE(CONFIG_OF_RESERVED_MEM, reservedmem)
276#define CPU_METHOD_OF_TABLES() OF_TABLE(CONFIG_SMP, cpu_method)
Daniel Lezcano449e056c2015-02-02 16:32:45 +0100277#define CPUIDLE_METHOD_OF_TABLES() OF_TABLE(CONFIG_CPU_IDLE, cpuidle_method)
Stephen Boyd6c3ff8b2013-10-30 18:21:09 -0700278
Marc Zyngiere647b532015-09-28 15:49:12 +0100279#ifdef CONFIG_ACPI
280#define ACPI_PROBE_TABLE(name) \
281 . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900282 __##name##_acpi_probe_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100283 KEEP(*(__##name##_acpi_probe_table)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900284 __##name##_acpi_probe_table_end = .;
Marc Zyngiere647b532015-09-28 15:49:12 +0100285#else
286#define ACPI_PROBE_TABLE(name)
287#endif
288
Daniel Lezcano980af752019-06-12 22:13:24 +0200289#ifdef CONFIG_THERMAL
290#define THERMAL_TABLE(name) \
291 . = ALIGN(8); \
292 __##name##_thermal_table = .; \
293 KEEP(*(__##name##_thermal_table)) \
294 __##name##_thermal_table_end = .;
295#else
296#define THERMAL_TABLE(name)
297#endif
298
Dirk Brandewieaab94332010-12-22 11:57:26 -0800299#define KERNEL_DTB() \
300 STRUCT_ALIGN(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900301 __dtb_start = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100302 KEEP(*(.dtb.init.rodata)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900303 __dtb_end = .;
Dirk Brandewieaab94332010-12-22 11:57:26 -0800304
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000305/*
306 * .data section
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000307 */
Sam Ravnborgca967252007-05-17 13:38:44 +0200308#define DATA_DATA \
Arnd Bergmann129f6c42017-07-21 22:26:25 +0200309 *(.xiptext) \
Nicholas Piggincb874812017-07-26 22:46:27 +1000310 *(DATA_MAIN) \
Sam Ravnborg312b1482008-01-28 20:21:15 +0100311 *(.ref.data) \
Mike Frysingerd356c0b2010-10-26 14:22:29 -0700312 *(.data..shared_aligned) /* percpu related */ \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000313 MEM_KEEP(init.data*) \
314 MEM_KEEP(exit.data*) \
Jan Beulich7ccaba52012-03-23 15:01:52 -0700315 *(.data.unlikely) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900316 __start_once = .; \
Andi Kleenb1fca272017-11-17 15:27:03 -0800317 *(.data.once) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900318 __end_once = .; \
Mathieu Desnoyers65498642011-01-26 17:26:22 -0500319 STRUCT_ALIGN(); \
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400320 *(__tracepoints) \
Jason Barone9d376f2009-02-05 11:51:38 -0500321 /* implement dynamic printk debug */ \
322 . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900323 __start___verbose = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100324 KEEP(*(__verbose)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900325 __stop___verbose = .; \
Steven Rostedt2bcd5212008-11-21 01:30:54 -0500326 LIKELY_PROFILE() \
Steven Rostedtb77e38a2009-02-24 10:21:36 -0500327 BRANCH_PROFILE() \
Steven Rostedt (Red Hat)102c9322013-07-12 17:07:27 -0400328 TRACE_PRINTKS() \
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700329 BPF_RAW_TP() \
Steven Rostedt (Red Hat)102c9322013-07-12 17:07:27 -0400330 TRACEPOINT_STR()
Sam Ravnborgca967252007-05-17 13:38:44 +0200331
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200332/*
333 * Data section helpers
334 */
335#define NOSAVE_DATA \
336 . = ALIGN(PAGE_SIZE); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900337 __nosave_begin = .; \
Denys Vlasenko07b3bb12010-02-20 01:03:52 +0100338 *(.data..nosave) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200339 . = ALIGN(PAGE_SIZE); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900340 __nosave_end = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200341
342#define PAGE_ALIGNED_DATA(page_align) \
343 . = ALIGN(page_align); \
Tim Abbott75b13482010-02-20 01:03:37 +0100344 *(.data..page_aligned)
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200345
346#define READ_MOSTLY_DATA(align) \
347 . = ALIGN(align); \
Shaohua Li83697442011-01-12 16:59:38 -0800348 *(.data..read_mostly) \
349 . = ALIGN(align);
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200350
351#define CACHELINE_ALIGNED_DATA(align) \
352 . = ALIGN(align); \
Tim Abbott4af57b72010-02-20 01:03:34 +0100353 *(.data..cacheline_aligned)
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200354
Tim Abbott39a449d2009-06-23 18:53:15 -0400355#define INIT_TASK_DATA(align) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200356 . = ALIGN(align); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900357 __start_init_task = .; \
358 init_thread_union = .; \
359 init_stack = .; \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000360 KEEP(*(.data..init_task)) \
361 KEEP(*(.data..init_thread_info)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900362 . = __start_init_task + THREAD_SIZE; \
363 __end_init_task = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200364
Ard Biesheuvele8722672018-09-18 23:51:43 -0700365#define JUMP_TABLE_DATA \
366 . = ALIGN(8); \
367 __start___jump_table = .; \
368 KEEP(*(__jump_table)) \
369 __stop___jump_table = .;
370
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200371/*
Heiko Carstens32fb2fc2016-06-07 12:20:51 +0200372 * Allow architectures to handle ro_after_init data on their
373 * own by defining an empty RO_AFTER_INIT_DATA.
374 */
375#ifndef RO_AFTER_INIT_DATA
Jakub Kicinskid7c19b02016-11-10 10:46:44 -0800376#define RO_AFTER_INIT_DATA \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900377 __start_ro_after_init = .; \
Jakub Kicinskid7c19b02016-11-10 10:46:44 -0800378 *(.data..ro_after_init) \
Ard Biesheuvele8722672018-09-18 23:51:43 -0700379 JUMP_TABLE_DATA \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900380 __end_ro_after_init = .;
Heiko Carstens32fb2fc2016-06-07 12:20:51 +0200381#endif
382
383/*
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200384 * Read only Data
385 */
Kees Cook93240b32019-10-29 14:13:34 -0700386#define RO_DATA(align) \
Sam Ravnborg4096b462007-05-29 21:29:00 +0200387 . = ALIGN((align)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 .rodata : AT(ADDR(.rodata) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900389 __start_rodata = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 *(.rodata) *(.rodata.*) \
Heiko Carstens32fb2fc2016-06-07 12:20:51 +0200391 RO_AFTER_INIT_DATA /* Read only after init */ \
Mathieu Desnoyers65498642011-01-26 17:26:22 -0500392 . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900393 __start___tracepoints_ptrs = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100394 KEEP(*(__tracepoints_ptrs)) /* Tracepoints: pointer array */ \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900395 __stop___tracepoints_ptrs = .; \
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400396 *(__tracepoints_strings)/* Tracepoints: strings */ \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 } \
398 \
399 .rodata1 : AT(ADDR(.rodata1) - LOAD_OFFSET) { \
400 *(.rodata1) \
401 } \
402 \
403 /* PCI quirks */ \
404 .pci_fixup : AT(ADDR(.pci_fixup) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900405 __start_pci_fixups_early = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100406 KEEP(*(.pci_fixup_early)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900407 __end_pci_fixups_early = .; \
408 __start_pci_fixups_header = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100409 KEEP(*(.pci_fixup_header)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900410 __end_pci_fixups_header = .; \
411 __start_pci_fixups_final = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100412 KEEP(*(.pci_fixup_final)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900413 __end_pci_fixups_final = .; \
414 __start_pci_fixups_enable = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100415 KEEP(*(.pci_fixup_enable)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900416 __end_pci_fixups_enable = .; \
417 __start_pci_fixups_resume = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100418 KEEP(*(.pci_fixup_resume)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900419 __end_pci_fixups_resume = .; \
420 __start_pci_fixups_resume_early = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100421 KEEP(*(.pci_fixup_resume_early)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900422 __end_pci_fixups_resume_early = .; \
423 __start_pci_fixups_suspend = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100424 KEEP(*(.pci_fixup_suspend)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900425 __end_pci_fixups_suspend = .; \
426 __start_pci_fixups_suspend_late = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100427 KEEP(*(.pci_fixup_suspend_late)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900428 __end_pci_fixups_suspend_late = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 } \
430 \
David Woodhouse5658c762008-05-23 13:52:42 +0100431 /* Built-in firmware blobs */ \
432 .builtin_fw : AT(ADDR(.builtin_fw) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900433 __start_builtin_fw = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100434 KEEP(*(.builtin_fw)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900435 __end_builtin_fw = .; \
David Woodhouse5658c762008-05-23 13:52:42 +0100436 } \
437 \
Jan Beulich63687a52008-05-12 15:44:41 +0200438 TRACEDATA \
439 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* Kernel symbol table: Normal symbols */ \
441 __ksymtab : AT(ADDR(__ksymtab) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900442 __start___ksymtab = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000443 KEEP(*(SORT(___ksymtab+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900444 __stop___ksymtab = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 } \
446 \
447 /* Kernel symbol table: GPL-only symbols */ \
448 __ksymtab_gpl : AT(ADDR(__ksymtab_gpl) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900449 __start___ksymtab_gpl = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000450 KEEP(*(SORT(___ksymtab_gpl+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900451 __stop___ksymtab_gpl = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 } \
453 \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700454 /* Kernel symbol table: Normal unused symbols */ \
455 __ksymtab_unused : AT(ADDR(__ksymtab_unused) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900456 __start___ksymtab_unused = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000457 KEEP(*(SORT(___ksymtab_unused+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900458 __stop___ksymtab_unused = .; \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700459 } \
460 \
461 /* Kernel symbol table: GPL-only unused symbols */ \
462 __ksymtab_unused_gpl : AT(ADDR(__ksymtab_unused_gpl) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900463 __start___ksymtab_unused_gpl = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000464 KEEP(*(SORT(___ksymtab_unused_gpl+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900465 __stop___ksymtab_unused_gpl = .; \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700466 } \
467 \
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800468 /* Kernel symbol table: GPL-future-only symbols */ \
469 __ksymtab_gpl_future : AT(ADDR(__ksymtab_gpl_future) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900470 __start___ksymtab_gpl_future = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000471 KEEP(*(SORT(___ksymtab_gpl_future+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900472 __stop___ksymtab_gpl_future = .; \
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800473 } \
474 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 /* Kernel symbol table: Normal symbols */ \
476 __kcrctab : AT(ADDR(__kcrctab) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900477 __start___kcrctab = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000478 KEEP(*(SORT(___kcrctab+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900479 __stop___kcrctab = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 } \
481 \
482 /* Kernel symbol table: GPL-only symbols */ \
483 __kcrctab_gpl : AT(ADDR(__kcrctab_gpl) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900484 __start___kcrctab_gpl = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000485 KEEP(*(SORT(___kcrctab_gpl+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900486 __stop___kcrctab_gpl = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 } \
488 \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700489 /* Kernel symbol table: Normal unused symbols */ \
490 __kcrctab_unused : AT(ADDR(__kcrctab_unused) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900491 __start___kcrctab_unused = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000492 KEEP(*(SORT(___kcrctab_unused+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900493 __stop___kcrctab_unused = .; \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700494 } \
495 \
496 /* Kernel symbol table: GPL-only unused symbols */ \
497 __kcrctab_unused_gpl : AT(ADDR(__kcrctab_unused_gpl) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900498 __start___kcrctab_unused_gpl = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000499 KEEP(*(SORT(___kcrctab_unused_gpl+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900500 __stop___kcrctab_unused_gpl = .; \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700501 } \
502 \
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800503 /* Kernel symbol table: GPL-future-only symbols */ \
504 __kcrctab_gpl_future : AT(ADDR(__kcrctab_gpl_future) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900505 __start___kcrctab_gpl_future = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000506 KEEP(*(SORT(___kcrctab_gpl_future+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900507 __stop___kcrctab_gpl_future = .; \
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800508 } \
509 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /* Kernel symbol table: strings */ \
511 __ksymtab_strings : AT(ADDR(__ksymtab_strings) - LOAD_OFFSET) { \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100512 *(__ksymtab_strings) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 } \
514 \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100515 /* __*init sections */ \
516 __init_rodata : AT(ADDR(__init_rodata) - LOAD_OFFSET) { \
Sam Ravnborg312b1482008-01-28 20:21:15 +0100517 *(.ref.rodata) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100518 MEM_KEEP(init.rodata) \
519 MEM_KEEP(exit.rodata) \
520 } \
521 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* Built-in module parameters. */ \
523 __param : AT(ADDR(__param) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900524 __start___param = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100525 KEEP(*(__param)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900526 __stop___param = .; \
Dmitry Torokhove94965e2010-12-15 14:00:19 -0800527 } \
528 \
529 /* Built-in module versions. */ \
530 __modver : AT(ADDR(__modver) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900531 __start___modver = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100532 KEEP(*(__modver)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900533 __stop___modver = .; \
Marcelo Tosatti7583ddf2006-09-27 01:51:02 -0700534 } \
Kees Cookeaf93702019-10-29 14:13:32 -0700535 \
Kees Cookb8c2f772019-10-29 14:13:36 -0700536 RO_EXCEPTION_TABLE \
Kees Cookeaf93702019-10-29 14:13:32 -0700537 NOTES \
Fangrui Song90ceddc2020-03-18 15:27:46 -0700538 BTF \
Kees Cookeaf93702019-10-29 14:13:32 -0700539 \
540 . = ALIGN((align)); \
541 __end_rodata = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Nicholas Piggincb874812017-07-26 22:46:27 +1000543/*
544 * .text section. Map to function alignment to avoid address changes
Nicholas Piggin0f4c4af2016-09-14 12:24:03 +1000545 * during second ld run in second ld pass when generating System.map
Nicholas Piggincb874812017-07-26 22:46:27 +1000546 *
547 * TEXT_MAIN here will match .text.fixup and .text.unlikely if dead
548 * code elimination is enabled, so these sections should be converted
549 * to use ".." first.
550 */
Sam Ravnborg76647092007-05-13 00:31:33 +0200551#define TEXT_TEXT \
552 ALIGN_FUNCTION(); \
Nicholas Piggincb874812017-07-26 22:46:27 +1000553 *(.text.hot TEXT_MAIN .text.fixup .text.unlikely) \
Kees Cook564c9cc2017-09-02 13:09:45 -0700554 *(.text..refcount) \
Sam Ravnborg312b1482008-01-28 20:21:15 +0100555 *(.ref.text) \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000556 MEM_KEEP(init.text*) \
557 MEM_KEEP(exit.text*) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100558
Sam Ravnborg76647092007-05-13 00:31:33 +0200559
Sam Ravnborg6d30e3a2005-07-14 20:15:44 +0000560/* sched.text is aling to function alignment to secure we have same
561 * address even at second ld pass when generating System.map */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562#define SCHED_TEXT \
Sam Ravnborg6d30e3a2005-07-14 20:15:44 +0000563 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900564 __sched_text_start = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 *(.sched.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900566 __sched_text_end = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Sam Ravnborg6d30e3a2005-07-14 20:15:44 +0000568/* spinlock.text is aling to function alignment to secure we have same
569 * address even at second ld pass when generating System.map */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570#define LOCK_TEXT \
Sam Ravnborg6d30e3a2005-07-14 20:15:44 +0000571 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900572 __lock_text_start = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 *(.spinlock.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900574 __lock_text_end = .;
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700575
Chris Metcalf6727ad92016-10-07 17:02:55 -0700576#define CPUIDLE_TEXT \
577 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900578 __cpuidle_text_start = .; \
Chris Metcalf6727ad92016-10-07 17:02:55 -0700579 *(.cpuidle.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900580 __cpuidle_text_end = .;
Chris Metcalf6727ad92016-10-07 17:02:55 -0700581
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700582#define KPROBES_TEXT \
583 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900584 __kprobes_text_start = .; \
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700585 *(.kprobes.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900586 __kprobes_text_end = .;
Paolo 'Blaisorblade' Giarrussoa7d0c212005-09-10 19:44:54 +0200587
Jiri Olsaea714542011-03-07 19:10:39 +0100588#define ENTRY_TEXT \
589 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900590 __entry_text_start = .; \
Jiri Olsaea714542011-03-07 19:10:39 +0100591 *(.entry.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900592 __entry_text_end = .;
Jiri Olsaea714542011-03-07 19:10:39 +0100593
Frederic Weisbeckera0343e82008-12-09 23:53:16 +0100594#define IRQENTRY_TEXT \
595 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900596 __irqentry_text_start = .; \
Frederic Weisbeckera0343e82008-12-09 23:53:16 +0100597 *(.irqentry.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900598 __irqentry_text_end = .;
Frederic Weisbeckera0343e82008-12-09 23:53:16 +0100599
Alexander Potapenkobe7635e2016-03-25 14:22:05 -0700600#define SOFTIRQENTRY_TEXT \
601 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900602 __softirqentry_text_start = .; \
Alexander Potapenkobe7635e2016-03-25 14:22:05 -0700603 *(.softirqentry.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900604 __softirqentry_text_end = .;
Alexander Potapenkobe7635e2016-03-25 14:22:05 -0700605
Sam Ravnborg37c514e2008-02-19 21:00:18 +0100606/* Section used for early init (in .S files) */
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000607#define HEAD_TEXT KEEP(*(.head.text))
Sam Ravnborg37c514e2008-02-19 21:00:18 +0100608
Sam Ravnborg7923f902009-06-14 22:10:41 +0200609#define HEAD_TEXT_SECTION \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200610 .head.text : AT(ADDR(.head.text) - LOAD_OFFSET) { \
611 HEAD_TEXT \
612 }
613
614/*
615 * Exception table
616 */
617#define EXCEPTION_TABLE(align) \
618 . = ALIGN(align); \
619 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900620 __start___ex_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100621 KEEP(*(__ex_table)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900622 __stop___ex_table = .; \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200623 }
624
625/*
Fangrui Song90ceddc2020-03-18 15:27:46 -0700626 * .BTF
627 */
628#ifdef CONFIG_DEBUG_INFO_BTF
629#define BTF \
630 .BTF : AT(ADDR(.BTF) - LOAD_OFFSET) { \
631 __start_BTF = .; \
632 *(.BTF) \
633 __stop_BTF = .; \
634 }
635#else
636#define BTF
637#endif
638
639/*
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200640 * Init task
641 */
Tim Abbott39a449d2009-06-23 18:53:15 -0400642#define INIT_TASK_DATA_SECTION(align) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200643 . = ALIGN(align); \
Sam Ravnborgda5e37e2010-07-13 11:39:42 +0200644 .data..init_task : AT(ADDR(.data..init_task) - LOAD_OFFSET) { \
Tim Abbott39a449d2009-06-23 18:53:15 -0400645 INIT_TASK_DATA(align) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200646 }
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100647
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700648#ifdef CONFIG_CONSTRUCTORS
Heiko Carstens2a2325e2009-06-30 11:41:13 -0700649#define KERNEL_CTORS() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900650 __ctors_start = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100651 KEEP(*(.ctors)) \
652 KEEP(*(SORT(.init_array.*))) \
653 KEEP(*(.init_array)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900654 __ctors_end = .;
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700655#else
656#define KERNEL_CTORS()
657#endif
658
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +0100659/* init and exit section handling */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100660#define INIT_DATA \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000661 KEEP(*(SORT(___kentry+*))) \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000662 *(.init.data init.data.*) \
663 MEM_DISCARD(init.data*) \
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700664 KERNEL_CTORS() \
John Reiser4b3b4c52009-07-27 11:23:50 -0700665 MCOUNT_REC() \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000666 *(.init.rodata .init.rodata.*) \
Steven Rostedte4a9ea52011-01-27 09:15:30 -0500667 FTRACE_EVENTS() \
Steven Rostedt3d56e332011-02-02 17:06:09 -0500668 TRACE_SYSCALLS() \
Masami Hiramatsu376e2422014-04-17 17:17:05 +0900669 KPROBE_BLACKLIST() \
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900670 ERROR_INJECT_WHITELIST() \
Dirk Brandewieaab94332010-12-22 11:57:26 -0800671 MEM_DISCARD(init.rodata) \
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +0530672 CLK_OF_TABLES() \
Marek Szyprowskif618c472014-02-28 14:42:49 +0100673 RESERVEDMEM_OF_TABLES() \
Daniel Lezcano2fcc112a2017-05-26 18:33:27 +0200674 TIMER_OF_TABLES() \
Stephen Boyd6c3ff8b2013-10-30 18:21:09 -0700675 CPU_METHOD_OF_TABLES() \
Daniel Lezcano449e056c2015-02-02 16:32:45 +0100676 CPUIDLE_METHOD_OF_TABLES() \
Thomas Petazzonif6e916b2012-11-20 23:00:52 +0100677 KERNEL_DTB() \
Rob Herringb0b6abd2014-03-27 08:06:16 -0500678 IRQCHIP_OF_MATCH_TABLE() \
Marc Zyngier46e589a2015-09-28 15:49:13 +0100679 ACPI_PROBE_TABLE(irqchip) \
Daniel Lezcano2fcc112a2017-05-26 18:33:27 +0200680 ACPI_PROBE_TABLE(timer) \
Daniel Lezcano980af752019-06-12 22:13:24 +0200681 THERMAL_TABLE(governor) \
Kees Cook3ac946d2018-10-10 17:18:22 -0700682 EARLYCON_TABLE() \
Matthew Garrette6b1db92019-08-19 17:17:37 -0700683 LSM_TABLE() \
684 EARLY_LSM_TABLE()
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +0100685
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100686#define INIT_TEXT \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000687 *(.init.text .init.text.*) \
Dmitry Vyukove41f5012016-07-14 12:07:29 -0700688 *(.text.startup) \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000689 MEM_DISCARD(init.text*)
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100690
691#define EXIT_DATA \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000692 *(.exit.data .exit.data.*) \
Peter Oberparleiter8dcf86c2018-09-13 12:59:59 +0200693 *(.fini_array .fini_array.*) \
694 *(.dtors .dtors.*) \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000695 MEM_DISCARD(exit.data*) \
696 MEM_DISCARD(exit.rodata*)
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100697
698#define EXIT_TEXT \
699 *(.exit.text) \
Dmitry Vyukove41f5012016-07-14 12:07:29 -0700700 *(.text.exit) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100701 MEM_DISCARD(exit.text)
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +0100702
Sam Ravnborg7923f902009-06-14 22:10:41 +0200703#define EXIT_CALL \
704 *(.exitcall.exit)
705
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200706/*
707 * bss (Block Started by Symbol) - uninitialized data
708 * zeroed during startup
709 */
Tim Abbott04e448d2009-07-12 18:23:33 -0400710#define SBSS(sbss_align) \
711 . = ALIGN(sbss_align); \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200712 .sbss : AT(ADDR(.sbss) - LOAD_OFFSET) { \
Nicholas Piggin83a092c2017-05-12 03:40:40 +1000713 *(.dynsbss) \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000714 *(SBSS_MAIN) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200715 *(.scommon) \
716 }
717
David Daneyc87728c2012-08-14 11:08:00 -0700718/*
719 * Allow archectures to redefine BSS_FIRST_SECTIONS to add extra
720 * sections to the front of bss.
721 */
722#ifndef BSS_FIRST_SECTIONS
723#define BSS_FIRST_SECTIONS
724#endif
725
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200726#define BSS(bss_align) \
727 . = ALIGN(bss_align); \
728 .bss : AT(ADDR(.bss) - LOAD_OFFSET) { \
David Daneyc87728c2012-08-14 11:08:00 -0700729 BSS_FIRST_SECTIONS \
Tim Abbott7c74df02010-02-20 01:03:38 +0100730 *(.bss..page_aligned) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200731 *(.dynbss) \
Nicholas Piggincb874812017-07-26 22:46:27 +1000732 *(BSS_MAIN) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200733 *(COMMON) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200734 }
735
736/*
737 * DWARF debug sections.
738 * Symbols in the DWARF debugging sections are relative to
739 * the beginning of the section so we begin them at 0.
740 */
Paolo 'Blaisorblade' Giarrussoa7d0c212005-09-10 19:44:54 +0200741#define DWARF_DEBUG \
742 /* DWARF 1 */ \
743 .debug 0 : { *(.debug) } \
744 .line 0 : { *(.line) } \
745 /* GNU DWARF 1 extensions */ \
746 .debug_srcinfo 0 : { *(.debug_srcinfo) } \
747 .debug_sfnames 0 : { *(.debug_sfnames) } \
748 /* DWARF 1.1 and DWARF 2 */ \
749 .debug_aranges 0 : { *(.debug_aranges) } \
750 .debug_pubnames 0 : { *(.debug_pubnames) } \
751 /* DWARF 2 */ \
752 .debug_info 0 : { *(.debug_info \
753 .gnu.linkonce.wi.*) } \
754 .debug_abbrev 0 : { *(.debug_abbrev) } \
755 .debug_line 0 : { *(.debug_line) } \
756 .debug_frame 0 : { *(.debug_frame) } \
757 .debug_str 0 : { *(.debug_str) } \
758 .debug_loc 0 : { *(.debug_loc) } \
759 .debug_macinfo 0 : { *(.debug_macinfo) } \
Nicholas Piggin83a092c2017-05-12 03:40:40 +1000760 .debug_pubtypes 0 : { *(.debug_pubtypes) } \
761 /* DWARF 3 */ \
762 .debug_ranges 0 : { *(.debug_ranges) } \
Paolo 'Blaisorblade' Giarrussoa7d0c212005-09-10 19:44:54 +0200763 /* SGI/MIPS DWARF 2 extensions */ \
764 .debug_weaknames 0 : { *(.debug_weaknames) } \
765 .debug_funcnames 0 : { *(.debug_funcnames) } \
766 .debug_typenames 0 : { *(.debug_typenames) } \
767 .debug_varnames 0 : { *(.debug_varnames) } \
Nicholas Piggin83a092c2017-05-12 03:40:40 +1000768 /* GNU DWARF 2 extensions */ \
769 .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } \
770 .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } \
771 /* DWARF 4 */ \
772 .debug_types 0 : { *(.debug_types) } \
773 /* DWARF 5 */ \
774 .debug_macro 0 : { *(.debug_macro) } \
775 .debug_addr 0 : { *(.debug_addr) }
Paolo 'Blaisorblade' Giarrussoa7d0c212005-09-10 19:44:54 +0200776
777 /* Stabs debugging sections. */
778#define STABS_DEBUG \
779 .stab 0 : { *(.stab) } \
780 .stabstr 0 : { *(.stabstr) } \
781 .stab.excl 0 : { *(.stab.excl) } \
782 .stab.exclstr 0 : { *(.stab.exclstr) } \
783 .stab.index 0 : { *(.stab.index) } \
784 .stab.indexstr 0 : { *(.stab.indexstr) } \
785 .comment 0 : { *(.comment) }
Jeremy Fitzhardinge9c9b8b32006-09-25 23:32:26 -0700786
Jan Beulich6360b1f2008-05-12 15:44:41 +0200787#ifdef CONFIG_GENERIC_BUG
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800788#define BUG_TABLE \
789 . = ALIGN(8); \
790 __bug_table : AT(ADDR(__bug_table) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900791 __start___bug_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100792 KEEP(*(__bug_table)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900793 __stop___bug_table = .; \
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800794 }
Jan Beulich6360b1f2008-05-12 15:44:41 +0200795#else
796#define BUG_TABLE
797#endif
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800798
Josh Poimboeuf11af8472017-10-13 15:02:00 -0500799#ifdef CONFIG_UNWINDER_ORC
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500800#define ORC_UNWIND_TABLE \
801 . = ALIGN(4); \
802 .orc_unwind_ip : AT(ADDR(.orc_unwind_ip) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900803 __start_orc_unwind_ip = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500804 KEEP(*(.orc_unwind_ip)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900805 __stop_orc_unwind_ip = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500806 } \
Josh Poimboeuff76a16a2019-03-06 11:07:24 -0600807 . = ALIGN(2); \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500808 .orc_unwind : AT(ADDR(.orc_unwind) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900809 __start_orc_unwind = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500810 KEEP(*(.orc_unwind)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900811 __stop_orc_unwind = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500812 } \
813 . = ALIGN(4); \
814 .orc_lookup : AT(ADDR(.orc_lookup) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900815 orc_lookup = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500816 . += (((SIZEOF(.text) + LOOKUP_BLOCK_SIZE - 1) / \
817 LOOKUP_BLOCK_SIZE) + 1) * 4; \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900818 orc_lookup_end = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500819 }
820#else
821#define ORC_UNWIND_TABLE
822#endif
823
Jan Beulich63687a52008-05-12 15:44:41 +0200824#ifdef CONFIG_PM_TRACE
825#define TRACEDATA \
826 . = ALIGN(4); \
827 .tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900828 __tracedata_start = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100829 KEEP(*(.tracedata)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900830 __tracedata_end = .; \
Jan Beulich63687a52008-05-12 15:44:41 +0200831 }
832#else
833#define TRACEDATA
834#endif
835
Jeremy Fitzhardinge9c9b8b32006-09-25 23:32:26 -0700836#define NOTES \
Roland McGrathcbe87122007-07-19 01:48:36 -0700837 .notes : AT(ADDR(.notes) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900838 __start_notes = .; \
Nicholas Piggin266ff2a82018-05-09 22:59:58 +1000839 KEEP(*(.note.*)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900840 __stop_notes = .; \
Kees Cookfbe6a8e2019-10-29 14:13:31 -0700841 } NOTES_HEADERS \
842 NOTES_HEADERS_RESTORE
Andrew Morton61ce1ef2006-10-27 11:41:44 -0700843
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200844#define INIT_SETUP(initsetup_align) \
845 . = ALIGN(initsetup_align); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900846 __setup_start = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100847 KEEP(*(.init.setup)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900848 __setup_end = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200849
Pawel Moll026cee02012-03-26 12:50:51 +1030850#define INIT_CALLS_LEVEL(level) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900851 __initcall##level##_start = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000852 KEEP(*(.initcall##level##.init)) \
853 KEEP(*(.initcall##level##s.init)) \
Andrew Morton61ce1ef2006-10-27 11:41:44 -0700854
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200855#define INIT_CALLS \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900856 __initcall_start = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000857 KEEP(*(.initcallearly.init)) \
Pawel Moll026cee02012-03-26 12:50:51 +1030858 INIT_CALLS_LEVEL(0) \
859 INIT_CALLS_LEVEL(1) \
860 INIT_CALLS_LEVEL(2) \
861 INIT_CALLS_LEVEL(3) \
862 INIT_CALLS_LEVEL(4) \
863 INIT_CALLS_LEVEL(5) \
864 INIT_CALLS_LEVEL(rootfs) \
865 INIT_CALLS_LEVEL(6) \
866 INIT_CALLS_LEVEL(7) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900867 __initcall_end = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200868
869#define CON_INITCALL \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900870 __con_initcall_start = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000871 KEEP(*(.con_initcall.init)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900872 __con_initcall_end = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200873
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200874#ifdef CONFIG_BLK_DEV_INITRD
875#define INIT_RAM_FS \
Mike Frysingerd8826262010-10-26 14:22:30 -0700876 . = ALIGN(4); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900877 __initramfs_start = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000878 KEEP(*(.init.ramfs)) \
Hendrik Bruecknerffe80182010-09-17 15:24:11 -0700879 . = ALIGN(8); \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000880 KEEP(*(.init.ramfs.info))
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200881#else
David Howellseadfe212009-06-22 15:32:31 +0100882#define INIT_RAM_FS
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200883#endif
884
Tejun Heo023bf6f2009-07-09 11:27:40 +0900885/*
Brijesh Singhac269632017-10-20 09:30:57 -0500886 * Memory encryption operates on a page basis. Since we need to clear
887 * the memory encryption mask for this section, it needs to be aligned
888 * on a page boundary and be a page-size multiple in length.
889 *
890 * Note: We use a separate section so that only this section gets
891 * decrypted to avoid exposing more than we wish.
892 */
893#ifdef CONFIG_AMD_MEM_ENCRYPT
894#define PERCPU_DECRYPTED_SECTION \
895 . = ALIGN(PAGE_SIZE); \
896 *(.data..percpu..decrypted) \
897 . = ALIGN(PAGE_SIZE);
898#else
899#define PERCPU_DECRYPTED_SECTION
900#endif
901
902
903/*
Tejun Heo023bf6f2009-07-09 11:27:40 +0900904 * Default discarded sections.
905 *
906 * Some archs want to discard exit text/data at runtime rather than
907 * link time due to cross-section references such as alt instructions,
908 * bug table, eh_frame, etc. DISCARDS must be the last of output
909 * section definitions so that such archs put those in earlier section
910 * definitions.
911 */
Tejun Heo405d9672009-06-24 15:13:38 +0900912#define DISCARDS \
913 /DISCARD/ : { \
914 EXIT_TEXT \
915 EXIT_DATA \
Tejun Heo023bf6f2009-07-09 11:27:40 +0900916 EXIT_CALL \
Tejun Heo405d9672009-06-24 15:13:38 +0900917 *(.discard) \
Jeremy Fitzhardingec7f52cd2010-07-22 22:58:01 -0700918 *(.discard.*) \
Alexey Gladkov898490c2019-04-29 18:11:14 +0200919 *(.modinfo) \
Tejun Heo405d9672009-06-24 15:13:38 +0900920 }
921
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900922/**
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200923 * PERCPU_INPUT - the percpu input sections
924 * @cacheline: cacheline size
925 *
926 * The core percpu section names and core symbols which do not rely
927 * directly upon load addresses.
928 *
929 * @cacheline is used to align subsections to avoid false cacheline
930 * sharing between subsections for different purposes.
931 */
932#define PERCPU_INPUT(cacheline) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900933 __per_cpu_start = .; \
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200934 *(.data..percpu..first) \
935 . = ALIGN(PAGE_SIZE); \
936 *(.data..percpu..page_aligned) \
937 . = ALIGN(cacheline); \
Zhengyu He330d2822014-07-01 12:11:47 -0700938 *(.data..percpu..read_mostly) \
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200939 . = ALIGN(cacheline); \
940 *(.data..percpu) \
941 *(.data..percpu..shared_aligned) \
Brijesh Singhac269632017-10-20 09:30:57 -0500942 PERCPU_DECRYPTED_SECTION \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900943 __per_cpu_end = .;
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200944
945/**
Tejun Heo6b7c38d2009-01-19 12:21:28 +0900946 * PERCPU_VADDR - define output section for percpu area
Tejun Heo19df0c22011-01-25 14:26:50 +0100947 * @cacheline: cacheline size
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900948 * @vaddr: explicit base address (optional)
949 * @phdr: destination PHDR (optional)
950 *
Tejun Heo19df0c22011-01-25 14:26:50 +0100951 * Macro which expands to output section for percpu area.
952 *
953 * @cacheline is used to align subsections to avoid false cacheline
954 * sharing between subsections for different purposes.
955 *
956 * If @vaddr is not blank, it specifies explicit base address and all
957 * percpu symbols will be offset from the given address. If blank,
958 * @vaddr always equals @laddr + LOAD_OFFSET.
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900959 *
960 * @phdr defines the output PHDR to use if not blank. Be warned that
961 * output PHDR is sticky. If @phdr is specified, the next output
962 * section in the linker script will go there too. @phdr should have
963 * a leading colon.
964 *
Tejun Heo3ac6cff2009-01-30 16:32:22 +0900965 * Note that this macros defines __per_cpu_load as an absolute symbol.
966 * If there is no need to put the percpu section at a predetermined
Tejun Heo0415b00d12011-03-24 18:50:09 +0100967 * address, use PERCPU_SECTION.
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900968 */
Tejun Heo19df0c22011-01-25 14:26:50 +0100969#define PERCPU_VADDR(cacheline, vaddr, phdr) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900970 __per_cpu_load = .; \
971 .data..percpu vaddr : AT(__per_cpu_load - LOAD_OFFSET) { \
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200972 PERCPU_INPUT(cacheline) \
Tejun Heo6b7c38d2009-01-19 12:21:28 +0900973 } phdr \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900974 . = __per_cpu_load + SIZEOF(.data..percpu);
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900975
976/**
Tejun Heo0415b00d12011-03-24 18:50:09 +0100977 * PERCPU_SECTION - define output section for percpu area, simple version
Tejun Heo19df0c22011-01-25 14:26:50 +0100978 * @cacheline: cacheline size
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900979 *
Tejun Heo0415b00d12011-03-24 18:50:09 +0100980 * Align to PAGE_SIZE and outputs output section for percpu area. This
981 * macro doesn't manipulate @vaddr or @phdr and __per_cpu_load and
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900982 * __per_cpu_start will be identical.
Tejun Heo3ac6cff2009-01-30 16:32:22 +0900983 *
Tejun Heo0415b00d12011-03-24 18:50:09 +0100984 * This macro is equivalent to ALIGN(PAGE_SIZE); PERCPU_VADDR(@cacheline,,)
Tejun Heo19df0c22011-01-25 14:26:50 +0100985 * except that __per_cpu_load is defined as a relative symbol against
986 * .data..percpu which is required for relocatable x86_32 configuration.
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900987 */
Tejun Heo0415b00d12011-03-24 18:50:09 +0100988#define PERCPU_SECTION(cacheline) \
989 . = ALIGN(PAGE_SIZE); \
Denys Vlasenko3d9a8542010-02-20 01:03:43 +0100990 .data..percpu : AT(ADDR(.data..percpu) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900991 __per_cpu_load = .; \
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200992 PERCPU_INPUT(cacheline) \
Tejun Heo3ac6cff2009-01-30 16:32:22 +0900993 }
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200994
995
996/*
997 * Definition of the high level *_SECTION macros
998 * They will fit only a subset of the architectures
999 */
1000
1001
1002/*
1003 * Writeable data.
1004 * All sections are combined in a single .data section.
1005 * The sections following CONSTRUCTORS are arranged so their
1006 * typical alignment matches.
1007 * A cacheline is typical/always less than a PAGE_SIZE so
1008 * the sections that has this restriction (or similar)
1009 * is located before the ones requiring PAGE_SIZE alignment.
1010 * NOSAVE_DATA starts and ends with a PAGE_SIZE alignment which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001011 * matches the requirement of PAGE_ALIGNED_DATA.
Sam Ravnborgef53dae2009-06-07 20:46:37 +02001012 *
Sam Ravnborg7923f902009-06-14 22:10:41 +02001013 * use 0 as page_align if page_aligned data is not used */
Kees Cookc9174042019-10-29 14:13:35 -07001014#define RW_DATA(cacheline, pagealigned, inittask) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +02001015 . = ALIGN(PAGE_SIZE); \
1016 .data : AT(ADDR(.data) - LOAD_OFFSET) { \
Tim Abbott39a449d2009-06-23 18:53:15 -04001017 INIT_TASK_DATA(inittask) \
Tim Abbott1b208622009-09-24 10:36:16 -04001018 NOSAVE_DATA \
1019 PAGE_ALIGNED_DATA(pagealigned) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +02001020 CACHELINE_ALIGNED_DATA(cacheline) \
1021 READ_MOSTLY_DATA(cacheline) \
1022 DATA_DATA \
1023 CONSTRUCTORS \
Peter Zijlstra19d43622017-02-25 08:56:53 +01001024 } \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -05001025 BUG_TABLE \
Sam Ravnborgef53dae2009-06-07 20:46:37 +02001026
1027#define INIT_TEXT_SECTION(inittext_align) \
1028 . = ALIGN(inittext_align); \
1029 .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +09001030 _sinittext = .; \
Sam Ravnborgef53dae2009-06-07 20:46:37 +02001031 INIT_TEXT \
Masahiro Yamadaa6214382018-05-09 16:23:51 +09001032 _einittext = .; \
Sam Ravnborgef53dae2009-06-07 20:46:37 +02001033 }
1034
1035#define INIT_DATA_SECTION(initsetup_align) \
1036 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) { \
1037 INIT_DATA \
1038 INIT_SETUP(initsetup_align) \
1039 INIT_CALLS \
1040 CON_INITCALL \
Sam Ravnborgef53dae2009-06-07 20:46:37 +02001041 INIT_RAM_FS \
1042 }
1043
Tim Abbott04e448d2009-07-12 18:23:33 -04001044#define BSS_SECTION(sbss_align, bss_align, stop_align) \
1045 . = ALIGN(sbss_align); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +09001046 __bss_start = .; \
Tim Abbott04e448d2009-07-12 18:23:33 -04001047 SBSS(sbss_align) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +02001048 BSS(bss_align) \
Tim Abbott04e448d2009-07-12 18:23:33 -04001049 . = ALIGN(stop_align); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +09001050 __bss_stop = .;