blob: 1b7431fb5fb25be8bb4fa74f6de651f480cf78b9 [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
Rafael J. Wysocki56ce8332021-01-20 19:57:03 +010024#define pr_fmt(fmt) "ACPI: PM: " fmt
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Lin Ming0090def2012-03-29 14:09:39 +080031#include <linux/pm_runtime.h>
Rafael J. Wysocki18a38702013-01-25 21:51:32 +010032#include <linux/sysfs.h>
Lv Zheng8b484632013-12-03 08:49:16 +080033#include <linux/acpi.h>
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020034#include "sleep.h"
Lin Ming0090def2012-03-29 14:09:39 +080035#include "internal.h"
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +020036
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;
Len Brown4be44fc2005-08-05 00:44:28 -040051 u32 system_level;
52 u32 order;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +020053 unsigned int ref_count;
Rafael J. Wysockica84f182021-05-24 17:25:23 +020054 u8 state;
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. Wysocki2bc4eb92021-08-25 20:31:10 +020072static inline const char *resource_dev_name(struct acpi_power_resource *pr)
73{
74 return dev_name(&pr->device.dev);
75}
76
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010077static inline
78struct acpi_power_resource *to_power_resource(struct acpi_device *device)
79{
80 return container_of(device, struct acpi_power_resource, device);
81}
82
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010083static struct acpi_power_resource *acpi_power_get_context(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010085 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +010087 if (acpi_bus_get_device(handle, &device))
88 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +010090 return to_power_resource(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +010093static int acpi_power_resources_list_add(acpi_handle handle,
94 struct list_head *list)
Rafael J. Wysocki0b224522013-01-17 14:11:06 +010095{
96 struct acpi_power_resource *resource = acpi_power_get_context(handle);
97 struct acpi_power_resource_entry *entry;
98
99 if (!resource || !list)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100100 return -EINVAL;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100101
102 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
103 if (!entry)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100104 return -ENOMEM;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100105
106 entry->resource = resource;
107 if (!list_empty(list)) {
108 struct acpi_power_resource_entry *e;
109
110 list_for_each_entry(e, list, node)
111 if (e->resource->order > resource->order) {
112 list_add_tail(&entry->node, &e->node);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100113 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100114 }
115 }
116 list_add_tail(&entry->node, list);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100117 return 0;
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100118}
119
120void acpi_power_resources_list_free(struct list_head *list)
121{
122 struct acpi_power_resource_entry *entry, *e;
123
124 list_for_each_entry_safe(entry, e, list, node) {
125 list_del(&entry->node);
126 kfree(entry);
127 }
128}
129
Hans de Goede7d7b4672018-12-30 18:25:00 +0100130static bool acpi_power_resource_is_dup(union acpi_object *package,
131 unsigned int start, unsigned int i)
132{
133 acpi_handle rhandle, dup;
134 unsigned int j;
135
136 /* The caller is expected to check the package element types */
137 rhandle = package->package.elements[i].reference.handle;
138 for (j = start; j < i; j++) {
139 dup = package->package.elements[j].reference.handle;
140 if (dup == rhandle)
141 return true;
142 }
143
144 return false;
145}
146
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100147int acpi_extract_power_resources(union acpi_object *package, unsigned int start,
148 struct list_head *list)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100149{
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100150 unsigned int i;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100151 int err = 0;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100152
153 for (i = start; i < package->package.count; i++) {
154 union acpi_object *element = &package->package.elements[i];
Rafael J. Wysocki9b7ff252021-05-21 15:13:11 +0200155 struct acpi_device *rdev;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100156 acpi_handle rhandle;
157
158 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100159 err = -ENODATA;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100160 break;
161 }
162 rhandle = element->reference.handle;
163 if (!rhandle) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100164 err = -ENODEV;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100165 break;
166 }
Hans de Goede7d7b4672018-12-30 18:25:00 +0100167
168 /* Some ACPI tables contain duplicate power resource references */
169 if (acpi_power_resource_is_dup(package, start, i))
170 continue;
171
Rafael J. Wysocki9b7ff252021-05-21 15:13:11 +0200172 rdev = acpi_add_power_resource(rhandle);
173 if (!rdev) {
174 err = -ENODEV;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100175 break;
Rafael J. Wysocki9b7ff252021-05-21 15:13:11 +0200176 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100177 err = acpi_power_resources_list_add(rhandle, list);
178 if (err)
179 break;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100180 }
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100181 if (err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100182 acpi_power_resources_list_free(list);
183
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +0100184 return err;
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +0100185}
186
Rafael J. Wysockica84f182021-05-24 17:25:23 +0200187static int __get_state(acpi_handle handle, u8 *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Len Brown4be44fc2005-08-05 00:44:28 -0400189 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400190 unsigned long long sta = 0;
Rafael J. Wysocki587024b2021-05-24 17:24:16 +0200191 u8 cur_state;
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
Rafael J. Wysocki587024b2021-05-24 17:24:16 +0200197 cur_state = sta & ACPI_POWER_RESOURCE_STATE_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Rafael J. Wysocki56ce8332021-01-20 19:57:03 +0100199 acpi_handle_debug(handle, "Power resource is %s\n",
Rafael J. Wysocki587024b2021-05-24 17:24:16 +0200200 cur_state ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Rafael J. Wysocki587024b2021-05-24 17:24:16 +0200202 *state = cur_state;
Patrick Mocheld550d982006-06-27 00:41:40 -0400203 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Rafael J. Wysockica84f182021-05-24 17:25:23 +0200206static int acpi_power_get_state(struct acpi_power_resource *resource, u8 *state)
207{
208 if (resource->state == ACPI_POWER_RESOURCE_STATE_UNKNOWN) {
209 int ret;
210
211 ret = __get_state(resource->device.handle, &resource->state);
212 if (ret)
213 return ret;
214 }
215
216 *state = resource->state;
217 return 0;
218}
219
Rafael J. Wysocki587024b2021-05-24 17:24:16 +0200220static int acpi_power_get_list_state(struct list_head *list, u8 *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100222 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki587024b2021-05-24 17:24:16 +0200223 u8 cur_state = ACPI_POWER_RESOURCE_STATE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 if (!list || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400226 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /* The state of the list is 'on' IFF all resources are 'on'. */
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100229 list_for_each_entry(entry, list, node) {
230 struct acpi_power_resource *resource = entry->resource;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100231 int result;
232
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100233 mutex_lock(&resource->resource_lock);
Rafael J. Wysockica84f182021-05-24 17:25:23 +0200234 result = acpi_power_get_state(resource, &cur_state);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100235 mutex_unlock(&resource->resource_lock);
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100236 if (result)
237 return result;
238
239 if (cur_state != ACPI_POWER_RESOURCE_STATE_ON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 break;
241 }
242
Rafael J. Wysocki56ce8332021-01-20 19:57:03 +0100243 pr_debug("Power resource list is %s\n", cur_state ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100245 *state = cur_state;
Rafael J. Wysockid0515d92011-01-06 23:38:57 +0100246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Mika Westerberg45337712019-06-25 13:29:41 +0300249static int
250acpi_power_resource_add_dependent(struct acpi_power_resource *resource,
251 struct device *dev)
252{
253 struct acpi_power_dependent_device *dep;
254 int ret = 0;
255
256 mutex_lock(&resource->resource_lock);
257 list_for_each_entry(dep, &resource->dependents, node) {
258 /* Only add it once */
259 if (dep->dev == dev)
260 goto unlock;
261 }
262
263 dep = kzalloc(sizeof(*dep), GFP_KERNEL);
264 if (!dep) {
265 ret = -ENOMEM;
266 goto unlock;
267 }
268
269 dep->dev = dev;
270 list_add_tail(&dep->node, &resource->dependents);
Rafael J. Wysocki2bc4eb92021-08-25 20:31:10 +0200271 dev_dbg(dev, "added power dependency to [%s]\n",
272 resource_dev_name(resource));
Mika Westerberg45337712019-06-25 13:29:41 +0300273
274unlock:
275 mutex_unlock(&resource->resource_lock);
276 return ret;
277}
278
279static void
280acpi_power_resource_remove_dependent(struct acpi_power_resource *resource,
281 struct device *dev)
282{
283 struct acpi_power_dependent_device *dep;
284
285 mutex_lock(&resource->resource_lock);
286 list_for_each_entry(dep, &resource->dependents, node) {
287 if (dep->dev == dev) {
288 list_del(&dep->node);
289 kfree(dep);
290 dev_dbg(dev, "removed power dependency to [%s]\n",
Rafael J. Wysocki2bc4eb92021-08-25 20:31:10 +0200291 resource_dev_name(resource));
Mika Westerberg45337712019-06-25 13:29:41 +0300292 break;
293 }
294 }
295 mutex_unlock(&resource->resource_lock);
296}
297
298/**
299 * acpi_device_power_add_dependent - Add dependent device of this ACPI device
300 * @adev: ACPI device pointer
301 * @dev: Dependent device
302 *
303 * If @adev has non-empty _PR0 the @dev is added as dependent device to all
304 * power resources returned by it. This means that whenever these power
305 * resources are turned _ON the dependent devices get runtime resumed. This
306 * is needed for devices such as PCI to allow its driver to re-initialize
307 * it after it went to D0uninitialized.
308 *
309 * If @adev does not have _PR0 this does nothing.
310 *
311 * Returns %0 in case of success and negative errno otherwise.
312 */
313int acpi_device_power_add_dependent(struct acpi_device *adev,
314 struct device *dev)
315{
316 struct acpi_power_resource_entry *entry;
317 struct list_head *resources;
318 int ret;
319
320 if (!adev->flags.power_manageable)
321 return 0;
322
323 resources = &adev->power.states[ACPI_STATE_D0].resources;
324 list_for_each_entry(entry, resources, node) {
325 ret = acpi_power_resource_add_dependent(entry->resource, dev);
326 if (ret)
327 goto err;
328 }
329
330 return 0;
331
332err:
333 list_for_each_entry(entry, resources, node)
334 acpi_power_resource_remove_dependent(entry->resource, dev);
335
336 return ret;
337}
338
339/**
340 * acpi_device_power_remove_dependent - Remove dependent device
341 * @adev: ACPI device pointer
342 * @dev: Dependent device
343 *
344 * Does the opposite of acpi_device_power_add_dependent() and removes the
345 * dependent device if it is found. Can be called to @adev that does not
346 * have _PR0 as well.
347 */
348void acpi_device_power_remove_dependent(struct acpi_device *adev,
349 struct device *dev)
350{
351 struct acpi_power_resource_entry *entry;
352 struct list_head *resources;
353
354 if (!adev->flags.power_manageable)
355 return;
356
357 resources = &adev->power.states[ACPI_STATE_D0].resources;
358 list_for_each_entry_reverse(entry, resources, node)
359 acpi_power_resource_remove_dependent(entry->resource, dev);
360}
361
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200362static int __acpi_power_on(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Rafael J. Wysockifad40a62021-08-27 21:07:58 +0200364 acpi_handle handle = resource->device.handle;
Mika Westerberg45337712019-06-25 13:29:41 +0300365 struct acpi_power_dependent_device *dep;
Len Brown4be44fc2005-08-05 00:44:28 -0400366 acpi_status status = AE_OK;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500367
Rafael J. Wysockifad40a62021-08-27 21:07:58 +0200368 status = acpi_evaluate_object(handle, "_ON", NULL, NULL);
Rafael J. Wysockica84f182021-05-24 17:25:23 +0200369 if (ACPI_FAILURE(status)) {
370 resource->state = ACPI_POWER_RESOURCE_STATE_UNKNOWN;
Patrick Mocheld550d982006-06-27 00:41:40 -0400371 return -ENODEV;
Rafael J. Wysockica84f182021-05-24 17:25:23 +0200372 }
373
374 resource->state = ACPI_POWER_RESOURCE_STATE_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Rafael J. Wysockifad40a62021-08-27 21:07:58 +0200376 acpi_handle_debug(handle, "Power resource turned on\n");
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200377
Mika Westerberg45337712019-06-25 13:29:41 +0300378 /*
379 * If there are other dependents on this power resource we need to
380 * resume them now so that their drivers can re-initialize the
381 * hardware properly after it went back to D0.
382 */
383 if (list_empty(&resource->dependents) ||
384 list_is_singular(&resource->dependents))
385 return 0;
386
387 list_for_each_entry(dep, &resource->dependents, node) {
388 dev_dbg(dep->dev, "runtime resuming because [%s] turned on\n",
Rafael J. Wysocki2bc4eb92021-08-25 20:31:10 +0200389 resource_dev_name(resource));
Mika Westerberg45337712019-06-25 13:29:41 +0300390 pm_request_resume(dep->dev);
391 }
392
Patrick Mocheld550d982006-06-27 00:41:40 -0400393 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100396static int acpi_power_on_unlocked(struct acpi_power_resource *resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100398 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200399
400 if (resource->ref_count++) {
Rafael J. Wysockifad40a62021-08-27 21:07:58 +0200401 acpi_handle_debug(resource->device.handle,
402 "Power resource already on\n");
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200403 } else {
404 result = __acpi_power_on(resource);
Rafael J. Wysocki41863fc2013-10-16 23:05:42 +0200405 if (result)
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100406 resource->ref_count--;
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500407 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100408 return result;
409}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100411static int acpi_power_on(struct acpi_power_resource *resource)
412{
413 int result;
414
415 mutex_lock(&resource->resource_lock);
416 result = acpi_power_on_unlocked(resource);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500417 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki12b3b5a2010-11-25 00:03:32 +0100418 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100421static int __acpi_power_off(struct acpi_power_resource *resource)
422{
Rafael J. Wysockifad40a62021-08-27 21:07:58 +0200423 acpi_handle handle = resource->device.handle;
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100424 acpi_status status;
425
Rafael J. Wysockifad40a62021-08-27 21:07:58 +0200426 status = acpi_evaluate_object(handle, "_OFF", NULL, NULL);
Rafael J. Wysockica84f182021-05-24 17:25:23 +0200427 if (ACPI_FAILURE(status)) {
428 resource->state = ACPI_POWER_RESOURCE_STATE_UNKNOWN;
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100429 return -ENODEV;
Rafael J. Wysockica84f182021-05-24 17:25:23 +0200430 }
431
432 resource->state = ACPI_POWER_RESOURCE_STATE_OFF;
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100433
Rafael J. Wysockifad40a62021-08-27 21:07:58 +0200434 acpi_handle_debug(handle, "Power resource turned off\n");
Rafael J. Wysocki56ce8332021-01-20 19:57:03 +0100435
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100436 return 0;
437}
438
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100439static int acpi_power_off_unlocked(struct acpi_power_resource *resource)
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200440{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100441 int result = 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200442
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200443 if (!resource->ref_count) {
Rafael J. Wysockifad40a62021-08-27 21:07:58 +0200444 acpi_handle_debug(resource->device.handle,
445 "Power resource already off\n");
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100446 return 0;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200447 }
448
449 if (--resource->ref_count) {
Rafael J. Wysockifad40a62021-08-27 21:07:58 +0200450 acpi_handle_debug(resource->device.handle,
451 "Power resource still in use\n");
Rafael J. Wysocki660b1112013-01-25 21:51:57 +0100452 } else {
453 result = __acpi_power_off(resource);
454 if (result)
455 resource->ref_count++;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200456 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100457 return result;
458}
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200459
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100460static int acpi_power_off(struct acpi_power_resource *resource)
461{
462 int result;
463
464 mutex_lock(&resource->resource_lock);
465 result = acpi_power_off_unlocked(resource);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200466 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +0200467 return result;
468}
469
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100470static int acpi_power_off_list(struct list_head *list)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100471{
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100472 struct acpi_power_resource_entry *entry;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100473 int result = 0;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100474
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100475 list_for_each_entry_reverse(entry, list, node) {
476 result = acpi_power_off(entry->resource);
477 if (result)
478 goto err;
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100479 }
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100480 return 0;
481
482 err:
483 list_for_each_entry_continue(entry, list, node)
484 acpi_power_on(entry->resource);
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100485
486 return result;
487}
488
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100489static int acpi_power_on_list(struct list_head *list)
490{
491 struct acpi_power_resource_entry *entry;
492 int result = 0;
493
494 list_for_each_entry(entry, list, node) {
495 result = acpi_power_on(entry->resource);
496 if (result)
497 goto err;
498 }
499 return 0;
500
501 err:
502 list_for_each_entry_continue_reverse(entry, list, node)
503 acpi_power_off(entry->resource);
504
505 return result;
506}
507
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100508static struct attribute *attrs[] = {
509 NULL,
510};
511
Arvind Yadav26408b22017-06-30 17:39:05 +0530512static const struct attribute_group attr_groups[] = {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100513 [ACPI_STATE_D0] = {
514 .name = "power_resources_D0",
515 .attrs = attrs,
516 },
517 [ACPI_STATE_D1] = {
518 .name = "power_resources_D1",
519 .attrs = attrs,
520 },
521 [ACPI_STATE_D2] = {
522 .name = "power_resources_D2",
523 .attrs = attrs,
524 },
525 [ACPI_STATE_D3_HOT] = {
526 .name = "power_resources_D3hot",
527 .attrs = attrs,
528 },
529};
530
Arvind Yadav26408b22017-06-30 17:39:05 +0530531static const struct attribute_group wakeup_attr_group = {
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200532 .name = "power_resources_wakeup",
533 .attrs = attrs,
534};
535
536static void acpi_power_hide_list(struct acpi_device *adev,
537 struct list_head *resources,
Arvind Yadav26408b22017-06-30 17:39:05 +0530538 const struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100539{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100540 struct acpi_power_resource_entry *entry;
541
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200542 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100543 return;
544
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200545 list_for_each_entry_reverse(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100546 struct acpi_device *res_dev = &entry->resource->device;
547
548 sysfs_remove_link_from_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200549 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100550 dev_name(&res_dev->dev));
551 }
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200552 sysfs_remove_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100553}
554
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200555static void acpi_power_expose_list(struct acpi_device *adev,
556 struct list_head *resources,
Arvind Yadav26408b22017-06-30 17:39:05 +0530557 const struct attribute_group *attr_group)
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100558{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100559 struct acpi_power_resource_entry *entry;
560 int ret;
561
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200562 if (list_empty(resources))
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100563 return;
564
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200565 ret = sysfs_create_group(&adev->dev.kobj, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100566 if (ret)
567 return;
568
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200569 list_for_each_entry(entry, resources, node) {
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100570 struct acpi_device *res_dev = &entry->resource->device;
571
572 ret = sysfs_add_link_to_group(&adev->dev.kobj,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200573 attr_group->name,
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100574 &res_dev->dev.kobj,
575 dev_name(&res_dev->dev));
576 if (ret) {
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200577 acpi_power_hide_list(adev, resources, attr_group);
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100578 break;
579 }
580 }
581}
582
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200583static void acpi_power_expose_hide(struct acpi_device *adev,
584 struct list_head *resources,
Arvind Yadav26408b22017-06-30 17:39:05 +0530585 const struct attribute_group *attr_group,
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200586 bool expose)
587{
588 if (expose)
589 acpi_power_expose_list(adev, resources, attr_group);
590 else
591 acpi_power_hide_list(adev, resources, attr_group);
592}
593
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100594void acpi_power_add_remove_device(struct acpi_device *adev, bool add)
595{
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100596 int state;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100597
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200598 if (adev->wakeup.flags.valid)
599 acpi_power_expose_hide(adev, &adev->wakeup.resources,
600 &wakeup_attr_group, add);
601
Rafael J. Wysocki18a38702013-01-25 21:51:32 +0100602 if (!adev->power.flags.power_resources)
603 return;
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100604
Rafael J. Wysocki41a2a462013-04-11 22:41:48 +0200605 for (state = ACPI_STATE_D0; state <= ACPI_STATE_D3_HOT; state++)
606 acpi_power_expose_hide(adev,
607 &adev->power.states[state].resources,
608 &attr_groups[state], add);
Lin Ming0090def2012-03-29 14:09:39 +0800609}
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100610
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100611int acpi_power_wakeup_list_init(struct list_head *list, int *system_level_p)
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100612{
613 struct acpi_power_resource_entry *entry;
614 int system_level = 5;
615
616 list_for_each_entry(entry, list, node) {
617 struct acpi_power_resource *resource = entry->resource;
Rafael J. Wysocki587024b2021-05-24 17:24:16 +0200618 u8 state;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100619
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100620 mutex_lock(&resource->resource_lock);
621
Rafael J. Wysocki7a632962021-10-15 19:01:28 +0200622 /*
623 * Make sure that the power resource state and its reference
624 * counter value are consistent with each other.
625 */
626 if (!resource->ref_count &&
627 !acpi_power_get_state(resource, &state) &&
628 state == ACPI_POWER_RESOURCE_STATE_ON)
629 __acpi_power_off(resource);
630
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100631 if (system_level > resource->system_level)
632 system_level = resource->system_level;
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100633
634 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100635 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100636 *system_level_p = system_level;
637 return 0;
Rafael J. Wysocki0596a522013-01-17 14:11:07 +0100638}
639
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100640/* --------------------------------------------------------------------------
641 Device Power Management
642 -------------------------------------------------------------------------- */
Lin Ming0090def2012-03-29 14:09:39 +0800643
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200644/**
645 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
646 * ACPI 3.0) _PSW (Power State Wake)
647 * @dev: Device to handle.
648 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
649 * @sleep_state: Target sleep state of the system.
650 * @dev_state: Target power state of the device.
651 *
652 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
653 * State Wake) for the device, if present. On failure reset the device's
654 * wakeup.flags.valid flag.
655 *
656 * RETURN VALUE:
657 * 0 if either _DSW or _PSW has been successfully executed
658 * 0 if neither _DSW nor _PSW has been found
659 * -ENODEV if the execution of either _DSW or _PSW has failed
660 */
661int acpi_device_sleep_wake(struct acpi_device *dev,
Maximilian Luzc6237b22020-11-05 03:06:00 +0100662 int enable, int sleep_state, int dev_state)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200663{
664 union acpi_object in_arg[3];
665 struct acpi_object_list arg_list = { 3, in_arg };
666 acpi_status status = AE_OK;
667
668 /*
669 * Try to execute _DSW first.
670 *
Bjorn Helgaas603fadf2019-03-25 13:34:00 -0500671 * Three arguments are needed for the _DSW object:
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200672 * Argument 0: enable/disable the wake capabilities
673 * Argument 1: target system state
674 * Argument 2: target device state
675 * When _DSW object is called to disable the wake capabilities, maybe
Bjorn Helgaas603fadf2019-03-25 13:34:00 -0500676 * the first argument is filled. The values of the other two arguments
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200677 * are meaningless.
678 */
679 in_arg[0].type = ACPI_TYPE_INTEGER;
680 in_arg[0].integer.value = enable;
681 in_arg[1].type = ACPI_TYPE_INTEGER;
682 in_arg[1].integer.value = sleep_state;
683 in_arg[2].type = ACPI_TYPE_INTEGER;
684 in_arg[2].integer.value = dev_state;
685 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
686 if (ACPI_SUCCESS(status)) {
687 return 0;
688 } else if (status != AE_NOT_FOUND) {
Rafael J. Wysocki56ce8332021-01-20 19:57:03 +0100689 acpi_handle_info(dev->handle, "_DSW execution failed\n");
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200690 dev->wakeup.flags.valid = 0;
691 return -ENODEV;
692 }
693
694 /* Execute _PSW */
Jiang Liu0db98202013-06-29 00:24:39 +0800695 status = acpi_execute_simple_method(dev->handle, "_PSW", enable);
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200696 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Rafael J. Wysocki56ce8332021-01-20 19:57:03 +0100697 acpi_handle_info(dev->handle, "_PSW execution failed\n");
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200698 dev->wakeup.flags.valid = 0;
699 return -ENODEV;
700 }
701
702 return 0;
703}
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705/*
706 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
Maximilian Luzc6237b22020-11-05 03:06:00 +0100707 * 1. Power on the power resources required for the wakeup device
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200708 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
709 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200711int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100713 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100714 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200717 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200719 mutex_lock(&acpi_device_lock);
720
721 if (dev->wakeup.prepare_count++)
722 goto out;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200723
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100724 list_for_each_entry(entry, &dev->wakeup.resources, node) {
725 struct acpi_power_resource *resource = entry->resource;
726
727 mutex_lock(&resource->resource_lock);
728
729 if (!resource->wakeup_enabled) {
730 err = acpi_power_on_unlocked(resource);
731 if (!err)
732 resource->wakeup_enabled = true;
733 }
734
735 mutex_unlock(&resource->resource_lock);
736
737 if (err) {
738 dev_err(&dev->dev,
739 "Cannot turn wakeup power resources on\n");
740 dev->wakeup.flags.valid = 0;
741 goto out;
742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100744 /*
745 * Passing 3 as the third argument below means the device may be
746 * put into arbitrary power state afterward.
747 */
748 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200749 if (err)
750 dev->wakeup.prepare_count = 0;
751
752 out:
753 mutex_unlock(&acpi_device_lock);
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200754 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
757/*
758 * Shutdown a wakeup device, counterpart of above method
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200759 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
760 * State Wake) for the device, if present
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 * 2. Shutdown down the power resources
762 */
Len Brown4be44fc2005-08-05 00:44:28 -0400763int acpi_disable_wakeup_device_power(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100765 struct acpi_power_resource_entry *entry;
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100766 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 if (!dev || !dev->wakeup.flags.valid)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200769 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200771 mutex_lock(&acpi_device_lock);
772
773 if (--dev->wakeup.prepare_count > 0)
774 goto out;
775
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200776 /*
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200777 * Executing the code below even if prepare_count is already zero when
778 * the function is called may be useful, for example for initialisation.
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200779 */
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200780 if (dev->wakeup.prepare_count < 0)
781 dev->wakeup.prepare_count = 0;
Rafael J. Wysocki0af4b8c2008-07-07 03:34:11 +0200782
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200783 err = acpi_device_sleep_wake(dev, 0, 0, 0);
784 if (err)
785 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +0100787 list_for_each_entry(entry, &dev->wakeup.resources, node) {
788 struct acpi_power_resource *resource = entry->resource;
789
790 mutex_lock(&resource->resource_lock);
791
792 if (resource->wakeup_enabled) {
793 err = acpi_power_off_unlocked(resource);
794 if (!err)
795 resource->wakeup_enabled = false;
796 }
797
798 mutex_unlock(&resource->resource_lock);
799
800 if (err) {
801 dev_err(&dev->dev,
802 "Cannot turn wakeup power resources off\n");
803 dev->wakeup.flags.valid = 0;
804 break;
805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200808 out:
809 mutex_unlock(&acpi_device_lock);
810 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100813int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Rafael J. Wysocki587024b2021-05-24 17:24:16 +0200815 u8 list_state = ACPI_POWER_RESOURCE_STATE_OFF;
Len Brown4be44fc2005-08-05 00:44:28 -0400816 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400817 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100819 if (!device || !state)
Patrick Mocheld550d982006-06-27 00:41:40 -0400820 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /*
823 * We know a device's inferred power state when all the resources
824 * required for a given D-state are 'on'.
825 */
Rafael J. Wysocki38c92ff2012-05-20 13:58:00 +0200826 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100827 struct list_head *list = &device->power.states[i].resources;
828
829 if (list_empty(list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 continue;
831
832 result = acpi_power_get_list_state(list, &list_state);
833 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400834 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysocki32a00d22010-11-25 00:05:17 +0100837 *state = i;
Patrick Mocheld550d982006-06-27 00:41:40 -0400838 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840 }
841
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +0200842 *state = device->power.states[ACPI_STATE_D3_COLD].flags.valid ?
843 ACPI_STATE_D3_COLD : ACPI_STATE_D3_HOT;
Patrick Mocheld550d982006-06-27 00:41:40 -0400844 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
Rafael J. Wysocki30d3df412010-11-25 00:06:55 +0100847int acpi_power_on_resources(struct acpi_device *device, int state)
848{
Rafael J. Wysocki87e753b2013-01-22 12:56:16 +0100849 if (!device || state < ACPI_STATE_D0 || state > ACPI_STATE_D3_HOT)
Rafael J. Wysocki30d3df412010-11-25 00:06:55 +0100850 return -EINVAL;
851
852 return acpi_power_on_list(&device->power.states[state].resources);
853}
854
Len Brown4be44fc2005-08-05 00:44:28 -0400855int acpi_power_transition(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200857 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800859 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400860 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100862 if (device->power.state == state || !device->flags.power_manageable)
Rafael J. Wysocki212967c2010-11-25 00:02:36 +0100863 return 0;
864
Len Brown4be44fc2005-08-05 00:44:28 -0400865 if ((device->power.state < ACPI_STATE_D0)
Zhang Rui3ebc81b2012-03-29 14:09:38 +0800866 || (device->power.state > ACPI_STATE_D3_COLD))
Patrick Mocheld550d982006-06-27 00:41:40 -0400867 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
870 * First we reference all power resources required in the target list
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100871 * (e.g. so the device doesn't lose power while transitioning). Then,
872 * we dereference all power resources used in the current list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 */
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200874 if (state < ACPI_STATE_D3_COLD)
875 result = acpi_power_on_list(
876 &device->power.states[state].resources);
877
878 if (!result && device->power.state < ACPI_STATE_D3_COLD)
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100879 acpi_power_off_list(
880 &device->power.states[device->power.state].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Rafael J. Wysockid2ef5552010-11-25 00:06:09 +0100882 /* We shouldn't change the state unless the above operations succeed. */
883 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Patrick Mocheld550d982006-06-27 00:41:40 -0400885 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100888static void acpi_release_power_resource(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100890 struct acpi_device *device = to_acpi_device(dev);
891 struct acpi_power_resource *resource;
892
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100893 resource = container_of(device, struct acpi_power_resource, device);
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100894
895 mutex_lock(&power_resource_list_lock);
896 list_del(&resource->list_node);
897 mutex_unlock(&power_resource_list_lock);
898
Toshi Kanic0af4172013-03-04 21:30:42 +0000899 acpi_free_pnp_ids(&device->pnp);
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100900 kfree(resource);
901}
902
Dwaipayan Ray0f39ee82020-12-17 18:15:36 +0530903static ssize_t resource_in_use_show(struct device *dev,
904 struct device_attribute *attr,
905 char *buf)
906{
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100907 struct acpi_power_resource *resource;
908
909 resource = to_power_resource(to_acpi_device(dev));
910 return sprintf(buf, "%u\n", !!resource->ref_count);
911}
Dwaipayan Ray0f39ee82020-12-17 18:15:36 +0530912static DEVICE_ATTR_RO(resource_in_use);
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100913
914static void acpi_power_sysfs_remove(struct acpi_device *device)
915{
916 device_remove_file(&device->dev, &dev_attr_resource_in_use);
917}
918
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200919static void acpi_power_add_resource_to_list(struct acpi_power_resource *resource)
920{
921 mutex_lock(&power_resource_list_lock);
922
923 if (!list_empty(&acpi_power_resource_list)) {
924 struct acpi_power_resource *r;
925
926 list_for_each_entry(r, &acpi_power_resource_list, list_node)
927 if (r->order > resource->order) {
928 list_add_tail(&resource->list_node, &r->list_node);
929 goto out;
930 }
931 }
932 list_add_tail(&resource->list_node, &acpi_power_resource_list);
933
934 out:
935 mutex_unlock(&power_resource_list_lock);
936}
937
Rafael J. Wysocki9b7ff252021-05-21 15:13:11 +0200938struct acpi_device *acpi_add_power_resource(acpi_handle handle)
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100939{
940 struct acpi_power_resource *resource;
941 struct acpi_device *device = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400942 union acpi_object acpi_object;
943 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100944 acpi_status status;
Rafael J. Wysockia1224f32021-10-15 19:14:10 +0200945 u8 state_dummy;
Rafael J. Wysocki587024b2021-05-24 17:24:16 +0200946 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100948 acpi_bus_get_device(handle, &device);
949 if (device)
Rafael J. Wysocki9b7ff252021-05-21 15:13:11 +0200950 return device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100952 resource = kzalloc(sizeof(*resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (!resource)
Rafael J. Wysocki9b7ff252021-05-21 15:13:11 +0200954 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100956 device = &resource->device;
Rafael J. Wysockic830dbc2021-04-07 16:33:38 +0200957 acpi_init_device_object(device, handle, ACPI_BUS_TYPE_POWER);
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500958 mutex_init(&resource->resource_lock);
Rafael J. Wysocki6ee22e9d2013-06-19 00:44:45 +0200959 INIT_LIST_HEAD(&resource->list_node);
Mika Westerberg45337712019-06-25 13:29:41 +0300960 INIT_LIST_HEAD(&resource->dependents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
962 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
Rafael J. Wysocki722c9292013-01-17 14:11:06 +0100963 device->power.state = ACPI_STATE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Tom Saeger935ab852021-03-12 18:55:35 -0700965 /* Evaluate the object to get the system level and resource order. */
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100966 status = acpi_evaluate_object(handle, NULL, NULL, &buffer);
967 if (ACPI_FAILURE(status))
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100968 goto err;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 resource->system_level = acpi_object.power_resource.system_level;
971 resource->order = acpi_object.power_resource.resource_order;
Rafael J. Wysockica84f182021-05-24 17:25:23 +0200972 resource->state = ACPI_POWER_RESOURCE_STATE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Rafael J. Wysockia1224f32021-10-15 19:14:10 +0200974 /* Get the initial state or just flip it on if that fails. */
975 if (acpi_power_get_state(resource, &state_dummy))
976 __acpi_power_on(resource);
977
Rafael J. Wysockica84f182021-05-24 17:25:23 +0200978 pr_info("%s [%s]\n", acpi_device_name(device), acpi_device_bid(device));
Len Brown4be44fc2005-08-05 00:44:28 -0400979
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100980 device->flags.match_driver = true;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100981 result = acpi_device_add(device, acpi_release_power_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (result)
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100983 goto err;
Len Brown4be44fc2005-08-05 00:44:28 -0400984
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100985 if (!device_create_file(&device->dev, &dev_attr_resource_in_use))
986 device->remove = acpi_power_sysfs_remove;
987
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +0200988 acpi_power_add_resource_to_list(resource);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100989 acpi_device_add_finalize(device);
Rafael J. Wysocki9b7ff252021-05-21 15:13:11 +0200990 return device;
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100991
992 err:
993 acpi_release_power_resource(&device->dev);
Rafael J. Wysocki9b7ff252021-05-21 15:13:11 +0200994 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100997#ifdef CONFIG_ACPI_SLEEP
998void acpi_resume_power_resources(void)
Konstantin Karasyov0a613902007-02-16 01:47:06 -0500999{
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +02001000 struct acpi_power_resource *resource;
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001001
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001002 mutex_lock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001003
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001004 list_for_each_entry(resource, &acpi_power_resource_list, list_node) {
Rafael J. Wysocki587024b2021-05-24 17:24:16 +02001005 int result;
1006 u8 state;
Rafael J. Wysocki3e384ee2010-10-22 02:35:54 +02001007
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001008 mutex_lock(&resource->resource_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001009
Rafael J. Wysockica84f182021-05-24 17:25:23 +02001010 resource->state = ACPI_POWER_RESOURCE_STATE_UNKNOWN;
1011 result = acpi_power_get_state(resource, &state);
Lan Tianyud7d49012013-10-15 19:48:11 +08001012 if (result) {
1013 mutex_unlock(&resource->resource_lock);
Rafael J. Wysocki660b1112013-01-25 21:51:57 +01001014 continue;
Lan Tianyud7d49012013-10-15 19:48:11 +08001015 }
Rafael J. Wysocki660b1112013-01-25 21:51:57 +01001016
1017 if (state == ACPI_POWER_RESOURCE_STATE_OFF
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001018 && resource->ref_count) {
Rafael J. Wysockifad40a62021-08-27 21:07:58 +02001019 acpi_handle_debug(resource->device.handle, "Turning ON\n");
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001020 __acpi_power_on(resource);
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +02001021 }
1022
1023 mutex_unlock(&resource->resource_lock);
1024 }
Hans de Goede8ece1d82017-04-30 22:54:16 +02001025
1026 mutex_unlock(&power_resource_list_lock);
1027}
Rafael J. Wysocki29038ae2021-05-10 14:02:17 +02001028#endif
Hans de Goede8ece1d82017-04-30 22:54:16 +02001029
Rafael J. Wysocki9b7ff252021-05-21 15:13:11 +02001030/**
1031 * acpi_turn_off_unused_power_resources - Turn off power resources not in use.
Rafael J. Wysocki9b7ff252021-05-21 15:13:11 +02001032 */
Rafael J. Wysocki63811952021-05-24 17:26:16 +02001033void acpi_turn_off_unused_power_resources(void)
Hans de Goede8ece1d82017-04-30 22:54:16 +02001034{
1035 struct acpi_power_resource *resource;
1036
1037 mutex_lock(&power_resource_list_lock);
1038
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +02001039 list_for_each_entry_reverse(resource, &acpi_power_resource_list, list_node) {
Rafael J. Wysockid5eefa82015-05-21 04:19:49 +02001040 mutex_lock(&resource->resource_lock);
1041
Rafael J. Wysocki63811952021-05-24 17:26:16 +02001042 if (!resource->ref_count &&
Rafael J. Wysockibc283682021-10-15 19:12:21 +02001043 resource->state == ACPI_POWER_RESOURCE_STATE_ON) {
Rafael J. Wysockifad40a62021-08-27 21:07:58 +02001044 acpi_handle_debug(resource->device.handle, "Turning OFF\n");
Rafael J. Wysocki63811952021-05-24 17:26:16 +02001045 __acpi_power_off(resource);
1046 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001047
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001048 mutex_unlock(&resource->resource_lock);
1049 }
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001050
Rafael J. Wysocki781d7372013-01-17 14:11:06 +01001051 mutex_unlock(&power_resource_list_lock);
Konstantin Karasyov0a613902007-02-16 01:47:06 -05001052}