blob: f4980c72d389b3c358f1fd8348ed40b718965a4e [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 = .;
26 * RO_DATA_SECTION(PAGE_SIZE)
27 * RW_DATA_SECTION(...)
28 * _edata = .;
29 *
30 * EXCEPTION_TABLE(...)
31 * NOTES
32 *
Tim Abbott04e448d2009-07-12 18:23:33 -040033 * BSS_SECTION(0, 0, 0)
Sam Ravnborgef53dae2009-06-07 20:46:37 +020034 * _end = .;
35 *
Sam Ravnborgef53dae2009-06-07 20:46:37 +020036 * STABS_DEBUG
37 * DWARF_DEBUG
Tejun Heo023bf6f2009-07-09 11:27:40 +090038 *
39 * DISCARDS // must be the last
Sam Ravnborgef53dae2009-06-07 20:46:37 +020040 * }
41 *
42 * [__init_begin, __init_end] is the init section that may be freed after init
Yalin Wang562c85c2014-09-26 03:30:59 +010043 * // __init_begin and __init_end should be page aligned, so that we can
44 * // free the whole .init memory
Sam Ravnborgef53dae2009-06-07 20:46:37 +020045 * [_stext, _etext] is the text section
46 * [_sdata, _edata] is the data section
47 *
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
51 */
Tim Abbottc80d4712009-04-25 22:10:56 -040052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#ifndef LOAD_OFFSET
54#define LOAD_OFFSET 0
55#endif
56
Rusty Russellb92021b2013-03-15 15:04:17 +103057#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Sam Ravnborg6d30e3a2005-07-14 20:15:44 +000059/* Align . to a 8 byte boundary equals to maximum function alignment. */
60#define ALIGN_FUNCTION() . = ALIGN(8)
61
Sam Ravnborg07fca0e2010-07-10 08:35:00 +020062/*
Nicholas Piggincb874812017-07-26 22:46:27 +100063 * LD_DEAD_CODE_DATA_ELIMINATION option enables -fdata-sections, which
64 * generates .data.identifier sections, which need to be pulled in with
65 * .data. We don't want to pull in .data..other sections, which Linux
66 * has defined. Same for text and bss.
67 */
68#ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION
69#define TEXT_MAIN .text .text.[0-9a-zA-Z_]*
70#define DATA_MAIN .data .data.[0-9a-zA-Z_]*
71#define BSS_MAIN .bss .bss.[0-9a-zA-Z_]*
72#else
73#define TEXT_MAIN .text
74#define DATA_MAIN .data
75#define BSS_MAIN .bss
76#endif
77
78/*
Sam Ravnborg07fca0e2010-07-10 08:35:00 +020079 * Align to a 32 byte boundary equal to the
80 * alignment gcc 4.5 uses for a struct
81 */
Dirk Brandewieaab94332010-12-22 11:57:26 -080082#define STRUCT_ALIGNMENT 32
83#define STRUCT_ALIGN() . = ALIGN(STRUCT_ALIGNMENT)
Sam Ravnborg07fca0e2010-07-10 08:35:00 +020084
Sam Ravnborgeb8f6892008-01-20 20:07:28 +010085/* The actual configuration determine if the init/exit sections
86 * are handled as text/data or they can be discarded (which
87 * often happens at runtime)
88 */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +010089#ifdef CONFIG_HOTPLUG_CPU
90#define CPU_KEEP(sec) *(.cpu##sec)
91#define CPU_DISCARD(sec)
92#else
93#define CPU_KEEP(sec)
94#define CPU_DISCARD(sec) *(.cpu##sec)
95#endif
96
Adrian Bunk1a3fb6d2008-01-24 22:20:18 +010097#if defined(CONFIG_MEMORY_HOTPLUG)
Sam Ravnborgeb8f6892008-01-20 20:07:28 +010098#define MEM_KEEP(sec) *(.mem##sec)
99#define MEM_DISCARD(sec)
100#else
101#define MEM_KEEP(sec)
102#define MEM_DISCARD(sec) *(.mem##sec)
103#endif
104
Steven Rostedt8da38212008-08-14 15:45:07 -0400105#ifdef CONFIG_FTRACE_MCOUNT_RECORD
John Reiser4b3b4c52009-07-27 11:23:50 -0700106#define MCOUNT_REC() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900107 __start_mcount_loc = .; \
Steven Rostedt8da38212008-08-14 15:45:07 -0400108 *(__mcount_loc) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900109 __stop_mcount_loc = .;
Steven Rostedt8da38212008-08-14 15:45:07 -0400110#else
111#define MCOUNT_REC()
112#endif
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100113
Steven Rostedt2ed84ee2008-11-12 15:24:24 -0500114#ifdef CONFIG_TRACE_BRANCH_PROFILING
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900115#define LIKELY_PROFILE() __start_annotated_branch_profile = .; \
116 *(_ftrace_annotated_branch) \
117 __stop_annotated_branch_profile = .;
Steven Rostedt1f0d69a2008-11-12 00:14:39 -0500118#else
119#define LIKELY_PROFILE()
120#endif
121
Steven Rostedt2bcd5212008-11-21 01:30:54 -0500122#ifdef CONFIG_PROFILE_ALL_BRANCHES
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900123#define BRANCH_PROFILE() __start_branch_profile = .; \
124 *(_ftrace_branch) \
125 __stop_branch_profile = .;
Steven Rostedt2bcd5212008-11-21 01:30:54 -0500126#else
127#define BRANCH_PROFILE()
128#endif
129
Masami Hiramatsu376e2422014-04-17 17:17:05 +0900130#ifdef CONFIG_KPROBES
Vineet Gupta69902c72014-05-01 10:56:44 +0530131#define KPROBE_BLACKLIST() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900132 __start_kprobe_blacklist = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100133 KEEP(*(_kprobe_blacklist)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900134 __stop_kprobe_blacklist = .;
Masami Hiramatsu376e2422014-04-17 17:17:05 +0900135#else
136#define KPROBE_BLACKLIST()
137#endif
138
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900139#ifdef CONFIG_FUNCTION_ERROR_INJECTION
Masami Hiramatsu663faf92018-01-13 02:55:33 +0900140#define ERROR_INJECT_WHITELIST() STRUCT_ALIGN(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900141 __start_error_injection_whitelist = .; \
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900142 KEEP(*(_error_injection_whitelist)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900143 __stop_error_injection_whitelist = .;
Josef Bacik92ace992017-12-11 11:36:46 -0500144#else
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900145#define ERROR_INJECT_WHITELIST()
Josef Bacik92ace992017-12-11 11:36:46 -0500146#endif
147
Tom Zanussi5f77a882009-04-08 03:14:01 -0500148#ifdef CONFIG_EVENT_TRACING
Steven Rostedte4a9ea52011-01-27 09:15:30 -0500149#define FTRACE_EVENTS() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900150 __start_ftrace_events = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100151 KEEP(*(_ftrace_events)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900152 __stop_ftrace_events = .; \
153 __start_ftrace_eval_maps = .; \
Jeremy Linton02fd7f62017-05-31 16:56:42 -0500154 KEEP(*(_ftrace_eval_map)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900155 __stop_ftrace_eval_maps = .;
Steven Rostedtb77e38a2009-02-24 10:21:36 -0500156#else
157#define FTRACE_EVENTS()
158#endif
159
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100160#ifdef CONFIG_TRACING
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900161#define TRACE_PRINTKS() __start___trace_bprintk_fmt = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100162 KEEP(*(__trace_printk_fmt)) /* Trace_printk fmt' pointer */ \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900163 __stop___trace_bprintk_fmt = .;
164#define TRACEPOINT_STR() __start___tracepoint_str = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100165 KEEP(*(__tracepoint_str)) /* Trace_printk fmt' pointer */ \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900166 __stop___tracepoint_str = .;
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100167#else
168#define TRACE_PRINTKS()
Steven Rostedt (Red Hat)102c9322013-07-12 17:07:27 -0400169#define TRACEPOINT_STR()
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100170#endif
171
Frederic Weisbeckerbed1ffc2009-03-13 15:42:11 +0100172#ifdef CONFIG_FTRACE_SYSCALLS
Steven Rostedt3d56e332011-02-02 17:06:09 -0500173#define TRACE_SYSCALLS() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900174 __start_syscalls_metadata = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100175 KEEP(*(__syscalls_metadata)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900176 __stop_syscalls_metadata = .;
Frederic Weisbeckerbed1ffc2009-03-13 15:42:11 +0100177#else
178#define TRACE_SYSCALLS()
179#endif
180
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700181#ifdef CONFIG_BPF_EVENTS
182#define BPF_RAW_TP() STRUCT_ALIGN(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900183 __start__bpf_raw_tp = .; \
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700184 KEEP(*(__bpf_raw_tp_map)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900185 __stop__bpf_raw_tp = .;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700186#else
187#define BPF_RAW_TP()
188#endif
189
Peter Hurley470ca0d2015-03-09 16:27:21 -0400190#ifdef CONFIG_SERIAL_EARLYCON
Daniel Kurtzdd709e72018-04-06 17:21:53 -0600191#define EARLYCON_TABLE() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900192 __earlycon_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100193 KEEP(*(__earlycon_table)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900194 __earlycon_table_end = .;
Peter Hurley470ca0d2015-03-09 16:27:21 -0400195#else
196#define EARLYCON_TABLE()
197#endif
Dirk Brandewieaab94332010-12-22 11:57:26 -0800198
Rob Herring06309282014-03-24 16:59:20 -0500199#define ___OF_TABLE(cfg, name) _OF_TABLE_##cfg(name)
200#define __OF_TABLE(cfg, name) ___OF_TABLE(cfg, name)
Masahiro Yamada5ee02af2016-06-14 14:58:58 +0900201#define OF_TABLE(cfg, name) __OF_TABLE(IS_ENABLED(cfg), name)
Rob Herring06309282014-03-24 16:59:20 -0500202#define _OF_TABLE_0(name)
203#define _OF_TABLE_1(name) \
Thomas Petazzonif6e916b2012-11-20 23:00:52 +0100204 . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900205 __##name##_of_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100206 KEEP(*(__##name##_of_table)) \
207 KEEP(*(__##name##_of_table_end))
Dirk Brandewieaab94332010-12-22 11:57:26 -0800208
Daniel Lezcanobb0eb052017-05-26 19:34:11 +0200209#define TIMER_OF_TABLES() OF_TABLE(CONFIG_TIMER_OF, timer)
Rob Herring06309282014-03-24 16:59:20 -0500210#define IRQCHIP_OF_MATCH_TABLE() OF_TABLE(CONFIG_IRQCHIP, irqchip)
211#define CLK_OF_TABLES() OF_TABLE(CONFIG_COMMON_CLK, clk)
Will Deacon1cd076b2014-08-27 14:40:58 +0100212#define IOMMU_OF_TABLES() OF_TABLE(CONFIG_OF_IOMMU, iommu)
Rob Herring06309282014-03-24 16:59:20 -0500213#define RESERVEDMEM_OF_TABLES() OF_TABLE(CONFIG_OF_RESERVED_MEM, reservedmem)
214#define CPU_METHOD_OF_TABLES() OF_TABLE(CONFIG_SMP, cpu_method)
Daniel Lezcano449e0562015-02-02 16:32:45 +0100215#define CPUIDLE_METHOD_OF_TABLES() OF_TABLE(CONFIG_CPU_IDLE, cpuidle_method)
Stephen Boyd6c3ff8b2013-10-30 18:21:09 -0700216
Marc Zyngiere647b532015-09-28 15:49:12 +0100217#ifdef CONFIG_ACPI
218#define ACPI_PROBE_TABLE(name) \
219 . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900220 __##name##_acpi_probe_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100221 KEEP(*(__##name##_acpi_probe_table)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900222 __##name##_acpi_probe_table_end = .;
Marc Zyngiere647b532015-09-28 15:49:12 +0100223#else
224#define ACPI_PROBE_TABLE(name)
225#endif
226
Dirk Brandewieaab94332010-12-22 11:57:26 -0800227#define KERNEL_DTB() \
228 STRUCT_ALIGN(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900229 __dtb_start = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100230 KEEP(*(.dtb.init.rodata)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900231 __dtb_end = .;
Dirk Brandewieaab94332010-12-22 11:57:26 -0800232
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000233/*
234 * .data section
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000235 */
Sam Ravnborgca967252007-05-17 13:38:44 +0200236#define DATA_DATA \
Arnd Bergmann129f6c42017-07-21 22:26:25 +0200237 *(.xiptext) \
Nicholas Piggincb874812017-07-26 22:46:27 +1000238 *(DATA_MAIN) \
Sam Ravnborg312b1482008-01-28 20:21:15 +0100239 *(.ref.data) \
Mike Frysingerd356c0b2010-10-26 14:22:29 -0700240 *(.data..shared_aligned) /* percpu related */ \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100241 MEM_KEEP(init.data) \
242 MEM_KEEP(exit.data) \
Jan Beulich7ccaba52012-03-23 15:01:52 -0700243 *(.data.unlikely) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900244 __start_once = .; \
Andi Kleenb1fca272017-11-17 15:27:03 -0800245 *(.data.once) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900246 __end_once = .; \
Mathieu Desnoyers65498642011-01-26 17:26:22 -0500247 STRUCT_ALIGN(); \
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400248 *(__tracepoints) \
Jason Barone9d376f2009-02-05 11:51:38 -0500249 /* implement dynamic printk debug */ \
Jason Barond430d3d2011-03-16 17:29:47 -0400250 . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900251 __start___jump_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100252 KEEP(*(__jump_table)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900253 __stop___jump_table = .; \
Jason Barone9d376f2009-02-05 11:51:38 -0500254 . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900255 __start___verbose = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100256 KEEP(*(__verbose)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900257 __stop___verbose = .; \
Steven Rostedt2bcd5212008-11-21 01:30:54 -0500258 LIKELY_PROFILE() \
Steven Rostedtb77e38a2009-02-24 10:21:36 -0500259 BRANCH_PROFILE() \
Steven Rostedt (Red Hat)102c9322013-07-12 17:07:27 -0400260 TRACE_PRINTKS() \
Alexei Starovoitovc4f66992018-03-28 12:05:37 -0700261 BPF_RAW_TP() \
Steven Rostedt (Red Hat)102c9322013-07-12 17:07:27 -0400262 TRACEPOINT_STR()
Sam Ravnborgca967252007-05-17 13:38:44 +0200263
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200264/*
265 * Data section helpers
266 */
267#define NOSAVE_DATA \
268 . = ALIGN(PAGE_SIZE); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900269 __nosave_begin = .; \
Denys Vlasenko07b3bb12010-02-20 01:03:52 +0100270 *(.data..nosave) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200271 . = ALIGN(PAGE_SIZE); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900272 __nosave_end = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200273
274#define PAGE_ALIGNED_DATA(page_align) \
275 . = ALIGN(page_align); \
Tim Abbott75b13482010-02-20 01:03:37 +0100276 *(.data..page_aligned)
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200277
278#define READ_MOSTLY_DATA(align) \
279 . = ALIGN(align); \
Shaohua Li83697442011-01-12 16:59:38 -0800280 *(.data..read_mostly) \
281 . = ALIGN(align);
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200282
283#define CACHELINE_ALIGNED_DATA(align) \
284 . = ALIGN(align); \
Tim Abbott4af57b72010-02-20 01:03:34 +0100285 *(.data..cacheline_aligned)
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200286
Tim Abbott39a449d2009-06-23 18:53:15 -0400287#define INIT_TASK_DATA(align) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200288 . = ALIGN(align); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900289 __start_init_task = .; \
290 init_thread_union = .; \
291 init_stack = .; \
Borislav Petkov91ed1402016-03-31 16:21:02 +0200292 *(.data..init_task) \
David Howells05008712018-01-02 15:12:01 +0000293 *(.data..init_thread_info) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900294 . = __start_init_task + THREAD_SIZE; \
295 __end_init_task = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200296
297/*
Heiko Carstens32fb2fc2016-06-07 12:20:51 +0200298 * Allow architectures to handle ro_after_init data on their
299 * own by defining an empty RO_AFTER_INIT_DATA.
300 */
301#ifndef RO_AFTER_INIT_DATA
Jakub Kicinskid7c19b02016-11-10 10:46:44 -0800302#define RO_AFTER_INIT_DATA \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900303 __start_ro_after_init = .; \
Jakub Kicinskid7c19b02016-11-10 10:46:44 -0800304 *(.data..ro_after_init) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900305 __end_ro_after_init = .;
Heiko Carstens32fb2fc2016-06-07 12:20:51 +0200306#endif
307
308/*
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200309 * Read only Data
310 */
311#define RO_DATA_SECTION(align) \
Sam Ravnborg4096b462007-05-29 21:29:00 +0200312 . = ALIGN((align)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 .rodata : AT(ADDR(.rodata) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900314 __start_rodata = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 *(.rodata) *(.rodata.*) \
Heiko Carstens32fb2fc2016-06-07 12:20:51 +0200316 RO_AFTER_INIT_DATA /* Read only after init */ \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100317 KEEP(*(__vermagic)) /* Kernel version magic */ \
Mathieu Desnoyers65498642011-01-26 17:26:22 -0500318 . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900319 __start___tracepoints_ptrs = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100320 KEEP(*(__tracepoints_ptrs)) /* Tracepoints: pointer array */ \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900321 __stop___tracepoints_ptrs = .; \
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400322 *(__tracepoints_strings)/* Tracepoints: strings */ \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 } \
324 \
325 .rodata1 : AT(ADDR(.rodata1) - LOAD_OFFSET) { \
326 *(.rodata1) \
327 } \
328 \
329 /* PCI quirks */ \
330 .pci_fixup : AT(ADDR(.pci_fixup) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900331 __start_pci_fixups_early = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100332 KEEP(*(.pci_fixup_early)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900333 __end_pci_fixups_early = .; \
334 __start_pci_fixups_header = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100335 KEEP(*(.pci_fixup_header)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900336 __end_pci_fixups_header = .; \
337 __start_pci_fixups_final = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100338 KEEP(*(.pci_fixup_final)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900339 __end_pci_fixups_final = .; \
340 __start_pci_fixups_enable = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100341 KEEP(*(.pci_fixup_enable)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900342 __end_pci_fixups_enable = .; \
343 __start_pci_fixups_resume = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100344 KEEP(*(.pci_fixup_resume)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900345 __end_pci_fixups_resume = .; \
346 __start_pci_fixups_resume_early = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100347 KEEP(*(.pci_fixup_resume_early)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900348 __end_pci_fixups_resume_early = .; \
349 __start_pci_fixups_suspend = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100350 KEEP(*(.pci_fixup_suspend)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900351 __end_pci_fixups_suspend = .; \
352 __start_pci_fixups_suspend_late = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100353 KEEP(*(.pci_fixup_suspend_late)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900354 __end_pci_fixups_suspend_late = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 } \
356 \
David Woodhouse5658c762008-05-23 13:52:42 +0100357 /* Built-in firmware blobs */ \
358 .builtin_fw : AT(ADDR(.builtin_fw) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900359 __start_builtin_fw = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100360 KEEP(*(.builtin_fw)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900361 __end_builtin_fw = .; \
David Woodhouse5658c762008-05-23 13:52:42 +0100362 } \
363 \
Jan Beulich63687a52008-05-12 15:44:41 +0200364 TRACEDATA \
365 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /* Kernel symbol table: Normal symbols */ \
367 __ksymtab : AT(ADDR(__ksymtab) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900368 __start___ksymtab = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000369 KEEP(*(SORT(___ksymtab+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900370 __stop___ksymtab = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 } \
372 \
373 /* Kernel symbol table: GPL-only symbols */ \
374 __ksymtab_gpl : AT(ADDR(__ksymtab_gpl) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900375 __start___ksymtab_gpl = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000376 KEEP(*(SORT(___ksymtab_gpl+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900377 __stop___ksymtab_gpl = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 } \
379 \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700380 /* Kernel symbol table: Normal unused symbols */ \
381 __ksymtab_unused : AT(ADDR(__ksymtab_unused) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900382 __start___ksymtab_unused = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000383 KEEP(*(SORT(___ksymtab_unused+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900384 __stop___ksymtab_unused = .; \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700385 } \
386 \
387 /* Kernel symbol table: GPL-only unused symbols */ \
388 __ksymtab_unused_gpl : AT(ADDR(__ksymtab_unused_gpl) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900389 __start___ksymtab_unused_gpl = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000390 KEEP(*(SORT(___ksymtab_unused_gpl+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900391 __stop___ksymtab_unused_gpl = .; \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700392 } \
393 \
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800394 /* Kernel symbol table: GPL-future-only symbols */ \
395 __ksymtab_gpl_future : AT(ADDR(__ksymtab_gpl_future) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900396 __start___ksymtab_gpl_future = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000397 KEEP(*(SORT(___ksymtab_gpl_future+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900398 __stop___ksymtab_gpl_future = .; \
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800399 } \
400 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* Kernel symbol table: Normal symbols */ \
402 __kcrctab : AT(ADDR(__kcrctab) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900403 __start___kcrctab = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000404 KEEP(*(SORT(___kcrctab+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900405 __stop___kcrctab = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 } \
407 \
408 /* Kernel symbol table: GPL-only symbols */ \
409 __kcrctab_gpl : AT(ADDR(__kcrctab_gpl) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900410 __start___kcrctab_gpl = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000411 KEEP(*(SORT(___kcrctab_gpl+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900412 __stop___kcrctab_gpl = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 } \
414 \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700415 /* Kernel symbol table: Normal unused symbols */ \
416 __kcrctab_unused : AT(ADDR(__kcrctab_unused) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900417 __start___kcrctab_unused = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000418 KEEP(*(SORT(___kcrctab_unused+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900419 __stop___kcrctab_unused = .; \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700420 } \
421 \
422 /* Kernel symbol table: GPL-only unused symbols */ \
423 __kcrctab_unused_gpl : AT(ADDR(__kcrctab_unused_gpl) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900424 __start___kcrctab_unused_gpl = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000425 KEEP(*(SORT(___kcrctab_unused_gpl+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900426 __stop___kcrctab_unused_gpl = .; \
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700427 } \
428 \
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800429 /* Kernel symbol table: GPL-future-only symbols */ \
430 __kcrctab_gpl_future : AT(ADDR(__kcrctab_gpl_future) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900431 __start___kcrctab_gpl_future = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000432 KEEP(*(SORT(___kcrctab_gpl_future+*))) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900433 __stop___kcrctab_gpl_future = .; \
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800434 } \
435 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /* Kernel symbol table: strings */ \
437 __ksymtab_strings : AT(ADDR(__ksymtab_strings) - LOAD_OFFSET) { \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100438 *(__ksymtab_strings) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 } \
440 \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100441 /* __*init sections */ \
442 __init_rodata : AT(ADDR(__init_rodata) - LOAD_OFFSET) { \
Sam Ravnborg312b1482008-01-28 20:21:15 +0100443 *(.ref.rodata) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100444 MEM_KEEP(init.rodata) \
445 MEM_KEEP(exit.rodata) \
446 } \
447 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /* Built-in module parameters. */ \
449 __param : AT(ADDR(__param) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900450 __start___param = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100451 KEEP(*(__param)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900452 __stop___param = .; \
Dmitry Torokhove94965e2010-12-15 14:00:19 -0800453 } \
454 \
455 /* Built-in module versions. */ \
456 __modver : AT(ADDR(__modver) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900457 __start___modver = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100458 KEEP(*(__modver)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900459 __stop___modver = .; \
Arjan van de Venedeed302008-01-30 13:34:08 +0100460 . = ALIGN((align)); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900461 __end_rodata = .; \
Marcelo Tosatti7583ddf2006-09-27 01:51:02 -0700462 } \
Sam Ravnborg4096b462007-05-29 21:29:00 +0200463 . = ALIGN((align));
464
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200465/* RODATA & RO_DATA provided for backward compatibility.
Sam Ravnborg4096b462007-05-29 21:29:00 +0200466 * All archs are supposed to use RO_DATA() */
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200467#define RODATA RO_DATA_SECTION(4096)
468#define RO_DATA(align) RO_DATA_SECTION(align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470#define SECURITY_INIT \
Eric W. Biederman60bad7f2005-06-25 14:57:46 -0700471 .security_initcall.init : AT(ADDR(.security_initcall.init) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900472 __security_initcall_start = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000473 KEEP(*(.security_initcall.init)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900474 __security_initcall_end = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476
Nicholas Piggincb874812017-07-26 22:46:27 +1000477/*
478 * .text section. Map to function alignment to avoid address changes
Nicholas Piggin0f4c4af2016-09-14 12:24:03 +1000479 * during second ld run in second ld pass when generating System.map
Nicholas Piggincb874812017-07-26 22:46:27 +1000480 *
481 * TEXT_MAIN here will match .text.fixup and .text.unlikely if dead
482 * code elimination is enabled, so these sections should be converted
483 * to use ".." first.
484 */
Sam Ravnborg76647092007-05-13 00:31:33 +0200485#define TEXT_TEXT \
486 ALIGN_FUNCTION(); \
Nicholas Piggincb874812017-07-26 22:46:27 +1000487 *(.text.hot TEXT_MAIN .text.fixup .text.unlikely) \
Kees Cook564c9cc2017-09-02 13:09:45 -0700488 *(.text..refcount) \
Sam Ravnborg312b1482008-01-28 20:21:15 +0100489 *(.ref.text) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100490 MEM_KEEP(init.text) \
Jan Beulichfb5e2b32008-06-18 12:36:01 +0100491 MEM_KEEP(exit.text) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100492
Sam Ravnborg76647092007-05-13 00:31:33 +0200493
Sam Ravnborg6d30e3a2005-07-14 20:15:44 +0000494/* sched.text is aling to function alignment to secure we have same
495 * address even at second ld pass when generating System.map */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496#define SCHED_TEXT \
Sam Ravnborg6d30e3a2005-07-14 20:15:44 +0000497 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900498 __sched_text_start = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 *(.sched.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900500 __sched_text_end = .;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Sam Ravnborg6d30e3a2005-07-14 20:15:44 +0000502/* spinlock.text is aling to function alignment to secure we have same
503 * address even at second ld pass when generating System.map */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504#define LOCK_TEXT \
Sam Ravnborg6d30e3a2005-07-14 20:15:44 +0000505 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900506 __lock_text_start = .; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 *(.spinlock.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900508 __lock_text_end = .;
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700509
Chris Metcalf6727ad92016-10-07 17:02:55 -0700510#define CPUIDLE_TEXT \
511 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900512 __cpuidle_text_start = .; \
Chris Metcalf6727ad92016-10-07 17:02:55 -0700513 *(.cpuidle.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900514 __cpuidle_text_end = .;
Chris Metcalf6727ad92016-10-07 17:02:55 -0700515
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700516#define KPROBES_TEXT \
517 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900518 __kprobes_text_start = .; \
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -0700519 *(.kprobes.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900520 __kprobes_text_end = .;
Paolo 'Blaisorblade' Giarrussoa7d0c212005-09-10 19:44:54 +0200521
Jiri Olsaea714542011-03-07 19:10:39 +0100522#define ENTRY_TEXT \
523 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900524 __entry_text_start = .; \
Jiri Olsaea714542011-03-07 19:10:39 +0100525 *(.entry.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900526 __entry_text_end = .;
Jiri Olsaea714542011-03-07 19:10:39 +0100527
Frederic Weisbeckera0343e82008-12-09 23:53:16 +0100528#define IRQENTRY_TEXT \
529 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900530 __irqentry_text_start = .; \
Frederic Weisbeckera0343e82008-12-09 23:53:16 +0100531 *(.irqentry.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900532 __irqentry_text_end = .;
Frederic Weisbeckera0343e82008-12-09 23:53:16 +0100533
Alexander Potapenkobe7635e2016-03-25 14:22:05 -0700534#define SOFTIRQENTRY_TEXT \
535 ALIGN_FUNCTION(); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900536 __softirqentry_text_start = .; \
Alexander Potapenkobe7635e2016-03-25 14:22:05 -0700537 *(.softirqentry.text) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900538 __softirqentry_text_end = .;
Alexander Potapenkobe7635e2016-03-25 14:22:05 -0700539
Sam Ravnborg37c514e2008-02-19 21:00:18 +0100540/* Section used for early init (in .S files) */
Sam Ravnborg7923f902009-06-14 22:10:41 +0200541#define HEAD_TEXT *(.head.text)
Sam Ravnborg37c514e2008-02-19 21:00:18 +0100542
Sam Ravnborg7923f902009-06-14 22:10:41 +0200543#define HEAD_TEXT_SECTION \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200544 .head.text : AT(ADDR(.head.text) - LOAD_OFFSET) { \
545 HEAD_TEXT \
546 }
547
548/*
549 * Exception table
550 */
551#define EXCEPTION_TABLE(align) \
552 . = ALIGN(align); \
553 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900554 __start___ex_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100555 KEEP(*(__ex_table)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900556 __stop___ex_table = .; \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200557 }
558
559/*
560 * Init task
561 */
Tim Abbott39a449d2009-06-23 18:53:15 -0400562#define INIT_TASK_DATA_SECTION(align) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200563 . = ALIGN(align); \
Sam Ravnborgda5e37e2010-07-13 11:39:42 +0200564 .data..init_task : AT(ADDR(.data..init_task) - LOAD_OFFSET) { \
Tim Abbott39a449d2009-06-23 18:53:15 -0400565 INIT_TASK_DATA(align) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200566 }
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100567
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700568#ifdef CONFIG_CONSTRUCTORS
Heiko Carstens2a2325e2009-06-30 11:41:13 -0700569#define KERNEL_CTORS() . = ALIGN(8); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900570 __ctors_start = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100571 KEEP(*(.ctors)) \
572 KEEP(*(SORT(.init_array.*))) \
573 KEEP(*(.init_array)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900574 __ctors_end = .;
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700575#else
576#define KERNEL_CTORS()
577#endif
578
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +0100579/* init and exit section handling */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100580#define INIT_DATA \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000581 KEEP(*(SORT(___kentry+*))) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100582 *(.init.data) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100583 MEM_DISCARD(init.data) \
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700584 KERNEL_CTORS() \
John Reiser4b3b4c52009-07-27 11:23:50 -0700585 MCOUNT_REC() \
Steven Rostedt9fd49322012-04-24 22:32:06 -0400586 *(.init.rodata) \
Steven Rostedte4a9ea52011-01-27 09:15:30 -0500587 FTRACE_EVENTS() \
Steven Rostedt3d56e332011-02-02 17:06:09 -0500588 TRACE_SYSCALLS() \
Masami Hiramatsu376e2422014-04-17 17:17:05 +0900589 KPROBE_BLACKLIST() \
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900590 ERROR_INJECT_WHITELIST() \
Dirk Brandewieaab94332010-12-22 11:57:26 -0800591 MEM_DISCARD(init.rodata) \
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +0530592 CLK_OF_TABLES() \
Marek Szyprowskif618c472014-02-28 14:42:49 +0100593 RESERVEDMEM_OF_TABLES() \
Daniel Lezcano2fcc112a2017-05-26 18:33:27 +0200594 TIMER_OF_TABLES() \
Will Deacon1cd076b2014-08-27 14:40:58 +0100595 IOMMU_OF_TABLES() \
Stephen Boyd6c3ff8b2013-10-30 18:21:09 -0700596 CPU_METHOD_OF_TABLES() \
Daniel Lezcano449e0562015-02-02 16:32:45 +0100597 CPUIDLE_METHOD_OF_TABLES() \
Thomas Petazzonif6e916b2012-11-20 23:00:52 +0100598 KERNEL_DTB() \
Rob Herringb0b6abd2014-03-27 08:06:16 -0500599 IRQCHIP_OF_MATCH_TABLE() \
Marc Zyngier46e589a2015-09-28 15:49:13 +0100600 ACPI_PROBE_TABLE(irqchip) \
Daniel Lezcano2fcc112a2017-05-26 18:33:27 +0200601 ACPI_PROBE_TABLE(timer) \
Peter Hurley2eaa7902016-01-16 15:23:39 -0800602 EARLYCON_TABLE()
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +0100603
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100604#define INIT_TEXT \
605 *(.init.text) \
Dmitry Vyukove41f5012016-07-14 12:07:29 -0700606 *(.text.startup) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100607 MEM_DISCARD(init.text)
608
609#define EXIT_DATA \
610 *(.exit.data) \
Dmitry Vyukove41f5012016-07-14 12:07:29 -0700611 *(.fini_array) \
612 *(.dtors) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100613 MEM_DISCARD(exit.data) \
614 MEM_DISCARD(exit.rodata)
615
616#define EXIT_TEXT \
617 *(.exit.text) \
Dmitry Vyukove41f5012016-07-14 12:07:29 -0700618 *(.text.exit) \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100619 MEM_DISCARD(exit.text)
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +0100620
Sam Ravnborg7923f902009-06-14 22:10:41 +0200621#define EXIT_CALL \
622 *(.exitcall.exit)
623
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200624/*
625 * bss (Block Started by Symbol) - uninitialized data
626 * zeroed during startup
627 */
Tim Abbott04e448d2009-07-12 18:23:33 -0400628#define SBSS(sbss_align) \
629 . = ALIGN(sbss_align); \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200630 .sbss : AT(ADDR(.sbss) - LOAD_OFFSET) { \
Nicholas Piggin83a092c2017-05-12 03:40:40 +1000631 *(.dynsbss) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200632 *(.sbss) \
633 *(.scommon) \
634 }
635
David Daneyc87728c2012-08-14 11:08:00 -0700636/*
637 * Allow archectures to redefine BSS_FIRST_SECTIONS to add extra
638 * sections to the front of bss.
639 */
640#ifndef BSS_FIRST_SECTIONS
641#define BSS_FIRST_SECTIONS
642#endif
643
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200644#define BSS(bss_align) \
645 . = ALIGN(bss_align); \
646 .bss : AT(ADDR(.bss) - LOAD_OFFSET) { \
David Daneyc87728c2012-08-14 11:08:00 -0700647 BSS_FIRST_SECTIONS \
Tim Abbott7c74df02010-02-20 01:03:38 +0100648 *(.bss..page_aligned) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200649 *(.dynbss) \
Nicholas Piggincb874812017-07-26 22:46:27 +1000650 *(BSS_MAIN) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200651 *(COMMON) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200652 }
653
654/*
655 * DWARF debug sections.
656 * Symbols in the DWARF debugging sections are relative to
657 * the beginning of the section so we begin them at 0.
658 */
Paolo 'Blaisorblade' Giarrussoa7d0c212005-09-10 19:44:54 +0200659#define DWARF_DEBUG \
660 /* DWARF 1 */ \
661 .debug 0 : { *(.debug) } \
662 .line 0 : { *(.line) } \
663 /* GNU DWARF 1 extensions */ \
664 .debug_srcinfo 0 : { *(.debug_srcinfo) } \
665 .debug_sfnames 0 : { *(.debug_sfnames) } \
666 /* DWARF 1.1 and DWARF 2 */ \
667 .debug_aranges 0 : { *(.debug_aranges) } \
668 .debug_pubnames 0 : { *(.debug_pubnames) } \
669 /* DWARF 2 */ \
670 .debug_info 0 : { *(.debug_info \
671 .gnu.linkonce.wi.*) } \
672 .debug_abbrev 0 : { *(.debug_abbrev) } \
673 .debug_line 0 : { *(.debug_line) } \
674 .debug_frame 0 : { *(.debug_frame) } \
675 .debug_str 0 : { *(.debug_str) } \
676 .debug_loc 0 : { *(.debug_loc) } \
677 .debug_macinfo 0 : { *(.debug_macinfo) } \
Nicholas Piggin83a092c2017-05-12 03:40:40 +1000678 .debug_pubtypes 0 : { *(.debug_pubtypes) } \
679 /* DWARF 3 */ \
680 .debug_ranges 0 : { *(.debug_ranges) } \
Paolo 'Blaisorblade' Giarrussoa7d0c212005-09-10 19:44:54 +0200681 /* SGI/MIPS DWARF 2 extensions */ \
682 .debug_weaknames 0 : { *(.debug_weaknames) } \
683 .debug_funcnames 0 : { *(.debug_funcnames) } \
684 .debug_typenames 0 : { *(.debug_typenames) } \
685 .debug_varnames 0 : { *(.debug_varnames) } \
Nicholas Piggin83a092c2017-05-12 03:40:40 +1000686 /* GNU DWARF 2 extensions */ \
687 .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } \
688 .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } \
689 /* DWARF 4 */ \
690 .debug_types 0 : { *(.debug_types) } \
691 /* DWARF 5 */ \
692 .debug_macro 0 : { *(.debug_macro) } \
693 .debug_addr 0 : { *(.debug_addr) }
Paolo 'Blaisorblade' Giarrussoa7d0c212005-09-10 19:44:54 +0200694
695 /* Stabs debugging sections. */
696#define STABS_DEBUG \
697 .stab 0 : { *(.stab) } \
698 .stabstr 0 : { *(.stabstr) } \
699 .stab.excl 0 : { *(.stab.excl) } \
700 .stab.exclstr 0 : { *(.stab.exclstr) } \
701 .stab.index 0 : { *(.stab.index) } \
702 .stab.indexstr 0 : { *(.stab.indexstr) } \
703 .comment 0 : { *(.comment) }
Jeremy Fitzhardinge9c9b8b32006-09-25 23:32:26 -0700704
Jan Beulich6360b1f2008-05-12 15:44:41 +0200705#ifdef CONFIG_GENERIC_BUG
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800706#define BUG_TABLE \
707 . = ALIGN(8); \
708 __bug_table : AT(ADDR(__bug_table) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900709 __start___bug_table = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100710 KEEP(*(__bug_table)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900711 __stop___bug_table = .; \
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800712 }
Jan Beulich6360b1f2008-05-12 15:44:41 +0200713#else
714#define BUG_TABLE
715#endif
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800716
Josh Poimboeuf11af8472017-10-13 15:02:00 -0500717#ifdef CONFIG_UNWINDER_ORC
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500718#define ORC_UNWIND_TABLE \
719 . = ALIGN(4); \
720 .orc_unwind_ip : AT(ADDR(.orc_unwind_ip) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900721 __start_orc_unwind_ip = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500722 KEEP(*(.orc_unwind_ip)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900723 __stop_orc_unwind_ip = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500724 } \
725 . = ALIGN(6); \
726 .orc_unwind : AT(ADDR(.orc_unwind) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900727 __start_orc_unwind = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500728 KEEP(*(.orc_unwind)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900729 __stop_orc_unwind = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500730 } \
731 . = ALIGN(4); \
732 .orc_lookup : AT(ADDR(.orc_lookup) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900733 orc_lookup = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500734 . += (((SIZEOF(.text) + LOOKUP_BLOCK_SIZE - 1) / \
735 LOOKUP_BLOCK_SIZE) + 1) * 4; \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900736 orc_lookup_end = .; \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500737 }
738#else
739#define ORC_UNWIND_TABLE
740#endif
741
Jan Beulich63687a52008-05-12 15:44:41 +0200742#ifdef CONFIG_PM_TRACE
743#define TRACEDATA \
744 . = ALIGN(4); \
745 .tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900746 __tracedata_start = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100747 KEEP(*(.tracedata)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900748 __tracedata_end = .; \
Jan Beulich63687a52008-05-12 15:44:41 +0200749 }
750#else
751#define TRACEDATA
752#endif
753
Jeremy Fitzhardinge9c9b8b32006-09-25 23:32:26 -0700754#define NOTES \
Roland McGrathcbe87122007-07-19 01:48:36 -0700755 .notes : AT(ADDR(.notes) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900756 __start_notes = .; \
Roland McGrathcbe87122007-07-19 01:48:36 -0700757 *(.note.*) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900758 __stop_notes = .; \
Roland McGrathcbe87122007-07-19 01:48:36 -0700759 }
Andrew Morton61ce1ef2006-10-27 11:41:44 -0700760
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200761#define INIT_SETUP(initsetup_align) \
762 . = ALIGN(initsetup_align); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900763 __setup_start = .; \
Nicholas Piggin4b89b7f2016-11-24 03:41:41 +1100764 KEEP(*(.init.setup)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900765 __setup_end = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200766
Pawel Moll026cee02012-03-26 12:50:51 +1030767#define INIT_CALLS_LEVEL(level) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900768 __initcall##level##_start = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000769 KEEP(*(.initcall##level##.init)) \
770 KEEP(*(.initcall##level##s.init)) \
Andrew Morton61ce1ef2006-10-27 11:41:44 -0700771
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200772#define INIT_CALLS \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900773 __initcall_start = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000774 KEEP(*(.initcallearly.init)) \
Pawel Moll026cee02012-03-26 12:50:51 +1030775 INIT_CALLS_LEVEL(0) \
776 INIT_CALLS_LEVEL(1) \
777 INIT_CALLS_LEVEL(2) \
778 INIT_CALLS_LEVEL(3) \
779 INIT_CALLS_LEVEL(4) \
780 INIT_CALLS_LEVEL(5) \
781 INIT_CALLS_LEVEL(rootfs) \
782 INIT_CALLS_LEVEL(6) \
783 INIT_CALLS_LEVEL(7) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900784 __initcall_end = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200785
786#define CON_INITCALL \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900787 __con_initcall_start = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000788 KEEP(*(.con_initcall.init)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900789 __con_initcall_end = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200790
791#define SECURITY_INITCALL \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900792 __security_initcall_start = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000793 KEEP(*(.security_initcall.init)) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900794 __security_initcall_end = .;
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200795
796#ifdef CONFIG_BLK_DEV_INITRD
797#define INIT_RAM_FS \
Mike Frysingerd8826262010-10-26 14:22:30 -0700798 . = ALIGN(4); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900799 __initramfs_start = .; \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000800 KEEP(*(.init.ramfs)) \
Hendrik Bruecknerffe80182010-09-17 15:24:11 -0700801 . = ALIGN(8); \
Nicholas Pigginb67067f2016-08-24 22:29:20 +1000802 KEEP(*(.init.ramfs.info))
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200803#else
David Howellseadfe212009-06-22 15:32:31 +0100804#define INIT_RAM_FS
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200805#endif
806
Tejun Heo023bf6f2009-07-09 11:27:40 +0900807/*
Brijesh Singhac269632017-10-20 09:30:57 -0500808 * Memory encryption operates on a page basis. Since we need to clear
809 * the memory encryption mask for this section, it needs to be aligned
810 * on a page boundary and be a page-size multiple in length.
811 *
812 * Note: We use a separate section so that only this section gets
813 * decrypted to avoid exposing more than we wish.
814 */
815#ifdef CONFIG_AMD_MEM_ENCRYPT
816#define PERCPU_DECRYPTED_SECTION \
817 . = ALIGN(PAGE_SIZE); \
818 *(.data..percpu..decrypted) \
819 . = ALIGN(PAGE_SIZE);
820#else
821#define PERCPU_DECRYPTED_SECTION
822#endif
823
824
825/*
Tejun Heo023bf6f2009-07-09 11:27:40 +0900826 * Default discarded sections.
827 *
828 * Some archs want to discard exit text/data at runtime rather than
829 * link time due to cross-section references such as alt instructions,
830 * bug table, eh_frame, etc. DISCARDS must be the last of output
831 * section definitions so that such archs put those in earlier section
832 * definitions.
833 */
Tejun Heo405d9672009-06-24 15:13:38 +0900834#define DISCARDS \
835 /DISCARD/ : { \
836 EXIT_TEXT \
837 EXIT_DATA \
Tejun Heo023bf6f2009-07-09 11:27:40 +0900838 EXIT_CALL \
Tejun Heo405d9672009-06-24 15:13:38 +0900839 *(.discard) \
Jeremy Fitzhardingec7f52cd2010-07-22 22:58:01 -0700840 *(.discard.*) \
Tejun Heo405d9672009-06-24 15:13:38 +0900841 }
842
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900843/**
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200844 * PERCPU_INPUT - the percpu input sections
845 * @cacheline: cacheline size
846 *
847 * The core percpu section names and core symbols which do not rely
848 * directly upon load addresses.
849 *
850 * @cacheline is used to align subsections to avoid false cacheline
851 * sharing between subsections for different purposes.
852 */
853#define PERCPU_INPUT(cacheline) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900854 __per_cpu_start = .; \
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200855 *(.data..percpu..first) \
856 . = ALIGN(PAGE_SIZE); \
857 *(.data..percpu..page_aligned) \
858 . = ALIGN(cacheline); \
Zhengyu He330d2822014-07-01 12:11:47 -0700859 *(.data..percpu..read_mostly) \
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200860 . = ALIGN(cacheline); \
861 *(.data..percpu) \
862 *(.data..percpu..shared_aligned) \
Brijesh Singhac269632017-10-20 09:30:57 -0500863 PERCPU_DECRYPTED_SECTION \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900864 __per_cpu_end = .;
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200865
866/**
Tejun Heo6b7c38d2009-01-19 12:21:28 +0900867 * PERCPU_VADDR - define output section for percpu area
Tejun Heo19df0c22011-01-25 14:26:50 +0100868 * @cacheline: cacheline size
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900869 * @vaddr: explicit base address (optional)
870 * @phdr: destination PHDR (optional)
871 *
Tejun Heo19df0c22011-01-25 14:26:50 +0100872 * Macro which expands to output section for percpu area.
873 *
874 * @cacheline is used to align subsections to avoid false cacheline
875 * sharing between subsections for different purposes.
876 *
877 * If @vaddr is not blank, it specifies explicit base address and all
878 * percpu symbols will be offset from the given address. If blank,
879 * @vaddr always equals @laddr + LOAD_OFFSET.
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900880 *
881 * @phdr defines the output PHDR to use if not blank. Be warned that
882 * output PHDR is sticky. If @phdr is specified, the next output
883 * section in the linker script will go there too. @phdr should have
884 * a leading colon.
885 *
Tejun Heo3ac6cff2009-01-30 16:32:22 +0900886 * Note that this macros defines __per_cpu_load as an absolute symbol.
887 * If there is no need to put the percpu section at a predetermined
Tejun Heo0415b00d12011-03-24 18:50:09 +0100888 * address, use PERCPU_SECTION.
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900889 */
Tejun Heo19df0c22011-01-25 14:26:50 +0100890#define PERCPU_VADDR(cacheline, vaddr, phdr) \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900891 __per_cpu_load = .; \
892 .data..percpu vaddr : AT(__per_cpu_load - LOAD_OFFSET) { \
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200893 PERCPU_INPUT(cacheline) \
Tejun Heo6b7c38d2009-01-19 12:21:28 +0900894 } phdr \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900895 . = __per_cpu_load + SIZEOF(.data..percpu);
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900896
897/**
Tejun Heo0415b00d12011-03-24 18:50:09 +0100898 * PERCPU_SECTION - define output section for percpu area, simple version
Tejun Heo19df0c22011-01-25 14:26:50 +0100899 * @cacheline: cacheline size
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900900 *
Tejun Heo0415b00d12011-03-24 18:50:09 +0100901 * Align to PAGE_SIZE and outputs output section for percpu area. This
902 * macro doesn't manipulate @vaddr or @phdr and __per_cpu_load and
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900903 * __per_cpu_start will be identical.
Tejun Heo3ac6cff2009-01-30 16:32:22 +0900904 *
Tejun Heo0415b00d12011-03-24 18:50:09 +0100905 * This macro is equivalent to ALIGN(PAGE_SIZE); PERCPU_VADDR(@cacheline,,)
Tejun Heo19df0c22011-01-25 14:26:50 +0100906 * except that __per_cpu_load is defined as a relative symbol against
907 * .data..percpu which is required for relocatable x86_32 configuration.
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900908 */
Tejun Heo0415b00d12011-03-24 18:50:09 +0100909#define PERCPU_SECTION(cacheline) \
910 . = ALIGN(PAGE_SIZE); \
Denys Vlasenko3d9a8542010-02-20 01:03:43 +0100911 .data..percpu : AT(ADDR(.data..percpu) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900912 __per_cpu_load = .; \
Mike Frysinger6ea0c342011-04-04 01:41:32 +0200913 PERCPU_INPUT(cacheline) \
Tejun Heo3ac6cff2009-01-30 16:32:22 +0900914 }
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200915
916
917/*
918 * Definition of the high level *_SECTION macros
919 * They will fit only a subset of the architectures
920 */
921
922
923/*
924 * Writeable data.
925 * All sections are combined in a single .data section.
926 * The sections following CONSTRUCTORS are arranged so their
927 * typical alignment matches.
928 * A cacheline is typical/always less than a PAGE_SIZE so
929 * the sections that has this restriction (or similar)
930 * is located before the ones requiring PAGE_SIZE alignment.
931 * NOSAVE_DATA starts and ends with a PAGE_SIZE alignment which
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300932 * matches the requirement of PAGE_ALIGNED_DATA.
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200933 *
Sam Ravnborg7923f902009-06-14 22:10:41 +0200934 * use 0 as page_align if page_aligned data is not used */
Paul Mundt73f1d932009-06-24 01:04:36 +0900935#define RW_DATA_SECTION(cacheline, pagealigned, inittask) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200936 . = ALIGN(PAGE_SIZE); \
937 .data : AT(ADDR(.data) - LOAD_OFFSET) { \
Tim Abbott39a449d2009-06-23 18:53:15 -0400938 INIT_TASK_DATA(inittask) \
Tim Abbott1b208622009-09-24 10:36:16 -0400939 NOSAVE_DATA \
940 PAGE_ALIGNED_DATA(pagealigned) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200941 CACHELINE_ALIGNED_DATA(cacheline) \
942 READ_MOSTLY_DATA(cacheline) \
943 DATA_DATA \
944 CONSTRUCTORS \
Peter Zijlstra19d43622017-02-25 08:56:53 +0100945 } \
Josh Poimboeufee9f8fc2017-07-24 18:36:57 -0500946 BUG_TABLE \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200947
948#define INIT_TEXT_SECTION(inittext_align) \
949 . = ALIGN(inittext_align); \
950 .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) { \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900951 _sinittext = .; \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200952 INIT_TEXT \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900953 _einittext = .; \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200954 }
955
956#define INIT_DATA_SECTION(initsetup_align) \
957 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) { \
958 INIT_DATA \
959 INIT_SETUP(initsetup_align) \
960 INIT_CALLS \
961 CON_INITCALL \
962 SECURITY_INITCALL \
963 INIT_RAM_FS \
964 }
965
Tim Abbott04e448d2009-07-12 18:23:33 -0400966#define BSS_SECTION(sbss_align, bss_align, stop_align) \
967 . = ALIGN(sbss_align); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900968 __bss_start = .; \
Tim Abbott04e448d2009-07-12 18:23:33 -0400969 SBSS(sbss_align) \
Sam Ravnborgef53dae2009-06-07 20:46:37 +0200970 BSS(bss_align) \
Tim Abbott04e448d2009-07-12 18:23:33 -0400971 . = ALIGN(stop_align); \
Masahiro Yamadaa6214382018-05-09 16:23:51 +0900972 __bss_stop = .;