sleep.S 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #include <linux/linkage.h>
  2. #include <linux/threads.h>
  3. #include <asm/asm-offsets.h>
  4. #include <asm/assembler.h>
  5. #include <asm/glue-cache.h>
  6. #include <asm/glue-proc.h>
  7. .text
  8. /*
  9. * Save CPU state for a suspend. This saves the CPU general purpose
  10. * registers, and allocates space on the kernel stack to save the CPU
  11. * specific registers and some other data for resume.
  12. * r0 = suspend function arg0
  13. * r1 = suspend function
  14. */
  15. ENTRY(__cpu_suspend)
  16. stmfd sp!, {r4 - r11, lr}
  17. #ifdef MULTI_CPU
  18. ldr r10, =processor
  19. ldr r4, [r10, #CPU_SLEEP_SIZE] @ size of CPU sleep state
  20. #else
  21. ldr r4, =cpu_suspend_size
  22. #endif
  23. mov r5, sp @ current virtual SP
  24. add r4, r4, #12 @ Space for pgd, virt sp, phys resume fn
  25. sub sp, sp, r4 @ allocate CPU state on stack
  26. stmfd sp!, {r0, r1} @ save suspend func arg and pointer
  27. add r0, sp, #8 @ save pointer to save block
  28. mov r1, r4 @ size of save block
  29. mov r2, r5 @ virtual SP
  30. ldr r3, =sleep_save_sp
  31. #ifdef CONFIG_SMP
  32. ALT_SMP(mrc p15, 0, lr, c0, c0, 5)
  33. ALT_UP(mov lr, #0)
  34. and lr, lr, #15
  35. add r3, r3, lr, lsl #2
  36. #endif
  37. bl __cpu_suspend_save
  38. adr lr, BSYM(cpu_suspend_abort)
  39. ldmfd sp!, {r0, pc} @ call suspend fn
  40. ENDPROC(__cpu_suspend)
  41. .ltorg
  42. cpu_suspend_abort:
  43. ldmia sp!, {r1 - r3} @ pop phys pgd, virt SP, phys resume fn
  44. teq r0, #0
  45. moveq r0, #1 @ force non-zero value
  46. mov sp, r2
  47. ldmfd sp!, {r4 - r11, pc}
  48. ENDPROC(cpu_suspend_abort)
  49. /*
  50. * r0 = control register value
  51. */
  52. .align 5
  53. .pushsection .idmap.text,"ax"
  54. ENTRY(cpu_resume_mmu)
  55. ldr r3, =cpu_resume_after_mmu
  56. instr_sync
  57. mcr p15, 0, r0, c1, c0, 0 @ turn on MMU, I-cache, etc
  58. mrc p15, 0, r0, c0, c0, 0 @ read id reg
  59. instr_sync
  60. mov r0, r0
  61. mov r0, r0
  62. mov pc, r3 @ jump to virtual address
  63. ENDPROC(cpu_resume_mmu)
  64. .popsection
  65. cpu_resume_after_mmu:
  66. bl cpu_init @ restore the und/abt/irq banked regs
  67. mov r0, #0 @ return zero on success
  68. ldmfd sp!, {r4 - r11, pc}
  69. ENDPROC(cpu_resume_after_mmu)
  70. /*
  71. * Note: Yes, part of the following code is located into the .data section.
  72. * This is to allow sleep_save_sp to be accessed with a relative load
  73. * while we can't rely on any MMU translation. We could have put
  74. * sleep_save_sp in the .text section as well, but some setups might
  75. * insist on it to be truly read-only.
  76. */
  77. .data
  78. .align
  79. ENTRY(cpu_resume)
  80. #ifdef CONFIG_SMP
  81. adr r0, sleep_save_sp
  82. ALT_SMP(mrc p15, 0, r1, c0, c0, 5)
  83. ALT_UP(mov r1, #0)
  84. and r1, r1, #15
  85. ldr r0, [r0, r1, lsl #2] @ stack phys addr
  86. #else
  87. ldr r0, sleep_save_sp @ stack phys addr
  88. #endif
  89. setmode PSR_I_BIT | PSR_F_BIT | SVC_MODE, r1 @ set SVC, irqs off
  90. @ load phys pgd, stack, resume fn
  91. ARM( ldmia r0!, {r1, sp, pc} )
  92. THUMB( ldmia r0!, {r1, r2, r3} )
  93. THUMB( mov sp, r2 )
  94. THUMB( bx r3 )
  95. ENDPROC(cpu_resume)
  96. sleep_save_sp:
  97. .rept CONFIG_NR_CPUS
  98. .long 0 @ preserve stack phys ptr here
  99. .endr