pc.h 25.0 KB
Newer Older
P
pbrook 已提交
1 2
#ifndef HW_PC_H
#define HW_PC_H
A
aliguori 已提交
3 4

#include "qemu-common.h"
5
#include "exec/memory.h"
6
#include "hw/boards.h"
P
Paolo Bonzini 已提交
7 8
#include "hw/isa/isa.h"
#include "hw/block/fdc.h"
P
Paolo Bonzini 已提交
9
#include "net/net.h"
P
Paolo Bonzini 已提交
10
#include "hw/i386/ioapic.h"
A
aliguori 已提交
11

12
#include "qemu/range.h"
M
Michael S. Tsirkin 已提交
13 14 15
#include "qemu/bitmap.h"
#include "sysemu/sysemu.h"
#include "hw/pci/pci.h"
16
#include "hw/boards.h"
17
#include "hw/compat.h"
18
#include "hw/mem/pc-dimm.h"
19
#include "hw/mem/nvdimm.h"
20
#include "hw/acpi/acpi_dev_interface.h"
21

22 23
#define HPET_INTCAP "hpet-intcap"

24 25 26 27 28 29 30 31 32 33 34 35 36
#ifdef CONFIG_KVM
#define kvm_pit_in_kernel() \
    (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
#define kvm_pic_in_kernel()  \
    (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
#define kvm_ioapic_in_kernel() \
    (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
#else
#define kvm_pit_in_kernel()      0
#define kvm_pic_in_kernel()      0
#define kvm_ioapic_in_kernel()   0
#endif

37 38
/**
 * PCMachineState:
39
 * @acpi_dev: link to ACPI PM device that performs ACPI hotplug handling
40
 */
41 42 43
struct PCMachineState {
    /*< private >*/
    MachineState parent_obj;
44 45

    /* <public> */
46 47

    /* State for other subsystems/APIs: */
48
    MemoryHotplugState hotplug_memory;
49
    Notifier machine_done;
50

51
    /* Pointers to devices and objects: */
52
    HotplugHandler *acpi_dev;
G
Gu Zheng 已提交
53
    ISADevice *rtc;
54
    PCIBus *bus;
55
    FWCfgState *fw_cfg;
56

57
    /* Configuration options: */
58
    uint64_t max_ram_below_4g;
59
    OnOffAuto vmport;
P
Paolo Bonzini 已提交
60
    OnOffAuto smm;
61 62

    AcpiNVDIMMState acpi_nvdimm_state;
63 64

    /* RAM information (sizes, addresses, configuration): */
65
    ram_addr_t below_4g_mem_size, above_4g_mem_size;
66 67 68 69

    /* CPU and apic information: */
    bool apic_xrupt_override;
    unsigned apic_id_limit;
70
    CPUArchIdList *possible_cpus;
71 72 73 74

    /* NUMA information: */
    uint64_t numa_nodes;
    uint64_t *node_mem;
75 76 77 78

    /* Address space used by IOAPIC device. All IOAPIC interrupts
     * will be translated to MSI messages in the address space. */
    AddressSpace *ioapic_as;
79 80
};

81
#define PC_MACHINE_ACPI_DEVICE_PROP "acpi-device"
82
#define PC_MACHINE_MEMHP_REGION_SIZE "hotplug-memory-region-size"
83
#define PC_MACHINE_MAX_RAM_BELOW_4G "max-ram-below-4g"
84
#define PC_MACHINE_VMPORT           "vmport"
P
Paolo Bonzini 已提交
85
#define PC_MACHINE_SMM              "smm"
86
#define PC_MACHINE_NVDIMM           "nvdimm"
87

88 89
/**
 * PCMachineClass:
90 91 92
 *
 * Methods:
 *
93
 * @get_hotplug_handler: pointer to parent class callback @get_hotplug_handler
94 95 96
 *
 * Compat fields:
 *
97 98
 * @enforce_aligned_dimm: check that DIMM's address/size is aligned by
 *                        backend's alignment value if provided
99 100 101 102 103 104 105 106
 * @acpi_data_size: Size of the chunk of memory at the top of RAM
 *                  for the BIOS ACPI tables and other BIOS
 *                  datastructures.
 * @gigabyte_align: Make sure that guest addresses aligned at
 *                  1Gbyte boundaries get mapped to host
 *                  addresses aligned at 1Gbyte boundaries. This
 *                  way we can use 1GByte pages in the host.
 *
107
 */
108 109 110
struct PCMachineClass {
    /*< private >*/
    MachineClass parent_class;
111 112

    /*< public >*/
113 114

    /* Methods: */
115 116
    HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
                                           DeviceState *dev);
117

118
    /* Device configuration: */
119
    bool pci_enabled;
120 121 122 123 124
    bool kvmclock_enabled;

    /* Compat options: */

    /* ACPI compat: */
125 126
    bool has_acpi_build;
    bool rsdp_in_ram;
127 128 129 130
    int legacy_acpi_table_size;
    unsigned acpi_data_size;

    /* SMBIOS compat: */
131 132 133
    bool smbios_defaults;
    bool smbios_legacy_mode;
    bool smbios_uuid_encoded;
134 135

    /* RAM / address space compat: */
136 137
    bool gigabyte_align;
    bool has_reserved_memory;
138
    bool enforce_aligned_dimm;
139
    bool broken_reserved_end;
140 141 142

    /* TSC rate migration: */
    bool save_tsc_khz;
143 144
    /* generate legacy CPU hotplug AML */
    bool legacy_cpu_hotplug;
145 146 147 148 149 150 151 152 153 154
};

#define TYPE_PC_MACHINE "generic-pc-machine"
#define PC_MACHINE(obj) \
    OBJECT_CHECK(PCMachineState, (obj), TYPE_PC_MACHINE)
#define PC_MACHINE_GET_CLASS(obj) \
    OBJECT_GET_CLASS(PCMachineClass, (obj), TYPE_PC_MACHINE)
#define PC_MACHINE_CLASS(klass) \
    OBJECT_CLASS_CHECK(PCMachineClass, (klass), TYPE_PC_MACHINE)

P
pbrook 已提交
155 156
/* PC-style peripherals (also used by other machines).  */

157 158 159 160 161 162 163 164 165
#define ACPI_PM_PROP_S3_DISABLED "disable_s3"
#define ACPI_PM_PROP_S4_DISABLED "disable_s4"
#define ACPI_PM_PROP_S4_VAL "s4_val"
#define ACPI_PM_PROP_SCI_INT "sci_int"
#define ACPI_PM_PROP_ACPI_ENABLE_CMD "acpi_enable_cmd"
#define ACPI_PM_PROP_ACPI_DISABLE_CMD "acpi_disable_cmd"
#define ACPI_PM_PROP_PM_IO_BASE "pm_io_base"
#define ACPI_PM_PROP_GPE0_BLK "gpe0_blk"
#define ACPI_PM_PROP_GPE0_BLK_LEN "gpe0_blk_len"
166
#define ACPI_PM_PROP_TCO_ENABLED "enable_tco"
167

P
pbrook 已提交
168
/* parallel.c */
169 170

void parallel_hds_isa_init(ISABus *bus, int n);
B
Blue Swirl 已提交
171

A
Avi Kivity 已提交
172
bool parallel_mm_init(MemoryRegion *address_space,
A
Avi Kivity 已提交
173
                      hwaddr base, int it_shift, qemu_irq irq,
B
Blue Swirl 已提交
174
                      CharDriverState *chr);
P
pbrook 已提交
175 176 177

/* i8259.c */

178
extern DeviceState *isa_pic;
179
qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq);
180
qemu_irq *kvm_i8259_init(ISABus *bus);
181 182
int pic_read_irq(DeviceState *d);
int pic_get_output(DeviceState *d);
183 184
void hmp_info_pic(Monitor *mon, const QDict *qdict);
void hmp_info_irq(Monitor *mon, const QDict *qdict);
P
pbrook 已提交
185

P
Pavel Butsykin 已提交
186 187 188
/* ioapic.c */

void kvm_ioapic_dump_state(Monitor *mon, const QDict *qdict);
189
void ioapic_dump_state(Monitor *mon, const QDict *qdict);
P
Pavel Butsykin 已提交
190

J
Jan Kiszka 已提交
191
/* Global System Interrupts */
B
Blue Swirl 已提交
192

J
Jan Kiszka 已提交
193
#define GSI_NUM_PINS IOAPIC_NUM_PINS
194

J
Jan Kiszka 已提交
195
typedef struct GSIState {
196
    qemu_irq i8259_irq[ISA_NUM_IRQS];
J
Jan Kiszka 已提交
197 198 199 200
    qemu_irq ioapic_irq[IOAPIC_NUM_PINS];
} GSIState;

void gsi_handler(void *opaque, int n, int level);
201

P
pbrook 已提交
202
/* vmport.c */
203
#define TYPE_VMPORT "vmport"
204 205
typedef uint32_t (VMPortReadFunc)(void *opaque, uint32_t address);

206
static inline void vmport_init(ISABus *bus)
B
Blue Swirl 已提交
207
{
208
    isa_create_simple(bus, TYPE_VMPORT);
B
Blue Swirl 已提交
209
}
210 211

void vmport_register(unsigned char command, VMPortReadFunc *func, void *opaque);
B
Blue Swirl 已提交
212 213
void vmmouse_get_data(uint32_t *data);
void vmmouse_set_data(const uint32_t *data);
P
pbrook 已提交
214 215

/* pckbd.c */
E
Efimov Vasily 已提交
216
#define I8042_A20_LINE "a20"
P
pbrook 已提交
217 218 219

void i8042_init(qemu_irq kbd_irq, qemu_irq mouse_irq, uint32_t io_base);
void i8042_mm_init(qemu_irq kbd_irq, qemu_irq mouse_irq,
220
                   MemoryRegion *region, ram_addr_t size,
A
Avi Kivity 已提交
221
                   hwaddr mask);
B
Blue Swirl 已提交
222 223
void i8042_isa_mouse_fake_event(void *opaque);
void i8042_setup_a20_line(ISADevice *dev, qemu_irq *a20_out);
P
pbrook 已提交
224 225 226 227

/* pc.c */
extern int fd_bootchk;

P
Paolo Bonzini 已提交
228
bool pc_machine_is_smm_enabled(PCMachineState *pcms);
229
void pc_register_ferr_irq(qemu_irq irq);
230 231
void pc_acpi_smi_interrupt(void *opaque, int irq, int level);

232
void pc_cpus_init(PCMachineState *pcms);
233
void pc_hot_add_cpu(const int64_t id, Error **errp);
G
Gerd Hoffmann 已提交
234
void pc_acpi_init(const char *default_dsdt);
235

236
void pc_guest_info_init(PCMachineState *pcms);
237

238 239 240 241 242
#define PCI_HOST_PROP_PCI_HOLE_START   "pci-hole-start"
#define PCI_HOST_PROP_PCI_HOLE_END     "pci-hole-end"
#define PCI_HOST_PROP_PCI_HOLE64_START "pci-hole64-start"
#define PCI_HOST_PROP_PCI_HOLE64_END   "pci-hole64-end"
#define PCI_HOST_PROP_PCI_HOLE64_SIZE  "pci-hole64-size"
243 244
#define PCI_HOST_BELOW_4G_MEM_SIZE     "below-4g-mem-size"
#define PCI_HOST_ABOVE_4G_MEM_SIZE     "above-4g-mem-size"
245 246
#define DEFAULT_PCI_HOLE64_SIZE (~0x0ULL)

247

248 249
void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
                            MemoryRegion *pci_address_space);
