]> Pileus Git - ~andy/linux/blob - arch/mips/pci/pci-ar724x.c
0440d8800f8a99a04e17fa2e5dc171f6f4027a01
[~andy/linux] / arch / mips / pci / pci-ar724x.c
1 /*
2  *  Atheros AR724X PCI host controller driver
3  *
4  *  Copyright (C) 2011 RenĂ© Bolldorf <xsecute@googlemail.com>
5  *  Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org>
6  *
7  *  This program is free software; you can redistribute it and/or modify it
8  *  under the terms of the GNU General Public License version 2 as published
9  *  by the Free Software Foundation.
10  */
11
12 #include <linux/spinlock.h>
13 #include <linux/irq.h>
14 #include <linux/pci.h>
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
17 #include <asm/mach-ath79/ath79.h>
18 #include <asm/mach-ath79/ar71xx_regs.h>
19
20 #define AR724X_PCI_REG_RESET            0x18
21 #define AR724X_PCI_REG_INT_STATUS       0x4c
22 #define AR724X_PCI_REG_INT_MASK         0x50
23
24 #define AR724X_PCI_RESET_LINK_UP        BIT(0)
25
26 #define AR724X_PCI_INT_DEV0             BIT(14)
27
28 #define AR724X_PCI_IRQ_COUNT            1
29
30 #define AR7240_BAR0_WAR_VALUE   0xffff
31
32 struct ar724x_pci_controller {
33         void __iomem *devcfg_base;
34         void __iomem *ctrl_base;
35
36         int irq;
37         int irq_base;
38
39         bool link_up;
40         bool bar0_is_cached;
41         u32  bar0_value;
42
43         spinlock_t lock;
44
45         struct pci_controller pci_controller;
46         struct resource io_res;
47         struct resource mem_res;
48 };
49
50 static inline bool ar724x_pci_check_link(struct ar724x_pci_controller *apc)
51 {
52         u32 reset;
53
54         reset = __raw_readl(apc->ctrl_base + AR724X_PCI_REG_RESET);
55         return reset & AR724X_PCI_RESET_LINK_UP;
56 }
57
58 static inline struct ar724x_pci_controller *
59 pci_bus_to_ar724x_controller(struct pci_bus *bus)
60 {
61         struct pci_controller *hose;
62
63         hose = (struct pci_controller *) bus->sysdata;
64         return container_of(hose, struct ar724x_pci_controller, pci_controller);
65 }
66
67 static int ar724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where,
68                             int size, uint32_t *value)
69 {
70         struct ar724x_pci_controller *apc;
71         unsigned long flags;
72         void __iomem *base;
73         u32 data;
74
75         apc = pci_bus_to_ar724x_controller(bus);
76         if (!apc->link_up)
77                 return PCIBIOS_DEVICE_NOT_FOUND;
78
79         if (devfn)
80                 return PCIBIOS_DEVICE_NOT_FOUND;
81
82         base = apc->devcfg_base;
83
84         spin_lock_irqsave(&apc->lock, flags);
85         data = __raw_readl(base + (where & ~3));
86
87         switch (size) {
88         case 1:
89                 if (where & 1)
90                         data >>= 8;
91                 if (where & 2)
92                         data >>= 16;
93                 data &= 0xff;
94                 break;
95         case 2:
96                 if (where & 2)
97                         data >>= 16;
98                 data &= 0xffff;
99                 break;
100         case 4:
101                 break;
102         default:
103                 spin_unlock_irqrestore(&apc->lock, flags);
104
105                 return PCIBIOS_BAD_REGISTER_NUMBER;
106         }
107
108         spin_unlock_irqrestore(&apc->lock, flags);
109
110         if (where == PCI_BASE_ADDRESS_0 && size == 4 &&
111             apc->bar0_is_cached) {
112                 /* use the cached value */
113                 *value = apc->bar0_value;
114         } else {
115                 *value = data;
116         }
117
118         return PCIBIOS_SUCCESSFUL;
119 }
120
121 static int ar724x_pci_write(struct pci_bus *bus, unsigned int devfn, int where,
122                              int size, uint32_t value)
123 {
124         struct ar724x_pci_controller *apc;
125         unsigned long flags;
126         void __iomem *base;
127         u32 data;
128         int s;
129
130         apc = pci_bus_to_ar724x_controller(bus);
131         if (!apc->link_up)
132                 return PCIBIOS_DEVICE_NOT_FOUND;
133
134         if (devfn)
135                 return PCIBIOS_DEVICE_NOT_FOUND;
136
137         if (soc_is_ar7240() && where == PCI_BASE_ADDRESS_0 && size == 4) {
138                 if (value != 0xffffffff) {
139                         /*
140                          * WAR for a hw issue. If the BAR0 register of the
141                          * device is set to the proper base address, the
142                          * memory space of the device is not accessible.
143                          *
144                          * Cache the intended value so it can be read back,
145                          * and write a SoC specific constant value to the
146                          * BAR0 register in order to make the device memory
147                          * accessible.
148                          */
149                         apc->bar0_is_cached = true;
150                         apc->bar0_value = value;
151
152                         value = AR7240_BAR0_WAR_VALUE;
153                 } else {
154                         apc->bar0_is_cached = false;
155                 }
156         }
157
158         base = apc->devcfg_base;
159
160         spin_lock_irqsave(&apc->lock, flags);
161         data = __raw_readl(base + (where & ~3));
162
163         switch (size) {
164         case 1:
165                 s = ((where & 3) * 8);
166                 data &= ~(0xff << s);
167                 data |= ((value & 0xff) << s);
168                 break;
169         case 2:
170                 s = ((where & 2) * 8);
171                 data &= ~(0xffff << s);
172                 data |= ((value & 0xffff) << s);
173                 break;
174         case 4:
175                 data = value;
176                 break;
177         default:
178                 spin_unlock_irqrestore(&apc->lock, flags);
179
180                 return PCIBIOS_BAD_REGISTER_NUMBER;
181         }
182
183         __raw_writel(data, base + (where & ~3));
184         /* flush write */
185         __raw_readl(base + (where & ~3));
186         spin_unlock_irqrestore(&apc->lock, flags);
187
188         return PCIBIOS_SUCCESSFUL;
189 }
190
191 static struct pci_ops ar724x_pci_ops = {
192         .read   = ar724x_pci_read,
193         .write  = ar724x_pci_write,
194 };
195
196 static void ar724x_pci_irq_handler(unsigned int irq, struct irq_desc *desc)
197 {
198         struct ar724x_pci_controller *apc;
199         void __iomem *base;
200         u32 pending;
201
202         apc = irq_get_handler_data(irq);
203         base = apc->ctrl_base;
204
205         pending = __raw_readl(base + AR724X_PCI_REG_INT_STATUS) &
206                   __raw_readl(base + AR724X_PCI_REG_INT_MASK);
207
208         if (pending & AR724X_PCI_INT_DEV0)
209                 generic_handle_irq(apc->irq_base + 0);
210
211         else
212                 spurious_interrupt();
213 }
214
215 static void ar724x_pci_irq_unmask(struct irq_data *d)
216 {
217         struct ar724x_pci_controller *apc;
218         void __iomem *base;
219         int offset;
220         u32 t;
221
222         apc = irq_data_get_irq_chip_data(d);
223         base = apc->ctrl_base;
224         offset = apc->irq_base - d->irq;
225
226         switch (offset) {
227         case 0:
228                 t = __raw_readl(base + AR724X_PCI_REG_INT_MASK);
229                 __raw_writel(t | AR724X_PCI_INT_DEV0,
230                              base + AR724X_PCI_REG_INT_MASK);
231                 /* flush write */
232                 __raw_readl(base + AR724X_PCI_REG_INT_MASK);
233         }
234 }
235
236 static void ar724x_pci_irq_mask(struct irq_data *d)
237 {
238         struct ar724x_pci_controller *apc;
239         void __iomem *base;
240         int offset;
241         u32 t;
242
243         apc = irq_data_get_irq_chip_data(d);
244         base = apc->ctrl_base;
245         offset = apc->irq_base - d->irq;
246
247         switch (offset) {
248         case 0:
249                 t = __raw_readl(base + AR724X_PCI_REG_INT_MASK);
250                 __raw_writel(t & ~AR724X_PCI_INT_DEV0,
251                              base + AR724X_PCI_REG_INT_MASK);
252
253                 /* flush write */
254                 __raw_readl(base + AR724X_PCI_REG_INT_MASK);
255
256                 t = __raw_readl(base + AR724X_PCI_REG_INT_STATUS);
257                 __raw_writel(t | AR724X_PCI_INT_DEV0,
258                              base + AR724X_PCI_REG_INT_STATUS);
259
260                 /* flush write */
261                 __raw_readl(base + AR724X_PCI_REG_INT_STATUS);
262         }
263 }
264
265 static struct irq_chip ar724x_pci_irq_chip = {
266         .name           = "AR724X PCI ",
267         .irq_mask       = ar724x_pci_irq_mask,
268         .irq_unmask     = ar724x_pci_irq_unmask,
269         .irq_mask_ack   = ar724x_pci_irq_mask,
270 };
271
272 static void ar724x_pci_irq_init(struct ar724x_pci_controller *apc,
273                                 int id)
274 {
275         void __iomem *base;
276         int i;
277
278         base = apc->ctrl_base;
279
280         __raw_writel(0, base + AR724X_PCI_REG_INT_MASK);
281         __raw_writel(0, base + AR724X_PCI_REG_INT_STATUS);
282
283         apc->irq_base = ATH79_PCI_IRQ_BASE + (id * AR724X_PCI_IRQ_COUNT);
284
285         for (i = apc->irq_base;
286              i < apc->irq_base + AR724X_PCI_IRQ_COUNT; i++) {
287                 irq_set_chip_and_handler(i, &ar724x_pci_irq_chip,
288                                          handle_level_irq);
289                 irq_set_chip_data(i, apc);
290         }
291
292         irq_set_handler_data(apc->irq, apc);
293         irq_set_chained_handler(apc->irq, ar724x_pci_irq_handler);
294 }
295
296 static int ar724x_pci_probe(struct platform_device *pdev)
297 {
298         struct ar724x_pci_controller *apc;
299         struct resource *res;
300         int id;
301
302         id = pdev->id;
303         if (id == -1)
304                 id = 0;
305
306         apc = devm_kzalloc(&pdev->dev, sizeof(struct ar724x_pci_controller),
307                             GFP_KERNEL);
308         if (!apc)
309                 return -ENOMEM;
310
311         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ctrl_base");
312         if (!res)
313                 return -EINVAL;
314
315         apc->ctrl_base = devm_request_and_ioremap(&pdev->dev, res);
316         if (apc->ctrl_base == NULL)
317                 return -EBUSY;
318
319         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cfg_base");
320         if (!res)
321                 return -EINVAL;
322
323         apc->devcfg_base = devm_request_and_ioremap(&pdev->dev, res);
324         if (!apc->devcfg_base)
325                 return -EBUSY;
326
327         apc->irq = platform_get_irq(pdev, 0);
328         if (apc->irq < 0)
329                 return -EINVAL;
330
331         spin_lock_init(&apc->lock);
332
333         res = platform_get_resource_byname(pdev, IORESOURCE_IO, "io_base");
334         if (!res)
335                 return -EINVAL;
336
337         apc->io_res.parent = res;
338         apc->io_res.name = "PCI IO space";
339         apc->io_res.start = res->start;
340         apc->io_res.end = res->end;
341         apc->io_res.flags = IORESOURCE_IO;
342
343         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mem_base");
344         if (!res)
345                 return -EINVAL;
346
347         apc->mem_res.parent = res;
348         apc->mem_res.name = "PCI memory space";
349         apc->mem_res.start = res->start;
350         apc->mem_res.end = res->end;
351         apc->mem_res.flags = IORESOURCE_MEM;
352
353         apc->pci_controller.pci_ops = &ar724x_pci_ops;
354         apc->pci_controller.io_resource = &apc->io_res;
355         apc->pci_controller.mem_resource = &apc->mem_res;
356
357         apc->link_up = ar724x_pci_check_link(apc);
358         if (!apc->link_up)
359                 dev_warn(&pdev->dev, "PCIe link is down\n");
360
361         ar724x_pci_irq_init(apc, id);
362
363         register_pci_controller(&apc->pci_controller);
364
365         return 0;
366 }
367
368 static struct platform_driver ar724x_pci_driver = {
369         .probe = ar724x_pci_probe,
370         .driver = {
371                 .name = "ar724x-pci",
372                 .owner = THIS_MODULE,
373         },
374 };
375
376 static int __init ar724x_pci_init(void)
377 {
378         return platform_driver_register(&ar724x_pci_driver);
379 }
380
381 postcore_initcall(ar724x_pci_init);