Kconfig 867 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. if SND_ARM
  11. config SND_ARMAACI
  12. tristate "ARM PrimeCell PL041 AC Link support"
  13. depends on ARM_AMBA
  14. select SND_PCM
  15. select SND_AC97_CODEC
  16. config SND_PXA2XX_PCM
  17. tristate
  18. select SND_PCM
  19. config SND_PXA2XX_LIB
  20. tristate
  21. select SND_AC97_CODEC if SND_PXA2XX_LIB_AC97
  22. config SND_PXA2XX_LIB_AC97
  23. bool
  24. config SND_PXA2XX_AC97
  25. tristate "AC97 driver for the Intel PXA2xx chip"
  26. depends on ARCH_PXA
  27. select SND_PXA2XX_PCM
  28. select SND_AC97_CODEC
  29. select SND_PXA2XX_LIB
  30. select SND_PXA2XX_LIB_AC97
  31. help
  32. Say Y or M if you want to support any AC97 codec attached to
  33. the PXA2xx AC97 interface.
  34. endif # SND_ARM