diff options
author | Liam Girdwood <liam.r.girdwood@linux.intel.com> | 2018-03-27 15:30:43 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-04-17 19:07:32 +0200 |
commit | 28aa6f7779f77a863a08c1b9db4b654a94c86dd0 (patch) | |
tree | 7b5964715bd56059ccd55a3e1b986b7c000b5fc4 /include/sound | |
parent | ASoC: topology: Give more data to clients via callbacks (diff) | |
download | linux-28aa6f7779f77a863a08c1b9db4b654a94c86dd0.tar.xz linux-28aa6f7779f77a863a08c1b9db4b654a94c86dd0.zip |
ASoC: topology: Add callback for DAPM route load/unload
Add a callback fro clients for notification about DAPM route loading and
unloading.
Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/soc-topology.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sound/soc-topology.h b/include/sound/soc-topology.h index e1f265e21ee1..401ef2c45d6c 100644 --- a/include/sound/soc-topology.h +++ b/include/sound/soc-topology.h @@ -32,6 +32,7 @@ struct snd_kcontrol_new; struct snd_soc_dai_link; struct snd_soc_dai_driver; struct snd_soc_dai; +struct snd_soc_dapm_route; /* object scan be loaded and unloaded in groups with identfying indexes */ #define SND_SOC_TPLG_INDEX_ALL 0 /* ID that matches all FW objects */ @@ -116,6 +117,12 @@ struct snd_soc_tplg_ops { int (*control_unload)(struct snd_soc_component *, struct snd_soc_dobj *); + /* DAPM graph route element loading and unloading */ + int (*dapm_route_load)(struct snd_soc_component *, int index, + struct snd_soc_dapm_route *route); + int (*dapm_route_unload)(struct snd_soc_component *, + struct snd_soc_dobj *); + /* external widget init - used for any driver specific init */ int (*widget_load)(struct snd_soc_component *, int index, struct snd_soc_dapm_widget *, |