2 * linux/arch/unicore32/kernel/hibernate.c
4 * Code specific to PKUnity SoC and UniCore ISA
6 * Maintained by GUAN Xue-tao <gxt@mprc.pku.edu.cn>
7 * Copyright (C) 2001-2010 Guan Xuetao
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/gfp.h>
15 #include <linux/suspend.h>
16 #include <linux/bootmem.h>
18 #include <asm/system.h>
20 #include <asm/pgtable.h>
21 #include <asm/pgalloc.h>
22 #include <asm/suspend.h>
26 /* Pointer to the temporary resume page tables */
29 struct swsusp_arch_regs swsusp_arch_regs_cpu0
;
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
)
41 pud
= pud_offset(pgd
, 0);
42 pmd_table
= pmd_offset(pud
, 0);
48 * Create a page table on a resume-safe page and place a pointer to it in
49 * a middle page directory entry.
51 static pte_t
*resume_one_page_table_init(pmd_t
*pmd
)
54 pte_t
*page_table
= (pte_t
*)get_safe_page(GFP_ATOMIC
);
58 set_pmd(pmd
, __pmd(__pa(page_table
) | _PAGE_KERNEL_TABLE
));
60 BUG_ON(page_table
!= pte_offset_kernel(pmd
, 0));
65 return pte_offset_kernel(pmd
, 0);
69 * This maps the physical memory to kernel virtual address space, a total
70 * of max_low_pfn pages, by creating page tables starting from address
71 * PAGE_OFFSET. The page tables are allocated out of resume-safe pages.
73 static int resume_physical_mapping_init(pgd_t
*pgd_base
)
81 pgd_idx
= pgd_index(PAGE_OFFSET
);
82 pgd
= pgd_base
+ pgd_idx
;
85 for (; pgd_idx
< PTRS_PER_PGD
; pgd
++, pgd_idx
++) {
86 pmd
= resume_one_md_table_init(pgd
);
90 if (pfn
>= max_low_pfn
)
93 for (pmd_idx
= 0; pmd_idx
< PTRS_PER_PMD
; pmd
++, pmd_idx
++) {
96 if (pfn
>= max_low_pfn
)
99 /* Map with normal page tables.
100 * NOTE: We can mark everything as executable here
102 pte
= resume_one_page_table_init(pmd
);
106 max_pte
= pte
+ PTRS_PER_PTE
;
107 for (; pte
< max_pte
; pte
++, pfn
++) {
108 if (pfn
>= max_low_pfn
)
111 set_pte(pte
, pfn_pte(pfn
, PAGE_KERNEL_EXEC
));
119 static inline void resume_init_first_level_page_table(pgd_t
*pg_dir
)
123 int swsusp_arch_resume(void)
127 resume_pg_dir
= (pgd_t
*)get_safe_page(GFP_ATOMIC
);
131 resume_init_first_level_page_table(resume_pg_dir
);
132 error
= resume_physical_mapping_init(resume_pg_dir
);
136 /* We have got enough memory and from now on we cannot recover */
137 restore_image(resume_pg_dir
, restore_pblist
);
142 * pfn_is_nosave - check if given pfn is in the 'nosave' section
145 int pfn_is_nosave(unsigned long pfn
)
147 unsigned long begin_pfn
= __pa(&__nosave_begin
) >> PAGE_SHIFT
;
148 unsigned long end_pfn
= PAGE_ALIGN(__pa(&__nosave_end
)) >> PAGE_SHIFT
;
150 return (pfn
>= begin_pfn
) && (pfn
< end_pfn
);
153 void save_processor_state(void)
157 void restore_processor_state(void)
159 local_flush_tlb_all();