diff options
author | Ranjani Sridharan <ranjani.sridharan@linux.intel.com> | 2021-01-26 18:07:37 -0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-01-27 13:06:49 +0000 |
commit | 6e0210763024ac43c5716dc873065ce5069edbf0 (patch) | |
tree | a2001a70f36a2f344437f95456cdc8769142fece /sound/soc/sof | |
parent | 89a400bdeb129dbc7e1c8ad2151cc8141a619709 (diff) | |
download | linux-6e0210763024ac43c5716dc873065ce5069edbf0.tar.gz linux-6e0210763024ac43c5716dc873065ce5069edbf0.tar.bz2 linux-6e0210763024ac43c5716dc873065ce5069edbf0.zip |
ASoC: SOF: Intel: hda: Enable DMI L1 for trace
Enabling DMI L1 for capture streams could result in xruns during
pause/release. As pause/release is not a valid scenario for trace,
we can safely enable DMI L1 for it.
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://lore.kernel.org/r/20210127020737.1088960-3-ranjani.sridharan@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sof')
-rw-r--r-- | sound/soc/sof/intel/hda-trace.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/sof/intel/hda-trace.c b/sound/soc/sof/intel/hda-trace.c index ca869038e909..81d76d3debc6 100644 --- a/sound/soc/sof/intel/hda-trace.c +++ b/sound/soc/sof/intel/hda-trace.c @@ -42,7 +42,8 @@ int hda_dsp_trace_init(struct snd_sof_dev *sdev, u32 *stream_tag) struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata; int ret; - hda->dtrace_stream = hda_dsp_stream_get(sdev, SNDRV_PCM_STREAM_CAPTURE, 0); + hda->dtrace_stream = hda_dsp_stream_get(sdev, SNDRV_PCM_STREAM_CAPTURE, + SOF_HDA_STREAM_DMI_L1_COMPATIBLE); if (!hda->dtrace_stream) { dev_err(sdev->dev, |