From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752781AbcHZNlb (ORCPT ); Fri, 26 Aug 2016 09:41:31 -0400 Received: from mailapp01.imgtec.com ([195.59.15.196]:65412 "EHLO mailapp01.imgtec.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750869AbcHZNla (ORCPT ); Fri, 26 Aug 2016 09:41:30 -0400 Subject: Re: [PATCH V2 00/10] microblaze/MIPS: xilfpga: intc and peripheral To: , , References: <1471527804-26175-1-git-send-email-Zubair.Kakakhel@imgtec.com> CC: , , , , From: Zubair Lutfullah Kakakhel Message-ID: Date: Fri, 26 Aug 2016 14:41:16 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <1471527804-26175-1-git-send-email-Zubair.Kakakhel@imgtec.com> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [192.168.154.45] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On 08/18/2016 02:43 PM, Zubair Lutfullah Kakakhel wrote: > Hi, > > The MIPS based Xilfpga platform uses the axi interrupt controller > daisy chained to the MIPS microAptiv cpu interrupt controller. > This patch series moves the axi interrupt controller driver out > of arch/microblaze to drivers/irqchip. This makes it usable by > MIPS. The rest of the series basically enables drivers and adds dt > nodes. > > Would make sense for this to go via the MIPS tree. > Hence, ACKs from microblaze. irqchip and net welcome. > > Compile tested on microblaze-el only! > Based on v4.8-rc2 Ping. Would be nice to see this in for v4.9. Thanks ZubairLK > > Regards, > ZubairLK > > V1 -> V2 > Resubmitting without truncating the diff output for file moves > Removed accidental local mac address entry > Individual logs have more detail > > Zubair Lutfullah Kakakhel (10): > microblaze: irqchip: Move intc driver to irqchip > irqchip: xilinx: Add support for parent intc > MIPS: xilfpga: Use irqchip_init instead of the legacy way > MIPS: xilfpga: Use Xilinx AXI Interrupt Controller > MIPS: xilfpga: Update DT node and specify uart irq > MIPS: Xilfpga: Add DT node for AXI I2C > net: ethernet: xilinx: Generate random mac if none found > net: ethernet: xilinx: Enable emaclite for MIPS > MIPS: xilfpga: Add DT node for AXI emaclite > MIPS: xilfpga: Update defconfig > > arch/microblaze/Kconfig | 1 + > arch/microblaze/kernel/Makefile | 2 +- > arch/microblaze/kernel/intc.c | 196 ----------------------- > arch/mips/Kconfig | 1 + > arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 63 ++++++++ > arch/mips/configs/xilfpga_defconfig | 37 ++++- > arch/mips/xilfpga/intc.c | 7 +- > drivers/irqchip/Kconfig | 4 + > drivers/irqchip/Makefile | 1 + > drivers/irqchip/irq-axi-intc.c | 222 ++++++++++++++++++++++++++ > drivers/net/ethernet/xilinx/Kconfig | 4 +- > drivers/net/ethernet/xilinx/xilinx_emaclite.c | 6 +- > 12 files changed, 337 insertions(+), 207 deletions(-) > delete mode 100644 arch/microblaze/kernel/intc.c > create mode 100644 drivers/irqchip/irq-axi-intc.c >