1 #ifndef HW_PC_H 2 #define HW_PC_H 3 4 #include "qemu/notify.h" 5 #include "qapi/qapi-types-common.h" 6 #include "hw/boards.h" 7 #include "hw/block/fdc.h" 8 #include "hw/block/flash.h" 9 #include "hw/i386/x86.h" 10 11 #include "hw/acpi/acpi_dev_interface.h" 12 #include "hw/hotplug.h" 13 #include "qom/object.h" 14 15 #define HPET_INTCAP "hpet-intcap" 16 17 /** 18 * PCMachineState: 19 * @acpi_dev: link to ACPI PM device that performs ACPI hotplug handling 20 * @boot_cpus: number of present VCPUs 21 * @smp_dies: number of dies per one package 22 */ 23 typedef struct PCMachineState { 24 /*< private >*/ 25 X86MachineState parent_obj; 26 27 /* <public> */ 28 29 /* State for other subsystems/APIs: */ 30 Notifier machine_done; 31 32 /* Pointers to devices and objects: */ 33 PCIBus *bus; 34 I2CBus *smbus; 35 PFlashCFI01 *flash[2]; 36 ISADevice *pcspk; 37 38 /* Configuration options: */ 39 uint64_t max_ram_below_4g; 40 OnOffAuto vmport; 41 42 bool acpi_build_enabled; 43 bool smbus_enabled; 44 bool sata_enabled; 45 bool pit_enabled; 46 bool hpet_enabled; 47 uint64_t max_fw_size; 48 char *oem_id; 49 char *oem_table_id; 50 51 /* NUMA information: */ 52 uint64_t numa_nodes; 53 uint64_t *node_mem; 54 55 /* ACPI Memory hotplug IO base address */ 56 hwaddr memhp_io_base; 57 } PCMachineState; 58 59 #define PC_MACHINE_ACPI_DEVICE_PROP "acpi-device" 60 #define PC_MACHINE_MAX_RAM_BELOW_4G "max-ram-below-4g" 61 #define PC_MACHINE_DEVMEM_REGION_SIZE "device-memory-region-size" 62 #define PC_MACHINE_VMPORT "vmport" 63 #define PC_MACHINE_SMBUS "smbus" 64 #define PC_MACHINE_SATA "sata" 65 #define PC_MACHINE_PIT "pit" 66 #define PC_MACHINE_MAX_FW_SIZE "max-fw-size" 67 #define PC_MACHINE_OEM_ID "oem-id" 68 #define PC_MACHINE_OEM_TABLE_ID "oem-table-id" 69 /** 70 * PCMachineClass: 71 * 72 * Compat fields: 73 * 74 * @enforce_aligned_dimm: check that DIMM's address/size is aligned by 75 * backend's alignment value if provided 76 * @acpi_data_size: Size of the chunk of memory at the top of RAM 77 * for the BIOS ACPI tables and other BIOS 78 * datastructures. 79 * @gigabyte_align: Make sure that guest addresses aligned at 80 * 1Gbyte boundaries get mapped to host 81 * addresses aligned at 1Gbyte boundaries. This 82 * way we can use 1GByte pages in the host. 83 * 84 */ 85 struct PCMachineClass { 86 /*< private >*/ 87 X86MachineClass parent_class; 88 89 /*< public >*/ 90 91 /* Device configuration: */ 92 bool pci_enabled; 93 bool kvmclock_enabled; 94 const char *default_nic_model; 95 96 /* Compat options: */ 97 98 /* Default CPU model version. See x86_cpu_set_default_version(). */ 99 int default_cpu_version; 100 101 /* ACPI compat: */ 102 bool has_acpi_build; 103 bool rsdp_in_ram; 104 int legacy_acpi_table_size; 105 unsigned acpi_data_size; 106 bool do_not_add_smb_acpi; 107 108 /* SMBIOS compat: */ 109 bool smbios_defaults; 110 bool smbios_legacy_mode; 111 bool smbios_uuid_encoded; 112 113 /* RAM / address space compat: */ 114 bool gigabyte_align; 115 bool has_reserved_memory; 116 bool enforce_aligned_dimm; 117 bool broken_reserved_end; 118 119 /* generate legacy CPU hotplug AML */ 120 bool legacy_cpu_hotplug; 121 122 /* use DMA capable linuxboot option rom */ 123 bool linuxboot_dma_enabled; 124 125 /* use PVH to load kernels that support this feature */ 126 bool pvh_enabled; 127 128 /* create kvmclock device even when KVM PV features are not exposed */ 129 bool kvmclock_create_always; 130 }; 131 132 #define TYPE_PC_MACHINE "generic-pc-machine" 133 OBJECT_DECLARE_TYPE(PCMachineState, PCMachineClass, PC_MACHINE) 134 135 /* ioapic.c */ 136 137 GSIState *pc_gsi_create(qemu_irq **irqs, bool pci_enabled); 138 139 /* pc.c */ 140 extern int fd_bootchk; 141 142 void pc_acpi_smi_interrupt(void *opaque, int irq, int level); 143 144 void pc_smp_parse(MachineState *ms, QemuOpts *opts); 145 146 void pc_guest_info_init(PCMachineState *pcms); 147 148 #define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start" 149 #define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end" 150 #define PCI_HOST_PROP_PCI_HOLE64_START "pci-hole64-start" 151 #define PCI_HOST_PROP_PCI_HOLE64_END "pci-hole64-end" 152 #define PCI_HOST_PROP_PCI_HOLE64_SIZE "pci-hole64-size" 153 #define PCI_HOST_BELOW_4G_MEM_SIZE "below-4g-mem-size" 154 #define PCI_HOST_ABOVE_4G_MEM_SIZE "above-4g-mem-size" 155 156 157 void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory, 158 MemoryRegion *pci_address_space); 159 160 void xen_load_linux(PCMachineState *pcms); 161 void pc_memory_init(PCMachineState *pcms, 162 MemoryRegion *system_memory, 163 MemoryRegion *rom_memory, 164 MemoryRegion **ram_memory); 165 uint64_t pc_pci_hole64_start(void); 166 DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus); 167 void pc_basic_device_init(struct PCMachineState *pcms, 168 ISABus *isa_bus, qemu_irq *gsi, 169 ISADevice **rtc_state, 170 bool create_fdctrl, 171 uint32_t hpet_irqs); 172 void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd); 173 void pc_cmos_init(PCMachineState *pcms, 174 BusState *ide0, BusState *ide1, 175 ISADevice *s); 176 void pc_nic_init(PCMachineClass *pcmc, ISABus *isa_bus, PCIBus *pci_bus); 177 void pc_pci_device_init(PCIBus *pci_bus); 178 179 typedef void (*cpu_set_smm_t)(int smm, void *arg); 180 181 void pc_i8259_create(ISABus *isa_bus, qemu_irq *i8259_irqs); 182 183 ISADevice *pc_find_fdc0(void); 184 185 /* port92.c */ 186 #define PORT92_A20_LINE "a20" 187 188 #define TYPE_PORT92 "port92" 189 190 /* pc_sysfw.c */ 191 void pc_system_flash_create(PCMachineState *pcms); 192 void pc_system_flash_cleanup_unused(PCMachineState *pcms); 193 void pc_system_firmware_init(PCMachineState *pcms, MemoryRegion *rom_memory); 194 195 /* acpi-build.c */ 196 void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid, 197 const CPUArchIdList *apic_ids, GArray *entry); 198 199 extern GlobalProperty pc_compat_5_2[]; 200 extern const size_t pc_compat_5_2_len; 201 202 extern GlobalProperty pc_compat_5_1[]; 203 extern const size_t pc_compat_5_1_len; 204 205 extern GlobalProperty pc_compat_5_0[]; 206 extern const size_t pc_compat_5_0_len; 207 208 extern GlobalProperty pc_compat_4_2[]; 209 extern const size_t pc_compat_4_2_len; 210 211 extern GlobalProperty pc_compat_4_1[]; 212 extern const size_t pc_compat_4_1_len; 213 214 extern GlobalProperty pc_compat_4_0[]; 215 extern const size_t pc_compat_4_0_len; 216 217 extern GlobalProperty pc_compat_3_1[]; 218 extern const size_t pc_compat_3_1_len; 219 220 extern GlobalProperty pc_compat_3_0[]; 221 extern const size_t pc_compat_3_0_len; 222 223 extern GlobalProperty pc_compat_2_12[]; 224 extern const size_t pc_compat_2_12_len; 225 226 extern GlobalProperty pc_compat_2_11[]; 227 extern const size_t pc_compat_2_11_len; 228 229 extern GlobalProperty pc_compat_2_10[]; 230 extern const size_t pc_compat_2_10_len; 231 232 extern GlobalProperty pc_compat_2_9[]; 233 extern const size_t pc_compat_2_9_len; 234 235 extern GlobalProperty pc_compat_2_8[]; 236 extern const size_t pc_compat_2_8_len; 237 238 extern GlobalProperty pc_compat_2_7[]; 239 extern const size_t pc_compat_2_7_len; 240 241 extern GlobalProperty pc_compat_2_6[]; 242 extern const size_t pc_compat_2_6_len; 243 244 extern GlobalProperty pc_compat_2_5[]; 245 extern const size_t pc_compat_2_5_len; 246 247 extern GlobalProperty pc_compat_2_4[]; 248 extern const size_t pc_compat_2_4_len; 249 250 extern GlobalProperty pc_compat_2_3[]; 251 extern const size_t pc_compat_2_3_len; 252 253 extern GlobalProperty pc_compat_2_2[]; 254 extern const size_t pc_compat_2_2_len; 255 256 extern GlobalProperty pc_compat_2_1[]; 257 extern const size_t pc_compat_2_1_len; 258 259 extern GlobalProperty pc_compat_2_0[]; 260 extern const size_t pc_compat_2_0_len; 261 262 extern GlobalProperty pc_compat_1_7[]; 263 extern const size_t pc_compat_1_7_len; 264 265 extern GlobalProperty pc_compat_1_6[]; 266 extern const size_t pc_compat_1_6_len; 267 268 extern GlobalProperty pc_compat_1_5[]; 269 extern const size_t pc_compat_1_5_len; 270 271 extern GlobalProperty pc_compat_1_4[]; 272 extern const size_t pc_compat_1_4_len; 273 274 /* Helper for setting model-id for CPU models that changed model-id 275 * depending on QEMU versions up to QEMU 2.4. 276 */ 277 #define PC_CPU_MODEL_IDS(v) \ 278 { "qemu32-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\ 279 { "qemu64-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\ 280 { "athlon-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, }, 281 282 #define DEFINE_PC_MACHINE(suffix, namestr, initfn, optsfn) \ 283 static void pc_machine_##suffix##_class_init(ObjectClass *oc, void *data) \ 284 { \ 285 MachineClass *mc = MACHINE_CLASS(oc); \ 286 optsfn(mc); \ 287 mc->init = initfn; \ 288 } \ 289 static const TypeInfo pc_machine_type_##suffix = { \ 290 .name = namestr TYPE_MACHINE_SUFFIX, \ 291 .parent = TYPE_PC_MACHINE, \ 292 .class_init = pc_machine_##suffix##_class_init, \ 293 }; \ 294 static void pc_machine_init_##suffix(void) \ 295 { \ 296 type_register(&pc_machine_type_##suffix); \ 297 } \ 298 type_init(pc_machine_init_##suffix) 299 300 extern void igd_passthrough_isa_bridge_create(PCIBus *bus, uint16_t gpu_dev_id); 301 #endif 302