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/memblock.h>
14 #include <asm/pgtable.h>
15 #include <asm/mmzone.h>
16 #include <asm/sections.h>
17 #include <asm/suspend.h>
19 /* Pointer to the temporary resume page tables */
22 /* The following three functions are based on the analogous code in
23 * arch/x86/mm/init_32.c
27 * Create a middle page table on a resume-safe page and put a pointer to it in
28 * the given global directory entry. This only returns the gd entry
29 * in non-PAE compilation mode, since the middle layer is folded.
31 static pmd_t
*resume_one_md_table_init(pgd_t
*pgd
)
38 pmd_table
= (pmd_t
*)get_safe_page(GFP_ATOMIC
);
42 set_pgd(pgd
, __pgd(__pa(pmd_table
) | _PAGE_PRESENT
));
43 p4d
= p4d_offset(pgd
, 0);
44 pud
= pud_offset(p4d
, 0);
46 BUG_ON(pmd_table
!= pmd_offset(pud
, 0));
48 p4d
= p4d_offset(pgd
, 0);
49 pud
= pud_offset(p4d
, 0);
50 pmd_table
= pmd_offset(pud
, 0);
57 * Create a page table on a resume-safe page and place a pointer to it in
58 * a middle page directory entry.
60 static pte_t
*resume_one_page_table_init(pmd_t
*pmd
)
63 pte_t
*page_table
= (pte_t
*)get_safe_page(GFP_ATOMIC
);
67 set_pmd(pmd
, __pmd(__pa(page_table
) | _PAGE_TABLE
));
69 BUG_ON(page_table
!= pte_offset_kernel(pmd
, 0));
74 return pte_offset_kernel(pmd
, 0);
78 * This maps the physical memory to kernel virtual address space, a total
79 * of max_low_pfn pages, by creating page tables starting from address
80 * PAGE_OFFSET. The page tables are allocated out of resume-safe pages.
82 static int resume_physical_mapping_init(pgd_t
*pgd_base
)
90 pgd_idx
= pgd_index(PAGE_OFFSET
);
91 pgd
= pgd_base
+ pgd_idx
;
94 for (; pgd_idx
< PTRS_PER_PGD
; pgd
++, pgd_idx
++) {
95 pmd
= resume_one_md_table_init(pgd
);
99 if (pfn
>= max_low_pfn
)
102 for (pmd_idx
= 0; pmd_idx
< PTRS_PER_PMD
; pmd
++, pmd_idx
++) {
103 if (pfn
>= max_low_pfn
)
106 /* Map with big pages if possible, otherwise create
107 * normal page tables.
108 * NOTE: We can mark everything as executable here
110 if (boot_cpu_has(X86_FEATURE_PSE
)) {
111 set_pmd(pmd
, pfn_pmd(pfn
, PAGE_KERNEL_LARGE_EXEC
));
116 pte
= resume_one_page_table_init(pmd
);
120 max_pte
= pte
+ PTRS_PER_PTE
;
121 for (; pte
< max_pte
; pte
++, pfn
++) {
122 if (pfn
>= max_low_pfn
)
125 set_pte(pte
, pfn_pte(pfn
, PAGE_KERNEL_EXEC
));
134 static inline void resume_init_first_level_page_table(pgd_t
*pg_dir
)
136 #ifdef CONFIG_X86_PAE
139 /* Init entries of the first-level page table to the zero page */
140 for (i
= 0; i
< PTRS_PER_PGD
; i
++)
142 __pgd(__pa(empty_zero_page
) | _PAGE_PRESENT
));
146 static int set_up_temporary_text_mapping(pgd_t
*pgd_base
)
152 pgd
= pgd_base
+ pgd_index(restore_jump_address
);
154 pmd
= resume_one_md_table_init(pgd
);
158 if (boot_cpu_has(X86_FEATURE_PSE
)) {
159 set_pmd(pmd
+ pmd_index(restore_jump_address
),
160 __pmd((jump_address_phys
& PMD_MASK
) | pgprot_val(PAGE_KERNEL_LARGE_EXEC
)));
162 pte
= resume_one_page_table_init(pmd
);
165 set_pte(pte
+ pte_index(restore_jump_address
),
166 __pte((jump_address_phys
& PAGE_MASK
) | pgprot_val(PAGE_KERNEL_EXEC
)));
172 asmlinkage
int swsusp_arch_resume(void)
176 resume_pg_dir
= (pgd_t
*)get_safe_page(GFP_ATOMIC
);
180 resume_init_first_level_page_table(resume_pg_dir
);
182 error
= set_up_temporary_text_mapping(resume_pg_dir
);
186 error
= resume_physical_mapping_init(resume_pg_dir
);
190 temp_pgt
= __pa(resume_pg_dir
);
192 error
= relocate_restore_code();
196 /* We have got enough memory and from now on we cannot recover */