Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | /* |
| 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 = .; |
| 15 | * HEAD_TEXT_SECTION |
| 16 | * INIT_TEXT_SECTION(PAGE_SIZE) |
| 17 | * INIT_DATA_SECTION(...) |
| 18 | * PERCPU_SECTION(CACHELINE_SIZE) |
| 19 | * __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 | * |
| 33 | * BSS_SECTION(0, 0, 0) |
| 34 | * _end = .; |
| 35 | * |
| 36 | * STABS_DEBUG |
| 37 | * DWARF_DEBUG |
| 38 | * |
| 39 | * DISCARDS // must be the last |
| 40 | * } |
| 41 | * |
| 42 | * [__init_begin, __init_end] is the init section that may be freed after init |
| 43 | * // __init_begin and __init_end should be page aligned, so that we can |
| 44 | * // free the whole .init memory |
| 45 | * [_stext, _etext] is the text section |
| 46 | * [_sdata, _edata] is the data section |
| 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 | */ |
| 52 | |
| 53 | #ifndef LOAD_OFFSET |
| 54 | #define LOAD_OFFSET 0 |
| 55 | #endif |
| 56 | |
| 57 | /* Align . to a 8 byte boundary equals to maximum function alignment. */ |
| 58 | #define ALIGN_FUNCTION() . = ALIGN(8) |
| 59 | |
| 60 | /* |
| 61 | * LD_DEAD_CODE_DATA_ELIMINATION option enables -fdata-sections, which |
| 62 | * generates .data.identifier sections, which need to be pulled in with |
| 63 | * .data. We don't want to pull in .data..other sections, which Linux |
| 64 | * has defined. Same for text and bss. |
| 65 | * |
| 66 | * RODATA_MAIN is not used because existing code already defines .rodata.x |
| 67 | * sections to be brought in with rodata. |
| 68 | */ |
| 69 | #ifdef CONFIG_LD_DEAD_CODE_DATA_ELIMINATION |
| 70 | #define TEXT_MAIN .text .text.[0-9a-zA-Z_]* |
| 71 | #define DATA_MAIN .data .data.[0-9a-zA-Z_]* .data..LPBX* |
| 72 | #define SDATA_MAIN .sdata .sdata.[0-9a-zA-Z_]* |
| 73 | #define RODATA_MAIN .rodata .rodata.[0-9a-zA-Z_]* |
| 74 | #define BSS_MAIN .bss .bss.[0-9a-zA-Z_]* |
| 75 | #define SBSS_MAIN .sbss .sbss.[0-9a-zA-Z_]* |
| 76 | #else |
| 77 | #define TEXT_MAIN .text |
| 78 | #define DATA_MAIN .data |
| 79 | #define SDATA_MAIN .sdata |
| 80 | #define RODATA_MAIN .rodata |
| 81 | #define BSS_MAIN .bss |
| 82 | #define SBSS_MAIN .sbss |
| 83 | #endif |
| 84 | |
| 85 | /* |
| 86 | * Align to a 32 byte boundary equal to the |
| 87 | * alignment gcc 4.5 uses for a struct |
| 88 | */ |
| 89 | #define STRUCT_ALIGNMENT 32 |
| 90 | #define STRUCT_ALIGN() . = ALIGN(STRUCT_ALIGNMENT) |
| 91 | |
| 92 | /* The actual configuration determine if the init/exit sections |
| 93 | * are handled as text/data or they can be discarded (which |
| 94 | * often happens at runtime) |
| 95 | */ |
| 96 | #ifdef CONFIG_HOTPLUG_CPU |
| 97 | #define CPU_KEEP(sec) *(.cpu##sec) |
| 98 | #define CPU_DISCARD(sec) |
| 99 | #else |
| 100 | #define CPU_KEEP(sec) |
| 101 | #define CPU_DISCARD(sec) *(.cpu##sec) |
| 102 | #endif |
| 103 | |
| 104 | #if defined(CONFIG_MEMORY_HOTPLUG) |
| 105 | #define MEM_KEEP(sec) *(.mem##sec) |
| 106 | #define MEM_DISCARD(sec) |
| 107 | #else |
| 108 | #define MEM_KEEP(sec) |
| 109 | #define MEM_DISCARD(sec) *(.mem##sec) |
| 110 | #endif |
| 111 | |
| 112 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 113 | #ifdef CC_USING_PATCHABLE_FUNCTION_ENTRY |
| 114 | #define MCOUNT_REC() . = ALIGN(8); \ |
| 115 | __start_mcount_loc = .; \ |
| 116 | KEEP(*(__patchable_function_entries)) \ |
| 117 | __stop_mcount_loc = .; |
| 118 | #else |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 119 | #define MCOUNT_REC() . = ALIGN(8); \ |
| 120 | __start_mcount_loc = .; \ |
| 121 | KEEP(*(__mcount_loc)) \ |
| 122 | __stop_mcount_loc = .; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 123 | #endif |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 124 | #else |
| 125 | #define MCOUNT_REC() |
| 126 | #endif |
| 127 | |
| 128 | #ifdef CONFIG_TRACE_BRANCH_PROFILING |
| 129 | #define LIKELY_PROFILE() __start_annotated_branch_profile = .; \ |
| 130 | KEEP(*(_ftrace_annotated_branch)) \ |
| 131 | __stop_annotated_branch_profile = .; |
| 132 | #else |
| 133 | #define LIKELY_PROFILE() |
| 134 | #endif |
| 135 | |
| 136 | #ifdef CONFIG_PROFILE_ALL_BRANCHES |
| 137 | #define BRANCH_PROFILE() __start_branch_profile = .; \ |
| 138 | KEEP(*(_ftrace_branch)) \ |
| 139 | __stop_branch_profile = .; |
| 140 | #else |
| 141 | #define BRANCH_PROFILE() |
| 142 | #endif |
| 143 | |
| 144 | #ifdef CONFIG_KPROBES |
| 145 | #define KPROBE_BLACKLIST() . = ALIGN(8); \ |
| 146 | __start_kprobe_blacklist = .; \ |
| 147 | KEEP(*(_kprobe_blacklist)) \ |
| 148 | __stop_kprobe_blacklist = .; |
| 149 | #else |
| 150 | #define KPROBE_BLACKLIST() |
| 151 | #endif |
| 152 | |
| 153 | #ifdef CONFIG_FUNCTION_ERROR_INJECTION |
| 154 | #define ERROR_INJECT_WHITELIST() STRUCT_ALIGN(); \ |
| 155 | __start_error_injection_whitelist = .; \ |
| 156 | KEEP(*(_error_injection_whitelist)) \ |
| 157 | __stop_error_injection_whitelist = .; |
| 158 | #else |
| 159 | #define ERROR_INJECT_WHITELIST() |
| 160 | #endif |
| 161 | |
| 162 | #ifdef CONFIG_EVENT_TRACING |
| 163 | #define FTRACE_EVENTS() . = ALIGN(8); \ |
| 164 | __start_ftrace_events = .; \ |
| 165 | KEEP(*(_ftrace_events)) \ |
| 166 | __stop_ftrace_events = .; \ |
| 167 | __start_ftrace_eval_maps = .; \ |
| 168 | KEEP(*(_ftrace_eval_map)) \ |
| 169 | __stop_ftrace_eval_maps = .; |
| 170 | #else |
| 171 | #define FTRACE_EVENTS() |
| 172 | #endif |
| 173 | |
| 174 | #ifdef CONFIG_TRACING |
| 175 | #define TRACE_PRINTKS() __start___trace_bprintk_fmt = .; \ |
| 176 | KEEP(*(__trace_printk_fmt)) /* Trace_printk fmt' pointer */ \ |
| 177 | __stop___trace_bprintk_fmt = .; |
| 178 | #define TRACEPOINT_STR() __start___tracepoint_str = .; \ |
| 179 | KEEP(*(__tracepoint_str)) /* Trace_printk fmt' pointer */ \ |
| 180 | __stop___tracepoint_str = .; |
| 181 | #else |
| 182 | #define TRACE_PRINTKS() |
| 183 | #define TRACEPOINT_STR() |
| 184 | #endif |
| 185 | |
| 186 | #ifdef CONFIG_FTRACE_SYSCALLS |
| 187 | #define TRACE_SYSCALLS() . = ALIGN(8); \ |
| 188 | __start_syscalls_metadata = .; \ |
| 189 | KEEP(*(__syscalls_metadata)) \ |
| 190 | __stop_syscalls_metadata = .; |
| 191 | #else |
| 192 | #define TRACE_SYSCALLS() |
| 193 | #endif |
| 194 | |
| 195 | #ifdef CONFIG_BPF_EVENTS |
| 196 | #define BPF_RAW_TP() STRUCT_ALIGN(); \ |
| 197 | __start__bpf_raw_tp = .; \ |
| 198 | KEEP(*(__bpf_raw_tp_map)) \ |
| 199 | __stop__bpf_raw_tp = .; |
| 200 | #else |
| 201 | #define BPF_RAW_TP() |
| 202 | #endif |
| 203 | |
| 204 | #ifdef CONFIG_SERIAL_EARLYCON |
| 205 | #define EARLYCON_TABLE() . = ALIGN(8); \ |
| 206 | __earlycon_table = .; \ |
| 207 | KEEP(*(__earlycon_table)) \ |
| 208 | __earlycon_table_end = .; |
| 209 | #else |
| 210 | #define EARLYCON_TABLE() |
| 211 | #endif |
| 212 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 213 | #ifdef CONFIG_SECURITY |
| 214 | #define LSM_TABLE() . = ALIGN(8); \ |
| 215 | __start_lsm_info = .; \ |
| 216 | KEEP(*(.lsm_info.init)) \ |
| 217 | __end_lsm_info = .; |
| 218 | #define EARLY_LSM_TABLE() . = ALIGN(8); \ |
| 219 | __start_early_lsm_info = .; \ |
| 220 | KEEP(*(.early_lsm_info.init)) \ |
| 221 | __end_early_lsm_info = .; |
| 222 | #else |
| 223 | #define LSM_TABLE() |
| 224 | #define EARLY_LSM_TABLE() |
| 225 | #endif |
| 226 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 227 | #define ___OF_TABLE(cfg, name) _OF_TABLE_##cfg(name) |
| 228 | #define __OF_TABLE(cfg, name) ___OF_TABLE(cfg, name) |
| 229 | #define OF_TABLE(cfg, name) __OF_TABLE(IS_ENABLED(cfg), name) |
| 230 | #define _OF_TABLE_0(name) |
| 231 | #define _OF_TABLE_1(name) \ |
| 232 | . = ALIGN(8); \ |
| 233 | __##name##_of_table = .; \ |
| 234 | KEEP(*(__##name##_of_table)) \ |
| 235 | KEEP(*(__##name##_of_table_end)) |
| 236 | |
| 237 | #define TIMER_OF_TABLES() OF_TABLE(CONFIG_TIMER_OF, timer) |
| 238 | #define IRQCHIP_OF_MATCH_TABLE() OF_TABLE(CONFIG_IRQCHIP, irqchip) |
| 239 | #define CLK_OF_TABLES() OF_TABLE(CONFIG_COMMON_CLK, clk) |
| 240 | #define RESERVEDMEM_OF_TABLES() OF_TABLE(CONFIG_OF_RESERVED_MEM, reservedmem) |
| 241 | #define CPU_METHOD_OF_TABLES() OF_TABLE(CONFIG_SMP, cpu_method) |
| 242 | #define CPUIDLE_METHOD_OF_TABLES() OF_TABLE(CONFIG_CPU_IDLE, cpuidle_method) |
| 243 | |
| 244 | #ifdef CONFIG_ACPI |
| 245 | #define ACPI_PROBE_TABLE(name) \ |
| 246 | . = ALIGN(8); \ |
| 247 | __##name##_acpi_probe_table = .; \ |
| 248 | KEEP(*(__##name##_acpi_probe_table)) \ |
| 249 | __##name##_acpi_probe_table_end = .; |
| 250 | #else |
| 251 | #define ACPI_PROBE_TABLE(name) |
| 252 | #endif |
| 253 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 254 | #ifdef CONFIG_THERMAL |
| 255 | #define THERMAL_TABLE(name) \ |
| 256 | . = ALIGN(8); \ |
| 257 | __##name##_thermal_table = .; \ |
| 258 | KEEP(*(__##name##_thermal_table)) \ |
| 259 | __##name##_thermal_table_end = .; |
| 260 | #else |
| 261 | #define THERMAL_TABLE(name) |
| 262 | #endif |
| 263 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 264 | #define KERNEL_DTB() \ |
| 265 | STRUCT_ALIGN(); \ |
| 266 | __dtb_start = .; \ |
| 267 | KEEP(*(.dtb.init.rodata)) \ |
| 268 | __dtb_end = .; |
| 269 | |
| 270 | /* |
| 271 | * .data section |
| 272 | */ |
| 273 | #define DATA_DATA \ |
| 274 | *(.xiptext) \ |
| 275 | *(DATA_MAIN) \ |
| 276 | *(.ref.data) \ |
| 277 | *(.data..shared_aligned) /* percpu related */ \ |
| 278 | MEM_KEEP(init.data*) \ |
| 279 | MEM_KEEP(exit.data*) \ |
| 280 | *(.data.unlikely) \ |
| 281 | __start_once = .; \ |
| 282 | *(.data.once) \ |
| 283 | __end_once = .; \ |
| 284 | STRUCT_ALIGN(); \ |
| 285 | *(__tracepoints) \ |
| 286 | /* implement dynamic printk debug */ \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 287 | . = ALIGN(8); \ |
| 288 | __start___verbose = .; \ |
| 289 | KEEP(*(__verbose)) \ |
| 290 | __stop___verbose = .; \ |
| 291 | LIKELY_PROFILE() \ |
| 292 | BRANCH_PROFILE() \ |
| 293 | TRACE_PRINTKS() \ |
| 294 | BPF_RAW_TP() \ |
| 295 | TRACEPOINT_STR() |
| 296 | |
| 297 | /* |
| 298 | * Data section helpers |
| 299 | */ |
| 300 | #define NOSAVE_DATA \ |
| 301 | . = ALIGN(PAGE_SIZE); \ |
| 302 | __nosave_begin = .; \ |
| 303 | *(.data..nosave) \ |
| 304 | . = ALIGN(PAGE_SIZE); \ |
| 305 | __nosave_end = .; |
| 306 | |
| 307 | #define PAGE_ALIGNED_DATA(page_align) \ |
| 308 | . = ALIGN(page_align); \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 309 | *(.data..page_aligned) \ |
| 310 | . = ALIGN(page_align); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 311 | |
| 312 | #define READ_MOSTLY_DATA(align) \ |
| 313 | . = ALIGN(align); \ |
| 314 | *(.data..read_mostly) \ |
| 315 | . = ALIGN(align); |
| 316 | |
| 317 | #define CACHELINE_ALIGNED_DATA(align) \ |
| 318 | . = ALIGN(align); \ |
| 319 | *(.data..cacheline_aligned) |
| 320 | |
| 321 | #define INIT_TASK_DATA(align) \ |
| 322 | . = ALIGN(align); \ |
| 323 | __start_init_task = .; \ |
| 324 | init_thread_union = .; \ |
| 325 | init_stack = .; \ |
| 326 | KEEP(*(.data..init_task)) \ |
| 327 | KEEP(*(.data..init_thread_info)) \ |
| 328 | . = __start_init_task + THREAD_SIZE; \ |
| 329 | __end_init_task = .; |
| 330 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 331 | #define JUMP_TABLE_DATA \ |
| 332 | . = ALIGN(8); \ |
| 333 | __start___jump_table = .; \ |
| 334 | KEEP(*(__jump_table)) \ |
| 335 | __stop___jump_table = .; |
| 336 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 337 | /* |
| 338 | * Allow architectures to handle ro_after_init data on their |
| 339 | * own by defining an empty RO_AFTER_INIT_DATA. |
| 340 | */ |
| 341 | #ifndef RO_AFTER_INIT_DATA |
| 342 | #define RO_AFTER_INIT_DATA \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 343 | . = ALIGN(8); \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 344 | __start_ro_after_init = .; \ |
| 345 | *(.data..ro_after_init) \ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 346 | JUMP_TABLE_DATA \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 347 | __end_ro_after_init = .; |
| 348 | #endif |
| 349 | |
| 350 | /* |
| 351 | * Read only Data |
| 352 | */ |
| 353 | #define RO_DATA_SECTION(align) \ |
| 354 | . = ALIGN((align)); \ |
| 355 | .rodata : AT(ADDR(.rodata) - LOAD_OFFSET) { \ |
| 356 | __start_rodata = .; \ |
| 357 | *(.rodata) *(.rodata.*) \ |
| 358 | RO_AFTER_INIT_DATA /* Read only after init */ \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 359 | . = ALIGN(8); \ |
| 360 | __start___tracepoints_ptrs = .; \ |
| 361 | KEEP(*(__tracepoints_ptrs)) /* Tracepoints: pointer array */ \ |
| 362 | __stop___tracepoints_ptrs = .; \ |
| 363 | *(__tracepoints_strings)/* Tracepoints: strings */ \ |
| 364 | } \ |
| 365 | \ |
| 366 | .rodata1 : AT(ADDR(.rodata1) - LOAD_OFFSET) { \ |
| 367 | *(.rodata1) \ |
| 368 | } \ |
| 369 | \ |
| 370 | /* PCI quirks */ \ |
| 371 | .pci_fixup : AT(ADDR(.pci_fixup) - LOAD_OFFSET) { \ |
| 372 | __start_pci_fixups_early = .; \ |
| 373 | KEEP(*(.pci_fixup_early)) \ |
| 374 | __end_pci_fixups_early = .; \ |
| 375 | __start_pci_fixups_header = .; \ |
| 376 | KEEP(*(.pci_fixup_header)) \ |
| 377 | __end_pci_fixups_header = .; \ |
| 378 | __start_pci_fixups_final = .; \ |
| 379 | KEEP(*(.pci_fixup_final)) \ |
| 380 | __end_pci_fixups_final = .; \ |
| 381 | __start_pci_fixups_enable = .; \ |
| 382 | KEEP(*(.pci_fixup_enable)) \ |
| 383 | __end_pci_fixups_enable = .; \ |
| 384 | __start_pci_fixups_resume = .; \ |
| 385 | KEEP(*(.pci_fixup_resume)) \ |
| 386 | __end_pci_fixups_resume = .; \ |
| 387 | __start_pci_fixups_resume_early = .; \ |
| 388 | KEEP(*(.pci_fixup_resume_early)) \ |
| 389 | __end_pci_fixups_resume_early = .; \ |
| 390 | __start_pci_fixups_suspend = .; \ |
| 391 | KEEP(*(.pci_fixup_suspend)) \ |
| 392 | __end_pci_fixups_suspend = .; \ |
| 393 | __start_pci_fixups_suspend_late = .; \ |
| 394 | KEEP(*(.pci_fixup_suspend_late)) \ |
| 395 | __end_pci_fixups_suspend_late = .; \ |
| 396 | } \ |
| 397 | \ |
| 398 | /* Built-in firmware blobs */ \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 399 | .builtin_fw : AT(ADDR(.builtin_fw) - LOAD_OFFSET) ALIGN(8) { \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 400 | __start_builtin_fw = .; \ |
| 401 | KEEP(*(.builtin_fw)) \ |
| 402 | __end_builtin_fw = .; \ |
| 403 | } \ |
| 404 | \ |
| 405 | TRACEDATA \ |
| 406 | \ |
| 407 | /* Kernel symbol table: Normal symbols */ \ |
| 408 | __ksymtab : AT(ADDR(__ksymtab) - LOAD_OFFSET) { \ |
| 409 | __start___ksymtab = .; \ |
| 410 | KEEP(*(SORT(___ksymtab+*))) \ |
| 411 | __stop___ksymtab = .; \ |
| 412 | } \ |
| 413 | \ |
| 414 | /* Kernel symbol table: GPL-only symbols */ \ |
| 415 | __ksymtab_gpl : AT(ADDR(__ksymtab_gpl) - LOAD_OFFSET) { \ |
| 416 | __start___ksymtab_gpl = .; \ |
| 417 | KEEP(*(SORT(___ksymtab_gpl+*))) \ |
| 418 | __stop___ksymtab_gpl = .; \ |
| 419 | } \ |
| 420 | \ |
| 421 | /* Kernel symbol table: Normal unused symbols */ \ |
| 422 | __ksymtab_unused : AT(ADDR(__ksymtab_unused) - LOAD_OFFSET) { \ |
| 423 | __start___ksymtab_unused = .; \ |
| 424 | KEEP(*(SORT(___ksymtab_unused+*))) \ |
| 425 | __stop___ksymtab_unused = .; \ |
| 426 | } \ |
| 427 | \ |
| 428 | /* Kernel symbol table: GPL-only unused symbols */ \ |
| 429 | __ksymtab_unused_gpl : AT(ADDR(__ksymtab_unused_gpl) - LOAD_OFFSET) { \ |
| 430 | __start___ksymtab_unused_gpl = .; \ |
| 431 | KEEP(*(SORT(___ksymtab_unused_gpl+*))) \ |
| 432 | __stop___ksymtab_unused_gpl = .; \ |
| 433 | } \ |
| 434 | \ |
| 435 | /* Kernel symbol table: GPL-future-only symbols */ \ |
| 436 | __ksymtab_gpl_future : AT(ADDR(__ksymtab_gpl_future) - LOAD_OFFSET) { \ |
| 437 | __start___ksymtab_gpl_future = .; \ |
| 438 | KEEP(*(SORT(___ksymtab_gpl_future+*))) \ |
| 439 | __stop___ksymtab_gpl_future = .; \ |
| 440 | } \ |
| 441 | \ |
| 442 | /* Kernel symbol table: Normal symbols */ \ |
| 443 | __kcrctab : AT(ADDR(__kcrctab) - LOAD_OFFSET) { \ |
| 444 | __start___kcrctab = .; \ |
| 445 | KEEP(*(SORT(___kcrctab+*))) \ |
| 446 | __stop___kcrctab = .; \ |
| 447 | } \ |
| 448 | \ |
| 449 | /* Kernel symbol table: GPL-only symbols */ \ |
| 450 | __kcrctab_gpl : AT(ADDR(__kcrctab_gpl) - LOAD_OFFSET) { \ |
| 451 | __start___kcrctab_gpl = .; \ |
| 452 | KEEP(*(SORT(___kcrctab_gpl+*))) \ |
| 453 | __stop___kcrctab_gpl = .; \ |
| 454 | } \ |
| 455 | \ |
| 456 | /* Kernel symbol table: Normal unused symbols */ \ |
| 457 | __kcrctab_unused : AT(ADDR(__kcrctab_unused) - LOAD_OFFSET) { \ |
| 458 | __start___kcrctab_unused = .; \ |
| 459 | KEEP(*(SORT(___kcrctab_unused+*))) \ |
| 460 | __stop___kcrctab_unused = .; \ |
| 461 | } \ |
| 462 | \ |
| 463 | /* Kernel symbol table: GPL-only unused symbols */ \ |
| 464 | __kcrctab_unused_gpl : AT(ADDR(__kcrctab_unused_gpl) - LOAD_OFFSET) { \ |
| 465 | __start___kcrctab_unused_gpl = .; \ |
| 466 | KEEP(*(SORT(___kcrctab_unused_gpl+*))) \ |
| 467 | __stop___kcrctab_unused_gpl = .; \ |
| 468 | } \ |
| 469 | \ |
| 470 | /* Kernel symbol table: GPL-future-only symbols */ \ |
| 471 | __kcrctab_gpl_future : AT(ADDR(__kcrctab_gpl_future) - LOAD_OFFSET) { \ |
| 472 | __start___kcrctab_gpl_future = .; \ |
| 473 | KEEP(*(SORT(___kcrctab_gpl_future+*))) \ |
| 474 | __stop___kcrctab_gpl_future = .; \ |
| 475 | } \ |
| 476 | \ |
| 477 | /* Kernel symbol table: strings */ \ |
| 478 | __ksymtab_strings : AT(ADDR(__ksymtab_strings) - LOAD_OFFSET) { \ |
| 479 | *(__ksymtab_strings) \ |
| 480 | } \ |
| 481 | \ |
| 482 | /* __*init sections */ \ |
| 483 | __init_rodata : AT(ADDR(__init_rodata) - LOAD_OFFSET) { \ |
| 484 | *(.ref.rodata) \ |
| 485 | MEM_KEEP(init.rodata) \ |
| 486 | MEM_KEEP(exit.rodata) \ |
| 487 | } \ |
| 488 | \ |
| 489 | /* Built-in module parameters. */ \ |
| 490 | __param : AT(ADDR(__param) - LOAD_OFFSET) { \ |
| 491 | __start___param = .; \ |
| 492 | KEEP(*(__param)) \ |
| 493 | __stop___param = .; \ |
| 494 | } \ |
| 495 | \ |
| 496 | /* Built-in module versions. */ \ |
| 497 | __modver : AT(ADDR(__modver) - LOAD_OFFSET) { \ |
| 498 | __start___modver = .; \ |
| 499 | KEEP(*(__modver)) \ |
| 500 | __stop___modver = .; \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 501 | } \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 502 | \ |
| 503 | BTF \ |
| 504 | \ |
| 505 | . = ALIGN((align)); \ |
| 506 | __end_rodata = .; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 507 | |
| 508 | /* RODATA & RO_DATA provided for backward compatibility. |
| 509 | * All archs are supposed to use RO_DATA() */ |
| 510 | #define RODATA RO_DATA_SECTION(4096) |
| 511 | #define RO_DATA(align) RO_DATA_SECTION(align) |
| 512 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 513 | /* |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 514 | * Non-instrumentable text section |
| 515 | */ |
| 516 | #define NOINSTR_TEXT \ |
| 517 | ALIGN_FUNCTION(); \ |
| 518 | __noinstr_text_start = .; \ |
| 519 | *(.noinstr.text) \ |
| 520 | __noinstr_text_end = .; |
| 521 | |
| 522 | /* |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 523 | * .text section. Map to function alignment to avoid address changes |
| 524 | * during second ld run in second ld pass when generating System.map |
| 525 | * |
| 526 | * TEXT_MAIN here will match .text.fixup and .text.unlikely if dead |
| 527 | * code elimination is enabled, so these sections should be converted |
| 528 | * to use ".." first. |
| 529 | */ |
| 530 | #define TEXT_TEXT \ |
| 531 | ALIGN_FUNCTION(); \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 532 | *(.text.hot .text.hot.*) \ |
| 533 | *(TEXT_MAIN .text.fixup) \ |
| 534 | *(.text.unlikely .text.unlikely.*) \ |
| 535 | *(.text.unknown .text.unknown.*) \ |
| 536 | NOINSTR_TEXT \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 537 | *(.text..refcount) \ |
| 538 | *(.ref.text) \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 539 | *(.text.asan.* .text.tsan.*) \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 540 | MEM_KEEP(init.text*) \ |
| 541 | MEM_KEEP(exit.text*) \ |
| 542 | |
| 543 | |
| 544 | /* sched.text is aling to function alignment to secure we have same |
| 545 | * address even at second ld pass when generating System.map */ |
| 546 | #define SCHED_TEXT \ |
| 547 | ALIGN_FUNCTION(); \ |
| 548 | __sched_text_start = .; \ |
| 549 | *(.sched.text) \ |
| 550 | __sched_text_end = .; |
| 551 | |
| 552 | /* spinlock.text is aling to function alignment to secure we have same |
| 553 | * address even at second ld pass when generating System.map */ |
| 554 | #define LOCK_TEXT \ |
| 555 | ALIGN_FUNCTION(); \ |
| 556 | __lock_text_start = .; \ |
| 557 | *(.spinlock.text) \ |
| 558 | __lock_text_end = .; |
| 559 | |
| 560 | #define CPUIDLE_TEXT \ |
| 561 | ALIGN_FUNCTION(); \ |
| 562 | __cpuidle_text_start = .; \ |
| 563 | *(.cpuidle.text) \ |
| 564 | __cpuidle_text_end = .; |
| 565 | |
| 566 | #define KPROBES_TEXT \ |
| 567 | ALIGN_FUNCTION(); \ |
| 568 | __kprobes_text_start = .; \ |
| 569 | *(.kprobes.text) \ |
| 570 | __kprobes_text_end = .; |
| 571 | |
| 572 | #define ENTRY_TEXT \ |
| 573 | ALIGN_FUNCTION(); \ |
| 574 | __entry_text_start = .; \ |
| 575 | *(.entry.text) \ |
| 576 | __entry_text_end = .; |
| 577 | |
| 578 | #define IRQENTRY_TEXT \ |
| 579 | ALIGN_FUNCTION(); \ |
| 580 | __irqentry_text_start = .; \ |
| 581 | *(.irqentry.text) \ |
| 582 | __irqentry_text_end = .; |
| 583 | |
| 584 | #define SOFTIRQENTRY_TEXT \ |
| 585 | ALIGN_FUNCTION(); \ |
| 586 | __softirqentry_text_start = .; \ |
| 587 | *(.softirqentry.text) \ |
| 588 | __softirqentry_text_end = .; |
| 589 | |
| 590 | /* Section used for early init (in .S files) */ |
| 591 | #define HEAD_TEXT KEEP(*(.head.text)) |
| 592 | |
| 593 | #define HEAD_TEXT_SECTION \ |
| 594 | .head.text : AT(ADDR(.head.text) - LOAD_OFFSET) { \ |
| 595 | HEAD_TEXT \ |
| 596 | } |
| 597 | |
| 598 | /* |
| 599 | * Exception table |
| 600 | */ |
| 601 | #define EXCEPTION_TABLE(align) \ |
| 602 | . = ALIGN(align); \ |
| 603 | __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { \ |
| 604 | __start___ex_table = .; \ |
| 605 | KEEP(*(__ex_table)) \ |
| 606 | __stop___ex_table = .; \ |
| 607 | } |
| 608 | |
| 609 | /* |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 610 | * .BTF |
| 611 | */ |
| 612 | #ifdef CONFIG_DEBUG_INFO_BTF |
| 613 | #define BTF \ |
| 614 | .BTF : AT(ADDR(.BTF) - LOAD_OFFSET) { \ |
| 615 | __start_BTF = .; \ |
| 616 | KEEP(*(.BTF)) \ |
| 617 | __stop_BTF = .; \ |
| 618 | } |
| 619 | #else |
| 620 | #define BTF |
| 621 | #endif |
| 622 | |
| 623 | /* |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 624 | * Init task |
| 625 | */ |
| 626 | #define INIT_TASK_DATA_SECTION(align) \ |
| 627 | . = ALIGN(align); \ |
| 628 | .data..init_task : AT(ADDR(.data..init_task) - LOAD_OFFSET) { \ |
| 629 | INIT_TASK_DATA(align) \ |
| 630 | } |
| 631 | |
| 632 | #ifdef CONFIG_CONSTRUCTORS |
| 633 | #define KERNEL_CTORS() . = ALIGN(8); \ |
| 634 | __ctors_start = .; \ |
| 635 | KEEP(*(.ctors)) \ |
| 636 | KEEP(*(SORT(.init_array.*))) \ |
| 637 | KEEP(*(.init_array)) \ |
| 638 | __ctors_end = .; |
| 639 | #else |
| 640 | #define KERNEL_CTORS() |
| 641 | #endif |
| 642 | |
| 643 | /* init and exit section handling */ |
| 644 | #define INIT_DATA \ |
| 645 | KEEP(*(SORT(___kentry+*))) \ |
| 646 | *(.init.data init.data.*) \ |
| 647 | MEM_DISCARD(init.data*) \ |
| 648 | KERNEL_CTORS() \ |
| 649 | MCOUNT_REC() \ |
| 650 | *(.init.rodata .init.rodata.*) \ |
| 651 | FTRACE_EVENTS() \ |
| 652 | TRACE_SYSCALLS() \ |
| 653 | KPROBE_BLACKLIST() \ |
| 654 | ERROR_INJECT_WHITELIST() \ |
| 655 | MEM_DISCARD(init.rodata) \ |
| 656 | CLK_OF_TABLES() \ |
| 657 | RESERVEDMEM_OF_TABLES() \ |
| 658 | TIMER_OF_TABLES() \ |
| 659 | CPU_METHOD_OF_TABLES() \ |
| 660 | CPUIDLE_METHOD_OF_TABLES() \ |
| 661 | KERNEL_DTB() \ |
| 662 | IRQCHIP_OF_MATCH_TABLE() \ |
| 663 | ACPI_PROBE_TABLE(irqchip) \ |
| 664 | ACPI_PROBE_TABLE(timer) \ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 665 | THERMAL_TABLE(governor) \ |
| 666 | EARLYCON_TABLE() \ |
| 667 | LSM_TABLE() \ |
| 668 | EARLY_LSM_TABLE() |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 669 | |
| 670 | #define INIT_TEXT \ |
| 671 | *(.init.text .init.text.*) \ |
| 672 | *(.text.startup) \ |
| 673 | MEM_DISCARD(init.text*) |
| 674 | |
| 675 | #define EXIT_DATA \ |
| 676 | *(.exit.data .exit.data.*) \ |
| 677 | *(.fini_array .fini_array.*) \ |
| 678 | *(.dtors .dtors.*) \ |
| 679 | MEM_DISCARD(exit.data*) \ |
| 680 | MEM_DISCARD(exit.rodata*) |
| 681 | |
| 682 | #define EXIT_TEXT \ |
| 683 | *(.exit.text) \ |
| 684 | *(.text.exit) \ |
| 685 | MEM_DISCARD(exit.text) |
| 686 | |
| 687 | #define EXIT_CALL \ |
| 688 | *(.exitcall.exit) |
| 689 | |
| 690 | /* |
| 691 | * bss (Block Started by Symbol) - uninitialized data |
| 692 | * zeroed during startup |
| 693 | */ |
| 694 | #define SBSS(sbss_align) \ |
| 695 | . = ALIGN(sbss_align); \ |
| 696 | .sbss : AT(ADDR(.sbss) - LOAD_OFFSET) { \ |
| 697 | *(.dynsbss) \ |
| 698 | *(SBSS_MAIN) \ |
| 699 | *(.scommon) \ |
| 700 | } |
| 701 | |
| 702 | /* |
| 703 | * Allow archectures to redefine BSS_FIRST_SECTIONS to add extra |
| 704 | * sections to the front of bss. |
| 705 | */ |
| 706 | #ifndef BSS_FIRST_SECTIONS |
| 707 | #define BSS_FIRST_SECTIONS |
| 708 | #endif |
| 709 | |
| 710 | #define BSS(bss_align) \ |
| 711 | . = ALIGN(bss_align); \ |
| 712 | .bss : AT(ADDR(.bss) - LOAD_OFFSET) { \ |
| 713 | BSS_FIRST_SECTIONS \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 714 | . = ALIGN(PAGE_SIZE); \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 715 | *(.bss..page_aligned) \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 716 | . = ALIGN(PAGE_SIZE); \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 717 | *(.dynbss) \ |
| 718 | *(BSS_MAIN) \ |
| 719 | *(COMMON) \ |
| 720 | } |
| 721 | |
| 722 | /* |
| 723 | * DWARF debug sections. |
| 724 | * Symbols in the DWARF debugging sections are relative to |
| 725 | * the beginning of the section so we begin them at 0. |
| 726 | */ |
| 727 | #define DWARF_DEBUG \ |
| 728 | /* DWARF 1 */ \ |
| 729 | .debug 0 : { *(.debug) } \ |
| 730 | .line 0 : { *(.line) } \ |
| 731 | /* GNU DWARF 1 extensions */ \ |
| 732 | .debug_srcinfo 0 : { *(.debug_srcinfo) } \ |
| 733 | .debug_sfnames 0 : { *(.debug_sfnames) } \ |
| 734 | /* DWARF 1.1 and DWARF 2 */ \ |
| 735 | .debug_aranges 0 : { *(.debug_aranges) } \ |
| 736 | .debug_pubnames 0 : { *(.debug_pubnames) } \ |
| 737 | /* DWARF 2 */ \ |
| 738 | .debug_info 0 : { *(.debug_info \ |
| 739 | .gnu.linkonce.wi.*) } \ |
| 740 | .debug_abbrev 0 : { *(.debug_abbrev) } \ |
| 741 | .debug_line 0 : { *(.debug_line) } \ |
| 742 | .debug_frame 0 : { *(.debug_frame) } \ |
| 743 | .debug_str 0 : { *(.debug_str) } \ |
| 744 | .debug_loc 0 : { *(.debug_loc) } \ |
| 745 | .debug_macinfo 0 : { *(.debug_macinfo) } \ |
| 746 | .debug_pubtypes 0 : { *(.debug_pubtypes) } \ |
| 747 | /* DWARF 3 */ \ |
| 748 | .debug_ranges 0 : { *(.debug_ranges) } \ |
| 749 | /* SGI/MIPS DWARF 2 extensions */ \ |
| 750 | .debug_weaknames 0 : { *(.debug_weaknames) } \ |
| 751 | .debug_funcnames 0 : { *(.debug_funcnames) } \ |
| 752 | .debug_typenames 0 : { *(.debug_typenames) } \ |
| 753 | .debug_varnames 0 : { *(.debug_varnames) } \ |
| 754 | /* GNU DWARF 2 extensions */ \ |
| 755 | .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } \ |
| 756 | .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } \ |
| 757 | /* DWARF 4 */ \ |
| 758 | .debug_types 0 : { *(.debug_types) } \ |
| 759 | /* DWARF 5 */ \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 760 | .debug_addr 0 : { *(.debug_addr) } \ |
| 761 | .debug_line_str 0 : { *(.debug_line_str) } \ |
| 762 | .debug_loclists 0 : { *(.debug_loclists) } \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 763 | .debug_macro 0 : { *(.debug_macro) } \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 764 | .debug_names 0 : { *(.debug_names) } \ |
| 765 | .debug_rnglists 0 : { *(.debug_rnglists) } \ |
| 766 | .debug_str_offsets 0 : { *(.debug_str_offsets) } |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 767 | |
| 768 | /* Stabs debugging sections. */ |
| 769 | #define STABS_DEBUG \ |
| 770 | .stab 0 : { *(.stab) } \ |
| 771 | .stabstr 0 : { *(.stabstr) } \ |
| 772 | .stab.excl 0 : { *(.stab.excl) } \ |
| 773 | .stab.exclstr 0 : { *(.stab.exclstr) } \ |
| 774 | .stab.index 0 : { *(.stab.index) } \ |
| 775 | .stab.indexstr 0 : { *(.stab.indexstr) } \ |
| 776 | .comment 0 : { *(.comment) } |
| 777 | |
| 778 | #ifdef CONFIG_GENERIC_BUG |
| 779 | #define BUG_TABLE \ |
| 780 | . = ALIGN(8); \ |
| 781 | __bug_table : AT(ADDR(__bug_table) - LOAD_OFFSET) { \ |
| 782 | __start___bug_table = .; \ |
| 783 | KEEP(*(__bug_table)) \ |
| 784 | __stop___bug_table = .; \ |
| 785 | } |
| 786 | #else |
| 787 | #define BUG_TABLE |
| 788 | #endif |
| 789 | |
| 790 | #ifdef CONFIG_UNWINDER_ORC |
| 791 | #define ORC_UNWIND_TABLE \ |
| 792 | . = ALIGN(4); \ |
| 793 | .orc_unwind_ip : AT(ADDR(.orc_unwind_ip) - LOAD_OFFSET) { \ |
| 794 | __start_orc_unwind_ip = .; \ |
| 795 | KEEP(*(.orc_unwind_ip)) \ |
| 796 | __stop_orc_unwind_ip = .; \ |
| 797 | } \ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 798 | . = ALIGN(2); \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 799 | .orc_unwind : AT(ADDR(.orc_unwind) - LOAD_OFFSET) { \ |
| 800 | __start_orc_unwind = .; \ |
| 801 | KEEP(*(.orc_unwind)) \ |
| 802 | __stop_orc_unwind = .; \ |
| 803 | } \ |
| 804 | . = ALIGN(4); \ |
| 805 | .orc_lookup : AT(ADDR(.orc_lookup) - LOAD_OFFSET) { \ |
| 806 | orc_lookup = .; \ |
| 807 | . += (((SIZEOF(.text) + LOOKUP_BLOCK_SIZE - 1) / \ |
| 808 | LOOKUP_BLOCK_SIZE) + 1) * 4; \ |
| 809 | orc_lookup_end = .; \ |
| 810 | } |
| 811 | #else |
| 812 | #define ORC_UNWIND_TABLE |
| 813 | #endif |
| 814 | |
| 815 | #ifdef CONFIG_PM_TRACE |
| 816 | #define TRACEDATA \ |
| 817 | . = ALIGN(4); \ |
| 818 | .tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) { \ |
| 819 | __tracedata_start = .; \ |
| 820 | KEEP(*(.tracedata)) \ |
| 821 | __tracedata_end = .; \ |
| 822 | } |
| 823 | #else |
| 824 | #define TRACEDATA |
| 825 | #endif |
| 826 | |
| 827 | #define NOTES \ |
| 828 | .notes : AT(ADDR(.notes) - LOAD_OFFSET) { \ |
| 829 | __start_notes = .; \ |
| 830 | KEEP(*(.note.*)) \ |
| 831 | __stop_notes = .; \ |
| 832 | } |
| 833 | |
| 834 | #define INIT_SETUP(initsetup_align) \ |
| 835 | . = ALIGN(initsetup_align); \ |
| 836 | __setup_start = .; \ |
| 837 | KEEP(*(.init.setup)) \ |
| 838 | __setup_end = .; |
| 839 | |
| 840 | #define INIT_CALLS_LEVEL(level) \ |
| 841 | __initcall##level##_start = .; \ |
| 842 | KEEP(*(.initcall##level##.init)) \ |
| 843 | KEEP(*(.initcall##level##s.init)) \ |
| 844 | |
| 845 | #define INIT_CALLS \ |
| 846 | __initcall_start = .; \ |
| 847 | KEEP(*(.initcallearly.init)) \ |
| 848 | INIT_CALLS_LEVEL(0) \ |
| 849 | INIT_CALLS_LEVEL(1) \ |
| 850 | INIT_CALLS_LEVEL(2) \ |
| 851 | INIT_CALLS_LEVEL(3) \ |
| 852 | INIT_CALLS_LEVEL(4) \ |
| 853 | INIT_CALLS_LEVEL(5) \ |
| 854 | INIT_CALLS_LEVEL(rootfs) \ |
| 855 | INIT_CALLS_LEVEL(6) \ |
| 856 | INIT_CALLS_LEVEL(7) \ |
| 857 | __initcall_end = .; |
| 858 | |
| 859 | #define CON_INITCALL \ |
| 860 | __con_initcall_start = .; \ |
| 861 | KEEP(*(.con_initcall.init)) \ |
| 862 | __con_initcall_end = .; |
| 863 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 864 | #ifdef CONFIG_BLK_DEV_INITRD |
| 865 | #define INIT_RAM_FS \ |
| 866 | . = ALIGN(4); \ |
| 867 | __initramfs_start = .; \ |
| 868 | KEEP(*(.init.ramfs)) \ |
| 869 | . = ALIGN(8); \ |
| 870 | KEEP(*(.init.ramfs.info)) |
| 871 | #else |
| 872 | #define INIT_RAM_FS |
| 873 | #endif |
| 874 | |
| 875 | /* |
| 876 | * Memory encryption operates on a page basis. Since we need to clear |
| 877 | * the memory encryption mask for this section, it needs to be aligned |
| 878 | * on a page boundary and be a page-size multiple in length. |
| 879 | * |
| 880 | * Note: We use a separate section so that only this section gets |
| 881 | * decrypted to avoid exposing more than we wish. |
| 882 | */ |
| 883 | #ifdef CONFIG_AMD_MEM_ENCRYPT |
| 884 | #define PERCPU_DECRYPTED_SECTION \ |
| 885 | . = ALIGN(PAGE_SIZE); \ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame^] | 886 | *(.data..decrypted) \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 887 | *(.data..percpu..decrypted) \ |
| 888 | . = ALIGN(PAGE_SIZE); |
| 889 | #else |
| 890 | #define PERCPU_DECRYPTED_SECTION |
| 891 | #endif |
| 892 | |
| 893 | |
| 894 | /* |
| 895 | * Default discarded sections. |
| 896 | * |
| 897 | * Some archs want to discard exit text/data at runtime rather than |
| 898 | * link time due to cross-section references such as alt instructions, |
| 899 | * bug table, eh_frame, etc. DISCARDS must be the last of output |
| 900 | * section definitions so that such archs put those in earlier section |
| 901 | * definitions. |
| 902 | */ |
| 903 | #define DISCARDS \ |
| 904 | /DISCARD/ : { \ |
| 905 | EXIT_TEXT \ |
| 906 | EXIT_DATA \ |
| 907 | EXIT_CALL \ |
| 908 | *(.discard) \ |
| 909 | *(.discard.*) \ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 910 | *(.modinfo) \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 911 | } |
| 912 | |
| 913 | /** |
| 914 | * PERCPU_INPUT - the percpu input sections |
| 915 | * @cacheline: cacheline size |
| 916 | * |
| 917 | * The core percpu section names and core symbols which do not rely |
| 918 | * directly upon load addresses. |
| 919 | * |
| 920 | * @cacheline is used to align subsections to avoid false cacheline |
| 921 | * sharing between subsections for different purposes. |
| 922 | */ |
| 923 | #define PERCPU_INPUT(cacheline) \ |
| 924 | __per_cpu_start = .; \ |
| 925 | *(.data..percpu..first) \ |
| 926 | . = ALIGN(PAGE_SIZE); \ |
| 927 | *(.data..percpu..page_aligned) \ |
| 928 | . = ALIGN(cacheline); \ |
| 929 | *(.data..percpu..read_mostly) \ |
| 930 | . = ALIGN(cacheline); \ |
| 931 | *(.data..percpu) \ |
| 932 | *(.data..percpu..shared_aligned) \ |
| 933 | PERCPU_DECRYPTED_SECTION \ |
| 934 | __per_cpu_end = .; |
| 935 | |
| 936 | /** |
| 937 | * PERCPU_VADDR - define output section for percpu area |
| 938 | * @cacheline: cacheline size |
| 939 | * @vaddr: explicit base address (optional) |
| 940 | * @phdr: destination PHDR (optional) |
| 941 | * |
| 942 | * Macro which expands to output section for percpu area. |
| 943 | * |
| 944 | * @cacheline is used to align subsections to avoid false cacheline |
| 945 | * sharing between subsections for different purposes. |
| 946 | * |
| 947 | * If @vaddr is not blank, it specifies explicit base address and all |
| 948 | * percpu symbols will be offset from the given address. If blank, |
| 949 | * @vaddr always equals @laddr + LOAD_OFFSET. |
| 950 | * |
| 951 | * @phdr defines the output PHDR to use if not blank. Be warned that |
| 952 | * output PHDR is sticky. If @phdr is specified, the next output |
| 953 | * section in the linker script will go there too. @phdr should have |
| 954 | * a leading colon. |
| 955 | * |
| 956 | * Note that this macros defines __per_cpu_load as an absolute symbol. |
| 957 | * If there is no need to put the percpu section at a predetermined |
| 958 | * address, use PERCPU_SECTION. |
| 959 | */ |
| 960 | #define PERCPU_VADDR(cacheline, vaddr, phdr) \ |
| 961 | __per_cpu_load = .; \ |
| 962 | .data..percpu vaddr : AT(__per_cpu_load - LOAD_OFFSET) { \ |
| 963 | PERCPU_INPUT(cacheline) \ |
| 964 | } phdr \ |
| 965 | . = __per_cpu_load + SIZEOF(.data..percpu); |
| 966 | |
| 967 | /** |
| 968 | * PERCPU_SECTION - define output section for percpu area, simple version |
| 969 | * @cacheline: cacheline size |
| 970 | * |
| 971 | * Align to PAGE_SIZE and outputs output section for percpu area. This |
| 972 | * macro doesn't manipulate @vaddr or @phdr and __per_cpu_load and |
| 973 | * __per_cpu_start will be identical. |
| 974 | * |
| 975 | * This macro is equivalent to ALIGN(PAGE_SIZE); PERCPU_VADDR(@cacheline,,) |
| 976 | * except that __per_cpu_load is defined as a relative symbol against |
| 977 | * .data..percpu which is required for relocatable x86_32 configuration. |
| 978 | */ |
| 979 | #define PERCPU_SECTION(cacheline) \ |
| 980 | . = ALIGN(PAGE_SIZE); \ |
| 981 | .data..percpu : AT(ADDR(.data..percpu) - LOAD_OFFSET) { \ |
| 982 | __per_cpu_load = .; \ |
| 983 | PERCPU_INPUT(cacheline) \ |
| 984 | } |
| 985 | |
| 986 | |
| 987 | /* |
| 988 | * Definition of the high level *_SECTION macros |
| 989 | * They will fit only a subset of the architectures |
| 990 | */ |
| 991 | |
| 992 | |
| 993 | /* |
| 994 | * Writeable data. |
| 995 | * All sections are combined in a single .data section. |
| 996 | * The sections following CONSTRUCTORS are arranged so their |
| 997 | * typical alignment matches. |
| 998 | * A cacheline is typical/always less than a PAGE_SIZE so |
| 999 | * the sections that has this restriction (or similar) |
| 1000 | * is located before the ones requiring PAGE_SIZE alignment. |
| 1001 | * NOSAVE_DATA starts and ends with a PAGE_SIZE alignment which |
| 1002 | * matches the requirement of PAGE_ALIGNED_DATA. |
| 1003 | * |
| 1004 | * use 0 as page_align if page_aligned data is not used */ |
| 1005 | #define RW_DATA_SECTION(cacheline, pagealigned, inittask) \ |
| 1006 | . = ALIGN(PAGE_SIZE); \ |
| 1007 | .data : AT(ADDR(.data) - LOAD_OFFSET) { \ |
| 1008 | INIT_TASK_DATA(inittask) \ |
| 1009 | NOSAVE_DATA \ |
| 1010 | PAGE_ALIGNED_DATA(pagealigned) \ |
| 1011 | CACHELINE_ALIGNED_DATA(cacheline) \ |
| 1012 | READ_MOSTLY_DATA(cacheline) \ |
| 1013 | DATA_DATA \ |
| 1014 | CONSTRUCTORS \ |
| 1015 | } \ |
| 1016 | BUG_TABLE \ |
| 1017 | |
| 1018 | #define INIT_TEXT_SECTION(inittext_align) \ |
| 1019 | . = ALIGN(inittext_align); \ |
| 1020 | .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) { \ |
| 1021 | _sinittext = .; \ |
| 1022 | INIT_TEXT \ |
| 1023 | _einittext = .; \ |
| 1024 | } |
| 1025 | |
| 1026 | #define INIT_DATA_SECTION(initsetup_align) \ |
| 1027 | .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) { \ |
| 1028 | INIT_DATA \ |
| 1029 | INIT_SETUP(initsetup_align) \ |
| 1030 | INIT_CALLS \ |
| 1031 | CON_INITCALL \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1032 | INIT_RAM_FS \ |
| 1033 | } |
| 1034 | |
| 1035 | #define BSS_SECTION(sbss_align, bss_align, stop_align) \ |
| 1036 | . = ALIGN(sbss_align); \ |
| 1037 | __bss_start = .; \ |
| 1038 | SBSS(sbss_align) \ |
| 1039 | BSS(bss_align) \ |
| 1040 | . = ALIGN(stop_align); \ |
| 1041 | __bss_stop = .; |