pm.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  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. /* invalid must be 0 so struct pm_ops initialisers can leave it out */
  95. #define PM_DISK_INVALID ((__force suspend_disk_method_t) 0)
  96. #define PM_DISK_PLATFORM ((__force suspend_disk_method_t) 1)
  97. #define PM_DISK_SHUTDOWN ((__force suspend_disk_method_t) 2)
  98. #define PM_DISK_REBOOT ((__force suspend_disk_method_t) 3)
  99. #define PM_DISK_TEST ((__force suspend_disk_method_t) 4)
  100. #define PM_DISK_TESTPROC ((__force suspend_disk_method_t) 5)
  101. #define PM_DISK_MAX ((__force suspend_disk_method_t) 6)
  102. /**
  103. * struct pm_ops - Callbacks for managing platform dependent suspend states.
  104. * @valid: Callback to determine whether the given state can be entered.
  105. * If %CONFIG_SOFTWARE_SUSPEND is set then %PM_SUSPEND_DISK is
  106. * always valid and never passed to this call. If not assigned,
  107. * no suspend states are valid.
  108. * Valid states are advertised in /sys/power/state but can still
  109. * be rejected by prepare or enter if the conditions aren't right.
  110. * There is a %pm_valid_only_mem function available that can be assigned
  111. * to this if you only implement mem sleep.
  112. *
  113. * @prepare: Prepare the platform for the given suspend state. Can return a
  114. * negative error code if necessary.
  115. *
  116. * @enter: Enter the given suspend state, must be assigned. Can return a
  117. * negative error code if necessary.
  118. *
  119. * @finish: Called when the system has left the given state and all devices
  120. * are resumed. The return value is ignored.
  121. *
  122. * @pm_disk_mode: The generic code always allows one of the shutdown methods
  123. * %PM_DISK_SHUTDOWN, %PM_DISK_REBOOT, %PM_DISK_TEST and
  124. * %PM_DISK_TESTPROC. If this variable is set, the mode it is set
  125. * to is allowed in addition to those modes and is also made default.
  126. * When this mode is sent selected, the @prepare call will be called
  127. * before suspending to disk (if present), the @enter call should be
  128. * present and will be called after all state has been saved and the
  129. * machine is ready to be powered off; the @finish callback is called
  130. * after state has been restored. All these calls are called with
  131. * %PM_SUSPEND_DISK as the state.
  132. */
  133. struct pm_ops {
  134. int (*valid)(suspend_state_t state);
  135. int (*prepare)(suspend_state_t state);
  136. int (*enter)(suspend_state_t state);
  137. int (*finish)(suspend_state_t state);
  138. suspend_disk_method_t pm_disk_mode;
  139. };
  140. /**
  141. * pm_set_ops - set platform dependent power management ops
  142. * @pm_ops: The new power management operations to set.
  143. */
  144. extern void pm_set_ops(struct pm_ops *pm_ops);
  145. extern struct pm_ops *pm_ops;
  146. extern int pm_suspend(suspend_state_t state);
  147. extern int pm_valid_only_mem(suspend_state_t state);
  148. /**
  149. * arch_suspend_disable_irqs - disable IRQs for suspend
  150. *
  151. * Disables IRQs (in the default case). This is a weak symbol in the common
  152. * code and thus allows architectures to override it if more needs to be
  153. * done. Not called for suspend to disk.
  154. */
  155. extern void arch_suspend_disable_irqs(void);
  156. /**
  157. * arch_suspend_enable_irqs - enable IRQs after suspend
  158. *
  159. * Enables IRQs (in the default case). This is a weak symbol in the common
  160. * code and thus allows architectures to override it if more needs to be
  161. * done. Not called for suspend to disk.
  162. */
  163. extern void arch_suspend_enable_irqs(void);
  164. /*
  165. * Device power management
  166. */
  167. struct device;
  168. typedef struct pm_message {
  169. int event;
  170. } pm_message_t;
  171. /*
  172. * Several driver power state transitions are externally visible, affecting
  173. * the state of pending I/O queues and (for drivers that touch hardware)
  174. * interrupts, wakeups, DMA, and other hardware state. There may also be
  175. * internal transitions to various low power modes, which are transparent
  176. * to the rest of the driver stack (such as a driver that's ON gating off
  177. * clocks which are not in active use).
  178. *
  179. * One transition is triggered by resume(), after a suspend() call; the
  180. * message is implicit:
  181. *
  182. * ON Driver starts working again, responding to hardware events
  183. * and software requests. The hardware may have gone through
  184. * a power-off reset, or it may have maintained state from the
  185. * previous suspend() which the driver will rely on while
  186. * resuming. On most platforms, there are no restrictions on
  187. * availability of resources like clocks during resume().
  188. *
  189. * Other transitions are triggered by messages sent using suspend(). All
  190. * these transitions quiesce the driver, so that I/O queues are inactive.
  191. * That commonly entails turning off IRQs and DMA; there may be rules
  192. * about how to quiesce that are specific to the bus or the device's type.
  193. * (For example, network drivers mark the link state.) Other details may
  194. * differ according to the message:
  195. *
  196. * SUSPEND Quiesce, enter a low power device state appropriate for
  197. * the upcoming system state (such as PCI_D3hot), and enable
  198. * wakeup events as appropriate.
  199. *
  200. * FREEZE Quiesce operations so that a consistent image can be saved;
  201. * but do NOT otherwise enter a low power device state, and do
  202. * NOT emit system wakeup events.
  203. *
  204. * PRETHAW Quiesce as if for FREEZE; additionally, prepare for restoring
  205. * the system from a snapshot taken after an earlier FREEZE.
  206. * Some drivers will need to reset their hardware state instead
  207. * of preserving it, to ensure that it's never mistaken for the
  208. * state which that earlier snapshot had set up.
  209. *
  210. * A minimally power-aware driver treats all messages as SUSPEND, fully
  211. * reinitializes its device during resume() -- whether or not it was reset
  212. * during the suspend/resume cycle -- and can't issue wakeup events.
  213. *
  214. * More power-aware drivers may also use low power states at runtime as
  215. * well as during system sleep states like PM_SUSPEND_STANDBY. They may
  216. * be able to use wakeup events to exit from runtime low-power states,
  217. * or from system low-power states such as standby or suspend-to-RAM.
  218. */
  219. #define PM_EVENT_ON 0
  220. #define PM_EVENT_FREEZE 1
  221. #define PM_EVENT_SUSPEND 2
  222. #define PM_EVENT_PRETHAW 3
  223. #define PMSG_FREEZE ((struct pm_message){ .event = PM_EVENT_FREEZE, })
  224. #define PMSG_PRETHAW ((struct pm_message){ .event = PM_EVENT_PRETHAW, })
  225. #define PMSG_SUSPEND ((struct pm_message){ .event = PM_EVENT_SUSPEND, })
  226. #define PMSG_ON ((struct pm_message){ .event = PM_EVENT_ON, })
  227. struct dev_pm_info {
  228. pm_message_t power_state;
  229. unsigned can_wakeup:1;
  230. #ifdef CONFIG_PM
  231. unsigned should_wakeup:1;
  232. pm_message_t prev_state;
  233. void * saved_state;
  234. struct device * pm_parent;
  235. struct list_head entry;
  236. #endif
  237. };
  238. extern void device_pm_set_parent(struct device * dev, struct device * parent);
  239. extern int device_power_down(pm_message_t state);
  240. extern void device_power_up(void);
  241. extern void device_resume(void);
  242. #ifdef CONFIG_PM
  243. extern suspend_disk_method_t pm_disk_mode;
  244. extern int device_suspend(pm_message_t state);
  245. extern int device_prepare_suspend(pm_message_t state);
  246. #define device_set_wakeup_enable(dev,val) \
  247. ((dev)->power.should_wakeup = !!(val))
  248. #define device_may_wakeup(dev) \
  249. (device_can_wakeup(dev) && (dev)->power.should_wakeup)
  250. extern int dpm_runtime_suspend(struct device *, pm_message_t);
  251. extern void dpm_runtime_resume(struct device *);
  252. extern void __suspend_report_result(const char *function, void *fn, int ret);
  253. #define suspend_report_result(fn, ret) \
  254. do { \
  255. __suspend_report_result(__FUNCTION__, fn, ret); \
  256. } while (0)
  257. /*
  258. * Platform hook to activate device wakeup capability, if that's not already
  259. * handled by enable_irq_wake() etc.
  260. * Returns zero on success, else negative errno
  261. */
  262. extern int (*platform_enable_wakeup)(struct device *dev, int is_on);
  263. static inline int call_platform_enable_wakeup(struct device *dev, int is_on)
  264. {
  265. if (platform_enable_wakeup)
  266. return (*platform_enable_wakeup)(dev, is_on);
  267. return 0;
  268. }
  269. #else /* !CONFIG_PM */
  270. static inline int device_suspend(pm_message_t state)
  271. {
  272. return 0;
  273. }
  274. #define device_set_wakeup_enable(dev,val) do{}while(0)
  275. #define device_may_wakeup(dev) (0)
  276. static inline int dpm_runtime_suspend(struct device * dev, pm_message_t state)
  277. {
  278. return 0;
  279. }
  280. static inline void dpm_runtime_resume(struct device * dev)
  281. {
  282. }
  283. #define suspend_report_result(fn, ret) do { } while (0)
  284. static inline int call_platform_enable_wakeup(struct device *dev, int is_on)
  285. {
  286. return -EIO;
  287. }
  288. #endif
  289. /* changes to device_may_wakeup take effect on the next pm state change.
  290. * by default, devices should wakeup if they can.
  291. */
  292. #define device_can_wakeup(dev) \
  293. ((dev)->power.can_wakeup)
  294. #define device_init_wakeup(dev,val) \
  295. do { \
  296. device_can_wakeup(dev) = !!(val); \
  297. device_set_wakeup_enable(dev,val); \
  298. } while(0)
  299. #endif /* __KERNEL__ */
  300. #endif /* _LINUX_PM_H */