blob: a8c615692803b67da47f2f8c88ad12d58aa4ad50 [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
92static void crossbar_domain_unmap(struct irq_domain *d, unsigned int irq)
93{
94 irq_hw_number_t hw = irq_get_irq_data(irq)->hwirq;
95
Nishanth Menona35057d2014-06-26 12:40:22 +053096 if (hw > GIC_IRQ_START) {
Sricharan R96ca8482013-12-03 15:57:23 +053097 cb->irq_map[hw - GIC_IRQ_START] = IRQ_FREE;
Nishanth Menona35057d2014-06-26 12:40:22 +053098 cb->write(hw - GIC_IRQ_START, cb->safe_map);
99 }
Sricharan R96ca8482013-12-03 15:57:23 +0530100}
101
102static int crossbar_domain_xlate(struct irq_domain *d,
103 struct device_node *controller,
104 const u32 *intspec, unsigned int intsize,
105 unsigned long *out_hwirq,
106 unsigned int *out_type)
107{
Nishanth Menond4922a92014-06-26 12:40:24 +0530108 int ret;
Sricharan R96ca8482013-12-03 15:57:23 +0530109
Nishanth Menon6f16fc82014-06-26 12:40:20 +0530110 ret = get_prev_map_irq(intspec[1]);
Nishanth Menond4922a92014-06-26 12:40:24 +0530111 if (ret >= 0)
Nishanth Menon6f16fc82014-06-26 12:40:20 +0530112 goto found;
113
Sricharan R96ca8482013-12-03 15:57:23 +0530114 ret = allocate_free_irq(intspec[1]);
115
Nishanth Menond4922a92014-06-26 12:40:24 +0530116 if (ret < 0)
Sricharan R96ca8482013-12-03 15:57:23 +0530117 return ret;
118
Nishanth Menon6f16fc82014-06-26 12:40:20 +0530119found:
Sricharan R96ca8482013-12-03 15:57:23 +0530120 *out_hwirq = ret + GIC_IRQ_START;
121 return 0;
122}
123
Nishanth Menon4dbf45e2014-06-26 12:40:25 +0530124static const struct irq_domain_ops routable_irq_domain_ops = {
Sricharan R96ca8482013-12-03 15:57:23 +0530125 .map = crossbar_domain_map,
126 .unmap = crossbar_domain_unmap,
127 .xlate = crossbar_domain_xlate
128};
129
130static int __init crossbar_of_init(struct device_node *node)
131{
Nishanth Menonedb442d2014-06-26 12:40:27 +0530132 int i, size, max = 0, reserved = 0, entry;
Sricharan R96ca8482013-12-03 15:57:23 +0530133 const __be32 *irqsr;
Nishanth Menonedb442d2014-06-26 12:40:27 +0530134 int ret = -ENOMEM;
Sricharan R96ca8482013-12-03 15:57:23 +0530135
Dan Carpenter3894e9e2014-04-03 10:21:34 +0300136 cb = kzalloc(sizeof(*cb), GFP_KERNEL);
Sricharan R96ca8482013-12-03 15:57:23 +0530137
138 if (!cb)
Nishanth Menonedb442d2014-06-26 12:40:27 +0530139 return ret;
Sricharan R96ca8482013-12-03 15:57:23 +0530140
141 cb->crossbar_base = of_iomap(node, 0);
142 if (!cb->crossbar_base)
Nishanth Menon3c44d512014-06-26 12:40:28 +0530143 goto err_cb;
Sricharan R96ca8482013-12-03 15:57:23 +0530144
145 of_property_read_u32(node, "ti,max-irqs", &max);
Nishanth Menonedb442d2014-06-26 12:40:27 +0530146 if (!max) {
147 pr_err("missing 'ti,max-irqs' property\n");
148 ret = -EINVAL;
Nishanth Menon3c44d512014-06-26 12:40:28 +0530149 goto err_base;
Nishanth Menonedb442d2014-06-26 12:40:27 +0530150 }
Nishanth Menon4dbf45e2014-06-26 12:40:25 +0530151 cb->irq_map = kcalloc(max, sizeof(int), GFP_KERNEL);
Sricharan R96ca8482013-12-03 15:57:23 +0530152 if (!cb->irq_map)
Nishanth Menon3c44d512014-06-26 12:40:28 +0530153 goto err_base;
Sricharan R96ca8482013-12-03 15:57:23 +0530154
155 cb->int_max = max;
156
157 for (i = 0; i < max; i++)
158 cb->irq_map[i] = IRQ_FREE;
159
160 /* Get and mark reserved irqs */
161 irqsr = of_get_property(node, "ti,irqs-reserved", &size);
162 if (irqsr) {
163 size /= sizeof(__be32);
164
165 for (i = 0; i < size; i++) {
166 of_property_read_u32_index(node,
167 "ti,irqs-reserved",
168 i, &entry);
169 if (entry > max) {
170 pr_err("Invalid reserved entry\n");
Nishanth Menonedb442d2014-06-26 12:40:27 +0530171 ret = -EINVAL;
Nishanth Menon3c44d512014-06-26 12:40:28 +0530172 goto err_irq_map;
Sricharan R96ca8482013-12-03 15:57:23 +0530173 }
Nishanth Menon1d50d2c2014-06-26 12:40:19 +0530174 cb->irq_map[entry] = IRQ_RESERVED;
Sricharan R96ca8482013-12-03 15:57:23 +0530175 }
176 }
177
Nishanth Menon64e0f8b2014-06-26 12:40:21 +0530178 /* Skip irqs hardwired to bypass the crossbar */
179 irqsr = of_get_property(node, "ti,irqs-skip", &size);
180 if (irqsr) {
181 size /= sizeof(__be32);
182
183 for (i = 0; i < size; i++) {
184 of_property_read_u32_index(node,
185 "ti,irqs-skip",
186 i, &entry);
187 if (entry > max) {
188 pr_err("Invalid skip entry\n");
189 ret = -EINVAL;
Nishanth Menon3c44d512014-06-26 12:40:28 +0530190 goto err_irq_map;
Nishanth Menon64e0f8b2014-06-26 12:40:21 +0530191 }
192 cb->irq_map[entry] = IRQ_SKIP;
193 }
194 }
195
196
Nishanth Menon4dbf45e2014-06-26 12:40:25 +0530197 cb->register_offsets = kcalloc(max, sizeof(int), GFP_KERNEL);
Sricharan R96ca8482013-12-03 15:57:23 +0530198 if (!cb->register_offsets)
Nishanth Menon3c44d512014-06-26 12:40:28 +0530199 goto err_irq_map;
Sricharan R96ca8482013-12-03 15:57:23 +0530200
201 of_property_read_u32(node, "ti,reg-size", &size);
202
203 switch (size) {
204 case 1:
205 cb->write = crossbar_writeb;
206 break;
207 case 2:
208 cb->write = crossbar_writew;
209 break;
210 case 4:
211 cb->write = crossbar_writel;
212 break;
213 default:
214 pr_err("Invalid reg-size property\n");
Nishanth Menonedb442d2014-06-26 12:40:27 +0530215 ret = -EINVAL;
Nishanth Menon3c44d512014-06-26 12:40:28 +0530216 goto err_reg_offset;
Sricharan R96ca8482013-12-03 15:57:23 +0530217 break;
218 }
219
220 /*
221 * Register offsets are not linear because of the
222 * reserved irqs. so find and store the offsets once.
223 */
224 for (i = 0; i < max; i++) {
Nishanth Menon1d50d2c2014-06-26 12:40:19 +0530225 if (cb->irq_map[i] == IRQ_RESERVED)
Sricharan R96ca8482013-12-03 15:57:23 +0530226 continue;
227
228 cb->register_offsets[i] = reserved;
229 reserved += size;
230 }
231
Nishanth Menona35057d2014-06-26 12:40:22 +0530232 of_property_read_u32(node, "ti,irqs-safe-map", &cb->safe_map);
Nishanth Menona35057d2014-06-26 12:40:22 +0530233 /* Initialize the crossbar with safe map to start with */
234 for (i = 0; i < max; i++) {
235 if (cb->irq_map[i] == IRQ_RESERVED ||
236 cb->irq_map[i] == IRQ_SKIP)
237 continue;
238
239 cb->write(i, cb->safe_map);
240 }
241
Sricharan R96ca8482013-12-03 15:57:23 +0530242 register_routable_domain_ops(&routable_irq_domain_ops);
243 return 0;
244
Nishanth Menon3c44d512014-06-26 12:40:28 +0530245err_reg_offset:
Sricharan R96ca8482013-12-03 15:57:23 +0530246 kfree(cb->register_offsets);
Nishanth Menon3c44d512014-06-26 12:40:28 +0530247err_irq_map:
Sricharan R96ca8482013-12-03 15:57:23 +0530248 kfree(cb->irq_map);
Nishanth Menon3c44d512014-06-26 12:40:28 +0530249err_base:
Sricharan R96ca8482013-12-03 15:57:23 +0530250 iounmap(cb->crossbar_base);
Nishanth Menon3c44d512014-06-26 12:40:28 +0530251err_cb:
Sricharan R96ca8482013-12-03 15:57:23 +0530252 kfree(cb);
Sricharan R99e37d0e2014-06-26 12:40:29 +0530253
254 cb = NULL;
Nishanth Menonedb442d2014-06-26 12:40:27 +0530255 return ret;
Sricharan R96ca8482013-12-03 15:57:23 +0530256}
257
258static const struct of_device_id crossbar_match[] __initconst = {
259 { .compatible = "ti,irq-crossbar" },
260 {}
261};
262
263int __init irqcrossbar_init(void)
264{
265 struct device_node *np;
266 np = of_find_matching_node(NULL, crossbar_match);
267 if (!np)
268 return -ENODEV;
269
270 crossbar_of_init(np);
271 return 0;
272}