All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] Introduce Juniper I2CS FPGA driver
@ 2016-10-07 15:20 Pantelis Antoniou
  2016-10-07 15:21   ` Pantelis Antoniou
                   ` (9 more replies)
  0 siblings, 10 replies; 30+ messages in thread
From: Pantelis Antoniou @ 2016-10-07 15:20 UTC (permalink / raw)
  To: Lee Jones
  Cc: Linus Walleij, Alexandre Courbot, Rob Herring, Mark Rutland,
	Frank Rowand, Wolfram Sang, Richard Purdie, Jacek Anaszewski,
	Jean Delvare, Peter Rosin, Avirup Banerjee, Georgi Vlaev,
	Guenter Roeck, JawaharBalaji Thirumalaisamy, Pantelis Antoniou,
	devicetree, linux-kernel, linux-gpio, linux-i2c, linux-leds,
	linux-hwmon

Add Juniper's I2CS FPGA driver. Those FPGAs
are present in Juniper's PTX series of routers.

The MFD driver provices i2c/gpio/leds/hwmon 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.

Avirup Banerjee (1):
  hwmon: Add driver for Fan Tray on Juniper I2CS FGPA

Georgi Vlaev (8):
  mfd: Add Juniper I2CS MFD driver
  mfd: dt-bindings: Add bindings for the Juniper I2CS MFD
  i2c/muxes: Juniper I2CS RE mux
  i2c: i2c-mux-i2cs: Add device tree bindings
  gpio: gpio-i2cs: Document bindings of I2CS FPGA GPIO block
  leds: i2cs: Add I2CS FPGA leds driver
  leds: Add binding for Juniper's I2CS FPGA
  hwmon: i2cs-fan: Add hwmon dts binding documentation

Guenter Roeck (1):
  gpio: i2cs: Juniper I2CS to GPIO pin mapping driver

 .../devicetree/bindings/gpio/jnx,gpio-i2cs.txt     |  43 ++
 .../devicetree/bindings/hwmon/i2cs-fan.txt         |  19 +
 .../devicetree/bindings/i2c/jnx,i2c-mux-i2cs.txt   |  27 ++
 .../devicetree/bindings/leds/leds-i2cs.txt         |  34 ++
 Documentation/devicetree/bindings/mfd/jnx-i2cs.txt |  68 +++
 drivers/gpio/Kconfig                               |  11 +
 drivers/gpio/Makefile                              |   1 +
 drivers/gpio/gpio-jnx-i2cs.c                       | 523 +++++++++++++++++++++
 drivers/hwmon/Kconfig                              |  11 +
 drivers/hwmon/Makefile                             |   1 +
 drivers/hwmon/jnx-fan.c                            | 471 +++++++++++++++++++
 drivers/i2c/muxes/Kconfig                          |  10 +
 drivers/i2c/muxes/Makefile                         |   1 +
 drivers/i2c/muxes/i2c-mux-i2cs.c                   | 155 ++++++
 drivers/leds/Kconfig                               |   9 +
 drivers/leds/Makefile                              |   1 +
 drivers/leds/leds-jnx-i2cs.c                       | 219 +++++++++
 drivers/mfd/Kconfig                                |  17 +
 drivers/mfd/Makefile                               |   1 +
 drivers/mfd/jnx-i2cs-core.c                        | 118 +++++
 include/linux/mfd/jnx-i2cs-core.h                  |  96 ++++
 include/linux/platform_data/jnx-i2cs-fan.h         |  13 +
 22 files changed, 1849 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/gpio/jnx,gpio-i2cs.txt
 create mode 100644 Documentation/devicetree/bindings/hwmon/i2cs-fan.txt
 create mode 100644 Documentation/devicetree/bindings/i2c/jnx,i2c-mux-i2cs.txt
 create mode 100644 Documentation/devicetree/bindings/leds/leds-i2cs.txt
 create mode 100644 Documentation/devicetree/bindings/mfd/jnx-i2cs.txt
 create mode 100644 drivers/gpio/gpio-jnx-i2cs.c
 create mode 100644 drivers/hwmon/jnx-fan.c
 create mode 100644 drivers/i2c/muxes/i2c-mux-i2cs.c
 create mode 100644 drivers/leds/leds-jnx-i2cs.c
 create mode 100644 drivers/mfd/jnx-i2cs-core.c
 create mode 100644 include/linux/mfd/jnx-i2cs-core.h
 create mode 100644 include/linux/platform_data/jnx-i2cs-fan.h

-- 
1.9.1

^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2016-10-21  8:59 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-07 15:20 [PATCH 00/10] Introduce Juniper I2CS FPGA driver Pantelis Antoniou
2016-10-07 15:21 ` [PATCH 01/10] mfd: Add Juniper I2CS MFD driver Pantelis Antoniou
2016-10-07 15:21   ` Pantelis Antoniou
2016-10-07 15:21 ` [PATCH 02/10] mfd: dt-bindings: Add bindings for the Juniper I2CS MFD Pantelis Antoniou
2016-10-10 20:23   ` Rob Herring
2016-10-17 19:10     ` Pantelis Antoniou
2016-10-07 15:21 ` [PATCH 03/10] i2c/muxes: Juniper I2CS RE mux Pantelis Antoniou
2016-10-07 15:21   ` Pantelis Antoniou
2016-10-10 15:29   ` Peter Rosin
2016-10-10 15:29     ` Peter Rosin
2016-10-07 15:21 ` [PATCH 04/10] i2c: i2c-mux-i2cs: Add device tree bindings Pantelis Antoniou
2016-10-10 15:48   ` Peter Rosin
2016-10-10 15:48     ` Peter Rosin
2016-10-17 19:11     ` Pantelis Antoniou
2016-10-10 20:25   ` Rob Herring
2016-10-07 15:21 ` [PATCH 05/10] gpio: i2cs: Juniper I2CS to GPIO pin mapping driver Pantelis Antoniou
2016-10-21  8:41   ` Linus Walleij
2016-10-21  8:41     ` Linus Walleij
2016-10-07 15:21 ` [PATCH 06/10] gpio: gpio-i2cs: Document bindings of I2CS FPGA GPIO block Pantelis Antoniou
2016-10-21  8:59   ` Linus Walleij
2016-10-21  8:59     ` Linus Walleij
2016-10-07 15:21 ` [PATCH 07/10] leds: i2cs: Add I2CS FPGA leds driver Pantelis Antoniou
2016-10-10  9:41   ` Jacek Anaszewski
2016-10-07 15:21 ` [PATCH 08/10] leds: Add binding for Juniper's I2CS FPGA Pantelis Antoniou
2016-10-07 15:21   ` Pantelis Antoniou
2016-10-10  9:41   ` Jacek Anaszewski
2016-10-07 15:21 ` [PATCH 09/10] hwmon: Add driver for Fan Tray on Juniper I2CS FGPA Pantelis Antoniou
2016-10-07 15:21 ` [PATCH 10/10] hwmon: i2cs-fan: Add hwmon dts binding documentation Pantelis Antoniou
2016-10-10 20:29   ` Rob Herring
2016-10-17 19:12     ` Pantelis Antoniou

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.