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