250

251
void xen_load_linux(PCMachineState *pcms);
252 253 254 255
void pc_memory_init(PCMachineState *pcms,
                    MemoryRegion *system_memory,
                    MemoryRegion *rom_memory,
                    MemoryRegion **ram_memory);
256
qemu_irq pc_allocate_cpu_irq(void);
257 258
DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus);
void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
259
                          ISADevice **rtc_state,
260
                          bool create_fdctrl,
261
                          bool no_vmport,
262
                          uint32_t hpet_irqs);
263
void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
264
void pc_cmos_init(PCMachineState *pcms,
265
                  BusState *ide0, BusState *ide1,
B
Blue Swirl 已提交
266
                  ISADevice *s);
267
void pc_nic_init(ISABus *isa_bus, PCIBus *pci_bus);
268
void pc_pci_device_init(PCIBus *pci_bus);
269

270 271
typedef void (*cpu_set_smm_t)(int smm, void *arg);

272 273
void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name);

274
ISADevice *pc_find_fdc0(void);
275
int cmos_get_fd_drive_type(FloppyDriveType fd0);
276

277 278
#define FW_CFG_IO_BASE     0x510

E
Efimov Vasily 已提交
279 280
#define PORT92_A20_LINE "a20"

281
/* acpi_piix.c */
B
Blue Swirl 已提交
282

