ASoC: SOF: IPC4: extend dai_data with node_id
The node_id value needs to be handled specifically for ALH. Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://msgid.link/r/20240402151828.175002-11-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
8bc3b56cac
commit
a936456d4b
@ -491,6 +491,7 @@ int sdw_hda_dai_hw_params(struct snd_pcm_substream *substream,
|
||||
int i;
|
||||
|
||||
data.dai_index = (link_id << 8) | cpu_dai->id;
|
||||
data.dai_node_id = intel_alh_id;
|
||||
ret = non_hda_dai_hw_params_data(substream, params, cpu_dai, &data, flags);
|
||||
if (ret < 0) {
|
||||
dev_err(cpu_dai->dev, "%s: non_hda_dai_hw_params failed %d\n", __func__, ret);
|
||||
|
@ -145,6 +145,7 @@ static int sdw_params_stream(struct device *dev,
|
||||
|
||||
data.dai_index = (params_data->link_id << 8) | d->id;
|
||||
data.dai_data = params_data->alh_stream_id;
|
||||
data.dai_node_id = data.dai_data;
|
||||
|
||||
return hda_dai_config(w, SOF_DAI_CONFIG_FLAGS_HW_PARAMS, &data);
|
||||
}
|
||||
|
@ -2825,7 +2825,11 @@ static int sof_ipc4_dai_config(struct snd_sof_dev *sdev, struct snd_sof_widget *
|
||||
case SOF_DAI_INTEL_HDA:
|
||||
gtw_attr = ipc4_copier->gtw_attr;
|
||||
gtw_attr->lp_buffer_alloc = pipeline->lp_mode;
|
||||
fallthrough;
|
||||
if (flags & SOF_DAI_CONFIG_FLAGS_HW_PARAMS) {
|
||||
copier_data->gtw_cfg.node_id &= ~SOF_IPC4_NODE_INDEX_MASK;
|
||||
copier_data->gtw_cfg.node_id |= SOF_IPC4_NODE_INDEX(data->dai_data);
|
||||
}
|
||||
break;
|
||||
case SOF_DAI_INTEL_ALH:
|
||||
/*
|
||||
* Do not clear the node ID when this op is invoked with
|
||||
@ -2834,7 +2838,7 @@ static int sof_ipc4_dai_config(struct snd_sof_dev *sdev, struct snd_sof_widget *
|
||||
*/
|
||||
if (flags & SOF_DAI_CONFIG_FLAGS_HW_PARAMS) {
|
||||
copier_data->gtw_cfg.node_id &= ~SOF_IPC4_NODE_INDEX_MASK;
|
||||
copier_data->gtw_cfg.node_id |= SOF_IPC4_NODE_INDEX(data->dai_data);
|
||||
copier_data->gtw_cfg.node_id |= SOF_IPC4_NODE_INDEX(data->dai_node_id);
|
||||
}
|
||||
break;
|
||||
case SOF_DAI_INTEL_DMIC:
|
||||
|
@ -91,6 +91,7 @@ struct snd_sof_pcm;
|
||||
struct snd_sof_dai_config_data {
|
||||
int dai_index;
|
||||
int dai_data; /* contains DAI-specific information */
|
||||
int dai_node_id; /* contains DAI-specific information for Gateway configuration */
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user