]> err.no Git - linux-2.6/blob - arch/powerpc/kernel/pci_64.c
[POWERPC] Move common PCI code out of pci_32/pci_64
[linux-2.6] / arch / powerpc / kernel / pci_64.c
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
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>
23 #include <linux/syscalls.h>
24 #include <linux/irq.h>
25 #include <linux/vmalloc.h>
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>
32 #include <asm/machdep.h>
33 #include <asm/ppc-pci.h>
34 #include <asm/firmware.h>
35
36 #ifdef DEBUG
37 #include <asm/udbg.h>
38 #define DBG(fmt...) printk(fmt)
39 #else
40 #define DBG(fmt...)
41 #endif
42
43 unsigned long pci_probe_only = 1;
44 int pci_assign_all_buses = 0;
45
46 static void fixup_resource(struct resource *res, struct pci_dev *dev);
47 static void do_bus_setup(struct pci_bus *bus);
48
49 /* pci_io_base -- the base address from which io bars are offsets.
50  * This is the lowest I/O base address (so bar values are always positive),
51  * and it *must* be the start of ISA space if an ISA bus exists because
52  * ISA drivers use hard coded offsets.  If no ISA bus exists nothing
53  * is mapped on the first 64K of IO space
54  */
55 unsigned long pci_io_base = ISA_IO_BASE;
56 EXPORT_SYMBOL(pci_io_base);
57
58 LIST_HEAD(hose_list);
59
60 static struct dma_mapping_ops *pci_dma_ops;
61
62 /* XXX kill that some day ... */
63 int global_phb_number;          /* Global phb counter */
64
65 void set_pci_dma_ops(struct dma_mapping_ops *dma_ops)
66 {
67         pci_dma_ops = dma_ops;
68 }
69
70 struct dma_mapping_ops *get_pci_dma_ops(void)
71 {
72         return pci_dma_ops;
73 }
74 EXPORT_SYMBOL(get_pci_dma_ops);
75
76 static void fixup_broken_pcnet32(struct pci_dev* dev)
77 {
78         if ((dev->class>>8 == PCI_CLASS_NETWORK_ETHERNET)) {
79                 dev->vendor = PCI_VENDOR_ID_AMD;
80                 pci_write_config_word(dev, PCI_VENDOR_ID, PCI_VENDOR_ID_AMD);
81         }
82 }
83 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT, PCI_ANY_ID, fixup_broken_pcnet32);
84
85 void  pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
86                               struct resource *res)
87 {
88         unsigned long offset = 0;
89         struct pci_controller *hose = pci_bus_to_host(dev->bus);
90
91         if (!hose)
92                 return;
93
94         if (res->flags & IORESOURCE_IO)
95                 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
96
97         if (res->flags & IORESOURCE_MEM)
98                 offset = hose->pci_mem_offset;
99
100         region->start = res->start - offset;
101         region->end = res->end - offset;
102 }
103
104 void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
105                               struct pci_bus_region *region)
106 {
107         unsigned long offset = 0;
108         struct pci_controller *hose = pci_bus_to_host(dev->bus);
109
110         if (!hose)
111                 return;
112
113         if (res->flags & IORESOURCE_IO)
114                 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
115
116         if (res->flags & IORESOURCE_MEM)
117                 offset = hose->pci_mem_offset;
118
119         res->start = region->start + offset;
120         res->end = region->end + offset;
121 }
122
123 #ifdef CONFIG_HOTPLUG
124 EXPORT_SYMBOL(pcibios_resource_to_bus);
125 EXPORT_SYMBOL(pcibios_bus_to_resource);
126 #endif
127
128 /*
129  * We need to avoid collisions with `mirrored' VGA ports
130  * and other strange ISA hardware, so we always want the
131  * addresses to be allocated in the 0x000-0x0ff region
132  * modulo 0x400.
133  *
134  * Why? Because some silly external IO cards only decode
135  * the low 10 bits of the IO address. The 0x00-0xff region
136  * is reserved for motherboard devices that decode all 16
137  * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
138  * but we want to try to avoid allocating at 0x2900-0x2bff
139  * which might have be mirrored at 0x0100-0x03ff..
140  */
141 void pcibios_align_resource(void *data, struct resource *res,
142                             resource_size_t size, resource_size_t align)
143 {
144         struct pci_dev *dev = data;
145         struct pci_controller *hose = pci_bus_to_host(dev->bus);
146         resource_size_t start = res->start;
147         unsigned long alignto;
148
149         if (res->flags & IORESOURCE_IO) {
150                 unsigned long offset = (unsigned long)hose->io_base_virt -
151                                         _IO_BASE;
152                 /* Make sure we start at our min on all hoses */
153                 if (start - offset < PCIBIOS_MIN_IO)
154                         start = PCIBIOS_MIN_IO + offset;
155
156                 /*
157                  * Put everything into 0x00-0xff region modulo 0x400
158                  */
159                 if (start & 0x300)
160                         start = (start + 0x3ff) & ~0x3ff;
161
162         } else if (res->flags & IORESOURCE_MEM) {
163                 /* Make sure we start at our min on all hoses */
164                 if (start - hose->pci_mem_offset < PCIBIOS_MIN_MEM)
165                         start = PCIBIOS_MIN_MEM + hose->pci_mem_offset;
166
167                 /* Align to multiple of size of minimum base.  */
168                 alignto = max(0x1000UL, align);
169                 start = ALIGN(start, alignto);
170         }
171
172         res->start = start;
173 }
174
175 static DEFINE_SPINLOCK(hose_spinlock);
176
177 /*
178  * pci_controller(phb) initialized common variables.
179  */
180 static void __devinit pci_setup_pci_controller(struct pci_controller *hose)
181 {
182         memset(hose, 0, sizeof(struct pci_controller));
183
184         spin_lock(&hose_spinlock);
185         hose->global_number = global_phb_number++;
186         list_add_tail(&hose->list_node, &hose_list);
187         spin_unlock(&hose_spinlock);
188 }
189
190 struct pci_controller * pcibios_alloc_controller(struct device_node *dev)
191 {
192         struct pci_controller *phb;
193
194         if (mem_init_done)
195                 phb = kmalloc(sizeof(struct pci_controller), GFP_KERNEL);
196         else
197                 phb = alloc_bootmem(sizeof (struct pci_controller));
198         if (phb == NULL)
199                 return NULL;
200         pci_setup_pci_controller(phb);
201         phb->arch_data = dev;
202         phb->is_dynamic = mem_init_done;
203         if (dev) {
204                 int nid = of_node_to_nid(dev);
205
206                 if (nid < 0 || !node_online(nid))
207                         nid = -1;
208
209                 PHB_SET_NODE(phb, nid);
210         }
211         return phb;
212 }
213
214 void pcibios_free_controller(struct pci_controller *phb)
215 {
216         spin_lock(&hose_spinlock);
217         list_del(&phb->list_node);
218         spin_unlock(&hose_spinlock);
219
220         if (phb->is_dynamic)
221                 kfree(phb);
222 }
223
224 void __devinit pcibios_claim_one_bus(struct pci_bus *b)
225 {
226         struct pci_dev *dev;
227         struct pci_bus *child_bus;
228
229         list_for_each_entry(dev, &b->devices, bus_list) {
230                 int i;
231
232                 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
233                         struct resource *r = &dev->resource[i];
234
235                         if (r->parent || !r->start || !r->flags)
236                                 continue;
237                         pci_claim_resource(dev, i);
238                 }
239         }
240
241         list_for_each_entry(child_bus, &b->children, node)
242                 pcibios_claim_one_bus(child_bus);
243 }
244 #ifdef CONFIG_HOTPLUG
245 EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
246 #endif
247
248 static void __init pcibios_claim_of_setup(void)
249 {
250         struct pci_bus *b;
251
252         if (firmware_has_feature(FW_FEATURE_ISERIES))
253                 return;
254
255         list_for_each_entry(b, &pci_root_buses, node)
256                 pcibios_claim_one_bus(b);
257 }
258
259 static u32 get_int_prop(struct device_node *np, const char *name, u32 def)
260 {
261         const u32 *prop;
262         int len;
263
264         prop = of_get_property(np, name, &len);
265         if (prop && len >= 4)
266                 return *prop;
267         return def;
268 }
269
270 static unsigned int pci_parse_of_flags(u32 addr0)
271 {
272         unsigned int flags = 0;
273
274         if (addr0 & 0x02000000) {
275                 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
276                 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
277                 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
278                 if (addr0 & 0x40000000)
279                         flags |= IORESOURCE_PREFETCH
280                                  | PCI_BASE_ADDRESS_MEM_PREFETCH;
281         } else if (addr0 & 0x01000000)
282                 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
283         return flags;
284 }
285
286 #define GET_64BIT(prop, i)      ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
287
288 static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev)
289 {
290         u64 base, size;
291         unsigned int flags;
292         struct resource *res;
293         const u32 *addrs;
294         u32 i;
295         int proplen;
296
297         addrs = of_get_property(node, "assigned-addresses", &proplen);
298         if (!addrs)
299                 return;
300         DBG("    parse addresses (%d bytes) @ %p\n", proplen, addrs);
301         for (; proplen >= 20; proplen -= 20, addrs += 5) {
302                 flags = pci_parse_of_flags(addrs[0]);
303                 if (!flags)
304                         continue;
305                 base = GET_64BIT(addrs, 1);
306                 size = GET_64BIT(addrs, 3);
307                 if (!size)
308                         continue;
309                 i = addrs[0] & 0xff;
310                 DBG("  base: %llx, size: %llx, i: %x\n",
311                     (unsigned long long)base, (unsigned long long)size, i);
312
313                 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
314                         res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
315                 } else if (i == dev->rom_base_reg) {
316                         res = &dev->resource[PCI_ROM_RESOURCE];
317                         flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
318                 } else {
319                         printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
320                         continue;
321                 }
322                 res->start = base;
323                 res->end = base + size - 1;
324                 res->flags = flags;
325                 res->name = pci_name(dev);
326                 fixup_resource(res, dev);
327         }
328 }
329
330 struct pci_dev *of_create_pci_dev(struct device_node *node,
331                                  struct pci_bus *bus, int devfn)
332 {
333         struct pci_dev *dev;
334         const char *type;
335
336         dev = alloc_pci_dev();
337         if (!dev)
338                 return NULL;
339         type = of_get_property(node, "device_type", NULL);
340         if (type == NULL)
341                 type = "";
342
343         DBG("    create device, devfn: %x, type: %s\n", devfn, type);
344
345         dev->bus = bus;
346         dev->sysdata = node;
347         dev->dev.parent = bus->bridge;
348         dev->dev.bus = &pci_bus_type;
349         dev->devfn = devfn;
350         dev->multifunction = 0;         /* maybe a lie? */
351
352         dev->vendor = get_int_prop(node, "vendor-id", 0xffff);
353         dev->device = get_int_prop(node, "device-id", 0xffff);
354         dev->subsystem_vendor = get_int_prop(node, "subsystem-vendor-id", 0);
355         dev->subsystem_device = get_int_prop(node, "subsystem-id", 0);
356
357         dev->cfg_size = pci_cfg_space_size(dev);
358
359         sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
360                 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
361         dev->class = get_int_prop(node, "class-code", 0);
362
363         DBG("    class: 0x%x\n", dev->class);
364
365         dev->current_state = 4;         /* unknown power state */
366         dev->error_state = pci_channel_io_normal;
367
368         if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
369                 /* a PCI-PCI bridge */
370                 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
371                 dev->rom_base_reg = PCI_ROM_ADDRESS1;
372         } else if (!strcmp(type, "cardbus")) {
373                 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
374         } else {
375                 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
376                 dev->rom_base_reg = PCI_ROM_ADDRESS;
377                 /* Maybe do a default OF mapping here */
378                 dev->irq = NO_IRQ;
379         }
380
381         pci_parse_of_addrs(node, dev);
382
383         DBG("    adding to system ...\n");
384
385         pci_device_add(dev, bus);
386
387         return dev;
388 }
389 EXPORT_SYMBOL(of_create_pci_dev);
390
391 void __devinit of_scan_bus(struct device_node *node,
392                                   struct pci_bus *bus)
393 {
394         struct device_node *child = NULL;
395         const u32 *reg;
396         int reglen, devfn;
397         struct pci_dev *dev;
398
399         DBG("of_scan_bus(%s) bus no %d... \n", node->full_name, bus->number);
400
401         while ((child = of_get_next_child(node, child)) != NULL) {
402                 DBG("  * %s\n", child->full_name);
403                 reg = of_get_property(child, "reg", &reglen);
404                 if (reg == NULL || reglen < 20)
405                         continue;
406                 devfn = (reg[0] >> 8) & 0xff;
407
408                 /* create a new pci_dev for this device */
409                 dev = of_create_pci_dev(child, bus, devfn);
410                 if (!dev)
411                         continue;
412                 DBG("dev header type: %x\n", dev->hdr_type);
413
414                 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
415                     dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
416                         of_scan_pci_bridge(child, dev);
417         }
418
419         do_bus_setup(bus);
420 }
421 EXPORT_SYMBOL(of_scan_bus);
422
423 void __devinit of_scan_pci_bridge(struct device_node *node,
424                                 struct pci_dev *dev)
425 {
426         struct pci_bus *bus;
427         const u32 *busrange, *ranges;
428         int len, i, mode;
429         struct resource *res;
430         unsigned int flags;
431         u64 size;
432
433         DBG("of_scan_pci_bridge(%s)\n", node->full_name);
434
435         /* parse bus-range property */
436         busrange = of_get_property(node, "bus-range", &len);
437         if (busrange == NULL || len != 8) {
438                 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
439                        node->full_name);
440                 return;
441         }
442         ranges = of_get_property(node, "ranges", &len);
443         if (ranges == NULL) {
444                 printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n",
445                        node->full_name);
446                 return;
447         }
448
449         bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
450         if (!bus) {
451                 printk(KERN_ERR "Failed to create pci bus for %s\n",
452                        node->full_name);
453                 return;
454         }
455
456         bus->primary = dev->bus->number;
457         bus->subordinate = busrange[1];
458         bus->bridge_ctl = 0;
459         bus->sysdata = node;
460
461         /* parse ranges property */
462         /* PCI #address-cells == 3 and #size-cells == 2 always */
463         res = &dev->resource[PCI_BRIDGE_RESOURCES];
464         for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
465                 res->flags = 0;
466                 bus->resource[i] = res;
467                 ++res;
468         }
469         i = 1;
470         for (; len >= 32; len -= 32, ranges += 8) {
471                 flags = pci_parse_of_flags(ranges[0]);
472                 size = GET_64BIT(ranges, 6);
473                 if (flags == 0 || size == 0)
474                         continue;
475                 if (flags & IORESOURCE_IO) {
476                         res = bus->resource[0];
477                         if (res->flags) {
478                                 printk(KERN_ERR "PCI: ignoring extra I/O range"
479                                        " for bridge %s\n", node->full_name);
480                                 continue;
481                         }
482                 } else {
483                         if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
484                                 printk(KERN_ERR "PCI: too many memory ranges"
485                                        " for bridge %s\n", node->full_name);
486                                 continue;
487                         }
488                         res = bus->resource[i];
489                         ++i;
490                 }
491                 res->start = GET_64BIT(ranges, 1);
492                 res->end = res->start + size - 1;
493                 res->flags = flags;
494                 fixup_resource(res, dev);
495         }
496         sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
497                 bus->number);
498         DBG("    bus name: %s\n", bus->name);
499
500         mode = PCI_PROBE_NORMAL;
501         if (ppc_md.pci_probe_mode)
502                 mode = ppc_md.pci_probe_mode(bus);
503         DBG("    probe mode: %d\n", mode);
504
505         if (mode == PCI_PROBE_DEVTREE)
506                 of_scan_bus(node, bus);
507         else if (mode == PCI_PROBE_NORMAL)
508                 pci_scan_child_bus(bus);
509 }
510 EXPORT_SYMBOL(of_scan_pci_bridge);
511
512 void __devinit scan_phb(struct pci_controller *hose)
513 {
514         struct pci_bus *bus;
515         struct device_node *node = hose->arch_data;
516         int i, mode;
517         struct resource *res;
518
519         DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>");
520
521         bus = pci_create_bus(hose->parent, hose->first_busno, hose->ops, node);
522         if (bus == NULL) {
523                 printk(KERN_ERR "Failed to create bus for PCI domain %04x\n",
524                        hose->global_number);
525                 return;
526         }
527         bus->secondary = hose->first_busno;
528         hose->bus = bus;
529
530         if (!firmware_has_feature(FW_FEATURE_ISERIES))
531                 pcibios_map_io_space(bus);
532
533         bus->resource[0] = res = &hose->io_resource;
534         if (res->flags && request_resource(&ioport_resource, res)) {
535                 printk(KERN_ERR "Failed to request PCI IO region "
536                        "on PCI domain %04x\n", hose->global_number);
537                 DBG("res->start = 0x%016lx, res->end = 0x%016lx\n",
538                     res->start, res->end);
539         }
540
541         for (i = 0; i < 3; ++i) {
542                 res = &hose->mem_resources[i];
543                 bus->resource[i+1] = res;
544                 if (res->flags && request_resource(&iomem_resource, res))
545                         printk(KERN_ERR "Failed to request PCI memory region "
546                                "on PCI domain %04x\n", hose->global_number);
547         }
548
549         mode = PCI_PROBE_NORMAL;
550
551         if (node && ppc_md.pci_probe_mode)
552                 mode = ppc_md.pci_probe_mode(bus);
553         DBG("    probe mode: %d\n", mode);
554         if (mode == PCI_PROBE_DEVTREE) {
555                 bus->subordinate = hose->last_busno;
556                 of_scan_bus(node, bus);
557         }
558
559         if (mode == PCI_PROBE_NORMAL)
560                 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
561 }
562
563 static int __init pcibios_init(void)
564 {
565         struct pci_controller *hose, *tmp;
566
567         /* For now, override phys_mem_access_prot. If we need it,
568          * later, we may move that initialization to each ppc_md
569          */
570         ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot;
571
572         if (firmware_has_feature(FW_FEATURE_ISERIES))
573                 iSeries_pcibios_init();
574
575         printk(KERN_DEBUG "PCI: Probing PCI hardware\n");
576
577         /* Scan all of the recorded PCI controllers.  */
578         list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
579                 scan_phb(hose);
580                 pci_bus_add_devices(hose->bus);
581         }
582
583         if (!firmware_has_feature(FW_FEATURE_ISERIES)) {
584                 if (pci_probe_only)
585                         pcibios_claim_of_setup();
586                 else
587                         /* FIXME: `else' will be removed when
588                            pci_assign_unassigned_resources() is able to work
589                            correctly with [partially] allocated PCI tree. */
590                         pci_assign_unassigned_resources();
591         }
592
593         /* Call machine dependent final fixup */
594         if (ppc_md.pcibios_fixup)
595                 ppc_md.pcibios_fixup();
596
597         printk(KERN_DEBUG "PCI: Probing PCI hardware done\n");
598
599         return 0;
600 }
601
602 subsys_initcall(pcibios_init);
603
604 int pcibios_enable_device(struct pci_dev *dev, int mask)
605 {
606         u16 cmd, oldcmd;
607         int i;
608
609         pci_read_config_word(dev, PCI_COMMAND, &cmd);
610         oldcmd = cmd;
611
612         for (i = 0; i < PCI_NUM_RESOURCES; i++) {
613                 struct resource *res = &dev->resource[i];
614
615                 /* Only set up the requested stuff */
616                 if (!(mask & (1<<i)))
617                         continue;
618
619                 if (res->flags & IORESOURCE_IO)
620                         cmd |= PCI_COMMAND_IO;
621                 if (res->flags & IORESOURCE_MEM)
622                         cmd |= PCI_COMMAND_MEMORY;
623         }
624
625         if (cmd != oldcmd) {
626                 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
627                        pci_name(dev), cmd);
628                 /* Enable the appropriate bits in the PCI command register.  */
629                 pci_write_config_word(dev, PCI_COMMAND, cmd);
630         }
631         return 0;
632 }
633
634 /* Decide whether to display the domain number in /proc */
635 int pci_proc_domain(struct pci_bus *bus)
636 {
637         if (firmware_has_feature(FW_FEATURE_ISERIES))
638                 return 0;
639         else {
640                 struct pci_controller *hose = pci_bus_to_host(bus);
641                 return hose->buid;
642         }
643 }
644
645 void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
646                                             struct device_node *dev, int prim)
647 {
648         const unsigned int *ranges;
649         unsigned int pci_space;
650         unsigned long size;
651         int rlen = 0;
652         int memno = 0;
653         struct resource *res;
654         int np, na = of_n_addr_cells(dev);
655         unsigned long pci_addr, cpu_phys_addr;
656
657         np = na + 5;
658
659         /* From "PCI Binding to 1275"
660          * The ranges property is laid out as an array of elements,
661          * each of which comprises:
662          *   cells 0 - 2:       a PCI address
663          *   cells 3 or 3+4:    a CPU physical address
664          *                      (size depending on dev->n_addr_cells)
665          *   cells 4+5 or 5+6:  the size of the range
666          */
667         ranges = of_get_property(dev, "ranges", &rlen);
668         if (ranges == NULL)
669                 return;
670         hose->io_base_phys = 0;
671         while ((rlen -= np * sizeof(unsigned int)) >= 0) {
672                 res = NULL;
673                 pci_space = ranges[0];
674                 pci_addr = ((unsigned long)ranges[1] << 32) | ranges[2];
675                 cpu_phys_addr = of_translate_address(dev, &ranges[3]);
676                 size = ((unsigned long)ranges[na+3] << 32) | ranges[na+4];
677                 ranges += np;
678                 if (size == 0)
679                         continue;
680
681                 /* Now consume following elements while they are contiguous */
682                 while (rlen >= np * sizeof(unsigned int)) {
683                         unsigned long addr, phys;
684
685                         if (ranges[0] != pci_space)
686                                 break;
687                         addr = ((unsigned long)ranges[1] << 32) | ranges[2];
688                         phys = ranges[3];
689                         if (na >= 2)
690                                 phys = (phys << 32) | ranges[4];
691                         if (addr != pci_addr + size ||
692                             phys != cpu_phys_addr + size)
693                                 break;
694
695                         size += ((unsigned long)ranges[na+3] << 32)
696                                 | ranges[na+4];
697                         ranges += np;
698                         rlen -= np * sizeof(unsigned int);
699                 }
700
701                 switch ((pci_space >> 24) & 0x3) {
702                 case 1:         /* I/O space */
703                         hose->io_base_phys = cpu_phys_addr - pci_addr;
704                         /* handle from 0 to top of I/O window */
705                         hose->pci_io_size = pci_addr + size;
706
707                         res = &hose->io_resource;
708                         res->flags = IORESOURCE_IO;
709                         res->start = pci_addr;
710                         DBG("phb%d: IO 0x%lx -> 0x%lx\n", hose->global_number,
711                                     res->start, res->start + size - 1);
712                         break;
713                 case 2:         /* memory space */
714                         memno = 0;
715                         while (memno < 3 && hose->mem_resources[memno].flags)
716                                 ++memno;
717
718                         if (memno == 0)
719                                 hose->pci_mem_offset = cpu_phys_addr - pci_addr;
720                         if (memno < 3) {
721                                 res = &hose->mem_resources[memno];
722                                 res->flags = IORESOURCE_MEM;
723                                 res->start = cpu_phys_addr;
724                                 DBG("phb%d: MEM 0x%lx -> 0x%lx\n", hose->global_number,
725                                             res->start, res->start + size - 1);
726                         }
727                         break;
728                 }
729                 if (res != NULL) {
730                         res->name = dev->full_name;
731                         res->end = res->start + size - 1;
732                         res->parent = NULL;
733                         res->sibling = NULL;
734                         res->child = NULL;
735                 }
736         }
737 }
738
739 #ifdef CONFIG_HOTPLUG
740
741 int pcibios_unmap_io_space(struct pci_bus *bus)
742 {
743         struct pci_controller *hose;
744
745         WARN_ON(bus == NULL);
746
747         /* If this is not a PHB, we only flush the hash table over
748          * the area mapped by this bridge. We don't play with the PTE
749          * mappings since we might have to deal with sub-page alignemnts
750          * so flushing the hash table is the only sane way to make sure
751          * that no hash entries are covering that removed bridge area
752          * while still allowing other busses overlapping those pages
753          */
754         if (bus->self) {
755                 struct resource *res = bus->resource[0];
756
757                 DBG("IO unmapping for PCI-PCI bridge %s\n",
758                     pci_name(bus->self));
759
760                 __flush_hash_table_range(&init_mm, res->start + _IO_BASE,
761                                          res->end - res->start + 1);
762                 return 0;
763         }
764
765         /* Get the host bridge */
766         hose = pci_bus_to_host(bus);
767
768         /* Check if we have IOs allocated */
769         if (hose->io_base_alloc == 0)
770                 return 0;
771
772         DBG("IO unmapping for PHB %s\n",
773             ((struct device_node *)hose->arch_data)->full_name);
774         DBG("  alloc=0x%p\n", hose->io_base_alloc);
775
776         /* This is a PHB, we fully unmap the IO area */
777         vunmap(hose->io_base_alloc);
778
779         return 0;
780 }
781 EXPORT_SYMBOL_GPL(pcibios_unmap_io_space);
782
783 #endif /* CONFIG_HOTPLUG */
784
785 int __devinit pcibios_map_io_space(struct pci_bus *bus)
786 {
787         struct vm_struct *area;
788         unsigned long phys_page;
789         unsigned long size_page;
790         unsigned long io_virt_offset;
791         struct pci_controller *hose;
792
793         WARN_ON(bus == NULL);
794
795         /* If this not a PHB, nothing to do, page tables still exist and
796          * thus HPTEs will be faulted in when needed
797          */
798         if (bus->self) {
799                 DBG("IO mapping for PCI-PCI bridge %s\n",
800                     pci_name(bus->self));
801                 DBG("  virt=0x%016lx...0x%016lx\n",
802                     bus->resource[0]->start + _IO_BASE,
803                     bus->resource[0]->end + _IO_BASE);
804                 return 0;
805         }
806
807         /* Get the host bridge */
808         hose = pci_bus_to_host(bus);
809         phys_page = _ALIGN_DOWN(hose->io_base_phys, PAGE_SIZE);
810         size_page = _ALIGN_UP(hose->pci_io_size, PAGE_SIZE);
811
812         /* Make sure IO area address is clear */
813         hose->io_base_alloc = NULL;
814
815         /* If there's no IO to map on that bus, get away too */
816         if (hose->pci_io_size == 0 || hose->io_base_phys == 0)
817                 return 0;
818
819         /* Let's allocate some IO space for that guy. We don't pass
820          * VM_IOREMAP because we don't care about alignment tricks that
821          * the core does in that case. Maybe we should due to stupid card
822          * with incomplete address decoding but I'd rather not deal with
823          * those outside of the reserved 64K legacy region.
824          */
825         area = __get_vm_area(size_page, 0, PHB_IO_BASE, PHB_IO_END);
826         if (area == NULL)
827                 return -ENOMEM;
828         hose->io_base_alloc = area->addr;
829         hose->io_base_virt = (void __iomem *)(area->addr +
830                                               hose->io_base_phys - phys_page);
831
832         DBG("IO mapping for PHB %s\n",
833             ((struct device_node *)hose->arch_data)->full_name);
834         DBG("  phys=0x%016lx, virt=0x%p (alloc=0x%p)\n",
835             hose->io_base_phys, hose->io_base_virt, hose->io_base_alloc);
836         DBG("  size=0x%016lx (alloc=0x%016lx)\n",
837             hose->pci_io_size, size_page);
838
839         /* Establish the mapping */
840         if (__ioremap_at(phys_page, area->addr, size_page,
841                          _PAGE_NO_CACHE | _PAGE_GUARDED) == NULL)
842                 return -ENOMEM;
843
844         /* Fixup hose IO resource */
845         io_virt_offset = (unsigned long)hose->io_base_virt - _IO_BASE;
846         hose->io_resource.start += io_virt_offset;
847         hose->io_resource.end += io_virt_offset;
848
849         DBG("  hose->io_resource=0x%016lx...0x%016lx\n",
850             hose->io_resource.start, hose->io_resource.end);
851
852         return 0;
853 }
854 EXPORT_SYMBOL_GPL(pcibios_map_io_space);
855
856 static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
857 {
858         struct pci_controller *hose = pci_bus_to_host(dev->bus);
859         unsigned long offset;
860
861         if (res->flags & IORESOURCE_IO) {
862                 offset = (unsigned long)hose->io_base_virt - _IO_BASE;
863                 res->start += offset;
864                 res->end += offset;
865         } else if (res->flags & IORESOURCE_MEM) {
866                 res->start += hose->pci_mem_offset;
867                 res->end += hose->pci_mem_offset;
868         }
869 }
870
871 void __devinit pcibios_fixup_device_resources(struct pci_dev *dev,
872                                               struct pci_bus *bus)
873 {
874         /* Update device resources.  */
875         int i;
876
877         DBG("%s: Fixup resources:\n", pci_name(dev));
878         for (i = 0; i < PCI_NUM_RESOURCES; i++) {
879                 struct resource *res = &dev->resource[i];
880                 if (!res->flags)
881                         continue;
882
883                 DBG("  0x%02x < %08lx:0x%016lx...0x%016lx\n",
884                     i, res->flags, res->start, res->end);
885
886                 fixup_resource(res, dev);
887
888                 DBG("       > %08lx:0x%016lx...0x%016lx\n",
889                     res->flags, res->start, res->end);
890         }
891 }
892 EXPORT_SYMBOL(pcibios_fixup_device_resources);
893
894 void __devinit pcibios_setup_new_device(struct pci_dev *dev)
895 {
896         struct dev_archdata *sd = &dev->dev.archdata;
897
898         sd->of_node = pci_device_to_OF_node(dev);
899
900         DBG("PCI device %s OF node: %s\n", pci_name(dev),
901             sd->of_node ? sd->of_node->full_name : "<none>");
902
903         sd->dma_ops = pci_dma_ops;
904 #ifdef CONFIG_NUMA
905         sd->numa_node = pcibus_to_node(dev->bus);
906 #else
907         sd->numa_node = -1;
908 #endif
909         if (ppc_md.pci_dma_dev_setup)
910                 ppc_md.pci_dma_dev_setup(dev);
911 }
912 EXPORT_SYMBOL(pcibios_setup_new_device);
913
914 static void __devinit do_bus_setup(struct pci_bus *bus)
915 {
916         struct pci_dev *dev;
917
918         if (ppc_md.pci_dma_bus_setup)
919                 ppc_md.pci_dma_bus_setup(bus);
920
921         list_for_each_entry(dev, &bus->devices, bus_list)
922                 pcibios_setup_new_device(dev);
923
924         /* Read default IRQs and fixup if necessary */
925         list_for_each_entry(dev, &bus->devices, bus_list) {
926                 pci_read_irq_line(dev);
927                 if (ppc_md.pci_irq_fixup)
928                         ppc_md.pci_irq_fixup(dev);
929         }
930 }
931
932 void __devinit pcibios_fixup_bus(struct pci_bus *bus)
933 {
934         struct pci_dev *dev = bus->self;
935         struct device_node *np;
936
937         np = pci_bus_to_OF_node(bus);
938
939         DBG("pcibios_fixup_bus(%s)\n", np ? np->full_name : "<???>");
940
941         if (dev && pci_probe_only &&
942             (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
943                 /* This is a subordinate bridge */
944
945                 pci_read_bridge_bases(bus);
946                 pcibios_fixup_device_resources(dev, bus);
947         }
948
949         do_bus_setup(bus);
950
951         if (!pci_probe_only)
952                 return;
953
954         list_for_each_entry(dev, &bus->devices, bus_list)
955                 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
956                         pcibios_fixup_device_resources(dev, bus);
957 }
958 EXPORT_SYMBOL(pcibios_fixup_bus);
959
960 struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
961 {
962         if (!have_of)
963                 return NULL;
964         while(node) {
965                 struct pci_controller *hose, *tmp;
966                 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
967                         if (hose->arch_data == node)
968                                 return hose;
969                 node = node->parent;
970         }
971         return NULL;
972 }
973
974 unsigned long pci_address_to_pio(phys_addr_t address)
975 {
976         struct pci_controller *hose, *tmp;
977
978         list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
979                 if (address >= hose->io_base_phys &&
980                     address < (hose->io_base_phys + hose->pci_io_size)) {
981                         unsigned long base =
982                                 (unsigned long)hose->io_base_virt - _IO_BASE;
983                         return base + (address - hose->io_base_phys);
984                 }
985         }
986         return (unsigned int)-1;
987 }
988 EXPORT_SYMBOL_GPL(pci_address_to_pio);
989
990
991 #define IOBASE_BRIDGE_NUMBER    0
992 #define IOBASE_MEMORY           1
993 #define IOBASE_IO               2
994 #define IOBASE_ISA_IO           3
995 #define IOBASE_ISA_MEM          4
996
997 long sys_pciconfig_iobase(long which, unsigned long in_bus,
998                           unsigned long in_devfn)
999 {
1000         struct pci_controller* hose;
1001         struct list_head *ln;
1002         struct pci_bus *bus = NULL;
1003         struct device_node *hose_node;
1004
1005         /* Argh ! Please forgive me for that hack, but that's the
1006          * simplest way to get existing XFree to not lockup on some
1007          * G5 machines... So when something asks for bus 0 io base
1008          * (bus 0 is HT root), we return the AGP one instead.
1009          */
1010         if (machine_is_compatible("MacRISC4"))
1011                 if (in_bus == 0)
1012                         in_bus = 0xf0;
1013
1014         /* That syscall isn't quite compatible with PCI domains, but it's
1015          * used on pre-domains setup. We return the first match
1016          */
1017
1018         for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) {
1019                 bus = pci_bus_b(ln);
1020                 if (in_bus >= bus->number && in_bus <= bus->subordinate)
1021                         break;
1022                 bus = NULL;
1023         }
1024         if (bus == NULL || bus->sysdata == NULL)
1025                 return -ENODEV;
1026
1027         hose_node = (struct device_node *)bus->sysdata;
1028         hose = PCI_DN(hose_node)->phb;
1029
1030         switch (which) {
1031         case IOBASE_BRIDGE_NUMBER:
1032                 return (long)hose->first_busno;
1033         case IOBASE_MEMORY:
1034                 return (long)hose->pci_mem_offset;
1035         case IOBASE_IO:
1036                 return (long)hose->io_base_phys;
1037         case IOBASE_ISA_IO:
1038                 return (long)isa_io_base;
1039         case IOBASE_ISA_MEM:
1040                 return -EINVAL;
1041         }
1042
1043         return -EOPNOTSUPP;
1044 }
1045
1046 #ifdef CONFIG_NUMA
1047 int pcibus_to_node(struct pci_bus *bus)
1048 {
1049         struct pci_controller *phb = pci_bus_to_host(bus);
1050         return phb->node;
1051 }
1052 EXPORT_SYMBOL(pcibus_to_node);
1053 #endif