1 /* 2 * QEMU PC System Emulator 3 * 4 * Copyright (c) 2003-2004 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights 9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 * copies of the Software, and to permit persons to whom the Software is 11 * furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 * THE SOFTWARE. 23 */ 24 25 #include "qemu/osdep.h" 26 #include "qemu/units.h" 27 #include "hw/hw.h" 28 #include "hw/i386/pc.h" 29 #include "hw/char/serial.h" 30 #include "hw/char/parallel.h" 31 #include "hw/i386/apic.h" 32 #include "hw/i386/topology.h" 33 #include "sysemu/cpus.h" 34 #include "hw/block/fdc.h" 35 #include "hw/ide.h" 36 #include "hw/pci/pci.h" 37 #include "hw/pci/pci_bus.h" 38 #include "hw/nvram/fw_cfg.h" 39 #include "hw/timer/hpet.h" 40 #include "hw/firmware/smbios.h" 41 #include "hw/loader.h" 42 #include "elf.h" 43 #include "multiboot.h" 44 #include "hw/timer/mc146818rtc.h" 45 #include "hw/dma/i8257.h" 46 #include "hw/timer/i8254.h" 47 #include "hw/input/i8042.h" 48 #include "hw/audio/pcspk.h" 49 #include "hw/pci/msi.h" 50 #include "hw/sysbus.h" 51 #include "sysemu/sysemu.h" 52 #include "sysemu/numa.h" 53 #include "sysemu/kvm.h" 54 #include "sysemu/qtest.h" 55 #include "kvm_i386.h" 56 #include "hw/xen/xen.h" 57 #include "hw/xen/start_info.h" 58 #include "ui/qemu-spice.h" 59 #include "exec/memory.h" 60 #include "exec/address-spaces.h" 61 #include "sysemu/arch_init.h" 62 #include "qemu/bitmap.h" 63 #include "qemu/config-file.h" 64 #include "qemu/error-report.h" 65 #include "qemu/option.h" 66 #include "hw/acpi/acpi.h" 67 #include "hw/acpi/cpu_hotplug.h" 68 #include "hw/boards.h" 69 #include "acpi-build.h" 70 #include "hw/mem/pc-dimm.h" 71 #include "qapi/error.h" 72 #include "qapi/qapi-visit-common.h" 73 #include "qapi/visitor.h" 74 #include "qom/cpu.h" 75 #include "hw/nmi.h" 76 #include "hw/usb.h" 77 #include "hw/i386/intel_iommu.h" 78 #include "hw/net/ne2000-isa.h" 79 80 /* debug PC/ISA interrupts */ 81 //#define DEBUG_IRQ 82 83 #ifdef DEBUG_IRQ 84 #define DPRINTF(fmt, ...) \ 85 do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0) 86 #else 87 #define DPRINTF(fmt, ...) 88 #endif 89 90 #define FW_CFG_ACPI_TABLES (FW_CFG_ARCH_LOCAL + 0) 91 #define FW_CFG_SMBIOS_ENTRIES (FW_CFG_ARCH_LOCAL + 1) 92 #define FW_CFG_IRQ0_OVERRIDE (FW_CFG_ARCH_LOCAL + 2) 93 #define FW_CFG_E820_TABLE (FW_CFG_ARCH_LOCAL + 3) 94 #define FW_CFG_HPET (FW_CFG_ARCH_LOCAL + 4) 95 96 #define E820_NR_ENTRIES 16 97 98 struct e820_entry { 99 uint64_t address; 100 uint64_t length; 101 uint32_t type; 102 } QEMU_PACKED __attribute((__aligned__(4))); 103 104 struct e820_table { 105 uint32_t count; 106 struct e820_entry entry[E820_NR_ENTRIES]; 107 } QEMU_PACKED __attribute((__aligned__(4))); 108 109 static struct e820_table e820_reserve; 110 static struct e820_entry *e820_table; 111 static unsigned e820_entries; 112 struct hpet_fw_config hpet_cfg = {.count = UINT8_MAX}; 113 114 /* Physical Address of PVH entry point read from kernel ELF NOTE */ 115 static size_t pvh_start_addr; 116 117 GlobalProperty pc_compat_3_1[] = { 118 { "intel-iommu", "dma-drain", "off" }, 119 { "Opteron_G3" "-" TYPE_X86_CPU, "rdtscp", "off" }, 120 { "Opteron_G4" "-" TYPE_X86_CPU, "rdtscp", "off" }, 121 { "Opteron_G4" "-" TYPE_X86_CPU, "npt", "off" }, 122 { "Opteron_G4" "-" TYPE_X86_CPU, "nrip-save", "off" }, 123 { "Opteron_G5" "-" TYPE_X86_CPU, "rdtscp", "off" }, 124 { "Opteron_G5" "-" TYPE_X86_CPU, "npt", "off" }, 125 { "Opteron_G5" "-" TYPE_X86_CPU, "nrip-save", "off" }, 126 { "EPYC" "-" TYPE_X86_CPU, "npt", "off" }, 127 { "EPYC" "-" TYPE_X86_CPU, "nrip-save", "off" }, 128 { "EPYC-IBPB" "-" TYPE_X86_CPU, "npt", "off" }, 129 { "EPYC-IBPB" "-" TYPE_X86_CPU, "nrip-save", "off" }, 130 { "Skylake-Client" "-" TYPE_X86_CPU, "mpx", "on" }, 131 { "Skylake-Client-IBRS" "-" TYPE_X86_CPU, "mpx", "on" }, 132 { "Skylake-Server" "-" TYPE_X86_CPU, "mpx", "on" }, 133 { "Skylake-Server-IBRS" "-" TYPE_X86_CPU, "mpx", "on" }, 134 { "Cascadelake-Server" "-" TYPE_X86_CPU, "mpx", "on" }, 135 { "Icelake-Client" "-" TYPE_X86_CPU, "mpx", "on" }, 136 { "Icelake-Server" "-" TYPE_X86_CPU, "mpx", "on" }, 137 { "Cascadelake-Server" "-" TYPE_X86_CPU, "stepping", "5" }, 138 }; 139 const size_t pc_compat_3_1_len = G_N_ELEMENTS(pc_compat_3_1); 140 141 GlobalProperty pc_compat_3_0[] = { 142 { TYPE_X86_CPU, "x-hv-synic-kvm-only", "on" }, 143 { "Skylake-Server" "-" TYPE_X86_CPU, "pku", "off" }, 144 { "Skylake-Server-IBRS" "-" TYPE_X86_CPU, "pku", "off" }, 145 }; 146 const size_t pc_compat_3_0_len = G_N_ELEMENTS(pc_compat_3_0); 147 148 GlobalProperty pc_compat_2_12[] = { 149 { TYPE_X86_CPU, "legacy-cache", "on" }, 150 { TYPE_X86_CPU, "topoext", "off" }, 151 { "EPYC-" TYPE_X86_CPU, "xlevel", "0x8000000a" }, 152 { "EPYC-IBPB-" TYPE_X86_CPU, "xlevel", "0x8000000a" }, 153 }; 154 const size_t pc_compat_2_12_len = G_N_ELEMENTS(pc_compat_2_12); 155 156 GlobalProperty pc_compat_2_11[] = { 157 { TYPE_X86_CPU, "x-migrate-smi-count", "off" }, 158 { "Skylake-Server" "-" TYPE_X86_CPU, "clflushopt", "off" }, 159 }; 160 const size_t pc_compat_2_11_len = G_N_ELEMENTS(pc_compat_2_11); 161 162 GlobalProperty pc_compat_2_10[] = { 163 { TYPE_X86_CPU, "x-hv-max-vps", "0x40" }, 164 { "i440FX-pcihost", "x-pci-hole64-fix", "off" }, 165 { "q35-pcihost", "x-pci-hole64-fix", "off" }, 166 }; 167 const size_t pc_compat_2_10_len = G_N_ELEMENTS(pc_compat_2_10); 168 169 GlobalProperty pc_compat_2_9[] = { 170 { "mch", "extended-tseg-mbytes", "0" }, 171 }; 172 const size_t pc_compat_2_9_len = G_N_ELEMENTS(pc_compat_2_9); 173 174 GlobalProperty pc_compat_2_8[] = { 175 { TYPE_X86_CPU, "tcg-cpuid", "off" }, 176 { "kvmclock", "x-mach-use-reliable-get-clock", "off" }, 177 { "ICH9-LPC", "x-smi-broadcast", "off" }, 178 { TYPE_X86_CPU, "vmware-cpuid-freq", "off" }, 179 { "Haswell-" TYPE_X86_CPU, "stepping", "1" }, 180 }; 181 const size_t pc_compat_2_8_len = G_N_ELEMENTS(pc_compat_2_8); 182 183 GlobalProperty pc_compat_2_7[] = { 184 { TYPE_X86_CPU, "l3-cache", "off" }, 185 { TYPE_X86_CPU, "full-cpuid-auto-level", "off" }, 186 { "Opteron_G3" "-" TYPE_X86_CPU, "family", "15" }, 187 { "Opteron_G3" "-" TYPE_X86_CPU, "model", "6" }, 188 { "Opteron_G3" "-" TYPE_X86_CPU, "stepping", "1" }, 189 { "isa-pcspk", "migrate", "off" }, 190 }; 191 const size_t pc_compat_2_7_len = G_N_ELEMENTS(pc_compat_2_7); 192 193 GlobalProperty pc_compat_2_6[] = { 194 { TYPE_X86_CPU, "cpuid-0xb", "off" }, 195 { "vmxnet3", "romfile", "" }, 196 { TYPE_X86_CPU, "fill-mtrr-mask", "off" }, 197 { "apic-common", "legacy-instance-id", "on", } 198 }; 199 const size_t pc_compat_2_6_len = G_N_ELEMENTS(pc_compat_2_6); 200 201 GlobalProperty pc_compat_2_5[] = {}; 202 const size_t pc_compat_2_5_len = G_N_ELEMENTS(pc_compat_2_5); 203 204 GlobalProperty pc_compat_2_4[] = { 205 PC_CPU_MODEL_IDS("2.4.0") 206 { "Haswell-" TYPE_X86_CPU, "abm", "off" }, 207 { "Haswell-noTSX-" TYPE_X86_CPU, "abm", "off" }, 208 { "Broadwell-" TYPE_X86_CPU, "abm", "off" }, 209 { "Broadwell-noTSX-" TYPE_X86_CPU, "abm", "off" }, 210 { "host" "-" TYPE_X86_CPU, "host-cache-info", "on" }, 211 { TYPE_X86_CPU, "check", "off" }, 212 { "qemu64" "-" TYPE_X86_CPU, "sse4a", "on" }, 213 { "qemu64" "-" TYPE_X86_CPU, "abm", "on" }, 214 { "qemu64" "-" TYPE_X86_CPU, "popcnt", "on" }, 215 { "qemu32" "-" TYPE_X86_CPU, "popcnt", "on" }, 216 { "Opteron_G2" "-" TYPE_X86_CPU, "rdtscp", "on" }, 217 { "Opteron_G3" "-" TYPE_X86_CPU, "rdtscp", "on" }, 218 { "Opteron_G4" "-" TYPE_X86_CPU, "rdtscp", "on" }, 219 { "Opteron_G5" "-" TYPE_X86_CPU, "rdtscp", "on", } 220 }; 221 const size_t pc_compat_2_4_len = G_N_ELEMENTS(pc_compat_2_4); 222 223 GlobalProperty pc_compat_2_3[] = { 224 PC_CPU_MODEL_IDS("2.3.0") 225 { TYPE_X86_CPU, "arat", "off" }, 226 { "qemu64" "-" TYPE_X86_CPU, "min-level", "4" }, 227 { "kvm64" "-" TYPE_X86_CPU, "min-level", "5" }, 228 { "pentium3" "-" TYPE_X86_CPU, "min-level", "2" }, 229 { "n270" "-" TYPE_X86_CPU, "min-level", "5" }, 230 { "Conroe" "-" TYPE_X86_CPU, "min-level", "4" }, 231 { "Penryn" "-" TYPE_X86_CPU, "min-level", "4" }, 232 { "Nehalem" "-" TYPE_X86_CPU, "min-level", "4" }, 233 { "n270" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 234 { "Penryn" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 235 { "Conroe" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 236 { "Nehalem" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 237 { "Westmere" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 238 { "SandyBridge" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 239 { "IvyBridge" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 240 { "Haswell" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 241 { "Haswell-noTSX" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 242 { "Broadwell" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 243 { "Broadwell-noTSX" "-" TYPE_X86_CPU, "min-xlevel", "0x8000000a" }, 244 { TYPE_X86_CPU, "kvm-no-smi-migration", "on" }, 245 }; 246 const size_t pc_compat_2_3_len = G_N_ELEMENTS(pc_compat_2_3); 247 248 GlobalProperty pc_compat_2_2[] = { 249 PC_CPU_MODEL_IDS("2.2.0") 250 { "kvm64" "-" TYPE_X86_CPU, "vme", "off" }, 251 { "kvm32" "-" TYPE_X86_CPU, "vme", "off" }, 252 { "Conroe" "-" TYPE_X86_CPU, "vme", "off" }, 253 { "Penryn" "-" TYPE_X86_CPU, "vme", "off" }, 254 { "Nehalem" "-" TYPE_X86_CPU, "vme", "off" }, 255 { "Westmere" "-" TYPE_X86_CPU, "vme", "off" }, 256 { "SandyBridge" "-" TYPE_X86_CPU, "vme", "off" }, 257 { "Haswell" "-" TYPE_X86_CPU, "vme", "off" }, 258 { "Broadwell" "-" TYPE_X86_CPU, "vme", "off" }, 259 { "Opteron_G1" "-" TYPE_X86_CPU, "vme", "off" }, 260 { "Opteron_G2" "-" TYPE_X86_CPU, "vme", "off" }, 261 { "Opteron_G3" "-" TYPE_X86_CPU, "vme", "off" }, 262 { "Opteron_G4" "-" TYPE_X86_CPU, "vme", "off" }, 263 { "Opteron_G5" "-" TYPE_X86_CPU, "vme", "off" }, 264 { "Haswell" "-" TYPE_X86_CPU, "f16c", "off" }, 265 { "Haswell" "-" TYPE_X86_CPU, "rdrand", "off" }, 266 { "Broadwell" "-" TYPE_X86_CPU, "f16c", "off" }, 267 { "Broadwell" "-" TYPE_X86_CPU, "rdrand", "off" }, 268 }; 269 const size_t pc_compat_2_2_len = G_N_ELEMENTS(pc_compat_2_2); 270 271 GlobalProperty pc_compat_2_1[] = { 272 PC_CPU_MODEL_IDS("2.1.0") 273 { "coreduo" "-" TYPE_X86_CPU, "vmx", "on" }, 274 { "core2duo" "-" TYPE_X86_CPU, "vmx", "on" }, 275 }; 276 const size_t pc_compat_2_1_len = G_N_ELEMENTS(pc_compat_2_1); 277 278 GlobalProperty pc_compat_2_0[] = { 279 PC_CPU_MODEL_IDS("2.0.0") 280 { "virtio-scsi-pci", "any_layout", "off" }, 281 { "PIIX4_PM", "memory-hotplug-support", "off" }, 282 { "apic", "version", "0x11" }, 283 { "nec-usb-xhci", "superspeed-ports-first", "off" }, 284 { "nec-usb-xhci", "force-pcie-endcap", "on" }, 285 { "pci-serial", "prog_if", "0" }, 286 { "pci-serial-2x", "prog_if", "0" }, 287 { "pci-serial-4x", "prog_if", "0" }, 288 { "virtio-net-pci", "guest_announce", "off" }, 289 { "ICH9-LPC", "memory-hotplug-support", "off" }, 290 { "xio3130-downstream", COMPAT_PROP_PCP, "off" }, 291 { "ioh3420", COMPAT_PROP_PCP, "off" }, 292 }; 293 const size_t pc_compat_2_0_len = G_N_ELEMENTS(pc_compat_2_0); 294 295 GlobalProperty pc_compat_1_7[] = { 296 PC_CPU_MODEL_IDS("1.7.0") 297 { TYPE_USB_DEVICE, "msos-desc", "no" }, 298 { "PIIX4_PM", "acpi-pci-hotplug-with-bridge-support", "off" }, 299 { "hpet", HPET_INTCAP, "4" }, 300 }; 301 const size_t pc_compat_1_7_len = G_N_ELEMENTS(pc_compat_1_7); 302 303 GlobalProperty pc_compat_1_6[] = { 304 PC_CPU_MODEL_IDS("1.6.0") 305 { "e1000", "mitigation", "off" }, 306 { "qemu64-" TYPE_X86_CPU, "model", "2" }, 307 { "qemu32-" TYPE_X86_CPU, "model", "3" }, 308 { "i440FX-pcihost", "short_root_bus", "1" }, 309 { "q35-pcihost", "short_root_bus", "1" }, 310 }; 311 const size_t pc_compat_1_6_len = G_N_ELEMENTS(pc_compat_1_6); 312 313 GlobalProperty pc_compat_1_5[] = { 314 PC_CPU_MODEL_IDS("1.5.0") 315 { "Conroe-" TYPE_X86_CPU, "model", "2" }, 316 { "Conroe-" TYPE_X86_CPU, "min-level", "2" }, 317 { "Penryn-" TYPE_X86_CPU, "model", "2" }, 318 { "Penryn-" TYPE_X86_CPU, "min-level", "2" }, 319 { "Nehalem-" TYPE_X86_CPU, "model", "2" }, 320 { "Nehalem-" TYPE_X86_CPU, "min-level", "2" }, 321 { "virtio-net-pci", "any_layout", "off" }, 322 { TYPE_X86_CPU, "pmu", "on" }, 323 { "i440FX-pcihost", "short_root_bus", "0" }, 324 { "q35-pcihost", "short_root_bus", "0" }, 325 }; 326 const size_t pc_compat_1_5_len = G_N_ELEMENTS(pc_compat_1_5); 327 328 GlobalProperty pc_compat_1_4[] = { 329 PC_CPU_MODEL_IDS("1.4.0") 330 { "scsi-hd", "discard_granularity", "0" }, 331 { "scsi-cd", "discard_granularity", "0" }, 332 { "scsi-disk", "discard_granularity", "0" }, 333 { "ide-hd", "discard_granularity", "0" }, 334 { "ide-cd", "discard_granularity", "0" }, 335 { "ide-drive", "discard_granularity", "0" }, 336 { "virtio-blk-pci", "discard_granularity", "0" }, 337 /* DEV_NVECTORS_UNSPECIFIED as a uint32_t string: */ 338 { "virtio-serial-pci", "vectors", "0xFFFFFFFF" }, 339 { "virtio-net-pci", "ctrl_guest_offloads", "off" }, 340 { "e1000", "romfile", "pxe-e1000.rom" }, 341 { "ne2k_pci", "romfile", "pxe-ne2k_pci.rom" }, 342 { "pcnet", "romfile", "pxe-pcnet.rom" }, 343 { "rtl8139", "romfile", "pxe-rtl8139.rom" }, 344 { "virtio-net-pci", "romfile", "pxe-virtio.rom" }, 345 { "486-" TYPE_X86_CPU, "model", "0" }, 346 { "n270" "-" TYPE_X86_CPU, "movbe", "off" }, 347 { "Westmere" "-" TYPE_X86_CPU, "pclmulqdq", "off" }, 348 }; 349 const size_t pc_compat_1_4_len = G_N_ELEMENTS(pc_compat_1_4); 350 351 void gsi_handler(void *opaque, int n, int level) 352 { 353 GSIState *s = opaque; 354 355 DPRINTF("pc: %s GSI %d\n", level ? "raising" : "lowering", n); 356 if (n < ISA_NUM_IRQS) { 357 qemu_set_irq(s->i8259_irq[n], level); 358 } 359 qemu_set_irq(s->ioapic_irq[n], level); 360 } 361 362 static void ioport80_write(void *opaque, hwaddr addr, uint64_t data, 363 unsigned size) 364 { 365 } 366 367 static uint64_t ioport80_read(void *opaque, hwaddr addr, unsigned size) 368 { 369 return 0xffffffffffffffffULL; 370 } 371 372 /* MSDOS compatibility mode FPU exception support */ 373 static qemu_irq ferr_irq; 374 375 void pc_register_ferr_irq(qemu_irq irq) 376 { 377 ferr_irq = irq; 378 } 379 380 /* XXX: add IGNNE support */ 381 void cpu_set_ferr(CPUX86State *s) 382 { 383 qemu_irq_raise(ferr_irq); 384 } 385 386 static void ioportF0_write(void *opaque, hwaddr addr, uint64_t data, 387 unsigned size) 388 { 389 qemu_irq_lower(ferr_irq); 390 } 391 392 static uint64_t ioportF0_read(void *opaque, hwaddr addr, unsigned size) 393 { 394 return 0xffffffffffffffffULL; 395 } 396 397 /* TSC handling */ 398 uint64_t cpu_get_tsc(CPUX86State *env) 399 { 400 return cpu_get_ticks(); 401 } 402 403 /* IRQ handling */ 404 int cpu_get_pic_interrupt(CPUX86State *env) 405 { 406 X86CPU *cpu = x86_env_get_cpu(env); 407 int intno; 408 409 if (!kvm_irqchip_in_kernel()) { 410 intno = apic_get_interrupt(cpu->apic_state); 411 if (intno >= 0) { 412 return intno; 413 } 414 /* read the irq from the PIC */ 415 if (!apic_accept_pic_intr(cpu->apic_state)) { 416 return -1; 417 } 418 } 419 420 intno = pic_read_irq(isa_pic); 421 return intno; 422 } 423 424 static void pic_irq_request(void *opaque, int irq, int level) 425 { 426 CPUState *cs = first_cpu; 427 X86CPU *cpu = X86_CPU(cs); 428 429 DPRINTF("pic_irqs: %s irq %d\n", level? "raise" : "lower", irq); 430 if (cpu->apic_state && !kvm_irqchip_in_kernel()) { 431 CPU_FOREACH(cs) { 432 cpu = X86_CPU(cs); 433 if (apic_accept_pic_intr(cpu->apic_state)) { 434 apic_deliver_pic_intr(cpu->apic_state, level); 435 } 436 } 437 } else { 438 if (level) { 439 cpu_interrupt(cs, CPU_INTERRUPT_HARD); 440 } else { 441 cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD); 442 } 443 } 444 } 445 446 /* PC cmos mappings */ 447 448 #define REG_EQUIPMENT_BYTE 0x14 449 450 int cmos_get_fd_drive_type(FloppyDriveType fd0) 451 { 452 int val; 453 454 switch (fd0) { 455 case FLOPPY_DRIVE_TYPE_144: 456 /* 1.44 Mb 3"5 drive */ 457 val = 4; 458 break; 459 case FLOPPY_DRIVE_TYPE_288: 460 /* 2.88 Mb 3"5 drive */ 461 val = 5; 462 break; 463 case FLOPPY_DRIVE_TYPE_120: 464 /* 1.2 Mb 5"5 drive */ 465 val = 2; 466 break; 467 case FLOPPY_DRIVE_TYPE_NONE: 468 default: 469 val = 0; 470 break; 471 } 472 return val; 473 } 474 475 static void cmos_init_hd(ISADevice *s, int type_ofs, int info_ofs, 476 int16_t cylinders, int8_t heads, int8_t sectors) 477 { 478 rtc_set_memory(s, type_ofs, 47); 479 rtc_set_memory(s, info_ofs, cylinders); 480 rtc_set_memory(s, info_ofs + 1, cylinders >> 8); 481 rtc_set_memory(s, info_ofs + 2, heads); 482 rtc_set_memory(s, info_ofs + 3, 0xff); 483 rtc_set_memory(s, info_ofs + 4, 0xff); 484 rtc_set_memory(s, info_ofs + 5, 0xc0 | ((heads > 8) << 3)); 485 rtc_set_memory(s, info_ofs + 6, cylinders); 486 rtc_set_memory(s, info_ofs + 7, cylinders >> 8); 487 rtc_set_memory(s, info_ofs + 8, sectors); 488 } 489 490 /* convert boot_device letter to something recognizable by the bios */ 491 static int boot_device2nibble(char boot_device) 492 { 493 switch(boot_device) { 494 case 'a': 495 case 'b': 496 return 0x01; /* floppy boot */ 497 case 'c': 498 return 0x02; /* hard drive boot */ 499 case 'd': 500 return 0x03; /* CD-ROM boot */ 501 case 'n': 502 return 0x04; /* Network boot */ 503 } 504 return 0; 505 } 506 507 static void set_boot_dev(ISADevice *s, const char *boot_device, Error **errp) 508 { 509 #define PC_MAX_BOOT_DEVICES 3 510 int nbds, bds[3] = { 0, }; 511 int i; 512 513 nbds = strlen(boot_device); 514 if (nbds > PC_MAX_BOOT_DEVICES) { 515 error_setg(errp, "Too many boot devices for PC"); 516 return; 517 } 518 for (i = 0; i < nbds; i++) { 519 bds[i] = boot_device2nibble(boot_device[i]); 520 if (bds[i] == 0) { 521 error_setg(errp, "Invalid boot device for PC: '%c'", 522 boot_device[i]); 523 return; 524 } 525 } 526 rtc_set_memory(s, 0x3d, (bds[1] << 4) | bds[0]); 527 rtc_set_memory(s, 0x38, (bds[2] << 4) | (fd_bootchk ? 0x0 : 0x1)); 528 } 529 530 static void pc_boot_set(void *opaque, const char *boot_device, Error **errp) 531 { 532 set_boot_dev(opaque, boot_device, errp); 533 } 534 535 static void pc_cmos_init_floppy(ISADevice *rtc_state, ISADevice *floppy) 536 { 537 int val, nb, i; 538 FloppyDriveType fd_type[2] = { FLOPPY_DRIVE_TYPE_NONE, 539 FLOPPY_DRIVE_TYPE_NONE }; 540 541 /* floppy type */ 542 if (floppy) { 543 for (i = 0; i < 2; i++) { 544 fd_type[i] = isa_fdc_get_drive_type(floppy, i); 545 } 546 } 547 val = (cmos_get_fd_drive_type(fd_type[0]) << 4) | 548 cmos_get_fd_drive_type(fd_type[1]); 549 rtc_set_memory(rtc_state, 0x10, val); 550 551 val = rtc_get_memory(rtc_state, REG_EQUIPMENT_BYTE); 552 nb = 0; 553 if (fd_type[0] != FLOPPY_DRIVE_TYPE_NONE) { 554 nb++; 555 } 556 if (fd_type[1] != FLOPPY_DRIVE_TYPE_NONE) { 557 nb++; 558 } 559 switch (nb) { 560 case 0: 561 break; 562 case 1: 563 val |= 0x01; /* 1 drive, ready for boot */ 564 break; 565 case 2: 566 val |= 0x41; /* 2 drives, ready for boot */ 567 break; 568 } 569 rtc_set_memory(rtc_state, REG_EQUIPMENT_BYTE, val); 570 } 571 572 typedef struct pc_cmos_init_late_arg { 573 ISADevice *rtc_state; 574 BusState *idebus[2]; 575 } pc_cmos_init_late_arg; 576 577 typedef struct check_fdc_state { 578 ISADevice *floppy; 579 bool multiple; 580 } CheckFdcState; 581 582 static int check_fdc(Object *obj, void *opaque) 583 { 584 CheckFdcState *state = opaque; 585 Object *fdc; 586 uint32_t iobase; 587 Error *local_err = NULL; 588 589 fdc = object_dynamic_cast(obj, TYPE_ISA_FDC); 590 if (!fdc) { 591 return 0; 592 } 593 594 iobase = object_property_get_uint(obj, "iobase", &local_err); 595 if (local_err || iobase != 0x3f0) { 596 error_free(local_err); 597 return 0; 598 } 599 600 if (state->floppy) { 601 state->multiple = true; 602 } else { 603 state->floppy = ISA_DEVICE(obj); 604 } 605 return 0; 606 } 607 608 static const char * const fdc_container_path[] = { 609 "/unattached", "/peripheral", "/peripheral-anon" 610 }; 611 612 /* 613 * Locate the FDC at IO address 0x3f0, in order to configure the CMOS registers 614 * and ACPI objects. 615 */ 616 ISADevice *pc_find_fdc0(void) 617 { 618 int i; 619 Object *container; 620 CheckFdcState state = { 0 }; 621 622 for (i = 0; i < ARRAY_SIZE(fdc_container_path); i++) { 623 container = container_get(qdev_get_machine(), fdc_container_path[i]); 624 object_child_foreach(container, check_fdc, &state); 625 } 626 627 if (state.multiple) { 628 warn_report("multiple floppy disk controllers with " 629 "iobase=0x3f0 have been found"); 630 error_printf("the one being picked for CMOS setup might not reflect " 631 "your intent"); 632 } 633 634 return state.floppy; 635 } 636 637 static void pc_cmos_init_late(void *opaque) 638 { 639 pc_cmos_init_late_arg *arg = opaque; 640 ISADevice *s = arg->rtc_state; 641 int16_t cylinders; 642 int8_t heads, sectors; 643 int val; 644 int i, trans; 645 646 val = 0; 647 if (arg->idebus[0] && ide_get_geometry(arg->idebus[0], 0, 648 &cylinders, &heads, §ors) >= 0) { 649 cmos_init_hd(s, 0x19, 0x1b, cylinders, heads, sectors); 650 val |= 0xf0; 651 } 652 if (arg->idebus[0] && ide_get_geometry(arg->idebus[0], 1, 653 &cylinders, &heads, §ors) >= 0) { 654 cmos_init_hd(s, 0x1a, 0x24, cylinders, heads, sectors); 655 val |= 0x0f; 656 } 657 rtc_set_memory(s, 0x12, val); 658 659 val = 0; 660 for (i = 0; i < 4; i++) { 661 /* NOTE: ide_get_geometry() returns the physical 662 geometry. It is always such that: 1 <= sects <= 63, 1 663 <= heads <= 16, 1 <= cylinders <= 16383. The BIOS 664 geometry can be different if a translation is done. */ 665 if (arg->idebus[i / 2] && 666 ide_get_geometry(arg->idebus[i / 2], i % 2, 667 &cylinders, &heads, §ors) >= 0) { 668 trans = ide_get_bios_chs_trans(arg->idebus[i / 2], i % 2) - 1; 669 assert((trans & ~3) == 0); 670 val |= trans << (i * 2); 671 } 672 } 673 rtc_set_memory(s, 0x39, val); 674 675 pc_cmos_init_floppy(s, pc_find_fdc0()); 676 677 qemu_unregister_reset(pc_cmos_init_late, opaque); 678 } 679 680 void pc_cmos_init(PCMachineState *pcms, 681 BusState *idebus0, BusState *idebus1, 682 ISADevice *s) 683 { 684 int val; 685 static pc_cmos_init_late_arg arg; 686 687 /* various important CMOS locations needed by PC/Bochs bios */ 688 689 /* memory size */ 690 /* base memory (first MiB) */ 691 val = MIN(pcms->below_4g_mem_size / KiB, 640); 692 rtc_set_memory(s, 0x15, val); 693 rtc_set_memory(s, 0x16, val >> 8); 694 /* extended memory (next 64MiB) */ 695 if (pcms->below_4g_mem_size > 1 * MiB) { 696 val = (pcms->below_4g_mem_size - 1 * MiB) / KiB; 697 } else { 698 val = 0; 699 } 700 if (val > 65535) 701 val = 65535; 702 rtc_set_memory(s, 0x17, val); 703 rtc_set_memory(s, 0x18, val >> 8); 704 rtc_set_memory(s, 0x30, val); 705 rtc_set_memory(s, 0x31, val >> 8); 706 /* memory between 16MiB and 4GiB */ 707 if (pcms->below_4g_mem_size > 16 * MiB) { 708 val = (pcms->below_4g_mem_size - 16 * MiB) / (64 * KiB); 709 } else { 710 val = 0; 711 } 712 if (val > 65535) 713 val = 65535; 714 rtc_set_memory(s, 0x34, val); 715 rtc_set_memory(s, 0x35, val >> 8); 716 /* memory above 4GiB */ 717 val = pcms->above_4g_mem_size / 65536; 718 rtc_set_memory(s, 0x5b, val); 719 rtc_set_memory(s, 0x5c, val >> 8); 720 rtc_set_memory(s, 0x5d, val >> 16); 721 722 object_property_add_link(OBJECT(pcms), "rtc_state", 723 TYPE_ISA_DEVICE, 724 (Object **)&pcms->rtc, 725 object_property_allow_set_link, 726 OBJ_PROP_LINK_STRONG, &error_abort); 727 object_property_set_link(OBJECT(pcms), OBJECT(s), 728 "rtc_state", &error_abort); 729 730 set_boot_dev(s, MACHINE(pcms)->boot_order, &error_fatal); 731 732 val = 0; 733 val |= 0x02; /* FPU is there */ 734 val |= 0x04; /* PS/2 mouse installed */ 735 rtc_set_memory(s, REG_EQUIPMENT_BYTE, val); 736 737 /* hard drives and FDC */ 738 arg.rtc_state = s; 739 arg.idebus[0] = idebus0; 740 arg.idebus[1] = idebus1; 741 qemu_register_reset(pc_cmos_init_late, &arg); 742 } 743 744 #define TYPE_PORT92 "port92" 745 #define PORT92(obj) OBJECT_CHECK(Port92State, (obj), TYPE_PORT92) 746 747 /* port 92 stuff: could be split off */ 748 typedef struct Port92State { 749 ISADevice parent_obj; 750 751 MemoryRegion io; 752 uint8_t outport; 753 qemu_irq a20_out; 754 } Port92State; 755 756 static void port92_write(void *opaque, hwaddr addr, uint64_t val, 757 unsigned size) 758 { 759 Port92State *s = opaque; 760 int oldval = s->outport; 761 762 DPRINTF("port92: write 0x%02" PRIx64 "\n", val); 763 s->outport = val; 764 qemu_set_irq(s->a20_out, (val >> 1) & 1); 765 if ((val & 1) && !(oldval & 1)) { 766 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET); 767 } 768 } 769 770 static uint64_t port92_read(void *opaque, hwaddr addr, 771 unsigned size) 772 { 773 Port92State *s = opaque; 774 uint32_t ret; 775 776 ret = s->outport; 777 DPRINTF("port92: read 0x%02x\n", ret); 778 return ret; 779 } 780 781 static void port92_init(ISADevice *dev, qemu_irq a20_out) 782 { 783 qdev_connect_gpio_out_named(DEVICE(dev), PORT92_A20_LINE, 0, a20_out); 784 } 785 786 static const VMStateDescription vmstate_port92_isa = { 787 .name = "port92", 788 .version_id = 1, 789 .minimum_version_id = 1, 790 .fields = (VMStateField[]) { 791 VMSTATE_UINT8(outport, Port92State), 792 VMSTATE_END_OF_LIST() 793 } 794 }; 795 796 static void port92_reset(DeviceState *d) 797 { 798 Port92State *s = PORT92(d); 799 800 s->outport &= ~1; 801 } 802 803 static const MemoryRegionOps port92_ops = { 804 .read = port92_read, 805 .write = port92_write, 806 .impl = { 807 .min_access_size = 1, 808 .max_access_size = 1, 809 }, 810 .endianness = DEVICE_LITTLE_ENDIAN, 811 }; 812 813 static void port92_initfn(Object *obj) 814 { 815 Port92State *s = PORT92(obj); 816 817 memory_region_init_io(&s->io, OBJECT(s), &port92_ops, s, "port92", 1); 818 819 s->outport = 0; 820 821 qdev_init_gpio_out_named(DEVICE(obj), &s->a20_out, PORT92_A20_LINE, 1); 822 } 823 824 static void port92_realizefn(DeviceState *dev, Error **errp) 825 { 826 ISADevice *isadev = ISA_DEVICE(dev); 827 Port92State *s = PORT92(dev); 828 829 isa_register_ioport(isadev, &s->io, 0x92); 830 } 831 832 static void port92_class_initfn(ObjectClass *klass, void *data) 833 { 834 DeviceClass *dc = DEVICE_CLASS(klass); 835 836 dc->realize = port92_realizefn; 837 dc->reset = port92_reset; 838 dc->vmsd = &vmstate_port92_isa; 839 /* 840 * Reason: unlike ordinary ISA devices, this one needs additional 841 * wiring: its A20 output line needs to be wired up by 842 * port92_init(). 843 */ 844 dc->user_creatable = false; 845 } 846 847 static const TypeInfo port92_info = { 848 .name = TYPE_PORT92, 849 .parent = TYPE_ISA_DEVICE, 850 .instance_size = sizeof(Port92State), 851 .instance_init = port92_initfn, 852 .class_init = port92_class_initfn, 853 }; 854 855 static void port92_register_types(void) 856 { 857 type_register_static(&port92_info); 858 } 859 860 type_init(port92_register_types) 861 862 static void handle_a20_line_change(void *opaque, int irq, int level) 863 { 864 X86CPU *cpu = opaque; 865 866 /* XXX: send to all CPUs ? */ 867 /* XXX: add logic to handle multiple A20 line sources */ 868 x86_cpu_set_a20(cpu, level); 869 } 870 871 int e820_add_entry(uint64_t address, uint64_t length, uint32_t type) 872 { 873 int index = le32_to_cpu(e820_reserve.count); 874 struct e820_entry *entry; 875 876 if (type != E820_RAM) { 877 /* old FW_CFG_E820_TABLE entry -- reservations only */ 878 if (index >= E820_NR_ENTRIES) { 879 return -EBUSY; 880 } 881 entry = &e820_reserve.entry[index++]; 882 883 entry->address = cpu_to_le64(address); 884 entry->length = cpu_to_le64(length); 885 entry->type = cpu_to_le32(type); 886 887 e820_reserve.count = cpu_to_le32(index); 888 } 889 890 /* new "etc/e820" file -- include ram too */ 891 e820_table = g_renew(struct e820_entry, e820_table, e820_entries + 1); 892 e820_table[e820_entries].address = cpu_to_le64(address); 893 e820_table[e820_entries].length = cpu_to_le64(length); 894 e820_table[e820_entries].type = cpu_to_le32(type); 895 e820_entries++; 896 897 return e820_entries; 898 } 899 900 int e820_get_num_entries(void) 901 { 902 return e820_entries; 903 } 904 905 bool e820_get_entry(int idx, uint32_t type, uint64_t *address, uint64_t *length) 906 { 907 if (idx < e820_entries && e820_table[idx].type == cpu_to_le32(type)) { 908 *address = le64_to_cpu(e820_table[idx].address); 909 *length = le64_to_cpu(e820_table[idx].length); 910 return true; 911 } 912 return false; 913 } 914 915 /* Enables contiguous-apic-ID mode, for compatibility */ 916 static bool compat_apic_id_mode; 917 918 void enable_compat_apic_id_mode(void) 919 { 920 compat_apic_id_mode = true; 921 } 922 923 /* Calculates initial APIC ID for a specific CPU index 924 * 925 * Currently we need to be able to calculate the APIC ID from the CPU index 926 * alone (without requiring a CPU object), as the QEMU<->Seabios interfaces have 927 * no concept of "CPU index", and the NUMA tables on fw_cfg need the APIC ID of 928 * all CPUs up to max_cpus. 929 */ 930 static uint32_t x86_cpu_apic_id_from_index(unsigned int cpu_index) 931 { 932 uint32_t correct_id; 933 static bool warned; 934 935 correct_id = x86_apicid_from_cpu_idx(smp_cores, smp_threads, cpu_index); 936 if (compat_apic_id_mode) { 937 if (cpu_index != correct_id && !warned && !qtest_enabled()) { 938 error_report("APIC IDs set in compatibility mode, " 939 "CPU topology won't match the configuration"); 940 warned = true; 941 } 942 return cpu_index; 943 } else { 944 return correct_id; 945 } 946 } 947 948 static void pc_build_smbios(PCMachineState *pcms) 949 { 950 uint8_t *smbios_tables, *smbios_anchor; 951 size_t smbios_tables_len, smbios_anchor_len; 952 struct smbios_phys_mem_area *mem_array; 953 unsigned i, array_count; 954 MachineState *ms = MACHINE(pcms); 955 X86CPU *cpu = X86_CPU(ms->possible_cpus->cpus[0].cpu); 956 957 /* tell smbios about cpuid version and features */ 958 smbios_set_cpuid(cpu->env.cpuid_version, cpu->env.features[FEAT_1_EDX]); 959 960 smbios_tables = smbios_get_table_legacy(&smbios_tables_len); 961 if (smbios_tables) { 962 fw_cfg_add_bytes(pcms->fw_cfg, FW_CFG_SMBIOS_ENTRIES, 963 smbios_tables, smbios_tables_len); 964 } 965 966 /* build the array of physical mem area from e820 table */ 967 mem_array = g_malloc0(sizeof(*mem_array) * e820_get_num_entries()); 968 for (i = 0, array_count = 0; i < e820_get_num_entries(); i++) { 969 uint64_t addr, len; 970 971 if (e820_get_entry(i, E820_RAM, &addr, &len)) { 972 mem_array[array_count].address = addr; 973 mem_array[array_count].length = len; 974 array_count++; 975 } 976 } 977 smbios_get_tables(mem_array, array_count, 978 &smbios_tables, &smbios_tables_len, 979 &smbios_anchor, &smbios_anchor_len); 980 g_free(mem_array); 981 982 if (smbios_anchor) { 983 fw_cfg_add_file(pcms->fw_cfg, "etc/smbios/smbios-tables", 984 smbios_tables, smbios_tables_len); 985 fw_cfg_add_file(pcms->fw_cfg, "etc/smbios/smbios-anchor", 986 smbios_anchor, smbios_anchor_len); 987 } 988 } 989 990 static FWCfgState *bochs_bios_init(AddressSpace *as, PCMachineState *pcms) 991 { 992 FWCfgState *fw_cfg; 993 uint64_t *numa_fw_cfg; 994 int i; 995 const CPUArchIdList *cpus; 996 MachineClass *mc = MACHINE_GET_CLASS(pcms); 997 998 fw_cfg = fw_cfg_init_io_dma(FW_CFG_IO_BASE, FW_CFG_IO_BASE + 4, as); 999 fw_cfg_add_i16(fw_cfg, FW_CFG_NB_CPUS, pcms->boot_cpus); 1000 1001 /* FW_CFG_MAX_CPUS is a bit confusing/problematic on x86: 1002 * 1003 * For machine types prior to 1.8, SeaBIOS needs FW_CFG_MAX_CPUS for 1004 * building MPTable, ACPI MADT, ACPI CPU hotplug and ACPI SRAT table, 1005 * that tables are based on xAPIC ID and QEMU<->SeaBIOS interface 1006 * for CPU hotplug also uses APIC ID and not "CPU index". 1007 * This means that FW_CFG_MAX_CPUS is not the "maximum number of CPUs", 1008 * but the "limit to the APIC ID values SeaBIOS may see". 1009 * 1010 * So for compatibility reasons with old BIOSes we are stuck with 1011 * "etc/max-cpus" actually being apic_id_limit 1012 */ 1013 fw_cfg_add_i16(fw_cfg, FW_CFG_MAX_CPUS, (uint16_t)pcms->apic_id_limit); 1014 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size); 1015 fw_cfg_add_bytes(fw_cfg, FW_CFG_ACPI_TABLES, 1016 acpi_tables, acpi_tables_len); 1017 fw_cfg_add_i32(fw_cfg, FW_CFG_IRQ0_OVERRIDE, kvm_allows_irq0_override()); 1018 1019 fw_cfg_add_bytes(fw_cfg, FW_CFG_E820_TABLE, 1020 &e820_reserve, sizeof(e820_reserve)); 1021 fw_cfg_add_file(fw_cfg, "etc/e820", e820_table, 1022 sizeof(struct e820_entry) * e820_entries); 1023 1024 fw_cfg_add_bytes(fw_cfg, FW_CFG_HPET, &hpet_cfg, sizeof(hpet_cfg)); 1025 /* allocate memory for the NUMA channel: one (64bit) word for the number 1026 * of nodes, one word for each VCPU->node and one word for each node to 1027 * hold the amount of memory. 1028 */ 1029 numa_fw_cfg = g_new0(uint64_t, 1 + pcms->apic_id_limit + nb_numa_nodes); 1030 numa_fw_cfg[0] = cpu_to_le64(nb_numa_nodes); 1031 cpus = mc->possible_cpu_arch_ids(MACHINE(pcms)); 1032 for (i = 0; i < cpus->len; i++) { 1033 unsigned int apic_id = cpus->cpus[i].arch_id; 1034 assert(apic_id < pcms->apic_id_limit); 1035 numa_fw_cfg[apic_id + 1] = cpu_to_le64(cpus->cpus[i].props.node_id); 1036 } 1037 for (i = 0; i < nb_numa_nodes; i++) { 1038 numa_fw_cfg[pcms->apic_id_limit + 1 + i] = 1039 cpu_to_le64(numa_info[i].node_mem); 1040 } 1041 fw_cfg_add_bytes(fw_cfg, FW_CFG_NUMA, numa_fw_cfg, 1042 (1 + pcms->apic_id_limit + nb_numa_nodes) * 1043 sizeof(*numa_fw_cfg)); 1044 1045 return fw_cfg; 1046 } 1047 1048 static long get_file_size(FILE *f) 1049 { 1050 long where, size; 1051 1052 /* XXX: on Unix systems, using fstat() probably makes more sense */ 1053 1054 where = ftell(f); 1055 fseek(f, 0, SEEK_END); 1056 size = ftell(f); 1057 fseek(f, where, SEEK_SET); 1058 1059 return size; 1060 } 1061 1062 /* setup_data types */ 1063 #define SETUP_NONE 0 1064 #define SETUP_E820_EXT 1 1065 #define SETUP_DTB 2 1066 #define SETUP_PCI 3 1067 #define SETUP_EFI 4 1068 1069 struct setup_data { 1070 uint64_t next; 1071 uint32_t type; 1072 uint32_t len; 1073 uint8_t data[0]; 1074 } __attribute__((packed)); 1075 1076 1077 /* 1078 * The entry point into the kernel for PVH boot is different from 1079 * the native entry point. The PVH entry is defined by the x86/HVM 1080 * direct boot ABI and is available in an ELFNOTE in the kernel binary. 1081 * 1082 * This function is passed to load_elf() when it is called from 1083 * load_elfboot() which then additionally checks for an ELF Note of 1084 * type XEN_ELFNOTE_PHYS32_ENTRY and passes it to this function to 1085 * parse the PVH entry address from the ELF Note. 1086 * 1087 * Due to trickery in elf_opts.h, load_elf() is actually available as 1088 * load_elf32() or load_elf64() and this routine needs to be able 1089 * to deal with being called as 32 or 64 bit. 1090 * 1091 * The address of the PVH entry point is saved to the 'pvh_start_addr' 1092 * global variable. (although the entry point is 32-bit, the kernel 1093 * binary can be either 32-bit or 64-bit). 1094 */ 1095 static uint64_t read_pvh_start_addr(void *arg1, void *arg2, bool is64) 1096 { 1097 size_t *elf_note_data_addr; 1098 1099 /* Check if ELF Note header passed in is valid */ 1100 if (arg1 == NULL) { 1101 return 0; 1102 } 1103 1104 if (is64) { 1105 struct elf64_note *nhdr64 = (struct elf64_note *)arg1; 1106 uint64_t nhdr_size64 = sizeof(struct elf64_note); 1107 uint64_t phdr_align = *(uint64_t *)arg2; 1108 uint64_t nhdr_namesz = nhdr64->n_namesz; 1109 1110 elf_note_data_addr = 1111 ((void *)nhdr64) + nhdr_size64 + 1112 QEMU_ALIGN_UP(nhdr_namesz, phdr_align); 1113 } else { 1114 struct elf32_note *nhdr32 = (struct elf32_note *)arg1; 1115 uint32_t nhdr_size32 = sizeof(struct elf32_note); 1116 uint32_t phdr_align = *(uint32_t *)arg2; 1117 uint32_t nhdr_namesz = nhdr32->n_namesz; 1118 1119 elf_note_data_addr = 1120 ((void *)nhdr32) + nhdr_size32 + 1121 QEMU_ALIGN_UP(nhdr_namesz, phdr_align); 1122 } 1123 1124 pvh_start_addr = *elf_note_data_addr; 1125 1126 return pvh_start_addr; 1127 } 1128 1129 static bool load_elfboot(const char *kernel_filename, 1130 int kernel_file_size, 1131 uint8_t *header, 1132 size_t pvh_xen_start_addr, 1133 FWCfgState *fw_cfg) 1134 { 1135 uint32_t flags = 0; 1136 uint32_t mh_load_addr = 0; 1137 uint32_t elf_kernel_size = 0; 1138 uint64_t elf_entry; 1139 uint64_t elf_low, elf_high; 1140 int kernel_size; 1141 1142 if (ldl_p(header) != 0x464c457f) { 1143 return false; /* no elfboot */ 1144 } 1145 1146 bool elf_is64 = header[EI_CLASS] == ELFCLASS64; 1147 flags = elf_is64 ? 1148 ((Elf64_Ehdr *)header)->e_flags : ((Elf32_Ehdr *)header)->e_flags; 1149 1150 if (flags & 0x00010004) { /* LOAD_ELF_HEADER_HAS_ADDR */ 1151 error_report("elfboot unsupported flags = %x", flags); 1152 exit(1); 1153 } 1154 1155 uint64_t elf_note_type = XEN_ELFNOTE_PHYS32_ENTRY; 1156 kernel_size = load_elf(kernel_filename, read_pvh_start_addr, 1157 NULL, &elf_note_type, &elf_entry, 1158 &elf_low, &elf_high, 0, I386_ELF_MACHINE, 1159 0, 0); 1160 1161 if (kernel_size < 0) { 1162 error_report("Error while loading elf kernel"); 1163 exit(1); 1164 } 1165 mh_load_addr = elf_low; 1166 elf_kernel_size = elf_high - elf_low; 1167 1168 if (pvh_start_addr == 0) { 1169 error_report("Error loading uncompressed kernel without PVH ELF Note"); 1170 exit(1); 1171 } 1172 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ENTRY, pvh_start_addr); 1173 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, mh_load_addr); 1174 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, elf_kernel_size); 1175 1176 return true; 1177 } 1178 1179 static void load_linux(PCMachineState *pcms, 1180 FWCfgState *fw_cfg) 1181 { 1182 uint16_t protocol; 1183 int setup_size, kernel_size, cmdline_size; 1184 int dtb_size, setup_data_offset; 1185 uint32_t initrd_max; 1186 uint8_t header[8192], *setup, *kernel; 1187 hwaddr real_addr, prot_addr, cmdline_addr, initrd_addr = 0; 1188 FILE *f; 1189 char *vmode; 1190 MachineState *machine = MACHINE(pcms); 1191 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms); 1192 struct setup_data *setup_data; 1193 const char *kernel_filename = machine->kernel_filename; 1194 const char *initrd_filename = machine->initrd_filename; 1195 const char *dtb_filename = machine->dtb; 1196 const char *kernel_cmdline = machine->kernel_cmdline; 1197 1198 /* Align to 16 bytes as a paranoia measure */ 1199 cmdline_size = (strlen(kernel_cmdline)+16) & ~15; 1200 1201 /* load the kernel header */ 1202 f = fopen(kernel_filename, "rb"); 1203 if (!f || !(kernel_size = get_file_size(f)) || 1204 fread(header, 1, MIN(ARRAY_SIZE(header), kernel_size), f) != 1205 MIN(ARRAY_SIZE(header), kernel_size)) { 1206 fprintf(stderr, "qemu: could not load kernel '%s': %s\n", 1207 kernel_filename, strerror(errno)); 1208 exit(1); 1209 } 1210 1211 /* kernel protocol version */ 1212 #if 0 1213 fprintf(stderr, "header magic: %#x\n", ldl_p(header+0x202)); 1214 #endif 1215 if (ldl_p(header+0x202) == 0x53726448) { 1216 protocol = lduw_p(header+0x206); 1217 } else { 1218 /* 1219 * Check if the file is an uncompressed kernel file (ELF) and load it, 1220 * saving the PVH entry point used by the x86/HVM direct boot ABI. 1221 * If load_elfboot() is successful, populate the fw_cfg info. 1222 */ 1223 if (pcmc->pvh_enabled && 1224 load_elfboot(kernel_filename, kernel_size, 1225 header, pvh_start_addr, fw_cfg)) { 1226 fclose(f); 1227 1228 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, 1229 strlen(kernel_cmdline) + 1); 1230 fw_cfg_add_string(fw_cfg, FW_CFG_CMDLINE_DATA, kernel_cmdline); 1231 1232 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_SIZE, sizeof(header)); 1233 fw_cfg_add_bytes(fw_cfg, FW_CFG_SETUP_DATA, 1234 header, sizeof(header)); 1235 1236 /* load initrd */ 1237 if (initrd_filename) { 1238 gsize initrd_size; 1239 gchar *initrd_data; 1240 GError *gerr = NULL; 1241 1242 if (!g_file_get_contents(initrd_filename, &initrd_data, 1243 &initrd_size, &gerr)) { 1244 fprintf(stderr, "qemu: error reading initrd %s: %s\n", 1245 initrd_filename, gerr->message); 1246 exit(1); 1247 } 1248 1249 initrd_max = pcms->below_4g_mem_size - pcmc->acpi_data_size - 1; 1250 if (initrd_size >= initrd_max) { 1251 fprintf(stderr, "qemu: initrd is too large, cannot support." 1252 "(max: %"PRIu32", need %"PRId64")\n", 1253 initrd_max, (uint64_t)initrd_size); 1254 exit(1); 1255 } 1256 1257 initrd_addr = (initrd_max - initrd_size) & ~4095; 1258 1259 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, initrd_addr); 1260 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size); 1261 fw_cfg_add_bytes(fw_cfg, FW_CFG_INITRD_DATA, initrd_data, 1262 initrd_size); 1263 } 1264 1265 option_rom[nb_option_roms].bootindex = 0; 1266 option_rom[nb_option_roms].name = "pvh.bin"; 1267 nb_option_roms++; 1268 1269 return; 1270 } 1271 /* This looks like a multiboot kernel. If it is, let's stop 1272 treating it like a Linux kernel. */ 1273 if (load_multiboot(fw_cfg, f, kernel_filename, initrd_filename, 1274 kernel_cmdline, kernel_size, header)) { 1275 return; 1276 } 1277 protocol = 0; 1278 } 1279 1280 if (protocol < 0x200 || !(header[0x211] & 0x01)) { 1281 /* Low kernel */ 1282 real_addr = 0x90000; 1283 cmdline_addr = 0x9a000 - cmdline_size; 1284 prot_addr = 0x10000; 1285 } else if (protocol < 0x202) { 1286 /* High but ancient kernel */ 1287 real_addr = 0x90000; 1288 cmdline_addr = 0x9a000 - cmdline_size; 1289 prot_addr = 0x100000; 1290 } else { 1291 /* High and recent kernel */ 1292 real_addr = 0x10000; 1293 cmdline_addr = 0x20000; 1294 prot_addr = 0x100000; 1295 } 1296 1297 #if 0 1298 fprintf(stderr, 1299 "qemu: real_addr = 0x" TARGET_FMT_plx "\n" 1300 "qemu: cmdline_addr = 0x" TARGET_FMT_plx "\n" 1301 "qemu: prot_addr = 0x" TARGET_FMT_plx "\n", 1302 real_addr, 1303 cmdline_addr, 1304 prot_addr); 1305 #endif 1306 1307 /* highest address for loading the initrd */ 1308 if (protocol >= 0x203) { 1309 initrd_max = ldl_p(header+0x22c); 1310 } else { 1311 initrd_max = 0x37ffffff; 1312 } 1313 1314 if (initrd_max >= pcms->below_4g_mem_size - pcmc->acpi_data_size) { 1315 initrd_max = pcms->below_4g_mem_size - pcmc->acpi_data_size - 1; 1316 } 1317 1318 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_ADDR, cmdline_addr); 1319 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, strlen(kernel_cmdline)+1); 1320 fw_cfg_add_string(fw_cfg, FW_CFG_CMDLINE_DATA, kernel_cmdline); 1321 1322 if (protocol >= 0x202) { 1323 stl_p(header+0x228, cmdline_addr); 1324 } else { 1325 stw_p(header+0x20, 0xA33F); 1326 stw_p(header+0x22, cmdline_addr-real_addr); 1327 } 1328 1329 /* handle vga= parameter */ 1330 vmode = strstr(kernel_cmdline, "vga="); 1331 if (vmode) { 1332 unsigned int video_mode; 1333 /* skip "vga=" */ 1334 vmode += 4; 1335 if (!strncmp(vmode, "normal", 6)) { 1336 video_mode = 0xffff; 1337 } else if (!strncmp(vmode, "ext", 3)) { 1338 video_mode = 0xfffe; 1339 } else if (!strncmp(vmode, "ask", 3)) { 1340 video_mode = 0xfffd; 1341 } else { 1342 video_mode = strtol(vmode, NULL, 0); 1343 } 1344 stw_p(header+0x1fa, video_mode); 1345 } 1346 1347 /* loader type */ 1348 /* High nybble = B reserved for QEMU; low nybble is revision number. 1349 If this code is substantially changed, you may want to consider 1350 incrementing the revision. */ 1351 if (protocol >= 0x200) { 1352 header[0x210] = 0xB0; 1353 } 1354 /* heap */ 1355 if (protocol >= 0x201) { 1356 header[0x211] |= 0x80; /* CAN_USE_HEAP */ 1357 stw_p(header+0x224, cmdline_addr-real_addr-0x200); 1358 } 1359 1360 /* load initrd */ 1361 if (initrd_filename) { 1362 gsize initrd_size; 1363 gchar *initrd_data; 1364 GError *gerr = NULL; 1365 1366 if (protocol < 0x200) { 1367 fprintf(stderr, "qemu: linux kernel too old to load a ram disk\n"); 1368 exit(1); 1369 } 1370 1371 if (!g_file_get_contents(initrd_filename, &initrd_data, 1372 &initrd_size, &gerr)) { 1373 fprintf(stderr, "qemu: error reading initrd %s: %s\n", 1374 initrd_filename, gerr->message); 1375 exit(1); 1376 } 1377 if (initrd_size >= initrd_max) { 1378 fprintf(stderr, "qemu: initrd is too large, cannot support." 1379 "(max: %"PRIu32", need %"PRId64")\n", 1380 initrd_max, (uint64_t)initrd_size); 1381 exit(1); 1382 } 1383 1384 initrd_addr = (initrd_max-initrd_size) & ~4095; 1385 1386 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, initrd_addr); 1387 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size); 1388 fw_cfg_add_bytes(fw_cfg, FW_CFG_INITRD_DATA, initrd_data, initrd_size); 1389 1390 stl_p(header+0x218, initrd_addr); 1391 stl_p(header+0x21c, initrd_size); 1392 } 1393 1394 /* load kernel and setup */ 1395 setup_size = header[0x1f1]; 1396 if (setup_size == 0) { 1397 setup_size = 4; 1398 } 1399 setup_size = (setup_size+1)*512; 1400 if (setup_size > kernel_size) { 1401 fprintf(stderr, "qemu: invalid kernel header\n"); 1402 exit(1); 1403 } 1404 kernel_size -= setup_size; 1405 1406 setup = g_malloc(setup_size); 1407 kernel = g_malloc(kernel_size); 1408 fseek(f, 0, SEEK_SET); 1409 if (fread(setup, 1, setup_size, f) != setup_size) { 1410 fprintf(stderr, "fread() failed\n"); 1411 exit(1); 1412 } 1413 if (fread(kernel, 1, kernel_size, f) != kernel_size) { 1414 fprintf(stderr, "fread() failed\n"); 1415 exit(1); 1416 } 1417 fclose(f); 1418 1419 /* append dtb to kernel */ 1420 if (dtb_filename) { 1421 if (protocol < 0x209) { 1422 fprintf(stderr, "qemu: Linux kernel too old to load a dtb\n"); 1423 exit(1); 1424 } 1425 1426 dtb_size = get_image_size(dtb_filename); 1427 if (dtb_size <= 0) { 1428 fprintf(stderr, "qemu: error reading dtb %s: %s\n", 1429 dtb_filename, strerror(errno)); 1430 exit(1); 1431 } 1432 1433 setup_data_offset = QEMU_ALIGN_UP(kernel_size, 16); 1434 kernel_size = setup_data_offset + sizeof(struct setup_data) + dtb_size; 1435 kernel = g_realloc(kernel, kernel_size); 1436 1437 stq_p(header+0x250, prot_addr + setup_data_offset); 1438 1439 setup_data = (struct setup_data *)(kernel + setup_data_offset); 1440 setup_data->next = 0; 1441 setup_data->type = cpu_to_le32(SETUP_DTB); 1442 setup_data->len = cpu_to_le32(dtb_size); 1443 1444 load_image_size(dtb_filename, setup_data->data, dtb_size); 1445 } 1446 1447 memcpy(setup, header, MIN(sizeof(header), setup_size)); 1448 1449 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, prot_addr); 1450 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size); 1451 fw_cfg_add_bytes(fw_cfg, FW_CFG_KERNEL_DATA, kernel, kernel_size); 1452 1453 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_ADDR, real_addr); 1454 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_SIZE, setup_size); 1455 fw_cfg_add_bytes(fw_cfg, FW_CFG_SETUP_DATA, setup, setup_size); 1456 1457 option_rom[nb_option_roms].bootindex = 0; 1458 option_rom[nb_option_roms].name = "linuxboot.bin"; 1459 if (pcmc->linuxboot_dma_enabled && fw_cfg_dma_enabled(fw_cfg)) { 1460 option_rom[nb_option_roms].name = "linuxboot_dma.bin"; 1461 } 1462 nb_option_roms++; 1463 } 1464 1465 #define NE2000_NB_MAX 6 1466 1467 static const int ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360, 1468 0x280, 0x380 }; 1469 static const int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 }; 1470 1471 void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd) 1472 { 1473 static int nb_ne2k = 0; 1474 1475 if (nb_ne2k == NE2000_NB_MAX) 1476 return; 1477 isa_ne2000_init(bus, ne2000_io[nb_ne2k], 1478 ne2000_irq[nb_ne2k], nd); 1479 nb_ne2k++; 1480 } 1481 1482 DeviceState *cpu_get_current_apic(void) 1483 { 1484 if (current_cpu) { 1485 X86CPU *cpu = X86_CPU(current_cpu); 1486 return cpu->apic_state; 1487 } else { 1488 return NULL; 1489 } 1490 } 1491 1492 void pc_acpi_smi_interrupt(void *opaque, int irq, int level) 1493 { 1494 X86CPU *cpu = opaque; 1495 1496 if (level) { 1497 cpu_interrupt(CPU(cpu), CPU_INTERRUPT_SMI); 1498 } 1499 } 1500 1501 static void pc_new_cpu(const char *typename, int64_t apic_id, Error **errp) 1502 { 1503 Object *cpu = NULL; 1504 Error *local_err = NULL; 1505 1506 cpu = object_new(typename); 1507 1508 object_property_set_uint(cpu, apic_id, "apic-id", &local_err); 1509 object_property_set_bool(cpu, true, "realized", &local_err); 1510 1511 object_unref(cpu); 1512 error_propagate(errp, local_err); 1513 } 1514 1515 void pc_hot_add_cpu(const int64_t id, Error **errp) 1516 { 1517 MachineState *ms = MACHINE(qdev_get_machine()); 1518 int64_t apic_id = x86_cpu_apic_id_from_index(id); 1519 Error *local_err = NULL; 1520 1521 if (id < 0) { 1522 error_setg(errp, "Invalid CPU id: %" PRIi64, id); 1523 return; 1524 } 1525 1526 if (apic_id >= ACPI_CPU_HOTPLUG_ID_LIMIT) { 1527 error_setg(errp, "Unable to add CPU: %" PRIi64 1528 ", resulting APIC ID (%" PRIi64 ") is too large", 1529 id, apic_id); 1530 return; 1531 } 1532 1533 pc_new_cpu(ms->cpu_type, apic_id, &local_err); 1534 if (local_err) { 1535 error_propagate(errp, local_err); 1536 return; 1537 } 1538 } 1539 1540 void pc_cpus_init(PCMachineState *pcms) 1541 { 1542 int i; 1543 const CPUArchIdList *possible_cpus; 1544 MachineState *ms = MACHINE(pcms); 1545 MachineClass *mc = MACHINE_GET_CLASS(pcms); 1546 1547 /* Calculates the limit to CPU APIC ID values 1548 * 1549 * Limit for the APIC ID value, so that all 1550 * CPU APIC IDs are < pcms->apic_id_limit. 1551 * 1552 * This is used for FW_CFG_MAX_CPUS. See comments on bochs_bios_init(). 1553 */ 1554 pcms->apic_id_limit = x86_cpu_apic_id_from_index(max_cpus - 1) + 1; 1555 possible_cpus = mc->possible_cpu_arch_ids(ms); 1556 for (i = 0; i < smp_cpus; i++) { 1557 pc_new_cpu(possible_cpus->cpus[i].type, possible_cpus->cpus[i].arch_id, 1558 &error_fatal); 1559 } 1560 } 1561 1562 static void pc_build_feature_control_file(PCMachineState *pcms) 1563 { 1564 MachineState *ms = MACHINE(pcms); 1565 X86CPU *cpu = X86_CPU(ms->possible_cpus->cpus[0].cpu); 1566 CPUX86State *env = &cpu->env; 1567 uint32_t unused, ecx, edx; 1568 uint64_t feature_control_bits = 0; 1569 uint64_t *val; 1570 1571 cpu_x86_cpuid(env, 1, 0, &unused, &unused, &ecx, &edx); 1572 if (ecx & CPUID_EXT_VMX) { 1573 feature_control_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; 1574 } 1575 1576 if ((edx & (CPUID_EXT2_MCE | CPUID_EXT2_MCA)) == 1577 (CPUID_EXT2_MCE | CPUID_EXT2_MCA) && 1578 (env->mcg_cap & MCG_LMCE_P)) { 1579 feature_control_bits |= FEATURE_CONTROL_LMCE; 1580 } 1581 1582 if (!feature_control_bits) { 1583 return; 1584 } 1585 1586 val = g_malloc(sizeof(*val)); 1587 *val = cpu_to_le64(feature_control_bits | FEATURE_CONTROL_LOCKED); 1588 fw_cfg_add_file(pcms->fw_cfg, "etc/msr_feature_control", val, sizeof(*val)); 1589 } 1590 1591 static void rtc_set_cpus_count(ISADevice *rtc, uint16_t cpus_count) 1592 { 1593 if (cpus_count > 0xff) { 1594 /* If the number of CPUs can't be represented in 8 bits, the 1595 * BIOS must use "FW_CFG_NB_CPUS". Set RTC field to 0 just 1596 * to make old BIOSes fail more predictably. 1597 */ 1598 rtc_set_memory(rtc, 0x5f, 0); 1599 } else { 1600 rtc_set_memory(rtc, 0x5f, cpus_count - 1); 1601 } 1602 } 1603 1604 static 1605 void pc_machine_done(Notifier *notifier, void *data) 1606 { 1607 PCMachineState *pcms = container_of(notifier, 1608 PCMachineState, machine_done); 1609 PCIBus *bus = pcms->bus; 1610 1611 /* set the number of CPUs */ 1612 rtc_set_cpus_count(pcms->rtc, pcms->boot_cpus); 1613 1614 if (bus) { 1615 int extra_hosts = 0; 1616 1617 QLIST_FOREACH(bus, &bus->child, sibling) { 1618 /* look for expander root buses */ 1619 if (pci_bus_is_root(bus)) { 1620 extra_hosts++; 1621 } 1622 } 1623 if (extra_hosts && pcms->fw_cfg) { 1624 uint64_t *val = g_malloc(sizeof(*val)); 1625 *val = cpu_to_le64(extra_hosts); 1626 fw_cfg_add_file(pcms->fw_cfg, 1627 "etc/extra-pci-roots", val, sizeof(*val)); 1628 } 1629 } 1630 1631 acpi_setup(); 1632 if (pcms->fw_cfg) { 1633 pc_build_smbios(pcms); 1634 pc_build_feature_control_file(pcms); 1635 /* update FW_CFG_NB_CPUS to account for -device added CPUs */ 1636 fw_cfg_modify_i16(pcms->fw_cfg, FW_CFG_NB_CPUS, pcms->boot_cpus); 1637 } 1638 1639 if (pcms->apic_id_limit > 255 && !xen_enabled()) { 1640 IntelIOMMUState *iommu = INTEL_IOMMU_DEVICE(x86_iommu_get_default()); 1641 1642 if (!iommu || !x86_iommu_ir_supported(X86_IOMMU_DEVICE(iommu)) || 1643 iommu->intr_eim != ON_OFF_AUTO_ON) { 1644 error_report("current -smp configuration requires " 1645 "Extended Interrupt Mode enabled. " 1646 "You can add an IOMMU using: " 1647 "-device intel-iommu,intremap=on,eim=on"); 1648 exit(EXIT_FAILURE); 1649 } 1650 } 1651 } 1652 1653 void pc_guest_info_init(PCMachineState *pcms) 1654 { 1655 int i; 1656 1657 pcms->apic_xrupt_override = kvm_allows_irq0_override(); 1658 pcms->numa_nodes = nb_numa_nodes; 1659 pcms->node_mem = g_malloc0(pcms->numa_nodes * 1660 sizeof *pcms->node_mem); 1661 for (i = 0; i < nb_numa_nodes; i++) { 1662 pcms->node_mem[i] = numa_info[i].node_mem; 1663 } 1664 1665 pcms->machine_done.notify = pc_machine_done; 1666 qemu_add_machine_init_done_notifier(&pcms->machine_done); 1667 } 1668 1669 /* setup pci memory address space mapping into system address space */ 1670 void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory, 1671 MemoryRegion *pci_address_space) 1672 { 1673 /* Set to lower priority than RAM */ 1674 memory_region_add_subregion_overlap(system_memory, 0x0, 1675 pci_address_space, -1); 1676 } 1677 1678 void pc_acpi_init(const char *default_dsdt) 1679 { 1680 char *filename; 1681 1682 if (acpi_tables != NULL) { 1683 /* manually set via -acpitable, leave it alone */ 1684 return; 1685 } 1686 1687 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, default_dsdt); 1688 if (filename == NULL) { 1689 warn_report("failed to find %s", default_dsdt); 1690 } else { 1691 QemuOpts *opts = qemu_opts_create(qemu_find_opts("acpi"), NULL, 0, 1692 &error_abort); 1693 Error *err = NULL; 1694 1695 qemu_opt_set(opts, "file", filename, &error_abort); 1696 1697 acpi_table_add_builtin(opts, &err); 1698 if (err) { 1699 warn_reportf_err(err, "failed to load %s: ", filename); 1700 } 1701 g_free(filename); 1702 } 1703 } 1704 1705 void xen_load_linux(PCMachineState *pcms) 1706 { 1707 int i; 1708 FWCfgState *fw_cfg; 1709 1710 assert(MACHINE(pcms)->kernel_filename != NULL); 1711 1712 fw_cfg = fw_cfg_init_io(FW_CFG_IO_BASE); 1713 fw_cfg_add_i16(fw_cfg, FW_CFG_NB_CPUS, pcms->boot_cpus); 1714 rom_set_fw(fw_cfg); 1715 1716 load_linux(pcms, fw_cfg); 1717 for (i = 0; i < nb_option_roms; i++) { 1718 assert(!strcmp(option_rom[i].name, "linuxboot.bin") || 1719 !strcmp(option_rom[i].name, "linuxboot_dma.bin") || 1720 !strcmp(option_rom[i].name, "pvh.bin") || 1721 !strcmp(option_rom[i].name, "multiboot.bin")); 1722 rom_add_option(option_rom[i].name, option_rom[i].bootindex); 1723 } 1724 pcms->fw_cfg = fw_cfg; 1725 } 1726 1727 void pc_memory_init(PCMachineState *pcms, 1728 MemoryRegion *system_memory, 1729 MemoryRegion *rom_memory, 1730 MemoryRegion **ram_memory) 1731 { 1732 int linux_boot, i; 1733 MemoryRegion *ram, *option_rom_mr; 1734 MemoryRegion *ram_below_4g, *ram_above_4g; 1735 FWCfgState *fw_cfg; 1736 MachineState *machine = MACHINE(pcms); 1737 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms); 1738 1739 assert(machine->ram_size == pcms->below_4g_mem_size + 1740 pcms->above_4g_mem_size); 1741 1742 linux_boot = (machine->kernel_filename != NULL); 1743 1744 /* Allocate RAM. We allocate it as a single memory region and use 1745 * aliases to address portions of it, mostly for backwards compatibility 1746 * with older qemus that used qemu_ram_alloc(). 1747 */ 1748 ram = g_malloc(sizeof(*ram)); 1749 memory_region_allocate_system_memory(ram, NULL, "pc.ram", 1750 machine->ram_size); 1751 *ram_memory = ram; 1752 ram_below_4g = g_malloc(sizeof(*ram_below_4g)); 1753 memory_region_init_alias(ram_below_4g, NULL, "ram-below-4g", ram, 1754 0, pcms->below_4g_mem_size); 1755 memory_region_add_subregion(system_memory, 0, ram_below_4g); 1756 e820_add_entry(0, pcms->below_4g_mem_size, E820_RAM); 1757 if (pcms->above_4g_mem_size > 0) { 1758 ram_above_4g = g_malloc(sizeof(*ram_above_4g)); 1759 memory_region_init_alias(ram_above_4g, NULL, "ram-above-4g", ram, 1760 pcms->below_4g_mem_size, 1761 pcms->above_4g_mem_size); 1762 memory_region_add_subregion(system_memory, 0x100000000ULL, 1763 ram_above_4g); 1764 e820_add_entry(0x100000000ULL, pcms->above_4g_mem_size, E820_RAM); 1765 } 1766 1767 if (!pcmc->has_reserved_memory && 1768 (machine->ram_slots || 1769 (machine->maxram_size > machine->ram_size))) { 1770 MachineClass *mc = MACHINE_GET_CLASS(machine); 1771 1772 error_report("\"-memory 'slots|maxmem'\" is not supported by: %s", 1773 mc->name); 1774 exit(EXIT_FAILURE); 1775 } 1776 1777 /* always allocate the device memory information */ 1778 machine->device_memory = g_malloc0(sizeof(*machine->device_memory)); 1779 1780 /* initialize device memory address space */ 1781 if (pcmc->has_reserved_memory && 1782 (machine->ram_size < machine->maxram_size)) { 1783 ram_addr_t device_mem_size = machine->maxram_size - machine->ram_size; 1784 1785 if (machine->ram_slots > ACPI_MAX_RAM_SLOTS) { 1786 error_report("unsupported amount of memory slots: %"PRIu64, 1787 machine->ram_slots); 1788 exit(EXIT_FAILURE); 1789 } 1790 1791 if (QEMU_ALIGN_UP(machine->maxram_size, 1792 TARGET_PAGE_SIZE) != machine->maxram_size) { 1793 error_report("maximum memory size must by aligned to multiple of " 1794 "%d bytes", TARGET_PAGE_SIZE); 1795 exit(EXIT_FAILURE); 1796 } 1797 1798 machine->device_memory->base = 1799 ROUND_UP(0x100000000ULL + pcms->above_4g_mem_size, 1 * GiB); 1800 1801 if (pcmc->enforce_aligned_dimm) { 1802 /* size device region assuming 1G page max alignment per slot */ 1803 device_mem_size += (1 * GiB) * machine->ram_slots; 1804 } 1805 1806 if ((machine->device_memory->base + device_mem_size) < 1807 device_mem_size) { 1808 error_report("unsupported amount of maximum memory: " RAM_ADDR_FMT, 1809 machine->maxram_size); 1810 exit(EXIT_FAILURE); 1811 } 1812 1813 memory_region_init(&machine->device_memory->mr, OBJECT(pcms), 1814 "device-memory", device_mem_size); 1815 memory_region_add_subregion(system_memory, machine->device_memory->base, 1816 &machine->device_memory->mr); 1817 } 1818 1819 /* Initialize PC system firmware */ 1820 pc_system_firmware_init(rom_memory, !pcmc->pci_enabled); 1821 1822 option_rom_mr = g_malloc(sizeof(*option_rom_mr)); 1823 memory_region_init_ram(option_rom_mr, NULL, "pc.rom", PC_ROM_SIZE, 1824 &error_fatal); 1825 if (pcmc->pci_enabled) { 1826 memory_region_set_readonly(option_rom_mr, true); 1827 } 1828 memory_region_add_subregion_overlap(rom_memory, 1829 PC_ROM_MIN_VGA, 1830 option_rom_mr, 1831 1); 1832 1833 fw_cfg = bochs_bios_init(&address_space_memory, pcms); 1834 1835 rom_set_fw(fw_cfg); 1836 1837 if (pcmc->has_reserved_memory && machine->device_memory->base) { 1838 uint64_t *val = g_malloc(sizeof(*val)); 1839 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms); 1840 uint64_t res_mem_end = machine->device_memory->base; 1841 1842 if (!pcmc->broken_reserved_end) { 1843 res_mem_end += memory_region_size(&machine->device_memory->mr); 1844 } 1845 *val = cpu_to_le64(ROUND_UP(res_mem_end, 1 * GiB)); 1846 fw_cfg_add_file(fw_cfg, "etc/reserved-memory-end", val, sizeof(*val)); 1847 } 1848 1849 if (linux_boot) { 1850 load_linux(pcms, fw_cfg); 1851 } 1852 1853 for (i = 0; i < nb_option_roms; i++) { 1854 rom_add_option(option_rom[i].name, option_rom[i].bootindex); 1855 } 1856 pcms->fw_cfg = fw_cfg; 1857 1858 /* Init default IOAPIC address space */ 1859 pcms->ioapic_as = &address_space_memory; 1860 } 1861 1862 /* 1863 * The 64bit pci hole starts after "above 4G RAM" and 1864 * potentially the space reserved for memory hotplug. 1865 */ 1866 uint64_t pc_pci_hole64_start(void) 1867 { 1868 PCMachineState *pcms = PC_MACHINE(qdev_get_machine()); 1869 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms); 1870 MachineState *ms = MACHINE(pcms); 1871 uint64_t hole64_start = 0; 1872 1873 if (pcmc->has_reserved_memory && ms->device_memory->base) { 1874 hole64_start = ms->device_memory->base; 1875 if (!pcmc->broken_reserved_end) { 1876 hole64_start += memory_region_size(&ms->device_memory->mr); 1877 } 1878 } else { 1879 hole64_start = 0x100000000ULL + pcms->above_4g_mem_size; 1880 } 1881 1882 return ROUND_UP(hole64_start, 1 * GiB); 1883 } 1884 1885 qemu_irq pc_allocate_cpu_irq(void) 1886 { 1887 return qemu_allocate_irq(pic_irq_request, NULL, 0); 1888 } 1889 1890 DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus) 1891 { 1892 DeviceState *dev = NULL; 1893 1894 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_VGA); 1895 if (pci_bus) { 1896 PCIDevice *pcidev = pci_vga_init(pci_bus); 1897 dev = pcidev ? &pcidev->qdev : NULL; 1898 } else if (isa_bus) { 1899 ISADevice *isadev = isa_vga_init(isa_bus); 1900 dev = isadev ? DEVICE(isadev) : NULL; 1901 } 1902 rom_reset_order_override(); 1903 return dev; 1904 } 1905 1906 static const MemoryRegionOps ioport80_io_ops = { 1907 .write = ioport80_write, 1908 .read = ioport80_read, 1909 .endianness = DEVICE_NATIVE_ENDIAN, 1910 .impl = { 1911 .min_access_size = 1, 1912 .max_access_size = 1, 1913 }, 1914 }; 1915 1916 static const MemoryRegionOps ioportF0_io_ops = { 1917 .write = ioportF0_write, 1918 .read = ioportF0_read, 1919 .endianness = DEVICE_NATIVE_ENDIAN, 1920 .impl = { 1921 .min_access_size = 1, 1922 .max_access_size = 1, 1923 }, 1924 }; 1925 1926 static void pc_superio_init(ISABus *isa_bus, bool create_fdctrl, bool no_vmport) 1927 { 1928 int i; 1929 DriveInfo *fd[MAX_FD]; 1930 qemu_irq *a20_line; 1931 ISADevice *i8042, *port92, *vmmouse; 1932 1933 serial_hds_isa_init(isa_bus, 0, MAX_ISA_SERIAL_PORTS); 1934 parallel_hds_isa_init(isa_bus, MAX_PARALLEL_PORTS); 1935 1936 for (i = 0; i < MAX_FD; i++) { 1937 fd[i] = drive_get(IF_FLOPPY, 0, i); 1938 create_fdctrl |= !!fd[i]; 1939 } 1940 if (create_fdctrl) { 1941 fdctrl_init_isa(isa_bus, fd); 1942 } 1943 1944 i8042 = isa_create_simple(isa_bus, "i8042"); 1945 if (!no_vmport) { 1946 vmport_init(isa_bus); 1947 vmmouse = isa_try_create(isa_bus, "vmmouse"); 1948 } else { 1949 vmmouse = NULL; 1950 } 1951 if (vmmouse) { 1952 DeviceState *dev = DEVICE(vmmouse); 1953 qdev_prop_set_ptr(dev, "ps2_mouse", i8042); 1954 qdev_init_nofail(dev); 1955 } 1956 port92 = isa_create_simple(isa_bus, "port92"); 1957 1958 a20_line = qemu_allocate_irqs(handle_a20_line_change, first_cpu, 2); 1959 i8042_setup_a20_line(i8042, a20_line[0]); 1960 port92_init(port92, a20_line[1]); 1961 g_free(a20_line); 1962 } 1963 1964 void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi, 1965 ISADevice **rtc_state, 1966 bool create_fdctrl, 1967 bool no_vmport, 1968 bool has_pit, 1969 uint32_t hpet_irqs) 1970 { 1971 int i; 1972 DeviceState *hpet = NULL; 1973 int pit_isa_irq = 0; 1974 qemu_irq pit_alt_irq = NULL; 1975 qemu_irq rtc_irq = NULL; 1976 ISADevice *pit = NULL; 1977 MemoryRegion *ioport80_io = g_new(MemoryRegion, 1); 1978 MemoryRegion *ioportF0_io = g_new(MemoryRegion, 1); 1979 1980 memory_region_init_io(ioport80_io, NULL, &ioport80_io_ops, NULL, "ioport80", 1); 1981 memory_region_add_subregion(isa_bus->address_space_io, 0x80, ioport80_io); 1982 1983 memory_region_init_io(ioportF0_io, NULL, &ioportF0_io_ops, NULL, "ioportF0", 1); 1984 memory_region_add_subregion(isa_bus->address_space_io, 0xf0, ioportF0_io); 1985 1986 /* 1987 * Check if an HPET shall be created. 1988 * 1989 * Without KVM_CAP_PIT_STATE2, we cannot switch off the in-kernel PIT 1990 * when the HPET wants to take over. Thus we have to disable the latter. 1991 */ 1992 if (!no_hpet && (!kvm_irqchip_in_kernel() || kvm_has_pit_state2())) { 1993 /* In order to set property, here not using sysbus_try_create_simple */ 1994 hpet = qdev_try_create(NULL, TYPE_HPET); 1995 if (hpet) { 1996 /* For pc-piix-*, hpet's intcap is always IRQ2. For pc-q35-1.7 1997 * and earlier, use IRQ2 for compat. Otherwise, use IRQ16~23, 1998 * IRQ8 and IRQ2. 1999 */ 2000 uint8_t compat = object_property_get_uint(OBJECT(hpet), 2001 HPET_INTCAP, NULL); 2002 if (!compat) { 2003 qdev_prop_set_uint32(hpet, HPET_INTCAP, hpet_irqs); 2004 } 2005 qdev_init_nofail(hpet); 2006 sysbus_mmio_map(SYS_BUS_DEVICE(hpet), 0, HPET_BASE); 2007 2008 for (i = 0; i < GSI_NUM_PINS; i++) { 2009 sysbus_connect_irq(SYS_BUS_DEVICE(hpet), i, gsi[i]); 2010 } 2011 pit_isa_irq = -1; 2012 pit_alt_irq = qdev_get_gpio_in(hpet, HPET_LEGACY_PIT_INT); 2013 rtc_irq = qdev_get_gpio_in(hpet, HPET_LEGACY_RTC_INT); 2014 } 2015 } 2016 *rtc_state = mc146818_rtc_init(isa_bus, 2000, rtc_irq); 2017 2018 qemu_register_boot_set(pc_boot_set, *rtc_state); 2019 2020 if (!xen_enabled() && has_pit) { 2021 if (kvm_pit_in_kernel()) { 2022 pit = kvm_pit_init(isa_bus, 0x40); 2023 } else { 2024 pit = i8254_pit_init(isa_bus, 0x40, pit_isa_irq, pit_alt_irq); 2025 } 2026 if (hpet) { 2027 /* connect PIT to output control line of the HPET */ 2028 qdev_connect_gpio_out(hpet, 0, qdev_get_gpio_in(DEVICE(pit), 0)); 2029 } 2030 pcspk_init(isa_bus, pit); 2031 } 2032 2033 i8257_dma_init(isa_bus, 0); 2034 2035 /* Super I/O */ 2036 pc_superio_init(isa_bus, create_fdctrl, no_vmport); 2037 } 2038 2039 void pc_nic_init(PCMachineClass *pcmc, ISABus *isa_bus, PCIBus *pci_bus) 2040 { 2041 int i; 2042 2043 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_NIC); 2044 for (i = 0; i < nb_nics; i++) { 2045 NICInfo *nd = &nd_table[i]; 2046 const char *model = nd->model ? nd->model : pcmc->default_nic_model; 2047 2048 if (g_str_equal(model, "ne2k_isa")) { 2049 pc_init_ne2k_isa(isa_bus, nd); 2050 } else { 2051 pci_nic_init_nofail(nd, pci_bus, model, NULL); 2052 } 2053 } 2054 rom_reset_order_override(); 2055 } 2056 2057 void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name) 2058 { 2059 DeviceState *dev; 2060 SysBusDevice *d; 2061 unsigned int i; 2062 2063 if (kvm_ioapic_in_kernel()) { 2064 dev = qdev_create(NULL, TYPE_KVM_IOAPIC); 2065 } else { 2066 dev = qdev_create(NULL, TYPE_IOAPIC); 2067 } 2068 if (parent_name) { 2069 object_property_add_child(object_resolve_path(parent_name, NULL), 2070 "ioapic", OBJECT(dev), NULL); 2071 } 2072 qdev_init_nofail(dev); 2073 d = SYS_BUS_DEVICE(dev); 2074 sysbus_mmio_map(d, 0, IO_APIC_DEFAULT_ADDRESS); 2075 2076 for (i = 0; i < IOAPIC_NUM_PINS; i++) { 2077 gsi_state->ioapic_irq[i] = qdev_get_gpio_in(dev, i); 2078 } 2079 } 2080 2081 static void pc_memory_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev, 2082 Error **errp) 2083 { 2084 const PCMachineState *pcms = PC_MACHINE(hotplug_dev); 2085 const PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms); 2086 const bool is_nvdimm = object_dynamic_cast(OBJECT(dev), TYPE_NVDIMM); 2087 const uint64_t legacy_align = TARGET_PAGE_SIZE; 2088 2089 /* 2090 * When -no-acpi is used with Q35 machine type, no ACPI is built, 2091 * but pcms->acpi_dev is still created. Check !acpi_enabled in 2092 * addition to cover this case. 2093 */ 2094 if (!pcms->acpi_dev || !acpi_enabled) { 2095 error_setg(errp, 2096 "memory hotplug is not enabled: missing acpi device or acpi disabled"); 2097 return; 2098 } 2099 2100 if (is_nvdimm && !pcms->acpi_nvdimm_state.is_enabled) { 2101 error_setg(errp, "nvdimm is not enabled: missing 'nvdimm' in '-M'"); 2102 return; 2103 } 2104 2105 pc_dimm_pre_plug(PC_DIMM(dev), MACHINE(hotplug_dev), 2106 pcmc->enforce_aligned_dimm ? NULL : &legacy_align, errp); 2107 } 2108 2109 static void pc_memory_plug(HotplugHandler *hotplug_dev, 2110 DeviceState *dev, Error **errp) 2111 { 2112 HotplugHandlerClass *hhc; 2113 Error *local_err = NULL; 2114 PCMachineState *pcms = PC_MACHINE(hotplug_dev); 2115 bool is_nvdimm = object_dynamic_cast(OBJECT(dev), TYPE_NVDIMM); 2116 2117 pc_dimm_plug(PC_DIMM(dev), MACHINE(pcms), &local_err); 2118 if (local_err) { 2119 goto out; 2120 } 2121 2122 if (is_nvdimm) { 2123 nvdimm_plug(&pcms->acpi_nvdimm_state); 2124 } 2125 2126 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev); 2127 hhc->plug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &error_abort); 2128 out: 2129 error_propagate(errp, local_err); 2130 } 2131 2132 static void pc_memory_unplug_request(HotplugHandler *hotplug_dev, 2133 DeviceState *dev, Error **errp) 2134 { 2135 HotplugHandlerClass *hhc; 2136 Error *local_err = NULL; 2137 PCMachineState *pcms = PC_MACHINE(hotplug_dev); 2138 2139 /* 2140 * When -no-acpi is used with Q35 machine type, no ACPI is built, 2141 * but pcms->acpi_dev is still created. Check !acpi_enabled in 2142 * addition to cover this case. 2143 */ 2144 if (!pcms->acpi_dev || !acpi_enabled) { 2145 error_setg(&local_err, 2146 "memory hotplug is not enabled: missing acpi device or acpi disabled"); 2147 goto out; 2148 } 2149 2150 if (object_dynamic_cast(OBJECT(dev), TYPE_NVDIMM)) { 2151 error_setg(&local_err, 2152 "nvdimm device hot unplug is not supported yet."); 2153 goto out; 2154 } 2155 2156 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev); 2157 hhc->unplug_request(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err); 2158 2159 out: 2160 error_propagate(errp, local_err); 2161 } 2162 2163 static void pc_memory_unplug(HotplugHandler *hotplug_dev, 2164 DeviceState *dev, Error **errp) 2165 { 2166 PCMachineState *pcms = PC_MACHINE(hotplug_dev); 2167 HotplugHandlerClass *hhc; 2168 Error *local_err = NULL; 2169 2170 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev); 2171 hhc->unplug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err); 2172 2173 if (local_err) { 2174 goto out; 2175 } 2176 2177 pc_dimm_unplug(PC_DIMM(dev), MACHINE(pcms)); 2178 object_unparent(OBJECT(dev)); 2179 2180 out: 2181 error_propagate(errp, local_err); 2182 } 2183 2184 static int pc_apic_cmp(const void *a, const void *b) 2185 { 2186 CPUArchId *apic_a = (CPUArchId *)a; 2187 CPUArchId *apic_b = (CPUArchId *)b; 2188 2189 return apic_a->arch_id - apic_b->arch_id; 2190 } 2191 2192 /* returns pointer to CPUArchId descriptor that matches CPU's apic_id 2193 * in ms->possible_cpus->cpus, if ms->possible_cpus->cpus has no 2194 * entry corresponding to CPU's apic_id returns NULL. 2195 */ 2196 static CPUArchId *pc_find_cpu_slot(MachineState *ms, uint32_t id, int *idx) 2197 { 2198 CPUArchId apic_id, *found_cpu; 2199 2200 apic_id.arch_id = id; 2201 found_cpu = bsearch(&apic_id, ms->possible_cpus->cpus, 2202 ms->possible_cpus->len, sizeof(*ms->possible_cpus->cpus), 2203 pc_apic_cmp); 2204 if (found_cpu && idx) { 2205 *idx = found_cpu - ms->possible_cpus->cpus; 2206 } 2207 return found_cpu; 2208 } 2209 2210 static void pc_cpu_plug(HotplugHandler *hotplug_dev, 2211 DeviceState *dev, Error **errp) 2212 { 2213 CPUArchId *found_cpu; 2214 HotplugHandlerClass *hhc; 2215 Error *local_err = NULL; 2216 X86CPU *cpu = X86_CPU(dev); 2217 PCMachineState *pcms = PC_MACHINE(hotplug_dev); 2218 2219 if (pcms->acpi_dev) { 2220 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev); 2221 hhc->plug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err); 2222 if (local_err) { 2223 goto out; 2224 } 2225 } 2226 2227 /* increment the number of CPUs */ 2228 pcms->boot_cpus++; 2229 if (pcms->rtc) { 2230 rtc_set_cpus_count(pcms->rtc, pcms->boot_cpus); 2231 } 2232 if (pcms->fw_cfg) { 2233 fw_cfg_modify_i16(pcms->fw_cfg, FW_CFG_NB_CPUS, pcms->boot_cpus); 2234 } 2235 2236 found_cpu = pc_find_cpu_slot(MACHINE(pcms), cpu->apic_id, NULL); 2237 found_cpu->cpu = OBJECT(dev); 2238 out: 2239 error_propagate(errp, local_err); 2240 } 2241 static void pc_cpu_unplug_request_cb(HotplugHandler *hotplug_dev, 2242 DeviceState *dev, Error **errp) 2243 { 2244 int idx = -1; 2245 HotplugHandlerClass *hhc; 2246 Error *local_err = NULL; 2247 X86CPU *cpu = X86_CPU(dev); 2248 PCMachineState *pcms = PC_MACHINE(hotplug_dev); 2249 2250 if (!pcms->acpi_dev) { 2251 error_setg(&local_err, "CPU hot unplug not supported without ACPI"); 2252 goto out; 2253 } 2254 2255 pc_find_cpu_slot(MACHINE(pcms), cpu->apic_id, &idx); 2256 assert(idx != -1); 2257 if (idx == 0) { 2258 error_setg(&local_err, "Boot CPU is unpluggable"); 2259 goto out; 2260 } 2261 2262 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev); 2263 hhc->unplug_request(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err); 2264 2265 if (local_err) { 2266 goto out; 2267 } 2268 2269 out: 2270 error_propagate(errp, local_err); 2271 2272 } 2273 2274 static void pc_cpu_unplug_cb(HotplugHandler *hotplug_dev, 2275 DeviceState *dev, Error **errp) 2276 { 2277 CPUArchId *found_cpu; 2278 HotplugHandlerClass *hhc; 2279 Error *local_err = NULL; 2280 X86CPU *cpu = X86_CPU(dev); 2281 PCMachineState *pcms = PC_MACHINE(hotplug_dev); 2282 2283 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev); 2284 hhc->unplug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err); 2285 2286 if (local_err) { 2287 goto out; 2288 } 2289 2290 found_cpu = pc_find_cpu_slot(MACHINE(pcms), cpu->apic_id, NULL); 2291 found_cpu->cpu = NULL; 2292 object_unparent(OBJECT(dev)); 2293 2294 /* decrement the number of CPUs */ 2295 pcms->boot_cpus--; 2296 /* Update the number of CPUs in CMOS */ 2297 rtc_set_cpus_count(pcms->rtc, pcms->boot_cpus); 2298 fw_cfg_modify_i16(pcms->fw_cfg, FW_CFG_NB_CPUS, pcms->boot_cpus); 2299 out: 2300 error_propagate(errp, local_err); 2301 } 2302 2303 static void pc_cpu_pre_plug(HotplugHandler *hotplug_dev, 2304 DeviceState *dev, Error **errp) 2305 { 2306 int idx; 2307 CPUState *cs; 2308 CPUArchId *cpu_slot; 2309 X86CPUTopoInfo topo; 2310 X86CPU *cpu = X86_CPU(dev); 2311 MachineState *ms = MACHINE(hotplug_dev); 2312 PCMachineState *pcms = PC_MACHINE(hotplug_dev); 2313 2314 if(!object_dynamic_cast(OBJECT(cpu), ms->cpu_type)) { 2315 error_setg(errp, "Invalid CPU type, expected cpu type: '%s'", 2316 ms->cpu_type); 2317 return; 2318 } 2319 2320 /* if APIC ID is not set, set it based on socket/core/thread properties */ 2321 if (cpu->apic_id == UNASSIGNED_APIC_ID) { 2322 int max_socket = (max_cpus - 1) / smp_threads / smp_cores; 2323 2324 if (cpu->socket_id < 0) { 2325 error_setg(errp, "CPU socket-id is not set"); 2326 return; 2327 } else if (cpu->socket_id > max_socket) { 2328 error_setg(errp, "Invalid CPU socket-id: %u must be in range 0:%u", 2329 cpu->socket_id, max_socket); 2330 return; 2331 } 2332 if (cpu->core_id < 0) { 2333 error_setg(errp, "CPU core-id is not set"); 2334 return; 2335 } else if (cpu->core_id > (smp_cores - 1)) { 2336 error_setg(errp, "Invalid CPU core-id: %u must be in range 0:%u", 2337 cpu->core_id, smp_cores - 1); 2338 return; 2339 } 2340 if (cpu->thread_id < 0) { 2341 error_setg(errp, "CPU thread-id is not set"); 2342 return; 2343 } else if (cpu->thread_id > (smp_threads - 1)) { 2344 error_setg(errp, "Invalid CPU thread-id: %u must be in range 0:%u", 2345 cpu->thread_id, smp_threads - 1); 2346 return; 2347 } 2348 2349 topo.pkg_id = cpu->socket_id; 2350 topo.core_id = cpu->core_id; 2351 topo.smt_id = cpu->thread_id; 2352 cpu->apic_id = apicid_from_topo_ids(smp_cores, smp_threads, &topo); 2353 } 2354 2355 cpu_slot = pc_find_cpu_slot(MACHINE(pcms), cpu->apic_id, &idx); 2356 if (!cpu_slot) { 2357 MachineState *ms = MACHINE(pcms); 2358 2359 x86_topo_ids_from_apicid(cpu->apic_id, smp_cores, smp_threads, &topo); 2360 error_setg(errp, "Invalid CPU [socket: %u, core: %u, thread: %u] with" 2361 " APIC ID %" PRIu32 ", valid index range 0:%d", 2362 topo.pkg_id, topo.core_id, topo.smt_id, cpu->apic_id, 2363 ms->possible_cpus->len - 1); 2364 return; 2365 } 2366 2367 if (cpu_slot->cpu) { 2368 error_setg(errp, "CPU[%d] with APIC ID %" PRIu32 " exists", 2369 idx, cpu->apic_id); 2370 return; 2371 } 2372 2373 /* if 'address' properties socket-id/core-id/thread-id are not set, set them 2374 * so that machine_query_hotpluggable_cpus would show correct values 2375 */ 2376 /* TODO: move socket_id/core_id/thread_id checks into x86_cpu_realizefn() 2377 * once -smp refactoring is complete and there will be CPU private 2378 * CPUState::nr_cores and CPUState::nr_threads fields instead of globals */ 2379 x86_topo_ids_from_apicid(cpu->apic_id, smp_cores, smp_threads, &topo); 2380 if (cpu->socket_id != -1 && cpu->socket_id != topo.pkg_id) { 2381 error_setg(errp, "property socket-id: %u doesn't match set apic-id:" 2382 " 0x%x (socket-id: %u)", cpu->socket_id, cpu->apic_id, topo.pkg_id); 2383 return; 2384 } 2385 cpu->socket_id = topo.pkg_id; 2386 2387 if (cpu->core_id != -1 && cpu->core_id != topo.core_id) { 2388 error_setg(errp, "property core-id: %u doesn't match set apic-id:" 2389 " 0x%x (core-id: %u)", cpu->core_id, cpu->apic_id, topo.core_id); 2390 return; 2391 } 2392 cpu->core_id = topo.core_id; 2393 2394 if (cpu->thread_id != -1 && cpu->thread_id != topo.smt_id) { 2395 error_setg(errp, "property thread-id: %u doesn't match set apic-id:" 2396 " 0x%x (thread-id: %u)", cpu->thread_id, cpu->apic_id, topo.smt_id); 2397 return; 2398 } 2399 cpu->thread_id = topo.smt_id; 2400 2401 if (cpu->hyperv_vpindex && !kvm_hv_vpindex_settable()) { 2402 error_setg(errp, "kernel doesn't allow setting HyperV VP_INDEX"); 2403 return; 2404 } 2405 2406 cs = CPU(cpu); 2407 cs->cpu_index = idx; 2408 2409 numa_cpu_pre_plug(cpu_slot, dev, errp); 2410 } 2411 2412 static void pc_machine_device_pre_plug_cb(HotplugHandler *hotplug_dev, 2413 DeviceState *dev, Error **errp) 2414 { 2415 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) { 2416 pc_memory_pre_plug(hotplug_dev, dev, errp); 2417 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) { 2418 pc_cpu_pre_plug(hotplug_dev, dev, errp); 2419 } 2420 } 2421 2422 static void pc_machine_device_plug_cb(HotplugHandler *hotplug_dev, 2423 DeviceState *dev, Error **errp) 2424 { 2425 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) { 2426 pc_memory_plug(hotplug_dev, dev, errp); 2427 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) { 2428 pc_cpu_plug(hotplug_dev, dev, errp); 2429 } 2430 } 2431 2432 static void pc_machine_device_unplug_request_cb(HotplugHandler *hotplug_dev, 2433 DeviceState *dev, Error **errp) 2434 { 2435 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) { 2436 pc_memory_unplug_request(hotplug_dev, dev, errp); 2437 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) { 2438 pc_cpu_unplug_request_cb(hotplug_dev, dev, errp); 2439 } else { 2440 error_setg(errp, "acpi: device unplug request for not supported device" 2441 " type: %s", object_get_typename(OBJECT(dev))); 2442 } 2443 } 2444 2445 static void pc_machine_device_unplug_cb(HotplugHandler *hotplug_dev, 2446 DeviceState *dev, Error **errp) 2447 { 2448 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) { 2449 pc_memory_unplug(hotplug_dev, dev, errp); 2450 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) { 2451 pc_cpu_unplug_cb(hotplug_dev, dev, errp); 2452 } else { 2453 error_setg(errp, "acpi: device unplug for not supported device" 2454 " type: %s", object_get_typename(OBJECT(dev))); 2455 } 2456 } 2457 2458 static HotplugHandler *pc_get_hotplug_handler(MachineState *machine, 2459 DeviceState *dev) 2460 { 2461 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM) || 2462 object_dynamic_cast(OBJECT(dev), TYPE_CPU)) { 2463 return HOTPLUG_HANDLER(machine); 2464 } 2465 2466 return NULL; 2467 } 2468 2469 static void 2470 pc_machine_get_device_memory_region_size(Object *obj, Visitor *v, 2471 const char *name, void *opaque, 2472 Error **errp) 2473 { 2474 MachineState *ms = MACHINE(obj); 2475 int64_t value = memory_region_size(&ms->device_memory->mr); 2476 2477 visit_type_int(v, name, &value, errp); 2478 } 2479 2480 static void pc_machine_get_max_ram_below_4g(Object *obj, Visitor *v, 2481 const char *name, void *opaque, 2482 Error **errp) 2483 { 2484 PCMachineState *pcms = PC_MACHINE(obj); 2485 uint64_t value = pcms->max_ram_below_4g; 2486 2487 visit_type_size(v, name, &value, errp); 2488 } 2489 2490 static void pc_machine_set_max_ram_below_4g(Object *obj, Visitor *v, 2491 const char *name, void *opaque, 2492 Error **errp) 2493 { 2494 PCMachineState *pcms = PC_MACHINE(obj); 2495 Error *error = NULL; 2496 uint64_t value; 2497 2498 visit_type_size(v, name, &value, &error); 2499 if (error) { 2500 error_propagate(errp, error); 2501 return; 2502 } 2503 if (value > 4 * GiB) { 2504 error_setg(&error, 2505 "Machine option 'max-ram-below-4g=%"PRIu64 2506 "' expects size less than or equal to 4G", value); 2507 error_propagate(errp, error); 2508 return; 2509 } 2510 2511 if (value < 1 * MiB) { 2512 warn_report("Only %" PRIu64 " bytes of RAM below the 4GiB boundary," 2513 "BIOS may not work with less than 1MiB", value); 2514 } 2515 2516 pcms->max_ram_below_4g = value; 2517 } 2518 2519 static void pc_machine_get_vmport(Object *obj, Visitor *v, const char *name, 2520 void *opaque, Error **errp) 2521 { 2522 PCMachineState *pcms = PC_MACHINE(obj); 2523 OnOffAuto vmport = pcms->vmport; 2524 2525 visit_type_OnOffAuto(v, name, &vmport, errp); 2526 } 2527 2528 static void pc_machine_set_vmport(Object *obj, Visitor *v, const char *name, 2529 void *opaque, Error **errp) 2530 { 2531 PCMachineState *pcms = PC_MACHINE(obj); 2532 2533 visit_type_OnOffAuto(v, name, &pcms->vmport, errp); 2534 } 2535 2536 bool pc_machine_is_smm_enabled(PCMachineState *pcms) 2537 { 2538 bool smm_available = false; 2539 2540 if (pcms->smm == ON_OFF_AUTO_OFF) { 2541 return false; 2542 } 2543 2544 if (tcg_enabled() || qtest_enabled()) { 2545 smm_available = true; 2546 } else if (kvm_enabled()) { 2547 smm_available = kvm_has_smm(); 2548 } 2549 2550 if (smm_available) { 2551 return true; 2552 } 2553 2554 if (pcms->smm == ON_OFF_AUTO_ON) { 2555 error_report("System Management Mode not supported by this hypervisor."); 2556 exit(1); 2557 } 2558 return false; 2559 } 2560 2561 static void pc_machine_get_smm(Object *obj, Visitor *v, const char *name, 2562 void *opaque, Error **errp) 2563 { 2564 PCMachineState *pcms = PC_MACHINE(obj); 2565 OnOffAuto smm = pcms->smm; 2566 2567 visit_type_OnOffAuto(v, name, &smm, errp); 2568 } 2569 2570 static void pc_machine_set_smm(Object *obj, Visitor *v, const char *name, 2571 void *opaque, Error **errp) 2572 { 2573 PCMachineState *pcms = PC_MACHINE(obj); 2574 2575 visit_type_OnOffAuto(v, name, &pcms->smm, errp); 2576 } 2577 2578 static bool pc_machine_get_nvdimm(Object *obj, Error **errp) 2579 { 2580 PCMachineState *pcms = PC_MACHINE(obj); 2581 2582 return pcms->acpi_nvdimm_state.is_enabled; 2583 } 2584 2585 static void pc_machine_set_nvdimm(Object *obj, bool value, Error **errp) 2586 { 2587 PCMachineState *pcms = PC_MACHINE(obj); 2588 2589 pcms->acpi_nvdimm_state.is_enabled = value; 2590 } 2591 2592 static char *pc_machine_get_nvdimm_persistence(Object *obj, Error **errp) 2593 { 2594 PCMachineState *pcms = PC_MACHINE(obj); 2595 2596 return g_strdup(pcms->acpi_nvdimm_state.persistence_string); 2597 } 2598 2599 static void pc_machine_set_nvdimm_persistence(Object *obj, const char *value, 2600 Error **errp) 2601 { 2602 PCMachineState *pcms = PC_MACHINE(obj); 2603 AcpiNVDIMMState *nvdimm_state = &pcms->acpi_nvdimm_state; 2604 2605 if (strcmp(value, "cpu") == 0) 2606 nvdimm_state->persistence = 3; 2607 else if (strcmp(value, "mem-ctrl") == 0) 2608 nvdimm_state->persistence = 2; 2609 else { 2610 error_setg(errp, "-machine nvdimm-persistence=%s: unsupported option", 2611 value); 2612 return; 2613 } 2614 2615 g_free(nvdimm_state->persistence_string); 2616 nvdimm_state->persistence_string = g_strdup(value); 2617 } 2618 2619 static bool pc_machine_get_smbus(Object *obj, Error **errp) 2620 { 2621 PCMachineState *pcms = PC_MACHINE(obj); 2622 2623 return pcms->smbus_enabled; 2624 } 2625 2626 static void pc_machine_set_smbus(Object *obj, bool value, Error **errp) 2627 { 2628 PCMachineState *pcms = PC_MACHINE(obj); 2629 2630 pcms->smbus_enabled = value; 2631 } 2632 2633 static bool pc_machine_get_sata(Object *obj, Error **errp) 2634 { 2635 PCMachineState *pcms = PC_MACHINE(obj); 2636 2637 return pcms->sata_enabled; 2638 } 2639 2640 static void pc_machine_set_sata(Object *obj, bool value, Error **errp) 2641 { 2642 PCMachineState *pcms = PC_MACHINE(obj); 2643 2644 pcms->sata_enabled = value; 2645 } 2646 2647 static bool pc_machine_get_pit(Object *obj, Error **errp) 2648 { 2649 PCMachineState *pcms = PC_MACHINE(obj); 2650 2651 return pcms->pit_enabled; 2652 } 2653 2654 static void pc_machine_set_pit(Object *obj, bool value, Error **errp) 2655 { 2656 PCMachineState *pcms = PC_MACHINE(obj); 2657 2658 pcms->pit_enabled = value; 2659 } 2660 2661 static void pc_machine_initfn(Object *obj) 2662 { 2663 PCMachineState *pcms = PC_MACHINE(obj); 2664 2665 pcms->max_ram_below_4g = 0; /* use default */ 2666 pcms->smm = ON_OFF_AUTO_AUTO; 2667 pcms->vmport = ON_OFF_AUTO_AUTO; 2668 /* nvdimm is disabled on default. */ 2669 pcms->acpi_nvdimm_state.is_enabled = false; 2670 /* acpi build is enabled by default if machine supports it */ 2671 pcms->acpi_build_enabled = PC_MACHINE_GET_CLASS(pcms)->has_acpi_build; 2672 pcms->smbus_enabled = true; 2673 pcms->sata_enabled = true; 2674 pcms->pit_enabled = true; 2675 } 2676 2677 static void pc_machine_reset(void) 2678 { 2679 CPUState *cs; 2680 X86CPU *cpu; 2681 2682 qemu_devices_reset(); 2683 2684 /* Reset APIC after devices have been reset to cancel 2685 * any changes that qemu_devices_reset() might have done. 2686 */ 2687 CPU_FOREACH(cs) { 2688 cpu = X86_CPU(cs); 2689 2690 if (cpu->apic_state) { 2691 device_reset(cpu->apic_state); 2692 } 2693 } 2694 } 2695 2696 static CpuInstanceProperties 2697 pc_cpu_index_to_props(MachineState *ms, unsigned cpu_index) 2698 { 2699 MachineClass *mc = MACHINE_GET_CLASS(ms); 2700 const CPUArchIdList *possible_cpus = mc->possible_cpu_arch_ids(ms); 2701 2702 assert(cpu_index < possible_cpus->len); 2703 return possible_cpus->cpus[cpu_index].props; 2704 } 2705 2706 static int64_t pc_get_default_cpu_node_id(const MachineState *ms, int idx) 2707 { 2708 X86CPUTopoInfo topo; 2709 2710 assert(idx < ms->possible_cpus->len); 2711 x86_topo_ids_from_apicid(ms->possible_cpus->cpus[idx].arch_id, 2712 smp_cores, smp_threads, &topo); 2713 return topo.pkg_id % nb_numa_nodes; 2714 } 2715 2716 static const CPUArchIdList *pc_possible_cpu_arch_ids(MachineState *ms) 2717 { 2718 int i; 2719 2720 if (ms->possible_cpus) { 2721 /* 2722 * make sure that max_cpus hasn't changed since the first use, i.e. 2723 * -smp hasn't been parsed after it 2724 */ 2725 assert(ms->possible_cpus->len == max_cpus); 2726 return ms->possible_cpus; 2727 } 2728 2729 ms->possible_cpus = g_malloc0(sizeof(CPUArchIdList) + 2730 sizeof(CPUArchId) * max_cpus); 2731 ms->possible_cpus->len = max_cpus; 2732 for (i = 0; i < ms->possible_cpus->len; i++) { 2733 X86CPUTopoInfo topo; 2734 2735 ms->possible_cpus->cpus[i].type = ms->cpu_type; 2736 ms->possible_cpus->cpus[i].vcpus_count = 1; 2737 ms->possible_cpus->cpus[i].arch_id = x86_cpu_apic_id_from_index(i); 2738 x86_topo_ids_from_apicid(ms->possible_cpus->cpus[i].arch_id, 2739 smp_cores, smp_threads, &topo); 2740 ms->possible_cpus->cpus[i].props.has_socket_id = true; 2741 ms->possible_cpus->cpus[i].props.socket_id = topo.pkg_id; 2742 ms->possible_cpus->cpus[i].props.has_core_id = true; 2743 ms->possible_cpus->cpus[i].props.core_id = topo.core_id; 2744 ms->possible_cpus->cpus[i].props.has_thread_id = true; 2745 ms->possible_cpus->cpus[i].props.thread_id = topo.smt_id; 2746 } 2747 return ms->possible_cpus; 2748 } 2749 2750 static void x86_nmi(NMIState *n, int cpu_index, Error **errp) 2751 { 2752 /* cpu index isn't used */ 2753 CPUState *cs; 2754 2755 CPU_FOREACH(cs) { 2756 X86CPU *cpu = X86_CPU(cs); 2757 2758 if (!cpu->apic_state) { 2759 cpu_interrupt(cs, CPU_INTERRUPT_NMI); 2760 } else { 2761 apic_deliver_nmi(cpu->apic_state); 2762 } 2763 } 2764 } 2765 2766 static void pc_machine_class_init(ObjectClass *oc, void *data) 2767 { 2768 MachineClass *mc = MACHINE_CLASS(oc); 2769 PCMachineClass *pcmc = PC_MACHINE_CLASS(oc); 2770 HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(oc); 2771 NMIClass *nc = NMI_CLASS(oc); 2772 2773 pcmc->pci_enabled = true; 2774 pcmc->has_acpi_build = true; 2775 pcmc->rsdp_in_ram = true; 2776 pcmc->smbios_defaults = true; 2777 pcmc->smbios_uuid_encoded = true; 2778 pcmc->gigabyte_align = true; 2779 pcmc->has_reserved_memory = true; 2780 pcmc->kvmclock_enabled = true; 2781 pcmc->enforce_aligned_dimm = true; 2782 /* BIOS ACPI tables: 128K. Other BIOS datastructures: less than 4K reported 2783 * to be used at the moment, 32K should be enough for a while. */ 2784 pcmc->acpi_data_size = 0x20000 + 0x8000; 2785 pcmc->save_tsc_khz = true; 2786 pcmc->linuxboot_dma_enabled = true; 2787 pcmc->pvh_enabled = true; 2788 assert(!mc->get_hotplug_handler); 2789 mc->get_hotplug_handler = pc_get_hotplug_handler; 2790 mc->cpu_index_to_instance_props = pc_cpu_index_to_props; 2791 mc->get_default_cpu_node_id = pc_get_default_cpu_node_id; 2792 mc->possible_cpu_arch_ids = pc_possible_cpu_arch_ids; 2793 mc->auto_enable_numa_with_memhp = true; 2794 mc->has_hotpluggable_cpus = true; 2795 mc->default_boot_order = "cad"; 2796 mc->hot_add_cpu = pc_hot_add_cpu; 2797 mc->block_default_type = IF_IDE; 2798 mc->max_cpus = 255; 2799 mc->reset = pc_machine_reset; 2800 hc->pre_plug = pc_machine_device_pre_plug_cb; 2801 hc->plug = pc_machine_device_plug_cb; 2802 hc->unplug_request = pc_machine_device_unplug_request_cb; 2803 hc->unplug = pc_machine_device_unplug_cb; 2804 nc->nmi_monitor_handler = x86_nmi; 2805 mc->default_cpu_type = TARGET_DEFAULT_CPU_TYPE; 2806 2807 object_class_property_add(oc, PC_MACHINE_DEVMEM_REGION_SIZE, "int", 2808 pc_machine_get_device_memory_region_size, NULL, 2809 NULL, NULL, &error_abort); 2810 2811 object_class_property_add(oc, PC_MACHINE_MAX_RAM_BELOW_4G, "size", 2812 pc_machine_get_max_ram_below_4g, pc_machine_set_max_ram_below_4g, 2813 NULL, NULL, &error_abort); 2814 2815 object_class_property_set_description(oc, PC_MACHINE_MAX_RAM_BELOW_4G, 2816 "Maximum ram below the 4G boundary (32bit boundary)", &error_abort); 2817 2818 object_class_property_add(oc, PC_MACHINE_SMM, "OnOffAuto", 2819 pc_machine_get_smm, pc_machine_set_smm, 2820 NULL, NULL, &error_abort); 2821 object_class_property_set_description(oc, PC_MACHINE_SMM, 2822 "Enable SMM (pc & q35)", &error_abort); 2823 2824 object_class_property_add(oc, PC_MACHINE_VMPORT, "OnOffAuto", 2825 pc_machine_get_vmport, pc_machine_set_vmport, 2826 NULL, NULL, &error_abort); 2827 object_class_property_set_description(oc, PC_MACHINE_VMPORT, 2828 "Enable vmport (pc & q35)", &error_abort); 2829 2830 object_class_property_add_bool(oc, PC_MACHINE_NVDIMM, 2831 pc_machine_get_nvdimm, pc_machine_set_nvdimm, &error_abort); 2832 2833 object_class_property_add_str(oc, PC_MACHINE_NVDIMM_PERSIST, 2834 pc_machine_get_nvdimm_persistence, 2835 pc_machine_set_nvdimm_persistence, &error_abort); 2836 2837 object_class_property_add_bool(oc, PC_MACHINE_SMBUS, 2838 pc_machine_get_smbus, pc_machine_set_smbus, &error_abort); 2839 2840 object_class_property_add_bool(oc, PC_MACHINE_SATA, 2841 pc_machine_get_sata, pc_machine_set_sata, &error_abort); 2842 2843 object_class_property_add_bool(oc, PC_MACHINE_PIT, 2844 pc_machine_get_pit, pc_machine_set_pit, &error_abort); 2845 } 2846 2847 static const TypeInfo pc_machine_info = { 2848 .name = TYPE_PC_MACHINE, 2849 .parent = TYPE_MACHINE, 2850 .abstract = true, 2851 .instance_size = sizeof(PCMachineState), 2852 .instance_init = pc_machine_initfn, 2853 .class_size = sizeof(PCMachineClass), 2854 .class_init = pc_machine_class_init, 2855 .interfaces = (InterfaceInfo[]) { 2856 { TYPE_HOTPLUG_HANDLER }, 2857 { TYPE_NMI }, 2858 { } 2859 }, 2860 }; 2861 2862 static void pc_machine_register_types(void) 2863 { 2864 type_register_static(&pc_machine_info); 2865 } 2866 2867 type_init(pc_machine_register_types) 2868