2024-04-10 03:47:23

by Bard Liao

[permalink] [raw]
Subject: [PATCH 1/4] ASoC: SOF: Intel: hda: disable SoundWire interrupt later

From: Pierre-Louis Bossart <[email protected]>

The SoundWire interrupts can be masked at two levels
a) in the Cadence IP
b) at the HDaudio controller level

We have an existing mechanism with cancel_work_sync() and status flags
to make sure all existing interrupts are handled in the Cadence IP,
and likewise no new interrupts can be generated before turning off the
links.

However on remove we first use the higher-level mask at the controller
level, which is a sledgehammer preventing interrupts from all
links. This is very racy and not necessary. We can disable the
SoundWire interrupts after all the cleanups are done without any loss
of functionality.

Signed-off-by: Pierre-Louis Bossart <[email protected]>
Signed-off-by: Bard Liao <[email protected]>
---
sound/soc/sof/intel/hda.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/sof/intel/hda.c b/sound/soc/sof/intel/hda.c
index 7fe72b065451..ecfdb8f882d2 100644
--- a/sound/soc/sof/intel/hda.c
+++ b/sound/soc/sof/intel/hda.c
@@ -384,12 +384,12 @@ static int hda_sdw_exit(struct snd_sof_dev *sdev)

hdev = sdev->pdata->hw_pdata;

- hda_sdw_int_enable(sdev, false);
-
if (hdev->sdw)
sdw_intel_exit(hdev->sdw);
hdev->sdw = NULL;

+ hda_sdw_int_enable(sdev, false);
+
return 0;
}

--
2.34.1



2024-04-10 14:36:40

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH 1/4] ASoC: SOF: Intel: hda: disable SoundWire interrupt later

On Wed, Apr 10, 2024 at 02:34:35AM +0000, Bard Liao wrote:
> From: Pierre-Louis Bossart <[email protected]>
>
> The SoundWire interrupts can be masked at two levels
> a) in the Cadence IP
> b) at the HDaudio controller level

Acked-by: Mark Brown <[email protected]>


Attachments:
(No filename) (296.00 B)
signature.asc (499.00 B)
Download all attachments