Kconfig 792 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # SLIMBUS driver configuration
  3. #
  4. menuconfig SLIMBUS
  5. bool "Slimbus support"
  6. depends on HAS_IOMEM
  7. help
  8. Slimbus is standard interface between baseband and
  9. application processors and peripheral components in mobile
  10. terminals.
  11. if SLIMBUS
  12. config SLIMBUS_MSM_CTRL
  13. tristate "Qualcomm Slimbus Master Component"
  14. default n
  15. help
  16. Select driver for Qualcomm's Slimbus Master Component.
  17. config SLIMBUS_MSM_NGD
  18. tristate "Qualcomm Slimbus Satellite Component"
  19. help
  20. Select driver for Qualcomm's Slimbus Satellite Component.
  21. This is light-weight slimbus controller driver responsible for
  22. communicating with slave HW directly over the bus using messaging
  23. interface, and communicating with master component residing on ADSP
  24. for bandwidth and data-channel management.
  25. endif