1 #ifndef _ASM_X86_KVM_PARA_H
2 #define _ASM_X86_KVM_PARA_H
4 #include <asm/processor.h>
5 #include <uapi/asm/kvm_para.h>
7 extern void kvmclock_init(void);
8 extern int kvm_register_clock(char *txt
);
10 #ifdef CONFIG_KVM_GUEST
11 bool kvm_check_and_clear_guest_paused(void);
13 static inline bool kvm_check_and_clear_guest_paused(void)
17 #endif /* CONFIG_KVM_GUEST */
19 /* This instruction is vmcall. On non-VT architectures, it will generate a
20 * trap that we will then rewrite to the appropriate instruction.
22 #define KVM_HYPERCALL ".byte 0x0f,0x01,0xc1"
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.
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.
34 static inline long kvm_hypercall0(unsigned int nr
)
37 asm volatile(KVM_HYPERCALL
44 static inline long kvm_hypercall1(unsigned int nr
, unsigned long p1
)
47 asm volatile(KVM_HYPERCALL
54 static inline long kvm_hypercall2(unsigned int nr
, unsigned long p1
,
58 asm volatile(KVM_HYPERCALL
60 : "a"(nr
), "b"(p1
), "c"(p2
)
65 static inline long kvm_hypercall3(unsigned int nr
, unsigned long p1
,
66 unsigned long p2
, unsigned long p3
)
69 asm volatile(KVM_HYPERCALL
71 : "a"(nr
), "b"(p1
), "c"(p2
), "d"(p3
)
76 static inline long kvm_hypercall4(unsigned int nr
, unsigned long p1
,
77 unsigned long p2
, unsigned long p3
,
81 asm volatile(KVM_HYPERCALL
83 : "a"(nr
), "b"(p1
), "c"(p2
), "d"(p3
), "S"(p4
)
88 static inline bool kvm_para_available(void)
90 unsigned int eax
, ebx
, ecx
, edx
;
93 if (boot_cpu_data
.cpuid_level
< 0)
94 return false; /* So we don't blow up on old processors */
96 if (cpu_has_hypervisor
) {
97 cpuid(KVM_CPUID_SIGNATURE
, &eax
, &ebx
, &ecx
, &edx
);
98 memcpy(signature
+ 0, &ebx
, 4);
99 memcpy(signature
+ 4, &ecx
, 4);
100 memcpy(signature
+ 8, &edx
, 4);
103 if (strcmp(signature
, "KVMKVMKVM") == 0)
110 static inline unsigned int kvm_arch_para_features(void)
112 return cpuid_eax(KVM_CPUID_FEATURES
);
115 #ifdef CONFIG_KVM_GUEST
116 void __init
kvm_guest_init(void);
117 void kvm_async_pf_task_wait(u32 token
);
118 void kvm_async_pf_task_wake(u32 token
);
119 u32
kvm_read_and_reset_pf_reason(void);
120 extern void kvm_disable_steal_time(void);
122 #define kvm_guest_init() do { } while (0)
123 #define kvm_async_pf_task_wait(T) do {} while(0)
124 #define kvm_async_pf_task_wake(T) do {} while(0)
125 static inline u32
kvm_read_and_reset_pf_reason(void)
130 static inline void kvm_disable_steal_time(void)
136 #endif /* _ASM_X86_KVM_PARA_H */