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