blob: fcd4ce6f78d5d387080343d96738c3b7275d0324 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Rafael J. Wysockiaa57aca2015-07-16 02:01:28 +02002 * drivers/acpi/power.c - ACPI Power Resources management.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Rafael J. Wysockiaa57aca2015-07-16 02:01:28 +02004 * Copyright (C) 2001 - 2015 Intel Corp.
5 * Author: Andy Grover <andrew.grover@intel.com>
6 * Author: Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22 */
23
24/*
25 * ACPI power-managed devices may be controlled in two ways:
26 * 1. via "Device Specific (D-State) Control"
27 * 2. via "Power Resource Control".
Rafael J. Wysockiaa57aca2015-07-16 02:01:28 +020028 * The code below deals with ACPI Power Resources control.
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 *
Rafael J. Wysockiaa57aca2015-07-16 02:01:28 +020030 * An ACPI "power resource object" represents a software controllable power
31 * plane, clock plane, or other resource depended on by a device.
32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * A device may rely on multiple power resources, and a power resource
34 * may be shared by multiple devices.
35 */
36
37#include <linux/kernel.h>
38#include <linux/module.h>
39#include <linux/init.h>
40#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Lin Ming0090def2012-03-29 14:09:39 +080042#include <linux/pm_runtime.h>
Rafael J. Wysocki18a38702013-01-25 21:51:32 +010043#include <linux/sysfs.h>
Lv Zheng8b484632013-12-03 08:49:16 +080044#include <linux/acpi.h>
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020045#include "sleep.h"
Lin Ming0090def2012-03-29 14:09:39 +080046#include "internal.h"
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020047
Bjorn Helgaas89595b82008-11-07 16:57:45 -070048#define _COMPONENT ACPI_POWER_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050049ACPI_MODULE_NAME("power");
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_POWER_CLASS "power_resource"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_POWER_DEVICE_NAME "Power Resource"
52#define ACPI_POWER_FILE_INFO "info"
53#define ACPI_POWER_FILE_STATUS "state"
54#define ACPI_POWER_RESOURCE_STATE_OFF 0x00
55#define ACPI_POWER_RESOURCE_STATE_ON 0x01
56#define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF
Zhao Yakuif5adfaa2008-08-11 14:57:50 +080057
Len Brown4be44fc2005-08-05 00:44:28 -040058struct acpi_power_resource {
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010059 struct acpi_device device;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +010060 struct list_head list_node;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010061 char *name;
Len Brown4be44fc2005-08-05 00:44:28 -040062 u32 system_level;
63 u32 order;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +020064 unsigned int ref_count;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +010065 bool wakeup_enabled;
Konstantin Karasyov0a613902007-02-16 01:47:06 -050066 struct mutex resource_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010069struct acpi_power_resource_entry {
70 struct list_head node;
71 struct acpi_power_resource *resource;
72};
73
Rafael J. Wysocki781d7372013-01-17 14:11:06 +010074static LIST_HEAD(acpi_power_resource_list);
75static DEFINE_MUTEX(power_resource_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* --------------------------------------------------------------------------
78 Power Resource Management
79 -------------------------------------------------------------------------- */
80
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010081static inline
82struct acpi_power_resource *to_power_resource(struct acpi_device *device)
83{
84 return container_of(device, struct acpi_power_resource, device);
85}
86
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010087static struct acpi_power_resource *acpi_power_get_context(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010089 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010091 if (acpi_bus_get_device(handle, &device))
92 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010094 return to_power_resource(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +010097static int acpi_power_resources_list_add(acpi_handle handle,
98 struct list_head *list)
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010099{
100 struct acpi_power_resource *resource = acpi_power_get_context(handle);
101 struct acpi_power_resource_entry *entry;
102
103 if (!resource || !list)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100104 return -EINVAL;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100105
106 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
107 if (!entry)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100108 return -ENOMEM;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100109
110 entry->resource = resource;
111 if (!list_empty(list)) {
112 struct acpi_power_resource_entry *e;
113
114 list_for_each_entry(e, list, node)
115 if (e->resource->order > resource->order) {
116 list_add_tail(&entry->node, &e->node);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100117 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100118 }
119 }
120 list_add_tail(&entry->node, list);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100121 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100122}
123
124void acpi_power_resources_list_free(struct list_head *list)
125{
126 struct acpi_power_resource_entry *entry, *e;
127
128 list_for_each_entry_safe(entry, e, list, node) {
129 list_del(&entry->node);
130 kfree(entry);
131 }
132}
133
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100134int acpi_extract_power_resources(union acpi_object *package, unsigned int start,
135 struct list_head *list)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100136{
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100137 unsigned int i;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100138 int err = 0;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100139
140 for (i = start; i < package->package.count; i++) {
141 union acpi_object *element = &package->package.elements[i];
142 acpi_handle rhandle;
143
144 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100145 err = -ENODATA;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100146 break;
147 }
148 rhandle = element->reference.handle;
149 if (!rhandle) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100150 err = -ENODEV;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100151 break;
152 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100153 err = acpi_add_power_resource(rhandle);
154 if (err)
155 break;
156
157 err = acpi_power_resources_list_add(rhandle, list);
158 if (err)
159 break;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100160 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100161 if (err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100162 acpi_power_resources_list_free(list);
163
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100164 return err;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100165}
166
Zhao Yakuia51e1452008-08-11 14:55:05 +0800167static int acpi_power_get_state(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Len Brown4be44fc2005-08-05 00:44:28 -0400169 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400170 unsigned long long sta = 0;
Lin Ming60a4ce72008-12-16 17:02:22 +0800171 char node_name[5];
172 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Zhao Yakuia51e1452008-08-11 14:55:05 +0800175 if (!handle || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400176 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Zhao Yakuia51e1452008-08-11 14:55:05 +0800178 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400180 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400182 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
183 ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Lin Ming60a4ce72008-12-16 17:02:22 +0800185 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Lin Ming60a4ce72008-12-16 17:02:22 +0800188 node_name,
Zhao Yakuib1b57fb2008-10-27 16:04:53 +0800189 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Patrick Mocheld550d982006-06-27 00:41:40 -0400191 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100194static int acpi_power_get_list_state(struct list_head *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100196 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100197 int cur_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400200 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 /* The state of the list is 'on' IFF all resources are 'on'. */
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100203 list_for_each_entry(entry, list, node) {
204 struct acpi_power_resource *resource = entry->resource;
205 acpi_handle handle = resource->device.handle;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100206 int result;
207
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100208 mutex_lock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100209 result = acpi_power_get_state(handle, &cur_state);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100210 mutex_unlock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100211 if (result)
212 return result;
213
214 if (cur_state != ACPI_POWER_RESOURCE_STATE_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 break;
216 }
217
218 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100219 cur_state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100221 *state = cur_state;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100222 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200225static int __acpi_power_on(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Len Brown4be44fc2005-08-05 00:44:28 -0400227 acpi_status status = AE_OK;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500228
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100229 status = acpi_evaluate_object(resource->device.handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400231 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200233 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400234 resource->name));
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200235
Patrick Mocheld550d982006-06-27 00:41:40 -0400236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100239static int acpi_power_on_unlocked(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100241 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200242
243 if (resource->ref_count++) {
244 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300245 "Power resource [%s] already on\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200246 resource->name));
247 } else {
248 result = __acpi_power_on(resource);
Rafael J. Wysocki41863fc2013-10-16 23:05:42 +0200249 if (result)
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100250 resource->ref_count--;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500251 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100252 return result;
253}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100255static int acpi_power_on(struct acpi_power_resource *resource)
256{
257 int result;
258
259 mutex_lock(&resource->resource_lock);
260 result = acpi_power_on_unlocked(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500261 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100262 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100265static int __acpi_power_off(struct acpi_power_resource *resource)
266{
267 acpi_status status;
268
269 status = acpi_evaluate_object(resource->device.handle, "_OFF",
270 NULL, NULL);
271 if (ACPI_FAILURE(status))
272 return -ENODEV;
273
274 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned off\n",
275 resource->name));
276 return 0;
277}
278
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100279static int acpi_power_off_unlocked(struct acpi_power_resource *resource)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200280{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100281 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200282
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200283 if (!resource->ref_count) {
284 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300285 "Power resource [%s] already off\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200286 resource->name));
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100287 return 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200288 }
289
290 if (--resource->ref_count) {
291 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
292 "Power resource [%s] still in use\n",
293 resource->name));
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100294 } else {
295 result = __acpi_power_off(resource);
296 if (result)
297 resource->ref_count++;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200298 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100299 return result;
300}
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200301
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100302static int acpi_power_off(struct acpi_power_resource *resource)
303{
304 int result;
305
306 mutex_lock(&resource->resource_lock);
307 result = acpi_power_off_unlocked(resource);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200308 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200309 return result;
310}
311
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100312static int acpi_power_off_list(struct list_head *list)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100313{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100314 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100315 int result = 0;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100316
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100317 list_for_each_entry_reverse(entry, list, node) {
318 result = acpi_power_off(entry->resource);
319 if (result)
320 goto err;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100321 }
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100322 return 0;
323
324 err:
325 list_for_each_entry_continue(entry, list, node)
326 acpi_power_on(entry->resource);
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100327
328 return result;
329}
330
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100331static int acpi_power_on_list(struct list_head *list)
332{
333 struct acpi_power_resource_entry *entry;
334 int result = 0;
335
336 list_for_each_entry(entry, list, node) {
337 result = acpi_power_on(entry->resource);
338 if (result)
339 goto err;
340 }
341 return 0;
342
343 err:
344 list_for_each_entry_continue_reverse(entry, list, node)
345 acpi_power_off(entry->resource);
346
347 return result;
348}
349
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100350static struct attribute *attrs[] = {
351 NULL,
352};
353
354static struct attribute_group attr_groups[] = {
355 [ACPI_STATE_D0] = {
356 .name = "power_resources_D0",
357 .attrs = attrs,
358 },
359 [ACPI_STATE_D1] = {
360 .name = "power_resources_D1",
361 .attrs = attrs,
362 },
363 [ACPI_STATE_D2] = {
364 .name = "power_resources_D2",
365 .attrs = attrs,
366 },
367 [ACPI_STATE_D3_HOT] = {
368 .name = "power_resources_D3hot",
369 .attrs = attrs,
370 },
371};
372
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200373static struct attribute_group wakeup_attr_group = {
374 .name = "power_resources_wakeup",
375 .attrs = attrs,
376};
377
378static void acpi_power_hide_list(struct acpi_device *adev,
379 struct list_head *resources,
380 struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100381{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100382 struct acpi_power_resource_entry *entry;
383
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200384 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100385 return;
386
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200387 list_for_each_entry_reverse(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100388 struct acpi_device *res_dev = &entry->resource->device;
389
390 sysfs_remove_link_from_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200391 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100392 dev_name(&res_dev->dev));
393 }
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200394 sysfs_remove_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100395}
396
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200397static void acpi_power_expose_list(struct acpi_device *adev,
398 struct list_head *resources,
399 struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100400{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100401 struct acpi_power_resource_entry *entry;
402 int ret;
403
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200404 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100405 return;
406
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200407 ret = sysfs_create_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100408 if (ret)
409 return;
410
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200411 list_for_each_entry(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100412 struct acpi_device *res_dev = &entry->resource->device;
413
414 ret = sysfs_add_link_to_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200415 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100416 &res_dev->dev.kobj,
417 dev_name(&res_dev->dev));
418 if (ret) {
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200419 acpi_power_hide_list(adev, resources, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100420 break;
421 }
422 }
423}
424
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200425static void acpi_power_expose_hide(struct acpi_device *adev,
426 struct list_head *resources,
427 struct attribute_group *attr_group,
428 bool expose)
429{
430 if (expose)
431 acpi_power_expose_list(adev, resources, attr_group);
432 else
433 acpi_power_hide_list(adev, resources, attr_group);
434}
435
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100436void acpi_power_add_remove_device(struct acpi_device *adev, bool add)
437{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100438 int state;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100439
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200440 if (adev->wakeup.flags.valid)
441 acpi_power_expose_hide(adev, &adev->wakeup.resources,
442 &wakeup_attr_group, add);
443
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100444 if (!adev->power.flags.power_resources)
445 return;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100446
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200447 for (state = ACPI_STATE_D0; state <= ACPI_STATE_D3_HOT; state++)
448 acpi_power_expose_hide(adev,
449 &adev->power.states[state].resources,
450 &attr_groups[state], add);
Lin Ming0090def2012-03-29 14:09:39 +0800451}
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100452
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100453int acpi_power_wakeup_list_init(struct list_head *list, int *system_level_p)
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100454{
455 struct acpi_power_resource_entry *entry;
456 int system_level = 5;
457
458 list_for_each_entry(entry, list, node) {
459 struct acpi_power_resource *resource = entry->resource;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100460 acpi_handle handle = resource->device.handle;
461 int result;
462 int state;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100463
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100464 mutex_lock(&resource->resource_lock);
465
466 result = acpi_power_get_state(handle, &state);
467 if (result) {
468 mutex_unlock(&resource->resource_lock);
469 return result;
470 }
471 if (state == ACPI_POWER_RESOURCE_STATE_ON) {
472 resource->ref_count++;
473 resource->wakeup_enabled = true;
474 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100475 if (system_level > resource->system_level)
476 system_level = resource->system_level;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100477
478 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100479 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100480 *system_level_p = system_level;
481 return 0;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100482}
483
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100484/* --------------------------------------------------------------------------
485 Device Power Management
486 -------------------------------------------------------------------------- */
Lin Ming0090def2012-03-29 14:09:39 +0800487
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200488/**
489 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
490 * ACPI 3.0) _PSW (Power State Wake)
491 * @dev: Device to handle.
492 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
493 * @sleep_state: Target sleep state of the system.
494 * @dev_state: Target power state of the device.
495 *
496 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
497 * State Wake) for the device, if present. On failure reset the device's
498 * wakeup.flags.valid flag.
499 *
500 * RETURN VALUE:
501 * 0 if either _DSW or _PSW has been successfully executed
502 * 0 if neither _DSW nor _PSW has been found
503 * -ENODEV if the execution of either _DSW or _PSW has failed
504 */
505int acpi_device_sleep_wake(struct acpi_device *dev,
506 int enable, int sleep_state, int dev_state)
507{
508 union acpi_object in_arg[3];
509 struct acpi_object_list arg_list = { 3, in_arg };
510 acpi_status status = AE_OK;
511
512 /*
513 * Try to execute _DSW first.
514 *
515 * Three agruments are needed for the _DSW object:
516 * Argument 0: enable/disable the wake capabilities
517 * Argument 1: target system state
518 * Argument 2: target device state
519 * When _DSW object is called to disable the wake capabilities, maybe
520 * the first argument is filled. The values of the other two agruments
521 * are meaningless.
522 */
523 in_arg[0].type = ACPI_TYPE_INTEGER;
524 in_arg[0].integer.value = enable;
525 in_arg[1].type = ACPI_TYPE_INTEGER;
526 in_arg[1].integer.value = sleep_state;
527 in_arg[2].type = ACPI_TYPE_INTEGER;
528 in_arg[2].integer.value = dev_state;
529 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
530 if (ACPI_SUCCESS(status)) {
531 return 0;
532 } else if (status != AE_NOT_FOUND) {
533 printk(KERN_ERR PREFIX "_DSW execution failed\n");
534 dev->wakeup.flags.valid = 0;
535 return -ENODEV;
536 }
537
538 /* Execute _PSW */
Jiang Liu0db98202013-06-29 00:24:39 +0800539 status = acpi_execute_simple_method(dev->handle, "_PSW", enable);
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200540 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
541 printk(KERN_ERR PREFIX "_PSW execution failed\n");
542 dev->wakeup.flags.valid = 0;
543 return -ENODEV;
544 }
545
546 return 0;
547}
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/*
550 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
551 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200552 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
553 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200555int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100557 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100558 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200561 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200563 mutex_lock(&acpi_device_lock);
564
565 if (dev->wakeup.prepare_count++)
566 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200567
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100568 list_for_each_entry(entry, &dev->wakeup.resources, node) {
569 struct acpi_power_resource *resource = entry->resource;
570
571 mutex_lock(&resource->resource_lock);
572
573 if (!resource->wakeup_enabled) {
574 err = acpi_power_on_unlocked(resource);
575 if (!err)
576 resource->wakeup_enabled = true;
577 }
578
579 mutex_unlock(&resource->resource_lock);
580
581 if (err) {
582 dev_err(&dev->dev,
583 "Cannot turn wakeup power resources on\n");
584 dev->wakeup.flags.valid = 0;
585 goto out;
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100588 /*
589 * Passing 3 as the third argument below means the device may be
590 * put into arbitrary power state afterward.
591 */
592 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200593 if (err)
594 dev->wakeup.prepare_count = 0;
595
596 out:
597 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200598 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601/*
602 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200603 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
604 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 * 2. Shutdown down the power resources
606 */
Len Brown4be44fc2005-08-05 00:44:28 -0400607int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100609 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100610 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200613 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200615 mutex_lock(&acpi_device_lock);
616
617 if (--dev->wakeup.prepare_count > 0)
618 goto out;
619
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200620 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200621 * Executing the code below even if prepare_count is already zero when
622 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200623 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200624 if (dev->wakeup.prepare_count < 0)
625 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200626
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200627 err = acpi_device_sleep_wake(dev, 0, 0, 0);
628 if (err)
629 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100631 list_for_each_entry(entry, &dev->wakeup.resources, node) {
632 struct acpi_power_resource *resource = entry->resource;
633
634 mutex_lock(&resource->resource_lock);
635
636 if (resource->wakeup_enabled) {
637 err = acpi_power_off_unlocked(resource);
638 if (!err)
639 resource->wakeup_enabled = false;
640 }
641
642 mutex_unlock(&resource->resource_lock);
643
644 if (err) {
645 dev_err(&dev->dev,
646 "Cannot turn wakeup power resources off\n");
647 dev->wakeup.flags.valid = 0;
648 break;
649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200652 out:
653 mutex_unlock(&acpi_device_lock);
654 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100657int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Len Brown4be44fc2005-08-05 00:44:28 -0400659 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400660 int list_state = 0;
661 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100663 if (!device || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400664 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /*
667 * We know a device's inferred power state when all the resources
668 * required for a given D-state are 'on'.
669 */
Rafael J. Wysocki38c92ff2012-05-20 13:58:00 +0200670 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100671 struct list_head *list = &device->power.states[i].resources;
672
673 if (list_empty(list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 continue;
675
676 result = acpi_power_get_list_state(list, &list_state);
677 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400678 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100681 *state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684 }
685
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200686 *state = device->power.states[ACPI_STATE_D3_COLD].flags.valid ?
687 ACPI_STATE_D3_COLD : ACPI_STATE_D3_HOT;
Patrick Mocheld550d982006-06-27 00:41:40 -0400688 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
Rafael J. Wysocki30d3df42010-11-25 00:06:55 +0100691int acpi_power_on_resources(struct acpi_device *device, int state)
692{
Rafael J. Wysocki87e753b2013-01-22 12:56:16 +0100693 if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3_HOT)
Rafael J. Wysocki30d3df42010-11-25 00:06:55 +0100694 return -EINVAL;
695
696 return acpi_power_on_list(&device->power.states[state].resources);
697}
698
Len Brown4be44fc2005-08-05 00:44:28 -0400699int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200701 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800703 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400704 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100706 if (device->power.state == state || !device->flags.power_manageable)
Rafael J. Wysocki212967c2010-11-25 00:02:36 +0100707 return 0;
708
Len Brown4be44fc2005-08-05 00:44:28 -0400709 if ((device->power.state < ACPI_STATE_D0)
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800710 || (device->power.state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400711 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /*
714 * First we reference all power resources required in the target list
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100715 * (e.g. so the device doesn't lose power while transitioning). Then,
716 * we dereference all power resources used in the current list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 */
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200718 if (state < ACPI_STATE_D3_COLD)
719 result = acpi_power_on_list(
720 &device->power.states[state].resources);
721
722 if (!result && device->power.state < ACPI_STATE_D3_COLD)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100723 acpi_power_off_list(
724 &device->power.states[device->power.state].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100726 /* We shouldn't change the state unless the above operations succeed. */
727 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Patrick Mocheld550d982006-06-27 00:41:40 -0400729 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100732static void acpi_release_power_resource(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100734 struct acpi_device *device = to_acpi_device(dev);
735 struct acpi_power_resource *resource;
736
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100737 resource = container_of(device, struct acpi_power_resource, device);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100738
739 mutex_lock(&power_resource_list_lock);
740 list_del(&resource->list_node);
741 mutex_unlock(&power_resource_list_lock);
742
Toshi Kanic0af4172013-03-04 21:30:42 +0000743 acpi_free_pnp_ids(&device->pnp);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100744 kfree(resource);
745}
746
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100747static ssize_t acpi_power_in_use_show(struct device *dev,
748 struct device_attribute *attr,
749 char *buf) {
750 struct acpi_power_resource *resource;
751
752 resource = to_power_resource(to_acpi_device(dev));
753 return sprintf(buf, "%u\n", !!resource->ref_count);
754}
755static DEVICE_ATTR(resource_in_use, 0444, acpi_power_in_use_show, NULL);
756
757static void acpi_power_sysfs_remove(struct acpi_device *device)
758{
759 device_remove_file(&device->dev, &dev_attr_resource_in_use);
760}
761
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200762static void acpi_power_add_resource_to_list(struct acpi_power_resource *resource)
763{
764 mutex_lock(&power_resource_list_lock);
765
766 if (!list_empty(&acpi_power_resource_list)) {
767 struct acpi_power_resource *r;
768
769 list_for_each_entry(r, &acpi_power_resource_list, list_node)
770 if (r->order > resource->order) {
771 list_add_tail(&resource->list_node, &r->list_node);
772 goto out;
773 }
774 }
775 list_add_tail(&resource->list_node, &acpi_power_resource_list);
776
777 out:
778 mutex_unlock(&power_resource_list_lock);
779}
780
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100781int acpi_add_power_resource(acpi_handle handle)
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100782{
783 struct acpi_power_resource *resource;
784 struct acpi_device *device = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400785 union acpi_object acpi_object;
786 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100787 acpi_status status;
788 int state, result = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100790 acpi_bus_get_device(handle, &device);
791 if (device)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100792 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100794 resource = kzalloc(sizeof(*resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (!resource)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100796 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100798 device = &resource->device;
799 acpi_init_device_object(device, handle, ACPI_BUS_TYPE_POWER,
800 ACPI_STA_DEFAULT);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500801 mutex_init(&resource->resource_lock);
Rafael J. Wysocki6ee22e9d2013-06-19 00:44:45 +0200802 INIT_LIST_HEAD(&resource->list_node);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100803 resource->name = device->pnp.bus_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
805 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Rafael J. Wysocki722c9292013-01-17 14:11:06 +0100806 device->power.state = ACPI_STATE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /* Evalute the object to get the system level and resource order. */
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100809 status = acpi_evaluate_object(handle, NULL, NULL, &buffer);
810 if (ACPI_FAILURE(status))
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100811 goto err;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 resource->system_level = acpi_object.power_resource.system_level;
814 resource->order = acpi_object.power_resource.resource_order;
815
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100816 result = acpi_power_get_state(handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100818 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Len Brown4be44fc2005-08-05 00:44:28 -0400820 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400821 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400822
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100823 device->flags.match_driver = true;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100824 result = acpi_device_add(device, acpi_release_power_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100826 goto err;
Len Brown4be44fc2005-08-05 00:44:28 -0400827
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100828 if (!device_create_file(&device->dev, &dev_attr_resource_in_use))
829 device->remove = acpi_power_sysfs_remove;
830
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200831 acpi_power_add_resource_to_list(resource);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100832 acpi_device_add_finalize(device);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100833 return 0;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100834
835 err:
836 acpi_release_power_resource(&device->dev);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100837 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100840#ifdef CONFIG_ACPI_SLEEP
841void acpi_resume_power_resources(void)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500842{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200843 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500844
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100845 mutex_lock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500846
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100847 list_for_each_entry(resource, &acpi_power_resource_list, list_node) {
848 int result, state;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200849
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100850 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500851
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100852 result = acpi_power_get_state(resource->device.handle, &state);
Lan Tianyud7d49012013-10-15 19:48:11 +0800853 if (result) {
854 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100855 continue;
Lan Tianyud7d49012013-10-15 19:48:11 +0800856 }
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100857
858 if (state == ACPI_POWER_RESOURCE_STATE_OFF
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100859 && resource->ref_count) {
860 dev_info(&resource->device.dev, "Turning ON\n");
861 __acpi_power_on(resource);
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200862 }
863
864 mutex_unlock(&resource->resource_lock);
865 }
866 list_for_each_entry_reverse(resource, &acpi_power_resource_list, list_node) {
867 int result, state;
868
869 mutex_lock(&resource->resource_lock);
870
871 result = acpi_power_get_state(resource->device.handle, &state);
872 if (result) {
873 mutex_unlock(&resource->resource_lock);
874 continue;
875 }
876
877 if (state == ACPI_POWER_RESOURCE_STATE_ON
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100878 && !resource->ref_count) {
879 dev_info(&resource->device.dev, "Turning OFF\n");
880 __acpi_power_off(resource);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100881 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500882
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100883 mutex_unlock(&resource->resource_lock);
884 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500885
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100886 mutex_unlock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500887}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200888#endif