[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <cover.1747409892.git.samuel.kayode@savoirfairelinux.com>
Date: Fri, 16 May 2025 14:29:37 -0400
From: Samuel Kayode <samuel.kayode@...oirfairelinux.com>
To: Lee Jones <lee@...nel.org>, Liam Girdwood <lgirdwood@...il.com>,
Mark Brown <broonie@...nel.org>,
Dmitry Torokhov <dmitry.torokhov@...il.com>,
Sebastian Reichel <sre@...nel.org>, Robin Gong <yibin.gong@....com>
Cc: linux-kernel@...r.kernel.org, linux-pm@...r.kernel.org,
linux-imx@....com, linux-input@...r.kernel.org,
Abel Vesa <abelvesa@...ux.com>, Abel Vesa <abel.vesa@....com>,
Robin Gong <b38343@...escale.com>,
Enric Balletbo Serra <eballetbo@...il.com>
Subject: [PATCH v2 0/9] add support for pf1550 PMIC MFD-based drivers
This series adds support for pf1550 PMIC. It provides the core mfd driver and a
set of three sub-drivers for the regulator, power supply and input subsystems.
Patches 1-4 add the DT binding documents. Patches 5-8 add all drivers. Last
patch adds a MAINTAINERS entry for this device.
Changes since v1 [1]:
1. DT bindings for all devices included
2. Add onkey driver
3. Add driver for the regulators
4. Ensure charger is activated as some variants have it off by default
5. Update mfd and charger driver per feedback from eballetbo@...il.com
6. Add myself as maintainer for these drivers
[1]: v1: https://lore.kernel.org/1523974819-8711-1-git-send-email-abel.vesa@nxp.com/
Samuel Kayode (9):
dt-bindings: power: supply: add pf1550
dt-bindings: regulator: add pf1550
dt-bindings: input: add pf1550
dt-bindings: mfd: add pf1550
mfd: pf1550: add core mfd driver
regulator: pf1550: add support for regulator
input: pf1550: add onkey support
power: supply: pf1550: add battery charger support
MAINTAINERS: add an entry for pf1550 mfd driver
.../bindings/input/pf1550_onkey.yaml | 31 +
.../devicetree/bindings/mfd/pf1550.yaml | 122 ++++
.../bindings/power/supply/pf1550_charger.yaml | 44 ++
.../devicetree/bindings/regulator/pf1550.yaml | 35 +
MAINTAINERS | 11 +
drivers/input/keyboard/Kconfig | 8 +
drivers/input/keyboard/Makefile | 1 +
drivers/input/keyboard/pf1550_onkey.c | 200 ++++++
drivers/mfd/Kconfig | 14 +
drivers/mfd/Makefile | 2 +
drivers/mfd/pf1550.c | 254 +++++++
drivers/power/supply/Kconfig | 6 +
drivers/power/supply/Makefile | 1 +
drivers/power/supply/pf1550_charger.c | 656 ++++++++++++++++++
drivers/regulator/Kconfig | 7 +
drivers/regulator/Makefile | 1 +
drivers/regulator/pf1550.c | 380 ++++++++++
include/linux/mfd/pf1550.h | 246 +++++++
18 files changed, 2019 insertions(+)
create mode 100644 Documentation/devicetree/bindings/input/pf1550_onkey.yaml
create mode 100644 Documentation/devicetree/bindings/mfd/pf1550.yaml
create mode 100644 Documentation/devicetree/bindings/power/supply/pf1550_charger.yaml
create mode 100644 Documentation/devicetree/bindings/regulator/pf1550.yaml
create mode 100644 drivers/input/keyboard/pf1550_onkey.c
create mode 100644 drivers/mfd/pf1550.c
create mode 100644 drivers/power/supply/pf1550_charger.c
create mode 100644 drivers/regulator/pf1550.c
create mode 100644 include/linux/mfd/pf1550.h
base-commit: b1d8766052eb0534b27edda8af1865d53621bd6a
--
2.49.0
Powered by blists - more mailing lists