From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Burton Subject: [PATCH v2 00/15] MIPS Boston board support Date: Wed, 3 Feb 2016 11:30:30 +0000 Message-ID: <1454499045-5020-1-git-send-email-paul.burton@imgtec.com> Mime-Version: 1.0 Content-Type: text/plain Cc: Paul Burton , Phil Edworthy , Arnd Bergmann , Joshua Kinard , Grygorii Strashko , Jiri Slaby , Bjorn Helgaas , "Zubair Lutfullah Kakakhel" , Kumar Gala , Yijing Wang , Ian Campbell , Rob Herring , "John Crispin" , Geert Uytterhoeven , Ray Jui , Richard Cochran , =?UTF-8?q?S=C3=B6ren=20Brinkmann?= , Michal Simek , Kalle Valo , Ralf Baechle 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: List-Id: netdev.vger.kernel.org This series introduces support for the Imagination Technologies MIPS Boston development board. Boston is an FPGA-based development board akin to the much older Malta board, built around a Xilinx FPGA running a MIPS CPU & other logic including a PCIe root port connected to an Intel EG20T Platform Controller Hub. This provides a base set of peripherals including SATA, USB, SD/MMC, ethernet, I2C & GPIOs. PCIe slots are also present for expansion. v2 of this series splits out the pch_gbe ethernet driver changes to a separate series, but keeps the Xilinx PCIe driver changes since PCIe is so central to the Boston board & the series has shrunk somewhat since its earlier submission. Applies atop v4.5-rc2. Paul Burton (15): dt-bindings: ascii-lcd: Document a binding for simple ASCII LCDs auxdisplay: driver for simple memory mapped ASCII LCD displays MIPS: PCI: Compatibility with ARM-like PCI host drivers PCI: xilinx: Keep references to both IRQ domains PCI: xilinx: Unify INTx & MSI interrupt FIFO decode PCI: xilinx: Always clear interrupt decode register PCI: xilinx: Clear interrupt FIFO during probe PCI: xilinx: Fix INTX irq dispatch PCI: xilinx: Allow build on MIPS platforms misc: pch_phub: Allow build on MIPS platforms dmaengine: pch_dma: Allow build on MIPS platforms ptp: pch: Allow build on MIPS platforms MIPS: Support for generating FIT (.itb) images dt-bindings: mips: img,boston: Document img,boston binding MIPS: Boston board support Documentation/devicetree/bindings/ascii-lcd.txt | 10 + .../devicetree/bindings/mips/img/boston.txt | 15 ++ MAINTAINERS | 14 ++ arch/mips/Kbuild.platforms | 1 + arch/mips/Kconfig | 48 +++++ arch/mips/Makefile | 6 +- arch/mips/boot/Makefile | 61 ++++++ arch/mips/boot/dts/Makefile | 1 + arch/mips/boot/dts/img/Makefile | 7 + arch/mips/boot/dts/img/boston.dts | 204 ++++++++++++++++++ arch/mips/boot/skeleton.its | 24 +++ arch/mips/boston/Makefile | 12 ++ arch/mips/boston/Platform | 8 + arch/mips/boston/init.c | 106 ++++++++++ arch/mips/boston/int.c | 33 +++ arch/mips/boston/time.c | 89 ++++++++ arch/mips/boston/vmlinux.its | 23 ++ arch/mips/configs/boston_defconfig | 173 +++++++++++++++ .../asm/mach-boston/cpu-feature-overrides.h | 26 +++ arch/mips/include/asm/mach-boston/irq.h | 18 ++ arch/mips/include/asm/mach-boston/spaces.h | 20 ++ arch/mips/include/asm/pci.h | 67 +++++- arch/mips/lib/iomap-pci.c | 2 +- arch/mips/pci/Makefile | 6 + arch/mips/pci/pci-generic.c | 138 ++++++++++++ arch/mips/pci/pci-legacy.c | 232 +++++++++++++++++++++ arch/mips/pci/pci.c | 226 +------------------- drivers/auxdisplay/Kconfig | 7 + drivers/auxdisplay/Makefile | 1 + drivers/auxdisplay/ascii-lcd.c | 230 ++++++++++++++++++++ drivers/dma/Kconfig | 2 +- drivers/misc/Kconfig | 2 +- drivers/pci/host/Kconfig | 2 +- drivers/pci/host/pcie-xilinx.c | 125 ++++++----- drivers/ptp/Kconfig | 2 +- 35 files changed, 1649 insertions(+), 292 deletions(-) create mode 100644 Documentation/devicetree/bindings/ascii-lcd.txt create mode 100644 Documentation/devicetree/bindings/mips/img/boston.txt create mode 100644 arch/mips/boot/dts/img/Makefile create mode 100644 arch/mips/boot/dts/img/boston.dts create mode 100644 arch/mips/boot/skeleton.its create mode 100644 arch/mips/boston/Makefile create mode 100644 arch/mips/boston/Platform create mode 100644 arch/mips/boston/init.c create mode 100644 arch/mips/boston/int.c create mode 100644 arch/mips/boston/time.c create mode 100644 arch/mips/boston/vmlinux.its create mode 100644 arch/mips/configs/boston_defconfig create mode 100644 arch/mips/include/asm/mach-boston/cpu-feature-overrides.h create mode 100644 arch/mips/include/asm/mach-boston/irq.h create mode 100644 arch/mips/include/asm/mach-boston/spaces.h create mode 100644 arch/mips/pci/pci-generic.c create mode 100644 arch/mips/pci/pci-legacy.c create mode 100644 drivers/auxdisplay/ascii-lcd.c -- 2.7.0