blob: 39b18f74a53994cf6750166ce947f7020c3dd924 [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>
Rafael J. Wysocki18a38702013-01-25 21:51:32 +010044#include <linux/sysfs.h>
Lv Zheng8b484632013-12-03 08:49:16 +080045#include <linux/acpi.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
Bjorn Helgaas89595b82008-11-07 16:57:45 -070049#define _COMPONENT ACPI_POWER_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050050ACPI_MODULE_NAME("power");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_POWER_CLASS "power_resource"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_POWER_DEVICE_NAME "Power Resource"
53#define ACPI_POWER_FILE_INFO "info"
54#define ACPI_POWER_FILE_STATUS "state"
55#define ACPI_POWER_RESOURCE_STATE_OFF 0x00
56#define ACPI_POWER_RESOURCE_STATE_ON 0x01
57#define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF
Zhao Yakuif5adfaa2008-08-11 14:57:50 +080058
Len Brown4be44fc2005-08-05 00:44:28 -040059struct acpi_power_resource {
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010060 struct acpi_device device;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +010061 struct list_head list_node;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010062 char *name;
Len Brown4be44fc2005-08-05 00:44:28 -040063 u32 system_level;
64 u32 order;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +020065 unsigned int ref_count;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +010066 bool wakeup_enabled;
Konstantin Karasyov0a613902007-02-16 01:47:06 -050067 struct mutex resource_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010070struct acpi_power_resource_entry {
71 struct list_head node;
72 struct acpi_power_resource *resource;
73};
74
Rafael J. Wysocki781d7372013-01-17 14:11:06 +010075static LIST_HEAD(acpi_power_resource_list);
76static DEFINE_MUTEX(power_resource_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* --------------------------------------------------------------------------
79 Power Resource Management
80 -------------------------------------------------------------------------- */
81
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010082static inline
83struct acpi_power_resource *to_power_resource(struct acpi_device *device)
84{
85 return container_of(device, struct acpi_power_resource, device);
86}
87
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010088static struct acpi_power_resource *acpi_power_get_context(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010090 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010092 if (acpi_bus_get_device(handle, &device))
93 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010095 return to_power_resource(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +010098static int acpi_power_resources_list_add(acpi_handle handle,
99 struct list_head *list)
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100100{
101 struct acpi_power_resource *resource = acpi_power_get_context(handle);
102 struct acpi_power_resource_entry *entry;
103
104 if (!resource || !list)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100105 return -EINVAL;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100106
107 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
108 if (!entry)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100109 return -ENOMEM;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100110
111 entry->resource = resource;
112 if (!list_empty(list)) {
113 struct acpi_power_resource_entry *e;
114
115 list_for_each_entry(e, list, node)
116 if (e->resource->order > resource->order) {
117 list_add_tail(&entry->node, &e->node);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100118 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100119 }
120 }
121 list_add_tail(&entry->node, list);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100122 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100123}
124
125void acpi_power_resources_list_free(struct list_head *list)
126{
127 struct acpi_power_resource_entry *entry, *e;
128
129 list_for_each_entry_safe(entry, e, list, node) {
130 list_del(&entry->node);
131 kfree(entry);
132 }
133}
134
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100135int acpi_extract_power_resources(union acpi_object *package, unsigned int start,
136 struct list_head *list)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100137{
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100138 unsigned int i;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100139 int err = 0;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100140
141 for (i = start; i < package->package.count; i++) {
142 union acpi_object *element = &package->package.elements[i];
143 acpi_handle rhandle;
144
145 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100146 err = -ENODATA;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100147 break;
148 }
149 rhandle = element->reference.handle;
150 if (!rhandle) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100151 err = -ENODEV;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100152 break;
153 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100154 err = acpi_add_power_resource(rhandle);
155 if (err)
156 break;
157
158 err = acpi_power_resources_list_add(rhandle, list);
159 if (err)
160 break;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100161 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100162 if (err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100163 acpi_power_resources_list_free(list);
164
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100165 return err;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100166}
167
Zhao Yakuia51e1452008-08-11 14:55:05 +0800168static int acpi_power_get_state(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Len Brown4be44fc2005-08-05 00:44:28 -0400170 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400171 unsigned long long sta = 0;
Lin Ming60a4ce72008-12-16 17:02:22 +0800172 char node_name[5];
173 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Zhao Yakuia51e1452008-08-11 14:55:05 +0800176 if (!handle || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400177 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Zhao Yakuia51e1452008-08-11 14:55:05 +0800179 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400181 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400183 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
184 ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Lin Ming60a4ce72008-12-16 17:02:22 +0800186 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Lin Ming60a4ce72008-12-16 17:02:22 +0800189 node_name,
Zhao Yakuib1b57fb2008-10-27 16:04:53 +0800190 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Patrick Mocheld550d982006-06-27 00:41:40 -0400192 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100195static int acpi_power_get_list_state(struct list_head *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100197 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100198 int cur_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400201 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 /* The state of the list is 'on' IFF all resources are 'on'. */
Arnd Bergmann53d25242017-04-19 19:47:04 +0200204 cur_state = 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100205 list_for_each_entry(entry, list, node) {
206 struct acpi_power_resource *resource = entry->resource;
207 acpi_handle handle = resource->device.handle;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100208 int result;
209
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100210 mutex_lock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100211 result = acpi_power_get_state(handle, &cur_state);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100212 mutex_unlock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100213 if (result)
214 return result;
215
216 if (cur_state != ACPI_POWER_RESOURCE_STATE_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 break;
218 }
219
220 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100221 cur_state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100223 *state = cur_state;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100224 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200227static int __acpi_power_on(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Len Brown4be44fc2005-08-05 00:44:28 -0400229 acpi_status status = AE_OK;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500230
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100231 status = acpi_evaluate_object(resource->device.handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400233 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200235 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400236 resource->name));
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200237
Patrick Mocheld550d982006-06-27 00:41:40 -0400238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100241static int acpi_power_on_unlocked(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100243 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200244
245 if (resource->ref_count++) {
246 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300247 "Power resource [%s] already on\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200248 resource->name));
249 } else {
250 result = __acpi_power_on(resource);
Rafael J. Wysocki41863fc2013-10-16 23:05:42 +0200251 if (result)
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100252 resource->ref_count--;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500253 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100254 return result;
255}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100257static int acpi_power_on(struct acpi_power_resource *resource)
258{
259 int result;
260
261 mutex_lock(&resource->resource_lock);
262 result = acpi_power_on_unlocked(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500263 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100264 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100267static int __acpi_power_off(struct acpi_power_resource *resource)
268{
269 acpi_status status;
270
271 status = acpi_evaluate_object(resource->device.handle, "_OFF",
272 NULL, NULL);
273 if (ACPI_FAILURE(status))
274 return -ENODEV;
275
276 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned off\n",
277 resource->name));
278 return 0;
279}
280
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100281static int acpi_power_off_unlocked(struct acpi_power_resource *resource)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200282{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100283 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200284
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200285 if (!resource->ref_count) {
286 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300287 "Power resource [%s] already off\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200288 resource->name));
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100289 return 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200290 }
291
292 if (--resource->ref_count) {
293 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
294 "Power resource [%s] still in use\n",
295 resource->name));
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100296 } else {
297 result = __acpi_power_off(resource);
298 if (result)
299 resource->ref_count++;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200300 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100301 return result;
302}
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200303
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100304static int acpi_power_off(struct acpi_power_resource *resource)
305{
306 int result;
307
308 mutex_lock(&resource->resource_lock);
309 result = acpi_power_off_unlocked(resource);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200310 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200311 return result;
312}
313
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100314static int acpi_power_off_list(struct list_head *list)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100315{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100316 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100317 int result = 0;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100318
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100319 list_for_each_entry_reverse(entry, list, node) {
320 result = acpi_power_off(entry->resource);
321 if (result)
322 goto err;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100323 }
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100324 return 0;
325
326 err:
327 list_for_each_entry_continue(entry, list, node)
328 acpi_power_on(entry->resource);
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100329
330 return result;
331}
332
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100333static int acpi_power_on_list(struct list_head *list)
334{
335 struct acpi_power_resource_entry *entry;
336 int result = 0;
337
338 list_for_each_entry(entry, list, node) {
339 result = acpi_power_on(entry->resource);
340 if (result)
341 goto err;
342 }
343 return 0;
344
345 err:
346 list_for_each_entry_continue_reverse(entry, list, node)
347 acpi_power_off(entry->resource);
348
349 return result;
350}
351
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100352static struct attribute *attrs[] = {
353 NULL,
354};
355
356static struct attribute_group attr_groups[] = {
357 [ACPI_STATE_D0] = {
358 .name = "power_resources_D0",
359 .attrs = attrs,
360 },
361 [ACPI_STATE_D1] = {
362 .name = "power_resources_D1",
363 .attrs = attrs,
364 },
365 [ACPI_STATE_D2] = {
366 .name = "power_resources_D2",
367 .attrs = attrs,
368 },
369 [ACPI_STATE_D3_HOT] = {
370 .name = "power_resources_D3hot",
371 .attrs = attrs,
372 },
373};
374
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200375static struct attribute_group wakeup_attr_group = {
376 .name = "power_resources_wakeup",
377 .attrs = attrs,
378};
379
380static void acpi_power_hide_list(struct acpi_device *adev,
381 struct list_head *resources,
382 struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100383{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100384 struct acpi_power_resource_entry *entry;
385
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200386 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100387 return;
388
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200389 list_for_each_entry_reverse(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100390 struct acpi_device *res_dev = &entry->resource->device;
391
392 sysfs_remove_link_from_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200393 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100394 dev_name(&res_dev->dev));
395 }
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200396 sysfs_remove_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100397}
398
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200399static void acpi_power_expose_list(struct acpi_device *adev,
400 struct list_head *resources,
401 struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100402{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100403 struct acpi_power_resource_entry *entry;
404 int ret;
405
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200406 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100407 return;
408
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200409 ret = sysfs_create_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100410 if (ret)
411 return;
412
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200413 list_for_each_entry(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100414 struct acpi_device *res_dev = &entry->resource->device;
415
416 ret = sysfs_add_link_to_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200417 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100418 &res_dev->dev.kobj,
419 dev_name(&res_dev->dev));
420 if (ret) {
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200421 acpi_power_hide_list(adev, resources, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100422 break;
423 }
424 }
425}
426
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200427static void acpi_power_expose_hide(struct acpi_device *adev,
428 struct list_head *resources,
429 struct attribute_group *attr_group,
430 bool expose)
431{
432 if (expose)
433 acpi_power_expose_list(adev, resources, attr_group);
434 else
435 acpi_power_hide_list(adev, resources, attr_group);
436}
437
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100438void acpi_power_add_remove_device(struct acpi_device *adev, bool add)
439{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100440 int state;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100441
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200442 if (adev->wakeup.flags.valid)
443 acpi_power_expose_hide(adev, &adev->wakeup.resources,
444 &wakeup_attr_group, add);
445
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100446 if (!adev->power.flags.power_resources)
447 return;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100448
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200449 for (state = ACPI_STATE_D0; state <= ACPI_STATE_D3_HOT; state++)
450 acpi_power_expose_hide(adev,
451 &adev->power.states[state].resources,
452 &attr_groups[state], add);
Lin Ming0090def2012-03-29 14:09:39 +0800453}
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100454
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100455int acpi_power_wakeup_list_init(struct list_head *list, int *system_level_p)
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100456{
457 struct acpi_power_resource_entry *entry;
458 int system_level = 5;
459
460 list_for_each_entry(entry, list, node) {
461 struct acpi_power_resource *resource = entry->resource;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100462 acpi_handle handle = resource->device.handle;
463 int result;
464 int state;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100465
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100466 mutex_lock(&resource->resource_lock);
467
468 result = acpi_power_get_state(handle, &state);
469 if (result) {
470 mutex_unlock(&resource->resource_lock);
471 return result;
472 }
473 if (state == ACPI_POWER_RESOURCE_STATE_ON) {
474 resource->ref_count++;
475 resource->wakeup_enabled = true;
476 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100477 if (system_level > resource->system_level)
478 system_level = resource->system_level;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100479
480 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100481 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100482 *system_level_p = system_level;
483 return 0;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100484}
485
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100486/* --------------------------------------------------------------------------
487 Device Power Management
488 -------------------------------------------------------------------------- */
Lin Ming0090def2012-03-29 14:09:39 +0800489
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200490/**
491 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
492 * ACPI 3.0) _PSW (Power State Wake)
493 * @dev: Device to handle.
494 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
495 * @sleep_state: Target sleep state of the system.
496 * @dev_state: Target power state of the device.
497 *
498 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
499 * State Wake) for the device, if present. On failure reset the device's
500 * wakeup.flags.valid flag.
501 *
502 * RETURN VALUE:
503 * 0 if either _DSW or _PSW has been successfully executed
504 * 0 if neither _DSW nor _PSW has been found
505 * -ENODEV if the execution of either _DSW or _PSW has failed
506 */
507int acpi_device_sleep_wake(struct acpi_device *dev,
508 int enable, int sleep_state, int dev_state)
509{
510 union acpi_object in_arg[3];
511 struct acpi_object_list arg_list = { 3, in_arg };
512 acpi_status status = AE_OK;
513
514 /*
515 * Try to execute _DSW first.
516 *
517 * Three agruments are needed for the _DSW object:
518 * Argument 0: enable/disable the wake capabilities
519 * Argument 1: target system state
520 * Argument 2: target device state
521 * When _DSW object is called to disable the wake capabilities, maybe
522 * the first argument is filled. The values of the other two agruments
523 * are meaningless.
524 */
525 in_arg[0].type = ACPI_TYPE_INTEGER;
526 in_arg[0].integer.value = enable;
527 in_arg[1].type = ACPI_TYPE_INTEGER;
528 in_arg[1].integer.value = sleep_state;
529 in_arg[2].type = ACPI_TYPE_INTEGER;
530 in_arg[2].integer.value = dev_state;
531 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
532 if (ACPI_SUCCESS(status)) {
533 return 0;
534 } else if (status != AE_NOT_FOUND) {
535 printk(KERN_ERR PREFIX "_DSW execution failed\n");
536 dev->wakeup.flags.valid = 0;
537 return -ENODEV;
538 }
539
540 /* Execute _PSW */
Jiang Liu0db98202013-06-29 00:24:39 +0800541 status = acpi_execute_simple_method(dev->handle, "_PSW", enable);
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200542 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
543 printk(KERN_ERR PREFIX "_PSW execution failed\n");
544 dev->wakeup.flags.valid = 0;
545 return -ENODEV;
546 }
547
548 return 0;
549}
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/*
552 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
553 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200554 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
555 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200557int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100559 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100560 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200563 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200565 mutex_lock(&acpi_device_lock);
566
567 if (dev->wakeup.prepare_count++)
568 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200569
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100570 list_for_each_entry(entry, &dev->wakeup.resources, node) {
571 struct acpi_power_resource *resource = entry->resource;
572
573 mutex_lock(&resource->resource_lock);
574
575 if (!resource->wakeup_enabled) {
576 err = acpi_power_on_unlocked(resource);
577 if (!err)
578 resource->wakeup_enabled = true;
579 }
580
581 mutex_unlock(&resource->resource_lock);
582
583 if (err) {
584 dev_err(&dev->dev,
585 "Cannot turn wakeup power resources on\n");
586 dev->wakeup.flags.valid = 0;
587 goto out;
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100590 /*
591 * Passing 3 as the third argument below means the device may be
592 * put into arbitrary power state afterward.
593 */
594 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200595 if (err)
596 dev->wakeup.prepare_count = 0;
597
598 out:
599 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200600 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
603/*
604 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200605 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
606 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * 2. Shutdown down the power resources
608 */
Len Brown4be44fc2005-08-05 00:44:28 -0400609int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100611 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100612 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200615 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200617 mutex_lock(&acpi_device_lock);
618
619 if (--dev->wakeup.prepare_count > 0)
620 goto out;
621
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200622 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200623 * Executing the code below even if prepare_count is already zero when
624 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200625 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200626 if (dev->wakeup.prepare_count < 0)
627 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200628
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200629 err = acpi_device_sleep_wake(dev, 0, 0, 0);
630 if (err)
631 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100633 list_for_each_entry(entry, &dev->wakeup.resources, node) {
634 struct acpi_power_resource *resource = entry->resource;
635
636 mutex_lock(&resource->resource_lock);
637
638 if (resource->wakeup_enabled) {
639 err = acpi_power_off_unlocked(resource);
640 if (!err)
641 resource->wakeup_enabled = false;
642 }
643
644 mutex_unlock(&resource->resource_lock);
645
646 if (err) {
647 dev_err(&dev->dev,
648 "Cannot turn wakeup power resources off\n");
649 dev->wakeup.flags.valid = 0;
650 break;
651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200654 out:
655 mutex_unlock(&acpi_device_lock);
656 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100659int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Len Brown4be44fc2005-08-05 00:44:28 -0400661 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400662 int list_state = 0;
663 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100665 if (!device || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400666 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 /*
669 * We know a device's inferred power state when all the resources
670 * required for a given D-state are 'on'.
671 */
Rafael J. Wysocki38c92ff2012-05-20 13:58:00 +0200672 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100673 struct list_head *list = &device->power.states[i].resources;
674
675 if (list_empty(list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 continue;
677
678 result = acpi_power_get_list_state(list, &list_state);
679 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400680 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100683 *state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400684 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686 }
687
Rafael J. Wysocki8ad928d2013-07-30 14:36:20 +0200688 *state = ACPI_STATE_D3_COLD;
Patrick Mocheld550d982006-06-27 00:41:40 -0400689 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Rafael J. Wysocki30d3df42010-11-25 00:06:55 +0100692int acpi_power_on_resources(struct acpi_device *device, int state)
693{
Rafael J. Wysocki87e753b2013-01-22 12:56:16 +0100694 if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3_HOT)
Rafael J. Wysocki30d3df42010-11-25 00:06:55 +0100695 return -EINVAL;
696
697 return acpi_power_on_list(&device->power.states[state].resources);
698}
699
Len Brown4be44fc2005-08-05 00:44:28 -0400700int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200702 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800704 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400705 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100707 if (device->power.state == state || !device->flags.power_manageable)
Rafael J. Wysocki212967c2010-11-25 00:02:36 +0100708 return 0;
709
Len Brown4be44fc2005-08-05 00:44:28 -0400710 if ((device->power.state < ACPI_STATE_D0)
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800711 || (device->power.state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400712 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /* TBD: Resources must be ordered. */
715
716 /*
717 * First we reference all power resources required in the target list
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100718 * (e.g. so the device doesn't lose power while transitioning). Then,
719 * we dereference all power resources used in the current list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 */
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200721 if (state < ACPI_STATE_D3_COLD)
722 result = acpi_power_on_list(
723 &device->power.states[state].resources);
724
725 if (!result && device->power.state < ACPI_STATE_D3_COLD)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100726 acpi_power_off_list(
727 &device->power.states[device->power.state].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100729 /* We shouldn't change the state unless the above operations succeed. */
730 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Patrick Mocheld550d982006-06-27 00:41:40 -0400732 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100735static void acpi_release_power_resource(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100737 struct acpi_device *device = to_acpi_device(dev);
738 struct acpi_power_resource *resource;
739
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100740 resource = container_of(device, struct acpi_power_resource, device);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100741
742 mutex_lock(&power_resource_list_lock);
743 list_del(&resource->list_node);
744 mutex_unlock(&power_resource_list_lock);
745
Toshi Kanic0af4172013-03-04 21:30:42 +0000746 acpi_free_pnp_ids(&device->pnp);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100747 kfree(resource);
748}
749
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100750static ssize_t acpi_power_in_use_show(struct device *dev,
751 struct device_attribute *attr,
752 char *buf) {
753 struct acpi_power_resource *resource;
754
755 resource = to_power_resource(to_acpi_device(dev));
756 return sprintf(buf, "%u\n", !!resource->ref_count);
757}
758static DEVICE_ATTR(resource_in_use, 0444, acpi_power_in_use_show, NULL);
759
760static void acpi_power_sysfs_remove(struct acpi_device *device)
761{
762 device_remove_file(&device->dev, &dev_attr_resource_in_use);
763}
764
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100765int acpi_add_power_resource(acpi_handle handle)
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100766{
767 struct acpi_power_resource *resource;
768 struct acpi_device *device = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400769 union acpi_object acpi_object;
770 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100771 acpi_status status;
772 int state, result = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100774 acpi_bus_get_device(handle, &device);
775 if (device)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100776 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100778 resource = kzalloc(sizeof(*resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (!resource)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100780 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100782 device = &resource->device;
783 acpi_init_device_object(device, handle, ACPI_BUS_TYPE_POWER,
784 ACPI_STA_DEFAULT);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500785 mutex_init(&resource->resource_lock);
Rafael J. Wysocki6ee22e9d2013-06-19 00:44:45 +0200786 INIT_LIST_HEAD(&resource->list_node);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100787 resource->name = device->pnp.bus_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
789 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Rafael J. Wysocki722c9292013-01-17 14:11:06 +0100790 device->power.state = ACPI_STATE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 /* Evalute the object to get the system level and resource order. */
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100793 status = acpi_evaluate_object(handle, NULL, NULL, &buffer);
794 if (ACPI_FAILURE(status))
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100795 goto err;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 resource->system_level = acpi_object.power_resource.system_level;
798 resource->order = acpi_object.power_resource.resource_order;
799
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100800 result = acpi_power_get_state(handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100802 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Len Brown4be44fc2005-08-05 00:44:28 -0400804 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400805 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400806
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100807 device->flags.match_driver = true;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100808 result = acpi_device_add(device, acpi_release_power_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100810 goto err;
Len Brown4be44fc2005-08-05 00:44:28 -0400811
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100812 if (!device_create_file(&device->dev, &dev_attr_resource_in_use))
813 device->remove = acpi_power_sysfs_remove;
814
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100815 mutex_lock(&power_resource_list_lock);
816 list_add(&resource->list_node, &acpi_power_resource_list);
817 mutex_unlock(&power_resource_list_lock);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100818 acpi_device_add_finalize(device);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100819 return 0;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100820
821 err:
822 acpi_release_power_resource(&device->dev);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100823 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100826#ifdef CONFIG_ACPI_SLEEP
827void acpi_resume_power_resources(void)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500828{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200829 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500830
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100831 mutex_lock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500832
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100833 list_for_each_entry(resource, &acpi_power_resource_list, list_node) {
834 int result, state;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200835
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100836 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500837
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100838 result = acpi_power_get_state(resource->device.handle, &state);
Lan Tianyud7d49012013-10-15 19:48:11 +0800839 if (result) {
840 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100841 continue;
Lan Tianyud7d49012013-10-15 19:48:11 +0800842 }
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100843
844 if (state == ACPI_POWER_RESOURCE_STATE_OFF
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100845 && resource->ref_count) {
846 dev_info(&resource->device.dev, "Turning ON\n");
847 __acpi_power_on(resource);
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100848 } else if (state == ACPI_POWER_RESOURCE_STATE_ON
849 && !resource->ref_count) {
850 dev_info(&resource->device.dev, "Turning OFF\n");
851 __acpi_power_off(resource);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100852 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500853
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100854 mutex_unlock(&resource->resource_lock);
855 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500856
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100857 mutex_unlock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500858}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200859#endif