blob: 97348082782a751b53dd35e3ae51db6f65d5c3da [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
Avi Kivityfa6870c2009-08-16 15:31:33 +03004#include <linux/types.h>
Gleb Natapov55cd8e52010-01-17 15:51:22 +02005#include <asm/hyperv.h>
Avi Kivityfa6870c2009-08-16 15:31:33 +03006
Christian Borntraeger5f432382007-10-11 15:34:17 +02007/* This CPUID returns the signature 'KVMKVMKVM' in ebx, ecx, and edx. It
8 * should be used to determine that a VM is running under KVM.
9 */
10#define KVM_CPUID_SIGNATURE 0x40000000
11
12/* This CPUID returns a feature bitmap in eax. Before enabling a particular
13 * paravirtualization, the appropriate feature bit should be checked.
14 */
15#define KVM_CPUID_FEATURES 0x40000001
Marcelo Tosattia28e4f52008-02-22 12:21:36 -050016#define KVM_FEATURE_CLOCKSOURCE 0
17#define KVM_FEATURE_NOP_IO_DELAY 1
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050018#define KVM_FEATURE_MMU_OP 2
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020019
20#define MSR_KVM_WALL_CLOCK 0x11
21#define MSR_KVM_SYSTEM_TIME 0x12
Christian Borntraeger5f432382007-10-11 15:34:17 +020022
Glauber Costa11c6bff2010-05-11 12:17:41 -040023/* Custom MSRs falls in the range 0x4b564d00-0x4b564dff */
24#define MSR_KVM_WALL_CLOCK_NEW 0x4b564d00
25#define MSR_KVM_SYSTEM_TIME_NEW 0x4b564d01
26
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050027#define KVM_MAX_MMU_OP_BATCH 32
28
29/* Operations for KVM_HC_MMU_OP */
30#define KVM_MMU_OP_WRITE_PTE 1
31#define KVM_MMU_OP_FLUSH_TLB 2
32#define KVM_MMU_OP_RELEASE_PT 3
33
34/* Payload for KVM_HC_MMU_OP */
35struct kvm_mmu_op_header {
36 __u32 op;
37 __u32 pad;
38};
39
40struct kvm_mmu_op_write_pte {
41 struct kvm_mmu_op_header header;
42 __u64 pte_phys;
43 __u64 pte_val;
44};
45
46struct kvm_mmu_op_flush_tlb {
47 struct kvm_mmu_op_header header;
48};
49
50struct kvm_mmu_op_release_pt {
51 struct kvm_mmu_op_header header;
52 __u64 pt_phys;
53};
54
Christian Borntraeger5f432382007-10-11 15:34:17 +020055#ifdef __KERNEL__
56#include <asm/processor.h>
57
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020058extern void kvmclock_init(void);
59
60
Christian Borntraeger5f432382007-10-11 15:34:17 +020061/* This instruction is vmcall. On non-VT architectures, it will generate a
62 * trap that we will then rewrite to the appropriate instruction.
63 */
64#define KVM_HYPERCALL ".byte 0x0f,0x01,0xc1"
65
66/* For KVM hypercalls, a three-byte sequence of either the vmrun or the vmmrun
67 * instruction. The hypervisor may replace it with something else but only the
68 * instructions are guaranteed to be supported.
69 *
70 * Up to four arguments may be passed in rbx, rcx, rdx, and rsi respectively.
71 * The hypercall number should be placed in rax and the return value will be
72 * placed in rax. No other registers will be clobbered unless explicited
73 * noted by the particular hypercall.
74 */
75
76static inline long kvm_hypercall0(unsigned int nr)
77{
78 long ret;
79 asm volatile(KVM_HYPERCALL
80 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030081 : "a"(nr)
82 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020083 return ret;
84}
85
86static inline long kvm_hypercall1(unsigned int nr, unsigned long p1)
87{
88 long ret;
89 asm volatile(KVM_HYPERCALL
90 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030091 : "a"(nr), "b"(p1)
92 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020093 return ret;
94}
95
96static inline long kvm_hypercall2(unsigned int nr, unsigned long p1,
97 unsigned long p2)
98{
99 long ret;
100 asm volatile(KVM_HYPERCALL
101 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +0300102 : "a"(nr), "b"(p1), "c"(p2)
103 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +0200104 return ret;
105}
106
107static inline long kvm_hypercall3(unsigned int nr, unsigned long p1,
108 unsigned long p2, unsigned long p3)
109{
110 long ret;
111 asm volatile(KVM_HYPERCALL
112 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +0300113 : "a"(nr), "b"(p1), "c"(p2), "d"(p3)
114 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +0200115 return ret;
116}
117
118static inline long kvm_hypercall4(unsigned int nr, unsigned long p1,
119 unsigned long p2, unsigned long p3,
120 unsigned long p4)
121{
122 long ret;
123 asm volatile(KVM_HYPERCALL
124 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +0300125 : "a"(nr), "b"(p1), "c"(p2), "d"(p3), "S"(p4)
126 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +0200127 return ret;
128}
129
130static inline int kvm_para_available(void)
131{
132 unsigned int eax, ebx, ecx, edx;
133 char signature[13];
134
135 cpuid(KVM_CPUID_SIGNATURE, &eax, &ebx, &ecx, &edx);
136 memcpy(signature + 0, &ebx, 4);
137 memcpy(signature + 4, &ecx, 4);
138 memcpy(signature + 8, &edx, 4);
139 signature[12] = 0;
140
141 if (strcmp(signature, "KVMKVMKVM") == 0)
142 return 1;
143
144 return 0;
145}
146
147static inline unsigned int kvm_arch_para_features(void)
148{
149 return cpuid_eax(KVM_CPUID_FEATURES);
150}
151
152#endif
153
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700154#endif /* _ASM_X86_KVM_PARA_H */