mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
ASoC: SOF: ipc4-topology: Do not use the CPC value from topology
Stop parsing the CPC value from topology to module_base_cfg. The CPC value is only set for few modules in topology which makes the CPC handling inconsistent. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com> Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Link: https://lore.kernel.org/r/20230522101313.12519-5-peter.ujfalusi@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
19c745d1fd
commit
9caa901805
@ -39,8 +39,6 @@ static const struct sof_topology_token pipeline_tokens[] = {
|
||||
};
|
||||
|
||||
static const struct sof_topology_token ipc4_comp_tokens[] = {
|
||||
{SOF_TKN_COMP_CPC, SND_SOC_TPLG_TUPLE_TYPE_WORD, get_token_u32,
|
||||
offsetof(struct sof_ipc4_base_module_cfg, cpc)},
|
||||
{SOF_TKN_COMP_IS_PAGES, SND_SOC_TPLG_TUPLE_TYPE_WORD, get_token_u32,
|
||||
offsetof(struct sof_ipc4_base_module_cfg, is_pages)},
|
||||
};
|
||||
@ -235,7 +233,7 @@ static int sof_ipc4_get_audio_fmt(struct snd_soc_component *scomp,
|
||||
"Number of input audio formats: %d. Number of output audio formats: %d\n",
|
||||
available_fmt->num_input_formats, available_fmt->num_output_formats);
|
||||
|
||||
/* set cpc and is_pages in the module's base_config */
|
||||
/* set is_pages in the module's base_config */
|
||||
ret = sof_update_ipc_object(scomp, module_base_cfg, SOF_COMP_TOKENS, swidget->tuples,
|
||||
swidget->num_tuples, sizeof(*module_base_cfg), 1);
|
||||
if (ret) {
|
||||
@ -244,8 +242,8 @@ static int sof_ipc4_get_audio_fmt(struct snd_soc_component *scomp,
|
||||
return ret;
|
||||
}
|
||||
|
||||
dev_dbg(scomp->dev, "widget %s cpc: %d is_pages: %d\n",
|
||||
swidget->widget->name, module_base_cfg->cpc, module_base_cfg->is_pages);
|
||||
dev_dbg(scomp->dev, "widget %s: is_pages: %d\n", swidget->widget->name,
|
||||
module_base_cfg->is_pages);
|
||||
|
||||
if (available_fmt->num_input_formats) {
|
||||
in_format = kcalloc(available_fmt->num_input_formats,
|
||||
@ -723,9 +721,9 @@ static int sof_ipc4_widget_setup_comp_pga(struct snd_sof_widget *swidget)
|
||||
}
|
||||
|
||||
dev_dbg(scomp->dev,
|
||||
"pga widget %s: ramp type: %d, ramp duration %d, initial gain value: %#x, cpc %d\n",
|
||||
"pga widget %s: ramp type: %d, ramp duration %d, initial gain value: %#x\n",
|
||||
swidget->widget->name, gain->data.curve_type, gain->data.curve_duration_l,
|
||||
gain->data.init_val, gain->base_config.cpc);
|
||||
gain->data.init_val);
|
||||
|
||||
ret = sof_ipc4_widget_setup_msg(swidget, &gain->msg);
|
||||
if (ret)
|
||||
|
Loading…
Reference in New Issue
Block a user