sdram.S 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. * Ecovec24 sdram self/auto-refresh setup code
  3. *
  4. * Copyright (C) 2009 Magnus Damm
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #include <linux/sys.h>
  11. #include <linux/errno.h>
  12. #include <linux/linkage.h>
  13. #include <asm/asm-offsets.h>
  14. #include <asm/suspend.h>
  15. #include <asm/romimage-macros.h>
  16. /* code to enter and leave self-refresh. must be self-contained.
  17. * this code will be copied to on-chip memory and executed from there.
  18. */
  19. .balign 4
  20. ENTRY(ecovec24_sdram_enter_start)
  21. /* DBSC: put memory in self-refresh mode */
  22. ED 0xFD000010, 0x00000000 /* DBEN */
  23. ED 0xFD000040, 0x00000000 /* DBRFPDN0 */
  24. ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */
  25. ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */
  26. ED 0xFD000040, 0x00000001 /* DBRFPDN0 */
  27. rts
  28. nop
  29. ENTRY(ecovec24_sdram_enter_end)
  30. .balign 4
  31. ENTRY(ecovec24_sdram_leave_start)
  32. mov.l @(SH_SLEEP_MODE, r5), r0
  33. tst #SUSP_SH_RSTANDBY, r0
  34. bf resume_rstandby
  35. /* DBSC: put memory in auto-refresh mode */
  36. ED 0xFD000040, 0x00000000 /* DBRFPDN0 */
  37. WAIT 1
  38. ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */
  39. ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */
  40. ED 0xFD000010, 0x00000001 /* DBEN */
  41. ED 0xFD000040, 0x00010000 /* DBRFPDN0 */
  42. rts
  43. nop
  44. resume_rstandby:
  45. /* DBSC: re-initialize and put in auto-refresh */
  46. ED 0xFD000108, 0x00000181 /* DBPDCNT0 */
  47. ED 0xFD000020, 0x015B0002 /* DBCONF */
  48. ED 0xFD000030, 0x03071502 /* DBTR0 */
  49. ED 0xFD000034, 0x02020102 /* DBTR1 */
  50. ED 0xFD000038, 0x01090405 /* DBTR2 */
  51. ED 0xFD00003C, 0x00000002 /* DBTR3 */
  52. ED 0xFD000008, 0x00000005 /* DBKIND */
  53. ED 0xFD000040, 0x00000001 /* DBRFPDN0 */
  54. ED 0xFD000040, 0x00000000 /* DBRFPDN0 */
  55. ED 0xFD000018, 0x00000001 /* DBCKECNT */
  56. mov #100,r0
  57. WAIT_400NS:
  58. dt r0
  59. bf WAIT_400NS
  60. ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */
  61. ED 0xFD000060, 0x00020000 /* DBMRCNT (EMR2) */
  62. ED 0xFD000060, 0x00030000 /* DBMRCNT (EMR3) */
  63. ED 0xFD000060, 0x00010004 /* DBMRCNT (EMR) */
  64. ED 0xFD000060, 0x00000532 /* DBMRCNT (MRS) */
  65. ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */
  66. ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */
  67. ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */
  68. ED 0xFD000060, 0x00000432 /* DBMRCNT (MRS) */
  69. ED 0xFD000060, 0x000103c0 /* DBMRCNT (EMR) */
  70. ED 0xFD000060, 0x00010040 /* DBMRCNT (EMR) */
  71. mov #100,r0
  72. WAIT_400NS_2:
  73. dt r0
  74. bf WAIT_400NS_2
  75. ED 0xFD000010, 0x00000001 /* DBEN */
  76. ED 0xFD000044, 0x0000050f /* DBRFPDN1 */
  77. ED 0xFD000048, 0x236800e6 /* DBRFPDN2 */
  78. mov.l DUMMY,r0
  79. mov.l @r0, r1 /* force single dummy read */
  80. ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */
  81. ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */
  82. ED 0xFD000108, 0x00000080 /* DBPDCNT0 */
  83. ED 0xFD000040, 0x00010000 /* DBRFPDN0 */
  84. rts
  85. nop
  86. .balign 4
  87. DUMMY: .long 0xac400000
  88. ENTRY(ecovec24_sdram_leave_end)