blob: c2ad391d8041ecb6a354e2df07b9d813d817a744 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi_bus.h>
46#include <acpi/acpi_drivers.h>
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020047#include "sleep.h"
Lin Ming0090def2012-03-29 14:09:39 +080048#include "internal.h"
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020049
Len Browna192a952009-07-28 16:45:54 -040050#define PREFIX "ACPI: "
51
Bjorn Helgaas89595b82008-11-07 16:57:45 -070052#define _COMPONENT ACPI_POWER_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050053ACPI_MODULE_NAME("power");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_POWER_CLASS "power_resource"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define ACPI_POWER_DEVICE_NAME "Power Resource"
56#define ACPI_POWER_FILE_INFO "info"
57#define ACPI_POWER_FILE_STATUS "state"
58#define ACPI_POWER_RESOURCE_STATE_OFF 0x00
59#define ACPI_POWER_RESOURCE_STATE_ON 0x01
60#define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF
Zhao Yakuif5adfaa2008-08-11 14:57:50 +080061
Len Brown4be44fc2005-08-05 00:44:28 -040062struct acpi_power_resource {
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010063 struct acpi_device device;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +010064 struct list_head list_node;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010065 char *name;
Len Brown4be44fc2005-08-05 00:44:28 -040066 u32 system_level;
67 u32 order;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +020068 unsigned int ref_count;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +010069 bool wakeup_enabled;
Konstantin Karasyov0a613902007-02-16 01:47:06 -050070 struct mutex resource_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010073struct acpi_power_resource_entry {
74 struct list_head node;
75 struct acpi_power_resource *resource;
76};
77
Rafael J. Wysocki781d7372013-01-17 14:11:06 +010078static LIST_HEAD(acpi_power_resource_list);
79static DEFINE_MUTEX(power_resource_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* --------------------------------------------------------------------------
82 Power Resource Management
83 -------------------------------------------------------------------------- */
84
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010085static inline
86struct acpi_power_resource *to_power_resource(struct acpi_device *device)
87{
88 return container_of(device, struct acpi_power_resource, device);
89}
90
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010091static struct acpi_power_resource *acpi_power_get_context(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010093 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010095 if (acpi_bus_get_device(handle, &device))
96 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010098 return to_power_resource(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100101static int acpi_power_resources_list_add(acpi_handle handle,
102 struct list_head *list)
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100103{
104 struct acpi_power_resource *resource = acpi_power_get_context(handle);
105 struct acpi_power_resource_entry *entry;
106
107 if (!resource || !list)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100108 return -EINVAL;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100109
110 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
111 if (!entry)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100112 return -ENOMEM;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100113
114 entry->resource = resource;
115 if (!list_empty(list)) {
116 struct acpi_power_resource_entry *e;
117
118 list_for_each_entry(e, list, node)
119 if (e->resource->order > resource->order) {
120 list_add_tail(&entry->node, &e->node);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100121 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100122 }
123 }
124 list_add_tail(&entry->node, list);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100125 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100126}
127
128void acpi_power_resources_list_free(struct list_head *list)
129{
130 struct acpi_power_resource_entry *entry, *e;
131
132 list_for_each_entry_safe(entry, e, list, node) {
133 list_del(&entry->node);
134 kfree(entry);
135 }
136}
137
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100138int acpi_extract_power_resources(union acpi_object *package, unsigned int start,
139 struct list_head *list)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100140{
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100141 unsigned int i;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100142 int err = 0;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100143
144 for (i = start; i < package->package.count; i++) {
145 union acpi_object *element = &package->package.elements[i];
146 acpi_handle rhandle;
147
148 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100149 err = -ENODATA;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100150 break;
151 }
152 rhandle = element->reference.handle;
153 if (!rhandle) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100154 err = -ENODEV;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100155 break;
156 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100157 err = acpi_add_power_resource(rhandle);
158 if (err)
159 break;
160
161 err = acpi_power_resources_list_add(rhandle, list);
162 if (err)
163 break;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100164 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100165 if (err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100166 acpi_power_resources_list_free(list);
167
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100168 return err;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100169}
170
Zhao Yakuia51e1452008-08-11 14:55:05 +0800171static int acpi_power_get_state(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Len Brown4be44fc2005-08-05 00:44:28 -0400173 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400174 unsigned long long sta = 0;
Lin Ming60a4ce72008-12-16 17:02:22 +0800175 char node_name[5];
176 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Zhao Yakuia51e1452008-08-11 14:55:05 +0800179 if (!handle || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400180 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Zhao Yakuia51e1452008-08-11 14:55:05 +0800182 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400184 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400186 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
187 ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Lin Ming60a4ce72008-12-16 17:02:22 +0800189 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Lin Ming60a4ce72008-12-16 17:02:22 +0800192 node_name,
Zhao Yakuib1b57fb2008-10-27 16:04:53 +0800193 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Patrick Mocheld550d982006-06-27 00:41:40 -0400195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100198static int acpi_power_get_list_state(struct list_head *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100200 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100201 int cur_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400204 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* The state of the list is 'on' IFF all resources are 'on'. */
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100207 list_for_each_entry(entry, list, node) {
208 struct acpi_power_resource *resource = entry->resource;
209 acpi_handle handle = resource->device.handle;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100210 int result;
211
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100212 mutex_lock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100213 result = acpi_power_get_state(handle, &cur_state);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100214 mutex_unlock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100215 if (result)
216 return result;
217
218 if (cur_state != ACPI_POWER_RESOURCE_STATE_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 break;
220 }
221
222 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100223 cur_state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100225 *state = cur_state;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100226 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200229static int __acpi_power_on(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Len Brown4be44fc2005-08-05 00:44:28 -0400231 acpi_status status = AE_OK;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500232
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100233 status = acpi_evaluate_object(resource->device.handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400235 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200237 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400238 resource->name));
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200239
Patrick Mocheld550d982006-06-27 00:41:40 -0400240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100243static int acpi_power_on_unlocked(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100245 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200246
247 if (resource->ref_count++) {
248 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300249 "Power resource [%s] already on\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200250 resource->name));
251 } else {
252 result = __acpi_power_on(resource);
Rafael J. Wysocki41863fc2013-10-16 23:05:42 +0200253 if (result)
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100254 resource->ref_count--;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500255 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100256 return result;
257}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100259static int acpi_power_on(struct acpi_power_resource *resource)
260{
261 int result;
262
263 mutex_lock(&resource->resource_lock);
264 result = acpi_power_on_unlocked(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500265 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100266 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100269static int __acpi_power_off(struct acpi_power_resource *resource)
270{
271 acpi_status status;
272
273 status = acpi_evaluate_object(resource->device.handle, "_OFF",
274 NULL, NULL);
275 if (ACPI_FAILURE(status))
276 return -ENODEV;
277
278 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned off\n",
279 resource->name));
280 return 0;
281}
282
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100283static int acpi_power_off_unlocked(struct acpi_power_resource *resource)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200284{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100285 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200286
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200287 if (!resource->ref_count) {
288 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300289 "Power resource [%s] already off\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200290 resource->name));
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100291 return 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200292 }
293
294 if (--resource->ref_count) {
295 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
296 "Power resource [%s] still in use\n",
297 resource->name));
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100298 } else {
299 result = __acpi_power_off(resource);
300 if (result)
301 resource->ref_count++;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200302 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100303 return result;
304}
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200305
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100306static int acpi_power_off(struct acpi_power_resource *resource)
307{
308 int result;
309
310 mutex_lock(&resource->resource_lock);
311 result = acpi_power_off_unlocked(resource);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200312 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200313 return result;
314}
315
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100316static int acpi_power_off_list(struct list_head *list)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100317{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100318 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100319 int result = 0;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100320
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100321 list_for_each_entry_reverse(entry, list, node) {
322 result = acpi_power_off(entry->resource);
323 if (result)
324 goto err;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100325 }
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100326 return 0;
327
328 err:
329 list_for_each_entry_continue(entry, list, node)
330 acpi_power_on(entry->resource);
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100331
332 return result;
333}
334
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100335static int acpi_power_on_list(struct list_head *list)
336{
337 struct acpi_power_resource_entry *entry;
338 int result = 0;
339
340 list_for_each_entry(entry, list, node) {
341 result = acpi_power_on(entry->resource);
342 if (result)
343 goto err;
344 }
345 return 0;
346
347 err:
348 list_for_each_entry_continue_reverse(entry, list, node)
349 acpi_power_off(entry->resource);
350
351 return result;
352}
353
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100354static struct attribute *attrs[] = {
355 NULL,
356};
357
358static struct attribute_group attr_groups[] = {
359 [ACPI_STATE_D0] = {
360 .name = "power_resources_D0",
361 .attrs = attrs,
362 },
363 [ACPI_STATE_D1] = {
364 .name = "power_resources_D1",
365 .attrs = attrs,
366 },
367 [ACPI_STATE_D2] = {
368 .name = "power_resources_D2",
369 .attrs = attrs,
370 },
371 [ACPI_STATE_D3_HOT] = {
372 .name = "power_resources_D3hot",
373 .attrs = attrs,
374 },
375};
376
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200377static struct attribute_group wakeup_attr_group = {
378 .name = "power_resources_wakeup",
379 .attrs = attrs,
380};
381
382static void acpi_power_hide_list(struct acpi_device *adev,
383 struct list_head *resources,
384 struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100385{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100386 struct acpi_power_resource_entry *entry;
387
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200388 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100389 return;
390
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200391 list_for_each_entry_reverse(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100392 struct acpi_device *res_dev = &entry->resource->device;
393
394 sysfs_remove_link_from_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200395 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100396 dev_name(&res_dev->dev));
397 }
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200398 sysfs_remove_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100399}
400
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200401static void acpi_power_expose_list(struct acpi_device *adev,
402 struct list_head *resources,
403 struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100404{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100405 struct acpi_power_resource_entry *entry;
406 int ret;
407
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200408 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100409 return;
410
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200411 ret = sysfs_create_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100412 if (ret)
413 return;
414
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200415 list_for_each_entry(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100416 struct acpi_device *res_dev = &entry->resource->device;
417
418 ret = sysfs_add_link_to_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200419 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100420 &res_dev->dev.kobj,
421 dev_name(&res_dev->dev));
422 if (ret) {
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200423 acpi_power_hide_list(adev, resources, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100424 break;
425 }
426 }
427}
428
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200429static void acpi_power_expose_hide(struct acpi_device *adev,
430 struct list_head *resources,
431 struct attribute_group *attr_group,
432 bool expose)
433{
434 if (expose)
435 acpi_power_expose_list(adev, resources, attr_group);
436 else
437 acpi_power_hide_list(adev, resources, attr_group);
438}
439
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100440void acpi_power_add_remove_device(struct acpi_device *adev, bool add)
441{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100442 int state;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100443
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200444 if (adev->wakeup.flags.valid)
445 acpi_power_expose_hide(adev, &adev->wakeup.resources,
446 &wakeup_attr_group, add);
447
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100448 if (!adev->power.flags.power_resources)
449 return;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100450
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200451 for (state = ACPI_STATE_D0; state <= ACPI_STATE_D3_HOT; state++)
452 acpi_power_expose_hide(adev,
453 &adev->power.states[state].resources,
454 &attr_groups[state], add);
Lin Ming0090def2012-03-29 14:09:39 +0800455}
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100456
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100457int acpi_power_wakeup_list_init(struct list_head *list, int *system_level_p)
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100458{
459 struct acpi_power_resource_entry *entry;
460 int system_level = 5;
461
462 list_for_each_entry(entry, list, node) {
463 struct acpi_power_resource *resource = entry->resource;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100464 acpi_handle handle = resource->device.handle;
465 int result;
466 int state;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100467
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100468 mutex_lock(&resource->resource_lock);
469
470 result = acpi_power_get_state(handle, &state);
471 if (result) {
472 mutex_unlock(&resource->resource_lock);
473 return result;
474 }
475 if (state == ACPI_POWER_RESOURCE_STATE_ON) {
476 resource->ref_count++;
477 resource->wakeup_enabled = true;
478 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100479 if (system_level > resource->system_level)
480 system_level = resource->system_level;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100481
482 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100483 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100484 *system_level_p = system_level;
485 return 0;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100486}
487
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100488/* --------------------------------------------------------------------------
489 Device Power Management
490 -------------------------------------------------------------------------- */
Lin Ming0090def2012-03-29 14:09:39 +0800491
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200492/**
493 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
494 * ACPI 3.0) _PSW (Power State Wake)
495 * @dev: Device to handle.
496 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
497 * @sleep_state: Target sleep state of the system.
498 * @dev_state: Target power state of the device.
499 *
500 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
501 * State Wake) for the device, if present. On failure reset the device's
502 * wakeup.flags.valid flag.
503 *
504 * RETURN VALUE:
505 * 0 if either _DSW or _PSW has been successfully executed
506 * 0 if neither _DSW nor _PSW has been found
507 * -ENODEV if the execution of either _DSW or _PSW has failed
508 */
509int acpi_device_sleep_wake(struct acpi_device *dev,
510 int enable, int sleep_state, int dev_state)
511{
512 union acpi_object in_arg[3];
513 struct acpi_object_list arg_list = { 3, in_arg };
514 acpi_status status = AE_OK;
515
516 /*
517 * Try to execute _DSW first.
518 *
519 * Three agruments are needed for the _DSW object:
520 * Argument 0: enable/disable the wake capabilities
521 * Argument 1: target system state
522 * Argument 2: target device state
523 * When _DSW object is called to disable the wake capabilities, maybe
524 * the first argument is filled. The values of the other two agruments
525 * are meaningless.
526 */
527 in_arg[0].type = ACPI_TYPE_INTEGER;
528 in_arg[0].integer.value = enable;
529 in_arg[1].type = ACPI_TYPE_INTEGER;
530 in_arg[1].integer.value = sleep_state;
531 in_arg[2].type = ACPI_TYPE_INTEGER;
532 in_arg[2].integer.value = dev_state;
533 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
534 if (ACPI_SUCCESS(status)) {
535 return 0;
536 } else if (status != AE_NOT_FOUND) {
537 printk(KERN_ERR PREFIX "_DSW execution failed\n");
538 dev->wakeup.flags.valid = 0;
539 return -ENODEV;
540 }
541
542 /* Execute _PSW */
Jiang Liu0db98202013-06-29 00:24:39 +0800543 status = acpi_execute_simple_method(dev->handle, "_PSW", enable);
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200544 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
545 printk(KERN_ERR PREFIX "_PSW execution failed\n");
546 dev->wakeup.flags.valid = 0;
547 return -ENODEV;
548 }
549
550 return 0;
551}
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553/*
554 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
555 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200556 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
557 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200559int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100561 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100562 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200565 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200567 mutex_lock(&acpi_device_lock);
568
569 if (dev->wakeup.prepare_count++)
570 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200571
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100572 list_for_each_entry(entry, &dev->wakeup.resources, node) {
573 struct acpi_power_resource *resource = entry->resource;
574
575 mutex_lock(&resource->resource_lock);
576
577 if (!resource->wakeup_enabled) {
578 err = acpi_power_on_unlocked(resource);
579 if (!err)
580 resource->wakeup_enabled = true;
581 }
582
583 mutex_unlock(&resource->resource_lock);
584
585 if (err) {
586 dev_err(&dev->dev,
587 "Cannot turn wakeup power resources on\n");
588 dev->wakeup.flags.valid = 0;
589 goto out;
590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100592 /*
593 * Passing 3 as the third argument below means the device may be
594 * put into arbitrary power state afterward.
595 */
596 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200597 if (err)
598 dev->wakeup.prepare_count = 0;
599
600 out:
601 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200602 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
605/*
606 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200607 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
608 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 * 2. Shutdown down the power resources
610 */
Len Brown4be44fc2005-08-05 00:44:28 -0400611int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100613 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100614 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200617 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200619 mutex_lock(&acpi_device_lock);
620
621 if (--dev->wakeup.prepare_count > 0)
622 goto out;
623
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200624 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200625 * Executing the code below even if prepare_count is already zero when
626 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200627 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200628 if (dev->wakeup.prepare_count < 0)
629 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200630
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200631 err = acpi_device_sleep_wake(dev, 0, 0, 0);
632 if (err)
633 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100635 list_for_each_entry(entry, &dev->wakeup.resources, node) {
636 struct acpi_power_resource *resource = entry->resource;
637
638 mutex_lock(&resource->resource_lock);
639
640 if (resource->wakeup_enabled) {
641 err = acpi_power_off_unlocked(resource);
642 if (!err)
643 resource->wakeup_enabled = false;
644 }
645
646 mutex_unlock(&resource->resource_lock);
647
648 if (err) {
649 dev_err(&dev->dev,
650 "Cannot turn wakeup power resources off\n");
651 dev->wakeup.flags.valid = 0;
652 break;
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200656 out:
657 mutex_unlock(&acpi_device_lock);
658 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100661int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Len Brown4be44fc2005-08-05 00:44:28 -0400663 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400664 int list_state = 0;
665 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100667 if (!device || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400668 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 /*
671 * We know a device's inferred power state when all the resources
672 * required for a given D-state are 'on'.
673 */
Rafael J. Wysocki38c92ff2012-05-20 13:58:00 +0200674 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100675 struct list_head *list = &device->power.states[i].resources;
676
677 if (list_empty(list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 continue;
679
680 result = acpi_power_get_list_state(list, &list_state);
681 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400682 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100685 *state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400686 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688 }
689
Rafael J. Wysocki8ad928d2013-07-30 14:36:20 +0200690 *state = ACPI_STATE_D3_COLD;
Patrick Mocheld550d982006-06-27 00:41:40 -0400691 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Rafael J. Wysocki30d3df42010-11-25 00:06:55 +0100694int acpi_power_on_resources(struct acpi_device *device, int state)
695{
Rafael J. Wysocki87e753b2013-01-22 12:56:16 +0100696 if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3_HOT)
Rafael J. Wysocki30d3df42010-11-25 00:06:55 +0100697 return -EINVAL;
698
699 return acpi_power_on_list(&device->power.states[state].resources);
700}
701
Len Brown4be44fc2005-08-05 00:44:28 -0400702int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200704 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800706 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400707 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100709 if (device->power.state == state || !device->flags.power_manageable)
Rafael J. Wysocki212967c2010-11-25 00:02:36 +0100710 return 0;
711
Len Brown4be44fc2005-08-05 00:44:28 -0400712 if ((device->power.state < ACPI_STATE_D0)
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800713 || (device->power.state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400714 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 /* TBD: Resources must be ordered. */
717
718 /*
719 * First we reference all power resources required in the target list
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100720 * (e.g. so the device doesn't lose power while transitioning). Then,
721 * we dereference all power resources used in the current list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 */
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200723 if (state < ACPI_STATE_D3_COLD)
724 result = acpi_power_on_list(
725 &device->power.states[state].resources);
726
727 if (!result && device->power.state < ACPI_STATE_D3_COLD)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100728 acpi_power_off_list(
729 &device->power.states[device->power.state].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100731 /* We shouldn't change the state unless the above operations succeed. */
732 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Patrick Mocheld550d982006-06-27 00:41:40 -0400734 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100737static void acpi_release_power_resource(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100739 struct acpi_device *device = to_acpi_device(dev);
740 struct acpi_power_resource *resource;
741
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100742 resource = container_of(device, struct acpi_power_resource, device);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100743
744 mutex_lock(&power_resource_list_lock);
745 list_del(&resource->list_node);
746 mutex_unlock(&power_resource_list_lock);
747
Toshi Kanic0af4172013-03-04 21:30:42 +0000748 acpi_free_pnp_ids(&device->pnp);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100749 kfree(resource);
750}
751
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100752static ssize_t acpi_power_in_use_show(struct device *dev,
753 struct device_attribute *attr,
754 char *buf) {
755 struct acpi_power_resource *resource;
756
757 resource = to_power_resource(to_acpi_device(dev));
758 return sprintf(buf, "%u\n", !!resource->ref_count);
759}
760static DEVICE_ATTR(resource_in_use, 0444, acpi_power_in_use_show, NULL);
761
762static void acpi_power_sysfs_remove(struct acpi_device *device)
763{
764 device_remove_file(&device->dev, &dev_attr_resource_in_use);
765}
766
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100767int acpi_add_power_resource(acpi_handle handle)
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100768{
769 struct acpi_power_resource *resource;
770 struct acpi_device *device = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400771 union acpi_object acpi_object;
772 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100773 acpi_status status;
774 int state, result = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100776 acpi_bus_get_device(handle, &device);
777 if (device)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100778 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100780 resource = kzalloc(sizeof(*resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (!resource)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100782 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100784 device = &resource->device;
785 acpi_init_device_object(device, handle, ACPI_BUS_TYPE_POWER,
786 ACPI_STA_DEFAULT);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500787 mutex_init(&resource->resource_lock);
Rafael J. Wysocki6ee22e9d2013-06-19 00:44:45 +0200788 INIT_LIST_HEAD(&resource->list_node);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100789 resource->name = device->pnp.bus_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
791 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Rafael J. Wysocki722c9292013-01-17 14:11:06 +0100792 device->power.state = ACPI_STATE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 /* Evalute the object to get the system level and resource order. */
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100795 status = acpi_evaluate_object(handle, NULL, NULL, &buffer);
796 if (ACPI_FAILURE(status))
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100797 goto err;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 resource->system_level = acpi_object.power_resource.system_level;
800 resource->order = acpi_object.power_resource.resource_order;
801
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100802 result = acpi_power_get_state(handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100804 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Len Brown4be44fc2005-08-05 00:44:28 -0400806 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400807 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400808
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100809 device->flags.match_driver = true;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100810 result = acpi_device_add(device, acpi_release_power_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100812 goto err;
Len Brown4be44fc2005-08-05 00:44:28 -0400813
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100814 if (!device_create_file(&device->dev, &dev_attr_resource_in_use))
815 device->remove = acpi_power_sysfs_remove;
816
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100817 mutex_lock(&power_resource_list_lock);
818 list_add(&resource->list_node, &acpi_power_resource_list);
819 mutex_unlock(&power_resource_list_lock);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100820 acpi_device_add_finalize(device);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100821 return 0;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100822
823 err:
824 acpi_release_power_resource(&device->dev);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100825 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100828#ifdef CONFIG_ACPI_SLEEP
829void acpi_resume_power_resources(void)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500830{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200831 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500832
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100833 mutex_lock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500834
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100835 list_for_each_entry(resource, &acpi_power_resource_list, list_node) {
836 int result, state;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200837
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100838 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500839
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100840 result = acpi_power_get_state(resource->device.handle, &state);
Lan Tianyud7d49012013-10-15 19:48:11 +0800841 if (result) {
842 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100843 continue;
Lan Tianyud7d49012013-10-15 19:48:11 +0800844 }
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100845
846 if (state == ACPI_POWER_RESOURCE_STATE_OFF
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100847 && resource->ref_count) {
848 dev_info(&resource->device.dev, "Turning ON\n");
849 __acpi_power_on(resource);
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100850 } else if (state == ACPI_POWER_RESOURCE_STATE_ON
851 && !resource->ref_count) {
852 dev_info(&resource->device.dev, "Turning OFF\n");
853 __acpi_power_off(resource);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100854 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500855
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100856 mutex_unlock(&resource->resource_lock);
857 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500858
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100859 mutex_unlock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500860}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200861#endif