diff options
author | Subhransu S. Prusty <subhransu.s.prusty@intel.com> | 2017-12-18 10:46:49 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-12-20 10:48:06 +0000 |
commit | 8e9d8e19b3d0c36d45161233eee3f2d368efe3ac (patch) | |
tree | 92a733336696f072c0df0b1d77eafc5add310a37 /sound/soc/intel/skylake/skl-sst.c | |
parent | 87684d338a22d15e47b16ee68f569d74ad1d076e (diff) | |
download | linux-8e9d8e19b3d0c36d45161233eee3f2d368efe3ac.tar.gz linux-8e9d8e19b3d0c36d45161233eee3f2d368efe3ac.tar.bz2 linux-8e9d8e19b3d0c36d45161233eee3f2d368efe3ac.zip |
ASoC: Intel: Skylake: Request IRQ late only after all context are initialized
Sometimes during boot, panic is observed at sst_dsp_shim_read_unlocked().
This happens when interrupt occurs before the context is initialized. So
move the irq initialization only after the context is initialized
completely.
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
Signed-off-by: Pawse, GuruprasadX <guruprasadx.pawse@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-sst.c')
-rw-r--r-- | sound/soc/intel/skylake/skl-sst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/skylake/skl-sst.c b/sound/soc/intel/skylake/skl-sst.c index a436abf2fe3f..5a7e41b65ef3 100644 --- a/sound/soc/intel/skylake/skl-sst.c +++ b/sound/soc/intel/skylake/skl-sst.c @@ -569,7 +569,7 @@ int skl_sst_dsp_init(struct device *dev, void __iomem *mmio_base, int irq, sst->fw_ops = skl_fw_ops; - return 0; + return skl_dsp_acquire_irq(sst); } EXPORT_SYMBOL_GPL(skl_sst_dsp_init); |