1 /* SPDX-License-Identifier: GPL-2.0 */
3 #include <linux/pgtable.h>
5 #include <asm/ptrace.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) {
62 .text2 : AT(ADDR(.text2) - LOAD_OFFSET) {
67 .text..lock : AT(ADDR(.text..lock) - LOAD_OFFSET) {
79 __mca_table : AT(ADDR(__mca_table) - LOAD_OFFSET) {
80 __start___mca_table = .;
82 __stop___mca_table = .;
85 .data..patch.phys_stack_reg : AT(ADDR(.data..patch.phys_stack_reg) - LOAD_OFFSET) {
86 __start___phys_stack_reg_patchlist = .;
87 *(.data..patch.phys_stack_reg)
88 __end___phys_stack_reg_patchlist = .;
96 /* Unwind info & table: */
98 .IA_64.unwind_info : AT(ADDR(.IA_64.unwind_info) - LOAD_OFFSET) {
99 *(.IA_64.unwind_info*)
101 .IA_64.unwind : AT(ADDR(.IA_64.unwind) - LOAD_OFFSET) {
111 .opd : AT(ADDR(.opd) - LOAD_OFFSET) {
118 * Initialization code and data:
120 . = ALIGN(PAGE_SIZE);
123 INIT_TEXT_SECTION(PAGE_SIZE)
124 INIT_DATA_SECTION(16)
126 .data..patch.vtop : AT(ADDR(.data..patch.vtop) - LOAD_OFFSET) {
127 __start___vtop_patchlist = .;
129 __end___vtop_patchlist = .;
132 .data..patch.rse : AT(ADDR(.data..patch.rse) - LOAD_OFFSET) {
133 __start___rse_patchlist = .;
135 __end___rse_patchlist = .;
138 .data..patch.mckinley_e9 : AT(ADDR(.data..patch.mckinley_e9) - LOAD_OFFSET) {
139 __start___mckinley_e9_bundles = .;
140 *(.data..patch.mckinley_e9)
141 __end___mckinley_e9_bundles = .;
145 . = ALIGN(PERCPU_PAGE_SIZE);
147 . = . + PERCPU_PAGE_SIZE; /* cpu0 per-cpu space */
150 . = ALIGN(PAGE_SIZE);
153 .data..page_aligned : AT(ADDR(.data..page_aligned) - LOAD_OFFSET) {
154 PAGE_ALIGNED_DATA(PAGE_SIZE)
155 . = ALIGN(PAGE_SIZE);
156 __start_gate_section = .;
158 __stop_gate_section = .;
161 * make sure the gate page doesn't expose
164 . = ALIGN(PAGE_SIZE);
167 . = ALIGN(PERCPU_PAGE_SIZE);
168 PERCPU_VADDR(SMP_CACHE_BYTES, PERCPU_ADDR, :percpu)
169 __phys_per_cpu_start = __per_cpu_load;
171 * ensure percpu data fits
172 * into percpu page size
174 . = __phys_per_cpu_start + PERCPU_PAGE_SIZE;
178 .data : AT(ADDR(.data) - LOAD_OFFSET) {
180 INIT_TASK_DATA(PAGE_SIZE)
181 CACHELINE_ALIGNED_DATA(SMP_CACHE_BYTES)
182 READ_MOSTLY_DATA(SMP_CACHE_BYTES)
191 . = ALIGN(16); /* gp must be 16-byte aligned for exc. table */
192 .got : AT(ADDR(.got) - LOAD_OFFSET) {
196 __gp = ADDR(.got) + 0x200000;
199 * We want the small data sections together,
200 * so single-instruction offsets can access
201 * them all, and initialized data all before
202 * uninitialized, so we can shorten the
203 * on-disk segment size.
205 .sdata : AT(ADDR(.sdata) - LOAD_OFFSET) {
223 /* Default discards */