2005-04-17 00:20:36 +02:00
|
|
|
#ifndef _LINUX_SWSUSP_H
|
|
|
|
#define _LINUX_SWSUSP_H
|
|
|
|
|
2007-05-03 14:31:38 +02:00
|
|
|
#if defined(CONFIG_X86) || defined(CONFIG_FRV) || defined(CONFIG_PPC32) || defined(CONFIG_PPC64)
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/suspend.h>
|
|
|
|
#endif
|
|
|
|
#include <linux/swap.h>
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/pm.h>
|
2007-05-06 23:50:42 +02:00
|
|
|
#include <linux/mm.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
[PATCH] swsusp: Improve handling of highmem
Currently swsusp saves the contents of highmem pages by copying them to the
normal zone which is quite inefficient (eg. it requires two normal pages
to be used for saving one highmem page). This may be improved by using
highmem for saving the contents of saveable highmem pages.
Namely, during the suspend phase of the suspend-resume cycle we try to
allocate as many free highmem pages as there are saveable highmem pages.
If there are not enough highmem image pages to store the contents of all of
the saveable highmem pages, some of them will be stored in the "normal"
memory. Next, we allocate as many free "normal" pages as needed to store
the (remaining) image data. We use a memory bitmap to mark the allocated
free pages (ie. highmem as well as "normal" image pages).
Now, we use another memory bitmap to mark all of the saveable pages
(highmem as well as "normal") and the contents of the saveable pages are
copied into the image pages. Then, the second bitmap is used to save the
pfns corresponding to the saveable pages and the first one is used to save
their data.
During the resume phase the pfns of the pages that were saveable during the
suspend are loaded from the image and used to mark the "unsafe" page
frames. Next, we try to allocate as many free highmem page frames as to
load all of the image data that had been in the highmem before the suspend
and we allocate so many free "normal" page frames that the total number of
allocated free pages (highmem and "normal") is equal to the size of the
image. While doing this we have to make sure that there will be some extra
free "normal" and "safe" page frames for two lists of PBEs constructed
later.
Now, the image data are loaded, if possible, into their "original" page
frames. The image data that cannot be written into their "original" page
frames are loaded into "safe" page frames and their "original" kernel
virtual addresses, as well as the addresses of the "safe" pages containing
their copies, are stored in one of two lists of PBEs.
One list of PBEs is for the copies of "normal" suspend pages (ie. "normal"
pages that were saveable during the suspend) and it is used in the same way
as previously (ie. by the architecture-dependent parts of swsusp). The
other list of PBEs is for the copies of highmem suspend pages. The pages
in this list are restored (in a reversible way) right before the
arch-dependent code is called.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Cc: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-12-07 05:34:18 +01:00
|
|
|
/* struct pbe is used for creating lists of pages that should be restored
|
|
|
|
* atomically during the resume from disk, because the page frames they have
|
|
|
|
* occupied before the suspend are in use.
|
|
|
|
*/
|
2006-09-26 08:32:51 +02:00
|
|
|
struct pbe {
|
[PATCH] swsusp: Improve handling of highmem
Currently swsusp saves the contents of highmem pages by copying them to the
normal zone which is quite inefficient (eg. it requires two normal pages
to be used for saving one highmem page). This may be improved by using
highmem for saving the contents of saveable highmem pages.
Namely, during the suspend phase of the suspend-resume cycle we try to
allocate as many free highmem pages as there are saveable highmem pages.
If there are not enough highmem image pages to store the contents of all of
the saveable highmem pages, some of them will be stored in the "normal"
memory. Next, we allocate as many free "normal" pages as needed to store
the (remaining) image data. We use a memory bitmap to mark the allocated
free pages (ie. highmem as well as "normal" image pages).
Now, we use another memory bitmap to mark all of the saveable pages
(highmem as well as "normal") and the contents of the saveable pages are
copied into the image pages. Then, the second bitmap is used to save the
pfns corresponding to the saveable pages and the first one is used to save
their data.
During the resume phase the pfns of the pages that were saveable during the
suspend are loaded from the image and used to mark the "unsafe" page
frames. Next, we try to allocate as many free highmem page frames as to
load all of the image data that had been in the highmem before the suspend
and we allocate so many free "normal" page frames that the total number of
allocated free pages (highmem and "normal") is equal to the size of the
image. While doing this we have to make sure that there will be some extra
free "normal" and "safe" page frames for two lists of PBEs constructed
later.
Now, the image data are loaded, if possible, into their "original" page
frames. The image data that cannot be written into their "original" page
frames are loaded into "safe" page frames and their "original" kernel
virtual addresses, as well as the addresses of the "safe" pages containing
their copies, are stored in one of two lists of PBEs.
One list of PBEs is for the copies of "normal" suspend pages (ie. "normal"
pages that were saveable during the suspend) and it is used in the same way
as previously (ie. by the architecture-dependent parts of swsusp). The
other list of PBEs is for the copies of highmem suspend pages. The pages
in this list are restored (in a reversible way) right before the
arch-dependent code is called.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Cc: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-12-07 05:34:18 +01:00
|
|
|
void *address; /* address of the copy */
|
|
|
|
void *orig_address; /* original address of a page */
|
2006-01-06 09:13:05 +01:00
|
|
|
struct pbe *next;
|
2006-09-26 08:32:51 +02:00
|
|
|
};
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* mm/page_alloc.c */
|
|
|
|
extern void drain_local_pages(void);
|
|
|
|
extern void mark_free_pages(struct zone *zone);
|
|
|
|
|
2007-07-29 23:27:18 +02:00
|
|
|
#if defined(CONFIG_PM_SLEEP) && defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE)
|
2006-02-07 21:58:50 +01:00
|
|
|
extern int pm_prepare_console(void);
|
|
|
|
extern void pm_restore_console(void);
|
|
|
|
#else
|
|
|
|
static inline int pm_prepare_console(void) { return 0; }
|
|
|
|
static inline void pm_restore_console(void) {}
|
2007-05-06 23:50:43 +02:00
|
|
|
#endif
|
|
|
|
|
2007-05-09 11:33:18 +02:00
|
|
|
/**
|
|
|
|
* struct hibernation_ops - hibernation platform support
|
|
|
|
*
|
|
|
|
* The methods in this structure allow a platform to override the default
|
|
|
|
* mechanism of shutting down the machine during a hibernation transition.
|
|
|
|
*
|
|
|
|
* All three methods must be assigned.
|
|
|
|
*
|
|
|
|
* @prepare: prepare system for hibernation
|
|
|
|
* @enter: shut down system after state has been saved to disk
|
|
|
|
* @finish: finish/clean up after state has been reloaded
|
swsusp: introduce restore platform operations
At least on some machines it is necessary to prepare the ACPI firmware for the
restoration of the system memory state from the hibernation image if the
"platform" mode of hibernation has been used. Namely, in that cases we need
to disable the GPEs before replacing the "boot" kernel with the "frozen"
kernel (cf. http://bugzilla.kernel.org/show_bug.cgi?id=7887). After the
restore they will be re-enabled by hibernation_ops->finish(), but if the
restore fails, they have to be re-enabled by the restore code explicitly.
For this purpose we can introduce two additional hibernation operations,
called pre_restore() and restore_cleanup() and call them from the restore code
path. Still, they should be called if the "platform" mode of hibernation has
been used, so we need to pass the information about the hibernation mode from
the "frozen" kernel to the "boot" kernel in the image header.
Apparently, we can't drop the disabling of GPEs before the restore because of
Bug #7887 . We also can't do it unconditionally, because the GPEs wouldn't
have been enabled after a successful restore if the suspend had been done in
the 'shutdown' or 'reboot' mode.
In principle we could (and probably should) unconditionally disable the GPEs
before each snapshot creation *and* before the restore, but then we'd have to
unconditionally enable them after the snapshot creation as well as after the
restore (or restore failure) Still, for this purpose we'd need to modify
acpi_enter_sleep_state_prep() and acpi_leave_sleep_state() and we'd have to
introduce some mechanism synchronizing the disablind/enabling of the GPEs with
the device drivers' .suspend()/.resume() routines and with
disable_/enable_nonboot_cpus(). However, this would have affected the
suspend (ie. s2ram) code as well as the hibernation, which I'd like to avoid
in this patch series.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Cc: Nigel Cunningham <nigel@nigel.suspend2.net>
Cc: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-07-19 10:47:30 +02:00
|
|
|
* @pre_restore: prepare system for the restoration from a hibernation image
|
|
|
|
* @restore_cleanup: clean up after a failing image restoration
|
2007-05-09 11:33:18 +02:00
|
|
|
*/
|
|
|
|
struct hibernation_ops {
|
|
|
|
int (*prepare)(void);
|
|
|
|
int (*enter)(void);
|
|
|
|
void (*finish)(void);
|
swsusp: introduce restore platform operations
At least on some machines it is necessary to prepare the ACPI firmware for the
restoration of the system memory state from the hibernation image if the
"platform" mode of hibernation has been used. Namely, in that cases we need
to disable the GPEs before replacing the "boot" kernel with the "frozen"
kernel (cf. http://bugzilla.kernel.org/show_bug.cgi?id=7887). After the
restore they will be re-enabled by hibernation_ops->finish(), but if the
restore fails, they have to be re-enabled by the restore code explicitly.
For this purpose we can introduce two additional hibernation operations,
called pre_restore() and restore_cleanup() and call them from the restore code
path. Still, they should be called if the "platform" mode of hibernation has
been used, so we need to pass the information about the hibernation mode from
the "frozen" kernel to the "boot" kernel in the image header.
Apparently, we can't drop the disabling of GPEs before the restore because of
Bug #7887 . We also can't do it unconditionally, because the GPEs wouldn't
have been enabled after a successful restore if the suspend had been done in
the 'shutdown' or 'reboot' mode.
In principle we could (and probably should) unconditionally disable the GPEs
before each snapshot creation *and* before the restore, but then we'd have to
unconditionally enable them after the snapshot creation as well as after the
restore (or restore failure) Still, for this purpose we'd need to modify
acpi_enter_sleep_state_prep() and acpi_leave_sleep_state() and we'd have to
introduce some mechanism synchronizing the disablind/enabling of the GPEs with
the device drivers' .suspend()/.resume() routines and with
disable_/enable_nonboot_cpus(). However, this would have affected the
suspend (ie. s2ram) code as well as the hibernation, which I'd like to avoid
in this patch series.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Cc: Nigel Cunningham <nigel@nigel.suspend2.net>
Cc: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-07-19 10:47:30 +02:00
|
|
|
int (*pre_restore)(void);
|
|
|
|
void (*restore_cleanup)(void);
|
2007-05-09 11:33:18 +02:00
|
|
|
};
|
|
|
|
|
2007-07-29 23:24:36 +02:00
|
|
|
#ifdef CONFIG_HIBERNATION
|
2007-05-06 23:50:43 +02:00
|
|
|
/* kernel/power/snapshot.c */
|
2007-05-08 11:23:49 +02:00
|
|
|
extern void __register_nosave_region(unsigned long b, unsigned long e, int km);
|
|
|
|
static inline void register_nosave_region(unsigned long b, unsigned long e)
|
|
|
|
{
|
|
|
|
__register_nosave_region(b, e, 0);
|
|
|
|
}
|
|
|
|
static inline void register_nosave_region_late(unsigned long b, unsigned long e)
|
|
|
|
{
|
|
|
|
__register_nosave_region(b, e, 1);
|
|
|
|
}
|
2007-05-06 23:50:43 +02:00
|
|
|
extern int swsusp_page_is_forbidden(struct page *);
|
|
|
|
extern void swsusp_set_page_free(struct page *);
|
|
|
|
extern void swsusp_unset_page_free(struct page *);
|
|
|
|
extern unsigned long get_safe_page(gfp_t gfp_mask);
|
2007-05-09 11:33:18 +02:00
|
|
|
|
|
|
|
extern void hibernation_set_ops(struct hibernation_ops *ops);
|
|
|
|
extern int hibernate(void);
|
2007-07-29 23:24:36 +02:00
|
|
|
#else /* CONFIG_HIBERNATION */
|
2007-05-06 23:50:43 +02:00
|
|
|
static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
|
|
|
|
static inline void swsusp_set_page_free(struct page *p) {}
|
|
|
|
static inline void swsusp_unset_page_free(struct page *p) {}
|
2007-05-09 11:33:18 +02:00
|
|
|
|
|
|
|
static inline void hibernation_set_ops(struct hibernation_ops *ops) {}
|
|
|
|
static inline int hibernate(void) { return -ENOSYS; }
|
2007-07-29 23:24:36 +02:00
|
|
|
#endif /* CONFIG_HIBERNATION */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-07-29 23:27:18 +02:00
|
|
|
#ifdef CONFIG_PM_SLEEP
|
2005-04-17 00:20:36 +02:00
|
|
|
void save_processor_state(void);
|
|
|
|
void restore_processor_state(void);
|
|
|
|
struct saved_context;
|
|
|
|
void __save_processor_state(struct saved_context *ctxt);
|
|
|
|
void __restore_processor_state(struct saved_context *ctxt);
|
2005-10-30 23:59:56 +01:00
|
|
|
|
2007-07-19 10:47:36 +02:00
|
|
|
/* kernel/power/main.c */
|
|
|
|
extern struct blocking_notifier_head pm_chain_head;
|
|
|
|
|
|
|
|
static inline int register_pm_notifier(struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return blocking_notifier_chain_register(&pm_chain_head, nb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int unregister_pm_notifier(struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return blocking_notifier_chain_unregister(&pm_chain_head, nb);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define pm_notifier(fn, pri) { \
|
|
|
|
static struct notifier_block fn##_nb = \
|
|
|
|
{ .notifier_call = fn, .priority = pri }; \
|
|
|
|
register_pm_notifier(&fn##_nb); \
|
|
|
|
}
|
2007-07-29 23:27:18 +02:00
|
|
|
#else /* !CONFIG_PM_SLEEP */
|
2007-07-19 10:47:36 +02:00
|
|
|
|
|
|
|
static inline int register_pm_notifier(struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int unregister_pm_notifier(struct notifier_block *nb)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define pm_notifier(fn, pri) do { (void)(fn); } while (0)
|
2007-07-29 23:27:18 +02:00
|
|
|
#endif /* !CONFIG_PM_SLEEP */
|
2007-07-19 10:47:36 +02:00
|
|
|
|
2007-07-29 23:27:18 +02:00
|
|
|
#ifndef CONFIG_HIBERNATION
|
2007-07-19 10:47:36 +02:00
|
|
|
static inline void register_nosave_region(unsigned long b, unsigned long e)
|
|
|
|
{
|
|
|
|
}
|
2007-07-26 19:40:59 +02:00
|
|
|
static inline void register_nosave_region_late(unsigned long b, unsigned long e)
|
|
|
|
{
|
|
|
|
}
|
2007-07-19 10:47:36 +02:00
|
|
|
#endif
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif /* _LINUX_SWSUSP_H */
|