[alsa-devel] [PATCH] ASOC: pcm: support fe dapm widget derived from codec_dai
From: nhcao nhcao@marvell.com
In some chips, the codec_dai in cpu is abstracted as one dapm widget. Enhance the framework to use codec_dai as fe widget.
Change-Id: I1b545bd1e2f24288f4508a7c6d4efbcfe1e03c5b Signed-off-by: nhcao nhcao@marvell.com --- sound/soc/soc-pcm.c | 24 ++++++++++++++++++++++-- 1 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c index 73bb8ee..6ca23d7 100644 --- a/sound/soc/soc-pcm.c +++ b/sound/soc/soc-pcm.c @@ -856,17 +856,37 @@ static int widget_in_list(struct snd_soc_dapm_widget_list *list, static int dpcm_path_get(struct snd_soc_pcm_runtime *fe, int stream, struct snd_soc_dapm_widget_list **list_) { - struct snd_soc_dai *cpu_dai = fe->cpu_dai; + struct snd_soc_dai *dai = fe->cpu_dai ; struct snd_soc_dapm_widget_list *list; int paths;
+ if (stream == SNDRV_PCM_STREAM_PLAYBACK) { + if (fe->cpu_dai->playback_widget) { + dai = fe->cpu_dai; + } else if (fe->codec_dai->playback_widget) { + dai = fe->codec_dai; + } else { + dev_err(fe->dev, "ASoC: can't find the correspond playback_widget for the dai\n"); + return -EINVAL; + } + } else if (stream == SNDRV_PCM_STREAM_CAPTURE) { + if (fe->cpu_dai->capture_widget) { + dai = fe->cpu_dai; + } else if (fe->codec_dai->capture_widget) { + dai = fe->codec_dai; + } else { + dev_err(fe->dev, "ASoC: can't find the correspond capture_widget for the dai\n"); + return -EINVAL; + } + } + list = kzalloc(sizeof(struct snd_soc_dapm_widget_list) + sizeof(struct snd_soc_dapm_widget *), GFP_KERNEL); if (list == NULL) return -ENOMEM;
/* get number of valid DAI paths and their widgets */ - paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, &list); + paths = snd_soc_dapm_dai_get_connected_widgets(dai, stream, &list);
dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths, stream ? "capture" : "playback");
participants (1)
-
Nenghua Cao