2 * i386 CPUID helper functions
4 * Copyright (c) 2003 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 #include "sysemu/kvm.h"
26 #include "sysemu/cpus.h"
29 #include "qemu/option.h"
30 #include "qemu/config-file.h"
31 #include "qapi/qmp/qerror.h"
33 #include "qapi/visitor.h"
34 #include "sysemu/arch_init.h"
39 #if defined(CONFIG_KVM)
40 #include <linux/kvm_para.h>
43 #include "sysemu/sysemu.h"
44 #ifndef CONFIG_USER_ONLY
45 #include "hw/xen/xen.h"
46 #include "hw/sysbus.h"
47 #include "hw/i386/apic_internal.h"
50 static void x86_cpu_vendor_words2str(char *dst
, uint32_t vendor1
,
51 uint32_t vendor2
, uint32_t vendor3
)
54 for (i
= 0; i
< 4; i
++) {
55 dst
[i
] = vendor1
>> (8 * i
);
56 dst
[i
+ 4] = vendor2
>> (8 * i
);
57 dst
[i
+ 8] = vendor3
>> (8 * i
);
59 dst
[CPUID_VENDOR_SZ
] = '\0';
62 /* feature flags taken from "Intel Processor Identification and the CPUID
63 * Instruction" and AMD's "CPUID Specification". In cases of disagreement
64 * between feature naming conventions, aliases may be added.
66 static const char *feature_name
[] = {
67 "fpu", "vme", "de", "pse",
68 "tsc", "msr", "pae", "mce",
69 "cx8", "apic", NULL
, "sep",
70 "mtrr", "pge", "mca", "cmov",
71 "pat", "pse36", "pn" /* Intel psn */, "clflush" /* Intel clfsh */,
72 NULL
, "ds" /* Intel dts */, "acpi", "mmx",
73 "fxsr", "sse", "sse2", "ss",
74 "ht" /* Intel htt */, "tm", "ia64", "pbe",
76 static const char *ext_feature_name
[] = {
77 "pni|sse3" /* Intel,AMD sse3 */, "pclmulqdq|pclmuldq", "dtes64", "monitor",
78 "ds_cpl", "vmx", "smx", "est",
79 "tm2", "ssse3", "cid", NULL
,
80 "fma", "cx16", "xtpr", "pdcm",
81 NULL
, "pcid", "dca", "sse4.1|sse4_1",
82 "sse4.2|sse4_2", "x2apic", "movbe", "popcnt",
83 "tsc-deadline", "aes", "xsave", "osxsave",
84 "avx", "f16c", "rdrand", "hypervisor",
86 /* Feature names that are already defined on feature_name[] but are set on
87 * CPUID[8000_0001].EDX on AMD CPUs don't have their names on
88 * ext2_feature_name[]. They are copied automatically to cpuid_ext2_features
89 * if and only if CPU vendor is AMD.
91 static const char *ext2_feature_name
[] = {
92 NULL
/* fpu */, NULL
/* vme */, NULL
/* de */, NULL
/* pse */,
93 NULL
/* tsc */, NULL
/* msr */, NULL
/* pae */, NULL
/* mce */,
94 NULL
/* cx8 */ /* AMD CMPXCHG8B */, NULL
/* apic */, NULL
, "syscall",
95 NULL
/* mtrr */, NULL
/* pge */, NULL
/* mca */, NULL
/* cmov */,
96 NULL
/* pat */, NULL
/* pse36 */, NULL
, NULL
/* Linux mp */,
97 "nx|xd", NULL
, "mmxext", NULL
/* mmx */,
98 NULL
/* fxsr */, "fxsr_opt|ffxsr", "pdpe1gb" /* AMD Page1GB */, "rdtscp",
99 NULL
, "lm|i64", "3dnowext", "3dnow",
101 static const char *ext3_feature_name
[] = {
102 "lahf_lm" /* AMD LahfSahf */, "cmp_legacy", "svm", "extapic" /* AMD ExtApicSpace */,
103 "cr8legacy" /* AMD AltMovCr8 */, "abm", "sse4a", "misalignsse",
104 "3dnowprefetch", "osvw", "ibs", "xop",
105 "skinit", "wdt", NULL
, "lwp",
106 "fma4", "tce", NULL
, "nodeid_msr",
107 NULL
, "tbm", "topoext", "perfctr_core",
108 "perfctr_nb", NULL
, NULL
, NULL
,
109 NULL
, NULL
, NULL
, NULL
,
112 static const char *ext4_feature_name
[] = {
113 NULL
, NULL
, "xstore", "xstore-en",
114 NULL
, NULL
, "xcrypt", "xcrypt-en",
115 "ace2", "ace2-en", "phe", "phe-en",
116 "pmm", "pmm-en", NULL
, NULL
,
117 NULL
, NULL
, NULL
, NULL
,
118 NULL
, NULL
, NULL
, NULL
,
119 NULL
, NULL
, NULL
, NULL
,
120 NULL
, NULL
, NULL
, NULL
,
123 static const char *kvm_feature_name
[] = {
124 "kvmclock", "kvm_nopiodelay", "kvm_mmu", "kvmclock",
125 "kvm_asyncpf", "kvm_steal_time", "kvm_pv_eoi", NULL
,
126 NULL
, NULL
, NULL
, NULL
,
127 NULL
, NULL
, NULL
, NULL
,
128 NULL
, NULL
, NULL
, NULL
,
129 NULL
, NULL
, NULL
, NULL
,
130 NULL
, NULL
, NULL
, NULL
,
131 NULL
, NULL
, NULL
, NULL
,
134 static const char *svm_feature_name
[] = {
135 "npt", "lbrv", "svm_lock", "nrip_save",
136 "tsc_scale", "vmcb_clean", "flushbyasid", "decodeassists",
137 NULL
, NULL
, "pause_filter", NULL
,
138 "pfthreshold", NULL
, NULL
, NULL
,
139 NULL
, NULL
, NULL
, NULL
,
140 NULL
, NULL
, NULL
, NULL
,
141 NULL
, NULL
, NULL
, NULL
,
142 NULL
, NULL
, NULL
, NULL
,
145 static const char *cpuid_7_0_ebx_feature_name
[] = {
146 "fsgsbase", NULL
, NULL
, "bmi1", "hle", "avx2", NULL
, "smep",
147 "bmi2", "erms", "invpcid", "rtm", NULL
, NULL
, NULL
, NULL
,
148 NULL
, NULL
, "rdseed", "adx", "smap", NULL
, NULL
, NULL
,
149 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
152 typedef struct FeatureWordInfo
{
153 const char **feat_names
;
154 uint32_t cpuid_eax
; /* Input EAX for CPUID */
155 int cpuid_reg
; /* R_* register constant */
158 static FeatureWordInfo feature_word_info
[FEATURE_WORDS
] = {
160 .feat_names
= feature_name
,
161 .cpuid_eax
= 1, .cpuid_reg
= R_EDX
,
164 .feat_names
= ext_feature_name
,
165 .cpuid_eax
= 1, .cpuid_reg
= R_ECX
,
167 [FEAT_8000_0001_EDX
] = {
168 .feat_names
= ext2_feature_name
,
169 .cpuid_eax
= 0x80000001, .cpuid_reg
= R_EDX
,
171 [FEAT_8000_0001_ECX
] = {
172 .feat_names
= ext3_feature_name
,
173 .cpuid_eax
= 0x80000001, .cpuid_reg
= R_ECX
,
175 [FEAT_C000_0001_EDX
] = {
176 .feat_names
= ext4_feature_name
,
177 .cpuid_eax
= 0xC0000001, .cpuid_reg
= R_EDX
,
180 .feat_names
= kvm_feature_name
,
181 .cpuid_eax
= KVM_CPUID_FEATURES
, .cpuid_reg
= R_EAX
,
184 .feat_names
= svm_feature_name
,
185 .cpuid_eax
= 0x8000000A, .cpuid_reg
= R_EDX
,
188 .feat_names
= cpuid_7_0_ebx_feature_name
,
189 .cpuid_eax
= 7, .cpuid_reg
= R_EBX
,
193 const char *get_register_name_32(unsigned int reg
)
195 static const char *reg_names
[CPU_NB_REGS32
] = {
206 if (reg
> CPU_NB_REGS32
) {
209 return reg_names
[reg
];
212 /* collects per-function cpuid data
214 typedef struct model_features_t
{
215 uint32_t *guest_feat
;
217 FeatureWord feat_word
;
221 int enforce_cpuid
= 0;
223 static uint32_t kvm_default_features
= (1 << KVM_FEATURE_CLOCKSOURCE
) |
224 (1 << KVM_FEATURE_NOP_IO_DELAY
) |
225 (1 << KVM_FEATURE_CLOCKSOURCE2
) |
226 (1 << KVM_FEATURE_ASYNC_PF
) |
227 (1 << KVM_FEATURE_STEAL_TIME
) |
228 (1 << KVM_FEATURE_PV_EOI
) |
229 (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT
);
231 void disable_kvm_pv_eoi(void)
233 kvm_default_features
&= ~(1UL << KVM_FEATURE_PV_EOI
);
236 void host_cpuid(uint32_t function
, uint32_t count
,
237 uint32_t *eax
, uint32_t *ebx
, uint32_t *ecx
, uint32_t *edx
)
239 #if defined(CONFIG_KVM)
244 : "=a"(vec
[0]), "=b"(vec
[1]),
245 "=c"(vec
[2]), "=d"(vec
[3])
246 : "0"(function
), "c"(count
) : "cc");
248 asm volatile("pusha \n\t"
250 "mov %%eax, 0(%2) \n\t"
251 "mov %%ebx, 4(%2) \n\t"
252 "mov %%ecx, 8(%2) \n\t"
253 "mov %%edx, 12(%2) \n\t"
255 : : "a"(function
), "c"(count
), "S"(vec
)
270 #define iswhite(c) ((c) && ((c) <= ' ' || '~' < (c)))
272 /* general substring compare of *[s1..e1) and *[s2..e2). sx is start of
273 * a substring. ex if !NULL points to the first char after a substring,
274 * otherwise the string is assumed to sized by a terminating nul.
275 * Return lexical ordering of *s1:*s2.
277 static int sstrcmp(const char *s1
, const char *e1
, const char *s2
,
281 if (!*s1
|| !*s2
|| *s1
!= *s2
)
284 if (s1
== e1
&& s2
== e2
)
293 /* compare *[s..e) to *altstr. *altstr may be a simple string or multiple
294 * '|' delimited (possibly empty) strings in which case search for a match
295 * within the alternatives proceeds left to right. Return 0 for success,
296 * non-zero otherwise.
298 static int altcmp(const char *s
, const char *e
, const char *altstr
)
302 for (q
= p
= altstr
; ; ) {
303 while (*p
&& *p
!= '|')
305 if ((q
== p
&& !*s
) || (q
!= p
&& !sstrcmp(s
, e
, q
, p
)))
314 /* search featureset for flag *[s..e), if found set corresponding bit in
315 * *pval and return true, otherwise return false
317 static bool lookup_feature(uint32_t *pval
, const char *s
, const char *e
,
318 const char **featureset
)
324 for (mask
= 1, ppc
= featureset
; mask
; mask
<<= 1, ++ppc
) {
325 if (*ppc
&& !altcmp(s
, e
, *ppc
)) {
333 static void add_flagname_to_bitmaps(const char *flagname
,
334 FeatureWordArray words
)
337 for (w
= 0; w
< FEATURE_WORDS
; w
++) {
338 FeatureWordInfo
*wi
= &feature_word_info
[w
];
339 if (wi
->feat_names
&&
340 lookup_feature(&words
[w
], flagname
, NULL
, wi
->feat_names
)) {
344 if (w
== FEATURE_WORDS
) {
345 fprintf(stderr
, "CPU feature %s not found\n", flagname
);
349 typedef struct x86_def_t
{
352 /* vendor is zero-terminated, 12 character ASCII string */
353 char vendor
[CPUID_VENDOR_SZ
+ 1];
357 uint32_t features
, ext_features
, ext2_features
, ext3_features
;
358 uint32_t kvm_features
, svm_features
;
361 /* Store the results of Centaur's CPUID instructions */
362 uint32_t ext4_features
;
364 /* The feature bits on CPUID[EAX=7,ECX=0].EBX */
365 uint32_t cpuid_7_0_ebx_features
;
368 #define I486_FEATURES (CPUID_FP87 | CPUID_VME | CPUID_PSE)
369 #define PENTIUM_FEATURES (I486_FEATURES | CPUID_DE | CPUID_TSC | \
370 CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_MMX | CPUID_APIC)
371 #define PENTIUM2_FEATURES (PENTIUM_FEATURES | CPUID_PAE | CPUID_SEP | \
372 CPUID_MTRR | CPUID_PGE | CPUID_MCA | CPUID_CMOV | CPUID_PAT | \
373 CPUID_PSE36 | CPUID_FXSR)
374 #define PENTIUM3_FEATURES (PENTIUM2_FEATURES | CPUID_SSE)
375 #define PPRO_FEATURES (CPUID_FP87 | CPUID_DE | CPUID_PSE | CPUID_TSC | \
376 CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_PGE | CPUID_CMOV | \
377 CPUID_PAT | CPUID_FXSR | CPUID_MMX | CPUID_SSE | CPUID_SSE2 | \
378 CPUID_PAE | CPUID_SEP | CPUID_APIC)
380 #define TCG_FEATURES (CPUID_FP87 | CPUID_PSE | CPUID_TSC | CPUID_MSR | \
381 CPUID_PAE | CPUID_MCE | CPUID_CX8 | CPUID_APIC | CPUID_SEP | \
382 CPUID_MTRR | CPUID_PGE | CPUID_MCA | CPUID_CMOV | CPUID_PAT | \
383 CPUID_PSE36 | CPUID_CLFLUSH | CPUID_ACPI | CPUID_MMX | \
384 CPUID_FXSR | CPUID_SSE | CPUID_SSE2 | CPUID_SS)
385 /* partly implemented:
386 CPUID_MTRR, CPUID_MCA, CPUID_CLFLUSH (needed for Win64)
387 CPUID_PSE36 (needed for Solaris) */
389 CPUID_VME, CPUID_DTS, CPUID_SS, CPUID_HT, CPUID_TM, CPUID_PBE */
390 #define TCG_EXT_FEATURES (CPUID_EXT_SSE3 | CPUID_EXT_PCLMULQDQ | \
391 CPUID_EXT_MONITOR | CPUID_EXT_SSSE3 | CPUID_EXT_CX16 | \
392 CPUID_EXT_SSE41 | CPUID_EXT_SSE42 | CPUID_EXT_POPCNT | \
393 CPUID_EXT_MOVBE | CPUID_EXT_AES | CPUID_EXT_HYPERVISOR)
395 CPUID_EXT_DTES64, CPUID_EXT_DSCPL, CPUID_EXT_VMX, CPUID_EXT_SMX,
396 CPUID_EXT_EST, CPUID_EXT_TM2, CPUID_EXT_CID, CPUID_EXT_FMA,
397 CPUID_EXT_XTPR, CPUID_EXT_PDCM, CPUID_EXT_PCID, CPUID_EXT_DCA,
398 CPUID_EXT_X2APIC, CPUID_EXT_TSC_DEADLINE_TIMER, CPUID_EXT_XSAVE,
399 CPUID_EXT_OSXSAVE, CPUID_EXT_AVX, CPUID_EXT_F16C,
401 #define TCG_EXT2_FEATURES ((TCG_FEATURES & CPUID_EXT2_AMD_ALIASES) | \
402 CPUID_EXT2_NX | CPUID_EXT2_MMXEXT | CPUID_EXT2_RDTSCP | \
403 CPUID_EXT2_3DNOW | CPUID_EXT2_3DNOWEXT)
405 CPUID_EXT2_PDPE1GB */
406 #define TCG_EXT3_FEATURES (CPUID_EXT3_LAHF_LM | CPUID_EXT3_SVM | \
407 CPUID_EXT3_CR8LEG | CPUID_EXT3_ABM | CPUID_EXT3_SSE4A)
408 #define TCG_SVM_FEATURES 0
409 #define TCG_7_0_EBX_FEATURES (CPUID_7_0_EBX_SMEP | CPUID_7_0_EBX_SMAP \
410 CPUID_7_0_EBX_BMI1 | CPUID_7_0_EBX_BMI2 | CPUID_7_0_EBX_ADX)
412 CPUID_7_0_EBX_FSGSBASE, CPUID_7_0_EBX_HLE, CPUID_7_0_EBX_AVX2,
413 CPUID_7_0_EBX_ERMS, CPUID_7_0_EBX_INVPCID, CPUID_7_0_EBX_RTM,
414 CPUID_7_0_EBX_RDSEED */
416 /* built-in CPU model definitions
418 static x86_def_t builtin_x86_defs
[] = {
422 .vendor
= CPUID_VENDOR_AMD
,
426 .features
= PPRO_FEATURES
|
427 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
429 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_CX16
| CPUID_EXT_POPCNT
,
430 .ext2_features
= (PPRO_FEATURES
& CPUID_EXT2_AMD_ALIASES
) |
431 CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
,
432 .ext3_features
= CPUID_EXT3_LAHF_LM
| CPUID_EXT3_SVM
|
433 CPUID_EXT3_ABM
| CPUID_EXT3_SSE4A
,
434 .xlevel
= 0x8000000A,
439 .vendor
= CPUID_VENDOR_AMD
,
443 .features
= PPRO_FEATURES
|
444 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
445 CPUID_PSE36
| CPUID_VME
| CPUID_HT
,
446 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_MONITOR
| CPUID_EXT_CX16
|
448 .ext2_features
= (PPRO_FEATURES
& CPUID_EXT2_AMD_ALIASES
) |
449 CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
|
450 CPUID_EXT2_3DNOW
| CPUID_EXT2_3DNOWEXT
| CPUID_EXT2_MMXEXT
|
451 CPUID_EXT2_FFXSR
| CPUID_EXT2_PDPE1GB
| CPUID_EXT2_RDTSCP
,
452 /* Missing: CPUID_EXT3_CMP_LEG, CPUID_EXT3_EXTAPIC,
454 CPUID_EXT3_MISALIGNSSE, CPUID_EXT3_3DNOWPREFETCH,
455 CPUID_EXT3_OSVW, CPUID_EXT3_IBS */
456 .ext3_features
= CPUID_EXT3_LAHF_LM
| CPUID_EXT3_SVM
|
457 CPUID_EXT3_ABM
| CPUID_EXT3_SSE4A
,
458 .svm_features
= CPUID_SVM_NPT
| CPUID_SVM_LBRV
,
459 .xlevel
= 0x8000001A,
460 .model_id
= "AMD Phenom(tm) 9550 Quad-Core Processor"
465 .vendor
= CPUID_VENDOR_INTEL
,
469 .features
= PPRO_FEATURES
|
470 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
471 CPUID_PSE36
| CPUID_VME
| CPUID_DTS
| CPUID_ACPI
| CPUID_SS
|
472 CPUID_HT
| CPUID_TM
| CPUID_PBE
,
473 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_MONITOR
| CPUID_EXT_SSSE3
|
474 CPUID_EXT_DTES64
| CPUID_EXT_DSCPL
| CPUID_EXT_VMX
| CPUID_EXT_EST
|
475 CPUID_EXT_TM2
| CPUID_EXT_CX16
| CPUID_EXT_XTPR
| CPUID_EXT_PDCM
,
476 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
,
477 .ext3_features
= CPUID_EXT3_LAHF_LM
,
478 .xlevel
= 0x80000008,
479 .model_id
= "Intel(R) Core(TM)2 Duo CPU T7700 @ 2.40GHz",
484 .vendor
= CPUID_VENDOR_INTEL
,
488 /* Missing: CPUID_VME, CPUID_HT */
489 .features
= PPRO_FEATURES
|
490 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
492 /* Missing: CPUID_EXT_POPCNT, CPUID_EXT_MONITOR */
493 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_CX16
,
494 /* Missing: CPUID_EXT2_PDPE1GB, CPUID_EXT2_RDTSCP */
495 .ext2_features
= (PPRO_FEATURES
& CPUID_EXT2_AMD_ALIASES
) |
496 CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
,
497 /* Missing: CPUID_EXT3_LAHF_LM, CPUID_EXT3_CMP_LEG, CPUID_EXT3_EXTAPIC,
498 CPUID_EXT3_CR8LEG, CPUID_EXT3_ABM, CPUID_EXT3_SSE4A,
499 CPUID_EXT3_MISALIGNSSE, CPUID_EXT3_3DNOWPREFETCH,
500 CPUID_EXT3_OSVW, CPUID_EXT3_IBS, CPUID_EXT3_SVM */
502 .xlevel
= 0x80000008,
503 .model_id
= "Common KVM processor"
508 .vendor
= CPUID_VENDOR_INTEL
,
512 .features
= PPRO_FEATURES
,
513 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_POPCNT
,
514 .xlevel
= 0x80000004,
519 .vendor
= CPUID_VENDOR_INTEL
,
523 .features
= PPRO_FEATURES
|
524 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
| CPUID_PSE36
,
525 .ext_features
= CPUID_EXT_SSE3
,
526 .ext2_features
= PPRO_FEATURES
& CPUID_EXT2_AMD_ALIASES
,
528 .xlevel
= 0x80000008,
529 .model_id
= "Common 32-bit KVM processor"
534 .vendor
= CPUID_VENDOR_INTEL
,
538 .features
= PPRO_FEATURES
| CPUID_VME
|
539 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
| CPUID_DTS
| CPUID_ACPI
|
540 CPUID_SS
| CPUID_HT
| CPUID_TM
| CPUID_PBE
,
541 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_MONITOR
| CPUID_EXT_VMX
|
542 CPUID_EXT_EST
| CPUID_EXT_TM2
| CPUID_EXT_XTPR
| CPUID_EXT_PDCM
,
543 .ext2_features
= CPUID_EXT2_NX
,
544 .xlevel
= 0x80000008,
545 .model_id
= "Genuine Intel(R) CPU T2600 @ 2.16GHz",
550 .vendor
= CPUID_VENDOR_INTEL
,
554 .features
= I486_FEATURES
,
560 .vendor
= CPUID_VENDOR_INTEL
,
564 .features
= PENTIUM_FEATURES
,
570 .vendor
= CPUID_VENDOR_INTEL
,
574 .features
= PENTIUM2_FEATURES
,
580 .vendor
= CPUID_VENDOR_INTEL
,
584 .features
= PENTIUM3_FEATURES
,
590 .vendor
= CPUID_VENDOR_AMD
,
594 .features
= PPRO_FEATURES
| CPUID_PSE36
| CPUID_VME
| CPUID_MTRR
|
596 .ext2_features
= (PPRO_FEATURES
& CPUID_EXT2_AMD_ALIASES
) |
597 CPUID_EXT2_MMXEXT
| CPUID_EXT2_3DNOW
| CPUID_EXT2_3DNOWEXT
,
598 .xlevel
= 0x80000008,
602 /* original is on level 10 */
604 .vendor
= CPUID_VENDOR_INTEL
,
608 .features
= PPRO_FEATURES
|
609 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
| CPUID_VME
| CPUID_DTS
|
610 CPUID_ACPI
| CPUID_SS
| CPUID_HT
| CPUID_TM
| CPUID_PBE
,
611 /* Some CPUs got no CPUID_SEP */
612 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_MONITOR
| CPUID_EXT_SSSE3
|
613 CPUID_EXT_DSCPL
| CPUID_EXT_EST
| CPUID_EXT_TM2
| CPUID_EXT_XTPR
,
614 .ext2_features
= (PPRO_FEATURES
& CPUID_EXT2_AMD_ALIASES
) |
616 .ext3_features
= CPUID_EXT3_LAHF_LM
,
617 .xlevel
= 0x8000000A,
618 .model_id
= "Intel(R) Atom(TM) CPU N270 @ 1.60GHz",
623 .vendor
= CPUID_VENDOR_INTEL
,
627 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
628 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
629 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
630 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
631 CPUID_DE
| CPUID_FP87
,
632 .ext_features
= CPUID_EXT_SSSE3
| CPUID_EXT_SSE3
,
633 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_NX
| CPUID_EXT2_SYSCALL
,
634 .ext3_features
= CPUID_EXT3_LAHF_LM
,
635 .xlevel
= 0x8000000A,
636 .model_id
= "Intel Celeron_4x0 (Conroe/Merom Class Core 2)",
641 .vendor
= CPUID_VENDOR_INTEL
,
645 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
646 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
647 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
648 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
649 CPUID_DE
| CPUID_FP87
,
650 .ext_features
= CPUID_EXT_SSE41
| CPUID_EXT_CX16
| CPUID_EXT_SSSE3
|
652 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_NX
| CPUID_EXT2_SYSCALL
,
653 .ext3_features
= CPUID_EXT3_LAHF_LM
,
654 .xlevel
= 0x8000000A,
655 .model_id
= "Intel Core 2 Duo P9xxx (Penryn Class Core 2)",
660 .vendor
= CPUID_VENDOR_INTEL
,
664 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
665 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
666 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
667 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
668 CPUID_DE
| CPUID_FP87
,
669 .ext_features
= CPUID_EXT_POPCNT
| CPUID_EXT_SSE42
| CPUID_EXT_SSE41
|
670 CPUID_EXT_CX16
| CPUID_EXT_SSSE3
| CPUID_EXT_SSE3
,
671 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
,
672 .ext3_features
= CPUID_EXT3_LAHF_LM
,
673 .xlevel
= 0x8000000A,
674 .model_id
= "Intel Core i7 9xx (Nehalem Class Core i7)",
679 .vendor
= CPUID_VENDOR_INTEL
,
683 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
684 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
685 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
686 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
687 CPUID_DE
| CPUID_FP87
,
688 .ext_features
= CPUID_EXT_AES
| CPUID_EXT_POPCNT
| CPUID_EXT_SSE42
|
689 CPUID_EXT_SSE41
| CPUID_EXT_CX16
| CPUID_EXT_SSSE3
|
690 CPUID_EXT_PCLMULQDQ
| CPUID_EXT_SSE3
,
691 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
,
692 .ext3_features
= CPUID_EXT3_LAHF_LM
,
693 .xlevel
= 0x8000000A,
694 .model_id
= "Westmere E56xx/L56xx/X56xx (Nehalem-C)",
697 .name
= "SandyBridge",
699 .vendor
= CPUID_VENDOR_INTEL
,
703 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
704 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
705 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
706 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
707 CPUID_DE
| CPUID_FP87
,
708 .ext_features
= CPUID_EXT_AVX
| CPUID_EXT_XSAVE
| CPUID_EXT_AES
|
709 CPUID_EXT_TSC_DEADLINE_TIMER
| CPUID_EXT_POPCNT
|
710 CPUID_EXT_X2APIC
| CPUID_EXT_SSE42
| CPUID_EXT_SSE41
|
711 CPUID_EXT_CX16
| CPUID_EXT_SSSE3
| CPUID_EXT_PCLMULQDQ
|
713 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_RDTSCP
| CPUID_EXT2_NX
|
715 .ext3_features
= CPUID_EXT3_LAHF_LM
,
716 .xlevel
= 0x8000000A,
717 .model_id
= "Intel Xeon E312xx (Sandy Bridge)",
722 .vendor
= CPUID_VENDOR_INTEL
,
726 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
727 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
728 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
729 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
730 CPUID_DE
| CPUID_FP87
,
731 .ext_features
= CPUID_EXT_AVX
| CPUID_EXT_XSAVE
| CPUID_EXT_AES
|
732 CPUID_EXT_POPCNT
| CPUID_EXT_X2APIC
| CPUID_EXT_SSE42
|
733 CPUID_EXT_SSE41
| CPUID_EXT_CX16
| CPUID_EXT_SSSE3
|
734 CPUID_EXT_PCLMULQDQ
| CPUID_EXT_SSE3
|
735 CPUID_EXT_TSC_DEADLINE_TIMER
| CPUID_EXT_FMA
| CPUID_EXT_MOVBE
|
737 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_RDTSCP
| CPUID_EXT2_NX
|
739 .ext3_features
= CPUID_EXT3_LAHF_LM
,
740 .cpuid_7_0_ebx_features
= CPUID_7_0_EBX_FSGSBASE
| CPUID_7_0_EBX_BMI1
|
741 CPUID_7_0_EBX_HLE
| CPUID_7_0_EBX_AVX2
| CPUID_7_0_EBX_SMEP
|
742 CPUID_7_0_EBX_BMI2
| CPUID_7_0_EBX_ERMS
| CPUID_7_0_EBX_INVPCID
|
744 .xlevel
= 0x8000000A,
745 .model_id
= "Intel Core Processor (Haswell)",
748 .name
= "Opteron_G1",
750 .vendor
= CPUID_VENDOR_AMD
,
754 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
755 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
756 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
757 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
758 CPUID_DE
| CPUID_FP87
,
759 .ext_features
= CPUID_EXT_SSE3
,
760 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_FXSR
| CPUID_EXT2_MMX
|
761 CPUID_EXT2_NX
| CPUID_EXT2_PSE36
| CPUID_EXT2_PAT
|
762 CPUID_EXT2_CMOV
| CPUID_EXT2_MCA
| CPUID_EXT2_PGE
|
763 CPUID_EXT2_MTRR
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_APIC
|
764 CPUID_EXT2_CX8
| CPUID_EXT2_MCE
| CPUID_EXT2_PAE
| CPUID_EXT2_MSR
|
765 CPUID_EXT2_TSC
| CPUID_EXT2_PSE
| CPUID_EXT2_DE
| CPUID_EXT2_FPU
,
766 .xlevel
= 0x80000008,
767 .model_id
= "AMD Opteron 240 (Gen 1 Class Opteron)",
770 .name
= "Opteron_G2",
772 .vendor
= CPUID_VENDOR_AMD
,
776 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
777 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
778 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
779 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
780 CPUID_DE
| CPUID_FP87
,
781 .ext_features
= CPUID_EXT_CX16
| CPUID_EXT_SSE3
,
782 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_RDTSCP
| CPUID_EXT2_FXSR
|
783 CPUID_EXT2_MMX
| CPUID_EXT2_NX
| CPUID_EXT2_PSE36
|
784 CPUID_EXT2_PAT
| CPUID_EXT2_CMOV
| CPUID_EXT2_MCA
|
785 CPUID_EXT2_PGE
| CPUID_EXT2_MTRR
| CPUID_EXT2_SYSCALL
|
786 CPUID_EXT2_APIC
| CPUID_EXT2_CX8
| CPUID_EXT2_MCE
|
787 CPUID_EXT2_PAE
| CPUID_EXT2_MSR
| CPUID_EXT2_TSC
| CPUID_EXT2_PSE
|
788 CPUID_EXT2_DE
| CPUID_EXT2_FPU
,
789 .ext3_features
= CPUID_EXT3_SVM
| CPUID_EXT3_LAHF_LM
,
790 .xlevel
= 0x80000008,
791 .model_id
= "AMD Opteron 22xx (Gen 2 Class Opteron)",
794 .name
= "Opteron_G3",
796 .vendor
= CPUID_VENDOR_AMD
,
800 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
801 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
802 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
803 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
804 CPUID_DE
| CPUID_FP87
,
805 .ext_features
= CPUID_EXT_POPCNT
| CPUID_EXT_CX16
| CPUID_EXT_MONITOR
|
807 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_RDTSCP
| CPUID_EXT2_FXSR
|
808 CPUID_EXT2_MMX
| CPUID_EXT2_NX
| CPUID_EXT2_PSE36
|
809 CPUID_EXT2_PAT
| CPUID_EXT2_CMOV
| CPUID_EXT2_MCA
|
810 CPUID_EXT2_PGE
| CPUID_EXT2_MTRR
| CPUID_EXT2_SYSCALL
|
811 CPUID_EXT2_APIC
| CPUID_EXT2_CX8
| CPUID_EXT2_MCE
|
812 CPUID_EXT2_PAE
| CPUID_EXT2_MSR
| CPUID_EXT2_TSC
| CPUID_EXT2_PSE
|
813 CPUID_EXT2_DE
| CPUID_EXT2_FPU
,
814 .ext3_features
= CPUID_EXT3_MISALIGNSSE
| CPUID_EXT3_SSE4A
|
815 CPUID_EXT3_ABM
| CPUID_EXT3_SVM
| CPUID_EXT3_LAHF_LM
,
816 .xlevel
= 0x80000008,
817 .model_id
= "AMD Opteron 23xx (Gen 3 Class Opteron)",
820 .name
= "Opteron_G4",
822 .vendor
= CPUID_VENDOR_AMD
,
826 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
827 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
828 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
829 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
830 CPUID_DE
| CPUID_FP87
,
831 .ext_features
= CPUID_EXT_AVX
| CPUID_EXT_XSAVE
| CPUID_EXT_AES
|
832 CPUID_EXT_POPCNT
| CPUID_EXT_SSE42
| CPUID_EXT_SSE41
|
833 CPUID_EXT_CX16
| CPUID_EXT_SSSE3
| CPUID_EXT_PCLMULQDQ
|
835 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_RDTSCP
|
836 CPUID_EXT2_PDPE1GB
| CPUID_EXT2_FXSR
| CPUID_EXT2_MMX
|
837 CPUID_EXT2_NX
| CPUID_EXT2_PSE36
| CPUID_EXT2_PAT
|
838 CPUID_EXT2_CMOV
| CPUID_EXT2_MCA
| CPUID_EXT2_PGE
|
839 CPUID_EXT2_MTRR
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_APIC
|
840 CPUID_EXT2_CX8
| CPUID_EXT2_MCE
| CPUID_EXT2_PAE
| CPUID_EXT2_MSR
|
841 CPUID_EXT2_TSC
| CPUID_EXT2_PSE
| CPUID_EXT2_DE
| CPUID_EXT2_FPU
,
842 .ext3_features
= CPUID_EXT3_FMA4
| CPUID_EXT3_XOP
|
843 CPUID_EXT3_3DNOWPREFETCH
| CPUID_EXT3_MISALIGNSSE
|
844 CPUID_EXT3_SSE4A
| CPUID_EXT3_ABM
| CPUID_EXT3_SVM
|
846 .xlevel
= 0x8000001A,
847 .model_id
= "AMD Opteron 62xx class CPU",
850 .name
= "Opteron_G5",
852 .vendor
= CPUID_VENDOR_AMD
,
856 .features
= CPUID_SSE2
| CPUID_SSE
| CPUID_FXSR
| CPUID_MMX
|
857 CPUID_CLFLUSH
| CPUID_PSE36
| CPUID_PAT
| CPUID_CMOV
| CPUID_MCA
|
858 CPUID_PGE
| CPUID_MTRR
| CPUID_SEP
| CPUID_APIC
| CPUID_CX8
|
859 CPUID_MCE
| CPUID_PAE
| CPUID_MSR
| CPUID_TSC
| CPUID_PSE
|
860 CPUID_DE
| CPUID_FP87
,
861 .ext_features
= CPUID_EXT_F16C
| CPUID_EXT_AVX
| CPUID_EXT_XSAVE
|
862 CPUID_EXT_AES
| CPUID_EXT_POPCNT
| CPUID_EXT_SSE42
|
863 CPUID_EXT_SSE41
| CPUID_EXT_CX16
| CPUID_EXT_FMA
|
864 CPUID_EXT_SSSE3
| CPUID_EXT_PCLMULQDQ
| CPUID_EXT_SSE3
,
865 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_RDTSCP
|
866 CPUID_EXT2_PDPE1GB
| CPUID_EXT2_FXSR
| CPUID_EXT2_MMX
|
867 CPUID_EXT2_NX
| CPUID_EXT2_PSE36
| CPUID_EXT2_PAT
|
868 CPUID_EXT2_CMOV
| CPUID_EXT2_MCA
| CPUID_EXT2_PGE
|
869 CPUID_EXT2_MTRR
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_APIC
|
870 CPUID_EXT2_CX8
| CPUID_EXT2_MCE
| CPUID_EXT2_PAE
| CPUID_EXT2_MSR
|
871 CPUID_EXT2_TSC
| CPUID_EXT2_PSE
| CPUID_EXT2_DE
| CPUID_EXT2_FPU
,
872 .ext3_features
= CPUID_EXT3_TBM
| CPUID_EXT3_FMA4
| CPUID_EXT3_XOP
|
873 CPUID_EXT3_3DNOWPREFETCH
| CPUID_EXT3_MISALIGNSSE
|
874 CPUID_EXT3_SSE4A
| CPUID_EXT3_ABM
| CPUID_EXT3_SVM
|
876 .xlevel
= 0x8000001A,
877 .model_id
= "AMD Opteron 63xx class CPU",
882 static int cpu_x86_fill_model_id(char *str
)
884 uint32_t eax
= 0, ebx
= 0, ecx
= 0, edx
= 0;
887 for (i
= 0; i
< 3; i
++) {
888 host_cpuid(0x80000002 + i
, 0, &eax
, &ebx
, &ecx
, &edx
);
889 memcpy(str
+ i
* 16 + 0, &eax
, 4);
890 memcpy(str
+ i
* 16 + 4, &ebx
, 4);
891 memcpy(str
+ i
* 16 + 8, &ecx
, 4);
892 memcpy(str
+ i
* 16 + 12, &edx
, 4);
898 /* Fill a x86_def_t struct with information about the host CPU, and
899 * the CPU features supported by the host hardware + host kernel
901 * This function may be called only if KVM is enabled.
903 static void kvm_cpu_fill_host(x86_def_t
*x86_cpu_def
)
906 KVMState
*s
= kvm_state
;
907 uint32_t eax
= 0, ebx
= 0, ecx
= 0, edx
= 0;
909 assert(kvm_enabled());
911 x86_cpu_def
->name
= "host";
912 host_cpuid(0x0, 0, &eax
, &ebx
, &ecx
, &edx
);
913 x86_cpu_vendor_words2str(x86_cpu_def
->vendor
, ebx
, edx
, ecx
);
915 host_cpuid(0x1, 0, &eax
, &ebx
, &ecx
, &edx
);
916 x86_cpu_def
->family
= ((eax
>> 8) & 0x0F) + ((eax
>> 20) & 0xFF);
917 x86_cpu_def
->model
= ((eax
>> 4) & 0x0F) | ((eax
& 0xF0000) >> 12);
918 x86_cpu_def
->stepping
= eax
& 0x0F;
920 x86_cpu_def
->level
= kvm_arch_get_supported_cpuid(s
, 0x0, 0, R_EAX
);
921 x86_cpu_def
->features
= kvm_arch_get_supported_cpuid(s
, 0x1, 0, R_EDX
);
922 x86_cpu_def
->ext_features
= kvm_arch_get_supported_cpuid(s
, 0x1, 0, R_ECX
);
924 if (x86_cpu_def
->level
>= 7) {
925 x86_cpu_def
->cpuid_7_0_ebx_features
=
926 kvm_arch_get_supported_cpuid(s
, 0x7, 0, R_EBX
);
928 x86_cpu_def
->cpuid_7_0_ebx_features
= 0;
931 x86_cpu_def
->xlevel
= kvm_arch_get_supported_cpuid(s
, 0x80000000, 0, R_EAX
);
932 x86_cpu_def
->ext2_features
=
933 kvm_arch_get_supported_cpuid(s
, 0x80000001, 0, R_EDX
);
934 x86_cpu_def
->ext3_features
=
935 kvm_arch_get_supported_cpuid(s
, 0x80000001, 0, R_ECX
);
937 cpu_x86_fill_model_id(x86_cpu_def
->model_id
);
939 /* Call Centaur's CPUID instruction. */
940 if (!strcmp(x86_cpu_def
->vendor
, CPUID_VENDOR_VIA
)) {
941 host_cpuid(0xC0000000, 0, &eax
, &ebx
, &ecx
, &edx
);
942 eax
= kvm_arch_get_supported_cpuid(s
, 0xC0000000, 0, R_EAX
);
943 if (eax
>= 0xC0000001) {
944 /* Support VIA max extended level */
945 x86_cpu_def
->xlevel2
= eax
;
946 host_cpuid(0xC0000001, 0, &eax
, &ebx
, &ecx
, &edx
);
947 x86_cpu_def
->ext4_features
=
948 kvm_arch_get_supported_cpuid(s
, 0xC0000001, 0, R_EDX
);
952 /* Other KVM-specific feature fields: */
953 x86_cpu_def
->svm_features
=
954 kvm_arch_get_supported_cpuid(s
, 0x8000000A, 0, R_EDX
);
955 x86_cpu_def
->kvm_features
=
956 kvm_arch_get_supported_cpuid(s
, KVM_CPUID_FEATURES
, 0, R_EAX
);
958 #endif /* CONFIG_KVM */
961 static int unavailable_host_feature(FeatureWordInfo
*f
, uint32_t mask
)
965 for (i
= 0; i
< 32; ++i
)
967 const char *reg
= get_register_name_32(f
->cpuid_reg
);
969 fprintf(stderr
, "warning: host doesn't support requested feature: "
970 "CPUID.%02XH:%s%s%s [bit %d]\n",
972 f
->feat_names
[i
] ? "." : "",
973 f
->feat_names
[i
] ? f
->feat_names
[i
] : "", i
);
979 /* Check if all requested cpu flags are making their way to the guest
981 * Returns 0 if all flags are supported by the host, non-zero otherwise.
983 * This function may be called only if KVM is enabled.
985 static int kvm_check_features_against_host(X86CPU
*cpu
)
987 CPUX86State
*env
= &cpu
->env
;
991 struct model_features_t ft
[] = {
992 {&env
->cpuid_features
, &host_def
.features
,
994 {&env
->cpuid_ext_features
, &host_def
.ext_features
,
996 {&env
->cpuid_ext2_features
, &host_def
.ext2_features
,
997 FEAT_8000_0001_EDX
},
998 {&env
->cpuid_ext3_features
, &host_def
.ext3_features
,
999 FEAT_8000_0001_ECX
},
1000 {&env
->cpuid_ext4_features
, &host_def
.ext4_features
,
1001 FEAT_C000_0001_EDX
},
1002 {&env
->cpuid_7_0_ebx_features
, &host_def
.cpuid_7_0_ebx_features
,
1004 {&env
->cpuid_svm_features
, &host_def
.svm_features
,
1006 {&env
->cpuid_kvm_features
, &host_def
.kvm_features
,
1010 assert(kvm_enabled());
1012 kvm_cpu_fill_host(&host_def
);
1013 for (rv
= 0, i
= 0; i
< ARRAY_SIZE(ft
); ++i
) {
1014 FeatureWord w
= ft
[i
].feat_word
;
1015 FeatureWordInfo
*wi
= &feature_word_info
[w
];
1016 for (mask
= 1; mask
; mask
<<= 1) {
1017 if (*ft
[i
].guest_feat
& mask
&&
1018 !(*ft
[i
].host_feat
& mask
)) {
1019 unavailable_host_feature(wi
, mask
);
1027 static void x86_cpuid_version_get_family(Object
*obj
, Visitor
*v
, void *opaque
,
1028 const char *name
, Error
**errp
)
1030 X86CPU
*cpu
= X86_CPU(obj
);
1031 CPUX86State
*env
= &cpu
->env
;
1034 value
= (env
->cpuid_version
>> 8) & 0xf;
1036 value
+= (env
->cpuid_version
>> 20) & 0xff;
1038 visit_type_int(v
, &value
, name
, errp
);
1041 static void x86_cpuid_version_set_family(Object
*obj
, Visitor
*v
, void *opaque
,
1042 const char *name
, Error
**errp
)
1044 X86CPU
*cpu
= X86_CPU(obj
);
1045 CPUX86State
*env
= &cpu
->env
;
1046 const int64_t min
= 0;
1047 const int64_t max
= 0xff + 0xf;
1050 visit_type_int(v
, &value
, name
, errp
);
1051 if (error_is_set(errp
)) {
1054 if (value
< min
|| value
> max
) {
1055 error_set(errp
, QERR_PROPERTY_VALUE_OUT_OF_RANGE
, "",
1056 name
? name
: "null", value
, min
, max
);
1060 env
->cpuid_version
&= ~0xff00f00;
1062 env
->cpuid_version
|= 0xf00 | ((value
- 0x0f) << 20);
1064 env
->cpuid_version
|= value
<< 8;
1068 static void x86_cpuid_version_get_model(Object
*obj
, Visitor
*v
, void *opaque
,
1069 const char *name
, Error
**errp
)
1071 X86CPU
*cpu
= X86_CPU(obj
);
1072 CPUX86State
*env
= &cpu
->env
;
1075 value
= (env
->cpuid_version
>> 4) & 0xf;
1076 value
|= ((env
->cpuid_version
>> 16) & 0xf) << 4;
1077 visit_type_int(v
, &value
, name
, errp
);
1080 static void x86_cpuid_version_set_model(Object
*obj
, Visitor
*v
, void *opaque
,
1081 const char *name
, Error
**errp
)
1083 X86CPU
*cpu
= X86_CPU(obj
);
1084 CPUX86State
*env
= &cpu
->env
;
1085 const int64_t min
= 0;
1086 const int64_t max
= 0xff;
1089 visit_type_int(v
, &value
, name
, errp
);
1090 if (error_is_set(errp
)) {
1093 if (value
< min
|| value
> max
) {
1094 error_set(errp
, QERR_PROPERTY_VALUE_OUT_OF_RANGE
, "",
1095 name
? name
: "null", value
, min
, max
);
1099 env
->cpuid_version
&= ~0xf00f0;
1100 env
->cpuid_version
|= ((value
& 0xf) << 4) | ((value
>> 4) << 16);
1103 static void x86_cpuid_version_get_stepping(Object
*obj
, Visitor
*v
,
1104 void *opaque
, const char *name
,
1107 X86CPU
*cpu
= X86_CPU(obj
);
1108 CPUX86State
*env
= &cpu
->env
;
1111 value
= env
->cpuid_version
& 0xf;
1112 visit_type_int(v
, &value
, name
, errp
);
1115 static void x86_cpuid_version_set_stepping(Object
*obj
, Visitor
*v
,
1116 void *opaque
, const char *name
,
1119 X86CPU
*cpu
= X86_CPU(obj
);
1120 CPUX86State
*env
= &cpu
->env
;
1121 const int64_t min
= 0;
1122 const int64_t max
= 0xf;
1125 visit_type_int(v
, &value
, name
, errp
);
1126 if (error_is_set(errp
)) {
1129 if (value
< min
|| value
> max
) {
1130 error_set(errp
, QERR_PROPERTY_VALUE_OUT_OF_RANGE
, "",
1131 name
? name
: "null", value
, min
, max
);
1135 env
->cpuid_version
&= ~0xf;
1136 env
->cpuid_version
|= value
& 0xf;
1139 static void x86_cpuid_get_level(Object
*obj
, Visitor
*v
, void *opaque
,
1140 const char *name
, Error
**errp
)
1142 X86CPU
*cpu
= X86_CPU(obj
);
1144 visit_type_uint32(v
, &cpu
->env
.cpuid_level
, name
, errp
);
1147 static void x86_cpuid_set_level(Object
*obj
, Visitor
*v
, void *opaque
,
1148 const char *name
, Error
**errp
)
1150 X86CPU
*cpu
= X86_CPU(obj
);
1152 visit_type_uint32(v
, &cpu
->env
.cpuid_level
, name
, errp
);
1155 static void x86_cpuid_get_xlevel(Object
*obj
, Visitor
*v
, void *opaque
,
1156 const char *name
, Error
**errp
)
1158 X86CPU
*cpu
= X86_CPU(obj
);
1160 visit_type_uint32(v
, &cpu
->env
.cpuid_xlevel
, name
, errp
);
1163 static void x86_cpuid_set_xlevel(Object
*obj
, Visitor
*v
, void *opaque
,
1164 const char *name
, Error
**errp
)
1166 X86CPU
*cpu
= X86_CPU(obj
);
1168 visit_type_uint32(v
, &cpu
->env
.cpuid_xlevel
, name
, errp
);
1171 static char *x86_cpuid_get_vendor(Object
*obj
, Error
**errp
)
1173 X86CPU
*cpu
= X86_CPU(obj
);
1174 CPUX86State
*env
= &cpu
->env
;
1177 value
= (char *)g_malloc(CPUID_VENDOR_SZ
+ 1);
1178 x86_cpu_vendor_words2str(value
, env
->cpuid_vendor1
, env
->cpuid_vendor2
,
1179 env
->cpuid_vendor3
);
1183 static void x86_cpuid_set_vendor(Object
*obj
, const char *value
,
1186 X86CPU
*cpu
= X86_CPU(obj
);
1187 CPUX86State
*env
= &cpu
->env
;
1190 if (strlen(value
) != CPUID_VENDOR_SZ
) {
1191 error_set(errp
, QERR_PROPERTY_VALUE_BAD
, "",
1196 env
->cpuid_vendor1
= 0;
1197 env
->cpuid_vendor2
= 0;
1198 env
->cpuid_vendor3
= 0;
1199 for (i
= 0; i
< 4; i
++) {
1200 env
->cpuid_vendor1
|= ((uint8_t)value
[i
]) << (8 * i
);
1201 env
->cpuid_vendor2
|= ((uint8_t)value
[i
+ 4]) << (8 * i
);
1202 env
->cpuid_vendor3
|= ((uint8_t)value
[i
+ 8]) << (8 * i
);
1206 static char *x86_cpuid_get_model_id(Object
*obj
, Error
**errp
)
1208 X86CPU
*cpu
= X86_CPU(obj
);
1209 CPUX86State
*env
= &cpu
->env
;
1213 value
= g_malloc(48 + 1);
1214 for (i
= 0; i
< 48; i
++) {
1215 value
[i
] = env
->cpuid_model
[i
>> 2] >> (8 * (i
& 3));
1221 static void x86_cpuid_set_model_id(Object
*obj
, const char *model_id
,
1224 X86CPU
*cpu
= X86_CPU(obj
);
1225 CPUX86State
*env
= &cpu
->env
;
1228 if (model_id
== NULL
) {
1231 len
= strlen(model_id
);
1232 memset(env
->cpuid_model
, 0, 48);
1233 for (i
= 0; i
< 48; i
++) {
1237 c
= (uint8_t)model_id
[i
];
1239 env
->cpuid_model
[i
>> 2] |= c
<< (8 * (i
& 3));
1243 static void x86_cpuid_get_tsc_freq(Object
*obj
, Visitor
*v
, void *opaque
,
1244 const char *name
, Error
**errp
)
1246 X86CPU
*cpu
= X86_CPU(obj
);
1249 value
= cpu
->env
.tsc_khz
* 1000;
1250 visit_type_int(v
, &value
, name
, errp
);
1253 static void x86_cpuid_set_tsc_freq(Object
*obj
, Visitor
*v
, void *opaque
,
1254 const char *name
, Error
**errp
)
1256 X86CPU
*cpu
= X86_CPU(obj
);
1257 const int64_t min
= 0;
1258 const int64_t max
= INT64_MAX
;
1261 visit_type_int(v
, &value
, name
, errp
);
1262 if (error_is_set(errp
)) {
1265 if (value
< min
|| value
> max
) {
1266 error_set(errp
, QERR_PROPERTY_VALUE_OUT_OF_RANGE
, "",
1267 name
? name
: "null", value
, min
, max
);
1271 cpu
->env
.tsc_khz
= value
/ 1000;
1274 static int cpu_x86_find_by_name(x86_def_t
*x86_cpu_def
, const char *name
)
1282 if (kvm_enabled() && strcmp(name
, "host") == 0) {
1283 kvm_cpu_fill_host(x86_cpu_def
);
1287 for (i
= 0; i
< ARRAY_SIZE(builtin_x86_defs
); i
++) {
1288 def
= &builtin_x86_defs
[i
];
1289 if (strcmp(name
, def
->name
) == 0) {
1290 memcpy(x86_cpu_def
, def
, sizeof(*def
));
1291 /* sysenter isn't supported in compatibility mode on AMD,
1292 * syscall isn't supported in compatibility mode on Intel.
1293 * Normally we advertise the actual CPU vendor, but you can
1294 * override this using the 'vendor' property if you want to use
1295 * KVM's sysenter/syscall emulation in compatibility mode and
1296 * when doing cross vendor migration
1298 if (kvm_enabled()) {
1299 uint32_t ebx
= 0, ecx
= 0, edx
= 0;
1300 host_cpuid(0, 0, NULL
, &ebx
, &ecx
, &edx
);
1301 x86_cpu_vendor_words2str(x86_cpu_def
->vendor
, ebx
, edx
, ecx
);
1310 /* Parse "+feature,-feature,feature=foo" CPU feature string
1312 static void cpu_x86_parse_featurestr(X86CPU
*cpu
, char *features
, Error
**errp
)
1314 char *featurestr
; /* Single 'key=value" string being parsed */
1315 /* Features to be added */
1316 FeatureWordArray plus_features
= { 0 };
1317 /* Features to be removed */
1318 FeatureWordArray minus_features
= { 0 };
1320 CPUX86State
*env
= &cpu
->env
;
1322 featurestr
= features
? strtok(features
, ",") : NULL
;
1324 while (featurestr
) {
1326 if (featurestr
[0] == '+') {
1327 add_flagname_to_bitmaps(featurestr
+ 1, plus_features
);
1328 } else if (featurestr
[0] == '-') {
1329 add_flagname_to_bitmaps(featurestr
+ 1, minus_features
);
1330 } else if ((val
= strchr(featurestr
, '='))) {
1332 if (!strcmp(featurestr
, "family")) {
1333 object_property_parse(OBJECT(cpu
), val
, featurestr
, errp
);
1334 } else if (!strcmp(featurestr
, "model")) {
1335 object_property_parse(OBJECT(cpu
), val
, featurestr
, errp
);
1336 } else if (!strcmp(featurestr
, "stepping")) {
1337 object_property_parse(OBJECT(cpu
), val
, featurestr
, errp
);
1338 } else if (!strcmp(featurestr
, "level")) {
1339 object_property_parse(OBJECT(cpu
), val
, featurestr
, errp
);
1340 } else if (!strcmp(featurestr
, "xlevel")) {
1344 numvalue
= strtoul(val
, &err
, 0);
1345 if (!*val
|| *err
) {
1346 error_setg(errp
, "bad numerical value %s", val
);
1349 if (numvalue
< 0x80000000) {
1350 fprintf(stderr
, "xlevel value shall always be >= 0x80000000"
1351 ", fixup will be removed in future versions\n");
1352 numvalue
+= 0x80000000;
1354 snprintf(num
, sizeof(num
), "%" PRIu32
, numvalue
);
1355 object_property_parse(OBJECT(cpu
), num
, featurestr
, errp
);
1356 } else if (!strcmp(featurestr
, "vendor")) {
1357 object_property_parse(OBJECT(cpu
), val
, featurestr
, errp
);
1358 } else if (!strcmp(featurestr
, "model_id")) {
1359 object_property_parse(OBJECT(cpu
), val
, "model-id", errp
);
1360 } else if (!strcmp(featurestr
, "tsc_freq")) {
1365 tsc_freq
= strtosz_suffix_unit(val
, &err
,
1366 STRTOSZ_DEFSUFFIX_B
, 1000);
1367 if (tsc_freq
< 0 || *err
) {
1368 error_setg(errp
, "bad numerical value %s", val
);
1371 snprintf(num
, sizeof(num
), "%" PRId64
, tsc_freq
);
1372 object_property_parse(OBJECT(cpu
), num
, "tsc-frequency", errp
);
1373 } else if (!strcmp(featurestr
, "hv_spinlocks")) {
1375 numvalue
= strtoul(val
, &err
, 0);
1376 if (!*val
|| *err
) {
1377 error_setg(errp
, "bad numerical value %s", val
);
1380 hyperv_set_spinlock_retries(numvalue
);
1382 error_setg(errp
, "unrecognized feature %s", featurestr
);
1385 } else if (!strcmp(featurestr
, "check")) {
1387 } else if (!strcmp(featurestr
, "enforce")) {
1388 check_cpuid
= enforce_cpuid
= 1;
1389 } else if (!strcmp(featurestr
, "hv_relaxed")) {
1390 hyperv_enable_relaxed_timing(true);
1391 } else if (!strcmp(featurestr
, "hv_vapic")) {
1392 hyperv_enable_vapic_recommended(true);
1394 error_setg(errp
, "feature string `%s' not in format (+feature|"
1395 "-feature|feature=xyz)", featurestr
);
1398 if (error_is_set(errp
)) {
1401 featurestr
= strtok(NULL
, ",");
1403 env
->cpuid_features
|= plus_features
[FEAT_1_EDX
];
1404 env
->cpuid_ext_features
|= plus_features
[FEAT_1_ECX
];
1405 env
->cpuid_ext2_features
|= plus_features
[FEAT_8000_0001_EDX
];
1406 env
->cpuid_ext3_features
|= plus_features
[FEAT_8000_0001_ECX
];
1407 env
->cpuid_ext4_features
|= plus_features
[FEAT_C000_0001_EDX
];
1408 env
->cpuid_kvm_features
|= plus_features
[FEAT_KVM
];
1409 env
->cpuid_svm_features
|= plus_features
[FEAT_SVM
];
1410 env
->cpuid_7_0_ebx_features
|= plus_features
[FEAT_7_0_EBX
];
1411 env
->cpuid_features
&= ~minus_features
[FEAT_1_EDX
];
1412 env
->cpuid_ext_features
&= ~minus_features
[FEAT_1_ECX
];
1413 env
->cpuid_ext2_features
&= ~minus_features
[FEAT_8000_0001_EDX
];
1414 env
->cpuid_ext3_features
&= ~minus_features
[FEAT_8000_0001_ECX
];
1415 env
->cpuid_ext4_features
&= ~minus_features
[FEAT_C000_0001_EDX
];
1416 env
->cpuid_kvm_features
&= ~minus_features
[FEAT_KVM
];
1417 env
->cpuid_svm_features
&= ~minus_features
[FEAT_SVM
];
1418 env
->cpuid_7_0_ebx_features
&= ~minus_features
[FEAT_7_0_EBX
];
1424 /* generate a composite string into buf of all cpuid names in featureset
1425 * selected by fbits. indicate truncation at bufsize in the event of overflow.
1426 * if flags, suppress names undefined in featureset.
1428 static void listflags(char *buf
, int bufsize
, uint32_t fbits
,
1429 const char **featureset
, uint32_t flags
)
1431 const char **p
= &featureset
[31];
1435 b
= 4 <= bufsize
? buf
+ (bufsize
-= 3) - 1 : NULL
;
1437 for (q
= buf
, bit
= 31; fbits
&& bufsize
; --p
, fbits
&= ~(1 << bit
), --bit
)
1438 if (fbits
& 1 << bit
&& (*p
|| !flags
)) {
1440 nc
= snprintf(q
, bufsize
, "%s%s", q
== buf
? "" : " ", *p
);
1442 nc
= snprintf(q
, bufsize
, "%s[%d]", q
== buf
? "" : " ", bit
);
1443 if (bufsize
<= nc
) {
1445 memcpy(b
, "...", sizeof("..."));
1454 /* generate CPU information. */
1455 void x86_cpu_list(FILE *f
, fprintf_function cpu_fprintf
)
1461 for (i
= 0; i
< ARRAY_SIZE(builtin_x86_defs
); i
++) {
1462 def
= &builtin_x86_defs
[i
];
1463 snprintf(buf
, sizeof(buf
), "%s", def
->name
);
1464 (*cpu_fprintf
)(f
, "x86 %16s %-48s\n", buf
, def
->model_id
);
1467 (*cpu_fprintf
)(f
, "x86 %16s %-48s\n", "host",
1468 "KVM processor with all supported host features "
1469 "(only available in KVM mode)");
1472 (*cpu_fprintf
)(f
, "\nRecognized CPUID flags:\n");
1473 for (i
= 0; i
< ARRAY_SIZE(feature_word_info
); i
++) {
1474 FeatureWordInfo
*fw
= &feature_word_info
[i
];
1476 listflags(buf
, sizeof(buf
), (uint32_t)~0, fw
->feat_names
, 1);
1477 (*cpu_fprintf
)(f
, " %s\n", buf
);
1481 CpuDefinitionInfoList
*arch_query_cpu_definitions(Error
**errp
)
1483 CpuDefinitionInfoList
*cpu_list
= NULL
;
1487 for (i
= 0; i
< ARRAY_SIZE(builtin_x86_defs
); i
++) {
1488 CpuDefinitionInfoList
*entry
;
1489 CpuDefinitionInfo
*info
;
1491 def
= &builtin_x86_defs
[i
];
1492 info
= g_malloc0(sizeof(*info
));
1493 info
->name
= g_strdup(def
->name
);
1495 entry
= g_malloc0(sizeof(*entry
));
1496 entry
->value
= info
;
1497 entry
->next
= cpu_list
;
1505 static void filter_features_for_kvm(X86CPU
*cpu
)
1507 CPUX86State
*env
= &cpu
->env
;
1508 KVMState
*s
= kvm_state
;
1510 env
->cpuid_features
&=
1511 kvm_arch_get_supported_cpuid(s
, 1, 0, R_EDX
);
1512 env
->cpuid_ext_features
&=
1513 kvm_arch_get_supported_cpuid(s
, 1, 0, R_ECX
);
1514 env
->cpuid_ext2_features
&=
1515 kvm_arch_get_supported_cpuid(s
, 0x80000001, 0, R_EDX
);
1516 env
->cpuid_ext3_features
&=
1517 kvm_arch_get_supported_cpuid(s
, 0x80000001, 0, R_ECX
);
1518 env
->cpuid_svm_features
&=
1519 kvm_arch_get_supported_cpuid(s
, 0x8000000A, 0, R_EDX
);
1520 env
->cpuid_7_0_ebx_features
&=
1521 kvm_arch_get_supported_cpuid(s
, 7, 0, R_EBX
);
1522 env
->cpuid_kvm_features
&=
1523 kvm_arch_get_supported_cpuid(s
, KVM_CPUID_FEATURES
, 0, R_EAX
);
1524 env
->cpuid_ext4_features
&=
1525 kvm_arch_get_supported_cpuid(s
, 0xC0000001, 0, R_EDX
);
1530 static void cpu_x86_register(X86CPU
*cpu
, const char *name
, Error
**errp
)
1532 CPUX86State
*env
= &cpu
->env
;
1533 x86_def_t def1
, *def
= &def1
;
1535 memset(def
, 0, sizeof(*def
));
1537 if (cpu_x86_find_by_name(def
, name
) < 0) {
1538 error_setg(errp
, "Unable to find CPU definition: %s", name
);
1542 if (kvm_enabled()) {
1543 def
->kvm_features
|= kvm_default_features
;
1545 def
->ext_features
|= CPUID_EXT_HYPERVISOR
;
1547 object_property_set_str(OBJECT(cpu
), def
->vendor
, "vendor", errp
);
1548 object_property_set_int(OBJECT(cpu
), def
->level
, "level", errp
);
1549 object_property_set_int(OBJECT(cpu
), def
->family
, "family", errp
);
1550 object_property_set_int(OBJECT(cpu
), def
->model
, "model", errp
);
1551 object_property_set_int(OBJECT(cpu
), def
->stepping
, "stepping", errp
);
1552 env
->cpuid_features
= def
->features
;
1553 env
->cpuid_ext_features
= def
->ext_features
;
1554 env
->cpuid_ext2_features
= def
->ext2_features
;
1555 env
->cpuid_ext3_features
= def
->ext3_features
;
1556 object_property_set_int(OBJECT(cpu
), def
->xlevel
, "xlevel", errp
);
1557 env
->cpuid_kvm_features
= def
->kvm_features
;
1558 env
->cpuid_svm_features
= def
->svm_features
;
1559 env
->cpuid_ext4_features
= def
->ext4_features
;
1560 env
->cpuid_7_0_ebx_features
= def
->cpuid_7_0_ebx_features
;
1561 env
->cpuid_xlevel2
= def
->xlevel2
;
1563 object_property_set_str(OBJECT(cpu
), def
->model_id
, "model-id", errp
);
1566 X86CPU
*cpu_x86_init(const char *cpu_model
)
1570 gchar
**model_pieces
;
1571 char *name
, *features
;
1572 Error
*error
= NULL
;
1574 model_pieces
= g_strsplit(cpu_model
, ",", 2);
1575 if (!model_pieces
[0]) {
1576 error_setg(&error
, "Invalid/empty CPU model name");
1579 name
= model_pieces
[0];
1580 features
= model_pieces
[1];
1582 cpu
= X86_CPU(object_new(TYPE_X86_CPU
));
1584 env
->cpu_model_str
= cpu_model
;
1586 cpu_x86_register(cpu
, name
, &error
);
1591 cpu_x86_parse_featurestr(cpu
, features
, &error
);
1596 object_property_set_bool(OBJECT(cpu
), true, "realized", &error
);
1602 g_strfreev(model_pieces
);
1604 fprintf(stderr
, "%s\n", error_get_pretty(error
));
1607 object_unref(OBJECT(cpu
));
1614 #if !defined(CONFIG_USER_ONLY)
1616 void cpu_clear_apic_feature(CPUX86State
*env
)
1618 env
->cpuid_features
&= ~CPUID_APIC
;
1621 #endif /* !CONFIG_USER_ONLY */
1623 /* Initialize list of CPU models, filling some non-static fields if necessary
1625 void x86_cpudef_setup(void)
1628 static const char *model_with_versions
[] = { "qemu32", "qemu64", "athlon" };
1630 for (i
= 0; i
< ARRAY_SIZE(builtin_x86_defs
); ++i
) {
1631 x86_def_t
*def
= &builtin_x86_defs
[i
];
1633 /* Look for specific "cpudef" models that */
1634 /* have the QEMU version in .model_id */
1635 for (j
= 0; j
< ARRAY_SIZE(model_with_versions
); j
++) {
1636 if (strcmp(model_with_versions
[j
], def
->name
) == 0) {
1637 pstrcpy(def
->model_id
, sizeof(def
->model_id
),
1638 "QEMU Virtual CPU version ");
1639 pstrcat(def
->model_id
, sizeof(def
->model_id
),
1640 qemu_get_version());
1647 static void get_cpuid_vendor(CPUX86State
*env
, uint32_t *ebx
,
1648 uint32_t *ecx
, uint32_t *edx
)
1650 *ebx
= env
->cpuid_vendor1
;
1651 *edx
= env
->cpuid_vendor2
;
1652 *ecx
= env
->cpuid_vendor3
;
1655 void cpu_x86_cpuid(CPUX86State
*env
, uint32_t index
, uint32_t count
,
1656 uint32_t *eax
, uint32_t *ebx
,
1657 uint32_t *ecx
, uint32_t *edx
)
1659 X86CPU
*cpu
= x86_env_get_cpu(env
);
1660 CPUState
*cs
= CPU(cpu
);
1662 /* test if maximum index reached */
1663 if (index
& 0x80000000) {
1664 if (index
> env
->cpuid_xlevel
) {
1665 if (env
->cpuid_xlevel2
> 0) {
1666 /* Handle the Centaur's CPUID instruction. */
1667 if (index
> env
->cpuid_xlevel2
) {
1668 index
= env
->cpuid_xlevel2
;
1669 } else if (index
< 0xC0000000) {
1670 index
= env
->cpuid_xlevel
;
1673 /* Intel documentation states that invalid EAX input will
1674 * return the same information as EAX=cpuid_level
1675 * (Intel SDM Vol. 2A - Instruction Set Reference - CPUID)
1677 index
= env
->cpuid_level
;
1681 if (index
> env
->cpuid_level
)
1682 index
= env
->cpuid_level
;
1687 *eax
= env
->cpuid_level
;
1688 get_cpuid_vendor(env
, ebx
, ecx
, edx
);
1691 *eax
= env
->cpuid_version
;
1692 *ebx
= (env
->cpuid_apic_id
<< 24) | 8 << 8; /* CLFLUSH size in quad words, Linux wants it. */
1693 *ecx
= env
->cpuid_ext_features
;
1694 *edx
= env
->cpuid_features
;
1695 if (cs
->nr_cores
* cs
->nr_threads
> 1) {
1696 *ebx
|= (cs
->nr_cores
* cs
->nr_threads
) << 16;
1697 *edx
|= 1 << 28; /* HTT bit */
1701 /* cache info: needed for Pentium Pro compatibility */
1708 /* cache info: needed for Core compatibility */
1709 if (cs
->nr_cores
> 1) {
1710 *eax
= (cs
->nr_cores
- 1) << 26;
1715 case 0: /* L1 dcache info */
1721 case 1: /* L1 icache info */
1727 case 2: /* L2 cache info */
1729 if (cs
->nr_threads
> 1) {
1730 *eax
|= (cs
->nr_threads
- 1) << 14;
1736 default: /* end of info */
1745 /* mwait info: needed for Core compatibility */
1746 *eax
= 0; /* Smallest monitor-line size in bytes */
1747 *ebx
= 0; /* Largest monitor-line size in bytes */
1748 *ecx
= CPUID_MWAIT_EMX
| CPUID_MWAIT_IBE
;
1752 /* Thermal and Power Leaf */
1759 /* Structured Extended Feature Flags Enumeration Leaf */
1761 *eax
= 0; /* Maximum ECX value for sub-leaves */
1762 *ebx
= env
->cpuid_7_0_ebx_features
; /* Feature flags */
1763 *ecx
= 0; /* Reserved */
1764 *edx
= 0; /* Reserved */
1773 /* Direct Cache Access Information Leaf */
1774 *eax
= 0; /* Bits 0-31 in DCA_CAP MSR */
1780 /* Architectural Performance Monitoring Leaf */
1781 if (kvm_enabled()) {
1782 KVMState
*s
= cs
->kvm_state
;
1784 *eax
= kvm_arch_get_supported_cpuid(s
, 0xA, count
, R_EAX
);
1785 *ebx
= kvm_arch_get_supported_cpuid(s
, 0xA, count
, R_EBX
);
1786 *ecx
= kvm_arch_get_supported_cpuid(s
, 0xA, count
, R_ECX
);
1787 *edx
= kvm_arch_get_supported_cpuid(s
, 0xA, count
, R_EDX
);
1796 /* Processor Extended State */
1797 if (!(env
->cpuid_ext_features
& CPUID_EXT_XSAVE
)) {
1804 if (kvm_enabled()) {
1805 KVMState
*s
= cs
->kvm_state
;
1807 *eax
= kvm_arch_get_supported_cpuid(s
, 0xd, count
, R_EAX
);
1808 *ebx
= kvm_arch_get_supported_cpuid(s
, 0xd, count
, R_EBX
);
1809 *ecx
= kvm_arch_get_supported_cpuid(s
, 0xd, count
, R_ECX
);
1810 *edx
= kvm_arch_get_supported_cpuid(s
, 0xd, count
, R_EDX
);
1819 *eax
= env
->cpuid_xlevel
;
1820 *ebx
= env
->cpuid_vendor1
;
1821 *edx
= env
->cpuid_vendor2
;
1822 *ecx
= env
->cpuid_vendor3
;
1825 *eax
= env
->cpuid_version
;
1827 *ecx
= env
->cpuid_ext3_features
;
1828 *edx
= env
->cpuid_ext2_features
;
1830 /* The Linux kernel checks for the CMPLegacy bit and
1831 * discards multiple thread information if it is set.
1832 * So dont set it here for Intel to make Linux guests happy.
1834 if (cs
->nr_cores
* cs
->nr_threads
> 1) {
1835 uint32_t tebx
, tecx
, tedx
;
1836 get_cpuid_vendor(env
, &tebx
, &tecx
, &tedx
);
1837 if (tebx
!= CPUID_VENDOR_INTEL_1
||
1838 tedx
!= CPUID_VENDOR_INTEL_2
||
1839 tecx
!= CPUID_VENDOR_INTEL_3
) {
1840 *ecx
|= 1 << 1; /* CmpLegacy bit */
1847 *eax
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 0];
1848 *ebx
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 1];
1849 *ecx
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 2];
1850 *edx
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 3];
1853 /* cache info (L1 cache) */
1860 /* cache info (L2 cache) */
1867 /* virtual & phys address size in low 2 bytes. */
1868 /* XXX: This value must match the one used in the MMU code. */
1869 if (env
->cpuid_ext2_features
& CPUID_EXT2_LM
) {
1870 /* 64 bit processor */
1871 /* XXX: The physical address space is limited to 42 bits in exec.c. */
1872 *eax
= 0x00003028; /* 48 bits virtual, 40 bits physical */
1874 if (env
->cpuid_features
& CPUID_PSE36
) {
1875 *eax
= 0x00000024; /* 36 bits physical */
1877 *eax
= 0x00000020; /* 32 bits physical */
1883 if (cs
->nr_cores
* cs
->nr_threads
> 1) {
1884 *ecx
|= (cs
->nr_cores
* cs
->nr_threads
) - 1;
1888 if (env
->cpuid_ext3_features
& CPUID_EXT3_SVM
) {
1889 *eax
= 0x00000001; /* SVM Revision */
1890 *ebx
= 0x00000010; /* nr of ASIDs */
1892 *edx
= env
->cpuid_svm_features
; /* optional features */
1901 *eax
= env
->cpuid_xlevel2
;
1907 /* Support for VIA CPU's CPUID instruction */
1908 *eax
= env
->cpuid_version
;
1911 *edx
= env
->cpuid_ext4_features
;
1916 /* Reserved for the future, and now filled with zero */
1923 /* reserved values: zero */
1932 /* CPUClass::reset() */
1933 static void x86_cpu_reset(CPUState
*s
)
1935 X86CPU
*cpu
= X86_CPU(s
);
1936 X86CPUClass
*xcc
= X86_CPU_GET_CLASS(cpu
);
1937 CPUX86State
*env
= &cpu
->env
;
1940 if (qemu_loglevel_mask(CPU_LOG_RESET
)) {
1941 qemu_log("CPU Reset (CPU %d)\n", s
->cpu_index
);
1942 log_cpu_state(env
, CPU_DUMP_FPU
| CPU_DUMP_CCOP
);
1945 xcc
->parent_reset(s
);
1948 memset(env
, 0, offsetof(CPUX86State
, breakpoints
));
1952 env
->old_exception
= -1;
1954 /* init to reset state */
1956 #ifdef CONFIG_SOFTMMU
1957 env
->hflags
|= HF_SOFTMMU_MASK
;
1959 env
->hflags2
|= HF2_GIF_MASK
;
1961 cpu_x86_update_cr0(env
, 0x60000010);
1962 env
->a20_mask
= ~0x0;
1963 env
->smbase
= 0x30000;
1965 env
->idt
.limit
= 0xffff;
1966 env
->gdt
.limit
= 0xffff;
1967 env
->ldt
.limit
= 0xffff;
1968 env
->ldt
.flags
= DESC_P_MASK
| (2 << DESC_TYPE_SHIFT
);
1969 env
->tr
.limit
= 0xffff;
1970 env
->tr
.flags
= DESC_P_MASK
| (11 << DESC_TYPE_SHIFT
);
1972 cpu_x86_load_seg_cache(env
, R_CS
, 0xf000, 0xffff0000, 0xffff,
1973 DESC_P_MASK
| DESC_S_MASK
| DESC_CS_MASK
|
1974 DESC_R_MASK
| DESC_A_MASK
);
1975 cpu_x86_load_seg_cache(env
, R_DS
, 0, 0, 0xffff,
1976 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
1978 cpu_x86_load_seg_cache(env
, R_ES
, 0, 0, 0xffff,
1979 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
1981 cpu_x86_load_seg_cache(env
, R_SS
, 0, 0, 0xffff,
1982 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
1984 cpu_x86_load_seg_cache(env
, R_FS
, 0, 0, 0xffff,
1985 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
1987 cpu_x86_load_seg_cache(env
, R_GS
, 0, 0, 0xffff,
1988 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
1992 env
->regs
[R_EDX
] = env
->cpuid_version
;
1997 for (i
= 0; i
< 8; i
++) {
2002 env
->mxcsr
= 0x1f80;
2004 env
->pat
= 0x0007040600070406ULL
;
2005 env
->msr_ia32_misc_enable
= MSR_IA32_MISC_ENABLE_DEFAULT
;
2007 memset(env
->dr
, 0, sizeof(env
->dr
));
2008 env
->dr
[6] = DR6_FIXED_1
;
2009 env
->dr
[7] = DR7_FIXED_1
;
2010 cpu_breakpoint_remove_all(env
, BP_CPU
);
2011 cpu_watchpoint_remove_all(env
, BP_CPU
);
2013 #if !defined(CONFIG_USER_ONLY)
2014 /* We hard-wire the BSP to the first CPU. */
2015 if (s
->cpu_index
== 0) {
2016 apic_designate_bsp(env
->apic_state
);
2019 s
->halted
= !cpu_is_bsp(cpu
);
2023 #ifndef CONFIG_USER_ONLY
2024 bool cpu_is_bsp(X86CPU
*cpu
)
2026 return cpu_get_apic_base(cpu
->env
.apic_state
) & MSR_IA32_APICBASE_BSP
;
2029 /* TODO: remove me, when reset over QOM tree is implemented */
2030 static void x86_cpu_machine_reset_cb(void *opaque
)
2032 X86CPU
*cpu
= opaque
;
2033 cpu_reset(CPU(cpu
));
2037 static void mce_init(X86CPU
*cpu
)
2039 CPUX86State
*cenv
= &cpu
->env
;
2042 if (((cenv
->cpuid_version
>> 8) & 0xf) >= 6
2043 && (cenv
->cpuid_features
& (CPUID_MCE
| CPUID_MCA
)) ==
2044 (CPUID_MCE
| CPUID_MCA
)) {
2045 cenv
->mcg_cap
= MCE_CAP_DEF
| MCE_BANKS_DEF
;
2046 cenv
->mcg_ctl
= ~(uint64_t)0;
2047 for (bank
= 0; bank
< MCE_BANKS_DEF
; bank
++) {
2048 cenv
->mce_banks
[bank
* 4] = ~(uint64_t)0;
2053 #ifndef CONFIG_USER_ONLY
2054 static void x86_cpu_apic_create(X86CPU
*cpu
, Error
**errp
)
2056 CPUX86State
*env
= &cpu
->env
;
2057 APICCommonState
*apic
;
2058 const char *apic_type
= "apic";
2060 if (kvm_irqchip_in_kernel()) {
2061 apic_type
= "kvm-apic";
2062 } else if (xen_enabled()) {
2063 apic_type
= "xen-apic";
2066 env
->apic_state
= qdev_try_create(NULL
, apic_type
);
2067 if (env
->apic_state
== NULL
) {
2068 error_setg(errp
, "APIC device '%s' could not be created", apic_type
);
2072 object_property_add_child(OBJECT(cpu
), "apic",
2073 OBJECT(env
->apic_state
), NULL
);
2074 qdev_prop_set_uint8(env
->apic_state
, "id", env
->cpuid_apic_id
);
2075 /* TODO: convert to link<> */
2076 apic
= APIC_COMMON(env
->apic_state
);
2080 static void x86_cpu_apic_realize(X86CPU
*cpu
, Error
**errp
)
2082 CPUX86State
*env
= &cpu
->env
;
2083 static int apic_mapped
;
2085 if (env
->apic_state
== NULL
) {
2089 if (qdev_init(env
->apic_state
)) {
2090 error_setg(errp
, "APIC device '%s' could not be initialized",
2091 object_get_typename(OBJECT(env
->apic_state
)));
2095 /* XXX: mapping more APICs at the same memory location */
2096 if (apic_mapped
== 0) {
2097 /* NOTE: the APIC is directly connected to the CPU - it is not
2098 on the global memory bus. */
2099 /* XXX: what if the base changes? */
2100 sysbus_mmio_map_overlap(SYS_BUS_DEVICE(env
->apic_state
), 0,
2101 APIC_DEFAULT_ADDRESS
, 0x1000);
2106 static void x86_cpu_apic_realize(X86CPU
*cpu
, Error
**errp
)
2111 static void x86_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
2113 X86CPU
*cpu
= X86_CPU(dev
);
2114 X86CPUClass
*xcc
= X86_CPU_GET_CLASS(dev
);
2115 CPUX86State
*env
= &cpu
->env
;
2116 Error
*local_err
= NULL
;
2118 if (env
->cpuid_7_0_ebx_features
&& env
->cpuid_level
< 7) {
2119 env
->cpuid_level
= 7;
2122 /* On AMD CPUs, some CPUID[8000_0001].EDX bits must match the bits on
2125 if (env
->cpuid_vendor1
== CPUID_VENDOR_AMD_1
&&
2126 env
->cpuid_vendor2
== CPUID_VENDOR_AMD_2
&&
2127 env
->cpuid_vendor3
== CPUID_VENDOR_AMD_3
) {
2128 env
->cpuid_ext2_features
&= ~CPUID_EXT2_AMD_ALIASES
;
2129 env
->cpuid_ext2_features
|= (env
->cpuid_features
2130 & CPUID_EXT2_AMD_ALIASES
);
2133 if (!kvm_enabled()) {
2134 env
->cpuid_features
&= TCG_FEATURES
;
2135 env
->cpuid_ext_features
&= TCG_EXT_FEATURES
;
2136 env
->cpuid_ext2_features
&= (TCG_EXT2_FEATURES
2137 #ifdef TARGET_X86_64
2138 | CPUID_EXT2_SYSCALL
| CPUID_EXT2_LM
2141 env
->cpuid_ext3_features
&= TCG_EXT3_FEATURES
;
2142 env
->cpuid_svm_features
&= TCG_SVM_FEATURES
;
2144 if (check_cpuid
&& kvm_check_features_against_host(cpu
)
2146 error_setg(&local_err
,
2147 "Host's CPU doesn't support requested features");
2151 filter_features_for_kvm(cpu
);
2155 #ifndef CONFIG_USER_ONLY
2156 qemu_register_reset(x86_cpu_machine_reset_cb
, cpu
);
2158 if (cpu
->env
.cpuid_features
& CPUID_APIC
|| smp_cpus
> 1) {
2159 x86_cpu_apic_create(cpu
, &local_err
);
2160 if (local_err
!= NULL
) {
2167 qemu_init_vcpu(&cpu
->env
);
2169 x86_cpu_apic_realize(cpu
, &local_err
);
2170 if (local_err
!= NULL
) {
2173 cpu_reset(CPU(cpu
));
2175 xcc
->parent_realize(dev
, &local_err
);
2177 if (local_err
!= NULL
) {
2178 error_propagate(errp
, local_err
);
2183 /* Enables contiguous-apic-ID mode, for compatibility */
2184 static bool compat_apic_id_mode
;
2186 void enable_compat_apic_id_mode(void)
2188 compat_apic_id_mode
= true;
2191 /* Calculates initial APIC ID for a specific CPU index
2193 * Currently we need to be able to calculate the APIC ID from the CPU index
2194 * alone (without requiring a CPU object), as the QEMU<->Seabios interfaces have
2195 * no concept of "CPU index", and the NUMA tables on fw_cfg need the APIC ID of
2196 * all CPUs up to max_cpus.
2198 uint32_t x86_cpu_apic_id_from_index(unsigned int cpu_index
)
2200 uint32_t correct_id
;
2203 correct_id
= x86_apicid_from_cpu_idx(smp_cores
, smp_threads
, cpu_index
);
2204 if (compat_apic_id_mode
) {
2205 if (cpu_index
!= correct_id
&& !warned
) {
2206 error_report("APIC IDs set in compatibility mode, "
2207 "CPU topology won't match the configuration");
2216 static void x86_cpu_initfn(Object
*obj
)
2218 CPUState
*cs
= CPU(obj
);
2219 X86CPU
*cpu
= X86_CPU(obj
);
2220 CPUX86State
*env
= &cpu
->env
;
2226 object_property_add(obj
, "family", "int",
2227 x86_cpuid_version_get_family
,
2228 x86_cpuid_version_set_family
, NULL
, NULL
, NULL
);
2229 object_property_add(obj
, "model", "int",
2230 x86_cpuid_version_get_model
,
2231 x86_cpuid_version_set_model
, NULL
, NULL
, NULL
);
2232 object_property_add(obj
, "stepping", "int",
2233 x86_cpuid_version_get_stepping
,
2234 x86_cpuid_version_set_stepping
, NULL
, NULL
, NULL
);
2235 object_property_add(obj
, "level", "int",
2236 x86_cpuid_get_level
,
2237 x86_cpuid_set_level
, NULL
, NULL
, NULL
);
2238 object_property_add(obj
, "xlevel", "int",
2239 x86_cpuid_get_xlevel
,
2240 x86_cpuid_set_xlevel
, NULL
, NULL
, NULL
);
2241 object_property_add_str(obj
, "vendor",
2242 x86_cpuid_get_vendor
,
2243 x86_cpuid_set_vendor
, NULL
);
2244 object_property_add_str(obj
, "model-id",
2245 x86_cpuid_get_model_id
,
2246 x86_cpuid_set_model_id
, NULL
);
2247 object_property_add(obj
, "tsc-frequency", "int",
2248 x86_cpuid_get_tsc_freq
,
2249 x86_cpuid_set_tsc_freq
, NULL
, NULL
, NULL
);
2251 env
->cpuid_apic_id
= x86_cpu_apic_id_from_index(cs
->cpu_index
);
2253 /* init various static tables used in TCG mode */
2254 if (tcg_enabled() && !inited
) {
2256 optimize_flags_init();
2257 #ifndef CONFIG_USER_ONLY
2258 cpu_set_debug_excp_handler(breakpoint_handler
);
2263 static void x86_cpu_common_class_init(ObjectClass
*oc
, void *data
)
2265 X86CPUClass
*xcc
= X86_CPU_CLASS(oc
);
2266 CPUClass
*cc
= CPU_CLASS(oc
);
2267 DeviceClass
*dc
= DEVICE_CLASS(oc
);
2269 xcc
->parent_realize
= dc
->realize
;
2270 dc
->realize
= x86_cpu_realizefn
;
2272 xcc
->parent_reset
= cc
->reset
;
2273 cc
->reset
= x86_cpu_reset
;
2275 cc
->do_interrupt
= x86_cpu_do_interrupt
;
2276 cpu_class_set_vmsd(cc
, &vmstate_x86_cpu
);
2279 static const TypeInfo x86_cpu_type_info
= {
2280 .name
= TYPE_X86_CPU
,
2282 .instance_size
= sizeof(X86CPU
),
2283 .instance_init
= x86_cpu_initfn
,
2285 .class_size
= sizeof(X86CPUClass
),
2286 .class_init
= x86_cpu_common_class_init
,
2289 static void x86_cpu_register_types(void)
2291 type_register_static(&x86_cpu_type_info
);
2294 type_init(x86_cpu_register_types
)