Skip to content

Commit 3c36965

Browse files
AngeloGioacchino Del Regnobroonie
authored andcommitted
regulator: Add support for MediaTek MT6363 SPMI PMIC Regulators
Add a driver for the regulators found on the MT6363 PMIC, fully controlled by SPMI interface. This PMIC regulates voltage with an input range of 2.6-5.0V, and features 10 buck converters and 26 LDOs. Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Link: https://patch.msgid.link/20251027110527.21002-5-angelogioacchino.delregno@collabora.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent d0f9f5b commit 3c36965

4 files changed

Lines changed: 1279 additions & 0 deletions

File tree

drivers/regulator/Kconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -954,6 +954,16 @@ config REGULATOR_MT6360
954954
2-channel buck with Thermal Shutdown and Overload Protection
955955
6-channel High PSRR and Low Dropout LDO.
956956

957+
config REGULATOR_MT6363
958+
tristate "MT6363 SPMI PMIC regulator driver"
959+
depends on SPMI
960+
select REGMAP_SPMI
961+
help
962+
Say Y here to enable support for regulators found in the MediaTek
963+
MT6363 SPMI PMIC.
964+
This driver supports the control of different power rails of device
965+
through regulator interface.
966+
957967
config REGULATOR_MT6370
958968
tristate "MT6370 SubPMIC Regulator"
959969
depends on MFD_MT6370

drivers/regulator/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ obj-$(CONFIG_REGULATOR_MT6357) += mt6357-regulator.o
113113
obj-$(CONFIG_REGULATOR_MT6358) += mt6358-regulator.o
114114
obj-$(CONFIG_REGULATOR_MT6359) += mt6359-regulator.o
115115
obj-$(CONFIG_REGULATOR_MT6360) += mt6360-regulator.o
116+
obj-$(CONFIG_REGULATOR_MT6363) += mt6363-regulator.o
116117
obj-$(CONFIG_REGULATOR_MT6370) += mt6370-regulator.o
117118
obj-$(CONFIG_REGULATOR_MT6380) += mt6380-regulator.o
118119
obj-$(CONFIG_REGULATOR_MT6397) += mt6397-regulator.o

0 commit comments

Comments
 (0)