xref: /linux/kernel/power/power.h (revision 49c3df6aaa6a51071fc135273d1a2515d019099f)
11da177e4SLinus Torvalds #include <linux/suspend.h>
21da177e4SLinus Torvalds #include <linux/utsname.h>
31da177e4SLinus Torvalds 
41da177e4SLinus Torvalds struct swsusp_info {
51da177e4SLinus Torvalds 	struct new_utsname	uts;
61da177e4SLinus Torvalds 	u32			version_code;
71da177e4SLinus Torvalds 	unsigned long		num_physpages;
81da177e4SLinus Torvalds 	int			cpus;
91da177e4SLinus Torvalds 	unsigned long		image_pages;
107088a5c0SRafael J. Wysocki 	unsigned long		pages;
116e1819d6SRafael J. Wysocki 	unsigned long		size;
121da177e4SLinus Torvalds } __attribute__((aligned(PAGE_SIZE)));
131da177e4SLinus Torvalds 
141da177e4SLinus Torvalds 
151da177e4SLinus Torvalds 
161da177e4SLinus Torvalds #ifdef CONFIG_SOFTWARE_SUSPEND
171da177e4SLinus Torvalds extern int pm_suspend_disk(void);
181da177e4SLinus Torvalds 
191da177e4SLinus Torvalds #else
201da177e4SLinus Torvalds static inline int pm_suspend_disk(void)
211da177e4SLinus Torvalds {
221da177e4SLinus Torvalds 	return -EPERM;
231da177e4SLinus Torvalds }
241da177e4SLinus Torvalds #endif
25a6d70980SStephen Hemminger 
26*49c3df6aSVivek Goyal extern int pfn_is_nosave(unsigned long);
27*49c3df6aSVivek Goyal 
28a6d70980SStephen Hemminger extern struct mutex pm_mutex;
29a6d70980SStephen Hemminger 
301da177e4SLinus Torvalds #define power_attr(_name) \
311da177e4SLinus Torvalds static struct subsys_attribute _name##_attr = {	\
321da177e4SLinus Torvalds 	.attr	= {				\
331da177e4SLinus Torvalds 		.name = __stringify(_name),	\
341da177e4SLinus Torvalds 		.mode = 0644,			\
351da177e4SLinus Torvalds 	},					\
361da177e4SLinus Torvalds 	.show	= _name##_show,			\
371da177e4SLinus Torvalds 	.store	= _name##_store,		\
381da177e4SLinus Torvalds }
391da177e4SLinus Torvalds 
401da177e4SLinus Torvalds extern struct subsystem power_subsys;
411da177e4SLinus Torvalds 
42853609b6SRafael J. Wysocki /* Preferred image size in bytes (default 500 MB) */
43853609b6SRafael J. Wysocki extern unsigned long image_size;
44f577eb30SRafael J. Wysocki extern int in_suspend;
4561159a31SRafael J. Wysocki extern dev_t swsusp_resume_device;
469a154d9dSRafael J. Wysocki extern sector_t swsusp_resume_block;
47f577eb30SRafael J. Wysocki 
4825761b6eSRafael J. Wysocki extern asmlinkage int swsusp_arch_suspend(void);
4925761b6eSRafael J. Wysocki extern asmlinkage int swsusp_arch_resume(void);
5025761b6eSRafael J. Wysocki 
5172a97e08SRafael J. Wysocki extern unsigned int count_data_pages(void);
52f577eb30SRafael J. Wysocki 
53fb13a28bSRafael J. Wysocki /**
54fb13a28bSRafael J. Wysocki  *	Auxiliary structure used for reading the snapshot image data and
55fb13a28bSRafael J. Wysocki  *	metadata from and writing them to the list of page backup entries
56fb13a28bSRafael J. Wysocki  *	(PBEs) which is the main data structure of swsusp.
57fb13a28bSRafael J. Wysocki  *
58fb13a28bSRafael J. Wysocki  *	Using struct snapshot_handle we can transfer the image, including its
59fb13a28bSRafael J. Wysocki  *	metadata, as a continuous sequence of bytes with the help of
60fb13a28bSRafael J. Wysocki  *	snapshot_read_next() and snapshot_write_next().
61fb13a28bSRafael J. Wysocki  *
62fb13a28bSRafael J. Wysocki  *	The code that writes the image to a storage or transfers it to
63fb13a28bSRafael J. Wysocki  *	the user land is required to use snapshot_read_next() for this
64fb13a28bSRafael J. Wysocki  *	purpose and it should not make any assumptions regarding the internal
65fb13a28bSRafael J. Wysocki  *	structure of the image.  Similarly, the code that reads the image from
66fb13a28bSRafael J. Wysocki  *	a storage or transfers it from the user land is required to use
67fb13a28bSRafael J. Wysocki  *	snapshot_write_next().
68fb13a28bSRafael J. Wysocki  *
69fb13a28bSRafael J. Wysocki  *	This may allow us to change the internal structure of the image
70fb13a28bSRafael J. Wysocki  *	in the future with considerably less effort.
71fb13a28bSRafael J. Wysocki  */
72fb13a28bSRafael J. Wysocki 
73f577eb30SRafael J. Wysocki struct snapshot_handle {
74fb13a28bSRafael J. Wysocki 	loff_t		offset;	/* number of the last byte ready for reading
75fb13a28bSRafael J. Wysocki 				 * or writing in the sequence
76fb13a28bSRafael J. Wysocki 				 */
77fb13a28bSRafael J. Wysocki 	unsigned int	cur;	/* number of the block of PAGE_SIZE bytes the
78fb13a28bSRafael J. Wysocki 				 * next operation will refer to (ie. current)
79fb13a28bSRafael J. Wysocki 				 */
80fb13a28bSRafael J. Wysocki 	unsigned int	cur_offset;	/* offset with respect to the current
81fb13a28bSRafael J. Wysocki 					 * block (for the next operation)
82fb13a28bSRafael J. Wysocki 					 */
83fb13a28bSRafael J. Wysocki 	unsigned int	prev;	/* number of the block of PAGE_SIZE bytes that
84fb13a28bSRafael J. Wysocki 				 * was the current one previously
85fb13a28bSRafael J. Wysocki 				 */
86fb13a28bSRafael J. Wysocki 	void		*buffer;	/* address of the block to read from
87fb13a28bSRafael J. Wysocki 					 * or write to
88fb13a28bSRafael J. Wysocki 					 */
89fb13a28bSRafael J. Wysocki 	unsigned int	buf_offset;	/* location to read from or write to,
90fb13a28bSRafael J. Wysocki 					 * given as a displacement from 'buffer'
91fb13a28bSRafael J. Wysocki 					 */
92fb13a28bSRafael J. Wysocki 	int		sync_read;	/* Set to one to notify the caller of
93fb13a28bSRafael J. Wysocki 					 * snapshot_write_next() that it may
94fb13a28bSRafael J. Wysocki 					 * need to call wait_on_bio_chain()
95fb13a28bSRafael J. Wysocki 					 */
96f577eb30SRafael J. Wysocki };
97f577eb30SRafael J. Wysocki 
98fb13a28bSRafael J. Wysocki /* This macro returns the address from/to which the caller of
99fb13a28bSRafael J. Wysocki  * snapshot_read_next()/snapshot_write_next() is allowed to
100fb13a28bSRafael J. Wysocki  * read/write data after the function returns
101fb13a28bSRafael J. Wysocki  */
102f577eb30SRafael J. Wysocki #define data_of(handle)	((handle).buffer + (handle).buf_offset)
103f577eb30SRafael J. Wysocki 
104b788db79SRafael J. Wysocki extern unsigned int snapshot_additional_pages(struct zone *zone);
105f577eb30SRafael J. Wysocki extern int snapshot_read_next(struct snapshot_handle *handle, size_t count);
106f577eb30SRafael J. Wysocki extern int snapshot_write_next(struct snapshot_handle *handle, size_t count);
1078357376dSRafael J. Wysocki extern void snapshot_write_finalize(struct snapshot_handle *handle);
108b788db79SRafael J. Wysocki extern int snapshot_image_loaded(struct snapshot_handle *handle);
10961159a31SRafael J. Wysocki 
11037b2ba12SRafael J. Wysocki /*
11137b2ba12SRafael J. Wysocki  * This structure is used to pass the values needed for the identification
11237b2ba12SRafael J. Wysocki  * of the resume swap area from a user space to the kernel via the
11337b2ba12SRafael J. Wysocki  * SNAPSHOT_SET_SWAP_AREA ioctl
11437b2ba12SRafael J. Wysocki  */
11537b2ba12SRafael J. Wysocki struct resume_swap_area {
11637b2ba12SRafael J. Wysocki 	loff_t offset;
11737b2ba12SRafael J. Wysocki 	u_int32_t dev;
11837b2ba12SRafael J. Wysocki } __attribute__((packed));
11937b2ba12SRafael J. Wysocki 
1206e1819d6SRafael J. Wysocki #define SNAPSHOT_IOC_MAGIC	'3'
1216e1819d6SRafael J. Wysocki #define SNAPSHOT_FREEZE			_IO(SNAPSHOT_IOC_MAGIC, 1)
1226e1819d6SRafael J. Wysocki #define SNAPSHOT_UNFREEZE		_IO(SNAPSHOT_IOC_MAGIC, 2)
1236e1819d6SRafael J. Wysocki #define SNAPSHOT_ATOMIC_SNAPSHOT	_IOW(SNAPSHOT_IOC_MAGIC, 3, void *)
1246e1819d6SRafael J. Wysocki #define SNAPSHOT_ATOMIC_RESTORE		_IO(SNAPSHOT_IOC_MAGIC, 4)
1256e1819d6SRafael J. Wysocki #define SNAPSHOT_FREE			_IO(SNAPSHOT_IOC_MAGIC, 5)
1266e1819d6SRafael J. Wysocki #define SNAPSHOT_SET_IMAGE_SIZE		_IOW(SNAPSHOT_IOC_MAGIC, 6, unsigned long)
1276e1819d6SRafael J. Wysocki #define SNAPSHOT_AVAIL_SWAP		_IOR(SNAPSHOT_IOC_MAGIC, 7, void *)
1286e1819d6SRafael J. Wysocki #define SNAPSHOT_GET_SWAP_PAGE		_IOR(SNAPSHOT_IOC_MAGIC, 8, void *)
1296e1819d6SRafael J. Wysocki #define SNAPSHOT_FREE_SWAP_PAGES	_IO(SNAPSHOT_IOC_MAGIC, 9)
1306e1819d6SRafael J. Wysocki #define SNAPSHOT_SET_SWAP_FILE		_IOW(SNAPSHOT_IOC_MAGIC, 10, unsigned int)
1319b238205SLuca Tettamanti #define SNAPSHOT_S2RAM			_IO(SNAPSHOT_IOC_MAGIC, 11)
1323592695cSStefan Seyfried #define SNAPSHOT_PMOPS			_IOW(SNAPSHOT_IOC_MAGIC, 12, unsigned int)
13337b2ba12SRafael J. Wysocki #define SNAPSHOT_SET_SWAP_AREA		_IOW(SNAPSHOT_IOC_MAGIC, 13, \
13437b2ba12SRafael J. Wysocki 							struct resume_swap_area)
13537b2ba12SRafael J. Wysocki #define SNAPSHOT_IOC_MAXNR	13
1363592695cSStefan Seyfried 
1373592695cSStefan Seyfried #define PMOPS_PREPARE	1
1383592695cSStefan Seyfried #define PMOPS_ENTER	2
1393592695cSStefan Seyfried #define PMOPS_FINISH	3
1406e1819d6SRafael J. Wysocki 
14161159a31SRafael J. Wysocki /**
14261159a31SRafael J. Wysocki  *	The bitmap is used for tracing allocated swap pages
14361159a31SRafael J. Wysocki  *
14461159a31SRafael J. Wysocki  *	The entire bitmap consists of a number of bitmap_page
14561159a31SRafael J. Wysocki  *	structures linked with the help of the .next member.
14661159a31SRafael J. Wysocki  *	Thus each page can be allocated individually, so we only
14761159a31SRafael J. Wysocki  *	need to make 0-order memory allocations to create
14861159a31SRafael J. Wysocki  *	the bitmap.
14961159a31SRafael J. Wysocki  */
15061159a31SRafael J. Wysocki 
15161159a31SRafael J. Wysocki #define BITMAP_PAGE_SIZE	(PAGE_SIZE - sizeof(void *))
15261159a31SRafael J. Wysocki #define BITMAP_PAGE_CHUNKS	(BITMAP_PAGE_SIZE / sizeof(long))
15361159a31SRafael J. Wysocki #define BITS_PER_CHUNK		(sizeof(long) * 8)
15461159a31SRafael J. Wysocki #define BITMAP_PAGE_BITS	(BITMAP_PAGE_CHUNKS * BITS_PER_CHUNK)
15561159a31SRafael J. Wysocki 
15661159a31SRafael J. Wysocki struct bitmap_page {
15761159a31SRafael J. Wysocki 	unsigned long		chunks[BITMAP_PAGE_CHUNKS];
15861159a31SRafael J. Wysocki 	struct bitmap_page	*next;
15961159a31SRafael J. Wysocki };
16061159a31SRafael J. Wysocki 
16161159a31SRafael J. Wysocki extern void free_bitmap(struct bitmap_page *bitmap);
16261159a31SRafael J. Wysocki extern struct bitmap_page *alloc_bitmap(unsigned int nr_bits);
1633aef83e0SRafael J. Wysocki extern sector_t alloc_swapdev_block(int swap, struct bitmap_page *bitmap);
16461159a31SRafael J. Wysocki extern void free_all_swap_pages(int swap, struct bitmap_page *bitmap);
16561159a31SRafael J. Wysocki 
16674c7e2efSRandy Dunlap extern int swsusp_check(void);
16761159a31SRafael J. Wysocki extern int swsusp_shrink_memory(void);
16874c7e2efSRandy Dunlap extern void swsusp_free(void);
16961159a31SRafael J. Wysocki extern int swsusp_suspend(void);
17061159a31SRafael J. Wysocki extern int swsusp_resume(void);
17174c7e2efSRandy Dunlap extern int swsusp_read(void);
17274c7e2efSRandy Dunlap extern int swsusp_write(void);
17374c7e2efSRandy Dunlap extern void swsusp_close(void);
1749b238205SLuca Tettamanti extern int suspend_enter(suspend_state_t state);
1750d3a9abeSRafael J. Wysocki 
1760d3a9abeSRafael J. Wysocki struct timeval;
1770d3a9abeSRafael J. Wysocki extern void swsusp_show_speed(struct timeval *, struct timeval *,
1780d3a9abeSRafael J. Wysocki 				unsigned int, char *);
179