blob: 2adef535f15e55672116197b2e68fa4f6363fd15 [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);
Len Browne8363f32007-02-16 02:05:39 -050063static int acpi_power_resume(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Márton Némethc97adf92010-01-10 17:15:36 +010065static const struct acpi_device_id power_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020066 {ACPI_POWER_HID, 0},
67 {"", 0},
68};
69MODULE_DEVICE_TABLE(acpi, power_device_ids);
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static struct acpi_driver acpi_power_driver = {
Len Brownc2b6705b2007-02-12 23:33:40 -050072 .name = "power",
Len Brown4be44fc2005-08-05 00:44:28 -040073 .class = ACPI_POWER_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020074 .ids = power_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040075 .ops = {
76 .add = acpi_power_add,
77 .remove = acpi_power_remove,
Konstantin Karasyov0a613902007-02-16 01:47:06 -050078 .resume = acpi_power_resume,
Len Brown4be44fc2005-08-05 00:44:28 -040079 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Lin Ming0090def2012-03-29 14:09:39 +080082/*
83 * A power managed device
84 * A device may rely on multiple power resources.
85 * */
86struct acpi_power_managed_device {
87 struct device *dev; /* The physical device */
88 acpi_handle *handle;
89};
90
91struct acpi_power_resource_device {
92 struct acpi_power_managed_device *device;
93 struct acpi_power_resource_device *next;
94};
95
Len Brown4be44fc2005-08-05 00:44:28 -040096struct acpi_power_resource {
Patrick Mochel41598572006-05-19 16:54:40 -040097 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -040098 acpi_bus_id name;
99 u32 system_level;
100 u32 order;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200101 unsigned int ref_count;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500102 struct mutex resource_lock;
Lin Ming0090def2012-03-29 14:09:39 +0800103
104 /* List of devices relying on this power resource */
105 struct acpi_power_resource_device *devices;
Lin Ming2bafdfd2012-09-14 00:26:33 +0200106 struct mutex devices_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
Len Brown4be44fc2005-08-05 00:44:28 -0400109static struct list_head acpi_power_resource_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/* --------------------------------------------------------------------------
112 Power Resource Management
113 -------------------------------------------------------------------------- */
114
115static int
Len Brown4be44fc2005-08-05 00:44:28 -0400116acpi_power_get_context(acpi_handle handle,
117 struct acpi_power_resource **resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Len Brown4be44fc2005-08-05 00:44:28 -0400119 int result = 0;
120 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400124 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 result = acpi_bus_get_device(handle, &device);
127 if (result) {
Len Browncece9292006-06-26 23:04:31 -0400128 printk(KERN_WARNING PREFIX "Getting context [%p]\n", handle);
Patrick Mocheld550d982006-06-27 00:41:40 -0400129 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200132 *resource = acpi_driver_data(device);
Li Zefana815ab82008-04-18 13:27:29 -0700133 if (!*resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400134 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Patrick Mocheld550d982006-06-27 00:41:40 -0400136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Zhao Yakuia51e1452008-08-11 14:55:05 +0800139static int acpi_power_get_state(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Len Brown4be44fc2005-08-05 00:44:28 -0400141 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400142 unsigned long long sta = 0;
Lin Ming60a4ce72008-12-16 17:02:22 +0800143 char node_name[5];
144 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Zhao Yakuia51e1452008-08-11 14:55:05 +0800147 if (!handle || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400148 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Zhao Yakuia51e1452008-08-11 14:55:05 +0800150 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400152 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400154 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
155 ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Lin Ming60a4ce72008-12-16 17:02:22 +0800157 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Lin Ming60a4ce72008-12-16 17:02:22 +0800160 node_name,
Zhao Yakuib1b57fb2008-10-27 16:04:53 +0800161 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Patrick Mocheld550d982006-06-27 00:41:40 -0400163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Len Brown4be44fc2005-08-05 00:44:28 -0400166static int acpi_power_get_list_state(struct acpi_handle_list *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100168 int cur_state;
169 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400172 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 /* The state of the list is 'on' IFF all resources are 'on'. */
175
Len Brown4be44fc2005-08-05 00:44:28 -0400176 for (i = 0; i < list->count; i++) {
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100177 struct acpi_power_resource *resource;
178 acpi_handle handle = list->handles[i];
179 int result;
180
181 result = acpi_power_get_context(handle, &resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400183 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100185 mutex_lock(&resource->resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100187 result = acpi_power_get_state(handle, &cur_state);
188
189 mutex_unlock(&resource->resource_lock);
190
191 if (result)
192 return result;
193
194 if (cur_state != ACPI_POWER_RESOURCE_STATE_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 break;
196 }
197
198 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100199 cur_state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100201 *state = cur_state;
202
203 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Lin Ming0090def2012-03-29 14:09:39 +0800206/* Resume the device when all power resources in _PR0 are on */
207static void acpi_power_on_device(struct acpi_power_managed_device *device)
208{
209 struct acpi_device *acpi_dev;
210 acpi_handle handle = device->handle;
211 int state;
212
213 if (acpi_bus_get_device(handle, &acpi_dev))
214 return;
215
216 if(acpi_power_get_inferred_state(acpi_dev, &state))
217 return;
218
219 if (state == ACPI_STATE_D0 && pm_runtime_suspended(device->dev))
220 pm_request_resume(device->dev);
221}
222
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200223static int __acpi_power_on(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Len Brown4be44fc2005-08-05 00:44:28 -0400225 acpi_status status = AE_OK;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500226
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400227 status = acpi_evaluate_object(resource->device->handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400229 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 /* Update the power resource's _device_ power state */
Patrick Mochel41598572006-05-19 16:54:40 -0400232 resource->device->power.state = ACPI_STATE_D0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200234 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400235 resource->name));
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200236
Patrick Mocheld550d982006-06-27 00:41:40 -0400237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200240static int acpi_power_on(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Bjorn Helgaasbdf43bb2009-05-21 17:28:53 -0600242 int result = 0;
Lin Ming2bafdfd2012-09-14 00:26:33 +0200243 bool resume_device = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 struct acpi_power_resource *resource = NULL;
Lin Ming2bafdfd2012-09-14 00:26:33 +0200245 struct acpi_power_resource_device *device_list;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 result = acpi_power_get_context(handle, &resource);
248 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400249 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500251 mutex_lock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200252
253 if (resource->ref_count++) {
254 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
255 "Power resource [%s] already on",
256 resource->name));
257 } else {
258 result = __acpi_power_on(resource);
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100259 if (result)
260 resource->ref_count--;
Lin Ming2bafdfd2012-09-14 00:26:33 +0200261 else
262 resume_device = true;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500265 mutex_unlock(&resource->resource_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Lin Ming2bafdfd2012-09-14 00:26:33 +0200267 if (!resume_device)
268 return result;
269
270 mutex_lock(&resource->devices_lock);
271
272 device_list = resource->devices;
273 while (device_list) {
274 acpi_power_on_device(device_list->device);
275 device_list = device_list->next;
276 }
277
278 mutex_unlock(&resource->devices_lock);
279
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100280 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Rafael J. Wysocki36237fa2011-01-06 23:38:04 +0100283static int acpi_power_off(acpi_handle handle)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200284{
285 int result = 0;
286 acpi_status status = AE_OK;
287 struct acpi_power_resource *resource = NULL;
288
289 result = acpi_power_get_context(handle, &resource);
290 if (result)
291 return result;
292
293 mutex_lock(&resource->resource_lock);
294
295 if (!resource->ref_count) {
296 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
297 "Power resource [%s] already off",
298 resource->name));
299 goto unlock;
300 }
301
302 if (--resource->ref_count) {
303 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
304 "Power resource [%s] still in use\n",
305 resource->name));
306 goto unlock;
307 }
308
309 status = acpi_evaluate_object(resource->device->handle, "_OFF", NULL, NULL);
310 if (ACPI_FAILURE(status)) {
311 result = -ENODEV;
312 } else {
313 /* Update the power resource's _device_ power state */
314 resource->device->power.state = ACPI_STATE_D3;
315
316 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
317 "Power resource [%s] turned off\n",
318 resource->name));
319 }
320
321 unlock:
322 mutex_unlock(&resource->resource_lock);
323
324 return result;
325}
326
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100327static void __acpi_power_off_list(struct acpi_handle_list *list, int num_res)
328{
329 int i;
330
331 for (i = num_res - 1; i >= 0 ; i--)
Rafael J. Wysocki36237fa2011-01-06 23:38:04 +0100332 acpi_power_off(list->handles[i]);
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100333}
334
335static void acpi_power_off_list(struct acpi_handle_list *list)
336{
337 __acpi_power_off_list(list, list->count);
338}
339
340static int acpi_power_on_list(struct acpi_handle_list *list)
341{
342 int result = 0;
343 int i;
344
345 for (i = 0; i < list->count; i++) {
346 result = acpi_power_on(list->handles[i]);
347 if (result) {
348 __acpi_power_off_list(list, i);
349 break;
350 }
351 }
352
353 return result;
354}
355
Lin Ming0090def2012-03-29 14:09:39 +0800356static void __acpi_power_resource_unregister_device(struct device *dev,
357 acpi_handle res_handle)
358{
359 struct acpi_power_resource *resource = NULL;
360 struct acpi_power_resource_device *prev, *curr;
361
362 if (acpi_power_get_context(res_handle, &resource))
363 return;
364
Lin Ming2bafdfd2012-09-14 00:26:33 +0200365 mutex_lock(&resource->devices_lock);
Lin Ming0090def2012-03-29 14:09:39 +0800366 prev = NULL;
367 curr = resource->devices;
368 while (curr) {
369 if (curr->device->dev == dev) {
370 if (!prev)
371 resource->devices = curr->next;
372 else
373 prev->next = curr->next;
374
375 kfree(curr);
376 break;
377 }
378
379 prev = curr;
380 curr = curr->next;
381 }
Lin Ming2bafdfd2012-09-14 00:26:33 +0200382 mutex_unlock(&resource->devices_lock);
Lin Ming0090def2012-03-29 14:09:39 +0800383}
384
385/* Unlink dev from all power resources in _PR0 */
386void acpi_power_resource_unregister_device(struct device *dev, acpi_handle handle)
387{
388 struct acpi_device *acpi_dev;
389 struct acpi_handle_list *list;
390 int i;
391
392 if (!dev || !handle)
393 return;
394
395 if (acpi_bus_get_device(handle, &acpi_dev))
396 return;
397
398 list = &acpi_dev->power.states[ACPI_STATE_D0].resources;
399
400 for (i = 0; i < list->count; i++)
401 __acpi_power_resource_unregister_device(dev,
402 list->handles[i]);
403}
404
405static int __acpi_power_resource_register_device(
406 struct acpi_power_managed_device *powered_device, acpi_handle handle)
407{
408 struct acpi_power_resource *resource = NULL;
409 struct acpi_power_resource_device *power_resource_device;
410 int result;
411
412 result = acpi_power_get_context(handle, &resource);
413 if (result)
414 return result;
415
416 power_resource_device = kzalloc(
417 sizeof(*power_resource_device), GFP_KERNEL);
418 if (!power_resource_device)
419 return -ENOMEM;
420
421 power_resource_device->device = powered_device;
422
Lin Ming2bafdfd2012-09-14 00:26:33 +0200423 mutex_lock(&resource->devices_lock);
Lin Ming0090def2012-03-29 14:09:39 +0800424 power_resource_device->next = resource->devices;
425 resource->devices = power_resource_device;
Lin Ming2bafdfd2012-09-14 00:26:33 +0200426 mutex_unlock(&resource->devices_lock);
Lin Ming0090def2012-03-29 14:09:39 +0800427
428 return 0;
429}
430
431/* Link dev to all power resources in _PR0 */
432int acpi_power_resource_register_device(struct device *dev, acpi_handle handle)
433{
434 struct acpi_device *acpi_dev;
435 struct acpi_handle_list *list;
436 struct acpi_power_managed_device *powered_device;
437 int i, ret;
438
439 if (!dev || !handle)
440 return -ENODEV;
441
442 ret = acpi_bus_get_device(handle, &acpi_dev);
443 if (ret)
444 goto no_power_resource;
445
446 if (!acpi_dev->power.flags.power_resources)
447 goto no_power_resource;
448
449 powered_device = kzalloc(sizeof(*powered_device), GFP_KERNEL);
450 if (!powered_device)
451 return -ENOMEM;
452
453 powered_device->dev = dev;
454 powered_device->handle = handle;
455
456 list = &acpi_dev->power.states[ACPI_STATE_D0].resources;
457
458 for (i = 0; i < list->count; i++) {
459 ret = __acpi_power_resource_register_device(powered_device,
460 list->handles[i]);
461
462 if (ret) {
463 acpi_power_resource_unregister_device(dev, handle);
464 break;
465 }
466 }
467
468 return ret;
469
470no_power_resource:
Aaron Lu88898662012-09-14 20:54:44 +0200471 printk(KERN_DEBUG PREFIX "Invalid Power Resource to register!");
Lin Ming0090def2012-03-29 14:09:39 +0800472 return -ENODEV;
473}
474
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200475/**
476 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
477 * ACPI 3.0) _PSW (Power State Wake)
478 * @dev: Device to handle.
479 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
480 * @sleep_state: Target sleep state of the system.
481 * @dev_state: Target power state of the device.
482 *
483 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
484 * State Wake) for the device, if present. On failure reset the device's
485 * wakeup.flags.valid flag.
486 *
487 * RETURN VALUE:
488 * 0 if either _DSW or _PSW has been successfully executed
489 * 0 if neither _DSW nor _PSW has been found
490 * -ENODEV if the execution of either _DSW or _PSW has failed
491 */
492int acpi_device_sleep_wake(struct acpi_device *dev,
493 int enable, int sleep_state, int dev_state)
494{
495 union acpi_object in_arg[3];
496 struct acpi_object_list arg_list = { 3, in_arg };
497 acpi_status status = AE_OK;
498
499 /*
500 * Try to execute _DSW first.
501 *
502 * Three agruments are needed for the _DSW object:
503 * Argument 0: enable/disable the wake capabilities
504 * Argument 1: target system state
505 * Argument 2: target device state
506 * When _DSW object is called to disable the wake capabilities, maybe
507 * the first argument is filled. The values of the other two agruments
508 * are meaningless.
509 */
510 in_arg[0].type = ACPI_TYPE_INTEGER;
511 in_arg[0].integer.value = enable;
512 in_arg[1].type = ACPI_TYPE_INTEGER;
513 in_arg[1].integer.value = sleep_state;
514 in_arg[2].type = ACPI_TYPE_INTEGER;
515 in_arg[2].integer.value = dev_state;
516 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
517 if (ACPI_SUCCESS(status)) {
518 return 0;
519 } else if (status != AE_NOT_FOUND) {
520 printk(KERN_ERR PREFIX "_DSW execution failed\n");
521 dev->wakeup.flags.valid = 0;
522 return -ENODEV;
523 }
524
525 /* Execute _PSW */
526 arg_list.count = 1;
527 in_arg[0].integer.value = enable;
528 status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
529 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
530 printk(KERN_ERR PREFIX "_PSW execution failed\n");
531 dev->wakeup.flags.valid = 0;
532 return -ENODEV;
533 }
534
535 return 0;
536}
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538/*
539 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
540 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200541 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
542 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200544int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200546 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200549 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200551 mutex_lock(&acpi_device_lock);
552
553 if (dev->wakeup.prepare_count++)
554 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 /* Open power resource */
557 for (i = 0; i < dev->wakeup.resources.count; i++) {
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200558 int ret = acpi_power_on(dev->wakeup.resources.handles[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400560 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 dev->wakeup.flags.valid = 0;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200562 err = -ENODEV;
563 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565 }
566
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200567 /*
568 * Passing 3 as the third argument below means the device may be placed
569 * in arbitrary power state afterwards.
570 */
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200571 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200572
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200573 err_out:
574 if (err)
575 dev->wakeup.prepare_count = 0;
576
577 out:
578 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200579 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
582/*
583 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200584 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
585 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 * 2. Shutdown down the power resources
587 */
Len Brown4be44fc2005-08-05 00:44:28 -0400588int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200590 int i, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200593 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200595 mutex_lock(&acpi_device_lock);
596
597 if (--dev->wakeup.prepare_count > 0)
598 goto out;
599
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200600 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200601 * Executing the code below even if prepare_count is already zero when
602 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200603 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200604 if (dev->wakeup.prepare_count < 0)
605 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200606
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200607 err = acpi_device_sleep_wake(dev, 0, 0, 0);
608 if (err)
609 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 /* Close power resource */
612 for (i = 0; i < dev->wakeup.resources.count; i++) {
Rafael J. Wysocki36237fa2011-01-06 23:38:04 +0100613 int ret = acpi_power_off(dev->wakeup.resources.handles[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (ret) {
Len Brown64684632006-06-26 23:41:38 -0400615 printk(KERN_ERR PREFIX "Transition power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 dev->wakeup.flags.valid = 0;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200617 err = -ENODEV;
618 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620 }
621
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200622 out:
623 mutex_unlock(&acpi_device_lock);
624 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
627/* --------------------------------------------------------------------------
628 Device Power Management
629 -------------------------------------------------------------------------- */
630
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100631int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Len Brown4be44fc2005-08-05 00:44:28 -0400633 int result = 0;
634 struct acpi_handle_list *list = NULL;
635 int list_state = 0;
636 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100638 if (!device || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400639 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /*
642 * We know a device's inferred power state when all the resources
643 * required for a given D-state are 'on'.
644 */
Lin Ming1cc0c992012-04-23 09:03:49 +0800645 for (i = ACPI_STATE_D0; i < ACPI_STATE_D3_HOT; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 list = &device->power.states[i].resources;
647 if (list->count < 1)
648 continue;
649
650 result = acpi_power_get_list_state(list, &list_state);
651 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400652 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100655 *state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400656 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658 }
659
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100660 *state = ACPI_STATE_D3;
Patrick Mocheld550d982006-06-27 00:41:40 -0400661 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Rafael J. Wysocki30d3df42010-11-25 00:06:55 +0100664int acpi_power_on_resources(struct acpi_device *device, int state)
665{
666 if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3)
667 return -EINVAL;
668
669 return acpi_power_on_list(&device->power.states[state].resources);
670}
671
Len Brown4be44fc2005-08-05 00:44:28 -0400672int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200674 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800676 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400677 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Rafael J. Wysocki212967c2010-11-25 00:02:36 +0100679 if (device->power.state == state)
680 return 0;
681
Len Brown4be44fc2005-08-05 00:44:28 -0400682 if ((device->power.state < ACPI_STATE_D0)
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800683 || (device->power.state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400684 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /* TBD: Resources must be ordered. */
687
688 /*
689 * First we reference all power resources required in the target list
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100690 * (e.g. so the device doesn't lose power while transitioning). Then,
691 * we dereference all power resources used in the current list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 */
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200693 if (state < ACPI_STATE_D3_COLD)
694 result = acpi_power_on_list(
695 &device->power.states[state].resources);
696
697 if (!result && device->power.state < ACPI_STATE_D3_COLD)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100698 acpi_power_off_list(
699 &device->power.states[device->power.state].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100701 /* We shouldn't change the state unless the above operations succeed. */
702 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Patrick Mocheld550d982006-06-27 00:41:40 -0400704 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 Driver Interface
709 -------------------------------------------------------------------------- */
710
Len Brown4be44fc2005-08-05 00:44:28 -0400711static int acpi_power_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400713 int result = 0, state;
Len Brown4be44fc2005-08-05 00:44:28 -0400714 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct acpi_power_resource *resource = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400716 union acpi_object acpi_object;
717 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400721 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Burman Yan36bcbec2006-12-19 12:56:11 -0800723 resource = kzalloc(sizeof(struct acpi_power_resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400725 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Patrick Mochel41598572006-05-19 16:54:40 -0400727 resource->device = device;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500728 mutex_init(&resource->resource_lock);
Lin Ming2bafdfd2012-09-14 00:26:33 +0200729 mutex_init(&resource->devices_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 strcpy(resource->name, device->pnp.bus_id);
731 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
732 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700733 device->driver_data = resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 /* Evalute the object to get the system level and resource order. */
Patrick Mochel5fbc19e2006-05-19 16:54:43 -0400736 status = acpi_evaluate_object(device->handle, NULL, NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (ACPI_FAILURE(status)) {
738 result = -ENODEV;
739 goto end;
740 }
741 resource->system_level = acpi_object.power_resource.system_level;
742 resource->order = acpi_object.power_resource.resource_order;
743
Zhao Yakuia51e1452008-08-11 14:55:05 +0800744 result = acpi_power_get_state(device->handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (result)
746 goto end;
747
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400748 switch (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 case ACPI_POWER_RESOURCE_STATE_ON:
750 device->power.state = ACPI_STATE_D0;
751 break;
752 case ACPI_POWER_RESOURCE_STATE_OFF:
753 device->power.state = ACPI_STATE_D3;
754 break;
755 default:
756 device->power.state = ACPI_STATE_UNKNOWN;
757 break;
758 }
759
Len Brown4be44fc2005-08-05 00:44:28 -0400760 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400761 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400762
763 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 if (result)
765 kfree(resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400766
Patrick Mocheld550d982006-06-27 00:41:40 -0400767 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Len Brown4be44fc2005-08-05 00:44:28 -0400770static int acpi_power_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200772 struct acpi_power_resource *resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200774 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400775 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200777 resource = acpi_driver_data(device);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200778 if (!resource)
779 return -EINVAL;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 kfree(resource);
782
Patrick Mocheld550d982006-06-27 00:41:40 -0400783 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Len Browne8363f32007-02-16 02:05:39 -0500786static int acpi_power_resume(struct acpi_device *device)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500787{
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400788 int result = 0, state;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200789 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500790
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200791 if (!device)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500792 return -EINVAL;
793
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700794 resource = acpi_driver_data(device);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200795 if (!resource)
796 return -EINVAL;
797
798 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500799
Zhao Yakuia51e1452008-08-11 14:55:05 +0800800 result = acpi_power_get_state(device->handle, &state);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500801 if (result)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200802 goto unlock;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500803
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200804 if (state == ACPI_POWER_RESOURCE_STATE_OFF && resource->ref_count)
805 result = __acpi_power_on(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500806
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200807 unlock:
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500808 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200809
810 return result;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500811}
812
Bjorn Helgaas44515372009-03-24 16:49:53 -0600813int __init acpi_power_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 INIT_LIST_HEAD(&acpi_power_resource_list);
Zhang Rui06af7eb2010-07-15 10:46:38 +0800816 return acpi_bus_register_driver(&acpi_power_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}