A
Andreas Färber 已提交
283 284
I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
                      qemu_irq sci_irq, qemu_irq smi_irq,
285
                      int smm_enabled, DeviceState **piix4_pm);
P
pbrook 已提交
286 287
void piix4_smbus_register_device(SMBusDevice *dev, uint8_t addr);

A
aliguori 已提交
288 289 290
/* hpet.c */
extern int no_hpet;

P
pbrook 已提交
291
/* piix_pci.c */
292 293 294
struct PCII440FXState;
typedef struct PCII440FXState PCII440FXState;

295 296 297
#define TYPE_I440FX_PCI_HOST_BRIDGE "i440FX-pcihost"
#define TYPE_I440FX_PCI_DEVICE "i440FX"

298 299
#define TYPE_IGD_PASSTHROUGH_I440FX_PCI_DEVICE "igd-passthrough-i440FX"

300 301
PCIBus *i440fx_init(const char *host_type, const char *pci_type,
                    PCII440FXState **pi440fx_state, int *piix_devfn,
302
                    ISABus **isa_bus, qemu_irq *pic,
303 304
                    MemoryRegion *address_space_mem,
                    MemoryRegion *address_space_io,
A
Avi Kivity 已提交
305
                    ram_addr_t ram_size,
G
Gerd Hoffmann 已提交
306
                    ram_addr_t below_4g_mem_size,
307
                    ram_addr_t above_4g_mem_size,
A
Avi Kivity 已提交
308 309
                    MemoryRegion *pci_memory,
                    MemoryRegion *ram_memory);
