1 /* CPU virtualization extensions handling
3 * This should carry the code for handling CPU virtualization extensions
4 * that needs to live in the kernel core.
6 * Author: Eduardo Habkost <ehabkost@redhat.com>
8 * Copyright (C) 2008, Red Hat Inc.
10 * Contains code from KVM, Copyright (C) 2006 Qumranet, Inc.
12 * This work is licensed under the terms of the GNU GPL, version 2. See
13 * the COPYING file in the top-level directory.
15 #ifndef _ASM_X86_VIRTEX_H
16 #define _ASM_X86_VIRTEX_H
18 #include <asm/processor.h>
19 #include <asm/system.h>
28 static inline int cpu_has_vmx(void)
30 unsigned long ecx
= cpuid_ecx(1);
31 return test_bit(5, &ecx
); /* CPUID.1:ECX.VMX[bit 5] -> VT */
35 /** Disable VMX on the current CPU
37 * vmxoff causes a undefined-opcode exception if vmxon was not run
38 * on the CPU previously. Only call this function if you know VMX
41 static inline void cpu_vmxoff(void)
43 asm volatile (ASM_VMX_VMXOFF
: : : "cc");
44 write_cr4(read_cr4() & ~X86_CR4_VMXE
);
47 static inline int cpu_vmx_enabled(void)
49 return read_cr4() & X86_CR4_VMXE
;
52 /** Disable VMX if it is enabled on the current CPU
54 * You shouldn't call this if cpu_has_vmx() returns 0.
56 static inline void __cpu_emergency_vmxoff(void)
58 if (cpu_vmx_enabled())
62 /** Disable VMX if it is supported and enabled on the current CPU
64 static inline void cpu_emergency_vmxoff(void)
67 __cpu_emergency_vmxoff();
77 /** Check if the CPU has SVM support
79 * You can use the 'msg' arg to get a message describing the problem,
80 * if the function returns zero. Simply pass NULL if you are not interested
81 * on the messages; gcc should take care of not generating code for
82 * the messages on this case.
84 static inline int cpu_has_svm(const char **msg
)
86 uint32_t eax
, ebx
, ecx
, edx
;
88 if (boot_cpu_data
.x86_vendor
!= X86_VENDOR_AMD
) {
94 cpuid(0x80000000, &eax
, &ebx
, &ecx
, &edx
);
95 if (eax
< SVM_CPUID_FUNC
) {
97 *msg
= "can't execute cpuid_8000000a";
101 cpuid(0x80000001, &eax
, &ebx
, &ecx
, &edx
);
102 if (!(ecx
& (1 << SVM_CPUID_FEATURE_SHIFT
))) {
104 *msg
= "svm not available";
111 /** Disable SVM on the current CPU
113 * You should call this only if cpu_has_svm() returned true.
115 static inline void cpu_svm_disable(void)
119 wrmsrl(MSR_VM_HSAVE_PA
, 0);
120 rdmsrl(MSR_EFER
, efer
);
121 wrmsrl(MSR_EFER
, efer
& ~EFER_SVME
);
124 /** Makes sure SVM is disabled, if it is supported on the CPU
126 static inline void cpu_emergency_svm_disable(void)
128 if (cpu_has_svm(NULL
))
132 #endif /* _ASM_X86_VIRTEX_H */