]> git.proxmox.com Git - mirror_qemu.git/blob - target-i386/cpu.c
target-i386: Isolate KVM-specific code on CPU feature filtering logic
[mirror_qemu.git] / target-i386 / cpu.c
1 /*
2 * i386 CPUID helper functions
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
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.
10 *
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.
15 *
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/>.
18 */
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <string.h>
22 #include <inttypes.h>
23
24 #include "cpu.h"
25 #include "sysemu/kvm.h"
26 #include "sysemu/cpus.h"
27 #include "kvm_i386.h"
28 #include "topology.h"
29
30 #include "qemu/option.h"
31 #include "qemu/config-file.h"
32 #include "qapi/qmp/qerror.h"
33
34 #include "qapi-types.h"
35 #include "qapi-visit.h"
36 #include "qapi/visitor.h"
37 #include "sysemu/arch_init.h"
38
39 #include "hw/hw.h"
40 #if defined(CONFIG_KVM)
41 #include <linux/kvm_para.h>
42 #endif
43
44 #include "sysemu/sysemu.h"
45 #include "hw/qdev-properties.h"
46 #include "hw/cpu/icc_bus.h"
47 #ifndef CONFIG_USER_ONLY
48 #include "hw/xen/xen.h"
49 #include "hw/i386/apic_internal.h"
50 #endif
51
52
53 /* Cache topology CPUID constants: */
54
55 /* CPUID Leaf 2 Descriptors */
56
57 #define CPUID_2_L1D_32KB_8WAY_64B 0x2c
58 #define CPUID_2_L1I_32KB_8WAY_64B 0x30
59 #define CPUID_2_L2_2MB_8WAY_64B 0x7d
60
61
62 /* CPUID Leaf 4 constants: */
63
64 /* EAX: */
65 #define CPUID_4_TYPE_DCACHE 1
66 #define CPUID_4_TYPE_ICACHE 2
67 #define CPUID_4_TYPE_UNIFIED 3
68
69 #define CPUID_4_LEVEL(l) ((l) << 5)
70
71 #define CPUID_4_SELF_INIT_LEVEL (1 << 8)
72 #define CPUID_4_FULLY_ASSOC (1 << 9)
73
74 /* EDX: */
75 #define CPUID_4_NO_INVD_SHARING (1 << 0)
76 #define CPUID_4_INCLUSIVE (1 << 1)
77 #define CPUID_4_COMPLEX_IDX (1 << 2)
78
79 #define ASSOC_FULL 0xFF
80
81 /* AMD associativity encoding used on CPUID Leaf 0x80000006: */
82 #define AMD_ENC_ASSOC(a) (a <= 1 ? a : \
83 a == 2 ? 0x2 : \
84 a == 4 ? 0x4 : \
85 a == 8 ? 0x6 : \
86 a == 16 ? 0x8 : \
87 a == 32 ? 0xA : \
88 a == 48 ? 0xB : \
89 a == 64 ? 0xC : \
90 a == 96 ? 0xD : \
91 a == 128 ? 0xE : \
92 a == ASSOC_FULL ? 0xF : \
93 0 /* invalid value */)
94
95
96 /* Definitions of the hardcoded cache entries we expose: */
97
98 /* L1 data cache: */
99 #define L1D_LINE_SIZE 64
100 #define L1D_ASSOCIATIVITY 8
101 #define L1D_SETS 64
102 #define L1D_PARTITIONS 1
103 /* Size = LINE_SIZE*ASSOCIATIVITY*SETS*PARTITIONS = 32KiB */
104 #define L1D_DESCRIPTOR CPUID_2_L1D_32KB_8WAY_64B
105 /*FIXME: CPUID leaf 0x80000005 is inconsistent with leaves 2 & 4 */
106 #define L1D_LINES_PER_TAG 1
107 #define L1D_SIZE_KB_AMD 64
108 #define L1D_ASSOCIATIVITY_AMD 2
109
110 /* L1 instruction cache: */
111 #define L1I_LINE_SIZE 64
112 #define L1I_ASSOCIATIVITY 8
113 #define L1I_SETS 64
114 #define L1I_PARTITIONS 1
115 /* Size = LINE_SIZE*ASSOCIATIVITY*SETS*PARTITIONS = 32KiB */
116 #define L1I_DESCRIPTOR CPUID_2_L1I_32KB_8WAY_64B
117 /*FIXME: CPUID leaf 0x80000005 is inconsistent with leaves 2 & 4 */
118 #define L1I_LINES_PER_TAG 1
119 #define L1I_SIZE_KB_AMD 64
120 #define L1I_ASSOCIATIVITY_AMD 2
121
122 /* Level 2 unified cache: */
123 #define L2_LINE_SIZE 64
124 #define L2_ASSOCIATIVITY 16
125 #define L2_SETS 4096
126 #define L2_PARTITIONS 1
127 /* Size = LINE_SIZE*ASSOCIATIVITY*SETS*PARTITIONS = 4MiB */
128 /*FIXME: CPUID leaf 2 descriptor is inconsistent with CPUID leaf 4 */
129 #define L2_DESCRIPTOR CPUID_2_L2_2MB_8WAY_64B
130 /*FIXME: CPUID leaf 0x80000006 is inconsistent with leaves 2 & 4 */
131 #define L2_LINES_PER_TAG 1
132 #define L2_SIZE_KB_AMD 512
133
134 /* No L3 cache: */
135 #define L3_SIZE_KB 0 /* disabled */
136 #define L3_ASSOCIATIVITY 0 /* disabled */
137 #define L3_LINES_PER_TAG 0 /* disabled */
138 #define L3_LINE_SIZE 0 /* disabled */
139
140 /* TLB definitions: */
141
142 #define L1_DTLB_2M_ASSOC 1
143 #define L1_DTLB_2M_ENTRIES 255
144 #define L1_DTLB_4K_ASSOC 1
145 #define L1_DTLB_4K_ENTRIES 255
146
147 #define L1_ITLB_2M_ASSOC 1
148 #define L1_ITLB_2M_ENTRIES 255
149 #define L1_ITLB_4K_ASSOC 1
150 #define L1_ITLB_4K_ENTRIES 255
151
152 #define L2_DTLB_2M_ASSOC 0 /* disabled */
153 #define L2_DTLB_2M_ENTRIES 0 /* disabled */
154 #define L2_DTLB_4K_ASSOC 4
155 #define L2_DTLB_4K_ENTRIES 512
156
157 #define L2_ITLB_2M_ASSOC 0 /* disabled */
158 #define L2_ITLB_2M_ENTRIES 0 /* disabled */
159 #define L2_ITLB_4K_ASSOC 4
160 #define L2_ITLB_4K_ENTRIES 512
161
162
163
164 static void x86_cpu_vendor_words2str(char *dst, uint32_t vendor1,
165 uint32_t vendor2, uint32_t vendor3)
166 {
167 int i;
168 for (i = 0; i < 4; i++) {
169 dst[i] = vendor1 >> (8 * i);
170 dst[i + 4] = vendor2 >> (8 * i);
171 dst[i + 8] = vendor3 >> (8 * i);
172 }
173 dst[CPUID_VENDOR_SZ] = '\0';
174 }
175
176 /* feature flags taken from "Intel Processor Identification and the CPUID
177 * Instruction" and AMD's "CPUID Specification". In cases of disagreement
178 * between feature naming conventions, aliases may be added.
179 */
180 static const char *feature_name[] = {
181 "fpu", "vme", "de", "pse",
182 "tsc", "msr", "pae", "mce",
183 "cx8", "apic", NULL, "sep",
184 "mtrr", "pge", "mca", "cmov",
185 "pat", "pse36", "pn" /* Intel psn */, "clflush" /* Intel clfsh */,
186 NULL, "ds" /* Intel dts */, "acpi", "mmx",
187 "fxsr", "sse", "sse2", "ss",
188 "ht" /* Intel htt */, "tm", "ia64", "pbe",
189 };
190 static const char *ext_feature_name[] = {
191 "pni|sse3" /* Intel,AMD sse3 */, "pclmulqdq|pclmuldq", "dtes64", "monitor",
192 "ds_cpl", "vmx", "smx", "est",
193 "tm2", "ssse3", "cid", NULL,
194 "fma", "cx16", "xtpr", "pdcm",
195 NULL, "pcid", "dca", "sse4.1|sse4_1",
196 "sse4.2|sse4_2", "x2apic", "movbe", "popcnt",
197 "tsc-deadline", "aes", "xsave", "osxsave",
198 "avx", "f16c", "rdrand", "hypervisor",
199 };
200 /* Feature names that are already defined on feature_name[] but are set on
201 * CPUID[8000_0001].EDX on AMD CPUs don't have their names on
202 * ext2_feature_name[]. They are copied automatically to cpuid_ext2_features
203 * if and only if CPU vendor is AMD.
204 */
205 static const char *ext2_feature_name[] = {
206 NULL /* fpu */, NULL /* vme */, NULL /* de */, NULL /* pse */,
207 NULL /* tsc */, NULL /* msr */, NULL /* pae */, NULL /* mce */,
208 NULL /* cx8 */ /* AMD CMPXCHG8B */, NULL /* apic */, NULL, "syscall",
209 NULL /* mtrr */, NULL /* pge */, NULL /* mca */, NULL /* cmov */,
210 NULL /* pat */, NULL /* pse36 */, NULL, NULL /* Linux mp */,
211 "nx|xd", NULL, "mmxext", NULL /* mmx */,
212 NULL /* fxsr */, "fxsr_opt|ffxsr", "pdpe1gb" /* AMD Page1GB */, "rdtscp",
213 NULL, "lm|i64", "3dnowext", "3dnow",
214 };
215 static const char *ext3_feature_name[] = {
216 "lahf_lm" /* AMD LahfSahf */, "cmp_legacy", "svm", "extapic" /* AMD ExtApicSpace */,
217 "cr8legacy" /* AMD AltMovCr8 */, "abm", "sse4a", "misalignsse",
218 "3dnowprefetch", "osvw", "ibs", "xop",
219 "skinit", "wdt", NULL, "lwp",
220 "fma4", "tce", NULL, "nodeid_msr",
221 NULL, "tbm", "topoext", "perfctr_core",
222 "perfctr_nb", NULL, NULL, NULL,
223 NULL, NULL, NULL, NULL,
224 };
225
226 static const char *ext4_feature_name[] = {
227 NULL, NULL, "xstore", "xstore-en",
228 NULL, NULL, "xcrypt", "xcrypt-en",
229 "ace2", "ace2-en", "phe", "phe-en",
230 "pmm", "pmm-en", NULL, NULL,
231 NULL, NULL, NULL, NULL,
232 NULL, NULL, NULL, NULL,
233 NULL, NULL, NULL, NULL,
234 NULL, NULL, NULL, NULL,
235 };
236
237 static const char *kvm_feature_name[] = {
238 "kvmclock", "kvm_nopiodelay", "kvm_mmu", "kvmclock",
239 "kvm_asyncpf", "kvm_steal_time", "kvm_pv_eoi", "kvm_pv_unhalt",
240 NULL, NULL, NULL, NULL,
241 NULL, NULL, NULL, NULL,
242 NULL, NULL, NULL, NULL,
243 NULL, NULL, NULL, NULL,
244 NULL, NULL, NULL, NULL,
245 NULL, NULL, NULL, NULL,
246 };
247
248 static const char *svm_feature_name[] = {
249 "npt", "lbrv", "svm_lock", "nrip_save",
250 "tsc_scale", "vmcb_clean", "flushbyasid", "decodeassists",
251 NULL, NULL, "pause_filter", NULL,
252 "pfthreshold", NULL, NULL, NULL,
253 NULL, NULL, NULL, NULL,
254 NULL, NULL, NULL, NULL,
255 NULL, NULL, NULL, NULL,
256 NULL, NULL, NULL, NULL,
257 };
258
259 static const char *cpuid_7_0_ebx_feature_name[] = {
260 "fsgsbase", NULL, NULL, "bmi1", "hle", "avx2", NULL, "smep",
261 "bmi2", "erms", "invpcid", "rtm", NULL, NULL, NULL, NULL,
262 NULL, NULL, "rdseed", "adx", "smap", NULL, NULL, NULL,
263 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
264 };
265
266 typedef struct FeatureWordInfo {
267 const char **feat_names;
268 uint32_t cpuid_eax; /* Input EAX for CPUID */
269 bool cpuid_needs_ecx; /* CPUID instruction uses ECX as input */
270 uint32_t cpuid_ecx; /* Input ECX value for CPUID */
271 int cpuid_reg; /* output register (R_* constant) */
272 } FeatureWordInfo;
273
274 static FeatureWordInfo feature_word_info[FEATURE_WORDS] = {
275 [FEAT_1_EDX] = {
276 .feat_names = feature_name,
277 .cpuid_eax = 1, .cpuid_reg = R_EDX,
278 },
279 [FEAT_1_ECX] = {
280 .feat_names = ext_feature_name,
281 .cpuid_eax = 1, .cpuid_reg = R_ECX,
282 },
283 [FEAT_8000_0001_EDX] = {
284 .feat_names = ext2_feature_name,
285 .cpuid_eax = 0x80000001, .cpuid_reg = R_EDX,
286 },
287 [FEAT_8000_0001_ECX] = {
288 .feat_names = ext3_feature_name,
289 .cpuid_eax = 0x80000001, .cpuid_reg = R_ECX,
290 },
291 [FEAT_C000_0001_EDX] = {
292 .feat_names = ext4_feature_name,
293 .cpuid_eax = 0xC0000001, .cpuid_reg = R_EDX,
294 },
295 [FEAT_KVM] = {
296 .feat_names = kvm_feature_name,
297 .cpuid_eax = KVM_CPUID_FEATURES, .cpuid_reg = R_EAX,
298 },
299 [FEAT_SVM] = {
300 .feat_names = svm_feature_name,
301 .cpuid_eax = 0x8000000A, .cpuid_reg = R_EDX,
302 },
303 [FEAT_7_0_EBX] = {
304 .feat_names = cpuid_7_0_ebx_feature_name,
305 .cpuid_eax = 7,
306 .cpuid_needs_ecx = true, .cpuid_ecx = 0,
307 .cpuid_reg = R_EBX,
308 },
309 };
310
311 typedef struct X86RegisterInfo32 {
312 /* Name of register */
313 const char *name;
314 /* QAPI enum value register */
315 X86CPURegister32 qapi_enum;
316 } X86RegisterInfo32;
317
318 #define REGISTER(reg) \
319 [R_##reg] = { .name = #reg, .qapi_enum = X86_CPU_REGISTER32_##reg }
320 static const X86RegisterInfo32 x86_reg_info_32[CPU_NB_REGS32] = {
321 REGISTER(EAX),
322 REGISTER(ECX),
323 REGISTER(EDX),
324 REGISTER(EBX),
325 REGISTER(ESP),
326 REGISTER(EBP),
327 REGISTER(ESI),
328 REGISTER(EDI),
329 };
330 #undef REGISTER
331
332 typedef struct ExtSaveArea {
333 uint32_t feature, bits;
334 uint32_t offset, size;
335 } ExtSaveArea;
336
337 static const ExtSaveArea ext_save_areas[] = {
338 [2] = { .feature = FEAT_1_ECX, .bits = CPUID_EXT_AVX,
339 .offset = 0x240, .size = 0x100 },
340 [3] = { .feature = FEAT_7_0_EBX, .bits = CPUID_7_0_EBX_MPX,
341 .offset = 0x3c0, .size = 0x40 },
342 [4] = { .feature = FEAT_7_0_EBX, .bits = CPUID_7_0_EBX_MPX,
343 .offset = 0x400, .size = 0x40 },
344 };
345
346 const char *get_register_name_32(unsigned int reg)
347 {
348 if (reg >= CPU_NB_REGS32) {
349 return NULL;
350 }
351 return x86_reg_info_32[reg].name;
352 }
353
354 /* collects per-function cpuid data
355 */
356 typedef struct model_features_t {
357 uint32_t *guest_feat;
358 uint32_t *host_feat;
359 FeatureWord feat_word;
360 } model_features_t;
361
362 /* KVM-specific features that are automatically added to all CPU models
363 * when KVM is enabled.
364 */
365 static uint32_t kvm_default_features[FEATURE_WORDS] = {
366 [FEAT_KVM] = (1 << KVM_FEATURE_CLOCKSOURCE) |
367 (1 << KVM_FEATURE_NOP_IO_DELAY) |
368 (1 << KVM_FEATURE_CLOCKSOURCE2) |
369 (1 << KVM_FEATURE_ASYNC_PF) |
370 (1 << KVM_FEATURE_STEAL_TIME) |
371 (1 << KVM_FEATURE_PV_EOI) |
372 (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT),
373 [FEAT_1_ECX] = CPUID_EXT_X2APIC,
374 };
375
376 /* Features that are not added by default to any CPU model when KVM is enabled.
377 */
378 static uint32_t kvm_default_unset_features[FEATURE_WORDS] = {
379 [FEAT_1_ECX] = CPUID_EXT_MONITOR,
380 };
381
382 void x86_cpu_compat_disable_kvm_features(FeatureWord w, uint32_t features)
383 {
384 kvm_default_features[w] &= ~features;
385 }
386
387 void host_cpuid(uint32_t function, uint32_t count,
388 uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx)
389 {
390 uint32_t vec[4];
391
392 #ifdef __x86_64__
393 asm volatile("cpuid"
394 : "=a"(vec[0]), "=b"(vec[1]),
395 "=c"(vec[2]), "=d"(vec[3])
396 : "0"(function), "c"(count) : "cc");
397 #elif defined(__i386__)
398 asm volatile("pusha \n\t"
399 "cpuid \n\t"
400 "mov %%eax, 0(%2) \n\t"
401 "mov %%ebx, 4(%2) \n\t"
402 "mov %%ecx, 8(%2) \n\t"
403 "mov %%edx, 12(%2) \n\t"
404 "popa"
405 : : "a"(function), "c"(count), "S"(vec)
406 : "memory", "cc");
407 #else
408 abort();
409 #endif
410
411 if (eax)
412 *eax = vec[0];
413 if (ebx)
414 *ebx = vec[1];
415 if (ecx)
416 *ecx = vec[2];
417 if (edx)
418 *edx = vec[3];
419 }
420
421 #define iswhite(c) ((c) && ((c) <= ' ' || '~' < (c)))
422
423 /* general substring compare of *[s1..e1) and *[s2..e2). sx is start of
424 * a substring. ex if !NULL points to the first char after a substring,
425 * otherwise the string is assumed to sized by a terminating nul.
426 * Return lexical ordering of *s1:*s2.
427 */
428 static int sstrcmp(const char *s1, const char *e1, const char *s2,
429 const char *e2)
430 {
431 for (;;) {
432 if (!*s1 || !*s2 || *s1 != *s2)
433 return (*s1 - *s2);
434 ++s1, ++s2;
435 if (s1 == e1 && s2 == e2)
436 return (0);
437 else if (s1 == e1)
438 return (*s2);
439 else if (s2 == e2)
440 return (*s1);
441 }
442 }
443
444 /* compare *[s..e) to *altstr. *altstr may be a simple string or multiple
445 * '|' delimited (possibly empty) strings in which case search for a match
446 * within the alternatives proceeds left to right. Return 0 for success,
447 * non-zero otherwise.
448 */
449 static int altcmp(const char *s, const char *e, const char *altstr)
450 {
451 const char *p, *q;
452
453 for (q = p = altstr; ; ) {
454 while (*p && *p != '|')
455 ++p;
456 if ((q == p && !*s) || (q != p && !sstrcmp(s, e, q, p)))
457 return (0);
458 if (!*p)
459 return (1);
460 else
461 q = ++p;
462 }
463 }
464
465 /* search featureset for flag *[s..e), if found set corresponding bit in
466 * *pval and return true, otherwise return false
467 */
468 static bool lookup_feature(uint32_t *pval, const char *s, const char *e,
469 const char **featureset)
470 {
471 uint32_t mask;
472 const char **ppc;
473 bool found = false;
474
475 for (mask = 1, ppc = featureset; mask; mask <<= 1, ++ppc) {
476 if (*ppc && !altcmp(s, e, *ppc)) {
477 *pval |= mask;
478 found = true;
479 }
480 }
481 return found;
482 }
483
484 static void add_flagname_to_bitmaps(const char *flagname,
485 FeatureWordArray words)
486 {
487 FeatureWord w;
488 for (w = 0; w < FEATURE_WORDS; w++) {
489 FeatureWordInfo *wi = &feature_word_info[w];
490 if (wi->feat_names &&
491 lookup_feature(&words[w], flagname, NULL, wi->feat_names)) {
492 break;
493 }
494 }
495 if (w == FEATURE_WORDS) {
496 fprintf(stderr, "CPU feature %s not found\n", flagname);
497 }
498 }
499
500 /* CPU class name definitions: */
501
502 #define X86_CPU_TYPE_SUFFIX "-" TYPE_X86_CPU
503 #define X86_CPU_TYPE_NAME(name) (name X86_CPU_TYPE_SUFFIX)
504
505 /* Return type name for a given CPU model name
506 * Caller is responsible for freeing the returned string.
507 */
508 static char *x86_cpu_type_name(const char *model_name)
509 {
510 return g_strdup_printf(X86_CPU_TYPE_NAME("%s"), model_name);
511 }
512
513 static ObjectClass *x86_cpu_class_by_name(const char *cpu_model)
514 {
515 ObjectClass *oc;
516 char *typename;
517
518 if (cpu_model == NULL) {
519 return NULL;
520 }
521
522 typename = x86_cpu_type_name(cpu_model);
523 oc = object_class_by_name(typename);
524 g_free(typename);
525 return oc;
526 }
527
528 struct X86CPUDefinition {
529 const char *name;
530 uint32_t level;
531 uint32_t xlevel;
532 uint32_t xlevel2;
533 /* vendor is zero-terminated, 12 character ASCII string */
534 char vendor[CPUID_VENDOR_SZ + 1];
535 int family;
536 int model;
537 int stepping;
538 FeatureWordArray features;
539 char model_id[48];
540 bool cache_info_passthrough;
541 };
542
543 #define I486_FEATURES (CPUID_FP87 | CPUID_VME | CPUID_PSE)
544 #define PENTIUM_FEATURES (I486_FEATURES | CPUID_DE | CPUID_TSC | \
545 CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_MMX | CPUID_APIC)
546 #define PENTIUM2_FEATURES (PENTIUM_FEATURES | CPUID_PAE | CPUID_SEP | \
547 CPUID_MTRR | CPUID_PGE | CPUID_MCA | CPUID_CMOV | CPUID_PAT | \
548 CPUID_PSE36 | CPUID_FXSR)
549 #define PENTIUM3_FEATURES (PENTIUM2_FEATURES | CPUID_SSE)
550 #define PPRO_FEATURES (CPUID_FP87 | CPUID_DE | CPUID_PSE | CPUID_TSC | \
551 CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_PGE | CPUID_CMOV | \
552 CPUID_PAT | CPUID_FXSR | CPUID_MMX | CPUID_SSE | CPUID_SSE2 | \
553 CPUID_PAE | CPUID_SEP | CPUID_APIC)
554
555 #define TCG_FEATURES (CPUID_FP87 | CPUID_PSE | CPUID_TSC | CPUID_MSR | \
556 CPUID_PAE | CPUID_MCE | CPUID_CX8 | CPUID_APIC | CPUID_SEP | \
557 CPUID_MTRR | CPUID_PGE | CPUID_MCA | CPUID_CMOV | CPUID_PAT | \
558 CPUID_PSE36 | CPUID_CLFLUSH | CPUID_ACPI | CPUID_MMX | \
559 CPUID_FXSR | CPUID_SSE | CPUID_SSE2 | CPUID_SS)
560 /* partly implemented:
561 CPUID_MTRR, CPUID_MCA, CPUID_CLFLUSH (needed for Win64) */
562 /* missing:
563 CPUID_VME, CPUID_DTS, CPUID_SS, CPUID_HT, CPUID_TM, CPUID_PBE */
564 #define TCG_EXT_FEATURES (CPUID_EXT_SSE3 | CPUID_EXT_PCLMULQDQ | \
565 CPUID_EXT_MONITOR | CPUID_EXT_SSSE3 | CPUID_EXT_CX16 | \
566 CPUID_EXT_SSE41 | CPUID_EXT_SSE42 | CPUID_EXT_POPCNT | \
567 CPUID_EXT_MOVBE | CPUID_EXT_AES | CPUID_EXT_HYPERVISOR)
568 /* missing:
569 CPUID_EXT_DTES64, CPUID_EXT_DSCPL, CPUID_EXT_VMX, CPUID_EXT_SMX,
570 CPUID_EXT_EST, CPUID_EXT_TM2, CPUID_EXT_CID, CPUID_EXT_FMA,
571 CPUID_EXT_XTPR, CPUID_EXT_PDCM, CPUID_EXT_PCID, CPUID_EXT_DCA,
572 CPUID_EXT_X2APIC, CPUID_EXT_TSC_DEADLINE_TIMER, CPUID_EXT_XSAVE,
573 CPUID_EXT_OSXSAVE, CPUID_EXT_AVX, CPUID_EXT_F16C,
574 CPUID_EXT_RDRAND */
575 #define TCG_EXT2_FEATURES ((TCG_FEATURES & CPUID_EXT2_AMD_ALIASES) | \
576 CPUID_EXT2_NX | CPUID_EXT2_MMXEXT | CPUID_EXT2_RDTSCP | \
577 CPUID_EXT2_3DNOW | CPUID_EXT2_3DNOWEXT | CPUID_EXT2_PDPE1GB)
578 #define TCG_EXT3_FEATURES (CPUID_EXT3_LAHF_LM | CPUID_EXT3_SVM | \
579 CPUID_EXT3_CR8LEG | CPUID_EXT3_ABM | CPUID_EXT3_SSE4A)
580 #define TCG_SVM_FEATURES 0
581 #define TCG_7_0_EBX_FEATURES (CPUID_7_0_EBX_SMEP | CPUID_7_0_EBX_SMAP \
582 CPUID_7_0_EBX_BMI1 | CPUID_7_0_EBX_BMI2 | CPUID_7_0_EBX_ADX)
583 /* missing:
584 CPUID_7_0_EBX_FSGSBASE, CPUID_7_0_EBX_HLE, CPUID_7_0_EBX_AVX2,
585 CPUID_7_0_EBX_ERMS, CPUID_7_0_EBX_INVPCID, CPUID_7_0_EBX_RTM,
586 CPUID_7_0_EBX_RDSEED */
587
588 static X86CPUDefinition builtin_x86_defs[] = {
589 {
590 .name = "qemu64",
591 .level = 4,
592 .vendor = CPUID_VENDOR_AMD,
593 .family = 6,
594 .model = 6,
595 .stepping = 3,
596 .features[FEAT_1_EDX] =
597 PPRO_FEATURES |
598 CPUID_MTRR | CPUID_CLFLUSH | CPUID_MCA |
599 CPUID_PSE36,
600 .features[FEAT_1_ECX] =
601 CPUID_EXT_SSE3 | CPUID_EXT_CX16 | CPUID_EXT_POPCNT,
602 .features[FEAT_8000_0001_EDX] =
603 (PPRO_FEATURES & CPUID_EXT2_AMD_ALIASES) |
604 CPUID_EXT2_LM | CPUID_EXT2_SYSCALL | CPUID_EXT2_NX,
605 .features[FEAT_8000_0001_ECX] =
606 CPUID_EXT3_LAHF_LM | CPUID_EXT3_SVM |
607 CPUID_EXT3_ABM | CPUID_EXT3_SSE4A,
608 .xlevel = 0x8000000A,
609 },
610 {
611 .name = "phenom",
612 .level = 5,
613 .vendor = CPUID_VENDOR_AMD,
614 .family = 16,
615 .model = 2,
616 .stepping = 3,
617 .features[FEAT_1_EDX] =
618 PPRO_FEATURES |
619 CPUID_MTRR | CPUID_CLFLUSH | CPUID_MCA |
620 CPUID_PSE36 | CPUID_VME | CPUID_HT,
621 .features[FEAT_1_ECX] =
622 CPUID_EXT_SSE3 | CPUID_EXT_MONITOR | CPUID_EXT_CX16 |
623 CPUID_EXT_POPCNT,
624 .features[FEAT_8000_0001_EDX] =
625 (PPRO_FEATURES & CPUID_EXT2_AMD_ALIASES) |
626 CPUID_EXT2_LM | CPUID_EXT2_SYSCALL | CPUID_EXT2_NX |
627 CPUID_EXT2_3DNOW | CPUID_EXT2_3DNOWEXT | CPUID_EXT2_MMXEXT |
628 CPUID_EXT2_FFXSR | CPUID_EXT2_PDPE1GB | CPUID_EXT2_RDTSCP,
629 /* Missing: CPUID_EXT3_CMP_LEG, CPUID_EXT3_EXTAPIC,
630 CPUID_EXT3_CR8LEG,
631 CPUID_EXT3_MISALIGNSSE, CPUID_EXT3_3DNOWPREFETCH,
632 CPUID_EXT3_OSVW, CPUID_EXT3_IBS */
633 .features[FEAT_8000_0001_ECX] =
634 CPUID_EXT3_LAHF_LM | CPUID_EXT3_SVM |
635 CPUID_EXT3_ABM | CPUID_EXT3_SSE4A,
636 .features[FEAT_SVM] =
637 CPUID_SVM_NPT | CPUID_SVM_LBRV,
638 .xlevel = 0x8000001A,
639 .model_id = "AMD Phenom(tm) 9550 Quad-Core Processor"
640 },
641 {
642 .name = "core2duo",
643 .level = 10,
644 .vendor = CPUID_VENDOR_INTEL,
645 .family = 6,
646 .model = 15,
647 .stepping = 11,
648 .features[FEAT_1_EDX] =
649 PPRO_FEATURES |
650 CPUID_MTRR | CPUID_CLFLUSH | CPUID_MCA |
651 CPUID_PSE36 | CPUID_VME | CPUID_DTS | CPUID_ACPI | CPUID_SS |
652 CPUID_HT | CPUID_TM | CPUID_PBE,
653 .features[FEAT_1_ECX] =
654 CPUID_EXT_SSE3 | CPUID_EXT_MONITOR | CPUID_EXT_SSSE3 |
655 CPUID_EXT_DTES64 | CPUID_EXT_DSCPL | CPUID_EXT_VMX | CPUID_EXT_EST |
656 CPUID_EXT_TM2 | CPUID_EXT_CX16 | CPUID_EXT_XTPR | CPUID_EXT_PDCM,
657 .features[FEAT_8000_0001_EDX] =
658 CPUID_EXT2_LM | CPUID_EXT2_SYSCALL | CPUID_EXT2_NX,
659 .features[FEAT_8000_0001_ECX] =
660 CPUID_EXT3_LAHF_LM,
661 .xlevel = 0x80000008,
662 .model_id = "Intel(R) Core(TM)2 Duo CPU T7700 @ 2.40GHz",
663 },
664 {
665 .name = "kvm64",
666 .level = 5,
667 .vendor = CPUID_VENDOR_INTEL,
668 .family = 15,
669 .model = 6,
670 .stepping = 1,
671 /* Missing: CPUID_VME, CPUID_HT */
672 .features[FEAT_1_EDX] =
673 PPRO_FEATURES |
674 CPUID_MTRR | CPUID_CLFLUSH | CPUID_MCA |
675 CPUID_PSE36,
676 /* Missing: CPUID_EXT_POPCNT, CPUID_EXT_MONITOR */
677 .features[FEAT_1_ECX] =
678 CPUID_EXT_SSE3 | CPUID_EXT_CX16,
679 /* Missing: CPUID_EXT2_PDPE1GB, CPUID_EXT2_RDTSCP */
680 .features[FEAT_8000_0001_EDX] =
681 (PPRO_FEATURES & CPUID_EXT2_AMD_ALIASES) |
682 CPUID_EXT2_LM | CPUID_EXT2_SYSCALL | CPUID_EXT2_NX,
683 /* Missing: CPUID_EXT3_LAHF_LM, CPUID_EXT3_CMP_LEG, CPUID_EXT3_EXTAPIC,
684 CPUID_EXT3_CR8LEG, CPUID_EXT3_ABM, CPUID_EXT3_SSE4A,
685 CPUID_EXT3_MISALIGNSSE, CPUID_EXT3_3DNOWPREFETCH,
686 CPUID_EXT3_OSVW, CPUID_EXT3_IBS, CPUID_EXT3_SVM */
687 .features[FEAT_8000_0001_ECX] =
688 0,
689 .xlevel = 0x80000008,
690 .model_id = "Common KVM processor"
691 },
692 {
693 .name = "qemu32",
694 .level = 4,
695 .vendor = CPUID_VENDOR_INTEL,
696 .family = 6,
697 .model = 6,
698 .stepping = 3,
699 .features[FEAT_1_EDX] =
700 PPRO_FEATURES,
701 .features[FEAT_1_ECX] =
702 CPUID_EXT_SSE3 | CPUID_EXT_POPCNT,
703 .xlevel = 0x80000004,
704 },
705 {
706 .name = "kvm32",
707 .level = 5,
708 .vendor = CPUID_VENDOR_INTEL,
709 .family = 15,
710 .model = 6,
711 .stepping = 1,
712 .features[FEAT_1_EDX] =
713 PPRO_FEATURES |
714 CPUID_MTRR | CPUID_CLFLUSH | CPUID_MCA | CPUID_PSE36,
715 .features[FEAT_1_ECX] =
716 CPUID_EXT_SSE3,
717 .features[FEAT_8000_0001_EDX] =
718 PPRO_FEATURES & CPUID_EXT2_AMD_ALIASES,
719 .features[FEAT_8000_0001_ECX] =
720 0,
721 .xlevel = 0x80000008,
722 .model_id = "Common 32-bit KVM processor"
723 },
724 {
725 .name = "coreduo",
726 .level = 10,
727 .vendor = CPUID_VENDOR_INTEL,
728 .family = 6,
729 .model = 14,
730 .stepping = 8,
731 .features[FEAT_1_EDX] =
732 PPRO_FEATURES | CPUID_VME |
733 CPUID_MTRR | CPUID_CLFLUSH | CPUID_MCA | CPUID_DTS | CPUID_ACPI |
734 CPUID_SS | CPUID_HT | CPUID_TM | CPUID_PBE,
735 .features[FEAT_1_ECX] =
736 CPUID_EXT_SSE3 | CPUID_EXT_MONITOR | CPUID_EXT_VMX |
737 CPUID_EXT_EST | CPUID_EXT_TM2 | CPUID_EXT_XTPR | CPUID_EXT_PDCM,
738 .features[FEAT_8000_0001_EDX] =
739 CPUID_EXT2_NX,
740 .xlevel = 0x80000008,
741 .model_id = "Genuine Intel(R) CPU T2600 @ 2.16GHz",
742 },
743 {
744 .name = "486",
745 .level = 1,
746 .vendor = CPUID_VENDOR_INTEL,
747 .family = 4,
748 .model = 8,
749 .stepping = 0,
750 .features[FEAT_1_EDX] =
751 I486_FEATURES,
752 .xlevel = 0,
753 },
754 {
755 .name = "pentium",
756 .level = 1,
757 .vendor = CPUID_VENDOR_INTEL,
758 .family = 5,
759 .model = 4,
760 .stepping = 3,
761 .features[FEAT_1_EDX] =
762 PENTIUM_FEATURES,
763 .xlevel = 0,
764 },
765 {
766 .name = "pentium2",
767 .level = 2,
768 .vendor = CPUID_VENDOR_INTEL,
769 .family = 6,
770 .model = 5,
771 .stepping = 2,
772 .features[FEAT_1_EDX] =
773 PENTIUM2_FEATURES,
774 .xlevel = 0,
775 },
776 {
777 .name = "pentium3",
778 .level = 2,
779 .vendor = CPUID_VENDOR_INTEL,
780 .family = 6,
781 .model = 7,
782 .stepping = 3,
783 .features[FEAT_1_EDX] =
784 PENTIUM3_FEATURES,
785 .xlevel = 0,
786 },
787 {
788 .name = "athlon",
789 .level = 2,
790 .vendor = CPUID_VENDOR_AMD,
791 .family = 6,
792 .model = 2,
793 .stepping = 3,
794 .features[FEAT_1_EDX] =
795 PPRO_FEATURES | CPUID_PSE36 | CPUID_VME | CPUID_MTRR |
796 CPUID_MCA,
797 .features[FEAT_8000_0001_EDX] =
798 (PPRO_FEATURES & CPUID_EXT2_AMD_ALIASES) |
799 CPUID_EXT2_MMXEXT | CPUID_EXT2_3DNOW | CPUID_EXT2_3DNOWEXT,
800 .xlevel = 0x80000008,
801 },
802 {
803 .name = "n270",
804 /* original is on level 10 */
805 .level = 5,
806 .vendor = CPUID_VENDOR_INTEL,
807 .family = 6,
808 .model = 28,
809 .stepping = 2,
810 .features[FEAT_1_EDX] =
811 PPRO_FEATURES |
812 CPUID_MTRR | CPUID_CLFLUSH | CPUID_MCA | CPUID_VME | CPUID_DTS |
813 CPUID_ACPI | CPUID_SS | CPUID_HT | CPUID_TM | CPUID_PBE,
814 /* Some CPUs got no CPUID_SEP */
815 .features[FEAT_1_ECX] =
816 CPUID_EXT_SSE3 | CPUID_EXT_MONITOR | CPUID_EXT_SSSE3 |
817 CPUID_EXT_DSCPL | CPUID_EXT_EST | CPUID_EXT_TM2 | CPUID_EXT_XTPR |
818 CPUID_EXT_MOVBE,
819 .features[FEAT_8000_0001_EDX] =
820 (PPRO_FEATURES & CPUID_EXT2_AMD_ALIASES) |
821 CPUID_EXT2_NX,
822 .features[FEAT_8000_0001_ECX] =
823 CPUID_EXT3_LAHF_LM,
824 .xlevel = 0x8000000A,
825 .model_id = "Intel(R) Atom(TM) CPU N270 @ 1.60GHz",
826 },
827 {
828 .name = "Conroe",
829 .level = 4,
830 .vendor = CPUID_VENDOR_INTEL,
831 .family = 6,
832 .model = 15,
833 .stepping = 3,
834 .features[FEAT_1_EDX] =
835 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
836 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
837 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
838 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
839 CPUID_DE | CPUID_FP87,
840 .features[FEAT_1_ECX] =
841 CPUID_EXT_SSSE3 | CPUID_EXT_SSE3,
842 .features[FEAT_8000_0001_EDX] =
843 CPUID_EXT2_LM | CPUID_EXT2_NX | CPUID_EXT2_SYSCALL,
844 .features[FEAT_8000_0001_ECX] =
845 CPUID_EXT3_LAHF_LM,
846 .xlevel = 0x8000000A,
847 .model_id = "Intel Celeron_4x0 (Conroe/Merom Class Core 2)",
848 },
849 {
850 .name = "Penryn",
851 .level = 4,
852 .vendor = CPUID_VENDOR_INTEL,
853 .family = 6,
854 .model = 23,
855 .stepping = 3,
856 .features[FEAT_1_EDX] =
857 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
858 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
859 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
860 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
861 CPUID_DE | CPUID_FP87,
862 .features[FEAT_1_ECX] =
863 CPUID_EXT_SSE41 | CPUID_EXT_CX16 | CPUID_EXT_SSSE3 |
864 CPUID_EXT_SSE3,
865 .features[FEAT_8000_0001_EDX] =
866 CPUID_EXT2_LM | CPUID_EXT2_NX | CPUID_EXT2_SYSCALL,
867 .features[FEAT_8000_0001_ECX] =
868 CPUID_EXT3_LAHF_LM,
869 .xlevel = 0x8000000A,
870 .model_id = "Intel Core 2 Duo P9xxx (Penryn Class Core 2)",
871 },
872 {
873 .name = "Nehalem",
874 .level = 4,
875 .vendor = CPUID_VENDOR_INTEL,
876 .family = 6,
877 .model = 26,
878 .stepping = 3,
879 .features[FEAT_1_EDX] =
880 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
881 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
882 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
883 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
884 CPUID_DE | CPUID_FP87,
885 .features[FEAT_1_ECX] =
886 CPUID_EXT_POPCNT | CPUID_EXT_SSE42 | CPUID_EXT_SSE41 |
887 CPUID_EXT_CX16 | CPUID_EXT_SSSE3 | CPUID_EXT_SSE3,
888 .features[FEAT_8000_0001_EDX] =
889 CPUID_EXT2_LM | CPUID_EXT2_SYSCALL | CPUID_EXT2_NX,
890 .features[FEAT_8000_0001_ECX] =
891 CPUID_EXT3_LAHF_LM,
892 .xlevel = 0x8000000A,
893 .model_id = "Intel Core i7 9xx (Nehalem Class Core i7)",
894 },
895 {
896 .name = "Westmere",
897 .level = 11,
898 .vendor = CPUID_VENDOR_INTEL,
899 .family = 6,
900 .model = 44,
901 .stepping = 1,
902 .features[FEAT_1_EDX] =
903 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
904 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
905 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
906 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
907 CPUID_DE | CPUID_FP87,
908 .features[FEAT_1_ECX] =
909 CPUID_EXT_AES | CPUID_EXT_POPCNT | CPUID_EXT_SSE42 |
910 CPUID_EXT_SSE41 | CPUID_EXT_CX16 | CPUID_EXT_SSSE3 |
911 CPUID_EXT_PCLMULQDQ | CPUID_EXT_SSE3,
912 .features[FEAT_8000_0001_EDX] =
913 CPUID_EXT2_LM | CPUID_EXT2_SYSCALL | CPUID_EXT2_NX,
914 .features[FEAT_8000_0001_ECX] =
915 CPUID_EXT3_LAHF_LM,
916 .xlevel = 0x8000000A,
917 .model_id = "Westmere E56xx/L56xx/X56xx (Nehalem-C)",
918 },
919 {
920 .name = "SandyBridge",
921 .level = 0xd,
922 .vendor = CPUID_VENDOR_INTEL,
923 .family = 6,
924 .model = 42,
925 .stepping = 1,
926 .features[FEAT_1_EDX] =
927 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
928 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
929 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
930 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
931 CPUID_DE | CPUID_FP87,
932 .features[FEAT_1_ECX] =
933 CPUID_EXT_AVX | CPUID_EXT_XSAVE | CPUID_EXT_AES |
934 CPUID_EXT_TSC_DEADLINE_TIMER | CPUID_EXT_POPCNT |
935 CPUID_EXT_X2APIC | CPUID_EXT_SSE42 | CPUID_EXT_SSE41 |
936 CPUID_EXT_CX16 | CPUID_EXT_SSSE3 | CPUID_EXT_PCLMULQDQ |
937 CPUID_EXT_SSE3,
938 .features[FEAT_8000_0001_EDX] =
939 CPUID_EXT2_LM | CPUID_EXT2_RDTSCP | CPUID_EXT2_NX |
940 CPUID_EXT2_SYSCALL,
941 .features[FEAT_8000_0001_ECX] =
942 CPUID_EXT3_LAHF_LM,
943 .xlevel = 0x8000000A,
944 .model_id = "Intel Xeon E312xx (Sandy Bridge)",
945 },
946 {
947 .name = "Haswell",
948 .level = 0xd,
949 .vendor = CPUID_VENDOR_INTEL,
950 .family = 6,
951 .model = 60,
952 .stepping = 1,
953 .features[FEAT_1_EDX] =
954 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
955 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
956 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
957 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
958 CPUID_DE | CPUID_FP87,
959 .features[FEAT_1_ECX] =
960 CPUID_EXT_AVX | CPUID_EXT_XSAVE | CPUID_EXT_AES |
961 CPUID_EXT_POPCNT | CPUID_EXT_X2APIC | CPUID_EXT_SSE42 |
962 CPUID_EXT_SSE41 | CPUID_EXT_CX16 | CPUID_EXT_SSSE3 |
963 CPUID_EXT_PCLMULQDQ | CPUID_EXT_SSE3 |
964 CPUID_EXT_TSC_DEADLINE_TIMER | CPUID_EXT_FMA | CPUID_EXT_MOVBE |
965 CPUID_EXT_PCID,
966 .features[FEAT_8000_0001_EDX] =
967 CPUID_EXT2_LM | CPUID_EXT2_RDTSCP | CPUID_EXT2_NX |
968 CPUID_EXT2_SYSCALL,
969 .features[FEAT_8000_0001_ECX] =
970 CPUID_EXT3_LAHF_LM,
971 .features[FEAT_7_0_EBX] =
972 CPUID_7_0_EBX_FSGSBASE | CPUID_7_0_EBX_BMI1 |
973 CPUID_7_0_EBX_HLE | CPUID_7_0_EBX_AVX2 | CPUID_7_0_EBX_SMEP |
974 CPUID_7_0_EBX_BMI2 | CPUID_7_0_EBX_ERMS | CPUID_7_0_EBX_INVPCID |
975 CPUID_7_0_EBX_RTM,
976 .xlevel = 0x8000000A,
977 .model_id = "Intel Core Processor (Haswell)",
978 },
979 {
980 .name = "Opteron_G1",
981 .level = 5,
982 .vendor = CPUID_VENDOR_AMD,
983 .family = 15,
984 .model = 6,
985 .stepping = 1,
986 .features[FEAT_1_EDX] =
987 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
988 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
989 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
990 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
991 CPUID_DE | CPUID_FP87,
992 .features[FEAT_1_ECX] =
993 CPUID_EXT_SSE3,
994 .features[FEAT_8000_0001_EDX] =
995 CPUID_EXT2_LM | CPUID_EXT2_FXSR | CPUID_EXT2_MMX |
996 CPUID_EXT2_NX | CPUID_EXT2_PSE36 | CPUID_EXT2_PAT |
997 CPUID_EXT2_CMOV | CPUID_EXT2_MCA | CPUID_EXT2_PGE |
998 CPUID_EXT2_MTRR | CPUID_EXT2_SYSCALL | CPUID_EXT2_APIC |
999 CPUID_EXT2_CX8 | CPUID_EXT2_MCE | CPUID_EXT2_PAE | CPUID_EXT2_MSR |
1000 CPUID_EXT2_TSC | CPUID_EXT2_PSE | CPUID_EXT2_DE | CPUID_EXT2_FPU,
1001 .xlevel = 0x80000008,
1002 .model_id = "AMD Opteron 240 (Gen 1 Class Opteron)",
1003 },
1004 {
1005 .name = "Opteron_G2",
1006 .level = 5,
1007 .vendor = CPUID_VENDOR_AMD,
1008 .family = 15,
1009 .model = 6,
1010 .stepping = 1,
1011 .features[FEAT_1_EDX] =
1012 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
1013 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
1014 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
1015 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
1016 CPUID_DE | CPUID_FP87,
1017 .features[FEAT_1_ECX] =
1018 CPUID_EXT_CX16 | CPUID_EXT_SSE3,
1019 .features[FEAT_8000_0001_EDX] =
1020 CPUID_EXT2_LM | CPUID_EXT2_RDTSCP | CPUID_EXT2_FXSR |
1021 CPUID_EXT2_MMX | CPUID_EXT2_NX | CPUID_EXT2_PSE36 |
1022 CPUID_EXT2_PAT | CPUID_EXT2_CMOV | CPUID_EXT2_MCA |
1023 CPUID_EXT2_PGE | CPUID_EXT2_MTRR | CPUID_EXT2_SYSCALL |
1024 CPUID_EXT2_APIC | CPUID_EXT2_CX8 | CPUID_EXT2_MCE |
1025 CPUID_EXT2_PAE | CPUID_EXT2_MSR | CPUID_EXT2_TSC | CPUID_EXT2_PSE |
1026 CPUID_EXT2_DE | CPUID_EXT2_FPU,
1027 .features[FEAT_8000_0001_ECX] =
1028 CPUID_EXT3_SVM | CPUID_EXT3_LAHF_LM,
1029 .xlevel = 0x80000008,
1030 .model_id = "AMD Opteron 22xx (Gen 2 Class Opteron)",
1031 },
1032 {
1033 .name = "Opteron_G3",
1034 .level = 5,
1035 .vendor = CPUID_VENDOR_AMD,
1036 .family = 15,
1037 .model = 6,
1038 .stepping = 1,
1039 .features[FEAT_1_EDX] =
1040 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
1041 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
1042 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
1043 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
1044 CPUID_DE | CPUID_FP87,
1045 .features[FEAT_1_ECX] =
1046 CPUID_EXT_POPCNT | CPUID_EXT_CX16 | CPUID_EXT_MONITOR |
1047 CPUID_EXT_SSE3,
1048 .features[FEAT_8000_0001_EDX] =
1049 CPUID_EXT2_LM | CPUID_EXT2_RDTSCP | CPUID_EXT2_FXSR |
1050 CPUID_EXT2_MMX | CPUID_EXT2_NX | CPUID_EXT2_PSE36 |
1051 CPUID_EXT2_PAT | CPUID_EXT2_CMOV | CPUID_EXT2_MCA |
1052 CPUID_EXT2_PGE | CPUID_EXT2_MTRR | CPUID_EXT2_SYSCALL |
1053 CPUID_EXT2_APIC | CPUID_EXT2_CX8 | CPUID_EXT2_MCE |
1054 CPUID_EXT2_PAE | CPUID_EXT2_MSR | CPUID_EXT2_TSC | CPUID_EXT2_PSE |
1055 CPUID_EXT2_DE | CPUID_EXT2_FPU,
1056 .features[FEAT_8000_0001_ECX] =
1057 CPUID_EXT3_MISALIGNSSE | CPUID_EXT3_SSE4A |
1058 CPUID_EXT3_ABM | CPUID_EXT3_SVM | CPUID_EXT3_LAHF_LM,
1059 .xlevel = 0x80000008,
1060 .model_id = "AMD Opteron 23xx (Gen 3 Class Opteron)",
1061 },
1062 {
1063 .name = "Opteron_G4",
1064 .level = 0xd,
1065 .vendor = CPUID_VENDOR_AMD,
1066 .family = 21,
1067 .model = 1,
1068 .stepping = 2,
1069 .features[FEAT_1_EDX] =
1070 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
1071 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
1072 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
1073 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
1074 CPUID_DE | CPUID_FP87,
1075 .features[FEAT_1_ECX] =
1076 CPUID_EXT_AVX | CPUID_EXT_XSAVE | CPUID_EXT_AES |
1077 CPUID_EXT_POPCNT | CPUID_EXT_SSE42 | CPUID_EXT_SSE41 |
1078 CPUID_EXT_CX16 | CPUID_EXT_SSSE3 | CPUID_EXT_PCLMULQDQ |
1079 CPUID_EXT_SSE3,
1080 .features[FEAT_8000_0001_EDX] =
1081 CPUID_EXT2_LM | CPUID_EXT2_RDTSCP |
1082 CPUID_EXT2_PDPE1GB | CPUID_EXT2_FXSR | CPUID_EXT2_MMX |
1083 CPUID_EXT2_NX | CPUID_EXT2_PSE36 | CPUID_EXT2_PAT |
1084 CPUID_EXT2_CMOV | CPUID_EXT2_MCA | CPUID_EXT2_PGE |
1085 CPUID_EXT2_MTRR | CPUID_EXT2_SYSCALL | CPUID_EXT2_APIC |
1086 CPUID_EXT2_CX8 | CPUID_EXT2_MCE | CPUID_EXT2_PAE | CPUID_EXT2_MSR |
1087 CPUID_EXT2_TSC | CPUID_EXT2_PSE | CPUID_EXT2_DE | CPUID_EXT2_FPU,
1088 .features[FEAT_8000_0001_ECX] =
1089 CPUID_EXT3_FMA4 | CPUID_EXT3_XOP |
1090 CPUID_EXT3_3DNOWPREFETCH | CPUID_EXT3_MISALIGNSSE |
1091 CPUID_EXT3_SSE4A | CPUID_EXT3_ABM | CPUID_EXT3_SVM |
1092 CPUID_EXT3_LAHF_LM,
1093 .xlevel = 0x8000001A,
1094 .model_id = "AMD Opteron 62xx class CPU",
1095 },
1096 {
1097 .name = "Opteron_G5",
1098 .level = 0xd,
1099 .vendor = CPUID_VENDOR_AMD,
1100 .family = 21,
1101 .model = 2,
1102 .stepping = 0,
1103 .features[FEAT_1_EDX] =
1104 CPUID_SSE2 | CPUID_SSE | CPUID_FXSR | CPUID_MMX |
1105 CPUID_CLFLUSH | CPUID_PSE36 | CPUID_PAT | CPUID_CMOV | CPUID_MCA |
1106 CPUID_PGE | CPUID_MTRR | CPUID_SEP | CPUID_APIC | CPUID_CX8 |
1107 CPUID_MCE | CPUID_PAE | CPUID_MSR | CPUID_TSC | CPUID_PSE |
1108 CPUID_DE | CPUID_FP87,
1109 .features[FEAT_1_ECX] =
1110 CPUID_EXT_F16C | CPUID_EXT_AVX | CPUID_EXT_XSAVE |
1111 CPUID_EXT_AES | CPUID_EXT_POPCNT | CPUID_EXT_SSE42 |
1112 CPUID_EXT_SSE41 | CPUID_EXT_CX16 | CPUID_EXT_FMA |
1113 CPUID_EXT_SSSE3 | CPUID_EXT_PCLMULQDQ | CPUID_EXT_SSE3,
1114 .features[FEAT_8000_0001_EDX] =
1115 CPUID_EXT2_LM | CPUID_EXT2_RDTSCP |
1116 CPUID_EXT2_PDPE1GB | CPUID_EXT2_FXSR | CPUID_EXT2_MMX |
1117 CPUID_EXT2_NX | CPUID_EXT2_PSE36 | CPUID_EXT2_PAT |
1118 CPUID_EXT2_CMOV | CPUID_EXT2_MCA | CPUID_EXT2_PGE |
1119 CPUID_EXT2_MTRR | CPUID_EXT2_SYSCALL | CPUID_EXT2_APIC |
1120 CPUID_EXT2_CX8 | CPUID_EXT2_MCE | CPUID_EXT2_PAE | CPUID_EXT2_MSR |
1121 CPUID_EXT2_TSC | CPUID_EXT2_PSE | CPUID_EXT2_DE | CPUID_EXT2_FPU,
1122 .features[FEAT_8000_0001_ECX] =
1123 CPUID_EXT3_TBM | CPUID_EXT3_FMA4 | CPUID_EXT3_XOP |
1124 CPUID_EXT3_3DNOWPREFETCH | CPUID_EXT3_MISALIGNSSE |
1125 CPUID_EXT3_SSE4A | CPUID_EXT3_ABM | CPUID_EXT3_SVM |
1126 CPUID_EXT3_LAHF_LM,
1127 .xlevel = 0x8000001A,
1128 .model_id = "AMD Opteron 63xx class CPU",
1129 },
1130 };
1131
1132 /**
1133 * x86_cpu_compat_set_features:
1134 * @cpu_model: CPU model name to be changed. If NULL, all CPU models are changed
1135 * @w: Identifies the feature word to be changed.
1136 * @feat_add: Feature bits to be added to feature word
1137 * @feat_remove: Feature bits to be removed from feature word
1138 *
1139 * Change CPU model feature bits for compatibility.
1140 *
1141 * This function may be used by machine-type compatibility functions
1142 * to enable or disable feature bits on specific CPU models.
1143 */
1144 void x86_cpu_compat_set_features(const char *cpu_model, FeatureWord w,
1145 uint32_t feat_add, uint32_t feat_remove)
1146 {
1147 X86CPUDefinition *def;
1148 int i;
1149 for (i = 0; i < ARRAY_SIZE(builtin_x86_defs); i++) {
1150 def = &builtin_x86_defs[i];
1151 if (!cpu_model || !strcmp(cpu_model, def->name)) {
1152 def->features[w] |= feat_add;
1153 def->features[w] &= ~feat_remove;
1154 }
1155 }
1156 }
1157
1158 #ifdef CONFIG_KVM
1159
1160 static int cpu_x86_fill_model_id(char *str)
1161 {
1162 uint32_t eax = 0, ebx = 0, ecx = 0, edx = 0;
1163 int i;
1164
1165 for (i = 0; i < 3; i++) {
1166 host_cpuid(0x80000002 + i, 0, &eax, &ebx, &ecx, &edx);
1167 memcpy(str + i * 16 + 0, &eax, 4);
1168 memcpy(str + i * 16 + 4, &ebx, 4);
1169 memcpy(str + i * 16 + 8, &ecx, 4);
1170 memcpy(str + i * 16 + 12, &edx, 4);
1171 }
1172 return 0;
1173 }
1174
1175 static X86CPUDefinition host_cpudef;
1176
1177 /* class_init for the "host" CPU model
1178 *
1179 * This function may be called before KVM is initialized.
1180 */
1181 static void host_x86_cpu_class_init(ObjectClass *oc, void *data)
1182 {
1183 X86CPUClass *xcc = X86_CPU_CLASS(oc);
1184 uint32_t eax = 0, ebx = 0, ecx = 0, edx = 0;
1185
1186 xcc->kvm_required = true;
1187
1188 host_cpuid(0x0, 0, &eax, &ebx, &ecx, &edx);
1189 x86_cpu_vendor_words2str(host_cpudef.vendor, ebx, edx, ecx);
1190
1191 host_cpuid(0x1, 0, &eax, &ebx, &ecx, &edx);
1192 host_cpudef.family = ((eax >> 8) & 0x0F) + ((eax >> 20) & 0xFF);
1193 host_cpudef.model = ((eax >> 4) & 0x0F) | ((eax & 0xF0000) >> 12);
1194 host_cpudef.stepping = eax & 0x0F;
1195
1196 cpu_x86_fill_model_id(host_cpudef.model_id);
1197
1198 xcc->cpu_def = &host_cpudef;
1199 host_cpudef.cache_info_passthrough = true;
1200
1201 /* level, xlevel, xlevel2, and the feature words are initialized on
1202 * instance_init, because they require KVM to be initialized.
1203 */
1204 }
1205
1206 static void host_x86_cpu_initfn(Object *obj)
1207 {
1208 X86CPU *cpu = X86_CPU(obj);
1209 CPUX86State *env = &cpu->env;
1210 KVMState *s = kvm_state;
1211 FeatureWord w;
1212
1213 assert(kvm_enabled());
1214
1215 env->cpuid_level = kvm_arch_get_supported_cpuid(s, 0x0, 0, R_EAX);
1216 env->cpuid_xlevel = kvm_arch_get_supported_cpuid(s, 0x80000000, 0, R_EAX);
1217 env->cpuid_xlevel2 = kvm_arch_get_supported_cpuid(s, 0xC0000000, 0, R_EAX);
1218
1219 for (w = 0; w < FEATURE_WORDS; w++) {
1220 FeatureWordInfo *wi = &feature_word_info[w];
1221 env->features[w] =
1222 kvm_arch_get_supported_cpuid(s, wi->cpuid_eax, wi->cpuid_ecx,
1223 wi->cpuid_reg);
1224 }
1225 object_property_set_bool(OBJECT(cpu), true, "pmu", &error_abort);
1226 }
1227
1228 static const TypeInfo host_x86_cpu_type_info = {
1229 .name = X86_CPU_TYPE_NAME("host"),
1230 .parent = TYPE_X86_CPU,
1231 .instance_init = host_x86_cpu_initfn,
1232 .class_init = host_x86_cpu_class_init,
1233 };
1234
1235 #endif
1236
1237 static void report_unavailable_features(FeatureWord w, uint32_t mask)
1238 {
1239 FeatureWordInfo *f = &feature_word_info[w];
1240 int i;
1241
1242 for (i = 0; i < 32; ++i) {
1243 if (1 << i & mask) {
1244 const char *reg = get_register_name_32(f->cpuid_reg);
1245 assert(reg);
1246 fprintf(stderr, "warning: host doesn't support requested feature: "
1247 "CPUID.%02XH:%s%s%s [bit %d]\n",
1248 f->cpuid_eax, reg,
1249 f->feat_names[i] ? "." : "",
1250 f->feat_names[i] ? f->feat_names[i] : "", i);
1251 }
1252 }
1253 }
1254
1255 static void x86_cpuid_version_get_family(Object *obj, Visitor *v, void *opaque,
1256 const char *name, Error **errp)
1257 {
1258 X86CPU *cpu = X86_CPU(obj);
1259 CPUX86State *env = &cpu->env;
1260 int64_t value;
1261
1262 value = (env->cpuid_version >> 8) & 0xf;
1263 if (value == 0xf) {
1264 value += (env->cpuid_version >> 20) & 0xff;
1265 }
1266 visit_type_int(v, &value, name, errp);
1267 }
1268
1269 static void x86_cpuid_version_set_family(Object *obj, Visitor *v, void *opaque,
1270 const char *name, Error **errp)
1271 {
1272 X86CPU *cpu = X86_CPU(obj);
1273 CPUX86State *env = &cpu->env;
1274 const int64_t min = 0;
1275 const int64_t max = 0xff + 0xf;
1276 Error *local_err = NULL;
1277 int64_t value;
1278
1279 visit_type_int(v, &value, name, &local_err);
1280 if (local_err) {
1281 error_propagate(errp, local_err);
1282 return;
1283 }
1284 if (value < min || value > max) {
1285 error_set(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
1286 name ? name : "null", value, min, max);
1287 return;
1288 }
1289
1290 env->cpuid_version &= ~0xff00f00;
1291 if (value > 0x0f) {
1292 env->cpuid_version |= 0xf00 | ((value - 0x0f) << 20);
1293 } else {
1294 env->cpuid_version |= value << 8;
1295 }
1296 }
1297
1298 static void x86_cpuid_version_get_model(Object *obj, Visitor *v, void *opaque,
1299 const char *name, Error **errp)
1300 {
1301 X86CPU *cpu = X86_CPU(obj);
1302 CPUX86State *env = &cpu->env;
1303 int64_t value;
1304
1305 value = (env->cpuid_version >> 4) & 0xf;
1306 value |= ((env->cpuid_version >> 16) & 0xf) << 4;
1307 visit_type_int(v, &value, name, errp);
1308 }
1309
1310 static void x86_cpuid_version_set_model(Object *obj, Visitor *v, void *opaque,
1311 const char *name, Error **errp)
1312 {
1313 X86CPU *cpu = X86_CPU(obj);
1314 CPUX86State *env = &cpu->env;
1315 const int64_t min = 0;
1316 const int64_t max = 0xff;
1317 Error *local_err = NULL;
1318 int64_t value;
1319
1320 visit_type_int(v, &value, name, &local_err);
1321 if (local_err) {
1322 error_propagate(errp, local_err);
1323 return;
1324 }
1325 if (value < min || value > max) {
1326 error_set(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
1327 name ? name : "null", value, min, max);
1328 return;
1329 }
1330
1331 env->cpuid_version &= ~0xf00f0;
1332 env->cpuid_version |= ((value & 0xf) << 4) | ((value >> 4) << 16);
1333 }
1334
1335 static void x86_cpuid_version_get_stepping(Object *obj, Visitor *v,
1336 void *opaque, const char *name,
1337 Error **errp)
1338 {
1339 X86CPU *cpu = X86_CPU(obj);
1340 CPUX86State *env = &cpu->env;
1341 int64_t value;
1342
1343 value = env->cpuid_version & 0xf;
1344 visit_type_int(v, &value, name, errp);
1345 }
1346
1347 static void x86_cpuid_version_set_stepping(Object *obj, Visitor *v,
1348 void *opaque, const char *name,
1349 Error **errp)
1350 {
1351 X86CPU *cpu = X86_CPU(obj);
1352 CPUX86State *env = &cpu->env;
1353 const int64_t min = 0;
1354 const int64_t max = 0xf;
1355 Error *local_err = NULL;
1356 int64_t value;
1357
1358 visit_type_int(v, &value, name, &local_err);
1359 if (local_err) {
1360 error_propagate(errp, local_err);
1361 return;
1362 }
1363 if (value < min || value > max) {
1364 error_set(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
1365 name ? name : "null", value, min, max);
1366 return;
1367 }
1368
1369 env->cpuid_version &= ~0xf;
1370 env->cpuid_version |= value & 0xf;
1371 }
1372
1373 static void x86_cpuid_get_level(Object *obj, Visitor *v, void *opaque,
1374 const char *name, Error **errp)
1375 {
1376 X86CPU *cpu = X86_CPU(obj);
1377
1378 visit_type_uint32(v, &cpu->env.cpuid_level, name, errp);
1379 }
1380
1381 static void x86_cpuid_set_level(Object *obj, Visitor *v, void *opaque,
1382 const char *name, Error **errp)
1383 {
1384 X86CPU *cpu = X86_CPU(obj);
1385
1386 visit_type_uint32(v, &cpu->env.cpuid_level, name, errp);
1387 }
1388
1389 static void x86_cpuid_get_xlevel(Object *obj, Visitor *v, void *opaque,
1390 const char *name, Error **errp)
1391 {
1392 X86CPU *cpu = X86_CPU(obj);
1393
1394 visit_type_uint32(v, &cpu->env.cpuid_xlevel, name, errp);
1395 }
1396
1397 static void x86_cpuid_set_xlevel(Object *obj, Visitor *v, void *opaque,
1398 const char *name, Error **errp)
1399 {
1400 X86CPU *cpu = X86_CPU(obj);
1401
1402 visit_type_uint32(v, &cpu->env.cpuid_xlevel, name, errp);
1403 }
1404
1405 static char *x86_cpuid_get_vendor(Object *obj, Error **errp)
1406 {
1407 X86CPU *cpu = X86_CPU(obj);
1408 CPUX86State *env = &cpu->env;
1409 char *value;
1410
1411 value = (char *)g_malloc(CPUID_VENDOR_SZ + 1);
1412 x86_cpu_vendor_words2str(value, env->cpuid_vendor1, env->cpuid_vendor2,
1413 env->cpuid_vendor3);
1414 return value;
1415 }
1416
1417 static void x86_cpuid_set_vendor(Object *obj, const char *value,
1418 Error **errp)
1419 {
1420 X86CPU *cpu = X86_CPU(obj);
1421 CPUX86State *env = &cpu->env;
1422 int i;
1423
1424 if (strlen(value) != CPUID_VENDOR_SZ) {
1425 error_set(errp, QERR_PROPERTY_VALUE_BAD, "",
1426 "vendor", value);
1427 return;
1428 }
1429
1430 env->cpuid_vendor1 = 0;
1431 env->cpuid_vendor2 = 0;
1432 env->cpuid_vendor3 = 0;
1433 for (i = 0; i < 4; i++) {
1434 env->cpuid_vendor1 |= ((uint8_t)value[i ]) << (8 * i);
1435 env->cpuid_vendor2 |= ((uint8_t)value[i + 4]) << (8 * i);
1436 env->cpuid_vendor3 |= ((uint8_t)value[i + 8]) << (8 * i);
1437 }
1438 }
1439
1440 static char *x86_cpuid_get_model_id(Object *obj, Error **errp)
1441 {
1442 X86CPU *cpu = X86_CPU(obj);
1443 CPUX86State *env = &cpu->env;
1444 char *value;
1445 int i;
1446
1447 value = g_malloc(48 + 1);
1448 for (i = 0; i < 48; i++) {
1449 value[i] = env->cpuid_model[i >> 2] >> (8 * (i & 3));
1450 }
1451 value[48] = '\0';
1452 return value;
1453 }
1454
1455 static void x86_cpuid_set_model_id(Object *obj, const char *model_id,
1456 Error **errp)
1457 {
1458 X86CPU *cpu = X86_CPU(obj);
1459 CPUX86State *env = &cpu->env;
1460 int c, len, i;
1461
1462 if (model_id == NULL) {
1463 model_id = "";
1464 }
1465 len = strlen(model_id);
1466 memset(env->cpuid_model, 0, 48);
1467 for (i = 0; i < 48; i++) {
1468 if (i >= len) {
1469 c = '\0';
1470 } else {
1471 c = (uint8_t)model_id[i];
1472 }
1473 env->cpuid_model[i >> 2] |= c << (8 * (i & 3));
1474 }
1475 }
1476
1477 static void x86_cpuid_get_tsc_freq(Object *obj, Visitor *v, void *opaque,
1478 const char *name, Error **errp)
1479 {
1480 X86CPU *cpu = X86_CPU(obj);
1481 int64_t value;
1482
1483 value = cpu->env.tsc_khz * 1000;
1484 visit_type_int(v, &value, name, errp);
1485 }
1486
1487 static void x86_cpuid_set_tsc_freq(Object *obj, Visitor *v, void *opaque,
1488 const char *name, Error **errp)
1489 {
1490 X86CPU *cpu = X86_CPU(obj);
1491 const int64_t min = 0;
1492 const int64_t max = INT64_MAX;
1493 Error *local_err = NULL;
1494 int64_t value;
1495
1496 visit_type_int(v, &value, name, &local_err);
1497 if (local_err) {
1498 error_propagate(errp, local_err);
1499 return;
1500 }
1501 if (value < min || value > max) {
1502 error_set(errp, QERR_PROPERTY_VALUE_OUT_OF_RANGE, "",
1503 name ? name : "null", value, min, max);
1504 return;
1505 }
1506
1507 cpu->env.tsc_khz = value / 1000;
1508 }
1509
1510 static void x86_cpuid_get_apic_id(Object *obj, Visitor *v, void *opaque,
1511 const char *name, Error **errp)
1512 {
1513 X86CPU *cpu = X86_CPU(obj);
1514 int64_t value = cpu->env.cpuid_apic_id;
1515
1516 visit_type_int(v, &value, name, errp);
1517 }
1518
1519 static void x86_cpuid_set_apic_id(Object *obj, Visitor *v, void *opaque,
1520 const char *name, Error **errp)
1521 {
1522 X86CPU *cpu = X86_CPU(obj);
1523 DeviceState *dev = DEVICE(obj);
1524 const int64_t min = 0;
1525 const int64_t max = UINT32_MAX;
1526 Error *error = NULL;
1527 int64_t value;
1528
1529 if (dev->realized) {
1530 error_setg(errp, "Attempt to set property '%s' on '%s' after "
1531 "it was realized", name, object_get_typename(obj));
1532 return;
1533 }
1534
1535 visit_type_int(v, &value, name, &error);
1536 if (error) {
1537 error_propagate(errp, error);
1538 return;
1539 }
1540 if (value < min || value > max) {
1541 error_setg(errp, "Property %s.%s doesn't take value %" PRId64
1542 " (minimum: %" PRId64 ", maximum: %" PRId64 ")" ,
1543 object_get_typename(obj), name, value, min, max);
1544 return;
1545 }
1546
1547 if ((value != cpu->env.cpuid_apic_id) && cpu_exists(value)) {
1548 error_setg(errp, "CPU with APIC ID %" PRIi64 " exists", value);
1549 return;
1550 }
1551 cpu->env.cpuid_apic_id = value;
1552 }
1553
1554 /* Generic getter for "feature-words" and "filtered-features" properties */
1555 static void x86_cpu_get_feature_words(Object *obj, Visitor *v, void *opaque,
1556 const char *name, Error **errp)
1557 {
1558 uint32_t *array = (uint32_t *)opaque;
1559 FeatureWord w;
1560 Error *err = NULL;
1561 X86CPUFeatureWordInfo word_infos[FEATURE_WORDS] = { };
1562 X86CPUFeatureWordInfoList list_entries[FEATURE_WORDS] = { };
1563 X86CPUFeatureWordInfoList *list = NULL;
1564
1565 for (w = 0; w < FEATURE_WORDS; w++) {
1566 FeatureWordInfo *wi = &feature_word_info[w];
1567 X86CPUFeatureWordInfo *qwi = &word_infos[w];
1568 qwi->cpuid_input_eax = wi->cpuid_eax;
1569 qwi->has_cpuid_input_ecx = wi->cpuid_needs_ecx;
1570 qwi->cpuid_input_ecx = wi->cpuid_ecx;
1571 qwi->cpuid_register = x86_reg_info_32[wi->cpuid_reg].qapi_enum;
1572 qwi->features = array[w];
1573
1574 /* List will be in reverse order, but order shouldn't matter */
1575 list_entries[w].next = list;
1576 list_entries[w].value = &word_infos[w];
1577 list = &list_entries[w];
1578 }
1579
1580 visit_type_X86CPUFeatureWordInfoList(v, &list, "feature-words", &err);
1581 error_propagate(errp, err);
1582 }
1583
1584 static void x86_get_hv_spinlocks(Object *obj, Visitor *v, void *opaque,
1585 const char *name, Error **errp)
1586 {
1587 X86CPU *cpu = X86_CPU(obj);
1588 int64_t value = cpu->hyperv_spinlock_attempts;
1589
1590 visit_type_int(v, &value, name, errp);
1591 }
1592
1593 static void x86_set_hv_spinlocks(Object *obj, Visitor *v, void *opaque,
1594 const char *name, Error **errp)
1595 {
1596 const int64_t min = 0xFFF;
1597 const int64_t max = UINT_MAX;
1598 X86CPU *cpu = X86_CPU(obj);
1599 Error *err = NULL;
1600 int64_t value;
1601
1602 visit_type_int(v, &value, name, &err);
1603 if (err) {
1604 error_propagate(errp, err);
1605 return;
1606 }
1607
1608 if (value < min || value > max) {
1609 error_setg(errp, "Property %s.%s doesn't take value %" PRId64
1610 " (minimum: %" PRId64 ", maximum: %" PRId64 ")",
1611 object_get_typename(obj), name ? name : "null",
1612 value, min, max);
1613 return;
1614 }
1615 cpu->hyperv_spinlock_attempts = value;
1616 }
1617
1618 static PropertyInfo qdev_prop_spinlocks = {
1619 .name = "int",
1620 .get = x86_get_hv_spinlocks,
1621 .set = x86_set_hv_spinlocks,
1622 };
1623
1624 /* Convert all '_' in a feature string option name to '-', to make feature
1625 * name conform to QOM property naming rule, which uses '-' instead of '_'.
1626 */
1627 static inline void feat2prop(char *s)
1628 {
1629 while ((s = strchr(s, '_'))) {
1630 *s = '-';
1631 }
1632 }
1633
1634 /* Parse "+feature,-feature,feature=foo" CPU feature string
1635 */
1636 static void x86_cpu_parse_featurestr(CPUState *cs, char *features,
1637 Error **errp)
1638 {
1639 X86CPU *cpu = X86_CPU(cs);
1640 char *featurestr; /* Single 'key=value" string being parsed */
1641 /* Features to be added */
1642 FeatureWordArray plus_features = { 0 };
1643 /* Features to be removed */
1644 FeatureWordArray minus_features = { 0 };
1645 uint32_t numvalue;
1646 CPUX86State *env = &cpu->env;
1647 Error *local_err = NULL;
1648
1649 featurestr = features ? strtok(features, ",") : NULL;
1650
1651 while (featurestr) {
1652 char *val;
1653 if (featurestr[0] == '+') {
1654 add_flagname_to_bitmaps(featurestr + 1, plus_features);
1655 } else if (featurestr[0] == '-') {
1656 add_flagname_to_bitmaps(featurestr + 1, minus_features);
1657 } else if ((val = strchr(featurestr, '='))) {
1658 *val = 0; val++;
1659 feat2prop(featurestr);
1660 if (!strcmp(featurestr, "xlevel")) {
1661 char *err;
1662 char num[32];
1663
1664 numvalue = strtoul(val, &err, 0);
1665 if (!*val || *err) {
1666 error_setg(errp, "bad numerical value %s", val);
1667 return;
1668 }
1669 if (numvalue < 0x80000000) {
1670 error_report("xlevel value shall always be >= 0x80000000"
1671 ", fixup will be removed in future versions");
1672 numvalue += 0x80000000;
1673 }
1674 snprintf(num, sizeof(num), "%" PRIu32, numvalue);
1675 object_property_parse(OBJECT(cpu), num, featurestr, &local_err);
1676 } else if (!strcmp(featurestr, "tsc-freq")) {
1677 int64_t tsc_freq;
1678 char *err;
1679 char num[32];
1680
1681 tsc_freq = strtosz_suffix_unit(val, &err,
1682 STRTOSZ_DEFSUFFIX_B, 1000);
1683 if (tsc_freq < 0 || *err) {
1684 error_setg(errp, "bad numerical value %s", val);
1685 return;
1686 }
1687 snprintf(num, sizeof(num), "%" PRId64, tsc_freq);
1688 object_property_parse(OBJECT(cpu), num, "tsc-frequency",
1689 &local_err);
1690 } else if (!strcmp(featurestr, "hv-spinlocks")) {
1691 char *err;
1692 const int min = 0xFFF;
1693 char num[32];
1694 numvalue = strtoul(val, &err, 0);
1695 if (!*val || *err) {
1696 error_setg(errp, "bad numerical value %s", val);
1697 return;
1698 }
1699 if (numvalue < min) {
1700 error_report("hv-spinlocks value shall always be >= 0x%x"
1701 ", fixup will be removed in future versions",
1702 min);
1703 numvalue = min;
1704 }
1705 snprintf(num, sizeof(num), "%" PRId32, numvalue);
1706 object_property_parse(OBJECT(cpu), num, featurestr, &local_err);
1707 } else {
1708 object_property_parse(OBJECT(cpu), val, featurestr, &local_err);
1709 }
1710 } else {
1711 feat2prop(featurestr);
1712 object_property_parse(OBJECT(cpu), "on", featurestr, &local_err);
1713 }
1714 if (local_err) {
1715 error_propagate(errp, local_err);
1716 return;
1717 }
1718 featurestr = strtok(NULL, ",");
1719 }
1720 env->features[FEAT_1_EDX] |= plus_features[FEAT_1_EDX];
1721 env->features[FEAT_1_ECX] |= plus_features[FEAT_1_ECX];
1722 env->features[FEAT_8000_0001_EDX] |= plus_features[FEAT_8000_0001_EDX];
1723 env->features[FEAT_8000_0001_ECX] |= plus_features[FEAT_8000_0001_ECX];
1724 env->features[FEAT_C000_0001_EDX] |= plus_features[FEAT_C000_0001_EDX];
1725 env->features[FEAT_KVM] |= plus_features[FEAT_KVM];
1726 env->features[FEAT_SVM] |= plus_features[FEAT_SVM];
1727 env->features[FEAT_7_0_EBX] |= plus_features[FEAT_7_0_EBX];
1728 env->features[FEAT_1_EDX] &= ~minus_features[FEAT_1_EDX];
1729 env->features[FEAT_1_ECX] &= ~minus_features[FEAT_1_ECX];
1730 env->features[FEAT_8000_0001_EDX] &= ~minus_features[FEAT_8000_0001_EDX];
1731 env->features[FEAT_8000_0001_ECX] &= ~minus_features[FEAT_8000_0001_ECX];
1732 env->features[FEAT_C000_0001_EDX] &= ~minus_features[FEAT_C000_0001_EDX];
1733 env->features[FEAT_KVM] &= ~minus_features[FEAT_KVM];
1734 env->features[FEAT_SVM] &= ~minus_features[FEAT_SVM];
1735 env->features[FEAT_7_0_EBX] &= ~minus_features[FEAT_7_0_EBX];
1736 }
1737
1738 /* generate a composite string into buf of all cpuid names in featureset
1739 * selected by fbits. indicate truncation at bufsize in the event of overflow.
1740 * if flags, suppress names undefined in featureset.
1741 */
1742 static void listflags(char *buf, int bufsize, uint32_t fbits,
1743 const char **featureset, uint32_t flags)
1744 {
1745 const char **p = &featureset[31];
1746 char *q, *b, bit;
1747 int nc;
1748
1749 b = 4 <= bufsize ? buf + (bufsize -= 3) - 1 : NULL;
1750 *buf = '\0';
1751 for (q = buf, bit = 31; fbits && bufsize; --p, fbits &= ~(1 << bit), --bit)
1752 if (fbits & 1 << bit && (*p || !flags)) {
1753 if (*p)
1754 nc = snprintf(q, bufsize, "%s%s", q == buf ? "" : " ", *p);
1755 else
1756 nc = snprintf(q, bufsize, "%s[%d]", q == buf ? "" : " ", bit);
1757 if (bufsize <= nc) {
1758 if (b) {
1759 memcpy(b, "...", sizeof("..."));
1760 }
1761 return;
1762 }
1763 q += nc;
1764 bufsize -= nc;
1765 }
1766 }
1767
1768 /* generate CPU information. */
1769 void x86_cpu_list(FILE *f, fprintf_function cpu_fprintf)
1770 {
1771 X86CPUDefinition *def;
1772 char buf[256];
1773 int i;
1774
1775 for (i = 0; i < ARRAY_SIZE(builtin_x86_defs); i++) {
1776 def = &builtin_x86_defs[i];
1777 snprintf(buf, sizeof(buf), "%s", def->name);
1778 (*cpu_fprintf)(f, "x86 %16s %-48s\n", buf, def->model_id);
1779 }
1780 #ifdef CONFIG_KVM
1781 (*cpu_fprintf)(f, "x86 %16s %-48s\n", "host",
1782 "KVM processor with all supported host features "
1783 "(only available in KVM mode)");
1784 #endif
1785
1786 (*cpu_fprintf)(f, "\nRecognized CPUID flags:\n");
1787 for (i = 0; i < ARRAY_SIZE(feature_word_info); i++) {
1788 FeatureWordInfo *fw = &feature_word_info[i];
1789
1790 listflags(buf, sizeof(buf), (uint32_t)~0, fw->feat_names, 1);
1791 (*cpu_fprintf)(f, " %s\n", buf);
1792 }
1793 }
1794
1795 CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
1796 {
1797 CpuDefinitionInfoList *cpu_list = NULL;
1798 X86CPUDefinition *def;
1799 int i;
1800
1801 for (i = 0; i < ARRAY_SIZE(builtin_x86_defs); i++) {
1802 CpuDefinitionInfoList *entry;
1803 CpuDefinitionInfo *info;
1804
1805 def = &builtin_x86_defs[i];
1806 info = g_malloc0(sizeof(*info));
1807 info->name = g_strdup(def->name);
1808
1809 entry = g_malloc0(sizeof(*entry));
1810 entry->value = info;
1811 entry->next = cpu_list;
1812 cpu_list = entry;
1813 }
1814
1815 return cpu_list;
1816 }
1817
1818 static uint32_t x86_cpu_get_supported_feature_word(FeatureWord w)
1819 {
1820 FeatureWordInfo *wi = &feature_word_info[w];
1821
1822 assert(kvm_enabled());
1823 return kvm_arch_get_supported_cpuid(kvm_state, wi->cpuid_eax,
1824 wi->cpuid_ecx,
1825 wi->cpuid_reg);
1826 }
1827
1828 /*
1829 * Filters CPU feature words based on host availability of each feature.
1830 *
1831 * This function may be called only if KVM is enabled.
1832 *
1833 * Returns: 0 if all flags are supported by the host, non-zero otherwise.
1834 */
1835 static int x86_cpu_filter_features(X86CPU *cpu)
1836 {
1837 CPUX86State *env = &cpu->env;
1838 FeatureWord w;
1839 int rv = 0;
1840
1841 for (w = 0; w < FEATURE_WORDS; w++) {
1842 uint32_t host_feat = x86_cpu_get_supported_feature_word(w);
1843 uint32_t requested_features = env->features[w];
1844 env->features[w] &= host_feat;
1845 cpu->filtered_features[w] = requested_features & ~env->features[w];
1846 if (cpu->filtered_features[w]) {
1847 if (cpu->check_cpuid || cpu->enforce_cpuid) {
1848 report_unavailable_features(w, cpu->filtered_features[w]);
1849 }
1850 rv = 1;
1851 }
1852 }
1853
1854 return rv;
1855 }
1856
1857 /* Load data from X86CPUDefinition
1858 */
1859 static void x86_cpu_load_def(X86CPU *cpu, X86CPUDefinition *def, Error **errp)
1860 {
1861 CPUX86State *env = &cpu->env;
1862 const char *vendor;
1863 char host_vendor[CPUID_VENDOR_SZ + 1];
1864
1865 object_property_set_int(OBJECT(cpu), def->level, "level", errp);
1866 object_property_set_int(OBJECT(cpu), def->family, "family", errp);
1867 object_property_set_int(OBJECT(cpu), def->model, "model", errp);
1868 object_property_set_int(OBJECT(cpu), def->stepping, "stepping", errp);
1869 env->features[FEAT_1_EDX] = def->features[FEAT_1_EDX];
1870 env->features[FEAT_1_ECX] = def->features[FEAT_1_ECX];
1871 env->features[FEAT_8000_0001_EDX] = def->features[FEAT_8000_0001_EDX];
1872 env->features[FEAT_8000_0001_ECX] = def->features[FEAT_8000_0001_ECX];
1873 object_property_set_int(OBJECT(cpu), def->xlevel, "xlevel", errp);
1874 env->features[FEAT_KVM] = def->features[FEAT_KVM];
1875 env->features[FEAT_SVM] = def->features[FEAT_SVM];
1876 env->features[FEAT_C000_0001_EDX] = def->features[FEAT_C000_0001_EDX];
1877 env->features[FEAT_7_0_EBX] = def->features[FEAT_7_0_EBX];
1878 env->cpuid_xlevel2 = def->xlevel2;
1879 cpu->cache_info_passthrough = def->cache_info_passthrough;
1880
1881 object_property_set_str(OBJECT(cpu), def->model_id, "model-id", errp);
1882
1883 /* Special cases not set in the X86CPUDefinition structs: */
1884 if (kvm_enabled()) {
1885 FeatureWord w;
1886 for (w = 0; w < FEATURE_WORDS; w++) {
1887 env->features[w] |= kvm_default_features[w];
1888 env->features[w] &= ~kvm_default_unset_features[w];
1889 }
1890 }
1891
1892 env->features[FEAT_1_ECX] |= CPUID_EXT_HYPERVISOR;
1893
1894 /* sysenter isn't supported in compatibility mode on AMD,
1895 * syscall isn't supported in compatibility mode on Intel.
1896 * Normally we advertise the actual CPU vendor, but you can
1897 * override this using the 'vendor' property if you want to use
1898 * KVM's sysenter/syscall emulation in compatibility mode and
1899 * when doing cross vendor migration
1900 */
1901 vendor = def->vendor;
1902 if (kvm_enabled()) {
1903 uint32_t ebx = 0, ecx = 0, edx = 0;
1904 host_cpuid(0, 0, NULL, &ebx, &ecx, &edx);
1905 x86_cpu_vendor_words2str(host_vendor, ebx, edx, ecx);
1906 vendor = host_vendor;
1907 }
1908
1909 object_property_set_str(OBJECT(cpu), vendor, "vendor", errp);
1910
1911 }
1912
1913 X86CPU *cpu_x86_create(const char *cpu_model, DeviceState *icc_bridge,
1914 Error **errp)
1915 {
1916 X86CPU *cpu = NULL;
1917 X86CPUClass *xcc;
1918 ObjectClass *oc;
1919 gchar **model_pieces;
1920 char *name, *features;
1921 Error *error = NULL;
1922
1923 model_pieces = g_strsplit(cpu_model, ",", 2);
1924 if (!model_pieces[0]) {
1925 error_setg(&error, "Invalid/empty CPU model name");
1926 goto out;
1927 }
1928 name = model_pieces[0];
1929 features = model_pieces[1];
1930
1931 oc = x86_cpu_class_by_name(name);
1932 if (oc == NULL) {
1933 error_setg(&error, "Unable to find CPU definition: %s", name);
1934 goto out;
1935 }
1936 xcc = X86_CPU_CLASS(oc);
1937
1938 if (xcc->kvm_required && !kvm_enabled()) {
1939 error_setg(&error, "CPU model '%s' requires KVM", name);
1940 goto out;
1941 }
1942
1943 cpu = X86_CPU(object_new(object_class_get_name(oc)));
1944
1945 #ifndef CONFIG_USER_ONLY
1946 if (icc_bridge == NULL) {
1947 error_setg(&error, "Invalid icc-bridge value");
1948 goto out;
1949 }
1950 qdev_set_parent_bus(DEVICE(cpu), qdev_get_child_bus(icc_bridge, "icc"));
1951 object_unref(OBJECT(cpu));
1952 #endif
1953
1954 x86_cpu_parse_featurestr(CPU(cpu), features, &error);
1955 if (error) {
1956 goto out;
1957 }
1958
1959 out:
1960 if (error != NULL) {
1961 error_propagate(errp, error);
1962 if (cpu) {
1963 object_unref(OBJECT(cpu));
1964 cpu = NULL;
1965 }
1966 }
1967 g_strfreev(model_pieces);
1968 return cpu;
1969 }
1970
1971 X86CPU *cpu_x86_init(const char *cpu_model)
1972 {
1973 Error *error = NULL;
1974 X86CPU *cpu;
1975
1976 cpu = cpu_x86_create(cpu_model, NULL, &error);
1977 if (error) {
1978 goto out;
1979 }
1980
1981 object_property_set_bool(OBJECT(cpu), true, "realized", &error);
1982
1983 out:
1984 if (error) {
1985 error_report("%s", error_get_pretty(error));
1986 error_free(error);
1987 if (cpu != NULL) {
1988 object_unref(OBJECT(cpu));
1989 cpu = NULL;
1990 }
1991 }
1992 return cpu;
1993 }
1994
1995 static void x86_cpu_cpudef_class_init(ObjectClass *oc, void *data)
1996 {
1997 X86CPUDefinition *cpudef = data;
1998 X86CPUClass *xcc = X86_CPU_CLASS(oc);
1999
2000 xcc->cpu_def = cpudef;
2001 }
2002
2003 static void x86_register_cpudef_type(X86CPUDefinition *def)
2004 {
2005 char *typename = x86_cpu_type_name(def->name);
2006 TypeInfo ti = {
2007 .name = typename,
2008 .parent = TYPE_X86_CPU,
2009 .class_init = x86_cpu_cpudef_class_init,
2010 .class_data = def,
2011 };
2012
2013 type_register(&ti);
2014 g_free(typename);
2015 }
2016
2017 #if !defined(CONFIG_USER_ONLY)
2018
2019 void cpu_clear_apic_feature(CPUX86State *env)
2020 {
2021 env->features[FEAT_1_EDX] &= ~CPUID_APIC;
2022 }
2023
2024 #endif /* !CONFIG_USER_ONLY */
2025
2026 /* Initialize list of CPU models, filling some non-static fields if necessary
2027 */
2028 void x86_cpudef_setup(void)
2029 {
2030 int i, j;
2031 static const char *model_with_versions[] = { "qemu32", "qemu64", "athlon" };
2032
2033 for (i = 0; i < ARRAY_SIZE(builtin_x86_defs); ++i) {
2034 X86CPUDefinition *def = &builtin_x86_defs[i];
2035
2036 /* Look for specific "cpudef" models that */
2037 /* have the QEMU version in .model_id */
2038 for (j = 0; j < ARRAY_SIZE(model_with_versions); j++) {
2039 if (strcmp(model_with_versions[j], def->name) == 0) {
2040 pstrcpy(def->model_id, sizeof(def->model_id),
2041 "QEMU Virtual CPU version ");
2042 pstrcat(def->model_id, sizeof(def->model_id),
2043 qemu_get_version());
2044 break;
2045 }
2046 }
2047 }
2048 }
2049
2050 static void get_cpuid_vendor(CPUX86State *env, uint32_t *ebx,
2051 uint32_t *ecx, uint32_t *edx)
2052 {
2053 *ebx = env->cpuid_vendor1;
2054 *edx = env->cpuid_vendor2;
2055 *ecx = env->cpuid_vendor3;
2056 }
2057
2058 void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count,
2059 uint32_t *eax, uint32_t *ebx,
2060 uint32_t *ecx, uint32_t *edx)
2061 {
2062 X86CPU *cpu = x86_env_get_cpu(env);
2063 CPUState *cs = CPU(cpu);
2064
2065 /* test if maximum index reached */
2066 if (index & 0x80000000) {
2067 if (index > env->cpuid_xlevel) {
2068 if (env->cpuid_xlevel2 > 0) {
2069 /* Handle the Centaur's CPUID instruction. */
2070 if (index > env->cpuid_xlevel2) {
2071 index = env->cpuid_xlevel2;
2072 } else if (index < 0xC0000000) {
2073 index = env->cpuid_xlevel;
2074 }
2075 } else {
2076 /* Intel documentation states that invalid EAX input will
2077 * return the same information as EAX=cpuid_level
2078 * (Intel SDM Vol. 2A - Instruction Set Reference - CPUID)
2079 */
2080 index = env->cpuid_level;
2081 }
2082 }
2083 } else {
2084 if (index > env->cpuid_level)
2085 index = env->cpuid_level;
2086 }
2087
2088 switch(index) {
2089 case 0:
2090 *eax = env->cpuid_level;
2091 get_cpuid_vendor(env, ebx, ecx, edx);
2092 break;
2093 case 1:
2094 *eax = env->cpuid_version;
2095 *ebx = (env->cpuid_apic_id << 24) | 8 << 8; /* CLFLUSH size in quad words, Linux wants it. */
2096 *ecx = env->features[FEAT_1_ECX];
2097 *edx = env->features[FEAT_1_EDX];
2098 if (cs->nr_cores * cs->nr_threads > 1) {
2099 *ebx |= (cs->nr_cores * cs->nr_threads) << 16;
2100 *edx |= 1 << 28; /* HTT bit */
2101 }
2102 break;
2103 case 2:
2104 /* cache info: needed for Pentium Pro compatibility */
2105 if (cpu->cache_info_passthrough) {
2106 host_cpuid(index, 0, eax, ebx, ecx, edx);
2107 break;
2108 }
2109 *eax = 1; /* Number of CPUID[EAX=2] calls required */
2110 *ebx = 0;
2111 *ecx = 0;
2112 *edx = (L1D_DESCRIPTOR << 16) | \
2113 (L1I_DESCRIPTOR << 8) | \
2114 (L2_DESCRIPTOR);
2115 break;
2116 case 4:
2117 /* cache info: needed for Core compatibility */
2118 if (cpu->cache_info_passthrough) {
2119 host_cpuid(index, count, eax, ebx, ecx, edx);
2120 *eax &= ~0xFC000000;
2121 } else {
2122 *eax = 0;
2123 switch (count) {
2124 case 0: /* L1 dcache info */
2125 *eax |= CPUID_4_TYPE_DCACHE | \
2126 CPUID_4_LEVEL(1) | \
2127 CPUID_4_SELF_INIT_LEVEL;
2128 *ebx = (L1D_LINE_SIZE - 1) | \
2129 ((L1D_PARTITIONS - 1) << 12) | \
2130 ((L1D_ASSOCIATIVITY - 1) << 22);
2131 *ecx = L1D_SETS - 1;
2132 *edx = CPUID_4_NO_INVD_SHARING;
2133 break;
2134 case 1: /* L1 icache info */
2135 *eax |= CPUID_4_TYPE_ICACHE | \
2136 CPUID_4_LEVEL(1) | \
2137 CPUID_4_SELF_INIT_LEVEL;
2138 *ebx = (L1I_LINE_SIZE - 1) | \
2139 ((L1I_PARTITIONS - 1) << 12) | \
2140 ((L1I_ASSOCIATIVITY - 1) << 22);
2141 *ecx = L1I_SETS - 1;
2142 *edx = CPUID_4_NO_INVD_SHARING;
2143 break;
2144 case 2: /* L2 cache info */
2145 *eax |= CPUID_4_TYPE_UNIFIED | \
2146 CPUID_4_LEVEL(2) | \
2147 CPUID_4_SELF_INIT_LEVEL;
2148 if (cs->nr_threads > 1) {
2149 *eax |= (cs->nr_threads - 1) << 14;
2150 }
2151 *ebx = (L2_LINE_SIZE - 1) | \
2152 ((L2_PARTITIONS - 1) << 12) | \
2153 ((L2_ASSOCIATIVITY - 1) << 22);
2154 *ecx = L2_SETS - 1;
2155 *edx = CPUID_4_NO_INVD_SHARING;
2156 break;
2157 default: /* end of info */
2158 *eax = 0;
2159 *ebx = 0;
2160 *ecx = 0;
2161 *edx = 0;
2162 break;
2163 }
2164 }
2165
2166 /* QEMU gives out its own APIC IDs, never pass down bits 31..26. */
2167 if ((*eax & 31) && cs->nr_cores > 1) {
2168 *eax |= (cs->nr_cores - 1) << 26;
2169 }
2170 break;
2171 case 5:
2172 /* mwait info: needed for Core compatibility */
2173 *eax = 0; /* Smallest monitor-line size in bytes */
2174 *ebx = 0; /* Largest monitor-line size in bytes */
2175 *ecx = CPUID_MWAIT_EMX | CPUID_MWAIT_IBE;
2176 *edx = 0;
2177 break;
2178 case 6:
2179 /* Thermal and Power Leaf */
2180 *eax = 0;
2181 *ebx = 0;
2182 *ecx = 0;
2183 *edx = 0;
2184 break;
2185 case 7:
2186 /* Structured Extended Feature Flags Enumeration Leaf */
2187 if (count == 0) {
2188 *eax = 0; /* Maximum ECX value for sub-leaves */
2189 *ebx = env->features[FEAT_7_0_EBX]; /* Feature flags */
2190 *ecx = 0; /* Reserved */
2191 *edx = 0; /* Reserved */
2192 } else {
2193 *eax = 0;
2194 *ebx = 0;
2195 *ecx = 0;
2196 *edx = 0;
2197 }
2198 break;
2199 case 9:
2200 /* Direct Cache Access Information Leaf */
2201 *eax = 0; /* Bits 0-31 in DCA_CAP MSR */
2202 *ebx = 0;
2203 *ecx = 0;
2204 *edx = 0;
2205 break;
2206 case 0xA:
2207 /* Architectural Performance Monitoring Leaf */
2208 if (kvm_enabled() && cpu->enable_pmu) {
2209 KVMState *s = cs->kvm_state;
2210
2211 *eax = kvm_arch_get_supported_cpuid(s, 0xA, count, R_EAX);
2212 *ebx = kvm_arch_get_supported_cpuid(s, 0xA, count, R_EBX);
2213 *ecx = kvm_arch_get_supported_cpuid(s, 0xA, count, R_ECX);
2214 *edx = kvm_arch_get_supported_cpuid(s, 0xA, count, R_EDX);
2215 } else {
2216 *eax = 0;
2217 *ebx = 0;
2218 *ecx = 0;
2219 *edx = 0;
2220 }
2221 break;
2222 case 0xD: {
2223 KVMState *s = cs->kvm_state;
2224 uint64_t kvm_mask;
2225 int i;
2226
2227 /* Processor Extended State */
2228 *eax = 0;
2229 *ebx = 0;
2230 *ecx = 0;
2231 *edx = 0;
2232 if (!(env->features[FEAT_1_ECX] & CPUID_EXT_XSAVE) || !kvm_enabled()) {
2233 break;
2234 }
2235 kvm_mask =
2236 kvm_arch_get_supported_cpuid(s, 0xd, 0, R_EAX) |
2237 ((uint64_t)kvm_arch_get_supported_cpuid(s, 0xd, 0, R_EDX) << 32);
2238
2239 if (count == 0) {
2240 *ecx = 0x240;
2241 for (i = 2; i < ARRAY_SIZE(ext_save_areas); i++) {
2242 const ExtSaveArea *esa = &ext_save_areas[i];
2243 if ((env->features[esa->feature] & esa->bits) == esa->bits &&
2244 (kvm_mask & (1 << i)) != 0) {
2245 if (i < 32) {
2246 *eax |= 1 << i;
2247 } else {
2248 *edx |= 1 << (i - 32);
2249 }
2250 *ecx = MAX(*ecx, esa->offset + esa->size);
2251 }
2252 }
2253 *eax |= kvm_mask & (XSTATE_FP | XSTATE_SSE);
2254 *ebx = *ecx;
2255 } else if (count == 1) {
2256 *eax = kvm_arch_get_supported_cpuid(s, 0xd, 1, R_EAX);
2257 } else if (count < ARRAY_SIZE(ext_save_areas)) {
2258 const ExtSaveArea *esa = &ext_save_areas[count];
2259 if ((env->features[esa->feature] & esa->bits) == esa->bits &&
2260 (kvm_mask & (1 << count)) != 0) {
2261 *eax = esa->size;
2262 *ebx = esa->offset;
2263 }
2264 }
2265 break;
2266 }
2267 case 0x80000000:
2268 *eax = env->cpuid_xlevel;
2269 *ebx = env->cpuid_vendor1;
2270 *edx = env->cpuid_vendor2;
2271 *ecx = env->cpuid_vendor3;
2272 break;
2273 case 0x80000001:
2274 *eax = env->cpuid_version;
2275 *ebx = 0;
2276 *ecx = env->features[FEAT_8000_0001_ECX];
2277 *edx = env->features[FEAT_8000_0001_EDX];
2278
2279 /* The Linux kernel checks for the CMPLegacy bit and
2280 * discards multiple thread information if it is set.
2281 * So dont set it here for Intel to make Linux guests happy.
2282 */
2283 if (cs->nr_cores * cs->nr_threads > 1) {
2284 uint32_t tebx, tecx, tedx;
2285 get_cpuid_vendor(env, &tebx, &tecx, &tedx);
2286 if (tebx != CPUID_VENDOR_INTEL_1 ||
2287 tedx != CPUID_VENDOR_INTEL_2 ||
2288 tecx != CPUID_VENDOR_INTEL_3) {
2289 *ecx |= 1 << 1; /* CmpLegacy bit */
2290 }
2291 }
2292 break;
2293 case 0x80000002:
2294 case 0x80000003:
2295 case 0x80000004:
2296 *eax = env->cpuid_model[(index - 0x80000002) * 4 + 0];
2297 *ebx = env->cpuid_model[(index - 0x80000002) * 4 + 1];
2298 *ecx = env->cpuid_model[(index - 0x80000002) * 4 + 2];
2299 *edx = env->cpuid_model[(index - 0x80000002) * 4 + 3];
2300 break;
2301 case 0x80000005:
2302 /* cache info (L1 cache) */
2303 if (cpu->cache_info_passthrough) {
2304 host_cpuid(index, 0, eax, ebx, ecx, edx);
2305 break;
2306 }
2307 *eax = (L1_DTLB_2M_ASSOC << 24) | (L1_DTLB_2M_ENTRIES << 16) | \
2308 (L1_ITLB_2M_ASSOC << 8) | (L1_ITLB_2M_ENTRIES);
2309 *ebx = (L1_DTLB_4K_ASSOC << 24) | (L1_DTLB_4K_ENTRIES << 16) | \
2310 (L1_ITLB_4K_ASSOC << 8) | (L1_ITLB_4K_ENTRIES);
2311 *ecx = (L1D_SIZE_KB_AMD << 24) | (L1D_ASSOCIATIVITY_AMD << 16) | \
2312 (L1D_LINES_PER_TAG << 8) | (L1D_LINE_SIZE);
2313 *edx = (L1I_SIZE_KB_AMD << 24) | (L1I_ASSOCIATIVITY_AMD << 16) | \
2314 (L1I_LINES_PER_TAG << 8) | (L1I_LINE_SIZE);
2315 break;
2316 case 0x80000006:
2317 /* cache info (L2 cache) */
2318 if (cpu->cache_info_passthrough) {
2319 host_cpuid(index, 0, eax, ebx, ecx, edx);
2320 break;
2321 }
2322 *eax = (AMD_ENC_ASSOC(L2_DTLB_2M_ASSOC) << 28) | \
2323 (L2_DTLB_2M_ENTRIES << 16) | \
2324 (AMD_ENC_ASSOC(L2_ITLB_2M_ASSOC) << 12) | \
2325 (L2_ITLB_2M_ENTRIES);
2326 *ebx = (AMD_ENC_ASSOC(L2_DTLB_4K_ASSOC) << 28) | \
2327 (L2_DTLB_4K_ENTRIES << 16) | \
2328 (AMD_ENC_ASSOC(L2_ITLB_4K_ASSOC) << 12) | \
2329 (L2_ITLB_4K_ENTRIES);
2330 *ecx = (L2_SIZE_KB_AMD << 16) | \
2331 (AMD_ENC_ASSOC(L2_ASSOCIATIVITY) << 12) | \
2332 (L2_LINES_PER_TAG << 8) | (L2_LINE_SIZE);
2333 *edx = ((L3_SIZE_KB/512) << 18) | \
2334 (AMD_ENC_ASSOC(L3_ASSOCIATIVITY) << 12) | \
2335 (L3_LINES_PER_TAG << 8) | (L3_LINE_SIZE);
2336 break;
2337 case 0x80000008:
2338 /* virtual & phys address size in low 2 bytes. */
2339 /* XXX: This value must match the one used in the MMU code. */
2340 if (env->features[FEAT_8000_0001_EDX] & CPUID_EXT2_LM) {
2341 /* 64 bit processor */
2342 /* XXX: The physical address space is limited to 42 bits in exec.c. */
2343 *eax = 0x00003028; /* 48 bits virtual, 40 bits physical */
2344 } else {
2345 if (env->features[FEAT_1_EDX] & CPUID_PSE36) {
2346 *eax = 0x00000024; /* 36 bits physical */
2347 } else {
2348 *eax = 0x00000020; /* 32 bits physical */
2349 }
2350 }
2351 *ebx = 0;
2352 *ecx = 0;
2353 *edx = 0;
2354 if (cs->nr_cores * cs->nr_threads > 1) {
2355 *ecx |= (cs->nr_cores * cs->nr_threads) - 1;
2356 }
2357 break;
2358 case 0x8000000A:
2359 if (env->features[FEAT_8000_0001_ECX] & CPUID_EXT3_SVM) {
2360 *eax = 0x00000001; /* SVM Revision */
2361 *ebx = 0x00000010; /* nr of ASIDs */
2362 *ecx = 0;
2363 *edx = env->features[FEAT_SVM]; /* optional features */
2364 } else {
2365 *eax = 0;
2366 *ebx = 0;
2367 *ecx = 0;
2368 *edx = 0;
2369 }
2370 break;
2371 case 0xC0000000:
2372 *eax = env->cpuid_xlevel2;
2373 *ebx = 0;
2374 *ecx = 0;
2375 *edx = 0;
2376 break;
2377 case 0xC0000001:
2378 /* Support for VIA CPU's CPUID instruction */
2379 *eax = env->cpuid_version;
2380 *ebx = 0;
2381 *ecx = 0;
2382 *edx = env->features[FEAT_C000_0001_EDX];
2383 break;
2384 case 0xC0000002:
2385 case 0xC0000003:
2386 case 0xC0000004:
2387 /* Reserved for the future, and now filled with zero */
2388 *eax = 0;
2389 *ebx = 0;
2390 *ecx = 0;
2391 *edx = 0;
2392 break;
2393 default:
2394 /* reserved values: zero */
2395 *eax = 0;
2396 *ebx = 0;
2397 *ecx = 0;
2398 *edx = 0;
2399 break;
2400 }
2401 }
2402
2403 /* CPUClass::reset() */
2404 static void x86_cpu_reset(CPUState *s)
2405 {
2406 X86CPU *cpu = X86_CPU(s);
2407 X86CPUClass *xcc = X86_CPU_GET_CLASS(cpu);
2408 CPUX86State *env = &cpu->env;
2409 int i;
2410
2411 xcc->parent_reset(s);
2412
2413 memset(env, 0, offsetof(CPUX86State, cpuid_level));
2414
2415 tlb_flush(s, 1);
2416
2417 env->old_exception = -1;
2418
2419 /* init to reset state */
2420
2421 #ifdef CONFIG_SOFTMMU
2422 env->hflags |= HF_SOFTMMU_MASK;
2423 #endif
2424 env->hflags2 |= HF2_GIF_MASK;
2425
2426 cpu_x86_update_cr0(env, 0x60000010);
2427 env->a20_mask = ~0x0;
2428 env->smbase = 0x30000;
2429
2430 env->idt.limit = 0xffff;
2431 env->gdt.limit = 0xffff;
2432 env->ldt.limit = 0xffff;
2433 env->ldt.flags = DESC_P_MASK | (2 << DESC_TYPE_SHIFT);
2434 env->tr.limit = 0xffff;
2435 env->tr.flags = DESC_P_MASK | (11 << DESC_TYPE_SHIFT);
2436
2437 cpu_x86_load_seg_cache(env, R_CS, 0xf000, 0xffff0000, 0xffff,
2438 DESC_P_MASK | DESC_S_MASK | DESC_CS_MASK |
2439 DESC_R_MASK | DESC_A_MASK);
2440 cpu_x86_load_seg_cache(env, R_DS, 0, 0, 0xffff,
2441 DESC_P_MASK | DESC_S_MASK | DESC_W_MASK |
2442 DESC_A_MASK);
2443 cpu_x86_load_seg_cache(env, R_ES, 0, 0, 0xffff,
2444 DESC_P_MASK | DESC_S_MASK | DESC_W_MASK |
2445 DESC_A_MASK);
2446 cpu_x86_load_seg_cache(env, R_SS, 0, 0, 0xffff,
2447 DESC_P_MASK | DESC_S_MASK | DESC_W_MASK |
2448 DESC_A_MASK);
2449 cpu_x86_load_seg_cache(env, R_FS, 0, 0, 0xffff,
2450 DESC_P_MASK | DESC_S_MASK | DESC_W_MASK |
2451 DESC_A_MASK);
2452 cpu_x86_load_seg_cache(env, R_GS, 0, 0, 0xffff,
2453 DESC_P_MASK | DESC_S_MASK | DESC_W_MASK |
2454 DESC_A_MASK);
2455
2456 env->eip = 0xfff0;
2457 env->regs[R_EDX] = env->cpuid_version;
2458
2459 env->eflags = 0x2;
2460
2461 /* FPU init */
2462 for (i = 0; i < 8; i++) {
2463 env->fptags[i] = 1;
2464 }
2465 env->fpuc = 0x37f;
2466
2467 env->mxcsr = 0x1f80;
2468 env->xstate_bv = XSTATE_FP | XSTATE_SSE;
2469
2470 env->pat = 0x0007040600070406ULL;
2471 env->msr_ia32_misc_enable = MSR_IA32_MISC_ENABLE_DEFAULT;
2472
2473 memset(env->dr, 0, sizeof(env->dr));
2474 env->dr[6] = DR6_FIXED_1;
2475 env->dr[7] = DR7_FIXED_1;
2476 cpu_breakpoint_remove_all(s, BP_CPU);
2477 cpu_watchpoint_remove_all(s, BP_CPU);
2478
2479 env->xcr0 = 1;
2480
2481 #if !defined(CONFIG_USER_ONLY)
2482 /* We hard-wire the BSP to the first CPU. */
2483 if (s->cpu_index == 0) {
2484 apic_designate_bsp(cpu->apic_state);
2485 }
2486
2487 s->halted = !cpu_is_bsp(cpu);
2488
2489 if (kvm_enabled()) {
2490 kvm_arch_reset_vcpu(cpu);
2491 }
2492 #endif
2493 }
2494
2495 #ifndef CONFIG_USER_ONLY
2496 bool cpu_is_bsp(X86CPU *cpu)
2497 {
2498 return cpu_get_apic_base(cpu->apic_state) & MSR_IA32_APICBASE_BSP;
2499 }
2500
2501 /* TODO: remove me, when reset over QOM tree is implemented */
2502 static void x86_cpu_machine_reset_cb(void *opaque)
2503 {
2504 X86CPU *cpu = opaque;
2505 cpu_reset(CPU(cpu));
2506 }
2507 #endif
2508
2509 static void mce_init(X86CPU *cpu)
2510 {
2511 CPUX86State *cenv = &cpu->env;
2512 unsigned int bank;
2513
2514 if (((cenv->cpuid_version >> 8) & 0xf) >= 6
2515 && (cenv->features[FEAT_1_EDX] & (CPUID_MCE | CPUID_MCA)) ==
2516 (CPUID_MCE | CPUID_MCA)) {
2517 cenv->mcg_cap = MCE_CAP_DEF | MCE_BANKS_DEF;
2518 cenv->mcg_ctl = ~(uint64_t)0;
2519 for (bank = 0; bank < MCE_BANKS_DEF; bank++) {
2520 cenv->mce_banks[bank * 4] = ~(uint64_t)0;
2521 }
2522 }
2523 }
2524
2525 #ifndef CONFIG_USER_ONLY
2526 static void x86_cpu_apic_create(X86CPU *cpu, Error **errp)
2527 {
2528 CPUX86State *env = &cpu->env;
2529 DeviceState *dev = DEVICE(cpu);
2530 APICCommonState *apic;
2531 const char *apic_type = "apic";
2532
2533 if (kvm_irqchip_in_kernel()) {
2534 apic_type = "kvm-apic";
2535 } else if (xen_enabled()) {
2536 apic_type = "xen-apic";
2537 }
2538
2539 cpu->apic_state = qdev_try_create(qdev_get_parent_bus(dev), apic_type);
2540 if (cpu->apic_state == NULL) {
2541 error_setg(errp, "APIC device '%s' could not be created", apic_type);
2542 return;
2543 }
2544
2545 object_property_add_child(OBJECT(cpu), "apic",
2546 OBJECT(cpu->apic_state), NULL);
2547 qdev_prop_set_uint8(cpu->apic_state, "id", env->cpuid_apic_id);
2548 /* TODO: convert to link<> */
2549 apic = APIC_COMMON(cpu->apic_state);
2550 apic->cpu = cpu;
2551 }
2552
2553 static void x86_cpu_apic_realize(X86CPU *cpu, Error **errp)
2554 {
2555 if (cpu->apic_state == NULL) {
2556 return;
2557 }
2558
2559 if (qdev_init(cpu->apic_state)) {
2560 error_setg(errp, "APIC device '%s' could not be initialized",
2561 object_get_typename(OBJECT(cpu->apic_state)));
2562 return;
2563 }
2564 }
2565 #else
2566 static void x86_cpu_apic_realize(X86CPU *cpu, Error **errp)
2567 {
2568 }
2569 #endif
2570
2571 static void x86_cpu_realizefn(DeviceState *dev, Error **errp)
2572 {
2573 CPUState *cs = CPU(dev);
2574 X86CPU *cpu = X86_CPU(dev);
2575 X86CPUClass *xcc = X86_CPU_GET_CLASS(dev);
2576 CPUX86State *env = &cpu->env;
2577 Error *local_err = NULL;
2578
2579 if (env->features[FEAT_7_0_EBX] && env->cpuid_level < 7) {
2580 env->cpuid_level = 7;
2581 }
2582
2583 /* On AMD CPUs, some CPUID[8000_0001].EDX bits must match the bits on
2584 * CPUID[1].EDX.
2585 */
2586 if (env->cpuid_vendor1 == CPUID_VENDOR_AMD_1 &&
2587 env->cpuid_vendor2 == CPUID_VENDOR_AMD_2 &&
2588 env->cpuid_vendor3 == CPUID_VENDOR_AMD_3) {
2589 env->features[FEAT_8000_0001_EDX] &= ~CPUID_EXT2_AMD_ALIASES;
2590 env->features[FEAT_8000_0001_EDX] |= (env->features[FEAT_1_EDX]
2591 & CPUID_EXT2_AMD_ALIASES);
2592 }
2593
2594 if (!kvm_enabled()) {
2595 env->features[FEAT_1_EDX] &= TCG_FEATURES;
2596 env->features[FEAT_1_ECX] &= TCG_EXT_FEATURES;
2597 env->features[FEAT_8000_0001_EDX] &= (TCG_EXT2_FEATURES
2598 #ifdef TARGET_X86_64
2599 | CPUID_EXT2_SYSCALL | CPUID_EXT2_LM
2600 #endif
2601 );
2602 env->features[FEAT_8000_0001_ECX] &= TCG_EXT3_FEATURES;
2603 env->features[FEAT_SVM] &= TCG_SVM_FEATURES;
2604 } else {
2605 if (x86_cpu_filter_features(cpu) && cpu->enforce_cpuid) {
2606 error_setg(&local_err,
2607 "Host's CPU doesn't support requested features");
2608 goto out;
2609 }
2610 }
2611
2612 #ifndef CONFIG_USER_ONLY
2613 qemu_register_reset(x86_cpu_machine_reset_cb, cpu);
2614
2615 if (cpu->env.features[FEAT_1_EDX] & CPUID_APIC || smp_cpus > 1) {
2616 x86_cpu_apic_create(cpu, &local_err);
2617 if (local_err != NULL) {
2618 goto out;
2619 }
2620 }
2621 #endif
2622
2623 mce_init(cpu);
2624 qemu_init_vcpu(cs);
2625
2626 x86_cpu_apic_realize(cpu, &local_err);
2627 if (local_err != NULL) {
2628 goto out;
2629 }
2630 cpu_reset(cs);
2631
2632 xcc->parent_realize(dev, &local_err);
2633 out:
2634 if (local_err != NULL) {
2635 error_propagate(errp, local_err);
2636 return;
2637 }
2638 }
2639
2640 /* Enables contiguous-apic-ID mode, for compatibility */
2641 static bool compat_apic_id_mode;
2642
2643 void enable_compat_apic_id_mode(void)
2644 {
2645 compat_apic_id_mode = true;
2646 }
2647
2648 /* Calculates initial APIC ID for a specific CPU index
2649 *
2650 * Currently we need to be able to calculate the APIC ID from the CPU index
2651 * alone (without requiring a CPU object), as the QEMU<->Seabios interfaces have
2652 * no concept of "CPU index", and the NUMA tables on fw_cfg need the APIC ID of
2653 * all CPUs up to max_cpus.
2654 */
2655 uint32_t x86_cpu_apic_id_from_index(unsigned int cpu_index)
2656 {
2657 uint32_t correct_id;
2658 static bool warned;
2659
2660 correct_id = x86_apicid_from_cpu_idx(smp_cores, smp_threads, cpu_index);
2661 if (compat_apic_id_mode) {
2662 if (cpu_index != correct_id && !warned) {
2663 error_report("APIC IDs set in compatibility mode, "
2664 "CPU topology won't match the configuration");
2665 warned = true;
2666 }
2667 return cpu_index;
2668 } else {
2669 return correct_id;
2670 }
2671 }
2672
2673 static void x86_cpu_initfn(Object *obj)
2674 {
2675 CPUState *cs = CPU(obj);
2676 X86CPU *cpu = X86_CPU(obj);
2677 X86CPUClass *xcc = X86_CPU_GET_CLASS(obj);
2678 CPUX86State *env = &cpu->env;
2679 static int inited;
2680
2681 cs->env_ptr = env;
2682 cpu_exec_init(env);
2683
2684 object_property_add(obj, "family", "int",
2685 x86_cpuid_version_get_family,
2686 x86_cpuid_version_set_family, NULL, NULL, NULL);
2687 object_property_add(obj, "model", "int",
2688 x86_cpuid_version_get_model,
2689 x86_cpuid_version_set_model, NULL, NULL, NULL);
2690 object_property_add(obj, "stepping", "int",
2691 x86_cpuid_version_get_stepping,
2692 x86_cpuid_version_set_stepping, NULL, NULL, NULL);
2693 object_property_add(obj, "level", "int",
2694 x86_cpuid_get_level,
2695 x86_cpuid_set_level, NULL, NULL, NULL);
2696 object_property_add(obj, "xlevel", "int",
2697 x86_cpuid_get_xlevel,
2698 x86_cpuid_set_xlevel, NULL, NULL, NULL);
2699 object_property_add_str(obj, "vendor",
2700 x86_cpuid_get_vendor,
2701 x86_cpuid_set_vendor, NULL);
2702 object_property_add_str(obj, "model-id",
2703 x86_cpuid_get_model_id,
2704 x86_cpuid_set_model_id, NULL);
2705 object_property_add(obj, "tsc-frequency", "int",
2706 x86_cpuid_get_tsc_freq,
2707 x86_cpuid_set_tsc_freq, NULL, NULL, NULL);
2708 object_property_add(obj, "apic-id", "int",
2709 x86_cpuid_get_apic_id,
2710 x86_cpuid_set_apic_id, NULL, NULL, NULL);
2711 object_property_add(obj, "feature-words", "X86CPUFeatureWordInfo",
2712 x86_cpu_get_feature_words,
2713 NULL, NULL, (void *)env->features, NULL);
2714 object_property_add(obj, "filtered-features", "X86CPUFeatureWordInfo",
2715 x86_cpu_get_feature_words,
2716 NULL, NULL, (void *)cpu->filtered_features, NULL);
2717
2718 cpu->hyperv_spinlock_attempts = HYPERV_SPINLOCK_NEVER_RETRY;
2719 env->cpuid_apic_id = x86_cpu_apic_id_from_index(cs->cpu_index);
2720
2721 x86_cpu_load_def(cpu, xcc->cpu_def, &error_abort);
2722
2723 /* init various static tables used in TCG mode */
2724 if (tcg_enabled() && !inited) {
2725 inited = 1;
2726 optimize_flags_init();
2727 #ifndef CONFIG_USER_ONLY
2728 cpu_set_debug_excp_handler(breakpoint_handler);
2729 #endif
2730 }
2731 }
2732
2733 static int64_t x86_cpu_get_arch_id(CPUState *cs)
2734 {
2735 X86CPU *cpu = X86_CPU(cs);
2736 CPUX86State *env = &cpu->env;
2737
2738 return env->cpuid_apic_id;
2739 }
2740
2741 static bool x86_cpu_get_paging_enabled(const CPUState *cs)
2742 {
2743 X86CPU *cpu = X86_CPU(cs);
2744
2745 return cpu->env.cr[0] & CR0_PG_MASK;
2746 }
2747
2748 static void x86_cpu_set_pc(CPUState *cs, vaddr value)
2749 {
2750 X86CPU *cpu = X86_CPU(cs);
2751
2752 cpu->env.eip = value;
2753 }
2754
2755 static void x86_cpu_synchronize_from_tb(CPUState *cs, TranslationBlock *tb)
2756 {
2757 X86CPU *cpu = X86_CPU(cs);
2758
2759 cpu->env.eip = tb->pc - tb->cs_base;
2760 }
2761
2762 static bool x86_cpu_has_work(CPUState *cs)
2763 {
2764 X86CPU *cpu = X86_CPU(cs);
2765 CPUX86State *env = &cpu->env;
2766
2767 return ((cs->interrupt_request & (CPU_INTERRUPT_HARD |
2768 CPU_INTERRUPT_POLL)) &&
2769 (env->eflags & IF_MASK)) ||
2770 (cs->interrupt_request & (CPU_INTERRUPT_NMI |
2771 CPU_INTERRUPT_INIT |
2772 CPU_INTERRUPT_SIPI |
2773 CPU_INTERRUPT_MCE));
2774 }
2775
2776 static Property x86_cpu_properties[] = {
2777 DEFINE_PROP_BOOL("pmu", X86CPU, enable_pmu, false),
2778 { .name = "hv-spinlocks", .info = &qdev_prop_spinlocks },
2779 DEFINE_PROP_BOOL("hv-relaxed", X86CPU, hyperv_relaxed_timing, false),
2780 DEFINE_PROP_BOOL("hv-vapic", X86CPU, hyperv_vapic, false),
2781 DEFINE_PROP_BOOL("hv-time", X86CPU, hyperv_time, false),
2782 DEFINE_PROP_BOOL("check", X86CPU, check_cpuid, false),
2783 DEFINE_PROP_BOOL("enforce", X86CPU, enforce_cpuid, false),
2784 DEFINE_PROP_BOOL("kvm", X86CPU, expose_kvm, true),
2785 DEFINE_PROP_END_OF_LIST()
2786 };
2787
2788 static void x86_cpu_common_class_init(ObjectClass *oc, void *data)
2789 {
2790 X86CPUClass *xcc = X86_CPU_CLASS(oc);
2791 CPUClass *cc = CPU_CLASS(oc);
2792 DeviceClass *dc = DEVICE_CLASS(oc);
2793
2794 xcc->parent_realize = dc->realize;
2795 dc->realize = x86_cpu_realizefn;
2796 dc->bus_type = TYPE_ICC_BUS;
2797 dc->props = x86_cpu_properties;
2798
2799 xcc->parent_reset = cc->reset;
2800 cc->reset = x86_cpu_reset;
2801 cc->reset_dump_flags = CPU_DUMP_FPU | CPU_DUMP_CCOP;
2802
2803 cc->class_by_name = x86_cpu_class_by_name;
2804 cc->parse_features = x86_cpu_parse_featurestr;
2805 cc->has_work = x86_cpu_has_work;
2806 cc->do_interrupt = x86_cpu_do_interrupt;
2807 cc->dump_state = x86_cpu_dump_state;
2808 cc->set_pc = x86_cpu_set_pc;
2809 cc->synchronize_from_tb = x86_cpu_synchronize_from_tb;
2810 cc->gdb_read_register = x86_cpu_gdb_read_register;
2811 cc->gdb_write_register = x86_cpu_gdb_write_register;
2812 cc->get_arch_id = x86_cpu_get_arch_id;
2813 cc->get_paging_enabled = x86_cpu_get_paging_enabled;
2814 #ifdef CONFIG_USER_ONLY
2815 cc->handle_mmu_fault = x86_cpu_handle_mmu_fault;
2816 #else
2817 cc->get_memory_mapping = x86_cpu_get_memory_mapping;
2818 cc->get_phys_page_debug = x86_cpu_get_phys_page_debug;
2819 cc->write_elf64_note = x86_cpu_write_elf64_note;
2820 cc->write_elf64_qemunote = x86_cpu_write_elf64_qemunote;
2821 cc->write_elf32_note = x86_cpu_write_elf32_note;
2822 cc->write_elf32_qemunote = x86_cpu_write_elf32_qemunote;
2823 cc->vmsd = &vmstate_x86_cpu;
2824 #endif
2825 cc->gdb_num_core_regs = CPU_NB_REGS * 2 + 25;
2826 }
2827
2828 static const TypeInfo x86_cpu_type_info = {
2829 .name = TYPE_X86_CPU,
2830 .parent = TYPE_CPU,
2831 .instance_size = sizeof(X86CPU),
2832 .instance_init = x86_cpu_initfn,
2833 .abstract = true,
2834 .class_size = sizeof(X86CPUClass),
2835 .class_init = x86_cpu_common_class_init,
2836 };
2837
2838 static void x86_cpu_register_types(void)
2839 {
2840 int i;
2841
2842 type_register_static(&x86_cpu_type_info);
2843 for (i = 0; i < ARRAY_SIZE(builtin_x86_defs); i++) {
2844 x86_register_cpudef_type(&builtin_x86_defs[i]);
2845 }
2846 #ifdef CONFIG_KVM
2847 type_register_static(&host_x86_cpu_type_info);
2848 #endif
2849 }
2850
2851 type_init(x86_cpu_register_types)