From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Gleixner Subject: Re: [PATCH v2 01/16] MIPS: Provide a generic plat_irq_dispatch Date: Fri, 5 Sep 2014 20:51:59 +0200 (CEST) Message-ID: References: <1409938218-9026-1-git-send-email-abrestic@chromium.org> <1409938218-9026-2-git-send-email-abrestic@chromium.org> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Return-path: In-Reply-To: <1409938218-9026-2-git-send-email-abrestic-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org> Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Andrew Bresticker Cc: Ralf Baechle , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Jason Cooper , Jeffrey Deans , Markos Chandras , Paul Burton , Arnd Bergmann , John Crispin , David Daney , linux-mips-6z/3iImG2C8G8FEW9MqTrA@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: devicetree@vger.kernel.org On Fri, 5 Sep 2014, Andrew Bresticker wrote: > For platforms which boot with device-tree and use the MIPS CPU interrupt > controller binding, a generic plat_irq_dispatch() can be used since all > CPU interrupts should be mapped through the CPU IRQ domain. Implement a > plat_irq_dispatch() which simply handles the highest pending interrupt. > > Signed-off-by: Andrew Bresticker > Tested-by: Jonas Gorski > --- > No changes from v1. > --- > arch/mips/kernel/irq_cpu.c | 28 +++++++++++++++++++++++----- > 1 file changed, 23 insertions(+), 5 deletions(-) > > diff --git a/arch/mips/kernel/irq_cpu.c b/arch/mips/kernel/irq_cpu.c > index e498f2b..9cf8459 100644 > --- a/arch/mips/kernel/irq_cpu.c > +++ b/arch/mips/kernel/irq_cpu.c > @@ -116,6 +116,24 @@ void __init mips_cpu_irq_init(void) > } > > #ifdef CONFIG_IRQ_DOMAIN > +static struct irq_domain *mips_intc_domain; > + > +asmlinkage void __weak plat_irq_dispatch(void) > +{ > + unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM; > + unsigned int hw; > + int irq; > + > + if (!pending) { > + spurious_interrupt(); > + return; > + } > + > + hw = fls(pending) - CAUSEB_IP - 1; > + irq = irq_linear_revmap(mips_intc_domain, hw); > + do_IRQ(irq); Why are you not handling all pending interrupts in a loop? Thanks, tglx -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html