blob: 624f8fe83c45fcea45b1883d61807ce36b5c16c0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * arch/arm/mach-ixp4xx/coyote-pci.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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>
Thomas Gleixner698dfe22006-07-01 23:01:49 +010020#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/mach/pci.h>
25
Krzysztof HaƂasaf89f4492009-11-16 15:57:41 +010026#define COYOTE_PCI_SLOT0_DEVID 14
27#define COYOTE_PCI_SLOT1_DEVID 15
28
29/* PCI controller GPIO to IRQ pin mappings */
30#define COYOTE_PCI_SLOT0_PIN 6
31#define COYOTE_PCI_SLOT1_PIN 11
32
33#define IRQ_COYOTE_PCI_SLOT0 IRQ_IXP4XX_GPIO6
34#define IRQ_COYOTE_PCI_SLOT1 IRQ_IXP4XX_GPIO11
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036void __init coyote_pci_preinit(void)
37{
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010038 set_irq_type(IRQ_COYOTE_PCI_SLOT0, IRQ_TYPE_LEVEL_LOW);
39 set_irq_type(IRQ_COYOTE_PCI_SLOT1, IRQ_TYPE_LEVEL_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 ixp4xx_pci_preinit();
42}
43
44static int __init coyote_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
45{
46 if (slot == COYOTE_PCI_SLOT0_DEVID)
47 return IRQ_COYOTE_PCI_SLOT0;
48 else if (slot == COYOTE_PCI_SLOT1_DEVID)
49 return IRQ_COYOTE_PCI_SLOT1;
50 else return -1;
51}
52
53struct hw_pci coyote_pci __initdata = {
54 .nr_controllers = 1,
55 .preinit = coyote_pci_preinit,
56 .swizzle = pci_std_swizzle,
57 .setup = ixp4xx_setup,
58 .scan = ixp4xx_scan_bus,
59 .map_irq = coyote_map_irq,
60};
61
62int __init coyote_pci_init(void)
63{
64 if (machine_is_adi_coyote())
65 pci_common_init(&coyote_pci);
66 return 0;
67}
68
69subsys_initcall(coyote_pci_init);