From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pantelis Antoniou Subject: [PATCH 00/10] Introduce Juniper PTXPMB CPLD driver Date: Fri, 7 Oct 2016 18:17:21 +0300 Message-ID: <1475853451-22121-1-git-send-email-pantelis.antoniou@konsulko.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-mtd" Errors-To: linux-mtd-bounces+gldm-linux-mtd-36=gmane.org@lists.infradead.org To: Lee Jones Cc: Mark Rutland , Wolfram Sang , Linus Walleij , Pantelis Antoniou , linux-kernel@vger.kernel.org, Wim Van Sebroeck , linux-mtd@lists.infradead.org, linux-i2c@vger.kernel.org, Frank Rowand , Alexandre Courbot , JawaharBalaji Thirumalaisamy , Guenter Roeck , devicetree@vger.kernel.org, linux-watchdog@vger.kernel.org, linux-gpio@vger.kernel.org, Rob Herring , Debjit Ghosh , Georgi Vlaev , Rajat Jain , Guenter Roeck , Brian Norris , David Woodhouse , Peter Rosin List-Id: linux-gpio@vger.kernel.org Add Juniper's PTXPMB FPGA CPLD driver. Those FPGAs are present in Juniper's PTX series of routers. The MFD driver provices watchdog/i2c/gpio/mtd devices. There are full device tree binding documents for the master mfd driver and for all slave drivers. This patchset is against mainline as of today: v4.8-9431-g3477d16 and is dependent on the "Juniper prerequisites" and "Juniper infrastructure" patchsets sent earlier. Georgi Vlaev (5): mfd: ptxpmb-cpld: Add documentation for PTXPMB CPLD watchdog: ptxpmb-wdt: Add ptxpmb-wdt device tree bindings i2c: i2c-mux-ptxpmb-cpld: Add device tree bindings gpio: ptxpmb-cpld: Document bindings of PTXPMB's CPLD GPIO mtd: ngpmb_nvram: Add bindings for Juniper's ngpmb NVRAM Guenter Roeck (4): mfd: Juniper PTXPMB CPLD Multi-function core driver watchdog: Add support for PTXPMB CPLD watchdog i2c/muxes: Juniper's PTXPMB CPLD I2C multiplexer gpio: ptxpmb-cpld: Add support for PTXPMB CPLD's GPIO JawaharBalaji Thirumalaisamy (1): mtd: devices: Add driver for memory mapped NVRAM on FPC .../bindings/gpio/jnx,gpio-ptxpmb-cpld.txt | 30 ++ .../bindings/i2c/jnx,i2c-mux-ptxpmb-cpld.txt | 50 +++ .../devicetree/bindings/mfd/jnx-ptxpmb-cpld.txt | 76 ++++ .../devicetree/bindings/mtd/ngpmb-nvram.txt | 22 ++ .../bindings/watchdog/jnx-ptxpmb-wdt.txt | 17 + drivers/gpio/Kconfig | 11 + drivers/gpio/Makefile | 1 + drivers/gpio/gpio-ptxpmb-cpld.c | 177 +++++++++ drivers/i2c/muxes/Kconfig | 11 + drivers/i2c/muxes/Makefile | 1 + drivers/i2c/muxes/i2c-mux-ptxpmb.c | 299 +++++++++++++++ drivers/mfd/Kconfig | 15 + drivers/mfd/Makefile | 1 + drivers/mfd/ptxpmb-cpld-core.c | 406 +++++++++++++++++++++ drivers/mtd/devices/Kconfig | 11 + drivers/mtd/devices/Makefile | 1 + drivers/mtd/devices/jnx_pmb_nvram.c | 191 ++++++++++ drivers/watchdog/Kconfig | 12 + drivers/watchdog/Makefile | 1 + drivers/watchdog/ptxpmb_wdt.c | 283 ++++++++++++++ include/linux/mfd/ptxpmb_cpld.h | 140 +++++++ 21 files changed, 1756 insertions(+) create mode 100644 Documentation/devicetree/bindings/gpio/jnx,gpio-ptxpmb-cpld.txt create mode 100644 Documentation/devicetree/bindings/i2c/jnx,i2c-mux-ptxpmb-cpld.txt create mode 100644 Documentation/devicetree/bindings/mfd/jnx-ptxpmb-cpld.txt create mode 100644 Documentation/devicetree/bindings/mtd/ngpmb-nvram.txt create mode 100644 Documentation/devicetree/bindings/watchdog/jnx-ptxpmb-wdt.txt create mode 100644 drivers/gpio/gpio-ptxpmb-cpld.c create mode 100644 drivers/i2c/muxes/i2c-mux-ptxpmb.c create mode 100644 drivers/mfd/ptxpmb-cpld-core.c create mode 100644 drivers/mtd/devices/jnx_pmb_nvram.c create mode 100644 drivers/watchdog/ptxpmb_wdt.c create mode 100644 include/linux/mfd/ptxpmb_cpld.h -- 1.9.1 ______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/ From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757445AbcJGPoh (ORCPT ); Fri, 7 Oct 2016 11:44:37 -0400 Received: from mail-wm0-f49.google.com ([74.125.82.49]:36332 "EHLO mail-wm0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756855AbcJGPTl (ORCPT ); Fri, 7 Oct 2016 11:19:41 -0400 From: Pantelis Antoniou To: Lee Jones Cc: Rob Herring , Linus Walleij , Alexandre Courbot , Mark Rutland , Frank Rowand , Wolfram Sang , David Woodhouse , Brian Norris , Wim Van Sebroeck , Guenter Roeck , Peter Rosin , Debjit Ghosh , Georgi Vlaev , Guenter Roeck , JawaharBalaji Thirumalaisamy , Rajat Jain , Pantelis Antoniou , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org, linux-i2c@vger.kernel.org, linux-mtd@lists.infradead.org, linux-watchdog@vger.kernel.org Subject: [PATCH 00/10] Introduce Juniper PTXPMB CPLD driver Date: Fri, 7 Oct 2016 18:17:21 +0300 Message-Id: <1475853451-22121-1-git-send-email-pantelis.antoniou@konsulko.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add Juniper's PTXPMB FPGA CPLD driver. Those FPGAs are present in Juniper's PTX series of routers. The MFD driver provices watchdog/i2c/gpio/mtd devices. There are full device tree binding documents for the master mfd driver and for all slave drivers. This patchset is against mainline as of today: v4.8-9431-g3477d16 and is dependent on the "Juniper prerequisites" and "Juniper infrastructure" patchsets sent earlier. Georgi Vlaev (5): mfd: ptxpmb-cpld: Add documentation for PTXPMB CPLD watchdog: ptxpmb-wdt: Add ptxpmb-wdt device tree bindings i2c: i2c-mux-ptxpmb-cpld: Add device tree bindings gpio: ptxpmb-cpld: Document bindings of PTXPMB's CPLD GPIO mtd: ngpmb_nvram: Add bindings for Juniper's ngpmb NVRAM Guenter Roeck (4): mfd: Juniper PTXPMB CPLD Multi-function core driver watchdog: Add support for PTXPMB CPLD watchdog i2c/muxes: Juniper's PTXPMB CPLD I2C multiplexer gpio: ptxpmb-cpld: Add support for PTXPMB CPLD's GPIO JawaharBalaji Thirumalaisamy (1): mtd: devices: Add driver for memory mapped NVRAM on FPC .../bindings/gpio/jnx,gpio-ptxpmb-cpld.txt | 30 ++ .../bindings/i2c/jnx,i2c-mux-ptxpmb-cpld.txt | 50 +++ .../devicetree/bindings/mfd/jnx-ptxpmb-cpld.txt | 76 ++++ .../devicetree/bindings/mtd/ngpmb-nvram.txt | 22 ++ .../bindings/watchdog/jnx-ptxpmb-wdt.txt | 17 + drivers/gpio/Kconfig | 11 + drivers/gpio/Makefile | 1 + drivers/gpio/gpio-ptxpmb-cpld.c | 177 +++++++++ drivers/i2c/muxes/Kconfig | 11 + drivers/i2c/muxes/Makefile | 1 + drivers/i2c/muxes/i2c-mux-ptxpmb.c | 299 +++++++++++++++ drivers/mfd/Kconfig | 15 + drivers/mfd/Makefile | 1 + drivers/mfd/ptxpmb-cpld-core.c | 406 +++++++++++++++++++++ drivers/mtd/devices/Kconfig | 11 + drivers/mtd/devices/Makefile | 1 + drivers/mtd/devices/jnx_pmb_nvram.c | 191 ++++++++++ drivers/watchdog/Kconfig | 12 + drivers/watchdog/Makefile | 1 + drivers/watchdog/ptxpmb_wdt.c | 283 ++++++++++++++ include/linux/mfd/ptxpmb_cpld.h | 140 +++++++ 21 files changed, 1756 insertions(+) create mode 100644 Documentation/devicetree/bindings/gpio/jnx,gpio-ptxpmb-cpld.txt create mode 100644 Documentation/devicetree/bindings/i2c/jnx,i2c-mux-ptxpmb-cpld.txt create mode 100644 Documentation/devicetree/bindings/mfd/jnx-ptxpmb-cpld.txt create mode 100644 Documentation/devicetree/bindings/mtd/ngpmb-nvram.txt create mode 100644 Documentation/devicetree/bindings/watchdog/jnx-ptxpmb-wdt.txt create mode 100644 drivers/gpio/gpio-ptxpmb-cpld.c create mode 100644 drivers/i2c/muxes/i2c-mux-ptxpmb.c create mode 100644 drivers/mfd/ptxpmb-cpld-core.c create mode 100644 drivers/mtd/devices/jnx_pmb_nvram.c create mode 100644 drivers/watchdog/ptxpmb_wdt.c create mode 100644 include/linux/mfd/ptxpmb_cpld.h -- 1.9.1