]> git.proxmox.com Git - qemu.git/blame - hw/i386/pc_piix.c
Open 2.0 development tree
[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"
83c9f4ca
PB
31#include "hw/pci/pci.h"
32#include "hw/pci/pci_ids.h"
33#include "hw/usb.h"
1422e32d 34#include "net/net.h"
83c9f4ca
PB
35#include "hw/boards.h"
36#include "hw/ide.h"
9c17d615 37#include "sysemu/kvm.h"
83c9f4ca 38#include "hw/kvm/clock.h"
9c17d615 39#include "sysemu/sysemu.h"
83c9f4ca 40#include "hw/sysbus.h"
f0513d2c 41#include "hw/cpu/icc_bus.h"
9c17d615
PB
42#include "sysemu/arch_init.h"
43#include "sysemu/blockdev.h"
0d09e41a
PB
44#include "hw/i2c/smbus.h"
45#include "hw/xen/xen.h"
022c62cb
PB
46#include "exec/memory.h"
47#include "exec/address-spaces.h"
0445259b 48#include "hw/acpi/acpi.h"
dc59944b 49#include "cpu.h"
29d3ccde
AP
50#ifdef CONFIG_XEN
51# include <xen/hvm/hvm_info_table.h>
52#endif
845773ab
IY
53
54#define MAX_IDE_BUS 2
55
56static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 };
57static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 };
58static const int ide_irq[MAX_IDE_BUS] = { 14, 15 };
59
7f1bb742 60static bool has_pci_info;
72c194f7 61static bool has_acpi_build = true;
3ab135f3 62
845773ab 63/* PC hardware initialisation */
5650f5f4 64static void pc_init1(QEMUMachineInitArgs *args,
0ec329da
JK
65 int pci_enabled,
66 int kvmclock_enabled)
845773ab 67{
1e099556
EH
68 MemoryRegion *system_memory = get_system_memory();
69 MemoryRegion *system_io = get_system_io();
845773ab
IY
70 int i;
71 ram_addr_t below_4g_mem_size, above_4g_mem_size;
72 PCIBus *pci_bus;
48a18b3c 73 ISABus *isa_bus;
845773ab
IY
74 PCII440FXState *i440fx_state;
75 int piix3_devfn = -1;
76 qemu_irq *cpu_irq;
b881fbe9 77 qemu_irq *gsi;
845773ab 78 qemu_irq *i8259;
845773ab 79 qemu_irq *smi_irq;
b881fbe9 80 GSIState *gsi_state;
845773ab 81 DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
c0897e0c 82 BusState *idebus[MAX_IDE_BUS];
1d914fa0 83 ISADevice *rtc_state;
34d4260e 84 ISADevice *floppy;
ae0a5466
AK
85 MemoryRegion *ram_memory;
86 MemoryRegion *pci_memory;
4463aee6 87 MemoryRegion *rom_memory;
f0513d2c 88 DeviceState *icc_bridge;
a88b362c 89 FWCfgState *fw_cfg = NULL;
3459a625 90 PcGuestInfo *guest_info;
845773ab 91
04d7bad8 92 if (xen_enabled() && xen_hvm_init(&ram_memory) != 0) {
a97d6fe6
PD
93 fprintf(stderr, "xen hardware virtual machine initialisation failed\n");
94 exit(1);
95 }
96
f0513d2c
IM
97 icc_bridge = qdev_create(NULL, TYPE_ICC_BRIDGE);
98 object_property_add_child(qdev_get_machine(), "icc-bridge",
99 OBJECT(icc_bridge), NULL);
100
5650f5f4 101 pc_cpus_init(args->cpu_model, icc_bridge);
845773ab 102
9cdf79d0 103 if (kvm_enabled() && kvmclock_enabled) {
0ec329da
JK
104 kvmclock_create();
105 }
106
5650f5f4
MA
107 if (args->ram_size >= 0xe0000000) {
108 above_4g_mem_size = args->ram_size - 0xe0000000;
fc744bb1 109 below_4g_mem_size = 0xe0000000;
e0e7e67b
AP
110 } else {
111 above_4g_mem_size = 0;
5650f5f4 112 below_4g_mem_size = args->ram_size;
e0e7e67b
AP
113 }
114
4463aee6
JK
115 if (pci_enabled) {
116 pci_memory = g_new(MemoryRegion, 1);
2c9b15ca 117 memory_region_init(pci_memory, NULL, "pci", INT64_MAX);
4463aee6
JK
118 rom_memory = pci_memory;
119 } else {
120 pci_memory = NULL;
121 rom_memory = system_memory;
122 }
ae0a5466 123
3459a625 124 guest_info = pc_guest_info_init(below_4g_mem_size, above_4g_mem_size);
72c194f7
MT
125
126 guest_info->has_acpi_build = has_acpi_build;
127
f8c457b8 128 guest_info->has_pci_info = has_pci_info;
6dd2a5c9 129 guest_info->isapc_ram_fw = !pci_enabled;
3459a625 130
845773ab 131 /* allocate ram and load rom/bios */
29d3ccde 132 if (!xen_enabled()) {
459ae5ea 133 fw_cfg = pc_memory_init(system_memory,
5650f5f4
MA
134 args->kernel_filename, args->kernel_cmdline,
135 args->initrd_filename,
ae0a5466 136 below_4g_mem_size, above_4g_mem_size,
3459a625 137 rom_memory, &ram_memory, guest_info);
29d3ccde 138 }
845773ab 139
b881fbe9 140 gsi_state = g_malloc0(sizeof(*gsi_state));
3d4b2649 141 if (kvm_irqchip_in_kernel()) {
d8ee0384
JB
142 kvm_pc_setup_irq_routing(pci_enabled);
143 gsi = qemu_allocate_irqs(kvm_pc_gsi_handler, gsi_state,
10b61882
JK
144 GSI_NUM_PINS);
145 } else {
146 gsi = qemu_allocate_irqs(gsi_handler, gsi_state, GSI_NUM_PINS);
147 }
845773ab
IY
148
149 if (pci_enabled) {
60573079 150 pci_bus = i440fx_init(&i440fx_state, &piix3_devfn, &isa_bus, gsi,
5650f5f4 151 system_memory, system_io, args->ram_size,
ae0a5466
AK
152 below_4g_mem_size,
153 0x100000000ULL - below_4g_mem_size,
39848901 154 above_4g_mem_size,
ae0a5466 155 pci_memory, ram_memory);
845773ab
IY
156 } else {
157 pci_bus = NULL;
02a89b21 158 i440fx_state = NULL;
48a18b3c 159 isa_bus = isa_bus_new(NULL, system_io);
57285cc3 160 no_hpet = 1;
845773ab 161 }
48a18b3c 162 isa_bus_irqs(isa_bus, gsi);
845773ab 163
3d4b2649 164 if (kvm_irqchip_in_kernel()) {
10b61882
JK
165 i8259 = kvm_i8259_init(isa_bus);
166 } else if (xen_enabled()) {
167 i8259 = xen_interrupt_controller_init();
168 } else {
4bae1efe 169 cpu_irq = pc_allocate_cpu_irq();
48a18b3c 170 i8259 = i8259_init(isa_bus, cpu_irq[0]);
4bae1efe
RH
171 }
172
43a0db35
JK
173 for (i = 0; i < ISA_NUM_IRQS; i++) {
174 gsi_state->i8259_irq[i] = i8259[i];
175 }
4bae1efe 176 if (pci_enabled) {
a39e3564 177 ioapic_init_gsi(gsi_state, "i440fx");
4bae1efe 178 }
f0513d2c 179 qdev_init_nofail(icc_bridge);
4bae1efe 180
b881fbe9 181 pc_register_ferr_irq(gsi[13]);
845773ab 182
f424d5c4 183 pc_vga_init(isa_bus, pci_enabled ? pci_bus : NULL);
01195b73 184
845773ab 185 /* init basic PC hardware */
48a18b3c 186 pc_basic_device_init(isa_bus, gsi, &rtc_state, &floppy, xen_enabled());
845773ab 187
9011a1a7 188 pc_nic_init(isa_bus, pci_bus);
845773ab 189
75717903 190 ide_drive_get(hd, MAX_IDE_BUS);
845773ab 191 if (pci_enabled) {
c0897e0c 192 PCIDevice *dev;
679f4f8b
SS
193 if (xen_enabled()) {
194 dev = pci_piix3_xen_ide_init(pci_bus, hd, piix3_devfn + 1);
195 } else {
196 dev = pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1);
197 }
c0897e0c
MA
198 idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0");
199 idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1");
845773ab
IY
200 } else {
201 for(i = 0; i < MAX_IDE_BUS; i++) {
c0897e0c 202 ISADevice *dev;
48a18b3c
HP
203 dev = isa_ide_init(isa_bus, ide_iobase[i], ide_iobase2[i],
204 ide_irq[i],
c0897e0c 205 hd[MAX_IDE_DEVS * i], hd[MAX_IDE_DEVS * i + 1]);
4a17cc4f 206 idebus[i] = qdev_get_child_bus(DEVICE(dev), "ide.0");
845773ab
IY
207 }
208 }
209
c1654732 210 pc_cmos_init(below_4g_mem_size, above_4g_mem_size, args->boot_order,
34d4260e 211 floppy, idebus[0], idebus[1], rtc_state);
845773ab 212
094b287f 213 if (pci_enabled && usb_enabled(false)) {
afb9a60e 214 pci_create_simple(pci_bus, piix3_devfn + 2, "piix3-usb-uhci");
845773ab
IY
215 }
216
217 if (pci_enabled && acpi_enabled) {
845773ab
IY
218 i2c_bus *smbus;
219
182735ef 220 smi_irq = qemu_allocate_irqs(pc_acpi_smi_interrupt, first_cpu, 1);
845773ab
IY
221 /* TODO: Populate SPD eeprom data. */
222 smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100,
da98c8eb 223 gsi[9], *smi_irq,
459ae5ea 224 kvm_enabled(), fw_cfg);
a88df0b9 225 smbus_eeprom_init(smbus, 8, NULL, 0);
845773ab
IY
226 }
227
845773ab
IY
228 if (pci_enabled) {
229 pc_pci_device_init(pci_bus);
230 }
231}
232
5f072e1f 233static void pc_init_pci(QEMUMachineInitArgs *args)
845773ab 234{
1e099556 235 pc_init1(args, 1, 1);
0ec329da
JK
236}
237
89b439f3 238static void pc_compat_1_6(QEMUMachineInitArgs *args)
f8c457b8
MT
239{
240 has_pci_info = false;
04920fc0 241 rom_file_in_ram = false;
72c194f7 242 has_acpi_build = false;
f8c457b8
MT
243}
244
89b439f3 245static void pc_compat_1_5(QEMUMachineInitArgs *args)
9604f70f 246{
89b439f3 247 pc_compat_1_6(args);
9604f70f
MT
248}
249
89b439f3 250static void pc_compat_1_4(QEMUMachineInitArgs *args)
9953f882 251{
396f79f4 252 pc_compat_1_5(args);
4458c236 253 x86_cpu_compat_set_features("n270", FEAT_1_ECX, 0, CPUID_EXT_MOVBE);
56383703 254 x86_cpu_compat_set_features("Westmere", FEAT_1_ECX, 0, CPUID_EXT_PCLMULQDQ);
9953f882
MA
255}
256
89b439f3 257static void pc_compat_1_3(QEMUMachineInitArgs *args)
8932cfdf 258{
89b439f3 259 pc_compat_1_4(args);
8932cfdf 260 enable_compat_apic_id_mode();
89b439f3
EH
261}
262
263/* PC compat function for pc-0.14 to pc-1.2 */
264static void pc_compat_1_2(QEMUMachineInitArgs *args)
265{
266 pc_compat_1_3(args);
267 disable_kvm_pv_eoi();
268}
269
270static void pc_init_pci_1_6(QEMUMachineInitArgs *args)
271{
272 pc_compat_1_6(args);
273 pc_init_pci(args);
274}
275
276static void pc_init_pci_1_5(QEMUMachineInitArgs *args)
277{
278 pc_compat_1_5(args);
279 pc_init_pci(args);
280}
281
282static void pc_init_pci_1_4(QEMUMachineInitArgs *args)
283{
284 pc_compat_1_4(args);
285 pc_init_pci(args);
286}
287
288static void pc_init_pci_1_3(QEMUMachineInitArgs *args)
289{
290 pc_compat_1_3(args);
291 pc_init_pci(args);
8932cfdf
EH
292}
293
43a52ce6 294/* PC machine init function for pc-0.14 to pc-1.2 */
29694758 295static void pc_init_pci_1_2(QEMUMachineInitArgs *args)
dc59944b 296{
89b439f3
EH
297 pc_compat_1_2(args);
298 pc_init_pci(args);
dc59944b
MT
299}
300
29694758 301/* PC init function for pc-0.10 to pc-0.13, and reused by xenfv */
5f072e1f 302static void pc_init_pci_no_kvmclock(QEMUMachineInitArgs *args)
0ec329da 303{
f8c457b8 304 has_pci_info = false;
98af2ac9 305 has_acpi_build = false;
29694758 306 disable_kvm_pv_eoi();
8932cfdf 307 enable_compat_apic_id_mode();
1e099556 308 pc_init1(args, 1, 0);
845773ab
IY
309}
310
5f072e1f 311static void pc_init_isa(QEMUMachineInitArgs *args)
845773ab 312{
f8c457b8 313 has_pci_info = false;
98af2ac9 314 has_acpi_build = false;
5650f5f4
MA
315 if (!args->cpu_model) {
316 args->cpu_model = "486";
317 }
29694758 318 disable_kvm_pv_eoi();
8932cfdf 319 enable_compat_apic_id_mode();
1e099556 320 pc_init1(args, 0, 1);
845773ab
IY
321}
322
29d3ccde 323#ifdef CONFIG_XEN
5f072e1f 324static void pc_xen_hvm_init(QEMUMachineInitArgs *args)
29d3ccde 325{
39ae4972
PD
326 PCIBus *bus;
327
9cdf79d0 328 pc_init_pci(args);
39ae4972 329
1ef7a2a2 330 bus = pci_find_primary_bus();
39ae4972
PD
331 if (bus != NULL) {
332 pci_create_simple(bus, -1, "xen-platform");
333 }
29d3ccde
AP
334}
335#endif
336
a0dba644
MT
337#define PC_I440FX_MACHINE_OPTIONS \
338 PC_DEFAULT_MACHINE_OPTIONS, \
339 .desc = "Standard PC (i440FX + PIIX, 1996)", \
340 .hot_add_cpu = pc_hot_add_cpu
341
e9845f09
VM
342#define PC_I440FX_1_7_MACHINE_OPTIONS PC_I440FX_MACHINE_OPTIONS
343static QEMUMachine pc_i440fx_machine_v1_7 = {
344 PC_I440FX_1_7_MACHINE_OPTIONS,
345 .name = "pc-i440fx-1.7",
346 .alias = "pc",
347 .init = pc_init_pci,
348 .is_default = 1,
349};
350
a0dba644
MT
351#define PC_I440FX_1_6_MACHINE_OPTIONS PC_I440FX_MACHINE_OPTIONS
352
45053fde 353static QEMUMachine pc_i440fx_machine_v1_6 = {
a0dba644 354 PC_I440FX_1_6_MACHINE_OPTIONS,
45053fde 355 .name = "pc-i440fx-1.6",
9604f70f 356 .init = pc_init_pci_1_6,
e9845f09
VM
357 .compat_props = (GlobalProperty[]) {
358 PC_COMPAT_1_6,
359 { /* end of list */ }
360 },
845773ab
IY
361};
362
45053fde 363static QEMUMachine pc_i440fx_machine_v1_5 = {
a0dba644 364 PC_I440FX_1_6_MACHINE_OPTIONS,
45053fde 365 .name = "pc-i440fx-1.5",
f8c457b8 366 .init = pc_init_pci_1_5,
ffce9ebb
EH
367 .compat_props = (GlobalProperty[]) {
368 PC_COMPAT_1_5,
369 { /* end of list */ }
370 },
45053fde
EH
371};
372
a0dba644
MT
373#define PC_I440FX_1_4_MACHINE_OPTIONS \
374 PC_I440FX_1_6_MACHINE_OPTIONS, \
375 .hot_add_cpu = NULL
376
bf3caa3d 377static QEMUMachine pc_i440fx_machine_v1_4 = {
a0dba644 378 PC_I440FX_1_4_MACHINE_OPTIONS,
bf3caa3d 379 .name = "pc-i440fx-1.4",
9953f882 380 .init = pc_init_pci_1_4,
bf3caa3d
PB
381 .compat_props = (GlobalProperty[]) {
382 PC_COMPAT_1_4,
383 { /* end of list */ }
384 },
bf3caa3d
PB
385};
386
427e3aa1 387#define PC_COMPAT_1_3 \
bf3caa3d 388 PC_COMPAT_1_4, \
427e3aa1
HG
389 {\
390 .driver = "usb-tablet",\
391 .property = "usb_version",\
392 .value = stringify(1),\
c1943a3f
AK
393 },{\
394 .driver = "virtio-net-pci",\
395 .property = "ctrl_mac_addr",\
396 .value = "off", \
a9c87c58
JW
397 },{ \
398 .driver = "virtio-net-pci", \
399 .property = "mq", \
400 .value = "off", \
2af234e6
MT
401 }, {\
402 .driver = "e1000",\
403 .property = "autonegotiation",\
404 .value = "off",\
427e3aa1
HG
405 }
406
f1ae2e38 407static QEMUMachine pc_machine_v1_3 = {
a0dba644 408 PC_I440FX_1_4_MACHINE_OPTIONS,
f1ae2e38 409 .name = "pc-1.3",
8932cfdf 410 .init = pc_init_pci_1_3,
f1ae2e38 411 .compat_props = (GlobalProperty[]) {
427e3aa1 412 PC_COMPAT_1_3,
f1ae2e38
GH
413 { /* end of list */ }
414 },
415};
416
183c5eaa 417#define PC_COMPAT_1_2 \
427e3aa1 418 PC_COMPAT_1_3,\
183c5eaa
GH
419 {\
420 .driver = "nec-usb-xhci",\
421 .property = "msi",\
422 .value = "off",\
423 },{\
424 .driver = "nec-usb-xhci",\
425 .property = "msix",\
426 .value = "off",\
c08ba66f
GH
427 },{\
428 .driver = "ivshmem",\
429 .property = "use64",\
430 .value = "0",\
591af143
GH
431 },{\
432 .driver = "qxl",\
433 .property = "revision",\
434 .value = stringify(3),\
435 },{\
436 .driver = "qxl-vga",\
437 .property = "revision",\
438 .value = stringify(3),\
803ff052
GH
439 },{\
440 .driver = "VGA",\
441 .property = "mmio",\
442 .value = "off",\
183c5eaa
GH
443 }
444
a0dba644
MT
445#define PC_I440FX_1_2_MACHINE_OPTIONS \
446 PC_I440FX_1_4_MACHINE_OPTIONS, \
447 .init = pc_init_pci_1_2
448
f4306941 449static QEMUMachine pc_machine_v1_2 = {
a0dba644 450 PC_I440FX_1_2_MACHINE_OPTIONS,
f4306941 451 .name = "pc-1.2",
183c5eaa
GH
452 .compat_props = (GlobalProperty[]) {
453 PC_COMPAT_1_2,
454 { /* end of list */ }
455 },
f4306941
GH
456};
457
9e56edcf 458#define PC_COMPAT_1_1 \
183c5eaa 459 PC_COMPAT_1_2,\
9e56edcf 460 {\
07a5298c
PB
461 .driver = "virtio-scsi-pci",\
462 .property = "hotplug",\
463 .value = "off",\
464 },{\
465 .driver = "virtio-scsi-pci",\
466 .property = "param_change",\
467 .value = "off",\
468 },{\
9e56edcf
GH
469 .driver = "VGA",\
470 .property = "vgamem_mb",\
471 .value = stringify(8),\
472 },{\
473 .driver = "vmware-svga",\
474 .property = "vgamem_mb",\
475 .value = stringify(8),\
476 },{\
477 .driver = "qxl-vga",\
478 .property = "vgamem_mb",\
479 .value = stringify(8),\
480 },{\
481 .driver = "qxl",\
482 .property = "vgamem_mb",\
483 .value = stringify(8),\
ea776abc
SH
484 },{\
485 .driver = "virtio-blk-pci",\
486 .property = "config-wce",\
487 .value = "off",\
9e56edcf
GH
488 }
489
f1dacf1c 490static QEMUMachine pc_machine_v1_1 = {
a0dba644 491 PC_I440FX_1_2_MACHINE_OPTIONS,
f1dacf1c 492 .name = "pc-1.1",
9e56edcf
GH
493 .compat_props = (GlobalProperty[]) {
494 PC_COMPAT_1_1,
495 { /* end of list */ }
496 },
f1dacf1c
GH
497};
498
d6c73008 499#define PC_COMPAT_1_0 \
9e56edcf 500 PC_COMPAT_1_1,\
d6c73008 501 {\
020c8e76 502 .driver = TYPE_ISA_FDC,\
d6c73008
MT
503 .property = "check_media_rate",\
504 .value = "off",\
2ba1d381
DG
505 }, {\
506 .driver = "virtio-balloon-pci",\
507 .property = "class",\
508 .value = stringify(PCI_CLASS_MEMORY_RAM),\
fc34e77b
AL
509 },{\
510 .driver = "apic",\
511 .property = "vapic",\
512 .value = "off",\
eeb0cf9a 513 },{\
bce54474 514 .driver = TYPE_USB_DEVICE,\
eeb0cf9a
GH
515 .property = "full-path",\
516 .value = "no",\
d6c73008
MT
517 }
518
382b3a68 519static QEMUMachine pc_machine_v1_0 = {
a0dba644 520 PC_I440FX_1_2_MACHINE_OPTIONS,
382b3a68 521 .name = "pc-1.0",
1b89fafe 522 .compat_props = (GlobalProperty[]) {
d6c73008 523 PC_COMPAT_1_0,
1b89fafe
JJ
524 { /* end of list */ }
525 },
93bfef4c 526 .hw_version = "1.0",
382b3a68
JJ
527};
528
d6c73008
MT
529#define PC_COMPAT_0_15 \
530 PC_COMPAT_1_0
531
ce01a508 532static QEMUMachine pc_machine_v0_15 = {
a0dba644 533 PC_I440FX_1_2_MACHINE_OPTIONS,
ce01a508 534 .name = "pc-0.15",
1b89fafe 535 .compat_props = (GlobalProperty[]) {
d6c73008 536 PC_COMPAT_0_15,
1b89fafe
JJ
537 { /* end of list */ }
538 },
93bfef4c 539 .hw_version = "0.15",
ce01a508
AL
540};
541
d6c73008
MT
542#define PC_COMPAT_0_14 \
543 PC_COMPAT_0_15,\
544 {\
545 .driver = "virtio-blk-pci",\
546 .property = "event_idx",\
547 .value = "off",\
548 },{\
549 .driver = "virtio-serial-pci",\
550 .property = "event_idx",\
551 .value = "off",\
552 },{\
553 .driver = "virtio-net-pci",\
554 .property = "event_idx",\
555 .value = "off",\
556 },{\
557 .driver = "virtio-balloon-pci",\
558 .property = "event_idx",\
559 .value = "off",\
560 }
561
19857e62 562static QEMUMachine pc_machine_v0_14 = {
a0dba644 563 PC_I440FX_1_2_MACHINE_OPTIONS,
19857e62 564 .name = "pc-0.14",
3827cdb1 565 .compat_props = (GlobalProperty[]) {
d6c73008 566 PC_COMPAT_0_14,
3827cdb1
AL
567 {
568 .driver = "qxl",
569 .property = "revision",
570 .value = stringify(2),
571 },{
572 .driver = "qxl-vga",
573 .property = "revision",
574 .value = stringify(2),
1b89fafe 575 },
3827cdb1
AL
576 { /* end of list */ }
577 },
93bfef4c 578 .hw_version = "0.14",
19857e62
GH
579};
580
d6c73008
MT
581#define PC_COMPAT_0_13 \
582 PC_COMPAT_0_14,\
583 {\
bce54474 584 .driver = TYPE_PCI_DEVICE,\
d6c73008
MT
585 .property = "command_serr_enable",\
586 .value = "off",\
587 },{\
588 .driver = "AC97",\
589 .property = "use_broken_id",\
590 .value = stringify(1),\
591 }
592
a0dba644
MT
593#define PC_I440FX_0_13_MACHINE_OPTIONS \
594 PC_I440FX_1_2_MACHINE_OPTIONS, \
595 .init = pc_init_pci_no_kvmclock
596
b903a0f7 597static QEMUMachine pc_machine_v0_13 = {
a0dba644 598 PC_I440FX_0_13_MACHINE_OPTIONS,
b903a0f7 599 .name = "pc-0.13",
9dbcca5a 600 .compat_props = (GlobalProperty[]) {
d6c73008 601 PC_COMPAT_0_13,
9dbcca5a
GH
602 {
603 .driver = "virtio-9p-pci",
604 .property = "vectors",
605 .value = stringify(0),
281a26b1
GH
606 },{
607 .driver = "VGA",
608 .property = "rombar",
609 .value = stringify(0),
610 },{
611 .driver = "vmware-svga",
612 .property = "rombar",
613 .value = stringify(0),
1b89fafe 614 },
9dbcca5a
GH
615 { /* end of list */ }
616 },
93bfef4c 617 .hw_version = "0.13",
b903a0f7
GH
618};
619
d6c73008
MT
620#define PC_COMPAT_0_12 \
621 PC_COMPAT_0_13,\
622 {\
623 .driver = "virtio-serial-pci",\
624 .property = "max_ports",\
625 .value = stringify(1),\
626 },{\
627 .driver = "virtio-serial-pci",\
628 .property = "vectors",\
629 .value = stringify(0),\
93c8e4dc
GH
630 },{\
631 .driver = "usb-mouse",\
632 .property = "serial",\
633 .value = "1",\
634 },{\
635 .driver = "usb-tablet",\
636 .property = "serial",\
637 .value = "1",\
638 },{\
639 .driver = "usb-kbd",\
640 .property = "serial",\
641 .value = "1",\
d6c73008
MT
642 }
643
845773ab 644static QEMUMachine pc_machine_v0_12 = {
a0dba644 645 PC_I440FX_0_13_MACHINE_OPTIONS,
845773ab 646 .name = "pc-0.12",
845773ab 647 .compat_props = (GlobalProperty[]) {
d6c73008 648 PC_COMPAT_0_12,
845773ab 649 {
281a26b1
GH
650 .driver = "VGA",
651 .property = "rombar",
652 .value = stringify(0),
653 },{
654 .driver = "vmware-svga",
655 .property = "rombar",
656 .value = stringify(0),
1b89fafe 657 },
845773ab 658 { /* end of list */ }
93bfef4c
CV
659 },
660 .hw_version = "0.12",
845773ab
IY
661};
662
d6c73008
MT
663#define PC_COMPAT_0_11 \
664 PC_COMPAT_0_12,\
665 {\
666 .driver = "virtio-blk-pci",\
667 .property = "vectors",\
668 .value = stringify(0),\
c115cd65 669 },{\
bce54474 670 .driver = TYPE_PCI_DEVICE,\
c115cd65
PB
671 .property = "rombar",\
672 .value = stringify(0),\
d6c73008
MT
673 }
674
845773ab 675static QEMUMachine pc_machine_v0_11 = {
a0dba644 676 PC_I440FX_0_13_MACHINE_OPTIONS,
845773ab 677 .name = "pc-0.11",
845773ab 678 .compat_props = (GlobalProperty[]) {
d6c73008 679 PC_COMPAT_0_11,
845773ab 680 {
845773ab
IY
681 .driver = "ide-drive",
682 .property = "ver",
683 .value = "0.11",
684 },{
685 .driver = "scsi-disk",
686 .property = "ver",
687 .value = "0.11",
1b89fafe 688 },
845773ab 689 { /* end of list */ }
93bfef4c
CV
690 },
691 .hw_version = "0.11",
845773ab
IY
692};
693
694static QEMUMachine pc_machine_v0_10 = {
a0dba644 695 PC_I440FX_0_13_MACHINE_OPTIONS,
845773ab 696 .name = "pc-0.10",
845773ab 697 .compat_props = (GlobalProperty[]) {
d6c73008 698 PC_COMPAT_0_11,
845773ab
IY
699 {
700 .driver = "virtio-blk-pci",
701 .property = "class",
702 .value = stringify(PCI_CLASS_STORAGE_OTHER),
703 },{
704 .driver = "virtio-serial-pci",
705 .property = "class",
706 .value = stringify(PCI_CLASS_DISPLAY_OTHER),
845773ab
IY
707 },{
708 .driver = "virtio-net-pci",
709 .property = "vectors",
710 .value = stringify(0),
845773ab
IY
711 },{
712 .driver = "ide-drive",
713 .property = "ver",
714 .value = "0.10",
715 },{
716 .driver = "scsi-disk",
717 .property = "ver",
718 .value = "0.10",
1b89fafe 719 },
845773ab
IY
720 { /* end of list */ }
721 },
93bfef4c 722 .hw_version = "0.10",
845773ab
IY
723};
724
725static QEMUMachine isapc_machine = {
a0dba644 726 PC_COMMON_MACHINE_OPTIONS,
845773ab
IY
727 .name = "isapc",
728 .desc = "ISA-only PC",
729 .init = pc_init_isa,
730 .max_cpus = 1,
1b89fafe 731 .compat_props = (GlobalProperty[]) {
1b89fafe
JJ
732 { /* end of list */ }
733 },
845773ab
IY
734};
735
29d3ccde
AP
736#ifdef CONFIG_XEN
737static QEMUMachine xenfv_machine = {
a0dba644 738 PC_COMMON_MACHINE_OPTIONS,
29d3ccde
AP
739 .name = "xenfv",
740 .desc = "Xen Fully-virtualized PC",
741 .init = pc_xen_hvm_init,
742 .max_cpus = HVM_MAX_VCPUS,
743 .default_machine_opts = "accel=xen",
594278d9 744 .hot_add_cpu = pc_hot_add_cpu,
29d3ccde
AP
745};
746#endif
747
845773ab
IY
748static void pc_machine_init(void)
749{
e9845f09 750 qemu_register_machine(&pc_i440fx_machine_v1_7);
45053fde 751 qemu_register_machine(&pc_i440fx_machine_v1_6);
bf3caa3d 752 qemu_register_machine(&pc_i440fx_machine_v1_5);
94dec594 753 qemu_register_machine(&pc_i440fx_machine_v1_4);
f4306941 754 qemu_register_machine(&pc_machine_v1_3);
f1dacf1c 755 qemu_register_machine(&pc_machine_v1_2);
382b3a68 756 qemu_register_machine(&pc_machine_v1_1);
19857e62 757 qemu_register_machine(&pc_machine_v1_0);
ce01a508 758 qemu_register_machine(&pc_machine_v0_15);
19857e62 759 qemu_register_machine(&pc_machine_v0_14);
b903a0f7 760 qemu_register_machine(&pc_machine_v0_13);
845773ab
IY
761 qemu_register_machine(&pc_machine_v0_12);
762 qemu_register_machine(&pc_machine_v0_11);
763 qemu_register_machine(&pc_machine_v0_10);
764 qemu_register_machine(&isapc_machine);
29d3ccde
AP
765#ifdef CONFIG_XEN
766 qemu_register_machine(&xenfv_machine);
767#endif
845773ab
IY
768}
769
770machine_init(pc_machine_init);