2 * Suspend support specific for i386.
4 * Distribute under GPLv2
6 * Copyright (c) 2002 Pavel Machek <pavel@suse.cz>
7 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
10 #include <linux/smp.h>
11 #include <linux/suspend.h>
12 #include <asm/proto.h>
14 #include <asm/pgtable.h>
17 /* References to section boundaries */
18 extern const void __nosave_begin
, __nosave_end
;
20 struct saved_context saved_context
;
22 void __save_processor_state(struct saved_context
*ctxt
)
29 store_gdt((struct desc_ptr
*)&ctxt
->gdt_limit
);
30 store_idt((struct desc_ptr
*)&ctxt
->idt_limit
);
33 /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
37 asm volatile ("movw %%ds, %0" : "=m" (ctxt
->ds
));
38 asm volatile ("movw %%es, %0" : "=m" (ctxt
->es
));
39 asm volatile ("movw %%fs, %0" : "=m" (ctxt
->fs
));
40 asm volatile ("movw %%gs, %0" : "=m" (ctxt
->gs
));
41 asm volatile ("movw %%ss, %0" : "=m" (ctxt
->ss
));
43 rdmsrl(MSR_FS_BASE
, ctxt
->fs_base
);
44 rdmsrl(MSR_GS_BASE
, ctxt
->gs_base
);
45 rdmsrl(MSR_KERNEL_GS_BASE
, ctxt
->gs_kernel_base
);
46 mtrr_save_fixed_ranges(NULL
);
51 rdmsrl(MSR_EFER
, ctxt
->efer
);
52 ctxt
->cr0
= read_cr0();
53 ctxt
->cr2
= read_cr2();
54 ctxt
->cr3
= read_cr3();
55 ctxt
->cr4
= read_cr4();
56 ctxt
->cr8
= read_cr8();
59 void save_processor_state(void)
61 __save_processor_state(&saved_context
);
64 static void do_fpu_end(void)
67 * Restore FPU regs if necessary
72 void __restore_processor_state(struct saved_context
*ctxt
)
77 wrmsrl(MSR_EFER
, ctxt
->efer
);
85 * now restore the descriptor tables to their proper values
86 * ltr is done i fix_processor_context().
88 load_gdt((const struct desc_ptr
*)&ctxt
->gdt_limit
);
89 load_idt((const struct desc_ptr
*)&ctxt
->idt_limit
);
95 asm volatile ("movw %0, %%ds" :: "r" (ctxt
->ds
));
96 asm volatile ("movw %0, %%es" :: "r" (ctxt
->es
));
97 asm volatile ("movw %0, %%fs" :: "r" (ctxt
->fs
));
98 load_gs_index(ctxt
->gs
);
99 asm volatile ("movw %0, %%ss" :: "r" (ctxt
->ss
));
101 wrmsrl(MSR_FS_BASE
, ctxt
->fs_base
);
102 wrmsrl(MSR_GS_BASE
, ctxt
->gs_base
);
103 wrmsrl(MSR_KERNEL_GS_BASE
, ctxt
->gs_kernel_base
);
105 fix_processor_context();
111 void restore_processor_state(void)
113 __restore_processor_state(&saved_context
);
116 void fix_processor_context(void)
118 int cpu
= smp_processor_id();
119 struct tss_struct
*t
= &per_cpu(init_tss
, cpu
);
121 set_tss_desc(cpu
,t
); /* This just modifies memory; should not be necessary. But... This is necessary, because 386 hardware has concept of busy TSS or some similar stupidity. */
123 cpu_gdt(cpu
)[GDT_ENTRY_TSS
].type
= 9;
125 syscall_init(); /* This sets MSR_*STAR and related */
126 load_TR_desc(); /* This does ltr */
127 load_LDT(¤t
->active_mm
->context
); /* This does lldt */
130 * Now maybe reload the debug registers
132 if (current
->thread
.debugreg7
){
133 loaddebug(¤t
->thread
, 0);
134 loaddebug(¤t
->thread
, 1);
135 loaddebug(¤t
->thread
, 2);
136 loaddebug(¤t
->thread
, 3);
138 loaddebug(¤t
->thread
, 6);
139 loaddebug(¤t
->thread
, 7);
144 #ifdef CONFIG_HIBERNATION
145 /* Defined in arch/x86_64/kernel/suspend_asm.S */
146 extern int restore_image(void);
149 * Address to jump to in the last phase of restore in order to get to the image
150 * kernel's text (this value is passed in the image header).
152 unsigned long restore_jump_address
;
155 * Value of the cr3 register from before the hibernation (this value is passed
156 * in the image header).
158 unsigned long restore_cr3
;
160 pgd_t
*temp_level4_pgt
;
162 void *relocated_restore_code
;
164 static int res_phys_pud_init(pud_t
*pud
, unsigned long address
, unsigned long end
)
168 i
= pud_index(address
);
170 for (; i
< PTRS_PER_PUD
; pud
++, i
++) {
174 paddr
= address
+ i
*PUD_SIZE
;
178 pmd
= (pmd_t
*)get_safe_page(GFP_ATOMIC
);
181 set_pud(pud
, __pud(__pa(pmd
) | _KERNPG_TABLE
));
182 for (j
= 0; j
< PTRS_PER_PMD
; pmd
++, j
++, paddr
+= PMD_SIZE
) {
187 pe
= __PAGE_KERNEL_LARGE_EXEC
| paddr
;
188 pe
&= __supported_pte_mask
;
189 set_pmd(pmd
, __pmd(pe
));
195 static int res_kernel_text_pud_init(pud_t
*pud
, unsigned long start
)
200 pmd
= (pmd_t
*)get_safe_page(GFP_ATOMIC
);
203 set_pud(pud
+ pud_index(start
), __pud(__pa(pmd
) | _KERNPG_TABLE
));
204 for (paddr
= 0; paddr
< KERNEL_TEXT_SIZE
; pmd
++, paddr
+= PMD_SIZE
) {
207 pe
= __PAGE_KERNEL_LARGE_EXEC
| _PAGE_GLOBAL
| paddr
;
208 pe
&= __supported_pte_mask
;
209 set_pmd(pmd
, __pmd(pe
));
215 static int set_up_temporary_mappings(void)
217 unsigned long start
, end
, next
;
221 temp_level4_pgt
= (pgd_t
*)get_safe_page(GFP_ATOMIC
);
222 if (!temp_level4_pgt
)
225 /* Set up the direct mapping from scratch */
226 start
= (unsigned long)pfn_to_kaddr(0);
227 end
= (unsigned long)pfn_to_kaddr(end_pfn
);
229 for (; start
< end
; start
= next
) {
230 pud
= (pud_t
*)get_safe_page(GFP_ATOMIC
);
233 next
= start
+ PGDIR_SIZE
;
236 if ((error
= res_phys_pud_init(pud
, __pa(start
), __pa(next
))))
238 set_pgd(temp_level4_pgt
+ pgd_index(start
),
239 mk_kernel_pgd(__pa(pud
)));
242 /* Set up the kernel text mapping from scratch */
243 pud
= (pud_t
*)get_safe_page(GFP_ATOMIC
);
246 error
= res_kernel_text_pud_init(pud
, __START_KERNEL_map
);
248 set_pgd(temp_level4_pgt
+ pgd_index(__START_KERNEL_map
),
249 __pgd(__pa(pud
) | _PAGE_TABLE
));
254 int swsusp_arch_resume(void)
258 /* We have got enough memory and from now on we cannot recover */
259 if ((error
= set_up_temporary_mappings()))
262 relocated_restore_code
= (void *)get_safe_page(GFP_ATOMIC
);
263 if (!relocated_restore_code
)
265 memcpy(relocated_restore_code
, &core_restore_code
,
266 &restore_registers
- &core_restore_code
);
273 * pfn_is_nosave - check if given pfn is in the 'nosave' section
276 int pfn_is_nosave(unsigned long pfn
)
278 unsigned long nosave_begin_pfn
= __pa_symbol(&__nosave_begin
) >> PAGE_SHIFT
;
279 unsigned long nosave_end_pfn
= PAGE_ALIGN(__pa_symbol(&__nosave_end
)) >> PAGE_SHIFT
;
280 return (pfn
>= nosave_begin_pfn
) && (pfn
< nosave_end_pfn
);
283 struct restore_data_record
{
284 unsigned long jump_address
;
289 #define RESTORE_MAGIC 0x0123456789ABCDEFUL
292 * arch_hibernation_header_save - populate the architecture specific part
293 * of a hibernation image header
294 * @addr: address to save the data at
296 int arch_hibernation_header_save(void *addr
, unsigned int max_size
)
298 struct restore_data_record
*rdr
= addr
;
300 if (max_size
< sizeof(struct restore_data_record
))
302 rdr
->jump_address
= restore_jump_address
;
303 rdr
->cr3
= restore_cr3
;
304 rdr
->magic
= RESTORE_MAGIC
;
309 * arch_hibernation_header_restore - read the architecture specific data
310 * from the hibernation image header
311 * @addr: address to read the data from
313 int arch_hibernation_header_restore(void *addr
)
315 struct restore_data_record
*rdr
= addr
;
317 restore_jump_address
= rdr
->jump_address
;
318 restore_cr3
= rdr
->cr3
;
319 return (rdr
->magic
== RESTORE_MAGIC
) ? 0 : -EINVAL
;
321 #endif /* CONFIG_HIBERNATION */