blob: 844c155aeb0faa558b789fa7a3b680971df8f536 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_power.c - ACPI Bus Power Management ($Revision: 39 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26/*
27 * ACPI power-managed devices may be controlled in two ways:
28 * 1. via "Device Specific (D-State) Control"
29 * 2. via "Power Resource Control".
30 * This module is used to manage devices relying on Power Resource Control.
31 *
32 * An ACPI "power resource object" describes a software controllable power
33 * plane, clock plane, or other resource used by a power managed device.
34 * A device may rely on multiple power resources, and a power resource
35 * may be shared by multiple devices.
36 */
37
38#include <linux/kernel.h>
39#include <linux/module.h>
40#include <linux/init.h>
41#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <acpi/acpi_bus.h>
44#include <acpi/acpi_drivers.h>
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020045#include "sleep.h"
46
Len Browna192a952009-07-28 16:45:54 -040047#define PREFIX "ACPI: "
48
Bjorn Helgaas89595b82008-11-07 16:57:45 -070049#define _COMPONENT ACPI_POWER_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050050ACPI_MODULE_NAME("power");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_POWER_CLASS "power_resource"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_POWER_DEVICE_NAME "Power Resource"
53#define ACPI_POWER_FILE_INFO "info"
54#define ACPI_POWER_FILE_STATUS "state"
55#define ACPI_POWER_RESOURCE_STATE_OFF 0x00
56#define ACPI_POWER_RESOURCE_STATE_ON 0x01
57#define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF
Zhao Yakuif5adfaa2008-08-11 14:57:50 +080058
Zhao Yakuif5adfaa2008-08-11 14:57:50 +080059int acpi_power_nocheck;
60module_param_named(power_nocheck, acpi_power_nocheck, bool, 000);
61
Len Brown4be44fc2005-08-05 00:44:28 -040062static int acpi_power_add(struct acpi_device *device);
63static int acpi_power_remove(struct acpi_device *device, int type);
Len Browne8363f32007-02-16 02:05:39 -050064static int acpi_power_resume(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Márton Némethc97adf92010-01-10 17:15:36 +010066static const struct acpi_device_id power_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020067 {ACPI_POWER_HID, 0},
68 {"", 0},
69};
70MODULE_DEVICE_TABLE(acpi, power_device_ids);
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static struct acpi_driver acpi_power_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050073 .name = "power",
Len Brown4be44fc2005-08-05 00:44:28 -040074 .class = ACPI_POWER_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020075 .ids = power_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040076 .ops = {
77 .add = acpi_power_add,
78 .remove = acpi_power_remove,
Konstantin Karasyov0a613902007-02-16 01:47:06 -050079 .resume = acpi_power_resume,
Len Brown4be44fc2005-08-05 00:44:28 -040080 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
Konstantin Karasyov0a613902007-02-16 01:47:06 -050083struct acpi_power_reference {
84 struct list_head node;
85 struct acpi_device *device;
86};
87
Len Brown4be44fc2005-08-05 00:44:28 -040088struct acpi_power_resource {
Patrick Mochel41598572006-05-19 16:54:40 -040089 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -040090 acpi_bus_id name;
91 u32 system_level;
92 u32 order;
Konstantin Karasyov0a613902007-02-16 01:47:06 -050093 struct mutex resource_lock;
94 struct list_head reference;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
Len Brown4be44fc2005-08-05 00:44:28 -040097static struct list_head acpi_power_resource_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* --------------------------------------------------------------------------
100 Power Resource Management
101 -------------------------------------------------------------------------- */
102
103static int
Len Brown4be44fc2005-08-05 00:44:28 -0400104acpi_power_get_context(acpi_handle handle,
105 struct acpi_power_resource **resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Len Brown4be44fc2005-08-05 00:44:28 -0400107 int result = 0;
108 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400112 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 result = acpi_bus_get_device(handle, &device);
115 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400116 printk(KERN_WARNING PREFIX "Getting context [%p]\n", handle);
Patrick Mocheld550d982006-06-27 00:41:40 -0400117 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200120 *resource = acpi_driver_data(device);
Li Zefana815ab82008-04-18 13:27:29 -0700121 if (!*resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400122 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Patrick Mocheld550d982006-06-27 00:41:40 -0400124 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Zhao Yakuia51e1452008-08-11 14:55:05 +0800127static int acpi_power_get_state(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Len Brown4be44fc2005-08-05 00:44:28 -0400129 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400130 unsigned long long sta = 0;
Lin Ming60a4ce72008-12-16 17:02:22 +0800131 char node_name[5];
132 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Zhao Yakuia51e1452008-08-11 14:55:05 +0800135 if (!handle || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400136 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Zhao Yakuia51e1452008-08-11 14:55:05 +0800138 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400140 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400142 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
143 ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Lin Ming60a4ce72008-12-16 17:02:22 +0800145 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Lin Ming60a4ce72008-12-16 17:02:22 +0800148 node_name,
Zhao Yakuib1b57fb2008-10-27 16:04:53 +0800149 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Patrick Mocheld550d982006-06-27 00:41:40 -0400151 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
Len Brown4be44fc2005-08-05 00:44:28 -0400154static int acpi_power_get_list_state(struct acpi_handle_list *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400156 int result = 0, state1;
Len Brown4be44fc2005-08-05 00:44:28 -0400157 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400161 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 /* The state of the list is 'on' IFF all resources are 'on'. */
164
Len Brown4be44fc2005-08-05 00:44:28 -0400165 for (i = 0; i < list->count; i++) {
Zhao Yakuia51e1452008-08-11 14:55:05 +0800166 /*
167 * The state of the power resource can be obtained by
168 * using the ACPI handle. In such case it is unnecessary to
169 * get the Power resource first and then get its state again.
170 */
171 result = acpi_power_get_state(list->handles[i], &state1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400173 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400175 *state = state1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 if (*state != ACPI_POWER_RESOURCE_STATE_ON)
178 break;
179 }
180
181 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400182 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Patrick Mocheld550d982006-06-27 00:41:40 -0400184 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500187static int acpi_power_on(acpi_handle handle, struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Bjorn Helgaasbdf43bb2009-05-21 17:28:53 -0600189 int result = 0;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500190 int found = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400191 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct acpi_power_resource *resource = NULL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500193 struct list_head *node, *next;
194 struct acpi_power_reference *ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 result = acpi_power_get_context(handle, &resource);
198 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400199 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500201 mutex_lock(&resource->resource_lock);
202 list_for_each_safe(node, next, &resource->reference) {
203 ref = container_of(node, struct acpi_power_reference, node);
204 if (dev->handle == ref->device->handle) {
205 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] already referenced by resource [%s]\n",
206 dev->pnp.bus_id, resource->name));
207 found = 1;
208 break;
209 }
210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500212 if (!found) {
213 ref = kmalloc(sizeof (struct acpi_power_reference),
214 irqs_disabled() ? GFP_ATOMIC : GFP_KERNEL);
215 if (!ref) {
216 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "kmalloc() failed\n"));
217 mutex_unlock(&resource->resource_lock);
218 return -ENOMEM;
219 }
220 list_add_tail(&ref->node, &resource->reference);
221 ref->device = dev;
222 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] added to resource [%s] references\n",
223 dev->pnp.bus_id, resource->name));
224 }
225 mutex_unlock(&resource->resource_lock);
226
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400227 status = acpi_evaluate_object(resource->device->handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400229 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 /* Update the power resource's _device_ power state */
Patrick Mochel41598572006-05-19 16:54:40 -0400232 resource->device->power.state = ACPI_STATE_D0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400235 resource->name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500239static int acpi_power_off_device(acpi_handle handle, struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Bjorn Helgaasbdf43bb2009-05-21 17:28:53 -0600241 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400242 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 struct acpi_power_resource *resource = NULL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500244 struct list_head *node, *next;
245 struct acpi_power_reference *ref;
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 result = acpi_power_get_context(handle, &resource);
248 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400249 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500251 mutex_lock(&resource->resource_lock);
252 list_for_each_safe(node, next, &resource->reference) {
253 ref = container_of(node, struct acpi_power_reference, node);
254 if (dev->handle == ref->device->handle) {
255 list_del(&ref->node);
256 kfree(ref);
257 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] removed from resource [%s] references\n",
258 dev->pnp.bus_id, resource->name));
259 break;
260 }
261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500263 if (!list_empty(&resource->reference)) {
264 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Cannot turn resource [%s] off - resource is in use\n",
265 resource->name));
266 mutex_unlock(&resource->resource_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500269 mutex_unlock(&resource->resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400271 status = acpi_evaluate_object(resource->device->handle, "_OFF", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400273 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* Update the power resource's _device_ power state */
Dmitry Torokhov786f18c2006-08-23 23:18:06 -0400276 resource->device->power.state = ACPI_STATE_D3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] turned off\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400279 resource->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Patrick Mocheld550d982006-06-27 00:41:40 -0400281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200284/**
285 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
286 * ACPI 3.0) _PSW (Power State Wake)
287 * @dev: Device to handle.
288 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
289 * @sleep_state: Target sleep state of the system.
290 * @dev_state: Target power state of the device.
291 *
292 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
293 * State Wake) for the device, if present. On failure reset the device's
294 * wakeup.flags.valid flag.
295 *
296 * RETURN VALUE:
297 * 0 if either _DSW or _PSW has been successfully executed
298 * 0 if neither _DSW nor _PSW has been found
299 * -ENODEV if the execution of either _DSW or _PSW has failed
300 */
301int acpi_device_sleep_wake(struct acpi_device *dev,
302 int enable, int sleep_state, int dev_state)
303{
304 union acpi_object in_arg[3];
305 struct acpi_object_list arg_list = { 3, in_arg };
306 acpi_status status = AE_OK;
307
308 /*
309 * Try to execute _DSW first.
310 *
311 * Three agruments are needed for the _DSW object:
312 * Argument 0: enable/disable the wake capabilities
313 * Argument 1: target system state
314 * Argument 2: target device state
315 * When _DSW object is called to disable the wake capabilities, maybe
316 * the first argument is filled. The values of the other two agruments
317 * are meaningless.
318 */
319 in_arg[0].type = ACPI_TYPE_INTEGER;
320 in_arg[0].integer.value = enable;
321 in_arg[1].type = ACPI_TYPE_INTEGER;
322 in_arg[1].integer.value = sleep_state;
323 in_arg[2].type = ACPI_TYPE_INTEGER;
324 in_arg[2].integer.value = dev_state;
325 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
326 if (ACPI_SUCCESS(status)) {
327 return 0;
328 } else if (status != AE_NOT_FOUND) {
329 printk(KERN_ERR PREFIX "_DSW execution failed\n");
330 dev->wakeup.flags.valid = 0;
331 return -ENODEV;
332 }
333
334 /* Execute _PSW */
335 arg_list.count = 1;
336 in_arg[0].integer.value = enable;
337 status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
338 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
339 printk(KERN_ERR PREFIX "_PSW execution failed\n");
340 dev->wakeup.flags.valid = 0;
341 return -ENODEV;
342 }
343
344 return 0;
345}
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347/*
348 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
349 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200350 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
351 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200353int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200355 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200358 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200360 mutex_lock(&acpi_device_lock);
361
362 if (dev->wakeup.prepare_count++)
363 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /* Open power resource */
366 for (i = 0; i < dev->wakeup.resources.count; i++) {
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200367 int ret = acpi_power_on(dev->wakeup.resources.handles[i], dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400369 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 dev->wakeup.flags.valid = 0;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200371 err = -ENODEV;
372 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374 }
375
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200376 /*
377 * Passing 3 as the third argument below means the device may be placed
378 * in arbitrary power state afterwards.
379 */
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200380 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200381
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200382 err_out:
383 if (err)
384 dev->wakeup.prepare_count = 0;
385
386 out:
387 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200388 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
391/*
392 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200393 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
394 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * 2. Shutdown down the power resources
396 */
Len Brown4be44fc2005-08-05 00:44:28 -0400397int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200399 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200402 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200404 mutex_lock(&acpi_device_lock);
405
406 if (--dev->wakeup.prepare_count > 0)
407 goto out;
408
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200409 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200410 * Executing the code below even if prepare_count is already zero when
411 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200412 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200413 if (dev->wakeup.prepare_count < 0)
414 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200415
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200416 err = acpi_device_sleep_wake(dev, 0, 0, 0);
417 if (err)
418 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 /* Close power resource */
421 for (i = 0; i < dev->wakeup.resources.count; i++) {
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200422 int ret = acpi_power_off_device(
423 dev->wakeup.resources.handles[i], dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400425 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 dev->wakeup.flags.valid = 0;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200427 err = -ENODEV;
428 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430 }
431
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200432 out:
433 mutex_unlock(&acpi_device_lock);
434 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
437/* --------------------------------------------------------------------------
438 Device Power Management
439 -------------------------------------------------------------------------- */
440
Len Brown4be44fc2005-08-05 00:44:28 -0400441int acpi_power_get_inferred_state(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Len Brown4be44fc2005-08-05 00:44:28 -0400443 int result = 0;
444 struct acpi_handle_list *list = NULL;
445 int list_state = 0;
446 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400450 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 device->power.state = ACPI_STATE_UNKNOWN;
453
454 /*
455 * We know a device's inferred power state when all the resources
456 * required for a given D-state are 'on'.
457 */
Len Brown4be44fc2005-08-05 00:44:28 -0400458 for (i = ACPI_STATE_D0; i < ACPI_STATE_D3; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 list = &device->power.states[i].resources;
460 if (list->count < 1)
461 continue;
462
463 result = acpi_power_get_list_state(list, &list_state);
464 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400465 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
468 device->power.state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400469 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
471 }
472
473 device->power.state = ACPI_STATE_D3;
474
Patrick Mocheld550d982006-06-27 00:41:40 -0400475 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Len Brown4be44fc2005-08-05 00:44:28 -0400478int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Len Brown4be44fc2005-08-05 00:44:28 -0400480 int result = 0;
481 struct acpi_handle_list *cl = NULL; /* Current Resources */
482 struct acpi_handle_list *tl = NULL; /* Target Resources */
483 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400487 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Len Brown4be44fc2005-08-05 00:44:28 -0400489 if ((device->power.state < ACPI_STATE_D0)
490 || (device->power.state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400491 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 cl = &device->power.states[device->power.state].resources;
494 tl = &device->power.states[state].resources;
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /* TBD: Resources must be ordered. */
497
498 /*
499 * First we reference all power resources required in the target list
500 * (e.g. so the device doesn't lose power while transitioning).
501 */
Len Brown4be44fc2005-08-05 00:44:28 -0400502 for (i = 0; i < tl->count; i++) {
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500503 result = acpi_power_on(tl->handles[i], device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (result)
505 goto end;
506 }
507
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500508 if (device->power.state == state) {
509 goto end;
510 }
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /*
513 * Then we dereference all power resources used in the current list.
514 */
Len Brown4be44fc2005-08-05 00:44:28 -0400515 for (i = 0; i < cl->count; i++) {
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500516 result = acpi_power_off_device(cl->handles[i], device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (result)
518 goto end;
519 }
520
Konstantin Karasyov72925762007-02-21 02:05:58 -0500521 end:
Miguel Botóne76d5f72008-02-04 23:31:19 -0800522 if (result)
Konstantin Karasyov72925762007-02-21 02:05:58 -0500523 device->power.state = ACPI_STATE_UNKNOWN;
Miguel Botóne76d5f72008-02-04 23:31:19 -0800524 else {
Konstantin Karasyov72925762007-02-21 02:05:58 -0500525 /* We shouldn't change the state till all above operations succeed */
526 device->power.state = state;
527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Patrick Mocheld550d982006-06-27 00:41:40 -0400529 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 Driver Interface
534 -------------------------------------------------------------------------- */
535
Len Brown4be44fc2005-08-05 00:44:28 -0400536static int acpi_power_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400538 int result = 0, state;
Len Brown4be44fc2005-08-05 00:44:28 -0400539 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 struct acpi_power_resource *resource = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400541 union acpi_object acpi_object;
542 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400546 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Burman Yan36bcbec2006-12-19 12:56:11 -0800548 resource = kzalloc(sizeof(struct acpi_power_resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400550 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Patrick Mochel41598572006-05-19 16:54:40 -0400552 resource->device = device;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500553 mutex_init(&resource->resource_lock);
554 INIT_LIST_HEAD(&resource->reference);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 strcpy(resource->name, device->pnp.bus_id);
556 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
557 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700558 device->driver_data = resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 /* Evalute the object to get the system level and resource order. */
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400561 status = acpi_evaluate_object(device->handle, NULL, NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (ACPI_FAILURE(status)) {
563 result = -ENODEV;
564 goto end;
565 }
566 resource->system_level = acpi_object.power_resource.system_level;
567 resource->order = acpi_object.power_resource.resource_order;
568
Zhao Yakuia51e1452008-08-11 14:55:05 +0800569 result = acpi_power_get_state(device->handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (result)
571 goto end;
572
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400573 switch (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 case ACPI_POWER_RESOURCE_STATE_ON:
575 device->power.state = ACPI_STATE_D0;
576 break;
577 case ACPI_POWER_RESOURCE_STATE_OFF:
578 device->power.state = ACPI_STATE_D3;
579 break;
580 default:
581 device->power.state = ACPI_STATE_UNKNOWN;
582 break;
583 }
584
Len Brown4be44fc2005-08-05 00:44:28 -0400585 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400586 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400587
588 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (result)
590 kfree(resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400591
Patrick Mocheld550d982006-06-27 00:41:40 -0400592 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
Len Brown4be44fc2005-08-05 00:44:28 -0400595static int acpi_power_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 struct acpi_power_resource *resource = NULL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500598 struct list_head *node, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400602 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200604 resource = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500606 mutex_lock(&resource->resource_lock);
607 list_for_each_safe(node, next, &resource->reference) {
608 struct acpi_power_reference *ref = container_of(node, struct acpi_power_reference, node);
609 list_del(&ref->node);
610 kfree(ref);
611 }
612 mutex_unlock(&resource->resource_lock);
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 kfree(resource);
615
Patrick Mocheld550d982006-06-27 00:41:40 -0400616 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Len Browne8363f32007-02-16 02:05:39 -0500619static int acpi_power_resume(struct acpi_device *device)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500620{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400621 int result = 0, state;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500622 struct acpi_power_resource *resource = NULL;
623 struct acpi_power_reference *ref;
624
625 if (!device || !acpi_driver_data(device))
626 return -EINVAL;
627
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700628 resource = acpi_driver_data(device);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500629
Zhao Yakuia51e1452008-08-11 14:55:05 +0800630 result = acpi_power_get_state(device->handle, &state);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500631 if (result)
632 return result;
633
634 mutex_lock(&resource->resource_lock);
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400635 if (state == ACPI_POWER_RESOURCE_STATE_OFF &&
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500636 !list_empty(&resource->reference)) {
637 ref = container_of(resource->reference.next, struct acpi_power_reference, node);
638 mutex_unlock(&resource->resource_lock);
639 result = acpi_power_on(device->handle, ref->device);
640 return result;
641 }
642
643 mutex_unlock(&resource->resource_lock);
644 return 0;
645}
646
Bjorn Helgaas44515372009-03-24 16:49:53 -0600647int __init acpi_power_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 INIT_LIST_HEAD(&acpi_power_resource_list);
Zhang Rui06af7eb2010-07-15 10:46:38 +0800650 return acpi_bus_register_driver(&acpi_power_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}