blob: c1adf33fdd0d6f70f055b9a056bc7787bda7635e [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_KVM_PARA_H
2#define _ASM_X86_KVM_PARA_H
Christian Borntraeger5f432382007-10-11 15:34:17 +02003
Christian Borntraeger5f432382007-10-11 15:34:17 +02004#include <asm/processor.h>
Paolo Bonzinic1118b32014-09-22 13:17:48 +02005#include <asm/alternative.h>
David Howellsaf170c52012-12-14 22:37:13 +00006#include <uapi/asm/kvm_para.h>
Christian Borntraeger5f432382007-10-11 15:34:17 +02007
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02008extern void kvmclock_init(void);
Gleb Natapovca3f1012010-10-14 11:22:49 +02009extern int kvm_register_clock(char *txt);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020010
Marcelo Tosatti90993cd2012-08-16 17:00:19 -030011#ifdef CONFIG_KVM_GUEST
Eric B Munson3b5d56b2012-03-10 14:37:26 -050012bool kvm_check_and_clear_guest_paused(void);
13#else
14static inline bool kvm_check_and_clear_guest_paused(void)
15{
16 return false;
17}
Marcelo Tosatti90993cd2012-08-16 17:00:19 -030018#endif /* CONFIG_KVM_GUEST */
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020019
Paolo Bonzinic1118b32014-09-22 13:17:48 +020020#ifdef CONFIG_DEBUG_RODATA
21#define KVM_HYPERCALL \
22 ALTERNATIVE(".byte 0x0f,0x01,0xc1", ".byte 0x0f,0x01,0xd9", X86_FEATURE_VMMCALL)
23#else
24/* On AMD processors, vmcall will generate a trap that we will
25 * then rewrite to the appropriate instruction.
Christian Borntraeger5f432382007-10-11 15:34:17 +020026 */
27#define KVM_HYPERCALL ".byte 0x0f,0x01,0xc1"
Paolo Bonzinic1118b32014-09-22 13:17:48 +020028#endif
Christian Borntraeger5f432382007-10-11 15:34:17 +020029
Raghavendra K Te423ca12012-08-07 13:10:13 +053030/* For KVM hypercalls, a three-byte sequence of either the vmcall or the vmmcall
Christian Borntraeger5f432382007-10-11 15:34:17 +020031 * instruction. The hypervisor may replace it with something else but only the
32 * instructions are guaranteed to be supported.
33 *
34 * Up to four arguments may be passed in rbx, rcx, rdx, and rsi respectively.
35 * The hypercall number should be placed in rax and the return value will be
Jesse Larrew11393a02012-12-10 15:31:51 -060036 * placed in rax. No other registers will be clobbered unless explicitly
Christian Borntraeger5f432382007-10-11 15:34:17 +020037 * noted by the particular hypercall.
38 */
39
40static inline long kvm_hypercall0(unsigned int nr)
41{
42 long ret;
43 asm volatile(KVM_HYPERCALL
44 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030045 : "a"(nr)
46 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020047 return ret;
48}
49
50static inline long kvm_hypercall1(unsigned int nr, unsigned long p1)
51{
52 long ret;
53 asm volatile(KVM_HYPERCALL
54 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030055 : "a"(nr), "b"(p1)
56 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020057 return ret;
58}
59
60static inline long kvm_hypercall2(unsigned int nr, unsigned long p1,
61 unsigned long p2)
62{
63 long ret;
64 asm volatile(KVM_HYPERCALL
65 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030066 : "a"(nr), "b"(p1), "c"(p2)
67 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020068 return ret;
69}
70
71static inline long kvm_hypercall3(unsigned int nr, unsigned long p1,
72 unsigned long p2, unsigned long p3)
73{
74 long ret;
75 asm volatile(KVM_HYPERCALL
76 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030077 : "a"(nr), "b"(p1), "c"(p2), "d"(p3)
78 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020079 return ret;
80}
81
82static inline long kvm_hypercall4(unsigned int nr, unsigned long p1,
83 unsigned long p2, unsigned long p3,
84 unsigned long p4)
85{
86 long ret;
87 asm volatile(KVM_HYPERCALL
88 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030089 : "a"(nr), "b"(p1), "c"(p2), "d"(p3), "S"(p4)
90 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020091 return ret;
92}
93
Alexander Grafba492962010-07-29 14:47:56 +020094#ifdef CONFIG_KVM_GUEST
Paolo Bonzini1c300a42014-01-27 14:49:40 +010095bool kvm_para_available(void);
Paolo Bonzini77f01bd2014-01-27 14:51:44 +010096unsigned int kvm_arch_para_features(void);
Alexander Grafba492962010-07-29 14:47:56 +020097void __init kvm_guest_init(void);
Gleb Natapov631bc482010-10-14 11:22:52 +020098void kvm_async_pf_task_wait(u32 token);
99void kvm_async_pf_task_wake(u32 token);
100u32 kvm_read_and_reset_pf_reason(void);
Glauber Costad910f5c2011-07-11 15:28:19 -0400101extern void kvm_disable_steal_time(void);
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +0530102
103#ifdef CONFIG_PARAVIRT_SPINLOCKS
104void __init kvm_spinlock_init(void);
105#else /* !CONFIG_PARAVIRT_SPINLOCKS */
106static inline void kvm_spinlock_init(void)
107{
108}
109#endif /* CONFIG_PARAVIRT_SPINLOCKS */
110
111#else /* CONFIG_KVM_GUEST */
112#define kvm_guest_init() do {} while (0)
Gleb Natapov631bc482010-10-14 11:22:52 +0200113#define kvm_async_pf_task_wait(T) do {} while(0)
114#define kvm_async_pf_task_wake(T) do {} while(0)
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +0530115
Paolo Bonzini1c300a42014-01-27 14:49:40 +0100116static inline bool kvm_para_available(void)
117{
Joe Perches1d804d02015-03-30 16:46:09 -0700118 return false;
Paolo Bonzini1c300a42014-01-27 14:49:40 +0100119}
120
Paolo Bonzini77f01bd2014-01-27 14:51:44 +0100121static inline unsigned int kvm_arch_para_features(void)
122{
123 return 0;
124}
125
Jan Kiszkad4c90b02010-10-20 18:34:54 +0200126static inline u32 kvm_read_and_reset_pf_reason(void)
Gleb Natapov631bc482010-10-14 11:22:52 +0200127{
128 return 0;
129}
Glauber Costad910f5c2011-07-11 15:28:19 -0400130
131static inline void kvm_disable_steal_time(void)
132{
133 return;
134}
Christian Borntraeger5f432382007-10-11 15:34:17 +0200135#endif
136
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700137#endif /* _ASM_X86_KVM_PARA_H */