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 17:19:49 +00:00
|
|
|
#include "exec/memory.h"
|
|
|
|
#include "exec/ioport.h"
|
2013-02-04 14:40:22 +00:00
|
|
|
#include "hw/isa.h"
|
|
|
|
#include "hw/fdc.h"
|
2012-10-24 06:43:34 +00:00
|
|
|
#include "net/net.h"
|
2012-12-17 17:19:49 +00:00
|
|
|
#include "exec/memory.h"
|
2013-02-04 14:40:22 +00:00
|
|
|
#include "hw/ioapic.h"
|
2009-03-05 23:01:23 +00:00
|
|
|
|
2007-11-17 17:14:51 +00:00
|
|
|
/* PC-style peripherals (also used by other machines). */
|
|
|
|
|
|
|
|
/* parallel.c */
|
2011-12-15 21:09:51 +00:00
|
|
|
static inline bool parallel_init(ISABus *bus, int index, CharDriverState *chr)
|
2011-02-05 14:51:57 +00:00
|
|
|
{
|
|
|
|
ISADevice *dev;
|
|
|
|
|
2011-12-15 21:09:51 +00:00
|
|
|
dev = isa_try_create(bus, "isa-parallel");
|
2011-02-05 14:56:53 +00:00
|
|
|
if (!dev) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-02-05 14:51:57 +00:00
|
|
|
qdev_prop_set_uint32(&dev->qdev, "index", index);
|
|
|
|
qdev_prop_set_chr(&dev->qdev, "chardev", chr);
|
|
|
|
if (qdev_init(&dev->qdev) < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-06 14:44:26 +00:00
|
|
|
bool parallel_mm_init(MemoryRegion *address_space,
|
2012-10-23 10:30:10 +00: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 15:31:16 +00:00
|
|
|
extern DeviceState *isa_pic;
|
2011-12-15 21:09:51 +00:00
|
|
|
qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq);
|
2011-10-16 13:30:27 +00:00
|
|
|
qemu_irq *kvm_i8259_init(ISABus *bus);
|
2012-01-10 15:31:16 +00:00
|
|
|
int pic_read_irq(DeviceState *d);
|
|
|
|
int pic_get_output(DeviceState *d);
|
2013-01-14 06:06:25 +00: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 07:19:35 +00:00
|
|
|
/* Global System Interrupts */
|
2010-06-19 07:41:43 +00:00
|
|
|
|
2011-10-07 07:19:35 +00:00
|
|
|
#define GSI_NUM_PINS IOAPIC_NUM_PINS
|
2010-05-14 07:29:15 +00:00
|
|
|
|
2011-10-07 07:19:35 +00:00
|
|
|
typedef struct GSIState {
|
2011-10-07 07:19:36 +00:00
|
|
|
qemu_irq i8259_irq[ISA_NUM_IRQS];
|
2011-10-07 07:19:35 +00:00
|
|
|
qemu_irq ioapic_irq[IOAPIC_NUM_PINS];
|
|
|
|
} GSIState;
|
|
|
|
|
|
|
|
void gsi_handler(void *opaque, int n, int level);
|
2010-05-14 07:29:15 +00:00
|
|
|
|
2007-11-17 17:14:51 +00:00
|
|
|
/* vmport.c */
|
2011-12-15 21:09:51 +00:00
|
|
|
static inline void vmport_init(ISABus *bus)
|
2011-02-05 14:34:41 +00:00
|
|
|
{
|
2011-12-15 21:09:51 +00: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 22:28:17 +00:00
|
|
|
MemoryRegion *region, ram_addr_t size,
|
2012-10-23 10:30:10 +00: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 07:29:09 +00:00
|
|
|
void pc_register_ferr_irq(qemu_irq irq);
|
2010-05-14 07:29:15 +00:00
|
|
|
void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
|
|
|
|
|
|
|
|
void pc_cpus_init(const char *cpu_model);
|
2012-12-03 09:47:27 +00:00
|
|
|
void pc_acpi_init(const char *default_dsdt);
|
2012-06-04 11:31:55 +00:00
|
|
|
void *pc_memory_init(MemoryRegion *system_memory,
|
2011-07-26 11:26:16 +00:00
|
|
|
const char *kernel_filename,
|
2010-05-14 07:29:15 +00:00
|
|
|
const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename,
|
2011-04-11 18:48:11 +00:00
|
|
|
ram_addr_t below_4g_mem_size,
|
2011-08-15 14:17:38 +00:00
|
|
|
ram_addr_t above_4g_mem_size,
|
2011-09-21 18:49:29 +00:00
|
|
|
MemoryRegion *rom_memory,
|
2011-08-15 14:17:38 +00:00
|
|
|
MemoryRegion **ram_memory);
|
2010-05-14 07:29:15 +00:00
|
|
|
qemu_irq *pc_allocate_cpu_irq(void);
|
2011-12-15 21:09:51 +00: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 16:06:54 +00:00
|
|
|
ISADevice **rtc_state,
|
2011-10-20 14:37:26 +00:00
|
|
|
ISADevice **floppy,
|
2011-05-03 16:06:54 +00:00
|
|
|
bool no_vmport);
|
2011-12-15 21:09:51 +00:00
|
|
|
void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
|
2010-05-14 07:29:15 +00:00
|
|
|
void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
|
2010-06-24 17:58:20 +00:00
|
|
|
const char *boot_device,
|
2011-10-20 14:37:26 +00:00
|
|
|
ISADevice *floppy, BusState *ide0, BusState *ide1,
|
2011-02-05 16:32:23 +00:00
|
|
|
ISADevice *s);
|
2012-11-14 20:54:01 +00:00
|
|
|
void pc_nic_init(ISABus *isa_bus, PCIBus *pci_bus);
|
2010-05-14 07:29:15 +00:00
|
|
|
void pc_pci_device_init(PCIBus *pci_bus);
|
2010-05-14 07:29:09 +00:00
|
|
|
|
2010-05-14 07:29:04 +00: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 20:54:01 +00:00
|
|
|
void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name);
|
|
|
|
|
2007-11-17 17:14:51 +00:00
|
|
|
/* acpi.c */
|
|
|
|
extern int acpi_enabled;
|
2009-03-07 15:50:18 +00:00
|
|
|
extern char *acpi_tables;
|
|
|
|
extern size_t acpi_tables_len;
|
|
|
|
|
2009-06-18 10:57:00 +00:00
|
|
|
void acpi_bios_init(void);
|
|
|
|
int acpi_table_add(const char *table_desc);
|
|
|
|
|
|
|
|
/* 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 12:45:20 +00:00
|
|
|
qemu_irq sci_irq, qemu_irq smi_irq,
|
2012-06-04 11:31:55 +00:00
|
|
|
int kvm_enabled, void *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 13:28:15 +00:00
|
|
|
struct PCII440FXState;
|
|
|
|
typedef struct PCII440FXState PCII440FXState;
|
|
|
|
|
2011-07-26 11:26:19 +00:00
|
|
|
PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix_devfn,
|
2011-12-15 21:09:54 +00:00
|
|
|
ISABus **isa_bus, qemu_irq *pic,
|
2011-08-08 13:09:04 +00:00
|
|
|
MemoryRegion *address_space_mem,
|
|
|
|
MemoryRegion *address_space_io,
|
2011-08-15 14:17:38 +00:00
|
|
|
ram_addr_t ram_size,
|
2012-10-23 10:30:10 +00:00
|
|
|
hwaddr pci_hole_start,
|
|
|
|
hwaddr pci_hole_size,
|
|
|
|
hwaddr pci_hole64_start,
|
|
|
|
hwaddr pci_hole64_size,
|
2011-08-15 14:17:38 +00:00
|
|
|
MemoryRegion *pci_memory,
|
|
|
|
MemoryRegion *ram_memory);
|
2007-11-17 17:14:51 +00:00
|
|
|
|
2009-08-28 13:28:13 +00:00
|
|
|
/* piix4.c */
|
2008-10-26 13:43:07 +00:00
|
|
|
extern PCIDevice *piix4_dev;
|
2011-12-15 21:09:58 +00: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 10:30:10 +00:00
|
|
|
int isa_vga_mm_init(hwaddr vram_base,
|
|
|
|
hwaddr ctrl_base, int it_shift,
|
2011-08-15 14:17:37 +00:00
|
|
|
MemoryRegion *address_space);
|
2007-11-17 17:14:51 +00:00
|
|
|
|
|
|
|
/* ne2000.c */
|
2011-12-15 21:09:51 +00:00
|
|
|
static inline bool isa_ne2000_init(ISABus *bus, int base, int irq, NICInfo *nd)
|
2011-02-05 15:39:57 +00:00
|
|
|
{
|
|
|
|
ISADevice *dev;
|
2007-11-17 17:14:51 +00:00
|
|
|
|
2011-02-05 15:39:57 +00:00
|
|
|
qemu_check_nic_model(nd, "ne2k_isa");
|
|
|
|
|
2011-12-15 21:09:51 +00:00
|
|
|
dev = isa_try_create(bus, "ne2k_isa");
|
2011-02-05 15:44:45 +00:00
|
|
|
if (!dev) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-02-05 15:39:57 +00:00
|
|
|
qdev_prop_set_uint32(&dev->qdev, "iobase", base);
|
|
|
|
qdev_prop_set_uint32(&dev->qdev, "irq", irq);
|
|
|
|
qdev_set_nic_properties(&dev->qdev, nd);
|
|
|
|
qdev_init_nofail(&dev->qdev);
|
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-22 07:18:51 +00:00
|
|
|
/* pc_sysfw.c */
|
|
|
|
void pc_system_firmware_init(MemoryRegion *rom_memory);
|
|
|
|
|
2010-02-15 17:33:46 +00: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-02-08 13:06:15 +00:00
|
|
|
#define PC_COMPAT_1_4 \
|
|
|
|
{\
|
|
|
|
.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),\
|
|
|
|
},{\
|
|
|
|
.driver = "virtio-blk-pci",\
|
|
|
|
.property = "discard_granularity",\
|
|
|
|
.value = stringify(0),\
|
2013-02-27 13:15:31 +00:00
|
|
|
},{\
|
|
|
|
.driver = "virtio-serial-pci",\
|
|
|
|
.property = "vectors",\
|
|
|
|
/* DEV_NVECTORS_UNSPECIFIED as a uint32_t string */\
|
|
|
|
.value = stringify(0xFFFFFFFF),\
|
2013-02-08 13:06:15 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 17:14:51 +00:00
|
|
|
#endif
|