1b8b572e1SStephen Rothwell #ifndef _ASM_POWERPC_PCI_BRIDGE_H 2b8b572e1SStephen Rothwell #define _ASM_POWERPC_PCI_BRIDGE_H 3b8b572e1SStephen Rothwell #ifdef __KERNEL__ 4b8b572e1SStephen Rothwell /* 5b8b572e1SStephen Rothwell * This program is free software; you can redistribute it and/or 6b8b572e1SStephen Rothwell * modify it under the terms of the GNU General Public License 7b8b572e1SStephen Rothwell * as published by the Free Software Foundation; either version 8b8b572e1SStephen Rothwell * 2 of the License, or (at your option) any later version. 9b8b572e1SStephen Rothwell */ 10b8b572e1SStephen Rothwell #include <linux/pci.h> 11b8b572e1SStephen Rothwell #include <linux/list.h> 12b8b572e1SStephen Rothwell #include <linux/ioport.h> 13f4ffd5e5SRob Herring #include <asm-generic/pci-bridge.h> 14b8b572e1SStephen Rothwell 15b8b572e1SStephen Rothwell struct device_node; 16b8b572e1SStephen Rothwell 17b8b572e1SStephen Rothwell /* 18b8b572e1SStephen Rothwell * Structure of a PCI controller (host bridge) 19b8b572e1SStephen Rothwell */ 20b8b572e1SStephen Rothwell struct pci_controller { 21b8b572e1SStephen Rothwell struct pci_bus *bus; 22b8b572e1SStephen Rothwell char is_dynamic; 23b8b572e1SStephen Rothwell #ifdef CONFIG_PPC64 24b8b572e1SStephen Rothwell int node; 25b8b572e1SStephen Rothwell #endif 26b8b572e1SStephen Rothwell struct device_node *dn; 27b8b572e1SStephen Rothwell struct list_head list_node; 28b8b572e1SStephen Rothwell struct device *parent; 29b8b572e1SStephen Rothwell 30b8b572e1SStephen Rothwell int first_busno; 31b8b572e1SStephen Rothwell int last_busno; 32b8b572e1SStephen Rothwell int self_busno; 33b8b572e1SStephen Rothwell 34b8b572e1SStephen Rothwell void __iomem *io_base_virt; 35b8b572e1SStephen Rothwell #ifdef CONFIG_PPC64 36b8b572e1SStephen Rothwell void *io_base_alloc; 37b8b572e1SStephen Rothwell #endif 38b8b572e1SStephen Rothwell resource_size_t io_base_phys; 39b8b572e1SStephen Rothwell resource_size_t pci_io_size; 40b8b572e1SStephen Rothwell 41b8b572e1SStephen Rothwell /* Some machines (PReP) have a non 1:1 mapping of 42b8b572e1SStephen Rothwell * the PCI memory space in the CPU bus space 43b8b572e1SStephen Rothwell */ 44b8b572e1SStephen Rothwell resource_size_t pci_mem_offset; 45b8b572e1SStephen Rothwell 46e9f82cb7SBenjamin Herrenschmidt /* Some machines have a special region to forward the ISA 47e9f82cb7SBenjamin Herrenschmidt * "memory" cycles such as VGA memory regions. Left to 0 48e9f82cb7SBenjamin Herrenschmidt * if unsupported 49e9f82cb7SBenjamin Herrenschmidt */ 50e9f82cb7SBenjamin Herrenschmidt resource_size_t isa_mem_phys; 51e9f82cb7SBenjamin Herrenschmidt resource_size_t isa_mem_size; 52e9f82cb7SBenjamin Herrenschmidt 53b8b572e1SStephen Rothwell struct pci_ops *ops; 54b8b572e1SStephen Rothwell unsigned int __iomem *cfg_addr; 55b8b572e1SStephen Rothwell void __iomem *cfg_data; 56b8b572e1SStephen Rothwell 57b8b572e1SStephen Rothwell /* 58b8b572e1SStephen Rothwell * Used for variants of PCI indirect handling and possible quirks: 59b8b572e1SStephen Rothwell * SET_CFG_TYPE - used on 4xx or any PHB that does explicit type0/1 60b8b572e1SStephen Rothwell * EXT_REG - provides access to PCI-e extended registers 6125985edcSLucas De Marchi * SURPRESS_PRIMARY_BUS - we suppress the setting of PCI_PRIMARY_BUS 62b8b572e1SStephen Rothwell * on Freescale PCI-e controllers since they used the PCI_PRIMARY_BUS 63b8b572e1SStephen Rothwell * to determine which bus number to match on when generating type0 64b8b572e1SStephen Rothwell * config cycles 65b8b572e1SStephen Rothwell * NO_PCIE_LINK - the Freescale PCI-e controllers have issues with 66b8b572e1SStephen Rothwell * hanging if we don't have link and try to do config cycles to 67b8b572e1SStephen Rothwell * anything but the PHB. Only allow talking to the PHB if this is 68b8b572e1SStephen Rothwell * set. 69b8b572e1SStephen Rothwell * BIG_ENDIAN - cfg_addr is a big endian register 70b8b572e1SStephen Rothwell * BROKEN_MRM - the 440EPx/GRx chips have an errata that causes hangs on 71b8b572e1SStephen Rothwell * the PLB4. Effectively disable MRM commands by setting this. 72b8b572e1SStephen Rothwell */ 73b8b572e1SStephen Rothwell #define PPC_INDIRECT_TYPE_SET_CFG_TYPE 0x00000001 74b8b572e1SStephen Rothwell #define PPC_INDIRECT_TYPE_EXT_REG 0x00000002 75b8b572e1SStephen Rothwell #define PPC_INDIRECT_TYPE_SURPRESS_PRIMARY_BUS 0x00000004 76b8b572e1SStephen Rothwell #define PPC_INDIRECT_TYPE_NO_PCIE_LINK 0x00000008 77b8b572e1SStephen Rothwell #define PPC_INDIRECT_TYPE_BIG_ENDIAN 0x00000010 78b8b572e1SStephen Rothwell #define PPC_INDIRECT_TYPE_BROKEN_MRM 0x00000020 79b8b572e1SStephen Rothwell u32 indirect_type; 80b8b572e1SStephen Rothwell /* Currently, we limit ourselves to 1 IO range and 3 mem 81b8b572e1SStephen Rothwell * ranges since the common pci_bus structure can't handle more 82b8b572e1SStephen Rothwell */ 83b8b572e1SStephen Rothwell struct resource io_resource; 84b8b572e1SStephen Rothwell struct resource mem_resources[3]; 85b8b572e1SStephen Rothwell int global_number; /* PCI domain number */ 8689d93347SBecky Bruce 8789d93347SBecky Bruce resource_size_t dma_window_base_cur; 8889d93347SBecky Bruce resource_size_t dma_window_size; 8989d93347SBecky Bruce 90b8b572e1SStephen Rothwell #ifdef CONFIG_PPC64 91b8b572e1SStephen Rothwell unsigned long buid; 92b8b572e1SStephen Rothwell 93b8b572e1SStephen Rothwell void *private_data; 94b8b572e1SStephen Rothwell #endif /* CONFIG_PPC64 */ 95b8b572e1SStephen Rothwell }; 96b8b572e1SStephen Rothwell 97b8b572e1SStephen Rothwell /* These are used for config access before all the PCI probing 98b8b572e1SStephen Rothwell has been done. */ 99b8b572e1SStephen Rothwell extern int early_read_config_byte(struct pci_controller *hose, int bus, 100b8b572e1SStephen Rothwell int dev_fn, int where, u8 *val); 101b8b572e1SStephen Rothwell extern int early_read_config_word(struct pci_controller *hose, int bus, 102b8b572e1SStephen Rothwell int dev_fn, int where, u16 *val); 103b8b572e1SStephen Rothwell extern int early_read_config_dword(struct pci_controller *hose, int bus, 104b8b572e1SStephen Rothwell int dev_fn, int where, u32 *val); 105b8b572e1SStephen Rothwell extern int early_write_config_byte(struct pci_controller *hose, int bus, 106b8b572e1SStephen Rothwell int dev_fn, int where, u8 val); 107b8b572e1SStephen Rothwell extern int early_write_config_word(struct pci_controller *hose, int bus, 108b8b572e1SStephen Rothwell int dev_fn, int where, u16 val); 109b8b572e1SStephen Rothwell extern int early_write_config_dword(struct pci_controller *hose, int bus, 110b8b572e1SStephen Rothwell int dev_fn, int where, u32 val); 111b8b572e1SStephen Rothwell 112b8b572e1SStephen Rothwell extern int early_find_capability(struct pci_controller *hose, int bus, 113b8b572e1SStephen Rothwell int dev_fn, int cap); 114b8b572e1SStephen Rothwell 115b8b572e1SStephen Rothwell extern void setup_indirect_pci(struct pci_controller* hose, 116b8b572e1SStephen Rothwell resource_size_t cfg_addr, 117b8b572e1SStephen Rothwell resource_size_t cfg_data, u32 flags); 11889c2dd62SKumar Gala 11989c2dd62SKumar Gala static inline struct pci_controller *pci_bus_to_host(const struct pci_bus *bus) 12089c2dd62SKumar Gala { 12189c2dd62SKumar Gala return bus->sysdata; 12289c2dd62SKumar Gala } 12389c2dd62SKumar Gala 12498d9f30cSBenjamin Herrenschmidt #ifndef CONFIG_PPC64 12598d9f30cSBenjamin Herrenschmidt 12698d9f30cSBenjamin Herrenschmidt extern int pci_device_from_OF_node(struct device_node *node, 12798d9f30cSBenjamin Herrenschmidt u8 *bus, u8 *devfn); 12898d9f30cSBenjamin Herrenschmidt extern void pci_create_OF_bus_map(void); 12998d9f30cSBenjamin Herrenschmidt 13089c2dd62SKumar Gala static inline int isa_vaddr_is_ioport(void __iomem *address) 13189c2dd62SKumar Gala { 13289c2dd62SKumar Gala /* No specific ISA handling on ppc32 at this stage, it 13389c2dd62SKumar Gala * all goes through PCI 13489c2dd62SKumar Gala */ 13589c2dd62SKumar Gala return 0; 13689c2dd62SKumar Gala } 13789c2dd62SKumar Gala 138b8b572e1SStephen Rothwell #else /* CONFIG_PPC64 */ 139b8b572e1SStephen Rothwell 140b8b572e1SStephen Rothwell /* 141b8b572e1SStephen Rothwell * PCI stuff, for nodes representing PCI devices, pointed to 142b8b572e1SStephen Rothwell * by device_node->data. 143b8b572e1SStephen Rothwell */ 144b8b572e1SStephen Rothwell struct iommu_table; 145b8b572e1SStephen Rothwell 146b8b572e1SStephen Rothwell struct pci_dn { 147b8b572e1SStephen Rothwell int busno; /* pci bus number */ 148b8b572e1SStephen Rothwell int devfn; /* pci device and function number */ 149b8b572e1SStephen Rothwell 150b8b572e1SStephen Rothwell struct pci_controller *phb; /* for pci devices */ 151b8b572e1SStephen Rothwell struct iommu_table *iommu_table; /* for phb's or bridges */ 152b8b572e1SStephen Rothwell struct device_node *node; /* back-pointer to the device_node */ 153b8b572e1SStephen Rothwell 154b8b572e1SStephen Rothwell int pci_ext_config_space; /* for pci devices */ 155b8b572e1SStephen Rothwell 156b8b572e1SStephen Rothwell struct pci_dev *pcidev; /* back-pointer to the pci device */ 157*184cd4a3SBenjamin Herrenschmidt #ifdef CONFIG_EEH 158b8b572e1SStephen Rothwell int class_code; /* pci device class */ 159b8b572e1SStephen Rothwell int eeh_mode; /* See eeh.h for possible EEH_MODEs */ 160b8b572e1SStephen Rothwell int eeh_config_addr; 161b8b572e1SStephen Rothwell int eeh_pe_config_addr; /* new-style partition endpoint address */ 162b8b572e1SStephen Rothwell int eeh_check_count; /* # times driver ignored error */ 163b8b572e1SStephen Rothwell int eeh_freeze_count; /* # times this device froze up. */ 164b8b572e1SStephen Rothwell int eeh_false_positives; /* # times this device reported #ff's */ 165b8b572e1SStephen Rothwell u32 config_space[16]; /* saved PCI config space */ 166b8b572e1SStephen Rothwell #endif 167*184cd4a3SBenjamin Herrenschmidt #define IODA_INVALID_PE (-1) 168*184cd4a3SBenjamin Herrenschmidt #ifdef CONFIG_PPC_POWERNV 169*184cd4a3SBenjamin Herrenschmidt int pe_number; 170*184cd4a3SBenjamin Herrenschmidt #endif 171b8b572e1SStephen Rothwell }; 172b8b572e1SStephen Rothwell 173b8b572e1SStephen Rothwell /* Get the pointer to a device_node's pci_dn */ 174b8b572e1SStephen Rothwell #define PCI_DN(dn) ((struct pci_dn *) (dn)->data) 175b8b572e1SStephen Rothwell 1762eb4afb6SKumar Gala extern void * update_dn_pci_info(struct device_node *dn, void *data); 177b8b572e1SStephen Rothwell 178b8b572e1SStephen Rothwell static inline int pci_device_from_OF_node(struct device_node *np, 179b8b572e1SStephen Rothwell u8 *bus, u8 *devfn) 180b8b572e1SStephen Rothwell { 181b8b572e1SStephen Rothwell if (!PCI_DN(np)) 182b8b572e1SStephen Rothwell return -ENODEV; 183b8b572e1SStephen Rothwell *bus = PCI_DN(np)->busno; 184b8b572e1SStephen Rothwell *devfn = PCI_DN(np)->devfn; 185b8b572e1SStephen Rothwell return 0; 186b8b572e1SStephen Rothwell } 187b8b572e1SStephen Rothwell 188b8b572e1SStephen Rothwell /** Find the bus corresponding to the indicated device node */ 189b8b572e1SStephen Rothwell extern struct pci_bus *pcibios_find_pci_bus(struct device_node *dn); 190b8b572e1SStephen Rothwell 191b8b572e1SStephen Rothwell /** Remove all of the PCI devices under this bus */ 192b8b572e1SStephen Rothwell extern void pcibios_remove_pci_devices(struct pci_bus *bus); 193b8b572e1SStephen Rothwell 194b8b572e1SStephen Rothwell /** Discover new pci devices under this bus, and add them */ 195b8b572e1SStephen Rothwell extern void pcibios_add_pci_devices(struct pci_bus *bus); 196b8b572e1SStephen Rothwell 197b8b572e1SStephen Rothwell 198b8b572e1SStephen Rothwell extern void isa_bridge_find_early(struct pci_controller *hose); 199b8b572e1SStephen Rothwell 200b8b572e1SStephen Rothwell static inline int isa_vaddr_is_ioport(void __iomem *address) 201b8b572e1SStephen Rothwell { 202b8b572e1SStephen Rothwell /* Check if address hits the reserved legacy IO range */ 203b8b572e1SStephen Rothwell unsigned long ea = (unsigned long)address; 204b8b572e1SStephen Rothwell return ea >= ISA_IO_BASE && ea < ISA_IO_END; 205b8b572e1SStephen Rothwell } 206b8b572e1SStephen Rothwell 207b8b572e1SStephen Rothwell extern int pcibios_unmap_io_space(struct pci_bus *bus); 208b8b572e1SStephen Rothwell extern int pcibios_map_io_space(struct pci_bus *bus); 209b8b572e1SStephen Rothwell 210b8b572e1SStephen Rothwell #ifdef CONFIG_NUMA 211b8b572e1SStephen Rothwell #define PHB_SET_NODE(PHB, NODE) ((PHB)->node = (NODE)) 212b8b572e1SStephen Rothwell #else 213b8b572e1SStephen Rothwell #define PHB_SET_NODE(PHB, NODE) ((PHB)->node = -1) 214b8b572e1SStephen Rothwell #endif 215b8b572e1SStephen Rothwell 216b8b572e1SStephen Rothwell #endif /* CONFIG_PPC64 */ 217b8b572e1SStephen Rothwell 218b8b572e1SStephen Rothwell /* Get the PCI host controller for an OF device */ 219b8b572e1SStephen Rothwell extern struct pci_controller *pci_find_hose_for_OF_device( 220b8b572e1SStephen Rothwell struct device_node* node); 221b8b572e1SStephen Rothwell 222b8b572e1SStephen Rothwell /* Fill up host controller resources from the OF node */ 223b8b572e1SStephen Rothwell extern void pci_process_bridge_OF_ranges(struct pci_controller *hose, 224b8b572e1SStephen Rothwell struct device_node *dev, int primary); 225b8b572e1SStephen Rothwell 226b8b572e1SStephen Rothwell /* Allocate & free a PCI host bridge structure */ 227b8b572e1SStephen Rothwell extern struct pci_controller *pcibios_alloc_controller(struct device_node *dev); 228b8b572e1SStephen Rothwell extern void pcibios_free_controller(struct pci_controller *phb); 22953280323SBenjamin Herrenschmidt extern void pcibios_setup_phb_resources(struct pci_controller *hose); 230b8b572e1SStephen Rothwell 231b8b572e1SStephen Rothwell #ifdef CONFIG_PCI 232b8b572e1SStephen Rothwell extern int pcibios_vaddr_is_ioport(void __iomem *address); 233b8b572e1SStephen Rothwell #else 234b8b572e1SStephen Rothwell static inline int pcibios_vaddr_is_ioport(void __iomem *address) 235b8b572e1SStephen Rothwell { 236b8b572e1SStephen Rothwell return 0; 237b8b572e1SStephen Rothwell } 238b8b572e1SStephen Rothwell #endif /* CONFIG_PCI */ 239b8b572e1SStephen Rothwell 240b8b572e1SStephen Rothwell #endif /* __KERNEL__ */ 241b8b572e1SStephen Rothwell #endif /* _ASM_POWERPC_PCI_BRIDGE_H */ 242