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