2 * Copyright (C) 2007-2010 Freescale Semiconductor, Inc.
4 * Author: Tony Li <tony.li@freescale.com>
5 * Jason Jin <Jason.jin@freescale.com>
7 * The hwirq alloc and free code reuse from sysdev/mpic_msi.c
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
15 #include <linux/irq.h>
16 #include <linux/bootmem.h>
17 #include <linux/msi.h>
18 #include <linux/pci.h>
19 #include <linux/slab.h>
20 #include <linux/of_platform.h>
21 #include <sysdev/fsl_soc.h>
23 #include <asm/hw_irq.h>
24 #include <asm/ppc-pci.h>
31 struct fsl_msi_feature
{
36 struct fsl_msi_cascade_data
{
37 struct fsl_msi
*msi_data
;
41 static inline u32
fsl_msi_read(u32 __iomem
*base
, unsigned int reg
)
43 return in_be32(base
+ (reg
>> 2));
47 * We do not need this actually. The MSIR register has been read once
48 * in the cascade interrupt. So, this MSI interrupt has been acked
50 static void fsl_msi_end_irq(unsigned int virq
)
54 static struct irq_chip fsl_msi_chip
= {
55 .irq_mask
= mask_msi_irq
,
56 .irq_unmask
= unmask_msi_irq
,
57 .ack
= fsl_msi_end_irq
,
61 static int fsl_msi_host_map(struct irq_host
*h
, unsigned int virq
,
64 struct fsl_msi
*msi_data
= h
->host_data
;
65 struct irq_chip
*chip
= &fsl_msi_chip
;
67 irq_to_desc(virq
)->status
|= IRQ_TYPE_EDGE_FALLING
;
69 set_irq_chip_data(virq
, msi_data
);
70 set_irq_chip_and_handler(virq
, chip
, handle_edge_irq
);
75 static struct irq_host_ops fsl_msi_host_ops
= {
76 .map
= fsl_msi_host_map
,
79 static int fsl_msi_init_allocator(struct fsl_msi
*msi_data
)
83 rc
= msi_bitmap_alloc(&msi_data
->bitmap
, NR_MSI_IRQS
,
84 msi_data
->irqhost
->of_node
);
88 rc
= msi_bitmap_reserve_dt_hwirqs(&msi_data
->bitmap
);
90 msi_bitmap_free(&msi_data
->bitmap
);
97 static int fsl_msi_check_device(struct pci_dev
*pdev
, int nvec
, int type
)
99 if (type
== PCI_CAP_ID_MSIX
)
100 pr_debug("fslmsi: MSI-X untested, trying anyway.\n");
105 static void fsl_teardown_msi_irqs(struct pci_dev
*pdev
)
107 struct msi_desc
*entry
;
108 struct fsl_msi
*msi_data
;
110 list_for_each_entry(entry
, &pdev
->msi_list
, list
) {
111 if (entry
->irq
== NO_IRQ
)
113 msi_data
= get_irq_data(entry
->irq
);
114 set_irq_msi(entry
->irq
, NULL
);
115 msi_bitmap_free_hwirqs(&msi_data
->bitmap
,
116 virq_to_hw(entry
->irq
), 1);
117 irq_dispose_mapping(entry
->irq
);
123 static void fsl_compose_msi_msg(struct pci_dev
*pdev
, int hwirq
,
125 struct fsl_msi
*fsl_msi_data
)
127 struct fsl_msi
*msi_data
= fsl_msi_data
;
128 struct pci_controller
*hose
= pci_bus_to_host(pdev
->bus
);
129 u64 base
= fsl_pci_immrbar_base(hose
);
131 msg
->address_lo
= msi_data
->msi_addr_lo
+ lower_32_bits(base
);
132 msg
->address_hi
= msi_data
->msi_addr_hi
+ upper_32_bits(base
);
136 pr_debug("%s: allocated srs: %d, ibs: %d\n",
137 __func__
, hwirq
/ IRQS_PER_MSI_REG
, hwirq
% IRQS_PER_MSI_REG
);
140 static int fsl_setup_msi_irqs(struct pci_dev
*pdev
, int nvec
, int type
)
142 int rc
, hwirq
= -ENOMEM
;
144 struct msi_desc
*entry
;
146 struct fsl_msi
*msi_data
;
148 list_for_each_entry(entry
, &pdev
->msi_list
, list
) {
149 list_for_each_entry(msi_data
, &msi_head
, list
) {
150 hwirq
= msi_bitmap_alloc_hwirqs(&msi_data
->bitmap
, 1);
157 pr_debug("%s: fail allocating msi interrupt\n",
162 virq
= irq_create_mapping(msi_data
->irqhost
, hwirq
);
164 if (virq
== NO_IRQ
) {
165 pr_debug("%s: fail mapping hwirq 0x%x\n",
167 msi_bitmap_free_hwirqs(&msi_data
->bitmap
, hwirq
, 1);
171 set_irq_data(virq
, msi_data
);
172 set_irq_msi(virq
, entry
);
174 fsl_compose_msi_msg(pdev
, hwirq
, &msg
, msi_data
);
175 write_msi_msg(virq
, &msg
);
180 /* free by the caller of this function */
184 static void fsl_msi_cascade(unsigned int irq
, struct irq_desc
*desc
)
186 unsigned int cascade_irq
;
187 struct fsl_msi
*msi_data
;
192 struct fsl_msi_cascade_data
*cascade_data
;
194 cascade_data
= (struct fsl_msi_cascade_data
*)get_irq_data(irq
);
195 msi_data
= cascade_data
->msi_data
;
197 raw_spin_lock(&desc
->lock
);
198 if ((msi_data
->feature
& FSL_PIC_IP_MASK
) == FSL_PIC_IP_IPIC
) {
199 if (desc
->chip
->mask_ack
)
200 desc
->chip
->mask_ack(irq
);
202 desc
->chip
->mask(irq
);
203 desc
->chip
->ack(irq
);
207 if (unlikely(desc
->status
& IRQ_INPROGRESS
))
210 msir_index
= cascade_data
->index
;
212 if (msir_index
>= NR_MSI_REG
)
213 cascade_irq
= NO_IRQ
;
215 desc
->status
|= IRQ_INPROGRESS
;
216 switch (msi_data
->feature
& FSL_PIC_IP_MASK
) {
217 case FSL_PIC_IP_MPIC
:
218 msir_value
= fsl_msi_read(msi_data
->msi_regs
,
221 case FSL_PIC_IP_IPIC
:
222 msir_value
= fsl_msi_read(msi_data
->msi_regs
, msir_index
* 0x4);
227 intr_index
= ffs(msir_value
) - 1;
229 cascade_irq
= irq_linear_revmap(msi_data
->irqhost
,
230 msir_index
* IRQS_PER_MSI_REG
+
231 intr_index
+ have_shift
);
232 if (cascade_irq
!= NO_IRQ
)
233 generic_handle_irq(cascade_irq
);
234 have_shift
+= intr_index
+ 1;
235 msir_value
= msir_value
>> (intr_index
+ 1);
237 desc
->status
&= ~IRQ_INPROGRESS
;
239 switch (msi_data
->feature
& FSL_PIC_IP_MASK
) {
240 case FSL_PIC_IP_MPIC
:
241 desc
->chip
->eoi(irq
);
243 case FSL_PIC_IP_IPIC
:
244 if (!(desc
->status
& IRQ_DISABLED
) && desc
->chip
->unmask
)
245 desc
->chip
->unmask(irq
);
249 raw_spin_unlock(&desc
->lock
);
252 static int fsl_of_msi_remove(struct platform_device
*ofdev
)
254 struct fsl_msi
*msi
= ofdev
->dev
.platform_data
;
256 struct fsl_msi_cascade_data
*cascade_data
;
258 if (msi
->list
.prev
!= NULL
)
259 list_del(&msi
->list
);
260 for (i
= 0; i
< NR_MSI_REG
; i
++) {
261 virq
= msi
->msi_virqs
[i
];
262 if (virq
!= NO_IRQ
) {
263 cascade_data
= get_irq_data(virq
);
265 irq_dispose_mapping(virq
);
268 if (msi
->bitmap
.bitmap
)
269 msi_bitmap_free(&msi
->bitmap
);
270 iounmap(msi
->msi_regs
);
276 static int __devinit
fsl_of_msi_probe(struct platform_device
*dev
,
277 const struct of_device_id
*match
)
285 struct fsl_msi_feature
*features
= match
->data
;
286 struct fsl_msi_cascade_data
*cascade_data
= NULL
;
290 printk(KERN_DEBUG
"Setting up Freescale MSI support\n");
292 msi
= kzalloc(sizeof(struct fsl_msi
), GFP_KERNEL
);
294 dev_err(&dev
->dev
, "No memory for MSI structure\n");
297 dev
->dev
.platform_data
= msi
;
299 msi
->irqhost
= irq_alloc_host(dev
->dev
.of_node
, IRQ_HOST_MAP_LINEAR
,
300 NR_MSI_IRQS
, &fsl_msi_host_ops
, 0);
302 if (msi
->irqhost
== NULL
) {
303 dev_err(&dev
->dev
, "No memory for MSI irqhost\n");
308 /* Get the MSI reg base */
309 err
= of_address_to_resource(dev
->dev
.of_node
, 0, &res
);
311 dev_err(&dev
->dev
, "%s resource error!\n",
312 dev
->dev
.of_node
->full_name
);
316 msi
->msi_regs
= ioremap(res
.start
, res
.end
- res
.start
+ 1);
317 if (!msi
->msi_regs
) {
318 dev_err(&dev
->dev
, "ioremap problem failed\n");
322 msi
->feature
= features
->fsl_pic_ip
;
324 msi
->irqhost
->host_data
= msi
;
326 msi
->msi_addr_hi
= 0x0;
327 msi
->msi_addr_lo
= features
->msiir_offset
+ (res
.start
& 0xfffff);
329 rc
= fsl_msi_init_allocator(msi
);
331 dev_err(&dev
->dev
, "Error allocating MSI bitmap\n");
335 p
= of_get_property(dev
->dev
.of_node
, "interrupts", &count
);
337 dev_err(&dev
->dev
, "no interrupts property found on %s\n",
338 dev
->dev
.of_node
->full_name
);
342 if (count
% 8 != 0) {
343 dev_err(&dev
->dev
, "Malformed interrupts property on %s\n",
344 dev
->dev
.of_node
->full_name
);
349 p
= of_get_property(dev
->dev
.of_node
, "msi-available-ranges", &len
);
351 offset
= *p
/ IRQS_PER_MSI_REG
;
353 count
/= sizeof(u32
);
354 for (i
= 0; i
< min(count
/ 2, NR_MSI_REG
); i
++) {
355 virt_msir
= irq_of_parse_and_map(dev
->dev
.of_node
, i
);
356 if (virt_msir
!= NO_IRQ
) {
357 cascade_data
= kzalloc(
358 sizeof(struct fsl_msi_cascade_data
),
362 "No memory for MSI cascade data\n");
366 msi
->msi_virqs
[i
] = virt_msir
;
367 cascade_data
->index
= i
+ offset
;
368 cascade_data
->msi_data
= msi
;
369 set_irq_data(virt_msir
, (void *)cascade_data
);
370 set_irq_chained_handler(virt_msir
, fsl_msi_cascade
);
374 list_add_tail(&msi
->list
, &msi_head
);
376 /* The multiple setting ppc_md.setup_msi_irqs will not harm things */
377 if (!ppc_md
.setup_msi_irqs
) {
378 ppc_md
.setup_msi_irqs
= fsl_setup_msi_irqs
;
379 ppc_md
.teardown_msi_irqs
= fsl_teardown_msi_irqs
;
380 ppc_md
.msi_check_device
= fsl_msi_check_device
;
381 } else if (ppc_md
.setup_msi_irqs
!= fsl_setup_msi_irqs
) {
382 dev_err(&dev
->dev
, "Different MSI driver already installed!\n");
388 fsl_of_msi_remove(dev
);
392 static const struct fsl_msi_feature mpic_msi_feature
= {
393 .fsl_pic_ip
= FSL_PIC_IP_MPIC
,
394 .msiir_offset
= 0x140,
397 static const struct fsl_msi_feature ipic_msi_feature
= {
398 .fsl_pic_ip
= FSL_PIC_IP_IPIC
,
399 .msiir_offset
= 0x38,
402 static const struct of_device_id fsl_of_msi_ids
[] = {
404 .compatible
= "fsl,mpic-msi",
405 .data
= (void *)&mpic_msi_feature
,
408 .compatible
= "fsl,ipic-msi",
409 .data
= (void *)&ipic_msi_feature
,
414 static struct of_platform_driver fsl_of_msi_driver
= {
417 .owner
= THIS_MODULE
,
418 .of_match_table
= fsl_of_msi_ids
,
420 .probe
= fsl_of_msi_probe
,
421 .remove
= fsl_of_msi_remove
,
424 static __init
int fsl_of_msi_init(void)
426 return of_register_platform_driver(&fsl_of_msi_driver
);
429 subsys_initcall(fsl_of_msi_init
);