Kconfig 996 B

1234567891011121314151617181920212223242526272829303132
  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 "QTI Slimbus Master Component"
  14. default n
  15. help
  16. Select driver for Qualcomm Technologies Inc. (QTI) Slimbus
  17. Master Component. This driver is responsible for configuring
  18. SLIMbus and performing bus administration, administration of
  19. components on the bus and dynamic channel allocation.
  20. config SLIMBUS_MSM_NGD
  21. tristate "QTI Slimbus Satellite Component"
  22. help
  23. Select driver for Qualcomm Technologies Inc. (QTI) Slimbus
  24. Satellite Component. This is light-weight slimbus controller
  25. driver responsible for communicating with slave HW directly over
  26. the bus using messaging interface, and communicating with master
  27. component residing on ADSP for bandwidth and data-channel
  28. management.
  29. endif