[PATCH v6 0/6] Add support for TI TPS65219 PMIC.
From: Jerome Neanne <hidden>
Date: 2022-10-11 14:06:05
Also in:
linux-arm-kernel, linux-devicetree, linux-omap, lkml
Hi everyone, bindings and regulator are already there as it is based on the regulator tree branch for-6.1: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git All review feedback except one have been integrated in v5. Waiting ack/nack for mfd part. Changes in v6: - Remove not needed dev assignment reported by Dmitry Torokhov in Input. Regards, Jerome Previous versions: v5 - https://lore.kernel.org/lkml/20220913121419.15420-1-jneanne@baylibre.com/ (local) v4 - https://lore.kernel.org/lkml/20220825150224.826258-1-msp@baylibre.com/ (local) v3 - https://lore.kernel.org/lkml/20220805121852.21254-1-jneanne@baylibre.com/ (local) v2 - https://lore.kernel.org/lkml/20220726103355.17684-1-jneanne@baylibre.com/ (local) v1 - https://lore.kernel.org/lkml/20220719091742.3221-1-jneanne@baylibre.com/ (local) Jerome Neanne (5): DONOTMERGE: arm64: dts: ti: Add TI TPS65219 PMIC support for AM642 SK board. 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 | 320 ++++++++++++++++++++++ include/linux/mfd/tps65219.h | 345 ++++++++++++++++++++++++ 10 files changed, 958 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.17.1