2 * Marvell Orion SoCs IRQ chip driver.
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
12 #include <linux/irq.h>
14 #include <linux/of_address.h>
15 #include <linux/of_irq.h>
16 #include <asm/exception.h>
17 #include <asm/mach/irq.h>
22 * Orion SoC main interrupt controller
24 #define ORION_IRQS_PER_CHIP 32
26 #define ORION_IRQ_CAUSE 0x00
27 #define ORION_IRQ_MASK 0x04
28 #define ORION_IRQ_FIQ_MASK 0x08
29 #define ORION_IRQ_ENDP_MASK 0x0c
31 static struct irq_domain *orion_irq_domain;
33 static asmlinkage void
34 __exception_irq_entry orion_handle_irq(struct pt_regs *regs)
36 struct irq_domain_chip_generic *dgc = orion_irq_domain->gc;
39 for (n = 0; n < dgc->num_chips; n++, base += ORION_IRQS_PER_CHIP) {
40 struct irq_chip_generic *gc =
41 irq_get_domain_generic_chip(orion_irq_domain, base);
42 u32 stat = readl_relaxed(gc->reg_base + ORION_IRQ_CAUSE) &
45 u32 hwirq = ffs(stat) - 1;
46 u32 irq = irq_find_mapping(orion_irq_domain,
47 gc->irq_base + hwirq);
48 handle_IRQ(irq, regs);
49 stat &= ~(1 << hwirq);
54 static int __init orion_irq_init(struct device_node *np,
55 struct device_node *parent)
57 unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN;
58 int n, ret, base, num_chips = 0;
61 /* count number of irq chips by valid reg addresses */
62 while (of_address_to_resource(np, num_chips, &r) == 0)
65 orion_irq_domain = irq_domain_add_linear(np,
66 num_chips * ORION_IRQS_PER_CHIP,
67 &irq_generic_chip_ops, NULL);
68 if (!orion_irq_domain)
69 panic("%s: unable to add irq domain\n", np->name);
71 ret = irq_alloc_domain_generic_chips(orion_irq_domain,
72 ORION_IRQS_PER_CHIP, 1, np->name,
73 handle_level_irq, clr, 0,
74 IRQ_GC_INIT_MASK_CACHE);
76 panic("%s: unable to alloc irq domain gc\n", np->name);
78 for (n = 0, base = 0; n < num_chips; n++, base += ORION_IRQS_PER_CHIP) {
79 struct irq_chip_generic *gc =
80 irq_get_domain_generic_chip(orion_irq_domain, base);
82 of_address_to_resource(np, n, &r);
84 if (!request_mem_region(r.start, resource_size(&r), np->name))
85 panic("%s: unable to request mem region %d",
88 gc->reg_base = ioremap(r.start, resource_size(&r));
90 panic("%s: unable to map resource %d", np->name, n);
92 gc->chip_types[0].regs.mask = ORION_IRQ_MASK;
93 gc->chip_types[0].chip.irq_mask = irq_gc_mask_clr_bit;
94 gc->chip_types[0].chip.irq_unmask = irq_gc_mask_set_bit;
96 /* mask all interrupts */
97 writel(0, gc->reg_base + ORION_IRQ_MASK);
100 set_handle_irq(orion_handle_irq);
103 IRQCHIP_DECLARE(orion_intc, "marvell,orion-intc", orion_irq_init);
106 * Orion SoC bridge interrupt controller
108 #define ORION_BRIDGE_IRQ_CAUSE 0x00
109 #define ORION_BRIDGE_IRQ_MASK 0x04
111 static void orion_bridge_irq_handler(unsigned int irq, struct irq_desc *desc)
113 struct irq_domain *d = irq_get_handler_data(irq);
114 struct irq_chip_generic *gc = irq_get_domain_generic_chip(d, irq);
115 u32 stat = readl_relaxed(gc->reg_base + ORION_BRIDGE_IRQ_CAUSE) &
119 u32 hwirq = ffs(stat) - 1;
121 generic_handle_irq(irq_find_mapping(d, gc->irq_base + hwirq));
122 stat &= ~(1 << hwirq);
126 static int __init orion_bridge_irq_init(struct device_node *np,
127 struct device_node *parent)
129 unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN;
131 struct irq_domain *domain;
132 struct irq_chip_generic *gc;
133 int ret, irq, nrirqs = 32;
135 /* get optional number of interrupts provided */
136 of_property_read_u32(np, "marvell,#interrupts", &nrirqs);
138 domain = irq_domain_add_linear(np, nrirqs,
139 &irq_generic_chip_ops, NULL);
141 pr_err("%s: unable to add irq domain\n", np->name);
145 ret = irq_alloc_domain_generic_chips(domain, nrirqs, 1, np->name,
146 handle_level_irq, clr, 0, IRQ_GC_INIT_MASK_CACHE);
148 pr_err("%s: unable to alloc irq domain gc\n", np->name);
152 ret = of_address_to_resource(np, 0, &r);
154 pr_err("%s: unable to get resource\n", np->name);
158 if (!request_mem_region(r.start, resource_size(&r), np->name)) {
159 pr_err("%s: unable to request mem region\n", np->name);
163 /* Map the parent interrupt for the chained handler */
164 irq = irq_of_parse_and_map(np, 0);
166 pr_err("%s: unable to parse irq\n", np->name);
170 gc = irq_get_domain_generic_chip(domain, 0);
171 gc->reg_base = ioremap(r.start, resource_size(&r));
173 pr_err("%s: unable to map resource\n", np->name);
177 gc->chip_types[0].regs.ack = ORION_BRIDGE_IRQ_CAUSE;
178 gc->chip_types[0].regs.mask = ORION_BRIDGE_IRQ_MASK;
179 gc->chip_types[0].chip.irq_ack = irq_gc_ack_clr_bit;
180 gc->chip_types[0].chip.irq_mask = irq_gc_mask_clr_bit;
181 gc->chip_types[0].chip.irq_unmask = irq_gc_mask_set_bit;
183 /* mask all interrupts */
184 writel(0, gc->reg_base + ORION_BRIDGE_IRQ_MASK);
186 irq_set_handler_data(irq, domain);
187 irq_set_chained_handler(irq, orion_bridge_irq_handler);
191 IRQCHIP_DECLARE(orion_bridge_intc,
192 "marvell,orion-bridge-intc", orion_bridge_irq_init);