blob: 3cc4d6394c0782549c589001431ffb091c0626b8 [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
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -070027#if defined(CONFIG_PM) && defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE)
Rafael J. Wysocki46cd2f32006-02-07 12:58:50 -080028extern int pm_prepare_console(void);
29extern void pm_restore_console(void);
30#else
31static inline int pm_prepare_console(void) { return 0; }
32static inline void pm_restore_console(void) {}
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -070033#endif
34
35#if defined(CONFIG_PM) && defined(CONFIG_SOFTWARE_SUSPEND)
36/* kernel/power/swsusp.c */
37extern int software_suspend(void);
38/* kernel/power/snapshot.c */
39extern void __init register_nosave_region(unsigned long, unsigned long);
40extern int swsusp_page_is_forbidden(struct page *);
41extern void swsusp_set_page_free(struct page *);
42extern void swsusp_unset_page_free(struct page *);
43extern unsigned long get_safe_page(gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#else
45static inline int software_suspend(void)
46{
47 printk("Warning: fake suspend called\n");
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -070048 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -070050
51static inline void register_nosave_region(unsigned long b, unsigned long e) {}
52static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
53static inline void swsusp_set_page_free(struct page *p) {}
54static inline void swsusp_unset_page_free(struct page *p) {}
55#endif /* defined(CONFIG_PM) && defined(CONFIG_SOFTWARE_SUSPEND) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057void save_processor_state(void);
58void restore_processor_state(void);
59struct saved_context;
60void __save_processor_state(struct saved_context *ctxt);
61void __restore_processor_state(struct saved_context *ctxt);
Rafael J. Wysocki7be98232007-05-06 14:50:42 -070062
Rafael J. Wysocki25761b62005-10-30 14:59:56 -080063/*
64 * XXX: We try to keep some more pages free so that I/O operations succeed
65 * without paging. Might this be more?
66 */
Rafael J. Wysocki72a97e02006-01-06 00:13:46 -080067#define PAGES_FOR_IO 1024
Rafael J. Wysocki25761b62005-10-30 14:59:56 -080068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#endif /* _LINUX_SWSUSP_H */