blob: 518d712c475a3902dad91826dfbc81a6f04a5dd1 [file] [log] [blame]
Sricharan R96ca8482013-12-03 15:57:23 +05301/*
2 * drivers/irqchip/irq-crossbar.c
3 *
4 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com
5 * Author: Sricharan R <r.sricharan@ti.com>
6 *
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.
10 *
11 */
12#include <linux/err.h>
13#include <linux/io.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>
Nishanth Menon4dbf45e2014-06-26 12:40:25 +053018#include <linux/irqchip/irq-crossbar.h>
Sricharan R96ca8482013-12-03 15:57:23 +053019
20#define IRQ_FREE -1
Nishanth Menon1d50d2c2014-06-26 12:40:19 +053021#define IRQ_RESERVED -2
Nishanth Menon64e0f8b2014-06-26 12:40:21 +053022#define IRQ_SKIP -3
Sricharan R96ca8482013-12-03 15:57:23 +053023#define GIC_IRQ_START 32
24
Nishanth Menone30ef8a2014-06-26 12:40:26 +053025/**
26 * struct crossbar_device - crossbar device description
Sricharan R96ca8482013-12-03 15:57:23 +053027 * @int_max: maximum number of supported interrupts
Nishanth Menona35057d2014-06-26 12:40:22 +053028 * @safe_map: safe default value to initialize the crossbar
Sricharan R96ca8482013-12-03 15:57:23 +053029 * @irq_map: array of interrupts to crossbar number mapping
30 * @crossbar_base: crossbar base address
31 * @register_offsets: offsets for each irq number
Nishanth Menone30ef8a2014-06-26 12:40:26 +053032 * @write: register write function pointer
Sricharan R96ca8482013-12-03 15:57:23 +053033 */
34struct crossbar_device {
35 uint int_max;
Nishanth Menona35057d2014-06-26 12:40:22 +053036 uint safe_map;
Sricharan R96ca8482013-12-03 15:57:23 +053037 uint *irq_map;
38 void __iomem *crossbar_base;
39 int *register_offsets;
Nishanth Menona35057d2014-06-26 12:40:22 +053040 void (*write)(int, int);
Sricharan R96ca8482013-12-03 15:57:23 +053041};
42
43static struct crossbar_device *cb;
44
45static inline void crossbar_writel(int irq_no, int cb_no)
46{
47 writel(cb_no, cb->crossbar_base + cb->register_offsets[irq_no]);
48}
49
50static inline void crossbar_writew(int irq_no, int cb_no)
51{
52 writew(cb_no, cb->crossbar_base + cb->register_offsets[irq_no]);
53}
54
55static inline void crossbar_writeb(int irq_no, int cb_no)
56{
57 writeb(cb_no, cb->crossbar_base + cb->register_offsets[irq_no]);
58}
59
Nishanth Menon6f16fc82014-06-26 12:40:20 +053060static inline int get_prev_map_irq(int cb_no)
61{
62 int i;
63
Nishanth Menonddee0fb2014-06-26 12:40:23 +053064 for (i = cb->int_max - 1; i >= 0; i--)
Nishanth Menon6f16fc82014-06-26 12:40:20 +053065 if (cb->irq_map[i] == cb_no)
66 return i;
67
68 return -ENODEV;
69}
70
Sricharan R96ca8482013-12-03 15:57:23 +053071static inline int allocate_free_irq(int cb_no)
72{
73 int i;
74
Nishanth Menonddee0fb2014-06-26 12:40:23 +053075 for (i = cb->int_max - 1; i >= 0; i--) {
Sricharan R96ca8482013-12-03 15:57:23 +053076 if (cb->irq_map[i] == IRQ_FREE) {
77 cb->irq_map[i] = cb_no;
78 return i;
79 }
80 }
81
82 return -ENODEV;
83}
84
85static int crossbar_domain_map(struct irq_domain *d, unsigned int irq,
86 irq_hw_number_t hw)
87{
88 cb->write(hw - GIC_IRQ_START, cb->irq_map[hw - GIC_IRQ_START]);
89 return 0;
90}
91
Sricharan R8b09a452014-06-26 12:40:30 +053092/**
93 * crossbar_domain_unmap - unmap a crossbar<->irq connection
94 * @d: domain of irq to unmap
95 * @irq: virq number
96 *
97 * We do not maintain a use count of total number of map/unmap
98 * calls for a particular irq to find out if a irq can be really
99 * unmapped. This is because unmap is called during irq_dispose_mapping(irq),
100 * after which irq is anyways unusable. So an explicit map has to be called
101 * after that.
102 */
Sricharan R96ca8482013-12-03 15:57:23 +0530103static void crossbar_domain_unmap(struct irq_domain *d, unsigned int irq)
104{
105 irq_hw_number_t hw = irq_get_irq_data(irq)->hwirq;
106
Nishanth Menona35057d2014-06-26 12:40:22 +0530107 if (hw > GIC_IRQ_START) {
Sricharan R96ca8482013-12-03 15:57:23 +0530108 cb->irq_map[hw - GIC_IRQ_START] = IRQ_FREE;
Nishanth Menona35057d2014-06-26 12:40:22 +0530109 cb->write(hw - GIC_IRQ_START, cb->safe_map);
110 }
Sricharan R96ca8482013-12-03 15:57:23 +0530111}
112
113static int crossbar_domain_xlate(struct irq_domain *d,
114 struct device_node *controller,
115 const u32 *intspec, unsigned int intsize,
116 unsigned long *out_hwirq,
117 unsigned int *out_type)
118{
Nishanth Menond4922a92014-06-26 12:40:24 +0530119 int ret;
Sricharan R96ca8482013-12-03 15:57:23 +0530120
Nishanth Menon6f16fc82014-06-26 12:40:20 +0530121 ret = get_prev_map_irq(intspec[1]);
Nishanth Menond4922a92014-06-26 12:40:24 +0530122 if (ret >= 0)
Nishanth Menon6f16fc82014-06-26 12:40:20 +0530123 goto found;
124
Sricharan R96ca8482013-12-03 15:57:23 +0530125 ret = allocate_free_irq(intspec[1]);
126
Nishanth Menond4922a92014-06-26 12:40:24 +0530127 if (ret < 0)
Sricharan R96ca8482013-12-03 15:57:23 +0530128 return ret;
129
Nishanth Menon6f16fc82014-06-26 12:40:20 +0530130found:
Sricharan R96ca8482013-12-03 15:57:23 +0530131 *out_hwirq = ret + GIC_IRQ_START;
132 return 0;
133}
134
Nishanth Menon4dbf45e2014-06-26 12:40:25 +0530135static const struct irq_domain_ops routable_irq_domain_ops = {
Sricharan R96ca8482013-12-03 15:57:23 +0530136 .map = crossbar_domain_map,
137 .unmap = crossbar_domain_unmap,
138 .xlate = crossbar_domain_xlate
139};
140
141static int __init crossbar_of_init(struct device_node *node)
142{
Nishanth Menonedb442d2014-06-26 12:40:27 +0530143 int i, size, max = 0, reserved = 0, entry;
Sricharan R96ca8482013-12-03 15:57:23 +0530144 const __be32 *irqsr;
Nishanth Menonedb442d2014-06-26 12:40:27 +0530145 int ret = -ENOMEM;
Sricharan R96ca8482013-12-03 15:57:23 +0530146
Dan Carpenter3894e9e2014-04-03 10:21:34 +0300147 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Sricharan R96ca8482013-12-03 15:57:23 +0530148
149 if (!cb)
Nishanth Menonedb442d2014-06-26 12:40:27 +0530150 return ret;
Sricharan R96ca8482013-12-03 15:57:23 +0530151
152 cb->crossbar_base = of_iomap(node, 0);
153 if (!cb->crossbar_base)
Nishanth Menon3c44d512014-06-26 12:40:28 +0530154 goto err_cb;
Sricharan R96ca8482013-12-03 15:57:23 +0530155
156 of_property_read_u32(node, "ti,max-irqs", &max);
Nishanth Menonedb442d2014-06-26 12:40:27 +0530157 if (!max) {
158 pr_err("missing 'ti,max-irqs' property\n");
159 ret = -EINVAL;
Nishanth Menon3c44d512014-06-26 12:40:28 +0530160 goto err_base;
Nishanth Menonedb442d2014-06-26 12:40:27 +0530161 }
Nishanth Menon4dbf45e2014-06-26 12:40:25 +0530162 cb->irq_map = kcalloc(max, sizeof(int), GFP_KERNEL);
Sricharan R96ca8482013-12-03 15:57:23 +0530163 if (!cb->irq_map)
Nishanth Menon3c44d512014-06-26 12:40:28 +0530164 goto err_base;
Sricharan R96ca8482013-12-03 15:57:23 +0530165
166 cb->int_max = max;
167
168 for (i = 0; i < max; i++)
169 cb->irq_map[i] = IRQ_FREE;
170
171 /* Get and mark reserved irqs */
172 irqsr = of_get_property(node, "ti,irqs-reserved", &size);
173 if (irqsr) {
174 size /= sizeof(__be32);
175
176 for (i = 0; i < size; i++) {
177 of_property_read_u32_index(node,
178 "ti,irqs-reserved",
179 i, &entry);
180 if (entry > max) {
181 pr_err("Invalid reserved entry\n");
Nishanth Menonedb442d2014-06-26 12:40:27 +0530182 ret = -EINVAL;
Nishanth Menon3c44d512014-06-26 12:40:28 +0530183 goto err_irq_map;
Sricharan R96ca8482013-12-03 15:57:23 +0530184 }
Nishanth Menon1d50d2c2014-06-26 12:40:19 +0530185 cb->irq_map[entry] = IRQ_RESERVED;
Sricharan R96ca8482013-12-03 15:57:23 +0530186 }
187 }
188
Nishanth Menon64e0f8b2014-06-26 12:40:21 +0530189 /* Skip irqs hardwired to bypass the crossbar */
190 irqsr = of_get_property(node, "ti,irqs-skip", &size);
191 if (irqsr) {
192 size /= sizeof(__be32);
193
194 for (i = 0; i < size; i++) {
195 of_property_read_u32_index(node,
196 "ti,irqs-skip",
197 i, &entry);
198 if (entry > max) {
199 pr_err("Invalid skip entry\n");
200 ret = -EINVAL;
Nishanth Menon3c44d512014-06-26 12:40:28 +0530201 goto err_irq_map;
Nishanth Menon64e0f8b2014-06-26 12:40:21 +0530202 }
203 cb->irq_map[entry] = IRQ_SKIP;
204 }
205 }
206
207
Nishanth Menon4dbf45e2014-06-26 12:40:25 +0530208 cb->register_offsets = kcalloc(max, sizeof(int), GFP_KERNEL);
Sricharan R96ca8482013-12-03 15:57:23 +0530209 if (!cb->register_offsets)
Nishanth Menon3c44d512014-06-26 12:40:28 +0530210 goto err_irq_map;
Sricharan R96ca8482013-12-03 15:57:23 +0530211
212 of_property_read_u32(node, "ti,reg-size", &size);
213
214 switch (size) {
215 case 1:
216 cb->write = crossbar_writeb;
217 break;
218 case 2:
219 cb->write = crossbar_writew;
220 break;
221 case 4:
222 cb->write = crossbar_writel;
223 break;
224 default:
225 pr_err("Invalid reg-size property\n");
Nishanth Menonedb442d2014-06-26 12:40:27 +0530226 ret = -EINVAL;
Nishanth Menon3c44d512014-06-26 12:40:28 +0530227 goto err_reg_offset;
Sricharan R96ca8482013-12-03 15:57:23 +0530228 break;
229 }
230
231 /*
232 * Register offsets are not linear because of the
233 * reserved irqs. so find and store the offsets once.
234 */
235 for (i = 0; i < max; i++) {
Nishanth Menon1d50d2c2014-06-26 12:40:19 +0530236 if (cb->irq_map[i] == IRQ_RESERVED)
Sricharan R96ca8482013-12-03 15:57:23 +0530237 continue;
238
239 cb->register_offsets[i] = reserved;
240 reserved += size;
241 }
242
Nishanth Menona35057d2014-06-26 12:40:22 +0530243 of_property_read_u32(node, "ti,irqs-safe-map", &cb->safe_map);
Nishanth Menona35057d2014-06-26 12:40:22 +0530244 /* Initialize the crossbar with safe map to start with */
245 for (i = 0; i < max; i++) {
246 if (cb->irq_map[i] == IRQ_RESERVED ||
247 cb->irq_map[i] == IRQ_SKIP)
248 continue;
249
250 cb->write(i, cb->safe_map);
251 }
252
Sricharan R96ca8482013-12-03 15:57:23 +0530253 register_routable_domain_ops(&routable_irq_domain_ops);
254 return 0;
255
Nishanth Menon3c44d512014-06-26 12:40:28 +0530256err_reg_offset:
Sricharan R96ca8482013-12-03 15:57:23 +0530257 kfree(cb->register_offsets);
Nishanth Menon3c44d512014-06-26 12:40:28 +0530258err_irq_map:
Sricharan R96ca8482013-12-03 15:57:23 +0530259 kfree(cb->irq_map);
Nishanth Menon3c44d512014-06-26 12:40:28 +0530260err_base:
Sricharan R96ca8482013-12-03 15:57:23 +0530261 iounmap(cb->crossbar_base);
Nishanth Menon3c44d512014-06-26 12:40:28 +0530262err_cb:
Sricharan R96ca8482013-12-03 15:57:23 +0530263 kfree(cb);
Sricharan R99e37d0e2014-06-26 12:40:29 +0530264
265 cb = NULL;
Nishanth Menonedb442d2014-06-26 12:40:27 +0530266 return ret;
Sricharan R96ca8482013-12-03 15:57:23 +0530267}
268
269static const struct of_device_id crossbar_match[] __initconst = {
270 { .compatible = "ti,irq-crossbar" },
271 {}
272};
273
274int __init irqcrossbar_init(void)
275{
276 struct device_node *np;
277 np = of_find_matching_node(NULL, crossbar_match);
278 if (!np)
279 return -ENODEV;
280
281 crossbar_of_init(np);
282 return 0;
283}