blob: 215ecd09740888be80ce50bbd4ffb74f292c9753 [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}
Lin Minga606dac32012-06-25 16:13:07 +0800395EXPORT_SYMBOL_GPL(acpi_power_resource_unregister_device);
Lin Ming0090def2012-03-29 14:09:39 +0800396
397static int __acpi_power_resource_register_device(
398 struct acpi_power_managed_device *powered_device, acpi_handle handle)
399{
400 struct acpi_power_resource *resource = NULL;
401 struct acpi_power_resource_device *power_resource_device;
402 int result;
403
404 result = acpi_power_get_context(handle, &resource);
405 if (result)
406 return result;
407
408 power_resource_device = kzalloc(
409 sizeof(*power_resource_device), GFP_KERNEL);
410 if (!power_resource_device)
411 return -ENOMEM;
412
413 power_resource_device->device = powered_device;
414
415 mutex_lock(&resource->resource_lock);
416 power_resource_device->next = resource->devices;
417 resource->devices = power_resource_device;
418 mutex_unlock(&resource->resource_lock);
419
420 return 0;
421}
422
423/* Link dev to all power resources in _PR0 */
424int acpi_power_resource_register_device(struct device *dev, acpi_handle handle)
425{
426 struct acpi_device *acpi_dev;
427 struct acpi_handle_list *list;
428 struct acpi_power_managed_device *powered_device;
429 int i, ret;
430
431 if (!dev || !handle)
432 return -ENODEV;
433
434 ret = acpi_bus_get_device(handle, &acpi_dev);
435 if (ret)
436 goto no_power_resource;
437
438 if (!acpi_dev->power.flags.power_resources)
439 goto no_power_resource;
440
441 powered_device = kzalloc(sizeof(*powered_device), GFP_KERNEL);
442 if (!powered_device)
443 return -ENOMEM;
444
445 powered_device->dev = dev;
446 powered_device->handle = handle;
447
448 list = &acpi_dev->power.states[ACPI_STATE_D0].resources;
449
450 for (i = 0; i < list->count; i++) {
451 ret = __acpi_power_resource_register_device(powered_device,
452 list->handles[i]);
453
454 if (ret) {
455 acpi_power_resource_unregister_device(dev, handle);
456 break;
457 }
458 }
459
460 return ret;
461
462no_power_resource:
463 printk(KERN_WARNING PREFIX "Invalid Power Resource to register!");
464 return -ENODEV;
465}
Lin Minga606dac32012-06-25 16:13:07 +0800466EXPORT_SYMBOL_GPL(acpi_power_resource_register_device);
Lin Ming0090def2012-03-29 14:09:39 +0800467
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200468/**
469 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
470 * ACPI 3.0) _PSW (Power State Wake)
471 * @dev: Device to handle.
472 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
473 * @sleep_state: Target sleep state of the system.
474 * @dev_state: Target power state of the device.
475 *
476 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
477 * State Wake) for the device, if present. On failure reset the device's
478 * wakeup.flags.valid flag.
479 *
480 * RETURN VALUE:
481 * 0 if either _DSW or _PSW has been successfully executed
482 * 0 if neither _DSW nor _PSW has been found
483 * -ENODEV if the execution of either _DSW or _PSW has failed
484 */
485int acpi_device_sleep_wake(struct acpi_device *dev,
486 int enable, int sleep_state, int dev_state)
487{
488 union acpi_object in_arg[3];
489 struct acpi_object_list arg_list = { 3, in_arg };
490 acpi_status status = AE_OK;
491
492 /*
493 * Try to execute _DSW first.
494 *
495 * Three agruments are needed for the _DSW object:
496 * Argument 0: enable/disable the wake capabilities
497 * Argument 1: target system state
498 * Argument 2: target device state
499 * When _DSW object is called to disable the wake capabilities, maybe
500 * the first argument is filled. The values of the other two agruments
501 * are meaningless.
502 */
503 in_arg[0].type = ACPI_TYPE_INTEGER;
504 in_arg[0].integer.value = enable;
505 in_arg[1].type = ACPI_TYPE_INTEGER;
506 in_arg[1].integer.value = sleep_state;
507 in_arg[2].type = ACPI_TYPE_INTEGER;
508 in_arg[2].integer.value = dev_state;
509 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
510 if (ACPI_SUCCESS(status)) {
511 return 0;
512 } else if (status != AE_NOT_FOUND) {
513 printk(KERN_ERR PREFIX "_DSW execution failed\n");
514 dev->wakeup.flags.valid = 0;
515 return -ENODEV;
516 }
517
518 /* Execute _PSW */
519 arg_list.count = 1;
520 in_arg[0].integer.value = enable;
521 status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
522 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
523 printk(KERN_ERR PREFIX "_PSW execution failed\n");
524 dev->wakeup.flags.valid = 0;
525 return -ENODEV;
526 }
527
528 return 0;
529}
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531/*
532 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
533 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200534 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
535 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200537int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200539 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200542 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200544 mutex_lock(&acpi_device_lock);
545
546 if (dev->wakeup.prepare_count++)
547 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* Open power resource */
550 for (i = 0; i < dev->wakeup.resources.count; i++) {
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200551 int ret = acpi_power_on(dev->wakeup.resources.handles[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400553 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 dev->wakeup.flags.valid = 0;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200555 err = -ENODEV;
556 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558 }
559
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200560 /*
561 * Passing 3 as the third argument below means the device may be placed
562 * in arbitrary power state afterwards.
563 */
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200564 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200565
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200566 err_out:
567 if (err)
568 dev->wakeup.prepare_count = 0;
569
570 out:
571 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200572 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
575/*
576 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200577 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
578 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 * 2. Shutdown down the power resources
580 */
Len Brown4be44fc2005-08-05 00:44:28 -0400581int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200583 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200586 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200588 mutex_lock(&acpi_device_lock);
589
590 if (--dev->wakeup.prepare_count > 0)
591 goto out;
592
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200593 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200594 * Executing the code below even if prepare_count is already zero when
595 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200596 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200597 if (dev->wakeup.prepare_count < 0)
598 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200599
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200600 err = acpi_device_sleep_wake(dev, 0, 0, 0);
601 if (err)
602 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 /* Close power resource */
605 for (i = 0; i < dev->wakeup.resources.count; i++) {
Rafael J. Wysocki36237fa2011-01-06 23:38:04 +0100606 int ret = acpi_power_off(dev->wakeup.resources.handles[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400608 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 dev->wakeup.flags.valid = 0;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200610 err = -ENODEV;
611 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613 }
614
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200615 out:
616 mutex_unlock(&acpi_device_lock);
617 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620/* --------------------------------------------------------------------------
621 Device Power Management
622 -------------------------------------------------------------------------- */
623
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100624int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Len Brown4be44fc2005-08-05 00:44:28 -0400626 int result = 0;
627 struct acpi_handle_list *list = NULL;
628 int list_state = 0;
629 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100631 if (!device || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400632 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /*
635 * We know a device's inferred power state when all the resources
636 * required for a given D-state are 'on'.
637 */
Rafael J. Wysocki38c92ff2012-05-20 13:58:00 +0200638 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 list = &device->power.states[i].resources;
640 if (list->count < 1)
641 continue;
642
643 result = acpi_power_get_list_state(list, &list_state);
644 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400645 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100648 *state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400649 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651 }
652
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100653 *state = ACPI_STATE_D3;
Patrick Mocheld550d982006-06-27 00:41:40 -0400654 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Rafael J. Wysocki30d3df412010-11-25 00:06:55 +0100657int acpi_power_on_resources(struct acpi_device *device, int state)
658{
659 if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3)
660 return -EINVAL;
661
662 return acpi_power_on_list(&device->power.states[state].resources);
663}
664
Len Brown4be44fc2005-08-05 00:44:28 -0400665int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200667 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800669 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400670 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Rafael J. Wysocki212967c2010-11-25 00:02:36 +0100672 if (device->power.state == state)
673 return 0;
674
Len Brown4be44fc2005-08-05 00:44:28 -0400675 if ((device->power.state < ACPI_STATE_D0)
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800676 || (device->power.state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400677 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 /* TBD: Resources must be ordered. */
680
681 /*
682 * First we reference all power resources required in the target list
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100683 * (e.g. so the device doesn't lose power while transitioning). Then,
684 * we dereference all power resources used in the current list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 */
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200686 if (state < ACPI_STATE_D3_COLD)
687 result = acpi_power_on_list(
688 &device->power.states[state].resources);
689
690 if (!result && device->power.state < ACPI_STATE_D3_COLD)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100691 acpi_power_off_list(
692 &device->power.states[device->power.state].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100694 /* We shouldn't change the state unless the above operations succeed. */
695 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Patrick Mocheld550d982006-06-27 00:41:40 -0400697 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 Driver Interface
702 -------------------------------------------------------------------------- */
703
Len Brown4be44fc2005-08-05 00:44:28 -0400704static int acpi_power_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400706 int result = 0, state;
Len Brown4be44fc2005-08-05 00:44:28 -0400707 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 struct acpi_power_resource *resource = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400709 union acpi_object acpi_object;
710 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400714 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Burman Yan36bcbec2006-12-19 12:56:11 -0800716 resource = kzalloc(sizeof(struct acpi_power_resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400718 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Patrick Mochel41598572006-05-19 16:54:40 -0400720 resource->device = device;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500721 mutex_init(&resource->resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 strcpy(resource->name, device->pnp.bus_id);
723 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
724 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700725 device->driver_data = resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 /* Evalute the object to get the system level and resource order. */
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400728 status = acpi_evaluate_object(device->handle, NULL, NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (ACPI_FAILURE(status)) {
730 result = -ENODEV;
731 goto end;
732 }
733 resource->system_level = acpi_object.power_resource.system_level;
734 resource->order = acpi_object.power_resource.resource_order;
735
Zhao Yakuia51e1452008-08-11 14:55:05 +0800736 result = acpi_power_get_state(device->handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (result)
738 goto end;
739
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400740 switch (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 case ACPI_POWER_RESOURCE_STATE_ON:
742 device->power.state = ACPI_STATE_D0;
743 break;
744 case ACPI_POWER_RESOURCE_STATE_OFF:
745 device->power.state = ACPI_STATE_D3;
746 break;
747 default:
748 device->power.state = ACPI_STATE_UNKNOWN;
749 break;
750 }
751
Len Brown4be44fc2005-08-05 00:44:28 -0400752 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400753 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400754
755 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (result)
757 kfree(resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400758
Patrick Mocheld550d982006-06-27 00:41:40 -0400759 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Len Brown4be44fc2005-08-05 00:44:28 -0400762static int acpi_power_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200764 struct acpi_power_resource *resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200766 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400767 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200769 resource = acpi_driver_data(device);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200770 if (!resource)
771 return -EINVAL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 kfree(resource);
774
Patrick Mocheld550d982006-06-27 00:41:40 -0400775 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
Rafael J. Wysockie579e2d2012-06-27 23:26:59 +0200778static int acpi_power_resume(struct device *dev)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500779{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400780 int result = 0, state;
Rafael J. Wysockie579e2d2012-06-27 23:26:59 +0200781 struct acpi_device *device;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200782 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500783
Rafael J. Wysockie579e2d2012-06-27 23:26:59 +0200784 if (!dev)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500785 return -EINVAL;
786
Rafael J. Wysockie579e2d2012-06-27 23:26:59 +0200787 device = to_acpi_device(dev);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700788 resource = acpi_driver_data(device);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200789 if (!resource)
790 return -EINVAL;
791
792 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500793
Zhao Yakuia51e1452008-08-11 14:55:05 +0800794 result = acpi_power_get_state(device->handle, &state);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500795 if (result)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200796 goto unlock;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500797
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200798 if (state == ACPI_POWER_RESOURCE_STATE_OFF && resource->ref_count)
799 result = __acpi_power_on(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500800
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200801 unlock:
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500802 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200803
804 return result;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500805}
806
Bjorn Helgaas44515372009-03-24 16:49:53 -0600807int __init acpi_power_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 INIT_LIST_HEAD(&acpi_power_resource_list);
Zhang Rui06af7eb2010-07-15 10:46:38 +0800810 return acpi_bus_register_driver(&acpi_power_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}