2010-05-14 09:29:15 +02:00
|
|
|
/*
|
|
|
|
* QEMU PC System Emulator
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2004 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "hw.h"
|
|
|
|
#include "pc.h"
|
|
|
|
#include "apic.h"
|
|
|
|
#include "pci.h"
|
|
|
|
#include "usb-uhci.h"
|
|
|
|
#include "usb-ohci.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "boards.h"
|
|
|
|
#include "ide.h"
|
|
|
|
#include "kvm.h"
|
2011-02-07 12:19:26 +01:00
|
|
|
#include "kvmclock.h"
|
2010-06-02 18:48:27 +02:00
|
|
|
#include "sysemu.h"
|
2010-06-19 09:41:43 +02:00
|
|
|
#include "sysbus.h"
|
2011-01-21 11:53:45 +01:00
|
|
|
#include "arch_init.h"
|
2010-08-24 17:22:24 +02:00
|
|
|
#include "blockdev.h"
|
2011-04-05 04:07:06 +02:00
|
|
|
#include "smbus.h"
|
2010-06-30 13:58:34 +02:00
|
|
|
#include "xen.h"
|
2011-07-26 13:26:16 +02:00
|
|
|
#include "memory.h"
|
|
|
|
#include "exec-memory.h"
|
2010-06-30 13:58:34 +02:00
|
|
|
#ifdef CONFIG_XEN
|
|
|
|
# include <xen/hvm/hvm_info_table.h>
|
|
|
|
#endif
|
2010-05-14 09:29:15 +02:00
|
|
|
|
|
|
|
#define MAX_IDE_BUS 2
|
|
|
|
|
|
|
|
static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 };
|
|
|
|
static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 };
|
|
|
|
static const int ide_irq[MAX_IDE_BUS] = { 14, 15 };
|
|
|
|
|
2010-06-19 09:41:43 +02:00
|
|
|
static void ioapic_init(IsaIrqState *isa_irq_state)
|
|
|
|
{
|
|
|
|
DeviceState *dev;
|
|
|
|
SysBusDevice *d;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
dev = qdev_create(NULL, "ioapic");
|
|
|
|
qdev_init_nofail(dev);
|
|
|
|
d = sysbus_from_qdev(dev);
|
|
|
|
sysbus_mmio_map(d, 0, 0xfec00000);
|
|
|
|
|
|
|
|
for (i = 0; i < IOAPIC_NUM_PINS; i++) {
|
|
|
|
isa_irq_state->ioapic[i] = qdev_get_gpio_in(dev, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-14 09:29:15 +02:00
|
|
|
/* PC hardware initialisation */
|
2011-07-26 13:26:18 +02:00
|
|
|
static void pc_init1(MemoryRegion *system_memory,
|
2011-08-08 15:09:04 +02:00
|
|
|
MemoryRegion *system_io,
|
2011-07-26 13:26:18 +02:00
|
|
|
ram_addr_t ram_size,
|
2010-05-14 09:29:15 +02:00
|
|
|
const char *boot_device,
|
|
|
|
const char *kernel_filename,
|
|
|
|
const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename,
|
|
|
|
const char *cpu_model,
|
2011-02-07 12:19:26 +01:00
|
|
|
int pci_enabled,
|
|
|
|
int kvmclock_enabled)
|
2010-05-14 09:29:15 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
ram_addr_t below_4g_mem_size, above_4g_mem_size;
|
|
|
|
PCIBus *pci_bus;
|
|
|
|
PCII440FXState *i440fx_state;
|
|
|
|
int piix3_devfn = -1;
|
|
|
|
qemu_irq *cpu_irq;
|
|
|
|
qemu_irq *isa_irq;
|
|
|
|
qemu_irq *i8259;
|
|
|
|
qemu_irq *cmos_s3;
|
|
|
|
qemu_irq *smi_irq;
|
|
|
|
IsaIrqState *isa_irq_state;
|
|
|
|
DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
|
2010-06-24 19:58:20 +02:00
|
|
|
BusState *idebus[MAX_IDE_BUS];
|
2010-05-14 09:29:17 +02:00
|
|
|
ISADevice *rtc_state;
|
2010-05-14 09:29:15 +02:00
|
|
|
|
|
|
|
pc_cpus_init(cpu_model);
|
|
|
|
|
2011-02-07 12:19:26 +01:00
|
|
|
if (kvmclock_enabled) {
|
|
|
|
kvmclock_create();
|
|
|
|
}
|
|
|
|
|
2011-04-11 20:48:11 +02:00
|
|
|
if (ram_size >= 0xe0000000 ) {
|
|
|
|
above_4g_mem_size = ram_size - 0xe0000000;
|
|
|
|
below_4g_mem_size = 0xe0000000;
|
|
|
|
} else {
|
|
|
|
above_4g_mem_size = 0;
|
|
|
|
below_4g_mem_size = ram_size;
|
|
|
|
}
|
|
|
|
|
2010-05-14 09:29:15 +02:00
|
|
|
/* allocate ram and load rom/bios */
|
2010-06-30 13:58:34 +02:00
|
|
|
if (!xen_enabled()) {
|
2011-07-26 13:26:16 +02:00
|
|
|
pc_memory_init(system_memory,
|
|
|
|
kernel_filename, kernel_cmdline, initrd_filename,
|
2010-06-30 13:58:34 +02:00
|
|
|
below_4g_mem_size, above_4g_mem_size);
|
|
|
|
}
|
2010-05-14 09:29:15 +02:00
|
|
|
|
2010-06-30 18:50:10 +02:00
|
|
|
if (!xen_enabled()) {
|
|
|
|
cpu_irq = pc_allocate_cpu_irq();
|
|
|
|
i8259 = i8259_init(cpu_irq[0]);
|
|
|
|
} else {
|
|
|
|
i8259 = xen_interrupt_controller_init();
|
|
|
|
}
|
2010-05-14 09:29:15 +02:00
|
|
|
isa_irq_state = qemu_mallocz(sizeof(*isa_irq_state));
|
|
|
|
isa_irq_state->i8259 = i8259;
|
|
|
|
if (pci_enabled) {
|
2010-06-19 09:41:43 +02:00
|
|
|
ioapic_init(isa_irq_state);
|
2010-05-14 09:29:15 +02:00
|
|
|
}
|
|
|
|
isa_irq = qemu_allocate_irqs(isa_irq_handler, isa_irq_state, 24);
|
|
|
|
|
|
|
|
if (pci_enabled) {
|
2011-07-26 13:26:19 +02:00
|
|
|
pci_bus = i440fx_init(&i440fx_state, &piix3_devfn, isa_irq,
|
2011-08-08 15:09:04 +02:00
|
|
|
system_memory, system_io, ram_size);
|
2010-05-14 09:29:15 +02:00
|
|
|
} else {
|
|
|
|
pci_bus = NULL;
|
isapc: fix segfault.
https://bugs.launchpad.net/bugs/611646
reports that ./i386-softmmu/qemu -M isapc segfaults.
This patch fixes the segfault introduced by
f885f1eaa8711c06033ceb1599e3750fb37c306f
It's because i440fx_state in pc_init1() isn't initialized.
> Core was generated by `./i386-softmmu/qemu -M isapc'.
> Program terminated with signal 11, Segmentation fault.
> [New process 19686]
> at qemu/hw/piix_pci.c:136
> (gdb) where
> at qemu/hw/piix_pci.c:136
> boot_device=0x7fffe1f5b040 "cad", kernel_filename=0x0,
> kernel_cmdline=0x6469bf "", initrd_filename=0x0,
> cpu_model=0x654d10 "486", pci_enabled=0)
> at qemu/hw/pc_piix.c:178
> boot_device=0x7fffe1f5b040 "cad", kernel_filename=0x0,
> kernel_cmdline=0x6469bf "", initrd_filename=0x0, cpu_model=0x654d10 "486")
> at qemu/hw/pc_piix.c:207
> envp=0x7fffe1f5b188)
> at qemu/vl.c:2871
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
2010-08-04 10:43:20 +02:00
|
|
|
i440fx_state = NULL;
|
2010-05-14 09:29:15 +02:00
|
|
|
isa_bus_new(NULL);
|
|
|
|
}
|
|
|
|
isa_bus_irqs(isa_irq);
|
|
|
|
|
2011-02-19 18:56:22 +01:00
|
|
|
pc_register_ferr_irq(isa_get_irq(13));
|
2010-05-14 09:29:15 +02:00
|
|
|
|
|
|
|
pc_vga_init(pci_enabled? pci_bus: NULL);
|
|
|
|
|
2011-06-16 18:05:17 +02:00
|
|
|
if (xen_enabled()) {
|
|
|
|
pci_create_simple(pci_bus, -1, "xen-platform");
|
|
|
|
}
|
|
|
|
|
2010-05-14 09:29:15 +02:00
|
|
|
/* init basic PC hardware */
|
2011-05-03 18:06:54 +02:00
|
|
|
pc_basic_device_init(isa_irq, &rtc_state, xen_enabled());
|
2010-05-14 09:29:15 +02:00
|
|
|
|
|
|
|
for(i = 0; i < nb_nics; i++) {
|
|
|
|
NICInfo *nd = &nd_table[i];
|
|
|
|
|
|
|
|
if (!pci_enabled || (nd->model && strcmp(nd->model, "ne2k_isa") == 0))
|
|
|
|
pc_init_ne2k_isa(nd);
|
|
|
|
else
|
|
|
|
pci_nic_init_nofail(nd, "e1000", NULL);
|
|
|
|
}
|
|
|
|
|
2011-04-03 13:32:46 +02:00
|
|
|
ide_drive_get(hd, MAX_IDE_BUS);
|
2010-05-14 09:29:15 +02:00
|
|
|
if (pci_enabled) {
|
2010-06-24 19:58:20 +02:00
|
|
|
PCIDevice *dev;
|
2011-07-18 08:07:02 +02:00
|
|
|
if (xen_enabled()) {
|
|
|
|
dev = pci_piix3_xen_ide_init(pci_bus, hd, piix3_devfn + 1);
|
|
|
|
} else {
|
|
|
|
dev = pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1);
|
|
|
|
}
|
2010-06-24 19:58:20 +02:00
|
|
|
idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0");
|
|
|
|
idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1");
|
2010-05-14 09:29:15 +02:00
|
|
|
} else {
|
|
|
|
for(i = 0; i < MAX_IDE_BUS; i++) {
|
2010-06-24 19:58:20 +02:00
|
|
|
ISADevice *dev;
|
|
|
|
dev = isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i],
|
|
|
|
hd[MAX_IDE_DEVS * i], hd[MAX_IDE_DEVS * i + 1]);
|
|
|
|
idebus[i] = qdev_get_child_bus(&dev->qdev, "ide.0");
|
2010-05-14 09:29:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-21 11:53:45 +01:00
|
|
|
audio_init(isa_irq, pci_enabled ? pci_bus : NULL);
|
2010-05-14 09:29:15 +02:00
|
|
|
|
2010-06-24 19:58:20 +02:00
|
|
|
pc_cmos_init(below_4g_mem_size, above_4g_mem_size, boot_device,
|
2011-02-05 17:32:23 +01:00
|
|
|
idebus[0], idebus[1], rtc_state);
|
2010-05-14 09:29:15 +02:00
|
|
|
|
|
|
|
if (pci_enabled && usb_enabled) {
|
|
|
|
usb_uhci_piix3_init(pci_bus, piix3_devfn + 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pci_enabled && acpi_enabled) {
|
|
|
|
i2c_bus *smbus;
|
|
|
|
|
2010-10-05 17:40:22 +02:00
|
|
|
if (!xen_enabled()) {
|
|
|
|
cmos_s3 = qemu_allocate_irqs(pc_cmos_set_s3_resume, rtc_state, 1);
|
|
|
|
} else {
|
|
|
|
cmos_s3 = qemu_allocate_irqs(xen_cmos_set_s3_resume, rtc_state, 1);
|
|
|
|
}
|
2010-05-14 09:29:15 +02:00
|
|
|
smi_irq = qemu_allocate_irqs(pc_acpi_smi_interrupt, first_cpu, 1);
|
|
|
|
/* TODO: Populate SPD eeprom data. */
|
|
|
|
smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100,
|
2011-02-19 18:56:22 +01:00
|
|
|
isa_get_irq(9), *cmos_s3, *smi_irq,
|
2010-05-14 09:29:15 +02:00
|
|
|
kvm_enabled());
|
2011-04-05 04:07:06 +02:00
|
|
|
smbus_eeprom_init(smbus, 8, NULL, 0);
|
2010-05-14 09:29:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (i440fx_state) {
|
|
|
|
i440fx_init_memory_mappings(i440fx_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pci_enabled) {
|
|
|
|
pc_pci_device_init(pci_bus);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pc_init_pci(ram_addr_t ram_size,
|
|
|
|
const char *boot_device,
|
|
|
|
const char *kernel_filename,
|
|
|
|
const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename,
|
|
|
|
const char *cpu_model)
|
|
|
|
{
|
2011-07-26 13:26:18 +02:00
|
|
|
pc_init1(get_system_memory(),
|
2011-08-08 15:09:04 +02:00
|
|
|
get_system_io(),
|
2011-07-26 13:26:18 +02:00
|
|
|
ram_size, boot_device,
|
2010-05-14 09:29:15 +02:00
|
|
|
kernel_filename, kernel_cmdline,
|
2011-02-07 12:19:26 +01:00
|
|
|
initrd_filename, cpu_model, 1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pc_init_pci_no_kvmclock(ram_addr_t ram_size,
|
|
|
|
const char *boot_device,
|
|
|
|
const char *kernel_filename,
|
|
|
|
const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename,
|
|
|
|
const char *cpu_model)
|
|
|
|
{
|
2011-07-26 13:26:18 +02:00
|
|
|
pc_init1(get_system_memory(),
|
2011-08-08 15:09:04 +02:00
|
|
|
get_system_io(),
|
2011-07-26 13:26:18 +02:00
|
|
|
ram_size, boot_device,
|
2011-02-07 12:19:26 +01:00
|
|
|
kernel_filename, kernel_cmdline,
|
|
|
|
initrd_filename, cpu_model, 1, 0);
|
2010-05-14 09:29:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void pc_init_isa(ram_addr_t ram_size,
|
|
|
|
const char *boot_device,
|
|
|
|
const char *kernel_filename,
|
|
|
|
const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename,
|
|
|
|
const char *cpu_model)
|
|
|
|
{
|
|
|
|
if (cpu_model == NULL)
|
|
|
|
cpu_model = "486";
|
2011-07-26 13:26:18 +02:00
|
|
|
pc_init1(get_system_memory(),
|
2011-08-08 15:09:04 +02:00
|
|
|
get_system_io(),
|
2011-07-26 13:26:18 +02:00
|
|
|
ram_size, boot_device,
|
2010-05-14 09:29:15 +02:00
|
|
|
kernel_filename, kernel_cmdline,
|
2011-02-07 12:19:26 +01:00
|
|
|
initrd_filename, cpu_model, 0, 1);
|
2010-05-14 09:29:15 +02:00
|
|
|
}
|
|
|
|
|
2010-06-30 13:58:34 +02:00
|
|
|
#ifdef CONFIG_XEN
|
|
|
|
static void pc_xen_hvm_init(ram_addr_t ram_size,
|
|
|
|
const char *boot_device,
|
|
|
|
const char *kernel_filename,
|
|
|
|
const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename,
|
|
|
|
const char *cpu_model)
|
|
|
|
{
|
|
|
|
if (xen_hvm_init() != 0) {
|
|
|
|
hw_error("xen hardware virtual machine initialisation failed");
|
|
|
|
}
|
|
|
|
pc_init_pci_no_kvmclock(ram_size, boot_device,
|
|
|
|
kernel_filename, kernel_cmdline,
|
|
|
|
initrd_filename, cpu_model);
|
|
|
|
xen_vcpu_init();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-14 09:29:15 +02:00
|
|
|
static QEMUMachine pc_machine = {
|
2010-11-11 12:59:25 +01:00
|
|
|
.name = "pc-0.14",
|
2010-05-14 09:29:15 +02:00
|
|
|
.alias = "pc",
|
|
|
|
.desc = "Standard PC",
|
|
|
|
.init = pc_init_pci,
|
|
|
|
.max_cpus = 255,
|
|
|
|
.is_default = 1,
|
|
|
|
};
|
|
|
|
|
2010-11-11 12:59:25 +01:00
|
|
|
static QEMUMachine pc_machine_v0_13 = {
|
|
|
|
.name = "pc-0.13",
|
|
|
|
.desc = "Standard PC",
|
2011-02-07 12:19:26 +01:00
|
|
|
.init = pc_init_pci_no_kvmclock,
|
2010-11-11 12:59:25 +01:00
|
|
|
.max_cpus = 255,
|
2010-11-11 12:59:26 +01:00
|
|
|
.compat_props = (GlobalProperty[]) {
|
|
|
|
{
|
|
|
|
.driver = "virtio-9p-pci",
|
|
|
|
.property = "vectors",
|
|
|
|
.value = stringify(0),
|
2010-11-17 12:06:44 +01:00
|
|
|
},{
|
|
|
|
.driver = "VGA",
|
|
|
|
.property = "rombar",
|
|
|
|
.value = stringify(0),
|
|
|
|
},{
|
|
|
|
.driver = "vmware-svga",
|
|
|
|
.property = "rombar",
|
|
|
|
.value = stringify(0),
|
2010-12-22 07:13:43 +01:00
|
|
|
},{
|
|
|
|
.driver = "PCI",
|
|
|
|
.property = "command_serr_enable",
|
|
|
|
.value = "off",
|
2011-06-12 15:31:38 +02:00
|
|
|
},{
|
|
|
|
.driver = "virtio-blk-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
|
|
|
},{
|
|
|
|
.driver = "virtio-serial-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
|
|
|
},{
|
|
|
|
.driver = "virtio-net-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
2010-11-11 12:59:26 +01:00
|
|
|
},
|
|
|
|
{ /* end of list */ }
|
|
|
|
},
|
2010-11-11 12:59:25 +01:00
|
|
|
};
|
|
|
|
|
2010-05-14 09:29:15 +02:00
|
|
|
static QEMUMachine pc_machine_v0_12 = {
|
|
|
|
.name = "pc-0.12",
|
|
|
|
.desc = "Standard PC",
|
2011-02-07 12:19:26 +01:00
|
|
|
.init = pc_init_pci_no_kvmclock,
|
2010-05-14 09:29:15 +02:00
|
|
|
.max_cpus = 255,
|
|
|
|
.compat_props = (GlobalProperty[]) {
|
|
|
|
{
|
|
|
|
.driver = "virtio-serial-pci",
|
2010-06-23 19:19:20 +02:00
|
|
|
.property = "max_ports",
|
2010-05-14 09:29:15 +02:00
|
|
|
.value = stringify(1),
|
|
|
|
},{
|
|
|
|
.driver = "virtio-serial-pci",
|
|
|
|
.property = "vectors",
|
|
|
|
.value = stringify(0),
|
2010-11-17 12:06:44 +01:00
|
|
|
},{
|
|
|
|
.driver = "VGA",
|
|
|
|
.property = "rombar",
|
|
|
|
.value = stringify(0),
|
|
|
|
},{
|
|
|
|
.driver = "vmware-svga",
|
|
|
|
.property = "rombar",
|
|
|
|
.value = stringify(0),
|
2010-11-26 13:01:41 +01:00
|
|
|
},{
|
|
|
|
.driver = "PCI",
|
|
|
|
.property = "command_serr_enable",
|
|
|
|
.value = "off",
|
2011-06-12 15:31:38 +02:00
|
|
|
},{
|
|
|
|
.driver = "virtio-blk-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
|
|
|
},{
|
|
|
|
.driver = "virtio-serial-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
|
|
|
},{
|
|
|
|
.driver = "virtio-net-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
2010-05-14 09:29:15 +02:00
|
|
|
},
|
|
|
|
{ /* end of list */ }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static QEMUMachine pc_machine_v0_11 = {
|
|
|
|
.name = "pc-0.11",
|
|
|
|
.desc = "Standard PC, qemu 0.11",
|
2011-02-07 12:19:26 +01:00
|
|
|
.init = pc_init_pci_no_kvmclock,
|
2010-05-14 09:29:15 +02:00
|
|
|
.max_cpus = 255,
|
|
|
|
.compat_props = (GlobalProperty[]) {
|
|
|
|
{
|
|
|
|
.driver = "virtio-blk-pci",
|
|
|
|
.property = "vectors",
|
|
|
|
.value = stringify(0),
|
|
|
|
},{
|
|
|
|
.driver = "virtio-serial-pci",
|
2010-06-23 19:19:20 +02:00
|
|
|
.property = "max_ports",
|
2010-05-14 09:29:15 +02:00
|
|
|
.value = stringify(1),
|
|
|
|
},{
|
|
|
|
.driver = "virtio-serial-pci",
|
|
|
|
.property = "vectors",
|
|
|
|
.value = stringify(0),
|
|
|
|
},{
|
|
|
|
.driver = "ide-drive",
|
|
|
|
.property = "ver",
|
|
|
|
.value = "0.11",
|
|
|
|
},{
|
|
|
|
.driver = "scsi-disk",
|
|
|
|
.property = "ver",
|
|
|
|
.value = "0.11",
|
|
|
|
},{
|
|
|
|
.driver = "PCI",
|
|
|
|
.property = "rombar",
|
|
|
|
.value = stringify(0),
|
2010-11-26 13:01:41 +01:00
|
|
|
},{
|
|
|
|
.driver = "PCI",
|
|
|
|
.property = "command_serr_enable",
|
|
|
|
.value = "off",
|
2011-06-12 15:31:38 +02:00
|
|
|
},{
|
|
|
|
.driver = "virtio-blk-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
|
|
|
},{
|
|
|
|
.driver = "virtio-serial-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
|
|
|
},{
|
|
|
|
.driver = "virtio-net-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
2010-05-14 09:29:15 +02:00
|
|
|
},
|
|
|
|
{ /* end of list */ }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static QEMUMachine pc_machine_v0_10 = {
|
|
|
|
.name = "pc-0.10",
|
|
|
|
.desc = "Standard PC, qemu 0.10",
|
2011-02-07 12:19:26 +01:00
|
|
|
.init = pc_init_pci_no_kvmclock,
|
2010-05-14 09:29:15 +02:00
|
|
|
.max_cpus = 255,
|
|
|
|
.compat_props = (GlobalProperty[]) {
|
|
|
|
{
|
|
|
|
.driver = "virtio-blk-pci",
|
|
|
|
.property = "class",
|
|
|
|
.value = stringify(PCI_CLASS_STORAGE_OTHER),
|
|
|
|
},{
|
|
|
|
.driver = "virtio-serial-pci",
|
|
|
|
.property = "class",
|
|
|
|
.value = stringify(PCI_CLASS_DISPLAY_OTHER),
|
|
|
|
},{
|
|
|
|
.driver = "virtio-serial-pci",
|
2010-06-23 19:19:20 +02:00
|
|
|
.property = "max_ports",
|
2010-05-14 09:29:15 +02:00
|
|
|
.value = stringify(1),
|
|
|
|
},{
|
|
|
|
.driver = "virtio-serial-pci",
|
|
|
|
.property = "vectors",
|
|
|
|
.value = stringify(0),
|
|
|
|
},{
|
|
|
|
.driver = "virtio-net-pci",
|
|
|
|
.property = "vectors",
|
|
|
|
.value = stringify(0),
|
|
|
|
},{
|
|
|
|
.driver = "virtio-blk-pci",
|
|
|
|
.property = "vectors",
|
|
|
|
.value = stringify(0),
|
|
|
|
},{
|
|
|
|
.driver = "ide-drive",
|
|
|
|
.property = "ver",
|
|
|
|
.value = "0.10",
|
|
|
|
},{
|
|
|
|
.driver = "scsi-disk",
|
|
|
|
.property = "ver",
|
|
|
|
.value = "0.10",
|
|
|
|
},{
|
|
|
|
.driver = "PCI",
|
|
|
|
.property = "rombar",
|
|
|
|
.value = stringify(0),
|
2010-11-26 13:01:41 +01:00
|
|
|
},{
|
|
|
|
.driver = "PCI",
|
|
|
|
.property = "command_serr_enable",
|
|
|
|
.value = "off",
|
2011-06-12 15:31:38 +02:00
|
|
|
},{
|
|
|
|
.driver = "virtio-blk-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
|
|
|
},{
|
|
|
|
.driver = "virtio-serial-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
|
|
|
},{
|
|
|
|
.driver = "virtio-net-pci",
|
|
|
|
.property = "event_idx",
|
|
|
|
.value = "off",
|
2010-05-14 09:29:15 +02:00
|
|
|
},
|
|
|
|
{ /* end of list */ }
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static QEMUMachine isapc_machine = {
|
|
|
|
.name = "isapc",
|
|
|
|
.desc = "ISA-only PC",
|
|
|
|
.init = pc_init_isa,
|
|
|
|
.max_cpus = 1,
|
|
|
|
};
|
|
|
|
|
2010-06-30 13:58:34 +02:00
|
|
|
#ifdef CONFIG_XEN
|
|
|
|
static QEMUMachine xenfv_machine = {
|
|
|
|
.name = "xenfv",
|
|
|
|
.desc = "Xen Fully-virtualized PC",
|
|
|
|
.init = pc_xen_hvm_init,
|
|
|
|
.max_cpus = HVM_MAX_VCPUS,
|
|
|
|
.default_machine_opts = "accel=xen",
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2010-05-14 09:29:15 +02:00
|
|
|
static void pc_machine_init(void)
|
|
|
|
{
|
|
|
|
qemu_register_machine(&pc_machine);
|
2010-11-11 12:59:25 +01:00
|
|
|
qemu_register_machine(&pc_machine_v0_13);
|
2010-05-14 09:29:15 +02:00
|
|
|
qemu_register_machine(&pc_machine_v0_12);
|
|
|
|
qemu_register_machine(&pc_machine_v0_11);
|
|
|
|
qemu_register_machine(&pc_machine_v0_10);
|
|
|
|
qemu_register_machine(&isapc_machine);
|
2010-06-30 13:58:34 +02:00
|
|
|
#ifdef CONFIG_XEN
|
|
|
|
qemu_register_machine(&xenfv_machine);
|
|
|
|
#endif
|
2010-05-14 09:29:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
machine_init(pc_machine_init);
|