HomeSort by relevance Sort by last modified time
    Searched defs:PCIDevice (Results 1 - 3 of 3) sorted by null

  /external/qemu/hw/
pci.h 73 typedef void PCIConfigWriteFunc(PCIDevice *pci_dev,
75 typedef uint32_t PCIConfigReadFunc(PCIDevice *pci_dev,
77 typedef void PCIMapIORegionFunc(PCIDevice *pci_dev, int region_num,
79 typedef int PCIUnregisterFunc(PCIDevice *pci_dev);
140 struct PCIDevice {
163 PCIDevice *pci_register_device(PCIBus *bus, const char *name,
167 int pci_unregister_device(PCIDevice *pci_dev);
169 void pci_register_bar(PCIDevice *pci_dev, int region_num,
173 uint32_t pci_default_read_config(PCIDevice *d,
175 void pci_default_write_config(PCIDevice *d
    [all...]
  /external/qemu/
qemu-common.h 276 typedef struct PCIDevice PCIDevice;
  /external/qemu-pc-bios/bochs/bios/
rombios32.c 706 typedef struct PCIDevice {
709 } PCIDevice;
716 static PCIDevice i440_pcidev;
718 static void pci_config_writel(PCIDevice *d, uint32_t addr, uint32_t val)
724 static void pci_config_writew(PCIDevice *d, uint32_t addr, uint32_t val)
730 static void pci_config_writeb(PCIDevice *d, uint32_t addr, uint32_t val)
736 static uint32_t pci_config_readl(PCIDevice *d, uint32_t addr)
742 static uint32_t pci_config_readw(PCIDevice *d, uint32_t addr)
748 static uint32_t pci_config_readb(PCIDevice *d, uint32_t addr)
754 static void pci_set_io_region_addr(PCIDevice *d, int region_num, uint32_t addr
    [all...]

Completed in 2307 milliseconds