From: Matthew Gerlach <matthew.gerlach@xxxxxxxxxxxxxxx> Hi Everyone, This patch set adds support for Version 2 of the Altera Quadspi Controller. Version 1 of the Altera Quadspi Controller only supported 1 byte of flash id instead of the 3 bytes required for a JEDEC ID. As such the driver for Version 1 was rejected. Please see https://patchwork.kernel.org/patch/7025681 Patch 1: add device tree bindings document for platform driver Patch 2: add core code for driver Patch 3: add platform driver Matthew Gerlach (3): ARM: dts: Bindings for Altera Quadspi Controller Version 2 mtd: spi-nor: core code for the Altera Quadspi Flash Controller v2 mtd: spi-nor: Altera Quadspi Flash Controller v2 Platform driver .../devicetree/bindings/mtd/altera-quadspi-v2.txt | 37 ++ MAINTAINERS | 8 + drivers/mtd/spi-nor/Kconfig | 10 + drivers/mtd/spi-nor/Makefile | 5 +- drivers/mtd/spi-nor/altera-quadspi-platform.c | 137 +++++ drivers/mtd/spi-nor/altera-quadspi.c | 676 +++++++++++++++++++++ include/linux/mtd/altera-quadspi.h | 28 + 7 files changed, 900 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/mtd/altera-quadspi-v2.txt create mode 100644 drivers/mtd/spi-nor/altera-quadspi-platform.c create mode 100644 drivers/mtd/spi-nor/altera-quadspi.c create mode 100644 include/linux/mtd/altera-quadspi.h -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html