Kconfig 893 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # ALSA ARM drivers
  2. menuconfig SND_ARM
  3. bool "ARM sound devices"
  4. depends on ARM
  5. default y
  6. help
  7. Support for sound devices specific to ARM architectures.
  8. Drivers that are implemented on ASoC can be found in
  9. "ALSA for SoC audio support" section.
  10. config SND_PXA2XX_LIB
  11. tristate
  12. select SND_AC97_CODEC if SND_PXA2XX_LIB_AC97
  13. select SND_DMAENGINE_PCM
  14. config SND_PXA2XX_LIB_AC97
  15. bool
  16. if SND_ARM
  17. config SND_ARMAACI
  18. tristate "ARM PrimeCell PL041 AC Link support"
  19. depends on ARM_AMBA
  20. select SND_PCM
  21. select SND_AC97_CODEC
  22. config SND_PXA2XX_PCM
  23. tristate
  24. select SND_PCM
  25. config SND_PXA2XX_AC97
  26. tristate "AC97 driver for the Intel PXA2xx chip"
  27. depends on ARCH_PXA
  28. select SND_PXA2XX_PCM
  29. select SND_AC97_CODEC
  30. select SND_PXA2XX_LIB
  31. select SND_PXA2XX_LIB_AC97
  32. help
  33. Say Y or M if you want to support any AC97 codec attached to
  34. the PXA2xx AC97 interface.
  35. endif # SND_ARM