All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 0/6] Add support for TI TPS65219 PMIC.
@ 2022-11-04 15:23 ` Jerome Neanne
  0 siblings, 0 replies; 54+ messages in thread
From: Jerome Neanne @ 2022-11-04 15:23 UTC (permalink / raw)
  To: lgirdwood, broonie, robh+dt, nm, kristo, dmitry.torokhov,
	krzysztof.kozlowski+dt, catalin.marinas, will, lee, tony,
	vigneshr, shawnguo, geert+renesas, dmitry.baryshkov,
	marcel.ziswiler, vkoul, biju.das.jz, arnd, jeff
  Cc: afd, khilman, narmstrong, msp, j-keerthy, jneanne, linux-kernel,
	devicetree, linux-arm-kernel, linux-input, linux-omap

From: Jerome NEANNE <jneanne@baylibre.com>

Hi everyone,

bindings and regulator are already there, it has been rebased on master
6.1:
git@github.com:torvalds/linux.git
commit 8f71a2b3f435f29b787537d1abedaa7d8ebe6647

All review feedback have been integrated.

Changes in v7:
- defconfig: change commit message to indicate why (Krzysztof Kozlowski).
- mfd: integrate all feedback from Lee Jones and Biju Das.  

Regards,
Jerome

Previous versions:i
v6 - https://lore.kernel.org/all/20221011140549.16761-1-jneanne@baylibre.com/
v5 - https://lore.kernel.org/lkml/20220913121419.15420-1-jneanne@baylibre.com/
v4 - https://lore.kernel.org/lkml/20220825150224.826258-1-msp@baylibre.com/
v3 - https://lore.kernel.org/lkml/20220805121852.21254-1-jneanne@baylibre.com/
v2 - https://lore.kernel.org/lkml/20220726103355.17684-1-jneanne@baylibre.com/
v1 - https://lore.kernel.org/lkml/20220719091742.3221-1-jneanne@baylibre.com/

Jerome NEANNE (1):
  DONOTMERGE: arm64: dts: ti: Add TI TPS65219 PMIC support for AM642 SK
    board.

Jerome Neanne (4):
  DONOTMERGE: arm64: dts: ti: Add pinmux and irq mapping for TPS65219
    external interrupts
  DONOTMERGE: arm64: dts: ti: k3-am642-sk: Enable tps65219 power-button
  mfd: tps65219: Add driver for TI TPS65219 PMIC
  arm64: defconfig: Add tps65219 as modules

Markus Schneider-Pargmann (1):
  Input: Add tps65219 interrupt driven powerbutton

 MAINTAINERS                             |   1 +
 arch/arm64/boot/dts/ti/k3-am642-sk.dts  | 115 ++++++++
 arch/arm64/configs/defconfig            |   3 +
 drivers/input/misc/Kconfig              |  10 +
 drivers/input/misc/Makefile             |   1 +
 drivers/input/misc/tps65219-pwrbutton.c | 148 ++++++++++
 drivers/mfd/Kconfig                     |  14 +
 drivers/mfd/Makefile                    |   1 +
 drivers/mfd/tps65219.c                  | 299 ++++++++++++++++++++
 include/linux/mfd/tps65219.h            | 345 ++++++++++++++++++++++++
 10 files changed, 937 insertions(+)
 create mode 100644 drivers/input/misc/tps65219-pwrbutton.c
 create mode 100644 drivers/mfd/tps65219.c
 create mode 100644 include/linux/mfd/tps65219.h

-- 
2.25.1


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

end of thread, other threads:[~2023-05-22 11:58 UTC | newest]

Thread overview: 54+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-04 15:23 [PATCH v7 0/6] Add support for TI TPS65219 PMIC Jerome Neanne
2022-11-04 15:23 ` Jerome Neanne
2022-11-04 15:23 ` [PATCH v7 1/6] DONOTMERGE: arm64: dts: ti: Add TI TPS65219 PMIC support for AM642 SK board Jerome Neanne
2022-11-04 15:23   ` Jerome Neanne
2022-12-15 15:09   ` Wadim Egorov
2022-12-15 15:09     ` Wadim Egorov
2022-12-15 15:51     ` jerome Neanne
2022-12-15 15:51       ` jerome Neanne
2022-12-15 16:09       ` Mark Brown
2022-12-15 16:09         ` Mark Brown
2022-12-15 17:54         ` Nishanth Menon
2022-12-15 17:54           ` Nishanth Menon
2022-12-15 18:22           ` Mark Brown
2022-12-15 18:22             ` Mark Brown
2022-12-15 21:41             ` Nishanth Menon
2022-12-15 21:41               ` Nishanth Menon
2022-12-16  6:21               ` Vignesh Raghavendra
2022-12-16  6:21                 ` Vignesh Raghavendra
2022-12-16  7:28                 ` jerome Neanne
2022-12-16  7:28                   ` jerome Neanne
2022-12-16 13:41               ` Mark Brown
2022-12-16 13:41                 ` Mark Brown
2022-12-28 10:16                 ` Wadim Egorov
2022-12-28 10:16                   ` Wadim Egorov
2022-11-04 15:23 ` [PATCH v7 2/6] DONOTMERGE: arm64: dts: ti: Add pinmux and irq mapping for TPS65219 external interrupts Jerome Neanne
2022-11-04 15:23   ` Jerome Neanne
2022-11-04 15:23 ` [PATCH v7 3/6] DONOTMERGE: arm64: dts: ti: k3-am642-sk: Enable tps65219 power-button Jerome Neanne
2022-11-04 15:23   ` Jerome Neanne
2022-11-04 15:23 ` [PATCH v7 4/6] mfd: tps65219: Add driver for TI TPS65219 PMIC Jerome Neanne
2022-11-04 15:23   ` Jerome Neanne
2022-11-15 22:26   ` Kevin Hilman
2022-11-15 22:26     ` Kevin Hilman
2022-11-15 23:14   ` Kevin Hilman
2022-11-15 23:14     ` Kevin Hilman
2022-11-16 13:58     ` Lee Jones
2022-11-16 13:58       ` Lee Jones
2022-11-16 18:11   ` Lee Jones
2022-11-16 18:11     ` Lee Jones
2022-11-04 15:23 ` [PATCH v7 5/6] Input: Add tps65219 interrupt driven powerbutton Jerome Neanne
2022-11-04 15:23   ` Jerome Neanne
2022-11-17 11:53   ` Lee Jones
2022-11-17 11:53     ` Lee Jones
2022-11-04 15:23 ` [PATCH v7 6/6] arm64: defconfig: Add tps65219 as modules Jerome Neanne
2022-11-04 15:23   ` Jerome Neanne
2022-11-15 22:23   ` Kevin Hilman
2022-11-15 22:23     ` Kevin Hilman
2022-11-17 16:00     ` Kevin Hilman
2022-11-17 16:00       ` Kevin Hilman
2022-12-05 18:08 ` [PATCH v7 0/6] Add support for TI TPS65219 PMIC Francesco Dolcini
2022-12-05 18:08   ` Francesco Dolcini
2022-12-06 19:22   ` jerome Neanne
2022-12-06 19:22     ` jerome Neanne
2023-05-22 11:57     ` jerome Neanne
2023-05-22 11:57       ` jerome Neanne

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.