]> git.ipfire.org Git - thirdparty/linux.git/blame - arch/arm/mach-ixp4xx/coyote-pci.c
soc: ixp4xx: npe: Pass addresses as resources
[thirdparty/linux.git] / arch / arm / mach-ixp4xx / coyote-pci.c
CommitLineData
1da177e4 1/*
f30c2269 2 * arch/arm/mach-ixp4xx/coyote-pci.c
1da177e4
LT
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>
698dfe2b 20#include <linux/irq.h>
1da177e4 21#include <asm/mach-types.h>
a09e64fb 22#include <mach/hardware.h>
1da177e4 23#include <asm/irq.h>
1da177e4
LT
24#include <asm/mach/pci.h>
25
dc8ef8cd
LW
26#include "irqs.h"
27
8d3fdf31
KH
28#define SLOT0_DEVID 14
29#define SLOT1_DEVID 15
f89f4490
KH
30
31/* PCI controller GPIO to IRQ pin mappings */
8d3fdf31
KH
32#define SLOT0_INTA 6
33#define SLOT1_INTA 11
f89f4490 34
1da177e4
LT
35void __init coyote_pci_preinit(void)
36{
6845664a
TG
37 irq_set_irq_type(IXP4XX_GPIO_IRQ(SLOT0_INTA), IRQ_TYPE_LEVEL_LOW);
38 irq_set_irq_type(IXP4XX_GPIO_IRQ(SLOT1_INTA), IRQ_TYPE_LEVEL_LOW);
1da177e4
LT
39 ixp4xx_pci_preinit();
40}
41
d5341942 42static int __init coyote_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
1da177e4 43{
8d3fdf31
KH
44 if (slot == SLOT0_DEVID)
45 return IXP4XX_GPIO_IRQ(SLOT0_INTA);
46 else if (slot == SLOT1_DEVID)
47 return IXP4XX_GPIO_IRQ(SLOT1_INTA);
1da177e4
LT
48 else return -1;
49}
50
51struct hw_pci coyote_pci __initdata = {
52 .nr_controllers = 1,
c23bfc38 53 .ops = &ixp4xx_ops,
1da177e4 54 .preinit = coyote_pci_preinit,
1da177e4 55 .setup = ixp4xx_setup,
1da177e4
LT
56 .map_irq = coyote_map_irq,
57};
58
59int __init coyote_pci_init(void)
60{
61 if (machine_is_adi_coyote())
62 pci_common_init(&coyote_pci);
63 return 0;
64}
65
66subsys_initcall(coyote_pci_init);