P
pbrook 已提交
310

M
Michael S. Tsirkin 已提交
311
PCIBus *find_i440fx(void);
312
/* piix4.c */
313
extern PCIDevice *piix4_dev;
314
int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn);
P
pbrook 已提交
315 316

/* vga.c */
M
malc 已提交
317 318 319 320 321 322
enum vga_retrace_method {
    VGA_RETRACE_DUMB,
    VGA_RETRACE_PRECISE
};

extern enum vga_retrace_method vga_retrace_method;
P
pbrook 已提交
323

A
Avi Kivity 已提交
324 325
int isa_vga_mm_init(hwaddr vram_base,
                    hwaddr ctrl_base, int it_shift,
326
                    MemoryRegion *address_space);
P
pbrook 已提交
327 328

/* ne2000.c */
329
static inline bool isa_ne2000_init(ISABus *bus, int base, int irq, NICInfo *nd)
330
{
A
Andreas Färber 已提交
331 332
    DeviceState *dev;
    ISADevice *isadev;
P
pbrook 已提交
333

334 335
    qemu_check_nic_model(nd, "ne2k_isa");

A
Andreas Färber 已提交
336 337
    isadev = isa_try_create(bus, "ne2k_isa");
    if (!isadev) {
B
Blue Swirl 已提交
338 339
        return false;
    }
A
Andreas Färber 已提交
340 341 342 343 344
    dev = DEVICE(isadev);
    qdev_prop_set_uint32(dev, "iobase", base);
    qdev_prop_set_uint32(dev, "irq",    irq);
    qdev_set_nic_properties(dev, nd);
    qdev_init_nofail(dev);
B
Blue Swirl 已提交
345
    return true;
346
}
P
pbrook 已提交
347

