blob: c84fbb1c1b42d6d433901d127dfdfdd182f822d0 [file] [log] [blame]
Jason Jin34e36c12008-05-23 16:32:46 +08001/*
Lan Chunhe-B2580680818812010-03-15 06:38:33 +00002 * Copyright (C) 2007-2010 Freescale Semiconductor, Inc.
Jason Jin34e36c12008-05-23 16:32:46 +08003 *
4 * Author: Tony Li <tony.li@freescale.com>
5 * Jason Jin <Jason.jin@freescale.com>
6 *
7 * The hwirq alloc and free code reuse from sysdev/mpic_msi.c
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; version 2 of the
12 * License.
13 *
14 */
15#include <linux/irq.h>
16#include <linux/bootmem.h>
Jason Jin34e36c12008-05-23 16:32:46 +080017#include <linux/msi.h>
18#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Jason Jin34e36c12008-05-23 16:32:46 +080020#include <linux/of_platform.h>
21#include <sysdev/fsl_soc.h>
22#include <asm/prom.h>
23#include <asm/hw_irq.h>
24#include <asm/ppc-pci.h>
25#include "fsl_msi.h"
26
27struct fsl_msi_feature {
28 u32 fsl_pic_ip;
29 u32 msiir_offset;
30};
31
Jason Jin34e36c12008-05-23 16:32:46 +080032
33static inline u32 fsl_msi_read(u32 __iomem *base, unsigned int reg)
34{
35 return in_be32(base + (reg >> 2));
36}
37
Jason Jin34e36c12008-05-23 16:32:46 +080038/*
39 * We do not need this actually. The MSIR register has been read once
40 * in the cascade interrupt. So, this MSI interrupt has been acked
41*/
42static void fsl_msi_end_irq(unsigned int virq)
43{
44}
45
46static struct irq_chip fsl_msi_chip = {
47 .mask = mask_msi_irq,
48 .unmask = unmask_msi_irq,
49 .ack = fsl_msi_end_irq,
Anton Blanchardfc380c02010-01-31 20:33:41 +000050 .name = "FSL-MSI",
Jason Jin34e36c12008-05-23 16:32:46 +080051};
52
53static int fsl_msi_host_map(struct irq_host *h, unsigned int virq,
54 irq_hw_number_t hw)
55{
Lan Chunhe-B2580680818812010-03-15 06:38:33 +000056 struct fsl_msi *msi_data = h->host_data;
Jason Jin34e36c12008-05-23 16:32:46 +080057 struct irq_chip *chip = &fsl_msi_chip;
58
Michael Ellerman6cff46f2009-10-13 19:44:51 +000059 irq_to_desc(virq)->status |= IRQ_TYPE_EDGE_FALLING;
Jason Jin34e36c12008-05-23 16:32:46 +080060
Lan Chunhe-B2580680818812010-03-15 06:38:33 +000061 set_irq_chip_data(virq, msi_data);
Anton Vorontsov692d1032008-05-23 17:41:02 +040062 set_irq_chip_and_handler(virq, chip, handle_edge_irq);
Jason Jin34e36c12008-05-23 16:32:46 +080063
64 return 0;
65}
66
67static struct irq_host_ops fsl_msi_host_ops = {
68 .map = fsl_msi_host_map,
69};
70
Jason Jin34e36c12008-05-23 16:32:46 +080071static int fsl_msi_init_allocator(struct fsl_msi *msi_data)
72{
Anton Vorontsov692d1032008-05-23 17:41:02 +040073 int rc;
Jason Jin34e36c12008-05-23 16:32:46 +080074
Michael Ellerman7e7ab362008-08-06 09:10:02 +100075 rc = msi_bitmap_alloc(&msi_data->bitmap, NR_MSI_IRQS,
76 msi_data->irqhost->of_node);
77 if (rc)
78 return rc;
Jason Jin34e36c12008-05-23 16:32:46 +080079
Michael Ellerman7e7ab362008-08-06 09:10:02 +100080 rc = msi_bitmap_reserve_dt_hwirqs(&msi_data->bitmap);
81 if (rc < 0) {
82 msi_bitmap_free(&msi_data->bitmap);
83 return rc;
Jason Jin34e36c12008-05-23 16:32:46 +080084 }
85
Jason Jin34e36c12008-05-23 16:32:46 +080086 return 0;
Jason Jin34e36c12008-05-23 16:32:46 +080087}
88
89static int fsl_msi_check_device(struct pci_dev *pdev, int nvec, int type)
90{
91 if (type == PCI_CAP_ID_MSIX)
92 pr_debug("fslmsi: MSI-X untested, trying anyway.\n");
93
94 return 0;
95}
96
97static void fsl_teardown_msi_irqs(struct pci_dev *pdev)
98{
99 struct msi_desc *entry;
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000100 struct fsl_msi *msi_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800101
102 list_for_each_entry(entry, &pdev->msi_list, list) {
103 if (entry->irq == NO_IRQ)
104 continue;
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000105 msi_data = get_irq_chip_data(entry->irq);
Jason Jin34e36c12008-05-23 16:32:46 +0800106 set_irq_msi(entry->irq, NULL);
Michael Ellerman7e7ab362008-08-06 09:10:02 +1000107 msi_bitmap_free_hwirqs(&msi_data->bitmap,
108 virq_to_hw(entry->irq), 1);
Jason Jin34e36c12008-05-23 16:32:46 +0800109 irq_dispose_mapping(entry->irq);
110 }
111
112 return;
113}
114
115static void fsl_compose_msi_msg(struct pci_dev *pdev, int hwirq,
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000116 struct msi_msg *msg,
117 struct fsl_msi *fsl_msi_data)
Jason Jin34e36c12008-05-23 16:32:46 +0800118{
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000119 struct fsl_msi *msi_data = fsl_msi_data;
Kumar Gala3da34aa2009-05-12 15:51:56 -0500120 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
121 u32 base = 0;
Jason Jin34e36c12008-05-23 16:32:46 +0800122
Kumar Gala3da34aa2009-05-12 15:51:56 -0500123 pci_bus_read_config_dword(hose->bus,
124 PCI_DEVFN(0, 0), PCI_BASE_ADDRESS_0, &base);
125
126 msg->address_lo = msi_data->msi_addr_lo + base;
Jason Jin34e36c12008-05-23 16:32:46 +0800127 msg->address_hi = msi_data->msi_addr_hi;
128 msg->data = hwirq;
129
130 pr_debug("%s: allocated srs: %d, ibs: %d\n",
131 __func__, hwirq / IRQS_PER_MSI_REG, hwirq % IRQS_PER_MSI_REG);
132}
133
134static int fsl_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
135{
Michael Ellerman7e7ab362008-08-06 09:10:02 +1000136 int rc, hwirq;
Jason Jin34e36c12008-05-23 16:32:46 +0800137 unsigned int virq;
138 struct msi_desc *entry;
139 struct msi_msg msg;
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000140 struct fsl_msi *msi_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800141
142 list_for_each_entry(entry, &pdev->msi_list, list) {
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000143 msi_data = get_irq_chip_data(entry->irq);
144
Michael Ellerman7e7ab362008-08-06 09:10:02 +1000145 hwirq = msi_bitmap_alloc_hwirqs(&msi_data->bitmap, 1);
Jason Jin34e36c12008-05-23 16:32:46 +0800146 if (hwirq < 0) {
147 rc = hwirq;
148 pr_debug("%s: fail allocating msi interrupt\n",
149 __func__);
150 goto out_free;
151 }
152
153 virq = irq_create_mapping(msi_data->irqhost, hwirq);
154
155 if (virq == NO_IRQ) {
Michael Ellerman7e7ab362008-08-06 09:10:02 +1000156 pr_debug("%s: fail mapping hwirq 0x%x\n",
Jason Jin34e36c12008-05-23 16:32:46 +0800157 __func__, hwirq);
Michael Ellerman7e7ab362008-08-06 09:10:02 +1000158 msi_bitmap_free_hwirqs(&msi_data->bitmap, hwirq, 1);
Jason Jin34e36c12008-05-23 16:32:46 +0800159 rc = -ENOSPC;
160 goto out_free;
161 }
162 set_irq_msi(virq, entry);
163
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000164 fsl_compose_msi_msg(pdev, hwirq, &msg, msi_data);
Jason Jin34e36c12008-05-23 16:32:46 +0800165 write_msi_msg(virq, &msg);
166 }
167 return 0;
168
169out_free:
170 return rc;
171}
172
Anton Vorontsov692d1032008-05-23 17:41:02 +0400173static void fsl_msi_cascade(unsigned int irq, struct irq_desc *desc)
Jason Jin34e36c12008-05-23 16:32:46 +0800174{
175 unsigned int cascade_irq;
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000176 struct fsl_msi *msi_data = get_irq_chip_data(irq);
Jason Jin34e36c12008-05-23 16:32:46 +0800177 int msir_index = -1;
178 u32 msir_value = 0;
179 u32 intr_index;
180 u32 have_shift = 0;
181
Thomas Gleixner239007b2009-11-17 16:46:45 +0100182 raw_spin_lock(&desc->lock);
Jason Jin34e36c12008-05-23 16:32:46 +0800183 if ((msi_data->feature & FSL_PIC_IP_MASK) == FSL_PIC_IP_IPIC) {
184 if (desc->chip->mask_ack)
185 desc->chip->mask_ack(irq);
186 else {
187 desc->chip->mask(irq);
188 desc->chip->ack(irq);
189 }
190 }
191
192 if (unlikely(desc->status & IRQ_INPROGRESS))
193 goto unlock;
194
Anton Vorontsov692d1032008-05-23 17:41:02 +0400195 msir_index = (int)desc->handler_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800196
197 if (msir_index >= NR_MSI_REG)
198 cascade_irq = NO_IRQ;
199
200 desc->status |= IRQ_INPROGRESS;
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000201 switch (msi_data->feature & FSL_PIC_IP_MASK) {
Jason Jin34e36c12008-05-23 16:32:46 +0800202 case FSL_PIC_IP_MPIC:
203 msir_value = fsl_msi_read(msi_data->msi_regs,
204 msir_index * 0x10);
205 break;
206 case FSL_PIC_IP_IPIC:
207 msir_value = fsl_msi_read(msi_data->msi_regs, msir_index * 0x4);
208 break;
209 }
210
211 while (msir_value) {
212 intr_index = ffs(msir_value) - 1;
213
214 cascade_irq = irq_linear_revmap(msi_data->irqhost,
Anton Vorontsov692d1032008-05-23 17:41:02 +0400215 msir_index * IRQS_PER_MSI_REG +
216 intr_index + have_shift);
Jason Jin34e36c12008-05-23 16:32:46 +0800217 if (cascade_irq != NO_IRQ)
218 generic_handle_irq(cascade_irq);
Anton Vorontsov692d1032008-05-23 17:41:02 +0400219 have_shift += intr_index + 1;
220 msir_value = msir_value >> (intr_index + 1);
Jason Jin34e36c12008-05-23 16:32:46 +0800221 }
222 desc->status &= ~IRQ_INPROGRESS;
223
224 switch (msi_data->feature & FSL_PIC_IP_MASK) {
225 case FSL_PIC_IP_MPIC:
226 desc->chip->eoi(irq);
227 break;
228 case FSL_PIC_IP_IPIC:
229 if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask)
230 desc->chip->unmask(irq);
231 break;
232 }
233unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100234 raw_spin_unlock(&desc->lock);
Jason Jin34e36c12008-05-23 16:32:46 +0800235}
236
237static int __devinit fsl_of_msi_probe(struct of_device *dev,
238 const struct of_device_id *match)
239{
240 struct fsl_msi *msi;
241 struct resource res;
242 int err, i, count;
243 int rc;
244 int virt_msir;
245 const u32 *p;
Anton Vorontsov692d1032008-05-23 17:41:02 +0400246 struct fsl_msi_feature *features = match->data;
Jason Jin34e36c12008-05-23 16:32:46 +0800247
248 printk(KERN_DEBUG "Setting up Freescale MSI support\n");
249
250 msi = kzalloc(sizeof(struct fsl_msi), GFP_KERNEL);
251 if (!msi) {
252 dev_err(&dev->dev, "No memory for MSI structure\n");
253 err = -ENOMEM;
254 goto error_out;
255 }
256
Michael Ellerman611cd902008-08-06 09:10:00 +1000257 msi->irqhost = irq_alloc_host(dev->node, IRQ_HOST_MAP_LINEAR,
258 NR_MSI_IRQS, &fsl_msi_host_ops, 0);
Jason Jin34e36c12008-05-23 16:32:46 +0800259
Jason Jin34e36c12008-05-23 16:32:46 +0800260 if (msi->irqhost == NULL) {
261 dev_err(&dev->dev, "No memory for MSI irqhost\n");
Jason Jin34e36c12008-05-23 16:32:46 +0800262 err = -ENOMEM;
263 goto error_out;
264 }
265
266 /* Get the MSI reg base */
267 err = of_address_to_resource(dev->node, 0, &res);
268 if (err) {
269 dev_err(&dev->dev, "%s resource error!\n",
270 dev->node->full_name);
271 goto error_out;
272 }
273
274 msi->msi_regs = ioremap(res.start, res.end - res.start + 1);
275 if (!msi->msi_regs) {
276 dev_err(&dev->dev, "ioremap problem failed\n");
277 goto error_out;
278 }
279
Anton Vorontsov692d1032008-05-23 17:41:02 +0400280 msi->feature = features->fsl_pic_ip;
Jason Jin34e36c12008-05-23 16:32:46 +0800281
282 msi->irqhost->host_data = msi;
283
284 msi->msi_addr_hi = 0x0;
Kumar Gala3da34aa2009-05-12 15:51:56 -0500285 msi->msi_addr_lo = features->msiir_offset + (res.start & 0xfffff);
Jason Jin34e36c12008-05-23 16:32:46 +0800286
287 rc = fsl_msi_init_allocator(msi);
288 if (rc) {
289 dev_err(&dev->dev, "Error allocating MSI bitmap\n");
290 goto error_out;
291 }
292
293 p = of_get_property(dev->node, "interrupts", &count);
294 if (!p) {
295 dev_err(&dev->dev, "no interrupts property found on %s\n",
296 dev->node->full_name);
297 err = -ENODEV;
298 goto error_out;
299 }
300 if (count % 8 != 0) {
301 dev_err(&dev->dev, "Malformed interrupts property on %s\n",
302 dev->node->full_name);
303 err = -EINVAL;
304 goto error_out;
305 }
306
307 count /= sizeof(u32);
308 for (i = 0; i < count / 2; i++) {
309 if (i > NR_MSI_REG)
310 break;
311 virt_msir = irq_of_parse_and_map(dev->node, i);
312 if (virt_msir != NO_IRQ) {
313 set_irq_data(virt_msir, (void *)i);
314 set_irq_chained_handler(virt_msir, fsl_msi_cascade);
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000315 set_irq_chip_data(virt_msir, msi);
Jason Jin34e36c12008-05-23 16:32:46 +0800316 }
317 }
318
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000319 /* The multiple setting ppc_md.setup_msi_irqs will not harm things */
320 if (!ppc_md.setup_msi_irqs) {
321 ppc_md.setup_msi_irqs = fsl_setup_msi_irqs;
322 ppc_md.teardown_msi_irqs = fsl_teardown_msi_irqs;
323 ppc_md.msi_check_device = fsl_msi_check_device;
324 } else if (ppc_md.setup_msi_irqs != fsl_setup_msi_irqs) {
325 dev_err(&dev->dev, "Different MSI driver already installed!\n");
326 err = -ENODEV;
327 goto error_out;
328 }
Jason Jin34e36c12008-05-23 16:32:46 +0800329 return 0;
330error_out:
331 kfree(msi);
332 return err;
333}
334
335static const struct fsl_msi_feature mpic_msi_feature = {
336 .fsl_pic_ip = FSL_PIC_IP_MPIC,
337 .msiir_offset = 0x140,
338};
339
340static const struct fsl_msi_feature ipic_msi_feature = {
341 .fsl_pic_ip = FSL_PIC_IP_IPIC,
342 .msiir_offset = 0x38,
343};
344
345static const struct of_device_id fsl_of_msi_ids[] = {
346 {
347 .compatible = "fsl,mpic-msi",
348 .data = (void *)&mpic_msi_feature,
349 },
350 {
351 .compatible = "fsl,ipic-msi",
352 .data = (void *)&ipic_msi_feature,
353 },
354 {}
355};
356
357static struct of_platform_driver fsl_of_msi_driver = {
358 .name = "fsl-msi",
359 .match_table = fsl_of_msi_ids,
360 .probe = fsl_of_msi_probe,
361};
362
363static __init int fsl_of_msi_init(void)
364{
365 return of_register_platform_driver(&fsl_of_msi_driver);
366}
367
368subsys_initcall(fsl_of_msi_init);