]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/acpi/power.c
ACPI / PM: Add functions for manipulating lists of power resources
[mirror_ubuntu-zesty-kernel.git] / drivers / acpi / power.c
CommitLineData
1da177e4
LT
1/*
2 * acpi_power.c - ACPI Bus Power Management ($Revision: 39 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26/*
27 * ACPI power-managed devices may be controlled in two ways:
28 * 1. via "Device Specific (D-State) Control"
29 * 2. via "Power Resource Control".
30 * This module is used to manage devices relying on Power Resource Control.
31 *
32 * An ACPI "power resource object" describes a software controllable power
33 * plane, clock plane, or other resource used by a power managed device.
34 * A device may rely on multiple power resources, and a power resource
35 * may be shared by multiple devices.
36 */
37
38#include <linux/kernel.h>
39#include <linux/module.h>
40#include <linux/init.h>
41#include <linux/types.h>
5a0e3ad6 42#include <linux/slab.h>
1da177e4
LT
43#include <acpi/acpi_bus.h>
44#include <acpi/acpi_drivers.h>
9b83ccd2
RW
45#include "sleep.h"
46
a192a958
LB
47#define PREFIX "ACPI: "
48
89595b8f 49#define _COMPONENT ACPI_POWER_COMPONENT
f52fd66d 50ACPI_MODULE_NAME("power");
1da177e4 51#define ACPI_POWER_CLASS "power_resource"
1da177e4
LT
52#define ACPI_POWER_DEVICE_NAME "Power Resource"
53#define ACPI_POWER_FILE_INFO "info"
54#define ACPI_POWER_FILE_STATUS "state"
55#define ACPI_POWER_RESOURCE_STATE_OFF 0x00
56#define ACPI_POWER_RESOURCE_STATE_ON 0x01
57#define ACPI_POWER_RESOURCE_STATE_UNKNOWN 0xFF
f5adfaa3 58
f5adfaa3
ZY
59int acpi_power_nocheck;
60module_param_named(power_nocheck, acpi_power_nocheck, bool, 000);
61
4be44fcd
LB
62static int acpi_power_add(struct acpi_device *device);
63static int acpi_power_remove(struct acpi_device *device, int type);
e8363f33 64static int acpi_power_resume(struct acpi_device *device);
1da177e4 65
c97adf9e 66static const struct acpi_device_id power_device_ids[] = {
1ba90e3a
TR
67 {ACPI_POWER_HID, 0},
68 {"", 0},
69};
70MODULE_DEVICE_TABLE(acpi, power_device_ids);
71
1da177e4 72static struct acpi_driver acpi_power_driver = {
c2b6705b 73 .name = "power",
4be44fcd 74 .class = ACPI_POWER_CLASS,
1ba90e3a 75 .ids = power_device_ids,
4be44fcd
LB
76 .ops = {
77 .add = acpi_power_add,
78 .remove = acpi_power_remove,
0a613902 79 .resume = acpi_power_resume,
4be44fcd 80 },
1da177e4
LT
81};
82
4be44fcd 83struct acpi_power_resource {
41598572 84 struct acpi_device * device;
4be44fcd
LB
85 acpi_bus_id name;
86 u32 system_level;
87 u32 order;
3e384ee6 88 unsigned int ref_count;
0a613902 89 struct mutex resource_lock;
1da177e4
LT
90};
91
4be44fcd 92static struct list_head acpi_power_resource_list;
1da177e4 93
1da177e4
LT
94/* --------------------------------------------------------------------------
95 Power Resource Management
96 -------------------------------------------------------------------------- */
97
98static int
4be44fcd
LB
99acpi_power_get_context(acpi_handle handle,
100 struct acpi_power_resource **resource)
1da177e4 101{
4be44fcd
LB
102 int result = 0;
103 struct acpi_device *device = NULL;
1da177e4 104
1da177e4
LT
105
106 if (!resource)
d550d98d 107 return -ENODEV;
1da177e4
LT
108
109 result = acpi_bus_get_device(handle, &device);
110 if (result) {
cece9296 111 printk(KERN_WARNING PREFIX "Getting context [%p]\n", handle);
d550d98d 112 return result;
1da177e4
LT
113 }
114
50dd0969 115 *resource = acpi_driver_data(device);
a815ab8b 116 if (!*resource)
d550d98d 117 return -ENODEV;
1da177e4 118
d550d98d 119 return 0;
1da177e4
LT
120}
121
a51e145f 122static int acpi_power_get_state(acpi_handle handle, int *state)
1da177e4 123{
4be44fcd 124 acpi_status status = AE_OK;
27663c58 125 unsigned long long sta = 0;
60a4ce7f
LM
126 char node_name[5];
127 struct acpi_buffer buffer = { sizeof(node_name), node_name };
1da177e4 128
1da177e4 129
a51e145f 130 if (!handle || !state)
d550d98d 131 return -EINVAL;
1da177e4 132
a51e145f 133 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
1da177e4 134 if (ACPI_FAILURE(status))
d550d98d 135 return -ENODEV;
1da177e4 136
c35923bc
AS
137 *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
138 ACPI_POWER_RESOURCE_STATE_OFF;
1da177e4 139
60a4ce7f
LM
140 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
141
1da177e4 142 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
60a4ce7f 143 node_name,
b1b57fbe 144 *state ? "on" : "off"));
1da177e4 145
d550d98d 146 return 0;
1da177e4
LT
147}
148
4be44fcd 149static int acpi_power_get_list_state(struct acpi_handle_list *list, int *state)
1da177e4 150{
c35923bc 151 int result = 0, state1;
4be44fcd 152 u32 i = 0;
1da177e4 153
1da177e4
LT
154
155 if (!list || !state)
d550d98d 156 return -EINVAL;
1da177e4
LT
157
158 /* The state of the list is 'on' IFF all resources are 'on'. */
159
4be44fcd 160 for (i = 0; i < list->count; i++) {
a51e145f
ZY
161 /*
162 * The state of the power resource can be obtained by
163 * using the ACPI handle. In such case it is unnecessary to
164 * get the Power resource first and then get its state again.
165 */
166 result = acpi_power_get_state(list->handles[i], &state1);
1da177e4 167 if (result)
d550d98d 168 return result;
1da177e4 169
c35923bc 170 *state = state1;
1da177e4
LT
171
172 if (*state != ACPI_POWER_RESOURCE_STATE_ON)
173 break;
174 }
175
176 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
4be44fcd 177 *state ? "on" : "off"));
1da177e4 178
d550d98d 179 return result;
1da177e4
LT
180}
181
3e384ee6 182static int __acpi_power_on(struct acpi_power_resource *resource)
1da177e4 183{
4be44fcd 184 acpi_status status = AE_OK;
1da177e4 185
3e384ee6
RW
186 status = acpi_evaluate_object(resource->device->handle, "_ON", NULL, NULL);
187 if (ACPI_FAILURE(status))
188 return -ENODEV;
189
190 /* Update the power resource's _device_ power state */
191 resource->device->power.state = ACPI_STATE_D0;
192
193 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Power resource [%s] turned on\n",
194 resource->name));
195
196 return 0;
197}
198
199static int acpi_power_on(acpi_handle handle)
200{
201 int result = 0;
202 struct acpi_power_resource *resource = NULL;
1da177e4
LT
203
204 result = acpi_power_get_context(handle, &resource);
205 if (result)
d550d98d 206 return result;
1da177e4 207
0a613902 208 mutex_lock(&resource->resource_lock);
0a613902 209
3e384ee6
RW
210 if (resource->ref_count++) {
211 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
212 "Power resource [%s] already on",
213 resource->name));
214 } else {
215 result = __acpi_power_on(resource);
12b3b5af
RW
216 if (result)
217 resource->ref_count--;
0a613902 218 }
1da177e4 219
3e384ee6 220 mutex_unlock(&resource->resource_lock);
1da177e4 221
12b3b5af 222 return result;
1da177e4
LT
223}
224
3e384ee6 225static int acpi_power_off_device(acpi_handle handle)
1da177e4 226{
bdf43bbf 227 int result = 0;
4be44fcd 228 acpi_status status = AE_OK;
1da177e4 229 struct acpi_power_resource *resource = NULL;
0a613902 230
1da177e4
LT
231 result = acpi_power_get_context(handle, &resource);
232 if (result)
d550d98d 233 return result;
1da177e4 234
0a613902 235 mutex_lock(&resource->resource_lock);
3e384ee6
RW
236
237 if (!resource->ref_count) {
238 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
239 "Power resource [%s] already off",
240 resource->name));
241 goto unlock;
0a613902 242 }
1da177e4 243
3e384ee6
RW
244 if (--resource->ref_count) {
245 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
246 "Power resource [%s] still in use\n",
247 resource->name));
248 goto unlock;
1da177e4
LT
249 }
250
5fbc19ef 251 status = acpi_evaluate_object(resource->device->handle, "_OFF", NULL, NULL);
3e384ee6
RW
252 if (ACPI_FAILURE(status)) {
253 result = -ENODEV;
254 } else {
255 /* Update the power resource's _device_ power state */
256 resource->device->power.state = ACPI_STATE_D3;
1da177e4 257
3e384ee6
RW
258 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
259 "Power resource [%s] turned off\n",
260 resource->name));
261 }
1da177e4 262
3e384ee6
RW
263 unlock:
264 mutex_unlock(&resource->resource_lock);
1da177e4 265
3e384ee6 266 return result;
1da177e4
LT
267}
268
d2ef555b
RW
269static void __acpi_power_off_list(struct acpi_handle_list *list, int num_res)
270{
271 int i;
272
273 for (i = num_res - 1; i >= 0 ; i--)
274 acpi_power_off_device(list->handles[i]);
275}
276
277static void acpi_power_off_list(struct acpi_handle_list *list)
278{
279 __acpi_power_off_list(list, list->count);
280}
281
282static int acpi_power_on_list(struct acpi_handle_list *list)
283{
284 int result = 0;
285 int i;
286
287 for (i = 0; i < list->count; i++) {
288 result = acpi_power_on(list->handles[i]);
289 if (result) {
290 __acpi_power_off_list(list, i);
291 break;
292 }
293 }
294
295 return result;
296}
297
77e76609
RW
298/**
299 * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
300 * ACPI 3.0) _PSW (Power State Wake)
301 * @dev: Device to handle.
302 * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
303 * @sleep_state: Target sleep state of the system.
304 * @dev_state: Target power state of the device.
305 *
306 * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
307 * State Wake) for the device, if present. On failure reset the device's
308 * wakeup.flags.valid flag.
309 *
310 * RETURN VALUE:
311 * 0 if either _DSW or _PSW has been successfully executed
312 * 0 if neither _DSW nor _PSW has been found
313 * -ENODEV if the execution of either _DSW or _PSW has failed
314 */
315int acpi_device_sleep_wake(struct acpi_device *dev,
316 int enable, int sleep_state, int dev_state)
317{
318 union acpi_object in_arg[3];
319 struct acpi_object_list arg_list = { 3, in_arg };
320 acpi_status status = AE_OK;
321
322 /*
323 * Try to execute _DSW first.
324 *
325 * Three agruments are needed for the _DSW object:
326 * Argument 0: enable/disable the wake capabilities
327 * Argument 1: target system state
328 * Argument 2: target device state
329 * When _DSW object is called to disable the wake capabilities, maybe
330 * the first argument is filled. The values of the other two agruments
331 * are meaningless.
332 */
333 in_arg[0].type = ACPI_TYPE_INTEGER;
334 in_arg[0].integer.value = enable;
335 in_arg[1].type = ACPI_TYPE_INTEGER;
336 in_arg[1].integer.value = sleep_state;
337 in_arg[2].type = ACPI_TYPE_INTEGER;
338 in_arg[2].integer.value = dev_state;
339 status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
340 if (ACPI_SUCCESS(status)) {
341 return 0;
342 } else if (status != AE_NOT_FOUND) {
343 printk(KERN_ERR PREFIX "_DSW execution failed\n");
344 dev->wakeup.flags.valid = 0;
345 return -ENODEV;
346 }
347
348 /* Execute _PSW */
349 arg_list.count = 1;
350 in_arg[0].integer.value = enable;
351 status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
352 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
353 printk(KERN_ERR PREFIX "_PSW execution failed\n");
354 dev->wakeup.flags.valid = 0;
355 return -ENODEV;
356 }
357
358 return 0;
359}
360
1da177e4
LT
361/*
362 * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
363 * 1. Power on the power resources required for the wakeup device
77e76609
RW
364 * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
365 * State Wake) for the device, if present
1da177e4 366 */
77e76609 367int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
1da177e4 368{
9b83ccd2 369 int i, err = 0;
1da177e4 370
1da177e4 371 if (!dev || !dev->wakeup.flags.valid)
77e76609 372 return -EINVAL;
1da177e4 373
9b83ccd2
RW
374 mutex_lock(&acpi_device_lock);
375
376 if (dev->wakeup.prepare_count++)
377 goto out;
0af4b8c4 378
1da177e4
LT
379 /* Open power resource */
380 for (i = 0; i < dev->wakeup.resources.count; i++) {
3e384ee6 381 int ret = acpi_power_on(dev->wakeup.resources.handles[i]);
1da177e4 382 if (ret) {
6468463a 383 printk(KERN_ERR PREFIX "Transition power state\n");
1da177e4 384 dev->wakeup.flags.valid = 0;
9b83ccd2
RW
385 err = -ENODEV;
386 goto err_out;
1da177e4
LT
387 }
388 }
389
77e76609
RW
390 /*
391 * Passing 3 as the third argument below means the device may be placed
392 * in arbitrary power state afterwards.
393 */
0af4b8c4 394 err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
0af4b8c4 395
9b83ccd2
RW
396 err_out:
397 if (err)
398 dev->wakeup.prepare_count = 0;
399
400 out:
401 mutex_unlock(&acpi_device_lock);
0af4b8c4 402 return err;
1da177e4
LT
403}
404
405/*
406 * Shutdown a wakeup device, counterpart of above method
77e76609
RW
407 * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
408 * State Wake) for the device, if present
1da177e4
LT
409 * 2. Shutdown down the power resources
410 */
4be44fcd 411int acpi_disable_wakeup_device_power(struct acpi_device *dev)
1da177e4 412{
9b83ccd2 413 int i, err = 0;
1da177e4
LT
414
415 if (!dev || !dev->wakeup.flags.valid)
77e76609 416 return -EINVAL;
1da177e4 417
9b83ccd2
RW
418 mutex_lock(&acpi_device_lock);
419
420 if (--dev->wakeup.prepare_count > 0)
421 goto out;
422
0af4b8c4 423 /*
9b83ccd2
RW
424 * Executing the code below even if prepare_count is already zero when
425 * the function is called may be useful, for example for initialisation.
0af4b8c4 426 */
9b83ccd2
RW
427 if (dev->wakeup.prepare_count < 0)
428 dev->wakeup.prepare_count = 0;
0af4b8c4 429
9b83ccd2
RW
430 err = acpi_device_sleep_wake(dev, 0, 0, 0);
431 if (err)
432 goto out;
1da177e4
LT
433
434 /* Close power resource */
435 for (i = 0; i < dev->wakeup.resources.count; i++) {
9b83ccd2 436 int ret = acpi_power_off_device(
3e384ee6 437 dev->wakeup.resources.handles[i]);
1da177e4 438 if (ret) {
6468463a 439 printk(KERN_ERR PREFIX "Transition power state\n");
1da177e4 440 dev->wakeup.flags.valid = 0;
9b83ccd2
RW
441 err = -ENODEV;
442 goto out;
1da177e4
LT
443 }
444 }
445
9b83ccd2
RW
446 out:
447 mutex_unlock(&acpi_device_lock);
448 return err;
1da177e4
LT
449}
450
451/* --------------------------------------------------------------------------
452 Device Power Management
453 -------------------------------------------------------------------------- */
454
32a00d27 455int acpi_power_get_inferred_state(struct acpi_device *device, int *state)
1da177e4 456{
4be44fcd
LB
457 int result = 0;
458 struct acpi_handle_list *list = NULL;
459 int list_state = 0;
460 int i = 0;
1da177e4 461
32a00d27 462 if (!device || !state)
d550d98d 463 return -EINVAL;
1da177e4 464
1da177e4
LT
465 /*
466 * We know a device's inferred power state when all the resources
467 * required for a given D-state are 'on'.
468 */
4be44fcd 469 for (i = ACPI_STATE_D0; i < ACPI_STATE_D3; i++) {
1da177e4
LT
470 list = &device->power.states[i].resources;
471 if (list->count < 1)
472 continue;
473
474 result = acpi_power_get_list_state(list, &list_state);
475 if (result)
d550d98d 476 return result;
1da177e4
LT
477
478 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
32a00d27 479 *state = i;
d550d98d 480 return 0;
1da177e4
LT
481 }
482 }
483
32a00d27 484 *state = ACPI_STATE_D3;
d550d98d 485 return 0;
1da177e4
LT
486}
487
4be44fcd 488int acpi_power_transition(struct acpi_device *device, int state)
1da177e4 489{
d2ef555b 490 int result;
1da177e4 491
1da177e4 492 if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
d550d98d 493 return -EINVAL;
1da177e4 494
212967c6
RW
495 if (device->power.state == state)
496 return 0;
497
4be44fcd
LB
498 if ((device->power.state < ACPI_STATE_D0)
499 || (device->power.state > ACPI_STATE_D3))
d550d98d 500 return -ENODEV;
1da177e4 501
1da177e4
LT
502 /* TBD: Resources must be ordered. */
503
504 /*
505 * First we reference all power resources required in the target list
d2ef555b
RW
506 * (e.g. so the device doesn't lose power while transitioning). Then,
507 * we dereference all power resources used in the current list.
1da177e4 508 */
d2ef555b
RW
509 result = acpi_power_on_list(&device->power.states[state].resources);
510 if (!result)
511 acpi_power_off_list(
512 &device->power.states[device->power.state].resources);
1da177e4 513
d2ef555b
RW
514 /* We shouldn't change the state unless the above operations succeed. */
515 device->power.state = result ? ACPI_STATE_UNKNOWN : state;
1da177e4 516
d550d98d 517 return result;
1da177e4
LT
518}
519
1da177e4
LT
520/* --------------------------------------------------------------------------
521 Driver Interface
522 -------------------------------------------------------------------------- */
523
4be44fcd 524static int acpi_power_add(struct acpi_device *device)
1da177e4 525{
c35923bc 526 int result = 0, state;
4be44fcd 527 acpi_status status = AE_OK;
1da177e4 528 struct acpi_power_resource *resource = NULL;
4be44fcd
LB
529 union acpi_object acpi_object;
530 struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
1da177e4 531
1da177e4
LT
532
533 if (!device)
d550d98d 534 return -EINVAL;
1da177e4 535
36bcbec7 536 resource = kzalloc(sizeof(struct acpi_power_resource), GFP_KERNEL);
1da177e4 537 if (!resource)
d550d98d 538 return -ENOMEM;
1da177e4 539
41598572 540 resource->device = device;
0a613902 541 mutex_init(&resource->resource_lock);
1da177e4
LT
542 strcpy(resource->name, device->pnp.bus_id);
543 strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
544 strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
db89b4f0 545 device->driver_data = resource;
1da177e4
LT
546
547 /* Evalute the object to get the system level and resource order. */
5fbc19ef 548 status = acpi_evaluate_object(device->handle, NULL, NULL, &buffer);
1da177e4
LT
549 if (ACPI_FAILURE(status)) {
550 result = -ENODEV;
551 goto end;
552 }
553 resource->system_level = acpi_object.power_resource.system_level;
554 resource->order = acpi_object.power_resource.resource_order;
555
a51e145f 556 result = acpi_power_get_state(device->handle, &state);
1da177e4
LT
557 if (result)
558 goto end;
559
c35923bc 560 switch (state) {
1da177e4
LT
561 case ACPI_POWER_RESOURCE_STATE_ON:
562 device->power.state = ACPI_STATE_D0;
563 break;
564 case ACPI_POWER_RESOURCE_STATE_OFF:
565 device->power.state = ACPI_STATE_D3;
566 break;
567 default:
568 device->power.state = ACPI_STATE_UNKNOWN;
569 break;
570 }
571
1da177e4 572 printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
c35923bc 573 acpi_device_bid(device), state ? "on" : "off");
1da177e4 574
4be44fcd 575 end:
1da177e4
LT
576 if (result)
577 kfree(resource);
4be44fcd 578
d550d98d 579 return result;
1da177e4
LT
580}
581
4be44fcd 582static int acpi_power_remove(struct acpi_device *device, int type)
1da177e4 583{
3e384ee6 584 struct acpi_power_resource *resource;
1da177e4 585
3e384ee6 586 if (!device)
d550d98d 587 return -EINVAL;
1da177e4 588
50dd0969 589 resource = acpi_driver_data(device);
3e384ee6
RW
590 if (!resource)
591 return -EINVAL;
0a613902 592
1da177e4
LT
593 kfree(resource);
594
d550d98d 595 return 0;
1da177e4
LT
596}
597
e8363f33 598static int acpi_power_resume(struct acpi_device *device)
0a613902 599{
c35923bc 600 int result = 0, state;
3e384ee6 601 struct acpi_power_resource *resource;
0a613902 602
3e384ee6 603 if (!device)
0a613902
KK
604 return -EINVAL;
605
db89b4f0 606 resource = acpi_driver_data(device);
3e384ee6
RW
607 if (!resource)
608 return -EINVAL;
609
610 mutex_lock(&resource->resource_lock);
0a613902 611
a51e145f 612 result = acpi_power_get_state(device->handle, &state);
0a613902 613 if (result)
3e384ee6 614 goto unlock;
0a613902 615
3e384ee6
RW
616 if (state == ACPI_POWER_RESOURCE_STATE_OFF && resource->ref_count)
617 result = __acpi_power_on(resource);
0a613902 618
3e384ee6 619 unlock:
0a613902 620 mutex_unlock(&resource->resource_lock);
3e384ee6
RW
621
622 return result;
0a613902
KK
623}
624
44515374 625int __init acpi_power_init(void)
1da177e4 626{
1da177e4 627 INIT_LIST_HEAD(&acpi_power_resource_list);
06af7eb0 628 return acpi_bus_register_driver(&acpi_power_driver);
1da177e4 629}