@@ -578,17 +578,31 @@ intel_pdi_alh_configure(struct sdw_intel *sdw, struct sdw_cdns_pdi *pdi)
static int intel_config_stream(struct sdw_intel *sdw,
struct snd_pcm_substream *substream,
struct snd_soc_dai *dai,
- struct snd_pcm_hw_params *hw_params, int link_id)
+ struct snd_pcm_hw_params *hw_params,
+ int link_id, int alh_stream_id)
{
struct sdw_intel_link_res *res = sdw->res;
if (res->ops && res->ops->config_stream && res->arg)
return res->ops->config_stream(res->arg,
- substream, dai, hw_params, link_id);
+ substream, dai, hw_params,
+ link_id, alh_stream_id);
return -EIO;
}
+static int intel_free_stream(struct sdw_intel *sdw,
+ struct snd_pcm_substream *substream,
+ struct snd_soc_dai *dai,
+ int link_id)
+{
+ if (sdw->res->ops && sdw->res->ops->free_stream && sdw->res->arg)
+ return sdw->res->ops->free_stream(sdw->res->arg,
+ substream, dai, link_id);
+
+ return 0;
+}
+
/*
* bank switch routines
*/
@@ -718,6 +732,7 @@ static int intel_hw_params(struct snd_pcm_substream *substream,
/* Inform DSP about PDI stream number */
ret = intel_config_stream(sdw, substream, dai, params,
+ sdw->instance,
pdi->intel_alh_id);
if (ret)
goto error;
@@ -12,7 +12,9 @@
*/
struct sdw_intel_ops {
int (*config_stream)(void *arg, void *substream,
- void *dai, void *hw_params, int stream_num);
+ void *dai, void *hw_params,
+ int link_id, int alh_stream_id);
+ int (*free_stream)(void *arg, void *substream, void *dai, int link_id);
};
/**