sleep.S 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /* linux/arch/arm/plat-s3c24xx/sleep.S
  2. *
  3. * Copyright (c) 2004 Simtec Electronics
  4. * Ben Dooks <ben@simtec.co.uk>
  5. *
  6. * S3C2410 Power Manager (Suspend-To-RAM) support
  7. *
  8. * Based on PXA/SA1100 sleep code by:
  9. * Nicolas Pitre, (c) 2002 Monta Vista Software Inc
  10. * Cliff Brake, (c) 2001
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  25. */
  26. #include <linux/linkage.h>
  27. #include <asm/assembler.h>
  28. #include <mach/hardware.h>
  29. #include <mach/map.h>
  30. #include <mach/regs-gpio.h>
  31. #include <mach/regs-clock.h>
  32. #include <mach/regs-mem.h>
  33. #include <plat/regs-serial.h>
  34. /* CONFIG_DEBUG_RESUME is dangerous if your bootloader does not
  35. * reset the UART configuration, only enable if you really need this!
  36. */
  37. //#define CONFIG_DEBUG_RESUME
  38. .text
  39. /* s3c_cpu_save
  40. *
  41. * entry:
  42. * r0 = save address (virtual addr of s3c_sleep_save_phys)
  43. */
  44. ENTRY(s3c_cpu_save)
  45. stmfd sp!, { r4 - r12, lr }
  46. @@ store co-processor registers
  47. mrc p15, 0, r4, c13, c0, 0 @ PID
  48. mrc p15, 0, r5, c3, c0, 0 @ Domain ID
  49. mrc p15, 0, r6, c2, c0, 0 @ translation table base address
  50. mrc p15, 0, r7, c1, c0, 0 @ control register
  51. stmia r0, { r4 - r13 }
  52. @@ write our state back to RAM
  53. bl s3c_pm_cb_flushcache
  54. @@ jump to final code to send system to sleep
  55. ldr r0, =pm_cpu_sleep
  56. @@ldr pc, [ r0 ]
  57. ldr r0, [ r0 ]
  58. mov pc, r0
  59. @@ return to the caller, after having the MMU
  60. @@ turned on, this restores the last bits from the
  61. @@ stack
  62. resume_with_mmu:
  63. ldmfd sp!, { r4 - r12, pc }
  64. .ltorg
  65. @@ the next bits sit in the .data segment, even though they
  66. @@ happen to be code... the s3c_sleep_save_phys needs to be
  67. @@ accessed by the resume code before it can restore the MMU.
  68. @@ This means that the variable has to be close enough for the
  69. @@ code to read it... since the .text segment needs to be RO,
  70. @@ the data segment can be the only place to put this code.
  71. .data
  72. .global s3c_sleep_save_phys
  73. s3c_sleep_save_phys:
  74. .word 0
  75. /* sleep magic, to allow the bootloader to check for an valid
  76. * image to resume to. Must be the first word before the
  77. * s3c_cpu_resume entry.
  78. */
  79. .word 0x2bedf00d
  80. /* s3c_cpu_resume
  81. *
  82. * resume code entry for bootloader to call
  83. *
  84. * we must put this code here in the data segment as we have no
  85. * other way of restoring the stack pointer after sleep, and we
  86. * must not write to the code segment (code is read-only)
  87. */
  88. ENTRY(s3c_cpu_resume)
  89. mov r0, #PSR_I_BIT | PSR_F_BIT | SVC_MODE
  90. msr cpsr_c, r0
  91. @@ load UART to allow us to print the two characters for
  92. @@ resume debug
  93. mov r2, #S3C24XX_PA_UART & 0xff000000
  94. orr r2, r2, #S3C24XX_PA_UART & 0xff000
  95. #if 0
  96. /* SMDK2440 LED set */
  97. mov r14, #S3C24XX_PA_GPIO
  98. ldr r12, [ r14, #0x54 ]
  99. bic r12, r12, #3<<4
  100. orr r12, r12, #1<<7
  101. str r12, [ r14, #0x54 ]
  102. #endif
  103. #ifdef CONFIG_DEBUG_RESUME
  104. mov r3, #'L'
  105. strb r3, [ r2, #S3C2410_UTXH ]
  106. 1001:
  107. ldrb r14, [ r3, #S3C2410_UTRSTAT ]
  108. tst r14, #S3C2410_UTRSTAT_TXE
  109. beq 1001b
  110. #endif /* CONFIG_DEBUG_RESUME */
  111. mov r1, #0
  112. mcr p15, 0, r1, c8, c7, 0 @@ invalidate I & D TLBs
  113. mcr p15, 0, r1, c7, c7, 0 @@ invalidate I & D caches
  114. ldr r0, s3c_sleep_save_phys @ address of restore block
  115. ldmia r0, { r4 - r13 }
  116. mcr p15, 0, r4, c13, c0, 0 @ PID
  117. mcr p15, 0, r5, c3, c0, 0 @ Domain ID
  118. mcr p15, 0, r6, c2, c0, 0 @ translation table base
  119. #ifdef CONFIG_DEBUG_RESUME
  120. mov r3, #'R'
  121. strb r3, [ r2, #S3C2410_UTXH ]
  122. #endif
  123. ldr r2, =resume_with_mmu
  124. mcr p15, 0, r7, c1, c0, 0 @ turn on MMU, etc
  125. nop @ second-to-last before mmu
  126. mov pc, r2 @ go back to virtual address
  127. .ltorg