Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config SND_HDA_CORE
  3. tristate
  4. select REGMAP
  5. config SND_HDA_DSP_LOADER
  6. bool
  7. config SND_HDA_ALIGNED_MMIO
  8. bool
  9. config SND_HDA_COMPONENT
  10. bool
  11. config SND_HDA_I915
  12. bool
  13. select SND_HDA_COMPONENT
  14. config SND_HDA_EXT_CORE
  15. tristate
  16. select SND_HDA_CORE
  17. config SND_INTEL_NHLT
  18. bool
  19. # this config should be selected only for Intel ACPI platforms.
  20. # A fallback is provided so that the code compiles in all cases.
  21. config SND_INTEL_DSP_CONFIG
  22. tristate
  23. select ACPI_NHLT if ACPI
  24. select SND_INTEL_NHLT if ACPI
  25. select SND_INTEL_SOUNDWIRE_ACPI if ACPI
  26. # this config should be selected only for Intel DSP platforms.
  27. # A fallback is provided so that the code compiles in all cases.
  28. config SND_INTEL_SOUNDWIRE_ACPI
  29. tristate
  30. config SND_INTEL_BYT_PREFER_SOF
  31. bool "Prefer SOF driver over SST on BY/CHT platforms"
  32. depends on SND_SST_ATOM_HIFI2_PLATFORM_ACPI && SND_SOC_SOF_BAYTRAIL
  33. default n
  34. help
  35. The kernel has 2 drivers for the Low Power Engine audio-block on
  36. Bay- and Cherry-Trail SoCs. The old SST driver and the new SOF
  37. driver. If both drivers are enabled then the kernel will default
  38. to using the old SST driver, unless told otherwise through the
  39. snd_intel_dspcfg.dsp_driver module-parameter.
  40. Set this option to Y to make the kernel default to the new SOF
  41. driver instead.