blob: fe1e7bc91a5ea24009c541d0387d2f62d18ea7f7 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Rafael J. Wysockiaa57aca2015-07-16 02:01:28 +02003 * drivers/acpi/power.c - ACPI Power Resources management.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Rafael J. Wysockiaa57aca2015-07-16 02:01:28 +02005 * Copyright (C) 2001 - 2015 Intel Corp.
6 * Author: Andy Grover <andrew.grover@intel.com>
7 * Author: Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
8 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11/*
12 * ACPI power-managed devices may be controlled in two ways:
13 * 1. via "Device Specific (D-State) Control"
14 * 2. via "Power Resource Control".
Rafael J. Wysockiaa57aca2015-07-16 02:01:28 +020015 * The code below deals with ACPI Power Resources control.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
Rafael J. Wysockiaa57aca2015-07-16 02:01:28 +020017 * An ACPI "power resource object" represents a software controllable power
18 * plane, clock plane, or other resource depended on by a device.
19 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * A device may rely on multiple power resources, and a power resource
21 * may be shared by multiple devices.
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/init.h>
27#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Lin Ming0090def2012-03-29 14:09:39 +080029#include <linux/pm_runtime.h>
Rafael J. Wysocki18a38702013-01-25 21:51:32 +010030#include <linux/sysfs.h>
Lv Zheng8b484632013-12-03 08:49:16 +080031#include <linux/acpi.h>
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020032#include "sleep.h"
Lin Ming0090def2012-03-29 14:09:39 +080033#include "internal.h"
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020034
Bjorn Helgaas89595b82008-11-07 16:57:45 -070035#define _COMPONENT ACPI_POWER_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050036ACPI_MODULE_NAME("power");
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define ACPI_POWER_CLASS "power_resource"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define ACPI_POWER_DEVICE_NAME "Power Resource"
39#define ACPI_POWER_FILE_INFO "info"
40#define ACPI_POWER_FILE_STATUS "state"
41#define ACPI_POWER_RESOURCE_STATE_OFF 0x00
42#define ACPI_POWER_RESOURCE_STATE_ON 0x01
43#define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF
Zhao Yakuif5adfaa2008-08-11 14:57:50 +080044
Mika Westerberg45337712019-06-25 13:29:41 +030045struct acpi_power_dependent_device {
46 struct device *dev;
47 struct list_head node;
48};
49
Len Brown4be44fc2005-08-05 00:44:28 -040050struct acpi_power_resource {
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010051 struct acpi_device device;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +010052 struct list_head list_node;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010053 char *name;
Len Brown4be44fc2005-08-05 00:44:28 -040054 u32 system_level;
55 u32 order;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +020056 unsigned int ref_count;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +010057 bool wakeup_enabled;
Konstantin Karasyov0a613902007-02-16 01:47:06 -050058 struct mutex resource_lock;
Mika Westerberg45337712019-06-25 13:29:41 +030059 struct list_head dependents;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010062struct acpi_power_resource_entry {
63 struct list_head node;
64 struct acpi_power_resource *resource;
65};
66
Rafael J. Wysocki781d7372013-01-17 14:11:06 +010067static LIST_HEAD(acpi_power_resource_list);
68static DEFINE_MUTEX(power_resource_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* --------------------------------------------------------------------------
71 Power Resource Management
72 -------------------------------------------------------------------------- */
73
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010074static inline
75struct acpi_power_resource *to_power_resource(struct acpi_device *device)
76{
77 return container_of(device, struct acpi_power_resource, device);
78}
79
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010080static struct acpi_power_resource *acpi_power_get_context(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010082 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010084 if (acpi_bus_get_device(handle, &device))
85 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010087 return to_power_resource(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +010090static int acpi_power_resources_list_add(acpi_handle handle,
91 struct list_head *list)
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010092{
93 struct acpi_power_resource *resource = acpi_power_get_context(handle);
94 struct acpi_power_resource_entry *entry;
95
96 if (!resource || !list)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +010097 return -EINVAL;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010098
99 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
100 if (!entry)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100101 return -ENOMEM;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100102
103 entry->resource = resource;
104 if (!list_empty(list)) {
105 struct acpi_power_resource_entry *e;
106
107 list_for_each_entry(e, list, node)
108 if (e->resource->order > resource->order) {
109 list_add_tail(&entry->node, &e->node);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100110 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100111 }
112 }
113 list_add_tail(&entry->node, list);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100114 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100115}
116
117void acpi_power_resources_list_free(struct list_head *list)
118{
119 struct acpi_power_resource_entry *entry, *e;
120
121 list_for_each_entry_safe(entry, e, list, node) {
122 list_del(&entry->node);
123 kfree(entry);
124 }
125}
126
Hans de Goede7d7b4672018-12-30 18:25:00 +0100127static bool acpi_power_resource_is_dup(union acpi_object *package,
128 unsigned int start, unsigned int i)
129{
130 acpi_handle rhandle, dup;
131 unsigned int j;
132
133 /* The caller is expected to check the package element types */
134 rhandle = package->package.elements[i].reference.handle;
135 for (j = start; j < i; j++) {
136 dup = package->package.elements[j].reference.handle;
137 if (dup == rhandle)
138 return true;
139 }
140
141 return false;
142}
143
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100144int acpi_extract_power_resources(union acpi_object *package, unsigned int start,
145 struct list_head *list)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100146{
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100147 unsigned int i;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100148 int err = 0;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100149
150 for (i = start; i < package->package.count; i++) {
151 union acpi_object *element = &package->package.elements[i];
152 acpi_handle rhandle;
153
154 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100155 err = -ENODATA;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100156 break;
157 }
158 rhandle = element->reference.handle;
159 if (!rhandle) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100160 err = -ENODEV;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100161 break;
162 }
Hans de Goede7d7b4672018-12-30 18:25:00 +0100163
164 /* Some ACPI tables contain duplicate power resource references */
165 if (acpi_power_resource_is_dup(package, start, i))
166 continue;
167
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100168 err = acpi_add_power_resource(rhandle);
169 if (err)
170 break;
171
172 err = acpi_power_resources_list_add(rhandle, list);
173 if (err)
174 break;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100175 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100176 if (err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100177 acpi_power_resources_list_free(list);
178
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100179 return err;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100180}
181
Zhao Yakuia51e1452008-08-11 14:55:05 +0800182static int acpi_power_get_state(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Len Brown4be44fc2005-08-05 00:44:28 -0400184 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400185 unsigned long long sta = 0;
Lin Ming60a4ce72008-12-16 17:02:22 +0800186 char node_name[5];
187 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Zhao Yakuia51e1452008-08-11 14:55:05 +0800190 if (!handle || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400191 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Zhao Yakuia51e1452008-08-11 14:55:05 +0800193 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400195 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400197 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
198 ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Lin Ming60a4ce72008-12-16 17:02:22 +0800200 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Lin Ming60a4ce72008-12-16 17:02:22 +0800203 node_name,
Zhao Yakuib1b57fb2008-10-27 16:04:53 +0800204 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Patrick Mocheld550d982006-06-27 00:41:40 -0400206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100209static int acpi_power_get_list_state(struct list_head *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100211 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100212 int cur_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400215 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* The state of the list is 'on' IFF all resources are 'on'. */
Arnd Bergmannfe8c4702017-04-19 19:47:04 +0200218 cur_state = 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100219 list_for_each_entry(entry, list, node) {
220 struct acpi_power_resource *resource = entry->resource;
221 acpi_handle handle = resource->device.handle;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100222 int result;
223
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100224 mutex_lock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100225 result = acpi_power_get_state(handle, &cur_state);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100226 mutex_unlock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100227 if (result)
228 return result;
229
230 if (cur_state != ACPI_POWER_RESOURCE_STATE_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break;
232 }
233
234 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100235 cur_state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100237 *state = cur_state;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Mika Westerberg45337712019-06-25 13:29:41 +0300241static int
242acpi_power_resource_add_dependent(struct acpi_power_resource *resource,
243 struct device *dev)
244{
245 struct acpi_power_dependent_device *dep;
246 int ret = 0;
247
248 mutex_lock(&resource->resource_lock);
249 list_for_each_entry(dep, &resource->dependents, node) {
250 /* Only add it once */
251 if (dep->dev == dev)
252 goto unlock;
253 }
254
255 dep = kzalloc(sizeof(*dep), GFP_KERNEL);
256 if (!dep) {
257 ret = -ENOMEM;
258 goto unlock;
259 }
260
261 dep->dev = dev;
262 list_add_tail(&dep->node, &resource->dependents);
263 dev_dbg(dev, "added power dependency to [%s]\n", resource->name);
264
265unlock:
266 mutex_unlock(&resource->resource_lock);
267 return ret;
268}
269
270static void
271acpi_power_resource_remove_dependent(struct acpi_power_resource *resource,
272 struct device *dev)
273{
274 struct acpi_power_dependent_device *dep;
275
276 mutex_lock(&resource->resource_lock);
277 list_for_each_entry(dep, &resource->dependents, node) {
278 if (dep->dev == dev) {
279 list_del(&dep->node);
280 kfree(dep);
281 dev_dbg(dev, "removed power dependency to [%s]\n",
282 resource->name);
283 break;
284 }
285 }
286 mutex_unlock(&resource->resource_lock);
287}
288
289/**
290 * acpi_device_power_add_dependent - Add dependent device of this ACPI device
291 * @adev: ACPI device pointer
292 * @dev: Dependent device
293 *
294 * If @adev has non-empty _PR0 the @dev is added as dependent device to all
295 * power resources returned by it. This means that whenever these power
296 * resources are turned _ON the dependent devices get runtime resumed. This
297 * is needed for devices such as PCI to allow its driver to re-initialize
298 * it after it went to D0uninitialized.
299 *
300 * If @adev does not have _PR0 this does nothing.
301 *
302 * Returns %0 in case of success and negative errno otherwise.
303 */
304int acpi_device_power_add_dependent(struct acpi_device *adev,
305 struct device *dev)
306{
307 struct acpi_power_resource_entry *entry;
308 struct list_head *resources;
309 int ret;
310
311 if (!adev->flags.power_manageable)
312 return 0;
313
314 resources = &adev->power.states[ACPI_STATE_D0].resources;
315 list_for_each_entry(entry, resources, node) {
316 ret = acpi_power_resource_add_dependent(entry->resource, dev);
317 if (ret)
318 goto err;
319 }
320
321 return 0;
322
323err:
324 list_for_each_entry(entry, resources, node)
325 acpi_power_resource_remove_dependent(entry->resource, dev);
326
327 return ret;
328}
329
330/**
331 * acpi_device_power_remove_dependent - Remove dependent device
332 * @adev: ACPI device pointer
333 * @dev: Dependent device
334 *
335 * Does the opposite of acpi_device_power_add_dependent() and removes the
336 * dependent device if it is found. Can be called to @adev that does not
337 * have _PR0 as well.
338 */
339void acpi_device_power_remove_dependent(struct acpi_device *adev,
340 struct device *dev)
341{
342 struct acpi_power_resource_entry *entry;
343 struct list_head *resources;
344
345 if (!adev->flags.power_manageable)
346 return;
347
348 resources = &adev->power.states[ACPI_STATE_D0].resources;
349 list_for_each_entry_reverse(entry, resources, node)
350 acpi_power_resource_remove_dependent(entry->resource, dev);
351}
352
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200353static int __acpi_power_on(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Mika Westerberg45337712019-06-25 13:29:41 +0300355 struct acpi_power_dependent_device *dep;
Len Brown4be44fc2005-08-05 00:44:28 -0400356 acpi_status status = AE_OK;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500357
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100358 status = acpi_evaluate_object(resource->device.handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400360 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200362 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400363 resource->name));
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200364
Mika Westerberg45337712019-06-25 13:29:41 +0300365 /*
366 * If there are other dependents on this power resource we need to
367 * resume them now so that their drivers can re-initialize the
368 * hardware properly after it went back to D0.
369 */
370 if (list_empty(&resource->dependents) ||
371 list_is_singular(&resource->dependents))
372 return 0;
373
374 list_for_each_entry(dep, &resource->dependents, node) {
375 dev_dbg(dep->dev, "runtime resuming because [%s] turned on\n",
376 resource->name);
377 pm_request_resume(dep->dev);
378 }
379
Patrick Mocheld550d982006-06-27 00:41:40 -0400380 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100383static int acpi_power_on_unlocked(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100385 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200386
387 if (resource->ref_count++) {
388 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300389 "Power resource [%s] already on\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200390 resource->name));
391 } else {
392 result = __acpi_power_on(resource);
Rafael J. Wysocki41863fc2013-10-16 23:05:42 +0200393 if (result)
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100394 resource->ref_count--;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500395 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100396 return result;
397}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100399static int acpi_power_on(struct acpi_power_resource *resource)
400{
401 int result;
402
403 mutex_lock(&resource->resource_lock);
404 result = acpi_power_on_unlocked(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500405 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100406 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100409static int __acpi_power_off(struct acpi_power_resource *resource)
410{
411 acpi_status status;
412
413 status = acpi_evaluate_object(resource->device.handle, "_OFF",
414 NULL, NULL);
415 if (ACPI_FAILURE(status))
416 return -ENODEV;
417
418 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned off\n",
419 resource->name));
420 return 0;
421}
422
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100423static int acpi_power_off_unlocked(struct acpi_power_resource *resource)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200424{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100425 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200426
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200427 if (!resource->ref_count) {
428 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300429 "Power resource [%s] already off\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200430 resource->name));
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100431 return 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200432 }
433
434 if (--resource->ref_count) {
435 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
436 "Power resource [%s] still in use\n",
437 resource->name));
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100438 } else {
439 result = __acpi_power_off(resource);
440 if (result)
441 resource->ref_count++;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200442 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100443 return result;
444}
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200445
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100446static int acpi_power_off(struct acpi_power_resource *resource)
447{
448 int result;
449
450 mutex_lock(&resource->resource_lock);
451 result = acpi_power_off_unlocked(resource);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200452 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200453 return result;
454}
455
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100456static int acpi_power_off_list(struct list_head *list)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100457{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100458 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100459 int result = 0;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100460
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100461 list_for_each_entry_reverse(entry, list, node) {
462 result = acpi_power_off(entry->resource);
463 if (result)
464 goto err;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100465 }
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100466 return 0;
467
468 err:
469 list_for_each_entry_continue(entry, list, node)
470 acpi_power_on(entry->resource);
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100471
472 return result;
473}
474
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100475static int acpi_power_on_list(struct list_head *list)
476{
477 struct acpi_power_resource_entry *entry;
478 int result = 0;
479
480 list_for_each_entry(entry, list, node) {
481 result = acpi_power_on(entry->resource);
482 if (result)
483 goto err;
484 }
485 return 0;
486
487 err:
488 list_for_each_entry_continue_reverse(entry, list, node)
489 acpi_power_off(entry->resource);
490
491 return result;
492}
493
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100494static struct attribute *attrs[] = {
495 NULL,
496};
497
Arvind Yadav26408b22017-06-30 17:39:05 +0530498static const struct attribute_group attr_groups[] = {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100499 [ACPI_STATE_D0] = {
500 .name = "power_resources_D0",
501 .attrs = attrs,
502 },
503 [ACPI_STATE_D1] = {
504 .name = "power_resources_D1",
505 .attrs = attrs,
506 },
507 [ACPI_STATE_D2] = {
508 .name = "power_resources_D2",
509 .attrs = attrs,
510 },
511 [ACPI_STATE_D3_HOT] = {
512 .name = "power_resources_D3hot",
513 .attrs = attrs,
514 },
515};
516
Arvind Yadav26408b22017-06-30 17:39:05 +0530517static const struct attribute_group wakeup_attr_group = {
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200518 .name = "power_resources_wakeup",
519 .attrs = attrs,
520};
521
522static void acpi_power_hide_list(struct acpi_device *adev,
523 struct list_head *resources,
Arvind Yadav26408b22017-06-30 17:39:05 +0530524 const struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100525{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100526 struct acpi_power_resource_entry *entry;
527
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200528 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100529 return;
530
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200531 list_for_each_entry_reverse(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100532 struct acpi_device *res_dev = &entry->resource->device;
533
534 sysfs_remove_link_from_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200535 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100536 dev_name(&res_dev->dev));
537 }
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200538 sysfs_remove_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100539}
540
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200541static void acpi_power_expose_list(struct acpi_device *adev,
542 struct list_head *resources,
Arvind Yadav26408b22017-06-30 17:39:05 +0530543 const struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100544{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100545 struct acpi_power_resource_entry *entry;
546 int ret;
547
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200548 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100549 return;
550
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200551 ret = sysfs_create_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100552 if (ret)
553 return;
554
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200555 list_for_each_entry(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100556 struct acpi_device *res_dev = &entry->resource->device;
557
558 ret = sysfs_add_link_to_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200559 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100560 &res_dev->dev.kobj,
561 dev_name(&res_dev->dev));
562 if (ret) {
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200563 acpi_power_hide_list(adev, resources, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100564 break;
565 }
566 }
567}
568
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200569static void acpi_power_expose_hide(struct acpi_device *adev,
570 struct list_head *resources,
Arvind Yadav26408b22017-06-30 17:39:05 +0530571 const struct attribute_group *attr_group,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200572 bool expose)
573{
574 if (expose)
575 acpi_power_expose_list(adev, resources, attr_group);
576 else
577 acpi_power_hide_list(adev, resources, attr_group);
578}
579
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100580void acpi_power_add_remove_device(struct acpi_device *adev, bool add)
581{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100582 int state;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100583
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200584 if (adev->wakeup.flags.valid)
585 acpi_power_expose_hide(adev, &adev->wakeup.resources,
586 &wakeup_attr_group, add);
587
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100588 if (!adev->power.flags.power_resources)
589 return;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100590
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200591 for (state = ACPI_STATE_D0; state <= ACPI_STATE_D3_HOT; state++)
592 acpi_power_expose_hide(adev,
593 &adev->power.states[state].resources,
594 &attr_groups[state], add);
Lin Ming0090def2012-03-29 14:09:39 +0800595}
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100596
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100597int acpi_power_wakeup_list_init(struct list_head *list, int *system_level_p)
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100598{
599 struct acpi_power_resource_entry *entry;
600 int system_level = 5;
601
602 list_for_each_entry(entry, list, node) {
603 struct acpi_power_resource *resource = entry->resource;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100604 acpi_handle handle = resource->device.handle;
605 int result;
606 int state;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100607
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100608 mutex_lock(&resource->resource_lock);
609
610 result = acpi_power_get_state(handle, &state);
611 if (result) {
612 mutex_unlock(&resource->resource_lock);
613 return result;
614 }
615 if (state == ACPI_POWER_RESOURCE_STATE_ON) {
616 resource->ref_count++;
617 resource->wakeup_enabled = true;
618 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100619 if (system_level > resource->system_level)
620 system_level = resource->system_level;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100621
622 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100623 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100624 *system_level_p = system_level;
625 return 0;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100626}
627
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100628/* --------------------------------------------------------------------------
629 Device Power Management
630 -------------------------------------------------------------------------- */
Lin Ming0090def2012-03-29 14:09:39 +0800631
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200632/**
633 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
634 * ACPI 3.0) _PSW (Power State Wake)
635 * @dev: Device to handle.
636 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
637 * @sleep_state: Target sleep state of the system.
638 * @dev_state: Target power state of the device.
639 *
640 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
641 * State Wake) for the device, if present. On failure reset the device's
642 * wakeup.flags.valid flag.
643 *
644 * RETURN VALUE:
645 * 0 if either _DSW or _PSW has been successfully executed
646 * 0 if neither _DSW nor _PSW has been found
647 * -ENODEV if the execution of either _DSW or _PSW has failed
648 */
649int acpi_device_sleep_wake(struct acpi_device *dev,
650 int enable, int sleep_state, int dev_state)
651{
652 union acpi_object in_arg[3];
653 struct acpi_object_list arg_list = { 3, in_arg };
654 acpi_status status = AE_OK;
655
656 /*
657 * Try to execute _DSW first.
658 *
Bjorn Helgaas603fadf2019-03-25 13:34:00 -0500659 * Three arguments are needed for the _DSW object:
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200660 * Argument 0: enable/disable the wake capabilities
661 * Argument 1: target system state
662 * Argument 2: target device state
663 * When _DSW object is called to disable the wake capabilities, maybe
Bjorn Helgaas603fadf2019-03-25 13:34:00 -0500664 * the first argument is filled. The values of the other two arguments
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200665 * are meaningless.
666 */
667 in_arg[0].type = ACPI_TYPE_INTEGER;
668 in_arg[0].integer.value = enable;
669 in_arg[1].type = ACPI_TYPE_INTEGER;
670 in_arg[1].integer.value = sleep_state;
671 in_arg[2].type = ACPI_TYPE_INTEGER;
672 in_arg[2].integer.value = dev_state;
673 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
674 if (ACPI_SUCCESS(status)) {
675 return 0;
676 } else if (status != AE_NOT_FOUND) {
677 printk(KERN_ERR PREFIX "_DSW execution failed\n");
678 dev->wakeup.flags.valid = 0;
679 return -ENODEV;
680 }
681
682 /* Execute _PSW */
Jiang Liu0db98202013-06-29 00:24:39 +0800683 status = acpi_execute_simple_method(dev->handle, "_PSW", enable);
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200684 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
685 printk(KERN_ERR PREFIX "_PSW execution failed\n");
686 dev->wakeup.flags.valid = 0;
687 return -ENODEV;
688 }
689
690 return 0;
691}
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693/*
694 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
695 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200696 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
697 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200699int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100701 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100702 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200705 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200707 mutex_lock(&acpi_device_lock);
708
709 if (dev->wakeup.prepare_count++)
710 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200711
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100712 list_for_each_entry(entry, &dev->wakeup.resources, node) {
713 struct acpi_power_resource *resource = entry->resource;
714
715 mutex_lock(&resource->resource_lock);
716
717 if (!resource->wakeup_enabled) {
718 err = acpi_power_on_unlocked(resource);
719 if (!err)
720 resource->wakeup_enabled = true;
721 }
722
723 mutex_unlock(&resource->resource_lock);
724
725 if (err) {
726 dev_err(&dev->dev,
727 "Cannot turn wakeup power resources on\n");
728 dev->wakeup.flags.valid = 0;
729 goto out;
730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100732 /*
733 * Passing 3 as the third argument below means the device may be
734 * put into arbitrary power state afterward.
735 */
736 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200737 if (err)
738 dev->wakeup.prepare_count = 0;
739
740 out:
741 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200742 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745/*
746 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200747 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
748 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 * 2. Shutdown down the power resources
750 */
Len Brown4be44fc2005-08-05 00:44:28 -0400751int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100753 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100754 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200757 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200759 mutex_lock(&acpi_device_lock);
760
761 if (--dev->wakeup.prepare_count > 0)
762 goto out;
763
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200764 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200765 * Executing the code below even if prepare_count is already zero when
766 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200767 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200768 if (dev->wakeup.prepare_count < 0)
769 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200770
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200771 err = acpi_device_sleep_wake(dev, 0, 0, 0);
772 if (err)
773 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100775 list_for_each_entry(entry, &dev->wakeup.resources, node) {
776 struct acpi_power_resource *resource = entry->resource;
777
778 mutex_lock(&resource->resource_lock);
779
780 if (resource->wakeup_enabled) {
781 err = acpi_power_off_unlocked(resource);
782 if (!err)
783 resource->wakeup_enabled = false;
784 }
785
786 mutex_unlock(&resource->resource_lock);
787
788 if (err) {
789 dev_err(&dev->dev,
790 "Cannot turn wakeup power resources off\n");
791 dev->wakeup.flags.valid = 0;
792 break;
793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200796 out:
797 mutex_unlock(&acpi_device_lock);
798 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100801int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Len Brown4be44fc2005-08-05 00:44:28 -0400803 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400804 int list_state = 0;
805 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100807 if (!device || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400808 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 /*
811 * We know a device's inferred power state when all the resources
812 * required for a given D-state are 'on'.
813 */
Rafael J. Wysocki38c92ff2012-05-20 13:58:00 +0200814 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100815 struct list_head *list = &device->power.states[i].resources;
816
817 if (list_empty(list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 continue;
819
820 result = acpi_power_get_list_state(list, &list_state);
821 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400822 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100825 *state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400826 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828 }
829
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200830 *state = device->power.states[ACPI_STATE_D3_COLD].flags.valid ?
831 ACPI_STATE_D3_COLD : ACPI_STATE_D3_HOT;
Patrick Mocheld550d982006-06-27 00:41:40 -0400832 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Rafael J. Wysocki30d3df412010-11-25 00:06:55 +0100835int acpi_power_on_resources(struct acpi_device *device, int state)
836{
Rafael J. Wysocki87e753b2013-01-22 12:56:16 +0100837 if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3_HOT)
Rafael J. Wysocki30d3df412010-11-25 00:06:55 +0100838 return -EINVAL;
839
840 return acpi_power_on_list(&device->power.states[state].resources);
841}
842
Len Brown4be44fc2005-08-05 00:44:28 -0400843int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200845 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800847 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400848 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100850 if (device->power.state == state || !device->flags.power_manageable)
Rafael J. Wysocki212967c2010-11-25 00:02:36 +0100851 return 0;
852
Len Brown4be44fc2005-08-05 00:44:28 -0400853 if ((device->power.state < ACPI_STATE_D0)
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800854 || (device->power.state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400855 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /*
858 * First we reference all power resources required in the target list
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100859 * (e.g. so the device doesn't lose power while transitioning). Then,
860 * we dereference all power resources used in the current list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 */
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200862 if (state < ACPI_STATE_D3_COLD)
863 result = acpi_power_on_list(
864 &device->power.states[state].resources);
865
866 if (!result && device->power.state < ACPI_STATE_D3_COLD)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100867 acpi_power_off_list(
868 &device->power.states[device->power.state].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100870 /* We shouldn't change the state unless the above operations succeed. */
871 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Patrick Mocheld550d982006-06-27 00:41:40 -0400873 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100876static void acpi_release_power_resource(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100878 struct acpi_device *device = to_acpi_device(dev);
879 struct acpi_power_resource *resource;
880
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100881 resource = container_of(device, struct acpi_power_resource, device);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100882
883 mutex_lock(&power_resource_list_lock);
884 list_del(&resource->list_node);
885 mutex_unlock(&power_resource_list_lock);
886
Toshi Kanic0af4172013-03-04 21:30:42 +0000887 acpi_free_pnp_ids(&device->pnp);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100888 kfree(resource);
889}
890
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100891static ssize_t acpi_power_in_use_show(struct device *dev,
892 struct device_attribute *attr,
893 char *buf) {
894 struct acpi_power_resource *resource;
895
896 resource = to_power_resource(to_acpi_device(dev));
897 return sprintf(buf, "%u\n", !!resource->ref_count);
898}
899static DEVICE_ATTR(resource_in_use, 0444, acpi_power_in_use_show, NULL);
900
901static void acpi_power_sysfs_remove(struct acpi_device *device)
902{
903 device_remove_file(&device->dev, &dev_attr_resource_in_use);
904}
905
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200906static void acpi_power_add_resource_to_list(struct acpi_power_resource *resource)
907{
908 mutex_lock(&power_resource_list_lock);
909
910 if (!list_empty(&acpi_power_resource_list)) {
911 struct acpi_power_resource *r;
912
913 list_for_each_entry(r, &acpi_power_resource_list, list_node)
914 if (r->order > resource->order) {
915 list_add_tail(&resource->list_node, &r->list_node);
916 goto out;
917 }
918 }
919 list_add_tail(&resource->list_node, &acpi_power_resource_list);
920
921 out:
922 mutex_unlock(&power_resource_list_lock);
923}
924
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100925int acpi_add_power_resource(acpi_handle handle)
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100926{
927 struct acpi_power_resource *resource;
928 struct acpi_device *device = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400929 union acpi_object acpi_object;
930 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100931 acpi_status status;
932 int state, result = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100934 acpi_bus_get_device(handle, &device);
935 if (device)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100936 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100938 resource = kzalloc(sizeof(*resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (!resource)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100940 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100942 device = &resource->device;
943 acpi_init_device_object(device, handle, ACPI_BUS_TYPE_POWER,
944 ACPI_STA_DEFAULT);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500945 mutex_init(&resource->resource_lock);
Rafael J. Wysocki6ee22e9d2013-06-19 00:44:45 +0200946 INIT_LIST_HEAD(&resource->list_node);
Mika Westerberg45337712019-06-25 13:29:41 +0300947 INIT_LIST_HEAD(&resource->dependents);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100948 resource->name = device->pnp.bus_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
950 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Rafael J. Wysocki722c9292013-01-17 14:11:06 +0100951 device->power.state = ACPI_STATE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 /* Evalute the object to get the system level and resource order. */
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100954 status = acpi_evaluate_object(handle, NULL, NULL, &buffer);
955 if (ACPI_FAILURE(status))
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100956 goto err;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 resource->system_level = acpi_object.power_resource.system_level;
959 resource->order = acpi_object.power_resource.resource_order;
960
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100961 result = acpi_power_get_state(handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100963 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Len Brown4be44fc2005-08-05 00:44:28 -0400965 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400966 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400967
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100968 device->flags.match_driver = true;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100969 result = acpi_device_add(device, acpi_release_power_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100971 goto err;
Len Brown4be44fc2005-08-05 00:44:28 -0400972
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100973 if (!device_create_file(&device->dev, &dev_attr_resource_in_use))
974 device->remove = acpi_power_sysfs_remove;
975
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200976 acpi_power_add_resource_to_list(resource);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100977 acpi_device_add_finalize(device);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100978 return 0;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100979
980 err:
981 acpi_release_power_resource(&device->dev);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100982 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100985#ifdef CONFIG_ACPI_SLEEP
986void acpi_resume_power_resources(void)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500987{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200988 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500989
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100990 mutex_lock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500991
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100992 list_for_each_entry(resource, &acpi_power_resource_list, list_node) {
993 int result, state;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200994
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100995 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500996
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100997 result = acpi_power_get_state(resource->device.handle, &state);
Lan Tianyud7d49012013-10-15 19:48:11 +0800998 if (result) {
999 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki660b1112013-01-25 21:51:57 +01001000 continue;
Lan Tianyud7d49012013-10-15 19:48:11 +08001001 }
Rafael J. Wysocki660b1112013-01-25 21:51:57 +01001002
1003 if (state == ACPI_POWER_RESOURCE_STATE_OFF
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001004 && resource->ref_count) {
1005 dev_info(&resource->device.dev, "Turning ON\n");
1006 __acpi_power_on(resource);
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +02001007 }
1008
1009 mutex_unlock(&resource->resource_lock);
1010 }
Hans de Goede8ece1d82017-04-30 22:54:16 +02001011
1012 mutex_unlock(&power_resource_list_lock);
1013}
1014
1015void acpi_turn_off_unused_power_resources(void)
1016{
1017 struct acpi_power_resource *resource;
1018
1019 mutex_lock(&power_resource_list_lock);
1020
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +02001021 list_for_each_entry_reverse(resource, &acpi_power_resource_list, list_node) {
1022 int result, state;
1023
1024 mutex_lock(&resource->resource_lock);
1025
1026 result = acpi_power_get_state(resource->device.handle, &state);
1027 if (result) {
1028 mutex_unlock(&resource->resource_lock);
1029 continue;
1030 }
1031
1032 if (state == ACPI_POWER_RESOURCE_STATE_ON
Rafael J. Wysocki660b1112013-01-25 21:51:57 +01001033 && !resource->ref_count) {
1034 dev_info(&resource->device.dev, "Turning OFF\n");
1035 __acpi_power_off(resource);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001036 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001037
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001038 mutex_unlock(&resource->resource_lock);
1039 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001040
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001041 mutex_unlock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001042}
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001043#endif