2 * Hibernation support specific for i386 - temporary page tables
4 * Distribute under GPLv2
6 * Copyright (c) 2006 Rafael J. Wysocki <rjw@sisk.pl>
9 #include <linux/suspend.h>
10 #include <linux/bootmem.h>
12 #include <asm/system.h>
14 #include <asm/pgtable.h>
15 #include <asm/mmzone.h>
17 /* Defined in hibernate_asm_32.S */
18 extern int restore_image(void);
20 /* References to section boundaries */
21 extern const void __nosave_begin
, __nosave_end
;
23 /* Pointer to the temporary resume page tables */
26 /* The following three functions are based on the analogous code in
27 * arch/x86/mm/init_32.c
31 * Create a middle page table on a resume-safe page and put a pointer to it in
32 * the given global directory entry. This only returns the gd entry
33 * in non-PAE compilation mode, since the middle layer is folded.
35 static pmd_t
*resume_one_md_table_init(pgd_t
*pgd
)
41 pmd_table
= (pmd_t
*)get_safe_page(GFP_ATOMIC
);
45 set_pgd(pgd
, __pgd(__pa(pmd_table
) | _PAGE_PRESENT
));
46 pud
= pud_offset(pgd
, 0);
48 BUG_ON(pmd_table
!= pmd_offset(pud
, 0));
50 pud
= pud_offset(pgd
, 0);
51 pmd_table
= pmd_offset(pud
, 0);
58 * Create a page table on a resume-safe page and place a pointer to it in
59 * a middle page directory entry.
61 static pte_t
*resume_one_page_table_init(pmd_t
*pmd
)
64 pte_t
*page_table
= (pte_t
*)get_safe_page(GFP_ATOMIC
);
68 set_pmd(pmd
, __pmd(__pa(page_table
) | _PAGE_TABLE
));
70 BUG_ON(page_table
!= pte_offset_kernel(pmd
, 0));
75 return pte_offset_kernel(pmd
, 0);
79 * This maps the physical memory to kernel virtual address space, a total
80 * of max_low_pfn pages, by creating page tables starting from address
81 * PAGE_OFFSET. The page tables are allocated out of resume-safe pages.
83 static int resume_physical_mapping_init(pgd_t
*pgd_base
)
91 pgd_idx
= pgd_index(PAGE_OFFSET
);
92 pgd
= pgd_base
+ pgd_idx
;
95 for (; pgd_idx
< PTRS_PER_PGD
; pgd
++, pgd_idx
++) {
96 pmd
= resume_one_md_table_init(pgd
);
100 if (pfn
>= max_low_pfn
)
103 for (pmd_idx
= 0; pmd_idx
< PTRS_PER_PMD
; pmd
++, pmd_idx
++) {
104 if (pfn
>= max_low_pfn
)
107 /* Map with big pages if possible, otherwise create
108 * normal page tables.
109 * NOTE: We can mark everything as executable here
112 set_pmd(pmd
, pfn_pmd(pfn
, PAGE_KERNEL_LARGE_EXEC
));
117 pte
= resume_one_page_table_init(pmd
);
121 max_pte
= pte
+ PTRS_PER_PTE
;
122 for (; pte
< max_pte
; pte
++, pfn
++) {
123 if (pfn
>= max_low_pfn
)
126 set_pte(pte
, pfn_pte(pfn
, PAGE_KERNEL_EXEC
));
132 resume_map_numa_kva(pgd_base
);
137 static inline void resume_init_first_level_page_table(pgd_t
*pg_dir
)
139 #ifdef CONFIG_X86_PAE
142 /* Init entries of the first-level page table to the zero page */
143 for (i
= 0; i
< PTRS_PER_PGD
; i
++)
145 __pgd(__pa(empty_zero_page
) | _PAGE_PRESENT
));
149 int swsusp_arch_resume(void)
153 resume_pg_dir
= (pgd_t
*)get_safe_page(GFP_ATOMIC
);
157 resume_init_first_level_page_table(resume_pg_dir
);
158 error
= resume_physical_mapping_init(resume_pg_dir
);
162 /* We have got enough memory and from now on we cannot recover */
168 * pfn_is_nosave - check if given pfn is in the 'nosave' section
171 int pfn_is_nosave(unsigned long pfn
)
173 unsigned long nosave_begin_pfn
= __pa_symbol(&__nosave_begin
) >> PAGE_SHIFT
;
174 unsigned long nosave_end_pfn
= PAGE_ALIGN(__pa_symbol(&__nosave_end
)) >> PAGE_SHIFT
;
175 return (pfn
>= nosave_begin_pfn
) && (pfn
< nosave_end_pfn
);