KVM: x86: add new KVMCLOCK cpuid feature
[pandora-kernel.git] / arch / x86 / include / asm / kvm_para.h
1 #ifndef _ASM_X86_KVM_PARA_H
2 #define _ASM_X86_KVM_PARA_H
3
4 #include <linux/types.h>
5 #include <asm/hyperv.h>
6
7 /* 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
16 #define KVM_FEATURE_CLOCKSOURCE         0
17 #define KVM_FEATURE_NOP_IO_DELAY        1
18 #define KVM_FEATURE_MMU_OP              2
19 /* 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
23
24 #define MSR_KVM_WALL_CLOCK  0x11
25 #define MSR_KVM_SYSTEM_TIME 0x12
26
27 /* 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
31 #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 */
39 struct kvm_mmu_op_header {
40         __u32 op;
41         __u32 pad;
42 };
43
44 struct kvm_mmu_op_write_pte {
45         struct kvm_mmu_op_header header;
46         __u64 pte_phys;
47         __u64 pte_val;
48 };
49
50 struct kvm_mmu_op_flush_tlb {
51         struct kvm_mmu_op_header header;
52 };
53
54 struct kvm_mmu_op_release_pt {
55         struct kvm_mmu_op_header header;
56         __u64 pt_phys;
57 };
58
59 #ifdef __KERNEL__
60 #include <asm/processor.h>
61
62 extern void kvmclock_init(void);
63
64
65 /* 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
80 static inline long kvm_hypercall0(unsigned int nr)
81 {
82         long ret;
83         asm volatile(KVM_HYPERCALL
84                      : "=a"(ret)
85                      : "a"(nr)
86                      : "memory");
87         return ret;
88 }
89
90 static inline long kvm_hypercall1(unsigned int nr, unsigned long p1)
91 {
92         long ret;
93         asm volatile(KVM_HYPERCALL
94                      : "=a"(ret)
95                      : "a"(nr), "b"(p1)
96                      : "memory");
97         return ret;
98 }
99
100 static 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)
106                      : "a"(nr), "b"(p1), "c"(p2)
107                      : "memory");
108         return ret;
109 }
110
111 static 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)
117                      : "a"(nr), "b"(p1), "c"(p2), "d"(p3)
118                      : "memory");
119         return ret;
120 }
121
122 static 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)
129                      : "a"(nr), "b"(p1), "c"(p2), "d"(p3), "S"(p4)
130                      : "memory");
131         return ret;
132 }
133
134 static 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
151 static inline unsigned int kvm_arch_para_features(void)
152 {
153         return cpuid_eax(KVM_CPUID_FEATURES);
154 }
155
156 #endif
157
158 #endif /* _ASM_X86_KVM_PARA_H */