mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
467d4fc6e4
QPNP is a SPMI based PMIC architecture developed by Qualcomm. This library constitutes routines that should be necessary for most, if not all QPNP based devices. The goal is to minimize the amount of code duplication. Change-Id: I0fddfcef88416bba488480d790d1cf361d9e67ac Signed-off-by: Michael Bohan <mbohan@codeaurora.org> Signed-off-by: David Brown <davidb@codeaurora.org>
29 lines
804 B
Text
29 lines
804 B
Text
#
|
|
# SPMI driver configuration
|
|
#
|
|
menuconfig SPMI
|
|
bool "SPMI support"
|
|
help
|
|
SPMI (System Power Management Interface) is a two-wire
|
|
serial interface between baseband and application processors
|
|
and Power Management Integrated Circuits (PMIC).
|
|
|
|
if SPMI
|
|
config SPMI_MSM_PMIC_ARB
|
|
tristate "Qualcomm MSM SPMI Controller (PMIC Arbiter)"
|
|
help
|
|
If you say yes to this option, support will be included for the
|
|
built-in SPMI PMIC Arbiter interface on Qualcomm MSM family
|
|
processors.
|
|
|
|
This is required for communicating with Qualcomm PMICs and
|
|
other devices that have the SPMI interface.
|
|
|
|
config MSM_QPNP
|
|
depends on ARCH_MSMCOPPER
|
|
depends on OF_SPMI
|
|
bool "MSM QPNP"
|
|
help
|
|
Say 'y' here to include support for the Qualcomm QPNP
|
|
support. QPNP is a SPMI based PMIC implementation.
|
|
endif
|