suspend.h 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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 platform_suspend_ops - Callbacks for managing platform dependent
  26. * system sleep 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 %suspend_valid_only_mem function available that can be
  34. * assigned 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 @enter() is meaningless and should be ignored.
  45. *
  46. * @prepare: Prepare the platform for entering the system sleep state indicated
  47. * by @set_target().
  48. * @prepare() is called right after devices have been suspended (ie. the
  49. * appropriate .suspend() method has been executed for each device) and
  50. * before the nonboot CPUs are disabled (it is executed with IRQs enabled).
  51. * This callback is optional. It returns 0 on success or a negative
  52. * error code otherwise, in which case the system cannot enter the desired
  53. * sleep state (@enter() and @finish() will not be called in that case).
  54. *
  55. * @enter: Enter the system sleep state indicated by @set_target() or
  56. * represented by the argument if @set_target() is not implemented.
  57. * This callback is mandatory. It returns 0 on success or a negative
  58. * error code otherwise, in which case the system cannot enter the desired
  59. * sleep state.
  60. *
  61. * @finish: Called when the system has just left a sleep state, right after
  62. * the nonboot CPUs have been enabled and before devices are resumed (it is
  63. * executed with IRQs enabled).
  64. * This callback is optional, but should be implemented by the platforms
  65. * that implement @prepare(). If implemented, it is always called after
  66. * @enter() (even if @enter() fails).
  67. */
  68. struct platform_suspend_ops {
  69. int (*valid)(suspend_state_t state);
  70. int (*set_target)(suspend_state_t state);
  71. int (*prepare)(void);
  72. int (*enter)(suspend_state_t state);
  73. void (*finish)(void);
  74. };
  75. #ifdef CONFIG_SUSPEND
  76. extern struct platform_suspend_ops *suspend_ops;
  77. /**
  78. * suspend_set_ops - set platform dependent suspend operations
  79. * @ops: The new suspend operations to set.
  80. */
  81. extern void suspend_set_ops(struct platform_suspend_ops *ops);
  82. extern int suspend_valid_only_mem(suspend_state_t state);
  83. /**
  84. * arch_suspend_disable_irqs - disable IRQs for suspend
  85. *
  86. * Disables IRQs (in the default case). This is a weak symbol in the common
  87. * code and thus allows architectures to override it if more needs to be
  88. * done. Not called for suspend to disk.
  89. */
  90. extern void arch_suspend_disable_irqs(void);
  91. /**
  92. * arch_suspend_enable_irqs - enable IRQs after suspend
  93. *
  94. * Enables IRQs (in the default case). This is a weak symbol in the common
  95. * code and thus allows architectures to override it if more needs to be
  96. * done. Not called for suspend to disk.
  97. */
  98. extern void arch_suspend_enable_irqs(void);
  99. extern int pm_suspend(suspend_state_t state);
  100. #else /* !CONFIG_SUSPEND */
  101. #define suspend_valid_only_mem NULL
  102. static inline void suspend_set_ops(struct platform_suspend_ops *ops) {}
  103. static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; }
  104. #endif /* !CONFIG_SUSPEND */
  105. /* struct pbe is used for creating lists of pages that should be restored
  106. * atomically during the resume from disk, because the page frames they have
  107. * occupied before the suspend are in use.
  108. */
  109. struct pbe {
  110. void *address; /* address of the copy */
  111. void *orig_address; /* original address of a page */
  112. struct pbe *next;
  113. };
  114. /* mm/page_alloc.c */
  115. extern void drain_local_pages(void);
  116. extern void mark_free_pages(struct zone *zone);
  117. /**
  118. * struct hibernation_ops - hibernation platform support
  119. *
  120. * The methods in this structure allow a platform to override the default
  121. * mechanism of shutting down the machine during a hibernation transition.
  122. *
  123. * All three methods must be assigned.
  124. *
  125. * @prepare: prepare system for hibernation
  126. * @enter: shut down system after state has been saved to disk
  127. * @finish: finish/clean up after state has been reloaded
  128. * @pre_restore: prepare system for the restoration from a hibernation image
  129. * @restore_cleanup: clean up after a failing image restoration
  130. */
  131. struct hibernation_ops {
  132. int (*prepare)(void);
  133. int (*enter)(void);
  134. void (*finish)(void);
  135. int (*pre_restore)(void);
  136. void (*restore_cleanup)(void);
  137. };
  138. #ifdef CONFIG_HIBERNATION
  139. /* kernel/power/snapshot.c */
  140. extern void __register_nosave_region(unsigned long b, unsigned long e, int km);
  141. static inline void register_nosave_region(unsigned long b, unsigned long e)
  142. {
  143. __register_nosave_region(b, e, 0);
  144. }
  145. static inline void register_nosave_region_late(unsigned long b, unsigned long e)
  146. {
  147. __register_nosave_region(b, e, 1);
  148. }
  149. extern int swsusp_page_is_forbidden(struct page *);
  150. extern void swsusp_set_page_free(struct page *);
  151. extern void swsusp_unset_page_free(struct page *);
  152. extern unsigned long get_safe_page(gfp_t gfp_mask);
  153. extern void hibernation_set_ops(struct hibernation_ops *ops);
  154. extern int hibernate(void);
  155. #else /* CONFIG_HIBERNATION */
  156. static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
  157. static inline void swsusp_set_page_free(struct page *p) {}
  158. static inline void swsusp_unset_page_free(struct page *p) {}
  159. static inline void hibernation_set_ops(struct hibernation_ops *ops) {}
  160. static inline int hibernate(void) { return -ENOSYS; }
  161. #endif /* CONFIG_HIBERNATION */
  162. #ifdef CONFIG_PM_SLEEP
  163. void save_processor_state(void);
  164. void restore_processor_state(void);
  165. struct saved_context;
  166. void __save_processor_state(struct saved_context *ctxt);
  167. void __restore_processor_state(struct saved_context *ctxt);
  168. /* kernel/power/main.c */
  169. extern struct blocking_notifier_head pm_chain_head;
  170. static inline int register_pm_notifier(struct notifier_block *nb)
  171. {
  172. return blocking_notifier_chain_register(&pm_chain_head, nb);
  173. }
  174. static inline int unregister_pm_notifier(struct notifier_block *nb)
  175. {
  176. return blocking_notifier_chain_unregister(&pm_chain_head, nb);
  177. }
  178. #define pm_notifier(fn, pri) { \
  179. static struct notifier_block fn##_nb = \
  180. { .notifier_call = fn, .priority = pri }; \
  181. register_pm_notifier(&fn##_nb); \
  182. }
  183. #else /* !CONFIG_PM_SLEEP */
  184. static inline int register_pm_notifier(struct notifier_block *nb)
  185. {
  186. return 0;
  187. }
  188. static inline int unregister_pm_notifier(struct notifier_block *nb)
  189. {
  190. return 0;
  191. }
  192. #define pm_notifier(fn, pri) do { (void)(fn); } while (0)
  193. #endif /* !CONFIG_PM_SLEEP */
  194. #ifndef CONFIG_HIBERNATION
  195. static inline void register_nosave_region(unsigned long b, unsigned long e)
  196. {
  197. }
  198. static inline void register_nosave_region_late(unsigned long b, unsigned long e)
  199. {
  200. }
  201. #endif
  202. #endif /* _LINUX_SUSPEND_H */