2007-11-17 17:14:51 +00:00
|
|
|
#ifndef HW_PC_H
|
|
|
|
#define HW_PC_H
|
2009-03-05 23:01:23 +00:00
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/memory.h"
|
|
|
|
#include "exec/ioport.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/isa/isa.h"
|
|
|
|
#include "hw/block/fdc.h"
|
2012-10-24 08:43:34 +02:00
|
|
|
#include "net/net.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/i386/ioapic.h"
|
2009-03-05 23:01:23 +00:00
|
|
|
|
2013-05-30 12:57:26 +03:00
|
|
|
#include "qemu/range.h"
|
|
|
|
|
2007-11-17 17:14:51 +00:00
|
|
|
/* PC-style peripherals (also used by other machines). */
|
|
|
|
|
2013-05-30 12:57:26 +03:00
|
|
|
typedef struct PcPciInfo {
|
|
|
|
Range w32;
|
|
|
|
Range w64;
|
|
|
|
} PcPciInfo;
|
|
|
|
|
|
|
|
struct PcGuestInfo {
|
|
|
|
PcPciInfo pci_info;
|
2013-05-13 20:00:23 +03:00
|
|
|
bool has_pci_info;
|
2013-05-30 12:57:26 +03:00
|
|
|
FWCfgState *fw_cfg;
|
|
|
|
};
|
|
|
|
|
2007-11-17 17:14:51 +00:00
|
|
|
/* parallel.c */
|
2011-12-15 22:09:51 +01:00
|
|
|
static inline bool parallel_init(ISABus *bus, int index, CharDriverState *chr)
|
2011-02-05 14:51:57 +00:00
|
|
|
{
|
2013-06-07 13:49:13 +02:00
|
|
|
DeviceState *dev;
|
|
|
|
ISADevice *isadev;
|
2011-02-05 14:51:57 +00:00
|
|
|
|
2013-06-07 13:49:13 +02:00
|
|
|
isadev = isa_try_create(bus, "isa-parallel");
|
|
|
|
if (!isadev) {
|
2011-02-05 14:56:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-06-07 13:49:13 +02:00
|
|
|
dev = DEVICE(isadev);
|
|
|
|
qdev_prop_set_uint32(dev, "index", index);
|
|
|
|
qdev_prop_set_chr(dev, "chardev", chr);
|
|
|
|
if (qdev_init(dev) < 0) {
|
2011-02-05 14:51:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-06 16:44:26 +02:00
|
|
|
bool parallel_mm_init(MemoryRegion *address_space,
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr base, int it_shift, qemu_irq irq,
|
2011-02-05 14:51:57 +00:00
|
|
|
CharDriverState *chr);
|
2007-11-17 17:14:51 +00:00
|
|
|
|
|
|
|
/* i8259.c */
|
|
|
|
|
2012-01-10 16:31:16 +01:00
|
|
|
extern DeviceState *isa_pic;
|
2011-12-15 22:09:51 +01:00
|
|
|
qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq);
|
2011-10-16 15:30:27 +02:00
|
|
|
qemu_irq *kvm_i8259_init(ISABus *bus);
|
2012-01-10 16:31:16 +01:00
|
|
|
int pic_read_irq(DeviceState *d);
|
|
|
|
int pic_get_output(DeviceState *d);
|
2013-01-14 14:06:25 +08:00
|
|
|
void pic_info(Monitor *mon, const QDict *qdict);
|
|
|
|
void irq_info(Monitor *mon, const QDict *qdict);
|
2007-11-17 17:14:51 +00:00
|
|
|
|
2011-10-07 09:19:35 +02:00
|
|
|
/* Global System Interrupts */
|
2010-06-19 07:41:43 +00:00
|
|
|
|
2011-10-07 09:19:35 +02:00
|
|
|
#define GSI_NUM_PINS IOAPIC_NUM_PINS
|
2010-05-14 16:29:15 +09:00
|
|
|
|
2011-10-07 09:19:35 +02:00
|
|
|
typedef struct GSIState {
|
2011-10-07 09:19:36 +02:00
|
|
|
qemu_irq i8259_irq[ISA_NUM_IRQS];
|
2011-10-07 09:19:35 +02:00
|
|
|
qemu_irq ioapic_irq[IOAPIC_NUM_PINS];
|
|
|
|
} GSIState;
|
|
|
|
|
|
|
|
void gsi_handler(void *opaque, int n, int level);
|
2010-05-14 16:29:15 +09:00
|
|
|
|
2007-11-17 17:14:51 +00:00
|
|
|
/* vmport.c */
|
2011-12-15 22:09:51 +01:00
|
|
|
static inline void vmport_init(ISABus *bus)
|
2011-02-05 14:34:41 +00:00
|
|
|
{
|
2011-12-15 22:09:51 +01:00
|
|
|
isa_create_simple(bus, "vmport");
|
2011-02-05 14:34:41 +00:00
|
|
|
}
|
2007-11-17 17:14:51 +00:00
|
|
|
void vmport_register(unsigned char command, IOPortReadFunc *func, void *opaque);
|
2011-02-05 14:34:52 +00:00
|
|
|
void vmmouse_get_data(uint32_t *data);
|
|
|
|
void vmmouse_set_data(const uint32_t *data);
|
2007-11-17 17:14:51 +00:00
|
|
|
|
|
|
|
/* pckbd.c */
|
|
|
|
|
|
|
|
void i8042_init(qemu_irq kbd_irq, qemu_irq mouse_irq, uint32_t io_base);
|
|
|
|
void i8042_mm_init(qemu_irq kbd_irq, qemu_irq mouse_irq,
|
2011-08-10 15:28:17 -07:00
|
|
|
MemoryRegion *region, ram_addr_t size,
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr mask);
|
2010-05-22 07:59:01 +00:00
|
|
|
void i8042_isa_mouse_fake_event(void *opaque);
|
|
|
|
void i8042_setup_a20_line(ISADevice *dev, qemu_irq *a20_out);
|
2007-11-17 17:14:51 +00:00
|
|
|
|
|
|
|
/* pc.c */
|
|
|
|
extern int fd_bootchk;
|
|
|
|
|
2010-05-14 16:29:09 +09:00
|
|
|
void pc_register_ferr_irq(qemu_irq irq);
|
2010-05-14 16:29:15 +09:00
|
|
|
void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
|
|
|
|
|
2013-04-29 18:54:13 +02:00
|
|
|
void pc_cpus_init(const char *cpu_model, DeviceState *icc_bridge);
|
2013-04-30 18:00:53 +02:00
|
|
|
void pc_hot_add_cpu(const int64_t id, Error **errp);
|
2012-12-03 10:47:27 +01:00
|
|
|
void pc_acpi_init(const char *default_dsdt);
|
2013-05-30 12:57:26 +03:00
|
|
|
|
|
|
|
PcGuestInfo *pc_guest_info_init(ram_addr_t below_4g_mem_size,
|
|
|
|
ram_addr_t above_4g_mem_size);
|
|
|
|
|
2013-04-16 02:24:08 +02:00
|
|
|
FWCfgState *pc_memory_init(MemoryRegion *system_memory,
|
|
|
|
const char *kernel_filename,
|
|
|
|
const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename,
|
|
|
|
ram_addr_t below_4g_mem_size,
|
|
|
|
ram_addr_t above_4g_mem_size,
|
|
|
|
MemoryRegion *rom_memory,
|
2013-05-30 12:57:26 +03:00
|
|
|
MemoryRegion **ram_memory,
|
|
|
|
PcGuestInfo *guest_info);
|
2010-05-14 16:29:15 +09:00
|
|
|
qemu_irq *pc_allocate_cpu_irq(void);
|
2011-12-15 22:09:51 +01:00
|
|
|
DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus);
|
|
|
|
void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
|
2011-05-03 17:06:54 +01:00
|
|
|
ISADevice **rtc_state,
|
2011-10-20 16:37:26 +02:00
|
|
|
ISADevice **floppy,
|
2011-05-03 17:06:54 +01:00
|
|
|
bool no_vmport);
|
2011-12-15 22:09:51 +01:00
|
|
|
void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
|
2010-05-14 16:29:15 +09:00
|
|
|
void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
|
2010-06-24 19:58:20 +02:00
|
|
|
const char *boot_device,
|
2011-10-20 16:37:26 +02:00
|
|
|
ISADevice *floppy, BusState *ide0, BusState *ide1,
|
2011-02-05 16:32:23 +00:00
|
|
|
ISADevice *s);
|
2012-11-14 15:54:01 -05:00
|
|
|
void pc_nic_init(ISABus *isa_bus, PCIBus *pci_bus);
|
2010-05-14 16:29:15 +09:00
|
|
|
void pc_pci_device_init(PCIBus *pci_bus);
|
2010-05-14 16:29:09 +09:00
|
|
|
|
2010-05-14 16:29:04 +09:00
|
|
|
typedef void (*cpu_set_smm_t)(int smm, void *arg);
|
|
|
|
void cpu_smm_register(cpu_set_smm_t callback, void *arg);
|
|
|
|
|
2012-11-14 15:54:01 -05:00
|
|
|
void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name);
|
|
|
|
|
2009-06-18 19:57:00 +09:00
|
|
|
/* acpi_piix.c */
|
2010-03-29 19:23:52 +00:00
|
|
|
|
2008-03-18 06:53:05 +00:00
|
|
|
i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
|
2012-02-23 13:45:20 +01:00
|
|
|
qemu_irq sci_irq, qemu_irq smi_irq,
|
2013-04-16 02:24:08 +02:00
|
|
|
int kvm_enabled, FWCfgState *fw_cfg);
|
2007-11-17 17:14:51 +00:00
|
|
|
void piix4_smbus_register_device(SMBusDevice *dev, uint8_t addr);
|
|
|
|
|
2008-12-17 23:28:44 +00:00
|
|
|
/* hpet.c */
|
|
|
|
extern int no_hpet;
|
|
|
|
|
2007-11-17 17:14:51 +00:00
|
|
|
/* piix_pci.c */
|
2009-08-28 15:28:15 +02:00
|
|
|
struct PCII440FXState;
|
|
|
|
typedef struct PCII440FXState PCII440FXState;
|
|
|
|
|
2011-07-26 14:26:19 +03:00
|
|
|
PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix_devfn,
|
2011-12-15 22:09:54 +01:00
|
|
|
ISABus **isa_bus, qemu_irq *pic,
|
2011-08-08 16:09:04 +03:00
|
|
|
MemoryRegion *address_space_mem,
|
|
|
|
MemoryRegion *address_space_io,
|
2011-08-15 17:17:38 +03:00
|
|
|
ram_addr_t ram_size,
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr pci_hole_start,
|
|
|
|
hwaddr pci_hole_size,
|
|
|
|
hwaddr pci_hole64_start,
|
|
|
|
hwaddr pci_hole64_size,
|
2011-08-15 17:17:38 +03:00
|
|
|
MemoryRegion *pci_memory,
|
|
|
|
MemoryRegion *ram_memory);
|
2007-11-17 17:14:51 +00:00
|
|
|
|
2009-08-28 15:28:13 +02:00
|
|
|
/* piix4.c */
|
2008-10-26 13:43:07 +00:00
|
|
|
extern PCIDevice *piix4_dev;
|
2011-12-15 22:09:58 +01:00
|
|
|
int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn);
|
2007-11-17 17:14:51 +00:00
|
|
|
|
|
|
|
/* vga.c */
|
2008-09-28 00:42:12 +00:00
|
|
|
enum vga_retrace_method {
|
|
|
|
VGA_RETRACE_DUMB,
|
|
|
|
VGA_RETRACE_PRECISE
|
|
|
|
};
|
|
|
|
|
|
|
|
extern enum vga_retrace_method vga_retrace_method;
|
2007-11-17 17:14:51 +00:00
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
int isa_vga_mm_init(hwaddr vram_base,
|
|
|
|
hwaddr ctrl_base, int it_shift,
|
2011-08-15 17:17:37 +03:00
|
|
|
MemoryRegion *address_space);
|
2007-11-17 17:14:51 +00:00
|
|
|
|
|
|
|
/* ne2000.c */
|
2011-12-15 22:09:51 +01:00
|
|
|
static inline bool isa_ne2000_init(ISABus *bus, int base, int irq, NICInfo *nd)
|
2011-02-05 15:39:57 +00:00
|
|
|
{
|
2013-06-07 13:49:13 +02:00
|
|
|
DeviceState *dev;
|
|
|
|
ISADevice *isadev;
|
2007-11-17 17:14:51 +00:00
|
|
|
|
2011-02-05 15:39:57 +00:00
|
|
|
qemu_check_nic_model(nd, "ne2k_isa");
|
|
|
|
|
2013-06-07 13:49:13 +02:00
|
|
|
isadev = isa_try_create(bus, "ne2k_isa");
|
|
|
|
if (!isadev) {
|
2011-02-05 15:44:45 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-06-07 13:49:13 +02:00
|
|
|
dev = DEVICE(isadev);
|
|
|
|
qdev_prop_set_uint32(dev, "iobase", base);
|
|
|
|
qdev_prop_set_uint32(dev, "irq", irq);
|
|
|
|
qdev_set_nic_properties(dev, nd);
|
|
|
|
qdev_init_nofail(dev);
|
2011-02-05 15:44:45 +00:00
|
|
|
return true;
|
2011-02-05 15:39:57 +00:00
|
|
|
}
|
2007-11-17 17:14:51 +00:00
|
|
|
|
2012-02-21 23:18:51 -08:00
|
|
|
/* pc_sysfw.c */
|
|
|
|
void pc_system_firmware_init(MemoryRegion *rom_memory);
|
|
|
|
|
2013-04-26 11:24:46 +08:00
|
|
|
/* pvpanic.c */
|
|
|
|
int pvpanic_init(ISABus *bus);
|
|
|
|
|
2010-02-15 18:33:46 +01:00
|
|
|
/* e820 types */
|
|
|
|
#define E820_RAM 1
|
|
|
|
#define E820_RESERVED 2
|
|
|
|
#define E820_ACPI 3
|
|
|
|
#define E820_NVS 4
|
|
|
|
#define E820_UNUSABLE 5
|
|
|
|
|
|
|
|
int e820_add_entry(uint64_t, uint64_t, uint32_t);
|
|
|
|
|
2013-05-27 17:23:54 -03:00
|
|
|
#define PC_COMPAT_1_5 \
|
|
|
|
{\
|
|
|
|
.driver = "Conroe-" TYPE_X86_CPU,\
|
|
|
|
.property = "model",\
|
|
|
|
.value = stringify(2),\
|
2013-05-27 17:23:55 -03:00
|
|
|
},{\
|
|
|
|
.driver = "Conroe-" TYPE_X86_CPU,\
|
|
|
|
.property = "level",\
|
|
|
|
.value = stringify(2),\
|
2013-05-27 17:23:54 -03:00
|
|
|
},{\
|
|
|
|
.driver = "Penryn-" TYPE_X86_CPU,\
|
|
|
|
.property = "model",\
|
|
|
|
.value = stringify(2),\
|
2013-05-27 17:23:55 -03:00
|
|
|
},{\
|
|
|
|
.driver = "Penryn-" TYPE_X86_CPU,\
|
|
|
|
.property = "level",\
|
|
|
|
.value = stringify(2),\
|
2013-05-27 17:23:54 -03:00
|
|
|
},{\
|
|
|
|
.driver = "Nehalem-" TYPE_X86_CPU,\
|
|
|
|
.property = "model",\
|
|
|
|
.value = stringify(2),\
|
2013-05-27 17:23:55 -03:00
|
|
|
},{\
|
|
|
|
.driver = "Nehalem-" TYPE_X86_CPU,\
|
|
|
|
.property = "level",\
|
|
|
|
.value = stringify(2),\
|
2013-05-27 17:23:54 -03:00
|
|
|
}
|
|
|
|
|
2013-02-08 14:06:15 +01:00
|
|
|
#define PC_COMPAT_1_4 \
|
2013-05-27 17:23:54 -03:00
|
|
|
PC_COMPAT_1_5, \
|
2013-02-08 14:06:15 +01:00
|
|
|
{\
|
|
|
|
.driver = "scsi-hd",\
|
|
|
|
.property = "discard_granularity",\
|
|
|
|
.value = stringify(0),\
|
|
|
|
},{\
|
|
|
|
.driver = "scsi-cd",\
|
|
|
|
.property = "discard_granularity",\
|
|
|
|
.value = stringify(0),\
|
|
|
|
},{\
|
|
|
|
.driver = "scsi-disk",\
|
|
|
|
.property = "discard_granularity",\
|
|
|
|
.value = stringify(0),\
|
|
|
|
},{\
|
|
|
|
.driver = "ide-hd",\
|
|
|
|
.property = "discard_granularity",\
|
|
|
|
.value = stringify(0),\
|
|
|
|
},{\
|
|
|
|
.driver = "ide-cd",\
|
|
|
|
.property = "discard_granularity",\
|
|
|
|
.value = stringify(0),\
|
|
|
|
},{\
|
|
|
|
.driver = "ide-drive",\
|
|
|
|
.property = "discard_granularity",\
|
|
|
|
.value = stringify(0),\
|
2013-02-26 17:46:11 +01:00
|
|
|
},{\
|
2013-02-08 14:06:15 +01:00
|
|
|
.driver = "virtio-blk-pci",\
|
|
|
|
.property = "discard_granularity",\
|
|
|
|
.value = stringify(0),\
|
2013-02-27 15:15:31 +02:00
|
|
|
},{\
|
|
|
|
.driver = "virtio-serial-pci",\
|
|
|
|
.property = "vectors",\
|
|
|
|
/* DEV_NVECTORS_UNSPECIFIED as a uint32_t string */\
|
|
|
|
.value = stringify(0xFFFFFFFF),\
|
2013-05-20 11:18:14 +03:00
|
|
|
},{ \
|
|
|
|
.driver = "virtio-net-pci", \
|
|
|
|
.property = "ctrl_guest_offloads", \
|
|
|
|
.value = "off", \
|
2013-02-26 17:46:11 +01:00
|
|
|
},{\
|
|
|
|
.driver = "e1000",\
|
|
|
|
.property = "romfile",\
|
|
|
|
.value = "pxe-e1000.rom",\
|
|
|
|
},{\
|
|
|
|
.driver = "ne2k_pci",\
|
|
|
|
.property = "romfile",\
|
|
|
|
.value = "pxe-ne2k_pci.rom",\
|
|
|
|
},{\
|
|
|
|
.driver = "pcnet",\
|
|
|
|
.property = "romfile",\
|
|
|
|
.value = "pxe-pcnet.rom",\
|
|
|
|
},{\
|
|
|
|
.driver = "rtl8139",\
|
|
|
|
.property = "romfile",\
|
|
|
|
.value = "pxe-rtl8139.rom",\
|
|
|
|
},{\
|
|
|
|
.driver = "virtio-net-pci",\
|
|
|
|
.property = "romfile",\
|
|
|
|
.value = "pxe-virtio.rom",\
|
2013-05-01 17:30:51 +02:00
|
|
|
},{\
|
|
|
|
.driver = "486-" TYPE_X86_CPU,\
|
|
|
|
.property = "model",\
|
|
|
|
.value = stringify(0),\
|
2013-02-26 17:46:11 +01:00
|
|
|
}
|
2013-02-08 14:06:15 +01:00
|
|
|
|
2007-11-17 17:14:51 +00:00
|
|
|
#endif
|