xref: /linux/kernel/power/power.h (revision b788db79896ef2a5817b9395ad63573b254a6d93)
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
251da177e4SLinus Torvalds extern struct semaphore pm_sem;
261da177e4SLinus Torvalds #define power_attr(_name) \
271da177e4SLinus Torvalds static struct subsys_attribute _name##_attr = {	\
281da177e4SLinus Torvalds 	.attr	= {				\
291da177e4SLinus Torvalds 		.name = __stringify(_name),	\
301da177e4SLinus Torvalds 		.mode = 0644,			\
311da177e4SLinus Torvalds 	},					\
321da177e4SLinus Torvalds 	.show	= _name##_show,			\
331da177e4SLinus Torvalds 	.store	= _name##_store,		\
341da177e4SLinus Torvalds }
351da177e4SLinus Torvalds 
361da177e4SLinus Torvalds extern struct subsystem power_subsys;
371da177e4SLinus Torvalds 
3825761b6eSRafael J. Wysocki /* References to section boundaries */
3925761b6eSRafael J. Wysocki extern const void __nosave_begin, __nosave_end;
4025761b6eSRafael J. Wysocki 
41853609b6SRafael J. Wysocki /* Preferred image size in bytes (default 500 MB) */
42853609b6SRafael J. Wysocki extern unsigned long image_size;
43f577eb30SRafael J. Wysocki extern int in_suspend;
4461159a31SRafael J. Wysocki extern dev_t swsusp_resume_device;
45f577eb30SRafael J. Wysocki 
4625761b6eSRafael J. Wysocki extern asmlinkage int swsusp_arch_suspend(void);
4725761b6eSRafael J. Wysocki extern asmlinkage int swsusp_arch_resume(void);
4825761b6eSRafael J. Wysocki 
4972a97e08SRafael J. Wysocki extern unsigned int count_data_pages(void);
50f577eb30SRafael J. Wysocki 
51fb13a28bSRafael J. Wysocki /**
52fb13a28bSRafael J. Wysocki  *	Auxiliary structure used for reading the snapshot image data and
53fb13a28bSRafael J. Wysocki  *	metadata from and writing them to the list of page backup entries
54fb13a28bSRafael J. Wysocki  *	(PBEs) which is the main data structure of swsusp.
55fb13a28bSRafael J. Wysocki  *
56fb13a28bSRafael J. Wysocki  *	Using struct snapshot_handle we can transfer the image, including its
57fb13a28bSRafael J. Wysocki  *	metadata, as a continuous sequence of bytes with the help of
58fb13a28bSRafael J. Wysocki  *	snapshot_read_next() and snapshot_write_next().
59fb13a28bSRafael J. Wysocki  *
60fb13a28bSRafael J. Wysocki  *	The code that writes the image to a storage or transfers it to
61fb13a28bSRafael J. Wysocki  *	the user land is required to use snapshot_read_next() for this
62fb13a28bSRafael J. Wysocki  *	purpose and it should not make any assumptions regarding the internal
63fb13a28bSRafael J. Wysocki  *	structure of the image.  Similarly, the code that reads the image from
64fb13a28bSRafael J. Wysocki  *	a storage or transfers it from the user land is required to use
65fb13a28bSRafael J. Wysocki  *	snapshot_write_next().
66fb13a28bSRafael J. Wysocki  *
67fb13a28bSRafael J. Wysocki  *	This may allow us to change the internal structure of the image
68fb13a28bSRafael J. Wysocki  *	in the future with considerably less effort.
69fb13a28bSRafael J. Wysocki  */
70fb13a28bSRafael J. Wysocki 
71f577eb30SRafael J. Wysocki struct snapshot_handle {
72fb13a28bSRafael J. Wysocki 	loff_t		offset;	/* number of the last byte ready for reading
73fb13a28bSRafael J. Wysocki 				 * or writing in the sequence
74fb13a28bSRafael J. Wysocki 				 */
75fb13a28bSRafael J. Wysocki 	unsigned int	cur;	/* number of the block of PAGE_SIZE bytes the
76fb13a28bSRafael J. Wysocki 				 * next operation will refer to (ie. current)
77fb13a28bSRafael J. Wysocki 				 */
78fb13a28bSRafael J. Wysocki 	unsigned int	cur_offset;	/* offset with respect to the current
79fb13a28bSRafael J. Wysocki 					 * block (for the next operation)
80fb13a28bSRafael J. Wysocki 					 */
81fb13a28bSRafael J. Wysocki 	unsigned int	prev;	/* number of the block of PAGE_SIZE bytes that
82fb13a28bSRafael J. Wysocki 				 * was the current one previously
83fb13a28bSRafael J. Wysocki 				 */
84fb13a28bSRafael J. Wysocki 	struct pbe	*pbe;	/* PBE that corresponds to 'buffer' */
85fb13a28bSRafael J. Wysocki 	struct pbe	*last_pbe;	/* When the image is restored (eg. read
86fb13a28bSRafael J. Wysocki 					 * from disk) we can store some image
87fb13a28bSRafael J. Wysocki 					 * data directly in the page frames
88fb13a28bSRafael J. Wysocki 					 * in which they were before suspend.
89fb13a28bSRafael J. Wysocki 					 * In such a case the PBEs that
90fb13a28bSRafael J. Wysocki 					 * correspond to them will be unused.
91fb13a28bSRafael J. Wysocki 					 * This is the last PBE, so far, that
92fb13a28bSRafael J. Wysocki 					 * does not correspond to such data.
93fb13a28bSRafael J. Wysocki 					 */
94fb13a28bSRafael J. Wysocki 	void		*buffer;	/* address of the block to read from
95fb13a28bSRafael J. Wysocki 					 * or write to
96fb13a28bSRafael J. Wysocki 					 */
97fb13a28bSRafael J. Wysocki 	unsigned int	buf_offset;	/* location to read from or write to,
98fb13a28bSRafael J. Wysocki 					 * given as a displacement from 'buffer'
99fb13a28bSRafael J. Wysocki 					 */
100fb13a28bSRafael J. Wysocki 	int		sync_read;	/* Set to one to notify the caller of
101fb13a28bSRafael J. Wysocki 					 * snapshot_write_next() that it may
102fb13a28bSRafael J. Wysocki 					 * need to call wait_on_bio_chain()
103fb13a28bSRafael J. Wysocki 					 */
104f577eb30SRafael J. Wysocki };
105f577eb30SRafael J. Wysocki 
106fb13a28bSRafael J. Wysocki /* This macro returns the address from/to which the caller of
107fb13a28bSRafael J. Wysocki  * snapshot_read_next()/snapshot_write_next() is allowed to
108fb13a28bSRafael J. Wysocki  * read/write data after the function returns
109fb13a28bSRafael J. Wysocki  */
110f577eb30SRafael J. Wysocki #define data_of(handle)	((handle).buffer + (handle).buf_offset)
111f577eb30SRafael J. Wysocki 
112*b788db79SRafael J. Wysocki extern unsigned int snapshot_additional_pages(struct zone *zone);
113f577eb30SRafael J. Wysocki extern int snapshot_read_next(struct snapshot_handle *handle, size_t count);
114f577eb30SRafael J. Wysocki extern int snapshot_write_next(struct snapshot_handle *handle, size_t count);
115*b788db79SRafael J. Wysocki extern int snapshot_image_loaded(struct snapshot_handle *handle);
11661159a31SRafael J. Wysocki 
1176e1819d6SRafael J. Wysocki #define SNAPSHOT_IOC_MAGIC	'3'
1186e1819d6SRafael J. Wysocki #define SNAPSHOT_FREEZE			_IO(SNAPSHOT_IOC_MAGIC, 1)
1196e1819d6SRafael J. Wysocki #define SNAPSHOT_UNFREEZE		_IO(SNAPSHOT_IOC_MAGIC, 2)
1206e1819d6SRafael J. Wysocki #define SNAPSHOT_ATOMIC_SNAPSHOT	_IOW(SNAPSHOT_IOC_MAGIC, 3, void *)
1216e1819d6SRafael J. Wysocki #define SNAPSHOT_ATOMIC_RESTORE		_IO(SNAPSHOT_IOC_MAGIC, 4)
1226e1819d6SRafael J. Wysocki #define SNAPSHOT_FREE			_IO(SNAPSHOT_IOC_MAGIC, 5)
1236e1819d6SRafael J. Wysocki #define SNAPSHOT_SET_IMAGE_SIZE		_IOW(SNAPSHOT_IOC_MAGIC, 6, unsigned long)
1246e1819d6SRafael J. Wysocki #define SNAPSHOT_AVAIL_SWAP		_IOR(SNAPSHOT_IOC_MAGIC, 7, void *)
1256e1819d6SRafael J. Wysocki #define SNAPSHOT_GET_SWAP_PAGE		_IOR(SNAPSHOT_IOC_MAGIC, 8, void *)
1266e1819d6SRafael J. Wysocki #define SNAPSHOT_FREE_SWAP_PAGES	_IO(SNAPSHOT_IOC_MAGIC, 9)
1276e1819d6SRafael J. Wysocki #define SNAPSHOT_SET_SWAP_FILE		_IOW(SNAPSHOT_IOC_MAGIC, 10, unsigned int)
1289b238205SLuca Tettamanti #define SNAPSHOT_S2RAM			_IO(SNAPSHOT_IOC_MAGIC, 11)
1299b238205SLuca Tettamanti #define SNAPSHOT_IOC_MAXNR	11
1306e1819d6SRafael J. Wysocki 
13161159a31SRafael J. Wysocki /**
13261159a31SRafael J. Wysocki  *	The bitmap is used for tracing allocated swap pages
13361159a31SRafael J. Wysocki  *
13461159a31SRafael J. Wysocki  *	The entire bitmap consists of a number of bitmap_page
13561159a31SRafael J. Wysocki  *	structures linked with the help of the .next member.
13661159a31SRafael J. Wysocki  *	Thus each page can be allocated individually, so we only
13761159a31SRafael J. Wysocki  *	need to make 0-order memory allocations to create
13861159a31SRafael J. Wysocki  *	the bitmap.
13961159a31SRafael J. Wysocki  */
14061159a31SRafael J. Wysocki 
14161159a31SRafael J. Wysocki #define BITMAP_PAGE_SIZE	(PAGE_SIZE - sizeof(void *))
14261159a31SRafael J. Wysocki #define BITMAP_PAGE_CHUNKS	(BITMAP_PAGE_SIZE / sizeof(long))
14361159a31SRafael J. Wysocki #define BITS_PER_CHUNK		(sizeof(long) * 8)
14461159a31SRafael J. Wysocki #define BITMAP_PAGE_BITS	(BITMAP_PAGE_CHUNKS * BITS_PER_CHUNK)
14561159a31SRafael J. Wysocki 
14661159a31SRafael J. Wysocki struct bitmap_page {
14761159a31SRafael J. Wysocki 	unsigned long		chunks[BITMAP_PAGE_CHUNKS];
14861159a31SRafael J. Wysocki 	struct bitmap_page	*next;
14961159a31SRafael J. Wysocki };
15061159a31SRafael J. Wysocki 
15161159a31SRafael J. Wysocki extern void free_bitmap(struct bitmap_page *bitmap);
15261159a31SRafael J. Wysocki extern struct bitmap_page *alloc_bitmap(unsigned int nr_bits);
15361159a31SRafael J. Wysocki extern unsigned long alloc_swap_page(int swap, struct bitmap_page *bitmap);
15461159a31SRafael J. Wysocki extern void free_all_swap_pages(int swap, struct bitmap_page *bitmap);
15561159a31SRafael J. Wysocki 
15674c7e2efSRandy Dunlap extern int swsusp_check(void);
15761159a31SRafael J. Wysocki extern int swsusp_shrink_memory(void);
15874c7e2efSRandy Dunlap extern void swsusp_free(void);
15961159a31SRafael J. Wysocki extern int swsusp_suspend(void);
16061159a31SRafael J. Wysocki extern int swsusp_resume(void);
16174c7e2efSRandy Dunlap extern int swsusp_read(void);
16274c7e2efSRandy Dunlap extern int swsusp_write(void);
16374c7e2efSRandy Dunlap extern void swsusp_close(void);
1649b238205SLuca Tettamanti extern int suspend_enter(suspend_state_t state);
165