]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/i386/pc.h
target-i386: Report known CPUID[EAX=0xD,ECX=0]:EAX bits as migratable
[mirror_qemu.git] / include / hw / i386 / pc.h
CommitLineData
87ecb68b
PB
1#ifndef HW_PC_H
2#define HW_PC_H
376253ec
AL
3
4#include "qemu-common.h"
022c62cb 5#include "exec/memory.h"
9521d42b 6#include "hw/boards.h"
0d09e41a
PB
7#include "hw/isa/isa.h"
8#include "hw/block/fdc.h"
1422e32d 9#include "net/net.h"
0d09e41a 10#include "hw/i386/ioapic.h"
376253ec 11
3459a625 12#include "qemu/range.h"
b20c9bd5
MT
13#include "qemu/bitmap.h"
14#include "sysemu/sysemu.h"
15#include "hw/pci/pci.h"
d5747cac 16#include "hw/boards.h"
68a27b20 17#include "hw/compat.h"
a7d69ff1 18#include "hw/mem/pc-dimm.h"
5fe79386 19#include "hw/mem/nvdimm.h"
ac35f13b 20#include "hw/acpi/acpi_dev_interface.h"
3459a625 21
7a10ef51
LPF
22#define HPET_INTCAP "hpet-intcap"
23
15eafc2e
PB
24#ifdef CONFIG_KVM
25#define kvm_pit_in_kernel() \
26 (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
27#define kvm_pic_in_kernel() \
28 (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
29#define kvm_ioapic_in_kernel() \
30 (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
31#else
32#define kvm_pit_in_kernel() 0
33#define kvm_pic_in_kernel() 0
34#define kvm_ioapic_in_kernel() 0
35#endif
36
619d11e4
IM
37/**
38 * PCMachineState:
781bbd6b 39 * @acpi_dev: link to ACPI PM device that performs ACPI hotplug handling
619d11e4 40 */
d5747cac
IM
41struct PCMachineState {
42 /*< private >*/
43 MachineState parent_obj;
619d11e4
IM
44
45 /* <public> */
13fc8343
EH
46
47 /* State for other subsystems/APIs: */
a7d69ff1 48 MemoryHotplugState hotplug_memory;
9ebeed0c 49 Notifier machine_done;
781bbd6b 50
13fc8343 51 /* Pointers to devices and objects: */
781bbd6b 52 HotplugHandler *acpi_dev;
2d996150 53 ISADevice *rtc;
13fc8343 54 PCIBus *bus;
f264d360 55 FWCfgState *fw_cfg;
3e6c0c4c 56 qemu_irq *gsi;
c87b1520 57
13fc8343 58 /* Configuration options: */
c87b1520 59 uint64_t max_ram_below_4g;
d1048bef 60 OnOffAuto vmport;
355023f2 61 OnOffAuto smm;
5fe79386
XG
62
63 AcpiNVDIMMState acpi_nvdimm_state;
13fc8343
EH
64
65 /* RAM information (sizes, addresses, configuration): */
c0aa4e1e 66 ram_addr_t below_4g_mem_size, above_4g_mem_size;
dd4c2f01
EH
67
68 /* CPU and apic information: */
69 bool apic_xrupt_override;
70 unsigned apic_id_limit;
3811ef14 71 CPUArchIdList *possible_cpus;
dd4c2f01
EH
72
73 /* NUMA information: */
74 uint64_t numa_nodes;
75 uint64_t *node_mem;
cb135f59
PX
76
77 /* Address space used by IOAPIC device. All IOAPIC interrupts
78 * will be translated to MSI messages in the address space. */
79 AddressSpace *ioapic_as;
d5747cac
IM
80};
81
781bbd6b 82#define PC_MACHINE_ACPI_DEVICE_PROP "acpi-device"
bf1e8939 83#define PC_MACHINE_MEMHP_REGION_SIZE "hotplug-memory-region-size"
c87b1520 84#define PC_MACHINE_MAX_RAM_BELOW_4G "max-ram-below-4g"
9b23cfb7 85#define PC_MACHINE_VMPORT "vmport"
355023f2 86#define PC_MACHINE_SMM "smm"
87252e1b 87#define PC_MACHINE_NVDIMM "nvdimm"
781bbd6b 88
95bee274
IM
89/**
90 * PCMachineClass:
13fc8343
EH
91 *
92 * Methods:
93 *
95bee274 94 * @get_hotplug_handler: pointer to parent class callback @get_hotplug_handler
13fc8343
EH
95 *
96 * Compat fields:
97 *
16a9e8a5
EH
98 * @enforce_aligned_dimm: check that DIMM's address/size is aligned by
99 * backend's alignment value if provided
13fc8343
EH
100 * @acpi_data_size: Size of the chunk of memory at the top of RAM
101 * for the BIOS ACPI tables and other BIOS
102 * datastructures.
103 * @gigabyte_align: Make sure that guest addresses aligned at
104 * 1Gbyte boundaries get mapped to host
105 * addresses aligned at 1Gbyte boundaries. This
106 * way we can use 1GByte pages in the host.
107 *
95bee274 108 */
d5747cac
IM
109struct PCMachineClass {
110 /*< private >*/
111 MachineClass parent_class;
95bee274
IM
112
113 /*< public >*/
13fc8343
EH
114
115 /* Methods: */
95bee274
IM
116 HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
117 DeviceState *dev);
7102fa70 118
13fc8343 119 /* Device configuration: */
7102fa70 120 bool pci_enabled;
13fc8343
EH
121 bool kvmclock_enabled;
122
123 /* Compat options: */
124
125 /* ACPI compat: */
7102fa70
EH
126 bool has_acpi_build;
127 bool rsdp_in_ram;
13fc8343
EH
128 int legacy_acpi_table_size;
129 unsigned acpi_data_size;
130
131 /* SMBIOS compat: */
7102fa70
EH
132 bool smbios_defaults;
133 bool smbios_legacy_mode;
134 bool smbios_uuid_encoded;
13fc8343
EH
135
136 /* RAM / address space compat: */
7102fa70
EH
137 bool gigabyte_align;
138 bool has_reserved_memory;
16a9e8a5 139 bool enforce_aligned_dimm;
13fc8343 140 bool broken_reserved_end;
36f96c4b
HZ
141
142 /* TSC rate migration: */
143 bool save_tsc_khz;
679dd1a9
IM
144 /* generate legacy CPU hotplug AML */
145 bool legacy_cpu_hotplug;
d5747cac
IM
146};
147
d5747cac
IM
148#define TYPE_PC_MACHINE "generic-pc-machine"
149#define PC_MACHINE(obj) \
150 OBJECT_CHECK(PCMachineState, (obj), TYPE_PC_MACHINE)
151#define PC_MACHINE_GET_CLASS(obj) \
152 OBJECT_GET_CLASS(PCMachineClass, (obj), TYPE_PC_MACHINE)
153#define PC_MACHINE_CLASS(klass) \
154 OBJECT_CLASS_CHECK(PCMachineClass, (klass), TYPE_PC_MACHINE)
155
87ecb68b
PB
156/* PC-style peripherals (also used by other machines). */
157
f854ecc7
MT
158#define ACPI_PM_PROP_S3_DISABLED "disable_s3"
159#define ACPI_PM_PROP_S4_DISABLED "disable_s4"
160#define ACPI_PM_PROP_S4_VAL "s4_val"
161#define ACPI_PM_PROP_SCI_INT "sci_int"
162#define ACPI_PM_PROP_ACPI_ENABLE_CMD "acpi_enable_cmd"
163#define ACPI_PM_PROP_ACPI_DISABLE_CMD "acpi_disable_cmd"
164#define ACPI_PM_PROP_PM_IO_BASE "pm_io_base"
165#define ACPI_PM_PROP_GPE0_BLK "gpe0_blk"
166#define ACPI_PM_PROP_GPE0_BLK_LEN "gpe0_blk_len"
92055797 167#define ACPI_PM_PROP_TCO_ENABLED "enable_tco"
f854ecc7 168
87ecb68b 169/* parallel.c */
07dc7880
MA
170
171void parallel_hds_isa_init(ISABus *bus, int n);
defdb20e 172
63858cd9 173bool parallel_mm_init(MemoryRegion *address_space,
a8170e5e 174 hwaddr base, int it_shift, qemu_irq irq,
defdb20e 175 CharDriverState *chr);
87ecb68b
PB
176
177/* i8259.c */
178
9aa78c42 179extern DeviceState *isa_pic;
48a18b3c 180qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq);
10b61882 181qemu_irq *kvm_i8259_init(ISABus *bus);
9aa78c42
JK
182int pic_read_irq(DeviceState *d);
183int pic_get_output(DeviceState *d);
1ce6be24
MA
184void hmp_info_pic(Monitor *mon, const QDict *qdict);
185void hmp_info_irq(Monitor *mon, const QDict *qdict);
87ecb68b 186
d665d696
PB
187/* ioapic.c */
188
189void kvm_ioapic_dump_state(Monitor *mon, const QDict *qdict);
6bde8fd6 190void ioapic_dump_state(Monitor *mon, const QDict *qdict);
d665d696 191
b881fbe9 192/* Global System Interrupts */
96051119 193
b881fbe9 194#define GSI_NUM_PINS IOAPIC_NUM_PINS
845773ab 195
b881fbe9 196typedef struct GSIState {
43a0db35 197 qemu_irq i8259_irq[ISA_NUM_IRQS];
b881fbe9
JK
198 qemu_irq ioapic_irq[IOAPIC_NUM_PINS];
199} GSIState;
200
201void gsi_handler(void *opaque, int n, int level);
845773ab 202
87ecb68b 203/* vmport.c */
936a6447 204#define TYPE_VMPORT "vmport"
d67f679d
JK
205typedef uint32_t (VMPortReadFunc)(void *opaque, uint32_t address);
206
48a18b3c 207static inline void vmport_init(ISABus *bus)
6872ef61 208{
936a6447 209 isa_create_simple(bus, TYPE_VMPORT);
6872ef61 210}
d67f679d
JK
211
212void vmport_register(unsigned char command, VMPortReadFunc *func, void *opaque);
86d86414
BS
213void vmmouse_get_data(uint32_t *data);
214void vmmouse_set_data(const uint32_t *data);
87ecb68b 215
87ecb68b 216/* pckbd.c */
3115b9e2 217#define I8042_A20_LINE "a20"
87ecb68b 218
87ecb68b 219void i8042_mm_init(qemu_irq kbd_irq, qemu_irq mouse_irq,
dbff76ac 220 MemoryRegion *region, ram_addr_t size,
a8170e5e 221 hwaddr mask);
956a3e6b 222void i8042_isa_mouse_fake_event(void *opaque);
d80fe99d 223void i8042_setup_a20_line(ISADevice *dev, qemu_irq a20_out);
87ecb68b 224
87ecb68b
PB
225/* pc.c */
226extern int fd_bootchk;
227
355023f2 228bool pc_machine_is_smm_enabled(PCMachineState *pcms);
8e78eb28 229void pc_register_ferr_irq(qemu_irq irq);
845773ab
IY
230void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
231
4884b7bf 232void pc_cpus_init(PCMachineState *pcms);
c649983b 233void pc_hot_add_cpu(const int64_t id, Error **errp);
f7e4dd6c 234void pc_acpi_init(const char *default_dsdt);
3459a625 235
e4e8ba04 236void pc_guest_info_init(PCMachineState *pcms);
3459a625 237
39848901
IM
238#define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start"
239#define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end"
240#define PCI_HOST_PROP_PCI_HOLE64_START "pci-hole64-start"
241#define PCI_HOST_PROP_PCI_HOLE64_END "pci-hole64-end"
242#define PCI_HOST_PROP_PCI_HOLE64_SIZE "pci-hole64-size"
401f2f3e
EV
243#define PCI_HOST_BELOW_4G_MEM_SIZE "below-4g-mem-size"
244#define PCI_HOST_ABOVE_4G_MEM_SIZE "above-4g-mem-size"
1466cef3
MT
245#define DEFAULT_PCI_HOLE64_SIZE (~0x0ULL)
246
39848901 247
83d08f26
MT
248void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
249 MemoryRegion *pci_address_space);
39848901 250
7bc35e0f 251void xen_load_linux(PCMachineState *pcms);
5934e216
EH
252void pc_memory_init(PCMachineState *pcms,
253 MemoryRegion *system_memory,
254 MemoryRegion *rom_memory,
255 MemoryRegion **ram_memory);
0b0cc076 256qemu_irq pc_allocate_cpu_irq(void);
48a18b3c
HP
257DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus);
258void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
1611977c 259 ISADevice **rtc_state,
fd53c87c 260 bool create_fdctrl,
7a10ef51 261 bool no_vmport,
3a87d009 262 uint32_t hpet_irqs);
48a18b3c 263void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
23d30407 264void pc_cmos_init(PCMachineState *pcms,
220a8846 265 BusState *ide0, BusState *ide1,
63ffb564 266 ISADevice *s);
9011a1a7 267void pc_nic_init(ISABus *isa_bus, PCIBus *pci_bus);
845773ab 268void pc_pci_device_init(PCIBus *pci_bus);
8e78eb28 269
f885f1ea 270typedef void (*cpu_set_smm_t)(int smm, void *arg);
f885f1ea 271
a39e3564
JB
272void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name);
273
424e4a87 274ISADevice *pc_find_fdc0(void);
bda05509 275int cmos_get_fd_drive_type(FloppyDriveType fd0);
424e4a87 276
305ae888
GS
277#define FW_CFG_IO_BASE 0x510
278
d812b3d6
EV
279#define PORT92_A20_LINE "a20"
280
9d5e77a2 281/* acpi_piix.c */
53b67b30 282
a5c82852
AF
283I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
284 qemu_irq sci_irq, qemu_irq smi_irq,
61e66c62 285 int smm_enabled, DeviceState **piix4_pm);
87ecb68b 286
16b29ae1
AL
287/* hpet.c */
288extern int no_hpet;
289
87ecb68b 290/* piix_pci.c */
0a3bacf3
JQ
291struct PCII440FXState;
292typedef struct PCII440FXState PCII440FXState;
293
7bb836e4
MT
294#define TYPE_I440FX_PCI_HOST_BRIDGE "i440FX-pcihost"
295#define TYPE_I440FX_PCI_DEVICE "i440FX"
296
595a4f07
TC
297#define TYPE_IGD_PASSTHROUGH_I440FX_PCI_DEVICE "igd-passthrough-i440FX"
298
7bb836e4
MT
299PCIBus *i440fx_init(const char *host_type, const char *pci_type,
300 PCII440FXState **pi440fx_state, int *piix_devfn,
60573079 301 ISABus **isa_bus, qemu_irq *pic,
aee97b84
AK
302 MemoryRegion *address_space_mem,
303 MemoryRegion *address_space_io,
ae0a5466 304 ram_addr_t ram_size,
ddaaefb4 305 ram_addr_t below_4g_mem_size,
39848901 306 ram_addr_t above_4g_mem_size,
ae0a5466
AK
307 MemoryRegion *pci_memory,
308 MemoryRegion *ram_memory);
87ecb68b 309
277e9340 310PCIBus *find_i440fx(void);
823e675a 311/* piix4.c */
b1d8e52e 312extern PCIDevice *piix4_dev;
142e9787 313int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn);
87ecb68b
PB
314
315/* vga.c */
cb5a7aa8 316enum vga_retrace_method {
317 VGA_RETRACE_DUMB,
318 VGA_RETRACE_PRECISE
319};
320
321extern enum vga_retrace_method vga_retrace_method;
87ecb68b 322
a8170e5e
AK
323int isa_vga_mm_init(hwaddr vram_base,
324 hwaddr ctrl_base, int it_shift,
be20f9e9 325 MemoryRegion *address_space);
87ecb68b 326
87ecb68b 327/* ne2000.c */
48a18b3c 328static inline bool isa_ne2000_init(ISABus *bus, int base, int irq, NICInfo *nd)
60a14ad3 329{
4a17cc4f
AF
330 DeviceState *dev;
331 ISADevice *isadev;
87ecb68b 332
60a14ad3
BS
333 qemu_check_nic_model(nd, "ne2k_isa");
334
4a17cc4f
AF
335 isadev = isa_try_create(bus, "ne2k_isa");
336 if (!isadev) {
cd1b8a8b
BS
337 return false;
338 }
4a17cc4f
AF
339 dev = DEVICE(isadev);
340 qdev_prop_set_uint32(dev, "iobase", base);
341 qdev_prop_set_uint32(dev, "irq", irq);
342 qdev_set_nic_properties(dev, nd);
343 qdev_init_nofail(dev);
cd1b8a8b 344 return true;
60a14ad3 345}
87ecb68b 346
cbc5b5f3 347/* pc_sysfw.c */
6dd2a5c9
PB
348void pc_system_firmware_init(MemoryRegion *rom_memory,
349 bool isapc_ram_fw);
cbc5b5f3 350
3ab135f3 351/* pvpanic.c */
309cd62d 352uint16_t pvpanic_port(void);
3ab135f3 353
ac35f13b
IM
354/* acpi-build.c */
355void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid,
356 CPUArchIdList *apic_ids, GArray *entry);
357
4c5b10b7
JS
358/* e820 types */
359#define E820_RAM 1
360#define E820_RESERVED 2
361#define E820_ACPI 3
362#define E820_NVS 4
363#define E820_UNUSABLE 5
364
365int e820_add_entry(uint64_t, uint64_t, uint32_t);
7bf8ef19
GS
366int e820_get_num_entries(void);
367bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *);
4c5b10b7 368
14c985cf 369#define PC_COMPAT_2_8 \
152fcbec
IM
370
371#define PC_COMPAT_2_7 \
372 HW_COMPAT_2_7 \
14c985cf
LM
373 {\
374 .driver = TYPE_X86_CPU,\
375 .property = "l3-cache",\
376 .value = "off",\
c39c0edf
EH
377 },\
378 {\
379 .driver = TYPE_X86_CPU,\
380 .property = "full-cpuid-auto-level",\
381 .value = "off",\
14c985cf
LM
382 },
383
d86c1451 384#define PC_COMPAT_2_6 \
5232d00a
RK
385 HW_COMPAT_2_6 \
386 {\
b2a575a1
MM
387 .driver = "fw_cfg_io",\
388 .property = "dma_enabled",\
389 .value = "off",\
390 },{\
5232d00a
RK
391 .driver = TYPE_X86_CPU,\
392 .property = "cpuid-0xb",\
393 .value = "off",\
43716de6
GH
394 },{\
395 .driver = "vmxnet3",\
396 .property = "romfile",\
397 .value = "",\
fcc35e7c
DDAG
398 },\
399 {\
400 .driver = TYPE_X86_CPU,\
401 .property = "fill-mtrr-mask",\
402 .value = "off",\
f6e98444
IM
403 },\
404 {\
7298d4fd 405 .driver = "apic-common",\
f6e98444
IM
406 .property = "legacy-instance-id",\
407 .value = "on",\
5232d00a 408 },
d86c1451 409
240240d5
EH
410#define PC_COMPAT_2_5 \
411 HW_COMPAT_2_5
412
cd6c1b70
EH
413/* Helper for setting model-id for CPU models that changed model-id
414 * depending on QEMU versions up to QEMU 2.4.
415 */
416#define PC_CPU_MODEL_IDS(v) \
417 {\
418 .driver = "qemu32-" TYPE_X86_CPU,\
419 .property = "model-id",\
420 .value = "QEMU Virtual CPU version " v,\
421 },\
422 {\
423 .driver = "qemu64-" TYPE_X86_CPU,\
424 .property = "model-id",\
425 .value = "QEMU Virtual CPU version " v,\
426 },\
427 {\
428 .driver = "athlon-" TYPE_X86_CPU,\
429 .property = "model-id",\
430 .value = "QEMU Virtual CPU version " v,\
431 },
432
87e896ab 433#define PC_COMPAT_2_4 \
276a65ba 434 HW_COMPAT_2_4 \
cd6c1b70 435 PC_CPU_MODEL_IDS("2.4.0") \
276a65ba
EH
436 {\
437 .driver = "Haswell-" TYPE_X86_CPU,\
438 .property = "abm",\
439 .value = "off",\
440 },\
441 {\
442 .driver = "Haswell-noTSX-" TYPE_X86_CPU,\
443 .property = "abm",\
444 .value = "off",\
445 },\
446 {\
447 .driver = "Broadwell-" TYPE_X86_CPU,\
448 .property = "abm",\
449 .value = "off",\
450 },\
451 {\
452 .driver = "Broadwell-noTSX-" TYPE_X86_CPU,\
453 .property = "abm",\
454 .value = "off",\
455 },\
456 {\
457 .driver = "host" "-" TYPE_X86_CPU,\
458 .property = "host-cache-info",\
459 .value = "on",\
460 },\
461 {\
462 .driver = TYPE_X86_CPU,\
463 .property = "check",\
464 .value = "off",\
465 },\
466 {\
467 .driver = "qemu64" "-" TYPE_X86_CPU,\
468 .property = "sse4a",\
469 .value = "on",\
470 },\
471 {\
472 .driver = "qemu64" "-" TYPE_X86_CPU,\
473 .property = "abm",\
474 .value = "on",\
475 },\
476 {\
477 .driver = "qemu64" "-" TYPE_X86_CPU,\
478 .property = "popcnt",\
479 .value = "on",\
480 },\
481 {\
482 .driver = "qemu32" "-" TYPE_X86_CPU,\
483 .property = "popcnt",\
484 .value = "on",\
485 },{\
486 .driver = "Opteron_G2" "-" TYPE_X86_CPU,\
487 .property = "rdtscp",\
488 .value = "on",\
489 },{\
490 .driver = "Opteron_G3" "-" TYPE_X86_CPU,\
491 .property = "rdtscp",\
492 .value = "on",\
493 },{\
494 .driver = "Opteron_G4" "-" TYPE_X86_CPU,\
495 .property = "rdtscp",\
496 .value = "on",\
497 },{\
498 .driver = "Opteron_G5" "-" TYPE_X86_CPU,\
499 .property = "rdtscp",\
500 .value = "on",\
501 },
87e896ab 502
33b5e8c0 503
42134ac9 504#define PC_COMPAT_2_3 \
276a65ba 505 HW_COMPAT_2_3 \
cd6c1b70 506 PC_CPU_MODEL_IDS("2.3.0") \
276a65ba
EH
507 {\
508 .driver = TYPE_X86_CPU,\
509 .property = "arat",\
510 .value = "off",\
511 },{\
512 .driver = "qemu64" "-" TYPE_X86_CPU,\
513 .property = "level",\
514 .value = stringify(4),\
515 },{\
516 .driver = "kvm64" "-" TYPE_X86_CPU,\
517 .property = "level",\
518 .value = stringify(5),\
519 },{\
520 .driver = "pentium3" "-" TYPE_X86_CPU,\
521 .property = "level",\
522 .value = stringify(2),\
523 },{\
524 .driver = "n270" "-" TYPE_X86_CPU,\
525 .property = "level",\
526 .value = stringify(5),\
527 },{\
528 .driver = "Conroe" "-" TYPE_X86_CPU,\
529 .property = "level",\
530 .value = stringify(4),\
531 },{\
532 .driver = "Penryn" "-" TYPE_X86_CPU,\
533 .property = "level",\
534 .value = stringify(4),\
535 },{\
536 .driver = "Nehalem" "-" TYPE_X86_CPU,\
537 .property = "level",\
538 .value = stringify(4),\
539 },{\
540 .driver = "n270" "-" TYPE_X86_CPU,\
541 .property = "xlevel",\
542 .value = stringify(0x8000000a),\
543 },{\
544 .driver = "Penryn" "-" TYPE_X86_CPU,\
545 .property = "xlevel",\
546 .value = stringify(0x8000000a),\
547 },{\
548 .driver = "Conroe" "-" TYPE_X86_CPU,\
549 .property = "xlevel",\
550 .value = stringify(0x8000000a),\
551 },{\
552 .driver = "Nehalem" "-" TYPE_X86_CPU,\
553 .property = "xlevel",\
554 .value = stringify(0x8000000a),\
555 },{\
556 .driver = "Westmere" "-" TYPE_X86_CPU,\
557 .property = "xlevel",\
558 .value = stringify(0x8000000a),\
559 },{\
560 .driver = "SandyBridge" "-" TYPE_X86_CPU,\
561 .property = "xlevel",\
562 .value = stringify(0x8000000a),\
563 },{\
564 .driver = "IvyBridge" "-" TYPE_X86_CPU,\
565 .property = "xlevel",\
566 .value = stringify(0x8000000a),\
567 },{\
568 .driver = "Haswell" "-" TYPE_X86_CPU,\
569 .property = "xlevel",\
570 .value = stringify(0x8000000a),\
571 },{\
572 .driver = "Haswell-noTSX" "-" TYPE_X86_CPU,\
573 .property = "xlevel",\
574 .value = stringify(0x8000000a),\
575 },{\
576 .driver = "Broadwell" "-" TYPE_X86_CPU,\
577 .property = "xlevel",\
578 .value = stringify(0x8000000a),\
579 },{\
580 .driver = "Broadwell-noTSX" "-" TYPE_X86_CPU,\
581 .property = "xlevel",\
582 .value = stringify(0x8000000a),\
583 },
42134ac9
EH
584
585#define PC_COMPAT_2_2 \
276a65ba 586 HW_COMPAT_2_2 \
cd6c1b70 587 PC_CPU_MODEL_IDS("2.3.0") \
276a65ba
EH
588 {\
589 .driver = "kvm64" "-" TYPE_X86_CPU,\
590 .property = "vme",\
591 .value = "off",\
592 },\
593 {\
594 .driver = "kvm32" "-" TYPE_X86_CPU,\
595 .property = "vme",\
596 .value = "off",\
597 },\
598 {\
599 .driver = "Conroe" "-" TYPE_X86_CPU,\
600 .property = "vme",\
601 .value = "off",\
602 },\
603 {\
604 .driver = "Penryn" "-" TYPE_X86_CPU,\
605 .property = "vme",\
606 .value = "off",\
607 },\
608 {\
609 .driver = "Nehalem" "-" TYPE_X86_CPU,\
610 .property = "vme",\
611 .value = "off",\
612 },\
613 {\
614 .driver = "Westmere" "-" TYPE_X86_CPU,\
615 .property = "vme",\
616 .value = "off",\
617 },\
618 {\
619 .driver = "SandyBridge" "-" TYPE_X86_CPU,\
620 .property = "vme",\
621 .value = "off",\
622 },\
623 {\
624 .driver = "Haswell" "-" TYPE_X86_CPU,\
625 .property = "vme",\
626 .value = "off",\
627 },\
628 {\
629 .driver = "Broadwell" "-" TYPE_X86_CPU,\
630 .property = "vme",\
631 .value = "off",\
632 },\
633 {\
634 .driver = "Opteron_G1" "-" TYPE_X86_CPU,\
635 .property = "vme",\
636 .value = "off",\
637 },\
638 {\
639 .driver = "Opteron_G2" "-" TYPE_X86_CPU,\
640 .property = "vme",\
641 .value = "off",\
642 },\
643 {\
644 .driver = "Opteron_G3" "-" TYPE_X86_CPU,\
645 .property = "vme",\
646 .value = "off",\
647 },\
648 {\
649 .driver = "Opteron_G4" "-" TYPE_X86_CPU,\
650 .property = "vme",\
651 .value = "off",\
652 },\
653 {\
654 .driver = "Opteron_G5" "-" TYPE_X86_CPU,\
655 .property = "vme",\
656 .value = "off",\
657 },\
658 {\
659 .driver = "Haswell" "-" TYPE_X86_CPU,\
660 .property = "f16c",\
661 .value = "off",\
662 },\
663 {\
664 .driver = "Haswell" "-" TYPE_X86_CPU,\
665 .property = "rdrand",\
666 .value = "off",\
667 },\
668 {\
669 .driver = "Broadwell" "-" TYPE_X86_CPU,\
670 .property = "f16c",\
671 .value = "off",\
672 },\
673 {\
674 .driver = "Broadwell" "-" TYPE_X86_CPU,\
675 .property = "rdrand",\
676 .value = "off",\
677 },
42134ac9
EH
678
679#define PC_COMPAT_2_1 \
276a65ba 680 HW_COMPAT_2_1 \
cd6c1b70 681 PC_CPU_MODEL_IDS("2.1.0") \
276a65ba
EH
682 {\
683 .driver = "coreduo" "-" TYPE_X86_CPU,\
684 .property = "vmx",\
685 .value = "on",\
686 },\
687 {\
688 .driver = "core2duo" "-" TYPE_X86_CPU,\
689 .property = "vmx",\
690 .value = "on",\
691 },
42134ac9 692
9df11c9f 693#define PC_COMPAT_2_0 \
cd6c1b70 694 PC_CPU_MODEL_IDS("2.0.0") \
276a65ba
EH
695 {\
696 .driver = "virtio-scsi-pci",\
697 .property = "any_layout",\
698 .value = "off",\
699 },{\
700 .driver = "PIIX4_PM",\
701 .property = "memory-hotplug-support",\
702 .value = "off",\
703 },\
704 {\
705 .driver = "apic",\
706 .property = "version",\
707 .value = stringify(0x11),\
708 },\
709 {\
710 .driver = "nec-usb-xhci",\
711 .property = "superspeed-ports-first",\
712 .value = "off",\
713 },\
714 {\
715 .driver = "nec-usb-xhci",\
716 .property = "force-pcie-endcap",\
717 .value = "on",\
718 },\
719 {\
720 .driver = "pci-serial",\
721 .property = "prog_if",\
722 .value = stringify(0),\
723 },\
724 {\
725 .driver = "pci-serial-2x",\
726 .property = "prog_if",\
727 .value = stringify(0),\
728 },\
729 {\
730 .driver = "pci-serial-4x",\
731 .property = "prog_if",\
732 .value = stringify(0),\
733 },\
734 {\
735 .driver = "virtio-net-pci",\
736 .property = "guest_announce",\
737 .value = "off",\
738 },\
739 {\
740 .driver = "ICH9-LPC",\
741 .property = "memory-hotplug-support",\
742 .value = "off",\
743 },{\
744 .driver = "xio3130-downstream",\
745 .property = COMPAT_PROP_PCP,\
746 .value = "off",\
747 },{\
748 .driver = "ioh3420",\
749 .property = COMPAT_PROP_PCP,\
750 .value = "off",\
751 },
9df11c9f 752
5319dc7b 753#define PC_COMPAT_1_7 \
cd6c1b70 754 PC_CPU_MODEL_IDS("1.7.0") \
276a65ba
EH
755 {\
756 .driver = TYPE_USB_DEVICE,\
757 .property = "msos-desc",\
758 .value = "no",\
759 },\
760 {\
761 .driver = "PIIX4_PM",\
762 .property = "acpi-pci-hotplug-with-bridge-support",\
763 .value = "off",\
764 },\
765 {\
766 .driver = "hpet",\
767 .property = HPET_INTCAP,\
768 .value = stringify(4),\
769 },
5319dc7b 770
e9845f09 771#define PC_COMPAT_1_6 \
cd6c1b70 772 PC_CPU_MODEL_IDS("1.6.0") \
276a65ba
EH
773 {\
774 .driver = "e1000",\
775 .property = "mitigation",\
776 .value = "off",\
777 },{\
778 .driver = "qemu64-" TYPE_X86_CPU,\
779 .property = "model",\
780 .value = stringify(2),\
781 },{\
782 .driver = "qemu32-" TYPE_X86_CPU,\
783 .property = "model",\
784 .value = stringify(3),\
785 },{\
786 .driver = "i440FX-pcihost",\
787 .property = "short_root_bus",\
788 .value = stringify(1),\
789 },{\
790 .driver = "q35-pcihost",\
791 .property = "short_root_bus",\
792 .value = stringify(1),\
793 },
e9845f09 794
ffce9ebb 795#define PC_COMPAT_1_5 \
cd6c1b70 796 PC_CPU_MODEL_IDS("1.5.0") \
276a65ba
EH
797 {\
798 .driver = "Conroe-" TYPE_X86_CPU,\
799 .property = "model",\
800 .value = stringify(2),\
801 },{\
802 .driver = "Conroe-" TYPE_X86_CPU,\
803 .property = "level",\
804 .value = stringify(2),\
805 },{\
806 .driver = "Penryn-" TYPE_X86_CPU,\
807 .property = "model",\
808 .value = stringify(2),\
809 },{\
810 .driver = "Penryn-" TYPE_X86_CPU,\
811 .property = "level",\
812 .value = stringify(2),\
813 },{\
814 .driver = "Nehalem-" TYPE_X86_CPU,\
815 .property = "model",\
816 .value = stringify(2),\
817 },{\
818 .driver = "Nehalem-" TYPE_X86_CPU,\
819 .property = "level",\
820 .value = stringify(2),\
821 },{\
822 .driver = "virtio-net-pci",\
823 .property = "any_layout",\
824 .value = "off",\
825 },{\
826 .driver = TYPE_X86_CPU,\
827 .property = "pmu",\
828 .value = "on",\
829 },{\
830 .driver = "i440FX-pcihost",\
831 .property = "short_root_bus",\
832 .value = stringify(0),\
833 },{\
834 .driver = "q35-pcihost",\
835 .property = "short_root_bus",\
836 .value = stringify(0),\
837 },
ffce9ebb 838
bf3caa3d 839#define PC_COMPAT_1_4 \
cd6c1b70 840 PC_CPU_MODEL_IDS("1.4.0") \
276a65ba
EH
841 {\
842 .driver = "scsi-hd",\
843 .property = "discard_granularity",\
844 .value = stringify(0),\
845 },{\
846 .driver = "scsi-cd",\
847 .property = "discard_granularity",\
848 .value = stringify(0),\
849 },{\
850 .driver = "scsi-disk",\
851 .property = "discard_granularity",\
852 .value = stringify(0),\
853 },{\
854 .driver = "ide-hd",\
855 .property = "discard_granularity",\
856 .value = stringify(0),\
857 },{\
858 .driver = "ide-cd",\
859 .property = "discard_granularity",\
860 .value = stringify(0),\
861 },{\
862 .driver = "ide-drive",\
863 .property = "discard_granularity",\
864 .value = stringify(0),\
865 },{\
866 .driver = "virtio-blk-pci",\
867 .property = "discard_granularity",\
868 .value = stringify(0),\
869 },{\
870 .driver = "virtio-serial-pci",\
871 .property = "vectors",\
872 /* DEV_NVECTORS_UNSPECIFIED as a uint32_t string */\
873 .value = stringify(0xFFFFFFFF),\
874 },{ \
875 .driver = "virtio-net-pci", \
876 .property = "ctrl_guest_offloads", \
877 .value = "off", \
878 },{\
879 .driver = "e1000",\
880 .property = "romfile",\
881 .value = "pxe-e1000.rom",\
882 },{\
883 .driver = "ne2k_pci",\
884 .property = "romfile",\
885 .value = "pxe-ne2k_pci.rom",\
886 },{\
887 .driver = "pcnet",\
888 .property = "romfile",\
889 .value = "pxe-pcnet.rom",\
890 },{\
891 .driver = "rtl8139",\
892 .property = "romfile",\
893 .value = "pxe-rtl8139.rom",\
894 },{\
895 .driver = "virtio-net-pci",\
896 .property = "romfile",\
897 .value = "pxe-virtio.rom",\
898 },{\
899 .driver = "486-" TYPE_X86_CPU,\
900 .property = "model",\
901 .value = stringify(0),\
902 },\
903 {\
904 .driver = "n270" "-" TYPE_X86_CPU,\
905 .property = "movbe",\
906 .value = "off",\
907 },\
908 {\
909 .driver = "Westmere" "-" TYPE_X86_CPU,\
910 .property = "pclmulqdq",\
911 .value = "off",\
912 },
bf3caa3d 913
25519b06 914#define DEFINE_PC_MACHINE(suffix, namestr, initfn, optsfn) \
865906f7
EH
915 static void pc_machine_##suffix##_class_init(ObjectClass *oc, void *data) \
916 { \
917 MachineClass *mc = MACHINE_CLASS(oc); \
918 optsfn(mc); \
865906f7
EH
919 mc->init = initfn; \
920 } \
921 static const TypeInfo pc_machine_type_##suffix = { \
922 .name = namestr TYPE_MACHINE_SUFFIX, \
923 .parent = TYPE_PC_MACHINE, \
924 .class_init = pc_machine_##suffix##_class_init, \
925 }; \
61f219df
EH
926 static void pc_machine_init_##suffix(void) \
927 { \
865906f7 928 type_register(&pc_machine_type_##suffix); \
61f219df 929 } \
0e6aac87 930 type_init(pc_machine_init_##suffix)
61f219df 931
bd8107d7 932extern void igd_passthrough_isa_bridge_create(PCIBus *bus, uint16_t gpu_dev_id);
87ecb68b 933#endif