[SCTP]: Update ASCONF processing to conform to spec.
[linux-2.6/x86.git] / arch / x86 / kernel / suspend_64.c
blob2e5efaaf8800ee2d402aca5b0b9bb1a00061458e
1 /*
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>
8 */
10 #include <linux/smp.h>
11 #include <linux/suspend.h>
12 #include <asm/proto.h>
13 #include <asm/page.h>
14 #include <asm/pgtable.h>
15 #include <asm/mtrr.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)
24 kernel_fpu_begin();
27 * descriptor tables
29 store_gdt((struct desc_ptr *)&ctxt->gdt_limit);
30 store_idt((struct desc_ptr *)&ctxt->idt_limit);
31 store_tr(ctxt->tr);
33 /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
35 * segment registers
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);
49 * control registers
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
69 kernel_fpu_end();
72 void __restore_processor_state(struct saved_context *ctxt)
75 * control registers
77 wrmsrl(MSR_EFER, ctxt->efer);
78 write_cr8(ctxt->cr8);
79 write_cr4(ctxt->cr4);
80 write_cr3(ctxt->cr3);
81 write_cr2(ctxt->cr2);
82 write_cr0(ctxt->cr0);
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);
93 * segment registers
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();
107 do_fpu_end();
108 mtrr_ap_init();
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(&current->active_mm->context); /* This does lldt */
130 * Now maybe reload the debug registers
132 if (current->thread.debugreg7){
133 loaddebug(&current->thread, 0);
134 loaddebug(&current->thread, 1);
135 loaddebug(&current->thread, 2);
136 loaddebug(&current->thread, 3);
137 /* no 4 and 5 */
138 loaddebug(&current->thread, 6);
139 loaddebug(&current->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)
166 long i, j;
168 i = pud_index(address);
169 pud = pud + i;
170 for (; i < PTRS_PER_PUD; pud++, i++) {
171 unsigned long paddr;
172 pmd_t *pmd;
174 paddr = address + i*PUD_SIZE;
175 if (paddr >= end)
176 break;
178 pmd = (pmd_t *)get_safe_page(GFP_ATOMIC);
179 if (!pmd)
180 return -ENOMEM;
181 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE));
182 for (j = 0; j < PTRS_PER_PMD; pmd++, j++, paddr += PMD_SIZE) {
183 unsigned long pe;
185 if (paddr >= end)
186 break;
187 pe = __PAGE_KERNEL_LARGE_EXEC | paddr;
188 pe &= __supported_pte_mask;
189 set_pmd(pmd, __pmd(pe));
192 return 0;
195 static int set_up_temporary_mappings(void)
197 unsigned long start, end, next;
198 int error;
200 temp_level4_pgt = (pgd_t *)get_safe_page(GFP_ATOMIC);
201 if (!temp_level4_pgt)
202 return -ENOMEM;
204 /* It is safe to reuse the original kernel mapping */
205 set_pgd(temp_level4_pgt + pgd_index(__START_KERNEL_map),
206 init_level4_pgt[pgd_index(__START_KERNEL_map)]);
208 /* Set up the direct mapping from scratch */
209 start = (unsigned long)pfn_to_kaddr(0);
210 end = (unsigned long)pfn_to_kaddr(end_pfn);
212 for (; start < end; start = next) {
213 pud_t *pud = (pud_t *)get_safe_page(GFP_ATOMIC);
214 if (!pud)
215 return -ENOMEM;
216 next = start + PGDIR_SIZE;
217 if (next > end)
218 next = end;
219 if ((error = res_phys_pud_init(pud, __pa(start), __pa(next))))
220 return error;
221 set_pgd(temp_level4_pgt + pgd_index(start),
222 mk_kernel_pgd(__pa(pud)));
224 return 0;
227 int swsusp_arch_resume(void)
229 int error;
231 /* We have got enough memory and from now on we cannot recover */
232 if ((error = set_up_temporary_mappings()))
233 return error;
235 relocated_restore_code = (void *)get_safe_page(GFP_ATOMIC);
236 if (!relocated_restore_code)
237 return -ENOMEM;
238 memcpy(relocated_restore_code, &core_restore_code,
239 &restore_registers - &core_restore_code);
241 restore_image();
242 return 0;
246 * pfn_is_nosave - check if given pfn is in the 'nosave' section
249 int pfn_is_nosave(unsigned long pfn)
251 unsigned long nosave_begin_pfn = __pa_symbol(&__nosave_begin) >> PAGE_SHIFT;
252 unsigned long nosave_end_pfn = PAGE_ALIGN(__pa_symbol(&__nosave_end)) >> PAGE_SHIFT;
253 return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);
256 struct restore_data_record {
257 unsigned long jump_address;
258 unsigned long cr3;
259 unsigned long magic;
262 #define RESTORE_MAGIC 0x0123456789ABCDEFUL
265 * arch_hibernation_header_save - populate the architecture specific part
266 * of a hibernation image header
267 * @addr: address to save the data at
269 int arch_hibernation_header_save(void *addr, unsigned int max_size)
271 struct restore_data_record *rdr = addr;
273 if (max_size < sizeof(struct restore_data_record))
274 return -EOVERFLOW;
275 rdr->jump_address = restore_jump_address;
276 rdr->cr3 = restore_cr3;
277 rdr->magic = RESTORE_MAGIC;
278 return 0;
282 * arch_hibernation_header_restore - read the architecture specific data
283 * from the hibernation image header
284 * @addr: address to read the data from
286 int arch_hibernation_header_restore(void *addr)
288 struct restore_data_record *rdr = addr;
290 restore_jump_address = rdr->jump_address;
291 restore_cr3 = rdr->cr3;
292 return (rdr->magic == RESTORE_MAGIC) ? 0 : -EINVAL;
294 #endif /* CONFIG_HIBERNATION */