blob: dc8b5884875cd406592aae11600bb531d2a7783d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Krzysztof Hałasa9bf4d672009-11-16 15:24:41 +01002 * arch/arm/mach-ixp4xx/ixdp425-pci.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * IXDP425 board-level PCI initialization
5 *
6 * Copyright (C) 2002 Intel Corporation.
7 * Copyright (C) 2003-2004 MontaVista Software, Inc.
8 *
9 * Maintainer: Deepak Saxena <dsaxena@plexity.net>
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#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 <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/mach/pci.h>
23#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010024#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/mach-types.h>
26
Krzysztof Hałasa9bf4d672009-11-16 15:24:41 +010027#define IXDP425_PCI_MAX_DEV 4
28#define IXDP425_PCI_IRQ_LINES 4
29
30/* PCI controller GPIO to IRQ pin mappings */
31#define IXDP425_PCI_INTA_PIN 11
32#define IXDP425_PCI_INTB_PIN 10
33#define IXDP425_PCI_INTC_PIN 9
34#define IXDP425_PCI_INTD_PIN 8
35
36#define IRQ_IXDP425_PCI_INTA IRQ_IXP4XX_GPIO11
37#define IRQ_IXDP425_PCI_INTB IRQ_IXP4XX_GPIO10
38#define IRQ_IXDP425_PCI_INTC IRQ_IXP4XX_GPIO9
39#define IRQ_IXDP425_PCI_INTD IRQ_IXP4XX_GPIO8
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041void __init ixdp425_pci_preinit(void)
42{
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010043 set_irq_type(IRQ_IXDP425_PCI_INTA, IRQ_TYPE_LEVEL_LOW);
44 set_irq_type(IRQ_IXDP425_PCI_INTB, IRQ_TYPE_LEVEL_LOW);
45 set_irq_type(IRQ_IXDP425_PCI_INTC, IRQ_TYPE_LEVEL_LOW);
46 set_irq_type(IRQ_IXDP425_PCI_INTD, IRQ_TYPE_LEVEL_LOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 ixp4xx_pci_preinit();
49}
50
51static int __init ixdp425_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
52{
53 static int pci_irq_table[IXDP425_PCI_IRQ_LINES] = {
54 IRQ_IXDP425_PCI_INTA,
55 IRQ_IXDP425_PCI_INTB,
56 IRQ_IXDP425_PCI_INTC,
57 IRQ_IXDP425_PCI_INTD
58 };
59
60 int irq = -1;
61
62 if (slot >= 1 && slot <= IXDP425_PCI_MAX_DEV &&
63 pin >= 1 && pin <= IXDP425_PCI_IRQ_LINES) {
64 irq = pci_irq_table[(slot + pin - 2) % 4];
65 }
66
67 return irq;
68}
69
70struct hw_pci ixdp425_pci __initdata = {
71 .nr_controllers = 1,
72 .preinit = ixdp425_pci_preinit,
73 .swizzle = pci_std_swizzle,
74 .setup = ixp4xx_setup,
75 .scan = ixp4xx_scan_bus,
76 .map_irq = ixdp425_map_irq,
77};
78
79int __init ixdp425_pci_init(void)
80{
81 if (machine_is_ixdp425() || machine_is_ixcdp1100() ||
Ruslan V. Sushko45fba082007-04-06 15:00:31 +010082 machine_is_ixdp465() || machine_is_kixrp435())
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 pci_common_init(&ixdp425_pci);
84 return 0;
85}
86
87subsys_initcall(ixdp425_pci_init);
88