Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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_SA11XX_UDA1341
  12. tristate "SA11xx UDA1341TS driver (iPaq H3600)"
  13. depends on ARCH_SA1100 && L3
  14. select SND_PCM
  15. help
  16. Say Y here if you have a Compaq iPaq H3x00 handheld computer
  17. and want to use its Philips UDA 1341 audio chip.
  18. To compile this driver as a module, choose M here: the module
  19. will be called snd-sa11xx-uda1341.
  20. config SND_ARMAACI
  21. tristate "ARM PrimeCell PL041 AC Link support"
  22. depends on ARM_AMBA
  23. select SND_PCM
  24. select SND_AC97_CODEC
  25. config SND_PXA2XX_PCM
  26. tristate
  27. select SND_PCM
  28. config SND_PXA2XX_LIB
  29. tristate
  30. select SND_AC97_CODEC if SND_PXA2XX_LIB_AC97
  31. config SND_PXA2XX_LIB_AC97
  32. bool
  33. config SND_PXA2XX_AC97
  34. tristate "AC97 driver for the Intel PXA2xx chip"
  35. depends on ARCH_PXA
  36. select SND_PXA2XX_PCM
  37. select SND_AC97_CODEC
  38. select SND_PXA2XX_LIB
  39. select SND_PXA2XX_LIB_AC97
  40. help
  41. Say Y or M if you want to support any AC97 codec attached to
  42. the PXA2xx AC97 interface.
  43. endif # SND_ARM