1 // SPDX-License-Identifier: GPL-2.0-only
3 * Generic Broadcom Set Top Box Level 2 Interrupt controller driver
5 * Copyright (C) 2014-2017 Broadcom
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/init.h>
11 #include <linux/slab.h>
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/spinlock.h>
16 #include <linux/of_irq.h>
17 #include <linux/of_address.h>
18 #include <linux/interrupt.h>
19 #include <linux/irq.h>
21 #include <linux/irqdomain.h>
22 #include <linux/irqchip.h>
23 #include <linux/irqchip/chained_irq.h>
25 struct brcmstb_intc_init_params {
26 irq_flow_handler_t handler;
34 /* Register offsets in the L2 latched interrupt controller */
35 static const struct brcmstb_intc_init_params l2_edge_intc_init = {
36 .handler = handle_edge_irq,
39 .cpu_mask_status = 0x0c,
41 .cpu_mask_clear = 0x14
44 /* Register offsets in the L2 level interrupt controller */
45 static const struct brcmstb_intc_init_params l2_lvl_intc_init = {
46 .handler = handle_level_irq,
48 .cpu_clear = -1, /* Register not present */
49 .cpu_mask_status = 0x04,
51 .cpu_mask_clear = 0x0C
54 /* L2 intc private data structure */
55 struct brcmstb_l2_intc_data {
56 struct irq_domain *domain;
57 struct irq_chip_generic *gc;
61 u32 saved_mask; /* for suspend/resume */
65 * brcmstb_l2_mask_and_ack - Mask and ack pending interrupt
68 * Chip has separate enable/disable registers instead of a single mask
69 * register and pending interrupt is acknowledged by setting a bit.
71 * Note: This function is generic and could easily be added to the
72 * generic irqchip implementation if there ever becomes a will to do so.
73 * Perhaps with a name like irq_gc_mask_disable_and_ack_set().
75 * e.g.: https://patchwork.kernel.org/patch/9831047/
77 static void brcmstb_l2_mask_and_ack(struct irq_data *d)
79 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
80 struct irq_chip_type *ct = irq_data_get_chip_type(d);
84 irq_reg_writel(gc, mask, ct->regs.disable);
85 *ct->mask_cache &= ~mask;
86 irq_reg_writel(gc, mask, ct->regs.ack);
90 static void brcmstb_l2_intc_irq_handle(struct irq_desc *desc)
92 struct brcmstb_l2_intc_data *b = irq_desc_get_handler_data(desc);
93 struct irq_chip *chip = irq_desc_get_chip(desc);
97 chained_irq_enter(chip, desc);
99 status = irq_reg_readl(b->gc, b->status_offset) &
100 ~(irq_reg_readl(b->gc, b->mask_offset));
103 raw_spin_lock(&desc->lock);
104 handle_bad_irq(desc);
105 raw_spin_unlock(&desc->lock);
110 irq = ffs(status) - 1;
111 status &= ~(1 << irq);
112 generic_handle_domain_irq(b->domain, irq);
115 chained_irq_exit(chip, desc);
118 static void brcmstb_l2_intc_suspend(struct irq_data *d)
120 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
121 struct irq_chip_type *ct = irq_data_get_chip_type(d);
122 struct brcmstb_l2_intc_data *b = gc->private;
125 irq_gc_lock_irqsave(gc, flags);
126 /* Save the current mask */
127 b->saved_mask = irq_reg_readl(gc, ct->regs.mask);
130 /* Program the wakeup mask */
131 irq_reg_writel(gc, ~gc->wake_active, ct->regs.disable);
132 irq_reg_writel(gc, gc->wake_active, ct->regs.enable);
134 irq_gc_unlock_irqrestore(gc, flags);
137 static void brcmstb_l2_intc_resume(struct irq_data *d)
139 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
140 struct irq_chip_type *ct = irq_data_get_chip_type(d);
141 struct brcmstb_l2_intc_data *b = gc->private;
144 irq_gc_lock_irqsave(gc, flags);
145 if (ct->chip.irq_ack) {
146 /* Clear unmasked non-wakeup interrupts */
147 irq_reg_writel(gc, ~b->saved_mask & ~gc->wake_active,
151 /* Restore the saved mask */
152 irq_reg_writel(gc, b->saved_mask, ct->regs.disable);
153 irq_reg_writel(gc, ~b->saved_mask, ct->regs.enable);
154 irq_gc_unlock_irqrestore(gc, flags);
157 static int __init brcmstb_l2_intc_of_init(struct device_node *np,
158 struct device_node *parent,
159 const struct brcmstb_intc_init_params
162 unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN;
163 unsigned int set = 0;
164 struct brcmstb_l2_intc_data *data;
165 struct irq_chip_type *ct;
171 data = kzalloc(sizeof(*data), GFP_KERNEL);
175 base = of_iomap(np, 0);
177 pr_err("failed to remap intc L2 registers\n");
182 /* Disable all interrupts by default */
183 writel(0xffffffff, base + init_params->cpu_mask_set);
185 /* Wakeup interrupts may be retained from S5 (cold boot) */
186 data->can_wake = of_property_read_bool(np, "brcm,irq-can-wake");
187 if (!data->can_wake && (init_params->cpu_clear >= 0))
188 writel(0xffffffff, base + init_params->cpu_clear);
190 parent_irq = irq_of_parse_and_map(np, 0);
192 pr_err("failed to find parent interrupt\n");
197 data->domain = irq_domain_add_linear(np, 32,
198 &irq_generic_chip_ops, NULL);
204 /* MIPS chips strapped for BE will automagically configure the
205 * peripheral registers for CPU-native byte order.
208 if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
209 flags |= IRQ_GC_BE_IO;
211 if (init_params->handler == handle_level_irq)
214 /* Allocate a single Generic IRQ chip for this node */
215 ret = irq_alloc_domain_generic_chips(data->domain, 32, 1,
216 np->full_name, init_params->handler, clr, set, flags);
218 pr_err("failed to allocate generic irq chip\n");
219 goto out_free_domain;
222 /* Set the IRQ chaining logic */
223 irq_set_chained_handler_and_data(parent_irq,
224 brcmstb_l2_intc_irq_handle, data);
226 data->gc = irq_get_domain_generic_chip(data->domain, 0);
227 data->gc->reg_base = base;
228 data->gc->private = data;
229 data->status_offset = init_params->cpu_status;
230 data->mask_offset = init_params->cpu_mask_status;
232 ct = data->gc->chip_types;
234 if (init_params->cpu_clear >= 0) {
235 ct->regs.ack = init_params->cpu_clear;
236 ct->chip.irq_ack = irq_gc_ack_set_bit;
237 ct->chip.irq_mask_ack = brcmstb_l2_mask_and_ack;
239 /* No Ack - but still slightly more efficient to define this */
240 ct->chip.irq_mask_ack = irq_gc_mask_disable_reg;
243 ct->chip.irq_mask = irq_gc_mask_disable_reg;
244 ct->regs.disable = init_params->cpu_mask_set;
245 ct->regs.mask = init_params->cpu_mask_status;
247 ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
248 ct->regs.enable = init_params->cpu_mask_clear;
250 ct->chip.irq_suspend = brcmstb_l2_intc_suspend;
251 ct->chip.irq_resume = brcmstb_l2_intc_resume;
252 ct->chip.irq_pm_shutdown = brcmstb_l2_intc_suspend;
254 if (data->can_wake) {
255 /* This IRQ chip can wake the system, set all child interrupts
256 * in wake_enabled mask
258 data->gc->wake_enabled = 0xffffffff;
259 ct->chip.irq_set_wake = irq_gc_set_wake;
260 enable_irq_wake(parent_irq);
263 pr_info("registered L2 intc (%pOF, parent irq: %d)\n", np, parent_irq);
268 irq_domain_remove(data->domain);
276 static int __init brcmstb_l2_edge_intc_of_init(struct device_node *np,
277 struct device_node *parent)
279 return brcmstb_l2_intc_of_init(np, parent, &l2_edge_intc_init);
282 static int __init brcmstb_l2_lvl_intc_of_init(struct device_node *np,
283 struct device_node *parent)
285 return brcmstb_l2_intc_of_init(np, parent, &l2_lvl_intc_init);
288 IRQCHIP_PLATFORM_DRIVER_BEGIN(brcmstb_l2)
289 IRQCHIP_MATCH("brcm,l2-intc", brcmstb_l2_edge_intc_of_init)
290 IRQCHIP_MATCH("brcm,hif-spi-l2-intc", brcmstb_l2_edge_intc_of_init)
291 IRQCHIP_MATCH("brcm,upg-aux-aon-l2-intc", brcmstb_l2_edge_intc_of_init)
292 IRQCHIP_MATCH("brcm,bcm7271-l2-intc", brcmstb_l2_lvl_intc_of_init)
293 IRQCHIP_PLATFORM_DRIVER_END(brcmstb_l2)
294 MODULE_DESCRIPTION("Broadcom STB generic L2 interrupt controller");
295 MODULE_LICENSE("GPL v2");