suspend.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_SWSUSP_H
  2. #define _LINUX_SWSUSP_H
  3. #if defined(CONFIG_X86) || defined(CONFIG_FRV) || defined(CONFIG_PPC32)
  4. #include <asm/suspend.h>
  5. #endif
  6. #include <linux/swap.h>
  7. #include <linux/notifier.h>
  8. #include <linux/config.h>
  9. #include <linux/init.h>
  10. #include <linux/pm.h>
  11. /* page backup entry */
  12. typedef struct pbe {
  13. unsigned long address; /* address of the copy */
  14. unsigned long orig_address; /* original address of page */
  15. swp_entry_t swap_address;
  16. struct pbe *next; /* also used as scratch space at
  17.  * end of page (see link, diskpage)
  18.  */
  19. } suspend_pagedir_t;
  20. #define for_each_pbe(pbe, pblist) 
  21. for (pbe = pblist ; pbe ; pbe = pbe->next)
  22. #define PBES_PER_PAGE      (PAGE_SIZE/sizeof(struct pbe))
  23. #define PB_PAGE_SKIP       (PBES_PER_PAGE-1)
  24. #define for_each_pb_page(pbe, pblist) 
  25. for (pbe = pblist ; pbe ; pbe = (pbe+PB_PAGE_SKIP)->next)
  26. #define SWAP_FILENAME_MAXLENGTH 32
  27. extern dev_t swsusp_resume_device;
  28.    
  29. /* mm/vmscan.c */
  30. extern int shrink_mem(void);
  31. /* mm/page_alloc.c */
  32. extern void drain_local_pages(void);
  33. extern void mark_free_pages(struct zone *zone);
  34. #ifdef CONFIG_PM
  35. /* kernel/power/swsusp.c */
  36. extern int software_suspend(void);
  37. extern int pm_prepare_console(void);
  38. extern void pm_restore_console(void);
  39. #else
  40. static inline int software_suspend(void)
  41. {
  42. printk("Warning: fake suspend calledn");
  43. return -EPERM;
  44. }
  45. #endif
  46. #ifdef CONFIG_SUSPEND_SMP
  47. extern void disable_nonboot_cpus(void);
  48. extern void enable_nonboot_cpus(void);
  49. #else
  50. static inline void disable_nonboot_cpus(void) {}
  51. static inline void enable_nonboot_cpus(void) {}
  52. #endif
  53. void save_processor_state(void);
  54. void restore_processor_state(void);
  55. struct saved_context;
  56. void __save_processor_state(struct saved_context *ctxt);
  57. void __restore_processor_state(struct saved_context *ctxt);
  58. extern unsigned long get_usable_page(unsigned gfp_mask);
  59. extern void free_eaten_memory(void);
  60. #endif /* _LINUX_SWSUSP_H */