sleep.S 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 "iomap.h"
  29. #include "flowctrl.h"
  30. #include "sleep.h"
  31. #ifdef CONFIG_PM_SLEEP
  32. /*
  33. * tegra_disable_clean_inv_dcache
  34. *
  35. * disable, clean & invalidate the D-cache
  36. *
  37. * Corrupted registers: r1-r3, r6, r8, r9-r11
  38. */
  39. ENTRY(tegra_disable_clean_inv_dcache)
  40. stmfd sp!, {r0, r4-r5, r7, r9-r11, lr}
  41. dmb @ ensure ordering
  42. /* Disable the D-cache */
  43. mrc p15, 0, r2, c1, c0, 0
  44. bic r2, r2, #CR_C
  45. mcr p15, 0, r2, c1, c0, 0
  46. isb
  47. /* Flush the D-cache */
  48. bl v7_flush_dcache_louis
  49. /* Trun off coherency */
  50. exit_smp r4, r5
  51. ldmfd sp!, {r0, r4-r5, r7, r9-r11, pc}
  52. ENDPROC(tegra_disable_clean_inv_dcache)
  53. /*
  54. * tegra_sleep_cpu_finish(unsigned long v2p)
  55. *
  56. * enters suspend in LP2 by turning off the mmu and jumping to
  57. * tegra?_tear_down_cpu
  58. */
  59. ENTRY(tegra_sleep_cpu_finish)
  60. /* Flush and disable the L1 data cache */
  61. bl tegra_disable_clean_inv_dcache
  62. mov32 r6, tegra_tear_down_cpu
  63. ldr r1, [r6]
  64. add r1, r1, r0
  65. mov32 r3, tegra_shut_off_mmu
  66. add r3, r3, r0
  67. mov r0, r1
  68. mov pc, r3
  69. ENDPROC(tegra_sleep_cpu_finish)
  70. /*
  71. * tegra_shut_off_mmu
  72. *
  73. * r0 = physical address to jump to with mmu off
  74. *
  75. * called with VA=PA mapping
  76. * turns off MMU, icache, dcache and branch prediction
  77. */
  78. .align L1_CACHE_SHIFT
  79. .pushsection .idmap.text, "ax"
  80. ENTRY(tegra_shut_off_mmu)
  81. mrc p15, 0, r3, c1, c0, 0
  82. movw r2, #CR_I | CR_Z | CR_C | CR_M
  83. bic r3, r3, r2
  84. dsb
  85. mcr p15, 0, r3, c1, c0, 0
  86. isb
  87. mov pc, r0
  88. ENDPROC(tegra_shut_off_mmu)
  89. .popsection
  90. #endif