Kconfig 867 B

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