Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 1 | /* |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 2 | * Copyright (C) 2001 Dave Engebretsen, IBM Corporation |
| 3 | * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM |
| 4 | * |
| 5 | * RTAS specific routines for PCI. |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 6 | * |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 7 | * Based on code from pci.c, chrp_pci.c and pSeries_pci.c |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 13 | * |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 18 | * |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #include <linux/kernel.h> |
| 25 | #include <linux/threads.h> |
| 26 | #include <linux/pci.h> |
| 27 | #include <linux/string.h> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/bootmem.h> |
| 30 | |
| 31 | #include <asm/io.h> |
| 32 | #include <asm/pgtable.h> |
| 33 | #include <asm/irq.h> |
| 34 | #include <asm/prom.h> |
| 35 | #include <asm/machdep.h> |
| 36 | #include <asm/pci-bridge.h> |
| 37 | #include <asm/iommu.h> |
| 38 | #include <asm/rtas.h> |
Stephen Rothwell | bbeb3f4 | 2005-09-27 13:51:59 +1000 | [diff] [blame] | 39 | #include <asm/mpic.h> |
Stephen Rothwell | d387899 | 2005-09-28 02:50:25 +1000 | [diff] [blame] | 40 | #include <asm/ppc-pci.h> |
Benjamin Herrenschmidt | 68a6435 | 2006-11-13 09:27:39 +1100 | [diff] [blame] | 41 | #include <asm/eeh.h> |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 42 | |
| 43 | /* RTAS tokens */ |
| 44 | static int read_pci_config; |
| 45 | static int write_pci_config; |
| 46 | static int ibm_read_pci_config; |
| 47 | static int ibm_write_pci_config; |
| 48 | |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 49 | static inline int config_access_valid(struct pci_dn *dn, int where) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 50 | { |
| 51 | if (where < 256) |
| 52 | return 1; |
| 53 | if (where < 4096 && dn->pci_ext_config_space) |
| 54 | return 1; |
| 55 | |
| 56 | return 0; |
| 57 | } |
| 58 | |
Linas Vepstas | 7684b40 | 2005-11-03 18:55:19 -0600 | [diff] [blame] | 59 | int rtas_read_config(struct pci_dn *pdn, int where, int size, u32 *val) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 60 | { |
| 61 | int returnval = -1; |
| 62 | unsigned long buid, addr; |
| 63 | int ret; |
| 64 | |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 65 | if (!pdn) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 66 | return PCIBIOS_DEVICE_NOT_FOUND; |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 67 | if (!config_access_valid(pdn, where)) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 68 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 69 | |
Michael Ellerman | 6f3d5d3 | 2006-08-16 22:04:14 +1000 | [diff] [blame] | 70 | addr = rtas_config_addr(pdn->busno, pdn->devfn, where); |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 71 | buid = pdn->phb->buid; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 72 | if (buid) { |
| 73 | ret = rtas_call(ibm_read_pci_config, 4, 2, &returnval, |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 74 | addr, BUID_HI(buid), BUID_LO(buid), size); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 75 | } else { |
| 76 | ret = rtas_call(read_pci_config, 2, 2, &returnval, addr, size); |
| 77 | } |
| 78 | *val = returnval; |
| 79 | |
| 80 | if (ret) |
| 81 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 82 | |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 83 | if (returnval == EEH_IO_ERROR_VALUE(size) && |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 84 | eeh_dn_check_failure (pdn->node, NULL)) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 85 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 86 | |
| 87 | return PCIBIOS_SUCCESSFUL; |
| 88 | } |
| 89 | |
| 90 | static int rtas_pci_read_config(struct pci_bus *bus, |
| 91 | unsigned int devfn, |
| 92 | int where, int size, u32 *val) |
| 93 | { |
| 94 | struct device_node *busdn, *dn; |
| 95 | |
Kumar Gala | 2f522976 | 2009-04-30 03:10:14 +0000 | [diff] [blame] | 96 | busdn = pci_bus_to_OF_node(bus); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 97 | |
| 98 | /* Search only direct children of the bus */ |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 99 | for (dn = busdn->child; dn; dn = dn->sibling) { |
| 100 | struct pci_dn *pdn = PCI_DN(dn); |
| 101 | if (pdn && pdn->devfn == devfn |
Nathan Lynch | c6d4d5a | 2008-03-14 06:52:10 +1100 | [diff] [blame] | 102 | && of_device_is_available(dn)) |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 103 | return rtas_read_config(pdn, where, size, val); |
| 104 | } |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 105 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 106 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 107 | } |
| 108 | |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 109 | int rtas_write_config(struct pci_dn *pdn, int where, int size, u32 val) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 110 | { |
| 111 | unsigned long buid, addr; |
| 112 | int ret; |
| 113 | |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 114 | if (!pdn) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 115 | return PCIBIOS_DEVICE_NOT_FOUND; |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 116 | if (!config_access_valid(pdn, where)) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 117 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 118 | |
Michael Ellerman | 6f3d5d3 | 2006-08-16 22:04:14 +1000 | [diff] [blame] | 119 | addr = rtas_config_addr(pdn->busno, pdn->devfn, where); |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 120 | buid = pdn->phb->buid; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 121 | if (buid) { |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 122 | ret = rtas_call(ibm_write_pci_config, 5, 1, NULL, addr, |
| 123 | BUID_HI(buid), BUID_LO(buid), size, (ulong) val); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 124 | } else { |
| 125 | ret = rtas_call(write_pci_config, 3, 1, NULL, addr, size, (ulong)val); |
| 126 | } |
| 127 | |
| 128 | if (ret) |
| 129 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 130 | |
| 131 | return PCIBIOS_SUCCESSFUL; |
| 132 | } |
| 133 | |
| 134 | static int rtas_pci_write_config(struct pci_bus *bus, |
| 135 | unsigned int devfn, |
| 136 | int where, int size, u32 val) |
| 137 | { |
| 138 | struct device_node *busdn, *dn; |
| 139 | |
Kumar Gala | 2f522976 | 2009-04-30 03:10:14 +0000 | [diff] [blame] | 140 | busdn = pci_bus_to_OF_node(bus); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 141 | |
| 142 | /* Search only direct children of the bus */ |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 143 | for (dn = busdn->child; dn; dn = dn->sibling) { |
| 144 | struct pci_dn *pdn = PCI_DN(dn); |
| 145 | if (pdn && pdn->devfn == devfn |
Nathan Lynch | c6d4d5a | 2008-03-14 06:52:10 +1100 | [diff] [blame] | 146 | && of_device_is_available(dn)) |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 147 | return rtas_write_config(pdn, where, size, val); |
| 148 | } |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 149 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 150 | } |
| 151 | |
Michael Ellerman | 1c21a29 | 2008-05-08 14:27:19 +1000 | [diff] [blame] | 152 | static struct pci_ops rtas_pci_ops = { |
Nathan Lynch | 8674e0c | 2007-08-10 05:18:36 +1000 | [diff] [blame] | 153 | .read = rtas_pci_read_config, |
| 154 | .write = rtas_pci_write_config, |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 155 | }; |
| 156 | |
Michael Ellerman | 1c21a29 | 2008-05-08 14:27:19 +1000 | [diff] [blame] | 157 | static int is_python(struct device_node *dev) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 158 | { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 159 | const char *model = of_get_property(dev, "model", NULL); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 160 | |
| 161 | if (model && strstr(model, "Python")) |
| 162 | return 1; |
| 163 | |
| 164 | return 0; |
| 165 | } |
| 166 | |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 167 | static void python_countermeasures(struct device_node *dev) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 168 | { |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 169 | struct resource registers; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 170 | void __iomem *chip_regs; |
| 171 | volatile u32 val; |
| 172 | |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 173 | if (of_address_to_resource(dev, 0, ®isters)) { |
| 174 | printk(KERN_ERR "Can't get address for Python workarounds !\n"); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 175 | return; |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 176 | } |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 177 | |
| 178 | /* Python's register file is 1 MB in size. */ |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 179 | chip_regs = ioremap(registers.start & ~(0xfffffUL), 0x100000); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 180 | |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 181 | /* |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 182 | * Firmware doesn't always clear this bit which is critical |
| 183 | * for good performance - Anton |
| 184 | */ |
| 185 | |
| 186 | #define PRG_CL_RESET_VALID 0x00010000 |
| 187 | |
| 188 | val = in_be32(chip_regs + 0xf6030); |
| 189 | if (val & PRG_CL_RESET_VALID) { |
| 190 | printk(KERN_INFO "Python workaround: "); |
| 191 | val &= ~PRG_CL_RESET_VALID; |
| 192 | out_be32(chip_regs + 0xf6030, val); |
| 193 | /* |
| 194 | * We must read it back for changes to |
| 195 | * take effect |
| 196 | */ |
| 197 | val = in_be32(chip_regs + 0xf6030); |
| 198 | printk("reg0: %x\n", val); |
| 199 | } |
| 200 | |
| 201 | iounmap(chip_regs); |
| 202 | } |
| 203 | |
| 204 | void __init init_pci_config_tokens (void) |
| 205 | { |
| 206 | read_pci_config = rtas_token("read-pci-config"); |
| 207 | write_pci_config = rtas_token("write-pci-config"); |
| 208 | ibm_read_pci_config = rtas_token("ibm,read-pci-config"); |
| 209 | ibm_write_pci_config = rtas_token("ibm,write-pci-config"); |
| 210 | } |
| 211 | |
| 212 | unsigned long __devinit get_phb_buid (struct device_node *phb) |
| 213 | { |
Benjamin Herrenschmidt | 6506e71 | 2006-11-11 17:25:06 +1100 | [diff] [blame] | 214 | struct resource r; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 215 | |
Benjamin Herrenschmidt | 6506e71 | 2006-11-11 17:25:06 +1100 | [diff] [blame] | 216 | if (ibm_read_pci_config == -1) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 217 | return 0; |
Benjamin Herrenschmidt | 6506e71 | 2006-11-11 17:25:06 +1100 | [diff] [blame] | 218 | if (of_address_to_resource(phb, 0, &r)) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 219 | return 0; |
Benjamin Herrenschmidt | 6506e71 | 2006-11-11 17:25:06 +1100 | [diff] [blame] | 220 | return r.start; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | static int phb_set_bus_ranges(struct device_node *dev, |
| 224 | struct pci_controller *phb) |
| 225 | { |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 226 | const int *bus_range; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 227 | unsigned int len; |
| 228 | |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 229 | bus_range = of_get_property(dev, "bus-range", &len); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 230 | if (bus_range == NULL || len < 2 * sizeof(int)) { |
| 231 | return 1; |
| 232 | } |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 233 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 234 | phb->first_busno = bus_range[0]; |
| 235 | phb->last_busno = bus_range[1]; |
| 236 | |
| 237 | return 0; |
| 238 | } |
| 239 | |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 240 | int __devinit rtas_setup_phb(struct pci_controller *phb) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 241 | { |
Stephen Rothwell | 44ef339 | 2007-12-10 14:33:21 +1100 | [diff] [blame] | 242 | struct device_node *dev = phb->dn; |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 243 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 244 | if (is_python(dev)) |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 245 | python_countermeasures(dev); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 246 | |
| 247 | if (phb_set_bus_ranges(dev, phb)) |
| 248 | return 1; |
| 249 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 250 | phb->ops = &rtas_pci_ops; |
| 251 | phb->buid = get_phb_buid(dev); |
| 252 | |
| 253 | return 0; |
| 254 | } |
| 255 | |
Stephen Rothwell | 36241ce | 2007-03-04 17:07:38 +1100 | [diff] [blame] | 256 | void __init find_and_init_phbs(void) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 257 | { |
| 258 | struct device_node *node; |
| 259 | struct pci_controller *phb; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 260 | struct device_node *root = of_find_node_by_path("/"); |
| 261 | |
Stephen Rothwell | 85e99b9 | 2008-01-03 15:13:37 +1100 | [diff] [blame] | 262 | for_each_child_of_node(root, node) { |
Jake Moilanen | bb53bb3 | 2006-06-07 16:05:46 -0500 | [diff] [blame] | 263 | if (node->type == NULL || (strcmp(node->type, "pci") != 0 && |
| 264 | strcmp(node->type, "pciex") != 0)) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 265 | continue; |
| 266 | |
Benjamin Herrenschmidt | b5166cc | 2005-11-15 16:05:33 +1100 | [diff] [blame] | 267 | phb = pcibios_alloc_controller(node); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 268 | if (!phb) |
| 269 | continue; |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 270 | rtas_setup_phb(phb); |
Paul Mackerras | f7abbc1 | 2005-10-22 15:03:21 +1000 | [diff] [blame] | 271 | pci_process_bridge_OF_ranges(phb, node, 0); |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 272 | isa_bridge_find_early(phb); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | of_node_put(root); |
| 276 | pci_devs_phb_init(); |
| 277 | |
Gavin Shan | eb740b5 | 2012-02-27 20:04:04 +0000 | [diff] [blame] | 278 | /* Create EEH devices for all PHBs */ |
| 279 | eeh_dev_phb_init(); |
| 280 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 281 | /* |
Bjorn Helgaas | 673c975 | 2012-02-23 20:18:58 -0700 | [diff] [blame] | 282 | * PCI_PROBE_ONLY and PCI_REASSIGN_ALL_BUS can be set via properties |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 283 | * in chosen. |
| 284 | */ |
| 285 | if (of_chosen) { |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 286 | const int *prop; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 287 | |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 288 | prop = of_get_property(of_chosen, |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 289 | "linux,pci-probe-only", NULL); |
Bjorn Helgaas | 673c975 | 2012-02-23 20:18:58 -0700 | [diff] [blame] | 290 | if (prop) { |
| 291 | if (*prop) |
| 292 | pci_add_flags(PCI_PROBE_ONLY); |
| 293 | else |
| 294 | pci_clear_flags(PCI_PROBE_ONLY); |
| 295 | } |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 296 | |
Benjamin Herrenschmidt | fc3fb71 | 2007-12-20 14:54:46 +1100 | [diff] [blame] | 297 | #ifdef CONFIG_PPC32 /* Will be made generic soon */ |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 298 | prop = of_get_property(of_chosen, |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 299 | "linux,pci-assign-all-buses", NULL); |
Benjamin Herrenschmidt | fc3fb71 | 2007-12-20 14:54:46 +1100 | [diff] [blame] | 300 | if (prop && *prop) |
Rob Herring | 0e47ff1 | 2011-07-12 09:25:51 -0500 | [diff] [blame] | 301 | pci_add_flags(PCI_REASSIGN_ALL_BUS); |
Benjamin Herrenschmidt | fc3fb71 | 2007-12-20 14:54:46 +1100 | [diff] [blame] | 302 | #endif /* CONFIG_PPC32 */ |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 303 | } |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 304 | } |