Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #
  2. # SPMI driver configuration
  3. #
  4. menuconfig SPMI
  5. tristate "SPMI support"
  6. help
  7. SPMI (System Power Management Interface) is a two-wire
  8. serial interface between baseband and application processors
  9. and Power Management Integrated Circuits (PMIC).
  10. if SPMI
  11. config SPMI_MSM_PMIC_ARB
  12. tristate "Qualcomm MSM SPMI Controller (PMIC Arbiter)"
  13. select IRQ_DOMAIN
  14. depends on ARCH_QCOM || COMPILE_TEST
  15. depends on HAS_IOMEM
  16. default ARCH_QCOM
  17. help
  18. If you say yes to this option, support will be included for the
  19. built-in SPMI PMIC Arbiter interface on Qualcomm MSM family
  20. processors.
  21. This is required for communicating with Qualcomm PMICs and
  22. other devices that have the SPMI interface.
  23. config SPMI_MSM_PMIC_ARB_DEBUG
  24. tristate "QTI SPMI Debug Controller (PMIC Arbiter)"
  25. depends on ARCH_QCOM || COMPILE_TEST
  26. depends on HAS_IOMEM
  27. help
  28. If you say yes to this option, support will be included for the
  29. built-in SPMI PMIC Arbiter debug interface on Qualcomm Technologies,
  30. Inc. (QTI) MSM family processors. This feature is available on chips
  31. with PMIC arbiter version 5 and above.
  32. endif