[ARM] 3702/1: ARM: Convert ixp23xx to generic irq handling
[linux-2.6-block.git] / arch / arm / mach-ixp4xx / coyote-pci.c
CommitLineData
1da177e4
LT
1/*
2 * arch/arch/mach-ixp4xx/coyote-pci.c
3 *
4 * PCI setup routines for ADI Engineering Coyote platform
5 *
6 * Copyright (C) 2002 Jungo Software Technologies.
7 * Copyright (C) 2003 MontaVista Softwrae, Inc.
8 *
9 * Maintainer: Deepak Saxena <dsaxena@mvista.com>
10 *
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.
14 *
15 */
16
17#include <linux/kernel.h>
18#include <linux/pci.h>
19#include <linux/init.h>
20
21#include <asm/mach-types.h>
22#include <asm/hardware.h>
23#include <asm/irq.h>
24
25#include <asm/mach/pci.h>
26
27extern void ixp4xx_pci_preinit(void);
28extern int ixp4xx_setup(int nr, struct pci_sys_data *sys);
29extern struct pci_bus *ixp4xx_scan_bus(int nr, struct pci_sys_data *sys);
30
31void __init coyote_pci_preinit(void)
32{
bdf82b59
DS
33 set_irq_type(IRQ_COYOTE_PCI_SLOT0, IRQT_LOW);
34 set_irq_type(IRQ_COYOTE_PCI_SLOT1, IRQT_LOW);
1da177e4 35
1da177e4
LT
36 ixp4xx_pci_preinit();
37}
38
39static int __init coyote_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
40{
41 if (slot == COYOTE_PCI_SLOT0_DEVID)
42 return IRQ_COYOTE_PCI_SLOT0;
43 else if (slot == COYOTE_PCI_SLOT1_DEVID)
44 return IRQ_COYOTE_PCI_SLOT1;
45 else return -1;
46}
47
48struct hw_pci coyote_pci __initdata = {
49 .nr_controllers = 1,
50 .preinit = coyote_pci_preinit,
51 .swizzle = pci_std_swizzle,
52 .setup = ixp4xx_setup,
53 .scan = ixp4xx_scan_bus,
54 .map_irq = coyote_map_irq,
55};
56
57int __init coyote_pci_init(void)
58{
59 if (machine_is_adi_coyote())
60 pci_common_init(&coyote_pci);
61 return 0;
62}
63
64subsys_initcall(coyote_pci_init);