2 * Freescale SCFG MSI(-X) support
4 * Copyright (C) 2016 Freescale Semiconductor.
6 * Author: Minghuan Lian <Minghuan.Lian@nxp.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/msi.h>
16 #include <linux/interrupt.h>
17 #include <linux/irq.h>
18 #include <linux/irqchip/chained_irq.h>
19 #include <linux/irqdomain.h>
20 #include <linux/of_irq.h>
21 #include <linux/of_pci.h>
22 #include <linux/of_platform.h>
23 #include <linux/spinlock.h>
24 #include <linux/dma-iommu.h>
26 #define MSI_IRQS_PER_MSIR 32
27 #define MSI_MSIR_OFFSET 4
29 #define MSI_LS1043V1_1_IRQS_PER_MSIR 8
30 #define MSI_LS1043V1_1_MSIR_OFFSET 0x10
32 struct ls_scfg_msi_cfg
{
33 u32 ibs_shift
; /* Shift of interrupt bit select */
34 u32 msir_irqs
; /* The irq number per MSIR */
35 u32 msir_base
; /* The base address of MSIR */
39 struct ls_scfg_msi
*msi_data
;
42 unsigned int bit_start
;
44 unsigned int srs
; /* Shared interrupt register select */
50 struct platform_device
*pdev
;
51 struct irq_domain
*parent
;
52 struct irq_domain
*msi_domain
;
54 phys_addr_t msiir_addr
;
55 struct ls_scfg_msi_cfg
*cfg
;
57 struct ls_scfg_msir
*msir
;
62 static struct irq_chip ls_scfg_msi_irq_chip
= {
64 .irq_mask
= pci_msi_mask_irq
,
65 .irq_unmask
= pci_msi_unmask_irq
,
68 static struct msi_domain_info ls_scfg_msi_domain_info
= {
69 .flags
= (MSI_FLAG_USE_DEF_DOM_OPS
|
70 MSI_FLAG_USE_DEF_CHIP_OPS
|
72 .chip
= &ls_scfg_msi_irq_chip
,
75 static int msi_affinity_flag
= 1;
77 static int __init
early_parse_ls_scfg_msi(char *p
)
79 if (p
&& strncmp(p
, "no-affinity", 11) == 0)
80 msi_affinity_flag
= 0;
82 msi_affinity_flag
= 1;
86 early_param("lsmsi", early_parse_ls_scfg_msi
);
88 static void ls_scfg_msi_compose_msg(struct irq_data
*data
, struct msi_msg
*msg
)
90 struct ls_scfg_msi
*msi_data
= irq_data_get_irq_chip_data(data
);
92 msg
->address_hi
= upper_32_bits(msi_data
->msiir_addr
);
93 msg
->address_lo
= lower_32_bits(msi_data
->msiir_addr
);
94 msg
->data
= data
->hwirq
;
96 if (msi_affinity_flag
) {
97 const struct cpumask
*mask
;
99 mask
= irq_data_get_effective_affinity_mask(data
);
100 msg
->data
|= cpumask_first(mask
);
103 iommu_dma_map_msi_msg(data
->irq
, msg
);
106 static int ls_scfg_msi_set_affinity(struct irq_data
*irq_data
,
107 const struct cpumask
*mask
, bool force
)
109 struct ls_scfg_msi
*msi_data
= irq_data_get_irq_chip_data(irq_data
);
112 if (!msi_affinity_flag
)
116 cpu
= cpumask_any_and(mask
, cpu_online_mask
);
118 cpu
= cpumask_first(mask
);
120 if (cpu
>= msi_data
->msir_num
)
123 if (msi_data
->msir
[cpu
].gic_irq
<= 0) {
124 pr_warn("cannot bind the irq to cpu%d\n", cpu
);
128 irq_data_update_effective_affinity(irq_data
, cpumask_of(cpu
));
130 return IRQ_SET_MASK_OK
;
133 static struct irq_chip ls_scfg_msi_parent_chip
= {
135 .irq_compose_msi_msg
= ls_scfg_msi_compose_msg
,
136 .irq_set_affinity
= ls_scfg_msi_set_affinity
,
139 static int ls_scfg_msi_domain_irq_alloc(struct irq_domain
*domain
,
141 unsigned int nr_irqs
,
144 struct ls_scfg_msi
*msi_data
= domain
->host_data
;
147 WARN_ON(nr_irqs
!= 1);
149 spin_lock(&msi_data
->lock
);
150 pos
= find_first_zero_bit(msi_data
->used
, msi_data
->irqs_num
);
151 if (pos
< msi_data
->irqs_num
)
152 __set_bit(pos
, msi_data
->used
);
155 spin_unlock(&msi_data
->lock
);
160 irq_domain_set_info(domain
, virq
, pos
,
161 &ls_scfg_msi_parent_chip
, msi_data
,
162 handle_simple_irq
, NULL
, NULL
);
167 static void ls_scfg_msi_domain_irq_free(struct irq_domain
*domain
,
168 unsigned int virq
, unsigned int nr_irqs
)
170 struct irq_data
*d
= irq_domain_get_irq_data(domain
, virq
);
171 struct ls_scfg_msi
*msi_data
= irq_data_get_irq_chip_data(d
);
175 if (pos
< 0 || pos
>= msi_data
->irqs_num
) {
176 pr_err("failed to teardown msi. Invalid hwirq %d\n", pos
);
180 spin_lock(&msi_data
->lock
);
181 __clear_bit(pos
, msi_data
->used
);
182 spin_unlock(&msi_data
->lock
);
185 static const struct irq_domain_ops ls_scfg_msi_domain_ops
= {
186 .alloc
= ls_scfg_msi_domain_irq_alloc
,
187 .free
= ls_scfg_msi_domain_irq_free
,
190 static void ls_scfg_msi_irq_handler(struct irq_desc
*desc
)
192 struct ls_scfg_msir
*msir
= irq_desc_get_handler_data(desc
);
193 struct ls_scfg_msi
*msi_data
= msir
->msi_data
;
195 int pos
, size
, virq
, hwirq
;
197 chained_irq_enter(irq_desc_get_chip(desc
), desc
);
199 val
= ioread32be(msir
->reg
);
201 pos
= msir
->bit_start
;
202 size
= msir
->bit_end
+ 1;
204 for_each_set_bit_from(pos
, &val
, size
) {
205 hwirq
= ((msir
->bit_end
- pos
) << msi_data
->cfg
->ibs_shift
) |
207 virq
= irq_find_mapping(msi_data
->parent
, hwirq
);
209 generic_handle_irq(virq
);
212 chained_irq_exit(irq_desc_get_chip(desc
), desc
);
215 static int ls_scfg_msi_domains_init(struct ls_scfg_msi
*msi_data
)
217 /* Initialize MSI domain parent */
218 msi_data
->parent
= irq_domain_add_linear(NULL
,
220 &ls_scfg_msi_domain_ops
,
222 if (!msi_data
->parent
) {
223 dev_err(&msi_data
->pdev
->dev
, "failed to create IRQ domain\n");
227 msi_data
->msi_domain
= pci_msi_create_irq_domain(
228 of_node_to_fwnode(msi_data
->pdev
->dev
.of_node
),
229 &ls_scfg_msi_domain_info
,
231 if (!msi_data
->msi_domain
) {
232 dev_err(&msi_data
->pdev
->dev
, "failed to create MSI domain\n");
233 irq_domain_remove(msi_data
->parent
);
240 static int ls_scfg_msi_setup_hwirq(struct ls_scfg_msi
*msi_data
, int index
)
242 struct ls_scfg_msir
*msir
;
245 virq
= platform_get_irq(msi_data
->pdev
, index
);
249 msir
= &msi_data
->msir
[index
];
251 msir
->msi_data
= msi_data
;
252 msir
->gic_irq
= virq
;
253 msir
->reg
= msi_data
->regs
+ msi_data
->cfg
->msir_base
+ 4 * index
;
255 if (msi_data
->cfg
->msir_irqs
== MSI_LS1043V1_1_IRQS_PER_MSIR
) {
256 msir
->bit_start
= 32 - ((msir
->index
+ 1) *
257 MSI_LS1043V1_1_IRQS_PER_MSIR
);
258 msir
->bit_end
= msir
->bit_start
+
259 MSI_LS1043V1_1_IRQS_PER_MSIR
- 1;
262 msir
->bit_end
= msi_data
->cfg
->msir_irqs
- 1;
265 irq_set_chained_handler_and_data(msir
->gic_irq
,
266 ls_scfg_msi_irq_handler
,
269 if (msi_affinity_flag
) {
270 /* Associate MSIR interrupt to the cpu */
271 irq_set_affinity(msir
->gic_irq
, get_cpu_mask(index
));
272 msir
->srs
= 0; /* This value is determined by the CPU */
276 /* Release the hwirqs corresponding to this MSIR */
277 if (!msi_affinity_flag
|| msir
->index
== 0) {
278 for (i
= 0; i
< msi_data
->cfg
->msir_irqs
; i
++) {
279 hwirq
= i
<< msi_data
->cfg
->ibs_shift
| msir
->index
;
280 bitmap_clear(msi_data
->used
, hwirq
, 1);
287 static int ls_scfg_msi_teardown_hwirq(struct ls_scfg_msir
*msir
)
289 struct ls_scfg_msi
*msi_data
= msir
->msi_data
;
292 if (msir
->gic_irq
> 0)
293 irq_set_chained_handler_and_data(msir
->gic_irq
, NULL
, NULL
);
295 for (i
= 0; i
< msi_data
->cfg
->msir_irqs
; i
++) {
296 hwirq
= i
<< msi_data
->cfg
->ibs_shift
| msir
->index
;
297 bitmap_set(msi_data
->used
, hwirq
, 1);
303 static struct ls_scfg_msi_cfg ls1021_msi_cfg
= {
305 .msir_irqs
= MSI_IRQS_PER_MSIR
,
306 .msir_base
= MSI_MSIR_OFFSET
,
309 static struct ls_scfg_msi_cfg ls1046_msi_cfg
= {
311 .msir_irqs
= MSI_IRQS_PER_MSIR
,
312 .msir_base
= MSI_MSIR_OFFSET
,
315 static struct ls_scfg_msi_cfg ls1043_v1_1_msi_cfg
= {
317 .msir_irqs
= MSI_LS1043V1_1_IRQS_PER_MSIR
,
318 .msir_base
= MSI_LS1043V1_1_MSIR_OFFSET
,
321 static const struct of_device_id ls_scfg_msi_id
[] = {
322 /* The following two misspelled compatibles are obsolete */
323 { .compatible
= "fsl,1s1021a-msi", .data
= &ls1021_msi_cfg
},
324 { .compatible
= "fsl,1s1043a-msi", .data
= &ls1021_msi_cfg
},
326 { .compatible
= "fsl,ls1012a-msi", .data
= &ls1021_msi_cfg
},
327 { .compatible
= "fsl,ls1021a-msi", .data
= &ls1021_msi_cfg
},
328 { .compatible
= "fsl,ls1043a-msi", .data
= &ls1021_msi_cfg
},
329 { .compatible
= "fsl,ls1043a-v1.1-msi", .data
= &ls1043_v1_1_msi_cfg
},
330 { .compatible
= "fsl,ls1046a-msi", .data
= &ls1046_msi_cfg
},
333 MODULE_DEVICE_TABLE(of
, ls_scfg_msi_id
);
335 static int ls_scfg_msi_probe(struct platform_device
*pdev
)
337 const struct of_device_id
*match
;
338 struct ls_scfg_msi
*msi_data
;
339 struct resource
*res
;
342 match
= of_match_device(ls_scfg_msi_id
, &pdev
->dev
);
346 msi_data
= devm_kzalloc(&pdev
->dev
, sizeof(*msi_data
), GFP_KERNEL
);
350 msi_data
->cfg
= (struct ls_scfg_msi_cfg
*) match
->data
;
352 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
353 msi_data
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
354 if (IS_ERR(msi_data
->regs
)) {
355 dev_err(&pdev
->dev
, "failed to initialize 'regs'\n");
356 return PTR_ERR(msi_data
->regs
);
358 msi_data
->msiir_addr
= res
->start
;
360 msi_data
->pdev
= pdev
;
361 spin_lock_init(&msi_data
->lock
);
363 msi_data
->irqs_num
= MSI_IRQS_PER_MSIR
*
364 (1 << msi_data
->cfg
->ibs_shift
);
365 msi_data
->used
= devm_kcalloc(&pdev
->dev
,
366 BITS_TO_LONGS(msi_data
->irqs_num
),
367 sizeof(*msi_data
->used
),
372 * Reserve all the hwirqs
373 * The available hwirqs will be released in ls1_msi_setup_hwirq()
375 bitmap_set(msi_data
->used
, 0, msi_data
->irqs_num
);
377 msi_data
->msir_num
= of_irq_count(pdev
->dev
.of_node
);
379 if (msi_affinity_flag
) {
382 cpu_num
= num_possible_cpus();
383 if (msi_data
->msir_num
>= cpu_num
)
384 msi_data
->msir_num
= cpu_num
;
386 msi_affinity_flag
= 0;
389 msi_data
->msir
= devm_kcalloc(&pdev
->dev
, msi_data
->msir_num
,
390 sizeof(*msi_data
->msir
),
395 for (i
= 0; i
< msi_data
->msir_num
; i
++)
396 ls_scfg_msi_setup_hwirq(msi_data
, i
);
398 ret
= ls_scfg_msi_domains_init(msi_data
);
402 platform_set_drvdata(pdev
, msi_data
);
407 static int ls_scfg_msi_remove(struct platform_device
*pdev
)
409 struct ls_scfg_msi
*msi_data
= platform_get_drvdata(pdev
);
412 for (i
= 0; i
< msi_data
->msir_num
; i
++)
413 ls_scfg_msi_teardown_hwirq(&msi_data
->msir
[i
]);
415 irq_domain_remove(msi_data
->msi_domain
);
416 irq_domain_remove(msi_data
->parent
);
418 platform_set_drvdata(pdev
, NULL
);
423 static struct platform_driver ls_scfg_msi_driver
= {
425 .name
= "ls-scfg-msi",
426 .of_match_table
= ls_scfg_msi_id
,
428 .probe
= ls_scfg_msi_probe
,
429 .remove
= ls_scfg_msi_remove
,
432 module_platform_driver(ls_scfg_msi_driver
);
434 MODULE_AUTHOR("Minghuan Lian <Minghuan.Lian@nxp.com>");
435 MODULE_DESCRIPTION("Freescale Layerscape SCFG MSI controller driver");
436 MODULE_LICENSE("GPL v2");