diff options
author | Avi Kivity <avi@redhat.com> | 2011-07-24 17:47:18 +0300 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-08-24 20:17:39 +0300 |
commit | d2c33733c85c4df7cd0f5e0426a22e737d542516 (patch) | |
tree | daa4228405f900b9189b946225b61e7346bb74a3 /hw/pci_host.h | |
parent | be35694da941168603b09a7420bcc476d745fc41 (diff) | |
download | qemu-d2c33733c85c4df7cd0f5e0426a22e737d542516.tar.gz qemu-d2c33733c85c4df7cd0f5e0426a22e737d542516.tar.bz2 qemu-d2c33733c85c4df7cd0f5e0426a22e737d542516.zip |
pci_host: convert conf index and data ports to memory API
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/pci_host.h')
-rw-r--r-- | hw/pci_host.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/hw/pci_host.h b/hw/pci_host.h index 7f551143bb..0211086d70 100644 --- a/hw/pci_host.h +++ b/hw/pci_host.h @@ -29,12 +29,11 @@ #define PCI_HOST_H #include "sysbus.h" -#include "rwhandler.h" struct PCIHostState { SysBusDevice busdev; - ReadWriteHandler conf_handler; - ReadWriteHandler data_handler; + MemoryRegion conf_mem; + MemoryRegion data_mem; MemoryRegion *address_space; uint32_t config_reg; PCIBus *bus; @@ -49,12 +48,9 @@ uint32_t pci_host_config_read_common(PCIDevice *pci_dev, uint32_t addr, void pci_data_write(PCIBus *s, uint32_t addr, uint32_t val, int len); uint32_t pci_data_read(PCIBus *s, uint32_t addr, int len); -/* for mmio */ -int pci_host_conf_register_mmio(PCIHostState *s, int endian); -int pci_host_data_register_mmio(PCIHostState *s, int endian); - -/* for ioio */ -void pci_host_conf_register_ioport(pio_addr_t ioport, PCIHostState *s); -void pci_host_data_register_ioport(pio_addr_t ioport, PCIHostState *s); +extern const MemoryRegionOps pci_host_conf_le_ops; +extern const MemoryRegionOps pci_host_conf_be_ops; +extern const MemoryRegionOps pci_host_data_le_ops; +extern const MemoryRegionOps pci_host_data_be_ops; #endif /* PCI_HOST_H */ |