]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/i386/pc.h
vhost: set the correct queue index in case of migration with multiqueue
[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"
8170dfa0 5#include "qemu/typedefs.h"
022c62cb 6#include "exec/memory.h"
9521d42b 7#include "hw/boards.h"
0d09e41a
PB
8#include "hw/isa/isa.h"
9#include "hw/block/fdc.h"
1422e32d 10#include "net/net.h"
0d09e41a 11#include "hw/i386/ioapic.h"
376253ec 12
3459a625 13#include "qemu/range.h"
b20c9bd5
MT
14#include "qemu/bitmap.h"
15#include "sysemu/sysemu.h"
16#include "hw/pci/pci.h"
d5747cac 17#include "hw/boards.h"
68a27b20 18#include "hw/compat.h"
a7d69ff1 19#include "hw/mem/pc-dimm.h"
3459a625 20
7a10ef51
LPF
21#define HPET_INTCAP "hpet-intcap"
22
619d11e4
IM
23/**
24 * PCMachineState:
781bbd6b 25 * @acpi_dev: link to ACPI PM device that performs ACPI hotplug handling
91aa70ab
IM
26 * @enforce_aligned_dimm: check that DIMM's address/size is aligned by
27 * backend's alignment value if provided
619d11e4 28 */
d5747cac
IM
29struct PCMachineState {
30 /*< private >*/
31 MachineState parent_obj;
619d11e4
IM
32
33 /* <public> */
a7d69ff1 34 MemoryHotplugState hotplug_memory;
781bbd6b
IM
35
36 HotplugHandler *acpi_dev;
2d996150 37 ISADevice *rtc;
c87b1520
DS
38
39 uint64_t max_ram_below_4g;
d1048bef 40 OnOffAuto vmport;
355023f2 41 OnOffAuto smm;
91aa70ab 42 bool enforce_aligned_dimm;
c0aa4e1e 43 ram_addr_t below_4g_mem_size, above_4g_mem_size;
d5747cac
IM
44};
45
781bbd6b 46#define PC_MACHINE_ACPI_DEVICE_PROP "acpi-device"
bf1e8939 47#define PC_MACHINE_MEMHP_REGION_SIZE "hotplug-memory-region-size"
c87b1520 48#define PC_MACHINE_MAX_RAM_BELOW_4G "max-ram-below-4g"
9b23cfb7 49#define PC_MACHINE_VMPORT "vmport"
355023f2 50#define PC_MACHINE_SMM "smm"
91aa70ab 51#define PC_MACHINE_ENFORCE_ALIGNED_DIMM "enforce-aligned-dimm"
781bbd6b 52
95bee274
IM
53/**
54 * PCMachineClass:
55 * @get_hotplug_handler: pointer to parent class callback @get_hotplug_handler
56 */
d5747cac
IM
57struct PCMachineClass {
58 /*< private >*/
59 MachineClass parent_class;
95bee274
IM
60
61 /*< public >*/
2f8b5008 62 bool broken_reserved_end;
aa8580cd 63 bool inter_dimm_gap;
95bee274
IM
64 HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
65 DeviceState *dev);
d5747cac
IM
66};
67
d5747cac
IM
68#define TYPE_PC_MACHINE "generic-pc-machine"
69#define PC_MACHINE(obj) \
70 OBJECT_CHECK(PCMachineState, (obj), TYPE_PC_MACHINE)
71#define PC_MACHINE_GET_CLASS(obj) \
72 OBJECT_GET_CLASS(PCMachineClass, (obj), TYPE_PC_MACHINE)
73#define PC_MACHINE_CLASS(klass) \
74 OBJECT_CLASS_CHECK(PCMachineClass, (klass), TYPE_PC_MACHINE)
75
87ecb68b
PB
76/* PC-style peripherals (also used by other machines). */
77
3459a625
MT
78typedef struct PcPciInfo {
79 Range w32;
80 Range w64;
81} PcPciInfo;
82
f854ecc7
MT
83#define ACPI_PM_PROP_S3_DISABLED "disable_s3"
84#define ACPI_PM_PROP_S4_DISABLED "disable_s4"
85#define ACPI_PM_PROP_S4_VAL "s4_val"
86#define ACPI_PM_PROP_SCI_INT "sci_int"
87#define ACPI_PM_PROP_ACPI_ENABLE_CMD "acpi_enable_cmd"
88#define ACPI_PM_PROP_ACPI_DISABLE_CMD "acpi_disable_cmd"
89#define ACPI_PM_PROP_PM_IO_BASE "pm_io_base"
90#define ACPI_PM_PROP_GPE0_BLK "gpe0_blk"
91#define ACPI_PM_PROP_GPE0_BLK_LEN "gpe0_blk_len"
92055797 92#define ACPI_PM_PROP_TCO_ENABLED "enable_tco"
f854ecc7 93
3459a625 94struct PcGuestInfo {
6dd2a5c9 95 bool isapc_ram_fw;
f30ee8a9 96 hwaddr ram_size, ram_size_below_4g;
b20c9bd5
MT
97 unsigned apic_id_limit;
98 bool apic_xrupt_override;
99 uint64_t numa_nodes;
100 uint64_t *node_mem;
101 uint64_t *node_cpu;
3459a625 102 FWCfgState *fw_cfg;
07fb6176 103 int legacy_acpi_table_size;
72c194f7 104 bool has_acpi_build;
de268e13 105 bool has_reserved_memory;
384fb32e 106 bool rsdp_in_ram;
3459a625
MT
107};
108
87ecb68b 109/* parallel.c */
07dc7880
MA
110
111void parallel_hds_isa_init(ISABus *bus, int n);
defdb20e 112
63858cd9 113bool parallel_mm_init(MemoryRegion *address_space,
a8170e5e 114 hwaddr base, int it_shift, qemu_irq irq,
defdb20e 115 CharDriverState *chr);
87ecb68b
PB
116
117/* i8259.c */
118
9aa78c42 119extern DeviceState *isa_pic;
48a18b3c 120qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq);
10b61882 121qemu_irq *kvm_i8259_init(ISABus *bus);
9aa78c42
JK
122int pic_read_irq(DeviceState *d);
123int pic_get_output(DeviceState *d);
1ce6be24
MA
124void hmp_info_pic(Monitor *mon, const QDict *qdict);
125void hmp_info_irq(Monitor *mon, const QDict *qdict);
87ecb68b 126
d665d696
PB
127/* ioapic.c */
128
129void kvm_ioapic_dump_state(Monitor *mon, const QDict *qdict);
6bde8fd6 130void ioapic_dump_state(Monitor *mon, const QDict *qdict);
d665d696 131
b881fbe9 132/* Global System Interrupts */
96051119 133
b881fbe9 134#define GSI_NUM_PINS IOAPIC_NUM_PINS
845773ab 135
b881fbe9 136typedef struct GSIState {
43a0db35 137 qemu_irq i8259_irq[ISA_NUM_IRQS];
b881fbe9
JK
138 qemu_irq ioapic_irq[IOAPIC_NUM_PINS];
139} GSIState;
140
141void gsi_handler(void *opaque, int n, int level);
845773ab 142
87ecb68b 143/* vmport.c */
d67f679d
JK
144typedef uint32_t (VMPortReadFunc)(void *opaque, uint32_t address);
145
48a18b3c 146static inline void vmport_init(ISABus *bus)
6872ef61 147{
48a18b3c 148 isa_create_simple(bus, "vmport");
6872ef61 149}
d67f679d
JK
150
151void vmport_register(unsigned char command, VMPortReadFunc *func, void *opaque);
86d86414
BS
152void vmmouse_get_data(uint32_t *data);
153void vmmouse_set_data(const uint32_t *data);
87ecb68b 154
87ecb68b
PB
155/* pckbd.c */
156
157void i8042_init(qemu_irq kbd_irq, qemu_irq mouse_irq, uint32_t io_base);
158void i8042_mm_init(qemu_irq kbd_irq, qemu_irq mouse_irq,
dbff76ac 159 MemoryRegion *region, ram_addr_t size,
a8170e5e 160 hwaddr mask);
956a3e6b
BS
161void i8042_isa_mouse_fake_event(void *opaque);
162void i8042_setup_a20_line(ISADevice *dev, qemu_irq *a20_out);
87ecb68b 163
87ecb68b
PB
164/* pc.c */
165extern int fd_bootchk;
166
355023f2 167bool pc_machine_is_smm_enabled(PCMachineState *pcms);
8e78eb28 168void pc_register_ferr_irq(qemu_irq irq);
845773ab
IY
169void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
170
46232aaa 171void pc_cpus_init(const char *cpu_model);
c649983b 172void pc_hot_add_cpu(const int64_t id, Error **errp);
f7e4dd6c 173void pc_acpi_init(const char *default_dsdt);
3459a625 174
b9cfc918 175PcGuestInfo *pc_guest_info_init(PCMachineState *pcms);
3459a625 176
927766c7
MT
177void pc_set_legacy_acpi_data_size(void);
178
39848901
IM
179#define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start"
180#define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end"
181#define PCI_HOST_PROP_PCI_HOLE64_START "pci-hole64-start"
182#define PCI_HOST_PROP_PCI_HOLE64_END "pci-hole64-end"
183#define PCI_HOST_PROP_PCI_HOLE64_SIZE "pci-hole64-size"
1466cef3
MT
184#define DEFAULT_PCI_HOLE64_SIZE (~0x0ULL)
185
39848901 186
83d08f26
MT
187void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
188 MemoryRegion *pci_address_space);
39848901 189
df1f79fd 190FWCfgState *xen_load_linux(PCMachineState *pcms,
b33a5bbf 191 PcGuestInfo *guest_info);
62b160c0 192FWCfgState *pc_memory_init(PCMachineState *pcms,
9521d42b 193 MemoryRegion *system_memory,
a88b362c 194 MemoryRegion *rom_memory,
3459a625
MT
195 MemoryRegion **ram_memory,
196 PcGuestInfo *guest_info);
0b0cc076 197qemu_irq pc_allocate_cpu_irq(void);
48a18b3c
HP
198DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus);
199void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
1611977c 200 ISADevice **rtc_state,
fd53c87c 201 bool create_fdctrl,
7a10ef51
LPF
202 bool no_vmport,
203 uint32 hpet_irqs);
48a18b3c 204void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
23d30407 205void pc_cmos_init(PCMachineState *pcms,
220a8846 206 BusState *ide0, BusState *ide1,
63ffb564 207 ISADevice *s);
9011a1a7 208void pc_nic_init(ISABus *isa_bus, PCIBus *pci_bus);
845773ab 209void pc_pci_device_init(PCIBus *pci_bus);
8e78eb28 210
f885f1ea 211typedef void (*cpu_set_smm_t)(int smm, void *arg);
f885f1ea 212
a39e3564
JB
213void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name);
214
9d5e77a2 215/* acpi_piix.c */
53b67b30 216
a5c82852
AF
217I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
218 qemu_irq sci_irq, qemu_irq smi_irq,
61e66c62 219 int smm_enabled, DeviceState **piix4_pm);
87ecb68b 220void piix4_smbus_register_device(SMBusDevice *dev, uint8_t addr);
87ecb68b 221
16b29ae1
AL
222/* hpet.c */
223extern int no_hpet;
224
87ecb68b 225/* piix_pci.c */
0a3bacf3
JQ
226struct PCII440FXState;
227typedef struct PCII440FXState PCII440FXState;
228
7bb836e4
MT
229#define TYPE_I440FX_PCI_HOST_BRIDGE "i440FX-pcihost"
230#define TYPE_I440FX_PCI_DEVICE "i440FX"
231
595a4f07
TC
232#define TYPE_IGD_PASSTHROUGH_I440FX_PCI_DEVICE "igd-passthrough-i440FX"
233
7bb836e4
MT
234PCIBus *i440fx_init(const char *host_type, const char *pci_type,
235 PCII440FXState **pi440fx_state, int *piix_devfn,
60573079 236 ISABus **isa_bus, qemu_irq *pic,
aee97b84
AK
237 MemoryRegion *address_space_mem,
238 MemoryRegion *address_space_io,
ae0a5466 239 ram_addr_t ram_size,
ddaaefb4 240 ram_addr_t below_4g_mem_size,
39848901 241 ram_addr_t above_4g_mem_size,
ae0a5466
AK
242 MemoryRegion *pci_memory,
243 MemoryRegion *ram_memory);
87ecb68b 244
277e9340 245PCIBus *find_i440fx(void);
823e675a 246/* piix4.c */
b1d8e52e 247extern PCIDevice *piix4_dev;
142e9787 248int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn);
87ecb68b
PB
249
250/* vga.c */
cb5a7aa8 251enum vga_retrace_method {
252 VGA_RETRACE_DUMB,
253 VGA_RETRACE_PRECISE
254};
255
256extern enum vga_retrace_method vga_retrace_method;
87ecb68b 257
a8170e5e
AK
258int isa_vga_mm_init(hwaddr vram_base,
259 hwaddr ctrl_base, int it_shift,
be20f9e9 260 MemoryRegion *address_space);
87ecb68b 261
87ecb68b 262/* ne2000.c */
48a18b3c 263static inline bool isa_ne2000_init(ISABus *bus, int base, int irq, NICInfo *nd)
60a14ad3 264{
4a17cc4f
AF
265 DeviceState *dev;
266 ISADevice *isadev;
87ecb68b 267
60a14ad3
BS
268 qemu_check_nic_model(nd, "ne2k_isa");
269
4a17cc4f
AF
270 isadev = isa_try_create(bus, "ne2k_isa");
271 if (!isadev) {
cd1b8a8b
BS
272 return false;
273 }
4a17cc4f
AF
274 dev = DEVICE(isadev);
275 qdev_prop_set_uint32(dev, "iobase", base);
276 qdev_prop_set_uint32(dev, "irq", irq);
277 qdev_set_nic_properties(dev, nd);
278 qdev_init_nofail(dev);
cd1b8a8b 279 return true;
60a14ad3 280}
87ecb68b 281
cbc5b5f3 282/* pc_sysfw.c */
6dd2a5c9
PB
283void pc_system_firmware_init(MemoryRegion *rom_memory,
284 bool isapc_ram_fw);
cbc5b5f3 285
3ab135f3 286/* pvpanic.c */
309cd62d 287uint16_t pvpanic_port(void);
3ab135f3 288
4c5b10b7
JS
289/* e820 types */
290#define E820_RAM 1
291#define E820_RESERVED 2
292#define E820_ACPI 3
293#define E820_NVS 4
294#define E820_UNUSABLE 5
295
296int e820_add_entry(uint64_t, uint64_t, uint32_t);
7bf8ef19
GS
297int e820_get_num_entries(void);
298bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *);
4c5b10b7 299
87e896ab 300#define PC_COMPAT_2_4 \
becb6667
PB
301 HW_COMPAT_2_4 \
302 {\
303 .driver = "Haswell-" TYPE_X86_CPU,\
304 .property = "abm",\
305 .value = "off",\
306 },\
307 {\
308 .driver = "Haswell-noTSX-" TYPE_X86_CPU,\
309 .property = "abm",\
310 .value = "off",\
311 },\
312 {\
313 .driver = "Broadwell-" TYPE_X86_CPU,\
314 .property = "abm",\
315 .value = "off",\
316 },\
317 {\
318 .driver = "Broadwell-noTSX-" TYPE_X86_CPU,\
319 .property = "abm",\
320 .value = "off",\
321 },
87e896ab 322
42134ac9 323#define PC_COMPAT_2_3 \
87e896ab 324 PC_COMPAT_2_4 \
28b8e4d0
JK
325 HW_COMPAT_2_3 \
326 {\
327 .driver = TYPE_X86_CPU,\
328 .property = "arat",\
329 .value = "off",\
3046bb5d
RK
330 },{\
331 .driver = "qemu64" "-" TYPE_X86_CPU,\
332 .property = "level",\
333 .value = stringify(4),\
334 },{\
335 .driver = "kvm64" "-" TYPE_X86_CPU,\
336 .property = "level",\
337 .value = stringify(5),\
338 },{\
339 .driver = "pentium3" "-" TYPE_X86_CPU,\
340 .property = "level",\
341 .value = stringify(2),\
342 },{\
343 .driver = "n270" "-" TYPE_X86_CPU,\
344 .property = "level",\
345 .value = stringify(5),\
346 },{\
347 .driver = "Conroe" "-" TYPE_X86_CPU,\
348 .property = "level",\
349 .value = stringify(4),\
350 },{\
351 .driver = "Penryn" "-" TYPE_X86_CPU,\
352 .property = "level",\
353 .value = stringify(4),\
354 },{\
355 .driver = "Nehalem" "-" TYPE_X86_CPU,\
356 .property = "level",\
357 .value = stringify(4),\
358 },{\
359 .driver = "n270" "-" TYPE_X86_CPU,\
360 .property = "xlevel",\
361 .value = stringify(0x8000000a),\
362 },{\
363 .driver = "Penryn" "-" TYPE_X86_CPU,\
364 .property = "xlevel",\
365 .value = stringify(0x8000000a),\
366 },{\
367 .driver = "Conroe" "-" TYPE_X86_CPU,\
368 .property = "xlevel",\
369 .value = stringify(0x8000000a),\
370 },{\
371 .driver = "Nehalem" "-" TYPE_X86_CPU,\
372 .property = "xlevel",\
373 .value = stringify(0x8000000a),\
374 },{\
375 .driver = "Westmere" "-" TYPE_X86_CPU,\
376 .property = "xlevel",\
377 .value = stringify(0x8000000a),\
378 },{\
379 .driver = "SandyBridge" "-" TYPE_X86_CPU,\
380 .property = "xlevel",\
381 .value = stringify(0x8000000a),\
27751aab
RK
382 },{\
383 .driver = "IvyBridge" "-" TYPE_X86_CPU,\
384 .property = "xlevel",\
385 .value = stringify(0x8000000a),\
3046bb5d
RK
386 },{\
387 .driver = "Haswell" "-" TYPE_X86_CPU,\
388 .property = "xlevel",\
389 .value = stringify(0x8000000a),\
390 },{\
391 .driver = "Haswell-noTSX" "-" TYPE_X86_CPU,\
392 .property = "xlevel",\
393 .value = stringify(0x8000000a),\
394 },{\
395 .driver = "Broadwell" "-" TYPE_X86_CPU,\
396 .property = "xlevel",\
397 .value = stringify(0x8000000a),\
398 },{\
399 .driver = "Broadwell-noTSX" "-" TYPE_X86_CPU,\
400 .property = "xlevel",\
401 .value = stringify(0x8000000a),\
28b8e4d0 402 },
42134ac9
EH
403
404#define PC_COMPAT_2_2 \
405 PC_COMPAT_2_3 \
27add381
EH
406 HW_COMPAT_2_2 \
407 {\
408 .driver = "kvm64" "-" TYPE_X86_CPU,\
409 .property = "vme",\
410 .value = "off",\
411 },\
412 {\
413 .driver = "kvm32" "-" TYPE_X86_CPU,\
414 .property = "vme",\
415 .value = "off",\
416 },\
417 {\
418 .driver = "Conroe" "-" TYPE_X86_CPU,\
419 .property = "vme",\
420 .value = "off",\
421 },\
422 {\
423 .driver = "Penryn" "-" TYPE_X86_CPU,\
424 .property = "vme",\
425 .value = "off",\
426 },\
427 {\
428 .driver = "Nehalem" "-" TYPE_X86_CPU,\
429 .property = "vme",\
430 .value = "off",\
431 },\
432 {\
433 .driver = "Westmere" "-" TYPE_X86_CPU,\
434 .property = "vme",\
435 .value = "off",\
436 },\
437 {\
438 .driver = "SandyBridge" "-" TYPE_X86_CPU,\
439 .property = "vme",\
440 .value = "off",\
441 },\
442 {\
443 .driver = "Haswell" "-" TYPE_X86_CPU,\
444 .property = "vme",\
445 .value = "off",\
446 },\
447 {\
448 .driver = "Broadwell" "-" TYPE_X86_CPU,\
449 .property = "vme",\
450 .value = "off",\
451 },\
452 {\
453 .driver = "Opteron_G1" "-" TYPE_X86_CPU,\
454 .property = "vme",\
455 .value = "off",\
456 },\
457 {\
458 .driver = "Opteron_G2" "-" TYPE_X86_CPU,\
459 .property = "vme",\
460 .value = "off",\
461 },\
462 {\
463 .driver = "Opteron_G3" "-" TYPE_X86_CPU,\
464 .property = "vme",\
465 .value = "off",\
466 },\
467 {\
468 .driver = "Opteron_G4" "-" TYPE_X86_CPU,\
469 .property = "vme",\
470 .value = "off",\
471 },\
472 {\
473 .driver = "Opteron_G5" "-" TYPE_X86_CPU,\
474 .property = "vme",\
475 .value = "off",\
476 },\
477 {\
478 .driver = "Haswell" "-" TYPE_X86_CPU,\
479 .property = "f16c",\
480 .value = "off",\
481 },\
482 {\
483 .driver = "Haswell" "-" TYPE_X86_CPU,\
484 .property = "rdrand",\
485 .value = "off",\
486 },\
487 {\
488 .driver = "Broadwell" "-" TYPE_X86_CPU,\
489 .property = "f16c",\
490 .value = "off",\
491 },\
492 {\
493 .driver = "Broadwell" "-" TYPE_X86_CPU,\
494 .property = "rdrand",\
495 .value = "off",\
496 },
42134ac9
EH
497
498#define PC_COMPAT_2_1 \
499 PC_COMPAT_2_2 \
27add381
EH
500 HW_COMPAT_2_1 \
501 {\
502 .driver = "coreduo" "-" TYPE_X86_CPU,\
503 .property = "vmx",\
504 .value = "on",\
505 },\
506 {\
507 .driver = "core2duo" "-" TYPE_X86_CPU,\
508 .property = "vmx",\
509 .value = "on",\
510 },
42134ac9 511
9df11c9f 512#define PC_COMPAT_2_0 \
42134ac9 513 PC_COMPAT_2_1 \
9df11c9f 514 {\
3eff1f46
PB
515 .driver = "virtio-scsi-pci",\
516 .property = "any_layout",\
517 .value = "off",\
518 },{\
34774320
IM
519 .driver = "PIIX4_PM",\
520 .property = "memory-hotplug-support",\
521 .value = "off",\
522 },\
9df11c9f 523 {\
aa93200b
GS
524 .driver = "apic",\
525 .property = "version",\
526 .value = stringify(0x11),\
34774320
IM
527 },\
528 {\
7bafd888
GH
529 .driver = "nec-usb-xhci",\
530 .property = "superspeed-ports-first",\
531 .value = "off",\
13cc2c3e 532 },\
e6043e92
DDAG
533 {\
534 .driver = "nec-usb-xhci",\
535 .property = "force-pcie-endcap",\
536 .value = "on",\
537 },\
13cc2c3e
BZ
538 {\
539 .driver = "pci-serial",\
540 .property = "prog_if",\
541 .value = stringify(0),\
542 },\
543 {\
544 .driver = "pci-serial-2x",\
fa118d1f 545 .property = "prog_if",\
13cc2c3e
BZ
546 .value = stringify(0),\
547 },\
548 {\
549 .driver = "pci-serial-4x",\
550 .property = "prog_if",\
551 .value = stringify(0),\
f57fcf70
JW
552 },\
553 {\
554 .driver = "virtio-net-pci",\
555 .property = "guest_announce",\
556 .value = "off",\
b8f5cfd6
EH
557 },\
558 {\
559 .driver = "ICH9-LPC",\
560 .property = "memory-hotplug-support",\
561 .value = "off",\
562 },{\
563 .driver = "xio3130-downstream",\
564 .property = COMPAT_PROP_PCP,\
565 .value = "off",\
566 },{\
567 .driver = "ioh3420",\
568 .property = COMPAT_PROP_PCP,\
569 .value = "off",\
a7cde24d 570 },
9df11c9f 571
5319dc7b 572#define PC_COMPAT_1_7 \
a7cde24d 573 PC_COMPAT_2_0 \
5319dc7b
GH
574 {\
575 .driver = TYPE_USB_DEVICE,\
576 .property = "msos-desc",\
577 .value = "no",\
9e047b98
MT
578 },\
579 {\
580 .driver = "PIIX4_PM",\
581 .property = "acpi-pci-hotplug-with-bridge-support",\
582 .value = "off",\
b8f5cfd6
EH
583 },\
584 {\
585 .driver = "hpet",\
586 .property = HPET_INTCAP,\
587 .value = stringify(4),\
a7cde24d 588 },
5319dc7b 589
e9845f09 590#define PC_COMPAT_1_6 \
a7cde24d 591 PC_COMPAT_1_7 \
e9845f09
VM
592 {\
593 .driver = "e1000",\
594 .property = "mitigation",\
595 .value = "off",\
f8e6a11a
EH
596 },{\
597 .driver = "qemu64-" TYPE_X86_CPU,\
598 .property = "model",\
599 .value = stringify(2),\
600 },{\
601 .driver = "qemu32-" TYPE_X86_CPU,\
602 .property = "model",\
603 .value = stringify(3),\
04c7d8b8
CR
604 },{\
605 .driver = "i440FX-pcihost",\
606 .property = "short_root_bus",\
607 .value = stringify(1),\
608 },{\
609 .driver = "q35-pcihost",\
610 .property = "short_root_bus",\
611 .value = stringify(1),\
a7cde24d 612 },
e9845f09 613
ffce9ebb 614#define PC_COMPAT_1_5 \
a7cde24d 615 PC_COMPAT_1_6 \
ffce9ebb
EH
616 {\
617 .driver = "Conroe-" TYPE_X86_CPU,\
618 .property = "model",\
619 .value = stringify(2),\
6b11322e
EH
620 },{\
621 .driver = "Conroe-" TYPE_X86_CPU,\
622 .property = "level",\
623 .value = stringify(2),\
ffce9ebb
EH
624 },{\
625 .driver = "Penryn-" TYPE_X86_CPU,\
626 .property = "model",\
627 .value = stringify(2),\
6b11322e
EH
628 },{\
629 .driver = "Penryn-" TYPE_X86_CPU,\
630 .property = "level",\
631 .value = stringify(2),\
ffce9ebb
EH
632 },{\
633 .driver = "Nehalem-" TYPE_X86_CPU,\
634 .property = "model",\
635 .value = stringify(2),\
6b11322e
EH
636 },{\
637 .driver = "Nehalem-" TYPE_X86_CPU,\
638 .property = "level",\
639 .value = stringify(2),\
488f069b
MT
640 },{\
641 .driver = "virtio-net-pci",\
642 .property = "any_layout",\
643 .value = "off",\
9337e3b6
EH
644 },{\
645 .driver = TYPE_X86_CPU,\
646 .property = "pmu",\
647 .value = "on",\
04c7d8b8
CR
648 },{\
649 .driver = "i440FX-pcihost",\
650 .property = "short_root_bus",\
651 .value = stringify(0),\
652 },{\
653 .driver = "q35-pcihost",\
654 .property = "short_root_bus",\
655 .value = stringify(0),\
a7cde24d 656 },
ffce9ebb 657
bf3caa3d 658#define PC_COMPAT_1_4 \
a7cde24d 659 PC_COMPAT_1_5 \
bf3caa3d
PB
660 {\
661 .driver = "scsi-hd",\
662 .property = "discard_granularity",\
663 .value = stringify(0),\
4974920a 664 },{\
bf3caa3d
PB
665 .driver = "scsi-cd",\
666 .property = "discard_granularity",\
667 .value = stringify(0),\
4974920a 668 },{\
bf3caa3d
PB
669 .driver = "scsi-disk",\
670 .property = "discard_granularity",\
671 .value = stringify(0),\
4974920a 672 },{\
bf3caa3d
PB
673 .driver = "ide-hd",\
674 .property = "discard_granularity",\
675 .value = stringify(0),\
4974920a 676 },{\
bf3caa3d
PB
677 .driver = "ide-cd",\
678 .property = "discard_granularity",\
679 .value = stringify(0),\
4974920a 680 },{\
bf3caa3d
PB
681 .driver = "ide-drive",\
682 .property = "discard_granularity",\
683 .value = stringify(0),\
c45e5b5b 684 },{\
bf3caa3d
PB
685 .driver = "virtio-blk-pci",\
686 .property = "discard_granularity",\
687 .value = stringify(0),\
4974920a 688 },{\
554f1997
GH
689 .driver = "virtio-serial-pci",\
690 .property = "vectors",\
691 /* DEV_NVECTORS_UNSPECIFIED as a uint32_t string */\
692 .value = stringify(0xFFFFFFFF),\
644c9858
DF
693 },{ \
694 .driver = "virtio-net-pci", \
695 .property = "ctrl_guest_offloads", \
696 .value = "off", \
c45e5b5b
GH
697 },{\
698 .driver = "e1000",\
699 .property = "romfile",\
700 .value = "pxe-e1000.rom",\
701 },{\
702 .driver = "ne2k_pci",\
703 .property = "romfile",\
704 .value = "pxe-ne2k_pci.rom",\
705 },{\
706 .driver = "pcnet",\
707 .property = "romfile",\
708 .value = "pxe-pcnet.rom",\
709 },{\
710 .driver = "rtl8139",\
711 .property = "romfile",\
712 .value = "pxe-rtl8139.rom",\
713 },{\
714 .driver = "virtio-net-pci",\
715 .property = "romfile",\
716 .value = "pxe-virtio.rom",\
b2a856d9
AF
717 },{\
718 .driver = "486-" TYPE_X86_CPU,\
719 .property = "model",\
720 .value = stringify(0),\
27add381
EH
721 },\
722 {\
723 .driver = "n270" "-" TYPE_X86_CPU,\
724 .property = "movbe",\
725 .value = "off",\
726 },\
727 {\
728 .driver = "Westmere" "-" TYPE_X86_CPU,\
729 .property = "pclmulqdq",\
730 .value = "off",\
a7cde24d 731 },
bf3caa3d 732
25519b06 733#define DEFINE_PC_MACHINE(suffix, namestr, initfn, optsfn) \
865906f7
EH
734 static void pc_machine_##suffix##_class_init(ObjectClass *oc, void *data) \
735 { \
736 MachineClass *mc = MACHINE_CLASS(oc); \
737 optsfn(mc); \
738 mc->name = namestr; \
739 mc->init = initfn; \
740 } \
741 static const TypeInfo pc_machine_type_##suffix = { \
742 .name = namestr TYPE_MACHINE_SUFFIX, \
743 .parent = TYPE_PC_MACHINE, \
744 .class_init = pc_machine_##suffix##_class_init, \
745 }; \
61f219df
EH
746 static void pc_machine_init_##suffix(void) \
747 { \
865906f7 748 type_register(&pc_machine_type_##suffix); \
61f219df
EH
749 } \
750 machine_init(pc_machine_init_##suffix)
751
25519b06
EH
752#define SET_MACHINE_COMPAT(m, COMPAT) do { \
753 static GlobalProperty props[] = { \
754 COMPAT \
755 { /* end of list */ } \
756 }; \
757 (m)->compat_props = props; \
758} while (0)
759
bd8107d7 760extern void igd_passthrough_isa_bridge_create(PCIBus *bus, uint16_t gpu_dev_id);
87ecb68b 761#endif