blob: 894d45c6bc67793d84198416fe1940e2fe42dc19 [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>
Lin Ming0090def2012-03-29 14:09:39 +080043#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi_bus.h>
45#include <acpi/acpi_drivers.h>
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020046#include "sleep.h"
Lin Ming0090def2012-03-29 14:09:39 +080047#include "internal.h"
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020048
Len Browna192a952009-07-28 16:45:54 -040049#define PREFIX "ACPI: "
50
Bjorn Helgaas89595b82008-11-07 16:57:45 -070051#define _COMPONENT ACPI_POWER_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050052ACPI_MODULE_NAME("power");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_POWER_CLASS "power_resource"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_POWER_DEVICE_NAME "Power Resource"
55#define ACPI_POWER_FILE_INFO "info"
56#define ACPI_POWER_FILE_STATUS "state"
57#define ACPI_POWER_RESOURCE_STATE_OFF 0x00
58#define ACPI_POWER_RESOURCE_STATE_ON 0x01
59#define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF
Zhao Yakuif5adfaa2008-08-11 14:57:50 +080060
Len Brown4be44fc2005-08-05 00:44:28 -040061static int acpi_power_add(struct acpi_device *device);
62static int acpi_power_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Márton Némethc97adf92010-01-10 17:15:36 +010064static const struct acpi_device_id power_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020065 {ACPI_POWER_HID, 0},
66 {"", 0},
67};
68MODULE_DEVICE_TABLE(acpi, power_device_ids);
69
Rafael J. Wysockie579e2d2012-06-27 23:26:59 +020070static int acpi_power_resume(struct device *dev);
71static SIMPLE_DEV_PM_OPS(acpi_power_pm, NULL, acpi_power_resume);
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static struct acpi_driver acpi_power_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050074 .name = "power",
Len Brown4be44fc2005-08-05 00:44:28 -040075 .class = ACPI_POWER_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020076 .ids = power_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040077 .ops = {
78 .add = acpi_power_add,
79 .remove = acpi_power_remove,
80 },
Rafael J. Wysockie579e2d2012-06-27 23:26:59 +020081 .drv.pm = &acpi_power_pm,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
Lin Ming0090def2012-03-29 14:09:39 +080084/*
85 * A power managed device
86 * A device may rely on multiple power resources.
87 * */
88struct acpi_power_managed_device {
89 struct device *dev; /* The physical device */
90 acpi_handle *handle;
91};
92
93struct acpi_power_resource_device {
94 struct acpi_power_managed_device *device;
95 struct acpi_power_resource_device *next;
96};
97
Len Brown4be44fc2005-08-05 00:44:28 -040098struct acpi_power_resource {
Patrick Mochel41598572006-05-19 16:54:40 -040099 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -0400100 acpi_bus_id name;
101 u32 system_level;
102 u32 order;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200103 unsigned int ref_count;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500104 struct mutex resource_lock;
Lin Ming0090def2012-03-29 14:09:39 +0800105
106 /* List of devices relying on this power resource */
107 struct acpi_power_resource_device *devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
Len Brown4be44fc2005-08-05 00:44:28 -0400110static struct list_head acpi_power_resource_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* --------------------------------------------------------------------------
113 Power Resource Management
114 -------------------------------------------------------------------------- */
115
116static int
Len Brown4be44fc2005-08-05 00:44:28 -0400117acpi_power_get_context(acpi_handle handle,
118 struct acpi_power_resource **resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Len Brown4be44fc2005-08-05 00:44:28 -0400120 int result = 0;
121 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400125 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 result = acpi_bus_get_device(handle, &device);
128 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400129 printk(KERN_WARNING PREFIX "Getting context [%p]\n", handle);
Patrick Mocheld550d982006-06-27 00:41:40 -0400130 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
132
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200133 *resource = acpi_driver_data(device);
Li Zefana815ab82008-04-18 13:27:29 -0700134 if (!*resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400135 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Patrick Mocheld550d982006-06-27 00:41:40 -0400137 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Zhao Yakuia51e1452008-08-11 14:55:05 +0800140static int acpi_power_get_state(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Len Brown4be44fc2005-08-05 00:44:28 -0400142 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400143 unsigned long long sta = 0;
Lin Ming60a4ce72008-12-16 17:02:22 +0800144 char node_name[5];
145 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Zhao Yakuia51e1452008-08-11 14:55:05 +0800148 if (!handle || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400149 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Zhao Yakuia51e1452008-08-11 14:55:05 +0800151 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400153 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400155 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
156 ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Lin Ming60a4ce72008-12-16 17:02:22 +0800158 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Lin Ming60a4ce72008-12-16 17:02:22 +0800161 node_name,
Zhao Yakuib1b57fb2008-10-27 16:04:53 +0800162 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Patrick Mocheld550d982006-06-27 00:41:40 -0400164 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Len Brown4be44fc2005-08-05 00:44:28 -0400167static int acpi_power_get_list_state(struct acpi_handle_list *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100169 int cur_state;
170 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400173 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /* The state of the list is 'on' IFF all resources are 'on'. */
176
Len Brown4be44fc2005-08-05 00:44:28 -0400177 for (i = 0; i < list->count; i++) {
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100178 struct acpi_power_resource *resource;
179 acpi_handle handle = list->handles[i];
180 int result;
181
182 result = acpi_power_get_context(handle, &resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400184 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100186 mutex_lock(&resource->resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100188 result = acpi_power_get_state(handle, &cur_state);
189
190 mutex_unlock(&resource->resource_lock);
191
192 if (result)
193 return result;
194
195 if (cur_state != ACPI_POWER_RESOURCE_STATE_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 break;
197 }
198
199 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100200 cur_state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100202 *state = cur_state;
203
204 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Lin Ming0090def2012-03-29 14:09:39 +0800207/* Resume the device when all power resources in _PR0 are on */
208static void acpi_power_on_device(struct acpi_power_managed_device *device)
209{
210 struct acpi_device *acpi_dev;
211 acpi_handle handle = device->handle;
212 int state;
213
214 if (acpi_bus_get_device(handle, &acpi_dev))
215 return;
216
217 if(acpi_power_get_inferred_state(acpi_dev, &state))
218 return;
219
220 if (state == ACPI_STATE_D0 && pm_runtime_suspended(device->dev))
221 pm_request_resume(device->dev);
222}
223
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200224static int __acpi_power_on(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Lin Ming0090def2012-03-29 14:09:39 +0800226 struct acpi_power_resource_device *device_list = resource->devices;
Len Brown4be44fc2005-08-05 00:44:28 -0400227 acpi_status status = AE_OK;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500228
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400229 status = acpi_evaluate_object(resource->device->handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400231 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /* Update the power resource's _device_ power state */
Patrick Mochel41598572006-05-19 16:54:40 -0400234 resource->device->power.state = ACPI_STATE_D0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200236 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400237 resource->name));
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200238
Lin Ming0090def2012-03-29 14:09:39 +0800239 while (device_list) {
240 acpi_power_on_device(device_list->device);
241
242 device_list = device_list->next;
243 }
244
Patrick Mocheld550d982006-06-27 00:41:40 -0400245 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200248static int acpi_power_on(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Bjorn Helgaasbdf43bb2009-05-21 17:28:53 -0600250 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 struct acpi_power_resource *resource = NULL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 result = acpi_power_get_context(handle, &resource);
254 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400255 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500257 mutex_lock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200258
259 if (resource->ref_count++) {
260 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
261 "Power resource [%s] already on",
262 resource->name));
263 } else {
264 result = __acpi_power_on(resource);
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100265 if (result)
266 resource->ref_count--;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500267 }
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
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100271 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
Rafael J. Wysocki36237fa2011-01-06 23:38:04 +0100274static int acpi_power_off(acpi_handle handle)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200275{
276 int result = 0;
277 acpi_status status = AE_OK;
278 struct acpi_power_resource *resource = NULL;
279
280 result = acpi_power_get_context(handle, &resource);
281 if (result)
282 return result;
283
284 mutex_lock(&resource->resource_lock);
285
286 if (!resource->ref_count) {
287 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
288 "Power resource [%s] already off",
289 resource->name));
290 goto unlock;
291 }
292
293 if (--resource->ref_count) {
294 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
295 "Power resource [%s] still in use\n",
296 resource->name));
297 goto unlock;
298 }
299
300 status = acpi_evaluate_object(resource->device->handle, "_OFF", NULL, NULL);
301 if (ACPI_FAILURE(status)) {
302 result = -ENODEV;
303 } else {
304 /* Update the power resource's _device_ power state */
305 resource->device->power.state = ACPI_STATE_D3;
306
307 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
308 "Power resource [%s] turned off\n",
309 resource->name));
310 }
311
312 unlock:
313 mutex_unlock(&resource->resource_lock);
314
315 return result;
316}
317
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100318static void __acpi_power_off_list(struct acpi_handle_list *list, int num_res)
319{
320 int i;
321
322 for (i = num_res - 1; i >= 0 ; i--)
Rafael J. Wysocki36237fa2011-01-06 23:38:04 +0100323 acpi_power_off(list->handles[i]);
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100324}
325
326static void acpi_power_off_list(struct acpi_handle_list *list)
327{
328 __acpi_power_off_list(list, list->count);
329}
330
331static int acpi_power_on_list(struct acpi_handle_list *list)
332{
333 int result = 0;
334 int i;
335
336 for (i = 0; i < list->count; i++) {
337 result = acpi_power_on(list->handles[i]);
338 if (result) {
339 __acpi_power_off_list(list, i);
340 break;
341 }
342 }
343
344 return result;
345}
346
Lin Ming0090def2012-03-29 14:09:39 +0800347static void __acpi_power_resource_unregister_device(struct device *dev,
348 acpi_handle res_handle)
349{
350 struct acpi_power_resource *resource = NULL;
351 struct acpi_power_resource_device *prev, *curr;
352
353 if (acpi_power_get_context(res_handle, &resource))
354 return;
355
356 mutex_lock(&resource->resource_lock);
357 prev = NULL;
358 curr = resource->devices;
359 while (curr) {
360 if (curr->device->dev == dev) {
361 if (!prev)
362 resource->devices = curr->next;
363 else
364 prev->next = curr->next;
365
366 kfree(curr);
367 break;
368 }
369
370 prev = curr;
371 curr = curr->next;
372 }
373 mutex_unlock(&resource->resource_lock);
374}
375
376/* Unlink dev from all power resources in _PR0 */
377void acpi_power_resource_unregister_device(struct device *dev, acpi_handle handle)
378{
379 struct acpi_device *acpi_dev;
380 struct acpi_handle_list *list;
381 int i;
382
383 if (!dev || !handle)
384 return;
385
386 if (acpi_bus_get_device(handle, &acpi_dev))
387 return;
388
389 list = &acpi_dev->power.states[ACPI_STATE_D0].resources;
390
391 for (i = 0; i < list->count; i++)
392 __acpi_power_resource_unregister_device(dev,
393 list->handles[i]);
394}
395
396static int __acpi_power_resource_register_device(
397 struct acpi_power_managed_device *powered_device, acpi_handle handle)
398{
399 struct acpi_power_resource *resource = NULL;
400 struct acpi_power_resource_device *power_resource_device;
401 int result;
402
403 result = acpi_power_get_context(handle, &resource);
404 if (result)
405 return result;
406
407 power_resource_device = kzalloc(
408 sizeof(*power_resource_device), GFP_KERNEL);
409 if (!power_resource_device)
410 return -ENOMEM;
411
412 power_resource_device->device = powered_device;
413
414 mutex_lock(&resource->resource_lock);
415 power_resource_device->next = resource->devices;
416 resource->devices = power_resource_device;
417 mutex_unlock(&resource->resource_lock);
418
419 return 0;
420}
421
422/* Link dev to all power resources in _PR0 */
423int acpi_power_resource_register_device(struct device *dev, acpi_handle handle)
424{
425 struct acpi_device *acpi_dev;
426 struct acpi_handle_list *list;
427 struct acpi_power_managed_device *powered_device;
428 int i, ret;
429
430 if (!dev || !handle)
431 return -ENODEV;
432
433 ret = acpi_bus_get_device(handle, &acpi_dev);
434 if (ret)
435 goto no_power_resource;
436
437 if (!acpi_dev->power.flags.power_resources)
438 goto no_power_resource;
439
440 powered_device = kzalloc(sizeof(*powered_device), GFP_KERNEL);
441 if (!powered_device)
442 return -ENOMEM;
443
444 powered_device->dev = dev;
445 powered_device->handle = handle;
446
447 list = &acpi_dev->power.states[ACPI_STATE_D0].resources;
448
449 for (i = 0; i < list->count; i++) {
450 ret = __acpi_power_resource_register_device(powered_device,
451 list->handles[i]);
452
453 if (ret) {
454 acpi_power_resource_unregister_device(dev, handle);
455 break;
456 }
457 }
458
459 return ret;
460
461no_power_resource:
462 printk(KERN_WARNING PREFIX "Invalid Power Resource to register!");
463 return -ENODEV;
464}
465
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200466/**
467 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
468 * ACPI 3.0) _PSW (Power State Wake)
469 * @dev: Device to handle.
470 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
471 * @sleep_state: Target sleep state of the system.
472 * @dev_state: Target power state of the device.
473 *
474 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
475 * State Wake) for the device, if present. On failure reset the device's
476 * wakeup.flags.valid flag.
477 *
478 * RETURN VALUE:
479 * 0 if either _DSW or _PSW has been successfully executed
480 * 0 if neither _DSW nor _PSW has been found
481 * -ENODEV if the execution of either _DSW or _PSW has failed
482 */
483int acpi_device_sleep_wake(struct acpi_device *dev,
484 int enable, int sleep_state, int dev_state)
485{
486 union acpi_object in_arg[3];
487 struct acpi_object_list arg_list = { 3, in_arg };
488 acpi_status status = AE_OK;
489
490 /*
491 * Try to execute _DSW first.
492 *
493 * Three agruments are needed for the _DSW object:
494 * Argument 0: enable/disable the wake capabilities
495 * Argument 1: target system state
496 * Argument 2: target device state
497 * When _DSW object is called to disable the wake capabilities, maybe
498 * the first argument is filled. The values of the other two agruments
499 * are meaningless.
500 */
501 in_arg[0].type = ACPI_TYPE_INTEGER;
502 in_arg[0].integer.value = enable;
503 in_arg[1].type = ACPI_TYPE_INTEGER;
504 in_arg[1].integer.value = sleep_state;
505 in_arg[2].type = ACPI_TYPE_INTEGER;
506 in_arg[2].integer.value = dev_state;
507 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
508 if (ACPI_SUCCESS(status)) {
509 return 0;
510 } else if (status != AE_NOT_FOUND) {
511 printk(KERN_ERR PREFIX "_DSW execution failed\n");
512 dev->wakeup.flags.valid = 0;
513 return -ENODEV;
514 }
515
516 /* Execute _PSW */
517 arg_list.count = 1;
518 in_arg[0].integer.value = enable;
519 status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
520 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
521 printk(KERN_ERR PREFIX "_PSW execution failed\n");
522 dev->wakeup.flags.valid = 0;
523 return -ENODEV;
524 }
525
526 return 0;
527}
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529/*
530 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
531 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200532 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
533 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200535int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200537 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200540 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200542 mutex_lock(&acpi_device_lock);
543
544 if (dev->wakeup.prepare_count++)
545 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* Open power resource */
548 for (i = 0; i < dev->wakeup.resources.count; i++) {
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200549 int ret = acpi_power_on(dev->wakeup.resources.handles[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400551 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 dev->wakeup.flags.valid = 0;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200553 err = -ENODEV;
554 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556 }
557
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200558 /*
559 * Passing 3 as the third argument below means the device may be placed
560 * in arbitrary power state afterwards.
561 */
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200562 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200563
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200564 err_out:
565 if (err)
566 dev->wakeup.prepare_count = 0;
567
568 out:
569 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200570 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
573/*
574 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200575 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
576 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 * 2. Shutdown down the power resources
578 */
Len Brown4be44fc2005-08-05 00:44:28 -0400579int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200581 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200584 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200586 mutex_lock(&acpi_device_lock);
587
588 if (--dev->wakeup.prepare_count > 0)
589 goto out;
590
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200591 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200592 * Executing the code below even if prepare_count is already zero when
593 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200594 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200595 if (dev->wakeup.prepare_count < 0)
596 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200597
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200598 err = acpi_device_sleep_wake(dev, 0, 0, 0);
599 if (err)
600 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 /* Close power resource */
603 for (i = 0; i < dev->wakeup.resources.count; i++) {
Rafael J. Wysocki36237fa2011-01-06 23:38:04 +0100604 int ret = acpi_power_off(dev->wakeup.resources.handles[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400606 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 dev->wakeup.flags.valid = 0;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200608 err = -ENODEV;
609 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611 }
612
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200613 out:
614 mutex_unlock(&acpi_device_lock);
615 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
618/* --------------------------------------------------------------------------
619 Device Power Management
620 -------------------------------------------------------------------------- */
621
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100622int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Len Brown4be44fc2005-08-05 00:44:28 -0400624 int result = 0;
625 struct acpi_handle_list *list = NULL;
626 int list_state = 0;
627 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100629 if (!device || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400630 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /*
633 * We know a device's inferred power state when all the resources
634 * required for a given D-state are 'on'.
635 */
Rafael J. Wysocki38c92ff2012-05-20 13:58:00 +0200636 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 list = &device->power.states[i].resources;
638 if (list->count < 1)
639 continue;
640
641 result = acpi_power_get_list_state(list, &list_state);
642 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400643 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100646 *state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400647 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649 }
650
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100651 *state = ACPI_STATE_D3;
Patrick Mocheld550d982006-06-27 00:41:40 -0400652 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Rafael J. Wysocki30d3df42010-11-25 00:06:55 +0100655int acpi_power_on_resources(struct acpi_device *device, int state)
656{
657 if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3)
658 return -EINVAL;
659
660 return acpi_power_on_list(&device->power.states[state].resources);
661}
662
Len Brown4be44fc2005-08-05 00:44:28 -0400663int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200665 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800667 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400668 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Rafael J. Wysocki212967c2010-11-25 00:02:36 +0100670 if (device->power.state == state)
671 return 0;
672
Len Brown4be44fc2005-08-05 00:44:28 -0400673 if ((device->power.state < ACPI_STATE_D0)
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800674 || (device->power.state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400675 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 /* TBD: Resources must be ordered. */
678
679 /*
680 * First we reference all power resources required in the target list
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100681 * (e.g. so the device doesn't lose power while transitioning). Then,
682 * we dereference all power resources used in the current list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 */
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200684 if (state < ACPI_STATE_D3_COLD)
685 result = acpi_power_on_list(
686 &device->power.states[state].resources);
687
688 if (!result && device->power.state < ACPI_STATE_D3_COLD)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100689 acpi_power_off_list(
690 &device->power.states[device->power.state].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100692 /* We shouldn't change the state unless the above operations succeed. */
693 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Patrick Mocheld550d982006-06-27 00:41:40 -0400695 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 Driver Interface
700 -------------------------------------------------------------------------- */
701
Len Brown4be44fc2005-08-05 00:44:28 -0400702static int acpi_power_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400704 int result = 0, state;
Len Brown4be44fc2005-08-05 00:44:28 -0400705 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct acpi_power_resource *resource = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400707 union acpi_object acpi_object;
708 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400712 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Burman Yan36bcbec2006-12-19 12:56:11 -0800714 resource = kzalloc(sizeof(struct acpi_power_resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400716 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Patrick Mochel41598572006-05-19 16:54:40 -0400718 resource->device = device;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500719 mutex_init(&resource->resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 strcpy(resource->name, device->pnp.bus_id);
721 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
722 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700723 device->driver_data = resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 /* Evalute the object to get the system level and resource order. */
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400726 status = acpi_evaluate_object(device->handle, NULL, NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (ACPI_FAILURE(status)) {
728 result = -ENODEV;
729 goto end;
730 }
731 resource->system_level = acpi_object.power_resource.system_level;
732 resource->order = acpi_object.power_resource.resource_order;
733
Zhao Yakuia51e1452008-08-11 14:55:05 +0800734 result = acpi_power_get_state(device->handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (result)
736 goto end;
737
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400738 switch (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 case ACPI_POWER_RESOURCE_STATE_ON:
740 device->power.state = ACPI_STATE_D0;
741 break;
742 case ACPI_POWER_RESOURCE_STATE_OFF:
743 device->power.state = ACPI_STATE_D3;
744 break;
745 default:
746 device->power.state = ACPI_STATE_UNKNOWN;
747 break;
748 }
749
Len Brown4be44fc2005-08-05 00:44:28 -0400750 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400751 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400752
753 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (result)
755 kfree(resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400756
Patrick Mocheld550d982006-06-27 00:41:40 -0400757 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Len Brown4be44fc2005-08-05 00:44:28 -0400760static int acpi_power_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200762 struct acpi_power_resource *resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200764 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400765 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200767 resource = acpi_driver_data(device);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200768 if (!resource)
769 return -EINVAL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 kfree(resource);
772
Patrick Mocheld550d982006-06-27 00:41:40 -0400773 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
Rafael J. Wysockie579e2d2012-06-27 23:26:59 +0200776static int acpi_power_resume(struct device *dev)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500777{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400778 int result = 0, state;
Rafael J. Wysockie579e2d2012-06-27 23:26:59 +0200779 struct acpi_device *device;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200780 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500781
Rafael J. Wysockie579e2d2012-06-27 23:26:59 +0200782 if (!dev)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500783 return -EINVAL;
784
Rafael J. Wysockie579e2d2012-06-27 23:26:59 +0200785 device = to_acpi_device(dev);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700786 resource = acpi_driver_data(device);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200787 if (!resource)
788 return -EINVAL;
789
790 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500791
Zhao Yakuia51e1452008-08-11 14:55:05 +0800792 result = acpi_power_get_state(device->handle, &state);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500793 if (result)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200794 goto unlock;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500795
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200796 if (state == ACPI_POWER_RESOURCE_STATE_OFF && resource->ref_count)
797 result = __acpi_power_on(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500798
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200799 unlock:
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500800 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200801
802 return result;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500803}
804
Bjorn Helgaas44515372009-03-24 16:49:53 -0600805int __init acpi_power_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 INIT_LIST_HEAD(&acpi_power_resource_list);
Zhang Rui06af7eb2010-07-15 10:46:38 +0800808 return acpi_bus_register_driver(&acpi_power_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}