hibernate_asm_64.S 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. * Hibernation support for x86-64
  3. *
  4. * Distribute under GPLv2.
  5. *
  6. * Copyright 2007 Rafael J. Wysocki <rjw@sisk.pl>
  7. * Copyright 2005 Andi Kleen <ak@suse.de>
  8. * Copyright 2004 Pavel Machek <pavel@suse.cz>
  9. *
  10. * swsusp_arch_resume must not use any stack or any nonlocal variables while
  11. * copying pages:
  12. *
  13. * Its rewriting one kernel image with another. What is stack in "old"
  14. * image could very well be data page in "new" image, and overwriting
  15. * your own stack under you is bad idea.
  16. */
  17. .text
  18. #include <linux/linkage.h>
  19. #include <asm/segment.h>
  20. #include <asm/page_types.h>
  21. #include <asm/asm-offsets.h>
  22. #include <asm/processor-flags.h>
  23. ENTRY(swsusp_arch_suspend)
  24. movq $saved_context, %rax
  25. movq %rsp, pt_regs_sp(%rax)
  26. movq %rbp, pt_regs_bp(%rax)
  27. movq %rsi, pt_regs_si(%rax)
  28. movq %rdi, pt_regs_di(%rax)
  29. movq %rbx, pt_regs_bx(%rax)
  30. movq %rcx, pt_regs_cx(%rax)
  31. movq %rdx, pt_regs_dx(%rax)
  32. movq %r8, pt_regs_r8(%rax)
  33. movq %r9, pt_regs_r9(%rax)
  34. movq %r10, pt_regs_r10(%rax)
  35. movq %r11, pt_regs_r11(%rax)
  36. movq %r12, pt_regs_r12(%rax)
  37. movq %r13, pt_regs_r13(%rax)
  38. movq %r14, pt_regs_r14(%rax)
  39. movq %r15, pt_regs_r15(%rax)
  40. pushfq
  41. popq pt_regs_flags(%rax)
  42. /* save the address of restore_registers */
  43. movq $restore_registers, %rax
  44. movq %rax, restore_jump_address(%rip)
  45. /* save cr3 */
  46. movq %cr3, %rax
  47. movq %rax, restore_cr3(%rip)
  48. call swsusp_save
  49. ret
  50. ENTRY(restore_image)
  51. /* switch to temporary page tables */
  52. movq $__PAGE_OFFSET, %rdx
  53. movq temp_level4_pgt(%rip), %rax
  54. subq %rdx, %rax
  55. movq %rax, %cr3
  56. /* Flush TLB */
  57. movq mmu_cr4_features(%rip), %rax
  58. movq %rax, %rdx
  59. andq $~(X86_CR4_PGE), %rdx
  60. movq %rdx, %cr4; # turn off PGE
  61. movq %cr3, %rcx; # flush TLB
  62. movq %rcx, %cr3;
  63. movq %rax, %cr4; # turn PGE back on
  64. /* prepare to jump to the image kernel */
  65. movq restore_jump_address(%rip), %rax
  66. movq restore_cr3(%rip), %rbx
  67. /* prepare to copy image data to their original locations */
  68. movq restore_pblist(%rip), %rdx
  69. movq relocated_restore_code(%rip), %rcx
  70. jmpq *%rcx
  71. /* code below has been relocated to a safe page */
  72. ENTRY(core_restore_code)
  73. loop:
  74. testq %rdx, %rdx
  75. jz done
  76. /* get addresses from the pbe and copy the page */
  77. movq pbe_address(%rdx), %rsi
  78. movq pbe_orig_address(%rdx), %rdi
  79. movq $(PAGE_SIZE >> 3), %rcx
  80. rep
  81. movsq
  82. /* progress to the next pbe */
  83. movq pbe_next(%rdx), %rdx
  84. jmp loop
  85. done:
  86. /* jump to the restore_registers address from the image header */
  87. jmpq *%rax
  88. /*
  89. * NOTE: This assumes that the boot kernel's text mapping covers the
  90. * image kernel's page containing restore_registers and the address of
  91. * this page is the same as in the image kernel's text mapping (it
  92. * should always be true, because the text mapping is linear, starting
  93. * from 0, and is supposed to cover the entire kernel text for every
  94. * kernel).
  95. *
  96. * code below belongs to the image kernel
  97. */
  98. ENTRY(restore_registers)
  99. /* go back to the original page tables */
  100. movq %rbx, %cr3
  101. /* Flush TLB, including "global" things (vmalloc) */
  102. movq mmu_cr4_features(%rip), %rax
  103. movq %rax, %rdx
  104. andq $~(X86_CR4_PGE), %rdx
  105. movq %rdx, %cr4; # turn off PGE
  106. movq %cr3, %rcx; # flush TLB
  107. movq %rcx, %cr3
  108. movq %rax, %cr4; # turn PGE back on
  109. /* We don't restore %rax, it must be 0 anyway */
  110. movq $saved_context, %rax
  111. movq pt_regs_sp(%rax), %rsp
  112. movq pt_regs_bp(%rax), %rbp
  113. movq pt_regs_si(%rax), %rsi
  114. movq pt_regs_di(%rax), %rdi
  115. movq pt_regs_bx(%rax), %rbx
  116. movq pt_regs_cx(%rax), %rcx
  117. movq pt_regs_dx(%rax), %rdx
  118. movq pt_regs_r8(%rax), %r8
  119. movq pt_regs_r9(%rax), %r9
  120. movq pt_regs_r10(%rax), %r10
  121. movq pt_regs_r11(%rax), %r11
  122. movq pt_regs_r12(%rax), %r12
  123. movq pt_regs_r13(%rax), %r13
  124. movq pt_regs_r14(%rax), %r14
  125. movq pt_regs_r15(%rax), %r15
  126. pushq pt_regs_flags(%rax)
  127. popfq
  128. xorq %rax, %rax
  129. /* tell the hibernation core that we've just restored the memory */
  130. movq %rax, in_suspend(%rip)
  131. ret