diff options
Diffstat (limited to 'arch/arm/mach-ixp4xx/nas100d-pci.c')
-rw-r--r-- | arch/arm/mach-ixp4xx/nas100d-pci.c | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/arch/arm/mach-ixp4xx/nas100d-pci.c b/arch/arm/mach-ixp4xx/nas100d-pci.c new file mode 100644 index 000000000000..9bd029462359 --- /dev/null +++ b/arch/arm/mach-ixp4xx/nas100d-pci.c | |||
@@ -0,0 +1,77 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-ixp4xx/nas100d-pci.c | ||
3 | * | ||
4 | * NAS 100d board-level PCI initialization | ||
5 | * | ||
6 | * based on ixdp425-pci.c: | ||
7 | * Copyright (C) 2002 Intel Corporation. | ||
8 | * Copyright (C) 2003-2004 MontaVista Software, Inc. | ||
9 | * | ||
10 | * Maintainer: http://www.nslu2-linux.org/ | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify | ||
13 | * it under the terms of the GNU General Public License version 2 as | ||
14 | * published by the Free Software Foundation. | ||
15 | * | ||
16 | */ | ||
17 | |||
18 | #include <linux/config.h> | ||
19 | #include <linux/pci.h> | ||
20 | #include <linux/init.h> | ||
21 | |||
22 | #include <asm/mach/pci.h> | ||
23 | #include <asm/mach-types.h> | ||
24 | |||
25 | void __init nas100d_pci_preinit(void) | ||
26 | { | ||
27 | set_irq_type(IRQ_NAS100D_PCI_INTA, IRQT_LOW); | ||
28 | set_irq_type(IRQ_NAS100D_PCI_INTB, IRQT_LOW); | ||
29 | set_irq_type(IRQ_NAS100D_PCI_INTC, IRQT_LOW); | ||
30 | set_irq_type(IRQ_NAS100D_PCI_INTD, IRQT_LOW); | ||
31 | set_irq_type(IRQ_NAS100D_PCI_INTE, IRQT_LOW); | ||
32 | |||
33 | gpio_line_isr_clear(NAS100D_PCI_INTA_PIN); | ||
34 | gpio_line_isr_clear(NAS100D_PCI_INTB_PIN); | ||
35 | gpio_line_isr_clear(NAS100D_PCI_INTC_PIN); | ||
36 | gpio_line_isr_clear(NAS100D_PCI_INTD_PIN); | ||
37 | gpio_line_isr_clear(NAS100D_PCI_INTE_PIN); | ||
38 | |||
39 | ixp4xx_pci_preinit(); | ||
40 | } | ||
41 | |||
42 | static int __init nas100d_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | ||
43 | { | ||
44 | static int pci_irq_table[NAS100D_PCI_MAX_DEV][NAS100D_PCI_IRQ_LINES] = | ||
45 | { | ||
46 | { IRQ_NAS100D_PCI_INTA, -1, -1 }, | ||
47 | { IRQ_NAS100D_PCI_INTB, -1, -1 }, | ||
48 | { IRQ_NAS100D_PCI_INTC, IRQ_NAS100D_PCI_INTD, IRQ_NAS100D_PCI_INTE }, | ||
49 | }; | ||
50 | |||
51 | int irq = -1; | ||
52 | |||
53 | if (slot >= 1 && slot <= NAS100D_PCI_MAX_DEV && | ||
54 | pin >= 1 && pin <= NAS100D_PCI_IRQ_LINES) | ||
55 | irq = pci_irq_table[slot-1][pin-1]; | ||
56 | |||
57 | return irq; | ||
58 | } | ||
59 | |||
60 | struct hw_pci __initdata nas100d_pci = { | ||
61 | .nr_controllers = 1, | ||
62 | .preinit = nas100d_pci_preinit, | ||
63 | .swizzle = pci_std_swizzle, | ||
64 | .setup = ixp4xx_setup, | ||
65 | .scan = ixp4xx_scan_bus, | ||
66 | .map_irq = nas100d_map_irq, | ||
67 | }; | ||
68 | |||
69 | int __init nas100d_pci_init(void) | ||
70 | { | ||
71 | if (machine_is_nas100d()) | ||
72 | pci_common_init(&nas100d_pci); | ||
73 | |||
74 | return 0; | ||
75 | } | ||
76 | |||
77 | subsys_initcall(nas100d_pci_init); | ||