blob: 96370ec1d673fc3d07a2a03b496980517891c304 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/base/power/runtime.c - Handling dynamic device power management.
3 *
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Lab
6 *
7 */
8
9#include <linux/device.h>
10#include "power.h"
11
12
13static void runtime_resume(struct device * dev)
14{
15 dev_dbg(dev, "resuming\n");
Pavel Machekca078ba2005-09-03 15:56:57 -070016 if (!dev->power.power_state.event)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 return;
18 if (!resume_device(dev))
Pavel Machekca078ba2005-09-03 15:56:57 -070019 dev->power.power_state = PMSG_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020}
21
22
23/**
24 * dpm_runtime_resume - Power one device back on.
25 * @dev: Device.
26 *
27 * Bring one device back to the on state by first powering it
28 * on, then restoring state. We only operate on devices that aren't
29 * already on.
30 * FIXME: We need to handle devices that are in an unknown state.
31 */
32
33void dpm_runtime_resume(struct device * dev)
34{
35 down(&dpm_sem);
36 runtime_resume(dev);
37 up(&dpm_sem);
38}
David Brownell979d5192005-09-22 22:32:24 -070039EXPORT_SYMBOL(dpm_runtime_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41
42/**
43 * dpm_runtime_suspend - Put one device in low-power state.
44 * @dev: Device.
45 * @state: State to enter.
46 */
47
48int dpm_runtime_suspend(struct device * dev, pm_message_t state)
49{
50 int error = 0;
51
52 down(&dpm_sem);
Pavel Machekca078ba2005-09-03 15:56:57 -070053 if (dev->power.power_state.event == state.event)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 goto Done;
55
Pavel Machekca078ba2005-09-03 15:56:57 -070056 if (dev->power.power_state.event)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 runtime_resume(dev);
58
59 if (!(error = suspend_device(dev, state)))
60 dev->power.power_state = state;
61 Done:
62 up(&dpm_sem);
63 return error;
64}
Dominik Brodowski8e9e7932006-01-06 00:02:03 +010065EXPORT_SYMBOL(dpm_runtime_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67
Adrian Bunk1f1bf132005-12-12 01:31:03 -080068#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/**
70 * dpm_set_power_state - Update power_state field.
71 * @dev: Device.
72 * @state: Power state device is in.
73 *
74 * This is an update mechanism for drivers to notify the core
75 * what power state a device is in. Device probing code may not
76 * always be able to tell, but we need accurate information to
77 * work reliably.
78 */
79void dpm_set_power_state(struct device * dev, pm_message_t state)
80{
81 down(&dpm_sem);
82 dev->power.power_state = state;
83 up(&dpm_sem);
84}
Adrian Bunk1f1bf132005-12-12 01:31:03 -080085#endif /* 0 */