blob: 032defe111aa99d1b274649b3d4cb8d10573fe49 [file] [log] [blame]
Alessandro Zummoa7918f32005-11-10 14:05:04 +00001/*
2 * arch/arm/mach-ixp4xx/nslu2-pci.c
3 *
4 * NSLU2 board-level PCI initialization
5 *
6 * based on ixdp425-pci.c:
7 * Copyright (C) 2002 Intel Corporation.
8 * Copyright (C) 2003-2004 MontaVista Software, Inc.
9 *
10 * Maintainer: http://www.nslu2-linux.org/
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
16 */
17
Alessandro Zummoa7918f32005-11-10 14:05:04 +000018#include <linux/pci.h>
19#include <linux/init.h>
Martin Michlmayrf64c2c02006-09-06 19:03:24 +010020#include <linux/irq.h>
Alessandro Zummoa7918f32005-11-10 14:05:04 +000021#include <asm/mach/pci.h>
22#include <asm/mach-types.h>
23
Krzysztof Hałasa8d3fdf32009-11-17 18:48:23 +010024#define MAX_DEV 3
25#define IRQ_LINES 3
Krzysztof Hałasac1117c62009-11-16 16:02:02 +010026
27/* PCI controller GPIO to IRQ pin mappings */
Krzysztof Hałasa8d3fdf32009-11-17 18:48:23 +010028#define INTA 11
29#define INTB 10
30#define INTC 9
31#define INTD 8
Krzysztof Hałasac1117c62009-11-16 16:02:02 +010032
Alessandro Zummoa7918f32005-11-10 14:05:04 +000033void __init nslu2_pci_preinit(void)
34{
Thomas Gleixner6845664a2011-03-24 13:25:22 +010035 irq_set_irq_type(IXP4XX_GPIO_IRQ(INTA), IRQ_TYPE_LEVEL_LOW);
36 irq_set_irq_type(IXP4XX_GPIO_IRQ(INTB), IRQ_TYPE_LEVEL_LOW);
37 irq_set_irq_type(IXP4XX_GPIO_IRQ(INTC), IRQ_TYPE_LEVEL_LOW);
Alessandro Zummoa7918f32005-11-10 14:05:04 +000038 ixp4xx_pci_preinit();
39}
40
Ralf Baechled5341942011-06-10 15:30:21 +010041static int __init nslu2_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
Alessandro Zummoa7918f32005-11-10 14:05:04 +000042{
Krzysztof Hałasa8d3fdf32009-11-17 18:48:23 +010043 static int pci_irq_table[IRQ_LINES] = {
44 IXP4XX_GPIO_IRQ(INTA),
45 IXP4XX_GPIO_IRQ(INTB),
46 IXP4XX_GPIO_IRQ(INTC),
Alessandro Zummoa7918f32005-11-10 14:05:04 +000047 };
48
Krzysztof Hałasa8d3fdf32009-11-17 18:48:23 +010049 if (slot >= 1 && slot <= MAX_DEV && pin >= 1 && pin <= IRQ_LINES)
50 return pci_irq_table[(slot + pin - 2) % IRQ_LINES];
Alessandro Zummoa7918f32005-11-10 14:05:04 +000051
Krzysztof Hałasa8d3fdf32009-11-17 18:48:23 +010052 return -1;
Alessandro Zummoa7918f32005-11-10 14:05:04 +000053}
54
55struct hw_pci __initdata nslu2_pci = {
56 .nr_controllers = 1,
Russell Kingc23bfc32012-03-10 12:49:16 +000057 .ops = &ixp4xx_ops,
Alessandro Zummoa7918f32005-11-10 14:05:04 +000058 .preinit = nslu2_pci_preinit,
Alessandro Zummoa7918f32005-11-10 14:05:04 +000059 .setup = ixp4xx_setup,
Alessandro Zummoa7918f32005-11-10 14:05:04 +000060 .map_irq = nslu2_map_irq,
61};
62
63int __init nslu2_pci_init(void) /* monkey see, monkey do */
64{
65 if (machine_is_nslu2())
66 pci_common_init(&nslu2_pci);
67
68 return 0;
69}
70
71subsys_initcall(nslu2_pci_init);