diff options
author | Keyon Jie <yang.jie@linux.intel.com> | 2020-05-15 16:59:54 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-05-18 13:24:56 +0100 |
commit | 82e8c00fa18a3ef0ad3087dcad1d82637a738e30 (patch) | |
tree | b7c9802ac72fb9af835541c21161150c071ef5fb /include/sound/sof | |
parent | 9f369f7e4660d05b5318aa413db199a70dfb2c4f (diff) | |
download | linux-stable-82e8c00fa18a3ef0ad3087dcad1d82637a738e30.tar.gz linux-stable-82e8c00fa18a3ef0ad3087dcad1d82637a738e30.tar.bz2 linux-stable-82e8c00fa18a3ef0ad3087dcad1d82637a738e30.zip |
ASoC: SOF: topology: add support to smart amplifier
Add smart amplifier component support, which is designed as another new
type of process component and used for speaker protection algorithm
integration.
Signed-off-by: Keyon Jie <yang.jie@linux.intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20200515135958.17511-5-kai.vehmanen@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound/sof')
-rw-r--r-- | include/sound/sof/topology.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sound/sof/topology.h b/include/sound/sof/topology.h index 872de52b3144..f56e80d09b32 100644 --- a/include/sound/sof/topology.h +++ b/include/sound/sof/topology.h @@ -38,6 +38,7 @@ enum sof_comp_type { SOF_COMP_DEMUX, SOF_COMP_ASRC, /**< Asynchronous sample rate converter */ SOF_COMP_DCBLOCK, + SOF_COMP_SMART_AMP, /**< smart amplifier component */ /* keep FILEREAD/FILEWRITE as the last ones */ SOF_COMP_FILEREAD = 10000, /**< host test based file IO */ SOF_COMP_FILEWRITE = 10001, /**< host test based file IO */ @@ -220,6 +221,7 @@ enum sof_ipc_process_type { SOF_PROCESS_MUX, SOF_PROCESS_DEMUX, SOF_PROCESS_DCBLOCK, + SOF_PROCESS_SMART_AMP, /**< Smart Amplifier */ }; /* generic "effect", "codec" or proprietary processing component */ |