diff options
author | Jarkko Nikula <jhnikula@gmail.com> | 2011-03-09 04:25:00 -0500 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2011-03-09 05:52:28 -0500 |
commit | fa4d1f595a89234647b34a7f507436be873091bc (patch) | |
tree | 3ce719294b6ffd656f66cc9ee4ec3bbc1c1e111e | |
parent | 9d7e584b3fb4d9f581b83c0916e10b91de78e663 (diff) |
ASoC: omap: rx51: Enable McBSP2 sidetone
McBSP sidetone is needed in telephony applications. McBSP sidetone is a
configurable FIR filter that forms a loopback from McBSP input to output.
This patch enables the McBSP2 sidetone ALSA controls so that it can be used
on Nokia RX-51/N900.
Sidetone feature can be tested with following commands:
(set up codec input and output paths)
# Enable and configure sidetone
amixer -D hw:0 set 'McBSP2 Sidetone' on
amixer set -D hw:0 'McBSP2 Sidetone Channel 0' 32767
echo 32767 >/sys/devices/platform/omap-mcbsp.2/st_taps
# Do not loop audio via CPU
arecord -f dat >/dev/null |aplay /dev/zero
Signed-off-by: Jarkko Nikula <jhnikula@gmail.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
-rw-r--r-- | sound/soc/omap/rx51.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/soc/omap/rx51.c b/sound/soc/omap/rx51.c index 055e447b2ed6..d0986220eff9 100644 --- a/sound/soc/omap/rx51.c +++ b/sound/soc/omap/rx51.c | |||
@@ -331,6 +331,10 @@ static int rx51_aic34_init(struct snd_soc_pcm_runtime *rtd) | |||
331 | return err; | 331 | return err; |
332 | snd_soc_limit_volume(codec, "TPA6130A2 Headphone Playback Volume", 42); | 332 | snd_soc_limit_volume(codec, "TPA6130A2 Headphone Playback Volume", 42); |
333 | 333 | ||
334 | err = omap_mcbsp_st_add_controls(codec, 1); | ||
335 | if (err < 0) | ||
336 | return err; | ||
337 | |||
334 | snd_soc_dapm_sync(dapm); | 338 | snd_soc_dapm_sync(dapm); |
335 | 339 | ||
336 | /* AV jack detection */ | 340 | /* AV jack detection */ |