4fe5018fd6ab70b26bd06d4bc58d57d837e14a3c
[cascardo/linux.git] / drivers / acpi / power.c
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>
42 #include <linux/slab.h>
43 #include <acpi/acpi_bus.h>
44 #include <acpi/acpi_drivers.h>
45 #include "sleep.h"
46
47 #define PREFIX "ACPI: "
48
49 #define _COMPONENT                      ACPI_POWER_COMPONENT
50 ACPI_MODULE_NAME("power");
51 #define ACPI_POWER_CLASS                "power_resource"
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
58
59 int acpi_power_nocheck;
60 module_param_named(power_nocheck, acpi_power_nocheck, bool, 000);
61
62 static int acpi_power_add(struct acpi_device *device);
63 static int acpi_power_remove(struct acpi_device *device, int type);
64 static int acpi_power_resume(struct acpi_device *device);
65
66 static const struct acpi_device_id power_device_ids[] = {
67         {ACPI_POWER_HID, 0},
68         {"", 0},
69 };
70 MODULE_DEVICE_TABLE(acpi, power_device_ids);
71
72 static struct acpi_driver acpi_power_driver = {
73         .name = "power",
74         .class = ACPI_POWER_CLASS,
75         .ids = power_device_ids,
76         .ops = {
77                 .add = acpi_power_add,
78                 .remove = acpi_power_remove,
79                 .resume = acpi_power_resume,
80                 },
81 };
82
83 struct acpi_power_reference {
84         struct list_head node;
85         struct acpi_device *device;
86 };
87
88 struct acpi_power_resource {
89         struct acpi_device * device;
90         acpi_bus_id name;
91         u32 system_level;
92         u32 order;
93         struct mutex resource_lock;
94         struct list_head reference;
95 };
96
97 static struct list_head acpi_power_resource_list;
98
99 /* --------------------------------------------------------------------------
100                              Power Resource Management
101    -------------------------------------------------------------------------- */
102
103 static int
104 acpi_power_get_context(acpi_handle handle,
105                        struct acpi_power_resource **resource)
106 {
107         int result = 0;
108         struct acpi_device *device = NULL;
109
110
111         if (!resource)
112                 return -ENODEV;
113
114         result = acpi_bus_get_device(handle, &device);
115         if (result) {
116                 printk(KERN_WARNING PREFIX "Getting context [%p]\n", handle);
117                 return result;
118         }
119
120         *resource = acpi_driver_data(device);
121         if (!*resource)
122                 return -ENODEV;
123
124         return 0;
125 }
126
127 static int acpi_power_get_state(acpi_handle handle, int *state)
128 {
129         acpi_status status = AE_OK;
130         unsigned long long sta = 0;
131         char node_name[5];
132         struct acpi_buffer buffer = { sizeof(node_name), node_name };
133
134
135         if (!handle || !state)
136                 return -EINVAL;
137
138         status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
139         if (ACPI_FAILURE(status))
140                 return -ENODEV;
141
142         *state = (sta & 0x01)?ACPI_POWER_RESOURCE_STATE_ON:
143                               ACPI_POWER_RESOURCE_STATE_OFF;
144
145         acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
146
147         ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
148                           node_name,
149                                 *state ? "on" : "off"));
150
151         return 0;
152 }
153
154 static int acpi_power_get_list_state(struct acpi_handle_list *list, int *state)
155 {
156         int result = 0, state1;
157         u32 i = 0;
158
159
160         if (!list || !state)
161                 return -EINVAL;
162
163         /* The state of the list is 'on' IFF all resources are 'on'. */
164
165         for (i = 0; i < list->count; i++) {
166                 /*
167                  * The state of the power resource can be obtained by
168                  * using the ACPI handle. In such case it is unnecessary to
169                  * get the Power resource first and then get its state again.
170                  */
171                 result = acpi_power_get_state(list->handles[i], &state1);
172                 if (result)
173                         return result;
174
175                 *state = state1;
176
177                 if (*state != ACPI_POWER_RESOURCE_STATE_ON)
178                         break;
179         }
180
181         ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource list is %s\n",
182                           *state ? "on" : "off"));
183
184         return result;
185 }
186
187 static int acpi_power_on(acpi_handle handle, struct acpi_device *dev)
188 {
189         int result = 0;
190         int found = 0;
191         acpi_status status = AE_OK;
192         struct acpi_power_resource *resource = NULL;
193         struct list_head *node, *next;
194         struct acpi_power_reference *ref;
195
196
197         result = acpi_power_get_context(handle, &resource);
198         if (result)
199                 return result;
200
201         mutex_lock(&resource->resource_lock);
202         list_for_each_safe(node, next, &resource->reference) {
203                 ref = container_of(node, struct acpi_power_reference, node);
204                 if (dev->handle == ref->device->handle) {
205                         ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] already referenced by resource [%s]\n",
206                                   dev->pnp.bus_id, resource->name));
207                         found = 1;
208                         break;
209                 }
210         }
211
212         if (!found) {
213                 ref = kmalloc(sizeof (struct acpi_power_reference),
214                     irqs_disabled() ? GFP_ATOMIC : GFP_KERNEL);
215                 if (!ref) {
216                         ACPI_DEBUG_PRINT((ACPI_DB_INFO, "kmalloc() failed\n"));
217                         mutex_unlock(&resource->resource_lock);
218                         return -ENOMEM;
219                 }
220                 list_add_tail(&ref->node, &resource->reference);
221                 ref->device = dev;
222                 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] added to resource [%s] references\n",
223                           dev->pnp.bus_id, resource->name));
224         }
225         mutex_unlock(&resource->resource_lock);
226
227         status = acpi_evaluate_object(resource->device->handle, "_ON", NULL, NULL);
228         if (ACPI_FAILURE(status))
229                 return -ENODEV;
230
231         /* Update the power resource's _device_ power state */
232         resource->device->power.state = ACPI_STATE_D0;
233
234         ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] turned on\n",
235                           resource->name));
236         return 0;
237 }
238
239 static int acpi_power_off_device(acpi_handle handle, struct acpi_device *dev)
240 {
241         int result = 0;
242         acpi_status status = AE_OK;
243         struct acpi_power_resource *resource = NULL;
244         struct list_head *node, *next;
245         struct acpi_power_reference *ref;
246
247
248         result = acpi_power_get_context(handle, &resource);
249         if (result)
250                 return result;
251
252         mutex_lock(&resource->resource_lock);
253         list_for_each_safe(node, next, &resource->reference) {
254                 ref = container_of(node, struct acpi_power_reference, node);
255                 if (dev->handle == ref->device->handle) {
256                         list_del(&ref->node);
257                         kfree(ref);
258                         ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] removed from resource [%s] references\n",
259                             dev->pnp.bus_id, resource->name));
260                         break;
261                 }
262         }
263
264         if (!list_empty(&resource->reference)) {
265                 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Cannot turn resource [%s] off - resource is in use\n",
266                     resource->name));
267                 mutex_unlock(&resource->resource_lock);
268                 return 0;
269         }
270         mutex_unlock(&resource->resource_lock);
271
272         status = acpi_evaluate_object(resource->device->handle, "_OFF", NULL, NULL);
273         if (ACPI_FAILURE(status))
274                 return -ENODEV;
275
276         /* Update the power resource's _device_ power state */
277         resource->device->power.state = ACPI_STATE_D3;
278
279         ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] turned off\n",
280                           resource->name));
281
282         return 0;
283 }
284
285 /**
286  * acpi_device_sleep_wake - execute _DSW (Device Sleep Wake) or (deprecated in
287  *                          ACPI 3.0) _PSW (Power State Wake)
288  * @dev: Device to handle.
289  * @enable: 0 - disable, 1 - enable the wake capabilities of the device.
290  * @sleep_state: Target sleep state of the system.
291  * @dev_state: Target power state of the device.
292  *
293  * Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
294  * State Wake) for the device, if present.  On failure reset the device's
295  * wakeup.flags.valid flag.
296  *
297  * RETURN VALUE:
298  * 0 if either _DSW or _PSW has been successfully executed
299  * 0 if neither _DSW nor _PSW has been found
300  * -ENODEV if the execution of either _DSW or _PSW has failed
301  */
302 int acpi_device_sleep_wake(struct acpi_device *dev,
303                            int enable, int sleep_state, int dev_state)
304 {
305         union acpi_object in_arg[3];
306         struct acpi_object_list arg_list = { 3, in_arg };
307         acpi_status status = AE_OK;
308
309         /*
310          * Try to execute _DSW first.
311          *
312          * Three agruments are needed for the _DSW object:
313          * Argument 0: enable/disable the wake capabilities
314          * Argument 1: target system state
315          * Argument 2: target device state
316          * When _DSW object is called to disable the wake capabilities, maybe
317          * the first argument is filled. The values of the other two agruments
318          * are meaningless.
319          */
320         in_arg[0].type = ACPI_TYPE_INTEGER;
321         in_arg[0].integer.value = enable;
322         in_arg[1].type = ACPI_TYPE_INTEGER;
323         in_arg[1].integer.value = sleep_state;
324         in_arg[2].type = ACPI_TYPE_INTEGER;
325         in_arg[2].integer.value = dev_state;
326         status = acpi_evaluate_object(dev->handle, "_DSW", &arg_list, NULL);
327         if (ACPI_SUCCESS(status)) {
328                 return 0;
329         } else if (status != AE_NOT_FOUND) {
330                 printk(KERN_ERR PREFIX "_DSW execution failed\n");
331                 dev->wakeup.flags.valid = 0;
332                 return -ENODEV;
333         }
334
335         /* Execute _PSW */
336         arg_list.count = 1;
337         in_arg[0].integer.value = enable;
338         status = acpi_evaluate_object(dev->handle, "_PSW", &arg_list, NULL);
339         if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
340                 printk(KERN_ERR PREFIX "_PSW execution failed\n");
341                 dev->wakeup.flags.valid = 0;
342                 return -ENODEV;
343         }
344
345         return 0;
346 }
347
348 /*
349  * Prepare a wakeup device, two steps (Ref ACPI 2.0:P229):
350  * 1. Power on the power resources required for the wakeup device 
351  * 2. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
352  *    State Wake) for the device, if present
353  */
354 int acpi_enable_wakeup_device_power(struct acpi_device *dev, int sleep_state)
355 {
356         int i, err = 0;
357
358         if (!dev || !dev->wakeup.flags.valid)
359                 return -EINVAL;
360
361         mutex_lock(&acpi_device_lock);
362
363         if (dev->wakeup.prepare_count++)
364                 goto out;
365
366         /* Open power resource */
367         for (i = 0; i < dev->wakeup.resources.count; i++) {
368                 int ret = acpi_power_on(dev->wakeup.resources.handles[i], dev);
369                 if (ret) {
370                         printk(KERN_ERR PREFIX "Transition power state\n");
371                         dev->wakeup.flags.valid = 0;
372                         err = -ENODEV;
373                         goto err_out;
374                 }
375         }
376
377         /*
378          * Passing 3 as the third argument below means the device may be placed
379          * in arbitrary power state afterwards.
380          */
381         err = acpi_device_sleep_wake(dev, 1, sleep_state, 3);
382
383  err_out:
384         if (err)
385                 dev->wakeup.prepare_count = 0;
386
387  out:
388         mutex_unlock(&acpi_device_lock);
389         return err;
390 }
391
392 /*
393  * Shutdown a wakeup device, counterpart of above method
394  * 1. Execute _DSW (Device Sleep Wake) or (deprecated in ACPI 3.0) _PSW (Power
395  *    State Wake) for the device, if present
396  * 2. Shutdown down the power resources
397  */
398 int acpi_disable_wakeup_device_power(struct acpi_device *dev)
399 {
400         int i, err = 0;
401
402         if (!dev || !dev->wakeup.flags.valid)
403                 return -EINVAL;
404
405         mutex_lock(&acpi_device_lock);
406
407         if (--dev->wakeup.prepare_count > 0)
408                 goto out;
409
410         /*
411          * Executing the code below even if prepare_count is already zero when
412          * the function is called may be useful, for example for initialisation.
413          */
414         if (dev->wakeup.prepare_count < 0)
415                 dev->wakeup.prepare_count = 0;
416
417         err = acpi_device_sleep_wake(dev, 0, 0, 0);
418         if (err)
419                 goto out;
420
421         /* Close power resource */
422         for (i = 0; i < dev->wakeup.resources.count; i++) {
423                 int ret = acpi_power_off_device(
424                                 dev->wakeup.resources.handles[i], dev);
425                 if (ret) {
426                         printk(KERN_ERR PREFIX "Transition power state\n");
427                         dev->wakeup.flags.valid = 0;
428                         err = -ENODEV;
429                         goto out;
430                 }
431         }
432
433  out:
434         mutex_unlock(&acpi_device_lock);
435         return err;
436 }
437
438 /* --------------------------------------------------------------------------
439                              Device Power Management
440    -------------------------------------------------------------------------- */
441
442 int acpi_power_get_inferred_state(struct acpi_device *device)
443 {
444         int result = 0;
445         struct acpi_handle_list *list = NULL;
446         int list_state = 0;
447         int i = 0;
448
449
450         if (!device)
451                 return -EINVAL;
452
453         device->power.state = ACPI_STATE_UNKNOWN;
454
455         /*
456          * We know a device's inferred power state when all the resources
457          * required for a given D-state are 'on'.
458          */
459         for (i = ACPI_STATE_D0; i < ACPI_STATE_D3; i++) {
460                 list = &device->power.states[i].resources;
461                 if (list->count < 1)
462                         continue;
463
464                 result = acpi_power_get_list_state(list, &list_state);
465                 if (result)
466                         return result;
467
468                 if (list_state == ACPI_POWER_RESOURCE_STATE_ON) {
469                         device->power.state = i;
470                         return 0;
471                 }
472         }
473
474         device->power.state = ACPI_STATE_D3;
475
476         return 0;
477 }
478
479 int acpi_power_transition(struct acpi_device *device, int state)
480 {
481         int result = 0;
482         struct acpi_handle_list *cl = NULL;     /* Current Resources */
483         struct acpi_handle_list *tl = NULL;     /* Target Resources */
484         int i = 0;
485
486
487         if (!device || (state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
488                 return -EINVAL;
489
490         if ((device->power.state < ACPI_STATE_D0)
491             || (device->power.state > ACPI_STATE_D3))
492                 return -ENODEV;
493
494         cl = &device->power.states[device->power.state].resources;
495         tl = &device->power.states[state].resources;
496
497         /* TBD: Resources must be ordered. */
498
499         /*
500          * First we reference all power resources required in the target list
501          * (e.g. so the device doesn't lose power while transitioning).
502          */
503         for (i = 0; i < tl->count; i++) {
504                 result = acpi_power_on(tl->handles[i], device);
505                 if (result)
506                         goto end;
507         }
508
509         if (device->power.state == state) {
510                 goto end;
511         }
512
513         /*
514          * Then we dereference all power resources used in the current list.
515          */
516         for (i = 0; i < cl->count; i++) {
517                 result = acpi_power_off_device(cl->handles[i], device);
518                 if (result)
519                         goto end;
520         }
521
522      end:
523         if (result)
524                 device->power.state = ACPI_STATE_UNKNOWN;
525         else {
526         /* We shouldn't change the state till all above operations succeed */
527                 device->power.state = state;
528         }
529
530         return result;
531 }
532
533 /* --------------------------------------------------------------------------
534                                 Driver Interface
535    -------------------------------------------------------------------------- */
536
537 static int acpi_power_add(struct acpi_device *device)
538 {
539         int result = 0, state;
540         acpi_status status = AE_OK;
541         struct acpi_power_resource *resource = NULL;
542         union acpi_object acpi_object;
543         struct acpi_buffer buffer = { sizeof(acpi_object), &acpi_object };
544
545
546         if (!device)
547                 return -EINVAL;
548
549         resource = kzalloc(sizeof(struct acpi_power_resource), GFP_KERNEL);
550         if (!resource)
551                 return -ENOMEM;
552
553         resource->device = device;
554         mutex_init(&resource->resource_lock);
555         INIT_LIST_HEAD(&resource->reference);
556         strcpy(resource->name, device->pnp.bus_id);
557         strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);
558         strcpy(acpi_device_class(device), ACPI_POWER_CLASS);
559         device->driver_data = resource;
560
561         /* Evalute the object to get the system level and resource order. */
562         status = acpi_evaluate_object(device->handle, NULL, NULL, &buffer);
563         if (ACPI_FAILURE(status)) {
564                 result = -ENODEV;
565                 goto end;
566         }
567         resource->system_level = acpi_object.power_resource.system_level;
568         resource->order = acpi_object.power_resource.resource_order;
569
570         result = acpi_power_get_state(device->handle, &state);
571         if (result)
572                 goto end;
573
574         switch (state) {
575         case ACPI_POWER_RESOURCE_STATE_ON:
576                 device->power.state = ACPI_STATE_D0;
577                 break;
578         case ACPI_POWER_RESOURCE_STATE_OFF:
579                 device->power.state = ACPI_STATE_D3;
580                 break;
581         default:
582                 device->power.state = ACPI_STATE_UNKNOWN;
583                 break;
584         }
585
586         printk(KERN_INFO PREFIX "%s [%s] (%s)\n", acpi_device_name(device),
587                acpi_device_bid(device), state ? "on" : "off");
588
589       end:
590         if (result)
591                 kfree(resource);
592
593         return result;
594 }
595
596 static int acpi_power_remove(struct acpi_device *device, int type)
597 {
598         struct acpi_power_resource *resource = NULL;
599         struct list_head *node, *next;
600
601
602         if (!device || !acpi_driver_data(device))
603                 return -EINVAL;
604
605         resource = acpi_driver_data(device);
606
607         mutex_lock(&resource->resource_lock);
608         list_for_each_safe(node, next, &resource->reference) {
609                 struct acpi_power_reference *ref = container_of(node, struct acpi_power_reference, node);
610                 list_del(&ref->node);
611                 kfree(ref);
612         }
613         mutex_unlock(&resource->resource_lock);
614
615         kfree(resource);
616
617         return 0;
618 }
619
620 static int acpi_power_resume(struct acpi_device *device)
621 {
622         int result = 0, state;
623         struct acpi_power_resource *resource = NULL;
624         struct acpi_power_reference *ref;
625
626         if (!device || !acpi_driver_data(device))
627                 return -EINVAL;
628
629         resource = acpi_driver_data(device);
630
631         result = acpi_power_get_state(device->handle, &state);
632         if (result)
633                 return result;
634
635         mutex_lock(&resource->resource_lock);
636         if (state == ACPI_POWER_RESOURCE_STATE_OFF &&
637             !list_empty(&resource->reference)) {
638                 ref = container_of(resource->reference.next, struct acpi_power_reference, node);
639                 mutex_unlock(&resource->resource_lock);
640                 result = acpi_power_on(device->handle, ref->device);
641                 return result;
642         }
643
644         mutex_unlock(&resource->resource_lock);
645         return 0;
646 }
647
648 int __init acpi_power_init(void)
649 {
650         INIT_LIST_HEAD(&acpi_power_resource_list);
651         return acpi_bus_register_driver(&acpi_power_driver);
652 }