2 * arch/arm/mach-ixp4xx/ixdp425-pci.c
4 * IXDP425 board-level PCI initialization
6 * Copyright (C) 2002 Intel Corporation.
7 * Copyright (C) 2003-2004 MontaVista Software, Inc.
9 * Maintainer: Deepak Saxena <dsaxena@plexity.net>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
17 #include <linux/config.h>
18 #include <linux/pci.h>
19 #include <linux/init.h>
20 #include <linux/delay.h>
22 #include <asm/mach/pci.h>
24 #include <asm/hardware.h>
25 #include <asm/mach-types.h>
27 void __init
ixdp425_pci_preinit(void)
29 gpio_line_config(IXDP425_PCI_INTA_PIN
,
30 IXP4XX_GPIO_IN
| IXP4XX_GPIO_ACTIVE_LOW
);
31 gpio_line_config(IXDP425_PCI_INTB_PIN
,
32 IXP4XX_GPIO_IN
| IXP4XX_GPIO_ACTIVE_LOW
);
33 gpio_line_config(IXDP425_PCI_INTC_PIN
,
34 IXP4XX_GPIO_IN
| IXP4XX_GPIO_ACTIVE_LOW
);
35 gpio_line_config(IXDP425_PCI_INTD_PIN
,
36 IXP4XX_GPIO_IN
| IXP4XX_GPIO_ACTIVE_LOW
);
38 gpio_line_isr_clear(IXDP425_PCI_INTA_PIN
);
39 gpio_line_isr_clear(IXDP425_PCI_INTB_PIN
);
40 gpio_line_isr_clear(IXDP425_PCI_INTC_PIN
);
41 gpio_line_isr_clear(IXDP425_PCI_INTD_PIN
);
46 static int __init
ixdp425_map_irq(struct pci_dev
*dev
, u8 slot
, u8 pin
)
48 static int pci_irq_table
[IXDP425_PCI_IRQ_LINES
] = {
57 if (slot
>= 1 && slot
<= IXDP425_PCI_MAX_DEV
&&
58 pin
>= 1 && pin
<= IXDP425_PCI_IRQ_LINES
) {
59 irq
= pci_irq_table
[(slot
+ pin
- 2) % 4];
65 struct hw_pci ixdp425_pci __initdata
= {
67 .preinit
= ixdp425_pci_preinit
,
68 .swizzle
= pci_std_swizzle
,
69 .setup
= ixp4xx_setup
,
70 .scan
= ixp4xx_scan_bus
,
71 .map_irq
= ixdp425_map_irq
,
74 int __init
ixdp425_pci_init(void)
76 if (machine_is_ixdp425() ||
77 machine_is_ixcdp1100() ||
79 pci_common_init(&ixdp425_pci
);
83 subsys_initcall(ixdp425_pci_init
);