pm_wakeup.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  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. #ifndef _LINUX_PM_WAKEUP_H
  21. #define _LINUX_PM_WAKEUP_H
  22. #ifndef _DEVICE_H_
  23. # error "please don't include this file directly"
  24. #endif
  25. #ifdef CONFIG_PM
  26. /* changes to device_may_wakeup take effect on the next pm state change.
  27. * by default, devices should wakeup if they can.
  28. */
  29. static inline void device_init_wakeup(struct device *dev, int val)
  30. {
  31. dev->power.can_wakeup = dev->power.should_wakeup = !!val;
  32. }
  33. static inline void device_set_wakeup_capable(struct device *dev, int val)
  34. {
  35. dev->power.can_wakeup = !!val;
  36. }
  37. static inline int device_can_wakeup(struct device *dev)
  38. {
  39. return dev->power.can_wakeup;
  40. }
  41. static inline void device_set_wakeup_enable(struct device *dev, int val)
  42. {
  43. dev->power.should_wakeup = !!val;
  44. }
  45. static inline int device_may_wakeup(struct device *dev)
  46. {
  47. return dev->power.can_wakeup && dev->power.should_wakeup;
  48. }
  49. #else /* !CONFIG_PM */
  50. /* For some reason the next two routines work even without CONFIG_PM */
  51. static inline void device_init_wakeup(struct device *dev, int val)
  52. {
  53. dev->power.can_wakeup = !!val;
  54. }
  55. static inline int device_can_wakeup(struct device *dev)
  56. {
  57. return dev->power.can_wakeup;
  58. }
  59. #define device_set_wakeup_enable(dev, val) do {} while (0)
  60. #define device_may_wakeup(dev) 0
  61. #endif /* !CONFIG_PM */
  62. #endif /* _LINUX_PM_WAKEUP_H */