pm.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /*
  2. * pm.h - Power management interface
  3. *
  4. * Copyright (C) 2000 Andrew Henroid
  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_H
  21. #define _LINUX_PM_H
  22. #ifdef __KERNEL__
  23. #include <linux/list.h>
  24. #include <asm/atomic.h>
  25. /*
  26. * Power management requests... these are passed to pm_send_all() and friends.
  27. *
  28. * these functions are old and deprecated, see below.
  29. */
  30. typedef int __bitwise pm_request_t;
  31. #define PM_SUSPEND ((__force pm_request_t) 1) /* enter D1-D3 */
  32. #define PM_RESUME ((__force pm_request_t) 2) /* enter D0 */
  33. /*
  34. * Device types... these are passed to pm_register
  35. */
  36. typedef int __bitwise pm_dev_t;
  37. #define PM_UNKNOWN_DEV ((__force pm_dev_t) 0) /* generic */
  38. #define PM_SYS_DEV ((__force pm_dev_t) 1) /* system device (fan, KB controller, ...) */
  39. #define PM_PCI_DEV ((__force pm_dev_t) 2) /* PCI device */
  40. #define PM_USB_DEV ((__force pm_dev_t) 3) /* USB device */
  41. #define PM_SCSI_DEV ((__force pm_dev_t) 4) /* SCSI device */
  42. #define PM_ISA_DEV ((__force pm_dev_t) 5) /* ISA device */
  43. #define PM_MTD_DEV ((__force pm_dev_t) 6) /* Memory Technology Device */
  44. /*
  45. * System device hardware ID (PnP) values
  46. */
  47. enum
  48. {
  49. PM_SYS_UNKNOWN = 0x00000000, /* generic */
  50. PM_SYS_KBC = 0x41d00303, /* keyboard controller */
  51. PM_SYS_COM = 0x41d00500, /* serial port */
  52. PM_SYS_IRDA = 0x41d00510, /* IRDA controller */
  53. PM_SYS_FDC = 0x41d00700, /* floppy controller */
  54. PM_SYS_VGA = 0x41d00900, /* VGA controller */
  55. PM_SYS_PCMCIA = 0x41d00e00, /* PCMCIA controller */
  56. };
  57. /*
  58. * Device identifier
  59. */
  60. #define PM_PCI_ID(dev) ((dev)->bus->number << 16 | (dev)->devfn)
  61. /*
  62. * Request handler callback
  63. */
  64. struct pm_dev;
  65. typedef int (*pm_callback)(struct pm_dev *dev, pm_request_t rqst, void *data);
  66. /*
  67. * Dynamic device information
  68. */
  69. struct pm_dev
  70. {
  71. pm_dev_t type;
  72. unsigned long id;
  73. pm_callback callback;
  74. void *data;
  75. unsigned long flags;
  76. unsigned long state;
  77. unsigned long prev_state;
  78. struct list_head entry;
  79. };
  80. /* Functions above this comment are list-based old-style power
  81. * managment. Please avoid using them. */
  82. /*
  83. * Callbacks for platform drivers to implement.
  84. */
  85. extern void (*pm_idle)(void);
  86. extern void (*pm_power_off)(void);
  87. typedef int __bitwise suspend_state_t;
  88. #define PM_SUSPEND_ON ((__force suspend_state_t) 0)
  89. #define PM_SUSPEND_STANDBY ((__force suspend_state_t) 1)
  90. #define PM_SUSPEND_MEM ((__force suspend_state_t) 3)
  91. #define PM_SUSPEND_DISK ((__force suspend_state_t) 4)
  92. #define PM_SUSPEND_MAX ((__force suspend_state_t) 5)
  93. typedef int __bitwise suspend_disk_method_t;
  94. #define PM_DISK_FIRMWARE ((__force suspend_disk_method_t) 1)
  95. #define PM_DISK_PLATFORM ((__force suspend_disk_method_t) 2)
  96. #define PM_DISK_SHUTDOWN ((__force suspend_disk_method_t) 3)
  97. #define PM_DISK_REBOOT ((__force suspend_disk_method_t) 4)
  98. #define PM_DISK_MAX ((__force suspend_disk_method_t) 5)
  99. struct pm_ops {
  100. suspend_disk_method_t pm_disk_mode;
  101. int (*valid)(suspend_state_t state);
  102. int (*prepare)(suspend_state_t state);
  103. int (*enter)(suspend_state_t state);
  104. int (*finish)(suspend_state_t state);
  105. };
  106. extern void pm_set_ops(struct pm_ops *);
  107. extern struct pm_ops *pm_ops;
  108. extern int pm_suspend(suspend_state_t state);
  109. /*
  110. * Device power management
  111. */
  112. struct device;
  113. typedef struct pm_message {
  114. int event;
  115. } pm_message_t;
  116. /*
  117. * There are 4 important states driver can be in:
  118. * ON -- driver is working
  119. * FREEZE -- stop operations and apply whatever policy is applicable to a
  120. * suspended driver of that class, freeze queues for block like IDE
  121. * does, drop packets for ethernet, etc... stop DMA engine too etc...
  122. * so a consistent image can be saved; but do not power any hardware
  123. * down.
  124. * SUSPEND - like FREEZE, but hardware is doing as much powersaving as
  125. * possible. Roughly pci D3.
  126. *
  127. * Unfortunately, current drivers only recognize numeric values 0 (ON) and 3
  128. * (SUSPEND). We'll need to fix the drivers. So yes, putting 3 to all different
  129. * defines is intentional, and will go away as soon as drivers are fixed. Also
  130. * note that typedef is neccessary, we'll probably want to switch to
  131. * typedef struct pm_message_t { int event; int flags; } pm_message_t
  132. * or something similar soon.
  133. */
  134. #define PM_EVENT_ON 0
  135. #define PM_EVENT_FREEZE 1
  136. #define PM_EVENT_SUSPEND 2
  137. #define PMSG_FREEZE ((struct pm_message){ .event = PM_EVENT_FREEZE, })
  138. #define PMSG_SUSPEND ((struct pm_message){ .event = PM_EVENT_SUSPEND, })
  139. #define PMSG_ON ((struct pm_message){ .event = PM_EVENT_ON, })
  140. struct dev_pm_info {
  141. pm_message_t power_state;
  142. unsigned can_wakeup:1;
  143. #ifdef CONFIG_PM
  144. unsigned should_wakeup:1;
  145. pm_message_t prev_state;
  146. void * saved_state;
  147. struct device * pm_parent;
  148. struct list_head entry;
  149. #endif
  150. };
  151. extern void device_pm_set_parent(struct device * dev, struct device * parent);
  152. extern int device_power_down(pm_message_t state);
  153. extern void device_power_up(void);
  154. extern void device_resume(void);
  155. #ifdef CONFIG_PM
  156. extern suspend_disk_method_t pm_disk_mode;
  157. extern int device_suspend(pm_message_t state);
  158. #define device_set_wakeup_enable(dev,val) \
  159. ((dev)->power.should_wakeup = !!(val))
  160. #define device_may_wakeup(dev) \
  161. (device_can_wakeup(dev) && (dev)->power.should_wakeup)
  162. extern int dpm_runtime_suspend(struct device *, pm_message_t);
  163. extern void dpm_runtime_resume(struct device *);
  164. extern void __suspend_report_result(const char *function, void *fn, int ret);
  165. #define suspend_report_result(fn, ret) \
  166. do { \
  167. __suspend_report_result(__FUNCTION__, fn, ret); \
  168. } while (0)
  169. #else /* !CONFIG_PM */
  170. static inline int device_suspend(pm_message_t state)
  171. {
  172. return 0;
  173. }
  174. #define device_set_wakeup_enable(dev,val) do{}while(0)
  175. #define device_may_wakeup(dev) (0)
  176. static inline int dpm_runtime_suspend(struct device * dev, pm_message_t state)
  177. {
  178. return 0;
  179. }
  180. static inline void dpm_runtime_resume(struct device * dev)
  181. {
  182. }
  183. #define suspend_report_result(fn, ret) do { } while (0)
  184. #endif
  185. /* changes to device_may_wakeup take effect on the next pm state change.
  186. * by default, devices should wakeup if they can.
  187. */
  188. #define device_can_wakeup(dev) \
  189. ((dev)->power.can_wakeup)
  190. #define device_init_wakeup(dev,val) \
  191. do { \
  192. device_can_wakeup(dev) = !!(val); \
  193. device_set_wakeup_enable(dev,val); \
  194. } while(0)
  195. #endif /* __KERNEL__ */
  196. #endif /* _LINUX_PM_H */