1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Asm versions of Xen pv-ops, suitable for direct use.
5 * We only bother with direct forms (ie, vcpu in pda) of the
6 * operations here; the indirect forms are better handled in C.
10 #include <asm/percpu.h>
11 #include <asm/processor-flags.h>
12 #include <asm/segment.h>
13 #include <asm/asm-offsets.h>
14 #include <asm/thread_info.h>
16 #include <xen/interface/xen.h>
18 #include <linux/init.h>
19 #include <linux/linkage.h>
21 .macro xen_pv_trap name
29 xen_pv_trap divide_error
37 xen_pv_trap invalid_op
38 xen_pv_trap device_not_available
39 xen_pv_trap double_fault
40 xen_pv_trap coprocessor_segment_overrun
41 xen_pv_trap invalid_TSS
42 xen_pv_trap segment_not_present
43 xen_pv_trap stack_segment
44 xen_pv_trap general_protection
45 xen_pv_trap page_fault
46 xen_pv_trap spurious_interrupt_bug
47 xen_pv_trap coprocessor_error
48 xen_pv_trap alignment_check
50 xen_pv_trap machine_check
51 #endif /* CONFIG_X86_MCE */
52 xen_pv_trap simd_coprocessor_error
53 #ifdef CONFIG_IA32_EMULATION
54 xen_pv_trap entry_INT80_compat
56 xen_pv_trap hypervisor_callback
59 ENTRY(xen_early_idt_handler_array)
61 .rept NUM_EXCEPTION_VECTORS
64 jmp early_idt_handler_array + i*EARLY_IDT_HANDLER_SIZE
66 .fill xen_early_idt_handler_array + i*XEN_EARLY_IDT_HANDLER_SIZE - ., 1, 0xcc
68 END(xen_early_idt_handler_array)
71 hypercall_iret = hypercall_page + __HYPERVISOR_iret * 32
79 * rip <-- standard iret frame
84 * r11 }<-- pushed by hypercall page
93 * We're already on the usermode stack at this point, but
94 * still with the kernel gs, so we can easily switch back
96 movq %rsp, PER_CPU_VAR(rsp_scratch)
97 movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp
100 pushq PER_CPU_VAR(rsp_scratch)
105 pushq $VGCF_in_syscall
109 * Xen handles syscall callbacks much like ordinary exceptions, which
113 * - an iret-like stack frame on the stack (including rcx and r11):
123 /* Normal 64-bit system call target */
124 ENTRY(xen_syscall_target)
129 * Neither Xen nor the kernel really knows what the old SS and
130 * CS were. The kernel expects __USER_DS and __USER_CS, so
131 * report those values even though Xen will guess its own values.
133 movq $__USER_DS, 4*8(%rsp)
134 movq $__USER_CS, 1*8(%rsp)
136 jmp entry_SYSCALL_64_after_hwframe
137 ENDPROC(xen_syscall_target)
139 #ifdef CONFIG_IA32_EMULATION
141 /* 32-bit compat syscall target */
142 ENTRY(xen_syscall32_target)
147 * Neither Xen nor the kernel really knows what the old SS and
148 * CS were. The kernel expects __USER32_DS and __USER32_CS, so
149 * report those values even though Xen will guess its own values.
151 movq $__USER32_DS, 4*8(%rsp)
152 movq $__USER32_CS, 1*8(%rsp)
154 jmp entry_SYSCALL_compat_after_hwframe
155 ENDPROC(xen_syscall32_target)
157 /* 32-bit compat sysenter target */
158 ENTRY(xen_sysenter_target)
162 jmp entry_SYSENTER_compat
163 ENDPROC(xen_sysenter_target)
165 #else /* !CONFIG_IA32_EMULATION */
167 ENTRY(xen_syscall32_target)
168 ENTRY(xen_sysenter_target)
169 lea 16(%rsp), %rsp /* strip %rcx, %r11 */
173 ENDPROC(xen_syscall32_target)
174 ENDPROC(xen_sysenter_target)
176 #endif /* CONFIG_IA32_EMULATION */