[PATCH v2 3/4] ALSA: hda: Separate runtime and system suspend
Takashi Iwai
tiwai at suse.de
Tue Oct 27 08:46:05 CET 2020
On Tue, 27 Oct 2020 06:40:00 +0100,
Kai-Heng Feng wrote:
> @@ -1002,7 +1001,8 @@ static void __azx_runtime_resume(struct azx *chip, bool from_rt)
> azx_init_pci(chip);
> hda_intel_init_chip(chip, true);
>
> - if (from_rt) {
> + /* Avoid codec resume if runtime resume is for system suspend */
> + if (from_rt && !chip->prepared) {
The check of chip->prepared is superfluous here. Its check should be
applied rather at setting WAKEEN, namely...
> @@ -1103,10 +1115,8 @@ static int azx_runtime_suspend(struct device *dev)
> chip = card->private_data;
>
> /* enable controller wake up event */
> - if (snd_power_get_state(card) == SNDRV_CTL_POWER_D0) {
> - azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) |
> - STATESTS_INT_MASK);
> - }
> + azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) |
> + STATESTS_INT_MASK);
... here we should have the check of chip->prepared, and set WAKEEN
only when it's false. Otherwise WAKEEN is set up for the system
suspend, and it might lead to spurious wakeups. (IOW, checking the
flag at resume doesn't help for preventing the spurious wakeup :)
thanks,
Takashi
More information about the Alsa-devel
mailing list