2 * linux/kernel/power/snapshot.c
4 * This file provide system snapshot/restore functionality.
6 * Copyright (C) 1998-2005 Pavel Machek <pavel@suse.cz>
8 * This file is released under the GPLv2, and is based on swsusp.c.
13 #include <linux/module.h>
15 #include <linux/suspend.h>
16 #include <linux/smp_lock.h>
17 #include <linux/delay.h>
18 #include <linux/bitops.h>
19 #include <linux/spinlock.h>
20 #include <linux/kernel.h>
22 #include <linux/device.h>
23 #include <linux/bootmem.h>
24 #include <linux/syscalls.h>
25 #include <linux/console.h>
26 #include <linux/highmem.h>
28 #include <asm/uaccess.h>
29 #include <asm/mmu_context.h>
30 #include <asm/pgtable.h>
31 #include <asm/tlbflush.h>
40 struct highmem_page *next;
43 static struct highmem_page *highmem_copy;
45 static int save_highmem_zone(struct zone *zone)
47 unsigned long zone_pfn;
48 mark_free_pages(zone);
49 for (zone_pfn = 0; zone_pfn < zone->spanned_pages; ++zone_pfn) {
51 struct highmem_page *save;
53 unsigned long pfn = zone_pfn + zone->zone_start_pfn;
59 page = pfn_to_page(pfn);
61 * This condition results from rvmalloc() sans vmalloc_32()
62 * and architectural memory reservations. This should be
63 * corrected eventually when the cases giving rise to this
64 * are better understood.
66 if (PageReserved(page)) {
67 printk("highmem reserved page?!\n");
70 BUG_ON(PageNosave(page));
71 if (PageNosaveFree(page))
73 save = kmalloc(sizeof(struct highmem_page), GFP_ATOMIC);
76 save->next = highmem_copy;
78 save->data = (void *) get_zeroed_page(GFP_ATOMIC);
83 kaddr = kmap_atomic(page, KM_USER0);
84 memcpy(save->data, kaddr, PAGE_SIZE);
85 kunmap_atomic(kaddr, KM_USER0);
92 static int save_highmem(void)
97 pr_debug("swsusp: Saving Highmem\n");
98 for_each_zone (zone) {
100 res = save_highmem_zone(zone);
107 int restore_highmem(void)
109 printk("swsusp: Restoring Highmem\n");
110 while (highmem_copy) {
111 struct highmem_page *save = highmem_copy;
113 highmem_copy = save->next;
115 kaddr = kmap_atomic(save->page, KM_USER0);
116 memcpy(kaddr, save->data, PAGE_SIZE);
117 kunmap_atomic(kaddr, KM_USER0);
118 free_page((long) save->data);
124 static int save_highmem(void) { return 0; }
125 int restore_highmem(void) { return 0; }
126 #endif /* CONFIG_HIGHMEM */
129 static int pfn_is_nosave(unsigned long pfn)
131 unsigned long nosave_begin_pfn = __pa(&__nosave_begin) >> PAGE_SHIFT;
132 unsigned long nosave_end_pfn = PAGE_ALIGN(__pa(&__nosave_end)) >> PAGE_SHIFT;
133 return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);
137 * saveable - Determine whether a page should be cloned or not.
140 * We save a page if it's Reserved, and not in the range of pages
141 * statically defined as 'unsaveable', or if it isn't reserved, and
142 * isn't part of a free chunk of pages.
145 static int saveable(struct zone *zone, unsigned long *zone_pfn)
147 unsigned long pfn = *zone_pfn + zone->zone_start_pfn;
153 page = pfn_to_page(pfn);
154 BUG_ON(PageReserved(page) && PageNosave(page));
155 if (PageNosave(page))
157 if (PageReserved(page) && pfn_is_nosave(pfn)) {
158 pr_debug("[nosave pfn 0x%lx]", pfn);
161 if (PageNosaveFree(page))
167 static unsigned count_data_pages(void)
170 unsigned long zone_pfn;
174 for_each_zone (zone) {
175 if (is_highmem(zone))
177 mark_free_pages(zone);
178 for (zone_pfn = 0; zone_pfn < zone->spanned_pages; ++zone_pfn)
179 n += saveable(zone, &zone_pfn);
184 static void copy_data_pages(struct pbe *pblist)
187 unsigned long zone_pfn;
191 for_each_zone (zone) {
192 if (is_highmem(zone))
194 mark_free_pages(zone);
195 /* This is necessary for swsusp_free() */
196 for_each_pb_page (p, pblist)
197 SetPageNosaveFree(virt_to_page(p));
198 for_each_pbe (p, pblist)
199 SetPageNosaveFree(virt_to_page(p->address));
200 for (zone_pfn = 0; zone_pfn < zone->spanned_pages; ++zone_pfn) {
201 if (saveable(zone, &zone_pfn)) {
203 page = pfn_to_page(zone_pfn + zone->zone_start_pfn);
205 pbe->orig_address = (unsigned long)page_address(page);
206 /* copy_page is not usable for copying task structs. */
207 memcpy((void *)pbe->address, (void *)pbe->orig_address, PAGE_SIZE);
217 * free_pagedir - free pages allocated with alloc_pagedir()
220 static void free_pagedir(struct pbe *pblist)
225 pbe = (pblist + PB_PAGE_SKIP)->next;
226 ClearPageNosave(virt_to_page(pblist));
227 ClearPageNosaveFree(virt_to_page(pblist));
228 free_page((unsigned long)pblist);
234 * fill_pb_page - Create a list of PBEs on a given memory page
237 static inline void fill_pb_page(struct pbe *pbpage)
242 pbpage += PB_PAGE_SKIP;
245 while (++p < pbpage);
249 * create_pbe_list - Create a list of PBEs on top of a given chain
250 * of memory pages allocated with alloc_pagedir()
253 void create_pbe_list(struct pbe *pblist, unsigned nr_pages)
255 struct pbe *pbpage, *p;
256 unsigned num = PBES_PER_PAGE;
258 for_each_pb_page (pbpage, pblist) {
262 fill_pb_page(pbpage);
263 num += PBES_PER_PAGE;
266 for (num -= PBES_PER_PAGE - 1, p = pbpage; num < nr_pages; p++, num++)
270 pr_debug("create_pbe_list(): initialized %d PBEs\n", num);
273 static void *alloc_image_page(void)
275 void *res = (void *)get_zeroed_page(GFP_ATOMIC | __GFP_COLD);
277 SetPageNosave(virt_to_page(res));
278 SetPageNosaveFree(virt_to_page(res));
284 * alloc_pagedir - Allocate the page directory.
286 * First, determine exactly how many pages we need and
289 * We arrange the pages in a chain: each page is an array of PBES_PER_PAGE
290 * struct pbe elements (pbes) and the last element in the page points
293 * On each page we set up a list of struct_pbe elements.
296 struct pbe *alloc_pagedir(unsigned nr_pages)
299 struct pbe *pblist, *pbe;
304 pr_debug("alloc_pagedir(): nr_pages = %d\n", nr_pages);
305 pblist = alloc_image_page();
306 /* FIXME: rewrite this ugly loop */
307 for (pbe = pblist, num = PBES_PER_PAGE; pbe && num < nr_pages;
308 pbe = pbe->next, num += PBES_PER_PAGE) {
310 pbe->next = alloc_image_page();
312 if (!pbe) { /* get_zeroed_page() failed */
313 free_pagedir(pblist);
320 * Free pages we allocated for suspend. Suspend pages are alocated
321 * before atomic copy, so we need to free them after resume.
324 void swsusp_free(void)
327 unsigned long zone_pfn;
329 for_each_zone(zone) {
330 for (zone_pfn = 0; zone_pfn < zone->spanned_pages; ++zone_pfn)
331 if (pfn_valid(zone_pfn + zone->zone_start_pfn)) {
333 page = pfn_to_page(zone_pfn + zone->zone_start_pfn);
334 if (PageNosave(page) && PageNosaveFree(page)) {
335 ClearPageNosave(page);
336 ClearPageNosaveFree(page);
337 free_page((long) page_address(page));
345 * enough_free_mem - Make sure we enough free memory to snapshot.
347 * Returns TRUE or FALSE after checking the number of available
351 static int enough_free_mem(unsigned nr_pages)
353 pr_debug("swsusp: available memory: %u pages\n", nr_free_pages());
354 return nr_free_pages() > (nr_pages + PAGES_FOR_IO +
355 (nr_pages + PBES_PER_PAGE - 1) / PBES_PER_PAGE);
359 static struct pbe *swsusp_alloc(unsigned nr_pages)
361 struct pbe *pblist, *p;
363 if (!(pblist = alloc_pagedir(nr_pages))) {
364 printk(KERN_ERR "suspend: Allocating pagedir failed.\n");
367 create_pbe_list(pblist, nr_pages);
369 for_each_pbe (p, pblist) {
370 p->address = (unsigned long)alloc_image_page();
372 printk(KERN_ERR "suspend: Allocating image pages failed.\n");
381 asmlinkage int swsusp_save(void)
385 pr_debug("swsusp: critical section: \n");
386 if (save_highmem()) {
387 printk(KERN_CRIT "swsusp: Not enough free pages for highmem\n");
393 nr_pages = count_data_pages();
394 printk("swsusp: Need to copy %u pages\n", nr_pages);
396 pr_debug("swsusp: pages needed: %u + %lu + %u, free: %u\n",
398 (nr_pages + PBES_PER_PAGE - 1) / PBES_PER_PAGE,
399 PAGES_FOR_IO, nr_free_pages());
401 /* This is needed because of the fixed size of swsusp_info */
402 if (MAX_PBES < (nr_pages + PBES_PER_PAGE - 1) / PBES_PER_PAGE)
405 if (!enough_free_mem(nr_pages)) {
406 printk(KERN_ERR "swsusp: Not enough free memory\n");
410 if (!enough_swap(nr_pages)) {
411 printk(KERN_ERR "swsusp: Not enough free swap\n");
415 pagedir_nosave = swsusp_alloc(nr_pages);
419 /* During allocating of suspend pagedir, new cold pages may appear.
423 copy_data_pages(pagedir_nosave);
426 * End of critical section. From now on, we can write to memory,
427 * but we should not touch disk. This specially means we must _not_
428 * touch swap space! Except we must write out our image of course.
431 nr_copy_pages = nr_pages;
433 printk("swsusp: critical section/: done (%d pages copied)\n", nr_pages);