diff options
author | Hans de Goede <hdegoede@redhat.com> | 2018-02-18 23:01:43 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-03-01 17:22:48 +0100 |
commit | bf642bf57398572327072d306e26e38aebd94fa7 (patch) | |
tree | c9ca9bd88ebd9f577fe82540a0779953c50d779a /arch | |
parent | ASoC: Intel: sst: Add sst_realloc_stream() function (diff) | |
download | linux-bf642bf57398572327072d306e26e38aebd94fa7.tar.xz linux-bf642bf57398572327072d306e26e38aebd94fa7.zip |
ASoC: Intel: sst: Free streams on suspend, re-alloc on resume
The Bay Trail SST-DSP firmware version looses track of all streams over a
suspend/resume, failing any attempts to resume and/or free streams, with
a SST_ERR_INVALID_STREAM_ID error.
This commit adds support for free-ing the streams on suspend and
re-allocating them on resume, fixing suspend/resume issues on devices
using this firmware version.
This new behavior gets triggered by a new flag in sst_platform_info which
only gets set on Bay Trail platforms.
This has been tested on the following devices:
-Asus T100TA, Bay Trail + ALC5642 codec
-Ployer MOMO7W, Bay Trail CR + ALC5652 codec
Tested-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/platform_sst_audio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/platform_sst_audio.h b/arch/x86/include/asm/platform_sst_audio.h index 5973a2f3db3d..059823bb8af7 100644 --- a/arch/x86/include/asm/platform_sst_audio.h +++ b/arch/x86/include/asm/platform_sst_audio.h @@ -135,6 +135,7 @@ struct sst_platform_info { const struct sst_res_info *res_info; const struct sst_lib_dnld_info *lib_info; const char *platform; + bool streams_lost_on_suspend; }; int add_sst_platform_device(void); #endif |