diff options
| author | Cornelia Huck <cornelia.huck@de.ibm.com> | 2009-06-09 19:28:19 -0400 |
|---|---|---|
| committer | Rafael J. Wysocki <rjw@sisk.pl> | 2009-06-12 15:32:33 -0400 |
| commit | fce2b111fae9151a53dabb36513b398d03337a19 (patch) | |
| tree | 9349fce23fca0e2d90780e40aac2a6535f820c32 | |
| parent | 8b759b84c8b3c27ccc8dd787294636297b3ebb40 (diff) | |
PM/Hibernate: Move NVS routines into a seperate file (v2).
The *_nvs_* routines in swsusp.c make use of the io*map()
functions, which are only provided for HAS_IOMEM, thus
breaking compilation if HAS_IOMEM is not set. Fix this
by moving the *_nvs_* routines into hibernate_nvs.c, which
is only compiled if HAS_IOMEM is set.
[rjw: Change the name of the new file to hibernate_nvs.c, add the
license line to the header comment.]
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
| -rw-r--r-- | include/linux/suspend.h | 18 | ||||
| -rw-r--r-- | kernel/power/Kconfig | 4 | ||||
| -rw-r--r-- | kernel/power/Makefile | 1 | ||||
| -rw-r--r-- | kernel/power/hibernate_nvs.c | 135 | ||||
| -rw-r--r-- | kernel/power/swsusp.c | 122 |
5 files changed, 151 insertions, 129 deletions
diff --git a/include/linux/suspend.h b/include/linux/suspend.h index 795032edfc46..cd15df6c63cd 100644 --- a/include/linux/suspend.h +++ b/include/linux/suspend.h | |||
| @@ -245,11 +245,6 @@ extern unsigned long get_safe_page(gfp_t gfp_mask); | |||
| 245 | 245 | ||
| 246 | extern void hibernation_set_ops(struct platform_hibernation_ops *ops); | 246 | extern void hibernation_set_ops(struct platform_hibernation_ops *ops); |
| 247 | extern int hibernate(void); | 247 | extern int hibernate(void); |
| 248 | extern int hibernate_nvs_register(unsigned long start, unsigned long size); | ||
| 249 | extern int hibernate_nvs_alloc(void); | ||
| 250 | extern void hibernate_nvs_free(void); | ||
| 251 | extern void hibernate_nvs_save(void); | ||
| 252 | extern void hibernate_nvs_restore(void); | ||
| 253 | extern bool system_entering_hibernation(void); | 248 | extern bool system_entering_hibernation(void); |
| 254 | #else /* CONFIG_HIBERNATION */ | 249 | #else /* CONFIG_HIBERNATION */ |
| 255 | static inline int swsusp_page_is_forbidden(struct page *p) { return 0; } | 250 | static inline int swsusp_page_is_forbidden(struct page *p) { return 0; } |
| @@ -258,6 +253,16 @@ static inline void swsusp_unset_page_free(struct page *p) {} | |||
| 258 | 253 | ||
| 259 | static inline void hibernation_set_ops(struct platform_hibernation_ops *ops) {} | 254 | static inline void hibernation_set_ops(struct platform_hibernation_ops *ops) {} |
| 260 | static inline int hibernate(void) { return -ENOSYS; } | 255 | static inline int hibernate(void) { return -ENOSYS; } |
| 256 | static inline bool system_entering_hibernation(void) { return false; } | ||
| 257 | #endif /* CONFIG_HIBERNATION */ | ||
| 258 | |||
| 259 | #ifdef CONFIG_HIBERNATION_NVS | ||
| 260 | extern int hibernate_nvs_register(unsigned long start, unsigned long size); | ||
| 261 | extern int hibernate_nvs_alloc(void); | ||
| 262 | extern void hibernate_nvs_free(void); | ||
| 263 | extern void hibernate_nvs_save(void); | ||
| 264 | extern void hibernate_nvs_restore(void); | ||
| 265 | #else /* CONFIG_HIBERNATION_NVS */ | ||
| 261 | static inline int hibernate_nvs_register(unsigned long a, unsigned long b) | 266 | static inline int hibernate_nvs_register(unsigned long a, unsigned long b) |
| 262 | { | 267 | { |
| 263 | return 0; | 268 | return 0; |
| @@ -266,8 +271,7 @@ static inline int hibernate_nvs_alloc(void) { return 0; } | |||
| 266 | static inline void hibernate_nvs_free(void) {} | 271 | static inline void hibernate_nvs_free(void) {} |
| 267 | static inline void hibernate_nvs_save(void) {} | 272 | static inline void hibernate_nvs_save(void) {} |
| 268 | static inline void hibernate_nvs_restore(void) {} | 273 | static inline void hibernate_nvs_restore(void) {} |
| 269 | static inline bool system_entering_hibernation(void) { return false; } | 274 | #endif /* CONFIG_HIBERNATION_NVS */ |
| 270 | #endif /* CONFIG_HIBERNATION */ | ||
| 271 | 275 | ||
| 272 | #ifdef CONFIG_PM_SLEEP | 276 | #ifdef CONFIG_PM_SLEEP |
| 273 | void save_processor_state(void); | 277 | void save_processor_state(void); |
diff --git a/kernel/power/Kconfig b/kernel/power/Kconfig index 23bd4daeb96b..72067cbdb37f 100644 --- a/kernel/power/Kconfig +++ b/kernel/power/Kconfig | |||
| @@ -116,9 +116,13 @@ config SUSPEND_FREEZER | |||
| 116 | 116 | ||
| 117 | Turning OFF this setting is NOT recommended! If in doubt, say Y. | 117 | Turning OFF this setting is NOT recommended! If in doubt, say Y. |
| 118 | 118 | ||
| 119 | config HIBERNATION_NVS | ||
| 120 | bool | ||
| 121 | |||
| 119 | config HIBERNATION | 122 | config HIBERNATION |
| 120 | bool "Hibernation (aka 'suspend to disk')" | 123 | bool "Hibernation (aka 'suspend to disk')" |
| 121 | depends on PM && SWAP && ARCH_HIBERNATION_POSSIBLE | 124 | depends on PM && SWAP && ARCH_HIBERNATION_POSSIBLE |
| 125 | select HIBERNATION_NVS if HAS_IOMEM | ||
| 122 | ---help--- | 126 | ---help--- |
| 123 | Enable the suspend to disk (STD) functionality, which is usually | 127 | Enable the suspend to disk (STD) functionality, which is usually |
| 124 | called "hibernation" in user interfaces. STD checkpoints the | 128 | called "hibernation" in user interfaces. STD checkpoints the |
diff --git a/kernel/power/Makefile b/kernel/power/Makefile index eadb17fc8f5e..c3b81c30e5d5 100644 --- a/kernel/power/Makefile +++ b/kernel/power/Makefile | |||
| @@ -9,5 +9,6 @@ obj-$(CONFIG_FREEZER) += process.o | |||
| 9 | obj-$(CONFIG_SUSPEND) += suspend.o | 9 | obj-$(CONFIG_SUSPEND) += suspend.o |
| 10 | obj-$(CONFIG_PM_TEST_SUSPEND) += suspend_test.o | 10 | obj-$(CONFIG_PM_TEST_SUSPEND) += suspend_test.o |
| 11 | obj-$(CONFIG_HIBERNATION) += swsusp.o hibernate.o snapshot.o swap.o user.o | 11 | obj-$(CONFIG_HIBERNATION) += swsusp.o hibernate.o snapshot.o swap.o user.o |
| 12 | obj-$(CONFIG_HIBERNATION_NVS) += hibernate_nvs.o | ||
| 12 | 13 | ||
| 13 | obj-$(CONFIG_MAGIC_SYSRQ) += poweroff.o | 14 | obj-$(CONFIG_MAGIC_SYSRQ) += poweroff.o |
diff --git a/kernel/power/hibernate_nvs.c b/kernel/power/hibernate_nvs.c new file mode 100644 index 000000000000..39ac698ef836 --- /dev/null +++ b/kernel/power/hibernate_nvs.c | |||
| @@ -0,0 +1,135 @@ | |||
| 1 | /* | ||
| 2 | * linux/kernel/power/hibernate_nvs.c - Routines for handling NVS memory | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008,2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc. | ||
| 5 | * | ||
| 6 | * This file is released under the GPLv2. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #include <linux/io.h> | ||
| 10 | #include <linux/kernel.h> | ||
| 11 | #include <linux/list.h> | ||
| 12 | #include <linux/mm.h> | ||
| 13 | #include <linux/suspend.h> | ||
| 14 | |||
| 15 | /* | ||
| 16 | * Platforms, like ACPI, may want us to save some memory used by them during | ||
| 17 | * hibernation and to restore the contents of this memory during the subsequent | ||
| 18 | * resume. The code below implements a mechanism allowing us to do that. | ||
| 19 | */ | ||
| 20 | |||
| 21 | struct nvs_page { | ||
| 22 | unsigned long phys_start; | ||
| 23 | unsigned int size; | ||
| 24 | void *kaddr; | ||
| 25 | void *data; | ||
| 26 | struct list_head node; | ||
| 27 | }; | ||
| 28 | |||
| 29 | static LIST_HEAD(nvs_list); | ||
| 30 | |||
| 31 | /** | ||
| 32 | * hibernate_nvs_register - register platform NVS memory region to save | ||
| 33 | * @start - physical address of the region | ||
| 34 | * @size - size of the region | ||
| 35 | * | ||
| 36 | * The NVS region need not be page-aligned (both ends) and we arrange | ||
| 37 | * things so that the data from page-aligned addresses in this region will | ||
| 38 | * be copied into separate RAM pages. | ||
| 39 | */ | ||
| 40 | int hibernate_nvs_register(unsigned long start, unsigned long size) | ||
| 41 | { | ||
| 42 | struct nvs_page *entry, *next; | ||
| 43 | |||
| 44 | while (size > 0) { | ||
| 45 | unsigned int nr_bytes; | ||
| 46 | |||
| 47 | entry = kzalloc(sizeof(struct nvs_page), GFP_KERNEL); | ||
| 48 | if (!entry) | ||
| 49 | goto Error; | ||
| 50 | |||
| 51 | list_add_tail(&entry->node, &nvs_list); | ||
| 52 | entry->phys_start = start; | ||
| 53 | nr_bytes = PAGE_SIZE - (start & ~PAGE_MASK); | ||
| 54 | entry->size = (size < nr_bytes) ? size : nr_bytes; | ||
| 55 | |||
| 56 | start += entry->size; | ||
| 57 | size -= entry->size; | ||
| 58 | } | ||
| 59 | return 0; | ||
| 60 | |||
| 61 | Error: | ||
| 62 | list_for_each_entry_safe(entry, next, &nvs_list, node) { | ||
| 63 | list_del(&entry->node); | ||
| 64 | kfree(entry); | ||
| 65 | } | ||
| 66 | return -ENOMEM; | ||
| 67 | } | ||
| 68 | |||
| 69 | /** | ||
| 70 | * hibernate_nvs_free - free data pages allocated for saving NVS regions | ||
| 71 | */ | ||
| 72 | void hibernate_nvs_free(void) | ||
| 73 | { | ||
| 74 | struct nvs_page *entry; | ||
| 75 | |||
| 76 | list_for_each_entry(entry, &nvs_list, node) | ||
| 77 | if (entry->data) { | ||
| 78 | free_page((unsigned long)entry->data); | ||
| 79 | entry->data = NULL; | ||
| 80 | if (entry->kaddr) { | ||
| 81 | iounmap(entry->kaddr); | ||
| 82 | entry->kaddr = NULL; | ||
| 83 | } | ||
| 84 | } | ||
| 85 | } | ||
| 86 | |||
| 87 | /** | ||
| 88 | * hibernate_nvs_alloc - allocate memory necessary for saving NVS regions | ||
| 89 | */ | ||
| 90 | int hibernate_nvs_alloc(void) | ||
| 91 | { | ||
| 92 | struct nvs_page *entry; | ||
| 93 | |||
| 94 | list_for_each_entry(entry, &nvs_list, node) { | ||
| 95 | entry->data = (void *)__get_free_page(GFP_KERNEL); | ||
| 96 | if (!entry->data) { | ||
| 97 | hibernate_nvs_free(); | ||
| 98 | return -ENOMEM; | ||
| 99 | } | ||
| 100 | } | ||
| 101 | return 0; | ||
| 102 | } | ||
| 103 | |||
| 104 | /** | ||
| 105 | * hibernate_nvs_save - save NVS memory regions | ||
| 106 | */ | ||
| 107 | void hibernate_nvs_save(void) | ||
| 108 | { | ||
| 109 | struct nvs_page *entry; | ||
| 110 | |||
