From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailapp01.imgtec.com ([195.59.15.196]:2752 "EHLO mailapp01.imgtec.com" rhost-flags-OK-OK-OK-OK) by eddie.linux-mips.org with ESMTP id S27007943AbbK3QWUYklOV (ORCPT ); Mon, 30 Nov 2015 17:22:20 +0100 From: Paul Burton Subject: [PATCH 00/28] MIPS Boston board support Date: Mon, 30 Nov 2015 16:21:25 +0000 Message-ID: <1448900513-20856-1-git-send-email-paul.burton@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: linux-mips@linux-mips.org Cc: Paul Burton , Arnd Bergmann , Joshua Kinard , Alessandro Zummo , Jiri Slaby , Bjorn Helgaas , Zubair Lutfullah Kakakhel , Linus Walleij , Kumar Gala , Yijing Wang , Ian Campbell , Rob Herring , John Crispin , Jayachandran C , linux-spi@vger.kernel.org, Geert Uytterhoeven , Ray Jui , Richard Cochran , Tejun Heo , Michal Simek , Andrew Bresticker , Russell Joyce , Thomas Gleixner , Grant Likely , Alexandre Belloni , linux-arm-kernel@lists.infradead.org, Pawel Moll , linux-pci@vger.kernel.org, Greg Kroah-Hartman , Ralf Baechle , Alexandre Courbot , Zhou Wang , Andrew Morton , Ley Foon Tan , devicetree@vger.kernel.org, Jiang Liu , linux-serial@vger.kernel.org, rtc-linux@googlegroups.com, Rob Herring , Mauro Carvalho Chehab , Wolfram Sang , Duc Dang , Frank Rowand , Vinod Koul , Markos Chandras , Michal Simek , Marc Zyngier , Dan Williams , Miguel Ojeda Sandonis , Lorenzo Pieralisi , linux-gpio@vger.kernel.org, netdev@vger.kernel.org, Mark Brown , linux-kernel@vger.kernel.org, "David S. Miller" , Joe Perches , Jingoo Han , Hauke Mehrtens , =?UTF-8?q?S=C3=B6ren=20Brinkmann?= , dmaengine@vger.kernel.org, Mark Rutland , Minghuan Lian , linux-i2c@vger.kernel.org Message-ID: <20151130162125.G7QrJ8_SBjT_LJHENbm33XxtN1NC_pMvYyGC3JEEA3o@z> 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. Paul Burton (28): serial: earlycon: allow MEM32 I/O for DT earlycon 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: 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 gpio: pch: allow build on MIPS platforms gpio: pch: allow use from device tree i2c: eg20t: allow build on MIPS platforms i2c: eg20t: set i2c_adapter->dev.of_node rtc: m41t80: add devicetree probe support spi: topcliff-pch: allow build for MIPS platforms ptp: pch: allow build on MIPS platforms net: pch_gbe: allow build on MIPS platforms net: pch_gbe: clear interrupt FIFO during probe net: pch_gbe: mark Minnow PHY reset GPIO active low net: pch_gbe: pull PHY GPIO handling out of Minnow code net: pch_gbe: always reset PHY along with MAC net: pch_gbe: add device tree support net: pch_gbe: allow longer for resets 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 | 45 ++++ 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 | 201 ++++++++++++++++++ arch/mips/boot/skeleton.its | 24 +++ arch/mips/boston/Makefile | 12 ++ arch/mips/boston/Platform | 8 + arch/mips/boston/init.c | 75 +++++++ arch/mips/boston/int.c | 33 +++ arch/mips/boston/time.c | 89 ++++++++ arch/mips/boston/vmlinux.its | 23 ++ arch/mips/configs/boston_defconfig | 170 +++++++++++++++ .../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/gpio/Kconfig | 2 +- drivers/gpio/gpio-pch.c | 1 + drivers/i2c/busses/Kconfig | 2 +- drivers/i2c/busses/i2c-eg20t.c | 1 + drivers/misc/Kconfig | 2 +- drivers/net/ethernet/oki-semi/pch_gbe/Kconfig | 2 +- drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe.h | 4 +- .../net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c | 74 +++++-- drivers/of/fdt.c | 2 +- drivers/pci/host/Kconfig | 2 +- drivers/pci/host/pcie-xilinx.c | 123 +++++------ drivers/ptp/Kconfig | 2 +- drivers/rtc/rtc-m41t80.c | 26 +++ drivers/spi/Kconfig | 2 +- drivers/tty/serial/Makefile | 1 + drivers/tty/serial/earlycon.c | 15 +- include/linux/serial_core.h | 2 +- 48 files changed, 1720 insertions(+), 313 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.6.2