Re: [alsa-devel] [ALSA hda 3.4-rc] suspend2ram regression in snd_hda_intel
At Tue, 08 May 2012 11:13:23 +0400, Konstantin Khlebnikov wrote:
Takashi Iwai wrote:
At Sun, 06 May 2012 12:32:14 +0400, Konstantin Khlebnikov wrote:
Konstantin Khlebnikov wrote:
Mainline commit 785f857d1cb0856b612b46a0545b74aa2596e44a ("ALSA: hda - Set codec to D3 forcibly even if not used") breaks sound for my notebook (thinkpad x220), looks like codec cannot wake from power-save state after resume. After reverting looks like all works fine.
how to reproduce:
- unplug the power cord (to enable hda power safe mode)
- play something and stop
- wait until the background noise disappears (codec went into power-save mode)
- suspend
- resume
- play something again and hear the silence
-- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Bump
It's a weekend, so don't expect quick responces from any normal person :)
Yeah, sorry. In this country a mess with holidays and weekends.
Which 3.4-rc did you try? There was a known problem with this codec regarding the power-up sequence, but this should have been fixed in the very recent version.
Bug still in latest v3.4-rc6. This is serious degradation since v3.3, so I hope it will be fixed before release.
If the latest Linus tree still shows the problem, try sound git tree master or for-next branch. git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
I don't see there anything related to this problem. Bug is still there. It's 100% reproductible and disappears after reverting that commit. Looks like driver missed one power-up cycle after system-resume, after second power-save down/up cycle all work fine.
OK. Could you try to pass model=auto and see whether it changes the behavior? I've checked only the auto-parser mode recently. It might be just the static quirk that got broken.
Note that the mixer elements will be renamed by this, so make sure that you adjust the mixer before testing S3.
Takashi
At Tue, 08 May 2012 10:11:06 +0200, Takashi Iwai wrote:
At Tue, 08 May 2012 11:13:23 +0400, Konstantin Khlebnikov wrote:
Takashi Iwai wrote:
At Sun, 06 May 2012 12:32:14 +0400, Konstantin Khlebnikov wrote:
Konstantin Khlebnikov wrote:
Mainline commit 785f857d1cb0856b612b46a0545b74aa2596e44a ("ALSA: hda - Set codec to D3 forcibly even if not used") breaks sound for my notebook (thinkpad x220), looks like codec cannot wake from power-save state after resume. After reverting looks like all works fine.
how to reproduce:
- unplug the power cord (to enable hda power safe mode)
- play something and stop
- wait until the background noise disappears (codec went into power-save mode)
- suspend
- resume
- play something again and hear the silence
-- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Bump
It's a weekend, so don't expect quick responces from any normal person :)
Yeah, sorry. In this country a mess with holidays and weekends.
Which 3.4-rc did you try? There was a known problem with this codec regarding the power-up sequence, but this should have been fixed in the very recent version.
Bug still in latest v3.4-rc6. This is serious degradation since v3.3, so I hope it will be fixed before release.
If the latest Linus tree still shows the problem, try sound git tree master or for-next branch. git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
I don't see there anything related to this problem. Bug is still there. It's 100% reproductible and disappears after reverting that commit. Looks like driver missed one power-up cycle after system-resume, after second power-save down/up cycle all work fine.
OK. Could you try to pass model=auto and see whether it changes the behavior? I've checked only the auto-parser mode recently. It might be just the static quirk that got broken.
Note that the mixer elements will be renamed by this, so make sure that you adjust the mixer before testing S3.
FWIW, the below is an ad hoc fix. If this works for you, I'll queue it up for 3.4 kernel.
thanks,
Takashi
--- From: Takashi Iwai tiwai@suse.de Subject: [PATCH] ALSA: hda - Fix S3 regression on Thinkpad X220
The commit [785f857d: ALSA: hda - Set codec to D3 forcibly even if not used] caused an S3 regression on Lenovo Thinkpad X220. The codec stays in D3 even after the resume by some reason.
As a simple workaround, just avoid the new behavior by that commit, i.e. going to D3 forcibly, for these Conexant codec chips.
Reported-by: Konstantin Khlebnikov khlebnikov@openvz.org Signed-off-by: Takashi Iwai tiwai@suse.de --- sound/pci/hda/hda_codec.c | 3 ++- sound/pci/hda/hda_codec.h | 1 + sound/pci/hda/patch_conexant.c | 1 + 3 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index 7a8fcc4..f38c4a8 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -5444,7 +5444,8 @@ 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 if (!codec->no_force_to_d3) + /* forcibly change the power to D3 even if not used */ hda_set_power_state(codec, codec->afg ? codec->afg : codec->mfg, AC_PWRST_D3); diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h index 56b4f74..2b3f646 100644 --- a/sound/pci/hda/hda_codec.h +++ b/sound/pci/hda/hda_codec.h @@ -854,6 +854,7 @@ struct hda_codec { unsigned int single_adc_amp:1; /* adc in-amp takes no index * (e.g. CX20549 codec) */ + unsigned int no_force_to_d3:1; /* don't go to D3 forcibly at sleep */ unsigned int no_sticky_stream:1; /* no sticky-PCM stream assignment */ unsigned int pins_shutup:1; /* pins are shut up */ unsigned int no_trigger_sense:1; /* don't trigger at pin-sensing */ diff --git a/sound/pci/hda/patch_conexant.c b/sound/pci/hda/patch_conexant.c index d906c5b..6b680c2 100644 --- a/sound/pci/hda/patch_conexant.c +++ b/sound/pci/hda/patch_conexant.c @@ -3018,6 +3018,7 @@ static int patch_cxt5066(struct hda_codec *codec) if (!spec) return -ENOMEM; codec->spec = spec; + codec->no_force_to_d3 = 1;
codec->patch_ops = conexant_patch_ops; codec->patch_ops.init = conexant_init;
Takashi Iwai wrote:
At Tue, 08 May 2012 10:11:06 +0200, Takashi Iwai wrote:
At Tue, 08 May 2012 11:13:23 +0400, Konstantin Khlebnikov wrote:
Takashi Iwai wrote:
At Sun, 06 May 2012 12:32:14 +0400, Konstantin Khlebnikov wrote:
Konstantin Khlebnikov wrote:
Mainline commit 785f857d1cb0856b612b46a0545b74aa2596e44a ("ALSA: hda - Set codec to D3 forcibly even if not used") breaks sound for my notebook (thinkpad x220), looks like codec cannot wake from power-save state after resume. After reverting looks like all works fine.
how to reproduce:
- unplug the power cord (to enable hda power safe mode)
- play something and stop
- wait until the background noise disappears (codec went into power-save mode)
- suspend
- resume
- play something again and hear the silence
-- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Bump
It's a weekend, so don't expect quick responces from any normal person :)
Yeah, sorry. In this country a mess with holidays and weekends.
Which 3.4-rc did you try? There was a known problem with this codec regarding the power-up sequence, but this should have been fixed in the very recent version.
Bug still in latest v3.4-rc6. This is serious degradation since v3.3, so I hope it will be fixed before release.
If the latest Linus tree still shows the problem, try sound git tree master or for-next branch. git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
I don't see there anything related to this problem. Bug is still there. It's 100% reproductible and disappears after reverting that commit. Looks like driver missed one power-up cycle after system-resume, after second power-save down/up cycle all work fine.
OK. Could you try to pass model=auto and see whether it changes the behavior? I've checked only the auto-parser mode recently. It might be just the static quirk that got broken.
Note that the mixer elements will be renamed by this, so make sure that you adjust the mixer before testing S3.
FWIW, the below is an ad hoc fix. If this works for you, I'll queue it up for 3.4 kernel.
Of course it helps, but this isn't "fix" at all! Right fix follows...
thanks,
Takashi
From: Takashi Iwaitiwai@suse.de Subject: [PATCH] ALSA: hda - Fix S3 regression on Thinkpad X220
The commit [785f857d: ALSA: hda - Set codec to D3 forcibly even if not used] caused an S3 regression on Lenovo Thinkpad X220. The codec stays in D3 even after the resume by some reason.
As a simple workaround, just avoid the new behavior by that commit, i.e. going to D3 forcibly, for these Conexant codec chips.
Reported-by: Konstantin Khlebnikovkhlebnikov@openvz.org Signed-off-by: Takashi Iwaitiwai@suse.de
sound/pci/hda/hda_codec.c | 3 ++- sound/pci/hda/hda_codec.h | 1 + sound/pci/hda/patch_conexant.c | 1 + 3 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index 7a8fcc4..f38c4a8 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -5444,7 +5444,8 @@ 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 if (!codec->no_force_to_d3)
/* forcibly change the power to D3 even if not used */ hda_set_power_state(codec, codec->afg ? codec->afg : codec->mfg, AC_PWRST_D3);
diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h index 56b4f74..2b3f646 100644 --- a/sound/pci/hda/hda_codec.h +++ b/sound/pci/hda/hda_codec.h @@ -854,6 +854,7 @@ struct hda_codec { unsigned int single_adc_amp:1; /* adc in-amp takes no index * (e.g. CX20549 codec) */
- unsigned int no_force_to_d3:1; /* don't go to D3 forcibly at sleep */ unsigned int no_sticky_stream:1; /* no sticky-PCM stream assignment */ unsigned int pins_shutup:1; /* pins are shut up */ unsigned int no_trigger_sense:1; /* don't trigger at pin-sensing */
diff --git a/sound/pci/hda/patch_conexant.c b/sound/pci/hda/patch_conexant.c index d906c5b..6b680c2 100644 --- a/sound/pci/hda/patch_conexant.c +++ b/sound/pci/hda/patch_conexant.c @@ -3018,6 +3018,7 @@ static int patch_cxt5066(struct hda_codec *codec) if (!spec) return -ENOMEM; codec->spec = spec;
codec->no_force_to_d3 = 1;
codec->patch_ops = conexant_patch_ops; codec->patch_ops.init = conexant_init;
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 --- 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); }
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); }}
Takashi Iwai wrote:
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 Khlebnikovkhlebnikov@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.
This fixes my problem: during suspend hda_set_power_state() calls snd_hda_power_up() it set codec->power_on = 1 and switches device into D0. At S3 resume codec->power_on == 1 but all devices actually in D3 state. As result on resume path device stays in D3, but after one power-save cycle all works again.
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...
Race was always there, my problem was caused by commit which mentioned above.
Whole this code is very racy, someone needs to fix it.
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); }}
-- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
At Tue, 08 May 2012 17:38:45 +0400, Konstantin Khlebnikov wrote:
Takashi Iwai wrote:
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 Khlebnikovkhlebnikov@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.
This fixes my problem: during suspend hda_set_power_state() calls snd_hda_power_up() it set codec->power_on = 1 and switches device into D0. At S3 resume codec->power_on == 1 but all devices actually in D3 state. As result on resume path device stays in D3, but after one power-save cycle all works again.
Ah, thanks, that explains a lot.
Then it'd be actually better to revert the commit instead of another hack to paper over the nasty reincarnation.
The power-state change there shouldn't be involved with the whole power-up sequence. It should have been a simple "go-to-D3" sequence. But this would need the assurance that the controller side is ready, etc, and not too trivial to write with the current code base.
So, the right fix would be either implementing a straight hda_set_power_state() code without any power-up sequence but only the sanity check of the controller side, or fixing the original problem of ALC269 differently, e.g. by always resuming immediately at the resume callback but immediately performing the power-saving work.
In either way, it's too late for 3.4 kernel. And the original problem is no critical issue in comparison with this regression. So, a revert would be the best thing we can do for now, IMO.
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...
Race was always there, my problem was caused by commit which mentioned above.
Whole this code is very racy, someone needs to fix it.
Yeah, I know. I'll cook it up for 3.5 kernel.
thanks,
Takashi
participants (2)
-
Konstantin Khlebnikov
-
Takashi Iwai