suspend_64.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  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. #include <linux/smp.h>
  10. #include <linux/suspend.h>
  11. #include <asm/proto.h>
  12. #include <asm/page.h>
  13. #include <asm/pgtable.h>
  14. #include <asm/mtrr.h>
  15. /* References to section boundaries */
  16. extern const void __nosave_begin, __nosave_end;
  17. static void fix_processor_context(void);
  18. struct saved_context saved_context;
  19. /**
  20. * __save_processor_state - save CPU registers before creating a
  21. * hibernation image and before restoring the memory state from it
  22. * @ctxt - structure to store the registers contents in
  23. *
  24. * NOTE: If there is a CPU register the modification of which by the
  25. * boot kernel (ie. the kernel used for loading the hibernation image)
  26. * might affect the operations of the restored target kernel (ie. the one
  27. * saved in the hibernation image), then its contents must be saved by this
  28. * function. In other words, if kernel A is hibernated and different
  29. * kernel B is used for loading the hibernation image into memory, the
  30. * kernel A's __save_processor_state() function must save all registers
  31. * needed by kernel A, so that it can operate correctly after the resume
  32. * regardless of what kernel B does in the meantime.
  33. */
  34. static void __save_processor_state(struct saved_context *ctxt)
  35. {
  36. kernel_fpu_begin();
  37. /*
  38. * descriptor tables
  39. */
  40. store_gdt((struct desc_ptr *)&ctxt->gdt_limit);
  41. store_idt((struct desc_ptr *)&ctxt->idt_limit);
  42. store_tr(ctxt->tr);
  43. /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
  44. /*
  45. * segment registers
  46. */
  47. asm volatile ("movw %%ds, %0" : "=m" (ctxt->ds));
  48. asm volatile ("movw %%es, %0" : "=m" (ctxt->es));
  49. asm volatile ("movw %%fs, %0" : "=m" (ctxt->fs));
  50. asm volatile ("movw %%gs, %0" : "=m" (ctxt->gs));
  51. asm volatile ("movw %%ss, %0" : "=m" (ctxt->ss));
  52. rdmsrl(MSR_FS_BASE, ctxt->fs_base);
  53. rdmsrl(MSR_GS_BASE, ctxt->gs_base);
  54. rdmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
  55. mtrr_save_fixed_ranges(NULL);
  56. /*
  57. * control registers
  58. */
  59. rdmsrl(MSR_EFER, ctxt->efer);
  60. ctxt->cr0 = read_cr0();
  61. ctxt->cr2 = read_cr2();
  62. ctxt->cr3 = read_cr3();
  63. ctxt->cr4 = read_cr4();
  64. ctxt->cr8 = read_cr8();
  65. }
  66. void save_processor_state(void)
  67. {
  68. __save_processor_state(&saved_context);
  69. }
  70. static void do_fpu_end(void)
  71. {
  72. /*
  73. * Restore FPU regs if necessary
  74. */
  75. kernel_fpu_end();
  76. }
  77. /**
  78. * __restore_processor_state - restore the contents of CPU registers saved
  79. * by __save_processor_state()
  80. * @ctxt - structure to load the registers contents from
  81. */
  82. static void __restore_processor_state(struct saved_context *ctxt)
  83. {
  84. /*
  85. * control registers
  86. */
  87. wrmsrl(MSR_EFER, ctxt->efer);
  88. write_cr8(ctxt->cr8);
  89. write_cr4(ctxt->cr4);
  90. write_cr3(ctxt->cr3);
  91. write_cr2(ctxt->cr2);
  92. write_cr0(ctxt->cr0);
  93. /*
  94. * now restore the descriptor tables to their proper values
  95. * ltr is done i fix_processor_context().
  96. */
  97. load_gdt((const struct desc_ptr *)&ctxt->gdt_limit);
  98. load_idt((const struct desc_ptr *)&ctxt->idt_limit);
  99. /*
  100. * segment registers
  101. */
  102. asm volatile ("movw %0, %%ds" :: "r" (ctxt->ds));
  103. asm volatile ("movw %0, %%es" :: "r" (ctxt->es));
  104. asm volatile ("movw %0, %%fs" :: "r" (ctxt->fs));
  105. load_gs_index(ctxt->gs);
  106. asm volatile ("movw %0, %%ss" :: "r" (ctxt->ss));
  107. wrmsrl(MSR_FS_BASE, ctxt->fs_base);
  108. wrmsrl(MSR_GS_BASE, ctxt->gs_base);
  109. wrmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
  110. fix_processor_context();
  111. do_fpu_end();
  112. mtrr_ap_init();
  113. }
  114. void restore_processor_state(void)
  115. {
  116. __restore_processor_state(&saved_context);
  117. }
  118. static void fix_processor_context(void)
  119. {
  120. int cpu = smp_processor_id();
  121. struct tss_struct *t = &per_cpu(init_tss, cpu);
  122. 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. get_cpu_gdt_table(cpu)[GDT_ENTRY_TSS].type = 9;
  124. syscall_init(); /* This sets MSR_*STAR and related */
  125. load_TR_desc(); /* This does ltr */
  126. load_LDT(&current->active_mm->context); /* This does lldt */
  127. /*
  128. * Now maybe reload the debug registers
  129. */
  130. if (current->thread.debugreg7){
  131. loaddebug(&current->thread, 0);
  132. loaddebug(&current->thread, 1);
  133. loaddebug(&current->thread, 2);
  134. loaddebug(&current->thread, 3);
  135. /* no 4 and 5 */
  136. loaddebug(&current->thread, 6);
  137. loaddebug(&current->thread, 7);
  138. }
  139. }
  140. #ifdef CONFIG_HIBERNATION
  141. /* Defined in arch/x86_64/kernel/suspend_asm.S */
  142. extern int restore_image(void);
  143. /*
  144. * Address to jump to in the last phase of restore in order to get to the image
  145. * kernel's text (this value is passed in the image header).
  146. */
  147. unsigned long restore_jump_address;
  148. /*
  149. * Value of the cr3 register from before the hibernation (this value is passed
  150. * in the image header).
  151. */
  152. unsigned long restore_cr3;
  153. pgd_t *temp_level4_pgt;
  154. void *relocated_restore_code;
  155. static int res_phys_pud_init(pud_t *pud, unsigned long address, unsigned long end)
  156. {
  157. long i, j;
  158. i = pud_index(address);
  159. pud = pud + i;
  160. for (; i < PTRS_PER_PUD; pud++, i++) {
  161. unsigned long paddr;
  162. pmd_t *pmd;
  163. paddr = address + i*PUD_SIZE;
  164. if (paddr >= end)
  165. break;
  166. pmd = (pmd_t *)get_safe_page(GFP_ATOMIC);
  167. if (!pmd)
  168. return -ENOMEM;
  169. set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE));
  170. for (j = 0; j < PTRS_PER_PMD; pmd++, j++, paddr += PMD_SIZE) {
  171. unsigned long pe;
  172. if (paddr >= end)
  173. break;
  174. pe = __PAGE_KERNEL_LARGE_EXEC | paddr;
  175. pe &= __supported_pte_mask;
  176. set_pmd(pmd, __pmd(pe));
  177. }
  178. }
  179. return 0;
  180. }
  181. static int set_up_temporary_mappings(void)
  182. {
  183. unsigned long start, end, next;
  184. int error;
  185. temp_level4_pgt = (pgd_t *)get_safe_page(GFP_ATOMIC);
  186. if (!temp_level4_pgt)
  187. return -ENOMEM;
  188. /* It is safe to reuse the original kernel mapping */
  189. set_pgd(temp_level4_pgt + pgd_index(__START_KERNEL_map),
  190. init_level4_pgt[pgd_index(__START_KERNEL_map)]);
  191. /* Set up the direct mapping from scratch */
  192. start = (unsigned long)pfn_to_kaddr(0);
  193. end = (unsigned long)pfn_to_kaddr(end_pfn);
  194. for (; start < end; start = next) {
  195. pud_t *pud = (pud_t *)get_safe_page(GFP_ATOMIC);
  196. if (!pud)
  197. return -ENOMEM;
  198. next = start + PGDIR_SIZE;
  199. if (next > end)
  200. next = end;
  201. if ((error = res_phys_pud_init(pud, __pa(start), __pa(next))))
  202. return error;
  203. set_pgd(temp_level4_pgt + pgd_index(start),
  204. mk_kernel_pgd(__pa(pud)));
  205. }
  206. return 0;
  207. }
  208. int swsusp_arch_resume(void)
  209. {
  210. int error;
  211. /* We have got enough memory and from now on we cannot recover */
  212. if ((error = set_up_temporary_mappings()))
  213. return error;
  214. relocated_restore_code = (void *)get_safe_page(GFP_ATOMIC);
  215. if (!relocated_restore_code)
  216. return -ENOMEM;
  217. memcpy(relocated_restore_code, &core_restore_code,
  218. &restore_registers - &core_restore_code);
  219. restore_image();
  220. return 0;
  221. }
  222. /*
  223. * pfn_is_nosave - check if given pfn is in the 'nosave' section
  224. */
  225. int pfn_is_nosave(unsigned long pfn)
  226. {
  227. unsigned long nosave_begin_pfn = __pa_symbol(&__nosave_begin) >> PAGE_SHIFT;
  228. unsigned long nosave_end_pfn = PAGE_ALIGN(__pa_symbol(&__nosave_end)) >> PAGE_SHIFT;
  229. return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);
  230. }
  231. struct restore_data_record {
  232. unsigned long jump_address;
  233. unsigned long cr3;
  234. unsigned long magic;
  235. };
  236. #define RESTORE_MAGIC 0x0123456789ABCDEFUL
  237. /**
  238. * arch_hibernation_header_save - populate the architecture specific part
  239. * of a hibernation image header
  240. * @addr: address to save the data at
  241. */
  242. int arch_hibernation_header_save(void *addr, unsigned int max_size)
  243. {
  244. struct restore_data_record *rdr = addr;
  245. if (max_size < sizeof(struct restore_data_record))
  246. return -EOVERFLOW;
  247. rdr->jump_address = restore_jump_address;
  248. rdr->cr3 = restore_cr3;
  249. rdr->magic = RESTORE_MAGIC;
  250. return 0;
  251. }
  252. /**
  253. * arch_hibernation_header_restore - read the architecture specific data
  254. * from the hibernation image header
  255. * @addr: address to read the data from
  256. */
  257. int arch_hibernation_header_restore(void *addr)
  258. {
  259. struct restore_data_record *rdr = addr;
  260. restore_jump_address = rdr->jump_address;
  261. restore_cr3 = rdr->cr3;
  262. return (rdr->magic == RESTORE_MAGIC) ? 0 : -EINVAL;
  263. }
  264. #endif /* CONFIG_HIBERNATION */