blob: a6b7692c72690bc592e1429d08a921e23f9ed946 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Port for PPC64 David Engebretsen, IBM Corp.
3 * Contains common pci routines for ppc64 platform, pSeries and iSeries brands.
4 *
5 * Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
6 * Rework, based on alpha PCI code.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#undef DEBUG
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kernel.h>
17#include <linux/pci.h>
18#include <linux/string.h>
19#include <linux/init.h>
20#include <linux/bootmem.h>
21#include <linux/mm.h>
22#include <linux/list.h>
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +100023#include <linux/syscalls.h>
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -070024#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/machdep.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100032#include <asm/ppc-pci.h>
Stephen Rothwelleecba332006-09-25 13:35:09 +100033#include <asm/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#ifdef DEBUG
Michael Ellermanf9e4ec52005-11-15 15:16:38 +110036#include <asm/udbg.h>
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +110037#define DBG(fmt...) printk(fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#else
39#define DBG(fmt...)
40#endif
41
42unsigned long pci_probe_only = 1;
Paul Mackerrasf8ef2702005-11-19 20:46:04 +110043int pci_assign_all_buses = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Paul Mackerras42672922005-09-12 17:17:36 +100045static void fixup_resource(struct resource *res, struct pci_dev *dev);
46static void do_bus_setup(struct pci_bus *bus);
Stephen Rothwell9623b5d2006-01-12 14:18:28 +110047static void phbs_remap_io(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* 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 */
55unsigned long isa_io_base; /* NULL if no ISA bus */
56EXPORT_SYMBOL(isa_io_base);
57unsigned long pci_io_base;
58EXPORT_SYMBOL(pci_io_base);
59
60void iSeries_pcibios_init(void);
61
62LIST_HEAD(hose_list);
63
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +110064struct dma_mapping_ops *pci_dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065EXPORT_SYMBOL(pci_dma_ops);
66
67int global_phb_number; /* Global phb counter */
68
69/* Cached ISA bridge dev. */
70struct pci_dev *ppc64_isabridge_dev = NULL;
Stephen Rothwellb239cbe2006-03-28 14:40:58 +110071EXPORT_SYMBOL_GPL(ppc64_isabridge_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79}
80DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT, PCI_ANY_ID, fixup_broken_pcnet32);
81
82void 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
Dominik Brodowski43c34732005-08-04 18:06:21 -0700101void 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#ifdef CONFIG_HOTPLUG
121EXPORT_SYMBOL(pcibios_resource_to_bus);
Dominik Brodowski43c34732005-08-04 18:06:21 -0700122EXPORT_SYMBOL(pcibios_bus_to_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#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 */
138void pcibios_align_resource(void *data, struct resource *res,
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700139 resource_size_t size, resource_size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 struct pci_dev *dev = data;
142 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700143 resource_size_t start = res->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 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
172static DEFINE_SPINLOCK(hose_spinlock);
173
174/*
175 * pci_controller(phb) initialized common variables.
176 */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100177static void __devinit pci_setup_pci_controller(struct pci_controller *hose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
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
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100187struct 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;
Anton Blanchard284a9402006-10-13 12:26:57 +1000200 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 }
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100208 return phb;
209}
210
211void pcibios_free_controller(struct pci_controller *phb)
212{
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100213 spin_lock(&hose_spinlock);
214 list_del(&phb->list_node);
215 spin_unlock(&hose_spinlock);
216
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100217 if (phb->is_dynamic)
218 kfree(phb);
219}
220
Linas Vepstasfacf0782005-11-03 18:52:01 -0600221void __devinit pcibios_claim_one_bus(struct pci_bus *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct pci_dev *dev;
224 struct pci_bus *child_bus;
225
226 list_for_each_entry(dev, &b->devices, bus_list) {
227 int i;
228
229 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
230 struct resource *r = &dev->resource[i];
231
232 if (r->parent || !r->start || !r->flags)
233 continue;
234 pci_claim_resource(dev, i);
235 }
236 }
237
238 list_for_each_entry(child_bus, &b->children, node)
239 pcibios_claim_one_bus(child_bus);
240}
linasaf9deab2006-01-10 15:18:16 -0600241#ifdef CONFIG_HOTPLUG
242EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
243#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245static void __init pcibios_claim_of_setup(void)
246{
247 struct pci_bus *b;
248
Stephen Rothwelleecba332006-09-25 13:35:09 +1000249 if (firmware_has_feature(FW_FEATURE_ISERIES))
250 return;
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 list_for_each_entry(b, &pci_root_buses, node)
253 pcibios_claim_one_bus(b);
254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Paul Mackerras42672922005-09-12 17:17:36 +1000256static u32 get_int_prop(struct device_node *np, const char *name, u32 def)
257{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000258 const u32 *prop;
Paul Mackerras42672922005-09-12 17:17:36 +1000259 int len;
260
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000261 prop = get_property(np, name, &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000262 if (prop && len >= 4)
263 return *prop;
264 return def;
265}
266
267static unsigned int pci_parse_of_flags(u32 addr0)
268{
269 unsigned int flags = 0;
270
271 if (addr0 & 0x02000000) {
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000272 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
273 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
274 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
Paul Mackerras42672922005-09-12 17:17:36 +1000275 if (addr0 & 0x40000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000276 flags |= IORESOURCE_PREFETCH
277 | PCI_BASE_ADDRESS_MEM_PREFETCH;
Paul Mackerras42672922005-09-12 17:17:36 +1000278 } else if (addr0 & 0x01000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000279 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
Paul Mackerras42672922005-09-12 17:17:36 +1000280 return flags;
281}
282
283#define GET_64BIT(prop, i) ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
284
285static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev)
286{
287 u64 base, size;
288 unsigned int flags;
289 struct resource *res;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000290 const u32 *addrs;
291 u32 i;
Paul Mackerras42672922005-09-12 17:17:36 +1000292 int proplen;
293
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000294 addrs = get_property(node, "assigned-addresses", &proplen);
Paul Mackerras42672922005-09-12 17:17:36 +1000295 if (!addrs)
296 return;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100297 DBG(" parse addresses (%d bytes) @ %p\n", proplen, addrs);
Paul Mackerras42672922005-09-12 17:17:36 +1000298 for (; proplen >= 20; proplen -= 20, addrs += 5) {
299 flags = pci_parse_of_flags(addrs[0]);
300 if (!flags)
301 continue;
302 base = GET_64BIT(addrs, 1);
303 size = GET_64BIT(addrs, 3);
304 if (!size)
305 continue;
306 i = addrs[0] & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100307 DBG(" base: %llx, size: %llx, i: %x\n",
308 (unsigned long long)base, (unsigned long long)size, i);
309
Paul Mackerras42672922005-09-12 17:17:36 +1000310 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
311 res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
312 } else if (i == dev->rom_base_reg) {
313 res = &dev->resource[PCI_ROM_RESOURCE];
314 flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
315 } else {
316 printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
317 continue;
318 }
319 res->start = base;
320 res->end = base + size - 1;
321 res->flags = flags;
322 res->name = pci_name(dev);
323 fixup_resource(res, dev);
324 }
325}
326
John Roseead83712005-11-04 15:30:56 -0600327struct pci_dev *of_create_pci_dev(struct device_node *node,
328 struct pci_bus *bus, int devfn)
Paul Mackerras42672922005-09-12 17:17:36 +1000329{
330 struct pci_dev *dev;
331 const char *type;
332
Yan Burmanf8485352006-12-02 13:26:57 +0200333 dev = kzalloc(sizeof(struct pci_dev), GFP_KERNEL);
Paul Mackerras42672922005-09-12 17:17:36 +1000334 if (!dev)
335 return NULL;
336 type = get_property(node, "device_type", NULL);
337 if (type == NULL)
338 type = "";
339
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100340 DBG(" create device, devfn: %x, type: %s\n", devfn, type);
341
Paul Mackerras42672922005-09-12 17:17:36 +1000342 dev->bus = bus;
343 dev->sysdata = node;
344 dev->dev.parent = bus->bridge;
345 dev->dev.bus = &pci_bus_type;
346 dev->devfn = devfn;
347 dev->multifunction = 0; /* maybe a lie? */
348
349 dev->vendor = get_int_prop(node, "vendor-id", 0xffff);
350 dev->device = get_int_prop(node, "device-id", 0xffff);
351 dev->subsystem_vendor = get_int_prop(node, "subsystem-vendor-id", 0);
352 dev->subsystem_device = get_int_prop(node, "subsystem-id", 0);
353
Benjamin Herrenschmidt9d17a5c2006-01-10 14:50:37 +1100354 dev->cfg_size = pci_cfg_space_size(dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000355
356 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
357 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
358 dev->class = get_int_prop(node, "class-code", 0);
359
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100360 DBG(" class: 0x%x\n", dev->class);
361
Paul Mackerras42672922005-09-12 17:17:36 +1000362 dev->current_state = 4; /* unknown power state */
363
Jake Moilanenbb53bb32006-06-07 16:05:46 -0500364 if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
Paul Mackerras42672922005-09-12 17:17:36 +1000365 /* a PCI-PCI bridge */
366 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
367 dev->rom_base_reg = PCI_ROM_ADDRESS1;
368 } else if (!strcmp(type, "cardbus")) {
369 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
370 } else {
371 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
372 dev->rom_base_reg = PCI_ROM_ADDRESS;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000373 /* Maybe do a default OF mapping here */
Paul Mackerras42672922005-09-12 17:17:36 +1000374 dev->irq = NO_IRQ;
Paul Mackerras42672922005-09-12 17:17:36 +1000375 }
376
377 pci_parse_of_addrs(node, dev);
378
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100379 DBG(" adding to system ...\n");
380
Paul Mackerras42672922005-09-12 17:17:36 +1000381 pci_device_add(dev, bus);
382
383 /* XXX pci_scan_msi_device(dev); */
384
385 return dev;
386}
John Roseead83712005-11-04 15:30:56 -0600387EXPORT_SYMBOL(of_create_pci_dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000388
John Roseead83712005-11-04 15:30:56 -0600389void __devinit of_scan_bus(struct device_node *node,
Paul Mackerras42672922005-09-12 17:17:36 +1000390 struct pci_bus *bus)
391{
392 struct device_node *child = NULL;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000393 const u32 *reg;
Paul Mackerras42672922005-09-12 17:17:36 +1000394 int reglen, devfn;
395 struct pci_dev *dev;
396
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100397 DBG("of_scan_bus(%s) bus no %d... \n", node->full_name, bus->number);
398
Paul Mackerras42672922005-09-12 17:17:36 +1000399 while ((child = of_get_next_child(node, child)) != NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100400 DBG(" * %s\n", child->full_name);
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000401 reg = get_property(child, "reg", &reglen);
Paul Mackerras42672922005-09-12 17:17:36 +1000402 if (reg == NULL || reglen < 20)
403 continue;
404 devfn = (reg[0] >> 8) & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100405
Paul Mackerras42672922005-09-12 17:17:36 +1000406 /* create a new pci_dev for this device */
407 dev = of_create_pci_dev(child, bus, devfn);
408 if (!dev)
409 continue;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100410 DBG("dev header type: %x\n", dev->hdr_type);
411
Paul Mackerras42672922005-09-12 17:17:36 +1000412 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
413 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
414 of_scan_pci_bridge(child, dev);
415 }
416
417 do_bus_setup(bus);
418}
John Roseead83712005-11-04 15:30:56 -0600419EXPORT_SYMBOL(of_scan_bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000420
John Roseead83712005-11-04 15:30:56 -0600421void __devinit of_scan_pci_bridge(struct device_node *node,
422 struct pci_dev *dev)
Paul Mackerras42672922005-09-12 17:17:36 +1000423{
424 struct pci_bus *bus;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000425 const u32 *busrange, *ranges;
Paul Mackerras42672922005-09-12 17:17:36 +1000426 int len, i, mode;
427 struct resource *res;
428 unsigned int flags;
429 u64 size;
430
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100431 DBG("of_scan_pci_bridge(%s)\n", node->full_name);
432
Paul Mackerras42672922005-09-12 17:17:36 +1000433 /* parse bus-range property */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000434 busrange = get_property(node, "bus-range", &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000435 if (busrange == NULL || len != 8) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100436 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000437 node->full_name);
438 return;
439 }
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000440 ranges = get_property(node, "ranges", &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000441 if (ranges == NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100442 printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000443 node->full_name);
444 return;
445 }
446
447 bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
448 if (!bus) {
449 printk(KERN_ERR "Failed to create pci bus for %s\n",
450 node->full_name);
451 return;
452 }
453
454 bus->primary = dev->bus->number;
455 bus->subordinate = busrange[1];
456 bus->bridge_ctl = 0;
457 bus->sysdata = node;
458
459 /* parse ranges property */
460 /* PCI #address-cells == 3 and #size-cells == 2 always */
461 res = &dev->resource[PCI_BRIDGE_RESOURCES];
462 for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
463 res->flags = 0;
464 bus->resource[i] = res;
465 ++res;
466 }
467 i = 1;
468 for (; len >= 32; len -= 32, ranges += 8) {
469 flags = pci_parse_of_flags(ranges[0]);
470 size = GET_64BIT(ranges, 6);
471 if (flags == 0 || size == 0)
472 continue;
473 if (flags & IORESOURCE_IO) {
474 res = bus->resource[0];
475 if (res->flags) {
476 printk(KERN_ERR "PCI: ignoring extra I/O range"
477 " for bridge %s\n", node->full_name);
478 continue;
479 }
480 } else {
481 if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
482 printk(KERN_ERR "PCI: too many memory ranges"
483 " for bridge %s\n", node->full_name);
484 continue;
485 }
486 res = bus->resource[i];
487 ++i;
488 }
489 res->start = GET_64BIT(ranges, 1);
490 res->end = res->start + size - 1;
491 res->flags = flags;
492 fixup_resource(res, dev);
493 }
494 sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
495 bus->number);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100496 DBG(" bus name: %s\n", bus->name);
Paul Mackerras42672922005-09-12 17:17:36 +1000497
498 mode = PCI_PROBE_NORMAL;
499 if (ppc_md.pci_probe_mode)
500 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100501 DBG(" probe mode: %d\n", mode);
502
Paul Mackerras42672922005-09-12 17:17:36 +1000503 if (mode == PCI_PROBE_DEVTREE)
504 of_scan_bus(node, bus);
505 else if (mode == PCI_PROBE_NORMAL)
506 pci_scan_child_bus(bus);
507}
John Roseead83712005-11-04 15:30:56 -0600508EXPORT_SYMBOL(of_scan_pci_bridge);
Paul Mackerras42672922005-09-12 17:17:36 +1000509
John Roseead83712005-11-04 15:30:56 -0600510void __devinit scan_phb(struct pci_controller *hose)
Paul Mackerras42672922005-09-12 17:17:36 +1000511{
512 struct pci_bus *bus;
513 struct device_node *node = hose->arch_data;
514 int i, mode;
515 struct resource *res;
516
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100517 DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>");
518
Benjamin Herrenschmidt803d4572006-11-11 17:25:07 +1100519 bus = pci_create_bus(hose->parent, hose->first_busno, hose->ops, node);
Paul Mackerras42672922005-09-12 17:17:36 +1000520 if (bus == NULL) {
521 printk(KERN_ERR "Failed to create bus for PCI domain %04x\n",
522 hose->global_number);
523 return;
524 }
525 bus->secondary = hose->first_busno;
526 hose->bus = bus;
527
528 bus->resource[0] = res = &hose->io_resource;
529 if (res->flags && request_resource(&ioport_resource, res))
530 printk(KERN_ERR "Failed to request PCI IO region "
531 "on PCI domain %04x\n", hose->global_number);
532
533 for (i = 0; i < 3; ++i) {
534 res = &hose->mem_resources[i];
535 bus->resource[i+1] = res;
536 if (res->flags && request_resource(&iomem_resource, res))
537 printk(KERN_ERR "Failed to request PCI memory region "
538 "on PCI domain %04x\n", hose->global_number);
539 }
540
541 mode = PCI_PROBE_NORMAL;
s.hauer@pengutronix.de99a565b2006-11-02 13:56:06 +0100542
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100543 if (node && ppc_md.pci_probe_mode)
Paul Mackerras42672922005-09-12 17:17:36 +1000544 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100545 DBG(" probe mode: %d\n", mode);
Paul Mackerras42672922005-09-12 17:17:36 +1000546 if (mode == PCI_PROBE_DEVTREE) {
547 bus->subordinate = hose->last_busno;
548 of_scan_bus(node, bus);
549 }
s.hauer@pengutronix.de99a565b2006-11-02 13:56:06 +0100550
Paul Mackerras42672922005-09-12 17:17:36 +1000551 if (mode == PCI_PROBE_NORMAL)
552 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555static int __init pcibios_init(void)
556{
557 struct pci_controller *hose, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 /* For now, override phys_mem_access_prot. If we need it,
560 * later, we may move that initialization to each ppc_md
561 */
562 ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot;
563
Stephen Rothwelleecba332006-09-25 13:35:09 +1000564 if (firmware_has_feature(FW_FEATURE_ISERIES))
565 iSeries_pcibios_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Olof Johanssone884e9c2006-04-12 15:26:59 -0500567 printk(KERN_DEBUG "PCI: Probing PCI hardware\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 /* Scan all of the recorded PCI controllers. */
John Rose92eb4602006-03-14 17:46:45 -0600570 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Paul Mackerras42672922005-09-12 17:17:36 +1000571 scan_phb(hose);
John Rose92eb4602006-03-14 17:46:45 -0600572 pci_bus_add_devices(hose->bus);
573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Stephen Rothwelleecba332006-09-25 13:35:09 +1000575 if (!firmware_has_feature(FW_FEATURE_ISERIES)) {
576 if (pci_probe_only)
577 pcibios_claim_of_setup();
578 else
579 /* FIXME: `else' will be removed when
580 pci_assign_unassigned_resources() is able to work
581 correctly with [partially] allocated PCI tree. */
582 pci_assign_unassigned_resources();
583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 /* Call machine dependent final fixup */
586 if (ppc_md.pcibios_fixup)
587 ppc_md.pcibios_fixup();
588
589 /* Cache the location of the ISA bridge (if we have one) */
590 ppc64_isabridge_dev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
591 if (ppc64_isabridge_dev != NULL)
Olof Johanssone884e9c2006-04-12 15:26:59 -0500592 printk(KERN_DEBUG "ISA bridge at %s\n", pci_name(ppc64_isabridge_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Stephen Rothwelleecba332006-09-25 13:35:09 +1000594 if (!firmware_has_feature(FW_FEATURE_ISERIES))
595 /* map in PCI I/O space */
596 phbs_remap_io();
Benjamin Herrenschmidt0f34f492005-11-10 15:04:24 +1100597
Olof Johanssone884e9c2006-04-12 15:26:59 -0500598 printk(KERN_DEBUG "PCI: Probing PCI hardware done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 return 0;
601}
602
603subsys_initcall(pcibios_init);
604
605char __init *pcibios_setup(char *str)
606{
607 return str;
608}
609
610int pcibios_enable_device(struct pci_dev *dev, int mask)
611{
612 u16 cmd, oldcmd;
613 int i;
614
615 pci_read_config_word(dev, PCI_COMMAND, &cmd);
616 oldcmd = cmd;
617
618 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
619 struct resource *res = &dev->resource[i];
620
621 /* Only set up the requested stuff */
622 if (!(mask & (1<<i)))
623 continue;
624
625 if (res->flags & IORESOURCE_IO)
626 cmd |= PCI_COMMAND_IO;
627 if (res->flags & IORESOURCE_MEM)
628 cmd |= PCI_COMMAND_MEMORY;
629 }
630
631 if (cmd != oldcmd) {
632 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
633 pci_name(dev), cmd);
634 /* Enable the appropriate bits in the PCI command register. */
635 pci_write_config_word(dev, PCI_COMMAND, cmd);
636 }
637 return 0;
638}
639
640/*
641 * Return the domain number for this bus.
642 */
643int pci_domain_nr(struct pci_bus *bus)
644{
Stephen Rothwelleecba332006-09-25 13:35:09 +1000645 if (firmware_has_feature(FW_FEATURE_ISERIES))
646 return 0;
647 else {
648 struct pci_controller *hose = pci_bus_to_host(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Stephen Rothwelleecba332006-09-25 13:35:09 +1000650 return hose->global_number;
651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
654EXPORT_SYMBOL(pci_domain_nr);
655
656/* Decide whether to display the domain number in /proc */
657int pci_proc_domain(struct pci_bus *bus)
658{
Stephen Rothwelleecba332006-09-25 13:35:09 +1000659 if (firmware_has_feature(FW_FEATURE_ISERIES))
660 return 0;
661 else {
662 struct pci_controller *hose = pci_bus_to_host(bus);
663 return hose->buid;
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667/*
668 * Platform support for /proc/bus/pci/X/Y mmap()s,
669 * modelled on the sparc64 implementation by Dave Miller.
670 * -- paulus.
671 */
672
673/*
674 * Adjust vm_pgoff of VMA such that it is the physical page offset
675 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
676 *
677 * Basically, the user finds the base address for his device which he wishes
678 * to mmap. They read the 32-bit value from the config space base register,
679 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
680 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
681 *
682 * Returns negative error code on failure, zero on success.
683 */
684static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100685 resource_size_t *offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 enum pci_mmap_state mmap_state)
687{
688 struct pci_controller *hose = pci_bus_to_host(dev->bus);
689 unsigned long io_offset = 0;
690 int i, res_bit;
691
692 if (hose == 0)
693 return NULL; /* should never happen */
694
695 /* If memory, add on the PCI bridge address offset */
696 if (mmap_state == pci_mmap_mem) {
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100697#if 0 /* See comment in pci_resource_to_user() for why this is disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 *offset += hose->pci_mem_offset;
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100699#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 res_bit = IORESOURCE_MEM;
701 } else {
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000702 io_offset = (unsigned long)hose->io_base_virt - pci_io_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 *offset += io_offset;
704 res_bit = IORESOURCE_IO;
705 }
706
707 /*
708 * Check that the offset requested corresponds to one of the
709 * resources of the device.
710 */
711 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
712 struct resource *rp = &dev->resource[i];
713 int flags = rp->flags;
714
715 /* treat ROM as memory (should be already) */
716 if (i == PCI_ROM_RESOURCE)
717 flags |= IORESOURCE_MEM;
718
719 /* Active and same type? */
720 if ((flags & res_bit) == 0)
721 continue;
722
723 /* In the range of this resource? */
724 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
725 continue;
726
727 /* found it! construct the final physical address */
728 if (mmap_state == pci_mmap_io)
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000729 *offset += hose->io_base_phys - io_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return rp;
731 }
732
733 return NULL;
734}
735
736/*
737 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
738 * device mapping.
739 */
740static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
741 pgprot_t protection,
742 enum pci_mmap_state mmap_state,
743 int write_combine)
744{
745 unsigned long prot = pgprot_val(protection);
746
747 /* Write combine is always 0 on non-memory space mappings. On
748 * memory space, if the user didn't pass 1, we check for a
749 * "prefetchable" resource. This is a bit hackish, but we use
750 * this to workaround the inability of /sysfs to provide a write
751 * combine bit
752 */
753 if (mmap_state != pci_mmap_mem)
754 write_combine = 0;
755 else if (write_combine == 0) {
756 if (rp->flags & IORESOURCE_PREFETCH)
757 write_combine = 1;
758 }
759
760 /* XXX would be nice to have a way to ask for write-through */
761 prot |= _PAGE_NO_CACHE;
762 if (write_combine)
763 prot &= ~_PAGE_GUARDED;
764 else
765 prot |= _PAGE_GUARDED;
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return __pgprot(prot);
768}
769
770/*
771 * This one is used by /dev/mem and fbdev who have no clue about the
772 * PCI device, it tries to find the PCI device first and calls the
773 * above routine
774 */
775pgprot_t pci_phys_mem_access_prot(struct file *file,
Roland Dreier8b150472005-10-28 17:46:18 -0700776 unsigned long pfn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 unsigned long size,
778 pgprot_t protection)
779{
780 struct pci_dev *pdev = NULL;
781 struct resource *found = NULL;
782 unsigned long prot = pgprot_val(protection);
Roland Dreier8b150472005-10-28 17:46:18 -0700783 unsigned long offset = pfn << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 int i;
785
Roland Dreier8b150472005-10-28 17:46:18 -0700786 if (page_is_ram(pfn))
David Gibson1f8d4192005-05-05 16:15:13 -0700787 return __pgprot(prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
790
791 for_each_pci_dev(pdev) {
792 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
793 struct resource *rp = &pdev->resource[i];
794 int flags = rp->flags;
795
796 /* Active and same type? */
797 if ((flags & IORESOURCE_MEM) == 0)
798 continue;
799 /* In the range of this resource? */
800 if (offset < (rp->start & PAGE_MASK) ||
801 offset > rp->end)
802 continue;
803 found = rp;
804 break;
805 }
806 if (found)
807 break;
808 }
809 if (found) {
810 if (found->flags & IORESOURCE_PREFETCH)
811 prot &= ~_PAGE_GUARDED;
812 pci_dev_put(pdev);
813 }
814
815 DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
816
817 return __pgprot(prot);
818}
819
820
821/*
822 * Perform the actual remap of the pages for a PCI device mapping, as
823 * appropriate for this architecture. The region in the process to map
824 * is described by vm_start and vm_end members of VMA, the base physical
825 * address is found in vm_pgoff.
826 * The pci device structure is provided so that architectures may make mapping
827 * decisions on a per-device or per-bus basis.
828 *
829 * Returns a negative error code on failure, zero on success.
830 */
831int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100832 enum pci_mmap_state mmap_state, int write_combine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100834 resource_size_t offset = vma->vm_pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 struct resource *rp;
836 int ret;
837
838 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
839 if (rp == NULL)
840 return -EINVAL;
841
842 vma->vm_pgoff = offset >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
844 vma->vm_page_prot,
845 mmap_state, write_combine);
846
847 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
848 vma->vm_end - vma->vm_start, vma->vm_page_prot);
849
850 return ret;
851}
852
Stephen Rothwellefbd3862006-05-19 16:53:11 +1000853static ssize_t pci_show_devspec(struct device *dev,
854 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 struct pci_dev *pdev;
857 struct device_node *np;
858
859 pdev = to_pci_dev (dev);
860 np = pci_device_to_OF_node(pdev);
861 if (np == NULL || np->full_name == NULL)
862 return 0;
863 return sprintf(buf, "%s", np->full_name);
864}
865static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867void pcibios_add_platform_entries(struct pci_dev *pdev)
868{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 device_create_file(&pdev->dev, &dev_attr_devspec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872#define ISA_SPACE_MASK 0x1
873#define ISA_SPACE_IO 0x1
874
875static void __devinit pci_process_ISA_OF_ranges(struct device_node *isa_node,
876 unsigned long phb_io_base_phys,
877 void __iomem * phb_io_base_virt)
878{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100879 /* Remove these asap */
880
881 struct pci_address {
882 u32 a_hi;
883 u32 a_mid;
884 u32 a_lo;
885 };
886
887 struct isa_address {
888 u32 a_hi;
889 u32 a_lo;
890 };
891
892 struct isa_range {
893 struct isa_address isa_addr;
894 struct pci_address pci_addr;
895 unsigned int size;
896 };
897
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000898 const struct isa_range *range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 unsigned long pci_addr;
900 unsigned int isa_addr;
901 unsigned int size;
902 int rlen = 0;
903
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000904 range = get_property(isa_node, "ranges", &rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (range == NULL || (rlen < sizeof(struct isa_range))) {
906 printk(KERN_ERR "no ISA ranges or unexpected isa range size,"
907 "mapping 64k\n");
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700908 __ioremap_explicit(phb_io_base_phys,
909 (unsigned long)phb_io_base_virt,
910 0x10000, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return;
912 }
913
914 /* From "ISA Binding to 1275"
915 * The ranges property is laid out as an array of elements,
916 * each of which comprises:
917 * cells 0 - 1: an ISA address
918 * cells 2 - 4: a PCI address
919 * (size depending on dev->n_addr_cells)
920 * cell 5: the size of the range
921 */
922 if ((range->isa_addr.a_hi && ISA_SPACE_MASK) == ISA_SPACE_IO) {
923 isa_addr = range->isa_addr.a_lo;
924 pci_addr = (unsigned long) range->pci_addr.a_mid << 32 |
925 range->pci_addr.a_lo;
926
927 /* Assume these are both zero */
928 if ((pci_addr != 0) || (isa_addr != 0)) {
929 printk(KERN_ERR "unexpected isa to pci mapping: %s\n",
930 __FUNCTION__);
931 return;
932 }
933
934 size = PAGE_ALIGN(range->size);
935
936 __ioremap_explicit(phb_io_base_phys,
937 (unsigned long) phb_io_base_virt,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700938 size, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940}
941
942void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000943 struct device_node *dev, int prim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000945 const unsigned int *ranges;
946 unsigned int pci_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 unsigned long size;
948 int rlen = 0;
949 int memno = 0;
950 struct resource *res;
951 int np, na = prom_n_addr_cells(dev);
952 unsigned long pci_addr, cpu_phys_addr;
953
954 np = na + 5;
955
956 /* From "PCI Binding to 1275"
957 * The ranges property is laid out as an array of elements,
958 * each of which comprises:
959 * cells 0 - 2: a PCI address
960 * cells 3 or 3+4: a CPU physical address
961 * (size depending on dev->n_addr_cells)
962 * cells 4+5 or 5+6: the size of the range
963 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000964 ranges = get_property(dev, "ranges", &rlen);
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100965 if (ranges == NULL)
966 return;
967 hose->io_base_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 while ((rlen -= np * sizeof(unsigned int)) >= 0) {
969 res = NULL;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000970 pci_space = ranges[0];
971 pci_addr = ((unsigned long)ranges[1] << 32) | ranges[2];
Benjamin Herrenschmidte557a1c2006-11-11 17:25:05 +1100972 cpu_phys_addr = of_translate_address(dev, &ranges[3]);
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000973 size = ((unsigned long)ranges[na+3] << 32) | ranges[na+4];
974 ranges += np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (size == 0)
976 continue;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000977
978 /* Now consume following elements while they are contiguous */
979 while (rlen >= np * sizeof(unsigned int)) {
980 unsigned long addr, phys;
981
982 if (ranges[0] != pci_space)
983 break;
984 addr = ((unsigned long)ranges[1] << 32) | ranges[2];
985 phys = ranges[3];
986 if (na >= 2)
987 phys = (phys << 32) | ranges[4];
988 if (addr != pci_addr + size ||
989 phys != cpu_phys_addr + size)
990 break;
991
992 size += ((unsigned long)ranges[na+3] << 32)
993 | ranges[na+4];
994 ranges += np;
995 rlen -= np * sizeof(unsigned int);
996 }
997
998 switch ((pci_space >> 24) & 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 case 1: /* I/O space */
1000 hose->io_base_phys = cpu_phys_addr;
1001 hose->pci_io_size = size;
1002
1003 res = &hose->io_resource;
1004 res->flags = IORESOURCE_IO;
1005 res->start = pci_addr;
1006 DBG("phb%d: IO 0x%lx -> 0x%lx\n", hose->global_number,
1007 res->start, res->start + size - 1);
1008 break;
1009 case 2: /* memory space */
1010 memno = 0;
1011 while (memno < 3 && hose->mem_resources[memno].flags)
1012 ++memno;
1013
1014 if (memno == 0)
1015 hose->pci_mem_offset = cpu_phys_addr - pci_addr;
1016 if (memno < 3) {
1017 res = &hose->mem_resources[memno];
1018 res->flags = IORESOURCE_MEM;
1019 res->start = cpu_phys_addr;
1020 DBG("phb%d: MEM 0x%lx -> 0x%lx\n", hose->global_number,
1021 res->start, res->start + size - 1);
1022 }
1023 break;
1024 }
1025 if (res != NULL) {
1026 res->name = dev->full_name;
1027 res->end = res->start + size - 1;
1028 res->parent = NULL;
1029 res->sibling = NULL;
1030 res->child = NULL;
1031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033}
1034
1035void __init pci_setup_phb_io(struct pci_controller *hose, int primary)
1036{
1037 unsigned long size = hose->pci_io_size;
1038 unsigned long io_virt_offset;
1039 struct resource *res;
1040 struct device_node *isa_dn;
1041
1042 hose->io_base_virt = reserve_phb_iospace(size);
1043 DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1044 hose->global_number, hose->io_base_phys,
1045 (unsigned long) hose->io_base_virt);
1046
1047 if (primary) {
1048 pci_io_base = (unsigned long)hose->io_base_virt;
1049 isa_dn = of_find_node_by_type(NULL, "isa");
1050 if (isa_dn) {
1051 isa_io_base = pci_io_base;
1052 pci_process_ISA_OF_ranges(isa_dn, hose->io_base_phys,
1053 hose->io_base_virt);
1054 of_node_put(isa_dn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 }
1056 }
1057
1058 io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1059 res = &hose->io_resource;
1060 res->start += io_virt_offset;
1061 res->end += io_virt_offset;
1062}
1063
1064void __devinit pci_setup_phb_io_dynamic(struct pci_controller *hose,
1065 int primary)
1066{
1067 unsigned long size = hose->pci_io_size;
1068 unsigned long io_virt_offset;
1069 struct resource *res;
1070
1071 hose->io_base_virt = __ioremap(hose->io_base_phys, size,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001072 _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1074 hose->global_number, hose->io_base_phys,
1075 (unsigned long) hose->io_base_virt);
1076
1077 if (primary)
1078 pci_io_base = (unsigned long)hose->io_base_virt;
1079
1080 io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1081 res = &hose->io_resource;
1082 res->start += io_virt_offset;
1083 res->end += io_virt_offset;
1084}
1085
1086
1087static int get_bus_io_range(struct pci_bus *bus, unsigned long *start_phys,
1088 unsigned long *start_virt, unsigned long *size)
1089{
1090 struct pci_controller *hose = pci_bus_to_host(bus);
1091 struct pci_bus_region region;
1092 struct resource *res;
1093
1094 if (bus->self) {
1095 res = bus->resource[0];
1096 pcibios_resource_to_bus(bus->self, &region, res);
1097 *start_phys = hose->io_base_phys + region.start;
1098 *start_virt = (unsigned long) hose->io_base_virt +
1099 region.start;
1100 if (region.end > region.start)
1101 *size = region.end - region.start + 1;
1102 else {
1103 printk("%s(): unexpected region 0x%lx->0x%lx\n",
1104 __FUNCTION__, region.start, region.end);
1105 return 1;
1106 }
1107
1108 } else {
1109 /* Root Bus */
1110 res = &hose->io_resource;
1111 *start_phys = hose->io_base_phys;
1112 *start_virt = (unsigned long) hose->io_base_virt;
1113 if (res->end > res->start)
1114 *size = res->end - res->start + 1;
1115 else {
1116 printk("%s(): unexpected region 0x%lx->0x%lx\n",
1117 __FUNCTION__, res->start, res->end);
1118 return 1;
1119 }
1120 }
1121
1122 return 0;
1123}
1124
1125int unmap_bus_range(struct pci_bus *bus)
1126{
1127 unsigned long start_phys;
1128 unsigned long start_virt;
1129 unsigned long size;
1130
1131 if (!bus) {
1132 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1133 return 1;
1134 }
1135
1136 if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1137 return 1;
Benjamin Herrenschmidt4cb3cee2006-11-11 17:25:10 +11001138 if (__iounmap_explicit((void __iomem *) start_virt, size))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return 1;
1140
1141 return 0;
1142}
1143EXPORT_SYMBOL(unmap_bus_range);
1144
1145int remap_bus_range(struct pci_bus *bus)
1146{
1147 unsigned long start_phys;
1148 unsigned long start_virt;
1149 unsigned long size;
1150
1151 if (!bus) {
1152 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1153 return 1;
1154 }
1155
1156
1157 if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1158 return 1;
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +11001159 if (start_phys == 0)
1160 return 1;
Olof Johanssone884e9c2006-04-12 15:26:59 -05001161 printk(KERN_DEBUG "mapping IO %lx -> %lx, size: %lx\n", start_phys, start_virt, size);
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001162 if (__ioremap_explicit(start_phys, start_virt, size,
1163 _PAGE_NO_CACHE | _PAGE_GUARDED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 return 1;
1165
1166 return 0;
1167}
1168EXPORT_SYMBOL(remap_bus_range);
1169
Stephen Rothwell9623b5d2006-01-12 14:18:28 +11001170static void phbs_remap_io(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
1172 struct pci_controller *hose, *tmp;
1173
1174 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1175 remap_bus_range(hose->bus);
1176}
1177
Paul Mackerras42672922005-09-12 17:17:36 +10001178static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
1179{
1180 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Anton Blanchardc256f4b2006-04-07 15:23:03 +10001181 unsigned long offset;
Paul Mackerras42672922005-09-12 17:17:36 +10001182
1183 if (res->flags & IORESOURCE_IO) {
1184 offset = (unsigned long)hose->io_base_virt - pci_io_base;
1185
Anton Blanchardc256f4b2006-04-07 15:23:03 +10001186 res->start += offset;
1187 res->end += offset;
Paul Mackerras42672922005-09-12 17:17:36 +10001188 } else if (res->flags & IORESOURCE_MEM) {
1189 res->start += hose->pci_mem_offset;
1190 res->end += hose->pci_mem_offset;
1191 }
1192}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194void __devinit pcibios_fixup_device_resources(struct pci_dev *dev,
Paul Mackerras42672922005-09-12 17:17:36 +10001195 struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 /* Update device resources. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 int i;
1199
Paul Mackerras42672922005-09-12 17:17:36 +10001200 for (i = 0; i < PCI_NUM_RESOURCES; i++)
1201 if (dev->resource[i].flags)
1202 fixup_resource(&dev->resource[i], dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204EXPORT_SYMBOL(pcibios_fixup_device_resources);
1205
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001206void __devinit pcibios_setup_new_device(struct pci_dev *dev)
1207{
1208 struct dev_archdata *sd = &dev->dev.archdata;
1209
1210 sd->of_node = pci_device_to_OF_node(dev);
1211
1212 DBG("PCI device %s OF node: %s\n", pci_name(dev),
1213 sd->of_node ? sd->of_node->full_name : "<none>");
1214
1215 sd->dma_ops = pci_dma_ops;
1216#ifdef CONFIG_NUMA
1217 sd->numa_node = pcibus_to_node(dev->bus);
1218#else
1219 sd->numa_node = -1;
1220#endif
1221 if (ppc_md.pci_dma_dev_setup)
1222 ppc_md.pci_dma_dev_setup(dev);
1223}
1224EXPORT_SYMBOL(pcibios_setup_new_device);
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001225
Paul Mackerras42672922005-09-12 17:17:36 +10001226static void __devinit do_bus_setup(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Paul Mackerras42672922005-09-12 17:17:36 +10001228 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001230 if (ppc_md.pci_dma_bus_setup)
1231 ppc_md.pci_dma_bus_setup(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 list_for_each_entry(dev, &bus->devices, bus_list)
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001234 pcibios_setup_new_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +11001236 /* Read default IRQs and fixup if necessary */
1237 list_for_each_entry(dev, &bus->devices, bus_list) {
1238 pci_read_irq_line(dev);
1239 if (ppc_md.pci_irq_fixup)
1240 ppc_md.pci_irq_fixup(dev);
1241 }
Paul Mackerras42672922005-09-12 17:17:36 +10001242}
1243
1244void __devinit pcibios_fixup_bus(struct pci_bus *bus)
1245{
1246 struct pci_dev *dev = bus->self;
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +11001247 struct device_node *np;
1248
1249 np = pci_bus_to_OF_node(bus);
1250
1251 DBG("pcibios_fixup_bus(%s)\n", np ? np->full_name : "<???>");
Paul Mackerras42672922005-09-12 17:17:36 +10001252
1253 if (dev && pci_probe_only &&
1254 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
1255 /* This is a subordinate bridge */
1256
1257 pci_read_bridge_bases(bus);
1258 pcibios_fixup_device_resources(dev, bus);
1259 }
1260
1261 do_bus_setup(bus);
John Rosedad32bb2005-06-23 17:09:54 +10001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (!pci_probe_only)
1264 return;
1265
Paul Mackerras42672922005-09-12 17:17:36 +10001266 list_for_each_entry(dev, &bus->devices, bus_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1268 pcibios_fixup_device_resources(dev, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270EXPORT_SYMBOL(pcibios_fixup_bus);
1271
1272/*
1273 * Reads the interrupt pin to determine if interrupt is use by card.
1274 * If the interrupt is used, then gets the interrupt line from the
1275 * openfirmware and sets it in the pci_dev and pci_config line.
1276 */
1277int pci_read_irq_line(struct pci_dev *pci_dev)
1278{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001279 struct of_irq oirq;
1280 unsigned int virq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001282 DBG("Try to map irq for %s...\n", pci_name(pci_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001284#ifdef DEBUG
1285 memset(&oirq, 0xff, sizeof(oirq));
1286#endif
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001287 /* Try to get a mapping from the device-tree */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001288 if (of_irq_map_pci(pci_dev, &oirq)) {
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001289 u8 line, pin;
1290
1291 /* If that fails, lets fallback to what is in the config
1292 * space and map that through the default controller. We
1293 * also set the type to level low since that's what PCI
1294 * interrupts are. If your platform does differently, then
1295 * either provide a proper interrupt tree or don't use this
1296 * function.
1297 */
1298 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
1299 return -1;
1300 if (pin == 0)
1301 return -1;
1302 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
1303 line == 0xff) {
1304 return -1;
1305 }
1306 DBG(" -> no map ! Using irq line %d from PCI config\n", line);
1307
1308 virq = irq_create_mapping(NULL, line);
1309 if (virq != NO_IRQ)
1310 set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
1311 } else {
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001312 DBG(" -> got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
1313 oirq.size, oirq.specifier[0], oirq.specifier[1],
1314 oirq.controller->full_name);
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001315
1316 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
1317 oirq.size);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001318 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001319 if(virq == NO_IRQ) {
1320 DBG(" -> failed to map !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 return -1;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001322 }
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001323
1324 DBG(" -> mapped to linux irq %d\n", virq);
1325
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001326 pci_dev->irq = virq;
1327 pci_write_config_byte(pci_dev, PCI_INTERRUPT_LINE, virq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 return 0;
1330}
1331EXPORT_SYMBOL(pci_read_irq_line);
1332
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001333void pci_resource_to_user(const struct pci_dev *dev, int bar,
1334 const struct resource *rsrc,
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001335 resource_size_t *start, resource_size_t *end)
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001336{
1337 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001338 resource_size_t offset = 0;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001339
1340 if (hose == NULL)
1341 return;
1342
1343 if (rsrc->flags & IORESOURCE_IO)
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001344 offset = (unsigned long)hose->io_base_virt - pci_io_base;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001345
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001346 /* We pass a fully fixed up address to userland for MMIO instead of
1347 * a BAR value because X is lame and expects to be able to use that
1348 * to pass to /dev/mem !
1349 *
1350 * That means that we'll have potentially 64 bits values where some
1351 * userland apps only expect 32 (like X itself since it thinks only
1352 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
1353 * 32 bits CHRPs :-(
1354 *
1355 * Hopefully, the sysfs insterface is immune to that gunk. Once X
1356 * has been fixed (and the fix spread enough), we can re-enable the
1357 * 2 lines below and pass down a BAR value to userland. In that case
1358 * we'll also have to re-enable the matching code in
1359 * __pci_mmap_make_offset().
1360 *
1361 * BenH.
1362 */
1363#if 0
1364 else if (rsrc->flags & IORESOURCE_MEM)
1365 offset = hose->pci_mem_offset;
1366#endif
1367
1368 *start = rsrc->start - offset;
1369 *end = rsrc->end - offset;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001370}
1371
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001372struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
1373{
1374 if (!have_of)
1375 return NULL;
1376 while(node) {
1377 struct pci_controller *hose, *tmp;
1378 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1379 if (hose->arch_data == node)
1380 return hose;
1381 node = node->parent;
1382 }
1383 return NULL;
1384}
1385
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +11001386unsigned long pci_address_to_pio(phys_addr_t address)
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001387{
1388 struct pci_controller *hose, *tmp;
1389
1390 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1391 if (address >= hose->io_base_phys &&
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +11001392 address < (hose->io_base_phys + hose->pci_io_size)) {
1393 unsigned long base =
1394 (unsigned long)hose->io_base_virt - pci_io_base;
1395 return base + (address - hose->io_base_phys);
1396 }
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001397 }
1398 return (unsigned int)-1;
1399}
1400EXPORT_SYMBOL_GPL(pci_address_to_pio);
1401
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001402
1403#define IOBASE_BRIDGE_NUMBER 0
1404#define IOBASE_MEMORY 1
1405#define IOBASE_IO 2
1406#define IOBASE_ISA_IO 3
1407#define IOBASE_ISA_MEM 4
1408
1409long sys_pciconfig_iobase(long which, unsigned long in_bus,
1410 unsigned long in_devfn)
1411{
1412 struct pci_controller* hose;
1413 struct list_head *ln;
1414 struct pci_bus *bus = NULL;
1415 struct device_node *hose_node;
1416
1417 /* Argh ! Please forgive me for that hack, but that's the
1418 * simplest way to get existing XFree to not lockup on some
1419 * G5 machines... So when something asks for bus 0 io base
1420 * (bus 0 is HT root), we return the AGP one instead.
1421 */
Paul Mackerras799d6042005-11-10 13:37:51 +11001422 if (machine_is_compatible("MacRISC4"))
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001423 if (in_bus == 0)
1424 in_bus = 0xf0;
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001425
1426 /* That syscall isn't quite compatible with PCI domains, but it's
1427 * used on pre-domains setup. We return the first match
1428 */
1429
1430 for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) {
1431 bus = pci_bus_b(ln);
1432 if (in_bus >= bus->number && in_bus < (bus->number + bus->subordinate))
1433 break;
1434 bus = NULL;
1435 }
1436 if (bus == NULL || bus->sysdata == NULL)
1437 return -ENODEV;
1438
1439 hose_node = (struct device_node *)bus->sysdata;
1440 hose = PCI_DN(hose_node)->phb;
1441
1442 switch (which) {
1443 case IOBASE_BRIDGE_NUMBER:
1444 return (long)hose->first_busno;
1445 case IOBASE_MEMORY:
1446 return (long)hose->pci_mem_offset;
1447 case IOBASE_IO:
1448 return (long)hose->io_base_phys;
1449 case IOBASE_ISA_IO:
1450 return (long)isa_io_base;
1451 case IOBASE_ISA_MEM:
1452 return -EINVAL;
1453 }
1454
1455 return -EOPNOTSUPP;
1456}
Anton Blanchard357518f2006-06-10 20:53:06 +10001457
1458#ifdef CONFIG_NUMA
1459int pcibus_to_node(struct pci_bus *bus)
1460{
1461 struct pci_controller *phb = pci_bus_to_host(bus);
1462 return phb->node;
1463}
1464EXPORT_SYMBOL(pcibus_to_node);
1465#endif