Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Port for PPC64 David Engebretsen, IBM Corp. |
| 3 | * Contains common pci routines for ppc64 platform, pSeries and iSeries brands. |
| 4 | * |
| 5 | * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM |
| 6 | * Rework, based on alpha PCI code. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * as published by the Free Software Foundation; either version |
| 11 | * 2 of the License, or (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | #undef DEBUG |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/kernel.h> |
| 17 | #include <linux/pci.h> |
| 18 | #include <linux/string.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/bootmem.h> |
| 21 | #include <linux/mm.h> |
| 22 | #include <linux/list.h> |
Paul Mackerras | b2ad7b5 | 2005-09-09 23:02:36 +1000 | [diff] [blame] | 23 | #include <linux/syscalls.h> |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 24 | #include <linux/irq.h> |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 25 | #include <linux/vmalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | #include <asm/processor.h> |
| 28 | #include <asm/io.h> |
| 29 | #include <asm/prom.h> |
| 30 | #include <asm/pci-bridge.h> |
| 31 | #include <asm/byteorder.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <asm/machdep.h> |
Stephen Rothwell | d387899 | 2005-09-28 02:50:25 +1000 | [diff] [blame] | 33 | #include <asm/ppc-pci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | #ifdef DEBUG |
Michael Ellerman | f9e4ec5 | 2005-11-15 15:16:38 +1100 | [diff] [blame] | 36 | #include <asm/udbg.h> |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 37 | #define DBG(fmt...) printk(fmt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #else |
| 39 | #define DBG(fmt...) |
| 40 | #endif |
| 41 | |
| 42 | unsigned long pci_probe_only = 1; |
Paul Mackerras | f8ef270 | 2005-11-19 20:46:04 +1100 | [diff] [blame] | 43 | int pci_assign_all_buses = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 45 | static void fixup_resource(struct resource *res, struct pci_dev *dev); |
| 46 | static void do_bus_setup(struct pci_bus *bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /* pci_io_base -- the base address from which io bars are offsets. |
| 49 | * This is the lowest I/O base address (so bar values are always positive), |
| 50 | * and it *must* be the start of ISA space if an ISA bus exists because |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 51 | * ISA drivers use hard coded offsets. If no ISA bus exists nothing |
| 52 | * is mapped on the first 64K of IO space |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | */ |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 54 | unsigned long pci_io_base = ISA_IO_BASE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | EXPORT_SYMBOL(pci_io_base); |
| 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | LIST_HEAD(hose_list); |
| 58 | |
Stephen Rothwell | 5719070 | 2007-03-04 17:02:41 +1100 | [diff] [blame] | 59 | static struct dma_mapping_ops *pci_dma_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Stephen Rothwell | 9874777 | 2007-03-04 16:58:39 +1100 | [diff] [blame] | 61 | void set_pci_dma_ops(struct dma_mapping_ops *dma_ops) |
| 62 | { |
| 63 | pci_dma_ops = dma_ops; |
| 64 | } |
| 65 | |
Stephen Rothwell | 5719070 | 2007-03-04 17:02:41 +1100 | [diff] [blame] | 66 | struct dma_mapping_ops *get_pci_dma_ops(void) |
| 67 | { |
| 68 | return pci_dma_ops; |
| 69 | } |
| 70 | EXPORT_SYMBOL(get_pci_dma_ops); |
| 71 | |
Michael Ellerman | 84631f3 | 2007-12-17 17:35:53 +1100 | [diff] [blame^] | 72 | |
| 73 | int pci_set_dma_mask(struct pci_dev *dev, u64 mask) |
| 74 | { |
| 75 | return dma_set_mask(&dev->dev, mask); |
| 76 | } |
| 77 | |
| 78 | int pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask) |
| 79 | { |
| 80 | int rc; |
| 81 | |
| 82 | rc = dma_set_mask(&dev->dev, mask); |
| 83 | dev->dev.coherent_dma_mask = dev->dma_mask; |
| 84 | |
| 85 | return rc; |
| 86 | } |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | static void fixup_broken_pcnet32(struct pci_dev* dev) |
| 89 | { |
| 90 | if ((dev->class>>8 == PCI_CLASS_NETWORK_ETHERNET)) { |
| 91 | dev->vendor = PCI_VENDOR_ID_AMD; |
| 92 | pci_write_config_word(dev, PCI_VENDOR_ID, PCI_VENDOR_ID_AMD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } |
| 94 | } |
| 95 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT, PCI_ANY_ID, fixup_broken_pcnet32); |
| 96 | |
| 97 | void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region, |
| 98 | struct resource *res) |
| 99 | { |
| 100 | unsigned long offset = 0; |
| 101 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
| 102 | |
| 103 | if (!hose) |
| 104 | return; |
| 105 | |
| 106 | if (res->flags & IORESOURCE_IO) |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 107 | offset = (unsigned long)hose->io_base_virt - _IO_BASE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | if (res->flags & IORESOURCE_MEM) |
| 110 | offset = hose->pci_mem_offset; |
| 111 | |
| 112 | region->start = res->start - offset; |
| 113 | region->end = res->end - offset; |
| 114 | } |
| 115 | |
Dominik Brodowski | 43c3473 | 2005-08-04 18:06:21 -0700 | [diff] [blame] | 116 | void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res, |
| 117 | struct pci_bus_region *region) |
| 118 | { |
| 119 | unsigned long offset = 0; |
| 120 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
| 121 | |
| 122 | if (!hose) |
| 123 | return; |
| 124 | |
| 125 | if (res->flags & IORESOURCE_IO) |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 126 | offset = (unsigned long)hose->io_base_virt - _IO_BASE; |
Dominik Brodowski | 43c3473 | 2005-08-04 18:06:21 -0700 | [diff] [blame] | 127 | |
| 128 | if (res->flags & IORESOURCE_MEM) |
| 129 | offset = hose->pci_mem_offset; |
| 130 | |
| 131 | res->start = region->start + offset; |
| 132 | res->end = region->end + offset; |
| 133 | } |
| 134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | #ifdef CONFIG_HOTPLUG |
| 136 | EXPORT_SYMBOL(pcibios_resource_to_bus); |
Dominik Brodowski | 43c3473 | 2005-08-04 18:06:21 -0700 | [diff] [blame] | 137 | EXPORT_SYMBOL(pcibios_bus_to_resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | #endif |
| 139 | |
| 140 | /* |
| 141 | * We need to avoid collisions with `mirrored' VGA ports |
| 142 | * and other strange ISA hardware, so we always want the |
| 143 | * addresses to be allocated in the 0x000-0x0ff region |
| 144 | * modulo 0x400. |
| 145 | * |
| 146 | * Why? Because some silly external IO cards only decode |
| 147 | * the low 10 bits of the IO address. The 0x00-0xff region |
| 148 | * is reserved for motherboard devices that decode all 16 |
| 149 | * bits, so it's ok to allocate at, say, 0x2800-0x28ff, |
| 150 | * but we want to try to avoid allocating at 0x2900-0x2bff |
| 151 | * which might have be mirrored at 0x0100-0x03ff.. |
| 152 | */ |
| 153 | void pcibios_align_resource(void *data, struct resource *res, |
Greg Kroah-Hartman | e31dd6e | 2006-06-12 17:06:02 -0700 | [diff] [blame] | 154 | resource_size_t size, resource_size_t align) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
| 156 | struct pci_dev *dev = data; |
| 157 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
Greg Kroah-Hartman | e31dd6e | 2006-06-12 17:06:02 -0700 | [diff] [blame] | 158 | resource_size_t start = res->start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | unsigned long alignto; |
| 160 | |
| 161 | if (res->flags & IORESOURCE_IO) { |
| 162 | unsigned long offset = (unsigned long)hose->io_base_virt - |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 163 | _IO_BASE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | /* Make sure we start at our min on all hoses */ |
| 165 | if (start - offset < PCIBIOS_MIN_IO) |
| 166 | start = PCIBIOS_MIN_IO + offset; |
| 167 | |
| 168 | /* |
| 169 | * Put everything into 0x00-0xff region modulo 0x400 |
| 170 | */ |
| 171 | if (start & 0x300) |
| 172 | start = (start + 0x3ff) & ~0x3ff; |
| 173 | |
| 174 | } else if (res->flags & IORESOURCE_MEM) { |
| 175 | /* Make sure we start at our min on all hoses */ |
| 176 | if (start - hose->pci_mem_offset < PCIBIOS_MIN_MEM) |
| 177 | start = PCIBIOS_MIN_MEM + hose->pci_mem_offset; |
| 178 | |
| 179 | /* Align to multiple of size of minimum base. */ |
| 180 | alignto = max(0x1000UL, align); |
| 181 | start = ALIGN(start, alignto); |
| 182 | } |
| 183 | |
| 184 | res->start = start; |
| 185 | } |
| 186 | |
Linas Vepstas | facf078 | 2005-11-03 18:52:01 -0600 | [diff] [blame] | 187 | void __devinit pcibios_claim_one_bus(struct pci_bus *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | { |
| 189 | struct pci_dev *dev; |
| 190 | struct pci_bus *child_bus; |
| 191 | |
| 192 | list_for_each_entry(dev, &b->devices, bus_list) { |
| 193 | int i; |
| 194 | |
| 195 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { |
| 196 | struct resource *r = &dev->resource[i]; |
| 197 | |
| 198 | if (r->parent || !r->start || !r->flags) |
| 199 | continue; |
| 200 | pci_claim_resource(dev, i); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | list_for_each_entry(child_bus, &b->children, node) |
| 205 | pcibios_claim_one_bus(child_bus); |
| 206 | } |
linas | af9deab | 2006-01-10 15:18:16 -0600 | [diff] [blame] | 207 | #ifdef CONFIG_HOTPLUG |
| 208 | EXPORT_SYMBOL_GPL(pcibios_claim_one_bus); |
| 209 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | static void __init pcibios_claim_of_setup(void) |
| 212 | { |
| 213 | struct pci_bus *b; |
| 214 | |
| 215 | list_for_each_entry(b, &pci_root_buses, node) |
| 216 | pcibios_claim_one_bus(b); |
| 217 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 219 | static u32 get_int_prop(struct device_node *np, const char *name, u32 def) |
| 220 | { |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 221 | const u32 *prop; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 222 | int len; |
| 223 | |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 224 | prop = of_get_property(np, name, &len); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 225 | if (prop && len >= 4) |
| 226 | return *prop; |
| 227 | return def; |
| 228 | } |
| 229 | |
| 230 | static unsigned int pci_parse_of_flags(u32 addr0) |
| 231 | { |
| 232 | unsigned int flags = 0; |
| 233 | |
| 234 | if (addr0 & 0x02000000) { |
Paul Mackerras | d79e743 | 2005-09-21 14:14:22 +1000 | [diff] [blame] | 235 | flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY; |
| 236 | flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64; |
| 237 | flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 238 | if (addr0 & 0x40000000) |
Paul Mackerras | d79e743 | 2005-09-21 14:14:22 +1000 | [diff] [blame] | 239 | flags |= IORESOURCE_PREFETCH |
| 240 | | PCI_BASE_ADDRESS_MEM_PREFETCH; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 241 | } else if (addr0 & 0x01000000) |
Paul Mackerras | d79e743 | 2005-09-21 14:14:22 +1000 | [diff] [blame] | 242 | flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 243 | return flags; |
| 244 | } |
| 245 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 246 | |
| 247 | static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev) |
| 248 | { |
| 249 | u64 base, size; |
| 250 | unsigned int flags; |
| 251 | struct resource *res; |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 252 | const u32 *addrs; |
| 253 | u32 i; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 254 | int proplen; |
| 255 | |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 256 | addrs = of_get_property(node, "assigned-addresses", &proplen); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 257 | if (!addrs) |
| 258 | return; |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 259 | DBG(" parse addresses (%d bytes) @ %p\n", proplen, addrs); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 260 | for (; proplen >= 20; proplen -= 20, addrs += 5) { |
| 261 | flags = pci_parse_of_flags(addrs[0]); |
| 262 | if (!flags) |
| 263 | continue; |
Jon Loeliger | 327e22d | 2007-06-04 14:28:44 -0500 | [diff] [blame] | 264 | base = of_read_number(&addrs[1], 2); |
| 265 | size = of_read_number(&addrs[3], 2); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 266 | if (!size) |
| 267 | continue; |
| 268 | i = addrs[0] & 0xff; |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 269 | DBG(" base: %llx, size: %llx, i: %x\n", |
| 270 | (unsigned long long)base, (unsigned long long)size, i); |
| 271 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 272 | if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) { |
| 273 | res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2]; |
| 274 | } else if (i == dev->rom_base_reg) { |
| 275 | res = &dev->resource[PCI_ROM_RESOURCE]; |
| 276 | flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE; |
| 277 | } else { |
| 278 | printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i); |
| 279 | continue; |
| 280 | } |
| 281 | res->start = base; |
| 282 | res->end = base + size - 1; |
| 283 | res->flags = flags; |
| 284 | res->name = pci_name(dev); |
| 285 | fixup_resource(res, dev); |
| 286 | } |
| 287 | } |
| 288 | |
John Rose | ead8371 | 2005-11-04 15:30:56 -0600 | [diff] [blame] | 289 | struct pci_dev *of_create_pci_dev(struct device_node *node, |
| 290 | struct pci_bus *bus, int devfn) |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 291 | { |
| 292 | struct pci_dev *dev; |
| 293 | const char *type; |
| 294 | |
Michael Ellerman | bab41e9 | 2007-04-05 17:19:09 +1000 | [diff] [blame] | 295 | dev = alloc_pci_dev(); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 296 | if (!dev) |
| 297 | return NULL; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 298 | type = of_get_property(node, "device_type", NULL); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 299 | if (type == NULL) |
| 300 | type = ""; |
| 301 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 302 | DBG(" create device, devfn: %x, type: %s\n", devfn, type); |
| 303 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 304 | dev->bus = bus; |
| 305 | dev->sysdata = node; |
| 306 | dev->dev.parent = bus->bridge; |
| 307 | dev->dev.bus = &pci_bus_type; |
| 308 | dev->devfn = devfn; |
| 309 | dev->multifunction = 0; /* maybe a lie? */ |
| 310 | |
| 311 | dev->vendor = get_int_prop(node, "vendor-id", 0xffff); |
| 312 | dev->device = get_int_prop(node, "device-id", 0xffff); |
| 313 | dev->subsystem_vendor = get_int_prop(node, "subsystem-vendor-id", 0); |
| 314 | dev->subsystem_device = get_int_prop(node, "subsystem-id", 0); |
| 315 | |
Benjamin Herrenschmidt | 9d17a5c | 2006-01-10 14:50:37 +1100 | [diff] [blame] | 316 | dev->cfg_size = pci_cfg_space_size(dev); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 317 | |
| 318 | sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus), |
| 319 | dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn)); |
| 320 | dev->class = get_int_prop(node, "class-code", 0); |
Auke Kok | b8a3a52 | 2007-06-08 15:46:30 -0700 | [diff] [blame] | 321 | dev->revision = get_int_prop(node, "revision-id", 0); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 322 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 323 | DBG(" class: 0x%x\n", dev->class); |
Auke Kok | b8a3a52 | 2007-06-08 15:46:30 -0700 | [diff] [blame] | 324 | DBG(" revision: 0x%x\n", dev->revision); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 325 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 326 | dev->current_state = 4; /* unknown power state */ |
Linas Vepstas | bb63ab1 | 2006-12-19 14:00:34 -0600 | [diff] [blame] | 327 | dev->error_state = pci_channel_io_normal; |
Benjamin Herrenschmidt | 8f2ea1f | 2007-08-07 08:05:10 +1000 | [diff] [blame] | 328 | dev->dma_mask = 0xffffffff; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 329 | |
Jake Moilanen | bb53bb3 | 2006-06-07 16:05:46 -0500 | [diff] [blame] | 330 | if (!strcmp(type, "pci") || !strcmp(type, "pciex")) { |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 331 | /* a PCI-PCI bridge */ |
| 332 | dev->hdr_type = PCI_HEADER_TYPE_BRIDGE; |
| 333 | dev->rom_base_reg = PCI_ROM_ADDRESS1; |
| 334 | } else if (!strcmp(type, "cardbus")) { |
| 335 | dev->hdr_type = PCI_HEADER_TYPE_CARDBUS; |
| 336 | } else { |
| 337 | dev->hdr_type = PCI_HEADER_TYPE_NORMAL; |
| 338 | dev->rom_base_reg = PCI_ROM_ADDRESS; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 339 | /* Maybe do a default OF mapping here */ |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 340 | dev->irq = NO_IRQ; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | pci_parse_of_addrs(node, dev); |
| 344 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 345 | DBG(" adding to system ...\n"); |
| 346 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 347 | pci_device_add(dev, bus); |
| 348 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 349 | return dev; |
| 350 | } |
John Rose | ead8371 | 2005-11-04 15:30:56 -0600 | [diff] [blame] | 351 | EXPORT_SYMBOL(of_create_pci_dev); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 352 | |
John Rose | ead8371 | 2005-11-04 15:30:56 -0600 | [diff] [blame] | 353 | void __devinit of_scan_bus(struct device_node *node, |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 354 | struct pci_bus *bus) |
| 355 | { |
| 356 | struct device_node *child = NULL; |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 357 | const u32 *reg; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 358 | int reglen, devfn; |
| 359 | struct pci_dev *dev; |
| 360 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 361 | DBG("of_scan_bus(%s) bus no %d... \n", node->full_name, bus->number); |
| 362 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 363 | while ((child = of_get_next_child(node, child)) != NULL) { |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 364 | DBG(" * %s\n", child->full_name); |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 365 | reg = of_get_property(child, "reg", ®len); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 366 | if (reg == NULL || reglen < 20) |
| 367 | continue; |
| 368 | devfn = (reg[0] >> 8) & 0xff; |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 369 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 370 | /* create a new pci_dev for this device */ |
| 371 | dev = of_create_pci_dev(child, bus, devfn); |
| 372 | if (!dev) |
| 373 | continue; |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 374 | DBG("dev header type: %x\n", dev->hdr_type); |
| 375 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 376 | if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || |
| 377 | dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) |
| 378 | of_scan_pci_bridge(child, dev); |
| 379 | } |
| 380 | |
| 381 | do_bus_setup(bus); |
| 382 | } |
John Rose | ead8371 | 2005-11-04 15:30:56 -0600 | [diff] [blame] | 383 | EXPORT_SYMBOL(of_scan_bus); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 384 | |
John Rose | ead8371 | 2005-11-04 15:30:56 -0600 | [diff] [blame] | 385 | void __devinit of_scan_pci_bridge(struct device_node *node, |
| 386 | struct pci_dev *dev) |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 387 | { |
| 388 | struct pci_bus *bus; |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 389 | const u32 *busrange, *ranges; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 390 | int len, i, mode; |
| 391 | struct resource *res; |
| 392 | unsigned int flags; |
| 393 | u64 size; |
| 394 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 395 | DBG("of_scan_pci_bridge(%s)\n", node->full_name); |
| 396 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 397 | /* parse bus-range property */ |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 398 | busrange = of_get_property(node, "bus-range", &len); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 399 | if (busrange == NULL || len != 8) { |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 400 | printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n", |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 401 | node->full_name); |
| 402 | return; |
| 403 | } |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 404 | ranges = of_get_property(node, "ranges", &len); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 405 | if (ranges == NULL) { |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 406 | printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n", |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 407 | node->full_name); |
| 408 | return; |
| 409 | } |
| 410 | |
| 411 | bus = pci_add_new_bus(dev->bus, dev, busrange[0]); |
| 412 | if (!bus) { |
| 413 | printk(KERN_ERR "Failed to create pci bus for %s\n", |
| 414 | node->full_name); |
| 415 | return; |
| 416 | } |
| 417 | |
| 418 | bus->primary = dev->bus->number; |
| 419 | bus->subordinate = busrange[1]; |
| 420 | bus->bridge_ctl = 0; |
| 421 | bus->sysdata = node; |
| 422 | |
| 423 | /* parse ranges property */ |
| 424 | /* PCI #address-cells == 3 and #size-cells == 2 always */ |
| 425 | res = &dev->resource[PCI_BRIDGE_RESOURCES]; |
| 426 | for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) { |
| 427 | res->flags = 0; |
| 428 | bus->resource[i] = res; |
| 429 | ++res; |
| 430 | } |
| 431 | i = 1; |
| 432 | for (; len >= 32; len -= 32, ranges += 8) { |
| 433 | flags = pci_parse_of_flags(ranges[0]); |
Jon Loeliger | 327e22d | 2007-06-04 14:28:44 -0500 | [diff] [blame] | 434 | size = of_read_number(&ranges[6], 2); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 435 | if (flags == 0 || size == 0) |
| 436 | continue; |
| 437 | if (flags & IORESOURCE_IO) { |
| 438 | res = bus->resource[0]; |
| 439 | if (res->flags) { |
| 440 | printk(KERN_ERR "PCI: ignoring extra I/O range" |
| 441 | " for bridge %s\n", node->full_name); |
| 442 | continue; |
| 443 | } |
| 444 | } else { |
| 445 | if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) { |
| 446 | printk(KERN_ERR "PCI: too many memory ranges" |
| 447 | " for bridge %s\n", node->full_name); |
| 448 | continue; |
| 449 | } |
| 450 | res = bus->resource[i]; |
| 451 | ++i; |
| 452 | } |
Jon Loeliger | 327e22d | 2007-06-04 14:28:44 -0500 | [diff] [blame] | 453 | res->start = of_read_number(&ranges[1], 2); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 454 | res->end = res->start + size - 1; |
| 455 | res->flags = flags; |
| 456 | fixup_resource(res, dev); |
| 457 | } |
| 458 | sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus), |
| 459 | bus->number); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 460 | DBG(" bus name: %s\n", bus->name); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 461 | |
| 462 | mode = PCI_PROBE_NORMAL; |
| 463 | if (ppc_md.pci_probe_mode) |
| 464 | mode = ppc_md.pci_probe_mode(bus); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 465 | DBG(" probe mode: %d\n", mode); |
| 466 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 467 | if (mode == PCI_PROBE_DEVTREE) |
| 468 | of_scan_bus(node, bus); |
| 469 | else if (mode == PCI_PROBE_NORMAL) |
| 470 | pci_scan_child_bus(bus); |
| 471 | } |
John Rose | ead8371 | 2005-11-04 15:30:56 -0600 | [diff] [blame] | 472 | EXPORT_SYMBOL(of_scan_pci_bridge); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 473 | |
John Rose | ead8371 | 2005-11-04 15:30:56 -0600 | [diff] [blame] | 474 | void __devinit scan_phb(struct pci_controller *hose) |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 475 | { |
| 476 | struct pci_bus *bus; |
Stephen Rothwell | 44ef339 | 2007-12-10 14:33:21 +1100 | [diff] [blame] | 477 | struct device_node *node = hose->dn; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 478 | int i, mode; |
| 479 | struct resource *res; |
| 480 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 481 | DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>"); |
| 482 | |
Benjamin Herrenschmidt | 803d457 | 2006-11-11 17:25:07 +1100 | [diff] [blame] | 483 | bus = pci_create_bus(hose->parent, hose->first_busno, hose->ops, node); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 484 | if (bus == NULL) { |
| 485 | printk(KERN_ERR "Failed to create bus for PCI domain %04x\n", |
| 486 | hose->global_number); |
| 487 | return; |
| 488 | } |
| 489 | bus->secondary = hose->first_busno; |
| 490 | hose->bus = bus; |
| 491 | |
Stephen Rothwell | 9ccc4fd | 2007-12-07 02:03:23 +1100 | [diff] [blame] | 492 | pcibios_map_io_space(bus); |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 493 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 494 | bus->resource[0] = res = &hose->io_resource; |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 495 | if (res->flags && request_resource(&ioport_resource, res)) { |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 496 | printk(KERN_ERR "Failed to request PCI IO region " |
| 497 | "on PCI domain %04x\n", hose->global_number); |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 498 | DBG("res->start = 0x%016lx, res->end = 0x%016lx\n", |
| 499 | res->start, res->end); |
| 500 | } |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 501 | |
| 502 | for (i = 0; i < 3; ++i) { |
| 503 | res = &hose->mem_resources[i]; |
| 504 | bus->resource[i+1] = res; |
| 505 | if (res->flags && request_resource(&iomem_resource, res)) |
| 506 | printk(KERN_ERR "Failed to request PCI memory region " |
| 507 | "on PCI domain %04x\n", hose->global_number); |
| 508 | } |
| 509 | |
| 510 | mode = PCI_PROBE_NORMAL; |
s.hauer@pengutronix.de | 99a565b | 2006-11-02 13:56:06 +0100 | [diff] [blame] | 511 | |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 512 | if (node && ppc_md.pci_probe_mode) |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 513 | mode = ppc_md.pci_probe_mode(bus); |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 514 | DBG(" probe mode: %d\n", mode); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 515 | if (mode == PCI_PROBE_DEVTREE) { |
| 516 | bus->subordinate = hose->last_busno; |
| 517 | of_scan_bus(node, bus); |
| 518 | } |
s.hauer@pengutronix.de | 99a565b | 2006-11-02 13:56:06 +0100 | [diff] [blame] | 519 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 520 | if (mode == PCI_PROBE_NORMAL) |
| 521 | hose->last_busno = bus->subordinate = pci_scan_child_bus(bus); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 522 | } |
| 523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | static int __init pcibios_init(void) |
| 525 | { |
| 526 | struct pci_controller *hose, *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
| 528 | /* For now, override phys_mem_access_prot. If we need it, |
| 529 | * later, we may move that initialization to each ppc_md |
| 530 | */ |
| 531 | ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot; |
| 532 | |
Olof Johansson | e884e9c | 2006-04-12 15:26:59 -0500 | [diff] [blame] | 533 | printk(KERN_DEBUG "PCI: Probing PCI hardware\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | |
| 535 | /* Scan all of the recorded PCI controllers. */ |
John Rose | 92eb460 | 2006-03-14 17:46:45 -0600 | [diff] [blame] | 536 | list_for_each_entry_safe(hose, tmp, &hose_list, list_node) { |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 537 | scan_phb(hose); |
John Rose | 92eb460 | 2006-03-14 17:46:45 -0600 | [diff] [blame] | 538 | pci_bus_add_devices(hose->bus); |
| 539 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
Stephen Rothwell | 9ccc4fd | 2007-12-07 02:03:23 +1100 | [diff] [blame] | 541 | if (pci_probe_only) |
| 542 | pcibios_claim_of_setup(); |
| 543 | else |
| 544 | /* FIXME: `else' will be removed when |
| 545 | pci_assign_unassigned_resources() is able to work |
| 546 | correctly with [partially] allocated PCI tree. */ |
| 547 | pci_assign_unassigned_resources(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | |
| 549 | /* Call machine dependent final fixup */ |
| 550 | if (ppc_md.pcibios_fixup) |
| 551 | ppc_md.pcibios_fixup(); |
| 552 | |
Olof Johansson | e884e9c | 2006-04-12 15:26:59 -0500 | [diff] [blame] | 553 | printk(KERN_DEBUG "PCI: Probing PCI hardware done\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
| 555 | return 0; |
| 556 | } |
| 557 | |
| 558 | subsys_initcall(pcibios_init); |
| 559 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | int pcibios_enable_device(struct pci_dev *dev, int mask) |
| 561 | { |
| 562 | u16 cmd, oldcmd; |
| 563 | int i; |
| 564 | |
| 565 | pci_read_config_word(dev, PCI_COMMAND, &cmd); |
| 566 | oldcmd = cmd; |
| 567 | |
| 568 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { |
| 569 | struct resource *res = &dev->resource[i]; |
| 570 | |
| 571 | /* Only set up the requested stuff */ |
| 572 | if (!(mask & (1<<i))) |
| 573 | continue; |
| 574 | |
| 575 | if (res->flags & IORESOURCE_IO) |
| 576 | cmd |= PCI_COMMAND_IO; |
| 577 | if (res->flags & IORESOURCE_MEM) |
| 578 | cmd |= PCI_COMMAND_MEMORY; |
| 579 | } |
| 580 | |
| 581 | if (cmd != oldcmd) { |
| 582 | printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n", |
| 583 | pci_name(dev), cmd); |
| 584 | /* Enable the appropriate bits in the PCI command register. */ |
| 585 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
| 586 | } |
| 587 | return 0; |
| 588 | } |
| 589 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | /* Decide whether to display the domain number in /proc */ |
| 591 | int pci_proc_domain(struct pci_bus *bus) |
| 592 | { |
Stephen Rothwell | c96bede | 2007-12-11 11:03:48 +1100 | [diff] [blame] | 593 | struct pci_controller *hose = pci_bus_to_host(bus); |
| 594 | return hose->buid != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
| 596 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 598 | #ifdef CONFIG_HOTPLUG |
| 599 | |
| 600 | int pcibios_unmap_io_space(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | { |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 602 | struct pci_controller *hose; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 604 | WARN_ON(bus == NULL); |
Benjamin Herrenschmidt | de82120 | 2007-05-15 16:19:36 +1000 | [diff] [blame] | 605 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 606 | /* If this is not a PHB, we only flush the hash table over |
| 607 | * the area mapped by this bridge. We don't play with the PTE |
| 608 | * mappings since we might have to deal with sub-page alignemnts |
| 609 | * so flushing the hash table is the only sane way to make sure |
| 610 | * that no hash entries are covering that removed bridge area |
| 611 | * while still allowing other busses overlapping those pages |
Benjamin Herrenschmidt | de82120 | 2007-05-15 16:19:36 +1000 | [diff] [blame] | 612 | */ |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 613 | if (bus->self) { |
| 614 | struct resource *res = bus->resource[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 616 | DBG("IO unmapping for PCI-PCI bridge %s\n", |
| 617 | pci_name(bus->self)); |
| 618 | |
| 619 | __flush_hash_table_range(&init_mm, res->start + _IO_BASE, |
| 620 | res->end - res->start + 1); |
| 621 | return 0; |
| 622 | } |
| 623 | |
| 624 | /* Get the host bridge */ |
| 625 | hose = pci_bus_to_host(bus); |
| 626 | |
| 627 | /* Check if we have IOs allocated */ |
| 628 | if (hose->io_base_alloc == 0) |
| 629 | return 0; |
| 630 | |
Stephen Rothwell | 44ef339 | 2007-12-10 14:33:21 +1100 | [diff] [blame] | 631 | DBG("IO unmapping for PHB %s\n", hose->dn->full_name); |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 632 | DBG(" alloc=0x%p\n", hose->io_base_alloc); |
| 633 | |
| 634 | /* This is a PHB, we fully unmap the IO area */ |
| 635 | vunmap(hose->io_base_alloc); |
| 636 | |
| 637 | return 0; |
| 638 | } |
| 639 | EXPORT_SYMBOL_GPL(pcibios_unmap_io_space); |
| 640 | |
| 641 | #endif /* CONFIG_HOTPLUG */ |
| 642 | |
| 643 | int __devinit pcibios_map_io_space(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | { |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 645 | struct vm_struct *area; |
| 646 | unsigned long phys_page; |
| 647 | unsigned long size_page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | unsigned long io_virt_offset; |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 649 | struct pci_controller *hose; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 651 | WARN_ON(bus == NULL); |
Benjamin Herrenschmidt | de82120 | 2007-05-15 16:19:36 +1000 | [diff] [blame] | 652 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 653 | /* If this not a PHB, nothing to do, page tables still exist and |
| 654 | * thus HPTEs will be faulted in when needed |
| 655 | */ |
| 656 | if (bus->self) { |
| 657 | DBG("IO mapping for PCI-PCI bridge %s\n", |
| 658 | pci_name(bus->self)); |
| 659 | DBG(" virt=0x%016lx...0x%016lx\n", |
| 660 | bus->resource[0]->start + _IO_BASE, |
| 661 | bus->resource[0]->end + _IO_BASE); |
| 662 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | } |
| 664 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 665 | /* Get the host bridge */ |
| 666 | hose = pci_bus_to_host(bus); |
| 667 | phys_page = _ALIGN_DOWN(hose->io_base_phys, PAGE_SIZE); |
| 668 | size_page = _ALIGN_UP(hose->pci_io_size, PAGE_SIZE); |
| 669 | |
| 670 | /* Make sure IO area address is clear */ |
| 671 | hose->io_base_alloc = NULL; |
| 672 | |
| 673 | /* If there's no IO to map on that bus, get away too */ |
| 674 | if (hose->pci_io_size == 0 || hose->io_base_phys == 0) |
| 675 | return 0; |
| 676 | |
| 677 | /* Let's allocate some IO space for that guy. We don't pass |
| 678 | * VM_IOREMAP because we don't care about alignment tricks that |
| 679 | * the core does in that case. Maybe we should due to stupid card |
| 680 | * with incomplete address decoding but I'd rather not deal with |
| 681 | * those outside of the reserved 64K legacy region. |
| 682 | */ |
| 683 | area = __get_vm_area(size_page, 0, PHB_IO_BASE, PHB_IO_END); |
| 684 | if (area == NULL) |
| 685 | return -ENOMEM; |
| 686 | hose->io_base_alloc = area->addr; |
| 687 | hose->io_base_virt = (void __iomem *)(area->addr + |
| 688 | hose->io_base_phys - phys_page); |
| 689 | |
Stephen Rothwell | 44ef339 | 2007-12-10 14:33:21 +1100 | [diff] [blame] | 690 | DBG("IO mapping for PHB %s\n", hose->dn->full_name); |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 691 | DBG(" phys=0x%016lx, virt=0x%p (alloc=0x%p)\n", |
| 692 | hose->io_base_phys, hose->io_base_virt, hose->io_base_alloc); |
| 693 | DBG(" size=0x%016lx (alloc=0x%016lx)\n", |
| 694 | hose->pci_io_size, size_page); |
| 695 | |
| 696 | /* Establish the mapping */ |
| 697 | if (__ioremap_at(phys_page, area->addr, size_page, |
| 698 | _PAGE_NO_CACHE | _PAGE_GUARDED) == NULL) |
| 699 | return -ENOMEM; |
| 700 | |
| 701 | /* Fixup hose IO resource */ |
| 702 | io_virt_offset = (unsigned long)hose->io_base_virt - _IO_BASE; |
| 703 | hose->io_resource.start += io_virt_offset; |
| 704 | hose->io_resource.end += io_virt_offset; |
| 705 | |
| 706 | DBG(" hose->io_resource=0x%016lx...0x%016lx\n", |
| 707 | hose->io_resource.start, hose->io_resource.end); |
| 708 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | return 0; |
| 710 | } |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 711 | EXPORT_SYMBOL_GPL(pcibios_map_io_space); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 713 | static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev) |
| 714 | { |
| 715 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
Anton Blanchard | c256f4b | 2006-04-07 15:23:03 +1000 | [diff] [blame] | 716 | unsigned long offset; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 717 | |
| 718 | if (res->flags & IORESOURCE_IO) { |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 719 | offset = (unsigned long)hose->io_base_virt - _IO_BASE; |
Anton Blanchard | c256f4b | 2006-04-07 15:23:03 +1000 | [diff] [blame] | 720 | res->start += offset; |
| 721 | res->end += offset; |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 722 | } else if (res->flags & IORESOURCE_MEM) { |
| 723 | res->start += hose->pci_mem_offset; |
| 724 | res->end += hose->pci_mem_offset; |
| 725 | } |
| 726 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
| 728 | void __devinit pcibios_fixup_device_resources(struct pci_dev *dev, |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 729 | struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | { |
| 731 | /* Update device resources. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | int i; |
| 733 | |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 734 | DBG("%s: Fixup resources:\n", pci_name(dev)); |
| 735 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { |
| 736 | struct resource *res = &dev->resource[i]; |
| 737 | if (!res->flags) |
| 738 | continue; |
| 739 | |
| 740 | DBG(" 0x%02x < %08lx:0x%016lx...0x%016lx\n", |
| 741 | i, res->flags, res->start, res->end); |
| 742 | |
| 743 | fixup_resource(res, dev); |
| 744 | |
| 745 | DBG(" > %08lx:0x%016lx...0x%016lx\n", |
| 746 | res->flags, res->start, res->end); |
| 747 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | } |
| 749 | EXPORT_SYMBOL(pcibios_fixup_device_resources); |
| 750 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 751 | void __devinit pcibios_setup_new_device(struct pci_dev *dev) |
| 752 | { |
| 753 | struct dev_archdata *sd = &dev->dev.archdata; |
| 754 | |
| 755 | sd->of_node = pci_device_to_OF_node(dev); |
| 756 | |
| 757 | DBG("PCI device %s OF node: %s\n", pci_name(dev), |
| 758 | sd->of_node ? sd->of_node->full_name : "<none>"); |
| 759 | |
| 760 | sd->dma_ops = pci_dma_ops; |
| 761 | #ifdef CONFIG_NUMA |
| 762 | sd->numa_node = pcibus_to_node(dev->bus); |
| 763 | #else |
| 764 | sd->numa_node = -1; |
| 765 | #endif |
| 766 | if (ppc_md.pci_dma_dev_setup) |
| 767 | ppc_md.pci_dma_dev_setup(dev); |
| 768 | } |
| 769 | EXPORT_SYMBOL(pcibios_setup_new_device); |
Benjamin Herrenschmidt | 463ce0e | 2005-11-23 17:56:06 +1100 | [diff] [blame] | 770 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 771 | static void __devinit do_bus_setup(struct pci_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | { |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 773 | struct pci_dev *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 775 | if (ppc_md.pci_dma_bus_setup) |
| 776 | ppc_md.pci_dma_bus_setup(bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | |
| 778 | list_for_each_entry(dev, &bus->devices, bus_list) |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 779 | pcibios_setup_new_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | |
Benjamin Herrenschmidt | f90bb15 | 2006-11-11 17:24:51 +1100 | [diff] [blame] | 781 | /* Read default IRQs and fixup if necessary */ |
| 782 | list_for_each_entry(dev, &bus->devices, bus_list) { |
| 783 | pci_read_irq_line(dev); |
| 784 | if (ppc_md.pci_irq_fixup) |
| 785 | ppc_md.pci_irq_fixup(dev); |
| 786 | } |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | void __devinit pcibios_fixup_bus(struct pci_bus *bus) |
| 790 | { |
| 791 | struct pci_dev *dev = bus->self; |
Benjamin Herrenschmidt | 4c9d280 | 2006-11-11 17:25:08 +1100 | [diff] [blame] | 792 | struct device_node *np; |
| 793 | |
| 794 | np = pci_bus_to_OF_node(bus); |
| 795 | |
| 796 | DBG("pcibios_fixup_bus(%s)\n", np ? np->full_name : "<???>"); |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 797 | |
| 798 | if (dev && pci_probe_only && |
| 799 | (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) { |
| 800 | /* This is a subordinate bridge */ |
| 801 | |
| 802 | pci_read_bridge_bases(bus); |
| 803 | pcibios_fixup_device_resources(dev, bus); |
| 804 | } |
| 805 | |
| 806 | do_bus_setup(bus); |
John Rose | dad32bb | 2005-06-23 17:09:54 +1000 | [diff] [blame] | 807 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | if (!pci_probe_only) |
| 809 | return; |
| 810 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 811 | list_for_each_entry(dev, &bus->devices, bus_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI) |
| 813 | pcibios_fixup_device_resources(dev, bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | } |
| 815 | EXPORT_SYMBOL(pcibios_fixup_bus); |
| 816 | |
Benjamin Herrenschmidt | f2c4583 | 2005-12-15 15:00:57 +1100 | [diff] [blame] | 817 | unsigned long pci_address_to_pio(phys_addr_t address) |
Stephen Rothwell | d4e4b35 | 2005-12-07 13:01:05 +1100 | [diff] [blame] | 818 | { |
| 819 | struct pci_controller *hose, *tmp; |
| 820 | |
| 821 | list_for_each_entry_safe(hose, tmp, &hose_list, list_node) { |
| 822 | if (address >= hose->io_base_phys && |
Benjamin Herrenschmidt | f2c4583 | 2005-12-15 15:00:57 +1100 | [diff] [blame] | 823 | address < (hose->io_base_phys + hose->pci_io_size)) { |
| 824 | unsigned long base = |
Benjamin Herrenschmidt | 3d5134e | 2007-06-04 15:15:36 +1000 | [diff] [blame] | 825 | (unsigned long)hose->io_base_virt - _IO_BASE; |
Benjamin Herrenschmidt | f2c4583 | 2005-12-15 15:00:57 +1100 | [diff] [blame] | 826 | return base + (address - hose->io_base_phys); |
| 827 | } |
Stephen Rothwell | d4e4b35 | 2005-12-07 13:01:05 +1100 | [diff] [blame] | 828 | } |
| 829 | return (unsigned int)-1; |
| 830 | } |
| 831 | EXPORT_SYMBOL_GPL(pci_address_to_pio); |
| 832 | |
Paul Mackerras | b2ad7b5 | 2005-09-09 23:02:36 +1000 | [diff] [blame] | 833 | |
| 834 | #define IOBASE_BRIDGE_NUMBER 0 |
| 835 | #define IOBASE_MEMORY 1 |
| 836 | #define IOBASE_IO 2 |
| 837 | #define IOBASE_ISA_IO 3 |
| 838 | #define IOBASE_ISA_MEM 4 |
| 839 | |
| 840 | long sys_pciconfig_iobase(long which, unsigned long in_bus, |
| 841 | unsigned long in_devfn) |
| 842 | { |
| 843 | struct pci_controller* hose; |
| 844 | struct list_head *ln; |
| 845 | struct pci_bus *bus = NULL; |
| 846 | struct device_node *hose_node; |
| 847 | |
| 848 | /* Argh ! Please forgive me for that hack, but that's the |
| 849 | * simplest way to get existing XFree to not lockup on some |
| 850 | * G5 machines... So when something asks for bus 0 io base |
| 851 | * (bus 0 is HT root), we return the AGP one instead. |
| 852 | */ |
Paul Mackerras | 799d604 | 2005-11-10 13:37:51 +1100 | [diff] [blame] | 853 | if (machine_is_compatible("MacRISC4")) |
Paul Mackerras | b2ad7b5 | 2005-09-09 23:02:36 +1000 | [diff] [blame] | 854 | if (in_bus == 0) |
| 855 | in_bus = 0xf0; |
Paul Mackerras | b2ad7b5 | 2005-09-09 23:02:36 +1000 | [diff] [blame] | 856 | |
| 857 | /* That syscall isn't quite compatible with PCI domains, but it's |
| 858 | * used on pre-domains setup. We return the first match |
| 859 | */ |
| 860 | |
| 861 | for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) { |
| 862 | bus = pci_bus_b(ln); |
Benjamin Herrenschmidt | 545da94 | 2007-01-28 07:45:53 +1100 | [diff] [blame] | 863 | if (in_bus >= bus->number && in_bus <= bus->subordinate) |
Paul Mackerras | b2ad7b5 | 2005-09-09 23:02:36 +1000 | [diff] [blame] | 864 | break; |
| 865 | bus = NULL; |
| 866 | } |
| 867 | if (bus == NULL || bus->sysdata == NULL) |
| 868 | return -ENODEV; |
| 869 | |
| 870 | hose_node = (struct device_node *)bus->sysdata; |
| 871 | hose = PCI_DN(hose_node)->phb; |
| 872 | |
| 873 | switch (which) { |
| 874 | case IOBASE_BRIDGE_NUMBER: |
| 875 | return (long)hose->first_busno; |
| 876 | case IOBASE_MEMORY: |
| 877 | return (long)hose->pci_mem_offset; |
| 878 | case IOBASE_IO: |
| 879 | return (long)hose->io_base_phys; |
| 880 | case IOBASE_ISA_IO: |
| 881 | return (long)isa_io_base; |
| 882 | case IOBASE_ISA_MEM: |
| 883 | return -EINVAL; |
| 884 | } |
| 885 | |
| 886 | return -EOPNOTSUPP; |
| 887 | } |
Anton Blanchard | 357518f | 2006-06-10 20:53:06 +1000 | [diff] [blame] | 888 | |
| 889 | #ifdef CONFIG_NUMA |
| 890 | int pcibus_to_node(struct pci_bus *bus) |
| 891 | { |
| 892 | struct pci_controller *phb = pci_bus_to_host(bus); |
| 893 | return phb->node; |
| 894 | } |
| 895 | EXPORT_SYMBOL(pcibus_to_node); |
| 896 | #endif |