blob: 6e097de00e093741890b12c45cb13b16d99d1d20 [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>
21#include <sysdev/fsl_soc.h>
22#include <asm/prom.h>
23#include <asm/hw_irq.h>
24#include <asm/ppc-pci.h>
Li Yang02adac62010-04-22 16:31:35 +080025#include <asm/mpic.h>
Timur Tabi446bc1f2011-12-13 14:51:59 -060026#include <asm/fsl_hcalls.h>
27
Jason Jin34e36c12008-05-23 16:32:46 +080028#include "fsl_msi.h"
Kumar Galab8f44ec2010-08-05 02:45:08 -050029#include "fsl_pci.h"
Jason Jin34e36c12008-05-23 16:32:46 +080030
Li Yang694a7a32010-04-22 16:31:36 +080031LIST_HEAD(msi_head);
32
Jason Jin34e36c12008-05-23 16:32:46 +080033struct fsl_msi_feature {
34 u32 fsl_pic_ip;
Timur Tabi2bcd1c02011-09-23 12:41:35 -050035 u32 msiir_offset; /* Offset of MSIIR, relative to start of MSIR bank */
Jason Jin34e36c12008-05-23 16:32:46 +080036};
37
Li Yang02adac62010-04-22 16:31:35 +080038struct fsl_msi_cascade_data {
39 struct fsl_msi *msi_data;
40 int index;
41};
Jason Jin34e36c12008-05-23 16:32:46 +080042
43static inline u32 fsl_msi_read(u32 __iomem *base, unsigned int reg)
44{
45 return in_be32(base + (reg >> 2));
46}
47
Jason Jin34e36c12008-05-23 16:32:46 +080048/*
49 * We do not need this actually. The MSIR register has been read once
50 * in the cascade interrupt. So, this MSI interrupt has been acked
51*/
Lennert Buytenhek37e16612011-03-07 13:59:54 +000052static void fsl_msi_end_irq(struct irq_data *d)
Jason Jin34e36c12008-05-23 16:32:46 +080053{
54}
55
56static struct irq_chip fsl_msi_chip = {
Thomas Gleixner1c9db522010-09-28 16:46:51 +020057 .irq_mask = mask_msi_irq,
58 .irq_unmask = unmask_msi_irq,
Lennert Buytenhek37e16612011-03-07 13:59:54 +000059 .irq_ack = fsl_msi_end_irq,
Anton Blanchardfc380c02010-01-31 20:33:41 +000060 .name = "FSL-MSI",
Jason Jin34e36c12008-05-23 16:32:46 +080061};
62
Grant Likelybae1d8f2012-02-14 14:06:50 -070063static int fsl_msi_host_map(struct irq_domain *h, unsigned int virq,
Jason Jin34e36c12008-05-23 16:32:46 +080064 irq_hw_number_t hw)
65{
Lan Chunhe-B2580680818812010-03-15 06:38:33 +000066 struct fsl_msi *msi_data = h->host_data;
Jason Jin34e36c12008-05-23 16:32:46 +080067 struct irq_chip *chip = &fsl_msi_chip;
68
Thomas Gleixner98488db2011-03-25 15:43:57 +010069 irq_set_status_flags(virq, IRQ_TYPE_EDGE_FALLING);
Jason Jin34e36c12008-05-23 16:32:46 +080070
Thomas Gleixnerec775d02011-03-25 16:45:20 +010071 irq_set_chip_data(virq, msi_data);
72 irq_set_chip_and_handler(virq, chip, handle_edge_irq);
Jason Jin34e36c12008-05-23 16:32:46 +080073
74 return 0;
75}
76
Grant Likely9f70b8e2012-01-26 12:24:34 -070077static const struct irq_domain_ops fsl_msi_host_ops = {
Jason Jin34e36c12008-05-23 16:32:46 +080078 .map = fsl_msi_host_map,
79};
80
Jason Jin34e36c12008-05-23 16:32:46 +080081static int fsl_msi_init_allocator(struct fsl_msi *msi_data)
82{
Anton Vorontsov692d1032008-05-23 17:41:02 +040083 int rc;
Jason Jin34e36c12008-05-23 16:32:46 +080084
Michael Ellerman7e7ab362008-08-06 09:10:02 +100085 rc = msi_bitmap_alloc(&msi_data->bitmap, NR_MSI_IRQS,
86 msi_data->irqhost->of_node);
87 if (rc)
88 return rc;
Jason Jin34e36c12008-05-23 16:32:46 +080089
Michael Ellerman7e7ab362008-08-06 09:10:02 +100090 rc = msi_bitmap_reserve_dt_hwirqs(&msi_data->bitmap);
91 if (rc < 0) {
92 msi_bitmap_free(&msi_data->bitmap);
93 return rc;
Jason Jin34e36c12008-05-23 16:32:46 +080094 }
95
Jason Jin34e36c12008-05-23 16:32:46 +080096 return 0;
Jason Jin34e36c12008-05-23 16:32:46 +080097}
98
99static int fsl_msi_check_device(struct pci_dev *pdev, int nvec, int type)
100{
101 if (type == PCI_CAP_ID_MSIX)
102 pr_debug("fslmsi: MSI-X untested, trying anyway.\n");
103
104 return 0;
105}
106
107static void fsl_teardown_msi_irqs(struct pci_dev *pdev)
108{
109 struct msi_desc *entry;
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000110 struct fsl_msi *msi_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800111
112 list_for_each_entry(entry, &pdev->msi_list, list) {
113 if (entry->irq == NO_IRQ)
114 continue;
Milton Millerd1921bc2011-05-10 19:30:11 +0000115 msi_data = irq_get_chip_data(entry->irq);
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100116 irq_set_msi_desc(entry->irq, NULL);
Michael Ellerman7e7ab362008-08-06 09:10:02 +1000117 msi_bitmap_free_hwirqs(&msi_data->bitmap,
118 virq_to_hw(entry->irq), 1);
Jason Jin34e36c12008-05-23 16:32:46 +0800119 irq_dispose_mapping(entry->irq);
120 }
121
122 return;
123}
124
125static void fsl_compose_msi_msg(struct pci_dev *pdev, int hwirq,
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000126 struct msi_msg *msg,
127 struct fsl_msi *fsl_msi_data)
Jason Jin34e36c12008-05-23 16:32:46 +0800128{
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000129 struct fsl_msi *msi_data = fsl_msi_data;
Kumar Gala3da34aa2009-05-12 15:51:56 -0500130 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
Timur Tabi2bcd1c02011-09-23 12:41:35 -0500131 u64 address; /* Physical address of the MSIIR */
132 int len;
133 const u64 *reg;
Jason Jin34e36c12008-05-23 16:32:46 +0800134
Timur Tabi2bcd1c02011-09-23 12:41:35 -0500135 /* If the msi-address-64 property exists, then use it */
136 reg = of_get_property(hose->dn, "msi-address-64", &len);
137 if (reg && (len == sizeof(u64)))
138 address = be64_to_cpup(reg);
139 else
140 address = fsl_pci_immrbar_base(hose) + msi_data->msiir_offset;
141
142 msg->address_lo = lower_32_bits(address);
143 msg->address_hi = upper_32_bits(address);
Kumar Gala3da34aa2009-05-12 15:51:56 -0500144
Jason Jin34e36c12008-05-23 16:32:46 +0800145 msg->data = hwirq;
146
147 pr_debug("%s: allocated srs: %d, ibs: %d\n",
148 __func__, hwirq / IRQS_PER_MSI_REG, hwirq % IRQS_PER_MSI_REG);
149}
150
151static int fsl_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
152{
Timur Tabi895d6032011-10-31 17:06:35 -0500153 struct pci_controller *hose = pci_bus_to_host(pdev->bus);
154 struct device_node *np;
155 phandle phandle = 0;
Li Yang694a7a32010-04-22 16:31:36 +0800156 int rc, hwirq = -ENOMEM;
Jason Jin34e36c12008-05-23 16:32:46 +0800157 unsigned int virq;
158 struct msi_desc *entry;
159 struct msi_msg msg;
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000160 struct fsl_msi *msi_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800161
Timur Tabi895d6032011-10-31 17:06:35 -0500162 /*
163 * If the PCI node has an fsl,msi property, then we need to use it
164 * to find the specific MSI.
165 */
166 np = of_parse_phandle(hose->dn, "fsl,msi", 0);
167 if (np) {
Timur Tabi446bc1f2011-12-13 14:51:59 -0600168 if (of_device_is_compatible(np, "fsl,mpic-msi") ||
169 of_device_is_compatible(np, "fsl,vmpic-msi"))
Timur Tabi895d6032011-10-31 17:06:35 -0500170 phandle = np->phandle;
171 else {
Timur Tabi446bc1f2011-12-13 14:51:59 -0600172 dev_err(&pdev->dev,
173 "node %s has an invalid fsl,msi phandle %u\n",
174 hose->dn->full_name, np->phandle);
Timur Tabi895d6032011-10-31 17:06:35 -0500175 return -EINVAL;
176 }
177 }
178
Jason Jin34e36c12008-05-23 16:32:46 +0800179 list_for_each_entry(entry, &pdev->msi_list, list) {
Timur Tabi895d6032011-10-31 17:06:35 -0500180 /*
181 * Loop over all the MSI devices until we find one that has an
182 * available interrupt.
183 */
Li Yang694a7a32010-04-22 16:31:36 +0800184 list_for_each_entry(msi_data, &msi_head, list) {
Timur Tabi895d6032011-10-31 17:06:35 -0500185 /*
186 * If the PCI node has an fsl,msi property, then we
187 * restrict our search to the corresponding MSI node.
188 * The simplest way is to skip over MSI nodes with the
189 * wrong phandle. Under the Freescale hypervisor, this
190 * has the additional benefit of skipping over MSI
191 * nodes that are not mapped in the PAMU.
192 */
193 if (phandle && (phandle != msi_data->phandle))
194 continue;
195
Li Yang694a7a32010-04-22 16:31:36 +0800196 hwirq = msi_bitmap_alloc_hwirqs(&msi_data->bitmap, 1);
197 if (hwirq >= 0)
198 break;
199 }
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000200
Jason Jin34e36c12008-05-23 16:32:46 +0800201 if (hwirq < 0) {
202 rc = hwirq;
Timur Tabi446bc1f2011-12-13 14:51:59 -0600203 dev_err(&pdev->dev, "could not allocate MSI interrupt\n");
Jason Jin34e36c12008-05-23 16:32:46 +0800204 goto out_free;
205 }
206
207 virq = irq_create_mapping(msi_data->irqhost, hwirq);
208
209 if (virq == NO_IRQ) {
Timur Tabi446bc1f2011-12-13 14:51:59 -0600210 dev_err(&pdev->dev, "fail mapping hwirq %i\n", hwirq);
Michael Ellerman7e7ab362008-08-06 09:10:02 +1000211 msi_bitmap_free_hwirqs(&msi_data->bitmap, hwirq, 1);
Jason Jin34e36c12008-05-23 16:32:46 +0800212 rc = -ENOSPC;
213 goto out_free;
214 }
Milton Millerd1921bc2011-05-10 19:30:11 +0000215 /* chip_data is msi_data via host->hostdata in host->map() */
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100216 irq_set_msi_desc(virq, entry);
Jason Jin34e36c12008-05-23 16:32:46 +0800217
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000218 fsl_compose_msi_msg(pdev, hwirq, &msg, msi_data);
Jason Jin34e36c12008-05-23 16:32:46 +0800219 write_msi_msg(virq, &msg);
220 }
221 return 0;
222
223out_free:
Li Yang694a7a32010-04-22 16:31:36 +0800224 /* free by the caller of this function */
Jason Jin34e36c12008-05-23 16:32:46 +0800225 return rc;
226}
227
Anton Vorontsov692d1032008-05-23 17:41:02 +0400228static void fsl_msi_cascade(unsigned int irq, struct irq_desc *desc)
Jason Jin34e36c12008-05-23 16:32:46 +0800229{
Thomas Gleixnerddaedd12011-03-28 16:46:02 +0200230 struct irq_chip *chip = irq_desc_get_chip(desc);
231 struct irq_data *idata = irq_desc_get_irq_data(desc);
Jason Jin34e36c12008-05-23 16:32:46 +0800232 unsigned int cascade_irq;
Li Yang02adac62010-04-22 16:31:35 +0800233 struct fsl_msi *msi_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800234 int msir_index = -1;
235 u32 msir_value = 0;
236 u32 intr_index;
237 u32 have_shift = 0;
Li Yang02adac62010-04-22 16:31:35 +0800238 struct fsl_msi_cascade_data *cascade_data;
Timur Tabi446bc1f2011-12-13 14:51:59 -0600239 unsigned int ret;
Li Yang02adac62010-04-22 16:31:35 +0800240
Milton Millerd1921bc2011-05-10 19:30:11 +0000241 cascade_data = irq_get_handler_data(irq);
Li Yang02adac62010-04-22 16:31:35 +0800242 msi_data = cascade_data->msi_data;
Jason Jin34e36c12008-05-23 16:32:46 +0800243
Thomas Gleixner239007b2009-11-17 16:46:45 +0100244 raw_spin_lock(&desc->lock);
Jason Jin34e36c12008-05-23 16:32:46 +0800245 if ((msi_data->feature & FSL_PIC_IP_MASK) == FSL_PIC_IP_IPIC) {
Lennert Buytenhek37e16612011-03-07 13:59:54 +0000246 if (chip->irq_mask_ack)
Thomas Gleixnerddaedd12011-03-28 16:46:02 +0200247 chip->irq_mask_ack(idata);
Jason Jin34e36c12008-05-23 16:32:46 +0800248 else {
Thomas Gleixnerddaedd12011-03-28 16:46:02 +0200249 chip->irq_mask(idata);
250 chip->irq_ack(idata);
Jason Jin34e36c12008-05-23 16:32:46 +0800251 }
252 }
253
Thomas Gleixnerddaedd12011-03-28 16:46:02 +0200254 if (unlikely(irqd_irq_inprogress(idata)))
Jason Jin34e36c12008-05-23 16:32:46 +0800255 goto unlock;
256
Li Yang02adac62010-04-22 16:31:35 +0800257 msir_index = cascade_data->index;
Jason Jin34e36c12008-05-23 16:32:46 +0800258
259 if (msir_index >= NR_MSI_REG)
260 cascade_irq = NO_IRQ;
261
Thomas Gleixnerddaedd12011-03-28 16:46:02 +0200262 irqd_set_chained_irq_inprogress(idata);
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000263 switch (msi_data->feature & FSL_PIC_IP_MASK) {
Jason Jin34e36c12008-05-23 16:32:46 +0800264 case FSL_PIC_IP_MPIC:
265 msir_value = fsl_msi_read(msi_data->msi_regs,
266 msir_index * 0x10);
267 break;
268 case FSL_PIC_IP_IPIC:
269 msir_value = fsl_msi_read(msi_data->msi_regs, msir_index * 0x4);
270 break;
Timur Tabi446bc1f2011-12-13 14:51:59 -0600271 case FSL_PIC_IP_VMPIC:
272 ret = fh_vmpic_get_msir(virq_to_hw(irq), &msir_value);
273 if (ret) {
274 pr_err("fsl-msi: fh_vmpic_get_msir() failed for "
275 "irq %u (ret=%u)\n", irq, ret);
276 msir_value = 0;
277 }
278 break;
Jason Jin34e36c12008-05-23 16:32:46 +0800279 }
280
281 while (msir_value) {
282 intr_index = ffs(msir_value) - 1;
283
284 cascade_irq = irq_linear_revmap(msi_data->irqhost,
Anton Vorontsov692d1032008-05-23 17:41:02 +0400285 msir_index * IRQS_PER_MSI_REG +
286 intr_index + have_shift);
Jason Jin34e36c12008-05-23 16:32:46 +0800287 if (cascade_irq != NO_IRQ)
288 generic_handle_irq(cascade_irq);
Anton Vorontsov692d1032008-05-23 17:41:02 +0400289 have_shift += intr_index + 1;
290 msir_value = msir_value >> (intr_index + 1);
Jason Jin34e36c12008-05-23 16:32:46 +0800291 }
Thomas Gleixnerddaedd12011-03-28 16:46:02 +0200292 irqd_clr_chained_irq_inprogress(idata);
Jason Jin34e36c12008-05-23 16:32:46 +0800293
294 switch (msi_data->feature & FSL_PIC_IP_MASK) {
295 case FSL_PIC_IP_MPIC:
Timur Tabi446bc1f2011-12-13 14:51:59 -0600296 case FSL_PIC_IP_VMPIC:
Thomas Gleixnerddaedd12011-03-28 16:46:02 +0200297 chip->irq_eoi(idata);
Jason Jin34e36c12008-05-23 16:32:46 +0800298 break;
299 case FSL_PIC_IP_IPIC:
Thomas Gleixnerddaedd12011-03-28 16:46:02 +0200300 if (!irqd_irq_disabled(idata) && chip->irq_unmask)
301 chip->irq_unmask(idata);
Jason Jin34e36c12008-05-23 16:32:46 +0800302 break;
303 }
304unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100305 raw_spin_unlock(&desc->lock);
Jason Jin34e36c12008-05-23 16:32:46 +0800306}
307
Grant Likelya454dc52010-07-22 15:52:34 -0600308static int fsl_of_msi_remove(struct platform_device *ofdev)
Li Yang48059992010-04-22 16:31:39 +0800309{
Milton Miller6c4c82e2011-05-10 19:30:07 +0000310 struct fsl_msi *msi = platform_get_drvdata(ofdev);
Li Yang48059992010-04-22 16:31:39 +0800311 int virq, i;
312 struct fsl_msi_cascade_data *cascade_data;
313
314 if (msi->list.prev != NULL)
315 list_del(&msi->list);
316 for (i = 0; i < NR_MSI_REG; i++) {
317 virq = msi->msi_virqs[i];
318 if (virq != NO_IRQ) {
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100319 cascade_data = irq_get_handler_data(virq);
Li Yang48059992010-04-22 16:31:39 +0800320 kfree(cascade_data);
321 irq_dispose_mapping(virq);
322 }
323 }
324 if (msi->bitmap.bitmap)
325 msi_bitmap_free(&msi->bitmap);
Timur Tabi446bc1f2011-12-13 14:51:59 -0600326 if ((msi->feature & FSL_PIC_IP_MASK) != FSL_PIC_IP_VMPIC)
327 iounmap(msi->msi_regs);
Li Yang48059992010-04-22 16:31:39 +0800328 kfree(msi);
329
330 return 0;
331}
332
Scott Wood6820fea2011-01-17 14:25:28 -0600333static int __devinit fsl_msi_setup_hwirq(struct fsl_msi *msi,
334 struct platform_device *dev,
335 int offset, int irq_index)
336{
337 struct fsl_msi_cascade_data *cascade_data = NULL;
338 int virt_msir;
339
340 virt_msir = irq_of_parse_and_map(dev->dev.of_node, irq_index);
341 if (virt_msir == NO_IRQ) {
342 dev_err(&dev->dev, "%s: Cannot translate IRQ index %d\n",
343 __func__, irq_index);
344 return 0;
345 }
346
347 cascade_data = kzalloc(sizeof(struct fsl_msi_cascade_data), GFP_KERNEL);
348 if (!cascade_data) {
349 dev_err(&dev->dev, "No memory for MSI cascade data\n");
350 return -ENOMEM;
351 }
352
353 msi->msi_virqs[irq_index] = virt_msir;
Timur Tabi22285112011-09-13 16:17:00 -0500354 cascade_data->index = offset;
Scott Wood6820fea2011-01-17 14:25:28 -0600355 cascade_data->msi_data = msi;
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100356 irq_set_handler_data(virt_msir, cascade_data);
357 irq_set_chained_handler(virt_msir, fsl_msi_cascade);
Scott Wood6820fea2011-01-17 14:25:28 -0600358
359 return 0;
360}
361
Grant Likelyb1608d62011-05-18 11:19:24 -0600362static const struct of_device_id fsl_of_msi_ids[];
Grant Likely00006122011-02-22 19:59:54 -0700363static int __devinit fsl_of_msi_probe(struct platform_device *dev)
Jason Jin34e36c12008-05-23 16:32:46 +0800364{
Grant Likelyb1608d62011-05-18 11:19:24 -0600365 const struct of_device_id *match;
Jason Jin34e36c12008-05-23 16:32:46 +0800366 struct fsl_msi *msi;
367 struct resource res;
Scott Wood6820fea2011-01-17 14:25:28 -0600368 int err, i, j, irq_index, count;
Jason Jin34e36c12008-05-23 16:32:46 +0800369 int rc;
Jason Jin34e36c12008-05-23 16:32:46 +0800370 const u32 *p;
Grant Likely00006122011-02-22 19:59:54 -0700371 struct fsl_msi_feature *features;
Li Yang061ca4a2010-04-22 16:31:37 +0800372 int len;
373 u32 offset;
Scott Wood6820fea2011-01-17 14:25:28 -0600374 static const u32 all_avail[] = { 0, NR_MSI_IRQS };
Jason Jin34e36c12008-05-23 16:32:46 +0800375
Grant Likelyb1608d62011-05-18 11:19:24 -0600376 match = of_match_device(fsl_of_msi_ids, &dev->dev);
377 if (!match)
Grant Likely00006122011-02-22 19:59:54 -0700378 return -EINVAL;
Grant Likelyb1608d62011-05-18 11:19:24 -0600379 features = match->data;
Grant Likely00006122011-02-22 19:59:54 -0700380
Jason Jin34e36c12008-05-23 16:32:46 +0800381 printk(KERN_DEBUG "Setting up Freescale MSI support\n");
382
383 msi = kzalloc(sizeof(struct fsl_msi), GFP_KERNEL);
384 if (!msi) {
385 dev_err(&dev->dev, "No memory for MSI structure\n");
Li Yang48059992010-04-22 16:31:39 +0800386 return -ENOMEM;
Jason Jin34e36c12008-05-23 16:32:46 +0800387 }
Milton Miller6c4c82e2011-05-10 19:30:07 +0000388 platform_set_drvdata(dev, msi);
Jason Jin34e36c12008-05-23 16:32:46 +0800389
Grant Likelya8db8cf2012-02-14 14:06:54 -0700390 msi->irqhost = irq_domain_add_linear(dev->dev.of_node,
391 NR_MSI_IRQS, &fsl_msi_host_ops, msi);
Jason Jin34e36c12008-05-23 16:32:46 +0800392
Jason Jin34e36c12008-05-23 16:32:46 +0800393 if (msi->irqhost == NULL) {
394 dev_err(&dev->dev, "No memory for MSI irqhost\n");
Jason Jin34e36c12008-05-23 16:32:46 +0800395 err = -ENOMEM;
396 goto error_out;
397 }
398
Timur Tabi446bc1f2011-12-13 14:51:59 -0600399 /*
400 * Under the Freescale hypervisor, the msi nodes don't have a 'reg'
401 * property. Instead, we use hypercalls to access the MSI.
402 */
403 if ((features->fsl_pic_ip & FSL_PIC_IP_MASK) != FSL_PIC_IP_VMPIC) {
404 err = of_address_to_resource(dev->dev.of_node, 0, &res);
405 if (err) {
406 dev_err(&dev->dev, "invalid resource for node %s\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700407 dev->dev.of_node->full_name);
Timur Tabi446bc1f2011-12-13 14:51:59 -0600408 goto error_out;
409 }
Jason Jin34e36c12008-05-23 16:32:46 +0800410
Timur Tabi446bc1f2011-12-13 14:51:59 -0600411 msi->msi_regs = ioremap(res.start, resource_size(&res));
412 if (!msi->msi_regs) {
Liu Shuob53804c2012-03-08 14:47:37 -0800413 err = -ENOMEM;
Timur Tabi446bc1f2011-12-13 14:51:59 -0600414 dev_err(&dev->dev, "could not map node %s\n",
415 dev->dev.of_node->full_name);
416 goto error_out;
417 }
418 msi->msiir_offset =
419 features->msiir_offset + (res.start & 0xfffff);
Jason Jin34e36c12008-05-23 16:32:46 +0800420 }
421
Anton Vorontsov692d1032008-05-23 17:41:02 +0400422 msi->feature = features->fsl_pic_ip;
Jason Jin34e36c12008-05-23 16:32:46 +0800423
Timur Tabi895d6032011-10-31 17:06:35 -0500424 /*
425 * Remember the phandle, so that we can match with any PCI nodes
426 * that have an "fsl,msi" property.
427 */
428 msi->phandle = dev->dev.of_node->phandle;
429
Jason Jin34e36c12008-05-23 16:32:46 +0800430 rc = fsl_msi_init_allocator(msi);
431 if (rc) {
432 dev_err(&dev->dev, "Error allocating MSI bitmap\n");
433 goto error_out;
434 }
435
Scott Wood6820fea2011-01-17 14:25:28 -0600436 p = of_get_property(dev->dev.of_node, "msi-available-ranges", &len);
437 if (p && len % (2 * sizeof(u32)) != 0) {
438 dev_err(&dev->dev, "%s: Malformed msi-available-ranges property\n",
439 __func__);
Jason Jin34e36c12008-05-23 16:32:46 +0800440 err = -EINVAL;
441 goto error_out;
442 }
443
Timur Tabi22285112011-09-13 16:17:00 -0500444 if (!p) {
Scott Wood6820fea2011-01-17 14:25:28 -0600445 p = all_avail;
Timur Tabi22285112011-09-13 16:17:00 -0500446 len = sizeof(all_avail);
447 }
Scott Wood6820fea2011-01-17 14:25:28 -0600448
449 for (irq_index = 0, i = 0; i < len / (2 * sizeof(u32)); i++) {
450 if (p[i * 2] % IRQS_PER_MSI_REG ||
451 p[i * 2 + 1] % IRQS_PER_MSI_REG) {
452 printk(KERN_WARNING "%s: %s: msi available range of %u at %u is not IRQ-aligned\n",
453 __func__, dev->dev.of_node->full_name,
454 p[i * 2 + 1], p[i * 2]);
455 err = -EINVAL;
456 goto error_out;
457 }
458
459 offset = p[i * 2] / IRQS_PER_MSI_REG;
460 count = p[i * 2 + 1] / IRQS_PER_MSI_REG;
461
462 for (j = 0; j < count; j++, irq_index++) {
Timur Tabi22285112011-09-13 16:17:00 -0500463 err = fsl_msi_setup_hwirq(msi, dev, offset + j, irq_index);
Scott Wood6820fea2011-01-17 14:25:28 -0600464 if (err)
Li Yang02adac62010-04-22 16:31:35 +0800465 goto error_out;
Jason Jin34e36c12008-05-23 16:32:46 +0800466 }
467 }
468
Li Yang694a7a32010-04-22 16:31:36 +0800469 list_add_tail(&msi->list, &msi_head);
Jason Jin34e36c12008-05-23 16:32:46 +0800470
Lan Chunhe-B2580680818812010-03-15 06:38:33 +0000471 /* The multiple setting ppc_md.setup_msi_irqs will not harm things */
472 if (!ppc_md.setup_msi_irqs) {
473 ppc_md.setup_msi_irqs = fsl_setup_msi_irqs;
474 ppc_md.teardown_msi_irqs = fsl_teardown_msi_irqs;
475 ppc_md.msi_check_device = fsl_msi_check_device;
476 } else if (ppc_md.setup_msi_irqs != fsl_setup_msi_irqs) {
477 dev_err(&dev->dev, "Different MSI driver already installed!\n");
478 err = -ENODEV;
479 goto error_out;
480 }
Jason Jin34e36c12008-05-23 16:32:46 +0800481 return 0;
482error_out:
Li Yang48059992010-04-22 16:31:39 +0800483 fsl_of_msi_remove(dev);
Jason Jin34e36c12008-05-23 16:32:46 +0800484 return err;
485}
486
487static const struct fsl_msi_feature mpic_msi_feature = {
488 .fsl_pic_ip = FSL_PIC_IP_MPIC,
489 .msiir_offset = 0x140,
490};
491
492static const struct fsl_msi_feature ipic_msi_feature = {
493 .fsl_pic_ip = FSL_PIC_IP_IPIC,
494 .msiir_offset = 0x38,
495};
496
Timur Tabi446bc1f2011-12-13 14:51:59 -0600497static const struct fsl_msi_feature vmpic_msi_feature = {
498 .fsl_pic_ip = FSL_PIC_IP_VMPIC,
499 .msiir_offset = 0,
500};
501
Jason Jin34e36c12008-05-23 16:32:46 +0800502static const struct of_device_id fsl_of_msi_ids[] = {
503 {
504 .compatible = "fsl,mpic-msi",
505 .data = (void *)&mpic_msi_feature,
506 },
507 {
508 .compatible = "fsl,ipic-msi",
509 .data = (void *)&ipic_msi_feature,
510 },
Timur Tabi446bc1f2011-12-13 14:51:59 -0600511 {
512 .compatible = "fsl,vmpic-msi",
513 .data = (void *)&vmpic_msi_feature,
514 },
Jason Jin34e36c12008-05-23 16:32:46 +0800515 {}
516};
517
Grant Likely00006122011-02-22 19:59:54 -0700518static struct platform_driver fsl_of_msi_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700519 .driver = {
520 .name = "fsl-msi",
521 .owner = THIS_MODULE,
522 .of_match_table = fsl_of_msi_ids,
523 },
Jason Jin34e36c12008-05-23 16:32:46 +0800524 .probe = fsl_of_msi_probe,
Li Yang48059992010-04-22 16:31:39 +0800525 .remove = fsl_of_msi_remove,
Jason Jin34e36c12008-05-23 16:32:46 +0800526};
527
528static __init int fsl_of_msi_init(void)
529{
Grant Likely00006122011-02-22 19:59:54 -0700530 return platform_driver_register(&fsl_of_msi_driver);
Jason Jin34e36c12008-05-23 16:32:46 +0800531}
532
533subsys_initcall(fsl_of_msi_init);