linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] acpi: bus: handle power manageable but no _PSC/_PRx case
@ 2012-08-27  7:38 Aaron Lu
  2012-09-06 21:45 ` Rafael J. Wysocki
  0 siblings, 1 reply; 14+ messages in thread
From: Aaron Lu @ 2012-08-27  7:38 UTC (permalink / raw)
  To: Len Brown, Rafael J. Wysocki; +Cc: linux-acpi, linux-pm, Aaron Lu, Aaron Lu

Currently, when we are trying to get the power state of an acpi device,
we will do the following:
If device is not power manageable, init its power state as its parent or
if it does not have a parent, init as D0;
If device is power manageable, evaluate _PSC and then refine with
acpi_power_get_inferred_state.

But there exist some devices with _PSx defined, but no _PSC or _PRx.
It is power manageable, but the above method to get power state does
not cover this case and its power state will be UNKNOWN(255).

So change the check of power manageable to whether _PSC and _PRx
defined.

Signed-off-by: Aaron Lu <aaron.lu@intel.com>
---
 drivers/acpi/bus.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c
index 9628652..b564e6d 100644
--- a/drivers/acpi/bus.c
+++ b/drivers/acpi/bus.c
@@ -207,7 +207,8 @@ static int __acpi_bus_get_power(struct acpi_device *device, int *state)
 	if (!device || !state)
 		return -EINVAL;
 
-	if (!device->flags.power_manageable) {
+	if (!device->power.flags.explicit_get &&
+			!device->power.flags.power_resources) {
 		/* TBD: Non-recursive algorithm for walking up hierarchy. */
 		*state = device->parent ?
 			device->parent->power.state : ACPI_STATE_D0;
-- 
1.7.12.21.g871e293


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2012-09-12  6:59 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-27  7:38 [PATCH] acpi: bus: handle power manageable but no _PSC/_PRx case Aaron Lu
2012-09-06 21:45 ` Rafael J. Wysocki
2012-09-06 21:53   ` Rafael J. Wysocki
2012-09-07  0:35     ` Aaron Lu
2012-09-07 11:46       ` Rafael J. Wysocki
2012-09-07 14:32         ` Aaron Lu
2012-09-07 18:32           ` Rafael J. Wysocki
2012-09-10  0:38             ` Aaron Lu
2012-09-10 19:48               ` Rafael J. Wysocki
2012-09-10 19:50               ` [PATCH] ACPI / PM: Infer parent power state from child if unknown Rafael J. Wysocki
2012-09-11  5:33                 ` Aaron Lu
2012-09-11 20:36                   ` Rafael J. Wysocki
2012-09-11 20:38                   ` [PATCH] ACPI / PM: Infer parent power state from child if unknown, v2 Rafael J. Wysocki
2012-09-12  6:59                     ` Aaron Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).