2 * Broadcom BCM7120 style Level 2 interrupt controller driver
4 * Copyright (C) 2014 Broadcom Corporation
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.
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/init.h>
14 #include <linux/slab.h>
15 #include <linux/module.h>
16 #include <linux/kconfig.h>
17 #include <linux/kernel.h>
18 #include <linux/platform_device.h>
20 #include <linux/of_irq.h>
21 #include <linux/of_address.h>
22 #include <linux/of_platform.h>
23 #include <linux/interrupt.h>
24 #include <linux/irq.h>
26 #include <linux/irqdomain.h>
27 #include <linux/reboot.h>
28 #include <linux/bitops.h>
29 #include <linux/irqchip.h>
30 #include <linux/irqchip/chained_irq.h>
32 /* Register offset in the L2 interrupt controller */
37 #define MAX_MAPPINGS (MAX_WORDS * 2)
38 #define IRQS_PER_WORD 32
40 struct bcm7120_l1_intc_data
{
41 struct bcm7120_l2_intc_data
*b
;
42 u32 irq_map_mask
[MAX_WORDS
];
45 struct bcm7120_l2_intc_data
{
47 void __iomem
*map_base
[MAX_MAPPINGS
];
48 void __iomem
*pair_base
[MAX_WORDS
];
49 int en_offset
[MAX_WORDS
];
50 int stat_offset
[MAX_WORDS
];
51 struct irq_domain
*domain
;
53 u32 irq_fwd_mask
[MAX_WORDS
];
54 struct bcm7120_l1_intc_data
*l1_data
;
56 const __be32
*map_mask_prop
;
59 static void bcm7120_l2_intc_irq_handle(struct irq_desc
*desc
)
61 struct bcm7120_l1_intc_data
*data
= irq_desc_get_handler_data(desc
);
62 struct bcm7120_l2_intc_data
*b
= data
->b
;
63 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
66 chained_irq_enter(chip
, desc
);
68 for (idx
= 0; idx
< b
->n_words
; idx
++) {
69 int base
= idx
* IRQS_PER_WORD
;
70 struct irq_chip_generic
*gc
=
71 irq_get_domain_generic_chip(b
->domain
, base
);
72 unsigned long pending
;
76 pending
= irq_reg_readl(gc
, b
->stat_offset
[idx
]) &
78 data
->irq_map_mask
[idx
];
81 for_each_set_bit(hwirq
, &pending
, IRQS_PER_WORD
) {
82 generic_handle_irq(irq_find_mapping(b
->domain
,
87 chained_irq_exit(chip
, desc
);
90 static void bcm7120_l2_intc_suspend(struct irq_chip_generic
*gc
)
92 struct bcm7120_l2_intc_data
*b
= gc
->private;
93 struct irq_chip_type
*ct
= gc
->chip_types
;
97 irq_reg_writel(gc
, gc
->mask_cache
| gc
->wake_active
,
102 static void bcm7120_l2_intc_resume(struct irq_chip_generic
*gc
)
104 struct irq_chip_type
*ct
= gc
->chip_types
;
106 /* Restore the saved mask */
108 irq_reg_writel(gc
, gc
->mask_cache
, ct
->regs
.mask
);
112 static int bcm7120_l2_intc_init_one(struct device_node
*dn
,
113 struct bcm7120_l2_intc_data
*data
,
114 int irq
, u32
*valid_mask
)
116 struct bcm7120_l1_intc_data
*l1_data
= &data
->l1_data
[irq
];
120 parent_irq
= irq_of_parse_and_map(dn
, irq
);
122 pr_err("failed to map interrupt %d\n", irq
);
126 /* For multiple parent IRQs with multiple words, this looks like:
127 * <irq0_w0 irq0_w1 irq1_w0 irq1_w1 ...>
129 * We need to associate a given parent interrupt with its corresponding
130 * map_mask in order to mask the status register with it because we
131 * have the same handler being called for multiple parent interrupts.
133 * This is typically something needed on BCM7xxx (STB chips).
135 for (idx
= 0; idx
< data
->n_words
; idx
++) {
136 if (data
->map_mask_prop
) {
137 l1_data
->irq_map_mask
[idx
] |=
138 be32_to_cpup(data
->map_mask_prop
+
139 irq
* data
->n_words
+ idx
);
141 l1_data
->irq_map_mask
[idx
] = 0xffffffff;
143 valid_mask
[idx
] |= l1_data
->irq_map_mask
[idx
];
148 irq_set_chained_handler_and_data(parent_irq
,
149 bcm7120_l2_intc_irq_handle
, l1_data
);
153 static int __init
bcm7120_l2_intc_iomap_7120(struct device_node
*dn
,
154 struct bcm7120_l2_intc_data
*data
)
158 data
->map_base
[0] = of_iomap(dn
, 0);
159 if (!data
->map_base
[0]) {
160 pr_err("unable to map registers\n");
164 data
->pair_base
[0] = data
->map_base
[0];
165 data
->en_offset
[0] = IRQEN
;
166 data
->stat_offset
[0] = IRQSTAT
;
169 ret
= of_property_read_u32_array(dn
, "brcm,int-fwd-mask",
170 data
->irq_fwd_mask
, data
->n_words
);
171 if (ret
!= 0 && ret
!= -EINVAL
) {
172 /* property exists but has the wrong number of words */
173 pr_err("invalid brcm,int-fwd-mask property\n");
177 data
->map_mask_prop
= of_get_property(dn
, "brcm,int-map-mask", &ret
);
178 if (!data
->map_mask_prop
||
179 (ret
!= (sizeof(__be32
) * data
->num_parent_irqs
* data
->n_words
))) {
180 pr_err("invalid brcm,int-map-mask property\n");
187 static int __init
bcm7120_l2_intc_iomap_3380(struct device_node
*dn
,
188 struct bcm7120_l2_intc_data
*data
)
192 for (gc_idx
= 0; gc_idx
< MAX_WORDS
; gc_idx
++) {
193 unsigned int map_idx
= gc_idx
* 2;
194 void __iomem
*en
= of_iomap(dn
, map_idx
+ 0);
195 void __iomem
*stat
= of_iomap(dn
, map_idx
+ 1);
196 void __iomem
*base
= min(en
, stat
);
198 data
->map_base
[map_idx
+ 0] = en
;
199 data
->map_base
[map_idx
+ 1] = stat
;
204 data
->pair_base
[gc_idx
] = base
;
205 data
->en_offset
[gc_idx
] = en
- base
;
206 data
->stat_offset
[gc_idx
] = stat
- base
;
210 pr_err("unable to map registers\n");
214 data
->n_words
= gc_idx
;
218 int __init
bcm7120_l2_intc_probe(struct device_node
*dn
,
219 struct device_node
*parent
,
220 int (*iomap_regs_fn
)(struct device_node
*,
221 struct bcm7120_l2_intc_data
*),
222 const char *intc_name
)
224 unsigned int clr
= IRQ_NOREQUEST
| IRQ_NOPROBE
| IRQ_NOAUTOEN
;
225 struct bcm7120_l2_intc_data
*data
;
226 struct irq_chip_generic
*gc
;
227 struct irq_chip_type
*ct
;
229 unsigned int idx
, irq
, flags
;
230 u32 valid_mask
[MAX_WORDS
] = { };
232 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
236 data
->num_parent_irqs
= of_irq_count(dn
);
237 if (data
->num_parent_irqs
<= 0) {
238 pr_err("invalid number of parent interrupts\n");
243 data
->l1_data
= kcalloc(data
->num_parent_irqs
, sizeof(*data
->l1_data
),
245 if (!data
->l1_data
) {
247 goto out_free_l1_data
;
250 ret
= iomap_regs_fn(dn
, data
);
252 goto out_free_l1_data
;
254 for (idx
= 0; idx
< data
->n_words
; idx
++) {
255 __raw_writel(data
->irq_fwd_mask
[idx
],
256 data
->pair_base
[idx
] +
257 data
->en_offset
[idx
]);
260 for (irq
= 0; irq
< data
->num_parent_irqs
; irq
++) {
261 ret
= bcm7120_l2_intc_init_one(dn
, data
, irq
, valid_mask
);
263 goto out_free_l1_data
;
266 data
->domain
= irq_domain_add_linear(dn
, IRQS_PER_WORD
* data
->n_words
,
267 &irq_generic_chip_ops
, NULL
);
270 goto out_free_l1_data
;
273 /* MIPS chips strapped for BE will automagically configure the
274 * peripheral registers for CPU-native byte order.
276 flags
= IRQ_GC_INIT_MASK_CACHE
;
277 if (IS_ENABLED(CONFIG_MIPS
) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN
))
278 flags
|= IRQ_GC_BE_IO
;
280 ret
= irq_alloc_domain_generic_chips(data
->domain
, IRQS_PER_WORD
, 1,
281 dn
->full_name
, handle_level_irq
, clr
, 0, flags
);
283 pr_err("failed to allocate generic irq chip\n");
284 goto out_free_domain
;
287 if (of_property_read_bool(dn
, "brcm,irq-can-wake"))
288 data
->can_wake
= true;
290 for (idx
= 0; idx
< data
->n_words
; idx
++) {
291 irq
= idx
* IRQS_PER_WORD
;
292 gc
= irq_get_domain_generic_chip(data
->domain
, irq
);
294 gc
->unused
= 0xffffffff & ~valid_mask
[idx
];
298 gc
->reg_base
= data
->pair_base
[idx
];
299 ct
->regs
.mask
= data
->en_offset
[idx
];
301 ct
->chip
.irq_mask
= irq_gc_mask_clr_bit
;
302 ct
->chip
.irq_unmask
= irq_gc_mask_set_bit
;
303 ct
->chip
.irq_ack
= irq_gc_noop
;
304 gc
->suspend
= bcm7120_l2_intc_suspend
;
305 gc
->resume
= bcm7120_l2_intc_resume
;
308 * Initialize mask-cache, in case we need it for
309 * saving/restoring fwd mask even w/o any child interrupts
312 gc
->mask_cache
= irq_reg_readl(gc
, ct
->regs
.mask
);
314 if (data
->can_wake
) {
315 /* This IRQ chip can wake the system, set all
316 * relevant child interupts in wake_enabled mask
318 gc
->wake_enabled
= 0xffffffff;
319 gc
->wake_enabled
&= ~gc
->unused
;
320 ct
->chip
.irq_set_wake
= irq_gc_set_wake
;
324 pr_info("registered %s intc (mem: 0x%p, parent IRQ(s): %d)\n",
325 intc_name
, data
->map_base
[0], data
->num_parent_irqs
);
330 irq_domain_remove(data
->domain
);
332 kfree(data
->l1_data
);
334 for (idx
= 0; idx
< MAX_MAPPINGS
; idx
++) {
335 if (data
->map_base
[idx
])
336 iounmap(data
->map_base
[idx
]);
342 int __init
bcm7120_l2_intc_probe_7120(struct device_node
*dn
,
343 struct device_node
*parent
)
345 return bcm7120_l2_intc_probe(dn
, parent
, bcm7120_l2_intc_iomap_7120
,
349 int __init
bcm7120_l2_intc_probe_3380(struct device_node
*dn
,
350 struct device_node
*parent
)
352 return bcm7120_l2_intc_probe(dn
, parent
, bcm7120_l2_intc_iomap_3380
,
356 IRQCHIP_DECLARE(bcm7120_l2_intc
, "brcm,bcm7120-l2-intc",
357 bcm7120_l2_intc_probe_7120
);
359 IRQCHIP_DECLARE(bcm3380_l2_intc
, "brcm,bcm3380-l2-intc",
360 bcm7120_l2_intc_probe_3380
);