blob: bf99bd49f8efd3af5f13004ca3c84c57bc532e91 [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>
11
Rafael J. Wysocki83573762006-12-06 20:34:18 -080012/* struct pbe is used for creating lists of pages that should be restored
13 * atomically during the resume from disk, because the page frames they have
14 * occupied before the suspend are in use.
15 */
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -070016struct pbe {
Rafael J. Wysocki83573762006-12-06 20:34:18 -080017 void *address; /* address of the copy */
18 void *orig_address; /* original address of a page */
Rafael J. Wysocki7088a5c2006-01-06 00:13:05 -080019 struct pbe *next;
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -070020};
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/* mm/page_alloc.c */
23extern void drain_local_pages(void);
24extern void mark_free_pages(struct zone *zone);
25
26#ifdef CONFIG_PM
27/* kernel/power/swsusp.c */
28extern int software_suspend(void);
Rafael J. Wysocki46cd2f32006-02-07 12:58:50 -080029
30#if defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE)
31extern int pm_prepare_console(void);
32extern void pm_restore_console(void);
33#else
34static inline int pm_prepare_console(void) { return 0; }
35static inline void pm_restore_console(void) {}
36#endif /* defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#else
38static inline int software_suspend(void)
39{
40 printk("Warning: fake suspend called\n");
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -070041 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
Rafael J. Wysocki46cd2f32006-02-07 12:58:50 -080043#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045void save_processor_state(void);
46void restore_processor_state(void);
47struct saved_context;
48void __save_processor_state(struct saved_context *ctxt);
49void __restore_processor_state(struct saved_context *ctxt);
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -080050unsigned long get_safe_page(gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Rafael J. Wysocki25761b62005-10-30 14:59:56 -080052/*
53 * XXX: We try to keep some more pages free so that I/O operations succeed
54 * without paging. Might this be more?
55 */
Rafael J. Wysocki72a97e02006-01-06 00:13:46 -080056#define PAGES_FOR_IO 1024
Rafael J. Wysocki25761b62005-10-30 14:59:56 -080057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif /* _LINUX_SWSUSP_H */