diff options
author | Sangsu Park <sangsu4u.park@samsung.com> | 2012-03-16 02:40:53 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-03-16 14:50:41 -0400 |
commit | 588fb705d560cd76d435382fb25bea7349672d80 (patch) | |
tree | 4f734971fb6bd0b67d7b04f53ca65c98f3ae8aaf /sound | |
parent | 181a68927b9e6ff7c0ea093c2f056eeb0552a911 (diff) |
ASoC: Samsung: Added to support mono recording
The dma size will be changed by requested number of
channel(mono/stereo) from platform. For mono recording,
channels_min value should be 1.
Signed-off-by: Sangsu Park <sangsu4u.park@samsung.com>
Signed-off-by: Sangbeom Kim <sbkim73@samsung.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/samsung/i2s.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sound/soc/samsung/i2s.c b/sound/soc/samsung/i2s.c index 6553b19c70c7..6ac7b8281a02 100644 --- a/sound/soc/samsung/i2s.c +++ b/sound/soc/samsung/i2s.c | |||
@@ -559,6 +559,17 @@ static int i2s_hw_params(struct snd_pcm_substream *substream, | |||
559 | mod |= MOD_DC1_EN; | 559 | mod |= MOD_DC1_EN; |
560 | break; | 560 | break; |
561 | case 2: | 561 | case 2: |
562 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | ||
563 | i2s->dma_playback.dma_size = 4; | ||
564 | else | ||
565 | i2s->dma_capture.dma_size = 4; | ||
566 | break; | ||
567 | case 1: | ||
568 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | ||
569 | i2s->dma_playback.dma_size = 2; | ||
570 | else | ||
571 | i2s->dma_capture.dma_size = 2; | ||
572 | |||
562 | break; | 573 | break; |
563 | default: | 574 | default: |
564 | dev_err(&i2s->pdev->dev, "%d channels not supported\n", | 575 | dev_err(&i2s->pdev->dev, "%d channels not supported\n", |
@@ -963,7 +974,7 @@ struct i2s_dai *i2s_alloc_dai(struct platform_device *pdev, bool sec) | |||
963 | i2s->i2s_dai_drv.playback.formats = SAMSUNG_I2S_FMTS; | 974 | i2s->i2s_dai_drv.playback.formats = SAMSUNG_I2S_FMTS; |
964 | 975 | ||
965 | if (!sec) { | 976 | if (!sec) { |
966 | i2s->i2s_dai_drv.capture.channels_min = 2; | 977 | i2s->i2s_dai_drv.capture.channels_min = 1; |
967 | i2s->i2s_dai_drv.capture.channels_max = 2; | 978 | i2s->i2s_dai_drv.capture.channels_max = 2; |
968 | i2s->i2s_dai_drv.capture.rates = SAMSUNG_I2S_RATES; | 979 | i2s->i2s_dai_drv.capture.rates = SAMSUNG_I2S_RATES; |
969 | i2s->i2s_dai_drv.capture.formats = SAMSUNG_I2S_FMTS; | 980 | i2s->i2s_dai_drv.capture.formats = SAMSUNG_I2S_FMTS; |