
The series adds support for LP873X family of PMICs. Implements functions to configure regulators. Enable/Disable Get/Set voltages of regulators.
Keerthy (2): power: pmic: lp873x: Add the base pmic support power: regulator: lp873x: Add regulator support
drivers/power/pmic/Kconfig | 7 + drivers/power/pmic/Makefile | 1 + drivers/power/pmic/lp873x.c | 90 ++++++++ drivers/power/regulator/Kconfig | 8 + drivers/power/regulator/Makefile | 1 + drivers/power/regulator/lp873x_regulator.c | 357 +++++++++++++++++++++++++++++ include/power/lp873x.h | 19 ++ 7 files changed, 483 insertions(+) create mode 100644 drivers/power/pmic/lp873x.c create mode 100644 drivers/power/regulator/lp873x_regulator.c create mode 100644 include/power/lp873x.h