Searched defs:pci_controller (Results 1 – 8 of 8) sorted by relevance
30 struct pci_controller { struct31 struct pci_bus *bus;32 char is_dynamic;33 struct device_node *dn;34 struct list_head list_node;35 struct device *parent;37 int first_busno;38 int last_busno;40 int self_busno;42 void __iomem *io_base_virt;[all …]
35 struct pci_controller { struct36 int index; /* used for pci_controller_num */ argument37 struct pci_controller *next; argument38 struct pci_bus *bus;39 void *arch_data;41 int first_busno;42 int last_busno;44 struct pci_ops *ops;45 volatile unsigned int *cfg_addr;46 volatile unsigned char *cfg_data;[all …]
20 struct pci_controller { struct21 struct pci_bus *bus;22 char is_dynamic;24 int node;26 struct device_node *dn;27 struct list_head list_node;28 struct device *parent;30 int first_busno;31 int last_busno;32 int self_busno;[all …]
26 struct pci_controller { struct27 struct pci_controller *next; argument28 struct pci_bus *bus;53 extern struct pci_controller * alloc_pci_controller(void); argument
23 struct pci_controller { struct24 struct pci_controller *next; argument25 struct pci_bus *bus;26 struct resource *io_space;27 struct resource *mem_space;32 unsigned long sparse_mem_base;33 unsigned long dense_mem_base;34 unsigned long sparse_io_base;35 unsigned long dense_io_base;38 unsigned long config_space_base;[all …]
24 struct pci_controller { struct25 int index; /* PCI domain number */26 struct pci_bus *root_bus;28 int first_busno;29 int last_busno;31 int hv_cfg_fd[2]; /* config{0,1} fds for this PCIe controller */32 int hv_mem_fd; /* fd to Hypervisor for MMIO operations */34 struct pci_ops *ops;59 #define pci_domain_nr(bus) (((struct pci_controller *)(bus)->sysdata)->index) argument
89 struct pci_controller { struct101 #define PCI_CONTROLLER(busdev) ((struct pci_controller *) busdev->sysdata) argument
46 struct pci_controller pci_controller; member