Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 1 | /* |
| 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> |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 14 | #include <linux/irqdomain.h> |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 15 | #include <linux/of_address.h> |
| 16 | #include <linux/of_irq.h> |
| 17 | #include <linux/slab.h> |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 18 | |
| 19 | #include "irqchip.h" |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 20 | |
| 21 | #define IRQ_FREE -1 |
Nishanth Menon | 1d50d2c | 2014-06-26 12:40:19 +0530 | [diff] [blame] | 22 | #define IRQ_RESERVED -2 |
Nishanth Menon | 64e0f8b | 2014-06-26 12:40:21 +0530 | [diff] [blame] | 23 | #define IRQ_SKIP -3 |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 24 | #define GIC_IRQ_START 32 |
| 25 | |
Nishanth Menon | e30ef8a | 2014-06-26 12:40:26 +0530 | [diff] [blame] | 26 | /** |
| 27 | * struct crossbar_device - crossbar device description |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 28 | * @lock: spinlock serializing access to @irq_map |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 29 | * @int_max: maximum number of supported interrupts |
Nishanth Menon | a35057d | 2014-06-26 12:40:22 +0530 | [diff] [blame] | 30 | * @safe_map: safe default value to initialize the crossbar |
Nishanth Menon | 2f7d2fb | 2014-06-26 12:40:31 +0530 | [diff] [blame] | 31 | * @max_crossbar_sources: Maximum number of crossbar sources |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 32 | * @irq_map: array of interrupts to crossbar number mapping |
| 33 | * @crossbar_base: crossbar base address |
| 34 | * @register_offsets: offsets for each irq number |
Nishanth Menon | e30ef8a | 2014-06-26 12:40:26 +0530 | [diff] [blame] | 35 | * @write: register write function pointer |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 36 | */ |
| 37 | struct crossbar_device { |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 38 | raw_spinlock_t lock; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 39 | uint int_max; |
Nishanth Menon | a35057d | 2014-06-26 12:40:22 +0530 | [diff] [blame] | 40 | uint safe_map; |
Nishanth Menon | 2f7d2fb | 2014-06-26 12:40:31 +0530 | [diff] [blame] | 41 | uint max_crossbar_sources; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 42 | uint *irq_map; |
| 43 | void __iomem *crossbar_base; |
| 44 | int *register_offsets; |
Nishanth Menon | a35057d | 2014-06-26 12:40:22 +0530 | [diff] [blame] | 45 | void (*write)(int, int); |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 46 | }; |
| 47 | |
| 48 | static struct crossbar_device *cb; |
| 49 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 50 | static void crossbar_writel(int irq_no, int cb_no) |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 51 | { |
| 52 | writel(cb_no, cb->crossbar_base + cb->register_offsets[irq_no]); |
| 53 | } |
| 54 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 55 | static void crossbar_writew(int irq_no, int cb_no) |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 56 | { |
| 57 | writew(cb_no, cb->crossbar_base + cb->register_offsets[irq_no]); |
| 58 | } |
| 59 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 60 | static void crossbar_writeb(int irq_no, int cb_no) |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 61 | { |
| 62 | writeb(cb_no, cb->crossbar_base + cb->register_offsets[irq_no]); |
| 63 | } |
| 64 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 65 | static struct irq_chip crossbar_chip = { |
| 66 | .name = "CBAR", |
| 67 | .irq_eoi = irq_chip_eoi_parent, |
| 68 | .irq_mask = irq_chip_mask_parent, |
| 69 | .irq_unmask = irq_chip_unmask_parent, |
| 70 | .irq_retrigger = irq_chip_retrigger_hierarchy, |
Grygorii Strashko | e269ec4 | 2015-08-14 15:20:27 +0300 | [diff] [blame] | 71 | .irq_set_type = irq_chip_set_type_parent, |
Grygorii Strashko | 8200fe4 | 2015-08-14 15:20:30 +0300 | [diff] [blame] | 72 | .flags = IRQCHIP_MASK_ON_SUSPEND | |
| 73 | IRQCHIP_SKIP_SET_WAKE, |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 74 | #ifdef CONFIG_SMP |
| 75 | .irq_set_affinity = irq_chip_set_affinity_parent, |
| 76 | #endif |
| 77 | }; |
| 78 | |
| 79 | static int allocate_gic_irq(struct irq_domain *domain, unsigned virq, |
| 80 | irq_hw_number_t hwirq) |
Nishanth Menon | 6f16fc8 | 2014-06-26 12:40:20 +0530 | [diff] [blame] | 81 | { |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 82 | struct of_phandle_args args; |
Nishanth Menon | 6f16fc8 | 2014-06-26 12:40:20 +0530 | [diff] [blame] | 83 | int i; |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 84 | int err; |
Nishanth Menon | 6f16fc8 | 2014-06-26 12:40:20 +0530 | [diff] [blame] | 85 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 86 | raw_spin_lock(&cb->lock); |
Nishanth Menon | ddee0fb | 2014-06-26 12:40:23 +0530 | [diff] [blame] | 87 | for (i = cb->int_max - 1; i >= 0; i--) { |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 88 | if (cb->irq_map[i] == IRQ_FREE) { |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 89 | cb->irq_map[i] = hwirq; |
| 90 | break; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 91 | } |
| 92 | } |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 93 | raw_spin_unlock(&cb->lock); |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 94 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 95 | if (i < 0) |
| 96 | return -ENODEV; |
| 97 | |
| 98 | args.np = domain->parent->of_node; |
| 99 | args.args_count = 3; |
| 100 | args.args[0] = 0; /* SPI */ |
| 101 | args.args[1] = i; |
| 102 | args.args[2] = IRQ_TYPE_LEVEL_HIGH; |
| 103 | |
| 104 | err = irq_domain_alloc_irqs_parent(domain, virq, 1, &args); |
| 105 | if (err) |
| 106 | cb->irq_map[i] = IRQ_FREE; |
| 107 | else |
| 108 | cb->write(i, hwirq); |
| 109 | |
| 110 | return err; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 111 | } |
| 112 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 113 | static int crossbar_domain_alloc(struct irq_domain *d, unsigned int virq, |
| 114 | unsigned int nr_irqs, void *data) |
Nishanth Menon | 29918b6 | 2014-06-26 12:40:32 +0530 | [diff] [blame] | 115 | { |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 116 | struct of_phandle_args *args = data; |
| 117 | irq_hw_number_t hwirq; |
| 118 | int i; |
Nishanth Menon | d360892 | 2014-06-26 12:40:34 +0530 | [diff] [blame] | 119 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 120 | if (args->args_count != 3) |
| 121 | return -EINVAL; /* Not GIC compliant */ |
| 122 | if (args->args[0] != 0) |
| 123 | return -EINVAL; /* No PPI should point to this domain */ |
| 124 | |
| 125 | hwirq = args->args[1]; |
| 126 | if ((hwirq + nr_irqs) > cb->max_crossbar_sources) |
| 127 | return -EINVAL; /* Can't deal with this */ |
| 128 | |
| 129 | for (i = 0; i < nr_irqs; i++) { |
| 130 | int err = allocate_gic_irq(d, virq + i, hwirq + i); |
| 131 | |
| 132 | if (err) |
| 133 | return err; |
| 134 | |
| 135 | irq_domain_set_hwirq_and_chip(d, virq + i, hwirq + i, |
| 136 | &crossbar_chip, NULL); |
Nishanth Menon | d360892 | 2014-06-26 12:40:34 +0530 | [diff] [blame] | 137 | } |
Nishanth Menon | 29918b6 | 2014-06-26 12:40:32 +0530 | [diff] [blame] | 138 | |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 139 | return 0; |
| 140 | } |
| 141 | |
Sricharan R | 8b09a45 | 2014-06-26 12:40:30 +0530 | [diff] [blame] | 142 | /** |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 143 | * crossbar_domain_free - unmap/free a crossbar<->irq connection |
| 144 | * @domain: domain of irq to unmap |
| 145 | * @virq: virq number |
| 146 | * @nr_irqs: number of irqs to free |
Sricharan R | 8b09a45 | 2014-06-26 12:40:30 +0530 | [diff] [blame] | 147 | * |
| 148 | * We do not maintain a use count of total number of map/unmap |
| 149 | * calls for a particular irq to find out if a irq can be really |
| 150 | * unmapped. This is because unmap is called during irq_dispose_mapping(irq), |
| 151 | * after which irq is anyways unusable. So an explicit map has to be called |
| 152 | * after that. |
| 153 | */ |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 154 | static void crossbar_domain_free(struct irq_domain *domain, unsigned int virq, |
| 155 | unsigned int nr_irqs) |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 156 | { |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 157 | int i; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 158 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 159 | raw_spin_lock(&cb->lock); |
| 160 | for (i = 0; i < nr_irqs; i++) { |
| 161 | struct irq_data *d = irq_domain_get_irq_data(domain, virq + i); |
| 162 | |
| 163 | irq_domain_reset_irq_data(d); |
| 164 | cb->irq_map[d->hwirq] = IRQ_FREE; |
| 165 | cb->write(d->hwirq, cb->safe_map); |
Nishanth Menon | a35057d | 2014-06-26 12:40:22 +0530 | [diff] [blame] | 166 | } |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 167 | raw_spin_unlock(&cb->lock); |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | static int crossbar_domain_xlate(struct irq_domain *d, |
| 171 | struct device_node *controller, |
| 172 | const u32 *intspec, unsigned int intsize, |
| 173 | unsigned long *out_hwirq, |
| 174 | unsigned int *out_type) |
| 175 | { |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 176 | if (d->of_node != controller) |
| 177 | return -EINVAL; /* Shouldn't happen, really... */ |
| 178 | if (intsize != 3) |
| 179 | return -EINVAL; /* Not GIC compliant */ |
| 180 | if (intspec[0] != 0) |
| 181 | return -EINVAL; /* No PPI should point to this domain */ |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 182 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 183 | *out_hwirq = intspec[1]; |
| 184 | *out_type = intspec[2]; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 185 | return 0; |
| 186 | } |
| 187 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 188 | static const struct irq_domain_ops crossbar_domain_ops = { |
| 189 | .alloc = crossbar_domain_alloc, |
| 190 | .free = crossbar_domain_free, |
| 191 | .xlate = crossbar_domain_xlate, |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 192 | }; |
| 193 | |
| 194 | static int __init crossbar_of_init(struct device_node *node) |
| 195 | { |
Nishanth Menon | edb442d | 2014-06-26 12:40:27 +0530 | [diff] [blame] | 196 | int i, size, max = 0, reserved = 0, entry; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 197 | const __be32 *irqsr; |
Nishanth Menon | edb442d | 2014-06-26 12:40:27 +0530 | [diff] [blame] | 198 | int ret = -ENOMEM; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 199 | |
Dan Carpenter | 3894e9e | 2014-04-03 10:21:34 +0300 | [diff] [blame] | 200 | cb = kzalloc(sizeof(*cb), GFP_KERNEL); |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 201 | |
| 202 | if (!cb) |
Nishanth Menon | edb442d | 2014-06-26 12:40:27 +0530 | [diff] [blame] | 203 | return ret; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 204 | |
| 205 | cb->crossbar_base = of_iomap(node, 0); |
| 206 | if (!cb->crossbar_base) |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 207 | goto err_cb; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 208 | |
Nishanth Menon | 2f7d2fb | 2014-06-26 12:40:31 +0530 | [diff] [blame] | 209 | of_property_read_u32(node, "ti,max-crossbar-sources", |
| 210 | &cb->max_crossbar_sources); |
| 211 | if (!cb->max_crossbar_sources) { |
| 212 | pr_err("missing 'ti,max-crossbar-sources' property\n"); |
| 213 | ret = -EINVAL; |
| 214 | goto err_base; |
| 215 | } |
| 216 | |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 217 | of_property_read_u32(node, "ti,max-irqs", &max); |
Nishanth Menon | edb442d | 2014-06-26 12:40:27 +0530 | [diff] [blame] | 218 | if (!max) { |
| 219 | pr_err("missing 'ti,max-irqs' property\n"); |
| 220 | ret = -EINVAL; |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 221 | goto err_base; |
Nishanth Menon | edb442d | 2014-06-26 12:40:27 +0530 | [diff] [blame] | 222 | } |
Nishanth Menon | 4dbf45e | 2014-06-26 12:40:25 +0530 | [diff] [blame] | 223 | cb->irq_map = kcalloc(max, sizeof(int), GFP_KERNEL); |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 224 | if (!cb->irq_map) |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 225 | goto err_base; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 226 | |
| 227 | cb->int_max = max; |
| 228 | |
| 229 | for (i = 0; i < max; i++) |
| 230 | cb->irq_map[i] = IRQ_FREE; |
| 231 | |
| 232 | /* Get and mark reserved irqs */ |
| 233 | irqsr = of_get_property(node, "ti,irqs-reserved", &size); |
| 234 | if (irqsr) { |
| 235 | size /= sizeof(__be32); |
| 236 | |
| 237 | for (i = 0; i < size; i++) { |
| 238 | of_property_read_u32_index(node, |
| 239 | "ti,irqs-reserved", |
| 240 | i, &entry); |
Dan Carpenter | 702f7e3 | 2014-08-07 18:28:21 +0300 | [diff] [blame] | 241 | if (entry >= max) { |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 242 | pr_err("Invalid reserved entry\n"); |
Nishanth Menon | edb442d | 2014-06-26 12:40:27 +0530 | [diff] [blame] | 243 | ret = -EINVAL; |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 244 | goto err_irq_map; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 245 | } |
Nishanth Menon | 1d50d2c | 2014-06-26 12:40:19 +0530 | [diff] [blame] | 246 | cb->irq_map[entry] = IRQ_RESERVED; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 247 | } |
| 248 | } |
| 249 | |
Nishanth Menon | 64e0f8b | 2014-06-26 12:40:21 +0530 | [diff] [blame] | 250 | /* Skip irqs hardwired to bypass the crossbar */ |
| 251 | irqsr = of_get_property(node, "ti,irqs-skip", &size); |
| 252 | if (irqsr) { |
| 253 | size /= sizeof(__be32); |
| 254 | |
| 255 | for (i = 0; i < size; i++) { |
| 256 | of_property_read_u32_index(node, |
| 257 | "ti,irqs-skip", |
| 258 | i, &entry); |
Dan Carpenter | 702f7e3 | 2014-08-07 18:28:21 +0300 | [diff] [blame] | 259 | if (entry >= max) { |
Nishanth Menon | 64e0f8b | 2014-06-26 12:40:21 +0530 | [diff] [blame] | 260 | pr_err("Invalid skip entry\n"); |
| 261 | ret = -EINVAL; |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 262 | goto err_irq_map; |
Nishanth Menon | 64e0f8b | 2014-06-26 12:40:21 +0530 | [diff] [blame] | 263 | } |
| 264 | cb->irq_map[entry] = IRQ_SKIP; |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | |
Nishanth Menon | 4dbf45e | 2014-06-26 12:40:25 +0530 | [diff] [blame] | 269 | cb->register_offsets = kcalloc(max, sizeof(int), GFP_KERNEL); |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 270 | if (!cb->register_offsets) |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 271 | goto err_irq_map; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 272 | |
| 273 | of_property_read_u32(node, "ti,reg-size", &size); |
| 274 | |
| 275 | switch (size) { |
| 276 | case 1: |
| 277 | cb->write = crossbar_writeb; |
| 278 | break; |
| 279 | case 2: |
| 280 | cb->write = crossbar_writew; |
| 281 | break; |
| 282 | case 4: |
| 283 | cb->write = crossbar_writel; |
| 284 | break; |
| 285 | default: |
| 286 | pr_err("Invalid reg-size property\n"); |
Nishanth Menon | edb442d | 2014-06-26 12:40:27 +0530 | [diff] [blame] | 287 | ret = -EINVAL; |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 288 | goto err_reg_offset; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 289 | break; |
| 290 | } |
| 291 | |
| 292 | /* |
| 293 | * Register offsets are not linear because of the |
| 294 | * reserved irqs. so find and store the offsets once. |
| 295 | */ |
| 296 | for (i = 0; i < max; i++) { |
Nishanth Menon | 1d50d2c | 2014-06-26 12:40:19 +0530 | [diff] [blame] | 297 | if (cb->irq_map[i] == IRQ_RESERVED) |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 298 | continue; |
| 299 | |
| 300 | cb->register_offsets[i] = reserved; |
| 301 | reserved += size; |
| 302 | } |
| 303 | |
Nishanth Menon | a35057d | 2014-06-26 12:40:22 +0530 | [diff] [blame] | 304 | of_property_read_u32(node, "ti,irqs-safe-map", &cb->safe_map); |
Nishanth Menon | a35057d | 2014-06-26 12:40:22 +0530 | [diff] [blame] | 305 | /* Initialize the crossbar with safe map to start with */ |
| 306 | for (i = 0; i < max; i++) { |
| 307 | if (cb->irq_map[i] == IRQ_RESERVED || |
| 308 | cb->irq_map[i] == IRQ_SKIP) |
| 309 | continue; |
| 310 | |
| 311 | cb->write(i, cb->safe_map); |
| 312 | } |
| 313 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 314 | raw_spin_lock_init(&cb->lock); |
| 315 | |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 316 | return 0; |
| 317 | |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 318 | err_reg_offset: |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 319 | kfree(cb->register_offsets); |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 320 | err_irq_map: |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 321 | kfree(cb->irq_map); |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 322 | err_base: |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 323 | iounmap(cb->crossbar_base); |
Nishanth Menon | 3c44d51 | 2014-06-26 12:40:28 +0530 | [diff] [blame] | 324 | err_cb: |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 325 | kfree(cb); |
Sricharan R | 99e37d0e | 2014-06-26 12:40:29 +0530 | [diff] [blame] | 326 | |
| 327 | cb = NULL; |
Nishanth Menon | edb442d | 2014-06-26 12:40:27 +0530 | [diff] [blame] | 328 | return ret; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 329 | } |
| 330 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 331 | static int __init irqcrossbar_init(struct device_node *node, |
| 332 | struct device_node *parent) |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 333 | { |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 334 | struct irq_domain *parent_domain, *domain; |
| 335 | int err; |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 336 | |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 337 | if (!parent) { |
| 338 | pr_err("%s: no parent, giving up\n", node->full_name); |
| 339 | return -ENODEV; |
| 340 | } |
| 341 | |
| 342 | parent_domain = irq_find_host(parent); |
| 343 | if (!parent_domain) { |
| 344 | pr_err("%s: unable to obtain parent domain\n", node->full_name); |
| 345 | return -ENXIO; |
| 346 | } |
| 347 | |
| 348 | err = crossbar_of_init(node); |
| 349 | if (err) |
| 350 | return err; |
| 351 | |
| 352 | domain = irq_domain_add_hierarchy(parent_domain, 0, |
| 353 | cb->max_crossbar_sources, |
| 354 | node, &crossbar_domain_ops, |
| 355 | NULL); |
| 356 | if (!domain) { |
| 357 | pr_err("%s: failed to allocated domain\n", node->full_name); |
| 358 | return -ENOMEM; |
| 359 | } |
| 360 | |
Sricharan R | 96ca848 | 2013-12-03 15:57:23 +0530 | [diff] [blame] | 361 | return 0; |
| 362 | } |
Marc Zyngier | 783d318 | 2015-03-11 15:43:44 +0000 | [diff] [blame] | 363 | |
| 364 | IRQCHIP_DECLARE(ti_irqcrossbar, "ti,irq-crossbar", irqcrossbar_init); |