Skip to content

Commit 85f7cda

Browse files
abresticralfbaechle
authored andcommitted
MIPS: Provide a generic plat_irq_dispatch
For platforms which boot with device-tree or have correctly chained all external interrupt controllers, a generic plat_irq_dispatch() can be used. Implement a plat_irq_dispatch() which simply handles all the pending interrupts as reported by C0_Cause. Signed-off-by: Andrew Bresticker <abrestic@chromium.org> Reviewed-by: Qais Yousef <qais.yousef@imgtec.com> Tested-by: Qais Yousef <qais.yousef@imgtec.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Jason Cooper <jason@lakedaemon.net> Cc: Andrew Bresticker <abrestic@chromium.org> Cc: Jeffrey Deans <jeffrey.deans@imgtec.com> Cc: Markos Chandras <markos.chandras@imgtec.com> Cc: Paul Burton <paul.burton@imgtec.com> Cc: Qais Yousef <qais.yousef@imgtec.com> Cc: Jonas Gorski <jogo@openwrt.org> Cc: John Crispin <blogic@openwrt.org> Cc: David Daney <ddaney.cavm@gmail.com> Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/7801/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
1 parent afe8dc2 commit 85f7cda

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

arch/mips/kernel/irq_cpu.c

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,24 @@ static struct irq_chip mips_mt_cpu_irq_controller = {
9494
.irq_eoi = unmask_mips_irq,
9595
};
9696

97+
asmlinkage void __weak plat_irq_dispatch(void)
98+
{
99+
unsigned long pending = read_c0_cause() & read_c0_status() & ST0_IM;
100+
int irq;
101+
102+
if (!pending) {
103+
spurious_interrupt();
104+
return;
105+
}
106+
107+
pending >>= CAUSEB_IP;
108+
while (pending) {
109+
irq = fls(pending) - 1;
110+
do_IRQ(MIPS_CPU_IRQ_BASE + irq);
111+
pending &= ~BIT(irq);
112+
}
113+
}
114+
97115
static int mips_cpu_intc_map(struct irq_domain *d, unsigned int irq,
98116
irq_hw_number_t hw)
99117
{

0 commit comments

Comments
 (0)