4 #include "qemu-common.h"
5 #include "qemu/typedefs.h"
6 #include "exec/memory.h"
8 #include "hw/isa/isa.h"
9 #include "hw/block/fdc.h"
11 #include "hw/i386/ioapic.h"
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"
21 #define HPET_INTCAP "hpet-intcap"
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
29 struct PCMachineState
{
31 MachineState parent_obj
;
34 MemoryHotplugState hotplug_memory
;
36 HotplugHandler
*acpi_dev
;
39 uint64_t max_ram_below_4g
;
42 bool enforce_aligned_dimm
;
43 ram_addr_t below_4g_mem_size
, above_4g_mem_size
;
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"
55 * @get_hotplug_handler: pointer to parent class callback @get_hotplug_handler
57 struct PCMachineClass
{
59 MachineClass parent_class
;
62 bool broken_reserved_end
;
63 HotplugHandler
*(*get_hotplug_handler
)(MachineState
*machine
,
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)
75 /* PC-style peripherals (also used by other machines). */
77 typedef struct PcPciInfo
{
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"
95 hwaddr ram_size
, ram_size_below_4g
;
96 unsigned apic_id_limit
;
97 bool apic_xrupt_override
;
102 int legacy_acpi_table_size
;
104 bool has_reserved_memory
;
110 void parallel_hds_isa_init(ISABus
*bus
, int n
);
112 bool parallel_mm_init(MemoryRegion
*address_space
,
113 hwaddr base
, int it_shift
, qemu_irq irq
,
114 CharDriverState
*chr
);
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
);
128 void kvm_ioapic_dump_state(Monitor
*mon
, const QDict
*qdict
);
129 void ioapic_dump_state(Monitor
*mon
, const QDict
*qdict
);
131 /* Global System Interrupts */
133 #define GSI_NUM_PINS IOAPIC_NUM_PINS
135 typedef struct GSIState
{
136 qemu_irq i8259_irq
[ISA_NUM_IRQS
];
137 qemu_irq ioapic_irq
[IOAPIC_NUM_PINS
];
140 void gsi_handler(void *opaque
, int n
, int level
);
143 typedef uint32_t (VMPortReadFunc
)(void *opaque
, uint32_t address
);
145 static inline void vmport_init(ISABus
*bus
)
147 isa_create_simple(bus
, "vmport");
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
);
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
,
160 void i8042_isa_mouse_fake_event(void *opaque
);
161 void i8042_setup_a20_line(ISADevice
*dev
, qemu_irq
*a20_out
);
164 extern int fd_bootchk
;
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
);
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
);
174 PcGuestInfo
*pc_guest_info_init(PCMachineState
*pcms
);
176 void pc_set_legacy_acpi_data_size(void);
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)
186 void pc_pci_as_mapping_init(Object
*owner
, MemoryRegion
*system_memory
,
187 MemoryRegion
*pci_address_space
);
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
,
203 void pc_init_ne2k_isa(ISABus
*bus
, NICInfo
*nd
);
204 void pc_cmos_init(PCMachineState
*pcms
,
205 BusState
*ide0
, BusState
*ide1
,
207 void pc_nic_init(ISABus
*isa_bus
, PCIBus
*pci_bus
);
208 void pc_pci_device_init(PCIBus
*pci_bus
);
210 typedef void (*cpu_set_smm_t
)(int smm
, void *arg
);
212 void ioapic_init_gsi(GSIState
*gsi_state
, const char *parent_name
);
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
);
225 struct PCII440FXState
;
226 typedef struct PCII440FXState PCII440FXState
;
228 #define TYPE_I440FX_PCI_HOST_BRIDGE "i440FX-pcihost"
229 #define TYPE_I440FX_PCI_DEVICE "i440FX"
231 #define TYPE_IGD_PASSTHROUGH_I440FX_PCI_DEVICE "igd-passthrough-i440FX"
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
,
239 ram_addr_t below_4g_mem_size
,
240 ram_addr_t above_4g_mem_size
,
241 MemoryRegion
*pci_memory
,
242 MemoryRegion
*ram_memory
);
244 PCIBus
*find_i440fx(void);
246 extern PCIDevice
*piix4_dev
;
247 int piix4_init(PCIBus
*bus
, ISABus
**isa_bus
, int devfn
);
250 enum vga_retrace_method
{
255 extern enum vga_retrace_method vga_retrace_method
;
257 int isa_vga_mm_init(hwaddr vram_base
,
258 hwaddr ctrl_base
, int it_shift
,
259 MemoryRegion
*address_space
);
262 static inline bool isa_ne2000_init(ISABus
*bus
, int base
, int irq
, NICInfo
*nd
)
267 qemu_check_nic_model(nd
, "ne2k_isa");
269 isadev
= isa_try_create(bus
, "ne2k_isa");
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
);
282 void pc_system_firmware_init(MemoryRegion
*rom_memory
,
286 uint16_t pvpanic_port(void);
290 #define E820_RESERVED 2
293 #define E820_UNUSABLE 5
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 *);
299 #define PC_COMPAT_2_4 \
302 .driver = "Haswell-" TYPE_X86_CPU,\
307 .driver = "Haswell-noTSX-" TYPE_X86_CPU,\
312 .driver = "Broadwell-" TYPE_X86_CPU,\
317 .driver = "Broadwell-noTSX-" TYPE_X86_CPU,\
322 .driver = "host" "-" TYPE_X86_CPU,\
323 .property = "host-cache-info",\
327 .driver = TYPE_X86_CPU,\
328 .property = "check",\
332 #define PC_COMPAT_2_3 \
336 .driver = TYPE_X86_CPU,\
340 .driver = "qemu64" "-" TYPE_X86_CPU,\
341 .property = "level",\
342 .value = stringify(4),\
344 .driver = "kvm64" "-" TYPE_X86_CPU,\
345 .property = "level",\
346 .value = stringify(5),\
348 .driver = "pentium3" "-" TYPE_X86_CPU,\
349 .property = "level",\
350 .value = stringify(2),\
352 .driver = "n270" "-" TYPE_X86_CPU,\
353 .property = "level",\
354 .value = stringify(5),\
356 .driver = "Conroe" "-" TYPE_X86_CPU,\
357 .property = "level",\
358 .value = stringify(4),\
360 .driver = "Penryn" "-" TYPE_X86_CPU,\
361 .property = "level",\
362 .value = stringify(4),\
364 .driver = "Nehalem" "-" TYPE_X86_CPU,\
365 .property = "level",\
366 .value = stringify(4),\
368 .driver = "n270" "-" TYPE_X86_CPU,\
369 .property = "xlevel",\
370 .value = stringify(0x8000000a),\
372 .driver = "Penryn" "-" TYPE_X86_CPU,\
373 .property = "xlevel",\
374 .value = stringify(0x8000000a),\
376 .driver = "Conroe" "-" TYPE_X86_CPU,\
377 .property = "xlevel",\
378 .value = stringify(0x8000000a),\
380 .driver = "Nehalem" "-" TYPE_X86_CPU,\
381 .property = "xlevel",\
382 .value = stringify(0x8000000a),\
384 .driver = "Westmere" "-" TYPE_X86_CPU,\
385 .property = "xlevel",\
386 .value = stringify(0x8000000a),\
388 .driver = "SandyBridge" "-" TYPE_X86_CPU,\
389 .property = "xlevel",\
390 .value = stringify(0x8000000a),\
392 .driver = "IvyBridge" "-" TYPE_X86_CPU,\
393 .property = "xlevel",\
394 .value = stringify(0x8000000a),\
396 .driver = "Haswell" "-" TYPE_X86_CPU,\
397 .property = "xlevel",\
398 .value = stringify(0x8000000a),\
400 .driver = "Haswell-noTSX" "-" TYPE_X86_CPU,\
401 .property = "xlevel",\
402 .value = stringify(0x8000000a),\
404 .driver = "Broadwell" "-" TYPE_X86_CPU,\
405 .property = "xlevel",\
406 .value = stringify(0x8000000a),\
408 .driver = "Broadwell-noTSX" "-" TYPE_X86_CPU,\
409 .property = "xlevel",\
410 .value = stringify(0x8000000a),\
413 #define PC_COMPAT_2_2 \
417 .driver = "kvm64" "-" TYPE_X86_CPU,\
422 .driver = "kvm32" "-" TYPE_X86_CPU,\
427 .driver = "Conroe" "-" TYPE_X86_CPU,\
432 .driver = "Penryn" "-" TYPE_X86_CPU,\
437 .driver = "Nehalem" "-" TYPE_X86_CPU,\
442 .driver = "Westmere" "-" TYPE_X86_CPU,\
447 .driver = "SandyBridge" "-" TYPE_X86_CPU,\
452 .driver = "Haswell" "-" TYPE_X86_CPU,\
457 .driver = "Broadwell" "-" TYPE_X86_CPU,\
462 .driver = "Opteron_G1" "-" TYPE_X86_CPU,\
467 .driver = "Opteron_G2" "-" TYPE_X86_CPU,\
472 .driver = "Opteron_G3" "-" TYPE_X86_CPU,\
477 .driver = "Opteron_G4" "-" TYPE_X86_CPU,\
482 .driver = "Opteron_G5" "-" TYPE_X86_CPU,\
487 .driver = "Haswell" "-" TYPE_X86_CPU,\
492 .driver = "Haswell" "-" TYPE_X86_CPU,\
493 .property = "rdrand",\
497 .driver = "Broadwell" "-" TYPE_X86_CPU,\
502 .driver = "Broadwell" "-" TYPE_X86_CPU,\
503 .property = "rdrand",\
507 #define PC_COMPAT_2_1 \
511 .driver = "coreduo" "-" TYPE_X86_CPU,\
516 .driver = "core2duo" "-" TYPE_X86_CPU,\
521 #define PC_COMPAT_2_0 \
524 .driver = "virtio-scsi-pci",\
525 .property = "any_layout",\
528 .driver = "PIIX4_PM",\
529 .property = "memory-hotplug-support",\
534 .property = "version",\
535 .value = stringify(0x11),\
538 .driver = "nec-usb-xhci",\
539 .property = "superspeed-ports-first",\
543 .driver = "nec-usb-xhci",\
544 .property = "force-pcie-endcap",\
548 .driver = "pci-serial",\
549 .property = "prog_if",\
550 .value = stringify(0),\
553 .driver = "pci-serial-2x",\
554 .property = "prog_if",\
555 .value = stringify(0),\
558 .driver = "pci-serial-4x",\
559 .property = "prog_if",\
560 .value = stringify(0),\
563 .driver = "virtio-net-pci",\
564 .property = "guest_announce",\
568 .driver = "ICH9-LPC",\
569 .property = "memory-hotplug-support",\
572 .driver = "xio3130-downstream",\
573 .property = COMPAT_PROP_PCP,\
576 .driver = "ioh3420",\
577 .property = COMPAT_PROP_PCP,\
581 #define PC_COMPAT_1_7 \
584 .driver = TYPE_USB_DEVICE,\
585 .property = "msos-desc",\
589 .driver = "PIIX4_PM",\
590 .property = "acpi-pci-hotplug-with-bridge-support",\
595 .property = HPET_INTCAP,\
596 .value = stringify(4),\
599 #define PC_COMPAT_1_6 \
603 .property = "mitigation",\
606 .driver = "qemu64-" TYPE_X86_CPU,\
607 .property = "model",\
608 .value = stringify(2),\
610 .driver = "qemu32-" TYPE_X86_CPU,\
611 .property = "model",\
612 .value = stringify(3),\
614 .driver = "i440FX-pcihost",\
615 .property = "short_root_bus",\
616 .value = stringify(1),\
618 .driver = "q35-pcihost",\
619 .property = "short_root_bus",\
620 .value = stringify(1),\
623 #define PC_COMPAT_1_5 \
626 .driver = "Conroe-" TYPE_X86_CPU,\
627 .property = "model",\
628 .value = stringify(2),\
630 .driver = "Conroe-" TYPE_X86_CPU,\
631 .property = "level",\
632 .value = stringify(2),\
634 .driver = "Penryn-" TYPE_X86_CPU,\
635 .property = "model",\
636 .value = stringify(2),\
638 .driver = "Penryn-" TYPE_X86_CPU,\
639 .property = "level",\
640 .value = stringify(2),\
642 .driver = "Nehalem-" TYPE_X86_CPU,\
643 .property = "model",\
644 .value = stringify(2),\
646 .driver = "Nehalem-" TYPE_X86_CPU,\
647 .property = "level",\
648 .value = stringify(2),\
650 .driver = "virtio-net-pci",\
651 .property = "any_layout",\
654 .driver = TYPE_X86_CPU,\
658 .driver = "i440FX-pcihost",\
659 .property = "short_root_bus",\
660 .value = stringify(0),\
662 .driver = "q35-pcihost",\
663 .property = "short_root_bus",\
664 .value = stringify(0),\
667 #define PC_COMPAT_1_4 \
670 .driver = "scsi-hd",\
671 .property = "discard_granularity",\
672 .value = stringify(0),\
674 .driver = "scsi-cd",\
675 .property = "discard_granularity",\
676 .value = stringify(0),\
678 .driver = "scsi-disk",\
679 .property = "discard_granularity",\
680 .value = stringify(0),\
683 .property = "discard_granularity",\
684 .value = stringify(0),\
687 .property = "discard_granularity",\
688 .value = stringify(0),\
690 .driver = "ide-drive",\
691 .property = "discard_granularity",\
692 .value = stringify(0),\
694 .driver = "virtio-blk-pci",\
695 .property = "discard_granularity",\
696 .value = stringify(0),\
698 .driver = "virtio-serial-pci",\
699 .property = "vectors",\
700 /* DEV_NVECTORS_UNSPECIFIED as a uint32_t string */\
701 .value = stringify(0xFFFFFFFF),\
703 .driver = "virtio-net-pci", \
704 .property = "ctrl_guest_offloads", \
708 .property = "romfile",\
709 .value = "pxe-e1000.rom",\
711 .driver = "ne2k_pci",\
712 .property = "romfile",\
713 .value = "pxe-ne2k_pci.rom",\
716 .property = "romfile",\
717 .value = "pxe-pcnet.rom",\
719 .driver = "rtl8139",\
720 .property = "romfile",\
721 .value = "pxe-rtl8139.rom",\
723 .driver = "virtio-net-pci",\
724 .property = "romfile",\
725 .value = "pxe-virtio.rom",\
727 .driver = "486-" TYPE_X86_CPU,\
728 .property = "model",\
729 .value = stringify(0),\
732 .driver = "n270" "-" TYPE_X86_CPU,\
733 .property = "movbe",\
737 .driver = "Westmere" "-" TYPE_X86_CPU,\
738 .property = "pclmulqdq",\
742 #define DEFINE_PC_MACHINE(suffix, namestr, initfn, optsfn) \
743 static void pc_machine_##suffix##_class_init(ObjectClass *oc, void *data) \
745 MachineClass *mc = MACHINE_CLASS(oc); \
747 mc->name = namestr; \
750 static const TypeInfo pc_machine_type_##suffix = { \
751 .name = namestr TYPE_MACHINE_SUFFIX, \
752 .parent = TYPE_PC_MACHINE, \
753 .class_init = pc_machine_##suffix##_class_init, \
755 static void pc_machine_init_##suffix(void) \
757 type_register(&pc_machine_type_##suffix); \
759 machine_init(pc_machine_init_##suffix)
761 #define SET_MACHINE_COMPAT(m, COMPAT) do { \
762 static GlobalProperty props[] = { \
764 { /* end of list */ } \
766 (m)->compat_props = props; \
769 extern void igd_passthrough_isa_bridge_create(PCIBus
*bus
, uint16_t gpu_dev_id
);