diff options
author | Ryder Lee <ryder.lee@mediatek.com> | 2017-03-29 10:59:31 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-03-29 12:37:53 +0200 |
commit | 8625c1dbd87631572f8e2c05bc67736b73d6f02f (patch) | |
tree | 025e9715c1fdd3573888d9da44bdbd9424bbcc83 /sound/soc/mediatek/mt2701/mt2701-afe-pcm.c | |
parent | ASoC: mediatek: constify snd_soc_ops structures (diff) | |
download | linux-8625c1dbd87631572f8e2c05bc67736b73d6f02f.tar.xz linux-8625c1dbd87631572f8e2c05bc67736b73d6f02f.zip |
ASoC: mediatek: Add mt2701-wm8960 machine driver
Add wm8960 machine driver and config option for MT2701.
Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/mediatek/mt2701/mt2701-afe-pcm.c')
-rw-r--r-- | sound/soc/mediatek/mt2701/mt2701-afe-pcm.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c b/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c index c7fa3e663463..bc5d4db94de6 100644 --- a/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c +++ b/sound/soc/mediatek/mt2701/mt2701-afe-pcm.c @@ -604,6 +604,22 @@ static struct snd_soc_dai_ops mt2701_btmrg_ops = { static struct snd_soc_dai_driver mt2701_afe_pcm_dais[] = { /* FE DAIs: memory intefaces to CPU */ { + .name = "PCMO0", + .id = MT2701_MEMIF_DL1, + .suspend = mtk_afe_dai_suspend, + .resume = mtk_afe_dai_resume, + .playback = { + .stream_name = "DL1", + .channels_min = 1, + .channels_max = 2, + .rates = SNDRV_PCM_RATE_8000_192000, + .formats = (SNDRV_PCM_FMTBIT_S16_LE + | SNDRV_PCM_FMTBIT_S24_LE + | SNDRV_PCM_FMTBIT_S32_LE) + }, + .ops = &mt2701_single_memif_dai_ops, + }, + { .name = "PCM_multi", .id = MT2701_MEMIF_DLM, .suspend = mtk_afe_dai_suspend, |