From mboxrd@z Thu Jan 1 00:00:00 1970 From: Zubair Lutfullah Kakakhel Subject: [PATCH 0/5] MIPS: Add Xilfpga platform Date: Wed, 14 Oct 2015 13:51:52 +0100 Message-ID: <1444827117-10939-1-git-send-email-Zubair.Kakakhel@imgtec.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-subscribe: List-owner: List-post: List-archive: To: ralf@linux-mips.org, robh+dt@kernel.org, linus.walleij@linaro.org Cc: linux-mips@linux-mips.org, linux-gpio@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Zubair.Kakakhel@imgtec.com List-Id: devicetree@vger.kernel.org Hi, This series is based on v4.3-rc5. Adds support for the Imagination University Program MIPSfpga platform. See the first dt-bindings patch for details about the platform. These patches allow the kernel to boot with UART and gpio support. Acks from DT (patch 1/5) and GPIO (patch 2/5) welcome. Regards, ZubairLK Zubair Lutfullah Kakakhel (5): dt-bindings: MIPS: Document xilfpga bindings and boot style gpio/xilinx: enable for MIPS MIPS: dt: xilfpga: Add xilfpga device tree files. MIPS: xilfpga: Add mipsfpga platform code MIPS: Add xilfpga defconfig .../devicetree/bindings/mips/img/xilfpga.txt | 76 ++++++++++++++++++++++ arch/mips/Kbuild.platforms | 1 + arch/mips/Kconfig | 25 +++++++ arch/mips/boot/dts/Makefile | 1 + arch/mips/boot/dts/xilfpga/Makefile | 9 +++ arch/mips/boot/dts/xilfpga/microAptiv.dtsi | 21 ++++++ arch/mips/boot/dts/xilfpga/nexys4ddr.dts | 47 +++++++++++++ arch/mips/configs/xilfpga_defconfig | 59 +++++++++++++++++ arch/mips/include/asm/mach-xilfpga/gpio.h | 19 ++++++ arch/mips/include/asm/mach-xilfpga/irq.h | 18 +++++ arch/mips/xilfpga/Kconfig | 9 +++ arch/mips/xilfpga/Makefile | 7 ++ arch/mips/xilfpga/Platform | 3 + arch/mips/xilfpga/init.c | 57 ++++++++++++++++ arch/mips/xilfpga/intc.c | 26 ++++++++ arch/mips/xilfpga/time.c | 41 ++++++++++++ drivers/gpio/Kconfig | 2 +- 17 files changed, 420 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/mips/img/xilfpga.txt create mode 100644 arch/mips/boot/dts/xilfpga/Makefile create mode 100644 arch/mips/boot/dts/xilfpga/microAptiv.dtsi create mode 100644 arch/mips/boot/dts/xilfpga/nexys4ddr.dts create mode 100644 arch/mips/configs/xilfpga_defconfig create mode 100644 arch/mips/include/asm/mach-xilfpga/gpio.h create mode 100644 arch/mips/include/asm/mach-xilfpga/irq.h create mode 100644 arch/mips/xilfpga/Kconfig create mode 100644 arch/mips/xilfpga/Makefile create mode 100644 arch/mips/xilfpga/Platform create mode 100644 arch/mips/xilfpga/init.c create mode 100644 arch/mips/xilfpga/intc.c create mode 100644 arch/mips/xilfpga/time.c -- 1.9.1