From: "Cristian Rodríguez" <crrodriguez@opensuse.org>
To: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
Len Brown <lenb@kernel.org>, Lekensteyn <lekensteyn@gmail.com>,
LKML <linux-kernel@vger.kernel.org>,
Linux PM list <linux-pm@vger.kernel.org>,
ACPI Devel Mailing List <linux-acpi@vger.kernel.org>,
Lin Ming <ming.m.lin@intel.com>, rocko <rockorequin@hotmail.com>
Subject: Re: [PATCH] ACPI / PCI / PM: Fix device PM regression related to D3hot/D3cold
Date: Fri, 18 May 2012 01:56:30 -0400 [thread overview]
Message-ID: <4FB5E48E.5090209@opensuse.org> (raw)
In-Reply-To: <201205180039.35318.rjw@sisk.pl>
On 17/05/12 18:39, Rafael J. Wysocki wrote:
> From: Rafael J. Wysocki<rjw@sisk.pl>
>
> Commit 1cc0c998fdf2cb665d625fb565a0d6db5c81c639 (ACPI: Fix D3hot
> v D3cold confusion) introduced a bug in __acpi_bus_set_power() and
> changed the behavior of acpi_pci_set_power_state() in such a way that
> it generally doesn't work as expected if PCI_D3hot is passed to it
> as the second argument.
>
> First off, if ACPI_STATE_D3 (equal to ACPI_STATE_D3_COLD) is passed
> to __acpi_bus_set_power() and the explicit_set flag is set for the
> D3cold state, the function will try to execute AML method called
> "_PS4", which doesn't exist.
>
> Fix this by adding a check to ensure that the name of the AML method
> to execute for transitions to ACPI_STATE_D3_COLD is correct in
> __acpi_bus_set_power(). Also make sure that the explicit_set flag
> for ACPI_STATE_D3_COLD will be set if _PS3 is present and modify
> acpi_power_transition() to avoid accessing power resources for
> ACPI_STATE_D3_COLD, because they don't exist.
>
> Second, if PCI_D3hot is passed to acpi_pci_set_power_state() as the
> target state, the function will request a transition to
> ACPI_STATE_D3_HOT instead of ACPI_STATE_D3. However,
> ACPI_STATE_D3_HOT is now only marked as supported if the _PR3 AML
> method is defined for the given device, which is rare. This causes
> problems to happen on systems where devices were successfully put
> into ACPI D3 by pci_set_power_state(PCI_D3hot) which doesn't work
> now. In particular, some unused graphics adapters are not turned
> off as a result.
>
> To fix this issue restore the old behavior of
> acpi_pci_set_power_state(), which is to request a transition to
> ACPI_STATE_D3 (equal to ACPI_STATE_D3_COLD) if either PCI_D3hot or
> PCI_D3cold is passed to it as the argument.
>
> This approach is not ideal, because generally power should not
> be removed from devices if PCI_D3hot is the target power state,
> but since this behavior is relied on, we have no choice but to
> restore it at the moment and spend more time on designing a
> better solution in the future.
>
> References: https://bugzilla.kernel.org/show_bug.cgi?id=43228
> Reported-by: rocko<rockorequin@hotmail.com>
> Reported-by: Cristian Rodríguez<crrodriguez@opensuse.org>
> Reported-and-tested-by: Peter<lekensteyn@gmail.com>
> Signed-off-by: Rafael J. Wysocki<rjw@sisk.pl>
> ---
Ok, tested this one in the affected box, it works.
echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
[ 77.436767] VGA switcheroo: switched nouveau off
[ 77.437004] [drm] nouveau 0000:01:00.0: Disabling display...
[ 77.437110] [drm] nouveau 0000:01:00.0: Disabling fbcon...
[ 77.437113] [drm] nouveau 0000:01:00.0: Unpinning framebuffer(s)...
[ 77.437157] [drm] nouveau 0000:01:00.0: Evicting buffers...
[ 77.439175] [drm] nouveau 0000:01:00.0: Idling channels...
[ 77.439316] [drm] nouveau 0000:01:00.0: Suspending GPU objects...
[ 77.771133] [drm] nouveau 0000:01:00.0: And we're gone!
[ 78.082258] nouveau 0000:01:00.0: power state changed by ACPI to D3
laptop's fan is silent again :-) , thanks for fixing it !
--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: "Cristian Rodríguez" <crrodriguez@opensuse.org>
To: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
Len Brown <lenb@kernel.org>, Lekensteyn <lekensteyn@gmail.com>,
LKML <linux-kernel@vger.kernel.org>,
Linux PM list <linux-pm@vger.kernel.org>,
ACPI Devel Mailing List <linux-acpi@vger.kernel.org>,
Lin Ming <ming.m.lin@intel.com>, rocko <rockorequin@hotmail.com>
Subject: Re: [PATCH] ACPI / PCI / PM: Fix device PM regression related to D3hot/D3cold
Date: Fri, 18 May 2012 01:56:30 -0400 [thread overview]
Message-ID: <4FB5E48E.5090209@opensuse.org> (raw)
In-Reply-To: <201205180039.35318.rjw@sisk.pl>
On 17/05/12 18:39, Rafael J. Wysocki wrote:
> From: Rafael J. Wysocki<rjw@sisk.pl>
>
> Commit 1cc0c998fdf2cb665d625fb565a0d6db5c81c639 (ACPI: Fix D3hot
> v D3cold confusion) introduced a bug in __acpi_bus_set_power() and
> changed the behavior of acpi_pci_set_power_state() in such a way that
> it generally doesn't work as expected if PCI_D3hot is passed to it
> as the second argument.
>
> First off, if ACPI_STATE_D3 (equal to ACPI_STATE_D3_COLD) is passed
> to __acpi_bus_set_power() and the explicit_set flag is set for the
> D3cold state, the function will try to execute AML method called
> "_PS4", which doesn't exist.
>
> Fix this by adding a check to ensure that the name of the AML method
> to execute for transitions to ACPI_STATE_D3_COLD is correct in
> __acpi_bus_set_power(). Also make sure that the explicit_set flag
> for ACPI_STATE_D3_COLD will be set if _PS3 is present and modify
> acpi_power_transition() to avoid accessing power resources for
> ACPI_STATE_D3_COLD, because they don't exist.
>
> Second, if PCI_D3hot is passed to acpi_pci_set_power_state() as the
> target state, the function will request a transition to
> ACPI_STATE_D3_HOT instead of ACPI_STATE_D3. However,
> ACPI_STATE_D3_HOT is now only marked as supported if the _PR3 AML
> method is defined for the given device, which is rare. This causes
> problems to happen on systems where devices were successfully put
> into ACPI D3 by pci_set_power_state(PCI_D3hot) which doesn't work
> now. In particular, some unused graphics adapters are not turned
> off as a result.
>
> To fix this issue restore the old behavior of
> acpi_pci_set_power_state(), which is to request a transition to
> ACPI_STATE_D3 (equal to ACPI_STATE_D3_COLD) if either PCI_D3hot or
> PCI_D3cold is passed to it as the argument.
>
> This approach is not ideal, because generally power should not
> be removed from devices if PCI_D3hot is the target power state,
> but since this behavior is relied on, we have no choice but to
> restore it at the moment and spend more time on designing a
> better solution in the future.
>
> References: https://bugzilla.kernel.org/show_bug.cgi?id=43228
> Reported-by: rocko<rockorequin@hotmail.com>
> Reported-by: Cristian Rodríguez<crrodriguez@opensuse.org>
> Reported-and-tested-by: Peter<lekensteyn@gmail.com>
> Signed-off-by: Rafael J. Wysocki<rjw@sisk.pl>
> ---
Ok, tested this one in the affected box, it works.
echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
[ 77.436767] VGA switcheroo: switched nouveau off
[ 77.437004] [drm] nouveau 0000:01:00.0: Disabling display...
[ 77.437110] [drm] nouveau 0000:01:00.0: Disabling fbcon...
[ 77.437113] [drm] nouveau 0000:01:00.0: Unpinning framebuffer(s)...
[ 77.437157] [drm] nouveau 0000:01:00.0: Evicting buffers...
[ 77.439175] [drm] nouveau 0000:01:00.0: Idling channels...
[ 77.439316] [drm] nouveau 0000:01:00.0: Suspending GPU objects...
[ 77.771133] [drm] nouveau 0000:01:00.0: And we're gone!
[ 78.082258] nouveau 0000:01:00.0: power state changed by ACPI to D3
laptop's fan is silent again :-) , thanks for fixing it !
next prev parent reply other threads:[~2012-05-18 5:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-17 22:39 [PATCH] ACPI / PCI / PM: Fix device PM regression related to D3hot/D3cold Rafael J. Wysocki
2012-05-17 22:39 ` Rafael J. Wysocki
2012-05-18 5:56 ` Cristian Rodríguez [this message]
2012-05-18 5:56 ` Cristian Rodríguez
-- strict thread matches above, loose matches on Subject: below --
2012-05-15 15:28 [PATCH] acpi: fix regression on D3hot detection Lekensteyn
2012-05-15 17:28 ` Rafael J. Wysocki
2012-05-16 10:24 ` Rafael J. Wysocki
2012-05-16 20:15 ` [PATCH] ACPI / PCI / PM: Fix device PM regression related to D3hot/D3cold Rafael J. Wysocki
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=4FB5E48E.5090209@opensuse.org \
--to=crrodriguez@opensuse.org \
--cc=lekensteyn@gmail.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=ming.m.lin@intel.com \
--cc=rjw@sisk.pl \
--cc=rockorequin@hotmail.com \
--cc=torvalds@linux-foundation.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.