blob: c584076a47f48acf8d77d57b5a610abf4e366bfa [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>
5
Christian Borntraeger5f432382007-10-11 15:34:17 +02006/* This CPUID returns the signature 'KVMKVMKVM' in ebx, ecx, and edx. It
7 * should be used to determine that a VM is running under KVM.
8 */
9#define KVM_CPUID_SIGNATURE 0x40000000
10
11/* This CPUID returns a feature bitmap in eax. Before enabling a particular
12 * paravirtualization, the appropriate feature bit should be checked.
13 */
14#define KVM_CPUID_FEATURES 0x40000001
Marcelo Tosattia28e4f52008-02-22 12:21:36 -050015#define KVM_FEATURE_CLOCKSOURCE 0
16#define KVM_FEATURE_NOP_IO_DELAY 1
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050017#define KVM_FEATURE_MMU_OP 2
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020018
19#define MSR_KVM_WALL_CLOCK 0x11
20#define MSR_KVM_SYSTEM_TIME 0x12
Christian Borntraeger5f432382007-10-11 15:34:17 +020021
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050022#define KVM_MAX_MMU_OP_BATCH 32
23
24/* Operations for KVM_HC_MMU_OP */
25#define KVM_MMU_OP_WRITE_PTE 1
26#define KVM_MMU_OP_FLUSH_TLB 2
27#define KVM_MMU_OP_RELEASE_PT 3
28
29/* Payload for KVM_HC_MMU_OP */
30struct kvm_mmu_op_header {
31 __u32 op;
32 __u32 pad;
33};
34
35struct kvm_mmu_op_write_pte {
36 struct kvm_mmu_op_header header;
37 __u64 pte_phys;
38 __u64 pte_val;
39};
40
41struct kvm_mmu_op_flush_tlb {
42 struct kvm_mmu_op_header header;
43};
44
45struct kvm_mmu_op_release_pt {
46 struct kvm_mmu_op_header header;
47 __u64 pt_phys;
48};
49
Christian Borntraeger5f432382007-10-11 15:34:17 +020050#ifdef __KERNEL__
51#include <asm/processor.h>
52
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020053extern void kvmclock_init(void);
54
55
Christian Borntraeger5f432382007-10-11 15:34:17 +020056/* This instruction is vmcall. On non-VT architectures, it will generate a
57 * trap that we will then rewrite to the appropriate instruction.
58 */
59#define KVM_HYPERCALL ".byte 0x0f,0x01,0xc1"
60
61/* For KVM hypercalls, a three-byte sequence of either the vmrun or the vmmrun
62 * instruction. The hypervisor may replace it with something else but only the
63 * instructions are guaranteed to be supported.
64 *
65 * Up to four arguments may be passed in rbx, rcx, rdx, and rsi respectively.
66 * The hypercall number should be placed in rax and the return value will be
67 * placed in rax. No other registers will be clobbered unless explicited
68 * noted by the particular hypercall.
69 */
70
71static inline long kvm_hypercall0(unsigned int nr)
72{
73 long ret;
74 asm volatile(KVM_HYPERCALL
75 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030076 : "a"(nr)
77 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020078 return ret;
79}
80
81static inline long kvm_hypercall1(unsigned int nr, unsigned long p1)
82{
83 long ret;
84 asm volatile(KVM_HYPERCALL
85 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030086 : "a"(nr), "b"(p1)
87 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020088 return ret;
89}
90
91static inline long kvm_hypercall2(unsigned int nr, unsigned long p1,
92 unsigned long p2)
93{
94 long ret;
95 asm volatile(KVM_HYPERCALL
96 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +030097 : "a"(nr), "b"(p1), "c"(p2)
98 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +020099 return ret;
100}
101
102static inline long kvm_hypercall3(unsigned int nr, unsigned long p1,
103 unsigned long p2, unsigned long p3)
104{
105 long ret;
106 asm volatile(KVM_HYPERCALL
107 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +0300108 : "a"(nr), "b"(p1), "c"(p2), "d"(p3)
109 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +0200110 return ret;
111}
112
113static inline long kvm_hypercall4(unsigned int nr, unsigned long p1,
114 unsigned long p2, unsigned long p3,
115 unsigned long p4)
116{
117 long ret;
118 asm volatile(KVM_HYPERCALL
119 : "=a"(ret)
Anthony Liguorica373932008-07-03 19:02:36 +0300120 : "a"(nr), "b"(p1), "c"(p2), "d"(p3), "S"(p4)
121 : "memory");
Christian Borntraeger5f432382007-10-11 15:34:17 +0200122 return ret;
123}
124
125static inline int kvm_para_available(void)
126{
127 unsigned int eax, ebx, ecx, edx;
128 char signature[13];
129
130 cpuid(KVM_CPUID_SIGNATURE, &eax, &ebx, &ecx, &edx);
131 memcpy(signature + 0, &ebx, 4);
132 memcpy(signature + 4, &ecx, 4);
133 memcpy(signature + 8, &edx, 4);
134 signature[12] = 0;
135
136 if (strcmp(signature, "KVMKVMKVM") == 0)
137 return 1;
138
139 return 0;
140}
141
142static inline unsigned int kvm_arch_para_features(void)
143{
144 return cpuid_eax(KVM_CPUID_FEATURES);
145}
146
147#endif
148
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700149#endif /* _ASM_X86_KVM_PARA_H */