From: Takashi Iwai <tiwai@suse.de>
To: Konstantin Khlebnikov <khlebnikov@openvz.org>
Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org,
David Henningsson <david.henningsson@canonical.com>,
Jaroslav Kysela <perex@perex.cz>
Subject: Re: [PATCH bugfix v3.4] ALSA: hda - fix "silence after S3" regression
Date: Tue, 08 May 2012 15:25:30 +0200 [thread overview]
Message-ID: <s5h397aoldh.wl%tiwai@suse.de> (raw)
In-Reply-To: <20120508130810.17396.27499.stgit@zurg>
At Tue, 08 May 2012 17:08:10 +0400,
Konstantin Khlebnikov wrote:
>
> This fixes regression in shd-hda-codec after 785f857d1cb0856b612b46a0545b74aa2
> ("ALSA: hda - Set codec to D3 forcibly even if not used")
>
> hda_set_power_state() call must be explicitly protected against recursive
> snd_hda_power_up/down() calls, otherwise it accidentally switches device into
> D0 right before suspend. As result after resume sound device stays in D3 state
> and does not works because driver believes that the device is on already.
>
> Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
Hrm, does this really fix your problem? The path is called only
during the suspend. Then, in the resume path, the codec is all
powered up anyway.
If the race between the leftover power-save work is really a culprit,
the fix would be just calling cancel_delayed_work_sync() before
that point...
thanks,
Takashi
> ---
> sound/pci/hda/hda_codec.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
> index 7a8fcc4..a0ea9d6 100644
> --- a/sound/pci/hda/hda_codec.c
> +++ b/sound/pci/hda/hda_codec.c
> @@ -5444,10 +5444,14 @@ int snd_hda_suspend(struct hda_bus *bus)
> list_for_each_entry(codec, &bus->codec_list, list) {
> if (hda_codec_is_power_on(codec))
> hda_call_codec_suspend(codec);
> - else /* forcibly change the power to D3 even if not used */
> + else {
> + /* forcibly change the power to D3 even if not used */
> + codec->power_transition = 1;
> hda_set_power_state(codec,
> codec->afg ? codec->afg : codec->mfg,
> AC_PWRST_D3);
> + codec->power_transition = 0;
> + }
> if (codec->patch_ops.post_suspend)
> codec->patch_ops.post_suspend(codec);
> }
>
next prev parent reply other threads:[~2012-05-08 13:25 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-04 7:21 [ALSA hda 3.4-rc] suspend2ram regression in snd_hda_intel Konstantin Khlebnikov
2012-05-06 8:32 ` Konstantin Khlebnikov
2012-05-06 10:37 ` Takashi Iwai
2012-05-08 7:13 ` Konstantin Khlebnikov
2012-05-08 8:11 ` Takashi Iwai
2012-05-08 8:49 ` Takashi Iwai
2012-05-08 13:05 ` Konstantin Khlebnikov
2012-05-08 13:08 ` [PATCH bugfix v3.4] ALSA: hda - fix "silence after S3" regression Konstantin Khlebnikov
2012-05-08 13:25 ` Takashi Iwai [this message]
2012-05-08 13:38 ` Konstantin Khlebnikov
2012-05-08 14:29 ` Takashi Iwai
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=s5h397aoldh.wl%tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=david.henningsson@canonical.com \
--cc=khlebnikov@openvz.org \
--cc=linux-kernel@vger.kernel.org \
--cc=perex@perex.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome