mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-11 16:56:14 -04:00
ASoC: fsl_audmix: Split playback and capture stream to different DAI
As audmix requires playback and capture stream in different master/slave mode, so separate playback and capture stream to different DAI. There are three DAIs required, two DAIs for playback one DAI for capture. Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com> Link: https://patch.msgid.link/1718174452-17596-3-git-send-email-shengjiu.wang@nxp.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
committed by
Mark Brown
parent
15c9583904
commit
6232a7eb1a
@@ -326,15 +326,6 @@ static struct snd_soc_dai_driver fsl_audmix_dai[] = {
|
||||
.rates = SNDRV_PCM_RATE_8000_96000,
|
||||
.formats = FSL_AUDMIX_FORMATS,
|
||||
},
|
||||
.capture = {
|
||||
.stream_name = "AUDMIX-Capture-0",
|
||||
.channels_min = 8,
|
||||
.channels_max = 8,
|
||||
.rate_min = 8000,
|
||||
.rate_max = 96000,
|
||||
.rates = SNDRV_PCM_RATE_8000_96000,
|
||||
.formats = FSL_AUDMIX_FORMATS,
|
||||
},
|
||||
.ops = &fsl_audmix_dai_ops,
|
||||
},
|
||||
{
|
||||
@@ -349,8 +340,13 @@ static struct snd_soc_dai_driver fsl_audmix_dai[] = {
|
||||
.rates = SNDRV_PCM_RATE_8000_96000,
|
||||
.formats = FSL_AUDMIX_FORMATS,
|
||||
},
|
||||
.ops = &fsl_audmix_dai_ops,
|
||||
},
|
||||
{
|
||||
.id = 2,
|
||||
.name = "audmix-2",
|
||||
.capture = {
|
||||
.stream_name = "AUDMIX-Capture-1",
|
||||
.stream_name = "AUDMIX-Capture-0",
|
||||
.channels_min = 8,
|
||||
.channels_max = 8,
|
||||
.rate_min = 8000,
|
||||
|
||||
Reference in New Issue
Block a user