blob: bbbb973a9d3cbee5cb79d5083a89ebab58f17477 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/device.h>
23#include "power.h"
24
25LIST_HEAD(dpm_active);
26LIST_HEAD(dpm_off);
27LIST_HEAD(dpm_off_irq);
28
29DECLARE_MUTEX(dpm_sem);
30DECLARE_MUTEX(dpm_list_sem);
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/**
33 * device_pm_set_parent - Specify power dependency.
34 * @dev: Device who needs power.
35 * @parent: Device that supplies power.
36 *
37 * This function is used to manually describe a power-dependency
38 * relationship. It may be used to specify a transversal relationship
39 * (where the power supplier is not the physical (or electrical)
40 * ancestor of a specific device.
41 * The effect of this is that the supplier will not be powered down
42 * before the power dependent.
43 */
44
45void device_pm_set_parent(struct device * dev, struct device * parent)
46{
David Brownelle9b7bd42005-09-22 22:30:48 -070047 put_device(dev->power.pm_parent);
48 dev->power.pm_parent = get_device(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
50EXPORT_SYMBOL_GPL(device_pm_set_parent);
51
52int device_pm_add(struct device * dev)
53{
54 int error;
55
56 pr_debug("PM: Adding info for %s:%s\n",
Dmitry Torokhovc48ea602007-04-11 01:37:18 -040057 dev->bus ? dev->bus->name : "No Bus",
58 kobject_name(&dev->kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 down(&dpm_list_sem);
60 list_add_tail(&dev->power.entry, &dpm_active);
61 device_pm_set_parent(dev, dev->parent);
62 if ((error = dpm_sysfs_add(dev)))
63 list_del(&dev->power.entry);
64 up(&dpm_list_sem);
65 return error;
66}
67
68void device_pm_remove(struct device * dev)
69{
70 pr_debug("PM: Removing info for %s:%s\n",
Dmitry Torokhovc48ea602007-04-11 01:37:18 -040071 dev->bus ? dev->bus->name : "No Bus",
72 kobject_name(&dev->kobj));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 down(&dpm_list_sem);
74 dpm_sysfs_remove(dev);
David Brownelle9b7bd42005-09-22 22:30:48 -070075 put_device(dev->power.pm_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 list_del_init(&dev->power.entry);
77 up(&dpm_list_sem);
78}
79
80