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