suspend.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. #ifndef _LINUX_SUSPEND_H
  2. #define _LINUX_SUSPEND_H
  3. #if defined(CONFIG_X86) || defined(CONFIG_FRV) || defined(CONFIG_PPC32) || defined(CONFIG_PPC64)
  4. #include <asm/suspend.h>
  5. #endif
  6. #include <linux/swap.h>
  7. #include <linux/notifier.h>
  8. #include <linux/init.h>
  9. #include <linux/pm.h>
  10. #include <linux/mm.h>
  11. #include <asm/errno.h>
  12. #if defined(CONFIG_PM_SLEEP) && defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE)
  13. extern int pm_prepare_console(void);
  14. extern void pm_restore_console(void);
  15. #else
  16. static inline int pm_prepare_console(void) { return 0; }
  17. static inline void pm_restore_console(void) {}
  18. #endif
  19. typedef int __bitwise suspend_state_t;
  20. #define PM_SUSPEND_ON ((__force suspend_state_t) 0)
  21. #define PM_SUSPEND_STANDBY ((__force suspend_state_t) 1)
  22. #define PM_SUSPEND_MEM ((__force suspend_state_t) 3)
  23. #define PM_SUSPEND_MAX ((__force suspend_state_t) 4)
  24. /**
  25. * struct pm_ops - Callbacks for managing platform dependent system sleep
  26. * states.
  27. *
  28. * @valid: Callback to determine if given system sleep state is supported by
  29. * the platform.
  30. * Valid (ie. supported) states are advertised in /sys/power/state. Note
  31. * that it still may be impossible to enter given system sleep state if the
  32. * conditions aren't right.
  33. * There is the %pm_valid_only_mem function available that can be assigned
  34. * to this if the platform only supports mem sleep.
  35. *
  36. * @set_target: Tell the platform which system sleep state is going to be
  37. * entered.
  38. * @set_target() is executed right prior to suspending devices. The
  39. * information conveyed to the platform code by @set_target() should be
  40. * disregarded by the platform as soon as @finish() is executed and if
  41. * @prepare() fails. If @set_target() fails (ie. returns nonzero),
  42. * @prepare(), @enter() and @finish() will not be called by the PM core.
  43. * This callback is optional. However, if it is implemented, the argument
  44. * passed to @prepare(), @enter() and @finish() is meaningless and should
  45. * be ignored.
  46. *
  47. * @prepare: Prepare the platform for entering the system sleep state indicated
  48. * by @set_target() or represented by the argument if @set_target() is not
  49. * implemented.
  50. * @prepare() is called right after devices have been suspended (ie. the
  51. * appropriate .suspend() method has been executed for each device) and
  52. * before the nonboot CPUs are disabled (it is executed with IRQs enabled).
  53. * This callback is optional. It returns 0 on success or a negative
  54. * error code otherwise, in which case the system cannot enter the desired
  55. * sleep state (@enter() and @finish() will not be called in that case).
  56. *
  57. * @enter: Enter the system sleep state indicated by @set_target() or
  58. * represented by the argument if @set_target() is not implemented.
  59. * This callback is mandatory. It returns 0 on success or a negative
  60. * error code otherwise, in which case the system cannot enter the desired
  61. * sleep state.
  62. *
  63. * @finish: Called when the system has just left a sleep state, right after
  64. * the nonboot CPUs have been enabled and before devices are resumed (it is
  65. * executed with IRQs enabled). If @set_target() is not implemented, the
  66. * argument represents the sleep state being left.
  67. * This callback is optional, but should be implemented by the platforms
  68. * that implement @prepare(). If implemented, it is always called after
  69. * @enter() (even if @enter() fails).
  70. */
  71. struct pm_ops {
  72. int (*valid)(suspend_state_t state);
  73. int (*set_target)(suspend_state_t state);
  74. int (*prepare)(suspend_state_t state);
  75. int (*enter)(suspend_state_t state);
  76. int (*finish)(suspend_state_t state);
  77. };
  78. #ifdef CONFIG_SUSPEND
  79. extern struct pm_ops *pm_ops;
  80. /**
  81. * pm_set_ops - set platform dependent power management ops
  82. * @pm_ops: The new power management operations to set.
  83. */
  84. extern void pm_set_ops(struct pm_ops *pm_ops);
  85. extern int pm_valid_only_mem(suspend_state_t state);
  86. /**
  87. * arch_suspend_disable_irqs - disable IRQs for suspend
  88. *
  89. * Disables IRQs (in the default case). This is a weak symbol in the common
  90. * code and thus allows architectures to override it if more needs to be
  91. * done. Not called for suspend to disk.
  92. */
  93. extern void arch_suspend_disable_irqs(void);
  94. /**
  95. * arch_suspend_enable_irqs - enable IRQs after suspend
  96. *
  97. * Enables IRQs (in the default case). This is a weak symbol in the common
  98. * code and thus allows architectures to override it if more needs to be
  99. * done. Not called for suspend to disk.
  100. */
  101. extern void arch_suspend_enable_irqs(void);
  102. extern int pm_suspend(suspend_state_t state);
  103. #else /* !CONFIG_SUSPEND */
  104. #define suspend_valid_only_mem NULL
  105. static inline void pm_set_ops(struct pm_ops *pm_ops) {}
  106. static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; }
  107. #endif /* !CONFIG_SUSPEND */
  108. /* struct pbe is used for creating lists of pages that should be restored
  109. * atomically during the resume from disk, because the page frames they have
  110. * occupied before the suspend are in use.
  111. */
  112. struct pbe {
  113. void *address; /* address of the copy */
  114. void *orig_address; /* original address of a page */
  115. struct pbe *next;
  116. };
  117. /* mm/page_alloc.c */
  118. extern void drain_local_pages(void);
  119. extern void mark_free_pages(struct zone *zone);
  120. /**
  121. * struct hibernation_ops - hibernation platform support
  122. *
  123. * The methods in this structure allow a platform to override the default
  124. * mechanism of shutting down the machine during a hibernation transition.
  125. *
  126. * All three methods must be assigned.
  127. *
  128. * @prepare: prepare system for hibernation
  129. * @enter: shut down system after state has been saved to disk
  130. * @finish: finish/clean up after state has been reloaded
  131. * @pre_restore: prepare system for the restoration from a hibernation image
  132. * @restore_cleanup: clean up after a failing image restoration
  133. */
  134. struct hibernation_ops {
  135. int (*prepare)(void);
  136. int (*enter)(void);
  137. void (*finish)(void);
  138. int (*pre_restore)(void);
  139. void (*restore_cleanup)(void);
  140. };
  141. #ifdef CONFIG_HIBERNATION
  142. /* kernel/power/snapshot.c */
  143. extern void __register_nosave_region(unsigned long b, unsigned long e, int km);
  144. static inline void register_nosave_region(unsigned long b, unsigned long e)
  145. {
  146. __register_nosave_region(b, e, 0);
  147. }
  148. static inline void register_nosave_region_late(unsigned long b, unsigned long e)
  149. {
  150. __register_nosave_region(b, e, 1);
  151. }
  152. extern int swsusp_page_is_forbidden(struct page *);
  153. extern void swsusp_set_page_free(struct page *);
  154. extern void swsusp_unset_page_free(struct page *);
  155. extern unsigned long get_safe_page(gfp_t gfp_mask);
  156. extern void hibernation_set_ops(struct hibernation_ops *ops);
  157. extern int hibernate(void);
  158. #else /* CONFIG_HIBERNATION */
  159. static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
  160. static inline void swsusp_set_page_free(struct page *p) {}
  161. static inline void swsusp_unset_page_free(struct page *p) {}
  162. static inline void hibernation_set_ops(struct hibernation_ops *ops) {}
  163. static inline int hibernate(void) { return -ENOSYS; }
  164. #endif /* CONFIG_HIBERNATION */
  165. #ifdef CONFIG_PM_SLEEP
  166. void save_processor_state(void);
  167. void restore_processor_state(void);
  168. struct saved_context;
  169. void __save_processor_state(struct saved_context *ctxt);
  170. void __restore_processor_state(struct saved_context *ctxt);
  171. /* kernel/power/main.c */
  172. extern struct blocking_notifier_head pm_chain_head;
  173. static inline int register_pm_notifier(struct notifier_block *nb)
  174. {
  175. return blocking_notifier_chain_register(&pm_chain_head, nb);
  176. }
  177. static inline int unregister_pm_notifier(struct notifier_block *nb)
  178. {
  179. return blocking_notifier_chain_unregister(&pm_chain_head, nb);
  180. }
  181. #define pm_notifier(fn, pri) { \
  182. static struct notifier_block fn##_nb = \
  183. { .notifier_call = fn, .priority = pri }; \
  184. register_pm_notifier(&fn##_nb); \
  185. }
  186. #else /* !CONFIG_PM_SLEEP */
  187. static inline int register_pm_notifier(struct notifier_block *nb)
  188. {
  189. return 0;
  190. }
  191. static inline int unregister_pm_notifier(struct notifier_block *nb)
  192. {
  193. return 0;
  194. }
  195. #define pm_notifier(fn, pri) do { (void)(fn); } while (0)
  196. #endif /* !CONFIG_PM_SLEEP */
  197. #ifndef CONFIG_HIBERNATION
  198. static inline void register_nosave_region(unsigned long b, unsigned long e)
  199. {
  200. }
  201. static inline void register_nosave_region_late(unsigned long b, unsigned long e)
  202. {
  203. }
  204. #endif
  205. #endif /* _LINUX_SUSPEND_H */