--- v8
+++ v10
@@ -1,5 +1,5 @@
-This series adds support for pf1550 PMIC. It provides the core driver and a
-three sub-drivers for the regulator, power supply and input subsystems.
+This series adds support for pf1550 PMIC. It provides the core driver and
+sub-drivers for the regulator, power supply and input subsystems.
Patch 1 adds the DT binding document for the PMIC. Patches 2-5 adds the
pertinent drivers. Last patch adds a MAINTAINERS entry for the drivers.
@@ -100,6 +100,29 @@
- charger: use devm_delayed_work_autocancel
- Link to v7: https://lore.kernel.org/r/20250612-pf1550-v7-0-0e393b0f45d7@savoirfairelinux.com
+Changes since v8:
+ - Collect Frank's `Reviewed-by` tags
+ - core: use consistent whitespace
+ - regulator: add standby support for regulators requested by Sean Nyekjaer
+ - regulator: add support for SW1 DVS enable/disable
+ - regulator: fix improper DVS activation
+ - regulator: add map_voltage for regulators
+ - regulator: add enable/disable for regulators
+ - charger: use datasheet thermal regulation temperature ranges
+ - charger: select charger operation mode based on the application
+ - onkey: add support for disabling system power down via onkey
+ - dt-bindings: changed temperature ranges
+ - dt-bindings: added `disable-key-power`
+ - Link to v8: https://lore.kernel.org/r/20250707-pf1550-v8-0-6b6eb67c03a0@savoirfairelinux.com
+
+Changes since v9:
+ - add Sean's Tested-by tag
+ - core: style changes
+ - dt-bindings: add regulator-state-mem to examples
+ - onkey: use regmap_clear_bits to avoid overwriting all bits of the
+ PWRCTRL register
+ - Link to v9: https://lore.kernel.org/r/20250716-pf1550-v9-0-502a647f04ef@savoirfairelinux.com
+
Signed-off-by: Samuel Kayode <samuel.kayode@savoirfairelinux.com>
---
Samuel Kayode (6):
@@ -110,22 +133,22 @@
power: supply: pf1550: add battery charger support
MAINTAINERS: add an entry for pf1550 mfd driver
- .../devicetree/bindings/mfd/nxp,pf1550.yaml | 137 +++++
+ .../devicetree/bindings/mfd/nxp,pf1550.yaml | 161 ++++++
MAINTAINERS | 11 +
drivers/input/misc/Kconfig | 11 +
drivers/input/misc/Makefile | 1 +
- drivers/input/misc/pf1550-onkey.c | 183 ++++++
+ drivers/input/misc/pf1550-onkey.c | 197 +++++++
drivers/mfd/Kconfig | 16 +
drivers/mfd/Makefile | 2 +
- drivers/mfd/pf1550.c | 365 ++++++++++++
+ drivers/mfd/pf1550.c | 367 ++++++++++++
drivers/power/supply/Kconfig | 11 +
drivers/power/supply/Makefile | 1 +
- drivers/power/supply/pf1550-charger.c | 632 +++++++++++++++++++++
+ drivers/power/supply/pf1550-charger.c | 636 +++++++++++++++++++++
drivers/regulator/Kconfig | 9 +
drivers/regulator/Makefile | 1 +
- drivers/regulator/pf1550-regulator.c | 360 ++++++++++++
- include/linux/mfd/pf1550.h | 266 +++++++++
- 15 files changed, 2006 insertions(+)
+ drivers/regulator/pf1550-regulator.c | 429 ++++++++++++++
+ include/linux/mfd/pf1550.h | 273 +++++++++
+ 15 files changed, 2126 insertions(+)
---
base-commit: 0a4b866d08c6adaea2f4592d31edac6deeb4dcbd
change-id: 20250527-pf1550-d401f0d07b80