public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/4] ADP5585 GPIO expander, PWM and keypad controller support
@ 2024-06-02 15:24 Laurent Pinchart
  2024-06-02 15:24 ` [PATCH v3 1/4] dt-bindings: Add bindings for the Analog Devices ADP5585 Laurent Pinchart
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Laurent Pinchart @ 2024-06-02 15:24 UTC (permalink / raw)
  To: linux-kernel, devicetree, linux-gpio, linux-pwm
  Cc: Bartosz Golaszewski, Conor Dooley, Krzysztof Kozlowski, Lee Jones,
	Linus Walleij, Rob Herring, Uwe Kleine-König

Hello,

This patch series introduces support for the Analog Devices ADP5585, a
GPIO expander, PWM and keyboard controller. It models the chip as an MFD
device, and includes DT bindings (1/4), an MFD driver (2/4) and drivers
for the GPIO (3/4) and PWM (4/4) functions.

Support for the keypad controller is left out, as I have no means to
test it at the moment. The chip also includes a tiny reset controller,
as well as a 3-bit input programmable logic block, which I haven't tried
to support (and also have no means to test).

The driver is based on an initial version from the NXP BSP kernel, then
extensively and nearly completely rewritten, with added DT bindings. I
have nonetheless retained original authorship. Clark, Haibo, if you
would prefer not being credited and/or listed as authors, please let me
know.

Compared to v2, this version addresses lots of miscellaneous review
comments. It also fixes a DT binding validation issue that sneaked in
v2.

What's the preferred way to merge such an MFD driver ? Should all
patches go through the MFD tree (with the acks of the GPIO and PWM
maintainers) ?

Clark Wang (1):
  pwm: adp5585: Add Analog Devices ADP5585 support

Haibo Chen (2):
  mfd: adp5585: Add Analog Devices ADP5585 core support
  gpio: adp5585: Add Analog Devices ADP5585 support

Laurent Pinchart (1):
  dt-bindings: Add bindings for the Analog Devices ADP5585

 .../devicetree/bindings/mfd/adi,adp5585.yaml  |  90 +++++++
 .../devicetree/bindings/trivial-devices.yaml  |   4 -
 MAINTAINERS                                   |  11 +
 drivers/gpio/Kconfig                          |   7 +
 drivers/gpio/Makefile                         |   1 +
 drivers/gpio/gpio-adp5585.c                   | 231 ++++++++++++++++++
 drivers/mfd/Kconfig                           |  12 +
 drivers/mfd/Makefile                          |   1 +
 drivers/mfd/adp5585.c                         | 199 +++++++++++++++
 drivers/pwm/Kconfig                           |   7 +
 drivers/pwm/Makefile                          |   1 +
 drivers/pwm/pwm-adp5585.c                     | 189 ++++++++++++++
 include/linux/mfd/adp5585.h                   | 126 ++++++++++
 13 files changed, 875 insertions(+), 4 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/adi,adp5585.yaml
 create mode 100644 drivers/gpio/gpio-adp5585.c
 create mode 100644 drivers/mfd/adp5585.c
 create mode 100644 drivers/pwm/pwm-adp5585.c
 create mode 100644 include/linux/mfd/adp5585.h


base-commit: 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0
-- 
Regards,

Laurent Pinchart


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

end of thread, other threads:[~2024-06-03  8:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-02 15:24 [PATCH v3 0/4] ADP5585 GPIO expander, PWM and keypad controller support Laurent Pinchart
2024-06-02 15:24 ` [PATCH v3 1/4] dt-bindings: Add bindings for the Analog Devices ADP5585 Laurent Pinchart
2024-06-02 15:31   ` Krzysztof Kozlowski
2024-06-02 15:50     ` Laurent Pinchart
2024-06-02 15:24 ` [PATCH v3 2/4] mfd: adp5585: Add Analog Devices ADP5585 core support Laurent Pinchart
2024-06-02 15:24 ` [PATCH v3 3/4] gpio: adp5585: Add Analog Devices ADP5585 support Laurent Pinchart
2024-06-03  8:17   ` Bartosz Golaszewski
2024-06-02 15:24 ` [PATCH v3 4/4] pwm: " Laurent Pinchart

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox