blob: 22d64c18056ce4944d2649bdd208fbfad05e1916 [file] [log] [blame]
Alan Stern9a3df1f2008-03-19 22:39:13 +01001/*
2 * pm_wakeup.h - Power management wakeup interface
3 *
4 * Copyright (C) 2008 Alan Stern
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#ifndef _LINUX_PM_WAKEUP_H
22#define _LINUX_PM_WAKEUP_H
23
24#ifndef _DEVICE_H_
25# error "please don't include this file directly"
26#endif
27
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010028#include <linux/types.h>
29
Alan Stern9a3df1f2008-03-19 22:39:13 +010030#ifdef CONFIG_PM
31
32/* changes to device_may_wakeup take effect on the next pm state change.
33 * by default, devices should wakeup if they can.
34 */
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010035static inline void device_init_wakeup(struct device *dev, bool val)
Alan Stern9a3df1f2008-03-19 22:39:13 +010036{
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010037 dev->power.can_wakeup = dev->power.should_wakeup = val;
Alan Stern9a3df1f2008-03-19 22:39:13 +010038}
39
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010040static inline void device_set_wakeup_capable(struct device *dev, bool capable)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +020041{
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010042 dev->power.can_wakeup = capable;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +020043}
44
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010045static inline bool device_can_wakeup(struct device *dev)
Alan Stern9a3df1f2008-03-19 22:39:13 +010046{
47 return dev->power.can_wakeup;
48}
49
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010050static inline void device_set_wakeup_enable(struct device *dev, bool enable)
Alan Stern9a3df1f2008-03-19 22:39:13 +010051{
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010052 dev->power.should_wakeup = enable;
Alan Stern9a3df1f2008-03-19 22:39:13 +010053}
54
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010055static inline bool device_may_wakeup(struct device *dev)
Alan Stern9a3df1f2008-03-19 22:39:13 +010056{
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +020057 return dev->power.can_wakeup && dev->power.should_wakeup;
Alan Stern9a3df1f2008-03-19 22:39:13 +010058}
59
60#else /* !CONFIG_PM */
61
62/* For some reason the next two routines work even without CONFIG_PM */
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010063static inline void device_init_wakeup(struct device *dev, bool val)
Alan Stern9a3df1f2008-03-19 22:39:13 +010064{
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010065 dev->power.can_wakeup = val;
Alan Stern9a3df1f2008-03-19 22:39:13 +010066}
67
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010068static inline void device_set_wakeup_capable(struct device *dev, bool capable)
69{
70}
Stephen Rothwellc300bd2fb2008-07-10 02:16:44 +020071
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010072static inline bool device_can_wakeup(struct device *dev)
Alan Stern9a3df1f2008-03-19 22:39:13 +010073{
74 return dev->power.can_wakeup;
75}
76
Dmitry Torokhov228c54e2010-03-15 21:44:41 +010077static inline void device_set_wakeup_enable(struct device *dev, bool enable)
78{
79}
80
81static inline bool device_may_wakeup(struct device *dev)
82{
83 return false;
84}
Alan Stern9a3df1f2008-03-19 22:39:13 +010085
Alan Stern9a3df1f2008-03-19 22:39:13 +010086#endif /* !CONFIG_PM */
87
88#endif /* _LINUX_PM_WAKEUP_H */