blob: da08ed08815751cec116164e8f6d3e828bda9fd4 [file] [log] [blame]
Jason Jin34e36c12008-05-23 16:32:46 +08001/*
Scott Wood6820fea2011-01-17 14:25:28 -06002 * Copyright (C) 2007-2011 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>
Tudor Laurentiu543c0432014-08-19 14:25:03 +030021#include <linux/interrupt.h>
Tudor Laurentiude99f532014-08-19 14:25:05 +030022#include <linux/seq_file.h>
Jason Jin34e36c12008-05-23 16:32:46 +080023#include <sysdev/fsl_soc.h>
24#include <asm/prom.h>
25#include <asm/hw_irq.h>
26#include <asm/ppc-pci.h>
Li Yang02adac62010-04-22 16:31:35 +080027#include <asm/mpic.h>
Timur Tabi446bc1f2011-12-13 14:51:59 -060028#include <asm/fsl_hcalls.h>
29
Jason Jin34e36c12008-05-23 16:32:46 +080030#include "fsl_msi.h"
Kumar Galab8f44ec2010-08-05 02:45:08 -050031#include "fsl_pci.h"
Jason Jin34e36c12008-05-23 16:32:46 +080032
Minghuan Lianf31dd942013-06-21 18:59:14 +080033#define MSIIR_OFFSET_MASK 0xfffff
34#define MSIIR_IBS_SHIFT 0
35#define MSIIR_SRS_SHIFT 5
36#define MSIIR1_IBS_SHIFT 4
37#define MSIIR1_SRS_SHIFT 0
38#define MSI_SRS_MASK 0xf
39#define MSI_IBS_MASK 0x1f
40
41#define msi_hwirq(msi, msir_index, intr_index) \
42 ((msir_index) << (msi)->srs_shift | \
43 ((intr_index) << (msi)->ibs_shift))
44
Kim Phillips6cce76d2012-11-30 17:34:59 -060045static LIST_HEAD(msi_head);
Li Yang694a7a32010-04-22 16:31:36 +080046
Jason Jin34e36c12008-05-23 16:32:46 +080047struct fsl_msi_feature {
48 u32 fsl_pic_ip;
Timur Tabi2bcd1c02011-09-23 12:41:35 -050049 u32 msiir_offset; /* Offset of MSIIR, relative to start of MSIR bank */
Jason Jin34e36c12008-05-23 16:32:46 +080050};
51
Li Yang02adac62010-04-22 16:31:35 +080052struct fsl_msi_cascade_data {
53 struct fsl_msi *msi_data;
54 int index;
Tudor Laurentiu83495232014-08-19 14:25:01 +030055 int virq;
Li Yang02adac62010-04-22 16:31:35 +080056};
Jason Jin34e36c12008-05-23 16:32:46 +080057
58static inline u32 fsl_msi_read(u32 __iomem *base, unsigned int reg)
59{
60 return in_be32(base + (reg >> 2));
61}
62
Jason Jin34e36c12008-05-23 16:32:46 +080063/*
64 * We do not need this actually. The MSIR register has been read once
65 * in the cascade interrupt. So, this MSI interrupt has been acked
66*/
Lennert Buytenhek37e16612011-03-07 13:59:54 +000067static void fsl_msi_end_irq(struct irq_data *d)
Jason Jin34e36c12008-05-23 16:32:46 +080068{
69}
70
Tudor Laurentiude99f532014-08-19 14:25:05 +030071static void fsl_msi_print_chip(struct irq_data *irqd, struct seq_file *p)
72{
73 struct fsl_msi *msi_data = irqd->domain->host_data;
74 irq_hw_number_t hwirq = irqd_to_hwirq(irqd);
75 int cascade_virq, srs;
76
77 srs = (hwirq >> msi_data->srs_shift) & MSI_SRS_MASK;
78 cascade_virq = msi_data->cascade_array[srs]->virq;
79
80 seq_printf(p, " fsl-msi-%d", cascade_virq);
81}
82
83
Jason Jin34e36c12008-05-23 16:32:46 +080084static struct irq_chip fsl_msi_chip = {
Thomas Gleixner1c9db522010-09-28 16:46:51 +020085 .irq_mask = mask_msi_irq,
86 .irq_unmask = unmask_msi_irq,
Lennert Buytenhek37e16612011-03-07 13:59:54 +000087 .irq_ack = fsl_msi_end_irq,
Tudor Laurentiude99f532014-08-19 14:25:05 +030088 .irq_print_chip = fsl_msi_print_chip,
Jason Jin34e36c12008-05-23 16:32:46 +080089};
90
Grant Likelybae1d8f2012-02-14 14:06:50 -070091static int fsl_msi_host_map(struct irq_domain *h, unsigned int virq,
Jason Jin34e36c12008-05-23 16:32:46 +080092 irq_hw_number_t hw)
93{
Lan Chunhe-B2580680818812010-03-15 06:38:33 +000094 struct fsl_msi *msi_data = h->host_data;
Jason Jin34e36c12008-05-23 16:32:46 +080095 struct irq_chip *chip = &fsl_msi_chip;
96
Thomas Gleixner98488db2011-03-25 15:43:57 +010097 irq_set_status_flags(virq, IRQ_TYPE_EDGE_FALLING);
Jason Jin34e36c12008-05-23 16:32:46 +080098
Thomas Gleixnerec775d02011-03-25 16:45:20 +010099 irq_set_chip_data(virq, msi_data);
100 irq_set_chip_and_handler(virq, chip, handle_edge_irq);
Jason Jin34e36c12008-05-23 16:32:46 +0800101
102 return 0;
103}
104
Grant Likely9f70b8e2012-01-26 12:24:34 -0700105static const struct irq_domain_ops fsl_msi_host_ops = {
Jason Jin34e36c12008-05-23 16:32:46 +0800106 .map = fsl_msi_host_map,
107};
108
Jason Jin34e36c12008-05-23 16:32:46 +0800109static int fsl_msi_init_allocator(struct fsl_msi *msi_data)
110{
Minghuan Lianf31dd942013-06-21 18:59:14 +0800111 int rc, hwirq;
Jason Jin34e36c12008-05-23 16:32:46 +0800112
Minghuan Lianf31dd942013-06-21 18:59:14 +0800113 rc = msi_bitmap_alloc(&msi_data->bitmap, NR_MSI_IRQS_MAX,
Michael Ellerman7e7ab362008-08-06 09:10:02 +1000114 msi_data->irqhost->of_node);
115 if (rc)
116 return rc;
Jason Jin34e36c12008-05-23 16:32:46 +0800117
Minghuan Lianf31dd942013-06-21 18:59:14 +0800118 /*
119 * Reserve all the hwirqs
120 * The available hwirqs will be released in fsl_msi_setup_hwirq()
121 */
122 for (hwirq = 0; hwirq < NR_MSI_IRQS_MAX; hwirq++)
123 msi_bitmap_reserve_hwirq(&msi_data->bitmap, hwirq);
Jason Jin34e36c12008-05-23 16:32:46 +0800124
Jason Jin34e36c12008-05-23 16:32:46 +0800125 return 0;
Jason Jin34e36c12008-05-23 16:32:46 +0800126}
127
Jason Jin34e36c12008-05-23 16:32:46 +0800128static void fsl_teardown_msi_irqs(struct pci_dev *pdev)
129{
130 struct msi_desc *entry;
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000131 struct fsl_msi *msi_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800132
133 list_for_each_entry(entry, &pdev->msi_list, list) {
134 if (entry->irq == NO_IRQ)
135 continue;
Milton Millerd1921bc2011-05-10 19:30:11 +0000136 msi_data = irq_get_chip_data(entry->irq);
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100137 irq_set_msi_desc(entry->irq, NULL);
Michael Ellerman7e7ab362008-08-06 09:10:02 +1000138 msi_bitmap_free_hwirqs(&msi_data->bitmap,
139 virq_to_hw(entry->irq), 1);
Jason Jin34e36c12008-05-23 16:32:46 +0800140 irq_dispose_mapping(entry->irq);
141 }
142
143 return;
144}
145
146static void fsl_compose_msi_msg(struct pci_dev *pdev, int hwirq,
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000147 struct msi_msg *msg,
148 struct fsl_msi *fsl_msi_data)
Jason Jin34e36c12008-05-23 16:32:46 +0800149{
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000150 struct fsl_msi *msi_data = fsl_msi_data;
Kumar Gala3da34aa2009-05-12 15:51:56 -0500151 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
Timur Tabi2bcd1c02011-09-23 12:41:35 -0500152 u64 address; /* Physical address of the MSIIR */
153 int len;
Kim Phillips6cce76d2012-11-30 17:34:59 -0600154 const __be64 *reg;
Jason Jin34e36c12008-05-23 16:32:46 +0800155
Timur Tabi2bcd1c02011-09-23 12:41:35 -0500156 /* If the msi-address-64 property exists, then use it */
157 reg = of_get_property(hose->dn, "msi-address-64", &len);
158 if (reg && (len == sizeof(u64)))
159 address = be64_to_cpup(reg);
160 else
161 address = fsl_pci_immrbar_base(hose) + msi_data->msiir_offset;
162
163 msg->address_lo = lower_32_bits(address);
164 msg->address_hi = upper_32_bits(address);
Kumar Gala3da34aa2009-05-12 15:51:56 -0500165
Jason Jin34e36c12008-05-23 16:32:46 +0800166 msg->data = hwirq;
167
Minghuan Lianf31dd942013-06-21 18:59:14 +0800168 pr_debug("%s: allocated srs: %d, ibs: %d\n", __func__,
169 (hwirq >> msi_data->srs_shift) & MSI_SRS_MASK,
170 (hwirq >> msi_data->ibs_shift) & MSI_IBS_MASK);
Jason Jin34e36c12008-05-23 16:32:46 +0800171}
172
173static int fsl_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
174{
Timur Tabi895d6032011-10-31 17:06:35 -0500175 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
176 struct device_node *np;
177 phandle phandle = 0;
Li Yang694a7a32010-04-22 16:31:36 +0800178 int rc, hwirq = -ENOMEM;
Jason Jin34e36c12008-05-23 16:32:46 +0800179 unsigned int virq;
180 struct msi_desc *entry;
181 struct msi_msg msg;
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000182 struct fsl_msi *msi_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800183
Alexander Gordeev6b2fd7ef2014-09-07 20:57:53 +0200184 if (type == PCI_CAP_ID_MSIX)
185 pr_debug("fslmsi: MSI-X untested, trying anyway.\n");
186
Timur Tabi895d6032011-10-31 17:06:35 -0500187 /*
188 * If the PCI node has an fsl,msi property, then we need to use it
189 * to find the specific MSI.
190 */
191 np = of_parse_phandle(hose->dn, "fsl,msi", 0);
192 if (np) {
Timur Tabi446bc1f2011-12-13 14:51:59 -0600193 if (of_device_is_compatible(np, "fsl,mpic-msi") ||
Tudor Laurentiu67e35c32014-08-13 16:55:13 +0300194 of_device_is_compatible(np, "fsl,vmpic-msi") ||
195 of_device_is_compatible(np, "fsl,vmpic-msi-v4.3"))
Timur Tabi895d6032011-10-31 17:06:35 -0500196 phandle = np->phandle;
197 else {
Timur Tabi446bc1f2011-12-13 14:51:59 -0600198 dev_err(&pdev->dev,
199 "node %s has an invalid fsl,msi phandle %u\n",
200 hose->dn->full_name, np->phandle);
Timur Tabi895d6032011-10-31 17:06:35 -0500201 return -EINVAL;
202 }
203 }
204
Jason Jin34e36c12008-05-23 16:32:46 +0800205 list_for_each_entry(entry, &pdev->msi_list, list) {
Timur Tabi895d6032011-10-31 17:06:35 -0500206 /*
207 * Loop over all the MSI devices until we find one that has an
208 * available interrupt.
209 */
Li Yang694a7a32010-04-22 16:31:36 +0800210 list_for_each_entry(msi_data, &msi_head, list) {
Timur Tabi895d6032011-10-31 17:06:35 -0500211 /*
212 * If the PCI node has an fsl,msi property, then we
213 * restrict our search to the corresponding MSI node.
214 * The simplest way is to skip over MSI nodes with the
215 * wrong phandle. Under the Freescale hypervisor, this
216 * has the additional benefit of skipping over MSI
217 * nodes that are not mapped in the PAMU.
218 */
219 if (phandle && (phandle != msi_data->phandle))
220 continue;
221
Li Yang694a7a32010-04-22 16:31:36 +0800222 hwirq = msi_bitmap_alloc_hwirqs(&msi_data->bitmap, 1);
223 if (hwirq >= 0)
224 break;
225 }
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000226
Jason Jin34e36c12008-05-23 16:32:46 +0800227 if (hwirq < 0) {
228 rc = hwirq;
Timur Tabi446bc1f2011-12-13 14:51:59 -0600229 dev_err(&pdev->dev, "could not allocate MSI interrupt\n");
Jason Jin34e36c12008-05-23 16:32:46 +0800230 goto out_free;
231 }
232
233 virq = irq_create_mapping(msi_data->irqhost, hwirq);
234
235 if (virq == NO_IRQ) {
Timur Tabi446bc1f2011-12-13 14:51:59 -0600236 dev_err(&pdev->dev, "fail mapping hwirq %i\n", hwirq);
Michael Ellerman7e7ab362008-08-06 09:10:02 +1000237 msi_bitmap_free_hwirqs(&msi_data->bitmap, hwirq, 1);
Jason Jin34e36c12008-05-23 16:32:46 +0800238 rc = -ENOSPC;
239 goto out_free;
240 }
Milton Millerd1921bc2011-05-10 19:30:11 +0000241 /* chip_data is msi_data via host->hostdata in host->map() */
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100242 irq_set_msi_desc(virq, entry);
Jason Jin34e36c12008-05-23 16:32:46 +0800243
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000244 fsl_compose_msi_msg(pdev, hwirq, &msg, msi_data);
Jason Jin34e36c12008-05-23 16:32:46 +0800245 write_msi_msg(virq, &msg);
246 }
247 return 0;
248
249out_free:
Li Yang694a7a32010-04-22 16:31:36 +0800250 /* free by the caller of this function */
Jason Jin34e36c12008-05-23 16:32:46 +0800251 return rc;
252}
253
Tudor Laurentiu543c0432014-08-19 14:25:03 +0300254static irqreturn_t fsl_msi_cascade(int irq, void *data)
Jason Jin34e36c12008-05-23 16:32:46 +0800255{
256 unsigned int cascade_irq;
Li Yang02adac62010-04-22 16:31:35 +0800257 struct fsl_msi *msi_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800258 int msir_index = -1;
259 u32 msir_value = 0;
260 u32 intr_index;
261 u32 have_shift = 0;
Tudor Laurentiu543c0432014-08-19 14:25:03 +0300262 struct fsl_msi_cascade_data *cascade_data = data;
263 irqreturn_t ret = IRQ_NONE;
Li Yang02adac62010-04-22 16:31:35 +0800264
Li Yang02adac62010-04-22 16:31:35 +0800265 msi_data = cascade_data->msi_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800266
Li Yang02adac62010-04-22 16:31:35 +0800267 msir_index = cascade_data->index;
Jason Jin34e36c12008-05-23 16:32:46 +0800268
Minghuan Lianf31dd942013-06-21 18:59:14 +0800269 if (msir_index >= NR_MSI_REG_MAX)
Jason Jin34e36c12008-05-23 16:32:46 +0800270 cascade_irq = NO_IRQ;
271
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000272 switch (msi_data->feature & FSL_PIC_IP_MASK) {
Jason Jin34e36c12008-05-23 16:32:46 +0800273 case FSL_PIC_IP_MPIC:
274 msir_value = fsl_msi_read(msi_data->msi_regs,
275 msir_index * 0x10);
276 break;
277 case FSL_PIC_IP_IPIC:
278 msir_value = fsl_msi_read(msi_data->msi_regs, msir_index * 0x4);
279 break;
Scott Wood305bcf22012-07-03 05:48:55 +0000280#ifdef CONFIG_EPAPR_PARAVIRT
281 case FSL_PIC_IP_VMPIC: {
282 unsigned int ret;
Timur Tabi446bc1f2011-12-13 14:51:59 -0600283 ret = fh_vmpic_get_msir(virq_to_hw(irq), &msir_value);
284 if (ret) {
285 pr_err("fsl-msi: fh_vmpic_get_msir() failed for "
286 "irq %u (ret=%u)\n", irq, ret);
287 msir_value = 0;
288 }
289 break;
Jason Jin34e36c12008-05-23 16:32:46 +0800290 }
Scott Wood305bcf22012-07-03 05:48:55 +0000291#endif
292 }
Jason Jin34e36c12008-05-23 16:32:46 +0800293
294 while (msir_value) {
295 intr_index = ffs(msir_value) - 1;
296
297 cascade_irq = irq_linear_revmap(msi_data->irqhost,
Minghuan Lianf31dd942013-06-21 18:59:14 +0800298 msi_hwirq(msi_data, msir_index,
299 intr_index + have_shift));
Tudor Laurentiu543c0432014-08-19 14:25:03 +0300300 if (cascade_irq != NO_IRQ) {
Jason Jin34e36c12008-05-23 16:32:46 +0800301 generic_handle_irq(cascade_irq);
Tudor Laurentiu543c0432014-08-19 14:25:03 +0300302 ret = IRQ_HANDLED;
303 }
Anton Vorontsov692d1032008-05-23 17:41:02 +0400304 have_shift += intr_index + 1;
305 msir_value = msir_value >> (intr_index + 1);
Jason Jin34e36c12008-05-23 16:32:46 +0800306 }
Jason Jin34e36c12008-05-23 16:32:46 +0800307
Tudor Laurentiu543c0432014-08-19 14:25:03 +0300308 return ret;
Jason Jin34e36c12008-05-23 16:32:46 +0800309}
310
Grant Likelya454dc52010-07-22 15:52:34 -0600311static int fsl_of_msi_remove(struct platform_device *ofdev)
Li Yang48059992010-04-22 16:31:39 +0800312{
Milton Miller6c4c82e2011-05-10 19:30:07 +0000313 struct fsl_msi *msi = platform_get_drvdata(ofdev);
Li Yang48059992010-04-22 16:31:39 +0800314 int virq, i;
Li Yang48059992010-04-22 16:31:39 +0800315
316 if (msi->list.prev != NULL)
317 list_del(&msi->list);
Minghuan Lianf31dd942013-06-21 18:59:14 +0800318 for (i = 0; i < NR_MSI_REG_MAX; i++) {
Tudor Laurentiu83495232014-08-19 14:25:01 +0300319 if (msi->cascade_array[i]) {
320 virq = msi->cascade_array[i]->virq;
321
322 BUG_ON(virq == NO_IRQ);
Tudor Laurentiu83495232014-08-19 14:25:01 +0300323
Tudor Laurentiu543c0432014-08-19 14:25:03 +0300324 free_irq(virq, msi->cascade_array[i]);
Tudor Laurentiu83495232014-08-19 14:25:01 +0300325 kfree(msi->cascade_array[i]);
Li Yang48059992010-04-22 16:31:39 +0800326 irq_dispose_mapping(virq);
327 }
328 }
329 if (msi->bitmap.bitmap)
330 msi_bitmap_free(&msi->bitmap);
Timur Tabi446bc1f2011-12-13 14:51:59 -0600331 if ((msi->feature & FSL_PIC_IP_MASK) != FSL_PIC_IP_VMPIC)
332 iounmap(msi->msi_regs);
Li Yang48059992010-04-22 16:31:39 +0800333 kfree(msi);
334
335 return 0;
336}
337
Sebastian Andrzej Siewior58631ad2013-04-02 15:33:36 +0200338static struct lock_class_key fsl_msi_irq_class;
339
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800340static int fsl_msi_setup_hwirq(struct fsl_msi *msi, struct platform_device *dev,
341 int offset, int irq_index)
Scott Wood6820fea2011-01-17 14:25:28 -0600342{
343 struct fsl_msi_cascade_data *cascade_data = NULL;
Tudor Laurentiu543c0432014-08-19 14:25:03 +0300344 int virt_msir, i, ret;
Scott Wood6820fea2011-01-17 14:25:28 -0600345
346 virt_msir = irq_of_parse_and_map(dev->dev.of_node, irq_index);
347 if (virt_msir == NO_IRQ) {
348 dev_err(&dev->dev, "%s: Cannot translate IRQ index %d\n",
349 __func__, irq_index);
350 return 0;
351 }
352
353 cascade_data = kzalloc(sizeof(struct fsl_msi_cascade_data), GFP_KERNEL);
354 if (!cascade_data) {
355 dev_err(&dev->dev, "No memory for MSI cascade data\n");
356 return -ENOMEM;
357 }
Sebastian Andrzej Siewior58631ad2013-04-02 15:33:36 +0200358 irq_set_lockdep_class(virt_msir, &fsl_msi_irq_class);
Timur Tabi22285112011-09-13 16:17:00 -0500359 cascade_data->index = offset;
Scott Wood6820fea2011-01-17 14:25:28 -0600360 cascade_data->msi_data = msi;
Tudor Laurentiu83495232014-08-19 14:25:01 +0300361 cascade_data->virq = virt_msir;
362 msi->cascade_array[irq_index] = cascade_data;
Tudor Laurentiu543c0432014-08-19 14:25:03 +0300363
Kevin Haod7ce4372014-11-14 13:51:22 +0800364 ret = request_irq(virt_msir, fsl_msi_cascade, IRQF_NO_THREAD,
Tudor Laurentiu543c0432014-08-19 14:25:03 +0300365 "fsl-msi-cascade", cascade_data);
366 if (ret) {
367 dev_err(&dev->dev, "failed to request_irq(%d), ret = %d\n",
368 virt_msir, ret);
369 return ret;
370 }
Scott Wood6820fea2011-01-17 14:25:28 -0600371
Minghuan Lianf31dd942013-06-21 18:59:14 +0800372 /* Release the hwirqs corresponding to this MSI register */
373 for (i = 0; i < IRQS_PER_MSI_REG; i++)
374 msi_bitmap_free_hwirqs(&msi->bitmap,
375 msi_hwirq(msi, offset, i), 1);
376
Scott Wood6820fea2011-01-17 14:25:28 -0600377 return 0;
378}
379
Grant Likelyb1608d62011-05-18 11:19:24 -0600380static const struct of_device_id fsl_of_msi_ids[];
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800381static int fsl_of_msi_probe(struct platform_device *dev)
Jason Jin34e36c12008-05-23 16:32:46 +0800382{
Grant Likelyb1608d62011-05-18 11:19:24 -0600383 const struct of_device_id *match;
Jason Jin34e36c12008-05-23 16:32:46 +0800384 struct fsl_msi *msi;
Minghuan Lianf31dd942013-06-21 18:59:14 +0800385 struct resource res, msiir;
Scott Wood6820fea2011-01-17 14:25:28 -0600386 int err, i, j, irq_index, count;
Jason Jin34e36c12008-05-23 16:32:46 +0800387 const u32 *p;
Uwe Kleine-Königf318f1d2012-05-21 21:57:39 +0200388 const struct fsl_msi_feature *features;
Li Yang061ca4a2010-04-22 16:31:37 +0800389 int len;
390 u32 offset;
Jason Jin34e36c12008-05-23 16:32:46 +0800391
Grant Likelyb1608d62011-05-18 11:19:24 -0600392 match = of_match_device(fsl_of_msi_ids, &dev->dev);
393 if (!match)
Grant Likely00006122011-02-22 19:59:54 -0700394 return -EINVAL;
Grant Likelyb1608d62011-05-18 11:19:24 -0600395 features = match->data;
Grant Likely00006122011-02-22 19:59:54 -0700396
Jason Jin34e36c12008-05-23 16:32:46 +0800397 printk(KERN_DEBUG "Setting up Freescale MSI support\n");
398
399 msi = kzalloc(sizeof(struct fsl_msi), GFP_KERNEL);
400 if (!msi) {
401 dev_err(&dev->dev, "No memory for MSI structure\n");
Li Yang48059992010-04-22 16:31:39 +0800402 return -ENOMEM;
Jason Jin34e36c12008-05-23 16:32:46 +0800403 }
Milton Miller6c4c82e2011-05-10 19:30:07 +0000404 platform_set_drvdata(dev, msi);
Jason Jin34e36c12008-05-23 16:32:46 +0800405
Grant Likelya8db8cf2012-02-14 14:06:54 -0700406 msi->irqhost = irq_domain_add_linear(dev->dev.of_node,
Minghuan Lianf31dd942013-06-21 18:59:14 +0800407 NR_MSI_IRQS_MAX, &fsl_msi_host_ops, msi);
Jason Jin34e36c12008-05-23 16:32:46 +0800408
Jason Jin34e36c12008-05-23 16:32:46 +0800409 if (msi->irqhost == NULL) {
410 dev_err(&dev->dev, "No memory for MSI irqhost\n");
Jason Jin34e36c12008-05-23 16:32:46 +0800411 err = -ENOMEM;
412 goto error_out;
413 }
414
Timur Tabi446bc1f2011-12-13 14:51:59 -0600415 /*
416 * Under the Freescale hypervisor, the msi nodes don't have a 'reg'
417 * property. Instead, we use hypercalls to access the MSI.
418 */
419 if ((features->fsl_pic_ip & FSL_PIC_IP_MASK) != FSL_PIC_IP_VMPIC) {
420 err = of_address_to_resource(dev->dev.of_node, 0, &res);
421 if (err) {
422 dev_err(&dev->dev, "invalid resource for node %s\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700423 dev->dev.of_node->full_name);
Timur Tabi446bc1f2011-12-13 14:51:59 -0600424 goto error_out;
425 }
Jason Jin34e36c12008-05-23 16:32:46 +0800426
Timur Tabi446bc1f2011-12-13 14:51:59 -0600427 msi->msi_regs = ioremap(res.start, resource_size(&res));
428 if (!msi->msi_regs) {
Liu Shuob53804c2012-03-08 14:47:37 -0800429 err = -ENOMEM;
Timur Tabi446bc1f2011-12-13 14:51:59 -0600430 dev_err(&dev->dev, "could not map node %s\n",
431 dev->dev.of_node->full_name);
432 goto error_out;
433 }
434 msi->msiir_offset =
435 features->msiir_offset + (res.start & 0xfffff);
Minghuan Lianf31dd942013-06-21 18:59:14 +0800436
437 /*
438 * First read the MSIIR/MSIIR1 offset from dts
439 * On failure use the hardcode MSIIR offset
440 */
441 if (of_address_to_resource(dev->dev.of_node, 1, &msiir))
442 msi->msiir_offset = features->msiir_offset +
443 (res.start & MSIIR_OFFSET_MASK);
444 else
445 msi->msiir_offset = msiir.start & MSIIR_OFFSET_MASK;
Jason Jin34e36c12008-05-23 16:32:46 +0800446 }
447
Anton Vorontsov692d1032008-05-23 17:41:02 +0400448 msi->feature = features->fsl_pic_ip;
Jason Jin34e36c12008-05-23 16:32:46 +0800449
Timur Tabi895d6032011-10-31 17:06:35 -0500450 /*
451 * Remember the phandle, so that we can match with any PCI nodes
452 * that have an "fsl,msi" property.
453 */
454 msi->phandle = dev->dev.of_node->phandle;
455
Wei Yongjunf8dc6eb2013-05-07 21:46:36 +0800456 err = fsl_msi_init_allocator(msi);
457 if (err) {
Jason Jin34e36c12008-05-23 16:32:46 +0800458 dev_err(&dev->dev, "Error allocating MSI bitmap\n");
459 goto error_out;
460 }
461
Scott Wood6820fea2011-01-17 14:25:28 -0600462 p = of_get_property(dev->dev.of_node, "msi-available-ranges", &len);
Jason Jin34e36c12008-05-23 16:32:46 +0800463
Tudor Laurentiu67e35c32014-08-13 16:55:13 +0300464 if (of_device_is_compatible(dev->dev.of_node, "fsl,mpic-msi-v4.3") ||
465 of_device_is_compatible(dev->dev.of_node, "fsl,vmpic-msi-v4.3")) {
Minghuan Lianf31dd942013-06-21 18:59:14 +0800466 msi->srs_shift = MSIIR1_SRS_SHIFT;
467 msi->ibs_shift = MSIIR1_IBS_SHIFT;
468 if (p)
469 dev_warn(&dev->dev, "%s: dose not support msi-available-ranges property\n",
470 __func__);
Scott Wood6820fea2011-01-17 14:25:28 -0600471
Minghuan Lianf31dd942013-06-21 18:59:14 +0800472 for (irq_index = 0; irq_index < NR_MSI_REG_MSIIR1;
473 irq_index++) {
474 err = fsl_msi_setup_hwirq(msi, dev,
475 irq_index, irq_index);
476 if (err)
477 goto error_out;
478 }
479 } else {
480 static const u32 all_avail[] =
481 { 0, NR_MSI_REG_MSIIR * IRQS_PER_MSI_REG };
482
483 msi->srs_shift = MSIIR_SRS_SHIFT;
484 msi->ibs_shift = MSIIR_IBS_SHIFT;
485
486 if (p && len % (2 * sizeof(u32)) != 0) {
487 dev_err(&dev->dev, "%s: Malformed msi-available-ranges property\n",
488 __func__);
Scott Wood6820fea2011-01-17 14:25:28 -0600489 err = -EINVAL;
490 goto error_out;
491 }
492
Minghuan Lianf31dd942013-06-21 18:59:14 +0800493 if (!p) {
494 p = all_avail;
495 len = sizeof(all_avail);
496 }
Scott Wood6820fea2011-01-17 14:25:28 -0600497
Minghuan Lianf31dd942013-06-21 18:59:14 +0800498 for (irq_index = 0, i = 0; i < len / (2 * sizeof(u32)); i++) {
499 if (p[i * 2] % IRQS_PER_MSI_REG ||
500 p[i * 2 + 1] % IRQS_PER_MSI_REG) {
501 pr_warn("%s: %s: msi available range of %u at %u is not IRQ-aligned\n",
502 __func__, dev->dev.of_node->full_name,
503 p[i * 2 + 1], p[i * 2]);
504 err = -EINVAL;
Li Yang02adac62010-04-22 16:31:35 +0800505 goto error_out;
Minghuan Lianf31dd942013-06-21 18:59:14 +0800506 }
507
508 offset = p[i * 2] / IRQS_PER_MSI_REG;
509 count = p[i * 2 + 1] / IRQS_PER_MSI_REG;
510
511 for (j = 0; j < count; j++, irq_index++) {
512 err = fsl_msi_setup_hwirq(msi, dev, offset + j,
513 irq_index);
514 if (err)
515 goto error_out;
516 }
Jason Jin34e36c12008-05-23 16:32:46 +0800517 }
518 }
519
Li Yang694a7a32010-04-22 16:31:36 +0800520 list_add_tail(&msi->list, &msi_head);
Jason Jin34e36c12008-05-23 16:32:46 +0800521
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000522 /* The multiple setting ppc_md.setup_msi_irqs will not harm things */
523 if (!ppc_md.setup_msi_irqs) {
524 ppc_md.setup_msi_irqs = fsl_setup_msi_irqs;
525 ppc_md.teardown_msi_irqs = fsl_teardown_msi_irqs;
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000526 } else if (ppc_md.setup_msi_irqs != fsl_setup_msi_irqs) {
527 dev_err(&dev->dev, "Different MSI driver already installed!\n");
528 err = -ENODEV;
529 goto error_out;
530 }
Jason Jin34e36c12008-05-23 16:32:46 +0800531 return 0;
532error_out:
Li Yang48059992010-04-22 16:31:39 +0800533 fsl_of_msi_remove(dev);
Jason Jin34e36c12008-05-23 16:32:46 +0800534 return err;
535}
536
537static const struct fsl_msi_feature mpic_msi_feature = {
538 .fsl_pic_ip = FSL_PIC_IP_MPIC,
539 .msiir_offset = 0x140,
540};
541
542static const struct fsl_msi_feature ipic_msi_feature = {
543 .fsl_pic_ip = FSL_PIC_IP_IPIC,
544 .msiir_offset = 0x38,
545};
546
Timur Tabi446bc1f2011-12-13 14:51:59 -0600547static const struct fsl_msi_feature vmpic_msi_feature = {
548 .fsl_pic_ip = FSL_PIC_IP_VMPIC,
549 .msiir_offset = 0,
550};
551
Jason Jin34e36c12008-05-23 16:32:46 +0800552static const struct of_device_id fsl_of_msi_ids[] = {
553 {
554 .compatible = "fsl,mpic-msi",
Arnd Bergmanna99cc822012-07-13 16:24:26 +0000555 .data = &mpic_msi_feature,
Jason Jin34e36c12008-05-23 16:32:46 +0800556 },
557 {
Minghuan Lianf31dd942013-06-21 18:59:14 +0800558 .compatible = "fsl,mpic-msi-v4.3",
559 .data = &mpic_msi_feature,
560 },
561 {
Jason Jin34e36c12008-05-23 16:32:46 +0800562 .compatible = "fsl,ipic-msi",
Arnd Bergmanna99cc822012-07-13 16:24:26 +0000563 .data = &ipic_msi_feature,
Jason Jin34e36c12008-05-23 16:32:46 +0800564 },
Scott Wood305bcf22012-07-03 05:48:55 +0000565#ifdef CONFIG_EPAPR_PARAVIRT
Timur Tabi446bc1f2011-12-13 14:51:59 -0600566 {
567 .compatible = "fsl,vmpic-msi",
Arnd Bergmanna99cc822012-07-13 16:24:26 +0000568 .data = &vmpic_msi_feature,
Timur Tabi446bc1f2011-12-13 14:51:59 -0600569 },
Tudor Laurentiu67e35c32014-08-13 16:55:13 +0300570 {
571 .compatible = "fsl,vmpic-msi-v4.3",
572 .data = &vmpic_msi_feature,
573 },
Scott Wood305bcf22012-07-03 05:48:55 +0000574#endif
Jason Jin34e36c12008-05-23 16:32:46 +0800575 {}
576};
577
Grant Likely00006122011-02-22 19:59:54 -0700578static struct platform_driver fsl_of_msi_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700579 .driver = {
580 .name = "fsl-msi",
581 .owner = THIS_MODULE,
582 .of_match_table = fsl_of_msi_ids,
583 },
Jason Jin34e36c12008-05-23 16:32:46 +0800584 .probe = fsl_of_msi_probe,
Li Yang48059992010-04-22 16:31:39 +0800585 .remove = fsl_of_msi_remove,
Jason Jin34e36c12008-05-23 16:32:46 +0800586};
587
588static __init int fsl_of_msi_init(void)
589{
Grant Likely00006122011-02-22 19:59:54 -0700590 return platform_driver_register(&fsl_of_msi_driver);
Jason Jin34e36c12008-05-23 16:32:46 +0800591}
592
593subsys_initcall(fsl_of_msi_init);