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 | |
Jake Moilanen | 293da76 | 2005-06-09 09:31:12 -0500 | [diff] [blame] | 59 | static int of_device_available(struct device_node * dn) |
| 60 | { |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 61 | const char *status; |
Jake Moilanen | 293da76 | 2005-06-09 09:31:12 -0500 | [diff] [blame] | 62 | |
| 63 | status = get_property(dn, "status", NULL); |
| 64 | |
| 65 | if (!status) |
| 66 | return 1; |
| 67 | |
| 68 | if (!strcmp(status, "okay")) |
| 69 | return 1; |
| 70 | |
| 71 | return 0; |
| 72 | } |
| 73 | |
Linas Vepstas | 7684b40 | 2005-11-03 18:55:19 -0600 | [diff] [blame] | 74 | 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] | 75 | { |
| 76 | int returnval = -1; |
| 77 | unsigned long buid, addr; |
| 78 | int ret; |
| 79 | |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 80 | if (!pdn) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 81 | return PCIBIOS_DEVICE_NOT_FOUND; |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 82 | if (!config_access_valid(pdn, where)) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 83 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 84 | |
Michael Ellerman | 6f3d5d3 | 2006-08-16 22:04:14 +1000 | [diff] [blame] | 85 | addr = rtas_config_addr(pdn->busno, pdn->devfn, where); |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 86 | buid = pdn->phb->buid; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 87 | if (buid) { |
| 88 | ret = rtas_call(ibm_read_pci_config, 4, 2, &returnval, |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 89 | addr, BUID_HI(buid), BUID_LO(buid), size); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 90 | } else { |
| 91 | ret = rtas_call(read_pci_config, 2, 2, &returnval, addr, size); |
| 92 | } |
| 93 | *val = returnval; |
| 94 | |
| 95 | if (ret) |
| 96 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 97 | |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 98 | if (returnval == EEH_IO_ERROR_VALUE(size) && |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 99 | eeh_dn_check_failure (pdn->node, NULL)) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 100 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 101 | |
| 102 | return PCIBIOS_SUCCESSFUL; |
| 103 | } |
| 104 | |
| 105 | static int rtas_pci_read_config(struct pci_bus *bus, |
| 106 | unsigned int devfn, |
| 107 | int where, int size, u32 *val) |
| 108 | { |
| 109 | struct device_node *busdn, *dn; |
| 110 | |
| 111 | if (bus->self) |
| 112 | busdn = pci_device_to_OF_node(bus->self); |
| 113 | else |
| 114 | busdn = bus->sysdata; /* must be a phb */ |
| 115 | |
| 116 | /* Search only direct children of the bus */ |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 117 | for (dn = busdn->child; dn; dn = dn->sibling) { |
| 118 | struct pci_dn *pdn = PCI_DN(dn); |
| 119 | if (pdn && pdn->devfn == devfn |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 120 | && of_device_available(dn)) |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 121 | return rtas_read_config(pdn, where, size, val); |
| 122 | } |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 123 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 124 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 125 | } |
| 126 | |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 127 | 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] | 128 | { |
| 129 | unsigned long buid, addr; |
| 130 | int ret; |
| 131 | |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 132 | if (!pdn) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 133 | return PCIBIOS_DEVICE_NOT_FOUND; |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 134 | if (!config_access_valid(pdn, where)) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 135 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 136 | |
Michael Ellerman | 6f3d5d3 | 2006-08-16 22:04:14 +1000 | [diff] [blame] | 137 | addr = rtas_config_addr(pdn->busno, pdn->devfn, where); |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 138 | buid = pdn->phb->buid; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 139 | if (buid) { |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 140 | ret = rtas_call(ibm_write_pci_config, 5, 1, NULL, addr, |
| 141 | BUID_HI(buid), BUID_LO(buid), size, (ulong) val); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 142 | } else { |
| 143 | ret = rtas_call(write_pci_config, 3, 1, NULL, addr, size, (ulong)val); |
| 144 | } |
| 145 | |
| 146 | if (ret) |
| 147 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 148 | |
| 149 | return PCIBIOS_SUCCESSFUL; |
| 150 | } |
| 151 | |
| 152 | static int rtas_pci_write_config(struct pci_bus *bus, |
| 153 | unsigned int devfn, |
| 154 | int where, int size, u32 val) |
| 155 | { |
| 156 | struct device_node *busdn, *dn; |
| 157 | |
| 158 | if (bus->self) |
| 159 | busdn = pci_device_to_OF_node(bus->self); |
| 160 | else |
| 161 | busdn = bus->sysdata; /* must be a phb */ |
| 162 | |
| 163 | /* Search only direct children of the bus */ |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 164 | for (dn = busdn->child; dn; dn = dn->sibling) { |
| 165 | struct pci_dn *pdn = PCI_DN(dn); |
| 166 | if (pdn && pdn->devfn == devfn |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 167 | && of_device_available(dn)) |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 168 | return rtas_write_config(pdn, where, size, val); |
| 169 | } |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 170 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 171 | } |
| 172 | |
| 173 | struct pci_ops rtas_pci_ops = { |
| 174 | rtas_pci_read_config, |
| 175 | rtas_pci_write_config |
| 176 | }; |
| 177 | |
| 178 | int is_python(struct device_node *dev) |
| 179 | { |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 180 | const char *model = get_property(dev, "model", NULL); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 181 | |
| 182 | if (model && strstr(model, "Python")) |
| 183 | return 1; |
| 184 | |
| 185 | return 0; |
| 186 | } |
| 187 | |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 188 | static void python_countermeasures(struct device_node *dev) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 189 | { |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 190 | struct resource registers; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 191 | void __iomem *chip_regs; |
| 192 | volatile u32 val; |
| 193 | |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 194 | if (of_address_to_resource(dev, 0, ®isters)) { |
| 195 | printk(KERN_ERR "Can't get address for Python workarounds !\n"); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 196 | return; |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 197 | } |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 198 | |
| 199 | /* Python's register file is 1 MB in size. */ |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 200 | chip_regs = ioremap(registers.start & ~(0xfffffUL), 0x100000); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 201 | |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 202 | /* |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 203 | * Firmware doesn't always clear this bit which is critical |
| 204 | * for good performance - Anton |
| 205 | */ |
| 206 | |
| 207 | #define PRG_CL_RESET_VALID 0x00010000 |
| 208 | |
| 209 | val = in_be32(chip_regs + 0xf6030); |
| 210 | if (val & PRG_CL_RESET_VALID) { |
| 211 | printk(KERN_INFO "Python workaround: "); |
| 212 | val &= ~PRG_CL_RESET_VALID; |
| 213 | out_be32(chip_regs + 0xf6030, val); |
| 214 | /* |
| 215 | * We must read it back for changes to |
| 216 | * take effect |
| 217 | */ |
| 218 | val = in_be32(chip_regs + 0xf6030); |
| 219 | printk("reg0: %x\n", val); |
| 220 | } |
| 221 | |
| 222 | iounmap(chip_regs); |
| 223 | } |
| 224 | |
| 225 | void __init init_pci_config_tokens (void) |
| 226 | { |
| 227 | read_pci_config = rtas_token("read-pci-config"); |
| 228 | write_pci_config = rtas_token("write-pci-config"); |
| 229 | ibm_read_pci_config = rtas_token("ibm,read-pci-config"); |
| 230 | ibm_write_pci_config = rtas_token("ibm,write-pci-config"); |
| 231 | } |
| 232 | |
| 233 | unsigned long __devinit get_phb_buid (struct device_node *phb) |
| 234 | { |
Benjamin Herrenschmidt | 6506e71 | 2006-11-11 17:25:06 +1100 | [diff] [blame] | 235 | struct resource r; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 236 | |
Benjamin Herrenschmidt | 6506e71 | 2006-11-11 17:25:06 +1100 | [diff] [blame] | 237 | if (ibm_read_pci_config == -1) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 238 | return 0; |
Benjamin Herrenschmidt | 6506e71 | 2006-11-11 17:25:06 +1100 | [diff] [blame] | 239 | if (of_address_to_resource(phb, 0, &r)) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 240 | return 0; |
Benjamin Herrenschmidt | 6506e71 | 2006-11-11 17:25:06 +1100 | [diff] [blame] | 241 | return r.start; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | static int phb_set_bus_ranges(struct device_node *dev, |
| 245 | struct pci_controller *phb) |
| 246 | { |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 247 | const int *bus_range; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 248 | unsigned int len; |
| 249 | |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 250 | bus_range = get_property(dev, "bus-range", &len); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 251 | if (bus_range == NULL || len < 2 * sizeof(int)) { |
| 252 | return 1; |
| 253 | } |
linas | ae65a39 | 2005-11-03 18:42:26 -0600 | [diff] [blame] | 254 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 255 | phb->first_busno = bus_range[0]; |
| 256 | phb->last_busno = bus_range[1]; |
| 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 261 | int __devinit rtas_setup_phb(struct pci_controller *phb) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 262 | { |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 263 | struct device_node *dev = phb->arch_data; |
| 264 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 265 | if (is_python(dev)) |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 266 | python_countermeasures(dev); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 267 | |
| 268 | if (phb_set_bus_ranges(dev, phb)) |
| 269 | return 1; |
| 270 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 271 | phb->ops = &rtas_pci_ops; |
| 272 | phb->buid = get_phb_buid(dev); |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 277 | unsigned long __init find_and_init_phbs(void) |
| 278 | { |
| 279 | struct device_node *node; |
| 280 | struct pci_controller *phb; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 281 | unsigned int index; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 282 | struct device_node *root = of_find_node_by_path("/"); |
| 283 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 284 | index = 0; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 285 | for (node = of_get_next_child(root, NULL); |
| 286 | node != NULL; |
| 287 | node = of_get_next_child(root, node)) { |
Jake Moilanen | bb53bb3 | 2006-06-07 16:05:46 -0500 | [diff] [blame] | 288 | |
| 289 | if (node->type == NULL || (strcmp(node->type, "pci") != 0 && |
| 290 | strcmp(node->type, "pciex") != 0)) |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 291 | continue; |
| 292 | |
Benjamin Herrenschmidt | b5166cc | 2005-11-15 16:05:33 +1100 | [diff] [blame] | 293 | phb = pcibios_alloc_controller(node); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 294 | if (!phb) |
| 295 | continue; |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 296 | rtas_setup_phb(phb); |
Paul Mackerras | f7abbc1 | 2005-10-22 15:03:21 +1000 | [diff] [blame] | 297 | pci_process_bridge_OF_ranges(phb, node, 0); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 298 | pci_setup_phb_io(phb, index == 0); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 299 | index++; |
| 300 | } |
| 301 | |
| 302 | of_node_put(root); |
| 303 | pci_devs_phb_init(); |
| 304 | |
| 305 | /* |
| 306 | * pci_probe_only and pci_assign_all_buses can be set via properties |
| 307 | * in chosen. |
| 308 | */ |
| 309 | if (of_chosen) { |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 310 | const int *prop; |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 311 | |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 312 | prop = get_property(of_chosen, |
| 313 | "linux,pci-probe-only", NULL); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 314 | if (prop) |
| 315 | pci_probe_only = *prop; |
| 316 | |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 317 | prop = get_property(of_chosen, |
| 318 | "linux,pci-assign-all-buses", NULL); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 319 | if (prop) |
| 320 | pci_assign_all_buses = *prop; |
| 321 | } |
| 322 | |
| 323 | return 0; |
| 324 | } |
| 325 | |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 326 | /* RPA-specific bits for removing PHBs */ |
| 327 | int pcibios_remove_root_bus(struct pci_controller *phb) |
| 328 | { |
| 329 | struct pci_bus *b = phb->bus; |
| 330 | struct resource *res; |
| 331 | int rc, i; |
| 332 | |
| 333 | res = b->resource[0]; |
| 334 | if (!res->flags) { |
| 335 | printk(KERN_ERR "%s: no IO resource for PHB %s\n", __FUNCTION__, |
| 336 | b->name); |
| 337 | return 1; |
| 338 | } |
| 339 | |
| 340 | rc = unmap_bus_range(b); |
| 341 | if (rc) { |
| 342 | printk(KERN_ERR "%s: failed to unmap IO on bus %s\n", |
| 343 | __FUNCTION__, b->name); |
| 344 | return 1; |
| 345 | } |
| 346 | |
| 347 | if (release_resource(res)) { |
| 348 | printk(KERN_ERR "%s: failed to release IO on bus %s\n", |
| 349 | __FUNCTION__, b->name); |
| 350 | return 1; |
| 351 | } |
| 352 | |
| 353 | for (i = 1; i < 3; ++i) { |
| 354 | res = b->resource[i]; |
| 355 | if (!res->flags && i == 0) { |
| 356 | printk(KERN_ERR "%s: no MEM resource for PHB %s\n", |
| 357 | __FUNCTION__, b->name); |
| 358 | return 1; |
| 359 | } |
| 360 | if (res->flags && release_resource(res)) { |
| 361 | printk(KERN_ERR |
| 362 | "%s: failed to release IO %d on bus %s\n", |
| 363 | __FUNCTION__, i, b->name); |
| 364 | return 1; |
| 365 | } |
| 366 | } |
| 367 | |
Benjamin Herrenschmidt | b5166cc | 2005-11-15 16:05:33 +1100 | [diff] [blame] | 368 | pcibios_free_controller(phb); |
Arnd Bergmann | c5a3c2e | 2005-06-23 09:43:23 +1000 | [diff] [blame] | 369 | |
| 370 | return 0; |
| 371 | } |
| 372 | EXPORT_SYMBOL(pcibios_remove_root_bus); |