kill dentry_update_name_case()
[sfrench/cifs-2.6.git] / arch / x86 / include / asm / kvm_para.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_KVM_PARA_H
3 #define _ASM_X86_KVM_PARA_H
4
5 #include <asm/processor.h>
6 #include <asm/alternative.h>
7 #include <uapi/asm/kvm_para.h>
8
9 extern void kvmclock_init(void);
10 extern int kvm_register_clock(char *txt);
11
12 #ifdef CONFIG_KVM_GUEST
13 bool kvm_check_and_clear_guest_paused(void);
14 #else
15 static inline bool kvm_check_and_clear_guest_paused(void)
16 {
17         return false;
18 }
19 #endif /* CONFIG_KVM_GUEST */
20
21 #define KVM_HYPERCALL \
22         ALTERNATIVE(".byte 0x0f,0x01,0xc1", ".byte 0x0f,0x01,0xd9", X86_FEATURE_VMMCALL)
23
24 /* For KVM hypercalls, a three-byte sequence of either the vmcall or the vmmcall
25  * instruction.  The hypervisor may replace it with something else but only the
26  * instructions are guaranteed to be supported.
27  *
28  * Up to four arguments may be passed in rbx, rcx, rdx, and rsi respectively.
29  * The hypercall number should be placed in rax and the return value will be
30  * placed in rax.  No other registers will be clobbered unless explicitly
31  * noted by the particular hypercall.
32  */
33
34 static inline long kvm_hypercall0(unsigned int nr)
35 {
36         long ret;
37         asm volatile(KVM_HYPERCALL
38                      : "=a"(ret)
39                      : "a"(nr)
40                      : "memory");
41         return ret;
42 }
43
44 static inline long kvm_hypercall1(unsigned int nr, unsigned long p1)
45 {
46         long ret;
47         asm volatile(KVM_HYPERCALL
48                      : "=a"(ret)
49                      : "a"(nr), "b"(p1)
50                      : "memory");
51         return ret;
52 }
53
54 static inline long kvm_hypercall2(unsigned int nr, unsigned long p1,
55                                   unsigned long p2)
56 {
57         long ret;
58         asm volatile(KVM_HYPERCALL
59                      : "=a"(ret)
60                      : "a"(nr), "b"(p1), "c"(p2)
61                      : "memory");
62         return ret;
63 }
64
65 static inline long kvm_hypercall3(unsigned int nr, unsigned long p1,
66                                   unsigned long p2, unsigned long p3)
67 {
68         long ret;
69         asm volatile(KVM_HYPERCALL
70                      : "=a"(ret)
71                      : "a"(nr), "b"(p1), "c"(p2), "d"(p3)
72                      : "memory");
73         return ret;
74 }
75
76 static inline long kvm_hypercall4(unsigned int nr, unsigned long p1,
77                                   unsigned long p2, unsigned long p3,
78                                   unsigned long p4)
79 {
80         long ret;
81         asm volatile(KVM_HYPERCALL
82                      : "=a"(ret)
83                      : "a"(nr), "b"(p1), "c"(p2), "d"(p3), "S"(p4)
84                      : "memory");
85         return ret;
86 }
87
88 #ifdef CONFIG_KVM_GUEST
89 bool kvm_para_available(void);
90 unsigned int kvm_arch_para_features(void);
91 unsigned int kvm_arch_para_hints(void);
92 void kvm_async_pf_task_wait(u32 token, int interrupt_kernel);
93 void kvm_async_pf_task_wake(u32 token);
94 u32 kvm_read_and_reset_pf_reason(void);
95 extern void kvm_disable_steal_time(void);
96
97 #ifdef CONFIG_PARAVIRT_SPINLOCKS
98 void __init kvm_spinlock_init(void);
99 #else /* !CONFIG_PARAVIRT_SPINLOCKS */
100 static inline void kvm_spinlock_init(void)
101 {
102 }
103 #endif /* CONFIG_PARAVIRT_SPINLOCKS */
104
105 #else /* CONFIG_KVM_GUEST */
106 #define kvm_async_pf_task_wait(T, I) do {} while(0)
107 #define kvm_async_pf_task_wake(T) do {} while(0)
108
109 static inline bool kvm_para_available(void)
110 {
111         return false;
112 }
113
114 static inline unsigned int kvm_arch_para_features(void)
115 {
116         return 0;
117 }
118
119 static inline unsigned int kvm_arch_para_hints(void)
120 {
121         return 0;
122 }
123
124 static inline u32 kvm_read_and_reset_pf_reason(void)
125 {
126         return 0;
127 }
128
129 static inline void kvm_disable_steal_time(void)
130 {
131         return;
132 }
133 #endif
134
135 #endif /* _ASM_X86_KVM_PARA_H */