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