diff options
author | Pardha Saradhi K <pardha.saradhi.kesapragada@intel.com> | 2018-01-02 10:29:57 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-01-03 12:39:07 +0100 |
commit | d5cc0a1fcbb5ddbef9fdd4c4a978da3254ddbf37 (patch) | |
tree | baed5d1d37308a0b4aa2f4d40b06ff292842d0c5 /sound/soc/intel/skylake/skl-messages.c | |
parent | ASoC: Intel: Skylake: Ensure dai and dailink registration happens in sequence. (diff) | |
download | linux-d5cc0a1fcbb5ddbef9fdd4c4a978da3254ddbf37.tar.xz linux-d5cc0a1fcbb5ddbef9fdd4c4a978da3254ddbf37.zip |
ASoC: Intel: Skylake: Disable clock gating during firmware and library download
During firmware and library download, sometimes it is observed that
firmware and library download is timed-out resulting into probe failure.
This patch disables dynamic clock gating while firmware and library
download.
Signed-off-by: Pardha Saradhi K <pardha.saradhi.kesapragada@intel.com>
Signed-off-by: Sanyog Kale <sanyog.r.kale@intel.com>
Signed-off-by: Guneshwor Singh <guneshwor.o.singh@intel.com>
Acked-By: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/skylake/skl-messages.c')
-rw-r--r-- | sound/soc/intel/skylake/skl-messages.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/soc/intel/skylake/skl-messages.c b/sound/soc/intel/skylake/skl-messages.c index 4e63213a8d55..933c1fbb222f 100644 --- a/sound/soc/intel/skylake/skl-messages.c +++ b/sound/soc/intel/skylake/skl-messages.c @@ -417,7 +417,11 @@ int skl_resume_dsp(struct skl *skl) if (skl->skl_sst->is_first_boot == true) return 0; + /* disable dynamic clock gating during fw and lib download */ + ctx->enable_miscbdcge(ctx->dev, false); + ret = skl_dsp_wake(ctx->dsp); + ctx->enable_miscbdcge(ctx->dev, true); if (ret < 0) return ret; |