Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. select SND_JACK if INPUT=y || INPUT=SND
  9. ---help---
  10. If you want ASoC support, you should say Y here and also to the
  11. specific driver for your SoC platform below.
  12. ASoC provides power efficient ALSA support for embedded battery powered
  13. SoC based systems like PDA's, Phones and Personal Media Players.
  14. This ASoC audio support can also be built as a module. If so, the module
  15. will be called snd-soc-core.
  16. if SND_SOC
  17. config SND_SOC_CACHE_LZO
  18. bool "Support LZO compression for register caches"
  19. select LZO_COMPRESS
  20. select LZO_DECOMPRESS
  21. ---help---
  22. Select this to enable LZO compression for register caches.
  23. This will allow machine or CODEC drivers to compress register
  24. caches in memory, reducing the memory consumption at the
  25. expense of performance. If this is not present and is used
  26. the system will fall back to uncompressed caches.
  27. Usually it is safe to disable this option, where cache
  28. compression in used the rbtree option will typically perform
  29. better.
  30. config SND_SOC_AC97_BUS
  31. bool
  32. # All the supported SoCs
  33. source "sound/soc/atmel/Kconfig"
  34. source "sound/soc/au1x/Kconfig"
  35. source "sound/soc/blackfin/Kconfig"
  36. source "sound/soc/davinci/Kconfig"
  37. source "sound/soc/ep93xx/Kconfig"
  38. source "sound/soc/fsl/Kconfig"
  39. source "sound/soc/imx/Kconfig"
  40. source "sound/soc/jz4740/Kconfig"
  41. source "sound/soc/nuc900/Kconfig"
  42. source "sound/soc/omap/Kconfig"
  43. source "sound/soc/kirkwood/Kconfig"
  44. source "sound/soc/mid-x86/Kconfig"
  45. source "sound/soc/pxa/Kconfig"
  46. source "sound/soc/samsung/Kconfig"
  47. source "sound/soc/s6000/Kconfig"
  48. source "sound/soc/sh/Kconfig"
  49. source "sound/soc/tegra/Kconfig"
  50. source "sound/soc/txx9/Kconfig"
  51. # for Amlogic SoC
  52. source "sound/soc/aml/Kconfig"
  53. # Supported codecs
  54. source "sound/soc/codecs/Kconfig"
  55. endif # SND_SOC