[POWERPC] Add "parent" struct device for PCI host bridges
[pandora-kernel.git] / 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
26 #include <asm/processor.h>
27 #include <asm/io.h>
28 #include <asm/prom.h>
29 #include <asm/pci-bridge.h>
30 #include <asm/byteorder.h>
31 #include <asm/machdep.h>
32 #include <asm/ppc-pci.h>
33 #include <asm/firmware.h>
34
35 #ifdef DEBUG
36 #include <asm/udbg.h>
37 #define DBG(fmt...) printk(fmt)
38 #else
39 #define DBG(fmt...)
40 #endif
41
42 unsigned long pci_probe_only = 1;
43 int pci_assign_all_buses = 0;
44
45 static void fixup_resource(struct resource *res, struct pci_dev *dev);
46 static void do_bus_setup(struct pci_bus *bus);
47 static void phbs_remap_io(void);
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 a dummy
53  * page is mapped and isa_io_limit prevents access to it.
54  */
55 unsigned long isa_io_base;      /* NULL if no ISA bus */
56 EXPORT_SYMBOL(isa_io_base);
57 unsigned long pci_io_base;
58 EXPORT_SYMBOL(pci_io_base);
59
60 void iSeries_pcibios_init(void);
61
62 LIST_HEAD(hose_list);
63
64 struct dma_mapping_ops *pci_dma_ops;
65 EXPORT_SYMBOL(pci_dma_ops);
66
67 int global_phb_number;          /* Global phb counter */
68
69 /* Cached ISA bridge dev. */
70 struct pci_dev *ppc64_isabridge_dev = NULL;
71 EXPORT_SYMBOL_GPL(ppc64_isabridge_dev);
72
73 static void fixup_broken_pcnet32(struct pci_dev* dev)
74 {
75         if ((dev->class>>8 == PCI_CLASS_NETWORK_ETHERNET)) {
76                 dev->vendor = PCI_VENDOR_ID_AMD;
77                 pci_write_config_word(dev, PCI_VENDOR_ID, PCI_VENDOR_ID_AMD);
78         }
79 }
80 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT, PCI_ANY_ID, fixup_broken_pcnet32);
81
82 void  pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
83                               struct resource *res)
84 {
85         unsigned long offset = 0;
86         struct pci_controller *hose = pci_bus_to_host(dev->bus);
87
88         if (!hose)
89                 return;
90
91         if (res->flags & IORESOURCE_IO)
92                 offset = (unsigned long)hose->io_base_virt - pci_io_base;
93
94         if (res->flags & IORESOURCE_MEM)
95                 offset = hose->pci_mem_offset;
96
97         region->start = res->start - offset;
98         region->end = res->end - offset;
99 }
100
101 void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
102                               struct pci_bus_region *region)
103 {
104         unsigned long offset = 0;
105         struct pci_controller *hose = pci_bus_to_host(dev->bus);
106
107         if (!hose)
108                 return;
109
110         if (res->flags & IORESOURCE_IO)
111                 offset = (unsigned long)hose->io_base_virt - pci_io_base;
112
113         if (res->flags & IORESOURCE_MEM)
114                 offset = hose->pci_mem_offset;
115
116         res->start = region->start + offset;
117         res->end = region->end + offset;
118 }
119
120 #ifdef CONFIG_HOTPLUG
121 EXPORT_SYMBOL(pcibios_resource_to_bus);
122 EXPORT_SYMBOL(pcibios_bus_to_resource);
123 #endif
124
125 /*
126  * We need to avoid collisions with `mirrored' VGA ports
127  * and other strange ISA hardware, so we always want the
128  * addresses to be allocated in the 0x000-0x0ff region
129  * modulo 0x400.
130  *
131  * Why? Because some silly external IO cards only decode
132  * the low 10 bits of the IO address. The 0x00-0xff region
133  * is reserved for motherboard devices that decode all 16
134  * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
135  * but we want to try to avoid allocating at 0x2900-0x2bff
136  * which might have be mirrored at 0x0100-0x03ff..
137  */
138 void pcibios_align_resource(void *data, struct resource *res,
139                             resource_size_t size, resource_size_t align)
140 {
141         struct pci_dev *dev = data;
142         struct pci_controller *hose = pci_bus_to_host(dev->bus);
143         resource_size_t start = res->start;
144         unsigned long alignto;
145
146         if (res->flags & IORESOURCE_IO) {
147                 unsigned long offset = (unsigned long)hose->io_base_virt -
148                                         pci_io_base;
149                 /* Make sure we start at our min on all hoses */
150                 if (start - offset < PCIBIOS_MIN_IO)
151                         start = PCIBIOS_MIN_IO + offset;
152
153                 /*
154                  * Put everything into 0x00-0xff region modulo 0x400
155                  */
156                 if (start & 0x300)
157                         start = (start + 0x3ff) & ~0x3ff;
158
159         } else if (res->flags & IORESOURCE_MEM) {
160                 /* Make sure we start at our min on all hoses */
161                 if (start - hose->pci_mem_offset < PCIBIOS_MIN_MEM)
162                         start = PCIBIOS_MIN_MEM + hose->pci_mem_offset;
163
164                 /* Align to multiple of size of minimum base.  */
165                 alignto = max(0x1000UL, align);
166                 start = ALIGN(start, alignto);
167         }
168
169         res->start = start;
170 }
171
172 static DEFINE_SPINLOCK(hose_spinlock);
173
174 /*
175  * pci_controller(phb) initialized common variables.
176  */
177 static void __devinit pci_setup_pci_controller(struct pci_controller *hose)
178 {
179         memset(hose, 0, sizeof(struct pci_controller));
180
181         spin_lock(&hose_spinlock);
182         hose->global_number = global_phb_number++;
183         list_add_tail(&hose->list_node, &hose_list);
184         spin_unlock(&hose_spinlock);
185 }
186
187 struct pci_controller * pcibios_alloc_controller(struct device_node *dev)
188 {
189         struct pci_controller *phb;
190
191         if (mem_init_done)
192                 phb = kmalloc(sizeof(struct pci_controller), GFP_KERNEL);
193         else
194                 phb = alloc_bootmem(sizeof (struct pci_controller));
195         if (phb == NULL)
196                 return NULL;
197         pci_setup_pci_controller(phb);
198         phb->arch_data = dev;
199         phb->is_dynamic = mem_init_done;
200         if (dev) {
201                 int nid = of_node_to_nid(dev);
202
203                 if (nid < 0 || !node_online(nid))
204                         nid = -1;
205
206                 PHB_SET_NODE(phb, nid);
207         }
208         return phb;
209 }
210
211 void pcibios_free_controller(struct pci_controller *phb)
212 {
213         if (phb->is_dynamic)
214                 kfree(phb);
215 }
216
217 void __devinit pcibios_claim_one_bus(struct pci_bus *b)
218 {
219         struct pci_dev *dev;
220         struct pci_bus *child_bus;
221
222         list_for_each_entry(dev, &b->devices, bus_list) {
223                 int i;
224
225                 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
226                         struct resource *r = &dev->resource[i];
227
228                         if (r->parent || !r->start || !r->flags)
229                                 continue;
230                         pci_claim_resource(dev, i);
231                 }
232         }
233
234         list_for_each_entry(child_bus, &b->children, node)
235                 pcibios_claim_one_bus(child_bus);
236 }
237 #ifdef CONFIG_HOTPLUG
238 EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
239 #endif
240
241 static void __init pcibios_claim_of_setup(void)
242 {
243         struct pci_bus *b;
244
245         if (firmware_has_feature(FW_FEATURE_ISERIES))
246                 return;
247
248         list_for_each_entry(b, &pci_root_buses, node)
249                 pcibios_claim_one_bus(b);
250 }
251
252 static u32 get_int_prop(struct device_node *np, const char *name, u32 def)
253 {
254         const u32 *prop;
255         int len;
256
257         prop = get_property(np, name, &len);
258         if (prop && len >= 4)
259                 return *prop;
260         return def;
261 }
262
263 static unsigned int pci_parse_of_flags(u32 addr0)
264 {
265         unsigned int flags = 0;
266
267         if (addr0 & 0x02000000) {
268                 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
269                 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
270                 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
271                 if (addr0 & 0x40000000)
272                         flags |= IORESOURCE_PREFETCH
273                                  | PCI_BASE_ADDRESS_MEM_PREFETCH;
274         } else if (addr0 & 0x01000000)
275                 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
276         return flags;
277 }
278
279 #define GET_64BIT(prop, i)      ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
280
281 static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev)
282 {
283         u64 base, size;
284         unsigned int flags;
285         struct resource *res;
286         const u32 *addrs;
287         u32 i;
288         int proplen;
289
290         addrs = get_property(node, "assigned-addresses", &proplen);
291         if (!addrs)
292                 return;
293         DBG("    parse addresses (%d bytes) @ %p\n", proplen, addrs);
294         for (; proplen >= 20; proplen -= 20, addrs += 5) {
295                 flags = pci_parse_of_flags(addrs[0]);
296                 if (!flags)
297                         continue;
298                 base = GET_64BIT(addrs, 1);
299                 size = GET_64BIT(addrs, 3);
300                 if (!size)
301                         continue;
302                 i = addrs[0] & 0xff;
303                 DBG("  base: %llx, size: %llx, i: %x\n",
304                     (unsigned long long)base, (unsigned long long)size, i);
305
306                 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
307                         res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
308                 } else if (i == dev->rom_base_reg) {
309                         res = &dev->resource[PCI_ROM_RESOURCE];
310                         flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
311                 } else {
312                         printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
313                         continue;
314                 }
315                 res->start = base;
316                 res->end = base + size - 1;
317                 res->flags = flags;
318                 res->name = pci_name(dev);
319                 fixup_resource(res, dev);
320         }
321 }
322
323 struct pci_dev *of_create_pci_dev(struct device_node *node,
324                                  struct pci_bus *bus, int devfn)
325 {
326         struct pci_dev *dev;
327         const char *type;
328
329         dev = kmalloc(sizeof(struct pci_dev), GFP_KERNEL);
330         if (!dev)
331                 return NULL;
332         type = get_property(node, "device_type", NULL);
333         if (type == NULL)
334                 type = "";
335
336         DBG("    create device, devfn: %x, type: %s\n", devfn, type);
337
338         memset(dev, 0, sizeof(struct pci_dev));
339         dev->bus = bus;
340         dev->sysdata = node;
341         dev->dev.parent = bus->bridge;
342         dev->dev.bus = &pci_bus_type;
343         dev->devfn = devfn;
344         dev->multifunction = 0;         /* maybe a lie? */
345
346         dev->vendor = get_int_prop(node, "vendor-id", 0xffff);
347         dev->device = get_int_prop(node, "device-id", 0xffff);
348         dev->subsystem_vendor = get_int_prop(node, "subsystem-vendor-id", 0);
349         dev->subsystem_device = get_int_prop(node, "subsystem-id", 0);
350
351         dev->cfg_size = pci_cfg_space_size(dev);
352
353         sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
354                 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
355         dev->class = get_int_prop(node, "class-code", 0);
356
357         DBG("    class: 0x%x\n", dev->class);
358
359         dev->current_state = 4;         /* unknown power state */
360
361         if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
362                 /* a PCI-PCI bridge */
363                 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
364                 dev->rom_base_reg = PCI_ROM_ADDRESS1;
365         } else if (!strcmp(type, "cardbus")) {
366                 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
367         } else {
368                 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
369                 dev->rom_base_reg = PCI_ROM_ADDRESS;
370                 /* Maybe do a default OF mapping here */
371                 dev->irq = NO_IRQ;
372         }
373
374         pci_parse_of_addrs(node, dev);
375
376         DBG("    adding to system ...\n");
377
378         pci_device_add(dev, bus);
379
380         /* XXX pci_scan_msi_device(dev); */
381
382         return dev;
383 }
384 EXPORT_SYMBOL(of_create_pci_dev);
385
386 void __devinit of_scan_bus(struct device_node *node,
387                                   struct pci_bus *bus)
388 {
389         struct device_node *child = NULL;
390         const u32 *reg;
391         int reglen, devfn;
392         struct pci_dev *dev;
393
394         DBG("of_scan_bus(%s) bus no %d... \n", node->full_name, bus->number);
395
396         while ((child = of_get_next_child(node, child)) != NULL) {
397                 DBG("  * %s\n", child->full_name);
398                 reg = get_property(child, "reg", &reglen);
399                 if (reg == NULL || reglen < 20)
400                         continue;
401                 devfn = (reg[0] >> 8) & 0xff;
402
403                 /* create a new pci_dev for this device */
404                 dev = of_create_pci_dev(child, bus, devfn);
405                 if (!dev)
406                         continue;
407                 DBG("dev header type: %x\n", dev->hdr_type);
408
409                 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
410                     dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
411                         of_scan_pci_bridge(child, dev);
412         }
413
414         do_bus_setup(bus);
415 }
416 EXPORT_SYMBOL(of_scan_bus);
417
418 void __devinit of_scan_pci_bridge(struct device_node *node,
419                                 struct pci_dev *dev)
420 {
421         struct pci_bus *bus;
422         const u32 *busrange, *ranges;
423         int len, i, mode;
424         struct resource *res;
425         unsigned int flags;
426         u64 size;
427
428         DBG("of_scan_pci_bridge(%s)\n", node->full_name);
429
430         /* parse bus-range property */
431         busrange = get_property(node, "bus-range", &len);
432         if (busrange == NULL || len != 8) {
433                 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
434                        node->full_name);
435                 return;
436         }
437         ranges = get_property(node, "ranges", &len);
438         if (ranges == NULL) {
439                 printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n",
440                        node->full_name);
441                 return;
442         }
443
444         bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
445         if (!bus) {
446                 printk(KERN_ERR "Failed to create pci bus for %s\n",
447                        node->full_name);
448                 return;
449         }
450
451         bus->primary = dev->bus->number;
452         bus->subordinate = busrange[1];
453         bus->bridge_ctl = 0;
454         bus->sysdata = node;
455
456         /* parse ranges property */
457         /* PCI #address-cells == 3 and #size-cells == 2 always */
458         res = &dev->resource[PCI_BRIDGE_RESOURCES];
459         for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
460                 res->flags = 0;
461                 bus->resource[i] = res;
462                 ++res;
463         }
464         i = 1;
465         for (; len >= 32; len -= 32, ranges += 8) {
466                 flags = pci_parse_of_flags(ranges[0]);
467                 size = GET_64BIT(ranges, 6);
468                 if (flags == 0 || size == 0)
469                         continue;
470                 if (flags & IORESOURCE_IO) {
471                         res = bus->resource[0];
472                         if (res->flags) {
473                                 printk(KERN_ERR "PCI: ignoring extra I/O range"
474                                        " for bridge %s\n", node->full_name);
475                                 continue;
476                         }
477                 } else {
478                         if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
479                                 printk(KERN_ERR "PCI: too many memory ranges"
480                                        " for bridge %s\n", node->full_name);
481                                 continue;
482                         }
483                         res = bus->resource[i];
484                         ++i;
485                 }
486                 res->start = GET_64BIT(ranges, 1);
487                 res->end = res->start + size - 1;
488                 res->flags = flags;
489                 fixup_resource(res, dev);
490         }
491         sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
492                 bus->number);
493         DBG("    bus name: %s\n", bus->name);
494
495         mode = PCI_PROBE_NORMAL;
496         if (ppc_md.pci_probe_mode)
497                 mode = ppc_md.pci_probe_mode(bus);
498         DBG("    probe mode: %d\n", mode);
499
500         if (mode == PCI_PROBE_DEVTREE)
501                 of_scan_bus(node, bus);
502         else if (mode == PCI_PROBE_NORMAL)
503                 pci_scan_child_bus(bus);
504 }
505 EXPORT_SYMBOL(of_scan_pci_bridge);
506
507 void __devinit scan_phb(struct pci_controller *hose)
508 {
509         struct pci_bus *bus;
510         struct device_node *node = hose->arch_data;
511         int i, mode;
512         struct resource *res;
513
514         DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>");
515
516         bus = pci_create_bus(hose->parent, hose->first_busno, hose->ops, node);
517         if (bus == NULL) {
518                 printk(KERN_ERR "Failed to create bus for PCI domain %04x\n",
519                        hose->global_number);
520                 return;
521         }
522         bus->secondary = hose->first_busno;
523         hose->bus = bus;
524
525         bus->resource[0] = res = &hose->io_resource;
526         if (res->flags && request_resource(&ioport_resource, res))
527                 printk(KERN_ERR "Failed to request PCI IO region "
528                        "on PCI domain %04x\n", hose->global_number);
529
530         for (i = 0; i < 3; ++i) {
531                 res = &hose->mem_resources[i];
532                 bus->resource[i+1] = res;
533                 if (res->flags && request_resource(&iomem_resource, res))
534                         printk(KERN_ERR "Failed to request PCI memory region "
535                                "on PCI domain %04x\n", hose->global_number);
536         }
537
538         mode = PCI_PROBE_NORMAL;
539
540         if (node && ppc_md.pci_probe_mode)
541                 mode = ppc_md.pci_probe_mode(bus);
542         DBG("    probe mode: %d\n", mode);
543         if (mode == PCI_PROBE_DEVTREE) {
544                 bus->subordinate = hose->last_busno;
545                 of_scan_bus(node, bus);
546         }
547
548         if (mode == PCI_PROBE_NORMAL)
549                 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
550 }
551
552 static int __init pcibios_init(void)
553 {
554         struct pci_controller *hose, *tmp;
555
556         /* For now, override phys_mem_access_prot. If we need it,
557          * later, we may move that initialization to each ppc_md
558          */
559         ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot;
560
561         if (firmware_has_feature(FW_FEATURE_ISERIES))
562                 iSeries_pcibios_init();
563
564         printk(KERN_DEBUG "PCI: Probing PCI hardware\n");
565
566         /* Scan all of the recorded PCI controllers.  */
567         list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
568                 scan_phb(hose);
569                 pci_bus_add_devices(hose->bus);
570         }
571
572         if (!firmware_has_feature(FW_FEATURE_ISERIES)) {
573                 if (pci_probe_only)
574                         pcibios_claim_of_setup();
575                 else
576                         /* FIXME: `else' will be removed when
577                            pci_assign_unassigned_resources() is able to work
578                            correctly with [partially] allocated PCI tree. */
579                         pci_assign_unassigned_resources();
580         }
581
582         /* Call machine dependent final fixup */
583         if (ppc_md.pcibios_fixup)
584                 ppc_md.pcibios_fixup();
585
586         /* Cache the location of the ISA bridge (if we have one) */
587         ppc64_isabridge_dev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
588         if (ppc64_isabridge_dev != NULL)
589                 printk(KERN_DEBUG "ISA bridge at %s\n", pci_name(ppc64_isabridge_dev));
590
591         if (!firmware_has_feature(FW_FEATURE_ISERIES))
592                 /* map in PCI I/O space */
593                 phbs_remap_io();
594
595         printk(KERN_DEBUG "PCI: Probing PCI hardware done\n");
596
597         return 0;
598 }
599
600 subsys_initcall(pcibios_init);
601
602 char __init *pcibios_setup(char *str)
603 {
604         return str;
605 }
606
607 int pcibios_enable_device(struct pci_dev *dev, int mask)
608 {
609         u16 cmd, oldcmd;
610         int i;
611
612         pci_read_config_word(dev, PCI_COMMAND, &cmd);
613         oldcmd = cmd;
614
615         for (i = 0; i < PCI_NUM_RESOURCES; i++) {
616                 struct resource *res = &dev->resource[i];
617
618                 /* Only set up the requested stuff */
619                 if (!(mask & (1<<i)))
620                         continue;
621
622                 if (res->flags & IORESOURCE_IO)
623                         cmd |= PCI_COMMAND_IO;
624                 if (res->flags & IORESOURCE_MEM)
625                         cmd |= PCI_COMMAND_MEMORY;
626         }
627
628         if (cmd != oldcmd) {
629                 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
630                        pci_name(dev), cmd);
631                 /* Enable the appropriate bits in the PCI command register.  */
632                 pci_write_config_word(dev, PCI_COMMAND, cmd);
633         }
634         return 0;
635 }
636
637 /*
638  * Return the domain number for this bus.
639  */
640 int pci_domain_nr(struct pci_bus *bus)
641 {
642         if (firmware_has_feature(FW_FEATURE_ISERIES))
643                 return 0;
644         else {
645                 struct pci_controller *hose = pci_bus_to_host(bus);
646
647                 return hose->global_number;
648         }
649 }
650
651 EXPORT_SYMBOL(pci_domain_nr);
652
653 /* Decide whether to display the domain number in /proc */
654 int pci_proc_domain(struct pci_bus *bus)
655 {
656         if (firmware_has_feature(FW_FEATURE_ISERIES))
657                 return 0;
658         else {
659                 struct pci_controller *hose = pci_bus_to_host(bus);
660                 return hose->buid;
661         }
662 }
663
664 /*
665  * Platform support for /proc/bus/pci/X/Y mmap()s,
666  * modelled on the sparc64 implementation by Dave Miller.
667  *  -- paulus.
668  */
669
670 /*
671  * Adjust vm_pgoff of VMA such that it is the physical page offset
672  * corresponding to the 32-bit pci bus offset for DEV requested by the user.
673  *
674  * Basically, the user finds the base address for his device which he wishes
675  * to mmap.  They read the 32-bit value from the config space base register,
676  * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
677  * offset parameter of mmap on /proc/bus/pci/XXX for that device.
678  *
679  * Returns negative error code on failure, zero on success.
680  */
681 static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
682                                                unsigned long *offset,
683                                                enum pci_mmap_state mmap_state)
684 {
685         struct pci_controller *hose = pci_bus_to_host(dev->bus);
686         unsigned long io_offset = 0;
687         int i, res_bit;
688
689         if (hose == 0)
690                 return NULL;            /* should never happen */
691
692         /* If memory, add on the PCI bridge address offset */
693         if (mmap_state == pci_mmap_mem) {
694                 *offset += hose->pci_mem_offset;
695                 res_bit = IORESOURCE_MEM;
696         } else {
697                 io_offset = (unsigned long)hose->io_base_virt - pci_io_base;
698                 *offset += io_offset;
699                 res_bit = IORESOURCE_IO;
700         }
701
702         /*
703          * Check that the offset requested corresponds to one of the
704          * resources of the device.
705          */
706         for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
707                 struct resource *rp = &dev->resource[i];
708                 int flags = rp->flags;
709
710                 /* treat ROM as memory (should be already) */
711                 if (i == PCI_ROM_RESOURCE)
712                         flags |= IORESOURCE_MEM;
713
714                 /* Active and same type? */
715                 if ((flags & res_bit) == 0)
716                         continue;
717
718                 /* In the range of this resource? */
719                 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
720                         continue;
721
722                 /* found it! construct the final physical address */
723                 if (mmap_state == pci_mmap_io)
724                         *offset += hose->io_base_phys - io_offset;
725                 return rp;
726         }
727
728         return NULL;
729 }
730
731 /*
732  * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
733  * device mapping.
734  */
735 static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
736                                       pgprot_t protection,
737                                       enum pci_mmap_state mmap_state,
738                                       int write_combine)
739 {
740         unsigned long prot = pgprot_val(protection);
741
742         /* Write combine is always 0 on non-memory space mappings. On
743          * memory space, if the user didn't pass 1, we check for a
744          * "prefetchable" resource. This is a bit hackish, but we use
745          * this to workaround the inability of /sysfs to provide a write
746          * combine bit
747          */
748         if (mmap_state != pci_mmap_mem)
749                 write_combine = 0;
750         else if (write_combine == 0) {
751                 if (rp->flags & IORESOURCE_PREFETCH)
752                         write_combine = 1;
753         }
754
755         /* XXX would be nice to have a way to ask for write-through */
756         prot |= _PAGE_NO_CACHE;
757         if (write_combine)
758                 prot &= ~_PAGE_GUARDED;
759         else
760                 prot |= _PAGE_GUARDED;
761
762         printk(KERN_DEBUG "PCI map for %s:%lx, prot: %lx\n", pci_name(dev), rp->start,
763                prot);
764
765         return __pgprot(prot);
766 }
767
768 /*
769  * This one is used by /dev/mem and fbdev who have no clue about the
770  * PCI device, it tries to find the PCI device first and calls the
771  * above routine
772  */
773 pgprot_t pci_phys_mem_access_prot(struct file *file,
774                                   unsigned long pfn,
775                                   unsigned long size,
776                                   pgprot_t protection)
777 {
778         struct pci_dev *pdev = NULL;
779         struct resource *found = NULL;
780         unsigned long prot = pgprot_val(protection);
781         unsigned long offset = pfn << PAGE_SHIFT;
782         int i;
783
784         if (page_is_ram(pfn))
785                 return __pgprot(prot);
786
787         prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
788
789         for_each_pci_dev(pdev) {
790                 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
791                         struct resource *rp = &pdev->resource[i];
792                         int flags = rp->flags;
793
794                         /* Active and same type? */
795                         if ((flags & IORESOURCE_MEM) == 0)
796                                 continue;
797                         /* In the range of this resource? */
798                         if (offset < (rp->start & PAGE_MASK) ||
799                             offset > rp->end)
800                                 continue;
801                         found = rp;
802                         break;
803                 }
804                 if (found)
805                         break;
806         }
807         if (found) {
808                 if (found->flags & IORESOURCE_PREFETCH)
809                         prot &= ~_PAGE_GUARDED;
810                 pci_dev_put(pdev);
811         }
812
813         DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
814
815         return __pgprot(prot);
816 }
817
818
819 /*
820  * Perform the actual remap of the pages for a PCI device mapping, as
821  * appropriate for this architecture.  The region in the process to map
822  * is described by vm_start and vm_end members of VMA, the base physical
823  * address is found in vm_pgoff.
824  * The pci device structure is provided so that architectures may make mapping
825  * decisions on a per-device or per-bus basis.
826  *
827  * Returns a negative error code on failure, zero on success.
828  */
829 int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
830                         enum pci_mmap_state mmap_state, int write_combine)
831 {
832         unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
833         struct resource *rp;
834         int ret;
835
836         rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
837         if (rp == NULL)
838                 return -EINVAL;
839
840         vma->vm_pgoff = offset >> PAGE_SHIFT;
841         vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
842                                                   vma->vm_page_prot,
843                                                   mmap_state, write_combine);
844
845         ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
846                                vma->vm_end - vma->vm_start, vma->vm_page_prot);
847
848         return ret;
849 }
850
851 static ssize_t pci_show_devspec(struct device *dev,
852                 struct device_attribute *attr, char *buf)
853 {
854         struct pci_dev *pdev;
855         struct device_node *np;
856
857         pdev = to_pci_dev (dev);
858         np = pci_device_to_OF_node(pdev);
859         if (np == NULL || np->full_name == NULL)
860                 return 0;
861         return sprintf(buf, "%s", np->full_name);
862 }
863 static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
864
865 void pcibios_add_platform_entries(struct pci_dev *pdev)
866 {
867         device_create_file(&pdev->dev, &dev_attr_devspec);
868 }
869
870 #define ISA_SPACE_MASK 0x1
871 #define ISA_SPACE_IO 0x1
872
873 static void __devinit pci_process_ISA_OF_ranges(struct device_node *isa_node,
874                                       unsigned long phb_io_base_phys,
875                                       void __iomem * phb_io_base_virt)
876 {
877         /* Remove these asap */
878
879         struct pci_address {
880                 u32 a_hi;
881                 u32 a_mid;
882                 u32 a_lo;
883         };
884
885         struct isa_address {
886                 u32 a_hi;
887                 u32 a_lo;
888         };
889
890         struct isa_range {
891                 struct isa_address isa_addr;
892                 struct pci_address pci_addr;
893                 unsigned int size;
894         };
895
896         const struct isa_range *range;
897         unsigned long pci_addr;
898         unsigned int isa_addr;
899         unsigned int size;
900         int rlen = 0;
901
902         range = get_property(isa_node, "ranges", &rlen);
903         if (range == NULL || (rlen < sizeof(struct isa_range))) {
904                 printk(KERN_ERR "no ISA ranges or unexpected isa range size,"
905                        "mapping 64k\n");
906                 __ioremap_explicit(phb_io_base_phys,
907                                    (unsigned long)phb_io_base_virt,
908                                    0x10000, _PAGE_NO_CACHE | _PAGE_GUARDED);
909                 return; 
910         }
911         
912         /* From "ISA Binding to 1275"
913          * The ranges property is laid out as an array of elements,
914          * each of which comprises:
915          *   cells 0 - 1:       an ISA address
916          *   cells 2 - 4:       a PCI address 
917          *                      (size depending on dev->n_addr_cells)
918          *   cell 5:            the size of the range
919          */
920         if ((range->isa_addr.a_hi && ISA_SPACE_MASK) == ISA_SPACE_IO) {
921                 isa_addr = range->isa_addr.a_lo;
922                 pci_addr = (unsigned long) range->pci_addr.a_mid << 32 | 
923                         range->pci_addr.a_lo;
924
925                 /* Assume these are both zero */
926                 if ((pci_addr != 0) || (isa_addr != 0)) {
927                         printk(KERN_ERR "unexpected isa to pci mapping: %s\n",
928                                         __FUNCTION__);
929                         return;
930                 }
931                 
932                 size = PAGE_ALIGN(range->size);
933
934                 __ioremap_explicit(phb_io_base_phys, 
935                                    (unsigned long) phb_io_base_virt, 
936                                    size, _PAGE_NO_CACHE | _PAGE_GUARDED);
937         }
938 }
939
940 void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
941                                             struct device_node *dev, int prim)
942 {
943         const unsigned int *ranges;
944         unsigned int pci_space;
945         unsigned long size;
946         int rlen = 0;
947         int memno = 0;
948         struct resource *res;
949         int np, na = prom_n_addr_cells(dev);
950         unsigned long pci_addr, cpu_phys_addr;
951
952         np = na + 5;
953
954         /* From "PCI Binding to 1275"
955          * The ranges property is laid out as an array of elements,
956          * each of which comprises:
957          *   cells 0 - 2:       a PCI address
958          *   cells 3 or 3+4:    a CPU physical address
959          *                      (size depending on dev->n_addr_cells)
960          *   cells 4+5 or 5+6:  the size of the range
961          */
962         ranges = get_property(dev, "ranges", &rlen);
963         if (ranges == NULL)
964                 return;
965         hose->io_base_phys = 0;
966         while ((rlen -= np * sizeof(unsigned int)) >= 0) {
967                 res = NULL;
968                 pci_space = ranges[0];
969                 pci_addr = ((unsigned long)ranges[1] << 32) | ranges[2];
970                 cpu_phys_addr = of_translate_address(dev, &ranges[3]);
971                 size = ((unsigned long)ranges[na+3] << 32) | ranges[na+4];
972                 ranges += np;
973                 if (size == 0)
974                         continue;
975
976                 /* Now consume following elements while they are contiguous */
977                 while (rlen >= np * sizeof(unsigned int)) {
978                         unsigned long addr, phys;
979
980                         if (ranges[0] != pci_space)
981                                 break;
982                         addr = ((unsigned long)ranges[1] << 32) | ranges[2];
983                         phys = ranges[3];
984                         if (na >= 2)
985                                 phys = (phys << 32) | ranges[4];
986                         if (addr != pci_addr + size ||
987                             phys != cpu_phys_addr + size)
988                                 break;
989
990                         size += ((unsigned long)ranges[na+3] << 32)
991                                 | ranges[na+4];
992                         ranges += np;
993                         rlen -= np * sizeof(unsigned int);
994                 }
995
996                 switch ((pci_space >> 24) & 0x3) {
997                 case 1:         /* I/O space */
998                         hose->io_base_phys = cpu_phys_addr;
999                         hose->pci_io_size = size;
1000
1001                         res = &hose->io_resource;
1002                         res->flags = IORESOURCE_IO;
1003                         res->start = pci_addr;
1004                         DBG("phb%d: IO 0x%lx -> 0x%lx\n", hose->global_number,
1005                                     res->start, res->start + size - 1);
1006                         break;
1007                 case 2:         /* memory space */
1008                         memno = 0;
1009                         while (memno < 3 && hose->mem_resources[memno].flags)
1010                                 ++memno;
1011
1012                         if (memno == 0)
1013                                 hose->pci_mem_offset = cpu_phys_addr - pci_addr;
1014                         if (memno < 3) {
1015                                 res = &hose->mem_resources[memno];
1016                                 res->flags = IORESOURCE_MEM;
1017                                 res->start = cpu_phys_addr;
1018                                 DBG("phb%d: MEM 0x%lx -> 0x%lx\n", hose->global_number,
1019                                             res->start, res->start + size - 1);
1020                         }
1021                         break;
1022                 }
1023                 if (res != NULL) {
1024                         res->name = dev->full_name;
1025                         res->end = res->start + size - 1;
1026                         res->parent = NULL;
1027                         res->sibling = NULL;
1028                         res->child = NULL;
1029                 }
1030         }
1031 }
1032
1033 void __init pci_setup_phb_io(struct pci_controller *hose, int primary)
1034 {
1035         unsigned long size = hose->pci_io_size;
1036         unsigned long io_virt_offset;
1037         struct resource *res;
1038         struct device_node *isa_dn;
1039
1040         hose->io_base_virt = reserve_phb_iospace(size);
1041         DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1042                 hose->global_number, hose->io_base_phys,
1043                 (unsigned long) hose->io_base_virt);
1044
1045         if (primary) {
1046                 pci_io_base = (unsigned long)hose->io_base_virt;
1047                 isa_dn = of_find_node_by_type(NULL, "isa");
1048                 if (isa_dn) {
1049                         isa_io_base = pci_io_base;
1050                         pci_process_ISA_OF_ranges(isa_dn, hose->io_base_phys,
1051                                                 hose->io_base_virt);
1052                         of_node_put(isa_dn);
1053                 }
1054         }
1055
1056         io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1057         res = &hose->io_resource;
1058         res->start += io_virt_offset;
1059         res->end += io_virt_offset;
1060 }
1061
1062 void __devinit pci_setup_phb_io_dynamic(struct pci_controller *hose,
1063                                         int primary)
1064 {
1065         unsigned long size = hose->pci_io_size;
1066         unsigned long io_virt_offset;
1067         struct resource *res;
1068
1069         hose->io_base_virt = __ioremap(hose->io_base_phys, size,
1070                                         _PAGE_NO_CACHE | _PAGE_GUARDED);
1071         DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1072                 hose->global_number, hose->io_base_phys,
1073                 (unsigned long) hose->io_base_virt);
1074
1075         if (primary)
1076                 pci_io_base = (unsigned long)hose->io_base_virt;
1077
1078         io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1079         res = &hose->io_resource;
1080         res->start += io_virt_offset;
1081         res->end += io_virt_offset;
1082 }
1083
1084
1085 static int get_bus_io_range(struct pci_bus *bus, unsigned long *start_phys,
1086                                 unsigned long *start_virt, unsigned long *size)
1087 {
1088         struct pci_controller *hose = pci_bus_to_host(bus);
1089         struct pci_bus_region region;
1090         struct resource *res;
1091
1092         if (bus->self) {
1093                 res = bus->resource[0];
1094                 pcibios_resource_to_bus(bus->self, &region, res);
1095                 *start_phys = hose->io_base_phys + region.start;
1096                 *start_virt = (unsigned long) hose->io_base_virt + 
1097                                 region.start;
1098                 if (region.end > region.start) 
1099                         *size = region.end - region.start + 1;
1100                 else {
1101                         printk("%s(): unexpected region 0x%lx->0x%lx\n", 
1102                                         __FUNCTION__, region.start, region.end);
1103                         return 1;
1104                 }
1105                 
1106         } else {
1107                 /* Root Bus */
1108                 res = &hose->io_resource;
1109                 *start_phys = hose->io_base_phys;
1110                 *start_virt = (unsigned long) hose->io_base_virt;
1111                 if (res->end > res->start)
1112                         *size = res->end - res->start + 1;
1113                 else {
1114                         printk("%s(): unexpected region 0x%lx->0x%lx\n", 
1115                                         __FUNCTION__, res->start, res->end);
1116                         return 1;
1117                 }
1118         }
1119
1120         return 0;
1121 }
1122
1123 int unmap_bus_range(struct pci_bus *bus)
1124 {
1125         unsigned long start_phys;
1126         unsigned long start_virt;
1127         unsigned long size;
1128
1129         if (!bus) {
1130                 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1131                 return 1;
1132         }
1133         
1134         if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1135                 return 1;
1136         if (iounmap_explicit((void __iomem *) start_virt, size))
1137                 return 1;
1138
1139         return 0;
1140 }
1141 EXPORT_SYMBOL(unmap_bus_range);
1142
1143 int remap_bus_range(struct pci_bus *bus)
1144 {
1145         unsigned long start_phys;
1146         unsigned long start_virt;
1147         unsigned long size;
1148
1149         if (!bus) {
1150                 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1151                 return 1;
1152         }
1153         
1154         
1155         if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1156                 return 1;
1157         if (start_phys == 0)
1158                 return 1;
1159         printk(KERN_DEBUG "mapping IO %lx -> %lx, size: %lx\n", start_phys, start_virt, size);
1160         if (__ioremap_explicit(start_phys, start_virt, size,
1161                                _PAGE_NO_CACHE | _PAGE_GUARDED))
1162                 return 1;
1163
1164         return 0;
1165 }
1166 EXPORT_SYMBOL(remap_bus_range);
1167
1168 static void phbs_remap_io(void)
1169 {
1170         struct pci_controller *hose, *tmp;
1171
1172         list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1173                 remap_bus_range(hose->bus);
1174 }
1175
1176 static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
1177 {
1178         struct pci_controller *hose = pci_bus_to_host(dev->bus);
1179         unsigned long offset;
1180
1181         if (res->flags & IORESOURCE_IO) {
1182                 offset = (unsigned long)hose->io_base_virt - pci_io_base;
1183
1184                 res->start += offset;
1185                 res->end += offset;
1186         } else if (res->flags & IORESOURCE_MEM) {
1187                 res->start += hose->pci_mem_offset;
1188                 res->end += hose->pci_mem_offset;
1189         }
1190 }
1191
1192 void __devinit pcibios_fixup_device_resources(struct pci_dev *dev,
1193                                               struct pci_bus *bus)
1194 {
1195         /* Update device resources.  */
1196         int i;
1197
1198         for (i = 0; i < PCI_NUM_RESOURCES; i++)
1199                 if (dev->resource[i].flags)
1200                         fixup_resource(&dev->resource[i], dev);
1201 }
1202 EXPORT_SYMBOL(pcibios_fixup_device_resources);
1203
1204 void __devinit pcibios_setup_new_device(struct pci_dev *dev)
1205 {
1206         struct dev_archdata *sd = &dev->dev.archdata;
1207
1208         sd->of_node = pci_device_to_OF_node(dev);
1209
1210         DBG("PCI device %s OF node: %s\n", pci_name(dev),
1211             sd->of_node ? sd->of_node->full_name : "<none>");
1212
1213         sd->dma_ops = pci_dma_ops;
1214 #ifdef CONFIG_NUMA
1215         sd->numa_node = pcibus_to_node(dev->bus);
1216 #else
1217         sd->numa_node = -1;
1218 #endif
1219         if (ppc_md.pci_dma_dev_setup)
1220                 ppc_md.pci_dma_dev_setup(dev);
1221 }
1222 EXPORT_SYMBOL(pcibios_setup_new_device);
1223
1224 static void __devinit do_bus_setup(struct pci_bus *bus)
1225 {
1226         struct pci_dev *dev;
1227
1228         if (ppc_md.pci_dma_bus_setup)
1229                 ppc_md.pci_dma_bus_setup(bus);
1230
1231         list_for_each_entry(dev, &bus->devices, bus_list)
1232                 pcibios_setup_new_device(dev);
1233
1234         /* Read default IRQs and fixup if necessary */
1235         list_for_each_entry(dev, &bus->devices, bus_list) {
1236                 pci_read_irq_line(dev);
1237                 if (ppc_md.pci_irq_fixup)
1238                         ppc_md.pci_irq_fixup(dev);
1239         }
1240 }
1241
1242 void __devinit pcibios_fixup_bus(struct pci_bus *bus)
1243 {
1244         struct pci_dev *dev = bus->self;
1245
1246         if (dev && pci_probe_only &&
1247             (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
1248                 /* This is a subordinate bridge */
1249
1250                 pci_read_bridge_bases(bus);
1251                 pcibios_fixup_device_resources(dev, bus);
1252         }
1253
1254         do_bus_setup(bus);
1255
1256         if (!pci_probe_only)
1257                 return;
1258
1259         list_for_each_entry(dev, &bus->devices, bus_list)
1260                 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1261                         pcibios_fixup_device_resources(dev, bus);
1262 }
1263 EXPORT_SYMBOL(pcibios_fixup_bus);
1264
1265 /*
1266  * Reads the interrupt pin to determine if interrupt is use by card.
1267  * If the interrupt is used, then gets the interrupt line from the 
1268  * openfirmware and sets it in the pci_dev and pci_config line.
1269  */
1270 int pci_read_irq_line(struct pci_dev *pci_dev)
1271 {
1272         struct of_irq oirq;
1273         unsigned int virq;
1274
1275         DBG("Try to map irq for %s...\n", pci_name(pci_dev));
1276
1277 #ifdef DEBUG
1278         memset(&oirq, 0xff, sizeof(oirq));
1279 #endif
1280         /* Try to get a mapping from the device-tree */
1281         if (of_irq_map_pci(pci_dev, &oirq)) {
1282                 u8 line, pin;
1283
1284                 /* If that fails, lets fallback to what is in the config
1285                  * space and map that through the default controller. We
1286                  * also set the type to level low since that's what PCI
1287                  * interrupts are. If your platform does differently, then
1288                  * either provide a proper interrupt tree or don't use this
1289                  * function.
1290                  */
1291                 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
1292                         return -1;
1293                 if (pin == 0)
1294                         return -1;
1295                 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
1296                     line == 0xff) {
1297                         return -1;
1298                 }
1299                 DBG(" -> no map ! Using irq line %d from PCI config\n", line);
1300
1301                 virq = irq_create_mapping(NULL, line);
1302                 if (virq != NO_IRQ)
1303                         set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
1304         } else {
1305                 DBG(" -> got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
1306                     oirq.size, oirq.specifier[0], oirq.specifier[1],
1307                     oirq.controller->full_name);
1308
1309                 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
1310                                              oirq.size);
1311         }
1312         if(virq == NO_IRQ) {
1313                 DBG(" -> failed to map !\n");
1314                 return -1;
1315         }
1316
1317         DBG(" -> mapped to linux irq %d\n", virq);
1318
1319         pci_dev->irq = virq;
1320         pci_write_config_byte(pci_dev, PCI_INTERRUPT_LINE, virq);
1321
1322         return 0;
1323 }
1324 EXPORT_SYMBOL(pci_read_irq_line);
1325
1326 void pci_resource_to_user(const struct pci_dev *dev, int bar,
1327                           const struct resource *rsrc,
1328                           u64 *start, u64 *end)
1329 {
1330         struct pci_controller *hose = pci_bus_to_host(dev->bus);
1331         unsigned long offset = 0;
1332
1333         if (hose == NULL)
1334                 return;
1335
1336         if (rsrc->flags & IORESOURCE_IO)
1337                 offset = pci_io_base - (unsigned long)hose->io_base_virt +
1338                         hose->io_base_phys;
1339
1340         *start = rsrc->start + offset;
1341         *end = rsrc->end + offset;
1342 }
1343
1344 struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
1345 {
1346         if (!have_of)
1347                 return NULL;
1348         while(node) {
1349                 struct pci_controller *hose, *tmp;
1350                 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1351                         if (hose->arch_data == node)
1352                                 return hose;
1353                 node = node->parent;
1354         }
1355         return NULL;
1356 }
1357
1358 unsigned long pci_address_to_pio(phys_addr_t address)
1359 {
1360         struct pci_controller *hose, *tmp;
1361
1362         list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1363                 if (address >= hose->io_base_phys &&
1364                     address < (hose->io_base_phys + hose->pci_io_size)) {
1365                         unsigned long base =
1366                                 (unsigned long)hose->io_base_virt - pci_io_base;
1367                         return base + (address - hose->io_base_phys);
1368                 }
1369         }
1370         return (unsigned int)-1;
1371 }
1372 EXPORT_SYMBOL_GPL(pci_address_to_pio);
1373
1374
1375 #define IOBASE_BRIDGE_NUMBER    0
1376 #define IOBASE_MEMORY           1
1377 #define IOBASE_IO               2
1378 #define IOBASE_ISA_IO           3
1379 #define IOBASE_ISA_MEM          4
1380
1381 long sys_pciconfig_iobase(long which, unsigned long in_bus,
1382                           unsigned long in_devfn)
1383 {
1384         struct pci_controller* hose;
1385         struct list_head *ln;
1386         struct pci_bus *bus = NULL;
1387         struct device_node *hose_node;
1388
1389         /* Argh ! Please forgive me for that hack, but that's the
1390          * simplest way to get existing XFree to not lockup on some
1391          * G5 machines... So when something asks for bus 0 io base
1392          * (bus 0 is HT root), we return the AGP one instead.
1393          */
1394         if (machine_is_compatible("MacRISC4"))
1395                 if (in_bus == 0)
1396                         in_bus = 0xf0;
1397
1398         /* That syscall isn't quite compatible with PCI domains, but it's
1399          * used on pre-domains setup. We return the first match
1400          */
1401
1402         for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) {
1403                 bus = pci_bus_b(ln);
1404                 if (in_bus >= bus->number && in_bus < (bus->number + bus->subordinate))
1405                         break;
1406                 bus = NULL;
1407         }
1408         if (bus == NULL || bus->sysdata == NULL)
1409                 return -ENODEV;
1410
1411         hose_node = (struct device_node *)bus->sysdata;
1412         hose = PCI_DN(hose_node)->phb;
1413
1414         switch (which) {
1415         case IOBASE_BRIDGE_NUMBER:
1416                 return (long)hose->first_busno;
1417         case IOBASE_MEMORY:
1418                 return (long)hose->pci_mem_offset;
1419         case IOBASE_IO:
1420                 return (long)hose->io_base_phys;
1421         case IOBASE_ISA_IO:
1422                 return (long)isa_io_base;
1423         case IOBASE_ISA_MEM:
1424                 return -EINVAL;
1425         }
1426
1427         return -EOPNOTSUPP;
1428 }
1429
1430 #ifdef CONFIG_NUMA
1431 int pcibus_to_node(struct pci_bus *bus)
1432 {
1433         struct pci_controller *phb = pci_bus_to_host(bus);
1434         return phb->node;
1435 }
1436 EXPORT_SYMBOL(pcibus_to_node);
1437 #endif