348
/* pc_sysfw.c */
349 350
void pc_system_firmware_init(MemoryRegion *rom_memory,
                             bool isapc_ram_fw);
351

352
/* pvpanic.c */
353
uint16_t pvpanic_port(void);
354

355 356 357 358
/* acpi-build.c */
void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid,
                       CPUArchIdList *apic_ids, GArray *entry);

J
Jes Sorensen 已提交
359 360 361 362 363 364 365 366
/* e820 types */
#define E820_RAM        1
#define E820_RESERVED   2
#define E820_ACPI       3
#define E820_NVS        4
#define E820_UNUSABLE   5

int e820_add_entry(uint64_t, uint64_t, uint32_t);
367 368
int e820_get_num_entries(void);
bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *);
J
Jes Sorensen 已提交
369

I
Igor Mammedov 已提交
370
#define PC_COMPAT_2_6 \
371 372
    HW_COMPAT_2_6 \
    {\
373 374 375 376
        .driver   = "fw_cfg_io",\
        .property = "dma_enabled",\
        .value    = "off",\
    },{\
377 378 379
        .driver   = TYPE_X86_CPU,\
        .property = "cpuid-0xb",\
        .value    = "off",\
G
Gerd Hoffmann 已提交
380 381 382 383
    },{\
        .driver   = "vmxnet3",\
        .property = "romfile",\
        .value    = "",\
384 385 386 387 388
    },\
    {\
        .driver = TYPE_X86_CPU,\
        .property = "fill-mtrr-mask",\
        .value = "off",\
389 390
    },\
    {\
391
        .driver   = "apic-common",\
392 393
        .property = "legacy-instance-id",\
        .value    = "on",\
394
    },
I
Igor Mammedov 已提交
395

E
Eduardo Habkost 已提交
396
#define PC_COMPAT_2_5 \
I
Igor Mammedov 已提交
397
    PC_COMPAT_2_6 \
E
Eduardo Habkost 已提交
398 399
    HW_COMPAT_2_5

400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
/* Helper for setting model-id for CPU models that changed model-id
 * depending on QEMU versions up to QEMU 2.4.
 */
#define PC_CPU_MODEL_IDS(v) \
    {\
        .driver   = "qemu32-" TYPE_X86_CPU,\
        .property = "model-id",\
        .value    = "QEMU Virtual CPU version " v,\
    },\
    {\
        .driver   = "qemu64-" TYPE_X86_CPU,\
        .property = "model-id",\
        .value    = "QEMU Virtual CPU version " v,\
    },\
    {\
        .driver   = "athlon-" TYPE_X86_CPU,\
        .property = "model-id",\
        .value    = "QEMU Virtual CPU version " v,\
    },

420
#define PC_COMPAT_2_4 \
421
    HW_COMPAT_2_4 \
422
    PC_CPU_MODEL_IDS("2.4.0") \
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
    {\
        .driver   = "Haswell-" TYPE_X86_CPU,\
        .property = "abm",\
        .value    = "off",\
    },\
    {\
        .driver   = "Haswell-noTSX-" TYPE_X86_CPU,\
        .property = "abm",\
        .value    = "off",\
    },\
    {\
        .driver   = "Broadwell-" TYPE_X86_CPU,\
        .property = "abm",\
        .value    = "off",\
    },\
    {\
        .driver   = "Broadwell-noTSX-" TYPE_X86_CPU,\
        .property = "abm",\
        .value    = "off",\
    },\
    {\
        .driver   = "host" "-" TYPE_X86_CPU,\
        .property = "host-cache-info",\
        .value    = "on",\
    },\
    {\
        .driver   = TYPE_X86_CPU,\
        .property = "check",\
        .value    = "off",\
    },\
    {\
        .driver   = "qemu64" "-" TYPE_X86_CPU,\
        .property = "sse4a",\
        .value    = "on",\
    },\
    {\
        .driver   = "qemu64" "-" TYPE_X86_CPU,\
        .property = "abm",\
        .value    = "on",\
    },\
    {\
        .driver   = "qemu64" "-" TYPE_X86_CPU,\
        .property = "popcnt",\
        .value    = "on",\
    },\
    {\
        .driver   = "qemu32" "-" TYPE_X86_CPU,\
        .property = "popcnt",\
        .value    = "on",\
    },{\
        .driver   = "Opteron_G2" "-" TYPE_X86_CPU,\
        .property = "rdtscp",\
        .value    = "on",\
    },{\
        .driver   = "Opteron_G3" "-" TYPE_X86_CPU,\
        .property = "rdtscp",\
        .value    = "on",\
    },{\
        .driver   = "Opteron_G4" "-" TYPE_X86_CPU,\
        .property = "rdtscp",\
        .value    = "on",\
    },{\
        .driver   = "Opteron_G5" "-" TYPE_X86_CPU,\
        .property = "rdtscp",\
        .value    = "on",\
    },
