blob: a45b9f514492d7d7c3458052ff290d1533195f4d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_SWSUSP_H
2#define _LINUX_SWSUSP_H
3
4#if defined(CONFIG_X86) || defined(CONFIG_FRV) || defined(CONFIG_PPC32)
5#include <asm/suspend.h>
6#endif
7#include <linux/swap.h>
8#include <linux/notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/init.h>
10#include <linux/pm.h>
Rafael J. Wysocki7be98232007-05-06 14:50:42 -070011#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Rafael J. Wysocki83573762006-12-06 20:34:18 -080013/* struct pbe is used for creating lists of pages that should be restored
14 * atomically during the resume from disk, because the page frames they have
15 * occupied before the suspend are in use.
16 */
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -070017struct pbe {
Rafael J. Wysocki83573762006-12-06 20:34:18 -080018 void *address; /* address of the copy */
19 void *orig_address; /* original address of a page */
Rafael J. Wysocki7088a5c2006-01-06 00:13:05 -080020 struct pbe *next;
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -070021};
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/* mm/page_alloc.c */
24extern void drain_local_pages(void);
25extern void mark_free_pages(struct zone *zone);
26
27#ifdef CONFIG_PM
28/* kernel/power/swsusp.c */
29extern int software_suspend(void);
Rafael J. Wysocki46cd2f32006-02-07 12:58:50 -080030
31#if defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE)
32extern int pm_prepare_console(void);
33extern void pm_restore_console(void);
34#else
35static inline int pm_prepare_console(void) { return 0; }
36static inline void pm_restore_console(void) {}
37#endif /* defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#else
39static inline int software_suspend(void)
40{
41 printk("Warning: fake suspend called\n");
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -070042 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
Rafael J. Wysocki46cd2f32006-02-07 12:58:50 -080044#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046void save_processor_state(void);
47void restore_processor_state(void);
48struct saved_context;
49void __save_processor_state(struct saved_context *ctxt);
50void __restore_processor_state(struct saved_context *ctxt);
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -080051unsigned long get_safe_page(gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Rafael J. Wysocki7be98232007-05-06 14:50:42 -070053/* Page management functions for the software suspend (swsusp) */
54
55static inline void swsusp_set_page_forbidden(struct page *page)
56{
57 SetPageNosave(page);
58}
59
60static inline int swsusp_page_is_forbidden(struct page *page)
61{
62 return PageNosave(page);
63}
64
65static inline void swsusp_unset_page_forbidden(struct page *page)
66{
67 ClearPageNosave(page);
68}
69
70static inline void swsusp_set_page_free(struct page *page)
71{
72 SetPageNosaveFree(page);
73}
74
75static inline int swsusp_page_is_free(struct page *page)
76{
77 return PageNosaveFree(page);
78}
79
80static inline void swsusp_unset_page_free(struct page *page)
81{
82 ClearPageNosaveFree(page);
83}
84
Rafael J. Wysocki25761b62005-10-30 14:59:56 -080085/*
86 * XXX: We try to keep some more pages free so that I/O operations succeed
87 * without paging. Might this be more?
88 */
Rafael J. Wysocki72a97e02006-01-06 00:13:46 -080089#define PAGES_FOR_IO 1024
Rafael J. Wysocki25761b62005-10-30 14:59:56 -080090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#endif /* _LINUX_SWSUSP_H */