Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / arch / arm / mach-mv78xx0 / irq.c
bloba34b6855fb19d20df99f6d917b5ee46bf91e87a5
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * arch/arm/mach-mv78xx0/irq.c
5 * MV78xx0 IRQ handling.
6 */
7 #include <linux/gpio.h>
8 #include <linux/kernel.h>
9 #include <linux/irq.h>
10 #include <linux/io.h>
11 #include <asm/exception.h>
12 #include <plat/orion-gpio.h>
13 #include <plat/irq.h>
14 #include "bridge-regs.h"
15 #include "common.h"
17 static int __initdata gpio0_irqs[4] = {
18 IRQ_MV78XX0_GPIO_0_7,
19 IRQ_MV78XX0_GPIO_8_15,
20 IRQ_MV78XX0_GPIO_16_23,
21 IRQ_MV78XX0_GPIO_24_31,
24 static void __iomem *mv78xx0_irq_base = IRQ_VIRT_BASE;
26 static asmlinkage void
27 __exception_irq_entry mv78xx0_legacy_handle_irq(struct pt_regs *regs)
29 u32 stat;
31 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_LOW_OFF);
32 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_LOW_OFF);
33 if (stat) {
34 unsigned int hwirq = __fls(stat);
35 handle_IRQ(hwirq, regs);
36 return;
38 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_HIGH_OFF);
39 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_HIGH_OFF);
40 if (stat) {
41 unsigned int hwirq = 32 + __fls(stat);
42 handle_IRQ(hwirq, regs);
43 return;
45 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_ERR_OFF);
46 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_ERR_OFF);
47 if (stat) {
48 unsigned int hwirq = 64 + __fls(stat);
49 handle_IRQ(hwirq, regs);
50 return;
54 void __init mv78xx0_init_irq(void)
56 orion_irq_init(0, IRQ_VIRT_BASE + IRQ_MASK_LOW_OFF);
57 orion_irq_init(32, IRQ_VIRT_BASE + IRQ_MASK_HIGH_OFF);
58 orion_irq_init(64, IRQ_VIRT_BASE + IRQ_MASK_ERR_OFF);
60 set_handle_irq(mv78xx0_legacy_handle_irq);
63 * Initialize gpiolib for GPIOs 0-31. (The GPIO interrupt mask
64 * registers for core #1 are at an offset of 0x18 from those of
65 * core #0.)
67 orion_gpio_init(0, 32, GPIO_VIRT_BASE, mv78xx0_core_index() ? 0x18 : 0,
68 IRQ_MV78XX0_GPIO_START, gpio0_irqs);