489

490

491
#define PC_COMPAT_2_3 \
492
    HW_COMPAT_2_3 \
493
    PC_CPU_MODEL_IDS("2.3.0") \
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
    {\
        .driver   = TYPE_X86_CPU,\
        .property = "arat",\
        .value    = "off",\
    },{\
        .driver   = "qemu64" "-" TYPE_X86_CPU,\
        .property = "level",\
        .value    = stringify(4),\
    },{\
        .driver   = "kvm64" "-" TYPE_X86_CPU,\
        .property = "level",\
        .value    = stringify(5),\
    },{\
        .driver   = "pentium3" "-" TYPE_X86_CPU,\
        .property = "level",\
        .value    = stringify(2),\
    },{\
        .driver   = "n270" "-" TYPE_X86_CPU,\
        .property = "level",\
        .value    = stringify(5),\
    },{\
        .driver   = "Conroe" "-" TYPE_X86_CPU,\
        .property = "level",\
        .value    = stringify(4),\
    },{\
        .driver   = "Penryn" "-" TYPE_X86_CPU,\
        .property = "level",\
        .value    = stringify(4),\
    },{\
        .driver   = "Nehalem" "-" TYPE_X86_CPU,\
        .property = "level",\
        .value    = stringify(4),\
    },{\
        .driver   = "n270" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },{\
        .driver   = "Penryn" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },{\
        .driver   = "Conroe" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },{\
        .driver   = "Nehalem" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },{\
        .driver   = "Westmere" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },{\
        .driver   = "SandyBridge" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },{\
        .driver   = "IvyBridge" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },{\
        .driver   = "Haswell" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },{\
        .driver   = "Haswell-noTSX" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },{\
        .driver   = "Broadwell" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },{\
        .driver   = "Broadwell-noTSX" "-" TYPE_X86_CPU,\
        .property = "xlevel",\
        .value    = stringify(0x8000000a),\
    },
571 572

#define PC_COMPAT_2_2 \
573
    HW_COMPAT_2_2 \
