Kconfig 620 B

1234567891011121314151617181920212223
  1. menu "SPMI support"
  2. config SPMI
  3. bool "Enable SPMI bus support"
  4. depends on DM
  5. ---help---
  6. Select this to enable to support SPMI bus.
  7. SPMI (System Power Management Interface) bus is used
  8. to connect PMIC devices on various SoCs.
  9. config SPMI_MSM
  10. bool "Support Qualcomm SPMI bus"
  11. depends on SPMI
  12. ---help---
  13. Support SPMI bus implementation found on Qualcomm Snapdragon SoCs.
  14. config SPMI_SANDBOX
  15. bool "Support for Sandbox SPMI bus"
  16. depends on SPMI
  17. ---help---
  18. Demo SPMI bus implementation. Emulates part of PM8916 as single
  19. slave (0) on bus. It has 4 GPIO peripherals, pid 0xC0-0xC3.
  20. endmenu