Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 2 | /* |
| 3 | * Common pmac/prep/chrp pci routines. -- Cort |
| 4 | */ |
| 5 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 6 | #include <linux/kernel.h> |
| 7 | #include <linux/pci.h> |
| 8 | #include <linux/delay.h> |
| 9 | #include <linux/string.h> |
| 10 | #include <linux/init.h> |
| 11 | #include <linux/capability.h> |
| 12 | #include <linux/sched.h> |
| 13 | #include <linux/errno.h> |
Mike Rapoport | 57c8a66 | 2018-10-30 15:09:49 -0700 | [diff] [blame] | 14 | #include <linux/memblock.h> |
Mathieu Malaterre | c89ca59 | 2018-03-22 21:20:03 +0100 | [diff] [blame] | 15 | #include <linux/syscalls.h> |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 16 | #include <linux/irq.h> |
Benjamin Herrenschmidt | f90bb15 | 2006-11-11 17:24:51 +1100 | [diff] [blame] | 17 | #include <linux/list.h> |
Stephen Rothwell | 66524b2 | 2007-12-21 15:52:43 +1100 | [diff] [blame] | 18 | #include <linux/of.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/slab.h> |
Paul Gortmaker | 9308794 | 2011-07-29 16:19:31 +1000 | [diff] [blame] | 20 | #include <linux/export.h> |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 21 | |
| 22 | #include <asm/processor.h> |
| 23 | #include <asm/io.h> |
| 24 | #include <asm/prom.h> |
| 25 | #include <asm/sections.h> |
| 26 | #include <asm/pci-bridge.h> |
Milton Miller | c3bd517 | 2009-01-08 02:19:46 +0000 | [diff] [blame] | 27 | #include <asm/ppc-pci.h> |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 28 | #include <asm/byteorder.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 29 | #include <linux/uaccess.h> |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 30 | #include <asm/machdep.h> |
| 31 | |
| 32 | #undef DEBUG |
| 33 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 34 | unsigned long isa_io_base = 0; |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 35 | unsigned long pci_dram_offset = 0; |
| 36 | int pcibios_assign_bus_offset = 1; |
Al Viro | 9445aa1 | 2016-01-13 23:33:46 -0500 | [diff] [blame] | 37 | EXPORT_SYMBOL(isa_io_base); |
| 38 | EXPORT_SYMBOL(pci_dram_offset); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 39 | |
| 40 | void pcibios_make_OF_bus_map(void); |
| 41 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 42 | static void fixup_cpc710_pci64(struct pci_dev* dev); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 43 | static u8* pci_to_OF_bus_map; |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 44 | |
| 45 | /* By default, we don't re-assign bus numbers. We do this only on |
| 46 | * some pmacs |
| 47 | */ |
Benjamin Herrenschmidt | fc3fb71 | 2007-12-20 14:54:46 +1100 | [diff] [blame] | 48 | static int pci_assign_all_buses; |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 49 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 50 | static int pci_bus_count; |
| 51 | |
Benjamin Herrenschmidt | 7b6b574 | 2008-10-13 17:51:46 +0000 | [diff] [blame] | 52 | /* This will remain NULL for now, until isa-bridge.c is made common |
| 53 | * to both 32-bit and 64-bit. |
| 54 | */ |
| 55 | struct pci_dev *isa_bridge_pcidev; |
| 56 | EXPORT_SYMBOL_GPL(isa_bridge_pcidev); |
| 57 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 58 | static void |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 59 | fixup_cpc710_pci64(struct pci_dev* dev) |
| 60 | { |
| 61 | /* Hide the PCI64 BARs from the kernel as their content doesn't |
| 62 | * fit well in the resource management |
| 63 | */ |
| 64 | dev->resource[0].start = dev->resource[0].end = 0; |
| 65 | dev->resource[0].flags = 0; |
| 66 | dev->resource[1].start = dev->resource[1].end = 0; |
| 67 | dev->resource[1].flags = 0; |
| 68 | } |
| 69 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CPC710_PCI64, fixup_cpc710_pci64); |
| 70 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 71 | /* |
| 72 | * Functions below are used on OpenFirmware machines. |
| 73 | */ |
| 74 | static void |
| 75 | make_one_node_map(struct device_node* node, u8 pci_bus) |
| 76 | { |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 77 | const int *bus_range; |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 78 | int len; |
| 79 | |
| 80 | if (pci_bus >= pci_bus_count) |
| 81 | return; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 82 | bus_range = of_get_property(node, "bus-range", &len); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 83 | if (bus_range == NULL || len < 2 * sizeof(int)) { |
Rob Herring | b7c670d | 2017-08-21 10:16:47 -0500 | [diff] [blame] | 84 | printk(KERN_WARNING "Can't get bus-range for %pOF, " |
| 85 | "assuming it starts at 0\n", node); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 86 | pci_to_OF_bus_map[pci_bus] = 0; |
| 87 | } else |
| 88 | pci_to_OF_bus_map[pci_bus] = bus_range[0]; |
| 89 | |
Stephen Rothwell | 66524b2 | 2007-12-21 15:52:43 +1100 | [diff] [blame] | 90 | for_each_child_of_node(node, node) { |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 91 | struct pci_dev* dev; |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 92 | const unsigned int *class_code, *reg; |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 93 | |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 94 | class_code = of_get_property(node, "class-code", NULL); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 95 | if (!class_code || ((*class_code >> 8) != PCI_CLASS_BRIDGE_PCI && |
| 96 | (*class_code >> 8) != PCI_CLASS_BRIDGE_CARDBUS)) |
| 97 | continue; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 98 | reg = of_get_property(node, "reg", NULL); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 99 | if (!reg) |
| 100 | continue; |
Sinan Kaya | 50ed578 | 2017-12-19 00:37:38 -0500 | [diff] [blame] | 101 | dev = pci_get_domain_bus_and_slot(0, pci_bus, |
| 102 | ((reg[0] >> 8) & 0xff)); |
Alan Cox | ab46276 | 2007-04-23 14:47:59 +0100 | [diff] [blame] | 103 | if (!dev || !dev->subordinate) { |
| 104 | pci_dev_put(dev); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 105 | continue; |
Alan Cox | ab46276 | 2007-04-23 14:47:59 +0100 | [diff] [blame] | 106 | } |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 107 | make_one_node_map(node, dev->subordinate->number); |
Alan Cox | ab46276 | 2007-04-23 14:47:59 +0100 | [diff] [blame] | 108 | pci_dev_put(dev); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 109 | } |
| 110 | } |
| 111 | |
| 112 | void |
| 113 | pcibios_make_OF_bus_map(void) |
| 114 | { |
| 115 | int i; |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 116 | struct pci_controller *hose, *tmp; |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 117 | struct property *map_prop; |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 118 | struct device_node *dn; |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 119 | |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 120 | pci_to_OF_bus_map = kmalloc(pci_bus_count, GFP_KERNEL); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 121 | if (!pci_to_OF_bus_map) { |
| 122 | printk(KERN_ERR "Can't allocate OF bus map !\n"); |
| 123 | return; |
| 124 | } |
| 125 | |
| 126 | /* We fill the bus map with invalid values, that helps |
| 127 | * debugging. |
| 128 | */ |
| 129 | for (i=0; i<pci_bus_count; i++) |
| 130 | pci_to_OF_bus_map[i] = 0xff; |
| 131 | |
| 132 | /* For each hose, we begin searching bridges */ |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 133 | list_for_each_entry_safe(hose, tmp, &hose_list, list_node) { |
Stephen Rothwell | 44ef339 | 2007-12-10 14:33:21 +1100 | [diff] [blame] | 134 | struct device_node* node = hose->dn; |
| 135 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 136 | if (!node) |
| 137 | continue; |
| 138 | make_one_node_map(node, hose->first_busno); |
| 139 | } |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 140 | dn = of_find_node_by_path("/"); |
| 141 | map_prop = of_find_property(dn, "pci-OF-bus-map", NULL); |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 142 | if (map_prop) { |
| 143 | BUG_ON(pci_bus_count > map_prop->length); |
| 144 | memcpy(map_prop->value, pci_to_OF_bus_map, pci_bus_count); |
| 145 | } |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 146 | of_node_put(dn); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 147 | #ifdef DEBUG |
| 148 | printk("PCI->OF bus map:\n"); |
| 149 | for (i=0; i<pci_bus_count; i++) { |
| 150 | if (pci_to_OF_bus_map[i] == 0xff) |
| 151 | continue; |
| 152 | printk("%d -> %d\n", i, pci_to_OF_bus_map[i]); |
| 153 | } |
| 154 | #endif |
| 155 | } |
| 156 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 157 | |
| 158 | /* |
| 159 | * Returns the PCI device matching a given OF node |
| 160 | */ |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 161 | int pci_device_from_OF_node(struct device_node *node, u8 *bus, u8 *devfn) |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 162 | { |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 163 | struct pci_dev *dev = NULL; |
| 164 | const __be32 *reg; |
| 165 | int size; |
| 166 | |
| 167 | /* Check if it might have a chance to be a PCI device */ |
| 168 | if (!pci_find_hose_for_OF_device(node)) |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 169 | return -ENODEV; |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 170 | |
| 171 | reg = of_get_property(node, "reg", &size); |
| 172 | if (!reg || size < 5 * sizeof(u32)) |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 173 | return -ENODEV; |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 174 | |
| 175 | *bus = (be32_to_cpup(®[0]) >> 16) & 0xff; |
| 176 | *devfn = (be32_to_cpup(®[0]) >> 8) & 0xff; |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 177 | |
| 178 | /* Ok, here we need some tweak. If we have already renumbered |
| 179 | * all busses, we can't rely on the OF bus number any more. |
| 180 | * the pci_to_OF_bus_map is not enough as several PCI busses |
| 181 | * may match the same OF bus number. |
| 182 | */ |
| 183 | if (!pci_to_OF_bus_map) |
| 184 | return 0; |
| 185 | |
| 186 | for_each_pci_dev(dev) |
| 187 | if (pci_to_OF_bus_map[dev->bus->number] == *bus && |
| 188 | dev->devfn == *devfn) { |
| 189 | *bus = dev->bus->number; |
| 190 | pci_dev_put(dev); |
| 191 | return 0; |
| 192 | } |
| 193 | |
| 194 | return -ENODEV; |
| 195 | } |
| 196 | EXPORT_SYMBOL(pci_device_from_OF_node); |
| 197 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 198 | /* We create the "pci-OF-bus-map" property now so it appears in the |
| 199 | * /proc device tree |
| 200 | */ |
| 201 | void __init |
| 202 | pci_create_OF_bus_map(void) |
| 203 | { |
| 204 | struct property* of_prop; |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 205 | struct device_node *dn; |
| 206 | |
Mike Rapoport | 7e1c4e2 | 2018-10-30 15:09:57 -0700 | [diff] [blame] | 207 | of_prop = memblock_alloc(sizeof(struct property) + 256, |
| 208 | SMP_CACHE_BYTES); |
Mike Rapoport | 8a7f97b | 2019-03-11 23:30:31 -0700 | [diff] [blame] | 209 | if (!of_prop) |
| 210 | panic("%s: Failed to allocate %zu bytes\n", __func__, |
| 211 | sizeof(struct property) + 256); |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 212 | dn = of_find_node_by_path("/"); |
| 213 | if (dn) { |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 214 | memset(of_prop, -1, sizeof(struct property) + 256); |
| 215 | of_prop->name = "pci-OF-bus-map"; |
| 216 | of_prop->length = 256; |
Stephen Rothwell | 1a38147 | 2007-04-03 10:58:52 +1000 | [diff] [blame] | 217 | of_prop->value = &of_prop[1]; |
Nathan Fontenot | 79d1c71 | 2012-10-02 16:58:46 +0000 | [diff] [blame] | 218 | of_add_property(dn, of_prop); |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 219 | of_node_put(dn); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 220 | } |
| 221 | } |
| 222 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 223 | void pcibios_setup_phb_io_space(struct pci_controller *hose) |
Benjamin Herrenschmidt | 5328032 | 2008-10-27 19:48:29 +0000 | [diff] [blame] | 224 | { |
Benjamin Herrenschmidt | 5328032 | 2008-10-27 19:48:29 +0000 | [diff] [blame] | 225 | unsigned long io_offset; |
| 226 | struct resource *res = &hose->io_resource; |
| 227 | |
Benjamin Herrenschmidt | 5328032 | 2008-10-27 19:48:29 +0000 | [diff] [blame] | 228 | /* Fixup IO space offset */ |
Bjorn Helgaas | 38973ba | 2012-03-16 17:48:09 -0600 | [diff] [blame] | 229 | io_offset = pcibios_io_space_offset(hose); |
| 230 | res->start += io_offset; |
| 231 | res->end += io_offset; |
Benjamin Herrenschmidt | 5328032 | 2008-10-27 19:48:29 +0000 | [diff] [blame] | 232 | } |
| 233 | |
Benjamin Herrenschmidt | 3fd94c6 | 2007-12-20 14:54:53 +1100 | [diff] [blame] | 234 | static int __init pcibios_init(void) |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 235 | { |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 236 | struct pci_controller *hose, *tmp; |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 237 | int next_busno = 0; |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 238 | |
| 239 | printk(KERN_INFO "PCI: Probing PCI hardware\n"); |
| 240 | |
Rob Herring | 0e47ff1 | 2011-07-12 09:25:51 -0500 | [diff] [blame] | 241 | if (pci_has_flag(PCI_REASSIGN_ALL_BUS)) |
Benjamin Herrenschmidt | fc3fb71 | 2007-12-20 14:54:46 +1100 | [diff] [blame] | 242 | pci_assign_all_buses = 1; |
| 243 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 244 | /* Scan all of the recorded PCI controllers. */ |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 245 | list_for_each_entry_safe(hose, tmp, &hose_list, list_node) { |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 246 | if (pci_assign_all_buses) |
| 247 | hose->first_busno = next_busno; |
| 248 | hose->last_busno = 0xff; |
Grant Likely | b5d937d | 2011-02-04 11:24:11 -0700 | [diff] [blame] | 249 | pcibios_scan_phb(hose); |
Benjamin Herrenschmidt | 5328032 | 2008-10-27 19:48:29 +0000 | [diff] [blame] | 250 | pci_bus_add_devices(hose->bus); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 251 | if (pci_assign_all_buses || next_busno <= hose->last_busno) |
| 252 | next_busno = hose->last_busno + pcibios_assign_bus_offset; |
| 253 | } |
| 254 | pci_bus_count = next_busno; |
| 255 | |
| 256 | /* OpenFirmware based machines need a map of OF bus |
| 257 | * numbers vs. kernel bus numbers since we may have to |
| 258 | * remap them. |
| 259 | */ |
Anton Vorontsov | 6b82b3e | 2008-12-09 09:47:29 +0000 | [diff] [blame] | 260 | if (pci_assign_all_buses) |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 261 | pcibios_make_OF_bus_map(); |
| 262 | |
Benjamin Herrenschmidt | 3fd94c6 | 2007-12-20 14:54:53 +1100 | [diff] [blame] | 263 | /* Call common code to handle resource allocation */ |
| 264 | pcibios_resource_survey(); |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 265 | |
Sam Bobroff | 3f068aa | 2019-08-16 14:48:05 +1000 | [diff] [blame] | 266 | /* Call machine dependent fixup */ |
| 267 | if (ppc_md.pcibios_fixup) |
| 268 | ppc_md.pcibios_fixup(); |
| 269 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 270 | /* Call machine dependent post-init code */ |
| 271 | if (ppc_md.pcibios_after_init) |
| 272 | ppc_md.pcibios_after_init(); |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | subsys_initcall(pcibios_init); |
| 278 | |
Kumar Gala | 0b1d40c | 2007-06-27 10:27:33 -0500 | [diff] [blame] | 279 | static struct pci_controller* |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 280 | pci_bus_to_hose(int bus) |
| 281 | { |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 282 | struct pci_controller *hose, *tmp; |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 283 | |
Kumar Gala | a4c9e32 | 2007-06-27 13:09:43 -0500 | [diff] [blame] | 284 | list_for_each_entry_safe(hose, tmp, &hose_list, list_node) |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 285 | if (bus >= hose->first_busno && bus <= hose->last_busno) |
| 286 | return hose; |
| 287 | return NULL; |
| 288 | } |
| 289 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 290 | /* Provide information on locations of various I/O regions in physical |
| 291 | * memory. Do this on a per-card basis so that we choose the right |
| 292 | * root bridge. |
| 293 | * Note that the returned IO or memory base is a physical address |
| 294 | */ |
| 295 | |
Al Viro | 3691d61 | 2018-05-02 23:20:46 +1000 | [diff] [blame] | 296 | SYSCALL_DEFINE3(pciconfig_iobase, long, which, |
| 297 | unsigned long, bus, unsigned long, devfn) |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 298 | { |
| 299 | struct pci_controller* hose; |
| 300 | long result = -EOPNOTSUPP; |
| 301 | |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 302 | hose = pci_bus_to_hose(bus); |
| 303 | if (!hose) |
| 304 | return -ENODEV; |
| 305 | |
| 306 | switch (which) { |
| 307 | case IOBASE_BRIDGE_NUMBER: |
| 308 | return (long)hose->first_busno; |
| 309 | case IOBASE_MEMORY: |
Benjamin Herrenschmidt | 3fd47f0 | 2013-05-06 13:40:40 +1000 | [diff] [blame] | 310 | return (long)hose->mem_offset[0]; |
Paul Mackerras | e05b3b4 | 2006-01-15 22:05:47 +1100 | [diff] [blame] | 311 | case IOBASE_IO: |
| 312 | return (long)hose->io_base_phys; |
| 313 | case IOBASE_ISA_IO: |
| 314 | return (long)isa_io_base; |
| 315 | case IOBASE_ISA_MEM: |
| 316 | return (long)isa_mem_base; |
| 317 | } |
| 318 | |
| 319 | return result; |
| 320 | } |