]> err.no Git - linux-2.6/blob - drivers/base/power/main.c
Power Management: use mutexes instead of semaphores
[linux-2.6] / drivers / base / power / main.c
1 /*
2  * drivers/base/power/main.c - Where the driver meets power management.
3  *
4  * Copyright (c) 2003 Patrick Mochel
5  * Copyright (c) 2003 Open Source Development Lab
6  *
7  * This file is released under the GPLv2
8  *
9  *
10  * The driver model core calls device_pm_add() when a device is registered.
11  * This will intialize the embedded device_pm_info object in the device
12  * and add it to the list of power-controlled devices. sysfs entries for
13  * controlling device power management will also be added.
14  *
15  * A different set of lists than the global subsystem list are used to
16  * keep track of power info because we use different lists to hold
17  * devices based on what stage of the power management process they
18  * are in. The power domain dependencies may also differ from the
19  * ancestral dependencies that the subsystem list maintains.
20  */
21
22 #include <linux/device.h>
23 #include <linux/mutex.h>
24
25 #include "power.h"
26
27 LIST_HEAD(dpm_active);
28 LIST_HEAD(dpm_off);
29 LIST_HEAD(dpm_off_irq);
30
31 DEFINE_MUTEX(dpm_mtx);
32 DEFINE_MUTEX(dpm_list_mtx);
33
34 int (*platform_enable_wakeup)(struct device *dev, int is_on);
35
36
37 /**
38  *      device_pm_set_parent - Specify power dependency.
39  *      @dev:           Device who needs power.
40  *      @parent:        Device that supplies power.
41  *
42  *      This function is used to manually describe a power-dependency
43  *      relationship. It may be used to specify a transversal relationship
44  *      (where the power supplier is not the physical (or electrical)
45  *      ancestor of a specific device.
46  *      The effect of this is that the supplier will not be powered down
47  *      before the power dependent.
48  */
49
50 void device_pm_set_parent(struct device * dev, struct device * parent)
51 {
52         put_device(dev->power.pm_parent);
53         dev->power.pm_parent = get_device(parent);
54 }
55 EXPORT_SYMBOL_GPL(device_pm_set_parent);
56
57 int device_pm_add(struct device * dev)
58 {
59         int error;
60
61         pr_debug("PM: Adding info for %s:%s\n",
62                  dev->bus ? dev->bus->name : "No Bus",
63                  kobject_name(&dev->kobj));
64         mutex_lock(&dpm_list_mtx);
65         list_add_tail(&dev->power.entry, &dpm_active);
66         device_pm_set_parent(dev, dev->parent);
67         if ((error = dpm_sysfs_add(dev)))
68                 list_del(&dev->power.entry);
69         mutex_unlock(&dpm_list_mtx);
70         return error;
71 }
72
73 void device_pm_remove(struct device * dev)
74 {
75         pr_debug("PM: Removing info for %s:%s\n",
76                  dev->bus ? dev->bus->name : "No Bus",
77                  kobject_name(&dev->kobj));
78         mutex_lock(&dpm_list_mtx);
79         dpm_sysfs_remove(dev);
80         put_device(dev->power.pm_parent);
81         list_del_init(&dev->power.entry);
82         mutex_unlock(&dpm_list_mtx);
83 }
84
85