Paul Mackerras | 047ea78 | 2005-11-19 20:17:32 +1100 | [diff] [blame] | 1 | #ifndef _ASM_POWERPC_PCI_BRIDGE_H |
| 2 | #define _ASM_POWERPC_PCI_BRIDGE_H |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 3 | #ifdef __KERNEL__ |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 4 | /* |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License |
| 7 | * as published by the Free Software Foundation; either version |
| 8 | * 2 of the License, or (at your option) any later version. |
| 9 | */ |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 10 | #include <linux/pci.h> |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 11 | #include <linux/list.h> |
| 12 | #include <linux/ioport.h> |
Rob Herring | f4ffd5e | 2011-06-29 11:46:54 -0500 | [diff] [blame] | 13 | #include <asm-generic/pci-bridge.h> |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 14 | |
Daniel Axtens | ff9df8c | 2015-03-31 16:00:44 +1100 | [diff] [blame] | 15 | /* Return values for pci_controller_ops.probe_mode function */ |
| 16 | #define PCI_PROBE_NONE -1 /* Don't look at this bus at all */ |
| 17 | #define PCI_PROBE_NORMAL 0 /* Do normal PCI probing */ |
| 18 | #define PCI_PROBE_DEVTREE 1 /* Instantiate from device tree */ |
| 19 | |
Stephen Rothwell | 44ef339 | 2007-12-10 14:33:21 +1100 | [diff] [blame] | 20 | struct device_node; |
| 21 | |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 22 | /* |
Daniel Axtens | e02def5 | 2015-03-31 16:00:42 +1100 | [diff] [blame] | 23 | * PCI controller operations |
| 24 | */ |
| 25 | struct pci_controller_ops { |
| 26 | void (*dma_dev_setup)(struct pci_dev *dev); |
Daniel Axtens | b122c95 | 2015-03-31 16:00:43 +1100 | [diff] [blame] | 27 | void (*dma_bus_setup)(struct pci_bus *bus); |
Daniel Axtens | ff9df8c | 2015-03-31 16:00:44 +1100 | [diff] [blame] | 28 | |
| 29 | int (*probe_mode)(struct pci_bus *); |
Daniel Axtens | b31e79f | 2015-03-31 16:00:45 +1100 | [diff] [blame^] | 30 | |
| 31 | /* Called when pci_enable_device() is called. Returns true to |
| 32 | * allow assignment/enabling of the device. */ |
| 33 | bool (*enable_device_hook)(struct pci_dev *); |
Daniel Axtens | e02def5 | 2015-03-31 16:00:42 +1100 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | /* |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 37 | * Structure of a PCI controller (host bridge) |
| 38 | */ |
| 39 | struct pci_controller { |
| 40 | struct pci_bus *bus; |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 41 | char is_dynamic; |
Stephen Rothwell | 7211991 | 2007-12-11 11:00:13 +1100 | [diff] [blame] | 42 | #ifdef CONFIG_PPC64 |
| 43 | int node; |
| 44 | #endif |
Stephen Rothwell | 44ef339 | 2007-12-10 14:33:21 +1100 | [diff] [blame] | 45 | struct device_node *dn; |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 46 | struct list_head list_node; |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 47 | struct device *parent; |
| 48 | |
| 49 | int first_busno; |
| 50 | int last_busno; |
| 51 | int self_busno; |
Yinghai Lu | be8e60d | 2012-05-17 18:51:12 -0700 | [diff] [blame] | 52 | struct resource busn; |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 53 | |
| 54 | void __iomem *io_base_virt; |
Stephen Rothwell | 7211991 | 2007-12-11 11:00:13 +1100 | [diff] [blame] | 55 | #ifdef CONFIG_PPC64 |
| 56 | void *io_base_alloc; |
| 57 | #endif |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 58 | resource_size_t io_base_phys; |
Benjamin Herrenschmidt | 13dccb9 | 2007-12-11 14:48:18 +1100 | [diff] [blame] | 59 | resource_size_t pci_io_size; |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 60 | |
Benjamin Herrenschmidt | e9f82cb | 2008-10-14 11:55:31 +1100 | [diff] [blame] | 61 | /* Some machines have a special region to forward the ISA |
| 62 | * "memory" cycles such as VGA memory regions. Left to 0 |
| 63 | * if unsupported |
| 64 | */ |
| 65 | resource_size_t isa_mem_phys; |
| 66 | resource_size_t isa_mem_size; |
| 67 | |
Daniel Axtens | e02def5 | 2015-03-31 16:00:42 +1100 | [diff] [blame] | 68 | struct pci_controller_ops controller_ops; |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 69 | struct pci_ops *ops; |
Stephen Rothwell | 70fbb93 | 2007-12-21 15:23:48 +1100 | [diff] [blame] | 70 | unsigned int __iomem *cfg_addr; |
| 71 | void __iomem *cfg_data; |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 72 | |
| 73 | /* |
| 74 | * Used for variants of PCI indirect handling and possible quirks: |
| 75 | * SET_CFG_TYPE - used on 4xx or any PHB that does explicit type0/1 |
| 76 | * EXT_REG - provides access to PCI-e extended registers |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 77 | * SURPRESS_PRIMARY_BUS - we suppress the setting of PCI_PRIMARY_BUS |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 78 | * on Freescale PCI-e controllers since they used the PCI_PRIMARY_BUS |
| 79 | * to determine which bus number to match on when generating type0 |
| 80 | * config cycles |
Kumar Gala | 62c66c8 | 2007-07-11 13:22:41 -0500 | [diff] [blame] | 81 | * NO_PCIE_LINK - the Freescale PCI-e controllers have issues with |
| 82 | * hanging if we don't have link and try to do config cycles to |
| 83 | * anything but the PHB. Only allow talking to the PHB if this is |
| 84 | * set. |
Kumar Gala | 2e56ff2 | 2007-07-19 16:07:35 -0500 | [diff] [blame] | 85 | * BIG_ENDIAN - cfg_addr is a big endian register |
Josh Boyer | 5ce4b59 | 2008-06-17 19:01:38 -0400 | [diff] [blame] | 86 | * BROKEN_MRM - the 440EPx/GRx chips have an errata that causes hangs on |
| 87 | * the PLB4. Effectively disable MRM commands by setting this. |
Kumar Gala | 34642bb | 2013-03-13 14:07:15 -0500 | [diff] [blame] | 88 | * FSL_CFG_REG_LINK - Freescale controller version in which the PCIe |
| 89 | * link status is in a RC PCIe cfg register (vs being a SoC register) |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 90 | */ |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 91 | #define PPC_INDIRECT_TYPE_SET_CFG_TYPE 0x00000001 |
| 92 | #define PPC_INDIRECT_TYPE_EXT_REG 0x00000002 |
| 93 | #define PPC_INDIRECT_TYPE_SURPRESS_PRIMARY_BUS 0x00000004 |
| 94 | #define PPC_INDIRECT_TYPE_NO_PCIE_LINK 0x00000008 |
| 95 | #define PPC_INDIRECT_TYPE_BIG_ENDIAN 0x00000010 |
Josh Boyer | 5ce4b59 | 2008-06-17 19:01:38 -0400 | [diff] [blame] | 96 | #define PPC_INDIRECT_TYPE_BROKEN_MRM 0x00000020 |
Kumar Gala | 34642bb | 2013-03-13 14:07:15 -0500 | [diff] [blame] | 97 | #define PPC_INDIRECT_TYPE_FSL_CFG_REG_LINK 0x00000040 |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 98 | u32 indirect_type; |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 99 | /* Currently, we limit ourselves to 1 IO range and 3 mem |
| 100 | * ranges since the common pci_bus structure can't handle more |
| 101 | */ |
| 102 | struct resource io_resource; |
| 103 | struct resource mem_resources[3]; |
Benjamin Herrenschmidt | 3fd47f0 | 2013-05-06 13:40:40 +1000 | [diff] [blame] | 104 | resource_size_t mem_offset[3]; |
Kumar Gala | 5516b54 | 2007-06-27 01:17:57 -0500 | [diff] [blame] | 105 | int global_number; /* PCI domain number */ |
Becky Bruce | 89d9334 | 2009-04-20 11:26:48 -0500 | [diff] [blame] | 106 | |
| 107 | resource_size_t dma_window_base_cur; |
| 108 | resource_size_t dma_window_size; |
| 109 | |
Stephen Rothwell | 7211991 | 2007-12-11 11:00:13 +1100 | [diff] [blame] | 110 | #ifdef CONFIG_PPC64 |
| 111 | unsigned long buid; |
Gavin Shan | cca87d3 | 2015-03-17 16:15:02 +1100 | [diff] [blame] | 112 | struct pci_dn *pci_data; |
Kumar Gala | 34642bb | 2013-03-13 14:07:15 -0500 | [diff] [blame] | 113 | #endif /* CONFIG_PPC64 */ |
Stephen Rothwell | 7211991 | 2007-12-11 11:00:13 +1100 | [diff] [blame] | 114 | |
| 115 | void *private_data; |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 116 | }; |
| 117 | |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 118 | /* These are used for config access before all the PCI probing |
| 119 | has been done. */ |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 120 | extern int early_read_config_byte(struct pci_controller *hose, int bus, |
| 121 | int dev_fn, int where, u8 *val); |
| 122 | extern int early_read_config_word(struct pci_controller *hose, int bus, |
| 123 | int dev_fn, int where, u16 *val); |
| 124 | extern int early_read_config_dword(struct pci_controller *hose, int bus, |
| 125 | int dev_fn, int where, u32 *val); |
| 126 | extern int early_write_config_byte(struct pci_controller *hose, int bus, |
| 127 | int dev_fn, int where, u8 val); |
| 128 | extern int early_write_config_word(struct pci_controller *hose, int bus, |
| 129 | int dev_fn, int where, u16 val); |
| 130 | extern int early_write_config_dword(struct pci_controller *hose, int bus, |
| 131 | int dev_fn, int where, u32 val); |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 132 | |
Kumar Gala | 38805e5 | 2007-07-10 23:37:45 -0500 | [diff] [blame] | 133 | extern int early_find_capability(struct pci_controller *hose, int bus, |
| 134 | int dev_fn, int cap); |
| 135 | |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 136 | extern void setup_indirect_pci(struct pci_controller* hose, |
Valentine Barshak | d94bad8 | 2007-10-08 22:51:24 +1000 | [diff] [blame] | 137 | resource_size_t cfg_addr, |
| 138 | resource_size_t cfg_data, u32 flags); |
Kumar Gala | 89c2dd6 | 2009-08-25 16:20:45 +0000 | [diff] [blame] | 139 | |
Rojhalat Ibrahim | 50d8f87 | 2013-04-08 10:15:28 +0200 | [diff] [blame] | 140 | extern int indirect_read_config(struct pci_bus *bus, unsigned int devfn, |
| 141 | int offset, int len, u32 *val); |
| 142 | |
Kim Phillips | 6d5f6a0 | 2015-01-22 19:05:06 -0600 | [diff] [blame] | 143 | extern int __indirect_read_config(struct pci_controller *hose, |
| 144 | unsigned char bus_number, unsigned int devfn, |
| 145 | int offset, int len, u32 *val); |
| 146 | |
Rojhalat Ibrahim | 50d8f87 | 2013-04-08 10:15:28 +0200 | [diff] [blame] | 147 | extern int indirect_write_config(struct pci_bus *bus, unsigned int devfn, |
| 148 | int offset, int len, u32 val); |
| 149 | |
Kumar Gala | 89c2dd6 | 2009-08-25 16:20:45 +0000 | [diff] [blame] | 150 | static inline struct pci_controller *pci_bus_to_host(const struct pci_bus *bus) |
| 151 | { |
| 152 | return bus->sysdata; |
| 153 | } |
| 154 | |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 155 | #ifndef CONFIG_PPC64 |
| 156 | |
| 157 | extern int pci_device_from_OF_node(struct device_node *node, |
| 158 | u8 *bus, u8 *devfn); |
| 159 | extern void pci_create_OF_bus_map(void); |
| 160 | |
Kumar Gala | 89c2dd6 | 2009-08-25 16:20:45 +0000 | [diff] [blame] | 161 | static inline int isa_vaddr_is_ioport(void __iomem *address) |
| 162 | { |
| 163 | /* No specific ISA handling on ppc32 at this stage, it |
| 164 | * all goes through PCI |
| 165 | */ |
| 166 | return 0; |
| 167 | } |
| 168 | |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 169 | #else /* CONFIG_PPC64 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
| 171 | /* |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 172 | * PCI stuff, for nodes representing PCI devices, pointed to |
| 173 | * by device_node->data. |
| 174 | */ |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 175 | struct iommu_table; |
| 176 | |
| 177 | struct pci_dn { |
Gavin Shan | cca87d3 | 2015-03-17 16:15:02 +1100 | [diff] [blame] | 178 | int flags; |
| 179 | |
Linas Vepstas | 7684b40 | 2005-11-03 18:55:19 -0600 | [diff] [blame] | 180 | int busno; /* pci bus number */ |
Linas Vepstas | 7684b40 | 2005-11-03 18:55:19 -0600 | [diff] [blame] | 181 | int devfn; /* pci device and function number */ |
Gavin Shan | c035ff1 | 2015-03-17 16:15:04 +1100 | [diff] [blame] | 182 | int vendor_id; /* Vendor ID */ |
| 183 | int device_id; /* Device ID */ |
| 184 | int class_code; /* Device class code */ |
Benjamin Herrenschmidt | b5166cc | 2005-11-15 16:05:33 +1100 | [diff] [blame] | 185 | |
Gavin Shan | cca87d3 | 2015-03-17 16:15:02 +1100 | [diff] [blame] | 186 | struct pci_dn *parent; |
Linas Vepstas | c2e221e | 2007-05-23 04:18:04 +1000 | [diff] [blame] | 187 | struct pci_controller *phb; /* for pci devices */ |
| 188 | struct iommu_table *iommu_table; /* for phb's or bridges */ |
Linas Vepstas | c2e221e | 2007-05-23 04:18:04 +1000 | [diff] [blame] | 189 | struct device_node *node; /* back-pointer to the device_node */ |
| 190 | |
| 191 | int pci_ext_config_space; /* for pci devices */ |
| 192 | |
Stephen Rothwell | b6ed42a | 2007-12-21 15:49:11 +1100 | [diff] [blame] | 193 | struct pci_dev *pcidev; /* back-pointer to the pci device */ |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 194 | #ifdef CONFIG_EEH |
Gavin Shan | 2a0352f | 2012-03-20 21:30:27 +0000 | [diff] [blame] | 195 | struct eeh_dev *edev; /* eeh device */ |
Linas Vepstas | c2e221e | 2007-05-23 04:18:04 +1000 | [diff] [blame] | 196 | #endif |
Benjamin Herrenschmidt | 184cd4a | 2011-11-15 17:29:08 +0000 | [diff] [blame] | 197 | #define IODA_INVALID_PE (-1) |
| 198 | #ifdef CONFIG_PPC_POWERNV |
| 199 | int pe_number; |
| 200 | #endif |
Gavin Shan | cca87d3 | 2015-03-17 16:15:02 +1100 | [diff] [blame] | 201 | struct list_head child_list; |
| 202 | struct list_head list; |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 203 | }; |
| 204 | |
| 205 | /* Get the pointer to a device_node's pci_dn */ |
| 206 | #define PCI_DN(dn) ((struct pci_dn *) (dn)->data) |
| 207 | |
Gavin Shan | cca87d3 | 2015-03-17 16:15:02 +1100 | [diff] [blame] | 208 | extern struct pci_dn *pci_get_pdn_by_devfn(struct pci_bus *bus, |
| 209 | int devfn); |
Benjamin Herrenschmidt | b72c1f6 | 2013-05-21 22:58:21 +0000 | [diff] [blame] | 210 | extern struct pci_dn *pci_get_pdn(struct pci_dev *pdev); |
Gavin Shan | cca87d3 | 2015-03-17 16:15:02 +1100 | [diff] [blame] | 211 | extern void *update_dn_pci_info(struct device_node *dn, void *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 213 | static inline int pci_device_from_OF_node(struct device_node *np, |
| 214 | u8 *bus, u8 *devfn) |
| 215 | { |
| 216 | if (!PCI_DN(np)) |
| 217 | return -ENODEV; |
| 218 | *bus = PCI_DN(np)->busno; |
| 219 | *devfn = PCI_DN(np)->devfn; |
| 220 | return 0; |
| 221 | } |
| 222 | |
Gavin Shan | 2a0352f | 2012-03-20 21:30:27 +0000 | [diff] [blame] | 223 | #if defined(CONFIG_EEH) |
Gavin Shan | e8e9b34 | 2015-03-17 16:15:05 +1100 | [diff] [blame] | 224 | static inline struct eeh_dev *pdn_to_eeh_dev(struct pci_dn *pdn) |
| 225 | { |
| 226 | return pdn ? pdn->edev : NULL; |
| 227 | } |
Gavin Shan | f8f7d63 | 2012-09-07 22:44:22 +0000 | [diff] [blame] | 228 | #else |
Gavin Shan | e8e9b34 | 2015-03-17 16:15:05 +1100 | [diff] [blame] | 229 | #define pdn_to_eeh_dev(x) (NULL) |
Gavin Shan | 2a0352f | 2012-03-20 21:30:27 +0000 | [diff] [blame] | 230 | #endif |
| 231 | |
Linas Vepstas | 2bf6a8f | 2005-11-03 18:52:16 -0600 | [diff] [blame] | 232 | /** Find the bus corresponding to the indicated device node */ |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 233 | extern struct pci_bus *pcibios_find_pci_bus(struct device_node *dn); |
Linas Vepstas | 2bf6a8f | 2005-11-03 18:52:16 -0600 | [diff] [blame] | 234 | |
Linas Vepstas | 2bf6a8f | 2005-11-03 18:52:16 -0600 | [diff] [blame] | 235 | /** Remove all of the PCI devices under this bus */ |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 236 | extern void pcibios_remove_pci_devices(struct pci_bus *bus); |
Linas Vepstas | 2bf6a8f | 2005-11-03 18:52:16 -0600 | [diff] [blame] | 237 | |
| 238 | /** Discover new pci devices under this bus, and add them */ |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 239 | extern void pcibios_add_pci_devices(struct pci_bus *bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
Benjamin Herrenschmidt | b5166cc | 2005-11-15 16:05:33 +1100 | [diff] [blame] | 241 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 242 | extern void isa_bridge_find_early(struct pci_controller *hose); |
| 243 | |
Benjamin Herrenschmidt | 6dfbde2 | 2007-07-26 14:07:13 +1000 | [diff] [blame] | 244 | static inline int isa_vaddr_is_ioport(void __iomem *address) |
| 245 | { |
| 246 | /* Check if address hits the reserved legacy IO range */ |
| 247 | unsigned long ea = (unsigned long)address; |
| 248 | return ea >= ISA_IO_BASE && ea < ISA_IO_END; |
| 249 | } |
| 250 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 251 | extern int pcibios_unmap_io_space(struct pci_bus *bus); |
| 252 | extern int pcibios_map_io_space(struct pci_bus *bus); |
| 253 | |
Anton Blanchard | 357518f | 2006-06-10 20:53:06 +1000 | [diff] [blame] | 254 | #ifdef CONFIG_NUMA |
| 255 | #define PHB_SET_NODE(PHB, NODE) ((PHB)->node = (NODE)) |
| 256 | #else |
| 257 | #define PHB_SET_NODE(PHB, NODE) ((PHB)->node = -1) |
| 258 | #endif |
| 259 | |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 260 | #endif /* CONFIG_PPC64 */ |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 261 | |
| 262 | /* Get the PCI host controller for an OF device */ |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 263 | extern struct pci_controller *pci_find_hose_for_OF_device( |
| 264 | struct device_node* node); |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 265 | |
| 266 | /* Fill up host controller resources from the OF node */ |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 267 | extern void pci_process_bridge_OF_ranges(struct pci_controller *hose, |
| 268 | struct device_node *dev, int primary); |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 269 | |
Benjamin Herrenschmidt | 5131d4d | 2007-11-16 18:42:18 +1100 | [diff] [blame] | 270 | /* Allocate & free a PCI host bridge structure */ |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 271 | extern struct pci_controller *pcibios_alloc_controller(struct device_node *dev); |
Benjamin Herrenschmidt | 5131d4d | 2007-11-16 18:42:18 +1100 | [diff] [blame] | 272 | extern void pcibios_free_controller(struct pci_controller *phb); |
| 273 | |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 274 | #ifdef CONFIG_PCI |
Benjamin Herrenschmidt | 6dfbde2 | 2007-07-26 14:07:13 +1000 | [diff] [blame] | 275 | extern int pcibios_vaddr_is_ioport(void __iomem *address); |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 276 | #else |
Benjamin Herrenschmidt | 6dfbde2 | 2007-07-26 14:07:13 +1000 | [diff] [blame] | 277 | static inline int pcibios_vaddr_is_ioport(void __iomem *address) |
| 278 | { |
| 279 | return 0; |
| 280 | } |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 281 | #endif /* CONFIG_PCI */ |
Kumar Gala | 5531e41 | 2007-06-27 00:16:25 -0500 | [diff] [blame] | 282 | |
Daniel Axtens | e02def5 | 2015-03-31 16:00:42 +1100 | [diff] [blame] | 283 | /* |
| 284 | * Shims to prefer pci_controller version over ppc_md where available. |
| 285 | */ |
| 286 | static inline void pci_dma_dev_setup(struct pci_dev *dev) |
| 287 | { |
| 288 | struct pci_controller *phb = pci_bus_to_host(dev->bus); |
| 289 | |
| 290 | if (phb->controller_ops.dma_dev_setup) |
| 291 | phb->controller_ops.dma_dev_setup(dev); |
| 292 | else if (ppc_md.pci_dma_dev_setup) |
| 293 | ppc_md.pci_dma_dev_setup(dev); |
| 294 | } |
| 295 | |
Daniel Axtens | b122c95 | 2015-03-31 16:00:43 +1100 | [diff] [blame] | 296 | static inline void pci_dma_bus_setup(struct pci_bus *bus) |
| 297 | { |
| 298 | struct pci_controller *phb = pci_bus_to_host(bus); |
| 299 | |
| 300 | if (phb->controller_ops.dma_bus_setup) |
| 301 | phb->controller_ops.dma_bus_setup(bus); |
| 302 | else if (ppc_md.pci_dma_bus_setup) |
| 303 | ppc_md.pci_dma_bus_setup(bus); |
| 304 | } |
| 305 | |
Daniel Axtens | ff9df8c | 2015-03-31 16:00:44 +1100 | [diff] [blame] | 306 | static inline int pci_probe_mode(struct pci_bus *bus) |
| 307 | { |
| 308 | struct pci_controller *phb = pci_bus_to_host(bus); |
| 309 | |
| 310 | if (phb->controller_ops.probe_mode) |
| 311 | return phb->controller_ops.probe_mode(bus); |
| 312 | if (ppc_md.pci_probe_mode) |
| 313 | return ppc_md.pci_probe_mode(bus); |
| 314 | return PCI_PROBE_NORMAL; |
| 315 | } |
| 316 | |
Daniel Axtens | b31e79f | 2015-03-31 16:00:45 +1100 | [diff] [blame^] | 317 | static inline bool pcibios_enable_device_hook(struct pci_dev *dev) |
| 318 | { |
| 319 | struct pci_controller *phb = pci_bus_to_host(dev->bus); |
| 320 | |
| 321 | if (phb->controller_ops.enable_device_hook) |
| 322 | return phb->controller_ops.enable_device_hook(dev); |
| 323 | if (ppc_md.pcibios_enable_device_hook) |
| 324 | return ppc_md.pcibios_enable_device_hook(dev); |
| 325 | return true; |
| 326 | } |
| 327 | |
Stephen Rothwell | 7cd1de6 | 2007-12-06 18:02:28 +1100 | [diff] [blame] | 328 | #endif /* __KERNEL__ */ |
| 329 | #endif /* _ASM_POWERPC_PCI_BRIDGE_H */ |