Add an SPMI controller driver for the Glink PMIC register dumping debug interface. This can be used to read and write PMIC registers controlled by the charging firmware running on a remote processor (e.g. DSP). Change-Id: I10d0c345e35613c708eea0d2fbb9fd0e03ecf2b5 Signed-off-by: David Collins <collinsd@codeaurora.org>
10 lines
283 B
Makefile
10 lines
283 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for kernel SPMI framework.
|
|
#
|
|
obj-$(CONFIG_SPMI) += spmi.o
|
|
|
|
obj-$(CONFIG_SPMI_MSM_PMIC_ARB) += spmi-pmic-arb.o
|
|
obj-$(CONFIG_SPMI_MSM_PMIC_ARB_DEBUG) += spmi-pmic-arb-debug.o
|
|
obj-$(CONFIG_SPMI_QTI_GLINK_DEBUG) += spmi-glink-debug.o
|