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