blob: 4350c252bce5d159e18242b9b1b261cd88136d91 [file] [log] [blame]
Gabor Juhose2dbdc42012-03-14 10:29:21 +01001/*
2 * Atheros AR71XX/AR724X specific PCI setup code
3 *
4 * Copyright (C) 2011 René Bolldorf <xsecute@googlemail.com>
Gabor Juhose9b62e82012-03-14 10:36:14 +01005 * 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
Gabor Juhose2dbdc42012-03-14 10:29:21 +01009 *
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
Gabor Juhosd22ce252012-03-14 10:36:11 +010015#include <linux/init.h>
Gabor Juhose2dbdc42012-03-14 10:29:21 +010016#include <linux/pci.h>
Gabor Juhos9fc1ca52013-02-02 11:44:24 +000017#include <linux/resource.h>
18#include <linux/platform_device.h>
Gabor Juhosec950252012-03-14 10:45:30 +010019#include <asm/mach-ath79/ar71xx_regs.h>
Gabor Juhos6335aef2012-03-14 10:29:24 +010020#include <asm/mach-ath79/ath79.h>
Gabor Juhos4c07c7d2012-03-14 10:36:07 +010021#include <asm/mach-ath79/irq.h>
Gabor Juhos3a6208d2012-03-14 10:29:22 +010022#include "pci.h"
Gabor Juhose2dbdc42012-03-14 10:29:21 +010023
Gabor Juhosa68ad4d2012-03-14 10:36:09 +010024static int (*ath79_pci_plat_dev_init)(struct pci_dev *dev);
Gabor Juhosd22ce252012-03-14 10:36:11 +010025static const struct ath79_pci_irq *ath79_pci_irq_map __initdata;
26static unsigned ath79_pci_nr_irqs __initdata;
Gabor Juhose2dbdc42012-03-14 10:29:21 +010027
Gabor Juhosd22ce252012-03-14 10:36:11 +010028static const struct ath79_pci_irq ar71xx_pci_irq_map[] __initconst = {
29 {
30 .slot = 17,
31 .pin = 1,
32 .irq = ATH79_PCI_IRQ(0),
33 }, {
34 .slot = 18,
35 .pin = 1,
36 .irq = ATH79_PCI_IRQ(1),
37 }, {
38 .slot = 19,
39 .pin = 1,
40 .irq = ATH79_PCI_IRQ(2),
41 }
42};
43
44static const struct ath79_pci_irq ar724x_pci_irq_map[] __initconst = {
45 {
46 .slot = 0,
47 .pin = 1,
48 .irq = ATH79_PCI_IRQ(0),
49 }
50};
51
Gabor Juhose2dbdc42012-03-14 10:29:21 +010052int __init pcibios_map_irq(const struct pci_dev *dev, uint8_t slot, uint8_t pin)
53{
Gabor Juhose2dbdc42012-03-14 10:29:21 +010054 int irq = -1;
Gabor Juhosd22ce252012-03-14 10:36:11 +010055 int i;
Gabor Juhose2dbdc42012-03-14 10:29:21 +010056
Gabor Juhosd22ce252012-03-14 10:36:11 +010057 if (ath79_pci_nr_irqs == 0 ||
58 ath79_pci_irq_map == NULL) {
59 if (soc_is_ar71xx()) {
60 ath79_pci_irq_map = ar71xx_pci_irq_map;
61 ath79_pci_nr_irqs = ARRAY_SIZE(ar71xx_pci_irq_map);
Gabor Juhosec950252012-03-14 10:45:30 +010062 } else if (soc_is_ar724x() ||
63 soc_is_ar9342() ||
64 soc_is_ar9344()) {
Gabor Juhosd22ce252012-03-14 10:36:11 +010065 ath79_pci_irq_map = ar724x_pci_irq_map;
66 ath79_pci_nr_irqs = ARRAY_SIZE(ar724x_pci_irq_map);
67 } else {
68 pr_crit("pci %s: invalid irq map\n",
69 pci_name((struct pci_dev *) dev));
70 return irq;
71 }
72 }
Gabor Juhose2dbdc42012-03-14 10:29:21 +010073
Gabor Juhosd22ce252012-03-14 10:36:11 +010074 for (i = 0; i < ath79_pci_nr_irqs; i++) {
75 const struct ath79_pci_irq *entry;
76
77 entry = &ath79_pci_irq_map[i];
Gabor Juhos617fed42013-02-03 09:58:37 +000078 if (entry->bus == dev->bus->number &&
79 entry->slot == slot &&
80 entry->pin == pin) {
Gabor Juhosd22ce252012-03-14 10:36:11 +010081 irq = entry->irq;
82 break;
83 }
84 }
85
86 if (irq < 0)
87 pr_crit("pci %s: no irq found for pin %u\n",
88 pci_name((struct pci_dev *) dev), pin);
89 else
90 pr_info("pci %s: using irq %d for pin %u\n",
91 pci_name((struct pci_dev *) dev), irq, pin);
Gabor Juhose2dbdc42012-03-14 10:29:21 +010092
93 return irq;
94}
95
96int pcibios_plat_dev_init(struct pci_dev *dev)
97{
Gabor Juhosa68ad4d2012-03-14 10:36:09 +010098 if (ath79_pci_plat_dev_init)
99 return ath79_pci_plat_dev_init(dev);
Gabor Juhose2dbdc42012-03-14 10:29:21 +0100100
Gabor Juhosa68ad4d2012-03-14 10:36:09 +0100101 return 0;
102}
Gabor Juhose2dbdc42012-03-14 10:29:21 +0100103
Gabor Juhosd22ce252012-03-14 10:36:11 +0100104void __init ath79_pci_set_irq_map(unsigned nr_irqs,
105 const struct ath79_pci_irq *map)
106{
107 ath79_pci_nr_irqs = nr_irqs;
108 ath79_pci_irq_map = map;
109}
110
Gabor Juhosa68ad4d2012-03-14 10:36:09 +0100111void __init ath79_pci_set_plat_dev_init(int (*func)(struct pci_dev *dev))
112{
113 ath79_pci_plat_dev_init = func;
Gabor Juhose2dbdc42012-03-14 10:29:21 +0100114}
Gabor Juhos6335aef2012-03-14 10:29:24 +0100115
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000116static struct platform_device *
117ath79_register_pci_ar71xx(void)
118{
119 struct platform_device *pdev;
Gabor Juhos42cb60d2013-02-07 19:28:15 +0000120 struct resource res[4];
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000121
122 memset(res, 0, sizeof(res));
123
124 res[0].name = "cfg_base";
125 res[0].flags = IORESOURCE_MEM;
126 res[0].start = AR71XX_PCI_CFG_BASE;
127 res[0].end = AR71XX_PCI_CFG_BASE + AR71XX_PCI_CFG_SIZE - 1;
128
129 res[1].flags = IORESOURCE_IRQ;
Gabor Juhos7e69c102013-02-07 19:32:23 +0000130 res[1].start = ATH79_CPU_IRQ(2);
131 res[1].end = ATH79_CPU_IRQ(2);
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000132
Gabor Juhos42cb60d2013-02-07 19:28:15 +0000133 res[2].name = "io_base";
134 res[2].flags = IORESOURCE_IO;
135 res[2].start = 0;
136 res[2].end = 0;
137
138 res[3].name = "mem_base";
139 res[3].flags = IORESOURCE_MEM;
140 res[3].start = AR71XX_PCI_MEM_BASE;
141 res[3].end = AR71XX_PCI_MEM_BASE + AR71XX_PCI_MEM_SIZE - 1;
142
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000143 pdev = platform_device_register_simple("ar71xx-pci", -1,
144 res, ARRAY_SIZE(res));
145 return pdev;
146}
147
148static struct platform_device *
149ath79_register_pci_ar724x(int id,
150 unsigned long cfg_base,
151 unsigned long ctrl_base,
Gabor Juhos12401fc2013-02-03 14:52:47 +0000152 unsigned long crp_base,
Gabor Juhos34b134a2013-02-03 09:59:45 +0000153 unsigned long mem_base,
154 unsigned long mem_size,
155 unsigned long io_base,
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000156 int irq)
157{
158 struct platform_device *pdev;
Gabor Juhos12401fc2013-02-03 14:52:47 +0000159 struct resource res[6];
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000160
161 memset(res, 0, sizeof(res));
162
163 res[0].name = "cfg_base";
164 res[0].flags = IORESOURCE_MEM;
165 res[0].start = cfg_base;
166 res[0].end = cfg_base + AR724X_PCI_CFG_SIZE - 1;
167
168 res[1].name = "ctrl_base";
169 res[1].flags = IORESOURCE_MEM;
170 res[1].start = ctrl_base;
171 res[1].end = ctrl_base + AR724X_PCI_CTRL_SIZE - 1;
172
173 res[2].flags = IORESOURCE_IRQ;
174 res[2].start = irq;
175 res[2].end = irq;
176
Gabor Juhos34b134a2013-02-03 09:59:45 +0000177 res[3].name = "mem_base";
178 res[3].flags = IORESOURCE_MEM;
179 res[3].start = mem_base;
180 res[3].end = mem_base + mem_size - 1;
181
182 res[4].name = "io_base";
183 res[4].flags = IORESOURCE_IO;
184 res[4].start = io_base;
185 res[4].end = io_base;
186
Gabor Juhos12401fc2013-02-03 14:52:47 +0000187 res[5].name = "crp_base";
188 res[5].flags = IORESOURCE_MEM;
189 res[5].start = crp_base;
190 res[5].end = crp_base + AR724X_PCI_CRP_SIZE - 1;
191
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000192 pdev = platform_device_register_simple("ar724x-pci", id,
193 res, ARRAY_SIZE(res));
194 return pdev;
195}
196
Gabor Juhos6335aef2012-03-14 10:29:24 +0100197int __init ath79_register_pci(void)
198{
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000199 struct platform_device *pdev = NULL;
Gabor Juhosd22ce252012-03-14 10:36:11 +0100200
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000201 if (soc_is_ar71xx()) {
202 pdev = ath79_register_pci_ar71xx();
203 } else if (soc_is_ar724x()) {
204 pdev = ath79_register_pci_ar724x(-1,
205 AR724X_PCI_CFG_BASE,
206 AR724X_PCI_CTRL_BASE,
Gabor Juhos12401fc2013-02-03 14:52:47 +0000207 AR724X_PCI_CRP_BASE,
Gabor Juhos34b134a2013-02-03 09:59:45 +0000208 AR724X_PCI_MEM_BASE,
209 AR724X_PCI_MEM_SIZE,
210 0,
Gabor Juhos7e69c102013-02-07 19:32:23 +0000211 ATH79_CPU_IRQ(2));
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000212 } else if (soc_is_ar9342() ||
213 soc_is_ar9344()) {
Gabor Juhosec950252012-03-14 10:45:30 +0100214 u32 bootstrap;
215
216 bootstrap = ath79_reset_rr(AR934X_RESET_REG_BOOTSTRAP);
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000217 if ((bootstrap & AR934X_BOOTSTRAP_PCIE_RC) == 0)
218 return -ENODEV;
219
220 pdev = ath79_register_pci_ar724x(-1,
221 AR724X_PCI_CFG_BASE,
222 AR724X_PCI_CTRL_BASE,
Gabor Juhos12401fc2013-02-03 14:52:47 +0000223 AR724X_PCI_CRP_BASE,
Gabor Juhos34b134a2013-02-03 09:59:45 +0000224 AR724X_PCI_MEM_BASE,
225 AR724X_PCI_MEM_SIZE,
226 0,
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000227 ATH79_IP2_IRQ(0));
228 } else {
229 /* No PCI support */
230 return -ENODEV;
Gabor Juhosec950252012-03-14 10:45:30 +0100231 }
232
Gabor Juhos9fc1ca52013-02-02 11:44:24 +0000233 if (!pdev)
234 pr_err("unable to register PCI controller device\n");
235
236 return pdev ? 0 : -ENODEV;
Gabor Juhos6335aef2012-03-14 10:29:24 +0100237}