Commit 9ab711cb authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: soc-link: add snd_soc_link_compr_startup()

dai_link related function should be implemented at soc-link.c.
This patch adds snd_soc_link_compr_startup().
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: default avatarRanjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/87v9kk3k6y.wl-kuninori.morimoto.gx@renesas.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 0cbbf8a0
...@@ -20,4 +20,6 @@ int snd_soc_link_hw_params(struct snd_pcm_substream *substream, ...@@ -20,4 +20,6 @@ int snd_soc_link_hw_params(struct snd_pcm_substream *substream,
void snd_soc_link_hw_free(struct snd_pcm_substream *substream); void snd_soc_link_hw_free(struct snd_pcm_substream *substream);
int snd_soc_link_trigger(struct snd_pcm_substream *substream, int cmd); int snd_soc_link_trigger(struct snd_pcm_substream *substream, int cmd);
int snd_soc_link_compr_startup(struct snd_compr_stream *cstream);
#endif /* __SOC_LINK_H */ #endif /* __SOC_LINK_H */
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include <sound/soc.h> #include <sound/soc.h>
#include <sound/initval.h> #include <sound/initval.h>
#include <sound/soc-dpcm.h> #include <sound/soc-dpcm.h>
#include <sound/soc-link.h>
#include <linux/pm_runtime.h> #include <linux/pm_runtime.h>
static int soc_compr_components_open(struct snd_compr_stream *cstream, static int soc_compr_components_open(struct snd_compr_stream *cstream,
...@@ -95,15 +96,9 @@ static int soc_compr_open(struct snd_compr_stream *cstream) ...@@ -95,15 +96,9 @@ static int soc_compr_open(struct snd_compr_stream *cstream)
if (ret < 0) if (ret < 0)
goto machine_err; goto machine_err;
if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->startup) { ret = snd_soc_link_compr_startup(cstream);
ret = rtd->dai_link->compr_ops->startup(cstream); if (ret < 0)
if (ret < 0) { goto machine_err;
dev_err(rtd->dev,
"Compress ASoC: %s startup failed: %d\n",
rtd->dai_link->name, ret);
goto machine_err;
}
}
snd_soc_runtime_activate(rtd, cstream->direction); snd_soc_runtime_activate(rtd, cstream->direction);
...@@ -179,14 +174,9 @@ static int soc_compr_open_fe(struct snd_compr_stream *cstream) ...@@ -179,14 +174,9 @@ static int soc_compr_open_fe(struct snd_compr_stream *cstream)
if (ret < 0) if (ret < 0)
goto open_err; goto open_err;
if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->startup) { ret = snd_soc_link_compr_startup(cstream);
ret = fe->dai_link->compr_ops->startup(cstream); if (ret < 0)
if (ret < 0) { goto machine_err;
pr_err("Compress ASoC: %s startup failed: %d\n",
fe->dai_link->name, ret);
goto machine_err;
}
}
dpcm_clear_pending_state(fe, stream); dpcm_clear_pending_state(fe, stream);
dpcm_path_put(&list); dpcm_path_put(&list);
......
...@@ -113,3 +113,16 @@ int snd_soc_link_trigger(struct snd_pcm_substream *substream, int cmd) ...@@ -113,3 +113,16 @@ int snd_soc_link_trigger(struct snd_pcm_substream *substream, int cmd)
return soc_link_ret(rtd, ret); return soc_link_ret(rtd, ret);
} }
int snd_soc_link_compr_startup(struct snd_compr_stream *cstream)
{
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
int ret = 0;
if (rtd->dai_link->compr_ops &&
rtd->dai_link->compr_ops->startup)
ret = rtd->dai_link->compr_ops->startup(cstream);
return soc_link_ret(rtd, ret);
}
EXPORT_SYMBOL_GPL(snd_soc_link_compr_startup);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment