1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2020, Jiaxun Yang <jiaxun.yang@flygoat.com>
4 * Loongson Local IO Interrupt Controller support
7 #include <linux/errno.h>
8 #include <linux/init.h>
9 #include <linux/types.h>
10 #include <linux/interrupt.h>
11 #include <linux/ioport.h>
12 #include <linux/irqchip.h>
13 #include <linux/of_address.h>
14 #include <linux/of_irq.h>
16 #include <linux/smp.h>
17 #include <linux/irqchip/chained_irq.h>
22 #include <asm/loongson.h>
25 #define LIOINTC_CHIP_IRQ 32
26 #define LIOINTC_NUM_PARENT 4
27 #define LIOINTC_NUM_CORES 4
29 #define LIOINTC_INTC_CHIP_START 0x20
31 #define LIOINTC_REG_INTC_STATUS (LIOINTC_INTC_CHIP_START + 0x20)
32 #define LIOINTC_REG_INTC_EN_STATUS (LIOINTC_INTC_CHIP_START + 0x04)
33 #define LIOINTC_REG_INTC_ENABLE (LIOINTC_INTC_CHIP_START + 0x08)
34 #define LIOINTC_REG_INTC_DISABLE (LIOINTC_INTC_CHIP_START + 0x0c)
35 #define LIOINTC_REG_INTC_POL (LIOINTC_INTC_CHIP_START + 0x10)
36 #define LIOINTC_REG_INTC_EDGE (LIOINTC_INTC_CHIP_START + 0x14)
38 #define LIOINTC_SHIFT_INTx 4
40 #define LIOINTC_ERRATA_IRQ 10
42 #if defined(CONFIG_MIPS)
43 #define liointc_core_id get_ebase_cpunum()
45 #define liointc_core_id get_csr_cpuid()
48 struct liointc_handler_data {
49 struct liointc_priv *priv;
54 struct irq_chip_generic *gc;
55 struct liointc_handler_data handler[LIOINTC_NUM_PARENT];
56 void __iomem *core_isr[LIOINTC_NUM_CORES];
57 u8 map_cache[LIOINTC_CHIP_IRQ];
58 bool has_lpc_irq_errata;
61 static void liointc_chained_handle_irq(struct irq_desc *desc)
63 struct liointc_handler_data *handler = irq_desc_get_handler_data(desc);
64 struct irq_chip *chip = irq_desc_get_chip(desc);
65 struct irq_chip_generic *gc = handler->priv->gc;
66 int core = liointc_core_id % LIOINTC_NUM_CORES;
69 chained_irq_enter(chip, desc);
71 pending = readl(handler->priv->core_isr[core]);
74 /* Always blame LPC IRQ if we have that bug */
75 if (handler->priv->has_lpc_irq_errata &&
76 (handler->parent_int_map & gc->mask_cache &
77 BIT(LIOINTC_ERRATA_IRQ)))
78 pending = BIT(LIOINTC_ERRATA_IRQ);
84 int bit = __ffs(pending);
86 generic_handle_domain_irq(gc->domain, bit);
90 chained_irq_exit(chip, desc);
93 static void liointc_set_bit(struct irq_chip_generic *gc,
98 writel(readl(gc->reg_base + offset) | mask,
99 gc->reg_base + offset);
101 writel(readl(gc->reg_base + offset) & ~mask,
102 gc->reg_base + offset);
105 static int liointc_set_type(struct irq_data *data, unsigned int type)
107 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data);
108 u32 mask = data->mask;
111 irq_gc_lock_irqsave(gc, flags);
113 case IRQ_TYPE_LEVEL_HIGH:
114 liointc_set_bit(gc, LIOINTC_REG_INTC_EDGE, mask, false);
115 liointc_set_bit(gc, LIOINTC_REG_INTC_POL, mask, true);
117 case IRQ_TYPE_LEVEL_LOW:
118 liointc_set_bit(gc, LIOINTC_REG_INTC_EDGE, mask, false);
119 liointc_set_bit(gc, LIOINTC_REG_INTC_POL, mask, false);
121 case IRQ_TYPE_EDGE_RISING:
122 liointc_set_bit(gc, LIOINTC_REG_INTC_EDGE, mask, true);
123 liointc_set_bit(gc, LIOINTC_REG_INTC_POL, mask, true);
125 case IRQ_TYPE_EDGE_FALLING:
126 liointc_set_bit(gc, LIOINTC_REG_INTC_EDGE, mask, true);
127 liointc_set_bit(gc, LIOINTC_REG_INTC_POL, mask, false);
130 irq_gc_unlock_irqrestore(gc, flags);
133 irq_gc_unlock_irqrestore(gc, flags);
135 irqd_set_trigger_type(data, type);
139 static void liointc_resume(struct irq_chip_generic *gc)
141 struct liointc_priv *priv = gc->private;
145 irq_gc_lock_irqsave(gc, flags);
146 /* Disable all at first */
147 writel(0xffffffff, gc->reg_base + LIOINTC_REG_INTC_DISABLE);
148 /* Restore map cache */
149 for (i = 0; i < LIOINTC_CHIP_IRQ; i++)
150 writeb(priv->map_cache[i], gc->reg_base + i);
151 /* Restore mask cache */
152 writel(gc->mask_cache, gc->reg_base + LIOINTC_REG_INTC_ENABLE);
153 irq_gc_unlock_irqrestore(gc, flags);
156 static const char * const parent_names[] = {"int0", "int1", "int2", "int3"};
157 static const char * const core_reg_names[] = {"isr0", "isr1", "isr2", "isr3"};
159 static void __iomem *liointc_get_reg_byname(struct device_node *node,
162 int index = of_property_match_string(node, "reg-names", name);
167 return of_iomap(node, index);
170 static int __init liointc_of_init(struct device_node *node,
171 struct device_node *parent)
173 struct irq_chip_generic *gc;
174 struct irq_domain *domain;
175 struct irq_chip_type *ct;
176 struct liointc_priv *priv;
178 u32 of_parent_int_map[LIOINTC_NUM_PARENT];
179 int parent_irq[LIOINTC_NUM_PARENT];
180 bool have_parent = FALSE;
183 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
187 if (of_device_is_compatible(node, "loongson,liointc-2.0")) {
188 base = liointc_get_reg_byname(node, "main");
194 for (i = 0; i < LIOINTC_NUM_CORES; i++)
195 priv->core_isr[i] = liointc_get_reg_byname(node, core_reg_names[i]);
196 if (!priv->core_isr[0]) {
198 goto out_iounmap_base;
201 base = of_iomap(node, 0);
207 for (i = 0; i < LIOINTC_NUM_CORES; i++)
208 priv->core_isr[i] = base + LIOINTC_REG_INTC_STATUS;
211 for (i = 0; i < LIOINTC_NUM_PARENT; i++) {
212 parent_irq[i] = of_irq_get_byname(node, parent_names[i]);
213 if (parent_irq[i] > 0)
218 goto out_iounmap_isr;
221 sz = of_property_read_variable_u32_array(node,
222 "loongson,parent_int_map",
223 &of_parent_int_map[0],
227 pr_err("loongson-liointc: No parent_int_map\n");
229 goto out_iounmap_isr;
232 for (i = 0; i < LIOINTC_NUM_PARENT; i++)
233 priv->handler[i].parent_int_map = of_parent_int_map[i];
235 /* Setup IRQ domain */
236 domain = irq_domain_add_linear(node, 32,
237 &irq_generic_chip_ops, priv);
239 pr_err("loongson-liointc: cannot add IRQ domain\n");
241 goto out_iounmap_isr;
244 err = irq_alloc_domain_generic_chips(domain, 32, 1,
245 node->full_name, handle_level_irq,
248 pr_err("loongson-liointc: unable to register IRQ domain\n");
249 goto out_free_domain;
253 /* Disable all IRQs */
254 writel(0xffffffff, base + LIOINTC_REG_INTC_DISABLE);
255 /* Set to level triggered */
256 writel(0x0, base + LIOINTC_REG_INTC_EDGE);
258 /* Generate parent INT part of map cache */
259 for (i = 0; i < LIOINTC_NUM_PARENT; i++) {
260 u32 pending = priv->handler[i].parent_int_map;
263 int bit = __ffs(pending);
265 priv->map_cache[bit] = BIT(i) << LIOINTC_SHIFT_INTx;
266 pending &= ~BIT(bit);
270 for (i = 0; i < LIOINTC_CHIP_IRQ; i++) {
271 /* Generate core part of map cache */
272 priv->map_cache[i] |= BIT(loongson_sysconf.boot_cpu_id);
273 writeb(priv->map_cache[i], base + i);
276 gc = irq_get_domain_generic_chip(domain, 0);
280 gc->resume = liointc_resume;
283 ct->regs.enable = LIOINTC_REG_INTC_ENABLE;
284 ct->regs.disable = LIOINTC_REG_INTC_DISABLE;
285 ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
286 ct->chip.irq_mask = irq_gc_mask_disable_reg;
287 ct->chip.irq_mask_ack = irq_gc_mask_disable_reg;
288 ct->chip.irq_set_type = liointc_set_type;
293 for (i = 0; i < LIOINTC_NUM_PARENT; i++) {
294 if (parent_irq[i] <= 0)
297 priv->handler[i].priv = priv;
298 irq_set_chained_handler_and_data(parent_irq[i],
299 liointc_chained_handle_irq, &priv->handler[i]);
305 irq_domain_remove(domain);
307 for (i = 0; i < LIOINTC_NUM_CORES; i++) {
308 if (!priv->core_isr[i])
310 iounmap(priv->core_isr[i]);
320 IRQCHIP_DECLARE(loongson_liointc_1_0, "loongson,liointc-1.0", liointc_of_init);
321 IRQCHIP_DECLARE(loongson_liointc_1_0a, "loongson,liointc-1.0a", liointc_of_init);
322 IRQCHIP_DECLARE(loongson_liointc_2_0, "loongson,liointc-2.0", liointc_of_init);