Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Kernel-based Virtual Machine driver for Linux |
| 3 | * cpuid support routines |
| 4 | * |
| 5 | * derived from arch/x86/kvm/x86.c |
| 6 | * |
| 7 | * Copyright 2011 Red Hat, Inc. and/or its affiliates. |
| 8 | * Copyright IBM Corporation, 2008 |
| 9 | * |
| 10 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 11 | * the COPYING file in the top-level directory. |
| 12 | * |
| 13 | */ |
| 14 | |
| 15 | #include <linux/kvm_host.h> |
| 16 | #include <linux/module.h> |
Jan Kiszka | bb5a798 | 2011-12-14 17:58:18 +0100 | [diff] [blame] | 17 | #include <linux/vmalloc.h> |
| 18 | #include <linux/uaccess.h> |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 19 | #include <asm/user.h> |
| 20 | #include <asm/xsave.h> |
| 21 | #include "cpuid.h" |
| 22 | #include "lapic.h" |
| 23 | #include "mmu.h" |
| 24 | #include "trace.h" |
| 25 | |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 26 | static u32 xstate_required_size(u64 xstate_bv) |
| 27 | { |
| 28 | int feature_bit = 0; |
| 29 | u32 ret = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET; |
| 30 | |
Liu, Jinsong | 56c103e | 2014-02-21 17:39:02 +0000 | [diff] [blame] | 31 | xstate_bv &= XSTATE_EXTEND_MASK; |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 32 | while (xstate_bv) { |
| 33 | if (xstate_bv & 0x1) { |
| 34 | u32 eax, ebx, ecx, edx; |
| 35 | cpuid_count(0xD, feature_bit, &eax, &ebx, &ecx, &edx); |
| 36 | ret = max(ret, eax + ebx); |
| 37 | } |
| 38 | |
| 39 | xstate_bv >>= 1; |
| 40 | feature_bit++; |
| 41 | } |
| 42 | |
| 43 | return ret; |
| 44 | } |
| 45 | |
Paolo Bonzini | 4ff4173 | 2014-02-24 12:15:16 +0100 | [diff] [blame] | 46 | u64 kvm_supported_xcr0(void) |
| 47 | { |
| 48 | u64 xcr0 = KVM_SUPPORTED_XCR0 & host_xcr0; |
| 49 | |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 50 | if (!kvm_x86_ops->mpx_supported()) |
Paolo Bonzini | 4ff4173 | 2014-02-24 12:15:16 +0100 | [diff] [blame] | 51 | xcr0 &= ~(XSTATE_BNDREGS | XSTATE_BNDCSR); |
| 52 | |
| 53 | return xcr0; |
| 54 | } |
| 55 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 56 | void kvm_update_cpuid(struct kvm_vcpu *vcpu) |
| 57 | { |
| 58 | struct kvm_cpuid_entry2 *best; |
| 59 | struct kvm_lapic *apic = vcpu->arch.apic; |
| 60 | |
| 61 | best = kvm_find_cpuid_entry(vcpu, 1, 0); |
| 62 | if (!best) |
| 63 | return; |
| 64 | |
| 65 | /* Update OSXSAVE bit */ |
| 66 | if (cpu_has_xsave && best->function == 0x1) { |
| 67 | best->ecx &= ~(bit(X86_FEATURE_OSXSAVE)); |
| 68 | if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) |
| 69 | best->ecx |= bit(X86_FEATURE_OSXSAVE); |
| 70 | } |
| 71 | |
| 72 | if (apic) { |
| 73 | if (best->ecx & bit(X86_FEATURE_TSC_DEADLINE_TIMER)) |
| 74 | apic->lapic_timer.timer_mode_mask = 3 << 17; |
| 75 | else |
| 76 | apic->lapic_timer.timer_mode_mask = 1 << 17; |
| 77 | } |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 78 | |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 79 | best = kvm_find_cpuid_entry(vcpu, 0xD, 0); |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 80 | if (!best) { |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 81 | vcpu->arch.guest_supported_xcr0 = 0; |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 82 | vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET; |
| 83 | } else { |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 84 | vcpu->arch.guest_supported_xcr0 = |
| 85 | (best->eax | ((u64)best->edx << 32)) & |
Paolo Bonzini | 4ff4173 | 2014-02-24 12:15:16 +0100 | [diff] [blame] | 86 | kvm_supported_xcr0(); |
Liu, Jinsong | 56c103e | 2014-02-21 17:39:02 +0000 | [diff] [blame] | 87 | vcpu->arch.guest_xstate_size = best->ebx = |
| 88 | xstate_required_size(vcpu->arch.xcr0); |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 89 | } |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 90 | |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 91 | kvm_pmu_cpuid_update(vcpu); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | static int is_efer_nx(void) |
| 95 | { |
| 96 | unsigned long long efer = 0; |
| 97 | |
| 98 | rdmsrl_safe(MSR_EFER, &efer); |
| 99 | return efer & EFER_NX; |
| 100 | } |
| 101 | |
| 102 | static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu) |
| 103 | { |
| 104 | int i; |
| 105 | struct kvm_cpuid_entry2 *e, *entry; |
| 106 | |
| 107 | entry = NULL; |
| 108 | for (i = 0; i < vcpu->arch.cpuid_nent; ++i) { |
| 109 | e = &vcpu->arch.cpuid_entries[i]; |
| 110 | if (e->function == 0x80000001) { |
| 111 | entry = e; |
| 112 | break; |
| 113 | } |
| 114 | } |
| 115 | if (entry && (entry->edx & (1 << 20)) && !is_efer_nx()) { |
| 116 | entry->edx &= ~(1 << 20); |
| 117 | printk(KERN_INFO "kvm: guest NX capability removed\n"); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | /* when an old userspace process fills a new kernel module */ |
| 122 | int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu, |
| 123 | struct kvm_cpuid *cpuid, |
| 124 | struct kvm_cpuid_entry __user *entries) |
| 125 | { |
| 126 | int r, i; |
| 127 | struct kvm_cpuid_entry *cpuid_entries; |
| 128 | |
| 129 | r = -E2BIG; |
| 130 | if (cpuid->nent > KVM_MAX_CPUID_ENTRIES) |
| 131 | goto out; |
| 132 | r = -ENOMEM; |
| 133 | cpuid_entries = vmalloc(sizeof(struct kvm_cpuid_entry) * cpuid->nent); |
| 134 | if (!cpuid_entries) |
| 135 | goto out; |
| 136 | r = -EFAULT; |
| 137 | if (copy_from_user(cpuid_entries, entries, |
| 138 | cpuid->nent * sizeof(struct kvm_cpuid_entry))) |
| 139 | goto out_free; |
| 140 | for (i = 0; i < cpuid->nent; i++) { |
| 141 | vcpu->arch.cpuid_entries[i].function = cpuid_entries[i].function; |
| 142 | vcpu->arch.cpuid_entries[i].eax = cpuid_entries[i].eax; |
| 143 | vcpu->arch.cpuid_entries[i].ebx = cpuid_entries[i].ebx; |
| 144 | vcpu->arch.cpuid_entries[i].ecx = cpuid_entries[i].ecx; |
| 145 | vcpu->arch.cpuid_entries[i].edx = cpuid_entries[i].edx; |
| 146 | vcpu->arch.cpuid_entries[i].index = 0; |
| 147 | vcpu->arch.cpuid_entries[i].flags = 0; |
| 148 | vcpu->arch.cpuid_entries[i].padding[0] = 0; |
| 149 | vcpu->arch.cpuid_entries[i].padding[1] = 0; |
| 150 | vcpu->arch.cpuid_entries[i].padding[2] = 0; |
| 151 | } |
| 152 | vcpu->arch.cpuid_nent = cpuid->nent; |
| 153 | cpuid_fix_nx_cap(vcpu); |
| 154 | r = 0; |
| 155 | kvm_apic_set_version(vcpu); |
| 156 | kvm_x86_ops->cpuid_update(vcpu); |
| 157 | kvm_update_cpuid(vcpu); |
| 158 | |
| 159 | out_free: |
| 160 | vfree(cpuid_entries); |
| 161 | out: |
| 162 | return r; |
| 163 | } |
| 164 | |
| 165 | int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu, |
| 166 | struct kvm_cpuid2 *cpuid, |
| 167 | struct kvm_cpuid_entry2 __user *entries) |
| 168 | { |
| 169 | int r; |
| 170 | |
| 171 | r = -E2BIG; |
| 172 | if (cpuid->nent > KVM_MAX_CPUID_ENTRIES) |
| 173 | goto out; |
| 174 | r = -EFAULT; |
| 175 | if (copy_from_user(&vcpu->arch.cpuid_entries, entries, |
| 176 | cpuid->nent * sizeof(struct kvm_cpuid_entry2))) |
| 177 | goto out; |
| 178 | vcpu->arch.cpuid_nent = cpuid->nent; |
| 179 | kvm_apic_set_version(vcpu); |
| 180 | kvm_x86_ops->cpuid_update(vcpu); |
| 181 | kvm_update_cpuid(vcpu); |
| 182 | return 0; |
| 183 | |
| 184 | out: |
| 185 | return r; |
| 186 | } |
| 187 | |
| 188 | int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu, |
| 189 | struct kvm_cpuid2 *cpuid, |
| 190 | struct kvm_cpuid_entry2 __user *entries) |
| 191 | { |
| 192 | int r; |
| 193 | |
| 194 | r = -E2BIG; |
| 195 | if (cpuid->nent < vcpu->arch.cpuid_nent) |
| 196 | goto out; |
| 197 | r = -EFAULT; |
| 198 | if (copy_to_user(entries, &vcpu->arch.cpuid_entries, |
| 199 | vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2))) |
| 200 | goto out; |
| 201 | return 0; |
| 202 | |
| 203 | out: |
| 204 | cpuid->nent = vcpu->arch.cpuid_nent; |
| 205 | return r; |
| 206 | } |
| 207 | |
| 208 | static void cpuid_mask(u32 *word, int wordnum) |
| 209 | { |
| 210 | *word &= boot_cpu_data.x86_capability[wordnum]; |
| 211 | } |
| 212 | |
| 213 | static void do_cpuid_1_ent(struct kvm_cpuid_entry2 *entry, u32 function, |
| 214 | u32 index) |
| 215 | { |
| 216 | entry->function = function; |
| 217 | entry->index = index; |
| 218 | cpuid_count(entry->function, entry->index, |
| 219 | &entry->eax, &entry->ebx, &entry->ecx, &entry->edx); |
| 220 | entry->flags = 0; |
| 221 | } |
| 222 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 223 | #define F(x) bit(X86_FEATURE_##x) |
| 224 | |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 225 | static int __do_cpuid_ent_emulated(struct kvm_cpuid_entry2 *entry, |
| 226 | u32 func, u32 index, int *nent, int maxnent) |
| 227 | { |
Borislav Petkov | 84cffe4 | 2013-10-29 12:54:56 +0100 | [diff] [blame] | 228 | switch (func) { |
| 229 | case 0: |
| 230 | entry->eax = 1; /* only one leaf currently */ |
| 231 | ++*nent; |
| 232 | break; |
| 233 | case 1: |
| 234 | entry->ecx = F(MOVBE); |
| 235 | ++*nent; |
| 236 | break; |
| 237 | default: |
| 238 | break; |
| 239 | } |
| 240 | |
| 241 | entry->function = func; |
| 242 | entry->index = index; |
| 243 | |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 244 | return 0; |
| 245 | } |
| 246 | |
| 247 | static inline int __do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function, |
| 248 | u32 index, int *nent, int maxnent) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 249 | { |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 250 | int r; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 251 | unsigned f_nx = is_efer_nx() ? F(NX) : 0; |
| 252 | #ifdef CONFIG_X86_64 |
| 253 | unsigned f_gbpages = (kvm_x86_ops->get_lpage_level() == PT_PDPE_LEVEL) |
| 254 | ? F(GBPAGES) : 0; |
| 255 | unsigned f_lm = F(LM); |
| 256 | #else |
| 257 | unsigned f_gbpages = 0; |
| 258 | unsigned f_lm = 0; |
| 259 | #endif |
| 260 | unsigned f_rdtscp = kvm_x86_ops->rdtscp_supported() ? F(RDTSCP) : 0; |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 261 | unsigned f_invpcid = kvm_x86_ops->invpcid_supported() ? F(INVPCID) : 0; |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 262 | unsigned f_mpx = kvm_x86_ops->mpx_supported() ? F(MPX) : 0; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 263 | |
| 264 | /* cpuid 1.edx */ |
| 265 | const u32 kvm_supported_word0_x86_features = |
| 266 | F(FPU) | F(VME) | F(DE) | F(PSE) | |
| 267 | F(TSC) | F(MSR) | F(PAE) | F(MCE) | |
| 268 | F(CX8) | F(APIC) | 0 /* Reserved */ | F(SEP) | |
| 269 | F(MTRR) | F(PGE) | F(MCA) | F(CMOV) | |
H. Peter Anvin | 840d283 | 2014-02-27 08:31:30 -0800 | [diff] [blame] | 270 | F(PAT) | F(PSE36) | 0 /* PSN */ | F(CLFLUSH) | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 271 | 0 /* Reserved, DS, ACPI */ | F(MMX) | |
| 272 | F(FXSR) | F(XMM) | F(XMM2) | F(SELFSNOOP) | |
| 273 | 0 /* HTT, TM, Reserved, PBE */; |
| 274 | /* cpuid 0x80000001.edx */ |
| 275 | const u32 kvm_supported_word1_x86_features = |
| 276 | F(FPU) | F(VME) | F(DE) | F(PSE) | |
| 277 | F(TSC) | F(MSR) | F(PAE) | F(MCE) | |
| 278 | F(CX8) | F(APIC) | 0 /* Reserved */ | F(SYSCALL) | |
| 279 | F(MTRR) | F(PGE) | F(MCA) | F(CMOV) | |
| 280 | F(PAT) | F(PSE36) | 0 /* Reserved */ | |
| 281 | f_nx | 0 /* Reserved */ | F(MMXEXT) | F(MMX) | |
| 282 | F(FXSR) | F(FXSR_OPT) | f_gbpages | f_rdtscp | |
| 283 | 0 /* Reserved */ | f_lm | F(3DNOWEXT) | F(3DNOW); |
| 284 | /* cpuid 1.ecx */ |
| 285 | const u32 kvm_supported_word4_x86_features = |
| 286 | F(XMM3) | F(PCLMULQDQ) | 0 /* DTES64, MONITOR */ | |
| 287 | 0 /* DS-CPL, VMX, SMX, EST */ | |
| 288 | 0 /* TM2 */ | F(SSSE3) | 0 /* CNXT-ID */ | 0 /* Reserved */ | |
Liu, Jinsong | fb21536 | 2011-11-28 03:55:19 -0800 | [diff] [blame] | 289 | F(FMA) | F(CX16) | 0 /* xTPR Update, PDCM */ | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 290 | F(PCID) | 0 /* Reserved, DCA */ | F(XMM4_1) | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 291 | F(XMM4_2) | F(X2APIC) | F(MOVBE) | F(POPCNT) | |
| 292 | 0 /* Reserved*/ | F(AES) | F(XSAVE) | 0 /* OSXSAVE */ | F(AVX) | |
| 293 | F(F16C) | F(RDRAND); |
| 294 | /* cpuid 0x80000001.ecx */ |
| 295 | const u32 kvm_supported_word6_x86_features = |
| 296 | F(LAHF_LM) | F(CMP_LEGACY) | 0 /*SVM*/ | 0 /* ExtApicSpace */ | |
| 297 | F(CR8_LEGACY) | F(ABM) | F(SSE4A) | F(MISALIGNSSE) | |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 298 | F(3DNOWPREFETCH) | F(OSVW) | 0 /* IBS */ | F(XOP) | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 299 | 0 /* SKINIT, WDT, LWP */ | F(FMA4) | F(TBM); |
| 300 | |
| 301 | /* cpuid 0xC0000001.edx */ |
| 302 | const u32 kvm_supported_word5_x86_features = |
| 303 | F(XSTORE) | F(XSTORE_EN) | F(XCRYPT) | F(XCRYPT_EN) | |
| 304 | F(ACE2) | F(ACE2_EN) | F(PHE) | F(PHE_EN) | |
| 305 | F(PMM) | F(PMM_EN); |
| 306 | |
| 307 | /* cpuid 7.0.ebx */ |
| 308 | const u32 kvm_supported_word9_x86_features = |
Liu, Jinsong | 83c5291 | 2012-02-28 05:15:46 +0000 | [diff] [blame] | 309 | F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) | |
Liu, Jinsong | 390bd52 | 2014-02-24 10:58:09 +0000 | [diff] [blame] | 310 | F(BMI2) | F(ERMS) | f_invpcid | F(RTM) | f_mpx | F(RDSEED) | |
Feng Wu | de935ae | 2014-04-01 17:46:36 +0800 | [diff] [blame] | 311 | F(ADX) | F(SMAP); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 312 | |
| 313 | /* all calls to cpuid_count() should be made on the same cpu */ |
| 314 | get_cpu(); |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 315 | |
| 316 | r = -E2BIG; |
| 317 | |
| 318 | if (*nent >= maxnent) |
| 319 | goto out; |
| 320 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 321 | do_cpuid_1_ent(entry, function, index); |
| 322 | ++*nent; |
| 323 | |
| 324 | switch (function) { |
| 325 | case 0: |
| 326 | entry->eax = min(entry->eax, (u32)0xd); |
| 327 | break; |
| 328 | case 1: |
| 329 | entry->edx &= kvm_supported_word0_x86_features; |
| 330 | cpuid_mask(&entry->edx, 0); |
| 331 | entry->ecx &= kvm_supported_word4_x86_features; |
| 332 | cpuid_mask(&entry->ecx, 4); |
| 333 | /* we support x2apic emulation even if host does not support |
| 334 | * it since we emulate x2apic in software */ |
| 335 | entry->ecx |= F(X2APIC); |
| 336 | break; |
| 337 | /* function 2 entries are STATEFUL. That is, repeated cpuid commands |
| 338 | * may return different values. This forces us to get_cpu() before |
| 339 | * issuing the first command, and also to emulate this annoying behavior |
| 340 | * in kvm_emulate_cpuid() using KVM_CPUID_FLAG_STATE_READ_NEXT */ |
| 341 | case 2: { |
| 342 | int t, times = entry->eax & 0xff; |
| 343 | |
| 344 | entry->flags |= KVM_CPUID_FLAG_STATEFUL_FUNC; |
| 345 | entry->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT; |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 346 | for (t = 1; t < times; ++t) { |
| 347 | if (*nent >= maxnent) |
| 348 | goto out; |
| 349 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 350 | do_cpuid_1_ent(&entry[t], function, 0); |
| 351 | entry[t].flags |= KVM_CPUID_FLAG_STATEFUL_FUNC; |
| 352 | ++*nent; |
| 353 | } |
| 354 | break; |
| 355 | } |
| 356 | /* function 4 has additional index. */ |
| 357 | case 4: { |
| 358 | int i, cache_type; |
| 359 | |
| 360 | entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
| 361 | /* read more entries until cache_type is zero */ |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 362 | for (i = 1; ; ++i) { |
| 363 | if (*nent >= maxnent) |
| 364 | goto out; |
| 365 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 366 | cache_type = entry[i - 1].eax & 0x1f; |
| 367 | if (!cache_type) |
| 368 | break; |
| 369 | do_cpuid_1_ent(&entry[i], function, i); |
| 370 | entry[i].flags |= |
| 371 | KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
| 372 | ++*nent; |
| 373 | } |
| 374 | break; |
| 375 | } |
| 376 | case 7: { |
| 377 | entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
Guo Chao | bbbda79 | 2012-06-28 15:20:58 +0800 | [diff] [blame] | 378 | /* Mask ebx against host capability word 9 */ |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 379 | if (index == 0) { |
| 380 | entry->ebx &= kvm_supported_word9_x86_features; |
| 381 | cpuid_mask(&entry->ebx, 9); |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 382 | // TSC_ADJUST is emulated |
| 383 | entry->ebx |= F(TSC_ADJUST); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 384 | } else |
| 385 | entry->ebx = 0; |
| 386 | entry->eax = 0; |
| 387 | entry->ecx = 0; |
| 388 | entry->edx = 0; |
| 389 | break; |
| 390 | } |
| 391 | case 9: |
| 392 | break; |
Gleb Natapov | a6c06ed | 2011-11-10 14:57:28 +0200 | [diff] [blame] | 393 | case 0xa: { /* Architectural Performance Monitoring */ |
| 394 | struct x86_pmu_capability cap; |
| 395 | union cpuid10_eax eax; |
| 396 | union cpuid10_edx edx; |
| 397 | |
| 398 | perf_get_x86_pmu_capability(&cap); |
| 399 | |
| 400 | /* |
| 401 | * Only support guest architectural pmu on a host |
| 402 | * with architectural pmu. |
| 403 | */ |
| 404 | if (!cap.version) |
| 405 | memset(&cap, 0, sizeof(cap)); |
| 406 | |
| 407 | eax.split.version_id = min(cap.version, 2); |
| 408 | eax.split.num_counters = cap.num_counters_gp; |
| 409 | eax.split.bit_width = cap.bit_width_gp; |
| 410 | eax.split.mask_length = cap.events_mask_len; |
| 411 | |
| 412 | edx.split.num_counters_fixed = cap.num_counters_fixed; |
| 413 | edx.split.bit_width_fixed = cap.bit_width_fixed; |
| 414 | edx.split.reserved = 0; |
| 415 | |
| 416 | entry->eax = eax.full; |
| 417 | entry->ebx = cap.events_mask; |
| 418 | entry->ecx = 0; |
| 419 | entry->edx = edx.full; |
| 420 | break; |
| 421 | } |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 422 | /* function 0xb has additional index. */ |
| 423 | case 0xb: { |
| 424 | int i, level_type; |
| 425 | |
| 426 | entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
| 427 | /* read more entries until level_type is zero */ |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 428 | for (i = 1; ; ++i) { |
| 429 | if (*nent >= maxnent) |
| 430 | goto out; |
| 431 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 432 | level_type = entry[i - 1].ecx & 0xff00; |
| 433 | if (!level_type) |
| 434 | break; |
| 435 | do_cpuid_1_ent(&entry[i], function, i); |
| 436 | entry[i].flags |= |
| 437 | KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
| 438 | ++*nent; |
| 439 | } |
| 440 | break; |
| 441 | } |
| 442 | case 0xd: { |
| 443 | int idx, i; |
Paolo Bonzini | 4ff4173 | 2014-02-24 12:15:16 +0100 | [diff] [blame] | 444 | u64 supported = kvm_supported_xcr0(); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 445 | |
Paolo Bonzini | 4ff4173 | 2014-02-24 12:15:16 +0100 | [diff] [blame] | 446 | entry->eax &= supported; |
| 447 | entry->edx &= supported >> 32; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 448 | entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 449 | for (idx = 1, i = 1; idx < 64; ++idx) { |
Paolo Bonzini | 4ff4173 | 2014-02-24 12:15:16 +0100 | [diff] [blame] | 450 | u64 mask = ((u64)1 << idx); |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 451 | if (*nent >= maxnent) |
| 452 | goto out; |
| 453 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 454 | do_cpuid_1_ent(&entry[i], function, idx); |
Paolo Bonzini | 4ff4173 | 2014-02-24 12:15:16 +0100 | [diff] [blame] | 455 | if (entry[i].eax == 0 || !(supported & mask)) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 456 | continue; |
| 457 | entry[i].flags |= |
| 458 | KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
| 459 | ++*nent; |
| 460 | ++i; |
| 461 | } |
| 462 | break; |
| 463 | } |
| 464 | case KVM_CPUID_SIGNATURE: { |
Mathias Krause | 326d07c | 2012-08-30 01:30:13 +0200 | [diff] [blame] | 465 | static const char signature[12] = "KVMKVMKVM\0\0"; |
| 466 | const u32 *sigptr = (const u32 *)signature; |
Michael S. Tsirkin | 57c22e5 | 2012-05-02 17:55:56 +0300 | [diff] [blame] | 467 | entry->eax = KVM_CPUID_FEATURES; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 468 | entry->ebx = sigptr[0]; |
| 469 | entry->ecx = sigptr[1]; |
| 470 | entry->edx = sigptr[2]; |
| 471 | break; |
| 472 | } |
| 473 | case KVM_CPUID_FEATURES: |
| 474 | entry->eax = (1 << KVM_FEATURE_CLOCKSOURCE) | |
| 475 | (1 << KVM_FEATURE_NOP_IO_DELAY) | |
| 476 | (1 << KVM_FEATURE_CLOCKSOURCE2) | |
| 477 | (1 << KVM_FEATURE_ASYNC_PF) | |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 478 | (1 << KVM_FEATURE_PV_EOI) | |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 479 | (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT) | |
| 480 | (1 << KVM_FEATURE_PV_UNHALT); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 481 | |
| 482 | if (sched_info_on()) |
| 483 | entry->eax |= (1 << KVM_FEATURE_STEAL_TIME); |
| 484 | |
| 485 | entry->ebx = 0; |
| 486 | entry->ecx = 0; |
| 487 | entry->edx = 0; |
| 488 | break; |
| 489 | case 0x80000000: |
| 490 | entry->eax = min(entry->eax, 0x8000001a); |
| 491 | break; |
| 492 | case 0x80000001: |
| 493 | entry->edx &= kvm_supported_word1_x86_features; |
| 494 | cpuid_mask(&entry->edx, 1); |
| 495 | entry->ecx &= kvm_supported_word6_x86_features; |
| 496 | cpuid_mask(&entry->ecx, 6); |
| 497 | break; |
Marcelo Tosatti | e4c9a5a1 | 2014-04-26 22:30:23 -0300 | [diff] [blame] | 498 | case 0x80000007: /* Advanced power management */ |
| 499 | /* invariant TSC is CPUID.80000007H:EDX[8] */ |
| 500 | entry->edx &= (1 << 8); |
| 501 | /* mask against host */ |
| 502 | entry->edx &= boot_cpu_data.x86_power; |
| 503 | entry->eax = entry->ebx = entry->ecx = 0; |
| 504 | break; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 505 | case 0x80000008: { |
| 506 | unsigned g_phys_as = (entry->eax >> 16) & 0xff; |
| 507 | unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U); |
| 508 | unsigned phys_as = entry->eax & 0xff; |
| 509 | |
| 510 | if (!g_phys_as) |
| 511 | g_phys_as = phys_as; |
| 512 | entry->eax = g_phys_as | (virt_as << 8); |
| 513 | entry->ebx = entry->edx = 0; |
| 514 | break; |
| 515 | } |
| 516 | case 0x80000019: |
| 517 | entry->ecx = entry->edx = 0; |
| 518 | break; |
| 519 | case 0x8000001a: |
| 520 | break; |
| 521 | case 0x8000001d: |
| 522 | break; |
| 523 | /*Add support for Centaur's CPUID instruction*/ |
| 524 | case 0xC0000000: |
| 525 | /*Just support up to 0xC0000004 now*/ |
| 526 | entry->eax = min(entry->eax, 0xC0000004); |
| 527 | break; |
| 528 | case 0xC0000001: |
| 529 | entry->edx &= kvm_supported_word5_x86_features; |
| 530 | cpuid_mask(&entry->edx, 5); |
| 531 | break; |
| 532 | case 3: /* Processor serial number */ |
| 533 | case 5: /* MONITOR/MWAIT */ |
| 534 | case 6: /* Thermal management */ |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 535 | case 0xC0000002: |
| 536 | case 0xC0000003: |
| 537 | case 0xC0000004: |
| 538 | default: |
| 539 | entry->eax = entry->ebx = entry->ecx = entry->edx = 0; |
| 540 | break; |
| 541 | } |
| 542 | |
| 543 | kvm_x86_ops->set_supported_cpuid(function, entry); |
| 544 | |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 545 | r = 0; |
| 546 | |
| 547 | out: |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 548 | put_cpu(); |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 549 | |
| 550 | return r; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 551 | } |
| 552 | |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 553 | static int do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 func, |
| 554 | u32 idx, int *nent, int maxnent, unsigned int type) |
| 555 | { |
| 556 | if (type == KVM_GET_EMULATED_CPUID) |
| 557 | return __do_cpuid_ent_emulated(entry, func, idx, nent, maxnent); |
| 558 | |
| 559 | return __do_cpuid_ent(entry, func, idx, nent, maxnent); |
| 560 | } |
| 561 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 562 | #undef F |
| 563 | |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 564 | struct kvm_cpuid_param { |
| 565 | u32 func; |
| 566 | u32 idx; |
| 567 | bool has_leaf_count; |
Mathias Krause | 326d07c | 2012-08-30 01:30:13 +0200 | [diff] [blame] | 568 | bool (*qualifier)(const struct kvm_cpuid_param *param); |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 569 | }; |
| 570 | |
Mathias Krause | 326d07c | 2012-08-30 01:30:13 +0200 | [diff] [blame] | 571 | static bool is_centaur_cpu(const struct kvm_cpuid_param *param) |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 572 | { |
| 573 | return boot_cpu_data.x86_vendor == X86_VENDOR_CENTAUR; |
| 574 | } |
| 575 | |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 576 | static bool sanity_check_entries(struct kvm_cpuid_entry2 __user *entries, |
| 577 | __u32 num_entries, unsigned int ioctl_type) |
| 578 | { |
| 579 | int i; |
Borislav Petkov | 1b2ca42 | 2013-11-06 15:46:02 +0100 | [diff] [blame] | 580 | __u32 pad[3]; |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 581 | |
| 582 | if (ioctl_type != KVM_GET_EMULATED_CPUID) |
| 583 | return false; |
| 584 | |
| 585 | /* |
| 586 | * We want to make sure that ->padding is being passed clean from |
| 587 | * userspace in case we want to use it for something in the future. |
| 588 | * |
| 589 | * Sadly, this wasn't enforced for KVM_GET_SUPPORTED_CPUID and so we |
| 590 | * have to give ourselves satisfied only with the emulated side. /me |
| 591 | * sheds a tear. |
| 592 | */ |
| 593 | for (i = 0; i < num_entries; i++) { |
Borislav Petkov | 1b2ca42 | 2013-11-06 15:46:02 +0100 | [diff] [blame] | 594 | if (copy_from_user(pad, entries[i].padding, sizeof(pad))) |
| 595 | return true; |
| 596 | |
| 597 | if (pad[0] || pad[1] || pad[2]) |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 598 | return true; |
| 599 | } |
| 600 | return false; |
| 601 | } |
| 602 | |
| 603 | int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid, |
| 604 | struct kvm_cpuid_entry2 __user *entries, |
| 605 | unsigned int type) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 606 | { |
| 607 | struct kvm_cpuid_entry2 *cpuid_entries; |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 608 | int limit, nent = 0, r = -E2BIG, i; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 609 | u32 func; |
Mathias Krause | 326d07c | 2012-08-30 01:30:13 +0200 | [diff] [blame] | 610 | static const struct kvm_cpuid_param param[] = { |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 611 | { .func = 0, .has_leaf_count = true }, |
| 612 | { .func = 0x80000000, .has_leaf_count = true }, |
| 613 | { .func = 0xC0000000, .qualifier = is_centaur_cpu, .has_leaf_count = true }, |
| 614 | { .func = KVM_CPUID_SIGNATURE }, |
| 615 | { .func = KVM_CPUID_FEATURES }, |
| 616 | }; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 617 | |
| 618 | if (cpuid->nent < 1) |
| 619 | goto out; |
| 620 | if (cpuid->nent > KVM_MAX_CPUID_ENTRIES) |
| 621 | cpuid->nent = KVM_MAX_CPUID_ENTRIES; |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 622 | |
| 623 | if (sanity_check_entries(entries, cpuid->nent, type)) |
| 624 | return -EINVAL; |
| 625 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 626 | r = -ENOMEM; |
Borislav Petkov | 84cffe4 | 2013-10-29 12:54:56 +0100 | [diff] [blame] | 627 | cpuid_entries = vzalloc(sizeof(struct kvm_cpuid_entry2) * cpuid->nent); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 628 | if (!cpuid_entries) |
| 629 | goto out; |
| 630 | |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 631 | r = 0; |
| 632 | for (i = 0; i < ARRAY_SIZE(param); i++) { |
Mathias Krause | 326d07c | 2012-08-30 01:30:13 +0200 | [diff] [blame] | 633 | const struct kvm_cpuid_param *ent = ¶m[i]; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 634 | |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 635 | if (ent->qualifier && !ent->qualifier(ent)) |
| 636 | continue; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 637 | |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 638 | r = do_cpuid_ent(&cpuid_entries[nent], ent->func, ent->idx, |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 639 | &nent, cpuid->nent, type); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 640 | |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 641 | if (r) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 642 | goto out_free; |
| 643 | |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 644 | if (!ent->has_leaf_count) |
| 645 | continue; |
| 646 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 647 | limit = cpuid_entries[nent - 1].eax; |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 648 | for (func = ent->func + 1; func <= limit && nent < cpuid->nent && r == 0; ++func) |
| 649 | r = do_cpuid_ent(&cpuid_entries[nent], func, ent->idx, |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 650 | &nent, cpuid->nent, type); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 651 | |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 652 | if (r) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 653 | goto out_free; |
| 654 | } |
| 655 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 656 | r = -EFAULT; |
| 657 | if (copy_to_user(entries, cpuid_entries, |
| 658 | nent * sizeof(struct kvm_cpuid_entry2))) |
| 659 | goto out_free; |
| 660 | cpuid->nent = nent; |
| 661 | r = 0; |
| 662 | |
| 663 | out_free: |
| 664 | vfree(cpuid_entries); |
| 665 | out: |
| 666 | return r; |
| 667 | } |
| 668 | |
| 669 | static int move_to_next_stateful_cpuid_entry(struct kvm_vcpu *vcpu, int i) |
| 670 | { |
| 671 | struct kvm_cpuid_entry2 *e = &vcpu->arch.cpuid_entries[i]; |
| 672 | int j, nent = vcpu->arch.cpuid_nent; |
| 673 | |
| 674 | e->flags &= ~KVM_CPUID_FLAG_STATE_READ_NEXT; |
| 675 | /* when no next entry is found, the current entry[i] is reselected */ |
| 676 | for (j = i + 1; ; j = (j + 1) % nent) { |
| 677 | struct kvm_cpuid_entry2 *ej = &vcpu->arch.cpuid_entries[j]; |
| 678 | if (ej->function == e->function) { |
| 679 | ej->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT; |
| 680 | return j; |
| 681 | } |
| 682 | } |
| 683 | return 0; /* silence gcc, even though control never reaches here */ |
| 684 | } |
| 685 | |
| 686 | /* find an entry with matching function, matching index (if needed), and that |
| 687 | * should be read next (if it's stateful) */ |
| 688 | static int is_matching_cpuid_entry(struct kvm_cpuid_entry2 *e, |
| 689 | u32 function, u32 index) |
| 690 | { |
| 691 | if (e->function != function) |
| 692 | return 0; |
| 693 | if ((e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX) && e->index != index) |
| 694 | return 0; |
| 695 | if ((e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC) && |
| 696 | !(e->flags & KVM_CPUID_FLAG_STATE_READ_NEXT)) |
| 697 | return 0; |
| 698 | return 1; |
| 699 | } |
| 700 | |
| 701 | struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu, |
| 702 | u32 function, u32 index) |
| 703 | { |
| 704 | int i; |
| 705 | struct kvm_cpuid_entry2 *best = NULL; |
| 706 | |
| 707 | for (i = 0; i < vcpu->arch.cpuid_nent; ++i) { |
| 708 | struct kvm_cpuid_entry2 *e; |
| 709 | |
| 710 | e = &vcpu->arch.cpuid_entries[i]; |
| 711 | if (is_matching_cpuid_entry(e, function, index)) { |
| 712 | if (e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC) |
| 713 | move_to_next_stateful_cpuid_entry(vcpu, i); |
| 714 | best = e; |
| 715 | break; |
| 716 | } |
| 717 | } |
| 718 | return best; |
| 719 | } |
| 720 | EXPORT_SYMBOL_GPL(kvm_find_cpuid_entry); |
| 721 | |
| 722 | int cpuid_maxphyaddr(struct kvm_vcpu *vcpu) |
| 723 | { |
| 724 | struct kvm_cpuid_entry2 *best; |
| 725 | |
| 726 | best = kvm_find_cpuid_entry(vcpu, 0x80000000, 0); |
| 727 | if (!best || best->eax < 0x80000008) |
| 728 | goto not_found; |
| 729 | best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0); |
| 730 | if (best) |
| 731 | return best->eax & 0xff; |
| 732 | not_found: |
| 733 | return 36; |
| 734 | } |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame^] | 735 | EXPORT_SYMBOL_GPL(cpuid_maxphyaddr); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 736 | |
| 737 | /* |
| 738 | * If no match is found, check whether we exceed the vCPU's limit |
| 739 | * and return the content of the highest valid _standard_ leaf instead. |
| 740 | * This is to satisfy the CPUID specification. |
| 741 | */ |
| 742 | static struct kvm_cpuid_entry2* check_cpuid_limit(struct kvm_vcpu *vcpu, |
| 743 | u32 function, u32 index) |
| 744 | { |
| 745 | struct kvm_cpuid_entry2 *maxlevel; |
| 746 | |
| 747 | maxlevel = kvm_find_cpuid_entry(vcpu, function & 0x80000000, 0); |
| 748 | if (!maxlevel || maxlevel->eax >= function) |
| 749 | return NULL; |
| 750 | if (function & 0x80000000) { |
| 751 | maxlevel = kvm_find_cpuid_entry(vcpu, 0, 0); |
| 752 | if (!maxlevel) |
| 753 | return NULL; |
| 754 | } |
| 755 | return kvm_find_cpuid_entry(vcpu, maxlevel->eax, index); |
| 756 | } |
| 757 | |
Avi Kivity | 62046e5 | 2012-06-07 14:07:48 +0300 | [diff] [blame] | 758 | void kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx, u32 *ecx, u32 *edx) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 759 | { |
Avi Kivity | 62046e5 | 2012-06-07 14:07:48 +0300 | [diff] [blame] | 760 | u32 function = *eax, index = *ecx; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 761 | struct kvm_cpuid_entry2 *best; |
| 762 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 763 | best = kvm_find_cpuid_entry(vcpu, function, index); |
| 764 | |
| 765 | if (!best) |
| 766 | best = check_cpuid_limit(vcpu, function, index); |
| 767 | |
| 768 | if (best) { |
Avi Kivity | 62046e5 | 2012-06-07 14:07:48 +0300 | [diff] [blame] | 769 | *eax = best->eax; |
| 770 | *ebx = best->ebx; |
| 771 | *ecx = best->ecx; |
| 772 | *edx = best->edx; |
| 773 | } else |
| 774 | *eax = *ebx = *ecx = *edx = 0; |
Gleb Natapov | a9d4e43 | 2013-11-04 15:52:43 +0200 | [diff] [blame] | 775 | trace_kvm_cpuid(function, *eax, *ebx, *ecx, *edx); |
Avi Kivity | 62046e5 | 2012-06-07 14:07:48 +0300 | [diff] [blame] | 776 | } |
Julian Stecklina | 66f7b72 | 2012-12-05 15:26:19 +0100 | [diff] [blame] | 777 | EXPORT_SYMBOL_GPL(kvm_cpuid); |
Avi Kivity | 62046e5 | 2012-06-07 14:07:48 +0300 | [diff] [blame] | 778 | |
| 779 | void kvm_emulate_cpuid(struct kvm_vcpu *vcpu) |
| 780 | { |
| 781 | u32 function, eax, ebx, ecx, edx; |
| 782 | |
| 783 | function = eax = kvm_register_read(vcpu, VCPU_REGS_RAX); |
| 784 | ecx = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 785 | kvm_cpuid(vcpu, &eax, &ebx, &ecx, &edx); |
| 786 | kvm_register_write(vcpu, VCPU_REGS_RAX, eax); |
| 787 | kvm_register_write(vcpu, VCPU_REGS_RBX, ebx); |
| 788 | kvm_register_write(vcpu, VCPU_REGS_RCX, ecx); |
| 789 | kvm_register_write(vcpu, VCPU_REGS_RDX, edx); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 790 | kvm_x86_ops->skip_emulated_instruction(vcpu); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 791 | } |
| 792 | EXPORT_SYMBOL_GPL(kvm_emulate_cpuid); |