sleep.S 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* linux/arch/arm/plat-s5p/sleep.S
  2. *
  3. * Copyright (c) 2011 Samsung Electronics Co., Ltd.
  4. * http://www.samsung.com
  5. *
  6. * Common S5P Sleep Code
  7. * Based on S3C64XX sleep code by:
  8. * Ben Dooks, (c) 2008 Simtec Electronics
  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,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. */
  24. #include <linux/linkage.h>
  25. #include <asm/asm-offsets.h>
  26. #include <asm/hardware/cache-l2x0.h>
  27. /*
  28. * The following code is located into the .data section. This is to
  29. * allow l2x0_regs_phys to be accessed with a relative load while we
  30. * can't rely on any MMU translation. We could have put l2x0_regs_phys
  31. * in the .text section as well, but some setups might insist on it to
  32. * be truly read-only. (Reference from: arch/arm/kernel/sleep.S)
  33. */
  34. .data
  35. .align
  36. /*
  37. * sleep magic, to allow the bootloader to check for an valid
  38. * image to resume to. Must be the first word before the
  39. * s3c_cpu_resume entry.
  40. */
  41. .word 0x2bedf00d
  42. /*
  43. * s3c_cpu_resume
  44. *
  45. * resume code entry for bootloader to call
  46. */
  47. ENTRY(s3c_cpu_resume)
  48. #ifdef CONFIG_CACHE_L2X0
  49. adr r0, l2x0_regs_phys
  50. ldr r0, [r0]
  51. ldr r1, [r0, #L2X0_R_PHY_BASE]
  52. ldr r2, [r1, #L2X0_CTRL]
  53. tst r2, #0x1
  54. bne resume_l2on
  55. ldr r2, [r0, #L2X0_R_AUX_CTRL]
  56. str r2, [r1, #L2X0_AUX_CTRL]
  57. ldr r2, [r0, #L2X0_R_TAG_LATENCY]
  58. str r2, [r1, #L2X0_TAG_LATENCY_CTRL]
  59. ldr r2, [r0, #L2X0_R_DATA_LATENCY]
  60. str r2, [r1, #L2X0_DATA_LATENCY_CTRL]
  61. ldr r2, [r0, #L2X0_R_PREFETCH_CTRL]
  62. str r2, [r1, #L2X0_PREFETCH_CTRL]
  63. ldr r2, [r0, #L2X0_R_PWR_CTRL]
  64. str r2, [r1, #L2X0_POWER_CTRL]
  65. mov r2, #1
  66. str r2, [r1, #L2X0_CTRL]
  67. resume_l2on:
  68. #endif
  69. b cpu_resume
  70. ENDPROC(s3c_cpu_resume)
  71. #ifdef CONFIG_CACHE_L2X0
  72. .globl l2x0_regs_phys
  73. l2x0_regs_phys:
  74. .long 0
  75. #endif