x86: unify power/cpu_(32|64) regarding saving processor state
[profile/ivi/kernel-adaptation-intel-automotive.git] / arch / x86 / power / cpu_32.c
1 /*
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
10 #include <linux/suspend.h>
11 #include <linux/smp.h>
12
13 #include <asm/pgtable.h>
14 #include <asm/proto.h>
15 #include <asm/mtrr.h>
16 #include <asm/page.h>
17 #include <asm/mce.h>
18 #include <asm/xcr.h>
19 #include <asm/suspend.h>
20
21 #ifdef CONFIG_X86_32
22 static struct saved_context saved_context;
23
24 unsigned long saved_context_ebx;
25 unsigned long saved_context_esp, saved_context_ebp;
26 unsigned long saved_context_esi, saved_context_edi;
27 unsigned long saved_context_eflags;
28 #else
29 /* CONFIG_X86_64 */
30 static void fix_processor_context(void);
31
32 struct saved_context saved_context;
33 #endif
34
35 /**
36  *      __save_processor_state - save CPU registers before creating a
37  *              hibernation image and before restoring the memory state from it
38  *      @ctxt - structure to store the registers contents in
39  *
40  *      NOTE: If there is a CPU register the modification of which by the
41  *      boot kernel (ie. the kernel used for loading the hibernation image)
42  *      might affect the operations of the restored target kernel (ie. the one
43  *      saved in the hibernation image), then its contents must be saved by this
44  *      function.  In other words, if kernel A is hibernated and different
45  *      kernel B is used for loading the hibernation image into memory, the
46  *      kernel A's __save_processor_state() function must save all registers
47  *      needed by kernel A, so that it can operate correctly after the resume
48  *      regardless of what kernel B does in the meantime.
49  */
50 static void __save_processor_state(struct saved_context *ctxt)
51 {
52 #ifdef CONFIG_X86_32
53         mtrr_save_fixed_ranges(NULL);
54 #endif
55         kernel_fpu_begin();
56
57         /*
58          * descriptor tables
59          */
60 #ifdef CONFIG_X86_32
61         store_gdt(&ctxt->gdt);
62         store_idt(&ctxt->idt);
63 #else
64 /* CONFIG_X86_64 */
65         store_gdt((struct desc_ptr *)&ctxt->gdt_limit);
66         store_idt((struct desc_ptr *)&ctxt->idt_limit);
67 #endif
68         store_tr(ctxt->tr);
69
70         /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
71         /*
72          * segment registers
73          */
74 #ifdef CONFIG_X86_32
75         savesegment(es, ctxt->es);
76         savesegment(fs, ctxt->fs);
77         savesegment(gs, ctxt->gs);
78         savesegment(ss, ctxt->ss);
79 #else
80 /* CONFIG_X86_64 */
81         asm volatile ("movw %%ds, %0" : "=m" (ctxt->ds));
82         asm volatile ("movw %%es, %0" : "=m" (ctxt->es));
83         asm volatile ("movw %%fs, %0" : "=m" (ctxt->fs));
84         asm volatile ("movw %%gs, %0" : "=m" (ctxt->gs));
85         asm volatile ("movw %%ss, %0" : "=m" (ctxt->ss));
86
87         rdmsrl(MSR_FS_BASE, ctxt->fs_base);
88         rdmsrl(MSR_GS_BASE, ctxt->gs_base);
89         rdmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
90         mtrr_save_fixed_ranges(NULL);
91
92         rdmsrl(MSR_EFER, ctxt->efer);
93 #endif
94
95         /*
96          * control registers
97          */
98         ctxt->cr0 = read_cr0();
99         ctxt->cr2 = read_cr2();
100         ctxt->cr3 = read_cr3();
101 #ifdef CONFIG_X86_32
102         ctxt->cr4 = read_cr4_safe();
103 #else
104 /* CONFIG_X86_64 */
105         ctxt->cr4 = read_cr4();
106         ctxt->cr8 = read_cr8();
107 #endif
108 }
109
110 /* Needed by apm.c */
111 void save_processor_state(void)
112 {
113         __save_processor_state(&saved_context);
114 }
115 #ifdef CONFIG_X86_32
116 EXPORT_SYMBOL(save_processor_state);
117 #endif
118
119 static void do_fpu_end(void)
120 {
121         /*
122          * Restore FPU regs if necessary.
123          */
124         kernel_fpu_end();
125 }
126
127 static void fix_processor_context(void)
128 {
129         int cpu = smp_processor_id();
130         struct tss_struct *t = &per_cpu(init_tss, cpu);
131
132         set_tss_desc(cpu, t);   /*
133                                  * This just modifies memory; should not be
134                                  * necessary. But... This is necessary, because
135                                  * 386 hardware has concept of busy TSS or some
136                                  * similar stupidity.
137                                  */
138
139         load_TR_desc();                         /* This does ltr */
140         load_LDT(&current->active_mm->context); /* This does lldt */
141
142         /*
143          * Now maybe reload the debug registers
144          */
145         if (current->thread.debugreg7) {
146                 set_debugreg(current->thread.debugreg0, 0);
147                 set_debugreg(current->thread.debugreg1, 1);
148                 set_debugreg(current->thread.debugreg2, 2);
149                 set_debugreg(current->thread.debugreg3, 3);
150                 /* no 4 and 5 */
151                 set_debugreg(current->thread.debugreg6, 6);
152                 set_debugreg(current->thread.debugreg7, 7);
153         }
154
155 }
156
157 static void __restore_processor_state(struct saved_context *ctxt)
158 {
159         /*
160          * control registers
161          */
162         /* cr4 was introduced in the Pentium CPU */
163         if (ctxt->cr4)
164                 write_cr4(ctxt->cr4);
165         write_cr3(ctxt->cr3);
166         write_cr2(ctxt->cr2);
167         write_cr0(ctxt->cr0);
168
169         /*
170          * now restore the descriptor tables to their proper values
171          * ltr is done i fix_processor_context().
172          */
173         load_gdt(&ctxt->gdt);
174         load_idt(&ctxt->idt);
175
176         /*
177          * segment registers
178          */
179         loadsegment(es, ctxt->es);
180         loadsegment(fs, ctxt->fs);
181         loadsegment(gs, ctxt->gs);
182         loadsegment(ss, ctxt->ss);
183
184         /*
185          * sysenter MSRs
186          */
187         if (boot_cpu_has(X86_FEATURE_SEP))
188                 enable_sep_cpu();
189
190         /*
191          * restore XCR0 for xsave capable cpu's.
192          */
193         if (cpu_has_xsave)
194                 xsetbv(XCR_XFEATURE_ENABLED_MASK, pcntxt_mask);
195
196         fix_processor_context();
197         do_fpu_end();
198         mtrr_ap_init();
199         mcheck_init(&boot_cpu_data);
200 }
201
202 /* Needed by apm.c */
203 void restore_processor_state(void)
204 {
205         __restore_processor_state(&saved_context);
206 }
207 EXPORT_SYMBOL(restore_processor_state);