aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/samsung
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/samsung')
-rw-r--r--sound/soc/samsung/i2s.c13
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;