Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm...
[deliverable/linux.git] / arch / mips / ath79 / pci.c
CommitLineData
e2dbdc43
GJ
1/*
2 * Atheros AR71XX/AR724X specific PCI setup code
3 *
4 * Copyright (C) 2011 René Bolldorf <xsecute@googlemail.com>
e9b62e8e
GJ
5 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
6 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 *
8 * Parts of this file are based on Atheros' 2.6.15 BSP
e2dbdc43
GJ
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published
12 * by the Free Software Foundation.
13 */
14
d22ce25f 15#include <linux/init.h>
e2dbdc43 16#include <linux/pci.h>
ec950259 17#include <asm/mach-ath79/ar71xx_regs.h>
6335aef5 18#include <asm/mach-ath79/ath79.h>
4c07c7df 19#include <asm/mach-ath79/irq.h>
6335aef5 20#include <asm/mach-ath79/pci.h>
3a6208df 21#include "pci.h"
e2dbdc43 22
a68ad4d8 23static int (*ath79_pci_plat_dev_init)(struct pci_dev *dev);
d22ce25f
GJ
24static const struct ath79_pci_irq *ath79_pci_irq_map __initdata;
25static unsigned ath79_pci_nr_irqs __initdata;
e2dbdc43 26
d22ce25f
GJ
27static const struct ath79_pci_irq ar71xx_pci_irq_map[] __initconst = {
28 {
29 .slot = 17,
30 .pin = 1,
31 .irq = ATH79_PCI_IRQ(0),
32 }, {
33 .slot = 18,
34 .pin = 1,
35 .irq = ATH79_PCI_IRQ(1),
36 }, {
37 .slot = 19,
38 .pin = 1,
39 .irq = ATH79_PCI_IRQ(2),
40 }
41};
42
43static const struct ath79_pci_irq ar724x_pci_irq_map[] __initconst = {
44 {
45 .slot = 0,
46 .pin = 1,
47 .irq = ATH79_PCI_IRQ(0),
48 }
49};
50
e2dbdc43
GJ
51int __init pcibios_map_irq(const struct pci_dev *dev, uint8_t slot, uint8_t pin)
52{
e2dbdc43 53 int irq = -1;
d22ce25f
GJ
54 int i;
55
56 if (ath79_pci_nr_irqs == 0 ||
57 ath79_pci_irq_map == NULL) {
58 if (soc_is_ar71xx()) {
59 ath79_pci_irq_map = ar71xx_pci_irq_map;
60 ath79_pci_nr_irqs = ARRAY_SIZE(ar71xx_pci_irq_map);
ec950259
GJ
61 } else if (soc_is_ar724x() ||
62 soc_is_ar9342() ||
63 soc_is_ar9344()) {
d22ce25f
GJ
64 ath79_pci_irq_map = ar724x_pci_irq_map;
65 ath79_pci_nr_irqs = ARRAY_SIZE(ar724x_pci_irq_map);
66 } else {
67 pr_crit("pci %s: invalid irq map\n",
68 pci_name((struct pci_dev *) dev));
69 return irq;
70 }
71 }
72
73 for (i = 0; i < ath79_pci_nr_irqs; i++) {
74 const struct ath79_pci_irq *entry;
e2dbdc43 75
d22ce25f
GJ
76 entry = &ath79_pci_irq_map[i];
77 if (entry->slot == slot && entry->pin == pin) {
78 irq = entry->irq;
79 break;
80 }
81 }
e2dbdc43 82
d22ce25f
GJ
83 if (irq < 0)
84 pr_crit("pci %s: no irq found for pin %u\n",
85 pci_name((struct pci_dev *) dev), pin);
86 else
87 pr_info("pci %s: using irq %d for pin %u\n",
88 pci_name((struct pci_dev *) dev), irq, pin);
e2dbdc43
GJ
89
90 return irq;
91}
92
93int pcibios_plat_dev_init(struct pci_dev *dev)
94{
a68ad4d8
GJ
95 if (ath79_pci_plat_dev_init)
96 return ath79_pci_plat_dev_init(dev);
e2dbdc43 97
a68ad4d8
GJ
98 return 0;
99}
e2dbdc43 100
d22ce25f
GJ
101void __init ath79_pci_set_irq_map(unsigned nr_irqs,
102 const struct ath79_pci_irq *map)
103{
104 ath79_pci_nr_irqs = nr_irqs;
105 ath79_pci_irq_map = map;
106}
107
a68ad4d8
GJ
108void __init ath79_pci_set_plat_dev_init(int (*func)(struct pci_dev *dev))
109{
110 ath79_pci_plat_dev_init = func;
e2dbdc43 111}
6335aef5
GJ
112
113int __init ath79_register_pci(void)
114{
d22ce25f
GJ
115 if (soc_is_ar71xx())
116 return ar71xx_pcibios_init();
117
6335aef5 118 if (soc_is_ar724x())
4c07c7df 119 return ar724x_pcibios_init(ATH79_CPU_IRQ_IP2);
6335aef5 120
ec950259
GJ
121 if (soc_is_ar9342() || soc_is_ar9344()) {
122 u32 bootstrap;
123
124 bootstrap = ath79_reset_rr(AR934X_RESET_REG_BOOTSTRAP);
125 if (bootstrap & AR934X_BOOTSTRAP_PCIE_RC)
126 return ar724x_pcibios_init(ATH79_IP2_IRQ(0));
127 }
128
6335aef5
GJ
129 return -ENODEV;
130}
This page took 0.082117 seconds and 5 git commands to generate.