sdram.S 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * KFR2R09 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(kfr2r09_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(kfr2r09_sdram_enter_end)
  30. .balign 4
  31. ENTRY(kfr2r09_sdram_leave_start)
  32. /* DBSC: put memory in auto-refresh mode */
  33. mov.l @(SH_SLEEP_MODE, r5), r0
  34. tst #SUSP_SH_RSTANDBY, r0
  35. bf resume_rstandby
  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, 0x40000301 /* DBPDCNT0 */
  47. ED 0xFD000020, 0x011B0002 /* DBCONF */
  48. ED 0xFD000030, 0x03060E02 /* DBTR0 */
  49. ED 0xFD000034, 0x01020102 /* DBTR1 */
  50. ED 0xFD000038, 0x01090406 /* DBTR2 */
  51. ED 0xFD000008, 0x00000004 /* DBKIND */
  52. ED 0xFD000040, 0x00000001 /* DBRFPDN0 */
  53. ED 0xFD000040, 0x00000000 /* DBRFPDN0 */
  54. ED 0xFD000018, 0x00000001 /* DBCKECNT */
  55. WAIT 1
  56. ED 0xFD000010, 0x00000001 /* DBEN */
  57. ED 0xFD000044, 0x000004AF /* DBRFPDN1 */
  58. ED 0xFD000048, 0x20CF0037 /* DBRFPDN2 */
  59. ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */
  60. ED 0xFD000108, 0x40000300 /* DBPDCNT0 */
  61. ED 0xFD000040, 0x00010000 /* DBRFPDN0 */
  62. rts
  63. nop
  64. ENTRY(kfr2r09_sdram_leave_end)