This patchset adds mfd, regulator and charger driver and related bindings.The patches are required to be applied in sequence. Zeynep Arslanbenzer (6): drivers: mfd: add MAX77659 PMIC support dt-bindings: mfd: add MAX77659 binding drivers: power: supply: add MAX77659 charger support dt-bindings: power: supply: add MAX77659 charger binding drivers: regulator: add MAX77659 regulator support dt-bindings: regulator: add MAX77659 regulator binding .../devicetree/bindings/mfd/adi,max77659.yaml | 70 +++ .../power/supply/adi,max77659-charger.yaml | 42 ++ .../regulator/adi,max77659-regulator.yaml | 31 + MAINTAINERS | 13 + drivers/mfd/Kconfig | 14 + drivers/mfd/Makefile | 1 + drivers/mfd/max77659.c | 188 ++++++ drivers/power/supply/Kconfig | 7 + drivers/power/supply/Makefile | 1 + drivers/power/supply/max77659-charger.c | 547 ++++++++++++++++++ drivers/regulator/Kconfig | 8 + drivers/regulator/Makefile | 1 + drivers/regulator/max77659-regulator.c | 98 ++++ include/linux/mfd/max77659.h | 60 ++ 14 files changed, 1081 insertions(+) create mode 100644 Documentation/devicetree/bindings/mfd/adi,max77659.yaml create mode 100644 Documentation/devicetree/bindings/power/supply/adi,max77659-charger.yaml create mode 100644 Documentation/devicetree/bindings/regulator/adi,max77659-regulator.yaml create mode 100644 drivers/mfd/max77659.c create mode 100644 drivers/power/supply/max77659-charger.c create mode 100644 drivers/regulator/max77659-regulator.c create mode 100644 include/linux/mfd/max77659.h -- 2.25.1