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