2 * Hibernation support specific for i386 - temporary page tables
4 * Distribute under GPLv2
6 * Copyright (c) 2006 Rafael J. Wysocki <rjw@sisk.pl>
10 #include <linux/suspend.h>
11 #include <linux/bootmem.h>
13 #include <asm/system.h>
15 #include <asm/pgtable.h>
16 #include <asm/mmzone.h>
18 /* Defined in hibernate_asm_32.S */
19 extern int restore_image(void);
21 /* References to section boundaries */
22 extern const void __nosave_begin
, __nosave_end
;
24 /* Pointer to the temporary resume page tables */
27 /* The following three functions are based on the analogous code in
28 * arch/x86/mm/init_32.c
32 * Create a middle page table on a resume-safe page and put a pointer to it in
33 * the given global directory entry. This only returns the gd entry
34 * in non-PAE compilation mode, since the middle layer is folded.
36 static pmd_t
*resume_one_md_table_init(pgd_t
*pgd
)
42 pmd_table
= (pmd_t
*)get_safe_page(GFP_ATOMIC
);
46 set_pgd(pgd
, __pgd(__pa(pmd_table
) | _PAGE_PRESENT
));
47 pud
= pud_offset(pgd
, 0);
49 BUG_ON(pmd_table
!= pmd_offset(pud
, 0));
51 pud
= pud_offset(pgd
, 0);
52 pmd_table
= pmd_offset(pud
, 0);
59 * Create a page table on a resume-safe page and place a pointer to it in
60 * a middle page directory entry.
62 static pte_t
*resume_one_page_table_init(pmd_t
*pmd
)
65 pte_t
*page_table
= (pte_t
*)get_safe_page(GFP_ATOMIC
);
69 set_pmd(pmd
, __pmd(__pa(page_table
) | _PAGE_TABLE
));
71 BUG_ON(page_table
!= pte_offset_kernel(pmd
, 0));
76 return pte_offset_kernel(pmd
, 0);
80 * This maps the physical memory to kernel virtual address space, a total
81 * of max_low_pfn pages, by creating page tables starting from address
82 * PAGE_OFFSET. The page tables are allocated out of resume-safe pages.
84 static int resume_physical_mapping_init(pgd_t
*pgd_base
)
92 pgd_idx
= pgd_index(PAGE_OFFSET
);
93 pgd
= pgd_base
+ pgd_idx
;
96 for (; pgd_idx
< PTRS_PER_PGD
; pgd
++, pgd_idx
++) {
97 pmd
= resume_one_md_table_init(pgd
);
101 if (pfn
>= max_low_pfn
)
104 for (pmd_idx
= 0; pmd_idx
< PTRS_PER_PMD
; pmd
++, pmd_idx
++) {
105 if (pfn
>= max_low_pfn
)
108 /* Map with big pages if possible, otherwise create
109 * normal page tables.
110 * NOTE: We can mark everything as executable here
113 set_pmd(pmd
, pfn_pmd(pfn
, PAGE_KERNEL_LARGE_EXEC
));
118 pte
= resume_one_page_table_init(pmd
);
122 max_pte
= pte
+ PTRS_PER_PTE
;
123 for (; pte
< max_pte
; pte
++, pfn
++) {
124 if (pfn
>= max_low_pfn
)
127 set_pte(pte
, pfn_pte(pfn
, PAGE_KERNEL_EXEC
));
133 resume_map_numa_kva(pgd_base
);
138 static inline void resume_init_first_level_page_table(pgd_t
*pg_dir
)
140 #ifdef CONFIG_X86_PAE
143 /* Init entries of the first-level page table to the zero page */
144 for (i
= 0; i
< PTRS_PER_PGD
; i
++)
146 __pgd(__pa(empty_zero_page
) | _PAGE_PRESENT
));
150 int swsusp_arch_resume(void)
154 resume_pg_dir
= (pgd_t
*)get_safe_page(GFP_ATOMIC
);
158 resume_init_first_level_page_table(resume_pg_dir
);
159 error
= resume_physical_mapping_init(resume_pg_dir
);
163 /* We have got enough memory and from now on we cannot recover */
169 * pfn_is_nosave - check if given pfn is in the 'nosave' section
172 int pfn_is_nosave(unsigned long pfn
)
174 unsigned long nosave_begin_pfn
= __pa_symbol(&__nosave_begin
) >> PAGE_SHIFT
;
175 unsigned long nosave_end_pfn
= PAGE_ALIGN(__pa_symbol(&__nosave_end
)) >> PAGE_SHIFT
;
176 return (pfn
>= nosave_begin_pfn
) && (pfn
< nosave_end_pfn
);