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; 459a154d9dSRafael J. Wysocki extern sector_t swsusp_resume_block; 46f577eb30SRafael J. Wysocki 4725761b6eSRafael J. Wysocki extern asmlinkage int swsusp_arch_suspend(void); 4825761b6eSRafael J. Wysocki extern asmlinkage int swsusp_arch_resume(void); 4925761b6eSRafael J. Wysocki 5072a97e08SRafael J. Wysocki extern unsigned int count_data_pages(void); 51f577eb30SRafael J. Wysocki 52fb13a28bSRafael J. Wysocki /** 53fb13a28bSRafael J. Wysocki * Auxiliary structure used for reading the snapshot image data and 54fb13a28bSRafael J. Wysocki * metadata from and writing them to the list of page backup entries 55fb13a28bSRafael J. Wysocki * (PBEs) which is the main data structure of swsusp. 56fb13a28bSRafael J. Wysocki * 57fb13a28bSRafael J. Wysocki * Using struct snapshot_handle we can transfer the image, including its 58fb13a28bSRafael J. Wysocki * metadata, as a continuous sequence of bytes with the help of 59fb13a28bSRafael J. Wysocki * snapshot_read_next() and snapshot_write_next(). 60fb13a28bSRafael J. Wysocki * 61fb13a28bSRafael J. Wysocki * The code that writes the image to a storage or transfers it to 62fb13a28bSRafael J. Wysocki * the user land is required to use snapshot_read_next() for this 63fb13a28bSRafael J. Wysocki * purpose and it should not make any assumptions regarding the internal 64fb13a28bSRafael J. Wysocki * structure of the image. Similarly, the code that reads the image from 65fb13a28bSRafael J. Wysocki * a storage or transfers it from the user land is required to use 66fb13a28bSRafael J. Wysocki * snapshot_write_next(). 67fb13a28bSRafael J. Wysocki * 68fb13a28bSRafael J. Wysocki * This may allow us to change the internal structure of the image 69fb13a28bSRafael J. Wysocki * in the future with considerably less effort. 70fb13a28bSRafael J. Wysocki */ 71fb13a28bSRafael J. Wysocki 72f577eb30SRafael J. Wysocki struct snapshot_handle { 73fb13a28bSRafael J. Wysocki loff_t offset; /* number of the last byte ready for reading 74fb13a28bSRafael J. Wysocki * or writing in the sequence 75fb13a28bSRafael J. Wysocki */ 76fb13a28bSRafael J. Wysocki unsigned int cur; /* number of the block of PAGE_SIZE bytes the 77fb13a28bSRafael J. Wysocki * next operation will refer to (ie. current) 78fb13a28bSRafael J. Wysocki */ 79fb13a28bSRafael J. Wysocki unsigned int cur_offset; /* offset with respect to the current 80fb13a28bSRafael J. Wysocki * block (for the next operation) 81fb13a28bSRafael J. Wysocki */ 82fb13a28bSRafael J. Wysocki unsigned int prev; /* number of the block of PAGE_SIZE bytes that 83fb13a28bSRafael J. Wysocki * was the current one previously 84fb13a28bSRafael J. Wysocki */ 85fb13a28bSRafael J. Wysocki void *buffer; /* address of the block to read from 86fb13a28bSRafael J. Wysocki * or write to 87fb13a28bSRafael J. Wysocki */ 88fb13a28bSRafael J. Wysocki unsigned int buf_offset; /* location to read from or write to, 89fb13a28bSRafael J. Wysocki * given as a displacement from 'buffer' 90fb13a28bSRafael J. Wysocki */ 91fb13a28bSRafael J. Wysocki int sync_read; /* Set to one to notify the caller of 92fb13a28bSRafael J. Wysocki * snapshot_write_next() that it may 93fb13a28bSRafael J. Wysocki * need to call wait_on_bio_chain() 94fb13a28bSRafael J. Wysocki */ 95f577eb30SRafael J. Wysocki }; 96f577eb30SRafael J. Wysocki 97fb13a28bSRafael J. Wysocki /* This macro returns the address from/to which the caller of 98fb13a28bSRafael J. Wysocki * snapshot_read_next()/snapshot_write_next() is allowed to 99fb13a28bSRafael J. Wysocki * read/write data after the function returns 100fb13a28bSRafael J. Wysocki */ 101f577eb30SRafael J. Wysocki #define data_of(handle) ((handle).buffer + (handle).buf_offset) 102f577eb30SRafael J. Wysocki 103b788db79SRafael J. Wysocki extern unsigned int snapshot_additional_pages(struct zone *zone); 104f577eb30SRafael J. Wysocki extern int snapshot_read_next(struct snapshot_handle *handle, size_t count); 105f577eb30SRafael J. Wysocki extern int snapshot_write_next(struct snapshot_handle *handle, size_t count); 1068357376dSRafael J. Wysocki extern void snapshot_write_finalize(struct snapshot_handle *handle); 107b788db79SRafael J. Wysocki extern int snapshot_image_loaded(struct snapshot_handle *handle); 10861159a31SRafael J. Wysocki 10937b2ba12SRafael J. Wysocki /* 11037b2ba12SRafael J. Wysocki * This structure is used to pass the values needed for the identification 11137b2ba12SRafael J. Wysocki * of the resume swap area from a user space to the kernel via the 11237b2ba12SRafael J. Wysocki * SNAPSHOT_SET_SWAP_AREA ioctl 11337b2ba12SRafael J. Wysocki */ 11437b2ba12SRafael J. Wysocki struct resume_swap_area { 11537b2ba12SRafael J. Wysocki loff_t offset; 11637b2ba12SRafael J. Wysocki u_int32_t dev; 11737b2ba12SRafael J. Wysocki } __attribute__((packed)); 11837b2ba12SRafael J. Wysocki 1196e1819d6SRafael J. Wysocki #define SNAPSHOT_IOC_MAGIC '3' 1206e1819d6SRafael J. Wysocki #define SNAPSHOT_FREEZE _IO(SNAPSHOT_IOC_MAGIC, 1) 1216e1819d6SRafael J. Wysocki #define SNAPSHOT_UNFREEZE _IO(SNAPSHOT_IOC_MAGIC, 2) 1226e1819d6SRafael J. Wysocki #define SNAPSHOT_ATOMIC_SNAPSHOT _IOW(SNAPSHOT_IOC_MAGIC, 3, void *) 1236e1819d6SRafael J. Wysocki #define SNAPSHOT_ATOMIC_RESTORE _IO(SNAPSHOT_IOC_MAGIC, 4) 1246e1819d6SRafael J. Wysocki #define SNAPSHOT_FREE _IO(SNAPSHOT_IOC_MAGIC, 5) 1256e1819d6SRafael J. Wysocki #define SNAPSHOT_SET_IMAGE_SIZE _IOW(SNAPSHOT_IOC_MAGIC, 6, unsigned long) 1266e1819d6SRafael J. Wysocki #define SNAPSHOT_AVAIL_SWAP _IOR(SNAPSHOT_IOC_MAGIC, 7, void *) 1276e1819d6SRafael J. Wysocki #define SNAPSHOT_GET_SWAP_PAGE _IOR(SNAPSHOT_IOC_MAGIC, 8, void *) 1286e1819d6SRafael J. Wysocki #define SNAPSHOT_FREE_SWAP_PAGES _IO(SNAPSHOT_IOC_MAGIC, 9) 1296e1819d6SRafael J. Wysocki #define SNAPSHOT_SET_SWAP_FILE _IOW(SNAPSHOT_IOC_MAGIC, 10, unsigned int) 1309b238205SLuca Tettamanti #define SNAPSHOT_S2RAM _IO(SNAPSHOT_IOC_MAGIC, 11) 1313592695cSStefan Seyfried #define SNAPSHOT_PMOPS _IOW(SNAPSHOT_IOC_MAGIC, 12, unsigned int) 13237b2ba12SRafael J. Wysocki #define SNAPSHOT_SET_SWAP_AREA _IOW(SNAPSHOT_IOC_MAGIC, 13, \ 13337b2ba12SRafael J. Wysocki struct resume_swap_area) 13437b2ba12SRafael J. Wysocki #define SNAPSHOT_IOC_MAXNR 13 1353592695cSStefan Seyfried 1363592695cSStefan Seyfried #define PMOPS_PREPARE 1 1373592695cSStefan Seyfried #define PMOPS_ENTER 2 1383592695cSStefan Seyfried #define PMOPS_FINISH 3 1396e1819d6SRafael J. Wysocki 14061159a31SRafael J. Wysocki /** 14161159a31SRafael J. Wysocki * The bitmap is used for tracing allocated swap pages 14261159a31SRafael J. Wysocki * 14361159a31SRafael J. Wysocki * The entire bitmap consists of a number of bitmap_page 14461159a31SRafael J. Wysocki * structures linked with the help of the .next member. 14561159a31SRafael J. Wysocki * Thus each page can be allocated individually, so we only 14661159a31SRafael J. Wysocki * need to make 0-order memory allocations to create 14761159a31SRafael J. Wysocki * the bitmap. 14861159a31SRafael J. Wysocki */ 14961159a31SRafael J. Wysocki 15061159a31SRafael J. Wysocki #define BITMAP_PAGE_SIZE (PAGE_SIZE - sizeof(void *)) 15161159a31SRafael J. Wysocki #define BITMAP_PAGE_CHUNKS (BITMAP_PAGE_SIZE / sizeof(long)) 15261159a31SRafael J. Wysocki #define BITS_PER_CHUNK (sizeof(long) * 8) 15361159a31SRafael J. Wysocki #define BITMAP_PAGE_BITS (BITMAP_PAGE_CHUNKS * BITS_PER_CHUNK) 15461159a31SRafael J. Wysocki 15561159a31SRafael J. Wysocki struct bitmap_page { 15661159a31SRafael J. Wysocki unsigned long chunks[BITMAP_PAGE_CHUNKS]; 15761159a31SRafael J. Wysocki struct bitmap_page *next; 15861159a31SRafael J. Wysocki }; 15961159a31SRafael J. Wysocki 16061159a31SRafael J. Wysocki extern void free_bitmap(struct bitmap_page *bitmap); 16161159a31SRafael J. Wysocki extern struct bitmap_page *alloc_bitmap(unsigned int nr_bits); 1623aef83e0SRafael J. Wysocki extern sector_t alloc_swapdev_block(int swap, struct bitmap_page *bitmap); 16361159a31SRafael J. Wysocki extern void free_all_swap_pages(int swap, struct bitmap_page *bitmap); 16461159a31SRafael J. Wysocki 16574c7e2efSRandy Dunlap extern int swsusp_check(void); 16661159a31SRafael J. Wysocki extern int swsusp_shrink_memory(void); 16774c7e2efSRandy Dunlap extern void swsusp_free(void); 16861159a31SRafael J. Wysocki extern int swsusp_suspend(void); 16961159a31SRafael J. Wysocki extern int swsusp_resume(void); 17074c7e2efSRandy Dunlap extern int swsusp_read(void); 17174c7e2efSRandy Dunlap extern int swsusp_write(void); 17274c7e2efSRandy Dunlap extern void swsusp_close(void); 1739b238205SLuca Tettamanti extern int suspend_enter(suspend_state_t state); 174*0d3a9abeSRafael J. Wysocki 175*0d3a9abeSRafael J. Wysocki struct timeval; 176*0d3a9abeSRafael J. Wysocki extern void swsusp_show_speed(struct timeval *, struct timeval *, 177*0d3a9abeSRafael J. Wysocki unsigned int, char *); 178