blob: 77449a005752a067ef0c8f902a60049b9591d711 [file] [log] [blame]
David S. Millera2fb23a2007-02-28 23:35:04 -08001/* pci.c: UltraSparc PCI controller support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 1997, 1998, 1999 David S. Miller (davem@redhat.com)
4 * Copyright (C) 1998, 1999 Eddie C. Dost (ecd@skynet.be)
5 * Copyright (C) 1999 Jakub Jelinek (jj@ultra.linux.cz)
David S. Millera2fb23a2007-02-28 23:35:04 -08006 *
7 * OF tree based PCI bus probing taken from the PowerPC port
8 * with minor modifications, see there for credits.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/string.h>
14#include <linux/sched.h>
15#include <linux/capability.h>
16#include <linux/errno.h>
David S. Millerc57c2ff2007-05-08 00:43:56 -070017#include <linux/pci.h>
David S. Miller35a17eb2007-02-10 17:41:02 -080018#include <linux/msi.h>
19#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/init.h>
21
22#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/pgtable.h>
24#include <asm/irq.h>
25#include <asm/ebus.h>
26#include <asm/isa.h>
David S. Millere87dc352006-06-21 18:18:47 -070027#include <asm/prom.h>
David S. Miller01f94c42007-03-04 12:53:19 -080028#include <asm/apb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
David S. Miller1e8a8cc2007-02-28 23:38:38 -080030#include "pci_impl.h"
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032unsigned long pci_memspace_mask = 0xffffffffUL;
33
34#ifndef CONFIG_PCI
35/* A "nop" PCI implementation. */
36asmlinkage int sys_pciconfig_read(unsigned long bus, unsigned long dfn,
37 unsigned long off, unsigned long len,
38 unsigned char *buf)
39{
40 return 0;
41}
42asmlinkage int sys_pciconfig_write(unsigned long bus, unsigned long dfn,
43 unsigned long off, unsigned long len,
44 unsigned char *buf)
45{
46 return 0;
47}
48#else
49
50/* List of all PCI controllers found in the system. */
David S. Miller34768bc2007-05-07 23:06:27 -070051struct pci_pbm_info *pci_pbm_root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David S. Miller6c108f12007-05-07 23:49:01 -070053/* Each PBM found gets a unique index. */
54int pci_num_pbms = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056volatile int pci_poke_in_progress;
57volatile int pci_poke_cpu = -1;
58volatile int pci_poke_faulted;
59
60static DEFINE_SPINLOCK(pci_poke_lock);
61
62void pci_config_read8(u8 *addr, u8 *ret)
63{
64 unsigned long flags;
65 u8 byte;
66
67 spin_lock_irqsave(&pci_poke_lock, flags);
68 pci_poke_cpu = smp_processor_id();
69 pci_poke_in_progress = 1;
70 pci_poke_faulted = 0;
71 __asm__ __volatile__("membar #Sync\n\t"
72 "lduba [%1] %2, %0\n\t"
73 "membar #Sync"
74 : "=r" (byte)
75 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
76 : "memory");
77 pci_poke_in_progress = 0;
78 pci_poke_cpu = -1;
79 if (!pci_poke_faulted)
80 *ret = byte;
81 spin_unlock_irqrestore(&pci_poke_lock, flags);
82}
83
84void pci_config_read16(u16 *addr, u16 *ret)
85{
86 unsigned long flags;
87 u16 word;
88
89 spin_lock_irqsave(&pci_poke_lock, flags);
90 pci_poke_cpu = smp_processor_id();
91 pci_poke_in_progress = 1;
92 pci_poke_faulted = 0;
93 __asm__ __volatile__("membar #Sync\n\t"
94 "lduha [%1] %2, %0\n\t"
95 "membar #Sync"
96 : "=r" (word)
97 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
98 : "memory");
99 pci_poke_in_progress = 0;
100 pci_poke_cpu = -1;
101 if (!pci_poke_faulted)
102 *ret = word;
103 spin_unlock_irqrestore(&pci_poke_lock, flags);
104}
105
106void pci_config_read32(u32 *addr, u32 *ret)
107{
108 unsigned long flags;
109 u32 dword;
110
111 spin_lock_irqsave(&pci_poke_lock, flags);
112 pci_poke_cpu = smp_processor_id();
113 pci_poke_in_progress = 1;
114 pci_poke_faulted = 0;
115 __asm__ __volatile__("membar #Sync\n\t"
116 "lduwa [%1] %2, %0\n\t"
117 "membar #Sync"
118 : "=r" (dword)
119 : "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
120 : "memory");
121 pci_poke_in_progress = 0;
122 pci_poke_cpu = -1;
123 if (!pci_poke_faulted)
124 *ret = dword;
125 spin_unlock_irqrestore(&pci_poke_lock, flags);
126}
127
128void pci_config_write8(u8 *addr, u8 val)
129{
130 unsigned long flags;
131
132 spin_lock_irqsave(&pci_poke_lock, flags);
133 pci_poke_cpu = smp_processor_id();
134 pci_poke_in_progress = 1;
135 pci_poke_faulted = 0;
136 __asm__ __volatile__("membar #Sync\n\t"
137 "stba %0, [%1] %2\n\t"
138 "membar #Sync"
139 : /* no outputs */
140 : "r" (val), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
141 : "memory");
142 pci_poke_in_progress = 0;
143 pci_poke_cpu = -1;
144 spin_unlock_irqrestore(&pci_poke_lock, flags);
145}
146
147void pci_config_write16(u16 *addr, u16 val)
148{
149 unsigned long flags;
150
151 spin_lock_irqsave(&pci_poke_lock, flags);
152 pci_poke_cpu = smp_processor_id();
153 pci_poke_in_progress = 1;
154 pci_poke_faulted = 0;
155 __asm__ __volatile__("membar #Sync\n\t"
156 "stha %0, [%1] %2\n\t"
157 "membar #Sync"
158 : /* no outputs */
159 : "r" (val), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
160 : "memory");
161 pci_poke_in_progress = 0;
162 pci_poke_cpu = -1;
163 spin_unlock_irqrestore(&pci_poke_lock, flags);
164}
165
166void pci_config_write32(u32 *addr, u32 val)
167{
168 unsigned long flags;
169
170 spin_lock_irqsave(&pci_poke_lock, flags);
171 pci_poke_cpu = smp_processor_id();
172 pci_poke_in_progress = 1;
173 pci_poke_faulted = 0;
174 __asm__ __volatile__("membar #Sync\n\t"
175 "stwa %0, [%1] %2\n\t"
176 "membar #Sync"
177 : /* no outputs */
178 : "r" (val), "r" (addr), "i" (ASI_PHYS_BYPASS_EC_E_L)
179 : "memory");
180 pci_poke_in_progress = 0;
181 pci_poke_cpu = -1;
182 spin_unlock_irqrestore(&pci_poke_lock, flags);
183}
184
185/* Probe for all PCI controllers in the system. */
David S. Millere87dc352006-06-21 18:18:47 -0700186extern void sabre_init(struct device_node *, const char *);
187extern void psycho_init(struct device_node *, const char *);
188extern void schizo_init(struct device_node *, const char *);
189extern void schizo_plus_init(struct device_node *, const char *);
190extern void tomatillo_init(struct device_node *, const char *);
191extern void sun4v_pci_init(struct device_node *, const char *);
David S. Miller861fe902007-05-02 17:31:36 -0700192extern void fire_pci_init(struct device_node *, const char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194static struct {
195 char *model_name;
David S. Millere87dc352006-06-21 18:18:47 -0700196 void (*init)(struct device_node *, const char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197} pci_controller_table[] __initdata = {
198 { "SUNW,sabre", sabre_init },
199 { "pci108e,a000", sabre_init },
200 { "pci108e,a001", sabre_init },
201 { "SUNW,psycho", psycho_init },
202 { "pci108e,8000", psycho_init },
203 { "SUNW,schizo", schizo_init },
204 { "pci108e,8001", schizo_init },
205 { "SUNW,schizo+", schizo_plus_init },
206 { "pci108e,8002", schizo_plus_init },
207 { "SUNW,tomatillo", tomatillo_init },
208 { "pci108e,a801", tomatillo_init },
David S. Miller8f6a93a2006-02-09 21:32:07 -0800209 { "SUNW,sun4v-pci", sun4v_pci_init },
David S. Miller861fe902007-05-02 17:31:36 -0700210 { "pciex108e,80f0", fire_pci_init },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212#define PCI_NUM_CONTROLLER_TYPES (sizeof(pci_controller_table) / \
213 sizeof(pci_controller_table[0]))
214
David S. Millere87dc352006-06-21 18:18:47 -0700215static int __init pci_controller_init(const char *model_name, int namelen, struct device_node *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 int i;
218
219 for (i = 0; i < PCI_NUM_CONTROLLER_TYPES; i++) {
220 if (!strncmp(model_name,
221 pci_controller_table[i].model_name,
222 namelen)) {
David S. Millere87dc352006-06-21 18:18:47 -0700223 pci_controller_table[i].init(dp, model_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return 1;
225 }
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 return 0;
229}
230
David S. Millere87dc352006-06-21 18:18:47 -0700231static int __init pci_is_controller(const char *model_name, int namelen, struct device_node *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 int i;
234
235 for (i = 0; i < PCI_NUM_CONTROLLER_TYPES; i++) {
236 if (!strncmp(model_name,
237 pci_controller_table[i].model_name,
238 namelen)) {
239 return 1;
240 }
241 }
242 return 0;
243}
244
David S. Millere87dc352006-06-21 18:18:47 -0700245static int __init pci_controller_scan(int (*handler)(const char *, int, struct device_node *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
David S. Millere87dc352006-06-21 18:18:47 -0700247 struct device_node *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int count = 0;
249
David S. Millere87dc352006-06-21 18:18:47 -0700250 for_each_node_by_name(dp, "pci") {
251 struct property *prop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 int len;
253
David S. Millere87dc352006-06-21 18:18:47 -0700254 prop = of_find_property(dp, "model", &len);
255 if (!prop)
256 prop = of_find_property(dp, "compatible", &len);
257
258 if (prop) {
259 const char *model = prop->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 int item_len = 0;
261
262 /* Our value may be a multi-valued string in the
263 * case of some compatible properties. For sanity,
David S. Millere87dc352006-06-21 18:18:47 -0700264 * only try the first one.
265 */
266 while (model[item_len] && len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 len--;
268 item_len++;
269 }
270
David S. Millere87dc352006-06-21 18:18:47 -0700271 if (handler(model, item_len, dp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 count++;
273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275
276 return count;
277}
278
279
280/* Is there some PCI controller in the system? */
281int __init pcic_present(void)
282{
283 return pci_controller_scan(pci_is_controller);
284}
285
David S. Millerc6e87562007-03-09 16:58:43 -0800286const struct pci_iommu_ops *pci_iommu_ops;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800287EXPORT_SYMBOL(pci_iommu_ops);
288
David S. Millerc6e87562007-03-09 16:58:43 -0800289extern const struct pci_iommu_ops pci_sun4u_iommu_ops,
David S. Miller8f6a93a2006-02-09 21:32:07 -0800290 pci_sun4v_iommu_ops;
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/* Find each controller in the system, attach and initialize
293 * software state structure for each and link into the
David S. Miller34768bc2007-05-07 23:06:27 -0700294 * pci_pbm_root. Setup the controller enough such
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 * that bus scanning can be done.
296 */
297static void __init pci_controller_probe(void)
298{
David S. Miller8f6a93a2006-02-09 21:32:07 -0800299 if (tlb_type == hypervisor)
300 pci_iommu_ops = &pci_sun4v_iommu_ops;
301 else
302 pci_iommu_ops = &pci_sun4u_iommu_ops;
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 printk("PCI: Probing for controllers.\n");
305
306 pci_controller_scan(pci_controller_init);
307}
308
David S. Miller5840fc62007-05-22 01:24:14 -0700309static int ofpci_verbose;
310
311static int __init ofpci_debug(char *str)
312{
313 int val = 0;
314
315 get_option(&str, &val);
316 if (val)
317 ofpci_verbose = 1;
318 return 1;
319}
320
321__setup("ofpci_debug=", ofpci_debug);
322
David S. Millera2fb23a2007-02-28 23:35:04 -0800323static unsigned long pci_parse_of_flags(u32 addr0)
324{
325 unsigned long flags = 0;
326
327 if (addr0 & 0x02000000) {
328 flags = IORESOURCE_MEM | PCI_BASE_ADDRESS_SPACE_MEMORY;
329 flags |= (addr0 >> 22) & PCI_BASE_ADDRESS_MEM_TYPE_64;
330 flags |= (addr0 >> 28) & PCI_BASE_ADDRESS_MEM_TYPE_1M;
331 if (addr0 & 0x40000000)
332 flags |= IORESOURCE_PREFETCH
333 | PCI_BASE_ADDRESS_MEM_PREFETCH;
334 } else if (addr0 & 0x01000000)
335 flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
336 return flags;
337}
338
339/* The of_device layer has translated all of the assigned-address properties
340 * into physical address resources, we only have to figure out the register
341 * mapping.
342 */
343static void pci_parse_of_addrs(struct of_device *op,
344 struct device_node *node,
345 struct pci_dev *dev)
346{
347 struct resource *op_res;
348 const u32 *addrs;
349 int proplen;
350
351 addrs = of_get_property(node, "assigned-addresses", &proplen);
352 if (!addrs)
353 return;
David S. Miller5840fc62007-05-22 01:24:14 -0700354 if (ofpci_verbose)
355 printk(" parse addresses (%d bytes) @ %p\n",
356 proplen, addrs);
David S. Millera2fb23a2007-02-28 23:35:04 -0800357 op_res = &op->resource[0];
358 for (; proplen >= 20; proplen -= 20, addrs += 5, op_res++) {
359 struct resource *res;
360 unsigned long flags;
361 int i;
362
363 flags = pci_parse_of_flags(addrs[0]);
364 if (!flags)
365 continue;
366 i = addrs[0] & 0xff;
David S. Miller5840fc62007-05-22 01:24:14 -0700367 if (ofpci_verbose)
368 printk(" start: %lx, end: %lx, i: %x\n",
369 op_res->start, op_res->end, i);
David S. Millera2fb23a2007-02-28 23:35:04 -0800370
371 if (PCI_BASE_ADDRESS_0 <= i && i <= PCI_BASE_ADDRESS_5) {
372 res = &dev->resource[(i - PCI_BASE_ADDRESS_0) >> 2];
373 } else if (i == dev->rom_base_reg) {
374 res = &dev->resource[PCI_ROM_RESOURCE];
375 flags |= IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
376 } else {
377 printk(KERN_ERR "PCI: bad cfg reg num 0x%x\n", i);
378 continue;
379 }
380 res->start = op_res->start;
381 res->end = op_res->end;
382 res->flags = flags;
383 res->name = pci_name(dev);
384 }
385}
386
387struct pci_dev *of_create_pci_dev(struct pci_pbm_info *pbm,
388 struct device_node *node,
David S. Miller97b3cf02007-03-11 16:42:53 -0700389 struct pci_bus *bus, int devfn,
390 int host_controller)
David S. Millera2fb23a2007-02-28 23:35:04 -0800391{
392 struct dev_archdata *sd;
393 struct pci_dev *dev;
394 const char *type;
David S. Miller01f94c42007-03-04 12:53:19 -0800395 u32 class;
David S. Millera2fb23a2007-02-28 23:35:04 -0800396
David S. Miller26e63852007-05-10 02:16:27 -0700397 dev = alloc_pci_dev();
David S. Millera2fb23a2007-02-28 23:35:04 -0800398 if (!dev)
399 return NULL;
400
401 sd = &dev->dev.archdata;
402 sd->iommu = pbm->iommu;
403 sd->stc = &pbm->stc;
404 sd->host_controller = pbm;
405 sd->prom_node = node;
406 sd->op = of_find_device_by_node(node);
407 sd->msi_num = 0xffffffff;
408
409 type = of_get_property(node, "device_type", NULL);
410 if (type == NULL)
411 type = "";
412
David S. Miller5840fc62007-05-22 01:24:14 -0700413 if (ofpci_verbose)
414 printk(" create device, devfn: %x, type: %s\n",
415 devfn, type);
David S. Millera2fb23a2007-02-28 23:35:04 -0800416
417 dev->bus = bus;
418 dev->sysdata = node;
419 dev->dev.parent = bus->bridge;
420 dev->dev.bus = &pci_bus_type;
421 dev->devfn = devfn;
422 dev->multifunction = 0; /* maybe a lie? */
423
David S. Miller97b3cf02007-03-11 16:42:53 -0700424 if (host_controller) {
David S. Millera2d6ea02007-07-25 23:30:16 -0700425 if (tlb_type != hypervisor) {
426 pci_read_config_word(dev, PCI_VENDOR_ID,
427 &dev->vendor);
428 pci_read_config_word(dev, PCI_DEVICE_ID,
429 &dev->device);
430 } else {
431 dev->vendor = PCI_VENDOR_ID_SUN;
432 dev->device = 0x80f0;
433 }
David S. Miller97b3cf02007-03-11 16:42:53 -0700434 dev->cfg_size = 256;
David S. Miller28f57e72007-03-12 19:40:26 -0700435 dev->class = PCI_CLASS_BRIDGE_HOST << 8;
436 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
437 0x00, PCI_SLOT(devfn), PCI_FUNC(devfn));
David S. Miller97b3cf02007-03-11 16:42:53 -0700438 } else {
439 dev->vendor = of_getintprop_default(node, "vendor-id", 0xffff);
440 dev->device = of_getintprop_default(node, "device-id", 0xffff);
441 dev->subsystem_vendor =
442 of_getintprop_default(node, "subsystem-vendor-id", 0);
443 dev->subsystem_device =
444 of_getintprop_default(node, "subsystem-id", 0);
David S. Millera2fb23a2007-02-28 23:35:04 -0800445
David S. Miller97b3cf02007-03-11 16:42:53 -0700446 dev->cfg_size = pci_cfg_space_size(dev);
David S. Miller01f94c42007-03-04 12:53:19 -0800447
David S. Miller97b3cf02007-03-11 16:42:53 -0700448 /* We can't actually use the firmware value, we have
449 * to read what is in the register right now. One
450 * reason is that in the case of IDE interfaces the
451 * firmware can sample the value before the the IDE
452 * interface is programmed into native mode.
453 */
454 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class);
455 dev->class = class >> 8;
Auke Kokb8a3a522007-06-08 15:46:30 -0700456 dev->revision = class & 0xff;
David S. Miller28f57e72007-03-12 19:40:26 -0700457
458 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(bus),
459 dev->bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
David S. Miller97b3cf02007-03-11 16:42:53 -0700460 }
David S. Miller5840fc62007-05-22 01:24:14 -0700461 if (ofpci_verbose)
462 printk(" class: 0x%x device name: %s\n",
463 dev->class, pci_name(dev));
David S. Millera2fb23a2007-02-28 23:35:04 -0800464
David S. Miller861fe902007-05-02 17:31:36 -0700465 /* I have seen IDE devices which will not respond to
466 * the bmdma simplex check reads if bus mastering is
467 * disabled.
468 */
469 if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE)
470 pci_set_master(dev);
471
David S. Millera2fb23a2007-02-28 23:35:04 -0800472 dev->current_state = 4; /* unknown power state */
473 dev->error_state = pci_channel_io_normal;
474
David S. Miller97b3cf02007-03-11 16:42:53 -0700475 if (host_controller) {
David S. Millera2fb23a2007-02-28 23:35:04 -0800476 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
477 dev->rom_base_reg = PCI_ROM_ADDRESS1;
David S. Miller97b3cf02007-03-11 16:42:53 -0700478 dev->irq = PCI_IRQ_NONE;
David S. Millera2fb23a2007-02-28 23:35:04 -0800479 } else {
David S. Miller97b3cf02007-03-11 16:42:53 -0700480 if (!strcmp(type, "pci") || !strcmp(type, "pciex")) {
481 /* a PCI-PCI bridge */
482 dev->hdr_type = PCI_HEADER_TYPE_BRIDGE;
483 dev->rom_base_reg = PCI_ROM_ADDRESS1;
484 } else if (!strcmp(type, "cardbus")) {
485 dev->hdr_type = PCI_HEADER_TYPE_CARDBUS;
486 } else {
487 dev->hdr_type = PCI_HEADER_TYPE_NORMAL;
488 dev->rom_base_reg = PCI_ROM_ADDRESS;
David S. Millera2fb23a2007-02-28 23:35:04 -0800489
David S. Miller97b3cf02007-03-11 16:42:53 -0700490 dev->irq = sd->op->irqs[0];
491 if (dev->irq == 0xffffffff)
492 dev->irq = PCI_IRQ_NONE;
493 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800494 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800495 pci_parse_of_addrs(sd->op, node, dev);
496
David S. Miller5840fc62007-05-22 01:24:14 -0700497 if (ofpci_verbose)
498 printk(" adding to system ...\n");
David S. Millera2fb23a2007-02-28 23:35:04 -0800499
500 pci_device_add(dev, bus);
501
502 return dev;
503}
504
David S. Millera6009dd2007-05-07 00:01:38 -0700505static void __devinit apb_calc_first_last(u8 map, u32 *first_p, u32 *last_p)
David S. Miller01f94c42007-03-04 12:53:19 -0800506{
507 u32 idx, first, last;
508
509 first = 8;
510 last = 0;
511 for (idx = 0; idx < 8; idx++) {
512 if ((map & (1 << idx)) != 0) {
513 if (first > idx)
514 first = idx;
515 if (last < idx)
516 last = idx;
517 }
518 }
519
520 *first_p = first;
521 *last_p = last;
522}
523
David S. Millerf16537b2007-05-11 14:29:43 -0700524static void pci_resource_adjust(struct resource *res,
525 struct resource *root)
David S. Miller0bae5f82007-03-08 22:42:19 -0800526{
527 res->start += root->start;
528 res->end += root->start;
529}
530
David S. Miller8c2786c2007-06-07 21:59:44 -0700531/* For PCI bus devices which lack a 'ranges' property we interrogate
532 * the config space values to set the resources, just like the generic
533 * Linux PCI probing code does.
534 */
535static void __devinit pci_cfg_fake_ranges(struct pci_dev *dev,
536 struct pci_bus *bus,
537 struct pci_pbm_info *pbm)
538{
539 struct resource *res;
540 u8 io_base_lo, io_limit_lo;
541 u16 mem_base_lo, mem_limit_lo;
542 unsigned long base, limit;
543
544 pci_read_config_byte(dev, PCI_IO_BASE, &io_base_lo);
545 pci_read_config_byte(dev, PCI_IO_LIMIT, &io_limit_lo);
546 base = (io_base_lo & PCI_IO_RANGE_MASK) << 8;
547 limit = (io_limit_lo & PCI_IO_RANGE_MASK) << 8;
548
549 if ((io_base_lo & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32) {
550 u16 io_base_hi, io_limit_hi;
551
552 pci_read_config_word(dev, PCI_IO_BASE_UPPER16, &io_base_hi);
553 pci_read_config_word(dev, PCI_IO_LIMIT_UPPER16, &io_limit_hi);
554 base |= (io_base_hi << 16);
555 limit |= (io_limit_hi << 16);
556 }
557
558 res = bus->resource[0];
559 if (base <= limit) {
560 res->flags = (io_base_lo & PCI_IO_RANGE_TYPE_MASK) | IORESOURCE_IO;
561 if (!res->start)
562 res->start = base;
563 if (!res->end)
564 res->end = limit + 0xfff;
565 pci_resource_adjust(res, &pbm->io_space);
566 }
567
568 pci_read_config_word(dev, PCI_MEMORY_BASE, &mem_base_lo);
569 pci_read_config_word(dev, PCI_MEMORY_LIMIT, &mem_limit_lo);
570 base = (mem_base_lo & PCI_MEMORY_RANGE_MASK) << 16;
571 limit = (mem_limit_lo & PCI_MEMORY_RANGE_MASK) << 16;
572
573 res = bus->resource[1];
574 if (base <= limit) {
575 res->flags = ((mem_base_lo & PCI_MEMORY_RANGE_TYPE_MASK) |
576 IORESOURCE_MEM);
577 res->start = base;
578 res->end = limit + 0xfffff;
579 pci_resource_adjust(res, &pbm->mem_space);
580 }
581
582 pci_read_config_word(dev, PCI_PREF_MEMORY_BASE, &mem_base_lo);
583 pci_read_config_word(dev, PCI_PREF_MEMORY_LIMIT, &mem_limit_lo);
584 base = (mem_base_lo & PCI_PREF_RANGE_MASK) << 16;
585 limit = (mem_limit_lo & PCI_PREF_RANGE_MASK) << 16;
586
587 if ((mem_base_lo & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) {
588 u32 mem_base_hi, mem_limit_hi;
589
590 pci_read_config_dword(dev, PCI_PREF_BASE_UPPER32, &mem_base_hi);
591 pci_read_config_dword(dev, PCI_PREF_LIMIT_UPPER32, &mem_limit_hi);
592
593 /*
594 * Some bridges set the base > limit by default, and some
595 * (broken) BIOSes do not initialize them. If we find
596 * this, just assume they are not being used.
597 */
598 if (mem_base_hi <= mem_limit_hi) {
599 base |= ((long) mem_base_hi) << 32;
600 limit |= ((long) mem_limit_hi) << 32;
601 }
602 }
603
604 res = bus->resource[2];
605 if (base <= limit) {
606 res->flags = ((mem_base_lo & PCI_MEMORY_RANGE_TYPE_MASK) |
607 IORESOURCE_MEM | IORESOURCE_PREFETCH);
608 res->start = base;
609 res->end = limit + 0xfffff;
610 pci_resource_adjust(res, &pbm->mem_space);
611 }
612}
613
David S. Miller01f94c42007-03-04 12:53:19 -0800614/* Cook up fake bus resources for SUNW,simba PCI bridges which lack
615 * a proper 'ranges' property.
616 */
David S. Millera6009dd2007-05-07 00:01:38 -0700617static void __devinit apb_fake_ranges(struct pci_dev *dev,
618 struct pci_bus *bus,
619 struct pci_pbm_info *pbm)
David S. Miller01f94c42007-03-04 12:53:19 -0800620{
621 struct resource *res;
622 u32 first, last;
623 u8 map;
624
625 pci_read_config_byte(dev, APB_IO_ADDRESS_MAP, &map);
626 apb_calc_first_last(map, &first, &last);
627 res = bus->resource[0];
628 res->start = (first << 21);
629 res->end = (last << 21) + ((1 << 21) - 1);
630 res->flags = IORESOURCE_IO;
David S. Miller0bae5f82007-03-08 22:42:19 -0800631 pci_resource_adjust(res, &pbm->io_space);
David S. Miller01f94c42007-03-04 12:53:19 -0800632
633 pci_read_config_byte(dev, APB_MEM_ADDRESS_MAP, &map);
634 apb_calc_first_last(map, &first, &last);
635 res = bus->resource[1];
636 res->start = (first << 21);
637 res->end = (last << 21) + ((1 << 21) - 1);
638 res->flags = IORESOURCE_MEM;
David S. Miller0bae5f82007-03-08 22:42:19 -0800639 pci_resource_adjust(res, &pbm->mem_space);
David S. Miller01f94c42007-03-04 12:53:19 -0800640}
641
David S. Millera6009dd2007-05-07 00:01:38 -0700642static void __devinit pci_of_scan_bus(struct pci_pbm_info *pbm,
643 struct device_node *node,
644 struct pci_bus *bus);
David S. Millera2fb23a2007-02-28 23:35:04 -0800645
646#define GET_64BIT(prop, i) ((((u64) (prop)[(i)]) << 32) | (prop)[(i)+1])
647
David S. Millera6009dd2007-05-07 00:01:38 -0700648static void __devinit of_scan_pci_bridge(struct pci_pbm_info *pbm,
649 struct device_node *node,
650 struct pci_dev *dev)
David S. Millera2fb23a2007-02-28 23:35:04 -0800651{
652 struct pci_bus *bus;
653 const u32 *busrange, *ranges;
David S. Miller01f94c42007-03-04 12:53:19 -0800654 int len, i, simba;
David S. Millera2fb23a2007-02-28 23:35:04 -0800655 struct resource *res;
656 unsigned int flags;
657 u64 size;
658
David S. Miller5840fc62007-05-22 01:24:14 -0700659 if (ofpci_verbose)
660 printk("of_scan_pci_bridge(%s)\n", node->full_name);
David S. Millera2fb23a2007-02-28 23:35:04 -0800661
662 /* parse bus-range property */
663 busrange = of_get_property(node, "bus-range", &len);
664 if (busrange == NULL || len != 8) {
665 printk(KERN_DEBUG "Can't get bus-range for PCI-PCI bridge %s\n",
666 node->full_name);
667 return;
668 }
669 ranges = of_get_property(node, "ranges", &len);
David S. Miller01f94c42007-03-04 12:53:19 -0800670 simba = 0;
David S. Millera2fb23a2007-02-28 23:35:04 -0800671 if (ranges == NULL) {
David S. Millera165b422007-03-29 01:50:16 -0700672 const char *model = of_get_property(node, "model", NULL);
David S. Miller8c2786c2007-06-07 21:59:44 -0700673 if (model && !strcmp(model, "SUNW,simba"))
David S. Miller01f94c42007-03-04 12:53:19 -0800674 simba = 1;
David S. Millera2fb23a2007-02-28 23:35:04 -0800675 }
676
677 bus = pci_add_new_bus(dev->bus, dev, busrange[0]);
678 if (!bus) {
679 printk(KERN_ERR "Failed to create pci bus for %s\n",
680 node->full_name);
681 return;
682 }
683
684 bus->primary = dev->bus->number;
685 bus->subordinate = busrange[1];
686 bus->bridge_ctl = 0;
687
David S. Miller01f94c42007-03-04 12:53:19 -0800688 /* parse ranges property, or cook one up by hand for Simba */
David S. Millera2fb23a2007-02-28 23:35:04 -0800689 /* PCI #address-cells == 3 and #size-cells == 2 always */
690 res = &dev->resource[PCI_BRIDGE_RESOURCES];
691 for (i = 0; i < PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES; ++i) {
692 res->flags = 0;
693 bus->resource[i] = res;
694 ++res;
695 }
David S. Miller01f94c42007-03-04 12:53:19 -0800696 if (simba) {
697 apb_fake_ranges(dev, bus, pbm);
David S. Miller8c2786c2007-06-07 21:59:44 -0700698 goto after_ranges;
699 } else if (ranges == NULL) {
700 pci_cfg_fake_ranges(dev, bus, pbm);
701 goto after_ranges;
David S. Miller01f94c42007-03-04 12:53:19 -0800702 }
David S. Millera2fb23a2007-02-28 23:35:04 -0800703 i = 1;
704 for (; len >= 32; len -= 32, ranges += 8) {
705 struct resource *root;
706
707 flags = pci_parse_of_flags(ranges[0]);
708 size = GET_64BIT(ranges, 6);
709 if (flags == 0 || size == 0)
710 continue;
711 if (flags & IORESOURCE_IO) {
712 res = bus->resource[0];
713 if (res->flags) {
714 printk(KERN_ERR "PCI: ignoring extra I/O range"
715 " for bridge %s\n", node->full_name);
716 continue;
717 }
718 root = &pbm->io_space;
719 } else {
720 if (i >= PCI_NUM_RESOURCES - PCI_BRIDGE_RESOURCES) {
721 printk(KERN_ERR "PCI: too many memory ranges"
722 " for bridge %s\n", node->full_name);
723 continue;
724 }
725 res = bus->resource[i];
726 ++i;
727 root = &pbm->mem_space;
728 }
729
730 res->start = GET_64BIT(ranges, 1);
731 res->end = res->start + size - 1;
732 res->flags = flags;
733
734 /* Another way to implement this would be to add an of_device
735 * layer routine that can calculate a resource for a given
736 * range property value in a PCI device.
737 */
David S. Miller0bae5f82007-03-08 22:42:19 -0800738 pci_resource_adjust(res, root);
David S. Millera2fb23a2007-02-28 23:35:04 -0800739 }
David S. Miller8c2786c2007-06-07 21:59:44 -0700740after_ranges:
David S. Millera2fb23a2007-02-28 23:35:04 -0800741 sprintf(bus->name, "PCI Bus %04x:%02x", pci_domain_nr(bus),
742 bus->number);
David S. Miller5840fc62007-05-22 01:24:14 -0700743 if (ofpci_verbose)
744 printk(" bus name: %s\n", bus->name);
David S. Millera2fb23a2007-02-28 23:35:04 -0800745
746 pci_of_scan_bus(pbm, node, bus);
747}
748
David S. Millera6009dd2007-05-07 00:01:38 -0700749static void __devinit pci_of_scan_bus(struct pci_pbm_info *pbm,
750 struct device_node *node,
751 struct pci_bus *bus)
David S. Millera2fb23a2007-02-28 23:35:04 -0800752{
753 struct device_node *child;
754 const u32 *reg;
755 int reglen, devfn;
756 struct pci_dev *dev;
757
David S. Miller5840fc62007-05-22 01:24:14 -0700758 if (ofpci_verbose)
759 printk("PCI: scan_bus[%s] bus no %d\n",
760 node->full_name, bus->number);
David S. Millera2fb23a2007-02-28 23:35:04 -0800761
762 child = NULL;
763 while ((child = of_get_next_child(node, child)) != NULL) {
David S. Miller5840fc62007-05-22 01:24:14 -0700764 if (ofpci_verbose)
765 printk(" * %s\n", child->full_name);
David S. Millera2fb23a2007-02-28 23:35:04 -0800766 reg = of_get_property(child, "reg", &reglen);
767 if (reg == NULL || reglen < 20)
768 continue;
769 devfn = (reg[0] >> 8) & 0xff;
770
771 /* create a new pci_dev for this device */
David S. Miller97b3cf02007-03-11 16:42:53 -0700772 dev = of_create_pci_dev(pbm, child, bus, devfn, 0);
David S. Millera2fb23a2007-02-28 23:35:04 -0800773 if (!dev)
774 continue;
David S. Miller5840fc62007-05-22 01:24:14 -0700775 if (ofpci_verbose)
776 printk("PCI: dev header type: %x\n",
777 dev->hdr_type);
David S. Millera2fb23a2007-02-28 23:35:04 -0800778
779 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
780 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
781 of_scan_pci_bridge(pbm, child, dev);
782 }
783}
784
785static ssize_t
786show_pciobppath_attr(struct device * dev, struct device_attribute * attr, char * buf)
787{
788 struct pci_dev *pdev;
789 struct device_node *dp;
790
791 pdev = to_pci_dev(dev);
792 dp = pdev->dev.archdata.prom_node;
793
794 return snprintf (buf, PAGE_SIZE, "%s\n", dp->full_name);
795}
796
797static DEVICE_ATTR(obppath, S_IRUSR | S_IRGRP | S_IROTH, show_pciobppath_attr, NULL);
798
799static void __devinit pci_bus_register_of_sysfs(struct pci_bus *bus)
800{
801 struct pci_dev *dev;
David S. Millera378fd02007-03-01 11:46:13 -0800802 struct pci_bus *child_bus;
David S. Millera2fb23a2007-02-28 23:35:04 -0800803 int err;
804
805 list_for_each_entry(dev, &bus->devices, bus_list) {
806 /* we don't really care if we can create this file or
807 * not, but we need to assign the result of the call
808 * or the world will fall under alien invasion and
809 * everybody will be frozen on a spaceship ready to be
810 * eaten on alpha centauri by some green and jelly
811 * humanoid.
812 */
813 err = sysfs_create_file(&dev->dev.kobj, &dev_attr_obppath.attr);
814 }
David S. Millera378fd02007-03-01 11:46:13 -0800815 list_for_each_entry(child_bus, &bus->children, node)
816 pci_bus_register_of_sysfs(child_bus);
David S. Millera2fb23a2007-02-28 23:35:04 -0800817}
818
David S. Miller97b3cf02007-03-11 16:42:53 -0700819int pci_host_bridge_read_pci_cfg(struct pci_bus *bus_dev,
820 unsigned int devfn,
821 int where, int size,
822 u32 *value)
823{
824 static u8 fake_pci_config[] = {
825 0x8e, 0x10, /* Vendor: 0x108e (Sun) */
David S. Millera2d6ea02007-07-25 23:30:16 -0700826 0xf0, 0x80, /* Device: 0x80f0 (Fire) */
David S. Miller97b3cf02007-03-11 16:42:53 -0700827 0x46, 0x01, /* Command: 0x0146 (SERR, PARITY, MASTER, MEM) */
828 0xa0, 0x22, /* Status: 0x02a0 (DEVSEL_MED, FB2B, 66MHZ) */
829 0x00, 0x00, 0x00, 0x06, /* Class: 0x06000000 host bridge */
830 0x00, /* Cacheline: 0x00 */
831 0x40, /* Latency: 0x40 */
832 0x00, /* Header-Type: 0x00 normal */
833 };
834
835 *value = 0;
836 if (where >= 0 && where < sizeof(fake_pci_config) &&
837 (where + size) >= 0 &&
838 (where + size) < sizeof(fake_pci_config) &&
839 size <= sizeof(u32)) {
840 while (size--) {
841 *value <<= 8;
842 *value |= fake_pci_config[where + size];
843 }
844 }
845
846 return PCIBIOS_SUCCESSFUL;
847}
848
849int pci_host_bridge_write_pci_cfg(struct pci_bus *bus_dev,
850 unsigned int devfn,
851 int where, int size,
852 u32 value)
853{
854 return PCIBIOS_SUCCESSFUL;
855}
856
David S. Millera6009dd2007-05-07 00:01:38 -0700857struct pci_bus * __devinit pci_scan_one_pbm(struct pci_pbm_info *pbm)
David S. Millera2fb23a2007-02-28 23:35:04 -0800858{
David S. Millera2fb23a2007-02-28 23:35:04 -0800859 struct device_node *node = pbm->prom_node;
David S. Miller97b3cf02007-03-11 16:42:53 -0700860 struct pci_dev *host_pdev;
David S. Millera2fb23a2007-02-28 23:35:04 -0800861 struct pci_bus *bus;
862
863 printk("PCI: Scanning PBM %s\n", node->full_name);
864
865 /* XXX parent device? XXX */
David S. Millerf1cd8de2007-05-07 23:24:05 -0700866 bus = pci_create_bus(NULL, pbm->pci_first_busno, pbm->pci_ops, pbm);
David S. Millera2fb23a2007-02-28 23:35:04 -0800867 if (!bus) {
868 printk(KERN_ERR "Failed to create bus for %s\n",
869 node->full_name);
870 return NULL;
871 }
872 bus->secondary = pbm->pci_first_busno;
873 bus->subordinate = pbm->pci_last_busno;
874
875 bus->resource[0] = &pbm->io_space;
876 bus->resource[1] = &pbm->mem_space;
877
David S. Miller97b3cf02007-03-11 16:42:53 -0700878 /* Create the dummy host bridge and link it in. */
879 host_pdev = of_create_pci_dev(pbm, node, bus, 0x00, 1);
880 bus->self = host_pdev;
881
David S. Millera2fb23a2007-02-28 23:35:04 -0800882 pci_of_scan_bus(pbm, node, bus);
883 pci_bus_add_devices(bus);
884 pci_bus_register_of_sysfs(bus);
885
886 return bus;
887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889static void __init pci_scan_each_controller_bus(void)
890{
David S. Miller34768bc2007-05-07 23:06:27 -0700891 struct pci_pbm_info *pbm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
David S. Miller34768bc2007-05-07 23:06:27 -0700893 for (pbm = pci_pbm_root; pbm; pbm = pbm->next)
894 pbm->scan_bus(pbm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897extern void power_init(void);
898
899static int __init pcibios_init(void)
900{
901 pci_controller_probe();
David S. Miller34768bc2007-05-07 23:06:27 -0700902 if (pci_pbm_root == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return 0;
904
905 pci_scan_each_controller_bus();
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 isa_init();
908 ebus_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 power_init();
910
911 return 0;
912}
913
914subsys_initcall(pcibios_init);
915
Robert Reiff6b45da2007-04-12 13:47:37 -0700916void __devinit pcibios_fixup_bus(struct pci_bus *pbus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
918 struct pci_pbm_info *pbm = pbus->sysdata;
919
920 /* Generic PCI bus probing sets these to point at
921 * &io{port,mem}_resouce which is wrong for us.
922 */
923 pbus->resource[0] = &pbm->io_space;
924 pbus->resource[1] = &pbm->mem_space;
925}
926
David S. Miller085ae412005-08-08 13:19:08 -0700927struct resource *pcibios_select_root(struct pci_dev *pdev, struct resource *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct pci_pbm_info *pbm = pdev->bus->sysdata;
David S. Miller085ae412005-08-08 13:19:08 -0700930 struct resource *root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
David S. Miller085ae412005-08-08 13:19:08 -0700932 if (r->flags & IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 root = &pbm->io_space;
David S. Miller085ae412005-08-08 13:19:08 -0700934 if (r->flags & IORESOURCE_MEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 root = &pbm->mem_space;
936
David S. Miller085ae412005-08-08 13:19:08 -0700937 return root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
940void pcibios_update_irq(struct pci_dev *pdev, int irq)
941{
942}
943
944void pcibios_align_resource(void *data, struct resource *res,
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700945 resource_size_t size, resource_size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
947}
948
David S. Millera2fb23a2007-02-28 23:35:04 -0800949int pcibios_enable_device(struct pci_dev *dev, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
David S. Millera2fb23a2007-02-28 23:35:04 -0800951 u16 cmd, oldcmd;
952 int i;
953
954 pci_read_config_word(dev, PCI_COMMAND, &cmd);
955 oldcmd = cmd;
956
957 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
958 struct resource *res = &dev->resource[i];
959
960 /* Only set up the requested stuff */
961 if (!(mask & (1<<i)))
962 continue;
963
964 if (res->flags & IORESOURCE_IO)
965 cmd |= PCI_COMMAND_IO;
966 if (res->flags & IORESOURCE_MEM)
967 cmd |= PCI_COMMAND_MEMORY;
968 }
969
970 if (cmd != oldcmd) {
971 printk(KERN_DEBUG "PCI: Enabling device: (%s), cmd %x\n",
972 pci_name(dev), cmd);
973 /* Enable the appropriate bits in the PCI command register. */
974 pci_write_config_word(dev, PCI_COMMAND, cmd);
975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return 0;
977}
978
979void pcibios_resource_to_bus(struct pci_dev *pdev, struct pci_bus_region *region,
980 struct resource *res)
981{
982 struct pci_pbm_info *pbm = pdev->bus->sysdata;
983 struct resource zero_res, *root;
984
985 zero_res.start = 0;
986 zero_res.end = 0;
987 zero_res.flags = res->flags;
988
989 if (res->flags & IORESOURCE_IO)
990 root = &pbm->io_space;
991 else
992 root = &pbm->mem_space;
993
David S. Miller0bae5f82007-03-08 22:42:19 -0800994 pci_resource_adjust(&zero_res, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 region->start = res->start - zero_res.start;
997 region->end = res->end - zero_res.start;
998}
David S. Miller5fdfd422006-04-17 13:34:44 -0700999EXPORT_SYMBOL(pcibios_resource_to_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001void pcibios_bus_to_resource(struct pci_dev *pdev, struct resource *res,
1002 struct pci_bus_region *region)
1003{
1004 struct pci_pbm_info *pbm = pdev->bus->sysdata;
1005 struct resource *root;
1006
1007 res->start = region->start;
1008 res->end = region->end;
1009
1010 if (res->flags & IORESOURCE_IO)
1011 root = &pbm->io_space;
1012 else
1013 root = &pbm->mem_space;
1014
David S. Miller0bae5f82007-03-08 22:42:19 -08001015 pci_resource_adjust(res, root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
Keith Owens41290c12005-08-24 16:06:25 +10001017EXPORT_SYMBOL(pcibios_bus_to_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Robert Reiff6b45da2007-04-12 13:47:37 -07001019char * __devinit pcibios_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return str;
1022}
1023
1024/* Platform support for /proc/bus/pci/X/Y mmap()s. */
1025
1026/* If the user uses a host-bridge as the PCI device, he may use
1027 * this to perform a raw mmap() of the I/O or MEM space behind
1028 * that controller.
1029 *
1030 * This can be useful for execution of x86 PCI bios initialization code
1031 * on a PCI card, like the xfree86 int10 stuff does.
1032 */
1033static int __pci_mmap_make_offset_bus(struct pci_dev *pdev, struct vm_area_struct *vma,
1034 enum pci_mmap_state mmap_state)
1035{
David S. Millera2fb23a2007-02-28 23:35:04 -08001036 struct pci_pbm_info *pbm = pdev->dev.archdata.host_controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 unsigned long space_size, user_offset, user_size;
1038
David S. Miller3875c5c2007-03-08 22:52:11 -08001039 if (mmap_state == pci_mmap_io) {
1040 space_size = (pbm->io_space.end -
1041 pbm->io_space.start) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 } else {
David S. Miller3875c5c2007-03-08 22:52:11 -08001043 space_size = (pbm->mem_space.end -
1044 pbm->mem_space.start) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046
1047 /* Make sure the request is in range. */
1048 user_offset = vma->vm_pgoff << PAGE_SHIFT;
1049 user_size = vma->vm_end - vma->vm_start;
1050
1051 if (user_offset >= space_size ||
1052 (user_offset + user_size) > space_size)
1053 return -EINVAL;
1054
David S. Miller3875c5c2007-03-08 22:52:11 -08001055 if (mmap_state == pci_mmap_io) {
1056 vma->vm_pgoff = (pbm->io_space.start +
1057 user_offset) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 } else {
David S. Miller3875c5c2007-03-08 22:52:11 -08001059 vma->vm_pgoff = (pbm->mem_space.start +
1060 user_offset) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
1062
1063 return 0;
1064}
1065
1066/* Adjust vm_pgoff of VMA such that it is the physical page offset corresponding
1067 * to the 32-bit pci bus offset for DEV requested by the user.
1068 *
1069 * Basically, the user finds the base address for his device which he wishes
1070 * to mmap. They read the 32-bit value from the config space base register,
1071 * add whatever PAGE_SIZE multiple offset they wish, and feed this into the
1072 * offset parameter of mmap on /proc/bus/pci/XXX for that device.
1073 *
1074 * Returns negative error code on failure, zero on success.
1075 */
1076static int __pci_mmap_make_offset(struct pci_dev *dev, struct vm_area_struct *vma,
1077 enum pci_mmap_state mmap_state)
1078{
1079 unsigned long user_offset = vma->vm_pgoff << PAGE_SHIFT;
1080 unsigned long user32 = user_offset & pci_memspace_mask;
1081 unsigned long largest_base, this_base, addr32;
1082 int i;
1083
1084 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_HOST)
1085 return __pci_mmap_make_offset_bus(dev, vma, mmap_state);
1086
1087 /* Figure out which base address this is for. */
1088 largest_base = 0UL;
1089 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
1090 struct resource *rp = &dev->resource[i];
1091
1092 /* Active? */
1093 if (!rp->flags)
1094 continue;
1095
1096 /* Same type? */
1097 if (i == PCI_ROM_RESOURCE) {
1098 if (mmap_state != pci_mmap_mem)
1099 continue;
1100 } else {
1101 if ((mmap_state == pci_mmap_io &&
1102 (rp->flags & IORESOURCE_IO) == 0) ||
1103 (mmap_state == pci_mmap_mem &&
1104 (rp->flags & IORESOURCE_MEM) == 0))
1105 continue;
1106 }
1107
1108 this_base = rp->start;
1109
1110 addr32 = (this_base & PAGE_MASK) & pci_memspace_mask;
1111
1112 if (mmap_state == pci_mmap_io)
1113 addr32 &= 0xffffff;
1114
1115 if (addr32 <= user32 && this_base > largest_base)
1116 largest_base = this_base;
1117 }
1118
1119 if (largest_base == 0UL)
1120 return -EINVAL;
1121
1122 /* Now construct the final physical address. */
1123 if (mmap_state == pci_mmap_io)
1124 vma->vm_pgoff = (((largest_base & ~0xffffffUL) | user32) >> PAGE_SHIFT);
1125 else
1126 vma->vm_pgoff = (((largest_base & ~(pci_memspace_mask)) | user32) >> PAGE_SHIFT);
1127
1128 return 0;
1129}
1130
1131/* Set vm_flags of VMA, as appropriate for this architecture, for a pci device
1132 * mapping.
1133 */
1134static void __pci_mmap_set_flags(struct pci_dev *dev, struct vm_area_struct *vma,
1135 enum pci_mmap_state mmap_state)
1136{
1137 vma->vm_flags |= (VM_IO | VM_RESERVED);
1138}
1139
1140/* Set vm_page_prot of VMA, as appropriate for this architecture, for a pci
1141 * device mapping.
1142 */
1143static void __pci_mmap_set_pgprot(struct pci_dev *dev, struct vm_area_struct *vma,
1144 enum pci_mmap_state mmap_state)
1145{
David S. Millera7a6cac2005-09-01 21:51:26 -07001146 /* Our io_remap_pfn_range takes care of this, do nothing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147}
1148
1149/* Perform the actual remap of the pages for a PCI device mapping, as appropriate
1150 * for this architecture. The region in the process to map is described by vm_start
1151 * and vm_end members of VMA, the base physical address is found in vm_pgoff.
1152 * The pci device structure is provided so that architectures may make mapping
1153 * decisions on a per-device or per-bus basis.
1154 *
1155 * Returns a negative error code on failure, zero on success.
1156 */
1157int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
1158 enum pci_mmap_state mmap_state,
1159 int write_combine)
1160{
1161 int ret;
1162
1163 ret = __pci_mmap_make_offset(dev, vma, mmap_state);
1164 if (ret < 0)
1165 return ret;
1166
1167 __pci_mmap_set_flags(dev, vma, mmap_state);
1168 __pci_mmap_set_pgprot(dev, vma, mmap_state);
1169
David S. Miller14778d92006-03-21 02:29:39 -08001170 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 ret = io_remap_pfn_range(vma, vma->vm_start,
1172 vma->vm_pgoff,
1173 vma->vm_end - vma->vm_start,
1174 vma->vm_page_prot);
1175 if (ret)
1176 return ret;
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return 0;
1179}
1180
1181/* Return the domain nuber for this pci bus */
1182
1183int pci_domain_nr(struct pci_bus *pbus)
1184{
1185 struct pci_pbm_info *pbm = pbus->sysdata;
1186 int ret;
1187
1188 if (pbm == NULL || pbm->parent == NULL) {
1189 ret = -ENXIO;
1190 } else {
David S. Miller6c108f12007-05-07 23:49:01 -07001191 ret = pbm->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193
1194 return ret;
1195}
1196EXPORT_SYMBOL(pci_domain_nr);
1197
David S. Miller35a17eb2007-02-10 17:41:02 -08001198#ifdef CONFIG_PCI_MSI
1199int arch_setup_msi_irq(struct pci_dev *pdev, struct msi_desc *desc)
1200{
David S. Millera2fb23a2007-02-28 23:35:04 -08001201 struct pci_pbm_info *pbm = pdev->dev.archdata.host_controller;
David S. Millere9870c42007-05-07 23:28:50 -07001202 int virt_irq;
David S. Miller35a17eb2007-02-10 17:41:02 -08001203
David S. Millere9870c42007-05-07 23:28:50 -07001204 if (!pbm->setup_msi_irq)
David S. Miller35a17eb2007-02-10 17:41:02 -08001205 return -EINVAL;
1206
David S. Millere9870c42007-05-07 23:28:50 -07001207 return pbm->setup_msi_irq(&virt_irq, pdev, desc);
David S. Miller35a17eb2007-02-10 17:41:02 -08001208}
1209
1210void arch_teardown_msi_irq(unsigned int virt_irq)
1211{
David S. Millerabfd3362007-02-26 09:40:34 -08001212 struct msi_desc *entry = get_irq_msi(virt_irq);
David S. Miller35a17eb2007-02-10 17:41:02 -08001213 struct pci_dev *pdev = entry->dev;
David S. Millera2fb23a2007-02-28 23:35:04 -08001214 struct pci_pbm_info *pbm = pdev->dev.archdata.host_controller;
David S. Miller35a17eb2007-02-10 17:41:02 -08001215
David S. Millere9870c42007-05-07 23:28:50 -07001216 if (!pbm->teardown_msi_irq)
David S. Miller35a17eb2007-02-10 17:41:02 -08001217 return;
1218
David S. Millere9870c42007-05-07 23:28:50 -07001219 return pbm->teardown_msi_irq(virt_irq, pdev);
David S. Miller35a17eb2007-02-10 17:41:02 -08001220}
1221#endif /* !(CONFIG_PCI_MSI) */
1222
David S. Millerf6d0f9e2007-03-01 18:09:18 -08001223struct device_node *pci_device_to_OF_node(struct pci_dev *pdev)
1224{
David S. Millera2fb23a2007-02-28 23:35:04 -08001225 return pdev->dev.archdata.prom_node;
David S. Millerf6d0f9e2007-03-01 18:09:18 -08001226}
1227EXPORT_SYMBOL(pci_device_to_OF_node);
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229#endif /* !(CONFIG_PCI) */