
This patchset renames the stpmu1 driver to stpmic1, prepares alignment with latest kernel device tree and udpates it with the latest ST patches.
The driver uses the final marketing name for STMicroelectronics PMIC = STPMIC1 and use the kernel driver name & binding introduced by https://patchwork.kernel.org/cover/10761943/
This patch is applicable on the top of the serie "stm32mp1: add trusted boot with TF-A"
http://patchwork.ozlabs.org/project/uboot/list/?series=88521
Patrick Delaunay (8): regulator: stpmu1: update buck1 range power: stpmu1: rename files to stpmic1 power: rename stpmu1 to official name stpmic1 stpmic1: update register names pmic: stpmu1: add power switch off support stm32mp1: add command poweroff stm32mp1: dts: activate psci-1.0 stpmic1: add NVM update support in fuse command
MAINTAINERS | 2 + arch/arm/Kconfig | 1 + arch/arm/dts/stm32mp157c-ed1.dts | 8 +- arch/arm/dts/stm32mp157c.dtsi | 2 +- arch/arm/mach-stm32mp/Makefile | 3 + arch/arm/mach-stm32mp/cmd_poweroff.c | 24 ++ board/st/stm32mp1/README | 6 +- board/st/stm32mp1/board.c | 47 +-- board/st/stm32mp1/spl.c | 12 +- configs/stm32mp15_basic_defconfig | 4 +- configs/stm32mp15_trusted_defconfig | 4 +- drivers/misc/stm32mp_fuse.c | 28 ++ drivers/power/pmic/Kconfig | 6 +- drivers/power/pmic/Makefile | 2 +- drivers/power/pmic/stpmic1.c | 255 +++++++++++++ drivers/power/pmic/stpmu1.c | 95 ----- drivers/power/regulator/Kconfig | 14 +- drivers/power/regulator/Makefile | 2 +- drivers/power/regulator/stpmic1.c | 672 +++++++++++++++++++++++++++++++++++ drivers/power/regulator/stpmu1.c | 671 ---------------------------------- include/dt-bindings/mfd/st,stpmic1.h | 46 +++ include/dt-bindings/mfd/st,stpmu1.h | 60 ---- include/power/stpmic1.h | 117 ++++++ include/power/stpmu1.h | 85 ----- 24 files changed, 1205 insertions(+), 961 deletions(-) create mode 100644 arch/arm/mach-stm32mp/cmd_poweroff.c create mode 100644 drivers/power/pmic/stpmic1.c delete mode 100644 drivers/power/pmic/stpmu1.c create mode 100644 drivers/power/regulator/stpmic1.c delete mode 100644 drivers/power/regulator/stpmu1.c create mode 100644 include/dt-bindings/mfd/st,stpmic1.h delete mode 100644 include/dt-bindings/mfd/st,stpmu1.h create mode 100644 include/power/stpmic1.h delete mode 100644 include/power/stpmu1.h