diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2018-03-12 10:46:12 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-19 16:14:21 -0400 |
commit | 5d0c74e62472ec623f1b2ad9a12cb8308a0e3a03 (patch) | |
tree | 0009cdb45833850c4443f2566c2099c64cbed9a1 /drivers/power/pmic/Makefile | |
parent | e70f70aa6504bd6387c0a6d117e48383c5048b6b (diff) |
pmic: add stpmu1 support
This driver implements register read/write operations for STPMU1.
The STPMU1 PMIC provides 4 BUCKs, 6 LDOs, 1 VREF
and 2 power switches. It is accessed via an I2C interface.
This device is used with STM32MP1 SoCs.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'drivers/power/pmic/Makefile')
-rw-r--r-- | drivers/power/pmic/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/pmic/Makefile b/drivers/power/pmic/Makefile index fc19fdc701..ad32068b3a 100644 --- a/drivers/power/pmic/Makefile +++ b/drivers/power/pmic/Makefile @@ -23,6 +23,7 @@ obj-$(CONFIG_DM_PMIC_TPS65910) += pmic_tps65910_dm.o obj-$(CONFIG_$(SPL_)PMIC_PALMAS) += palmas.o obj-$(CONFIG_$(SPL_)PMIC_LP873X) += lp873x.o obj-$(CONFIG_$(SPL_)PMIC_LP87565) += lp87565.o +obj-$(CONFIG_PMIC_STPMU1) += stpmu1.o obj-$(CONFIG_POWER_LTC3676) += pmic_ltc3676.o obj-$(CONFIG_POWER_MAX77696) += pmic_max77696.o |