blob: 569f1b540e36f20ad1cb198439234c6c32e4f0d7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Suspend support specific for i386.
3 *
4 * Distribute under GPLv2
5 *
6 * Copyright (c) 2002 Pavel Machek <pavel@suse.cz>
7 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
8 */
9
Al Viro55679ed2005-09-12 18:49:24 +020010#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/suspend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/proto.h>
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +020013#include <asm/page.h>
14#include <asm/pgtable.h>
Bernhard Kaindl3ebad592007-05-02 19:27:17 +020015#include <asm/mtrr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Vivek Goyal49c3df62007-05-02 19:27:07 +020017/* References to section boundaries */
18extern const void __nosave_begin, __nosave_end;
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020struct saved_context saved_context;
21
Rafael J. Wysocki5c9c9be2008-01-30 13:30:04 +010022/**
23 * __save_processor_state - save CPU registers before creating a
24 * hibernation image and before restoring the memory state from it
25 * @ctxt - structure to store the registers contents in
26 *
27 * NOTE: If there is a CPU register the modification of which by the
28 * boot kernel (ie. the kernel used for loading the hibernation image)
29 * might affect the operations of the restored target kernel (ie. the one
30 * saved in the hibernation image), then its contents must be saved by this
31 * function. In other words, if kernel A is hibernated and different
32 * kernel B is used for loading the hibernation image into memory, the
33 * kernel A's __save_processor_state() function must save all registers
34 * needed by kernel A, so that it can operate correctly after the resume
35 * regardless of what kernel B does in the meantime.
36 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037void __save_processor_state(struct saved_context *ctxt)
38{
39 kernel_fpu_begin();
40
41 /*
42 * descriptor tables
43 */
Glauber de Oliveira Costa9d1c6e72007-10-19 20:35:03 +020044 store_gdt((struct desc_ptr *)&ctxt->gdt_limit);
45 store_idt((struct desc_ptr *)&ctxt->idt_limit);
46 store_tr(ctxt->tr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 /*
50 * segment registers
51 */
52 asm volatile ("movw %%ds, %0" : "=m" (ctxt->ds));
53 asm volatile ("movw %%es, %0" : "=m" (ctxt->es));
54 asm volatile ("movw %%fs, %0" : "=m" (ctxt->fs));
55 asm volatile ("movw %%gs, %0" : "=m" (ctxt->gs));
56 asm volatile ("movw %%ss, %0" : "=m" (ctxt->ss));
57
58 rdmsrl(MSR_FS_BASE, ctxt->fs_base);
59 rdmsrl(MSR_GS_BASE, ctxt->gs_base);
60 rdmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
Bernhard Kaindl3ebad592007-05-02 19:27:17 +020061 mtrr_save_fixed_ranges(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 /*
64 * control registers
65 */
Vivek Goyal3c321bc2007-05-02 19:27:07 +020066 rdmsrl(MSR_EFER, ctxt->efer);
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +020067 ctxt->cr0 = read_cr0();
68 ctxt->cr2 = read_cr2();
69 ctxt->cr3 = read_cr3();
70 ctxt->cr4 = read_cr4();
71 ctxt->cr8 = read_cr8();
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
74void save_processor_state(void)
75{
76 __save_processor_state(&saved_context);
77}
78
Shaohua Li08967f92005-10-30 14:59:28 -080079static void do_fpu_end(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Shaohua Li08967f92005-10-30 14:59:28 -080081 /*
82 * Restore FPU regs if necessary
83 */
84 kernel_fpu_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Rafael J. Wysocki5c9c9be2008-01-30 13:30:04 +010087/**
88 * __restore_processor_state - restore the contents of CPU registers saved
89 * by __save_processor_state()
90 * @ctxt - structure to load the registers contents from
91 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092void __restore_processor_state(struct saved_context *ctxt)
93{
94 /*
95 * control registers
96 */
Vivek Goyal3c321bc2007-05-02 19:27:07 +020097 wrmsrl(MSR_EFER, ctxt->efer);
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +020098 write_cr8(ctxt->cr8);
99 write_cr4(ctxt->cr4);
100 write_cr3(ctxt->cr3);
101 write_cr2(ctxt->cr2);
102 write_cr0(ctxt->cr0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 /*
Pavel Machek8d783b32005-06-25 14:55:14 -0700105 * now restore the descriptor tables to their proper values
106 * ltr is done i fix_processor_context().
107 */
Glauber de Oliveira Costa9d1c6e72007-10-19 20:35:03 +0200108 load_gdt((const struct desc_ptr *)&ctxt->gdt_limit);
109 load_idt((const struct desc_ptr *)&ctxt->idt_limit);
110
Pavel Machek8d783b32005-06-25 14:55:14 -0700111
112 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * segment registers
114 */
115 asm volatile ("movw %0, %%ds" :: "r" (ctxt->ds));
116 asm volatile ("movw %0, %%es" :: "r" (ctxt->es));
117 asm volatile ("movw %0, %%fs" :: "r" (ctxt->fs));
118 load_gs_index(ctxt->gs);
119 asm volatile ("movw %0, %%ss" :: "r" (ctxt->ss));
120
121 wrmsrl(MSR_FS_BASE, ctxt->fs_base);
122 wrmsrl(MSR_GS_BASE, ctxt->gs_base);
123 wrmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 fix_processor_context();
126
127 do_fpu_end();
Shaohua Li3b520b22005-07-07 17:56:38 -0700128 mtrr_ap_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
131void restore_processor_state(void)
132{
133 __restore_processor_state(&saved_context);
134}
135
136void fix_processor_context(void)
137{
138 int cpu = smp_processor_id();
139 struct tss_struct *t = &per_cpu(init_tss, cpu);
140
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200141 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. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Ravikiran G Thirumalaic11efdf2006-01-11 22:43:57 +0100143 cpu_gdt(cpu)[GDT_ENTRY_TSS].type = 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 syscall_init(); /* This sets MSR_*STAR and related */
146 load_TR_desc(); /* This does ltr */
147 load_LDT(&current->active_mm->context); /* This does lldt */
148
149 /*
150 * Now maybe reload the debug registers
151 */
152 if (current->thread.debugreg7){
153 loaddebug(&current->thread, 0);
154 loaddebug(&current->thread, 1);
155 loaddebug(&current->thread, 2);
156 loaddebug(&current->thread, 3);
157 /* no 4 and 5 */
158 loaddebug(&current->thread, 6);
159 loaddebug(&current->thread, 7);
160 }
161
162}
163
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200164#ifdef CONFIG_HIBERNATION
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200165/* Defined in arch/x86_64/kernel/suspend_asm.S */
166extern int restore_image(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -0700168/*
169 * Address to jump to in the last phase of restore in order to get to the image
170 * kernel's text (this value is passed in the image header).
171 */
172unsigned long restore_jump_address;
173
Rafael J. Wysockic30bb682007-10-18 03:04:54 -0700174/*
175 * Value of the cr3 register from before the hibernation (this value is passed
176 * in the image header).
177 */
178unsigned long restore_cr3;
179
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200180pgd_t *temp_level4_pgt;
181
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -0700182void *relocated_restore_code;
183
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800184static int res_phys_pud_init(pud_t *pud, unsigned long address, unsigned long end)
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200185{
186 long i, j;
187
188 i = pud_index(address);
189 pud = pud + i;
190 for (; i < PTRS_PER_PUD; pud++, i++) {
191 unsigned long paddr;
192 pmd_t *pmd;
193
194 paddr = address + i*PUD_SIZE;
195 if (paddr >= end)
196 break;
197
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800198 pmd = (pmd_t *)get_safe_page(GFP_ATOMIC);
199 if (!pmd)
200 return -ENOMEM;
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200201 set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE));
202 for (j = 0; j < PTRS_PER_PMD; pmd++, j++, paddr += PMD_SIZE) {
203 unsigned long pe;
204
205 if (paddr >= end)
206 break;
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -0700207 pe = __PAGE_KERNEL_LARGE_EXEC | paddr;
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200208 pe &= __supported_pte_mask;
209 set_pmd(pmd, __pmd(pe));
210 }
211 }
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800212 return 0;
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200213}
214
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800215static int set_up_temporary_mappings(void)
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200216{
217 unsigned long start, end, next;
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800218 int error;
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200219
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800220 temp_level4_pgt = (pgd_t *)get_safe_page(GFP_ATOMIC);
221 if (!temp_level4_pgt)
222 return -ENOMEM;
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200223
Andrew Morton5867a782007-12-17 16:19:45 -0800224 /* It is safe to reuse the original kernel mapping */
225 set_pgd(temp_level4_pgt + pgd_index(__START_KERNEL_map),
226 init_level4_pgt[pgd_index(__START_KERNEL_map)]);
227
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200228 /* Set up the direct mapping from scratch */
229 start = (unsigned long)pfn_to_kaddr(0);
230 end = (unsigned long)pfn_to_kaddr(end_pfn);
231
232 for (; start < end; start = next) {
Andrew Morton5867a782007-12-17 16:19:45 -0800233 pud_t *pud = (pud_t *)get_safe_page(GFP_ATOMIC);
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800234 if (!pud)
235 return -ENOMEM;
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200236 next = start + PGDIR_SIZE;
237 if (next > end)
238 next = end;
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800239 if ((error = res_phys_pud_init(pud, __pa(start), __pa(next))))
240 return error;
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200241 set_pgd(temp_level4_pgt + pgd_index(start),
242 mk_kernel_pgd(__pa(pud)));
243 }
Andrew Morton5867a782007-12-17 16:19:45 -0800244 return 0;
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200245}
246
247int swsusp_arch_resume(void)
248{
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800249 int error;
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200250
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200251 /* We have got enough memory and from now on we cannot recover */
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800252 if ((error = set_up_temporary_mappings()))
253 return error;
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -0700254
255 relocated_restore_code = (void *)get_safe_page(GFP_ATOMIC);
256 if (!relocated_restore_code)
257 return -ENOMEM;
258 memcpy(relocated_restore_code, &core_restore_code,
259 &restore_registers - &core_restore_code);
260
Rafael J. Wysocki3dd08322005-10-09 21:19:40 +0200261 restore_image();
262 return 0;
263}
Vivek Goyal49c3df62007-05-02 19:27:07 +0200264
265/*
266 * pfn_is_nosave - check if given pfn is in the 'nosave' section
267 */
268
269int pfn_is_nosave(unsigned long pfn)
270{
271 unsigned long nosave_begin_pfn = __pa_symbol(&__nosave_begin) >> PAGE_SHIFT;
272 unsigned long nosave_end_pfn = PAGE_ALIGN(__pa_symbol(&__nosave_end)) >> PAGE_SHIFT;
273 return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);
274}
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -0700275
276struct restore_data_record {
277 unsigned long jump_address;
Rafael J. Wysockic30bb682007-10-18 03:04:54 -0700278 unsigned long cr3;
279 unsigned long magic;
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -0700280};
281
282#define RESTORE_MAGIC 0x0123456789ABCDEFUL
283
284/**
285 * arch_hibernation_header_save - populate the architecture specific part
286 * of a hibernation image header
287 * @addr: address to save the data at
288 */
289int arch_hibernation_header_save(void *addr, unsigned int max_size)
290{
291 struct restore_data_record *rdr = addr;
292
293 if (max_size < sizeof(struct restore_data_record))
294 return -EOVERFLOW;
295 rdr->jump_address = restore_jump_address;
Rafael J. Wysockic30bb682007-10-18 03:04:54 -0700296 rdr->cr3 = restore_cr3;
297 rdr->magic = RESTORE_MAGIC;
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -0700298 return 0;
299}
300
301/**
302 * arch_hibernation_header_restore - read the architecture specific data
303 * from the hibernation image header
304 * @addr: address to read the data from
305 */
306int arch_hibernation_header_restore(void *addr)
307{
308 struct restore_data_record *rdr = addr;
309
310 restore_jump_address = rdr->jump_address;
Rafael J. Wysockic30bb682007-10-18 03:04:54 -0700311 restore_cr3 = rdr->cr3;
312 return (rdr->magic == RESTORE_MAGIC) ? 0 : -EINVAL;
Rafael J. Wysockid158cbd2007-10-18 03:04:53 -0700313}
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200314#endif /* CONFIG_HIBERNATION */