blob: 4f4c348920866e0bc48c2578ad34e687a03111a4 [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
Hans de Goededff14f72018-12-30 18:25:00 +0100134static bool acpi_power_resource_is_dup(union acpi_object *package,
135 unsigned int start, unsigned int i)
136{
137 acpi_handle rhandle, dup;
138 unsigned int j;
139
140 /* The caller is expected to check the package element types */
141 rhandle = package->package.elements[i].reference.handle;
142 for (j = start; j < i; j++) {
143 dup = package->package.elements[j].reference.handle;
144 if (dup == rhandle)
145 return true;
146 }
147
148 return false;
149}
150
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100151int acpi_extract_power_resources(union acpi_object *package, unsigned int start,
152 struct list_head *list)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100153{
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100154 unsigned int i;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100155 int err = 0;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100156
157 for (i = start; i < package->package.count; i++) {
158 union acpi_object *element = &package->package.elements[i];
159 acpi_handle rhandle;
160
161 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100162 err = -ENODATA;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100163 break;
164 }
165 rhandle = element->reference.handle;
166 if (!rhandle) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100167 err = -ENODEV;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100168 break;
169 }
Hans de Goededff14f72018-12-30 18:25:00 +0100170
171 /* Some ACPI tables contain duplicate power resource references */
172 if (acpi_power_resource_is_dup(package, start, i))
173 continue;
174
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100175 err = acpi_add_power_resource(rhandle);
176 if (err)
177 break;
178
179 err = acpi_power_resources_list_add(rhandle, list);
180 if (err)
181 break;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100182 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100183 if (err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100184 acpi_power_resources_list_free(list);
185
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100186 return err;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100187}
188
Zhao Yakuia51e1452008-08-11 14:55:05 +0800189static int acpi_power_get_state(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Len Brown4be44fc2005-08-05 00:44:28 -0400191 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400192 unsigned long long sta = 0;
Lin Ming60a4ce72008-12-16 17:02:22 +0800193 char node_name[5];
194 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Zhao Yakuia51e1452008-08-11 14:55:05 +0800197 if (!handle || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400198 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Zhao Yakuia51e1452008-08-11 14:55:05 +0800200 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400202 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400204 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
205 ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Lin Ming60a4ce72008-12-16 17:02:22 +0800207 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Lin Ming60a4ce72008-12-16 17:02:22 +0800210 node_name,
Zhao Yakuib1b57fb2008-10-27 16:04:53 +0800211 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Patrick Mocheld550d982006-06-27 00:41:40 -0400213 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100216static int acpi_power_get_list_state(struct list_head *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100218 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100219 int cur_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400222 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 /* The state of the list is 'on' IFF all resources are 'on'. */
Arnd Bergmann4420e5f2017-04-19 19:47:04 +0200225 cur_state = 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100226 list_for_each_entry(entry, list, node) {
227 struct acpi_power_resource *resource = entry->resource;
228 acpi_handle handle = resource->device.handle;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100229 int result;
230
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100231 mutex_lock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100232 result = acpi_power_get_state(handle, &cur_state);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100233 mutex_unlock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100234 if (result)
235 return result;
236
237 if (cur_state != ACPI_POWER_RESOURCE_STATE_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
239 }
240
241 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100242 cur_state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100244 *state = cur_state;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100245 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200248static int __acpi_power_on(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Len Brown4be44fc2005-08-05 00:44:28 -0400250 acpi_status status = AE_OK;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500251
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100252 status = acpi_evaluate_object(resource->device.handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400254 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200256 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400257 resource->name));
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200258
Patrick Mocheld550d982006-06-27 00:41:40 -0400259 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100262static int acpi_power_on_unlocked(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100264 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200265
266 if (resource->ref_count++) {
267 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300268 "Power resource [%s] already on\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200269 resource->name));
270 } else {
271 result = __acpi_power_on(resource);
Rafael J. Wysocki41863fc2013-10-16 23:05:42 +0200272 if (result)
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100273 resource->ref_count--;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500274 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100275 return result;
276}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100278static int acpi_power_on(struct acpi_power_resource *resource)
279{
280 int result;
281
282 mutex_lock(&resource->resource_lock);
283 result = acpi_power_on_unlocked(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500284 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100285 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100288static int __acpi_power_off(struct acpi_power_resource *resource)
289{
290 acpi_status status;
291
292 status = acpi_evaluate_object(resource->device.handle, "_OFF",
293 NULL, NULL);
294 if (ACPI_FAILURE(status))
295 return -ENODEV;
296
297 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned off\n",
298 resource->name));
299 return 0;
300}
301
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100302static int acpi_power_off_unlocked(struct acpi_power_resource *resource)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200303{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100304 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200305
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200306 if (!resource->ref_count) {
307 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300308 "Power resource [%s] already off\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200309 resource->name));
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100310 return 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200311 }
312
313 if (--resource->ref_count) {
314 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
315 "Power resource [%s] still in use\n",
316 resource->name));
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100317 } else {
318 result = __acpi_power_off(resource);
319 if (result)
320 resource->ref_count++;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200321 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100322 return result;
323}
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200324
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100325static int acpi_power_off(struct acpi_power_resource *resource)
326{
327 int result;
328
329 mutex_lock(&resource->resource_lock);
330 result = acpi_power_off_unlocked(resource);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200331 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200332 return result;
333}
334
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100335static int acpi_power_off_list(struct list_head *list)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100336{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100337 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100338 int result = 0;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100339
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100340 list_for_each_entry_reverse(entry, list, node) {
341 result = acpi_power_off(entry->resource);
342 if (result)
343 goto err;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100344 }
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100345 return 0;
346
347 err:
348 list_for_each_entry_continue(entry, list, node)
349 acpi_power_on(entry->resource);
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100350
351 return result;
352}
353
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100354static int acpi_power_on_list(struct list_head *list)
355{
356 struct acpi_power_resource_entry *entry;
357 int result = 0;
358
359 list_for_each_entry(entry, list, node) {
360 result = acpi_power_on(entry->resource);
361 if (result)
362 goto err;
363 }
364 return 0;
365
366 err:
367 list_for_each_entry_continue_reverse(entry, list, node)
368 acpi_power_off(entry->resource);
369
370 return result;
371}
372
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100373static struct attribute *attrs[] = {
374 NULL,
375};
376
377static struct attribute_group attr_groups[] = {
378 [ACPI_STATE_D0] = {
379 .name = "power_resources_D0",
380 .attrs = attrs,
381 },
382 [ACPI_STATE_D1] = {
383 .name = "power_resources_D1",
384 .attrs = attrs,
385 },
386 [ACPI_STATE_D2] = {
387 .name = "power_resources_D2",
388 .attrs = attrs,
389 },
390 [ACPI_STATE_D3_HOT] = {
391 .name = "power_resources_D3hot",
392 .attrs = attrs,
393 },
394};
395
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200396static struct attribute_group wakeup_attr_group = {
397 .name = "power_resources_wakeup",
398 .attrs = attrs,
399};
400
401static void acpi_power_hide_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
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200407 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100408 return;
409
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200410 list_for_each_entry_reverse(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100411 struct acpi_device *res_dev = &entry->resource->device;
412
413 sysfs_remove_link_from_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200414 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100415 dev_name(&res_dev->dev));
416 }
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200417 sysfs_remove_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100418}
419
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200420static void acpi_power_expose_list(struct acpi_device *adev,
421 struct list_head *resources,
422 struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100423{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100424 struct acpi_power_resource_entry *entry;
425 int ret;
426
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200427 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100428 return;
429
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200430 ret = sysfs_create_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100431 if (ret)
432 return;
433
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200434 list_for_each_entry(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100435 struct acpi_device *res_dev = &entry->resource->device;
436
437 ret = sysfs_add_link_to_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200438 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100439 &res_dev->dev.kobj,
440 dev_name(&res_dev->dev));
441 if (ret) {
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200442 acpi_power_hide_list(adev, resources, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100443 break;
444 }
445 }
446}
447
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200448static void acpi_power_expose_hide(struct acpi_device *adev,
449 struct list_head *resources,
450 struct attribute_group *attr_group,
451 bool expose)
452{
453 if (expose)
454 acpi_power_expose_list(adev, resources, attr_group);
455 else
456 acpi_power_hide_list(adev, resources, attr_group);
457}
458
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100459void acpi_power_add_remove_device(struct acpi_device *adev, bool add)
460{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100461 int state;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100462
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200463 if (adev->wakeup.flags.valid)
464 acpi_power_expose_hide(adev, &adev->wakeup.resources,
465 &wakeup_attr_group, add);
466
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100467 if (!adev->power.flags.power_resources)
468 return;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100469
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200470 for (state = ACPI_STATE_D0; state <= ACPI_STATE_D3_HOT; state++)
471 acpi_power_expose_hide(adev,
472 &adev->power.states[state].resources,
473 &attr_groups[state], add);
Lin Ming0090def2012-03-29 14:09:39 +0800474}
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100475
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100476int acpi_power_wakeup_list_init(struct list_head *list, int *system_level_p)
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100477{
478 struct acpi_power_resource_entry *entry;
479 int system_level = 5;
480
481 list_for_each_entry(entry, list, node) {
482 struct acpi_power_resource *resource = entry->resource;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100483 acpi_handle handle = resource->device.handle;
484 int result;
485 int state;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100486
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100487 mutex_lock(&resource->resource_lock);
488
489 result = acpi_power_get_state(handle, &state);
490 if (result) {
491 mutex_unlock(&resource->resource_lock);
492 return result;
493 }
494 if (state == ACPI_POWER_RESOURCE_STATE_ON) {
495 resource->ref_count++;
496 resource->wakeup_enabled = true;
497 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100498 if (system_level > resource->system_level)
499 system_level = resource->system_level;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100500
501 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100502 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100503 *system_level_p = system_level;
504 return 0;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100505}
506
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100507/* --------------------------------------------------------------------------
508 Device Power Management
509 -------------------------------------------------------------------------- */
Lin Ming0090def2012-03-29 14:09:39 +0800510
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200511/**
512 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
513 * ACPI 3.0) _PSW (Power State Wake)
514 * @dev: Device to handle.
515 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
516 * @sleep_state: Target sleep state of the system.
517 * @dev_state: Target power state of the device.
518 *
519 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
520 * State Wake) for the device, if present. On failure reset the device's
521 * wakeup.flags.valid flag.
522 *
523 * RETURN VALUE:
524 * 0 if either _DSW or _PSW has been successfully executed
525 * 0 if neither _DSW nor _PSW has been found
526 * -ENODEV if the execution of either _DSW or _PSW has failed
527 */
528int acpi_device_sleep_wake(struct acpi_device *dev,
529 int enable, int sleep_state, int dev_state)
530{
531 union acpi_object in_arg[3];
532 struct acpi_object_list arg_list = { 3, in_arg };
533 acpi_status status = AE_OK;
534
535 /*
536 * Try to execute _DSW first.
537 *
538 * Three agruments are needed for the _DSW object:
539 * Argument 0: enable/disable the wake capabilities
540 * Argument 1: target system state
541 * Argument 2: target device state
542 * When _DSW object is called to disable the wake capabilities, maybe
543 * the first argument is filled. The values of the other two agruments
544 * are meaningless.
545 */
546 in_arg[0].type = ACPI_TYPE_INTEGER;
547 in_arg[0].integer.value = enable;
548 in_arg[1].type = ACPI_TYPE_INTEGER;
549 in_arg[1].integer.value = sleep_state;
550 in_arg[2].type = ACPI_TYPE_INTEGER;
551 in_arg[2].integer.value = dev_state;
552 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
553 if (ACPI_SUCCESS(status)) {
554 return 0;
555 } else if (status != AE_NOT_FOUND) {
556 printk(KERN_ERR PREFIX "_DSW execution failed\n");
557 dev->wakeup.flags.valid = 0;
558 return -ENODEV;
559 }
560
561 /* Execute _PSW */
Jiang Liu0db98202013-06-29 00:24:39 +0800562 status = acpi_execute_simple_method(dev->handle, "_PSW", enable);
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200563 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
564 printk(KERN_ERR PREFIX "_PSW execution failed\n");
565 dev->wakeup.flags.valid = 0;
566 return -ENODEV;
567 }
568
569 return 0;
570}
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572/*
573 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
574 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200575 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
576 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200578int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100580 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100581 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200584 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200586 mutex_lock(&acpi_device_lock);
587
588 if (dev->wakeup.prepare_count++)
589 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200590
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100591 list_for_each_entry(entry, &dev->wakeup.resources, node) {
592 struct acpi_power_resource *resource = entry->resource;
593
594 mutex_lock(&resource->resource_lock);
595
596 if (!resource->wakeup_enabled) {
597 err = acpi_power_on_unlocked(resource);
598 if (!err)
599 resource->wakeup_enabled = true;
600 }
601
602 mutex_unlock(&resource->resource_lock);
603
604 if (err) {
605 dev_err(&dev->dev,
606 "Cannot turn wakeup power resources on\n");
607 dev->wakeup.flags.valid = 0;
608 goto out;
609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100611 /*
612 * Passing 3 as the third argument below means the device may be
613 * put into arbitrary power state afterward.
614 */
615 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200616 if (err)
617 dev->wakeup.prepare_count = 0;
618
619 out:
620 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200621 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
624/*
625 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200626 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
627 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 * 2. Shutdown down the power resources
629 */
Len Brown4be44fc2005-08-05 00:44:28 -0400630int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100632 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100633 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200636 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200638 mutex_lock(&acpi_device_lock);
639
640 if (--dev->wakeup.prepare_count > 0)
641 goto out;
642
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200643 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200644 * Executing the code below even if prepare_count is already zero when
645 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200646 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200647 if (dev->wakeup.prepare_count < 0)
648 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200649
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200650 err = acpi_device_sleep_wake(dev, 0, 0, 0);
651 if (err)
652 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100654 list_for_each_entry(entry, &dev->wakeup.resources, node) {
655 struct acpi_power_resource *resource = entry->resource;
656
657 mutex_lock(&resource->resource_lock);
658
659 if (resource->wakeup_enabled) {
660 err = acpi_power_off_unlocked(resource);
661 if (!err)
662 resource->wakeup_enabled = false;
663 }
664
665 mutex_unlock(&resource->resource_lock);
666
667 if (err) {
668 dev_err(&dev->dev,
669 "Cannot turn wakeup power resources off\n");
670 dev->wakeup.flags.valid = 0;
671 break;
672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200675 out:
676 mutex_unlock(&acpi_device_lock);
677 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100680int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Len Brown4be44fc2005-08-05 00:44:28 -0400682 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400683 int list_state = 0;
684 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100686 if (!device || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400687 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 /*
690 * We know a device's inferred power state when all the resources
691 * required for a given D-state are 'on'.
692 */
Rafael J. Wysocki38c92ff2012-05-20 13:58:00 +0200693 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100694 struct list_head *list = &device->power.states[i].resources;
695
696 if (list_empty(list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 continue;
698
699 result = acpi_power_get_list_state(list, &list_state);
700 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400701 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100704 *state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400705 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707 }
708
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200709 *state = device->power.states[ACPI_STATE_D3_COLD].flags.valid ?
710 ACPI_STATE_D3_COLD : ACPI_STATE_D3_HOT;
Patrick Mocheld550d982006-06-27 00:41:40 -0400711 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Rafael J. Wysocki30d3df42010-11-25 00:06:55 +0100714int acpi_power_on_resources(struct acpi_device *device, int state)
715{
Rafael J. Wysocki87e753b2013-01-22 12:56:16 +0100716 if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3_HOT)
Rafael J. Wysocki30d3df42010-11-25 00:06:55 +0100717 return -EINVAL;
718
719 return acpi_power_on_list(&device->power.states[state].resources);
720}
721
Len Brown4be44fc2005-08-05 00:44:28 -0400722int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200724 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800726 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400727 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100729 if (device->power.state == state || !device->flags.power_manageable)
Rafael J. Wysocki212967c2010-11-25 00:02:36 +0100730 return 0;
731
Len Brown4be44fc2005-08-05 00:44:28 -0400732 if ((device->power.state < ACPI_STATE_D0)
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800733 || (device->power.state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400734 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 /*
737 * First we reference all power resources required in the target list
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100738 * (e.g. so the device doesn't lose power while transitioning). Then,
739 * we dereference all power resources used in the current list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 */
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200741 if (state < ACPI_STATE_D3_COLD)
742 result = acpi_power_on_list(
743 &device->power.states[state].resources);
744
745 if (!result && device->power.state < ACPI_STATE_D3_COLD)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100746 acpi_power_off_list(
747 &device->power.states[device->power.state].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100749 /* We shouldn't change the state unless the above operations succeed. */
750 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Patrick Mocheld550d982006-06-27 00:41:40 -0400752 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100755static void acpi_release_power_resource(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100757 struct acpi_device *device = to_acpi_device(dev);
758 struct acpi_power_resource *resource;
759
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100760 resource = container_of(device, struct acpi_power_resource, device);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100761
762 mutex_lock(&power_resource_list_lock);
763 list_del(&resource->list_node);
764 mutex_unlock(&power_resource_list_lock);
765
Toshi Kanic0af4172013-03-04 21:30:42 +0000766 acpi_free_pnp_ids(&device->pnp);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100767 kfree(resource);
768}
769
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100770static ssize_t acpi_power_in_use_show(struct device *dev,
771 struct device_attribute *attr,
772 char *buf) {
773 struct acpi_power_resource *resource;
774
775 resource = to_power_resource(to_acpi_device(dev));
776 return sprintf(buf, "%u\n", !!resource->ref_count);
777}
778static DEVICE_ATTR(resource_in_use, 0444, acpi_power_in_use_show, NULL);
779
780static void acpi_power_sysfs_remove(struct acpi_device *device)
781{
782 device_remove_file(&device->dev, &dev_attr_resource_in_use);
783}
784
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200785static void acpi_power_add_resource_to_list(struct acpi_power_resource *resource)
786{
787 mutex_lock(&power_resource_list_lock);
788
789 if (!list_empty(&acpi_power_resource_list)) {
790 struct acpi_power_resource *r;
791
792 list_for_each_entry(r, &acpi_power_resource_list, list_node)
793 if (r->order > resource->order) {
794 list_add_tail(&resource->list_node, &r->list_node);
795 goto out;
796 }
797 }
798 list_add_tail(&resource->list_node, &acpi_power_resource_list);
799
800 out:
801 mutex_unlock(&power_resource_list_lock);
802}
803
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100804int acpi_add_power_resource(acpi_handle handle)
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100805{
806 struct acpi_power_resource *resource;
807 struct acpi_device *device = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400808 union acpi_object acpi_object;
809 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100810 acpi_status status;
811 int state, result = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100813 acpi_bus_get_device(handle, &device);
814 if (device)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100815 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100817 resource = kzalloc(sizeof(*resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (!resource)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100819 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100821 device = &resource->device;
822 acpi_init_device_object(device, handle, ACPI_BUS_TYPE_POWER,
823 ACPI_STA_DEFAULT);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500824 mutex_init(&resource->resource_lock);
Rafael J. Wysocki6ee22e9d2013-06-19 00:44:45 +0200825 INIT_LIST_HEAD(&resource->list_node);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100826 resource->name = device->pnp.bus_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
828 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Rafael J. Wysocki722c9292013-01-17 14:11:06 +0100829 device->power.state = ACPI_STATE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 /* Evalute the object to get the system level and resource order. */
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100832 status = acpi_evaluate_object(handle, NULL, NULL, &buffer);
833 if (ACPI_FAILURE(status))
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100834 goto err;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 resource->system_level = acpi_object.power_resource.system_level;
837 resource->order = acpi_object.power_resource.resource_order;
838
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100839 result = acpi_power_get_state(handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100841 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Len Brown4be44fc2005-08-05 00:44:28 -0400843 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400844 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400845
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100846 device->flags.match_driver = true;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100847 result = acpi_device_add(device, acpi_release_power_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100849 goto err;
Len Brown4be44fc2005-08-05 00:44:28 -0400850
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100851 if (!device_create_file(&device->dev, &dev_attr_resource_in_use))
852 device->remove = acpi_power_sysfs_remove;
853
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200854 acpi_power_add_resource_to_list(resource);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100855 acpi_device_add_finalize(device);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100856 return 0;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100857
858 err:
859 acpi_release_power_resource(&device->dev);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100860 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100863#ifdef CONFIG_ACPI_SLEEP
864void acpi_resume_power_resources(void)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500865{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200866 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500867
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100868 mutex_lock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500869
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100870 list_for_each_entry(resource, &acpi_power_resource_list, list_node) {
871 int result, state;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200872
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100873 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500874
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100875 result = acpi_power_get_state(resource->device.handle, &state);
Lan Tianyud7d49012013-10-15 19:48:11 +0800876 if (result) {
877 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100878 continue;
Lan Tianyud7d49012013-10-15 19:48:11 +0800879 }
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100880
881 if (state == ACPI_POWER_RESOURCE_STATE_OFF
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100882 && resource->ref_count) {
883 dev_info(&resource->device.dev, "Turning ON\n");
884 __acpi_power_on(resource);
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200885 }
886
887 mutex_unlock(&resource->resource_lock);
888 }
Hans de Goedea9b90d82017-04-30 22:54:16 +0200889
890 mutex_unlock(&power_resource_list_lock);
891}
892
893void acpi_turn_off_unused_power_resources(void)
894{
895 struct acpi_power_resource *resource;
896
897 mutex_lock(&power_resource_list_lock);
898
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200899 list_for_each_entry_reverse(resource, &acpi_power_resource_list, list_node) {
900 int result, state;
901
902 mutex_lock(&resource->resource_lock);
903
904 result = acpi_power_get_state(resource->device.handle, &state);
905 if (result) {
906 mutex_unlock(&resource->resource_lock);
907 continue;
908 }
909
910 if (state == ACPI_POWER_RESOURCE_STATE_ON
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100911 && !resource->ref_count) {
912 dev_info(&resource->device.dev, "Turning OFF\n");
913 __acpi_power_off(resource);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100914 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500915
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100916 mutex_unlock(&resource->resource_lock);
917 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500918
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100919 mutex_unlock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500920}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200921#endif