]> git.proxmox.com Git - mirror_qemu.git/blame - hw/i386/pc_piix.c
hw/virtio/vring/event_idx: fix the vring_avail_event error
[mirror_qemu.git] / hw / i386 / pc_piix.c
CommitLineData
845773ab
IY
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
ae0a5466
AK
25#include <glib.h>
26
83c9f4ca 27#include "hw/hw.h"
04920fc0 28#include "hw/loader.h"
0d09e41a
PB
29#include "hw/i386/pc.h"
30#include "hw/i386/apic.h"
b29ad07e 31#include "hw/i386/smbios.h"
83c9f4ca
PB
32#include "hw/pci/pci.h"
33#include "hw/pci/pci_ids.h"
34#include "hw/usb.h"
1422e32d 35#include "net/net.h"
83c9f4ca
PB
36#include "hw/boards.h"
37#include "hw/ide.h"
9c17d615 38#include "sysemu/kvm.h"
83c9f4ca 39#include "hw/kvm/clock.h"
9c17d615 40#include "sysemu/sysemu.h"
83c9f4ca 41#include "hw/sysbus.h"
f0513d2c 42#include "hw/cpu/icc_bus.h"
9c17d615 43#include "sysemu/arch_init.h"
4be74634 44#include "sysemu/block-backend.h"
0d09e41a
PB
45#include "hw/i2c/smbus.h"
46#include "hw/xen/xen.h"
022c62cb
PB
47#include "exec/memory.h"
48#include "exec/address-spaces.h"
0445259b 49#include "hw/acpi/acpi.h"
dc59944b 50#include "cpu.h"
c87b1520 51#include "qemu/error-report.h"
29d3ccde
AP
52#ifdef CONFIG_XEN
53# include <xen/hvm/hvm_info_table.h>
54#endif
845773ab
IY
55
56#define MAX_IDE_BUS 2
57
58static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 };
59static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 };
60static const int ide_irq[MAX_IDE_BUS] = { 14, 15 };
61
72c194f7 62static bool has_acpi_build = true;
07fb6176 63static int legacy_acpi_table_size;
e6667f71 64static bool smbios_defaults = true;
c97294ec 65static bool smbios_legacy_mode;
ecdbfceb
MT
66/* Make sure that guest addresses aligned at 1Gbyte boundaries get mapped to
67 * host addresses aligned at 1Gbyte boundaries. This way we can use 1GByte
68 * pages in the host.
69 */
bb43d383 70static bool gigabyte_align = true;
de268e13 71static bool has_reserved_memory = true;
3ab135f3 72
845773ab 73/* PC hardware initialisation */
3ef96221 74static void pc_init1(MachineState *machine,
0ec329da
JK
75 int pci_enabled,
76 int kvmclock_enabled)
845773ab 77{
781bbd6b 78 PCMachineState *pc_machine = PC_MACHINE(machine);
1e099556
EH
79 MemoryRegion *system_memory = get_system_memory();
80 MemoryRegion *system_io = get_system_io();
845773ab
IY
81 int i;
82 ram_addr_t below_4g_mem_size, above_4g_mem_size;
83 PCIBus *pci_bus;
48a18b3c 84 ISABus *isa_bus;
845773ab
IY
85 PCII440FXState *i440fx_state;
86 int piix3_devfn = -1;
87 qemu_irq *cpu_irq;
b881fbe9 88 qemu_irq *gsi;
845773ab 89 qemu_irq *i8259;
845773ab 90 qemu_irq *smi_irq;
b881fbe9 91 GSIState *gsi_state;
845773ab 92 DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
c0897e0c 93 BusState *idebus[MAX_IDE_BUS];
1d914fa0 94 ISADevice *rtc_state;
34d4260e 95 ISADevice *floppy;
ae0a5466
AK
96 MemoryRegion *ram_memory;
97 MemoryRegion *pci_memory;
4463aee6 98 MemoryRegion *rom_memory;
f0513d2c 99 DeviceState *icc_bridge;
a88b362c 100 FWCfgState *fw_cfg = NULL;
3459a625 101 PcGuestInfo *guest_info;
c87b1520 102 ram_addr_t lowmem;
845773ab 103
ecdbfceb
MT
104 /* Check whether RAM fits below 4G (leaving 1/2 GByte for IO memory).
105 * If it doesn't, we need to split it in chunks below and above 4G.
106 * In any case, try to make sure that guest addresses aligned at
107 * 1G boundaries get mapped to host addresses aligned at 1G boundaries.
108 * For old machine types, use whatever split we used historically to avoid
109 * breaking migration.
110 */
3ef96221 111 if (machine->ram_size >= 0xe0000000) {
c87b1520
DS
112 lowmem = gigabyte_align ? 0xc0000000 : 0xe0000000;
113 } else {
114 lowmem = 0xe0000000;
115 }
116
a9dd38db 117 /* Handle the machine opt max-ram-below-4g. It is basically doing
c87b1520
DS
118 * min(qemu limit, user limit).
119 */
120 if (lowmem > pc_machine->max_ram_below_4g) {
121 lowmem = pc_machine->max_ram_below_4g;
122 if (machine->ram_size - lowmem > lowmem &&
123 lowmem & ((1ULL << 30) - 1)) {
124 error_report("Warning: Large machine and max_ram_below_4g(%"PRIu64
125 ") not a multiple of 1G; possible bad performance.",
126 pc_machine->max_ram_below_4g);
127 }
128 }
129
130 if (machine->ram_size >= lowmem) {
3ef96221 131 above_4g_mem_size = machine->ram_size - lowmem;
bb43d383 132 below_4g_mem_size = lowmem;
e0e7e67b
AP
133 } else {
134 above_4g_mem_size = 0;
3ef96221 135 below_4g_mem_size = machine->ram_size;
e0e7e67b
AP
136 }
137
3c2a9669
DS
138 if (xen_enabled() && xen_hvm_init(&below_4g_mem_size, &above_4g_mem_size,
139 &ram_memory) != 0) {
140 fprintf(stderr, "xen hardware virtual machine initialisation failed\n");
141 exit(1);
142 }
143
144 icc_bridge = qdev_create(NULL, TYPE_ICC_BRIDGE);
145 object_property_add_child(qdev_get_machine(), "icc-bridge",
146 OBJECT(icc_bridge), NULL);
147
148 pc_cpus_init(machine->cpu_model, icc_bridge);
149
150 if (kvm_enabled() && kvmclock_enabled) {
151 kvmclock_create();
152 }
153
4463aee6
JK
154 if (pci_enabled) {
155 pci_memory = g_new(MemoryRegion, 1);
286690e3 156 memory_region_init(pci_memory, NULL, "pci", UINT64_MAX);
4463aee6
JK
157 rom_memory = pci_memory;
158 } else {
159 pci_memory = NULL;
160 rom_memory = system_memory;
161 }
ae0a5466 162
3459a625 163 guest_info = pc_guest_info_init(below_4g_mem_size, above_4g_mem_size);
72c194f7
MT
164
165 guest_info->has_acpi_build = has_acpi_build;
07fb6176 166 guest_info->legacy_acpi_table_size = legacy_acpi_table_size;
72c194f7 167
6dd2a5c9 168 guest_info->isapc_ram_fw = !pci_enabled;
de268e13 169 guest_info->has_reserved_memory = has_reserved_memory;
3459a625 170
e6667f71 171 if (smbios_defaults) {
3ef96221 172 MachineClass *mc = MACHINE_GET_CLASS(machine);
b29ad07e 173 /* These values are guest ABI, do not change */
e6667f71 174 smbios_set_defaults("QEMU", "Standard PC (i440FX + PIIX, 1996)",
3ef96221 175 mc->name, smbios_legacy_mode);
b29ad07e
MA
176 }
177
845773ab 178 /* allocate ram and load rom/bios */
29d3ccde 179 if (!xen_enabled()) {
9521d42b
PB
180 fw_cfg = pc_memory_init(machine, system_memory,
181 below_4g_mem_size, above_4g_mem_size,
182 rom_memory, &ram_memory, guest_info);
b33a5bbf
CL
183 } else if (machine->kernel_filename != NULL) {
184 /* For xen HVM direct kernel boot, load linux here */
185 fw_cfg = xen_load_linux(machine->kernel_filename,
186 machine->kernel_cmdline,
187 machine->initrd_filename,
188 below_4g_mem_size,
189 guest_info);
29d3ccde 190 }
845773ab 191
b881fbe9 192 gsi_state = g_malloc0(sizeof(*gsi_state));
3d4b2649 193 if (kvm_irqchip_in_kernel()) {
d8ee0384
JB
194 kvm_pc_setup_irq_routing(pci_enabled);
195 gsi = qemu_allocate_irqs(kvm_pc_gsi_handler, gsi_state,
10b61882
JK
196 GSI_NUM_PINS);
197 } else {
198 gsi = qemu_allocate_irqs(gsi_handler, gsi_state, GSI_NUM_PINS);
199 }
845773ab
IY
200
201 if (pci_enabled) {
60573079 202 pci_bus = i440fx_init(&i440fx_state, &piix3_devfn, &isa_bus, gsi,
3ef96221 203 system_memory, system_io, machine->ram_size,
ddaaefb4 204 below_4g_mem_size,
39848901 205 above_4g_mem_size,
ae0a5466 206 pci_memory, ram_memory);
845773ab
IY
207 } else {
208 pci_bus = NULL;
02a89b21 209 i440fx_state = NULL;
48a18b3c 210 isa_bus = isa_bus_new(NULL, system_io);
57285cc3 211 no_hpet = 1;
845773ab 212 }
48a18b3c 213 isa_bus_irqs(isa_bus, gsi);
845773ab 214
3d4b2649 215 if (kvm_irqchip_in_kernel()) {
10b61882
JK
216 i8259 = kvm_i8259_init(isa_bus);
217 } else if (xen_enabled()) {
218 i8259 = xen_interrupt_controller_init();
219 } else {
4bae1efe 220 cpu_irq = pc_allocate_cpu_irq();
48a18b3c 221 i8259 = i8259_init(isa_bus, cpu_irq[0]);
4bae1efe
RH
222 }
223
43a0db35
JK
224 for (i = 0; i < ISA_NUM_IRQS; i++) {
225 gsi_state->i8259_irq[i] = i8259[i];
226 }
4bae1efe 227 if (pci_enabled) {
a39e3564 228 ioapic_init_gsi(gsi_state, "i440fx");
4bae1efe 229 }
f0513d2c 230 qdev_init_nofail(icc_bridge);
4bae1efe 231
b881fbe9 232 pc_register_ferr_irq(gsi[13]);
845773ab 233
f424d5c4 234 pc_vga_init(isa_bus, pci_enabled ? pci_bus : NULL);
01195b73 235
845773ab 236 /* init basic PC hardware */
9b23cfb7
DDAG
237 pc_basic_device_init(isa_bus, gsi, &rtc_state, &floppy,
238 !pc_machine->vmport, 0x4);
845773ab 239
9011a1a7 240 pc_nic_init(isa_bus, pci_bus);
845773ab 241
d8f94e1b 242 ide_drive_get(hd, ARRAY_SIZE(hd));
845773ab 243 if (pci_enabled) {
c0897e0c 244 PCIDevice *dev;
679f4f8b
SS
245 if (xen_enabled()) {
246 dev = pci_piix3_xen_ide_init(pci_bus, hd, piix3_devfn + 1);
247 } else {
248 dev = pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1);
249 }
c0897e0c
MA
250 idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0");
251 idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1");
845773ab
IY
252 } else {
253 for(i = 0; i < MAX_IDE_BUS; i++) {
c0897e0c 254 ISADevice *dev;
61de3676 255 char busname[] = "ide.0";
48a18b3c
HP
256 dev = isa_ide_init(isa_bus, ide_iobase[i], ide_iobase2[i],
257 ide_irq[i],
c0897e0c 258 hd[MAX_IDE_DEVS * i], hd[MAX_IDE_DEVS * i + 1]);
61de3676
AG
259 /*
260 * The ide bus name is ide.0 for the first bus and ide.1 for the
261 * second one.
262 */
263 busname[4] = '0' + i;
264 idebus[i] = qdev_get_child_bus(DEVICE(dev), busname);
845773ab
IY
265 }
266 }
267
3ef96221 268 pc_cmos_init(below_4g_mem_size, above_4g_mem_size, machine->boot_order,
2d996150 269 machine, floppy, idebus[0], idebus[1], rtc_state);
845773ab 270
094b287f 271 if (pci_enabled && usb_enabled(false)) {
afb9a60e 272 pci_create_simple(pci_bus, piix3_devfn + 2, "piix3-usb-uhci");
845773ab
IY
273 }
274
275 if (pci_enabled && acpi_enabled) {
781bbd6b 276 DeviceState *piix4_pm;
a5c82852 277 I2CBus *smbus;
845773ab 278
182735ef 279 smi_irq = qemu_allocate_irqs(pc_acpi_smi_interrupt, first_cpu, 1);
845773ab
IY
280 /* TODO: Populate SPD eeprom data. */
281 smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100,
da98c8eb 282 gsi[9], *smi_irq,
781bbd6b 283 kvm_enabled(), fw_cfg, &piix4_pm);
a88df0b9 284 smbus_eeprom_init(smbus, 8, NULL, 0);
781bbd6b
IM
285
286 object_property_add_link(OBJECT(machine), PC_MACHINE_ACPI_DEVICE_PROP,
287 TYPE_HOTPLUG_HANDLER,
288 (Object **)&pc_machine->acpi_dev,
289 object_property_allow_set_link,
290 OBJ_PROP_LINK_UNREF_ON_RELEASE, &error_abort);
291 object_property_set_link(OBJECT(machine), OBJECT(piix4_pm),
292 PC_MACHINE_ACPI_DEVICE_PROP, &error_abort);
845773ab
IY
293 }
294
845773ab
IY
295 if (pci_enabled) {
296 pc_pci_device_init(pci_bus);
297 }
298}
299
3ef96221 300static void pc_init_pci(MachineState *machine)
845773ab 301{
3ef96221 302 pc_init1(machine, 1, 1);
0ec329da
JK
303}
304
3ef96221 305static void pc_compat_2_0(MachineState *machine)
3458b2b0 306{
07fb6176
PB
307 /* This value depends on the actual DSDT and SSDT compiled into
308 * the source QEMU; unfortunately it depends on the binary and
309 * not on the machine type, so we cannot make pc-i440fx-1.7 work on
310 * both QEMU 1.7 and QEMU 2.0.
311 *
312 * Large variations cause migration to fail for more than one
313 * consecutive value of the "-smp" maxcpus option.
314 *
315 * For small variations of the kind caused by different iasl versions,
316 * the 4k rounding usually leaves slack. However, there could be still
317 * one or two values that break. For QEMU 1.7 and QEMU 2.0 the
318 * slack is only ~10 bytes before one "-smp maxcpus" value breaks!
319 *
320 * 6652 is valid for QEMU 2.0, the right value for pc-i440fx-1.7 on
321 * QEMU 1.7 it is 6414. For RHEL/CentOS 7.0 it is 6418.
322 */
323 legacy_acpi_table_size = 6652;
c97294ec 324 smbios_legacy_mode = true;
de268e13 325 has_reserved_memory = false;
927766c7 326 pc_set_legacy_acpi_data_size();
3458b2b0
MT
327}
328
3ef96221 329static void pc_compat_1_7(MachineState *machine)
b29ad07e 330{
3ef96221 331 pc_compat_2_0(machine);
e6667f71 332 smbios_defaults = false;
bb43d383 333 gigabyte_align = false;
ac41881b 334 option_rom_has_mr = true;
f47337cb 335 legacy_acpi_table_size = 6414;
ef02ef5f 336 x86_cpu_compat_disable_kvm_features(FEAT_1_ECX, CPUID_EXT_X2APIC);
b29ad07e
MA
337}
338
3ef96221 339static void pc_compat_1_6(MachineState *machine)
f8c457b8 340{
3ef96221 341 pc_compat_1_7(machine);
98bc3ab0 342 rom_file_has_mr = false;
72c194f7 343 has_acpi_build = false;
f8c457b8
MT
344}
345
3ef96221 346static void pc_compat_1_5(MachineState *machine)
9604f70f 347{
3ef96221 348 pc_compat_1_6(machine);
9604f70f
MT
349}
350
3ef96221 351static void pc_compat_1_4(MachineState *machine)
9953f882 352{
3ef96221 353 pc_compat_1_5(machine);
4458c236 354 x86_cpu_compat_set_features("n270", FEAT_1_ECX, 0, CPUID_EXT_MOVBE);
56383703 355 x86_cpu_compat_set_features("Westmere", FEAT_1_ECX, 0, CPUID_EXT_PCLMULQDQ);
9953f882
MA
356}
357
3ef96221 358static void pc_compat_1_3(MachineState *machine)
8932cfdf 359{
3ef96221 360 pc_compat_1_4(machine);
8932cfdf 361 enable_compat_apic_id_mode();
89b439f3
EH
362}
363
364/* PC compat function for pc-0.14 to pc-1.2 */
3ef96221 365static void pc_compat_1_2(MachineState *machine)
89b439f3 366{
3ef96221 367 pc_compat_1_3(machine);
8fb4f821 368 x86_cpu_compat_disable_kvm_features(FEAT_KVM, KVM_FEATURE_PV_EOI);
89b439f3
EH
369}
370
3ef96221 371static void pc_init_pci_2_0(MachineState *machine)
3458b2b0 372{
3ef96221
MA
373 pc_compat_2_0(machine);
374 pc_init_pci(machine);
3458b2b0
MT
375}
376
3ef96221 377static void pc_init_pci_1_7(MachineState *machine)
b29ad07e 378{
3ef96221
MA
379 pc_compat_1_7(machine);
380 pc_init_pci(machine);
b29ad07e
MA
381}
382
3ef96221 383static void pc_init_pci_1_6(MachineState *machine)
89b439f3 384{
3ef96221
MA
385 pc_compat_1_6(machine);
386 pc_init_pci(machine);
89b439f3
EH
387}
388
3ef96221 389static void pc_init_pci_1_5(MachineState *machine)
89b439f3 390{
3ef96221
MA
391 pc_compat_1_5(machine);
392 pc_init_pci(machine);
89b439f3
EH
393}
394
3ef96221 395static void pc_init_pci_1_4(MachineState *machine)
89b439f3 396{
3ef96221
MA
397 pc_compat_1_4(machine);
398 pc_init_pci(machine);
89b439f3
EH
399}
400
3ef96221 401static void pc_init_pci_1_3(MachineState *machine)
89b439f3 402{
3ef96221
MA
403 pc_compat_1_3(machine);
404 pc_init_pci(machine);
8932cfdf
EH
405}
406
43a52ce6 407/* PC machine init function for pc-0.14 to pc-1.2 */
3ef96221 408static void pc_init_pci_1_2(MachineState *machine)
dc59944b 409{
3ef96221
MA
410 pc_compat_1_2(machine);
411 pc_init_pci(machine);
dc59944b
MT
412}
413
faab4597 414/* PC init function for pc-0.10 to pc-0.13 */
3ef96221 415static void pc_init_pci_no_kvmclock(MachineState *machine)
0ec329da 416{
faab4597 417 pc_compat_1_2(machine);
3ef96221 418 pc_init1(machine, 1, 0);
845773ab
IY
419}
420
3ef96221 421static void pc_init_isa(MachineState *machine)
845773ab 422{
98af2ac9 423 has_acpi_build = false;
e6667f71 424 smbios_defaults = false;
5f8632d3
DS
425 gigabyte_align = false;
426 smbios_legacy_mode = true;
427 has_reserved_memory = false;
428 option_rom_has_mr = true;
429 rom_file_has_mr = false;
3ef96221
MA
430 if (!machine->cpu_model) {
431 machine->cpu_model = "486";
5650f5f4 432 }
8fb4f821 433 x86_cpu_compat_disable_kvm_features(FEAT_KVM, KVM_FEATURE_PV_EOI);
8932cfdf 434 enable_compat_apic_id_mode();
3ef96221 435 pc_init1(machine, 0, 1);
845773ab
IY
436}
437
29d3ccde 438#ifdef CONFIG_XEN
3ef96221 439static void pc_xen_hvm_init(MachineState *machine)
29d3ccde 440{
39ae4972
PD
441 PCIBus *bus;
442
3ef96221 443 pc_init_pci(machine);
39ae4972 444
1ef7a2a2 445 bus = pci_find_primary_bus();
39ae4972
PD
446 if (bus != NULL) {
447 pci_create_simple(bus, -1, "xen-platform");
448 }
29d3ccde
AP
449}
450#endif
451
a0dba644
MT
452#define PC_I440FX_MACHINE_OPTIONS \
453 PC_DEFAULT_MACHINE_OPTIONS, \
562542b6 454 .family = "pc_piix", \
a0dba644
MT
455 .desc = "Standard PC (i440FX + PIIX, 1996)", \
456 .hot_add_cpu = pc_hot_add_cpu
457
f9f21873 458#define PC_I440FX_2_2_MACHINE_OPTIONS \
bcf2b7d2
GH
459 PC_I440FX_MACHINE_OPTIONS, \
460 .default_machine_opts = "firmware=bios-256k.bin"
aeca6e8d 461
f9f21873
JK
462static QEMUMachine pc_i440fx_machine_v2_2 = {
463 PC_I440FX_2_2_MACHINE_OPTIONS,
464 .name = "pc-i440fx-2.2",
465 .alias = "pc",
466 .init = pc_init_pci,
467 .is_default = 1,
468};
469
470#define PC_I440FX_2_1_MACHINE_OPTIONS PC_I440FX_2_2_MACHINE_OPTIONS
471
3458b2b0
MT
472static QEMUMachine pc_i440fx_machine_v2_1 = {
473 PC_I440FX_2_1_MACHINE_OPTIONS,
474 .name = "pc-i440fx-2.1",
aeca6e8d 475 .init = pc_init_pci,
f9f21873 476 .compat_props = (GlobalProperty[]) {
68a27b20 477 HW_COMPAT_2_1,
f9f21873
JK
478 { /* end of list */ }
479 },
aeca6e8d
GH
480};
481
3458b2b0
MT
482#define PC_I440FX_2_0_MACHINE_OPTIONS PC_I440FX_2_1_MACHINE_OPTIONS
483
484static QEMUMachine pc_i440fx_machine_v2_0 = {
485 PC_I440FX_2_0_MACHINE_OPTIONS,
486 .name = "pc-i440fx-2.0",
487 .init = pc_init_pci_2_0,
9df11c9f
GS
488 .compat_props = (GlobalProperty[]) {
489 PC_COMPAT_2_0,
490 { /* end of list */ }
491 },
3458b2b0
MT
492};
493
e9845f09 494#define PC_I440FX_1_7_MACHINE_OPTIONS PC_I440FX_MACHINE_OPTIONS
aeca6e8d 495
e9845f09
VM
496static QEMUMachine pc_i440fx_machine_v1_7 = {
497 PC_I440FX_1_7_MACHINE_OPTIONS,
498 .name = "pc-i440fx-1.7",
b29ad07e 499 .init = pc_init_pci_1_7,
5319dc7b
GH
500 .compat_props = (GlobalProperty[]) {
501 PC_COMPAT_1_7,
502 { /* end of list */ }
503 },
e9845f09
VM
504};
505
a0dba644
MT
506#define PC_I440FX_1_6_MACHINE_OPTIONS PC_I440FX_MACHINE_OPTIONS
507
45053fde 508static QEMUMachine pc_i440fx_machine_v1_6 = {
a0dba644 509 PC_I440FX_1_6_MACHINE_OPTIONS,
45053fde 510 .name = "pc-i440fx-1.6",
9604f70f 511 .init = pc_init_pci_1_6,
e9845f09
VM
512 .compat_props = (GlobalProperty[]) {
513 PC_COMPAT_1_6,
514 { /* end of list */ }
515 },
845773ab
IY
516};
517
45053fde 518static QEMUMachine pc_i440fx_machine_v1_5 = {
a0dba644 519 PC_I440FX_1_6_MACHINE_OPTIONS,
45053fde 520 .name = "pc-i440fx-1.5",
f8c457b8 521 .init = pc_init_pci_1_5,
ffce9ebb
EH
522 .compat_props = (GlobalProperty[]) {
523 PC_COMPAT_1_5,
524 { /* end of list */ }
525 },
45053fde
EH
526};
527
a0dba644
MT
528#define PC_I440FX_1_4_MACHINE_OPTIONS \
529 PC_I440FX_1_6_MACHINE_OPTIONS, \
530 .hot_add_cpu = NULL
531
bf3caa3d 532static QEMUMachine pc_i440fx_machine_v1_4 = {
a0dba644 533 PC_I440FX_1_4_MACHINE_OPTIONS,
bf3caa3d 534 .name = "pc-i440fx-1.4",
9953f882 535 .init = pc_init_pci_1_4,
bf3caa3d
PB
536 .compat_props = (GlobalProperty[]) {
537 PC_COMPAT_1_4,
538 { /* end of list */ }
539 },
bf3caa3d
PB
540};
541
427e3aa1 542#define PC_COMPAT_1_3 \
bf3caa3d 543 PC_COMPAT_1_4, \
427e3aa1
HG
544 {\
545 .driver = "usb-tablet",\
546 .property = "usb_version",\
547 .value = stringify(1),\
c1943a3f
AK
548 },{\
549 .driver = "virtio-net-pci",\
550 .property = "ctrl_mac_addr",\
551 .value = "off", \
a9c87c58
JW
552 },{ \
553 .driver = "virtio-net-pci", \
554 .property = "mq", \
555 .value = "off", \
2af234e6
MT
556 }, {\
557 .driver = "e1000",\
558 .property = "autonegotiation",\
559 .value = "off",\
427e3aa1
HG
560 }
561
f1ae2e38 562static QEMUMachine pc_machine_v1_3 = {
a0dba644 563 PC_I440FX_1_4_MACHINE_OPTIONS,
f1ae2e38 564 .name = "pc-1.3",
8932cfdf 565 .init = pc_init_pci_1_3,
f1ae2e38 566 .compat_props = (GlobalProperty[]) {
427e3aa1 567 PC_COMPAT_1_3,
f1ae2e38
GH
568 { /* end of list */ }
569 },
570};
571
183c5eaa 572#define PC_COMPAT_1_2 \
427e3aa1 573 PC_COMPAT_1_3,\
183c5eaa
GH
574 {\
575 .driver = "nec-usb-xhci",\
576 .property = "msi",\
577 .value = "off",\
578 },{\
579 .driver = "nec-usb-xhci",\
580 .property = "msix",\
581 .value = "off",\
c08ba66f
GH
582 },{\
583 .driver = "ivshmem",\
584 .property = "use64",\
585 .value = "0",\
591af143
GH
586 },{\
587 .driver = "qxl",\
588 .property = "revision",\
589 .value = stringify(3),\
590 },{\
591 .driver = "qxl-vga",\
592 .property = "revision",\
593 .value = stringify(3),\
803ff052
GH
594 },{\
595 .driver = "VGA",\
596 .property = "mmio",\
597 .value = "off",\
183c5eaa
GH
598 }
599
a0dba644
MT
600#define PC_I440FX_1_2_MACHINE_OPTIONS \
601 PC_I440FX_1_4_MACHINE_OPTIONS, \
602 .init = pc_init_pci_1_2
603
f4306941 604static QEMUMachine pc_machine_v1_2 = {
a0dba644 605 PC_I440FX_1_2_MACHINE_OPTIONS,
f4306941 606 .name = "pc-1.2",
183c5eaa
GH
607 .compat_props = (GlobalProperty[]) {
608 PC_COMPAT_1_2,
609 { /* end of list */ }
610 },
f4306941
GH
611};
612
9e56edcf 613#define PC_COMPAT_1_1 \
183c5eaa 614 PC_COMPAT_1_2,\
9e56edcf 615 {\
07a5298c
PB
616 .driver = "virtio-scsi-pci",\
617 .property = "hotplug",\
618 .value = "off",\
619 },{\
620 .driver = "virtio-scsi-pci",\
621 .property = "param_change",\
622 .value = "off",\
623 },{\
9e56edcf
GH
624 .driver = "VGA",\
625 .property = "vgamem_mb",\
626 .value = stringify(8),\
627 },{\
628 .driver = "vmware-svga",\
629 .property = "vgamem_mb",\
630 .value = stringify(8),\
631 },{\
632 .driver = "qxl-vga",\
633 .property = "vgamem_mb",\
634 .value = stringify(8),\
635 },{\
636 .driver = "qxl",\
637 .property = "vgamem_mb",\
638 .value = stringify(8),\
ea776abc
SH
639 },{\
640 .driver = "virtio-blk-pci",\
641 .property = "config-wce",\
642 .value = "off",\
9e56edcf
GH
643 }
644
f1dacf1c 645static QEMUMachine pc_machine_v1_1 = {
a0dba644 646 PC_I440FX_1_2_MACHINE_OPTIONS,
f1dacf1c 647 .name = "pc-1.1",
9e56edcf
GH
648 .compat_props = (GlobalProperty[]) {
649 PC_COMPAT_1_1,
650 { /* end of list */ }
651 },
f1dacf1c
GH
652};
653
d6c73008 654#define PC_COMPAT_1_0 \
9e56edcf 655 PC_COMPAT_1_1,\
d6c73008 656 {\
020c8e76 657 .driver = TYPE_ISA_FDC,\
d6c73008
MT
658 .property = "check_media_rate",\
659 .value = "off",\
2ba1d381
DG
660 }, {\
661 .driver = "virtio-balloon-pci",\
662 .property = "class",\
663 .value = stringify(PCI_CLASS_MEMORY_RAM),\
fc34e77b 664 },{\
df1fd4b5 665 .driver = "apic-common",\
fc34e77b
AL
666 .property = "vapic",\
667 .value = "off",\
eeb0cf9a 668 },{\
bce54474 669 .driver = TYPE_USB_DEVICE,\
eeb0cf9a
GH
670 .property = "full-path",\
671 .value = "no",\
d6c73008
MT
672 }
673
382b3a68 674static QEMUMachine pc_machine_v1_0 = {
a0dba644 675 PC_I440FX_1_2_MACHINE_OPTIONS,
382b3a68 676 .name = "pc-1.0",
1b89fafe 677 .compat_props = (GlobalProperty[]) {
d6c73008 678 PC_COMPAT_1_0,
1b89fafe
JJ
679 { /* end of list */ }
680 },
93bfef4c 681 .hw_version = "1.0",
382b3a68
JJ
682};
683
d6c73008
MT
684#define PC_COMPAT_0_15 \
685 PC_COMPAT_1_0
686
ce01a508 687static QEMUMachine pc_machine_v0_15 = {
a0dba644 688 PC_I440FX_1_2_MACHINE_OPTIONS,
ce01a508 689 .name = "pc-0.15",
1b89fafe 690 .compat_props = (GlobalProperty[]) {
d6c73008 691 PC_COMPAT_0_15,
1b89fafe
JJ
692 { /* end of list */ }
693 },
93bfef4c 694 .hw_version = "0.15",
ce01a508
AL
695};
696
d6c73008
MT
697#define PC_COMPAT_0_14 \
698 PC_COMPAT_0_15,\
699 {\
700 .driver = "virtio-blk-pci",\
701 .property = "event_idx",\
702 .value = "off",\
703 },{\
704 .driver = "virtio-serial-pci",\
705 .property = "event_idx",\
706 .value = "off",\
707 },{\
708 .driver = "virtio-net-pci",\
709 .property = "event_idx",\
710 .value = "off",\
711 },{\
712 .driver = "virtio-balloon-pci",\
713 .property = "event_idx",\
714 .value = "off",\
715 }
716
19857e62 717static QEMUMachine pc_machine_v0_14 = {
a0dba644 718 PC_I440FX_1_2_MACHINE_OPTIONS,
19857e62 719 .name = "pc-0.14",
3827cdb1 720 .compat_props = (GlobalProperty[]) {
d6c73008 721 PC_COMPAT_0_14,
3827cdb1
AL
722 {
723 .driver = "qxl",
724 .property = "revision",
725 .value = stringify(2),
726 },{
727 .driver = "qxl-vga",
728 .property = "revision",
729 .value = stringify(2),
1b89fafe 730 },
3827cdb1
AL
731 { /* end of list */ }
732 },
93bfef4c 733 .hw_version = "0.14",
19857e62
GH
734};
735
d6c73008
MT
736#define PC_COMPAT_0_13 \
737 PC_COMPAT_0_14,\
738 {\
bce54474 739 .driver = TYPE_PCI_DEVICE,\
d6c73008
MT
740 .property = "command_serr_enable",\
741 .value = "off",\
742 },{\
743 .driver = "AC97",\
744 .property = "use_broken_id",\
745 .value = stringify(1),\
746 }
747
a0dba644
MT
748#define PC_I440FX_0_13_MACHINE_OPTIONS \
749 PC_I440FX_1_2_MACHINE_OPTIONS, \
750 .init = pc_init_pci_no_kvmclock
751
b903a0f7 752static QEMUMachine pc_machine_v0_13 = {
a0dba644 753 PC_I440FX_0_13_MACHINE_OPTIONS,
b903a0f7 754 .name = "pc-0.13",
9dbcca5a 755 .compat_props = (GlobalProperty[]) {
d6c73008 756 PC_COMPAT_0_13,
9dbcca5a
GH
757 {
758 .driver = "virtio-9p-pci",
759 .property = "vectors",
760 .value = stringify(0),
281a26b1
GH
761 },{
762 .driver = "VGA",
763 .property = "rombar",
764 .value = stringify(0),
765 },{
766 .driver = "vmware-svga",
767 .property = "rombar",
768 .value = stringify(0),
1b89fafe 769 },
9dbcca5a
GH
770 { /* end of list */ }
771 },
93bfef4c 772 .hw_version = "0.13",
b903a0f7
GH
773};
774
d6c73008
MT
775#define PC_COMPAT_0_12 \
776 PC_COMPAT_0_13,\
777 {\
778 .driver = "virtio-serial-pci",\
779 .property = "max_ports",\
780 .value = stringify(1),\
781 },{\
782 .driver = "virtio-serial-pci",\
783 .property = "vectors",\
784 .value = stringify(0),\
93c8e4dc
GH
785 },{\
786 .driver = "usb-mouse",\
787 .property = "serial",\
788 .value = "1",\
789 },{\
790 .driver = "usb-tablet",\
791 .property = "serial",\
792 .value = "1",\
793 },{\
794 .driver = "usb-kbd",\
795 .property = "serial",\
796 .value = "1",\
d6c73008
MT
797 }
798
845773ab 799static QEMUMachine pc_machine_v0_12 = {
a0dba644 800 PC_I440FX_0_13_MACHINE_OPTIONS,
845773ab 801 .name = "pc-0.12",
845773ab 802 .compat_props = (GlobalProperty[]) {
d6c73008 803 PC_COMPAT_0_12,
845773ab 804 {
281a26b1
GH
805 .driver = "VGA",
806 .property = "rombar",
807 .value = stringify(0),
808 },{
809 .driver = "vmware-svga",
810 .property = "rombar",
811 .value = stringify(0),
1b89fafe 812 },
845773ab 813 { /* end of list */ }
93bfef4c
CV
814 },
815 .hw_version = "0.12",
845773ab
IY
816};
817
d6c73008
MT
818#define PC_COMPAT_0_11 \
819 PC_COMPAT_0_12,\
820 {\
821 .driver = "virtio-blk-pci",\
822 .property = "vectors",\
823 .value = stringify(0),\
c115cd65 824 },{\
bce54474 825 .driver = TYPE_PCI_DEVICE,\
c115cd65
PB
826 .property = "rombar",\
827 .value = stringify(0),\
d6c73008
MT
828 }
829
845773ab 830static QEMUMachine pc_machine_v0_11 = {
a0dba644 831 PC_I440FX_0_13_MACHINE_OPTIONS,
845773ab 832 .name = "pc-0.11",
845773ab 833 .compat_props = (GlobalProperty[]) {
d6c73008 834 PC_COMPAT_0_11,
845773ab 835 {
845773ab
IY
836 .driver = "ide-drive",
837 .property = "ver",
838 .value = "0.11",
839 },{
840 .driver = "scsi-disk",
841 .property = "ver",
842 .value = "0.11",
1b89fafe 843 },
845773ab 844 { /* end of list */ }
93bfef4c
CV
845 },
846 .hw_version = "0.11",
845773ab
IY
847};
848
849static QEMUMachine pc_machine_v0_10 = {
a0dba644 850 PC_I440FX_0_13_MACHINE_OPTIONS,
845773ab 851 .name = "pc-0.10",
845773ab 852 .compat_props = (GlobalProperty[]) {
d6c73008 853 PC_COMPAT_0_11,
845773ab
IY
854 {
855 .driver = "virtio-blk-pci",
856 .property = "class",
857 .value = stringify(PCI_CLASS_STORAGE_OTHER),
858 },{
859 .driver = "virtio-serial-pci",
860 .property = "class",
861 .value = stringify(PCI_CLASS_DISPLAY_OTHER),
845773ab
IY
862 },{
863 .driver = "virtio-net-pci",
864 .property = "vectors",
865 .value = stringify(0),
845773ab
IY
866 },{
867 .driver = "ide-drive",
868 .property = "ver",
869 .value = "0.10",
870 },{
871 .driver = "scsi-disk",
872 .property = "ver",
873 .value = "0.10",
1b89fafe 874 },
845773ab
IY
875 { /* end of list */ }
876 },
93bfef4c 877 .hw_version = "0.10",
845773ab
IY
878};
879
880static QEMUMachine isapc_machine = {
a0dba644 881 PC_COMMON_MACHINE_OPTIONS,
845773ab
IY
882 .name = "isapc",
883 .desc = "ISA-only PC",
884 .init = pc_init_isa,
885 .max_cpus = 1,
1b89fafe 886 .compat_props = (GlobalProperty[]) {
1b89fafe
JJ
887 { /* end of list */ }
888 },
845773ab
IY
889};
890
29d3ccde
AP
891#ifdef CONFIG_XEN
892static QEMUMachine xenfv_machine = {
a0dba644 893 PC_COMMON_MACHINE_OPTIONS,
29d3ccde
AP
894 .name = "xenfv",
895 .desc = "Xen Fully-virtualized PC",
896 .init = pc_xen_hvm_init,
897 .max_cpus = HVM_MAX_VCPUS,
898 .default_machine_opts = "accel=xen",
594278d9 899 .hot_add_cpu = pc_hot_add_cpu,
d160024f
MT
900 .compat_props = (GlobalProperty[]) {
901 /* xenfv has no fwcfg and so does not load acpi from QEMU.
902 * as such new acpi features don't work.
903 */
904 {
905 .driver = "PIIX4_PM",
906 .property = "acpi-pci-hotplug-with-bridge-support",
907 .value = "off",
908 },
909 { /* end of list */ }
910 },
29d3ccde
AP
911};
912#endif
913
845773ab
IY
914static void pc_machine_init(void)
915{
f9f21873 916 qemu_register_pc_machine(&pc_i440fx_machine_v2_2);
d5747cac
IM
917 qemu_register_pc_machine(&pc_i440fx_machine_v2_1);
918 qemu_register_pc_machine(&pc_i440fx_machine_v2_0);
919 qemu_register_pc_machine(&pc_i440fx_machine_v1_7);
920 qemu_register_pc_machine(&pc_i440fx_machine_v1_6);
921 qemu_register_pc_machine(&pc_i440fx_machine_v1_5);
922 qemu_register_pc_machine(&pc_i440fx_machine_v1_4);
923 qemu_register_pc_machine(&pc_machine_v1_3);
924 qemu_register_pc_machine(&pc_machine_v1_2);
925 qemu_register_pc_machine(&pc_machine_v1_1);
926 qemu_register_pc_machine(&pc_machine_v1_0);
927 qemu_register_pc_machine(&pc_machine_v0_15);
928 qemu_register_pc_machine(&pc_machine_v0_14);
929 qemu_register_pc_machine(&pc_machine_v0_13);
930 qemu_register_pc_machine(&pc_machine_v0_12);
931 qemu_register_pc_machine(&pc_machine_v0_11);
932 qemu_register_pc_machine(&pc_machine_v0_10);
933 qemu_register_pc_machine(&isapc_machine);
29d3ccde 934#ifdef CONFIG_XEN
d5747cac 935 qemu_register_pc_machine(&xenfv_machine);
29d3ccde 936#endif
845773ab
IY
937}
938
939machine_init(pc_machine_init);