Kconfig 963 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # SoC audio configuration
  3. #
  4. menuconfig SND_SOC
  5. tristate "ALSA for SoC audio support"
  6. select SND_PCM
  7. select AC97_BUS if SND_SOC_AC97_BUS
  8. ---help---
  9. If you want ASoC support, you should say Y here and also to the
  10. specific driver for your SoC platform below.
  11. ASoC provides power efficient ALSA support for embedded battery powered
  12. SoC based systems like PDA's, Phones and Personal Media Players.
  13. This ASoC audio support can also be built as a module. If so, the module
  14. will be called snd-soc-core.
  15. if SND_SOC
  16. config SND_SOC_AC97_BUS
  17. bool
  18. # All the supported SoCs
  19. source "sound/soc/atmel/Kconfig"
  20. source "sound/soc/au1x/Kconfig"
  21. source "sound/soc/blackfin/Kconfig"
  22. source "sound/soc/davinci/Kconfig"
  23. source "sound/soc/fsl/Kconfig"
  24. source "sound/soc/omap/Kconfig"
  25. source "sound/soc/pxa/Kconfig"
  26. source "sound/soc/s3c24xx/Kconfig"
  27. source "sound/soc/sh/Kconfig"
  28. # Supported codecs
  29. source "sound/soc/codecs/Kconfig"
  30. endif # SND_SOC