1 /* SPDX-License-Identifier: GPL-2.0 */
4 #include <asm/ptrace.h>
5 #include <asm/pgtable.h>
6 #include <asm/thread_info.h>
9 #define RO_EXCEPTION_TABLE_ALIGN 16
11 #include <asm-generic/vmlinux.lds.h>
13 OUTPUT_FORMAT("elf64-ia64-little")
23 unwind 0x70000001; /* PT_IA_64_UNWIND, but ld doesn't match the name */
28 * unwind exit sections must be discarded before
29 * the rest of the sections get included.
32 *(.IA_64.unwind.exit.text)
33 *(.IA_64.unwind_info.exit.text)
38 v = PAGE_OFFSET; /* this symbol is here to make debugging easier... */
39 phys_start = _start - LOAD_OFFSET;
48 .text : AT(ADDR(.text) - LOAD_OFFSET) {
60 .text2 : AT(ADDR(.text2) - LOAD_OFFSET) {
65 .text..lock : AT(ADDR(.text..lock) - LOAD_OFFSET) {
77 __mca_table : AT(ADDR(__mca_table) - LOAD_OFFSET) {
78 __start___mca_table = .;
80 __stop___mca_table = .;
83 .data..patch.phys_stack_reg : AT(ADDR(.data..patch.phys_stack_reg) - LOAD_OFFSET) {
84 __start___phys_stack_reg_patchlist = .;
85 *(.data..patch.phys_stack_reg)
86 __end___phys_stack_reg_patchlist = .;
94 /* Unwind info & table: */
96 .IA_64.unwind_info : AT(ADDR(.IA_64.unwind_info) - LOAD_OFFSET) {
97 *(.IA_64.unwind_info*)
99 .IA_64.unwind : AT(ADDR(.IA_64.unwind) - LOAD_OFFSET) {
109 .opd : AT(ADDR(.opd) - LOAD_OFFSET) {
116 * Initialization code and data:
118 . = ALIGN(PAGE_SIZE);
121 INIT_TEXT_SECTION(PAGE_SIZE)
122 INIT_DATA_SECTION(16)
124 .data..patch.vtop : AT(ADDR(.data..patch.vtop) - LOAD_OFFSET) {
125 __start___vtop_patchlist = .;
127 __end___vtop_patchlist = .;
130 .data..patch.rse : AT(ADDR(.data..patch.rse) - LOAD_OFFSET) {
131 __start___rse_patchlist = .;
133 __end___rse_patchlist = .;
136 .data..patch.mckinley_e9 : AT(ADDR(.data..patch.mckinley_e9) - LOAD_OFFSET) {
137 __start___mckinley_e9_bundles = .;
138 *(.data..patch.mckinley_e9)
139 __end___mckinley_e9_bundles = .;
143 . = ALIGN(PERCPU_PAGE_SIZE);
145 . = . + PERCPU_PAGE_SIZE; /* cpu0 per-cpu space */
148 . = ALIGN(PAGE_SIZE);
151 .data..page_aligned : AT(ADDR(.data..page_aligned) - LOAD_OFFSET) {
152 PAGE_ALIGNED_DATA(PAGE_SIZE)
153 . = ALIGN(PAGE_SIZE);
154 __start_gate_section = .;
156 __stop_gate_section = .;
159 * make sure the gate page doesn't expose
162 . = ALIGN(PAGE_SIZE);
165 . = ALIGN(PERCPU_PAGE_SIZE);
166 PERCPU_VADDR(SMP_CACHE_BYTES, PERCPU_ADDR, :percpu)
167 __phys_per_cpu_start = __per_cpu_load;
169 * ensure percpu data fits
170 * into percpu page size
172 . = __phys_per_cpu_start + PERCPU_PAGE_SIZE;
176 .data : AT(ADDR(.data) - LOAD_OFFSET) {
178 INIT_TASK_DATA(PAGE_SIZE)
179 CACHELINE_ALIGNED_DATA(SMP_CACHE_BYTES)
180 READ_MOSTLY_DATA(SMP_CACHE_BYTES)
189 . = ALIGN(16); /* gp must be 16-byte aligned for exc. table */
190 .got : AT(ADDR(.got) - LOAD_OFFSET) {
194 __gp = ADDR(.got) + 0x200000;
197 * We want the small data sections together,
198 * so single-instruction offsets can access
199 * them all, and initialized data all before
200 * uninitialized, so we can shorten the
201 * on-disk segment size.
203 .sdata : AT(ADDR(.sdata) - LOAD_OFFSET) {
220 /* Default discards */