1 /* $Id: ebus.c,v 1.64 2001/11/08 04:41:33 davem Exp $
2 * ebus.c: PCI to EBus bridge device.
4 * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
5 * Copyright (C) 1999 David S. Miller (davem@redhat.com)
8 #include <linux/config.h>
9 #include <linux/module.h>
10 #include <linux/kernel.h>
11 #include <linux/types.h>
12 #include <linux/init.h>
13 #include <linux/slab.h>
14 #include <linux/string.h>
15 #include <linux/interrupt.h>
16 #include <linux/delay.h>
18 #include <asm/system.h>
22 #include <asm/oplib.h>
26 /* EBUS dma library. */
28 #define EBDMA_CSR 0x00UL /* Control/Status */
29 #define EBDMA_ADDR 0x04UL /* DMA Address */
30 #define EBDMA_COUNT 0x08UL /* DMA Count */
32 #define EBDMA_CSR_INT_PEND 0x00000001
33 #define EBDMA_CSR_ERR_PEND 0x00000002
34 #define EBDMA_CSR_DRAIN 0x00000004
35 #define EBDMA_CSR_INT_EN 0x00000010
36 #define EBDMA_CSR_RESET 0x00000080
37 #define EBDMA_CSR_WRITE 0x00000100
38 #define EBDMA_CSR_EN_DMA 0x00000200
39 #define EBDMA_CSR_CYC_PEND 0x00000400
40 #define EBDMA_CSR_DIAG_RD_DONE 0x00000800
41 #define EBDMA_CSR_DIAG_WR_DONE 0x00001000
42 #define EBDMA_CSR_EN_CNT 0x00002000
43 #define EBDMA_CSR_TC 0x00004000
44 #define EBDMA_CSR_DIS_CSR_DRN 0x00010000
45 #define EBDMA_CSR_BURST_SZ_MASK 0x000c0000
46 #define EBDMA_CSR_BURST_SZ_1 0x00080000
47 #define EBDMA_CSR_BURST_SZ_4 0x00000000
48 #define EBDMA_CSR_BURST_SZ_8 0x00040000
49 #define EBDMA_CSR_BURST_SZ_16 0x000c0000
50 #define EBDMA_CSR_DIAG_EN 0x00100000
51 #define EBDMA_CSR_DIS_ERR_PEND 0x00400000
52 #define EBDMA_CSR_TCI_DIS 0x00800000
53 #define EBDMA_CSR_EN_NEXT 0x01000000
54 #define EBDMA_CSR_DMA_ON 0x02000000
55 #define EBDMA_CSR_A_LOADED 0x04000000
56 #define EBDMA_CSR_NA_LOADED 0x08000000
57 #define EBDMA_CSR_DEV_ID_MASK 0xf0000000
59 #define EBUS_DMA_RESET_TIMEOUT 10000
61 static void __ebus_dma_reset(struct ebus_dma_info *p, int no_drain)
66 writel(EBDMA_CSR_RESET, p->regs + EBDMA_CSR);
72 for (i = EBUS_DMA_RESET_TIMEOUT; i > 0; i--) {
73 val = readl(p->regs + EBDMA_CSR);
75 if (!(val & (EBDMA_CSR_DRAIN | EBDMA_CSR_CYC_PEND)))
81 static irqreturn_t ebus_dma_irq(int irq, void *dev_id, struct pt_regs *regs)
83 struct ebus_dma_info *p = dev_id;
87 spin_lock_irqsave(&p->lock, flags);
88 csr = readl(p->regs + EBDMA_CSR);
89 writel(csr, p->regs + EBDMA_CSR);
90 spin_unlock_irqrestore(&p->lock, flags);
92 if (csr & EBDMA_CSR_ERR_PEND) {
93 printk(KERN_CRIT "ebus_dma(%s): DMA error!\n", p->name);
94 p->callback(p, EBUS_DMA_EVENT_ERROR, p->client_cookie);
96 } else if (csr & EBDMA_CSR_INT_PEND) {
98 (csr & EBDMA_CSR_TC) ?
99 EBUS_DMA_EVENT_DMA : EBUS_DMA_EVENT_DEVICE,
108 int ebus_dma_register(struct ebus_dma_info *p)
114 if (p->flags & ~(EBUS_DMA_FLAG_USE_EBDMA_HANDLER |
115 EBUS_DMA_FLAG_TCI_DISABLE))
117 if ((p->flags & EBUS_DMA_FLAG_USE_EBDMA_HANDLER) && !p->callback)
119 if (!strlen(p->name))
122 __ebus_dma_reset(p, 1);
124 csr = EBDMA_CSR_BURST_SZ_16 | EBDMA_CSR_EN_CNT;
126 if (p->flags & EBUS_DMA_FLAG_TCI_DISABLE)
127 csr |= EBDMA_CSR_TCI_DIS;
129 writel(csr, p->regs + EBDMA_CSR);
133 EXPORT_SYMBOL(ebus_dma_register);
135 int ebus_dma_irq_enable(struct ebus_dma_info *p, int on)
141 if (p->flags & EBUS_DMA_FLAG_USE_EBDMA_HANDLER) {
142 if (request_irq(p->irq, ebus_dma_irq, SA_SHIRQ, p->name, p))
146 spin_lock_irqsave(&p->lock, flags);
147 csr = readl(p->regs + EBDMA_CSR);
148 csr |= EBDMA_CSR_INT_EN;
149 writel(csr, p->regs + EBDMA_CSR);
150 spin_unlock_irqrestore(&p->lock, flags);
152 spin_lock_irqsave(&p->lock, flags);
153 csr = readl(p->regs + EBDMA_CSR);
154 csr &= ~EBDMA_CSR_INT_EN;
155 writel(csr, p->regs + EBDMA_CSR);
156 spin_unlock_irqrestore(&p->lock, flags);
158 if (p->flags & EBUS_DMA_FLAG_USE_EBDMA_HANDLER) {
165 EXPORT_SYMBOL(ebus_dma_irq_enable);
167 void ebus_dma_unregister(struct ebus_dma_info *p)
173 spin_lock_irqsave(&p->lock, flags);
174 csr = readl(p->regs + EBDMA_CSR);
175 if (csr & EBDMA_CSR_INT_EN) {
176 csr &= ~EBDMA_CSR_INT_EN;
177 writel(csr, p->regs + EBDMA_CSR);
180 spin_unlock_irqrestore(&p->lock, flags);
185 EXPORT_SYMBOL(ebus_dma_unregister);
187 int ebus_dma_request(struct ebus_dma_info *p, dma_addr_t bus_addr, size_t len)
193 if (len >= (1 << 24))
196 spin_lock_irqsave(&p->lock, flags);
197 csr = readl(p->regs + EBDMA_CSR);
199 if (!(csr & EBDMA_CSR_EN_DMA))
202 if (csr & EBDMA_CSR_NA_LOADED)
205 writel(len, p->regs + EBDMA_COUNT);
206 writel(bus_addr, p->regs + EBDMA_ADDR);
210 spin_unlock_irqrestore(&p->lock, flags);
214 EXPORT_SYMBOL(ebus_dma_request);
216 void ebus_dma_prepare(struct ebus_dma_info *p, int write)
221 spin_lock_irqsave(&p->lock, flags);
222 __ebus_dma_reset(p, 0);
224 csr = (EBDMA_CSR_INT_EN |
226 EBDMA_CSR_BURST_SZ_16 |
230 csr |= EBDMA_CSR_WRITE;
231 if (p->flags & EBUS_DMA_FLAG_TCI_DISABLE)
232 csr |= EBDMA_CSR_TCI_DIS;
234 writel(csr, p->regs + EBDMA_CSR);
236 spin_unlock_irqrestore(&p->lock, flags);
238 EXPORT_SYMBOL(ebus_dma_prepare);
240 unsigned int ebus_dma_residue(struct ebus_dma_info *p)
242 return readl(p->regs + EBDMA_COUNT);
244 EXPORT_SYMBOL(ebus_dma_residue);
246 unsigned int ebus_dma_addr(struct ebus_dma_info *p)
248 return readl(p->regs + EBDMA_ADDR);
250 EXPORT_SYMBOL(ebus_dma_addr);
252 void ebus_dma_enable(struct ebus_dma_info *p, int on)
257 spin_lock_irqsave(&p->lock, flags);
258 orig_csr = csr = readl(p->regs + EBDMA_CSR);
260 csr |= EBDMA_CSR_EN_DMA;
262 csr &= ~EBDMA_CSR_EN_DMA;
263 if ((orig_csr & EBDMA_CSR_EN_DMA) !=
264 (csr & EBDMA_CSR_EN_DMA))
265 writel(csr, p->regs + EBDMA_CSR);
266 spin_unlock_irqrestore(&p->lock, flags);
268 EXPORT_SYMBOL(ebus_dma_enable);
270 struct linux_ebus *ebus_chain = NULL;
272 static inline void *ebus_alloc(size_t size)
276 mem = kzalloc(size, GFP_ATOMIC);
278 panic("ebus_alloc: out of memory");
282 int __init ebus_intmap_match(struct linux_ebus *ebus,
283 struct linux_prom_registers *reg,
286 struct linux_prom_ebus_intmap *imap;
287 struct linux_prom_ebus_intmask *imask;
288 unsigned int hi, lo, irq;
291 imap = of_get_property(ebus->prom_node, "interrupt-map", &len);
294 n_imap = len / sizeof(imap[0]);
296 imask = of_get_property(ebus->prom_node, "interrupt-map-mask", NULL);
300 hi = reg->which_io & imask->phys_hi;
301 lo = reg->phys_addr & imask->phys_lo;
302 irq = *interrupt & imask->interrupt;
303 for (i = 0; i < n_imap; i++) {
304 if ((imap[i].phys_hi == hi) &&
305 (imap[i].phys_lo == lo) &&
306 (imap[i].interrupt == irq)) {
307 *interrupt = imap[i].cinterrupt;
314 void __init fill_ebus_child(struct device_node *dp,
315 struct linux_prom_registers *preg,
316 struct linux_ebus_child *dev,
317 int non_standard_regs)
324 printk(" (%s)", dp->name);
326 regs = of_get_property(dp, "reg", &len);
330 dev->num_addrs = len / sizeof(regs[0]);
332 if (non_standard_regs) {
333 /* This is to handle reg properties which are not
334 * in the parent relative format. One example are
335 * children of the i2c device on CompactPCI systems.
337 * So, for such devices we just record the property
338 * raw in the child resources.
340 for (i = 0; i < dev->num_addrs; i++)
341 dev->resource[i].start = regs[i];
343 for (i = 0; i < dev->num_addrs; i++) {
345 if (rnum >= dev->parent->num_addrs) {
346 prom_printf("UGH: property for %s was %d, need < %d\n",
347 dp->name, len, dev->parent->num_addrs);
350 dev->resource[i].start = dev->parent->resource[i].start;
351 dev->resource[i].end = dev->parent->resource[i].end;
352 dev->resource[i].flags = IORESOURCE_MEM;
353 dev->resource[i].name = dp->name;
357 for (i = 0; i < PROMINTR_MAX; i++)
358 dev->irqs[i] = PCI_IRQ_NONE;
360 irqs = of_get_property(dp, "interrupts", &len);
364 * Oh, well, some PROMs don't export interrupts
365 * property to children of EBus devices...
367 * Be smart about PS/2 keyboard and mouse.
369 if (!strcmp(dev->parent->prom_node->name, "8042")) {
370 if (!strcmp(dev->prom_node->name, "kb_ps2")) {
372 dev->irqs[0] = dev->parent->irqs[0];
375 dev->irqs[0] = dev->parent->irqs[1];
379 dev->num_irqs = len / sizeof(irqs[0]);
380 for (i = 0; i < dev->num_irqs; i++) {
381 struct pci_pbm_info *pbm = dev->bus->parent;
382 struct pci_controller_info *p = pbm->parent;
384 if (ebus_intmap_match(dev->bus, preg, &irqs[i]) != -1) {
385 dev->irqs[i] = p->irq_build(pbm,
389 /* If we get a bogus interrupt property, just
390 * record the raw value instead of punting.
392 dev->irqs[i] = irqs[i];
398 static int __init child_regs_nonstandard(struct linux_ebus_device *dev)
400 if (!strcmp(dev->prom_node->name, "i2c") ||
401 !strcmp(dev->prom_node->name, "SUNW,lombus"))
406 void __init fill_ebus_device(struct device_node *dp, struct linux_ebus_device *dev)
408 struct linux_prom_registers *regs;
409 struct linux_ebus_child *child;
415 printk(" [%s", dp->name);
417 regs = of_get_property(dp, "reg", &len);
420 goto probe_interrupts;
423 if (len % sizeof(struct linux_prom_registers)) {
424 prom_printf("UGH: proplen for %s was %d, need multiple of %d\n",
425 dev->prom_node->name, len,
426 (int)sizeof(struct linux_prom_registers));
429 dev->num_addrs = len / sizeof(struct linux_prom_registers);
431 for (i = 0; i < dev->num_addrs; i++) {
432 /* XXX Learn how to interpret ebus ranges... -DaveM */
433 if (regs[i].which_io >= 0x10)
434 n = (regs[i].which_io - 0x10) >> 2;
436 n = regs[i].which_io;
438 dev->resource[i].start = dev->bus->self->resource[n].start;
439 dev->resource[i].start += (unsigned long)regs[i].phys_addr;
440 dev->resource[i].end =
441 (dev->resource[i].start + (unsigned long)regs[i].reg_size - 1UL);
442 dev->resource[i].flags = IORESOURCE_MEM;
443 dev->resource[i].name = dev->prom_node->name;
444 request_resource(&dev->bus->self->resource[n],
449 for (i = 0; i < PROMINTR_MAX; i++)
450 dev->irqs[i] = PCI_IRQ_NONE;
452 irqs = of_get_property(dp, "interrupts", &len);
456 dev->num_irqs = len / sizeof(irqs[0]);
457 for (i = 0; i < dev->num_irqs; i++) {
458 struct pci_pbm_info *pbm = dev->bus->parent;
459 struct pci_controller_info *p = pbm->parent;
461 if (ebus_intmap_match(dev->bus, ®s[0], &irqs[i]) != -1) {
462 dev->irqs[i] = p->irq_build(pbm,
466 /* If we get a bogus interrupt property, just
467 * record the raw value instead of punting.
469 dev->irqs[i] = irqs[i];
474 dev->ofdev.node = dp;
475 dev->ofdev.dev.parent = &dev->bus->ofdev.dev;
476 dev->ofdev.dev.bus = &ebus_bus_type;
477 strcpy(dev->ofdev.dev.bus_id, dp->path_component_name);
479 /* Register with core */
480 if (of_device_register(&dev->ofdev) != 0)
481 printk(KERN_DEBUG "ebus: device registration error for %s!\n",
482 dev->ofdev.dev.bus_id);
487 dev->children = ebus_alloc(sizeof(struct linux_ebus_child));
489 child = dev->children;
492 child->bus = dev->bus;
493 fill_ebus_child(dp, regs, child,
494 child_regs_nonstandard(dev));
496 while ((dp = dp->sibling) != NULL) {
497 child->next = ebus_alloc(sizeof(struct linux_ebus_child));
502 child->bus = dev->bus;
503 fill_ebus_child(dp, regs, child,
504 child_regs_nonstandard(dev));
510 static struct pci_dev *find_next_ebus(struct pci_dev *start, int *is_rio_p)
512 struct pci_dev *pdev = start;
514 while ((pdev = pci_get_device(PCI_VENDOR_ID_SUN, PCI_ANY_ID, pdev)))
515 if (pdev->device == PCI_DEVICE_ID_SUN_EBUS ||
516 pdev->device == PCI_DEVICE_ID_SUN_RIO_EBUS)
519 *is_rio_p = !!(pdev && (pdev->device == PCI_DEVICE_ID_SUN_RIO_EBUS));
524 void __init ebus_init(void)
526 struct pci_pbm_info *pbm;
527 struct linux_ebus_device *dev;
528 struct linux_ebus *ebus;
529 struct pci_dev *pdev;
530 struct pcidev_cookie *cookie;
531 struct device_node *dp;
535 pdev = find_next_ebus(NULL, &is_rio);
537 printk("ebus: No EBus's found.\n");
541 cookie = pdev->sysdata;
542 dp = cookie->prom_node;
544 ebus_chain = ebus = ebus_alloc(sizeof(struct linux_ebus));
546 ebus->is_rio = is_rio;
549 struct device_node *child;
551 /* SUNW,pci-qfe uses four empty ebuses on it.
552 I think we should not consider them here,
553 as they have half of the properties this
554 code expects and once we do PCI hot-plug,
555 we'd have to tweak with the ebus_chain
556 in the runtime after initialization. -jj */
558 pdev = find_next_ebus(pdev, &is_rio);
560 if (ebus == ebus_chain) {
562 printk("ebus: No EBus's found.\n");
567 ebus->is_rio = is_rio;
568 cookie = pdev->sysdata;
569 dp = cookie->prom_node;
572 printk("ebus%d:", num_ebus);
574 ebus->index = num_ebus;
575 ebus->prom_node = dp;
577 ebus->parent = pbm = cookie->pbm;
579 ebus->ofdev.node = dp;
580 ebus->ofdev.dev.parent = &pdev->dev;
581 ebus->ofdev.dev.bus = &ebus_bus_type;
582 strcpy(ebus->ofdev.dev.bus_id, dp->path_component_name);
584 /* Register with core */
585 if (of_device_register(&ebus->ofdev) != 0)
586 printk(KERN_DEBUG "ebus: device registration error for %s!\n",
587 ebus->ofdev.dev.bus_id);
594 ebus->devices = ebus_alloc(sizeof(struct linux_ebus_device));
598 dev->children = NULL;
600 fill_ebus_device(child, dev);
602 while ((child = child->sibling) != NULL) {
603 dev->next = ebus_alloc(sizeof(struct linux_ebus_device));
607 dev->children = NULL;
609 fill_ebus_device(child, dev);
615 pdev = find_next_ebus(pdev, &is_rio);
619 cookie = pdev->sysdata;
620 dp = cookie->prom_node;
622 ebus->next = ebus_alloc(sizeof(struct linux_ebus));
625 ebus->is_rio = is_rio;
628 pci_dev_put(pdev); /* XXX for the case, when ebusnd is 0, is it OK? */