blob: f019f8cb182ebeb25c1b4688cf6237e57f4417eb [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 Costa0e6ac582010-05-11 12:17:42 -040019/* This indicates that the new set of kvmclock msrs
20 * are available. The use of 0x11 and 0x12 is deprecated
21 */
22#define KVM_FEATURE_CLOCKSOURCE2 3
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020023
24#define MSR_KVM_WALL_CLOCK 0x11
25#define MSR_KVM_SYSTEM_TIME 0x12
Christian Borntraeger5f432382007-10-11 15:34:17 +020026
Glauber Costa11c6bff2010-05-11 12:17:41 -040027/* Custom MSRs falls in the range 0x4b564d00-0x4b564dff */
28#define MSR_KVM_WALL_CLOCK_NEW 0x4b564d00
29#define MSR_KVM_SYSTEM_TIME_NEW 0x4b564d01
30
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050031#define KVM_MAX_MMU_OP_BATCH 32
32
33/* Operations for KVM_HC_MMU_OP */
34#define KVM_MMU_OP_WRITE_PTE 1
35#define KVM_MMU_OP_FLUSH_TLB 2
36#define KVM_MMU_OP_RELEASE_PT 3
37
38/* Payload for KVM_HC_MMU_OP */
39struct kvm_mmu_op_header {
40 __u32 op;
41 __u32 pad;
42};
43
44struct kvm_mmu_op_write_pte {
45 struct kvm_mmu_op_header header;
46 __u64 pte_phys;
47 __u64 pte_val;
48};
49
50struct kvm_mmu_op_flush_tlb {
51 struct kvm_mmu_op_header header;
52};
53
54struct kvm_mmu_op_release_pt {
55 struct kvm_mmu_op_header header;
56 __u64 pt_phys;
57};
58
Christian Borntraeger5f432382007-10-11 15:34:17 +020059#ifdef __KERNEL__
60#include <asm/processor.h>
61
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020062extern void kvmclock_init(void);
63
64
Christian Borntraeger5f432382007-10-11 15:34:17 +020065/* This instruction is vmcall. On non-VT architectures, it will generate a
66 * trap that we will then rewrite to the appropriate instruction.
67 */
68#define KVM_HYPERCALL ".byte 0x0f,0x01,0xc1"
69
70/* For KVM hypercalls, a three-byte sequence of either the vmrun or the vmmrun
71 * instruction. The hypervisor may replace it with something else but only the
72 * instructions are guaranteed to be supported.
73 *
74 * Up to four arguments may be passed in rbx, rcx, rdx, and rsi respectively.
75 * The hypercall number should be placed in rax and the return value will be
76 * placed in rax. No other registers will be clobbered unless explicited
77 * noted by the particular hypercall.
78 */
79
80static inline long kvm_hypercall0(unsigned int nr)
81{
82 long ret;
83 asm volatile(KVM_HYPERCALL
84 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030085 : "a"(nr)
86 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020087 return ret;
88}
89
90static inline long kvm_hypercall1(unsigned int nr, unsigned long p1)
91{
92 long ret;
93 asm volatile(KVM_HYPERCALL
94 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030095 : "a"(nr), "b"(p1)
96 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020097 return ret;
98}
99
100static inline long kvm_hypercall2(unsigned int nr, unsigned long p1,
101 unsigned long p2)
102{
103 long ret;
104 asm volatile(KVM_HYPERCALL
105 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +0300106 : "a"(nr), "b"(p1), "c"(p2)
107 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +0200108 return ret;
109}
110
111static inline long kvm_hypercall3(unsigned int nr, unsigned long p1,
112 unsigned long p2, unsigned long p3)
113{
114 long ret;
115 asm volatile(KVM_HYPERCALL
116 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +0300117 : "a"(nr), "b"(p1), "c"(p2), "d"(p3)
118 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +0200119 return ret;
120}
121
122static inline long kvm_hypercall4(unsigned int nr, unsigned long p1,
123 unsigned long p2, unsigned long p3,
124 unsigned long p4)
125{
126 long ret;
127 asm volatile(KVM_HYPERCALL
128 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +0300129 : "a"(nr), "b"(p1), "c"(p2), "d"(p3), "S"(p4)
130 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +0200131 return ret;
132}
133
134static inline int kvm_para_available(void)
135{
136 unsigned int eax, ebx, ecx, edx;
137 char signature[13];
138
139 cpuid(KVM_CPUID_SIGNATURE, &eax, &ebx, &ecx, &edx);
140 memcpy(signature + 0, &ebx, 4);
141 memcpy(signature + 4, &ecx, 4);
142 memcpy(signature + 8, &edx, 4);
143 signature[12] = 0;
144
145 if (strcmp(signature, "KVMKVMKVM") == 0)
146 return 1;
147
148 return 0;
149}
150
151static inline unsigned int kvm_arch_para_features(void)
152{
153 return cpuid_eax(KVM_CPUID_FEATURES);
154}
155
156#endif
157
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700158#endif /* _ASM_X86_KVM_PARA_H */