Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Broadcom BCM7120 style Level 2 interrupt controller driver |
| 3 | * |
| 4 | * Copyright (C) 2014 Broadcom Corporation |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 12 | |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/slab.h> |
| 15 | #include <linux/module.h> |
Kevin Cernekee | c17261f | 2014-11-06 22:44:28 -0800 | [diff] [blame] | 16 | #include <linux/kconfig.h> |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/of.h> |
| 19 | #include <linux/of_irq.h> |
| 20 | #include <linux/of_address.h> |
| 21 | #include <linux/of_platform.h> |
| 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/irq.h> |
| 24 | #include <linux/io.h> |
| 25 | #include <linux/irqdomain.h> |
| 26 | #include <linux/reboot.h> |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 27 | #include <linux/bitops.h> |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 28 | #include <linux/irqchip/chained_irq.h> |
| 29 | |
| 30 | #include "irqchip.h" |
| 31 | |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 32 | /* Register offset in the L2 interrupt controller */ |
| 33 | #define IRQEN 0x00 |
| 34 | #define IRQSTAT 0x04 |
| 35 | |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 36 | #define MAX_WORDS 4 |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 37 | #define MAX_MAPPINGS (MAX_WORDS * 2) |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 38 | #define IRQS_PER_WORD 32 |
| 39 | |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 40 | struct bcm7120_l2_intc_data { |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 41 | unsigned int n_words; |
Kevin Cernekee | 5b5468c | 2014-12-25 09:49:03 -0800 | [diff] [blame] | 42 | void __iomem *map_base[MAX_MAPPINGS]; |
| 43 | void __iomem *pair_base[MAX_WORDS]; |
| 44 | int en_offset[MAX_WORDS]; |
| 45 | int stat_offset[MAX_WORDS]; |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 46 | struct irq_domain *domain; |
| 47 | bool can_wake; |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 48 | u32 irq_fwd_mask[MAX_WORDS]; |
| 49 | u32 irq_map_mask[MAX_WORDS]; |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 50 | int num_parent_irqs; |
| 51 | const __be32 *map_mask_prop; |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | static void bcm7120_l2_intc_irq_handle(unsigned int irq, struct irq_desc *desc) |
| 55 | { |
| 56 | struct bcm7120_l2_intc_data *b = irq_desc_get_handler_data(desc); |
| 57 | struct irq_chip *chip = irq_desc_get_chip(desc); |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 58 | unsigned int idx; |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 59 | |
| 60 | chained_irq_enter(chip, desc); |
| 61 | |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 62 | for (idx = 0; idx < b->n_words; idx++) { |
| 63 | int base = idx * IRQS_PER_WORD; |
| 64 | struct irq_chip_generic *gc = |
| 65 | irq_get_domain_generic_chip(b->domain, base); |
| 66 | unsigned long pending; |
| 67 | int hwirq; |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 68 | |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 69 | irq_gc_lock(gc); |
Kevin Cernekee | 5b5468c | 2014-12-25 09:49:03 -0800 | [diff] [blame] | 70 | pending = irq_reg_readl(gc, b->stat_offset[idx]) & |
| 71 | gc->mask_cache; |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 72 | irq_gc_unlock(gc); |
| 73 | |
| 74 | for_each_set_bit(hwirq, &pending, IRQS_PER_WORD) { |
| 75 | generic_handle_irq(irq_find_mapping(b->domain, |
| 76 | base + hwirq)); |
| 77 | } |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 78 | } |
| 79 | |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 80 | chained_irq_exit(chip, desc); |
| 81 | } |
| 82 | |
| 83 | static void bcm7120_l2_intc_suspend(struct irq_data *d) |
| 84 | { |
| 85 | struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); |
Kevin Cernekee | 5b5468c | 2014-12-25 09:49:03 -0800 | [diff] [blame] | 86 | struct irq_chip_type *ct = irq_data_get_chip_type(d); |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 87 | struct bcm7120_l2_intc_data *b = gc->private; |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 88 | |
| 89 | irq_gc_lock(gc); |
Kevin Cernekee | c17261f | 2014-11-06 22:44:28 -0800 | [diff] [blame] | 90 | if (b->can_wake) |
Kevin Cernekee | 5b5468c | 2014-12-25 09:49:03 -0800 | [diff] [blame] | 91 | irq_reg_writel(gc, gc->mask_cache | gc->wake_active, |
| 92 | ct->regs.mask); |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 93 | irq_gc_unlock(gc); |
| 94 | } |
| 95 | |
| 96 | static void bcm7120_l2_intc_resume(struct irq_data *d) |
| 97 | { |
| 98 | struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d); |
Kevin Cernekee | 5b5468c | 2014-12-25 09:49:03 -0800 | [diff] [blame] | 99 | struct irq_chip_type *ct = irq_data_get_chip_type(d); |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 100 | |
| 101 | /* Restore the saved mask */ |
| 102 | irq_gc_lock(gc); |
Kevin Cernekee | 5b5468c | 2014-12-25 09:49:03 -0800 | [diff] [blame] | 103 | irq_reg_writel(gc, gc->mask_cache, ct->regs.mask); |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 104 | irq_gc_unlock(gc); |
| 105 | } |
| 106 | |
| 107 | static int bcm7120_l2_intc_init_one(struct device_node *dn, |
| 108 | struct bcm7120_l2_intc_data *data, |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 109 | int irq) |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 110 | { |
| 111 | int parent_irq; |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 112 | unsigned int idx; |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 113 | |
| 114 | parent_irq = irq_of_parse_and_map(dn, irq); |
Dmitry Torokhov | 714710e | 2014-11-14 14:16:14 -0800 | [diff] [blame] | 115 | if (!parent_irq) { |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 116 | pr_err("failed to map interrupt %d\n", irq); |
Dmitry Torokhov | 714710e | 2014-11-14 14:16:14 -0800 | [diff] [blame] | 117 | return -EINVAL; |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 120 | /* For multiple parent IRQs with multiple words, this looks like: |
| 121 | * <irq0_w0 irq0_w1 irq1_w0 irq1_w1 ...> |
| 122 | */ |
| 123 | for (idx = 0; idx < data->n_words; idx++) |
| 124 | data->irq_map_mask[idx] |= |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 125 | be32_to_cpup(data->map_mask_prop + |
| 126 | irq * data->n_words + idx); |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 127 | |
| 128 | irq_set_handler_data(parent_irq, data); |
| 129 | irq_set_chained_handler(parent_irq, bcm7120_l2_intc_irq_handle); |
| 130 | |
| 131 | return 0; |
| 132 | } |
| 133 | |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 134 | static int __init bcm7120_l2_intc_iomap_7120(struct device_node *dn, |
| 135 | struct bcm7120_l2_intc_data *data) |
| 136 | { |
| 137 | int ret; |
| 138 | |
| 139 | data->map_base[0] = of_iomap(dn, 0); |
| 140 | if (!data->map_base[0]) { |
| 141 | pr_err("unable to map registers\n"); |
| 142 | return -ENOMEM; |
| 143 | } |
| 144 | |
| 145 | data->pair_base[0] = data->map_base[0]; |
| 146 | data->en_offset[0] = IRQEN; |
| 147 | data->stat_offset[0] = IRQSTAT; |
| 148 | data->n_words = 1; |
| 149 | |
| 150 | ret = of_property_read_u32_array(dn, "brcm,int-fwd-mask", |
| 151 | data->irq_fwd_mask, data->n_words); |
| 152 | if (ret != 0 && ret != -EINVAL) { |
| 153 | /* property exists but has the wrong number of words */ |
| 154 | pr_err("invalid brcm,int-fwd-mask property\n"); |
| 155 | return -EINVAL; |
| 156 | } |
| 157 | |
| 158 | data->map_mask_prop = of_get_property(dn, "brcm,int-map-mask", &ret); |
| 159 | if (!data->map_mask_prop || |
| 160 | (ret != (sizeof(__be32) * data->num_parent_irqs * data->n_words))) { |
| 161 | pr_err("invalid brcm,int-map-mask property\n"); |
| 162 | return -EINVAL; |
| 163 | } |
| 164 | |
| 165 | return 0; |
| 166 | } |
| 167 | |
| 168 | int __init bcm7120_l2_intc_probe(struct device_node *dn, |
| 169 | struct device_node *parent, |
| 170 | int (*iomap_regs_fn)(struct device_node *, |
| 171 | struct bcm7120_l2_intc_data *), |
| 172 | const char *intc_name) |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 173 | { |
| 174 | unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN; |
| 175 | struct bcm7120_l2_intc_data *data; |
| 176 | struct irq_chip_generic *gc; |
| 177 | struct irq_chip_type *ct; |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 178 | int ret = 0; |
Kevin Cernekee | c17261f | 2014-11-06 22:44:28 -0800 | [diff] [blame] | 179 | unsigned int idx, irq, flags; |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 180 | |
| 181 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 182 | if (!data) |
| 183 | return -ENOMEM; |
| 184 | |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 185 | data->num_parent_irqs = of_irq_count(dn); |
| 186 | if (data->num_parent_irqs <= 0) { |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 187 | pr_err("invalid number of parent interrupts\n"); |
| 188 | ret = -ENOMEM; |
| 189 | goto out_unmap; |
| 190 | } |
| 191 | |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 192 | ret = iomap_regs_fn(dn, data); |
| 193 | if (ret < 0) |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 194 | goto out_unmap; |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 195 | |
| 196 | for (idx = 0; idx < data->n_words; idx++) { |
| 197 | __raw_writel(data->irq_fwd_mask[idx], |
| 198 | data->pair_base[idx] + |
| 199 | data->en_offset[idx]); |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 202 | for (irq = 0; irq < data->num_parent_irqs; irq++) { |
| 203 | ret = bcm7120_l2_intc_init_one(dn, data, irq); |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 204 | if (ret) |
| 205 | goto out_unmap; |
| 206 | } |
| 207 | |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 208 | data->domain = irq_domain_add_linear(dn, IRQS_PER_WORD * data->n_words, |
| 209 | &irq_generic_chip_ops, NULL); |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 210 | if (!data->domain) { |
| 211 | ret = -ENOMEM; |
| 212 | goto out_unmap; |
| 213 | } |
| 214 | |
Kevin Cernekee | c17261f | 2014-11-06 22:44:28 -0800 | [diff] [blame] | 215 | /* MIPS chips strapped for BE will automagically configure the |
| 216 | * peripheral registers for CPU-native byte order. |
| 217 | */ |
| 218 | flags = IRQ_GC_INIT_MASK_CACHE; |
| 219 | if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN)) |
| 220 | flags |= IRQ_GC_BE_IO; |
| 221 | |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 222 | ret = irq_alloc_domain_generic_chips(data->domain, IRQS_PER_WORD, 1, |
Kevin Cernekee | c17261f | 2014-11-06 22:44:28 -0800 | [diff] [blame] | 223 | dn->full_name, handle_level_irq, clr, 0, flags); |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 224 | if (ret) { |
| 225 | pr_err("failed to allocate generic irq chip\n"); |
| 226 | goto out_free_domain; |
| 227 | } |
| 228 | |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 229 | if (of_property_read_bool(dn, "brcm,irq-can-wake")) |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 230 | data->can_wake = true; |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 231 | |
| 232 | for (idx = 0; idx < data->n_words; idx++) { |
| 233 | irq = idx * IRQS_PER_WORD; |
| 234 | gc = irq_get_domain_generic_chip(data->domain, irq); |
| 235 | |
| 236 | gc->unused = 0xffffffff & ~data->irq_map_mask[idx]; |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 237 | gc->private = data; |
| 238 | ct = gc->chip_types; |
| 239 | |
Kevin Cernekee | 5b5468c | 2014-12-25 09:49:03 -0800 | [diff] [blame] | 240 | gc->reg_base = data->pair_base[idx]; |
| 241 | ct->regs.mask = data->en_offset[idx]; |
| 242 | |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 243 | ct->chip.irq_mask = irq_gc_mask_clr_bit; |
| 244 | ct->chip.irq_unmask = irq_gc_mask_set_bit; |
| 245 | ct->chip.irq_ack = irq_gc_noop; |
| 246 | ct->chip.irq_suspend = bcm7120_l2_intc_suspend; |
| 247 | ct->chip.irq_resume = bcm7120_l2_intc_resume; |
| 248 | |
| 249 | if (data->can_wake) { |
| 250 | /* This IRQ chip can wake the system, set all |
| 251 | * relevant child interupts in wake_enabled mask |
| 252 | */ |
| 253 | gc->wake_enabled = 0xffffffff; |
| 254 | gc->wake_enabled &= ~gc->unused; |
| 255 | ct->chip.irq_set_wake = irq_gc_set_wake; |
| 256 | } |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 259 | pr_info("registered %s intc (mem: 0x%p, parent IRQ(s): %d)\n", |
| 260 | intc_name, data->map_base[0], data->num_parent_irqs); |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 261 | |
| 262 | return 0; |
| 263 | |
| 264 | out_free_domain: |
| 265 | irq_domain_remove(data->domain); |
| 266 | out_unmap: |
Kevin Cernekee | 5b5468c | 2014-12-25 09:49:03 -0800 | [diff] [blame] | 267 | for (idx = 0; idx < MAX_MAPPINGS; idx++) { |
| 268 | if (data->map_base[idx]) |
| 269 | iounmap(data->map_base[idx]); |
Kevin Cernekee | c76acf4 | 2014-11-06 22:44:26 -0800 | [diff] [blame] | 270 | } |
Florian Fainelli | a5042de2 | 2014-09-09 17:44:21 -0700 | [diff] [blame] | 271 | kfree(data); |
| 272 | return ret; |
| 273 | } |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 274 | |
| 275 | int __init bcm7120_l2_intc_probe_7120(struct device_node *dn, |
| 276 | struct device_node *parent) |
| 277 | { |
| 278 | return bcm7120_l2_intc_probe(dn, parent, bcm7120_l2_intc_iomap_7120, |
| 279 | "BCM7120 L2"); |
| 280 | } |
| 281 | |
Kevin Cernekee | a4fcbb8 | 2014-11-06 22:44:27 -0800 | [diff] [blame] | 282 | IRQCHIP_DECLARE(bcm7120_l2_intc, "brcm,bcm7120-l2-intc", |
Kevin Cernekee | ca40f1b | 2014-12-25 09:49:04 -0800 | [diff] [blame^] | 283 | bcm7120_l2_intc_probe_7120); |