diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/arm/mach-footbridge/cats-pci.c |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/arm/mach-footbridge/cats-pci.c')
-rw-r--r-- | arch/arm/mach-footbridge/cats-pci.c | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/arch/arm/mach-footbridge/cats-pci.c b/arch/arm/mach-footbridge/cats-pci.c new file mode 100644 index 000000000000..4f984fde7375 --- /dev/null +++ b/arch/arm/mach-footbridge/cats-pci.c | |||
@@ -0,0 +1,55 @@ | |||
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 | |||
19 | static int __init cats_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | ||
20 | { | ||
21 | if (dev->irq >= 128) | ||
22 | return dev->irq & 0x1f; | ||
23 | |||
24 | if (dev->irq >= 1 && dev->irq <= 4) | ||
25 | return irqmap_cats[dev->irq - 1]; | ||
26 | |||
27 | if (dev->irq != 0) | ||
28 | printk("PCI: device %02x:%02x has unknown irq line %x\n", | ||
29 | dev->bus->number, dev->devfn, dev->irq); | ||
30 | |||
31 | return -1; | ||
32 | } | ||
33 | |||
34 | /* | ||
35 | * why not the standard PCI swizzle? does this prevent 4-port tulip | ||
36 | * cards being used (ie, pci-pci bridge based cards)? | ||
37 | */ | ||
38 | static struct hw_pci cats_pci __initdata = { | ||
39 | .swizzle = NULL, | ||
40 | .map_irq = cats_map_irq, | ||
41 | .nr_controllers = 1, | ||
42 | .setup = dc21285_setup, | ||
43 | .scan = dc21285_scan_bus, | ||
44 | .preinit = dc21285_preinit, | ||
45 | .postinit = dc21285_postinit, | ||
46 | }; | ||
47 | |||
48 | static int cats_pci_init(void) | ||
49 | { | ||
50 | if (machine_is_cats()) | ||
51 | pci_common_init(&cats_pci); | ||
52 | return 0; | ||
53 | } | ||
54 | |||
55 | subsys_initcall(cats_pci_init); | ||