blob: 73d509343d5bc36073ee8a4f4fe6ef0ef22b276a [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
Stephen Rothwell98747772007-03-04 16:58:39 +110073void set_pci_dma_ops(struct dma_mapping_ops *dma_ops)
74{
75 pci_dma_ops = dma_ops;
76}
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static void fixup_broken_pcnet32(struct pci_dev* dev)
79{
80 if ((dev->class>>8 == PCI_CLASS_NETWORK_ETHERNET)) {
81 dev->vendor = PCI_VENDOR_ID_AMD;
82 pci_write_config_word(dev, PCI_VENDOR_ID, PCI_VENDOR_ID_AMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
84}
85DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_TRIDENT, PCI_ANY_ID, fixup_broken_pcnet32);
86
87void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
88 struct resource *res)
89{
90 unsigned long offset = 0;
91 struct pci_controller *hose = pci_bus_to_host(dev->bus);
92
93 if (!hose)
94 return;
95
96 if (res->flags & IORESOURCE_IO)
97 offset = (unsigned long)hose->io_base_virt - pci_io_base;
98
99 if (res->flags & IORESOURCE_MEM)
100 offset = hose->pci_mem_offset;
101
102 region->start = res->start - offset;
103 region->end = res->end - offset;
104}
105
Dominik Brodowski43c34732005-08-04 18:06:21 -0700106void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
107 struct pci_bus_region *region)
108{
109 unsigned long offset = 0;
110 struct pci_controller *hose = pci_bus_to_host(dev->bus);
111
112 if (!hose)
113 return;
114
115 if (res->flags & IORESOURCE_IO)
116 offset = (unsigned long)hose->io_base_virt - pci_io_base;
117
118 if (res->flags & IORESOURCE_MEM)
119 offset = hose->pci_mem_offset;
120
121 res->start = region->start + offset;
122 res->end = region->end + offset;
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#ifdef CONFIG_HOTPLUG
126EXPORT_SYMBOL(pcibios_resource_to_bus);
Dominik Brodowski43c34732005-08-04 18:06:21 -0700127EXPORT_SYMBOL(pcibios_bus_to_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#endif
129
130/*
131 * We need to avoid collisions with `mirrored' VGA ports
132 * and other strange ISA hardware, so we always want the
133 * addresses to be allocated in the 0x000-0x0ff region
134 * modulo 0x400.
135 *
136 * Why? Because some silly external IO cards only decode
137 * the low 10 bits of the IO address. The 0x00-0xff region
138 * is reserved for motherboard devices that decode all 16
139 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
140 * but we want to try to avoid allocating at 0x2900-0x2bff
141 * which might have be mirrored at 0x0100-0x03ff..
142 */
143void pcibios_align_resource(void *data, struct resource *res,
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700144 resource_size_t size, resource_size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct pci_dev *dev = data;
147 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700148 resource_size_t start = res->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 unsigned long alignto;
150
151 if (res->flags & IORESOURCE_IO) {
152 unsigned long offset = (unsigned long)hose->io_base_virt -
153 pci_io_base;
154 /* Make sure we start at our min on all hoses */
155 if (start - offset < PCIBIOS_MIN_IO)
156 start = PCIBIOS_MIN_IO + offset;
157
158 /*
159 * Put everything into 0x00-0xff region modulo 0x400
160 */
161 if (start & 0x300)
162 start = (start + 0x3ff) & ~0x3ff;
163
164 } else if (res->flags & IORESOURCE_MEM) {
165 /* Make sure we start at our min on all hoses */
166 if (start - hose->pci_mem_offset < PCIBIOS_MIN_MEM)
167 start = PCIBIOS_MIN_MEM + hose->pci_mem_offset;
168
169 /* Align to multiple of size of minimum base. */
170 alignto = max(0x1000UL, align);
171 start = ALIGN(start, alignto);
172 }
173
174 res->start = start;
175}
176
177static DEFINE_SPINLOCK(hose_spinlock);
178
179/*
180 * pci_controller(phb) initialized common variables.
181 */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100182static void __devinit pci_setup_pci_controller(struct pci_controller *hose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 memset(hose, 0, sizeof(struct pci_controller));
185
186 spin_lock(&hose_spinlock);
187 hose->global_number = global_phb_number++;
188 list_add_tail(&hose->list_node, &hose_list);
189 spin_unlock(&hose_spinlock);
190}
191
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100192struct pci_controller * pcibios_alloc_controller(struct device_node *dev)
193{
194 struct pci_controller *phb;
195
196 if (mem_init_done)
197 phb = kmalloc(sizeof(struct pci_controller), GFP_KERNEL);
198 else
199 phb = alloc_bootmem(sizeof (struct pci_controller));
200 if (phb == NULL)
201 return NULL;
202 pci_setup_pci_controller(phb);
203 phb->arch_data = dev;
204 phb->is_dynamic = mem_init_done;
Anton Blanchard284a9402006-10-13 12:26:57 +1000205 if (dev) {
206 int nid = of_node_to_nid(dev);
207
208 if (nid < 0 || !node_online(nid))
209 nid = -1;
210
211 PHB_SET_NODE(phb, nid);
212 }
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100213 return phb;
214}
215
216void pcibios_free_controller(struct pci_controller *phb)
217{
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +1100218 spin_lock(&hose_spinlock);
219 list_del(&phb->list_node);
220 spin_unlock(&hose_spinlock);
221
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100222 if (phb->is_dynamic)
223 kfree(phb);
224}
225
Linas Vepstasfacf0782005-11-03 18:52:01 -0600226void __devinit pcibios_claim_one_bus(struct pci_bus *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 struct pci_dev *dev;
229 struct pci_bus *child_bus;
230
231 list_for_each_entry(dev, &b->devices, bus_list) {
232 int i;
233
234 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
235 struct resource *r = &dev->resource[i];
236
237 if (r->parent || !r->start || !r->flags)
238 continue;
239 pci_claim_resource(dev, i);
240 }
241 }
242
243 list_for_each_entry(child_bus, &b->children, node)
244 pcibios_claim_one_bus(child_bus);
245}
linasaf9deab2006-01-10 15:18:16 -0600246#ifdef CONFIG_HOTPLUG
247EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
248#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250static void __init pcibios_claim_of_setup(void)
251{
252 struct pci_bus *b;
253
Stephen Rothwelleecba332006-09-25 13:35:09 +1000254 if (firmware_has_feature(FW_FEATURE_ISERIES))
255 return;
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 list_for_each_entry(b, &pci_root_buses, node)
258 pcibios_claim_one_bus(b);
259}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Paul Mackerras42672922005-09-12 17:17:36 +1000261static u32 get_int_prop(struct device_node *np, const char *name, u32 def)
262{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000263 const u32 *prop;
Paul Mackerras42672922005-09-12 17:17:36 +1000264 int len;
265
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000266 prop = get_property(np, name, &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000267 if (prop && len >= 4)
268 return *prop;
269 return def;
270}
271
272static unsigned int pci_parse_of_flags(u32 addr0)
273{
274 unsigned int flags = 0;
275
276 if (addr0 & 0x02000000) {
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000277 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
278 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
279 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
Paul Mackerras42672922005-09-12 17:17:36 +1000280 if (addr0 & 0x40000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000281 flags |= IORESOURCE_PREFETCH
282 | PCI_BASE_ADDRESS_MEM_PREFETCH;
Paul Mackerras42672922005-09-12 17:17:36 +1000283 } else if (addr0 & 0x01000000)
Paul Mackerrasd79e7432005-09-21 14:14:22 +1000284 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
Paul Mackerras42672922005-09-12 17:17:36 +1000285 return flags;
286}
287
288#define GET_64BIT(prop, i) ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
289
290static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev)
291{
292 u64 base, size;
293 unsigned int flags;
294 struct resource *res;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000295 const u32 *addrs;
296 u32 i;
Paul Mackerras42672922005-09-12 17:17:36 +1000297 int proplen;
298
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000299 addrs = get_property(node, "assigned-addresses", &proplen);
Paul Mackerras42672922005-09-12 17:17:36 +1000300 if (!addrs)
301 return;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100302 DBG(" parse addresses (%d bytes) @ %p\n", proplen, addrs);
Paul Mackerras42672922005-09-12 17:17:36 +1000303 for (; proplen >= 20; proplen -= 20, addrs += 5) {
304 flags = pci_parse_of_flags(addrs[0]);
305 if (!flags)
306 continue;
307 base = GET_64BIT(addrs, 1);
308 size = GET_64BIT(addrs, 3);
309 if (!size)
310 continue;
311 i = addrs[0] & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100312 DBG(" base: %llx, size: %llx, i: %x\n",
313 (unsigned long long)base, (unsigned long long)size, i);
314
Paul Mackerras42672922005-09-12 17:17:36 +1000315 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
316 res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
317 } else if (i == dev->rom_base_reg) {
318 res = &dev->resource[PCI_ROM_RESOURCE];
319 flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
320 } else {
321 printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
322 continue;
323 }
324 res->start = base;
325 res->end = base + size - 1;
326 res->flags = flags;
327 res->name = pci_name(dev);
328 fixup_resource(res, dev);
329 }
330}
331
John Roseead83712005-11-04 15:30:56 -0600332struct pci_dev *of_create_pci_dev(struct device_node *node,
333 struct pci_bus *bus, int devfn)
Paul Mackerras42672922005-09-12 17:17:36 +1000334{
335 struct pci_dev *dev;
336 const char *type;
337
Yan Burmanf8485352006-12-02 13:26:57 +0200338 dev = kzalloc(sizeof(struct pci_dev), GFP_KERNEL);
Paul Mackerras42672922005-09-12 17:17:36 +1000339 if (!dev)
340 return NULL;
341 type = get_property(node, "device_type", NULL);
342 if (type == NULL)
343 type = "";
344
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100345 DBG(" create device, devfn: %x, type: %s\n", devfn, type);
346
Paul Mackerras42672922005-09-12 17:17:36 +1000347 dev->bus = bus;
348 dev->sysdata = node;
349 dev->dev.parent = bus->bridge;
350 dev->dev.bus = &pci_bus_type;
351 dev->devfn = devfn;
352 dev->multifunction = 0; /* maybe a lie? */
353
354 dev->vendor = get_int_prop(node, "vendor-id", 0xffff);
355 dev->device = get_int_prop(node, "device-id", 0xffff);
356 dev->subsystem_vendor = get_int_prop(node, "subsystem-vendor-id", 0);
357 dev->subsystem_device = get_int_prop(node, "subsystem-id", 0);
358
Benjamin Herrenschmidt9d17a5c2006-01-10 14:50:37 +1100359 dev->cfg_size = pci_cfg_space_size(dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000360
361 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
362 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
363 dev->class = get_int_prop(node, "class-code", 0);
364
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100365 DBG(" class: 0x%x\n", dev->class);
366
Paul Mackerras42672922005-09-12 17:17:36 +1000367 dev->current_state = 4; /* unknown power state */
Linas Vepstasbb63ab12006-12-19 14:00:34 -0600368 dev->error_state = pci_channel_io_normal;
Paul Mackerras42672922005-09-12 17:17:36 +1000369
Jake Moilanenbb53bb32006-06-07 16:05:46 -0500370 if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
Paul Mackerras42672922005-09-12 17:17:36 +1000371 /* a PCI-PCI bridge */
372 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
373 dev->rom_base_reg = PCI_ROM_ADDRESS1;
374 } else if (!strcmp(type, "cardbus")) {
375 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
376 } else {
377 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
378 dev->rom_base_reg = PCI_ROM_ADDRESS;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000379 /* Maybe do a default OF mapping here */
Paul Mackerras42672922005-09-12 17:17:36 +1000380 dev->irq = NO_IRQ;
Paul Mackerras42672922005-09-12 17:17:36 +1000381 }
382
383 pci_parse_of_addrs(node, dev);
384
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100385 DBG(" adding to system ...\n");
386
Paul Mackerras42672922005-09-12 17:17:36 +1000387 pci_device_add(dev, bus);
388
Paul Mackerras42672922005-09-12 17:17:36 +1000389 return dev;
390}
John Roseead83712005-11-04 15:30:56 -0600391EXPORT_SYMBOL(of_create_pci_dev);
Paul Mackerras42672922005-09-12 17:17:36 +1000392
John Roseead83712005-11-04 15:30:56 -0600393void __devinit of_scan_bus(struct device_node *node,
Paul Mackerras42672922005-09-12 17:17:36 +1000394 struct pci_bus *bus)
395{
396 struct device_node *child = NULL;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000397 const u32 *reg;
Paul Mackerras42672922005-09-12 17:17:36 +1000398 int reglen, devfn;
399 struct pci_dev *dev;
400
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100401 DBG("of_scan_bus(%s) bus no %d... \n", node->full_name, bus->number);
402
Paul Mackerras42672922005-09-12 17:17:36 +1000403 while ((child = of_get_next_child(node, child)) != NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100404 DBG(" * %s\n", child->full_name);
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000405 reg = get_property(child, "reg", &reglen);
Paul Mackerras42672922005-09-12 17:17:36 +1000406 if (reg == NULL || reglen < 20)
407 continue;
408 devfn = (reg[0] >> 8) & 0xff;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100409
Paul Mackerras42672922005-09-12 17:17:36 +1000410 /* create a new pci_dev for this device */
411 dev = of_create_pci_dev(child, bus, devfn);
412 if (!dev)
413 continue;
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100414 DBG("dev header type: %x\n", dev->hdr_type);
415
Paul Mackerras42672922005-09-12 17:17:36 +1000416 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
417 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
418 of_scan_pci_bridge(child, dev);
419 }
420
421 do_bus_setup(bus);
422}
John Roseead83712005-11-04 15:30:56 -0600423EXPORT_SYMBOL(of_scan_bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000424
John Roseead83712005-11-04 15:30:56 -0600425void __devinit of_scan_pci_bridge(struct device_node *node,
426 struct pci_dev *dev)
Paul Mackerras42672922005-09-12 17:17:36 +1000427{
428 struct pci_bus *bus;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000429 const u32 *busrange, *ranges;
Paul Mackerras42672922005-09-12 17:17:36 +1000430 int len, i, mode;
431 struct resource *res;
432 unsigned int flags;
433 u64 size;
434
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100435 DBG("of_scan_pci_bridge(%s)\n", node->full_name);
436
Paul Mackerras42672922005-09-12 17:17:36 +1000437 /* parse bus-range property */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000438 busrange = get_property(node, "bus-range", &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000439 if (busrange == NULL || len != 8) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100440 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000441 node->full_name);
442 return;
443 }
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000444 ranges = get_property(node, "ranges", &len);
Paul Mackerras42672922005-09-12 17:17:36 +1000445 if (ranges == NULL) {
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100446 printk(KERN_DEBUG "Can't get ranges for PCI-PCI bridge %s\n",
Paul Mackerras42672922005-09-12 17:17:36 +1000447 node->full_name);
448 return;
449 }
450
451 bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
452 if (!bus) {
453 printk(KERN_ERR "Failed to create pci bus for %s\n",
454 node->full_name);
455 return;
456 }
457
458 bus->primary = dev->bus->number;
459 bus->subordinate = busrange[1];
460 bus->bridge_ctl = 0;
461 bus->sysdata = node;
462
463 /* parse ranges property */
464 /* PCI #address-cells == 3 and #size-cells == 2 always */
465 res = &dev->resource[PCI_BRIDGE_RESOURCES];
466 for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
467 res->flags = 0;
468 bus->resource[i] = res;
469 ++res;
470 }
471 i = 1;
472 for (; len >= 32; len -= 32, ranges += 8) {
473 flags = pci_parse_of_flags(ranges[0]);
474 size = GET_64BIT(ranges, 6);
475 if (flags == 0 || size == 0)
476 continue;
477 if (flags & IORESOURCE_IO) {
478 res = bus->resource[0];
479 if (res->flags) {
480 printk(KERN_ERR "PCI: ignoring extra I/O range"
481 " for bridge %s\n", node->full_name);
482 continue;
483 }
484 } else {
485 if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
486 printk(KERN_ERR "PCI: too many memory ranges"
487 " for bridge %s\n", node->full_name);
488 continue;
489 }
490 res = bus->resource[i];
491 ++i;
492 }
493 res->start = GET_64BIT(ranges, 1);
494 res->end = res->start + size - 1;
495 res->flags = flags;
496 fixup_resource(res, dev);
497 }
498 sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
499 bus->number);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100500 DBG(" bus name: %s\n", bus->name);
Paul Mackerras42672922005-09-12 17:17:36 +1000501
502 mode = PCI_PROBE_NORMAL;
503 if (ppc_md.pci_probe_mode)
504 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100505 DBG(" probe mode: %d\n", mode);
506
Paul Mackerras42672922005-09-12 17:17:36 +1000507 if (mode == PCI_PROBE_DEVTREE)
508 of_scan_bus(node, bus);
509 else if (mode == PCI_PROBE_NORMAL)
510 pci_scan_child_bus(bus);
511}
John Roseead83712005-11-04 15:30:56 -0600512EXPORT_SYMBOL(of_scan_pci_bridge);
Paul Mackerras42672922005-09-12 17:17:36 +1000513
John Roseead83712005-11-04 15:30:56 -0600514void __devinit scan_phb(struct pci_controller *hose)
Paul Mackerras42672922005-09-12 17:17:36 +1000515{
516 struct pci_bus *bus;
517 struct device_node *node = hose->arch_data;
518 int i, mode;
519 struct resource *res;
520
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100521 DBG("Scanning PHB %s\n", node ? node->full_name : "<NO NAME>");
522
Benjamin Herrenschmidt803d4572006-11-11 17:25:07 +1100523 bus = pci_create_bus(hose->parent, hose->first_busno, hose->ops, node);
Paul Mackerras42672922005-09-12 17:17:36 +1000524 if (bus == NULL) {
525 printk(KERN_ERR "Failed to create bus for PCI domain %04x\n",
526 hose->global_number);
527 return;
528 }
529 bus->secondary = hose->first_busno;
530 hose->bus = bus;
531
532 bus->resource[0] = res = &hose->io_resource;
533 if (res->flags && request_resource(&ioport_resource, res))
534 printk(KERN_ERR "Failed to request PCI IO region "
535 "on PCI domain %04x\n", hose->global_number);
536
537 for (i = 0; i < 3; ++i) {
538 res = &hose->mem_resources[i];
539 bus->resource[i+1] = res;
540 if (res->flags && request_resource(&iomem_resource, res))
541 printk(KERN_ERR "Failed to request PCI memory region "
542 "on PCI domain %04x\n", hose->global_number);
543 }
544
545 mode = PCI_PROBE_NORMAL;
s.hauer@pengutronix.de99a565b2006-11-02 13:56:06 +0100546
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100547 if (node && ppc_md.pci_probe_mode)
Paul Mackerras42672922005-09-12 17:17:36 +1000548 mode = ppc_md.pci_probe_mode(bus);
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100549 DBG(" probe mode: %d\n", mode);
Paul Mackerras42672922005-09-12 17:17:36 +1000550 if (mode == PCI_PROBE_DEVTREE) {
551 bus->subordinate = hose->last_busno;
552 of_scan_bus(node, bus);
553 }
s.hauer@pengutronix.de99a565b2006-11-02 13:56:06 +0100554
Paul Mackerras42672922005-09-12 17:17:36 +1000555 if (mode == PCI_PROBE_NORMAL)
556 hose->last_busno = bus->subordinate = pci_scan_child_bus(bus);
Paul Mackerras42672922005-09-12 17:17:36 +1000557}
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559static int __init pcibios_init(void)
560{
561 struct pci_controller *hose, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 /* For now, override phys_mem_access_prot. If we need it,
564 * later, we may move that initialization to each ppc_md
565 */
566 ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot;
567
Stephen Rothwelleecba332006-09-25 13:35:09 +1000568 if (firmware_has_feature(FW_FEATURE_ISERIES))
569 iSeries_pcibios_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Olof Johanssone884e9c2006-04-12 15:26:59 -0500571 printk(KERN_DEBUG "PCI: Probing PCI hardware\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /* Scan all of the recorded PCI controllers. */
John Rose92eb4602006-03-14 17:46:45 -0600574 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
Paul Mackerras42672922005-09-12 17:17:36 +1000575 scan_phb(hose);
John Rose92eb4602006-03-14 17:46:45 -0600576 pci_bus_add_devices(hose->bus);
577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Stephen Rothwelleecba332006-09-25 13:35:09 +1000579 if (!firmware_has_feature(FW_FEATURE_ISERIES)) {
580 if (pci_probe_only)
581 pcibios_claim_of_setup();
582 else
583 /* FIXME: `else' will be removed when
584 pci_assign_unassigned_resources() is able to work
585 correctly with [partially] allocated PCI tree. */
586 pci_assign_unassigned_resources();
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 /* Call machine dependent final fixup */
590 if (ppc_md.pcibios_fixup)
591 ppc_md.pcibios_fixup();
592
593 /* Cache the location of the ISA bridge (if we have one) */
594 ppc64_isabridge_dev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
595 if (ppc64_isabridge_dev != NULL)
Olof Johanssone884e9c2006-04-12 15:26:59 -0500596 printk(KERN_DEBUG "ISA bridge at %s\n", pci_name(ppc64_isabridge_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Stephen Rothwelleecba332006-09-25 13:35:09 +1000598 if (!firmware_has_feature(FW_FEATURE_ISERIES))
599 /* map in PCI I/O space */
600 phbs_remap_io();
Benjamin Herrenschmidt0f34f492005-11-10 15:04:24 +1100601
Olof Johanssone884e9c2006-04-12 15:26:59 -0500602 printk(KERN_DEBUG "PCI: Probing PCI hardware done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 return 0;
605}
606
607subsys_initcall(pcibios_init);
608
609char __init *pcibios_setup(char *str)
610{
611 return str;
612}
613
614int pcibios_enable_device(struct pci_dev *dev, int mask)
615{
616 u16 cmd, oldcmd;
617 int i;
618
619 pci_read_config_word(dev, PCI_COMMAND, &cmd);
620 oldcmd = cmd;
621
622 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
623 struct resource *res = &dev->resource[i];
624
625 /* Only set up the requested stuff */
626 if (!(mask & (1<<i)))
627 continue;
628
629 if (res->flags & IORESOURCE_IO)
630 cmd |= PCI_COMMAND_IO;
631 if (res->flags & IORESOURCE_MEM)
632 cmd |= PCI_COMMAND_MEMORY;
633 }
634
635 if (cmd != oldcmd) {
636 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
637 pci_name(dev), cmd);
638 /* Enable the appropriate bits in the PCI command register. */
639 pci_write_config_word(dev, PCI_COMMAND, cmd);
640 }
641 return 0;
642}
643
644/*
645 * Return the domain number for this bus.
646 */
647int pci_domain_nr(struct pci_bus *bus)
648{
Stephen Rothwelleecba332006-09-25 13:35:09 +1000649 if (firmware_has_feature(FW_FEATURE_ISERIES))
650 return 0;
651 else {
652 struct pci_controller *hose = pci_bus_to_host(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Stephen Rothwelleecba332006-09-25 13:35:09 +1000654 return hose->global_number;
655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
658EXPORT_SYMBOL(pci_domain_nr);
659
660/* Decide whether to display the domain number in /proc */
661int pci_proc_domain(struct pci_bus *bus)
662{
Stephen Rothwelleecba332006-09-25 13:35:09 +1000663 if (firmware_has_feature(FW_FEATURE_ISERIES))
664 return 0;
665 else {
666 struct pci_controller *hose = pci_bus_to_host(bus);
667 return hose->buid;
668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
671/*
672 * Platform support for /proc/bus/pci/X/Y mmap()s,
673 * modelled on the sparc64 implementation by Dave Miller.
674 * -- paulus.
675 */
676
677/*
678 * Adjust vm_pgoff of VMA such that it is the physical page offset
679 * corresponding to the 32-bit pci bus offset for DEV requested by the user.
680 *
681 * Basically, the user finds the base address for his device which he wishes
682 * to mmap. They read the 32-bit value from the config space base register,
683 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
684 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
685 *
686 * Returns negative error code on failure, zero on success.
687 */
688static struct resource *__pci_mmap_make_offset(struct pci_dev *dev,
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100689 resource_size_t *offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 enum pci_mmap_state mmap_state)
691{
692 struct pci_controller *hose = pci_bus_to_host(dev->bus);
693 unsigned long io_offset = 0;
694 int i, res_bit;
695
696 if (hose == 0)
697 return NULL; /* should never happen */
698
699 /* If memory, add on the PCI bridge address offset */
700 if (mmap_state == pci_mmap_mem) {
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100701#if 0 /* See comment in pci_resource_to_user() for why this is disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 *offset += hose->pci_mem_offset;
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100703#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 res_bit = IORESOURCE_MEM;
705 } else {
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000706 io_offset = (unsigned long)hose->io_base_virt - pci_io_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 *offset += io_offset;
708 res_bit = IORESOURCE_IO;
709 }
710
711 /*
712 * Check that the offset requested corresponds to one of the
713 * resources of the device.
714 */
715 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
716 struct resource *rp = &dev->resource[i];
717 int flags = rp->flags;
718
719 /* treat ROM as memory (should be already) */
720 if (i == PCI_ROM_RESOURCE)
721 flags |= IORESOURCE_MEM;
722
723 /* Active and same type? */
724 if ((flags & res_bit) == 0)
725 continue;
726
727 /* In the range of this resource? */
728 if (*offset < (rp->start & PAGE_MASK) || *offset > rp->end)
729 continue;
730
731 /* found it! construct the final physical address */
732 if (mmap_state == pci_mmap_io)
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000733 *offset += hose->io_base_phys - io_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return rp;
735 }
736
737 return NULL;
738}
739
740/*
741 * Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
742 * device mapping.
743 */
744static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
745 pgprot_t protection,
746 enum pci_mmap_state mmap_state,
747 int write_combine)
748{
749 unsigned long prot = pgprot_val(protection);
750
751 /* Write combine is always 0 on non-memory space mappings. On
752 * memory space, if the user didn't pass 1, we check for a
753 * "prefetchable" resource. This is a bit hackish, but we use
754 * this to workaround the inability of /sysfs to provide a write
755 * combine bit
756 */
757 if (mmap_state != pci_mmap_mem)
758 write_combine = 0;
759 else if (write_combine == 0) {
760 if (rp->flags & IORESOURCE_PREFETCH)
761 write_combine = 1;
762 }
763
764 /* XXX would be nice to have a way to ask for write-through */
765 prot |= _PAGE_NO_CACHE;
766 if (write_combine)
767 prot &= ~_PAGE_GUARDED;
768 else
769 prot |= _PAGE_GUARDED;
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return __pgprot(prot);
772}
773
774/*
775 * This one is used by /dev/mem and fbdev who have no clue about the
776 * PCI device, it tries to find the PCI device first and calls the
777 * above routine
778 */
779pgprot_t pci_phys_mem_access_prot(struct file *file,
Roland Dreier8b150472005-10-28 17:46:18 -0700780 unsigned long pfn,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 unsigned long size,
782 pgprot_t protection)
783{
784 struct pci_dev *pdev = NULL;
785 struct resource *found = NULL;
786 unsigned long prot = pgprot_val(protection);
Roland Dreier8b150472005-10-28 17:46:18 -0700787 unsigned long offset = pfn << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 int i;
789
Roland Dreier8b150472005-10-28 17:46:18 -0700790 if (page_is_ram(pfn))
David Gibson1f8d4192005-05-05 16:15:13 -0700791 return __pgprot(prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 prot |= _PAGE_NO_CACHE | _PAGE_GUARDED;
794
795 for_each_pci_dev(pdev) {
796 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
797 struct resource *rp = &pdev->resource[i];
798 int flags = rp->flags;
799
800 /* Active and same type? */
801 if ((flags & IORESOURCE_MEM) == 0)
802 continue;
803 /* In the range of this resource? */
804 if (offset < (rp->start & PAGE_MASK) ||
805 offset > rp->end)
806 continue;
807 found = rp;
808 break;
809 }
810 if (found)
811 break;
812 }
813 if (found) {
814 if (found->flags & IORESOURCE_PREFETCH)
815 prot &= ~_PAGE_GUARDED;
816 pci_dev_put(pdev);
817 }
818
819 DBG("non-PCI map for %lx, prot: %lx\n", offset, prot);
820
821 return __pgprot(prot);
822}
823
824
825/*
826 * Perform the actual remap of the pages for a PCI device mapping, as
827 * appropriate for this architecture. The region in the process to map
828 * is described by vm_start and vm_end members of VMA, the base physical
829 * address is found in vm_pgoff.
830 * The pci device structure is provided so that architectures may make mapping
831 * decisions on a per-device or per-bus basis.
832 *
833 * Returns a negative error code on failure, zero on success.
834 */
835int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100836 enum pci_mmap_state mmap_state, int write_combine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +1100838 resource_size_t offset = vma->vm_pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 struct resource *rp;
840 int ret;
841
842 rp = __pci_mmap_make_offset(dev, &offset, mmap_state);
843 if (rp == NULL)
844 return -EINVAL;
845
846 vma->vm_pgoff = offset >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 vma->vm_page_prot = __pci_mmap_set_pgprot(dev, rp,
848 vma->vm_page_prot,
849 mmap_state, write_combine);
850
851 ret = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
852 vma->vm_end - vma->vm_start, vma->vm_page_prot);
853
854 return ret;
855}
856
Stephen Rothwellefbd3862006-05-19 16:53:11 +1000857static ssize_t pci_show_devspec(struct device *dev,
858 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 struct pci_dev *pdev;
861 struct device_node *np;
862
863 pdev = to_pci_dev (dev);
864 np = pci_device_to_OF_node(pdev);
865 if (np == NULL || np->full_name == NULL)
866 return 0;
867 return sprintf(buf, "%s", np->full_name);
868}
869static DEVICE_ATTR(devspec, S_IRUGO, pci_show_devspec, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871void pcibios_add_platform_entries(struct pci_dev *pdev)
872{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 device_create_file(&pdev->dev, &dev_attr_devspec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876#define ISA_SPACE_MASK 0x1
877#define ISA_SPACE_IO 0x1
878
879static void __devinit pci_process_ISA_OF_ranges(struct device_node *isa_node,
880 unsigned long phb_io_base_phys,
881 void __iomem * phb_io_base_virt)
882{
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +1100883 /* Remove these asap */
884
885 struct pci_address {
886 u32 a_hi;
887 u32 a_mid;
888 u32 a_lo;
889 };
890
891 struct isa_address {
892 u32 a_hi;
893 u32 a_lo;
894 };
895
896 struct isa_range {
897 struct isa_address isa_addr;
898 struct pci_address pci_addr;
899 unsigned int size;
900 };
901
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000902 const struct isa_range *range;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 unsigned long pci_addr;
904 unsigned int isa_addr;
905 unsigned int size;
906 int rlen = 0;
907
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000908 range = get_property(isa_node, "ranges", &rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (range == NULL || (rlen < sizeof(struct isa_range))) {
910 printk(KERN_ERR "no ISA ranges or unexpected isa range size,"
911 "mapping 64k\n");
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700912 __ioremap_explicit(phb_io_base_phys,
913 (unsigned long)phb_io_base_virt,
914 0x10000, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 return;
916 }
917
918 /* From "ISA Binding to 1275"
919 * The ranges property is laid out as an array of elements,
920 * each of which comprises:
921 * cells 0 - 1: an ISA address
922 * cells 2 - 4: a PCI address
923 * (size depending on dev->n_addr_cells)
924 * cell 5: the size of the range
925 */
926 if ((range->isa_addr.a_hi && ISA_SPACE_MASK) == ISA_SPACE_IO) {
927 isa_addr = range->isa_addr.a_lo;
928 pci_addr = (unsigned long) range->pci_addr.a_mid << 32 |
929 range->pci_addr.a_lo;
930
931 /* Assume these are both zero */
932 if ((pci_addr != 0) || (isa_addr != 0)) {
933 printk(KERN_ERR "unexpected isa to pci mapping: %s\n",
934 __FUNCTION__);
935 return;
936 }
937
938 size = PAGE_ALIGN(range->size);
939
940 __ioremap_explicit(phb_io_base_phys,
941 (unsigned long) phb_io_base_virt,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700942 size, _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944}
945
946void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose,
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000947 struct device_node *dev, int prim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000949 const unsigned int *ranges;
950 unsigned int pci_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 unsigned long size;
952 int rlen = 0;
953 int memno = 0;
954 struct resource *res;
955 int np, na = prom_n_addr_cells(dev);
956 unsigned long pci_addr, cpu_phys_addr;
957
958 np = na + 5;
959
960 /* From "PCI Binding to 1275"
961 * The ranges property is laid out as an array of elements,
962 * each of which comprises:
963 * cells 0 - 2: a PCI address
964 * cells 3 or 3+4: a CPU physical address
965 * (size depending on dev->n_addr_cells)
966 * cells 4+5 or 5+6: the size of the range
967 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000968 ranges = get_property(dev, "ranges", &rlen);
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100969 if (ranges == NULL)
970 return;
971 hose->io_base_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 while ((rlen -= np * sizeof(unsigned int)) >= 0) {
973 res = NULL;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000974 pci_space = ranges[0];
975 pci_addr = ((unsigned long)ranges[1] << 32) | ranges[2];
Benjamin Herrenschmidte557a1c2006-11-11 17:25:05 +1100976 cpu_phys_addr = of_translate_address(dev, &ranges[3]);
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000977 size = ((unsigned long)ranges[na+3] << 32) | ranges[na+4];
978 ranges += np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (size == 0)
980 continue;
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000981
982 /* Now consume following elements while they are contiguous */
983 while (rlen >= np * sizeof(unsigned int)) {
984 unsigned long addr, phys;
985
986 if (ranges[0] != pci_space)
987 break;
988 addr = ((unsigned long)ranges[1] << 32) | ranges[2];
989 phys = ranges[3];
990 if (na >= 2)
991 phys = (phys << 32) | ranges[4];
992 if (addr != pci_addr + size ||
993 phys != cpu_phys_addr + size)
994 break;
995
996 size += ((unsigned long)ranges[na+3] << 32)
997 | ranges[na+4];
998 ranges += np;
999 rlen -= np * sizeof(unsigned int);
1000 }
1001
1002 switch ((pci_space >> 24) & 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 case 1: /* I/O space */
1004 hose->io_base_phys = cpu_phys_addr;
1005 hose->pci_io_size = size;
1006
1007 res = &hose->io_resource;
1008 res->flags = IORESOURCE_IO;
1009 res->start = pci_addr;
1010 DBG("phb%d: IO 0x%lx -> 0x%lx\n", hose->global_number,
1011 res->start, res->start + size - 1);
1012 break;
1013 case 2: /* memory space */
1014 memno = 0;
1015 while (memno < 3 && hose->mem_resources[memno].flags)
1016 ++memno;
1017
1018 if (memno == 0)
1019 hose->pci_mem_offset = cpu_phys_addr - pci_addr;
1020 if (memno < 3) {
1021 res = &hose->mem_resources[memno];
1022 res->flags = IORESOURCE_MEM;
1023 res->start = cpu_phys_addr;
1024 DBG("phb%d: MEM 0x%lx -> 0x%lx\n", hose->global_number,
1025 res->start, res->start + size - 1);
1026 }
1027 break;
1028 }
1029 if (res != NULL) {
1030 res->name = dev->full_name;
1031 res->end = res->start + size - 1;
1032 res->parent = NULL;
1033 res->sibling = NULL;
1034 res->child = NULL;
1035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037}
1038
1039void __init pci_setup_phb_io(struct pci_controller *hose, int primary)
1040{
1041 unsigned long size = hose->pci_io_size;
1042 unsigned long io_virt_offset;
1043 struct resource *res;
1044 struct device_node *isa_dn;
1045
1046 hose->io_base_virt = reserve_phb_iospace(size);
1047 DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1048 hose->global_number, hose->io_base_phys,
1049 (unsigned long) hose->io_base_virt);
1050
1051 if (primary) {
1052 pci_io_base = (unsigned long)hose->io_base_virt;
1053 isa_dn = of_find_node_by_type(NULL, "isa");
1054 if (isa_dn) {
1055 isa_io_base = pci_io_base;
1056 pci_process_ISA_OF_ranges(isa_dn, hose->io_base_phys,
1057 hose->io_base_virt);
1058 of_node_put(isa_dn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060 }
1061
1062 io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1063 res = &hose->io_resource;
1064 res->start += io_virt_offset;
1065 res->end += io_virt_offset;
1066}
1067
1068void __devinit pci_setup_phb_io_dynamic(struct pci_controller *hose,
1069 int primary)
1070{
1071 unsigned long size = hose->pci_io_size;
1072 unsigned long io_virt_offset;
1073 struct resource *res;
1074
1075 hose->io_base_virt = __ioremap(hose->io_base_phys, size,
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001076 _PAGE_NO_CACHE | _PAGE_GUARDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 DBG("phb%d io_base_phys 0x%lx io_base_virt 0x%lx\n",
1078 hose->global_number, hose->io_base_phys,
1079 (unsigned long) hose->io_base_virt);
1080
1081 if (primary)
1082 pci_io_base = (unsigned long)hose->io_base_virt;
1083
1084 io_virt_offset = (unsigned long)hose->io_base_virt - pci_io_base;
1085 res = &hose->io_resource;
1086 res->start += io_virt_offset;
1087 res->end += io_virt_offset;
1088}
1089
1090
1091static int get_bus_io_range(struct pci_bus *bus, unsigned long *start_phys,
1092 unsigned long *start_virt, unsigned long *size)
1093{
1094 struct pci_controller *hose = pci_bus_to_host(bus);
1095 struct pci_bus_region region;
1096 struct resource *res;
1097
1098 if (bus->self) {
1099 res = bus->resource[0];
1100 pcibios_resource_to_bus(bus->self, &region, res);
1101 *start_phys = hose->io_base_phys + region.start;
1102 *start_virt = (unsigned long) hose->io_base_virt +
1103 region.start;
1104 if (region.end > region.start)
1105 *size = region.end - region.start + 1;
1106 else {
1107 printk("%s(): unexpected region 0x%lx->0x%lx\n",
1108 __FUNCTION__, region.start, region.end);
1109 return 1;
1110 }
1111
1112 } else {
1113 /* Root Bus */
1114 res = &hose->io_resource;
1115 *start_phys = hose->io_base_phys;
1116 *start_virt = (unsigned long) hose->io_base_virt;
1117 if (res->end > res->start)
1118 *size = res->end - res->start + 1;
1119 else {
1120 printk("%s(): unexpected region 0x%lx->0x%lx\n",
1121 __FUNCTION__, res->start, res->end);
1122 return 1;
1123 }
1124 }
1125
1126 return 0;
1127}
1128
1129int unmap_bus_range(struct pci_bus *bus)
1130{
1131 unsigned long start_phys;
1132 unsigned long start_virt;
1133 unsigned long size;
1134
1135 if (!bus) {
1136 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1137 return 1;
1138 }
1139
1140 if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1141 return 1;
Benjamin Herrenschmidt4cb3cee2006-11-11 17:25:10 +11001142 if (__iounmap_explicit((void __iomem *) start_virt, size))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return 1;
1144
1145 return 0;
1146}
1147EXPORT_SYMBOL(unmap_bus_range);
1148
1149int remap_bus_range(struct pci_bus *bus)
1150{
1151 unsigned long start_phys;
1152 unsigned long start_virt;
1153 unsigned long size;
1154
1155 if (!bus) {
1156 printk(KERN_ERR "%s() expected bus\n", __FUNCTION__);
1157 return 1;
1158 }
1159
1160
1161 if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
1162 return 1;
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +11001163 if (start_phys == 0)
1164 return 1;
Olof Johanssone884e9c2006-04-12 15:26:59 -05001165 printk(KERN_DEBUG "mapping IO %lx -> %lx, size: %lx\n", start_phys, start_virt, size);
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -07001166 if (__ioremap_explicit(start_phys, start_virt, size,
1167 _PAGE_NO_CACHE | _PAGE_GUARDED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return 1;
1169
1170 return 0;
1171}
1172EXPORT_SYMBOL(remap_bus_range);
1173
Stephen Rothwell9623b5d2006-01-12 14:18:28 +11001174static void phbs_remap_io(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
1176 struct pci_controller *hose, *tmp;
1177
1178 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1179 remap_bus_range(hose->bus);
1180}
1181
Paul Mackerras42672922005-09-12 17:17:36 +10001182static void __devinit fixup_resource(struct resource *res, struct pci_dev *dev)
1183{
1184 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Anton Blanchardc256f4b2006-04-07 15:23:03 +10001185 unsigned long offset;
Paul Mackerras42672922005-09-12 17:17:36 +10001186
1187 if (res->flags & IORESOURCE_IO) {
1188 offset = (unsigned long)hose->io_base_virt - pci_io_base;
1189
Anton Blanchardc256f4b2006-04-07 15:23:03 +10001190 res->start += offset;
1191 res->end += offset;
Paul Mackerras42672922005-09-12 17:17:36 +10001192 } else if (res->flags & IORESOURCE_MEM) {
1193 res->start += hose->pci_mem_offset;
1194 res->end += hose->pci_mem_offset;
1195 }
1196}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198void __devinit pcibios_fixup_device_resources(struct pci_dev *dev,
Paul Mackerras42672922005-09-12 17:17:36 +10001199 struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
1201 /* Update device resources. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 int i;
1203
Paul Mackerras42672922005-09-12 17:17:36 +10001204 for (i = 0; i < PCI_NUM_RESOURCES; i++)
1205 if (dev->resource[i].flags)
1206 fixup_resource(&dev->resource[i], dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208EXPORT_SYMBOL(pcibios_fixup_device_resources);
1209
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001210void __devinit pcibios_setup_new_device(struct pci_dev *dev)
1211{
1212 struct dev_archdata *sd = &dev->dev.archdata;
1213
1214 sd->of_node = pci_device_to_OF_node(dev);
1215
1216 DBG("PCI device %s OF node: %s\n", pci_name(dev),
1217 sd->of_node ? sd->of_node->full_name : "<none>");
1218
1219 sd->dma_ops = pci_dma_ops;
1220#ifdef CONFIG_NUMA
1221 sd->numa_node = pcibus_to_node(dev->bus);
1222#else
1223 sd->numa_node = -1;
1224#endif
1225 if (ppc_md.pci_dma_dev_setup)
1226 ppc_md.pci_dma_dev_setup(dev);
1227}
1228EXPORT_SYMBOL(pcibios_setup_new_device);
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001229
Paul Mackerras42672922005-09-12 17:17:36 +10001230static void __devinit do_bus_setup(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Paul Mackerras42672922005-09-12 17:17:36 +10001232 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001234 if (ppc_md.pci_dma_bus_setup)
1235 ppc_md.pci_dma_bus_setup(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 list_for_each_entry(dev, &bus->devices, bus_list)
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +11001238 pcibios_setup_new_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +11001240 /* Read default IRQs and fixup if necessary */
1241 list_for_each_entry(dev, &bus->devices, bus_list) {
1242 pci_read_irq_line(dev);
1243 if (ppc_md.pci_irq_fixup)
1244 ppc_md.pci_irq_fixup(dev);
1245 }
Paul Mackerras42672922005-09-12 17:17:36 +10001246}
1247
1248void __devinit pcibios_fixup_bus(struct pci_bus *bus)
1249{
1250 struct pci_dev *dev = bus->self;
Benjamin Herrenschmidt4c9d2802006-11-11 17:25:08 +11001251 struct device_node *np;
1252
1253 np = pci_bus_to_OF_node(bus);
1254
1255 DBG("pcibios_fixup_bus(%s)\n", np ? np->full_name : "<???>");
Paul Mackerras42672922005-09-12 17:17:36 +10001256
1257 if (dev && pci_probe_only &&
1258 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
1259 /* This is a subordinate bridge */
1260
1261 pci_read_bridge_bases(bus);
1262 pcibios_fixup_device_resources(dev, bus);
1263 }
1264
1265 do_bus_setup(bus);
John Rosedad32bb2005-06-23 17:09:54 +10001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (!pci_probe_only)
1268 return;
1269
Paul Mackerras42672922005-09-12 17:17:36 +10001270 list_for_each_entry(dev, &bus->devices, bus_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1272 pcibios_fixup_device_resources(dev, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274EXPORT_SYMBOL(pcibios_fixup_bus);
1275
1276/*
1277 * Reads the interrupt pin to determine if interrupt is use by card.
1278 * If the interrupt is used, then gets the interrupt line from the
1279 * openfirmware and sets it in the pci_dev and pci_config line.
1280 */
1281int pci_read_irq_line(struct pci_dev *pci_dev)
1282{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001283 struct of_irq oirq;
1284 unsigned int virq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001286 DBG("Try to map irq for %s...\n", pci_name(pci_dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001288#ifdef DEBUG
1289 memset(&oirq, 0xff, sizeof(oirq));
1290#endif
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001291 /* Try to get a mapping from the device-tree */
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001292 if (of_irq_map_pci(pci_dev, &oirq)) {
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001293 u8 line, pin;
1294
1295 /* If that fails, lets fallback to what is in the config
1296 * space and map that through the default controller. We
1297 * also set the type to level low since that's what PCI
1298 * interrupts are. If your platform does differently, then
1299 * either provide a proper interrupt tree or don't use this
1300 * function.
1301 */
1302 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_PIN, &pin))
1303 return -1;
1304 if (pin == 0)
1305 return -1;
1306 if (pci_read_config_byte(pci_dev, PCI_INTERRUPT_LINE, &line) ||
1307 line == 0xff) {
1308 return -1;
1309 }
1310 DBG(" -> no map ! Using irq line %d from PCI config\n", line);
1311
1312 virq = irq_create_mapping(NULL, line);
1313 if (virq != NO_IRQ)
1314 set_irq_type(virq, IRQ_TYPE_LEVEL_LOW);
1315 } else {
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001316 DBG(" -> got one, spec %d cells (0x%08x 0x%08x...) on %s\n",
1317 oirq.size, oirq.specifier[0], oirq.specifier[1],
1318 oirq.controller->full_name);
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -07001319
1320 virq = irq_create_of_mapping(oirq.controller, oirq.specifier,
1321 oirq.size);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001322 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001323 if(virq == NO_IRQ) {
1324 DBG(" -> failed to map !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 return -1;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001326 }
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +10001327
1328 DBG(" -> mapped to linux irq %d\n", virq);
1329
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +10001330 pci_dev->irq = virq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 return 0;
1333}
1334EXPORT_SYMBOL(pci_read_irq_line);
1335
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001336void pci_resource_to_user(const struct pci_dev *dev, int bar,
1337 const struct resource *rsrc,
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001338 resource_size_t *start, resource_size_t *end)
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001339{
1340 struct pci_controller *hose = pci_bus_to_host(dev->bus);
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001341 resource_size_t offset = 0;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001342
1343 if (hose == NULL)
1344 return;
1345
1346 if (rsrc->flags & IORESOURCE_IO)
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001347 offset = (unsigned long)hose->io_base_virt - pci_io_base;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001348
Benjamin Herrenschmidt396a1a52006-12-08 17:14:33 +11001349 /* We pass a fully fixed up address to userland for MMIO instead of
1350 * a BAR value because X is lame and expects to be able to use that
1351 * to pass to /dev/mem !
1352 *
1353 * That means that we'll have potentially 64 bits values where some
1354 * userland apps only expect 32 (like X itself since it thinks only
1355 * Sparc has 64 bits MMIO) but if we don't do that, we break it on
1356 * 32 bits CHRPs :-(
1357 *
1358 * Hopefully, the sysfs insterface is immune to that gunk. Once X
1359 * has been fixed (and the fix spread enough), we can re-enable the
1360 * 2 lines below and pass down a BAR value to userland. In that case
1361 * we'll also have to re-enable the matching code in
1362 * __pci_mmap_make_offset().
1363 *
1364 * BenH.
1365 */
1366#if 0
1367 else if (rsrc->flags & IORESOURCE_MEM)
1368 offset = hose->pci_mem_offset;
1369#endif
1370
1371 *start = rsrc->start - offset;
1372 *end = rsrc->end - offset;
Michael Ellerman2311b1f2005-05-13 17:44:10 +10001373}
1374
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +11001375struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
1376{
1377 if (!have_of)
1378 return NULL;
1379 while(node) {
1380 struct pci_controller *hose, *tmp;
1381 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1382 if (hose->arch_data == node)
1383 return hose;
1384 node = node->parent;
1385 }
1386 return NULL;
1387}
1388
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +11001389unsigned long pci_address_to_pio(phys_addr_t address)
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001390{
1391 struct pci_controller *hose, *tmp;
1392
1393 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1394 if (address >= hose->io_base_phys &&
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +11001395 address < (hose->io_base_phys + hose->pci_io_size)) {
1396 unsigned long base =
1397 (unsigned long)hose->io_base_virt - pci_io_base;
1398 return base + (address - hose->io_base_phys);
1399 }
Stephen Rothwelld4e4b352005-12-07 13:01:05 +11001400 }
1401 return (unsigned int)-1;
1402}
1403EXPORT_SYMBOL_GPL(pci_address_to_pio);
1404
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001405
1406#define IOBASE_BRIDGE_NUMBER 0
1407#define IOBASE_MEMORY 1
1408#define IOBASE_IO 2
1409#define IOBASE_ISA_IO 3
1410#define IOBASE_ISA_MEM 4
1411
1412long sys_pciconfig_iobase(long which, unsigned long in_bus,
1413 unsigned long in_devfn)
1414{
1415 struct pci_controller* hose;
1416 struct list_head *ln;
1417 struct pci_bus *bus = NULL;
1418 struct device_node *hose_node;
1419
1420 /* Argh ! Please forgive me for that hack, but that's the
1421 * simplest way to get existing XFree to not lockup on some
1422 * G5 machines... So when something asks for bus 0 io base
1423 * (bus 0 is HT root), we return the AGP one instead.
1424 */
Paul Mackerras799d6042005-11-10 13:37:51 +11001425 if (machine_is_compatible("MacRISC4"))
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001426 if (in_bus == 0)
1427 in_bus = 0xf0;
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001428
1429 /* That syscall isn't quite compatible with PCI domains, but it's
1430 * used on pre-domains setup. We return the first match
1431 */
1432
1433 for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) {
1434 bus = pci_bus_b(ln);
Benjamin Herrenschmidt545da942007-01-28 07:45:53 +11001435 if (in_bus >= bus->number && in_bus <= bus->subordinate)
Paul Mackerrasb2ad7b52005-09-09 23:02:36 +10001436 break;
1437 bus = NULL;
1438 }
1439 if (bus == NULL || bus->sysdata == NULL)
1440 return -ENODEV;
1441
1442 hose_node = (struct device_node *)bus->sysdata;
1443 hose = PCI_DN(hose_node)->phb;
1444
1445 switch (which) {
1446 case IOBASE_BRIDGE_NUMBER:
1447 return (long)hose->first_busno;
1448 case IOBASE_MEMORY:
1449 return (long)hose->pci_mem_offset;
1450 case IOBASE_IO:
1451 return (long)hose->io_base_phys;
1452 case IOBASE_ISA_IO:
1453 return (long)isa_io_base;
1454 case IOBASE_ISA_MEM:
1455 return -EINVAL;
1456 }
1457
1458 return -EOPNOTSUPP;
1459}
Anton Blanchard357518f2006-06-10 20:53:06 +10001460
1461#ifdef CONFIG_NUMA
1462int pcibus_to_node(struct pci_bus *bus)
1463{
1464 struct pci_controller *phb = pci_bus_to_host(bus);
1465 return phb->node;
1466}
1467EXPORT_SYMBOL(pcibus_to_node);
1468#endif