blob: 67dedeed144cf82c8e13859e7222b976d0eebb2e [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
Len Brown4be44fc2005-08-05 00:44:28 -040083struct acpi_power_resource {
Patrick Mochel41598572006-05-19 16:54:40 -040084 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -040085 acpi_bus_id name;
86 u32 system_level;
87 u32 order;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +020088 unsigned int ref_count;
Konstantin Karasyov0a613902007-02-16 01:47:06 -050089 struct mutex resource_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Len Brown4be44fc2005-08-05 00:44:28 -040092static struct list_head acpi_power_resource_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/* --------------------------------------------------------------------------
95 Power Resource Management
96 -------------------------------------------------------------------------- */
97
98static int
Len Brown4be44fc2005-08-05 00:44:28 -040099acpi_power_get_context(acpi_handle handle,
100 struct acpi_power_resource **resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Len Brown4be44fc2005-08-05 00:44:28 -0400102 int result = 0;
103 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400107 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 result = acpi_bus_get_device(handle, &device);
110 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400111 printk(KERN_WARNING PREFIX "Getting context [%p]\n", handle);
Patrick Mocheld550d982006-06-27 00:41:40 -0400112 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200115 *resource = acpi_driver_data(device);
Li Zefana815ab82008-04-18 13:27:29 -0700116 if (!*resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400117 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Patrick Mocheld550d982006-06-27 00:41:40 -0400119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Zhao Yakuia51e1452008-08-11 14:55:05 +0800122static int acpi_power_get_state(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Len Brown4be44fc2005-08-05 00:44:28 -0400124 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400125 unsigned long long sta = 0;
Lin Ming60a4ce72008-12-16 17:02:22 +0800126 char node_name[5];
127 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Zhao Yakuia51e1452008-08-11 14:55:05 +0800130 if (!handle || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400131 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Zhao Yakuia51e1452008-08-11 14:55:05 +0800133 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400135 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400137 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
138 ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Lin Ming60a4ce72008-12-16 17:02:22 +0800140 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Lin Ming60a4ce72008-12-16 17:02:22 +0800143 node_name,
Zhao Yakuib1b57fb2008-10-27 16:04:53 +0800144 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Patrick Mocheld550d982006-06-27 00:41:40 -0400146 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
Len Brown4be44fc2005-08-05 00:44:28 -0400149static int acpi_power_get_list_state(struct acpi_handle_list *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400151 int result = 0, state1;
Len Brown4be44fc2005-08-05 00:44:28 -0400152 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400156 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /* The state of the list is 'on' IFF all resources are 'on'. */
159
Len Brown4be44fc2005-08-05 00:44:28 -0400160 for (i = 0; i < list->count; i++) {
Zhao Yakuia51e1452008-08-11 14:55:05 +0800161 /*
162 * The state of the power resource can be obtained by
163 * using the ACPI handle. In such case it is unnecessary to
164 * get the Power resource first and then get its state again.
165 */
166 result = acpi_power_get_state(list->handles[i], &state1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400168 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400170 *state = state1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 if (*state != ACPI_POWER_RESOURCE_STATE_ON)
173 break;
174 }
175
176 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400177 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Patrick Mocheld550d982006-06-27 00:41:40 -0400179 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200182static int __acpi_power_on(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Len Brown4be44fc2005-08-05 00:44:28 -0400184 acpi_status status = AE_OK;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500185
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400186 status = acpi_evaluate_object(resource->device->handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400188 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 /* Update the power resource's _device_ power state */
Patrick Mochel41598572006-05-19 16:54:40 -0400191 resource->device->power.state = ACPI_STATE_D0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200193 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400194 resource->name));
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200195
Patrick Mocheld550d982006-06-27 00:41:40 -0400196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200199static int acpi_power_on(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Bjorn Helgaasbdf43bb2009-05-21 17:28:53 -0600201 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 struct acpi_power_resource *resource = NULL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 result = acpi_power_get_context(handle, &resource);
205 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400206 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500208 mutex_lock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200209
210 if (resource->ref_count++) {
211 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
212 "Power resource [%s] already on",
213 resource->name));
214 } else {
215 result = __acpi_power_on(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500218 mutex_unlock(&resource->resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Patrick Mocheld550d982006-06-27 00:41:40 -0400220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200223static int acpi_power_off_device(acpi_handle handle)
224{
225 int result = 0;
226 acpi_status status = AE_OK;
227 struct acpi_power_resource *resource = NULL;
228
229 result = acpi_power_get_context(handle, &resource);
230 if (result)
231 return result;
232
233 mutex_lock(&resource->resource_lock);
234
235 if (!resource->ref_count) {
236 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
237 "Power resource [%s] already off",
238 resource->name));
239 goto unlock;
240 }
241
242 if (--resource->ref_count) {
243 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
244 "Power resource [%s] still in use\n",
245 resource->name));
246 goto unlock;
247 }
248
249 status = acpi_evaluate_object(resource->device->handle, "_OFF", NULL, NULL);
250 if (ACPI_FAILURE(status)) {
251 result = -ENODEV;
252 } else {
253 /* Update the power resource's _device_ power state */
254 resource->device->power.state = ACPI_STATE_D3;
255
256 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
257 "Power resource [%s] turned off\n",
258 resource->name));
259 }
260
261 unlock:
262 mutex_unlock(&resource->resource_lock);
263
264 return result;
265}
266
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200267/**
268 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
269 * ACPI 3.0) _PSW (Power State Wake)
270 * @dev: Device to handle.
271 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
272 * @sleep_state: Target sleep state of the system.
273 * @dev_state: Target power state of the device.
274 *
275 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
276 * State Wake) for the device, if present. On failure reset the device's
277 * wakeup.flags.valid flag.
278 *
279 * RETURN VALUE:
280 * 0 if either _DSW or _PSW has been successfully executed
281 * 0 if neither _DSW nor _PSW has been found
282 * -ENODEV if the execution of either _DSW or _PSW has failed
283 */
284int acpi_device_sleep_wake(struct acpi_device *dev,
285 int enable, int sleep_state, int dev_state)
286{
287 union acpi_object in_arg[3];
288 struct acpi_object_list arg_list = { 3, in_arg };
289 acpi_status status = AE_OK;
290
291 /*
292 * Try to execute _DSW first.
293 *
294 * Three agruments are needed for the _DSW object:
295 * Argument 0: enable/disable the wake capabilities
296 * Argument 1: target system state
297 * Argument 2: target device state
298 * When _DSW object is called to disable the wake capabilities, maybe
299 * the first argument is filled. The values of the other two agruments
300 * are meaningless.
301 */
302 in_arg[0].type = ACPI_TYPE_INTEGER;
303 in_arg[0].integer.value = enable;
304 in_arg[1].type = ACPI_TYPE_INTEGER;
305 in_arg[1].integer.value = sleep_state;
306 in_arg[2].type = ACPI_TYPE_INTEGER;
307 in_arg[2].integer.value = dev_state;
308 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
309 if (ACPI_SUCCESS(status)) {
310 return 0;
311 } else if (status != AE_NOT_FOUND) {
312 printk(KERN_ERR PREFIX "_DSW execution failed\n");
313 dev->wakeup.flags.valid = 0;
314 return -ENODEV;
315 }
316
317 /* Execute _PSW */
318 arg_list.count = 1;
319 in_arg[0].integer.value = enable;
320 status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
321 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
322 printk(KERN_ERR PREFIX "_PSW execution failed\n");
323 dev->wakeup.flags.valid = 0;
324 return -ENODEV;
325 }
326
327 return 0;
328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330/*
331 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
332 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200333 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
334 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200336int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200338 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200341 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200343 mutex_lock(&acpi_device_lock);
344
345 if (dev->wakeup.prepare_count++)
346 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /* Open power resource */
349 for (i = 0; i < dev->wakeup.resources.count; i++) {
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200350 int ret = acpi_power_on(dev->wakeup.resources.handles[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400352 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 dev->wakeup.flags.valid = 0;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200354 err = -ENODEV;
355 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
357 }
358
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200359 /*
360 * Passing 3 as the third argument below means the device may be placed
361 * in arbitrary power state afterwards.
362 */
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200363 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200364
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200365 err_out:
366 if (err)
367 dev->wakeup.prepare_count = 0;
368
369 out:
370 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200371 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
374/*
375 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200376 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
377 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * 2. Shutdown down the power resources
379 */
Len Brown4be44fc2005-08-05 00:44:28 -0400380int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200382 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200385 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200387 mutex_lock(&acpi_device_lock);
388
389 if (--dev->wakeup.prepare_count > 0)
390 goto out;
391
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200392 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200393 * Executing the code below even if prepare_count is already zero when
394 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200395 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200396 if (dev->wakeup.prepare_count < 0)
397 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200398
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200399 err = acpi_device_sleep_wake(dev, 0, 0, 0);
400 if (err)
401 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 /* Close power resource */
404 for (i = 0; i < dev->wakeup.resources.count; i++) {
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200405 int ret = acpi_power_off_device(
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200406 dev->wakeup.resources.handles[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400408 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 dev->wakeup.flags.valid = 0;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200410 err = -ENODEV;
411 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 }
414
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200415 out:
416 mutex_unlock(&acpi_device_lock);
417 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
420/* --------------------------------------------------------------------------
421 Device Power Management
422 -------------------------------------------------------------------------- */
423
Len Brown4be44fc2005-08-05 00:44:28 -0400424int acpi_power_get_inferred_state(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Len Brown4be44fc2005-08-05 00:44:28 -0400426 int result = 0;
427 struct acpi_handle_list *list = NULL;
428 int list_state = 0;
429 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400433 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 device->power.state = ACPI_STATE_UNKNOWN;
436
437 /*
438 * We know a device's inferred power state when all the resources
439 * required for a given D-state are 'on'.
440 */
Len Brown4be44fc2005-08-05 00:44:28 -0400441 for (i = ACPI_STATE_D0; i < ACPI_STATE_D3; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 list = &device->power.states[i].resources;
443 if (list->count < 1)
444 continue;
445
446 result = acpi_power_get_list_state(list, &list_state);
447 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400448 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
451 device->power.state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454 }
455
456 device->power.state = ACPI_STATE_D3;
457
Patrick Mocheld550d982006-06-27 00:41:40 -0400458 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Len Brown4be44fc2005-08-05 00:44:28 -0400461int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Len Brown4be44fc2005-08-05 00:44:28 -0400463 int result = 0;
464 struct acpi_handle_list *cl = NULL; /* Current Resources */
465 struct acpi_handle_list *tl = NULL; /* Target Resources */
466 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400470 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Len Brown4be44fc2005-08-05 00:44:28 -0400472 if ((device->power.state < ACPI_STATE_D0)
473 || (device->power.state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400474 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 cl = &device->power.states[device->power.state].resources;
477 tl = &device->power.states[state].resources;
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 /* TBD: Resources must be ordered. */
480
481 /*
482 * First we reference all power resources required in the target list
483 * (e.g. so the device doesn't lose power while transitioning).
484 */
Len Brown4be44fc2005-08-05 00:44:28 -0400485 for (i = 0; i < tl->count; i++) {
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200486 result = acpi_power_on(tl->handles[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (result)
488 goto end;
489 }
490
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500491 if (device->power.state == state) {
492 goto end;
493 }
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 /*
496 * Then we dereference all power resources used in the current list.
497 */
Len Brown4be44fc2005-08-05 00:44:28 -0400498 for (i = 0; i < cl->count; i++) {
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200499 result = acpi_power_off_device(cl->handles[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (result)
501 goto end;
502 }
503
Konstantin Karasyov72925762007-02-21 02:05:58 -0500504 end:
Miguel Botóne76d5f72008-02-04 23:31:19 -0800505 if (result)
Konstantin Karasyov72925762007-02-21 02:05:58 -0500506 device->power.state = ACPI_STATE_UNKNOWN;
Miguel Botóne76d5f72008-02-04 23:31:19 -0800507 else {
Konstantin Karasyov72925762007-02-21 02:05:58 -0500508 /* We shouldn't change the state till all above operations succeed */
509 device->power.state = state;
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Patrick Mocheld550d982006-06-27 00:41:40 -0400512 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 Driver Interface
517 -------------------------------------------------------------------------- */
518
Len Brown4be44fc2005-08-05 00:44:28 -0400519static int acpi_power_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400521 int result = 0, state;
Len Brown4be44fc2005-08-05 00:44:28 -0400522 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 struct acpi_power_resource *resource = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400524 union acpi_object acpi_object;
525 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400529 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Burman Yan36bcbec2006-12-19 12:56:11 -0800531 resource = kzalloc(sizeof(struct acpi_power_resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400533 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Patrick Mochel41598572006-05-19 16:54:40 -0400535 resource->device = device;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500536 mutex_init(&resource->resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 strcpy(resource->name, device->pnp.bus_id);
538 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
539 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700540 device->driver_data = resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 /* Evalute the object to get the system level and resource order. */
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400543 status = acpi_evaluate_object(device->handle, NULL, NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (ACPI_FAILURE(status)) {
545 result = -ENODEV;
546 goto end;
547 }
548 resource->system_level = acpi_object.power_resource.system_level;
549 resource->order = acpi_object.power_resource.resource_order;
550
Zhao Yakuia51e1452008-08-11 14:55:05 +0800551 result = acpi_power_get_state(device->handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (result)
553 goto end;
554
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400555 switch (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 case ACPI_POWER_RESOURCE_STATE_ON:
557 device->power.state = ACPI_STATE_D0;
558 break;
559 case ACPI_POWER_RESOURCE_STATE_OFF:
560 device->power.state = ACPI_STATE_D3;
561 break;
562 default:
563 device->power.state = ACPI_STATE_UNKNOWN;
564 break;
565 }
566
Len Brown4be44fc2005-08-05 00:44:28 -0400567 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400568 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400569
570 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (result)
572 kfree(resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400573
Patrick Mocheld550d982006-06-27 00:41:40 -0400574 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Len Brown4be44fc2005-08-05 00:44:28 -0400577static int acpi_power_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200579 struct acpi_power_resource *resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200581 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400582 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200584 resource = acpi_driver_data(device);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200585 if (!resource)
586 return -EINVAL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 kfree(resource);
589
Patrick Mocheld550d982006-06-27 00:41:40 -0400590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Len Browne8363f32007-02-16 02:05:39 -0500593static int acpi_power_resume(struct acpi_device *device)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500594{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400595 int result = 0, state;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200596 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500597
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200598 if (!device)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500599 return -EINVAL;
600
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700601 resource = acpi_driver_data(device);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200602 if (!resource)
603 return -EINVAL;
604
605 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500606
Zhao Yakuia51e1452008-08-11 14:55:05 +0800607 result = acpi_power_get_state(device->handle, &state);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500608 if (result)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200609 goto unlock;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500610
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200611 if (state == ACPI_POWER_RESOURCE_STATE_OFF && resource->ref_count)
612 result = __acpi_power_on(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500613
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200614 unlock:
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500615 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200616
617 return result;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500618}
619
Bjorn Helgaas44515372009-03-24 16:49:53 -0600620int __init acpi_power_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 INIT_LIST_HEAD(&acpi_power_resource_list);
Zhang Rui06af7eb2010-07-15 10:46:38 +0800623 return acpi_bus_register_driver(&acpi_power_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}