public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ACPI / PM: Add check preventing transitioning to non-D0 state from D3.
@ 2012-11-15  4:25 Lv Zheng
  2012-11-16  1:49 ` Rafael J. Wysocki
  2013-01-30 17:53 ` Peter Wu
  0 siblings, 2 replies; 7+ messages in thread
From: Lv Zheng @ 2012-11-15  4:25 UTC (permalink / raw)
  To: Len Brown, Rafael J Wysocki; +Cc: linux-acpi, Lv Zheng

No power transitioning from D3 state to a non-D0 state is allowed.
This patch also cleans up device power updating code in the
acpi_device_set_power() as it should already been updated in the
acpi_power_transition().

Signed-off-by: Lv Zheng <lv.zheng@intel.com>
---
 drivers/acpi/bus.c |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c
index 07a20ee..12c1b51 100644
--- a/drivers/acpi/bus.c
+++ b/drivers/acpi/bus.c
@@ -293,6 +293,12 @@ int acpi_device_set_power(struct acpi_device *device, int state)
 			      " state than parent\n");
 		return -ENODEV;
 	}
+	if (device->parent->power.state >= ACPI_STATE_D3_HOT &&
+	    state != ACPI_STATE_D0) {
+		printk(KERN_WARNING PREFIX
+			      "Cannot transition to non-D0 state from D3\n");
+		return -ENODEV;
+	}
 
 	/* For D3cold we should execute _PS3, not _PS4. */
 	if (state == ACPI_STATE_D3_COLD)
@@ -341,7 +347,6 @@ int acpi_device_set_power(struct acpi_device *device, int state)
 			      "Device [%s] failed to transition to %s\n",
 			      device->pnp.bus_id, state_string(state));
 	else {
-		device->power.state = state;
 		ACPI_DEBUG_PRINT((ACPI_DB_INFO,
 				  "Device [%s] transitioned to %s\n",
 				  device->pnp.bus_id, state_string(state)));
-- 
1.7.10


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

end of thread, other threads:[~2013-01-31  0:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-15  4:25 [PATCH] ACPI / PM: Add check preventing transitioning to non-D0 state from D3 Lv Zheng
2012-11-16  1:49 ` Rafael J. Wysocki
2012-11-19  2:31   ` Zheng, Lv
2013-01-30 17:53 ` Peter Wu
2013-01-30 21:55   ` Rafael J. Wysocki
2013-01-30 23:27     ` Rafael J. Wysocki
2013-01-31  0:58       ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox