| 1 | # ALSA Ubicom32 drivers |
| 2 | |
| 3 | menuconfig SND_UBI32 |
| 4 | tristate "Ubicom32 sound devices" |
| 5 | select SND_PCM |
| 6 | default n |
| 7 | help |
| 8 | Say Y here to include support for audio on the Ubicom32 platform. |
| 9 | To compile this driver as a module, say M here: the module will be |
| 10 | called snd_ubi32. |
| 11 | |
| 12 | if SND_UBI32 |
| 13 | |
| 14 | config SND_UBI32_AUDIO_GENERIC_CAPTURE |
| 15 | bool "Generic Capture Support" |
| 16 | default n |
| 17 | help |
| 18 | Use this option to support ADCs which don't require special drivers. |
| 19 | |
| 20 | config SND_UBI32_AUDIO_GENERIC |
| 21 | bool "Generic Playback Support" |
| 22 | default n |
| 23 | help |
| 24 | Use this option to support DACs which don't require special drivers. |
| 25 | |
| 26 | comment "I2C Based Codecs" |
| 27 | |
| 28 | config SND_UBI32_AUDIO_CS4350 |
| 29 | bool "Cirrus Logic CS4350 DAC" |
| 30 | depends on I2C |
| 31 | default n |
| 32 | help |
| 33 | Support for the Cirrus Logic CS4350 DAC. |
| 34 | |
| 35 | config SND_UBI32_AUDIO_CS4384 |
| 36 | bool "Cirrus Logic CS4384 DAC" |
| 37 | depends on I2C |
| 38 | default n |
| 39 | help |
| 40 | Support for the Cirrus Logic CS4384 DAC. |
| 41 | |
| 42 | endif #SND_UBI32 |
| 43 | |