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