This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / arch / arm / mach-ixp4xx / ixdpg425-pci.c
1 /*
2  * arch/arch/mach-ixp4xx/ixdpg425-pci.c
3  *
4  * PCI setup routines for Intel IXDPG425 Platform
5  *
6  * Copyright (C) 2004 MontaVista Softwrae, Inc.
7  *
8  * Maintainer: Deepak Saxena <dsaxena@plexity.net>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  *
14  */
15
16 #include <linux/pci.h>
17 #include <linux/init.h>
18
19 #include <asm/mach-types.h>
20 #include <asm/hardware.h>
21 #include <asm/irq.h>
22
23 #include <asm/mach/pci.h>
24
25 extern void ixp4xx_pci_preinit(void);
26 extern int ixp4xx_setup(int nr, struct pci_sys_data *sys);
27 extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys);
28
29 void __init ixdpg425_pci_preinit(void)
30 {
31         gpio_line_config(6, IXP4XX_GPIO_IN | IXP4XX_GPIO_ACTIVE_LOW);
32         gpio_line_config(7, IXP4XX_GPIO_IN | IXP4XX_GPIO_ACTIVE_LOW);
33
34         gpio_line_isr_clear(6);
35         gpio_line_isr_clear(7);
36
37         ixp4xx_pci_preinit();
38 }
39
40 static int __init ixdpg425_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
41 {
42         if (slot == 12 || slot == 13)
43                 return IRQ_IXP4XX_GPIO7;
44         else if (slot == 14)
45                 return IRQ_IXP4XX_GPIO6;
46         else return -1;
47 }
48
49 struct hw_pci ixdpg425_pci __initdata = {
50         .nr_controllers = 1,
51         .preinit =        ixdpg425_pci_preinit,
52         .swizzle =        pci_std_swizzle,
53         .setup =          ixp4xx_setup,
54         .scan =           ixp4xx_scan_bus,
55         .map_irq =        ixdpg425_map_irq,
56 };
57
58 int __init ixdpg425_pci_init(void)
59 {
60         if (machine_is_ixdpg425())
61                 pci_common_init(&ixdpg425_pci);
62         return 0;
63 }
64
65 subsys_initcall(ixdpg425_pci_init);