sleep.S 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * arch/arm/mach-tegra/sleep.S
  3. *
  4. * Copyright (c) 2010-2011, NVIDIA Corporation.
  5. * Copyright (c) 2011, Google, Inc.
  6. *
  7. * Author: Colin Cross <ccross@android.com>
  8. * Gary King <gking@nvidia.com>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful, but WITHOUT
  16. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  17. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  18. * more details.
  19. *
  20. * You should have received a copy of the GNU General Public License along
  21. * with this program; if not, write to the Free Software Foundation, Inc.,
  22. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  23. */
  24. #include <linux/linkage.h>
  25. #include <asm/assembler.h>
  26. #include <asm/cache.h>
  27. #include <asm/cp15.h>
  28. #include <asm/hardware/cache-l2x0.h>
  29. #include "iomap.h"
  30. #include "flowctrl.h"
  31. #include "sleep.h"
  32. #define CLK_RESET_CCLK_BURST 0x20
  33. #define CLK_RESET_CCLK_DIVIDER 0x24
  34. #if defined(CONFIG_HOTPLUG_CPU) || defined(CONFIG_PM_SLEEP)
  35. /*
  36. * tegra_disable_clean_inv_dcache
  37. *
  38. * disable, clean & invalidate the D-cache
  39. *
  40. * Corrupted registers: r1-r3, r6, r8, r9-r11
  41. */
  42. ENTRY(tegra_disable_clean_inv_dcache)
  43. stmfd sp!, {r0, r4-r5, r7, r9-r11, lr}
  44. dmb @ ensure ordering
  45. /* Disable the D-cache */
  46. mrc p15, 0, r2, c1, c0, 0
  47. bic r2, r2, #CR_C
  48. mcr p15, 0, r2, c1, c0, 0
  49. isb
  50. /* Flush the D-cache */
  51. bl v7_flush_dcache_louis
  52. /* Trun off coherency */
  53. exit_smp r4, r5
  54. ldmfd sp!, {r0, r4-r5, r7, r9-r11, pc}
  55. ENDPROC(tegra_disable_clean_inv_dcache)
  56. #endif
  57. #ifdef CONFIG_PM_SLEEP
  58. /*
  59. * tegra_sleep_cpu_finish(unsigned long v2p)
  60. *
  61. * enters suspend in LP2 by turning off the mmu and jumping to
  62. * tegra?_tear_down_cpu
  63. */
  64. ENTRY(tegra_sleep_cpu_finish)
  65. /* Flush and disable the L1 data cache */
  66. bl tegra_disable_clean_inv_dcache
  67. mov32 r6, tegra_tear_down_cpu
  68. ldr r1, [r6]
  69. add r1, r1, r0
  70. mov32 r3, tegra_shut_off_mmu
  71. add r3, r3, r0
  72. mov r0, r1
  73. mov pc, r3
  74. ENDPROC(tegra_sleep_cpu_finish)
  75. /*
  76. * tegra_shut_off_mmu
  77. *
  78. * r0 = physical address to jump to with mmu off
  79. *
  80. * called with VA=PA mapping
  81. * turns off MMU, icache, dcache and branch prediction
  82. */
  83. .align L1_CACHE_SHIFT
  84. .pushsection .idmap.text, "ax"
  85. ENTRY(tegra_shut_off_mmu)
  86. mrc p15, 0, r3, c1, c0, 0
  87. movw r2, #CR_I | CR_Z | CR_C | CR_M
  88. bic r3, r3, r2
  89. dsb
  90. mcr p15, 0, r3, c1, c0, 0
  91. isb
  92. #ifdef CONFIG_CACHE_L2X0
  93. /* Disable L2 cache */
  94. mov32 r4, TEGRA_ARM_PERIF_BASE + 0x3000
  95. mov r5, #0
  96. str r5, [r4, #L2X0_CTRL]
  97. #endif
  98. mov pc, r0
  99. ENDPROC(tegra_shut_off_mmu)
  100. .popsection
  101. /*
  102. * tegra_switch_cpu_to_pllp
  103. *
  104. * In LP2 the normal cpu clock pllx will be turned off. Switch the CPU to pllp
  105. */
  106. ENTRY(tegra_switch_cpu_to_pllp)
  107. /* in LP2 idle (SDRAM active), set the CPU burst policy to PLLP */
  108. mov32 r5, TEGRA_CLK_RESET_BASE
  109. mov r0, #(2 << 28) @ burst policy = run mode
  110. orr r0, r0, #(4 << 4) @ use PLLP in run mode burst
  111. str r0, [r5, #CLK_RESET_CCLK_BURST]
  112. mov r0, #0
  113. str r0, [r5, #CLK_RESET_CCLK_DIVIDER]
  114. mov pc, lr
  115. ENDPROC(tegra_switch_cpu_to_pllp)
  116. #endif