suspend.h 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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. /**
  77. * suspend_set_ops - set platform dependent suspend operations
  78. * @ops: The new suspend operations to set.
  79. */
  80. extern void suspend_set_ops(struct platform_suspend_ops *ops);
  81. extern int suspend_valid_only_mem(suspend_state_t state);
  82. /**
  83. * arch_suspend_disable_irqs - disable IRQs for suspend
  84. *
  85. * Disables IRQs (in the default case). This is a weak symbol in the common
  86. * code and thus allows architectures to override it if more needs to be
  87. * done. Not called for suspend to disk.
  88. */
  89. extern void arch_suspend_disable_irqs(void);
  90. /**
  91. * arch_suspend_enable_irqs - enable IRQs after suspend
  92. *
  93. * Enables IRQs (in the default case). This is a weak symbol in the common
  94. * code and thus allows architectures to override it if more needs to be
  95. * done. Not called for suspend to disk.
  96. */
  97. extern void arch_suspend_enable_irqs(void);
  98. extern int pm_suspend(suspend_state_t state);
  99. #else /* !CONFIG_SUSPEND */
  100. #define suspend_valid_only_mem NULL
  101. static inline void suspend_set_ops(struct platform_suspend_ops *ops) {}
  102. static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; }
  103. #endif /* !CONFIG_SUSPEND */
  104. /* struct pbe is used for creating lists of pages that should be restored
  105. * atomically during the resume from disk, because the page frames they have
  106. * occupied before the suspend are in use.
  107. */
  108. struct pbe {
  109. void *address; /* address of the copy */
  110. void *orig_address; /* original address of a page */
  111. struct pbe *next;
  112. };
  113. /* mm/page_alloc.c */
  114. extern void drain_local_pages(void);
  115. extern void mark_free_pages(struct zone *zone);
  116. /**
  117. * struct platform_hibernation_ops - hibernation platform support
  118. *
  119. * The methods in this structure allow a platform to override the default
  120. * mechanism of shutting down the machine during a hibernation transition.
  121. *
  122. * All three methods must be assigned.
  123. *
  124. * @start: Tell the platform driver that we're starting hibernation.
  125. * Called right after shrinking memory and before freezing devices.
  126. *
  127. * @pre_snapshot: Prepare the platform for creating the hibernation image.
  128. * Called right after devices have been frozen and before the nonboot
  129. * CPUs are disabled (runs with IRQs on).
  130. *
  131. * @finish: Restore the previous state of the platform after the hibernation
  132. * image has been created *or* put the platform into the normal operation
  133. * mode after the hibernation (the same method is executed in both cases).
  134. * Called right after the nonboot CPUs have been enabled and before
  135. * thawing devices (runs with IRQs on).
  136. *
  137. * @prepare: Prepare the platform for entering the low power state.
  138. * Called right after the hibernation image has been saved and before
  139. * devices are prepared for entering the low power state.
  140. *
  141. * @enter: Put the system into the low power state after the hibernation image
  142. * has been saved to disk.
  143. * Called after the nonboot CPUs have been disabled and all of the low
  144. * level devices have been shut down (runs with IRQs off).
  145. *
  146. * @pre_restore: Prepare system for the restoration from a hibernation image.
  147. * Called right after devices have been frozen and before the nonboot
  148. * CPUs are disabled (runs with IRQs on).
  149. *
  150. * @restore_cleanup: Clean up after a failing image restoration.
  151. * Called right after the nonboot CPUs have been enabled and before
  152. * thawing devices (runs with IRQs on).
  153. */
  154. struct platform_hibernation_ops {
  155. int (*start)(void);
  156. int (*pre_snapshot)(void);
  157. void (*finish)(void);
  158. int (*prepare)(void);
  159. int (*enter)(void);
  160. int (*pre_restore)(void);
  161. void (*restore_cleanup)(void);
  162. };
  163. #ifdef CONFIG_HIBERNATION
  164. /* kernel/power/snapshot.c */
  165. extern void __register_nosave_region(unsigned long b, unsigned long e, int km);
  166. static inline void register_nosave_region(unsigned long b, unsigned long e)
  167. {
  168. __register_nosave_region(b, e, 0);
  169. }
  170. static inline void register_nosave_region_late(unsigned long b, unsigned long e)
  171. {
  172. __register_nosave_region(b, e, 1);
  173. }
  174. extern int swsusp_page_is_forbidden(struct page *);
  175. extern void swsusp_set_page_free(struct page *);
  176. extern void swsusp_unset_page_free(struct page *);
  177. extern unsigned long get_safe_page(gfp_t gfp_mask);
  178. extern void hibernation_set_ops(struct platform_hibernation_ops *ops);
  179. extern int hibernate(void);
  180. #else /* CONFIG_HIBERNATION */
  181. static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
  182. static inline void swsusp_set_page_free(struct page *p) {}
  183. static inline void swsusp_unset_page_free(struct page *p) {}
  184. static inline void hibernation_set_ops(struct platform_hibernation_ops *ops) {}
  185. static inline int hibernate(void) { return -ENOSYS; }
  186. #endif /* CONFIG_HIBERNATION */
  187. #ifdef CONFIG_PM_SLEEP
  188. void save_processor_state(void);
  189. void restore_processor_state(void);
  190. struct saved_context;
  191. void __save_processor_state(struct saved_context *ctxt);
  192. void __restore_processor_state(struct saved_context *ctxt);
  193. /* kernel/power/main.c */
  194. extern struct blocking_notifier_head pm_chain_head;
  195. static inline int register_pm_notifier(struct notifier_block *nb)
  196. {
  197. return blocking_notifier_chain_register(&pm_chain_head, nb);
  198. }
  199. static inline int unregister_pm_notifier(struct notifier_block *nb)
  200. {
  201. return blocking_notifier_chain_unregister(&pm_chain_head, nb);
  202. }
  203. #define pm_notifier(fn, pri) { \
  204. static struct notifier_block fn##_nb = \
  205. { .notifier_call = fn, .priority = pri }; \
  206. register_pm_notifier(&fn##_nb); \
  207. }
  208. #else /* !CONFIG_PM_SLEEP */
  209. static inline int register_pm_notifier(struct notifier_block *nb)
  210. {
  211. return 0;
  212. }
  213. static inline int unregister_pm_notifier(struct notifier_block *nb)
  214. {
  215. return 0;
  216. }
  217. #define pm_notifier(fn, pri) do { (void)(fn); } while (0)
  218. #endif /* !CONFIG_PM_SLEEP */
  219. #ifndef CONFIG_HIBERNATION
  220. static inline void register_nosave_region(unsigned long b, unsigned long e)
  221. {
  222. }
  223. static inline void register_nosave_region_late(unsigned long b, unsigned long e)
  224. {
  225. }
  226. #endif
  227. #endif /* _LINUX_SUSPEND_H */