Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-footbridge/cats-pci.c |
| 3 | * |
| 4 | * PCI bios-type initialisation for PCI machines |
| 5 | * |
| 6 | * Bits taken from various places. |
| 7 | */ |
| 8 | #include <linux/kernel.h> |
| 9 | #include <linux/pci.h> |
| 10 | #include <linux/init.h> |
| 11 | |
| 12 | #include <asm/irq.h> |
| 13 | #include <asm/mach/pci.h> |
| 14 | #include <asm/mach-types.h> |
| 15 | |
| 16 | /* cats host-specific stuff */ |
| 17 | static int irqmap_cats[] __initdata = { IRQ_PCI, IRQ_IN0, IRQ_IN1, IRQ_IN3 }; |
| 18 | |
Russell King | 66e9279 | 2012-03-10 11:29:34 +0000 | [diff] [blame] | 19 | static u8 cats_no_swizzle(struct pci_dev *dev, u8 *pin) |
| 20 | { |
| 21 | return 0; |
| 22 | } |
| 23 | |
Ralf Baechle | d534194 | 2011-06-10 15:30:21 +0100 | [diff] [blame] | 24 | static int __init cats_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | { |
Ben Dooks | e38d523 | 2008-08-08 21:22:35 +0100 | [diff] [blame] | 26 | if (dev->irq >= 255) |
| 27 | return -1; /* not a valid interrupt. */ |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | if (dev->irq >= 128) |
| 30 | return dev->irq & 0x1f; |
| 31 | |
| 32 | if (dev->irq >= 1 && dev->irq <= 4) |
| 33 | return irqmap_cats[dev->irq - 1]; |
| 34 | |
| 35 | if (dev->irq != 0) |
| 36 | printk("PCI: device %02x:%02x has unknown irq line %x\n", |
| 37 | dev->bus->number, dev->devfn, dev->irq); |
| 38 | |
| 39 | return -1; |
| 40 | } |
| 41 | |
| 42 | /* |
| 43 | * why not the standard PCI swizzle? does this prevent 4-port tulip |
| 44 | * cards being used (ie, pci-pci bridge based cards)? |
| 45 | */ |
| 46 | static struct hw_pci cats_pci __initdata = { |
Russell King | 66e9279 | 2012-03-10 11:29:34 +0000 | [diff] [blame] | 47 | .swizzle = cats_no_swizzle, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | .map_irq = cats_map_irq, |
| 49 | .nr_controllers = 1, |
Russell King | c23bfc3 | 2012-03-10 12:49:16 +0000 | [diff] [blame] | 50 | .ops = &dc21285_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | .setup = dc21285_setup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | .preinit = dc21285_preinit, |
| 53 | .postinit = dc21285_postinit, |
| 54 | }; |
| 55 | |
Russell King | cdea460 | 2007-05-30 17:48:45 +0100 | [diff] [blame] | 56 | static int __init cats_pci_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
| 58 | if (machine_is_cats()) |
| 59 | pci_common_init(&cats_pci); |
| 60 | return 0; |
| 61 | } |
| 62 | |
| 63 | subsys_initcall(cats_pci_init); |