2 * Hibernation support for x86-64
4 * Distribute under GPLv2
6 * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl>
7 * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz>
8 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
11 #include <linux/gfp.h>
12 #include <linux/smp.h>
13 #include <linux/suspend.h>
16 #include <asm/proto.h>
18 #include <asm/pgtable.h>
20 #include <asm/sections.h>
21 #include <asm/suspend.h>
23 /* Defined in hibernate_asm_64.S */
24 extern asmlinkage __visible
int restore_image(void);
27 * Address to jump to in the last phase of restore in order to get to the image
28 * kernel's text (this value is passed in the image header).
30 unsigned long restore_jump_address __visible
;
33 * Value of the cr3 register from before the hibernation (this value is passed
34 * in the image header).
36 unsigned long restore_cr3 __visible
;
38 pgd_t
*temp_level4_pgt __visible
;
40 void *relocated_restore_code __visible
;
42 static void *alloc_pgt_page(void *context
)
44 return (void *)get_safe_page(GFP_ATOMIC
);
47 static int set_up_temporary_mappings(void)
49 struct x86_mapping_info info
= {
50 .alloc_pgt_page
= alloc_pgt_page
,
51 .pmd_flag
= __PAGE_KERNEL_LARGE_EXEC
,
52 .kernel_mapping
= true,
54 unsigned long mstart
, mend
;
58 temp_level4_pgt
= (pgd_t
*)get_safe_page(GFP_ATOMIC
);
62 /* It is safe to reuse the original kernel mapping */
63 set_pgd(temp_level4_pgt
+ pgd_index(__START_KERNEL_map
),
64 init_level4_pgt
[pgd_index(__START_KERNEL_map
)]);
66 /* Set up the direct mapping from scratch */
67 for (i
= 0; i
< nr_pfn_mapped
; i
++) {
68 mstart
= pfn_mapped
[i
].start
<< PAGE_SHIFT
;
69 mend
= pfn_mapped
[i
].end
<< PAGE_SHIFT
;
71 result
= kernel_ident_mapping_init(&info
, temp_level4_pgt
,
81 int swsusp_arch_resume(void)
85 /* We have got enough memory and from now on we cannot recover */
86 if ((error
= set_up_temporary_mappings()))
89 relocated_restore_code
= (void *)get_safe_page(GFP_ATOMIC
);
90 if (!relocated_restore_code
)
92 memcpy(relocated_restore_code
, &core_restore_code
,
93 &restore_registers
- &core_restore_code
);
100 * pfn_is_nosave - check if given pfn is in the 'nosave' section
103 int pfn_is_nosave(unsigned long pfn
)
105 unsigned long nosave_begin_pfn
= __pa_symbol(&__nosave_begin
) >> PAGE_SHIFT
;
106 unsigned long nosave_end_pfn
= PAGE_ALIGN(__pa_symbol(&__nosave_end
)) >> PAGE_SHIFT
;
107 return (pfn
>= nosave_begin_pfn
) && (pfn
< nosave_end_pfn
);
110 struct restore_data_record
{
111 unsigned long jump_address
;
116 #define RESTORE_MAGIC 0x0123456789ABCDEFUL
119 * arch_hibernation_header_save - populate the architecture specific part
120 * of a hibernation image header
121 * @addr: address to save the data at
123 int arch_hibernation_header_save(void *addr
, unsigned int max_size
)
125 struct restore_data_record
*rdr
= addr
;
127 if (max_size
< sizeof(struct restore_data_record
))
129 rdr
->jump_address
= restore_jump_address
;
130 rdr
->cr3
= restore_cr3
;
131 rdr
->magic
= RESTORE_MAGIC
;
136 * arch_hibernation_header_restore - read the architecture specific data
137 * from the hibernation image header
138 * @addr: address to read the data from
140 int arch_hibernation_header_restore(void *addr
)
142 struct restore_data_record
*rdr
= addr
;
144 restore_jump_address
= rdr
->jump_address
;
145 restore_cr3
= rdr
->cr3
;
146 return (rdr
->magic
== RESTORE_MAGIC
) ? 0 : -EINVAL
;