2 * drivers/irqchip/irq-crossbar.c
4 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/err.h>
14 #include <linux/of_address.h>
15 #include <linux/of_irq.h>
16 #include <linux/slab.h>
17 #include <linux/irqchip/arm-gic.h>
20 #define GIC_IRQ_START 32
23 * @int_max: maximum number of supported interrupts
24 * @irq_map: array of interrupts to crossbar number mapping
25 * @crossbar_base: crossbar base address
26 * @register_offsets: offsets for each irq number
28 struct crossbar_device {
31 void __iomem *crossbar_base;
32 int *register_offsets;
33 void (*write) (int, int);
36 static struct crossbar_device *cb;
38 static inline void crossbar_writel(int irq_no, int cb_no)
40 writel(cb_no, cb->crossbar_base + cb->register_offsets[irq_no]);
43 static inline void crossbar_writew(int irq_no, int cb_no)
45 writew(cb_no, cb->crossbar_base + cb->register_offsets[irq_no]);
48 static inline void crossbar_writeb(int irq_no, int cb_no)
50 writeb(cb_no, cb->crossbar_base + cb->register_offsets[irq_no]);
53 static inline int allocate_free_irq(int cb_no)
57 for (i = 0; i < cb->int_max; i++) {
58 if (cb->irq_map[i] == IRQ_FREE) {
59 cb->irq_map[i] = cb_no;
67 static int crossbar_domain_map(struct irq_domain *d, unsigned int irq,
70 cb->write(hw - GIC_IRQ_START, cb->irq_map[hw - GIC_IRQ_START]);
74 static void crossbar_domain_unmap(struct irq_domain *d, unsigned int irq)
76 irq_hw_number_t hw = irq_get_irq_data(irq)->hwirq;
78 if (hw > GIC_IRQ_START)
79 cb->irq_map[hw - GIC_IRQ_START] = IRQ_FREE;
82 static int crossbar_domain_xlate(struct irq_domain *d,
83 struct device_node *controller,
84 const u32 *intspec, unsigned int intsize,
85 unsigned long *out_hwirq,
86 unsigned int *out_type)
90 ret = allocate_free_irq(intspec[1]);
92 if (IS_ERR_VALUE(ret))
95 *out_hwirq = ret + GIC_IRQ_START;
99 const struct irq_domain_ops routable_irq_domain_ops = {
100 .map = crossbar_domain_map,
101 .unmap = crossbar_domain_unmap,
102 .xlate = crossbar_domain_xlate
105 static int __init crossbar_of_init(struct device_node *node)
107 int i, size, max, reserved = 0, entry;
110 cb = kzalloc(sizeof(struct cb_device *), GFP_KERNEL);
115 cb->crossbar_base = of_iomap(node, 0);
116 if (!cb->crossbar_base)
119 of_property_read_u32(node, "ti,max-irqs", &max);
120 cb->irq_map = kzalloc(max * sizeof(int), GFP_KERNEL);
126 for (i = 0; i < max; i++)
127 cb->irq_map[i] = IRQ_FREE;
129 /* Get and mark reserved irqs */
130 irqsr = of_get_property(node, "ti,irqs-reserved", &size);
132 size /= sizeof(__be32);
134 for (i = 0; i < size; i++) {
135 of_property_read_u32_index(node,
139 pr_err("Invalid reserved entry\n");
142 cb->irq_map[entry] = 0;
146 cb->register_offsets = kzalloc(max * sizeof(int), GFP_KERNEL);
147 if (!cb->register_offsets)
150 of_property_read_u32(node, "ti,reg-size", &size);
154 cb->write = crossbar_writeb;
157 cb->write = crossbar_writew;
160 cb->write = crossbar_writel;
163 pr_err("Invalid reg-size property\n");
169 * Register offsets are not linear because of the
170 * reserved irqs. so find and store the offsets once.
172 for (i = 0; i < max; i++) {
176 cb->register_offsets[i] = reserved;
180 register_routable_domain_ops(&routable_irq_domain_ops);
184 kfree(cb->register_offsets);
188 iounmap(cb->crossbar_base);
194 static const struct of_device_id crossbar_match[] __initconst = {
195 { .compatible = "ti,irq-crossbar" },
199 int __init irqcrossbar_init(void)
201 struct device_node *np;
202 np = of_find_matching_node(NULL, crossbar_match);
206 crossbar_of_init(np);