Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # SoundWire subsystem configuration
  4. #
  5. menuconfig SOUNDWIRE
  6. tristate "SoundWire support"
  7. depends on ACPI || OF
  8. depends on SND_SOC_SDCA_OPTIONAL
  9. help
  10. SoundWire is a 2-Pin interface with data and clock line ratified
  11. by the MIPI Alliance. SoundWire is used for transporting data
  12. typically related to audio functions. SoundWire interface is
  13. optimized to integrate audio devices in mobile or mobile inspired
  14. systems. Say Y to enable this subsystem, N if you do not have such
  15. a device
  16. if SOUNDWIRE
  17. comment "SoundWire Devices"
  18. config SOUNDWIRE_AMD
  19. tristate "AMD SoundWire Manager driver"
  20. select SOUNDWIRE_GENERIC_ALLOCATION
  21. depends on ACPI && SND_SOC
  22. help
  23. SoundWire AMD Manager driver.
  24. If you have an AMD platform which has a SoundWire Manager then
  25. enable this config option to get the SoundWire support for that
  26. device.
  27. config SOUNDWIRE_CADENCE
  28. tristate
  29. select CRC8
  30. config SOUNDWIRE_INTEL
  31. tristate "Intel SoundWire Master driver"
  32. select SOUNDWIRE_CADENCE
  33. select SOUNDWIRE_GENERIC_ALLOCATION
  34. select AUXILIARY_BUS
  35. depends on ACPI && SND_SOC
  36. depends on SND_SOC_SOF_HDA_MLINK || !SND_SOC_SOF_HDA_MLINK
  37. depends on SND_HDA_CORE || !SND_HDA_ALIGNED_MMIO
  38. help
  39. SoundWire Intel Master driver.
  40. If you have an Intel platform which has a SoundWire Master then
  41. enable this config option to get the SoundWire support for that
  42. device.
  43. config SOUNDWIRE_QCOM
  44. tristate "Qualcomm SoundWire Master driver"
  45. imply SLIMBUS
  46. depends on SND_SOC
  47. help
  48. SoundWire Qualcomm Master driver.
  49. If you have an Qualcomm platform which has a SoundWire Master then
  50. enable this config option to get the SoundWire support for that
  51. device
  52. config SOUNDWIRE_GENERIC_ALLOCATION
  53. tristate
  54. endif