From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753134AbcIAWDz (ORCPT ); Thu, 1 Sep 2016 18:03:55 -0400 Received: from foss.arm.com ([217.140.101.70]:40126 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752353AbcIAWDw (ORCPT ); Thu, 1 Sep 2016 18:03:52 -0400 Subject: Re: [Patch v4 04/12] irqchip: axi-intc: Add support for parent intc To: Zubair Lutfullah Kakakhel , monstr@monstr.eu, ralf@linux-mips.org, tglx@linutronix.de, jason@lakedaemon.net References: <1472748665-47774-1-git-send-email-Zubair.Kakakhel@imgtec.com> <1472748665-47774-5-git-send-email-Zubair.Kakakhel@imgtec.com> Cc: soren.brinkmann@xilinx.com, linux-kernel@vger.kernel.org, linux-mips@linux-mips.org, michal.simek@xilinx.com, netdev@vger.kernel.org From: Marc Zyngier Organization: ARM Ltd Message-ID: <57C862C6.7070703@arm.com> Date: Thu, 1 Sep 2016 18:17:58 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Icedove/38.7.0 MIME-Version: 1.0 In-Reply-To: <1472748665-47774-5-git-send-email-Zubair.Kakakhel@imgtec.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/09/16 17:50, Zubair Lutfullah Kakakhel wrote: > The MIPS based xilfpga platform has the following IRQ structure > > Peripherals --> xilinx_intcontroller -> mips_cpu_int controller > > Add support for the driver to chain the irq handler > > Signed-off-by: Zubair Lutfullah Kakakhel > > --- > V3 -> V4 > Clean up if/else when a parent is found > Pass irqchip structure to handler as data > > V2 -> V3 > Reused existing parent node instead of finding again. > Cleanup up handler based on review > > V1 -> V2 > > No change > --- > drivers/irqchip/irq-axi-intc.c | 25 +++++++++++++++++++++++-- > 1 file changed, 23 insertions(+), 2 deletions(-) > > diff --git a/drivers/irqchip/irq-axi-intc.c b/drivers/irqchip/irq-axi-intc.c > index ac31548..683b1f7 100644 > --- a/drivers/irqchip/irq-axi-intc.c > +++ b/drivers/irqchip/irq-axi-intc.c > @@ -15,6 +15,7 @@ > #include > #include > #include > +#include > > /* No one else should require these constants, so define them locally here. */ > #define ISR 0x00 /* Interrupt Status Register */ > @@ -154,11 +155,23 @@ static const struct irq_domain_ops xintc_irq_domain_ops = { > .map = xintc_map, > }; > > +static void xil_intc_irq_handler(struct irq_desc *desc) > +{ > + u32 pending; > + > + do { > + pending = xintc_get_irq(); > + if (pending == -1U) > + break; > + generic_handle_irq(pending); > + } while (true); > +} > + > static int __init xilinx_intc_of_init(struct device_node *intc, > struct device_node *parent) > { > u32 nr_irq; > - int ret; > + int ret, irq; > struct xintc_irq_chip *irqc; > > irqc = kzalloc(sizeof(*irqc), GFP_KERNEL); > @@ -217,7 +230,15 @@ static int __init xilinx_intc_of_init(struct device_node *intc, > root_domain = irq_domain_add_linear(intc, nr_irq, &xintc_irq_domain_ops, > irqc); > > - irq_set_default_host(root_domain); > + if (parent) { > + irq = irq_of_parse_and_map(intc, 0); > + if (irq) > + irq_set_chained_handler_and_data(irq, > + xil_intc_irq_handler, > + irqc); > + > + } else > + irq_set_default_host(root_domain); Coding style, please. Thanks, M. -- Jazz is not dead. It just smells funny...