[PATCH] swsusp: clean up suspend header
[powerpc.git] / include / linux / suspend.h
1 #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>
9 #include <linux/init.h>
10 #include <linux/pm.h>
11
12 /* page backup entry */
13 struct pbe {
14         unsigned long address;          /* address of the copy */
15         unsigned long orig_address;     /* original address of page */
16         struct pbe *next;
17 };
18
19 #define for_each_pbe(pbe, pblist) \
20         for (pbe = pblist ; pbe ; pbe = pbe->next)
21
22 #define PBES_PER_PAGE      (PAGE_SIZE/sizeof(struct pbe))
23 #define PB_PAGE_SKIP       (PBES_PER_PAGE-1)
24
25 #define for_each_pb_page(pbe, pblist) \
26         for (pbe = pblist ; pbe ; pbe = (pbe+PB_PAGE_SKIP)->next)
27
28 /* mm/page_alloc.c */
29 extern void drain_local_pages(void);
30 extern void mark_free_pages(struct zone *zone);
31
32 #ifdef CONFIG_PM
33 /* kernel/power/swsusp.c */
34 extern int software_suspend(void);
35
36 #if defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE)
37 extern int pm_prepare_console(void);
38 extern void pm_restore_console(void);
39 #else
40 static inline int pm_prepare_console(void) { return 0; }
41 static inline void pm_restore_console(void) {}
42 #endif /* defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE) */
43 #else
44 static inline int software_suspend(void)
45 {
46         printk("Warning: fake suspend called\n");
47         return -ENOSYS;
48 }
49 #endif /* CONFIG_PM */
50
51 void save_processor_state(void);
52 void restore_processor_state(void);
53 struct saved_context;
54 void __save_processor_state(struct saved_context *ctxt);
55 void __restore_processor_state(struct saved_context *ctxt);
56 unsigned long get_safe_page(gfp_t gfp_mask);
57
58 /*
59  * XXX: We try to keep some more pages free so that I/O operations succeed
60  * without paging. Might this be more?
61  */
62 #define PAGES_FOR_IO    1024
63
64 #endif /* _LINUX_SWSUSP_H */