blob: 6a6285897df1d3dbb6691b69f493e170b4672fda [file] [log] [blame]
Florian Fainellia5042de22014-09-09 17:44:21 -07001/*
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 Cernekeec17261f2014-11-06 22:44:28 -080016#include <linux/kconfig.h>
Florian Fainellia5042de22014-09-09 17:44:21 -070017#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 Cernekeec76acf42014-11-06 22:44:26 -080027#include <linux/bitops.h>
Florian Fainellia5042de22014-09-09 17:44:21 -070028#include <linux/irqchip/chained_irq.h>
29
30#include "irqchip.h"
31
Florian Fainellia5042de22014-09-09 17:44:21 -070032/* Register offset in the L2 interrupt controller */
33#define IRQEN 0x00
34#define IRQSTAT 0x04
35
Kevin Cernekeec76acf42014-11-06 22:44:26 -080036#define MAX_WORDS 4
Kevin Cernekeeca40f1b2014-12-25 09:49:04 -080037#define MAX_MAPPINGS (MAX_WORDS * 2)
Kevin Cernekeec76acf42014-11-06 22:44:26 -080038#define IRQS_PER_WORD 32
39
Florian Fainellia5042de22014-09-09 17:44:21 -070040struct bcm7120_l2_intc_data {
Kevin Cernekeec76acf42014-11-06 22:44:26 -080041 unsigned int n_words;
Kevin Cernekee5b5468c2014-12-25 09:49:03 -080042 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 Fainellia5042de22014-09-09 17:44:21 -070046 struct irq_domain *domain;
47 bool can_wake;
Kevin Cernekeec76acf42014-11-06 22:44:26 -080048 u32 irq_fwd_mask[MAX_WORDS];
49 u32 irq_map_mask[MAX_WORDS];
Kevin Cernekeeca40f1b2014-12-25 09:49:04 -080050 int num_parent_irqs;
51 const __be32 *map_mask_prop;
Florian Fainellia5042de22014-09-09 17:44:21 -070052};
53
54static 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 Cernekeec76acf42014-11-06 22:44:26 -080058 unsigned int idx;
Florian Fainellia5042de22014-09-09 17:44:21 -070059
60 chained_irq_enter(chip, desc);
61
Kevin Cernekeec76acf42014-11-06 22:44:26 -080062 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 Fainellia5042de22014-09-09 17:44:21 -070068
Kevin Cernekeec76acf42014-11-06 22:44:26 -080069 irq_gc_lock(gc);
Kevin Cernekee5b5468c2014-12-25 09:49:03 -080070 pending = irq_reg_readl(gc, b->stat_offset[idx]) &
71 gc->mask_cache;
Kevin Cernekeec76acf42014-11-06 22:44:26 -080072 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 Fainellia5042de22014-09-09 17:44:21 -070078 }
79
Florian Fainellia5042de22014-09-09 17:44:21 -070080 chained_irq_exit(chip, desc);
81}
82
83static void bcm7120_l2_intc_suspend(struct irq_data *d)
84{
85 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
Kevin Cernekee5b5468c2014-12-25 09:49:03 -080086 struct irq_chip_type *ct = irq_data_get_chip_type(d);
Florian Fainellia5042de22014-09-09 17:44:21 -070087 struct bcm7120_l2_intc_data *b = gc->private;
Florian Fainellia5042de22014-09-09 17:44:21 -070088
89 irq_gc_lock(gc);
Kevin Cernekeec17261f2014-11-06 22:44:28 -080090 if (b->can_wake)
Kevin Cernekee5b5468c2014-12-25 09:49:03 -080091 irq_reg_writel(gc, gc->mask_cache | gc->wake_active,
92 ct->regs.mask);
Florian Fainellia5042de22014-09-09 17:44:21 -070093 irq_gc_unlock(gc);
94}
95
96static void bcm7120_l2_intc_resume(struct irq_data *d)
97{
98 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
Kevin Cernekee5b5468c2014-12-25 09:49:03 -080099 struct irq_chip_type *ct = irq_data_get_chip_type(d);
Florian Fainellia5042de22014-09-09 17:44:21 -0700100
101 /* Restore the saved mask */
102 irq_gc_lock(gc);
Kevin Cernekee5b5468c2014-12-25 09:49:03 -0800103 irq_reg_writel(gc, gc->mask_cache, ct->regs.mask);
Florian Fainellia5042de22014-09-09 17:44:21 -0700104 irq_gc_unlock(gc);
105}
106
107static int bcm7120_l2_intc_init_one(struct device_node *dn,
108 struct bcm7120_l2_intc_data *data,
Kevin Cernekeeca40f1b2014-12-25 09:49:04 -0800109 int irq)
Florian Fainellia5042de22014-09-09 17:44:21 -0700110{
111 int parent_irq;
Kevin Cernekeec76acf42014-11-06 22:44:26 -0800112 unsigned int idx;
Florian Fainellia5042de22014-09-09 17:44:21 -0700113
114 parent_irq = irq_of_parse_and_map(dn, irq);
Dmitry Torokhov714710e2014-11-14 14:16:14 -0800115 if (!parent_irq) {
Florian Fainellia5042de22014-09-09 17:44:21 -0700116 pr_err("failed to map interrupt %d\n", irq);
Dmitry Torokhov714710e2014-11-14 14:16:14 -0800117 return -EINVAL;
Florian Fainellia5042de22014-09-09 17:44:21 -0700118 }
119
Kevin Cernekeec76acf42014-11-06 22:44:26 -0800120 /* 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 Cernekeeca40f1b2014-12-25 09:49:04 -0800125 be32_to_cpup(data->map_mask_prop +
126 irq * data->n_words + idx);
Florian Fainellia5042de22014-09-09 17:44:21 -0700127
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 Cernekeeca40f1b2014-12-25 09:49:04 -0800134static 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
168int __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 Fainellia5042de22014-09-09 17:44:21 -0700173{
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 Cernekeeca40f1b2014-12-25 09:49:04 -0800178 int ret = 0;
Kevin Cernekeec17261f2014-11-06 22:44:28 -0800179 unsigned int idx, irq, flags;
Florian Fainellia5042de22014-09-09 17:44:21 -0700180
181 data = kzalloc(sizeof(*data), GFP_KERNEL);
182 if (!data)
183 return -ENOMEM;
184
Kevin Cernekeeca40f1b2014-12-25 09:49:04 -0800185 data->num_parent_irqs = of_irq_count(dn);
186 if (data->num_parent_irqs <= 0) {
Florian Fainellia5042de22014-09-09 17:44:21 -0700187 pr_err("invalid number of parent interrupts\n");
188 ret = -ENOMEM;
189 goto out_unmap;
190 }
191
Kevin Cernekeeca40f1b2014-12-25 09:49:04 -0800192 ret = iomap_regs_fn(dn, data);
193 if (ret < 0)
Florian Fainellia5042de22014-09-09 17:44:21 -0700194 goto out_unmap;
Kevin Cernekeeca40f1b2014-12-25 09:49:04 -0800195
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 Fainellia5042de22014-09-09 17:44:21 -0700200 }
201
Kevin Cernekeeca40f1b2014-12-25 09:49:04 -0800202 for (irq = 0; irq < data->num_parent_irqs; irq++) {
203 ret = bcm7120_l2_intc_init_one(dn, data, irq);
Florian Fainellia5042de22014-09-09 17:44:21 -0700204 if (ret)
205 goto out_unmap;
206 }
207
Kevin Cernekeec76acf42014-11-06 22:44:26 -0800208 data->domain = irq_domain_add_linear(dn, IRQS_PER_WORD * data->n_words,
209 &irq_generic_chip_ops, NULL);
Florian Fainellia5042de22014-09-09 17:44:21 -0700210 if (!data->domain) {
211 ret = -ENOMEM;
212 goto out_unmap;
213 }
214
Kevin Cernekeec17261f2014-11-06 22:44:28 -0800215 /* 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 Cernekeec76acf42014-11-06 22:44:26 -0800222 ret = irq_alloc_domain_generic_chips(data->domain, IRQS_PER_WORD, 1,
Kevin Cernekeec17261f2014-11-06 22:44:28 -0800223 dn->full_name, handle_level_irq, clr, 0, flags);
Florian Fainellia5042de22014-09-09 17:44:21 -0700224 if (ret) {
225 pr_err("failed to allocate generic irq chip\n");
226 goto out_free_domain;
227 }
228
Kevin Cernekeec76acf42014-11-06 22:44:26 -0800229 if (of_property_read_bool(dn, "brcm,irq-can-wake"))
Florian Fainellia5042de22014-09-09 17:44:21 -0700230 data->can_wake = true;
Kevin Cernekeec76acf42014-11-06 22:44:26 -0800231
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 Cernekeec76acf42014-11-06 22:44:26 -0800237 gc->private = data;
238 ct = gc->chip_types;
239
Kevin Cernekee5b5468c2014-12-25 09:49:03 -0800240 gc->reg_base = data->pair_base[idx];
241 ct->regs.mask = data->en_offset[idx];
242
Kevin Cernekeec76acf42014-11-06 22:44:26 -0800243 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 Fainellia5042de22014-09-09 17:44:21 -0700257 }
258
Kevin Cernekeeca40f1b2014-12-25 09:49:04 -0800259 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 Fainellia5042de22014-09-09 17:44:21 -0700261
262 return 0;
263
264out_free_domain:
265 irq_domain_remove(data->domain);
266out_unmap:
Kevin Cernekee5b5468c2014-12-25 09:49:03 -0800267 for (idx = 0; idx < MAX_MAPPINGS; idx++) {
268 if (data->map_base[idx])
269 iounmap(data->map_base[idx]);
Kevin Cernekeec76acf42014-11-06 22:44:26 -0800270 }
Florian Fainellia5042de22014-09-09 17:44:21 -0700271 kfree(data);
272 return ret;
273}
Kevin Cernekeeca40f1b2014-12-25 09:49:04 -0800274
275int __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 Cernekeea4fcbb82014-11-06 22:44:27 -0800282IRQCHIP_DECLARE(bcm7120_l2_intc, "brcm,bcm7120-l2-intc",
Kevin Cernekeeca40f1b2014-12-25 09:49:04 -0800283 bcm7120_l2_intc_probe_7120);