x86: rename pat_wc_enabled to pat_enabled
[linux-2.6.git] / include / asm-x86 / kvm_para.h
blob5098459420705ea53f41c2d05b0a91b688980334
1 #ifndef __X86_KVM_PARA_H
2 #define __X86_KVM_PARA_H
4 /* This CPUID returns the signature 'KVMKVMKVM' in ebx, ecx, and edx. It
5 * should be used to determine that a VM is running under KVM.
6 */
7 #define KVM_CPUID_SIGNATURE 0x40000000
9 /* This CPUID returns a feature bitmap in eax. Before enabling a particular
10 * paravirtualization, the appropriate feature bit should be checked.
12 #define KVM_CPUID_FEATURES 0x40000001
13 #define KVM_FEATURE_CLOCKSOURCE 0
14 #define KVM_FEATURE_NOP_IO_DELAY 1
15 #define KVM_FEATURE_MMU_OP 2
17 #define MSR_KVM_WALL_CLOCK 0x11
18 #define MSR_KVM_SYSTEM_TIME 0x12
20 #define KVM_MAX_MMU_OP_BATCH 32
22 /* Operations for KVM_HC_MMU_OP */
23 #define KVM_MMU_OP_WRITE_PTE 1
24 #define KVM_MMU_OP_FLUSH_TLB 2
25 #define KVM_MMU_OP_RELEASE_PT 3
27 /* Payload for KVM_HC_MMU_OP */
28 struct kvm_mmu_op_header {
29 __u32 op;
30 __u32 pad;
33 struct kvm_mmu_op_write_pte {
34 struct kvm_mmu_op_header header;
35 __u64 pte_phys;
36 __u64 pte_val;
39 struct kvm_mmu_op_flush_tlb {
40 struct kvm_mmu_op_header header;
43 struct kvm_mmu_op_release_pt {
44 struct kvm_mmu_op_header header;
45 __u64 pt_phys;
48 #ifdef __KERNEL__
49 #include <asm/processor.h>
51 /* xen binary-compatible interface. See xen headers for details */
52 struct kvm_vcpu_time_info {
53 uint32_t version;
54 uint32_t pad0;
55 uint64_t tsc_timestamp;
56 uint64_t system_time;
57 uint32_t tsc_to_system_mul;
58 int8_t tsc_shift;
59 int8_t pad[3];
60 } __attribute__((__packed__)); /* 32 bytes */
62 struct kvm_wall_clock {
63 uint32_t wc_version;
64 uint32_t wc_sec;
65 uint32_t wc_nsec;
66 } __attribute__((__packed__));
69 extern void kvmclock_init(void);
72 /* This instruction is vmcall. On non-VT architectures, it will generate a
73 * trap that we will then rewrite to the appropriate instruction.
75 #define KVM_HYPERCALL ".byte 0x0f,0x01,0xc1"
77 /* For KVM hypercalls, a three-byte sequence of either the vmrun or the vmmrun
78 * instruction. The hypervisor may replace it with something else but only the
79 * instructions are guaranteed to be supported.
81 * Up to four arguments may be passed in rbx, rcx, rdx, and rsi respectively.
82 * The hypercall number should be placed in rax and the return value will be
83 * placed in rax. No other registers will be clobbered unless explicited
84 * noted by the particular hypercall.
87 static inline long kvm_hypercall0(unsigned int nr)
89 long ret;
90 asm volatile(KVM_HYPERCALL
91 : "=a"(ret)
92 : "a"(nr));
93 return ret;
96 static inline long kvm_hypercall1(unsigned int nr, unsigned long p1)
98 long ret;
99 asm volatile(KVM_HYPERCALL
100 : "=a"(ret)
101 : "a"(nr), "b"(p1));
102 return ret;
105 static inline long kvm_hypercall2(unsigned int nr, unsigned long p1,
106 unsigned long p2)
108 long ret;
109 asm volatile(KVM_HYPERCALL
110 : "=a"(ret)
111 : "a"(nr), "b"(p1), "c"(p2));
112 return ret;
115 static inline long kvm_hypercall3(unsigned int nr, unsigned long p1,
116 unsigned long p2, unsigned long p3)
118 long ret;
119 asm volatile(KVM_HYPERCALL
120 : "=a"(ret)
121 : "a"(nr), "b"(p1), "c"(p2), "d"(p3));
122 return ret;
125 static inline long kvm_hypercall4(unsigned int nr, unsigned long p1,
126 unsigned long p2, unsigned long p3,
127 unsigned long p4)
129 long ret;
130 asm volatile(KVM_HYPERCALL
131 : "=a"(ret)
132 : "a"(nr), "b"(p1), "c"(p2), "d"(p3), "S"(p4));
133 return ret;
136 static inline int kvm_para_available(void)
138 unsigned int eax, ebx, ecx, edx;
139 char signature[13];
141 cpuid(KVM_CPUID_SIGNATURE, &eax, &ebx, &ecx, &edx);
142 memcpy(signature + 0, &ebx, 4);
143 memcpy(signature + 4, &ecx, 4);
144 memcpy(signature + 8, &edx, 4);
145 signature[12] = 0;
147 if (strcmp(signature, "KVMKVMKVM") == 0)
148 return 1;
150 return 0;
153 static inline unsigned int kvm_arch_para_features(void)
155 return cpuid_eax(KVM_CPUID_FEATURES);
158 #endif
160 #endif