blob: 189a0d4c6d06bee3ce626e7729998126c75be551 [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.
Maximilian Luzc6237b22020-11-05 03:06:00 +010016 *
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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define ACPI_POWER_RESOURCE_STATE_OFF 0x00
40#define ACPI_POWER_RESOURCE_STATE_ON 0x01
41#define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF
Zhao Yakuif5adfaa2008-08-11 14:57:50 +080042
Mika Westerberg45337712019-06-25 13:29:41 +030043struct acpi_power_dependent_device {
44 struct device *dev;
45 struct list_head node;
46};
47
Len Brown4be44fc2005-08-05 00:44:28 -040048struct acpi_power_resource {
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010049 struct acpi_device device;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +010050 struct list_head list_node;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010051 char *name;
Len Brown4be44fc2005-08-05 00:44:28 -040052 u32 system_level;
53 u32 order;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +020054 unsigned int ref_count;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +010055 bool wakeup_enabled;
Konstantin Karasyov0a613902007-02-16 01:47:06 -050056 struct mutex resource_lock;
Mika Westerberg45337712019-06-25 13:29:41 +030057 struct list_head dependents;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010060struct acpi_power_resource_entry {
61 struct list_head node;
62 struct acpi_power_resource *resource;
63};
64
Rafael J. Wysocki781d7372013-01-17 14:11:06 +010065static LIST_HEAD(acpi_power_resource_list);
66static DEFINE_MUTEX(power_resource_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* --------------------------------------------------------------------------
69 Power Resource Management
70 -------------------------------------------------------------------------- */
71
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010072static inline
73struct acpi_power_resource *to_power_resource(struct acpi_device *device)
74{
75 return container_of(device, struct acpi_power_resource, device);
76}
77
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010078static struct acpi_power_resource *acpi_power_get_context(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010080 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010082 if (acpi_bus_get_device(handle, &device))
83 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010085 return to_power_resource(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +010088static int acpi_power_resources_list_add(acpi_handle handle,
89 struct list_head *list)
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010090{
91 struct acpi_power_resource *resource = acpi_power_get_context(handle);
92 struct acpi_power_resource_entry *entry;
93
94 if (!resource || !list)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +010095 return -EINVAL;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010096
97 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
98 if (!entry)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +010099 return -ENOMEM;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100100
101 entry->resource = resource;
102 if (!list_empty(list)) {
103 struct acpi_power_resource_entry *e;
104
105 list_for_each_entry(e, list, node)
106 if (e->resource->order > resource->order) {
107 list_add_tail(&entry->node, &e->node);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100108 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100109 }
110 }
111 list_add_tail(&entry->node, list);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100112 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100113}
114
115void acpi_power_resources_list_free(struct list_head *list)
116{
117 struct acpi_power_resource_entry *entry, *e;
118
119 list_for_each_entry_safe(entry, e, list, node) {
120 list_del(&entry->node);
121 kfree(entry);
122 }
123}
124
Hans de Goede7d7b4672018-12-30 18:25:00 +0100125static bool acpi_power_resource_is_dup(union acpi_object *package,
126 unsigned int start, unsigned int i)
127{
128 acpi_handle rhandle, dup;
129 unsigned int j;
130
131 /* The caller is expected to check the package element types */
132 rhandle = package->package.elements[i].reference.handle;
133 for (j = start; j < i; j++) {
134 dup = package->package.elements[j].reference.handle;
135 if (dup == rhandle)
136 return true;
137 }
138
139 return false;
140}
141
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100142int acpi_extract_power_resources(union acpi_object *package, unsigned int start,
143 struct list_head *list)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100144{
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100145 unsigned int i;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100146 int err = 0;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100147
148 for (i = start; i < package->package.count; i++) {
149 union acpi_object *element = &package->package.elements[i];
150 acpi_handle rhandle;
151
152 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100153 err = -ENODATA;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100154 break;
155 }
156 rhandle = element->reference.handle;
157 if (!rhandle) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100158 err = -ENODEV;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100159 break;
160 }
Hans de Goede7d7b4672018-12-30 18:25:00 +0100161
162 /* Some ACPI tables contain duplicate power resource references */
163 if (acpi_power_resource_is_dup(package, start, i))
164 continue;
165
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100166 err = acpi_add_power_resource(rhandle);
167 if (err)
168 break;
169
170 err = acpi_power_resources_list_add(rhandle, list);
171 if (err)
172 break;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100173 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100174 if (err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100175 acpi_power_resources_list_free(list);
176
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100177 return err;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100178}
179
Zhao Yakuia51e1452008-08-11 14:55:05 +0800180static int acpi_power_get_state(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Len Brown4be44fc2005-08-05 00:44:28 -0400182 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400183 unsigned long long sta = 0;
Lin Ming60a4ce72008-12-16 17:02:22 +0800184 char node_name[5];
185 struct acpi_buffer buffer = { sizeof(node_name), node_name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Zhao Yakuia51e1452008-08-11 14:55:05 +0800188 if (!handle || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400189 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Zhao Yakuia51e1452008-08-11 14:55:05 +0800191 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400193 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400195 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
196 ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Lin Ming60a4ce72008-12-16 17:02:22 +0800198 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
Lin Ming60a4ce72008-12-16 17:02:22 +0800201 node_name,
Zhao Yakuib1b57fb2008-10-27 16:04:53 +0800202 *state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Patrick Mocheld550d982006-06-27 00:41:40 -0400204 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100207static int acpi_power_get_list_state(struct list_head *list, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100209 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100210 int cur_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400213 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /* The state of the list is 'on' IFF all resources are 'on'. */
Arnd Bergmannfe8c4702017-04-19 19:47:04 +0200216 cur_state = 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100217 list_for_each_entry(entry, list, node) {
218 struct acpi_power_resource *resource = entry->resource;
219 acpi_handle handle = resource->device.handle;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100220 int result;
221
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100222 mutex_lock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100223 result = acpi_power_get_state(handle, &cur_state);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100224 mutex_unlock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100225 if (result)
226 return result;
227
228 if (cur_state != ACPI_POWER_RESOURCE_STATE_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 break;
230 }
231
232 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100233 cur_state ? "on" : "off"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100235 *state = cur_state;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Mika Westerberg45337712019-06-25 13:29:41 +0300239static int
240acpi_power_resource_add_dependent(struct acpi_power_resource *resource,
241 struct device *dev)
242{
243 struct acpi_power_dependent_device *dep;
244 int ret = 0;
245
246 mutex_lock(&resource->resource_lock);
247 list_for_each_entry(dep, &resource->dependents, node) {
248 /* Only add it once */
249 if (dep->dev == dev)
250 goto unlock;
251 }
252
253 dep = kzalloc(sizeof(*dep), GFP_KERNEL);
254 if (!dep) {
255 ret = -ENOMEM;
256 goto unlock;
257 }
258
259 dep->dev = dev;
260 list_add_tail(&dep->node, &resource->dependents);
261 dev_dbg(dev, "added power dependency to [%s]\n", resource->name);
262
263unlock:
264 mutex_unlock(&resource->resource_lock);
265 return ret;
266}
267
268static void
269acpi_power_resource_remove_dependent(struct acpi_power_resource *resource,
270 struct device *dev)
271{
272 struct acpi_power_dependent_device *dep;
273
274 mutex_lock(&resource->resource_lock);
275 list_for_each_entry(dep, &resource->dependents, node) {
276 if (dep->dev == dev) {
277 list_del(&dep->node);
278 kfree(dep);
279 dev_dbg(dev, "removed power dependency to [%s]\n",
280 resource->name);
281 break;
282 }
283 }
284 mutex_unlock(&resource->resource_lock);
285}
286
287/**
288 * acpi_device_power_add_dependent - Add dependent device of this ACPI device
289 * @adev: ACPI device pointer
290 * @dev: Dependent device
291 *
292 * If @adev has non-empty _PR0 the @dev is added as dependent device to all
293 * power resources returned by it. This means that whenever these power
294 * resources are turned _ON the dependent devices get runtime resumed. This
295 * is needed for devices such as PCI to allow its driver to re-initialize
296 * it after it went to D0uninitialized.
297 *
298 * If @adev does not have _PR0 this does nothing.
299 *
300 * Returns %0 in case of success and negative errno otherwise.
301 */
302int acpi_device_power_add_dependent(struct acpi_device *adev,
303 struct device *dev)
304{
305 struct acpi_power_resource_entry *entry;
306 struct list_head *resources;
307 int ret;
308
309 if (!adev->flags.power_manageable)
310 return 0;
311
312 resources = &adev->power.states[ACPI_STATE_D0].resources;
313 list_for_each_entry(entry, resources, node) {
314 ret = acpi_power_resource_add_dependent(entry->resource, dev);
315 if (ret)
316 goto err;
317 }
318
319 return 0;
320
321err:
322 list_for_each_entry(entry, resources, node)
323 acpi_power_resource_remove_dependent(entry->resource, dev);
324
325 return ret;
326}
327
328/**
329 * acpi_device_power_remove_dependent - Remove dependent device
330 * @adev: ACPI device pointer
331 * @dev: Dependent device
332 *
333 * Does the opposite of acpi_device_power_add_dependent() and removes the
334 * dependent device if it is found. Can be called to @adev that does not
335 * have _PR0 as well.
336 */
337void acpi_device_power_remove_dependent(struct acpi_device *adev,
338 struct device *dev)
339{
340 struct acpi_power_resource_entry *entry;
341 struct list_head *resources;
342
343 if (!adev->flags.power_manageable)
344 return;
345
346 resources = &adev->power.states[ACPI_STATE_D0].resources;
347 list_for_each_entry_reverse(entry, resources, node)
348 acpi_power_resource_remove_dependent(entry->resource, dev);
349}
350
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200351static int __acpi_power_on(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Mika Westerberg45337712019-06-25 13:29:41 +0300353 struct acpi_power_dependent_device *dep;
Len Brown4be44fc2005-08-05 00:44:28 -0400354 acpi_status status = AE_OK;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500355
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100356 status = acpi_evaluate_object(resource->device.handle, "_ON", NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400358 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200360 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400361 resource->name));
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200362
Mika Westerberg45337712019-06-25 13:29:41 +0300363 /*
364 * If there are other dependents on this power resource we need to
365 * resume them now so that their drivers can re-initialize the
366 * hardware properly after it went back to D0.
367 */
368 if (list_empty(&resource->dependents) ||
369 list_is_singular(&resource->dependents))
370 return 0;
371
372 list_for_each_entry(dep, &resource->dependents, node) {
373 dev_dbg(dep->dev, "runtime resuming because [%s] turned on\n",
374 resource->name);
375 pm_request_resume(dep->dev);
376 }
377
Patrick Mocheld550d982006-06-27 00:41:40 -0400378 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100381static int acpi_power_on_unlocked(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100383 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200384
385 if (resource->ref_count++) {
386 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300387 "Power resource [%s] already on\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200388 resource->name));
389 } else {
390 result = __acpi_power_on(resource);
Rafael J. Wysocki41863fc2013-10-16 23:05:42 +0200391 if (result)
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100392 resource->ref_count--;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500393 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100394 return result;
395}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100397static int acpi_power_on(struct acpi_power_resource *resource)
398{
399 int result;
400
401 mutex_lock(&resource->resource_lock);
402 result = acpi_power_on_unlocked(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500403 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100404 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100407static int __acpi_power_off(struct acpi_power_resource *resource)
408{
409 acpi_status status;
410
411 status = acpi_evaluate_object(resource->device.handle, "_OFF",
412 NULL, NULL);
413 if (ACPI_FAILURE(status))
414 return -ENODEV;
415
416 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned off\n",
417 resource->name));
418 return 0;
419}
420
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100421static int acpi_power_off_unlocked(struct acpi_power_resource *resource)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200422{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100423 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200424
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200425 if (!resource->ref_count) {
426 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Mika Westerberg10a0b612013-07-05 12:15:56 +0300427 "Power resource [%s] already off\n",
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200428 resource->name));
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100429 return 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200430 }
431
432 if (--resource->ref_count) {
433 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
434 "Power resource [%s] still in use\n",
435 resource->name));
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100436 } else {
437 result = __acpi_power_off(resource);
438 if (result)
439 resource->ref_count++;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200440 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100441 return result;
442}
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200443
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100444static int acpi_power_off(struct acpi_power_resource *resource)
445{
446 int result;
447
448 mutex_lock(&resource->resource_lock);
449 result = acpi_power_off_unlocked(resource);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200450 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200451 return result;
452}
453
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100454static int acpi_power_off_list(struct list_head *list)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100455{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100456 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100457 int result = 0;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100458
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100459 list_for_each_entry_reverse(entry, list, node) {
460 result = acpi_power_off(entry->resource);
461 if (result)
462 goto err;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100463 }
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100464 return 0;
465
466 err:
467 list_for_each_entry_continue(entry, list, node)
468 acpi_power_on(entry->resource);
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100469
470 return result;
471}
472
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100473static int acpi_power_on_list(struct list_head *list)
474{
475 struct acpi_power_resource_entry *entry;
476 int result = 0;
477
478 list_for_each_entry(entry, list, node) {
479 result = acpi_power_on(entry->resource);
480 if (result)
481 goto err;
482 }
483 return 0;
484
485 err:
486 list_for_each_entry_continue_reverse(entry, list, node)
487 acpi_power_off(entry->resource);
488
489 return result;
490}
491
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100492static struct attribute *attrs[] = {
493 NULL,
494};
495
Arvind Yadav26408b22017-06-30 17:39:05 +0530496static const struct attribute_group attr_groups[] = {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100497 [ACPI_STATE_D0] = {
498 .name = "power_resources_D0",
499 .attrs = attrs,
500 },
501 [ACPI_STATE_D1] = {
502 .name = "power_resources_D1",
503 .attrs = attrs,
504 },
505 [ACPI_STATE_D2] = {
506 .name = "power_resources_D2",
507 .attrs = attrs,
508 },
509 [ACPI_STATE_D3_HOT] = {
510 .name = "power_resources_D3hot",
511 .attrs = attrs,
512 },
513};
514
Arvind Yadav26408b22017-06-30 17:39:05 +0530515static const struct attribute_group wakeup_attr_group = {
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200516 .name = "power_resources_wakeup",
517 .attrs = attrs,
518};
519
520static void acpi_power_hide_list(struct acpi_device *adev,
521 struct list_head *resources,
Arvind Yadav26408b22017-06-30 17:39:05 +0530522 const struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100523{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100524 struct acpi_power_resource_entry *entry;
525
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200526 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100527 return;
528
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200529 list_for_each_entry_reverse(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100530 struct acpi_device *res_dev = &entry->resource->device;
531
532 sysfs_remove_link_from_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200533 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100534 dev_name(&res_dev->dev));
535 }
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200536 sysfs_remove_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100537}
538
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200539static void acpi_power_expose_list(struct acpi_device *adev,
540 struct list_head *resources,
Arvind Yadav26408b22017-06-30 17:39:05 +0530541 const struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100542{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100543 struct acpi_power_resource_entry *entry;
544 int ret;
545
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200546 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100547 return;
548
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200549 ret = sysfs_create_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100550 if (ret)
551 return;
552
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200553 list_for_each_entry(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100554 struct acpi_device *res_dev = &entry->resource->device;
555
556 ret = sysfs_add_link_to_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200557 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100558 &res_dev->dev.kobj,
559 dev_name(&res_dev->dev));
560 if (ret) {
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200561 acpi_power_hide_list(adev, resources, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100562 break;
563 }
564 }
565}
566
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200567static void acpi_power_expose_hide(struct acpi_device *adev,
568 struct list_head *resources,
Arvind Yadav26408b22017-06-30 17:39:05 +0530569 const struct attribute_group *attr_group,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200570 bool expose)
571{
572 if (expose)
573 acpi_power_expose_list(adev, resources, attr_group);
574 else
575 acpi_power_hide_list(adev, resources, attr_group);
576}
577
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100578void acpi_power_add_remove_device(struct acpi_device *adev, bool add)
579{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100580 int state;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100581
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200582 if (adev->wakeup.flags.valid)
583 acpi_power_expose_hide(adev, &adev->wakeup.resources,
584 &wakeup_attr_group, add);
585
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100586 if (!adev->power.flags.power_resources)
587 return;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100588
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200589 for (state = ACPI_STATE_D0; state <= ACPI_STATE_D3_HOT; state++)
590 acpi_power_expose_hide(adev,
591 &adev->power.states[state].resources,
592 &attr_groups[state], add);
Lin Ming0090def2012-03-29 14:09:39 +0800593}
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100594
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100595int acpi_power_wakeup_list_init(struct list_head *list, int *system_level_p)
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100596{
597 struct acpi_power_resource_entry *entry;
598 int system_level = 5;
599
600 list_for_each_entry(entry, list, node) {
601 struct acpi_power_resource *resource = entry->resource;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100602 acpi_handle handle = resource->device.handle;
603 int result;
604 int state;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100605
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100606 mutex_lock(&resource->resource_lock);
607
608 result = acpi_power_get_state(handle, &state);
609 if (result) {
610 mutex_unlock(&resource->resource_lock);
611 return result;
612 }
613 if (state == ACPI_POWER_RESOURCE_STATE_ON) {
614 resource->ref_count++;
615 resource->wakeup_enabled = true;
616 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100617 if (system_level > resource->system_level)
618 system_level = resource->system_level;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100619
620 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100621 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100622 *system_level_p = system_level;
623 return 0;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100624}
625
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100626/* --------------------------------------------------------------------------
627 Device Power Management
628 -------------------------------------------------------------------------- */
Lin Ming0090def2012-03-29 14:09:39 +0800629
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200630/**
631 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
632 * ACPI 3.0) _PSW (Power State Wake)
633 * @dev: Device to handle.
634 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
635 * @sleep_state: Target sleep state of the system.
636 * @dev_state: Target power state of the device.
637 *
638 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
639 * State Wake) for the device, if present. On failure reset the device's
640 * wakeup.flags.valid flag.
641 *
642 * RETURN VALUE:
643 * 0 if either _DSW or _PSW has been successfully executed
644 * 0 if neither _DSW nor _PSW has been found
645 * -ENODEV if the execution of either _DSW or _PSW has failed
646 */
647int acpi_device_sleep_wake(struct acpi_device *dev,
Maximilian Luzc6237b22020-11-05 03:06:00 +0100648 int enable, int sleep_state, int dev_state)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200649{
650 union acpi_object in_arg[3];
651 struct acpi_object_list arg_list = { 3, in_arg };
652 acpi_status status = AE_OK;
653
654 /*
655 * Try to execute _DSW first.
656 *
Bjorn Helgaas603fadf2019-03-25 13:34:00 -0500657 * Three arguments are needed for the _DSW object:
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200658 * Argument 0: enable/disable the wake capabilities
659 * Argument 1: target system state
660 * Argument 2: target device state
661 * When _DSW object is called to disable the wake capabilities, maybe
Bjorn Helgaas603fadf2019-03-25 13:34:00 -0500662 * the first argument is filled. The values of the other two arguments
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200663 * are meaningless.
664 */
665 in_arg[0].type = ACPI_TYPE_INTEGER;
666 in_arg[0].integer.value = enable;
667 in_arg[1].type = ACPI_TYPE_INTEGER;
668 in_arg[1].integer.value = sleep_state;
669 in_arg[2].type = ACPI_TYPE_INTEGER;
670 in_arg[2].integer.value = dev_state;
671 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
672 if (ACPI_SUCCESS(status)) {
673 return 0;
674 } else if (status != AE_NOT_FOUND) {
675 printk(KERN_ERR PREFIX "_DSW execution failed\n");
676 dev->wakeup.flags.valid = 0;
677 return -ENODEV;
678 }
679
680 /* Execute _PSW */
Jiang Liu0db98202013-06-29 00:24:39 +0800681 status = acpi_execute_simple_method(dev->handle, "_PSW", enable);
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200682 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
683 printk(KERN_ERR PREFIX "_PSW execution failed\n");
684 dev->wakeup.flags.valid = 0;
685 return -ENODEV;
686 }
687
688 return 0;
689}
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691/*
692 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
Maximilian Luzc6237b22020-11-05 03:06:00 +0100693 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200694 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
695 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200697int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100699 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100700 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200703 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200705 mutex_lock(&acpi_device_lock);
706
707 if (dev->wakeup.prepare_count++)
708 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200709
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100710 list_for_each_entry(entry, &dev->wakeup.resources, node) {
711 struct acpi_power_resource *resource = entry->resource;
712
713 mutex_lock(&resource->resource_lock);
714
715 if (!resource->wakeup_enabled) {
716 err = acpi_power_on_unlocked(resource);
717 if (!err)
718 resource->wakeup_enabled = true;
719 }
720
721 mutex_unlock(&resource->resource_lock);
722
723 if (err) {
724 dev_err(&dev->dev,
725 "Cannot turn wakeup power resources on\n");
726 dev->wakeup.flags.valid = 0;
727 goto out;
728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100730 /*
731 * Passing 3 as the third argument below means the device may be
732 * put into arbitrary power state afterward.
733 */
734 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200735 if (err)
736 dev->wakeup.prepare_count = 0;
737
738 out:
739 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200740 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
743/*
744 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200745 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
746 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 * 2. Shutdown down the power resources
748 */
Len Brown4be44fc2005-08-05 00:44:28 -0400749int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100751 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100752 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200755 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200757 mutex_lock(&acpi_device_lock);
758
759 if (--dev->wakeup.prepare_count > 0)
760 goto out;
761
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200762 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200763 * Executing the code below even if prepare_count is already zero when
764 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200765 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200766 if (dev->wakeup.prepare_count < 0)
767 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200768
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200769 err = acpi_device_sleep_wake(dev, 0, 0, 0);
770 if (err)
771 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100773 list_for_each_entry(entry, &dev->wakeup.resources, node) {
774 struct acpi_power_resource *resource = entry->resource;
775
776 mutex_lock(&resource->resource_lock);
777
778 if (resource->wakeup_enabled) {
779 err = acpi_power_off_unlocked(resource);
780 if (!err)
781 resource->wakeup_enabled = false;
782 }
783
784 mutex_unlock(&resource->resource_lock);
785
786 if (err) {
787 dev_err(&dev->dev,
788 "Cannot turn wakeup power resources off\n");
789 dev->wakeup.flags.valid = 0;
790 break;
791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200794 out:
795 mutex_unlock(&acpi_device_lock);
796 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100799int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Len Brown4be44fc2005-08-05 00:44:28 -0400801 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400802 int list_state = 0;
803 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100805 if (!device || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400806 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /*
809 * We know a device's inferred power state when all the resources
810 * required for a given D-state are 'on'.
811 */
Rafael J. Wysocki38c92ff2012-05-20 13:58:00 +0200812 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100813 struct list_head *list = &device->power.states[i].resources;
814
815 if (list_empty(list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 continue;
817
818 result = acpi_power_get_list_state(list, &list_state);
819 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400820 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100823 *state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400824 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826 }
827
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200828 *state = device->power.states[ACPI_STATE_D3_COLD].flags.valid ?
829 ACPI_STATE_D3_COLD : ACPI_STATE_D3_HOT;
Patrick Mocheld550d982006-06-27 00:41:40 -0400830 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
Rafael J. Wysocki30d3df412010-11-25 00:06:55 +0100833int acpi_power_on_resources(struct acpi_device *device, int state)
834{
Rafael J. Wysocki87e753b2013-01-22 12:56:16 +0100835 if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3_HOT)
Rafael J. Wysocki30d3df412010-11-25 00:06:55 +0100836 return -EINVAL;
837
838 return acpi_power_on_list(&device->power.states[state].resources);
839}
840
Len Brown4be44fc2005-08-05 00:44:28 -0400841int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200843 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800845 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400846 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100848 if (device->power.state == state || !device->flags.power_manageable)
Rafael J. Wysocki212967c2010-11-25 00:02:36 +0100849 return 0;
850
Len Brown4be44fc2005-08-05 00:44:28 -0400851 if ((device->power.state < ACPI_STATE_D0)
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800852 || (device->power.state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400853 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 /*
856 * First we reference all power resources required in the target list
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100857 * (e.g. so the device doesn't lose power while transitioning). Then,
858 * we dereference all power resources used in the current list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 */
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200860 if (state < ACPI_STATE_D3_COLD)
861 result = acpi_power_on_list(
862 &device->power.states[state].resources);
863
864 if (!result && device->power.state < ACPI_STATE_D3_COLD)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100865 acpi_power_off_list(
866 &device->power.states[device->power.state].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100868 /* We shouldn't change the state unless the above operations succeed. */
869 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Patrick Mocheld550d982006-06-27 00:41:40 -0400871 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100874static void acpi_release_power_resource(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100876 struct acpi_device *device = to_acpi_device(dev);
877 struct acpi_power_resource *resource;
878
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100879 resource = container_of(device, struct acpi_power_resource, device);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100880
881 mutex_lock(&power_resource_list_lock);
882 list_del(&resource->list_node);
883 mutex_unlock(&power_resource_list_lock);
884
Toshi Kanic0af4172013-03-04 21:30:42 +0000885 acpi_free_pnp_ids(&device->pnp);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100886 kfree(resource);
887}
888
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100889static ssize_t acpi_power_in_use_show(struct device *dev,
890 struct device_attribute *attr,
891 char *buf) {
892 struct acpi_power_resource *resource;
893
894 resource = to_power_resource(to_acpi_device(dev));
895 return sprintf(buf, "%u\n", !!resource->ref_count);
896}
897static DEVICE_ATTR(resource_in_use, 0444, acpi_power_in_use_show, NULL);
898
899static void acpi_power_sysfs_remove(struct acpi_device *device)
900{
901 device_remove_file(&device->dev, &dev_attr_resource_in_use);
902}
903
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200904static void acpi_power_add_resource_to_list(struct acpi_power_resource *resource)
905{
906 mutex_lock(&power_resource_list_lock);
907
908 if (!list_empty(&acpi_power_resource_list)) {
909 struct acpi_power_resource *r;
910
911 list_for_each_entry(r, &acpi_power_resource_list, list_node)
912 if (r->order > resource->order) {
913 list_add_tail(&resource->list_node, &r->list_node);
914 goto out;
915 }
916 }
917 list_add_tail(&resource->list_node, &acpi_power_resource_list);
918
919 out:
920 mutex_unlock(&power_resource_list_lock);
921}
922
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100923int acpi_add_power_resource(acpi_handle handle)
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100924{
925 struct acpi_power_resource *resource;
926 struct acpi_device *device = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400927 union acpi_object acpi_object;
928 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100929 acpi_status status;
930 int state, result = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100932 acpi_bus_get_device(handle, &device);
933 if (device)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100934 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100936 resource = kzalloc(sizeof(*resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (!resource)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100938 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100940 device = &resource->device;
941 acpi_init_device_object(device, handle, ACPI_BUS_TYPE_POWER,
Hans de Goede6091b262020-11-21 21:30:35 +0100942 ACPI_STA_DEFAULT, NULL);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500943 mutex_init(&resource->resource_lock);
Rafael J. Wysocki6ee22e9d2013-06-19 00:44:45 +0200944 INIT_LIST_HEAD(&resource->list_node);
Mika Westerberg45337712019-06-25 13:29:41 +0300945 INIT_LIST_HEAD(&resource->dependents);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100946 resource->name = device->pnp.bus_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
948 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Rafael J. Wysocki722c9292013-01-17 14:11:06 +0100949 device->power.state = ACPI_STATE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 /* Evalute the object to get the system level and resource order. */
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100952 status = acpi_evaluate_object(handle, NULL, NULL, &buffer);
953 if (ACPI_FAILURE(status))
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100954 goto err;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 resource->system_level = acpi_object.power_resource.system_level;
957 resource->order = acpi_object.power_resource.resource_order;
958
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100959 result = acpi_power_get_state(handle, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100961 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Len Brown4be44fc2005-08-05 00:44:28 -0400963 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400964 acpi_device_bid(device), state ? "on" : "off");
Len Brown4be44fc2005-08-05 00:44:28 -0400965
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100966 device->flags.match_driver = true;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100967 result = acpi_device_add(device, acpi_release_power_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100969 goto err;
Len Brown4be44fc2005-08-05 00:44:28 -0400970
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100971 if (!device_create_file(&device->dev, &dev_attr_resource_in_use))
972 device->remove = acpi_power_sysfs_remove;
973
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200974 acpi_power_add_resource_to_list(resource);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100975 acpi_device_add_finalize(device);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100976 return 0;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100977
978 err:
979 acpi_release_power_resource(&device->dev);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100980 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100983#ifdef CONFIG_ACPI_SLEEP
984void acpi_resume_power_resources(void)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500985{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200986 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500987
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100988 mutex_lock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500989
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100990 list_for_each_entry(resource, &acpi_power_resource_list, list_node) {
991 int result, state;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200992
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100993 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500994
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100995 result = acpi_power_get_state(resource->device.handle, &state);
Lan Tianyud7d49012013-10-15 19:48:11 +0800996 if (result) {
997 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100998 continue;
Lan Tianyud7d49012013-10-15 19:48:11 +0800999 }
Rafael J. Wysocki660b1112013-01-25 21:51:57 +01001000
1001 if (state == ACPI_POWER_RESOURCE_STATE_OFF
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001002 && resource->ref_count) {
1003 dev_info(&resource->device.dev, "Turning ON\n");
1004 __acpi_power_on(resource);
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +02001005 }
1006
1007 mutex_unlock(&resource->resource_lock);
1008 }
Hans de Goede8ece1d82017-04-30 22:54:16 +02001009
1010 mutex_unlock(&power_resource_list_lock);
1011}
1012
1013void acpi_turn_off_unused_power_resources(void)
1014{
1015 struct acpi_power_resource *resource;
1016
1017 mutex_lock(&power_resource_list_lock);
1018
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +02001019 list_for_each_entry_reverse(resource, &acpi_power_resource_list, list_node) {
1020 int result, state;
1021
1022 mutex_lock(&resource->resource_lock);
1023
1024 result = acpi_power_get_state(resource->device.handle, &state);
1025 if (result) {
1026 mutex_unlock(&resource->resource_lock);
1027 continue;
1028 }
1029
1030 if (state == ACPI_POWER_RESOURCE_STATE_ON
Rafael J. Wysocki660b1112013-01-25 21:51:57 +01001031 && !resource->ref_count) {
1032 dev_info(&resource->device.dev, "Turning OFF\n");
1033 __acpi_power_off(resource);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001034 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001035
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001036 mutex_unlock(&resource->resource_lock);
1037 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001038
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001039 mutex_unlock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001040}
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001041#endif