Kconfig 931 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #
  2. # SoundWire subsystem configuration
  3. #
  4. menuconfig SOUNDWIRE
  5. bool "SoundWire support"
  6. ---help---
  7. SoundWire is a 2-Pin interface with data and clock line ratified
  8. by the MIPI Alliance. SoundWire is used for transporting data
  9. typically related to audio functions. SoundWire interface is
  10. optimized to integrate audio devices in mobile or mobile inspired
  11. systems. Say Y to enable this subsystem, N if you do not have such
  12. a device
  13. if SOUNDWIRE
  14. comment "SoundWire Devices"
  15. config SOUNDWIRE_BUS
  16. tristate
  17. select REGMAP_SOUNDWIRE
  18. config SOUNDWIRE_CADENCE
  19. tristate
  20. config SOUNDWIRE_INTEL
  21. tristate "Intel SoundWire Master driver"
  22. select SOUNDWIRE_CADENCE
  23. select SOUNDWIRE_BUS
  24. depends on X86 && ACPI && SND_SOC
  25. ---help---
  26. SoundWire Intel Master driver.
  27. If you have an Intel platform which has a SoundWire Master then
  28. enable this config option to get the SoundWire support for that
  29. device.
  30. endif