Kconfig 710 B

123456789101112131415161718192021222324252627
  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. endif