Commit 9bd9e0de authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab Committed by Greg Kroah-Hartman
Browse files

mfd: hi6421-spmi-pmic: move driver from staging

parent 334201d5
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -8433,6 +8433,13 @@ S: Maintained
F:	Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
F:	drivers/spmi/hisi-spmi-controller.c
HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
M:	Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
L:	linux-kernel@vger.kernel.org
S:	Maintained
F:	Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
F:	drivers/mfd/hi6421-spmi-pmic.c
HISILICON STAGING DRIVERS FOR HIKEY 960/970
M:	Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
S:	Maintained
+16 −0
Original line number Diff line number Diff line
@@ -510,6 +510,22 @@ config MFD_HI6421_PMIC
	  menus in order to enable them.
	  We communicate with the Hi6421 via memory-mapped I/O.

config MFD_HI6421_SPMI
	tristate "HiSilicon Hi6421v600 SPMI PMU/Codec IC"
	depends on OF
	depends on SPMI
	select MFD_CORE
	select REGMAP_SPMI
	help
	  Add support for HiSilicon Hi6421v600 SPMI PMIC. Hi6421 includes
	  multi-functions, such as regulators, RTC, codec, Coulomb counter,
	  etc.

	  This driver includes core APIs _only_. You have to select
	  individual components like voltage regulators under corresponding
	  menus in order to enable them.
	  We communicate with the Hi6421v600 via a SPMI bus.

config MFD_HI655X_PMIC
	tristate "HiSilicon Hi655X series PMU/Codec IC"
	depends on ARCH_HISI || COMPILE_TEST
+1 −0
Original line number Diff line number Diff line
@@ -231,6 +231,7 @@ obj-$(CONFIG_MFD_IPAQ_MICRO) += ipaq-micro.o
obj-$(CONFIG_MFD_IQS62X)	+= iqs62x.o
obj-$(CONFIG_MFD_MENF21BMC)	+= menf21bmc.o
obj-$(CONFIG_MFD_HI6421_PMIC)	+= hi6421-pmic-core.o
obj-$(CONFIG_MFD_HI6421_SPMI)	+= hi6421-spmi-pmic.o
obj-$(CONFIG_MFD_HI655X_PMIC)   += hi655x-pmic.o
obj-$(CONFIG_MFD_DLN2)		+= dln2.o
obj-$(CONFIG_MFD_RT4831)	+= rt4831.o
Loading