cpu.c 5.8 KB

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