Kconfig 760 B

12345678910111213141516171819202122232425262728
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # SPMI driver configuration
  4. #
  5. menuconfig SPMI
  6. tristate "SPMI support"
  7. help
  8. SPMI (System Power Management Interface) is a two-wire
  9. serial interface between baseband and application processors
  10. and Power Management Integrated Circuits (PMIC).
  11. if SPMI
  12. config SPMI_MSM_PMIC_ARB
  13. tristate "Qualcomm MSM SPMI Controller (PMIC Arbiter)"
  14. select IRQ_DOMAIN_HIERARCHY
  15. depends on ARCH_QCOM || COMPILE_TEST
  16. depends on HAS_IOMEM
  17. default ARCH_QCOM
  18. help
  19. If you say yes to this option, support will be included for the
  20. built-in SPMI PMIC Arbiter interface on Qualcomm MSM family
  21. processors.
  22. This is required for communicating with Qualcomm PMICs and
  23. other devices that have the SPMI interface.
  24. endif