Merge series "ASoC: merge soc_compr_open() rollback and soc_compr_free()" from Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>:
Hi Mark soc_compr_open() does rollback when failed (A), but, it is almost same as soc_compr_free(). static int soc_compr_open(xxx) { ... if (ret < 0) goto xxx_err; ... return 0; ^ machine_err: | ... | out: (A) ... | pm_err: | ... v return ret; } This kind of duplicated code can be a hotbed of bugs, thus, this patch-set share soc_compr_free() and rollback. Kuninori Morimoto (5): ASoC: soc-compress: move soc_compr_free() next to soc_compr_open() ASoC: soc-dai: add mark for snd_soc_dai_compr_startup/shutdown() ASoC: soc-component: add mark for snd_soc_component_compr_open/free() ASoC: soc-component: add mark for snd_soc_link_compr_startup/shutdown() ASoC: soc-compress: add soc_compr_clean() and call it from soc_compr_open/free() include/sound/soc-component.h | 6 +- include/sound/soc-dai.h | 4 +- include/sound/soc-link.h | 3 +- include/sound/soc.h | 1 + sound/soc/soc-component.c | 17 +++-- sound/soc/soc-compress.c | 115 +++++++++++++++++----------------- sound/soc/soc-dai.c | 13 +++- sound/soc/soc-link.c | 11 +++- 8 files changed, 95 insertions(+), 75 deletions(-) -- 2.25.1
This commit is contained in:
commit
6d9b4dbf82
@ -221,6 +221,7 @@ struct snd_soc_component {
|
||||
struct snd_pcm_substream *mark_module;
|
||||
struct snd_pcm_substream *mark_open;
|
||||
struct snd_pcm_substream *mark_hw_params;
|
||||
struct snd_compr_stream *mark_compr_open;
|
||||
void *mark_pm;
|
||||
|
||||
#ifdef CONFIG_DEBUG_FS
|
||||
@ -444,10 +445,9 @@ int snd_soc_component_of_xlate_dai_id(struct snd_soc_component *component,
|
||||
int snd_soc_component_of_xlate_dai_name(struct snd_soc_component *component,
|
||||
struct of_phandle_args *args,
|
||||
const char **dai_name);
|
||||
int snd_soc_component_compr_open(struct snd_compr_stream *cstream,
|
||||
struct snd_soc_component **last);
|
||||
int snd_soc_component_compr_open(struct snd_compr_stream *cstream);
|
||||
void snd_soc_component_compr_free(struct snd_compr_stream *cstream,
|
||||
struct snd_soc_component *last);
|
||||
int rollback);
|
||||
int snd_soc_component_compr_trigger(struct snd_compr_stream *cstream, int cmd);
|
||||
int snd_soc_component_compr_set_params(struct snd_compr_stream *cstream,
|
||||
struct snd_compr_params *params);
|
||||
|
@ -196,7 +196,8 @@ int snd_soc_pcm_dai_bespoke_trigger(struct snd_pcm_substream *substream,
|
||||
int snd_soc_dai_compr_startup(struct snd_soc_dai *dai,
|
||||
struct snd_compr_stream *cstream);
|
||||
void snd_soc_dai_compr_shutdown(struct snd_soc_dai *dai,
|
||||
struct snd_compr_stream *cstream);
|
||||
struct snd_compr_stream *cstream,
|
||||
int rollback);
|
||||
int snd_soc_dai_compr_trigger(struct snd_soc_dai *dai,
|
||||
struct snd_compr_stream *cstream, int cmd);
|
||||
int snd_soc_dai_compr_set_params(struct snd_soc_dai *dai,
|
||||
@ -400,6 +401,7 @@ struct snd_soc_dai {
|
||||
/* function mark */
|
||||
struct snd_pcm_substream *mark_startup;
|
||||
struct snd_pcm_substream *mark_hw_params;
|
||||
struct snd_compr_stream *mark_compr_startup;
|
||||
|
||||
/* bit field */
|
||||
unsigned int probed:1;
|
||||
|
@ -24,7 +24,8 @@ 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_compr_startup(struct snd_compr_stream *cstream);
|
||||
void snd_soc_link_compr_shutdown(struct snd_compr_stream *cstream);
|
||||
void snd_soc_link_compr_shutdown(struct snd_compr_stream *cstream,
|
||||
int rollback);
|
||||
int snd_soc_link_compr_set_params(struct snd_compr_stream *cstream);
|
||||
|
||||
#endif /* __SOC_LINK_H */
|
||||
|
@ -1163,6 +1163,7 @@ struct snd_soc_pcm_runtime {
|
||||
/* function mark */
|
||||
struct snd_pcm_substream *mark_startup;
|
||||
struct snd_pcm_substream *mark_hw_params;
|
||||
struct snd_compr_stream *mark_compr_startup;
|
||||
|
||||
/* bit field */
|
||||
unsigned int pop_wait:1;
|
||||
|
@ -421,8 +421,7 @@ EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
|
||||
|
||||
#endif
|
||||
|
||||
int snd_soc_component_compr_open(struct snd_compr_stream *cstream,
|
||||
struct snd_soc_component **last)
|
||||
int snd_soc_component_compr_open(struct snd_compr_stream *cstream)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
||||
struct snd_soc_component *component;
|
||||
@ -432,32 +431,32 @@ int snd_soc_component_compr_open(struct snd_compr_stream *cstream,
|
||||
if (component->driver->compress_ops &&
|
||||
component->driver->compress_ops->open) {
|
||||
ret = component->driver->compress_ops->open(component, cstream);
|
||||
if (ret < 0) {
|
||||
*last = component;
|
||||
if (ret < 0)
|
||||
return soc_component_ret(component, ret);
|
||||
}
|
||||
}
|
||||
soc_component_mark_push(component, cstream, compr_open);
|
||||
}
|
||||
|
||||
*last = NULL;
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_component_compr_open);
|
||||
|
||||
void snd_soc_component_compr_free(struct snd_compr_stream *cstream,
|
||||
struct snd_soc_component *last)
|
||||
int rollback)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
||||
struct snd_soc_component *component;
|
||||
int i;
|
||||
|
||||
for_each_rtd_components(rtd, i, component) {
|
||||
if (component == last)
|
||||
break;
|
||||
if (rollback && !soc_component_mark_match(component, cstream, compr_open))
|
||||
continue;
|
||||
|
||||
if (component->driver->compress_ops &&
|
||||
component->driver->compress_ops->free)
|
||||
component->driver->compress_ops->free(component, cstream);
|
||||
|
||||
soc_component_mark_pop(component, cstream, compr_open);
|
||||
}
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_component_compr_free);
|
||||
|
@ -22,46 +22,78 @@
|
||||
#include <sound/soc-link.h>
|
||||
#include <linux/pm_runtime.h>
|
||||
|
||||
static int soc_compr_clean(struct snd_compr_stream *cstream, int rollback)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
||||
struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0);
|
||||
struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
|
||||
int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
|
||||
|
||||
mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
|
||||
|
||||
if (!rollback)
|
||||
snd_soc_runtime_deactivate(rtd, stream);
|
||||
|
||||
snd_soc_dai_digital_mute(codec_dai, 1, stream);
|
||||
|
||||
if (!snd_soc_dai_active(cpu_dai))
|
||||
cpu_dai->rate = 0;
|
||||
|
||||
if (!snd_soc_dai_active(codec_dai))
|
||||
codec_dai->rate = 0;
|
||||
|
||||
snd_soc_link_compr_shutdown(cstream, rollback);
|
||||
|
||||
snd_soc_component_compr_free(cstream, rollback);
|
||||
|
||||
snd_soc_dai_compr_shutdown(cpu_dai, cstream, rollback);
|
||||
|
||||
if (!rollback)
|
||||
snd_soc_dapm_stream_stop(rtd, stream);
|
||||
|
||||
mutex_unlock(&rtd->card->pcm_mutex);
|
||||
|
||||
snd_soc_pcm_component_pm_runtime_put(rtd, cstream, rollback);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int soc_compr_free(struct snd_compr_stream *cstream)
|
||||
{
|
||||
return soc_compr_clean(cstream, 0);
|
||||
}
|
||||
|
||||
static int soc_compr_open(struct snd_compr_stream *cstream)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
||||
struct snd_soc_component *component = NULL;
|
||||
struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0);
|
||||
int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
|
||||
int ret;
|
||||
|
||||
ret = snd_soc_pcm_component_pm_runtime_get(rtd, cstream);
|
||||
if (ret < 0)
|
||||
goto pm_err;
|
||||
goto err_no_lock;
|
||||
|
||||
mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
|
||||
|
||||
ret = snd_soc_dai_compr_startup(cpu_dai, cstream);
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
goto err;
|
||||
|
||||
ret = snd_soc_component_compr_open(cstream, &component);
|
||||
ret = snd_soc_component_compr_open(cstream);
|
||||
if (ret < 0)
|
||||
goto machine_err;
|
||||
goto err;
|
||||
|
||||
ret = snd_soc_link_compr_startup(cstream);
|
||||
if (ret < 0)
|
||||
goto machine_err;
|
||||
goto err;
|
||||
|
||||
snd_soc_runtime_activate(rtd, stream);
|
||||
|
||||
err:
|
||||
mutex_unlock(&rtd->card->pcm_mutex);
|
||||
|
||||
return 0;
|
||||
|
||||
machine_err:
|
||||
snd_soc_component_compr_free(cstream, component);
|
||||
|
||||
snd_soc_dai_compr_shutdown(cpu_dai, cstream);
|
||||
out:
|
||||
mutex_unlock(&rtd->card->pcm_mutex);
|
||||
pm_err:
|
||||
snd_soc_pcm_component_pm_runtime_put(rtd, cstream, 1);
|
||||
err_no_lock:
|
||||
if (ret < 0)
|
||||
soc_compr_clean(cstream, 1);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -71,7 +103,6 @@ static int soc_compr_open_fe(struct snd_compr_stream *cstream)
|
||||
struct snd_soc_pcm_runtime *fe = cstream->private_data;
|
||||
struct snd_pcm_substream *fe_substream =
|
||||
fe->pcm->streams[cstream->direction].substream;
|
||||
struct snd_soc_component *component;
|
||||
struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(fe, 0);
|
||||
struct snd_soc_dpcm *dpcm;
|
||||
struct snd_soc_dapm_widget_list *list;
|
||||
@ -108,7 +139,7 @@ static int soc_compr_open_fe(struct snd_compr_stream *cstream)
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
|
||||
ret = snd_soc_component_compr_open(cstream, &component);
|
||||
ret = snd_soc_component_compr_open(cstream);
|
||||
if (ret < 0)
|
||||
goto open_err;
|
||||
|
||||
@ -129,9 +160,9 @@ static int soc_compr_open_fe(struct snd_compr_stream *cstream)
|
||||
return 0;
|
||||
|
||||
machine_err:
|
||||
snd_soc_component_compr_free(cstream, component);
|
||||
snd_soc_component_compr_free(cstream, 1);
|
||||
open_err:
|
||||
snd_soc_dai_compr_shutdown(cpu_dai, cstream);
|
||||
snd_soc_dai_compr_shutdown(cpu_dai, cstream, 1);
|
||||
out:
|
||||
dpcm_path_put(&list);
|
||||
be_err:
|
||||
@ -140,40 +171,6 @@ be_err:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int soc_compr_free(struct snd_compr_stream *cstream)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
||||
struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0);
|
||||
struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
|
||||
int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
|
||||
|
||||
mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
|
||||
|
||||
snd_soc_runtime_deactivate(rtd, stream);
|
||||
|
||||
snd_soc_dai_digital_mute(codec_dai, 1, stream);
|
||||
|
||||
if (!snd_soc_dai_active(cpu_dai))
|
||||
cpu_dai->rate = 0;
|
||||
|
||||
if (!snd_soc_dai_active(codec_dai))
|
||||
codec_dai->rate = 0;
|
||||
|
||||
snd_soc_link_compr_shutdown(cstream);
|
||||
|
||||
snd_soc_component_compr_free(cstream, NULL);
|
||||
|
||||
snd_soc_dai_compr_shutdown(cpu_dai, cstream);
|
||||
|
||||
snd_soc_dapm_stream_stop(rtd, stream);
|
||||
|
||||
mutex_unlock(&rtd->card->pcm_mutex);
|
||||
|
||||
snd_soc_pcm_component_pm_runtime_put(rtd, cstream, 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int soc_compr_free_fe(struct snd_compr_stream *cstream)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *fe = cstream->private_data;
|
||||
@ -207,11 +204,11 @@ static int soc_compr_free_fe(struct snd_compr_stream *cstream)
|
||||
|
||||
fe->dpcm[stream].runtime = NULL;
|
||||
|
||||
snd_soc_link_compr_shutdown(cstream);
|
||||
snd_soc_link_compr_shutdown(cstream, 0);
|
||||
|
||||
snd_soc_component_compr_free(cstream, NULL);
|
||||
snd_soc_component_compr_free(cstream, 0);
|
||||
|
||||
snd_soc_dai_compr_shutdown(cpu_dai, cstream);
|
||||
snd_soc_dai_compr_shutdown(cpu_dai, cstream, 0);
|
||||
|
||||
mutex_unlock(&fe->card->mutex);
|
||||
return 0;
|
||||
|
@ -612,16 +612,27 @@ int snd_soc_dai_compr_startup(struct snd_soc_dai *dai,
|
||||
dai->driver->cops->startup)
|
||||
ret = dai->driver->cops->startup(cstream, dai);
|
||||
|
||||
/* mark cstream if succeeded */
|
||||
if (ret == 0)
|
||||
soc_dai_mark_push(dai, cstream, compr_startup);
|
||||
|
||||
return soc_dai_ret(dai, ret);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_dai_compr_startup);
|
||||
|
||||
void snd_soc_dai_compr_shutdown(struct snd_soc_dai *dai,
|
||||
struct snd_compr_stream *cstream)
|
||||
struct snd_compr_stream *cstream,
|
||||
int rollback)
|
||||
{
|
||||
if (rollback && !soc_dai_mark_match(dai, cstream, compr_startup))
|
||||
return;
|
||||
|
||||
if (dai->driver->cops &&
|
||||
dai->driver->cops->shutdown)
|
||||
dai->driver->cops->shutdown(cstream, dai);
|
||||
|
||||
/* remove marked cstream */
|
||||
soc_dai_mark_pop(dai, cstream, compr_startup);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_dai_compr_shutdown);
|
||||
|
||||
|
@ -162,17 +162,26 @@ int snd_soc_link_compr_startup(struct snd_compr_stream *cstream)
|
||||
rtd->dai_link->compr_ops->startup)
|
||||
ret = rtd->dai_link->compr_ops->startup(cstream);
|
||||
|
||||
if (ret == 0)
|
||||
soc_link_mark_push(rtd, cstream, compr_startup);
|
||||
|
||||
return soc_link_ret(rtd, ret);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_link_compr_startup);
|
||||
|
||||
void snd_soc_link_compr_shutdown(struct snd_compr_stream *cstream)
|
||||
void snd_soc_link_compr_shutdown(struct snd_compr_stream *cstream,
|
||||
int rollback)
|
||||
{
|
||||
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
||||
|
||||
if (rollback && !soc_link_mark_match(rtd, cstream, compr_startup))
|
||||
return;
|
||||
|
||||
if (rtd->dai_link->compr_ops &&
|
||||
rtd->dai_link->compr_ops->shutdown)
|
||||
rtd->dai_link->compr_ops->shutdown(cstream);
|
||||
|
||||
soc_link_mark_pop(rtd, cstream, compr_startup);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_link_compr_shutdown);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user