574
    PC_CPU_MODEL_IDS("2.3.0") \
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
    {\
        .driver = "kvm64" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "kvm32" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Conroe" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Penryn" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Nehalem" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Westmere" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "SandyBridge" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Haswell" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Broadwell" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Opteron_G1" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Opteron_G2" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Opteron_G3" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Opteron_G4" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Opteron_G5" "-" TYPE_X86_CPU,\
        .property = "vme",\
        .value = "off",\
    },\
    {\
        .driver = "Haswell" "-" TYPE_X86_CPU,\
        .property = "f16c",\
        .value = "off",\
    },\
    {\
        .driver = "Haswell" "-" TYPE_X86_CPU,\
        .property = "rdrand",\
        .value = "off",\
    },\
    {\
        .driver = "Broadwell" "-" TYPE_X86_CPU,\
        .property = "f16c",\
        .value = "off",\
    },\
    {\
        .driver = "Broadwell" "-" TYPE_X86_CPU,\
        .property = "rdrand",\
        .value = "off",\
    },
665 666

#define PC_COMPAT_2_1 \
667
    HW_COMPAT_2_1 \
668
    PC_CPU_MODEL_IDS("2.1.0") \
669 670 671 672 673 674 675 676 677 678
    {\
        .driver = "coreduo" "-" TYPE_X86_CPU,\
        .property = "vmx",\
        .value = "on",\
    },\
    {\
        .driver = "core2duo" "-" TYPE_X86_CPU,\
        .property = "vmx",\
        .value = "on",\
    },
679

680
#define PC_COMPAT_2_0 \
681
    PC_CPU_MODEL_IDS("2.0.0") \
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
    {\
        .driver   = "virtio-scsi-pci",\
        .property = "any_layout",\
        .value    = "off",\
    },{\
        .driver   = "PIIX4_PM",\
        .property = "memory-hotplug-support",\
        .value    = "off",\
    },\
    {\
        .driver   = "apic",\
        .property = "version",\
        .value    = stringify(0x11),\
    },\
    {\
        .driver   = "nec-usb-xhci",\
        .property = "superspeed-ports-first",\
        .value    = "off",\
    },\
    {\
        .driver   = "nec-usb-xhci",\
        .property = "force-pcie-endcap",\
        .value    = "on",\
    },\
    {\
        .driver   = "pci-serial",\
        .property = "prog_if",\
        .value    = stringify(0),\
    },\
    {\
        .driver   = "pci-serial-2x",\
        .property = "prog_if",\
        .value    = stringify(0),\
    },\
    {\
        .driver   = "pci-serial-4x",\
        .property = "prog_if",\
        .value    = stringify(0),\
    },\
    {\
        .driver   = "virtio-net-pci",\
        .property = "guest_announce",\
        .value    = "off",\
    },\
    {\
        .driver   = "ICH9-LPC",\
        .property = "memory-hotplug-support",\
        .value    = "off",\
    },{\
        .driver   = "xio3130-downstream",\
        .property = COMPAT_PROP_PCP,\
        .value    = "off",\
    },{\
        .driver   = "ioh3420",\
        .property = COMPAT_PROP_PCP,\
        .value    = "off",\
    },
739

740
#define PC_COMPAT_1_7 \
741
    PC_CPU_MODEL_IDS("1.7.0") \
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
    {\
        .driver   = TYPE_USB_DEVICE,\
        .property = "msos-desc",\
        .value    = "no",\
    },\
    {\
        .driver   = "PIIX4_PM",\
        .property = "acpi-pci-hotplug-with-bridge-support",\
        .value    = "off",\
    },\
    {\
        .driver   = "hpet",\
        .property = HPET_INTCAP,\
        .value    = stringify(4),\
    },
757

758
#define PC_COMPAT_1_6 \
759
    PC_CPU_MODEL_IDS("1.6.0") \
760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
    {\
        .driver   = "e1000",\
        .property = "mitigation",\
        .value    = "off",\
    },{\
        .driver   = "qemu64-" TYPE_X86_CPU,\
        .property = "model",\
        .value    = stringify(2),\
    },{\
        .driver   = "qemu32-" TYPE_X86_CPU,\
        .property = "model",\
        .value    = stringify(3),\
    },{\
        .driver   = "i440FX-pcihost",\
        .property = "short_root_bus",\
        .value    = stringify(1),\
    },{\
        .driver   = "q35-pcihost",\
        .property = "short_root_bus",\
        .value    = stringify(1),\
    },
781

782
#define PC_COMPAT_1_5 \
783
    PC_CPU_MODEL_IDS("1.5.0") \
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824
    {\
        .driver   = "Conroe-" TYPE_X86_CPU,\
        .property = "model",\
        .value    = stringify(2),\
    },{\
        .driver   = "Conroe-" TYPE_X86_CPU,\
        .property = "level",\
        .value    = stringify(2),\
    },{\
        .driver   = "Penryn-" TYPE_X86_CPU,\
        .property = "model",\
        .value    = stringify(2),\
    },{\
        .driver   = "Penryn-" TYPE_X86_CPU,\
        .property = "level",\
        .value    = stringify(2),\
    },{\
        .driver   = "Nehalem-" TYPE_X86_CPU,\
        .property = "model",\
        .value    = stringify(2),\
    },{\
        .driver   = "Nehalem-" TYPE_X86_CPU,\
        .property = "level",\
        .value    = stringify(2),\
    },{\
        .driver   = "virtio-net-pci",\
        .property = "any_layout",\
        .value    = "off",\
    },{\
        .driver = TYPE_X86_CPU,\
        .property = "pmu",\
        .value = "on",\
    },{\
        .driver   = "i440FX-pcihost",\
        .property = "short_root_bus",\
        .value    = stringify(0),\
    },{\
        .driver   = "q35-pcihost",\
        .property = "short_root_bus",\
        .value    = stringify(0),\
    },
825

826
#define PC_COMPAT_1_4 \
827
    PC_CPU_MODEL_IDS("1.4.0") \
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
    {\
        .driver   = "scsi-hd",\
        .property = "discard_granularity",\
        .value    = stringify(0),\
    },{\
        .driver   = "scsi-cd",\
        .property = "discard_granularity",\
        .value    = stringify(0),\
    },{\
        .driver   = "scsi-disk",\
        .property = "discard_granularity",\
        .value    = stringify(0),\
    },{\
        .driver   = "ide-hd",\
        .property = "discard_granularity",\
        .value    = stringify(0),\
    },{\
        .driver   = "ide-cd",\
        .property = "discard_granularity",\
        .value    = stringify(0),\
    },{\
        .driver   = "ide-drive",\
        .property = "discard_granularity",\
        .value    = stringify(0),\
    },{\
        .driver   = "virtio-blk-pci",\
        .property = "discard_granularity",\
        .value    = stringify(0),\
    },{\
        .driver   = "virtio-serial-pci",\
        .property = "vectors",\
        /* DEV_NVECTORS_UNSPECIFIED as a uint32_t string */\
        .value    = stringify(0xFFFFFFFF),\
    },{ \
        .driver   = "virtio-net-pci", \
        .property = "ctrl_guest_offloads", \
        .value    = "off", \
    },{\
        .driver   = "e1000",\
        .property = "romfile",\
        .value    = "pxe-e1000.rom",\
    },{\
        .driver   = "ne2k_pci",\
        .property = "romfile",\
        .value    = "pxe-ne2k_pci.rom",\
    },{\
        .driver   = "pcnet",\
        .property = "romfile",\
        .value    = "pxe-pcnet.rom",\
    },{\
        .driver   = "rtl8139",\
        .property = "romfile",\
        .value    = "pxe-rtl8139.rom",\
    },{\
        .driver   = "virtio-net-pci",\
        .property = "romfile",\
        .value    = "pxe-virtio.rom",\
    },{\
        .driver   = "486-" TYPE_X86_CPU,\
        .property = "model",\
        .value    = stringify(0),\
    },\
    {\
        .driver = "n270" "-" TYPE_X86_CPU,\
        .property = "movbe",\
        .value = "off",\
    },\
    {\
        .driver = "Westmere" "-" TYPE_X86_CPU,\
        .property = "pclmulqdq",\
        .value = "off",\
    },
900

901
#define DEFINE_PC_MACHINE(suffix, namestr, initfn, optsfn) \
902 903 904 905 906 907 908 909 910 911 912 913
    static void pc_machine_##suffix##_class_init(ObjectClass *oc, void *data) \
    { \
        MachineClass *mc = MACHINE_CLASS(oc); \
        optsfn(mc); \
        mc->name = namestr; \
        mc->init = initfn; \
    } \
    static const TypeInfo pc_machine_type_##suffix = { \
        .name       = namestr TYPE_MACHINE_SUFFIX, \
        .parent     = TYPE_PC_MACHINE, \
        .class_init = pc_machine_##suffix##_class_init, \
    }; \
914 915
    static void pc_machine_init_##suffix(void) \
    { \
916
        type_register(&pc_machine_type_##suffix); \
917
    } \
918
    type_init(pc_machine_init_##suffix)
919

920
extern void igd_passthrough_isa_bridge_create(PCIBus *bus, uint16_t gpu_dev_id);
P
pbrook 已提交
921
#endif