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