lowlevel_init.S 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. modified from SH-IPL+g
  3. Renesaso SuperH / Solution Enginge MS775xSE01 BSC setting.
  4. Support CPU : SH7750/SH7750S/SH7750R/SH7751/SH7751R
  5. Coyright (c) 2007 Nobuhiro Iwamatsu <iwmatsu@nigauri.org>
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #include <config.h>
  9. #include <asm/processor.h>
  10. #include <asm/macro.h>
  11. #ifdef CONFIG_CPU_SH7751
  12. #define BCR2_D_VALUE 0x2FFC /* Area 1-6 width: 32/32/32/32/32/16 */
  13. #define WCR1_D_VALUE 0x02770771 /* DMA:0 A6:2 A3:0 A0:1 Others:15 */
  14. #ifdef CONFIG_MARUBUN_PCCARD
  15. #define WCR2_D_VALUE 0xFFFE4FE7 /* A6:15 A6B:7 A5:15 A5B:7 A4:15
  16. A3:2 A2:15 A1:15 A0:6 A0B:7 */
  17. #else /* CONFIG_MARUBUN_PCCARD */
  18. #define WCR2_D_VALUE 0x7FFE4FE7 /* A6:3 A6B:7 A5:15 A5B:7 A4:15
  19. A3:2 A2:15 A1:15 A0:6 A0B:7 */
  20. #endif /* CONFIG_MARUBUN_PCCARD */
  21. #define WCR3_D_VALUE 0x01777771 /* A6: 0-1 A5: 1-3 A4: 1-3 A3: 1-3
  22. A2: 1-3 A1: 1-3 A0: 0-1 */
  23. #define RTCOR_D_VALUE 0xA50D /* Write code A5, data 0D (~15us?) */
  24. #define SDMR3_ADDRESS 0xFF940088 /* SDMR3 address on 32-bit bus */
  25. #define MCR_D1_VALUE 0x100901B4 /* SDRAM 32-bit, CAS/RAS Refresh, .. */
  26. #define MCR_D2_VALUE 0x500901B4 /* Same w/MRSET now 1 (mode reg cmd) */
  27. #else /* CONFIG_CPU_SH7751 */
  28. #define BCR2_D_VALUE 0x2E3C /* Area 1-6 width: 32/32/64/16/32/16 */
  29. #define WCR1_D_VALUE 0x02720777 /* DMA:0 A6:2 A4:2 A3:0 Others:15 */
  30. #define WCR2_D_VALUE 0xFFFE4FFF /* A6:15 A6B:7 A5:15 A5B:7 A4:15
  31. A3:2 A2:15 A1:15 A0:15 A0B:7 */
  32. #define WCR3_D_VALUE 0x01717771 /* A6: 0-1 A5: 1-3 A4: 0-1 A3: 1-3
  33. A2: 1-3 A1: 1-3 A0: 0-1 */
  34. #define RTCOR_D_VALUE 0xA510 /* Write code A5, data 10 (~15us?) */
  35. #define SDMR3_ADDRESS 0xFF940110 /* SDMR3 address on 64-bit bus */
  36. #define MCR_D1_VALUE 0x8801001C /* SDRAM 64-bit, CAS/RAS Refresh, .. */
  37. #define MCR_D2_VALUE 0xC801001C /* Same w/MRSET now 1 (mode reg cmd) */
  38. #endif /* CONFIG_CPU_SH7751 */
  39. .global lowlevel_init
  40. .text
  41. .align 2
  42. lowlevel_init:
  43. write32 CCR_A, CCR_D_DISABLE
  44. init_bsc:
  45. write16 FRQCR_A, FRQCR_D
  46. write32 BCR1_A, BCR1_D
  47. write16 BCR2_A, BCR2_D
  48. write32 WCR1_A, WCR1_D
  49. write32 WCR2_A, WCR2_D
  50. write32 WCR3_A, WCR3_D
  51. write32 MCR_A, MCR_D1
  52. /* Set SDRAM mode */
  53. write8 SDMR3_A, SDMR3_D
  54. ! Do you need PCMCIA setting?
  55. ! If so, please add the lines here...
  56. write16 RTCNT_A, RTCNT_D
  57. write16 RTCOR_A, RTCOR_D
  58. write16 RTCSR_A, RTCSR_D
  59. write16 RFCR_A, RFCR_D
  60. /* Wait DRAM refresh 30 times */
  61. mov #30, r3
  62. 1:
  63. mov.w @r1, r0
  64. extu.w r0, r2
  65. cmp/hi r3, r2
  66. bf 1b
  67. write32 MCR_A, MCR_D2
  68. /* Set SDRAM mode */
  69. write8 SDMR3_A, SDMR3_D
  70. rts
  71. nop
  72. .align 2
  73. CCR_A: .long CCR
  74. CCR_D_DISABLE: .long 0x0808
  75. FRQCR_A: .long FRQCR
  76. FRQCR_D:
  77. #ifdef CONFIG_CPU_TYPE_R
  78. .word 0x0e1a /* 12:3:3 */
  79. #else /* CONFIG_CPU_TYPE_R */
  80. #ifdef CONFIG_GOOD_SESH4
  81. .word 0x00e13 /* 6:2:1 */
  82. #else
  83. .word 0x00e23 /* 6:1:1 */
  84. #endif
  85. .align 2
  86. #endif /* CONFIG_CPU_TYPE_R */
  87. BCR1_A: .long BCR1
  88. BCR1_D: .long 0x00000008 /* Area 3 SDRAM */
  89. BCR2_A: .long BCR2
  90. BCR2_D: .long BCR2_D_VALUE /* Bus width settings */
  91. WCR1_A: .long WCR1
  92. WCR1_D: .long WCR1_D_VALUE /* Inter-area or turnaround wait states */
  93. WCR2_A: .long WCR2
  94. WCR2_D: .long WCR2_D_VALUE /* Per-area access and burst wait states */
  95. WCR3_A: .long WCR3
  96. WCR3_D: .long WCR3_D_VALUE /* Address setup and data hold cycles */
  97. RTCSR_A: .long RTCSR
  98. RTCSR_D: .word 0xA518 /* RTCSR Write Code A5h Data 18h */
  99. .align 2
  100. RTCNT_A: .long RTCNT
  101. RTCNT_D: .word 0xA500 /* RTCNT Write Code A5h Data 00h */
  102. .align 2
  103. RTCOR_A: .long RTCOR
  104. RTCOR_D: .word RTCOR_D_VALUE /* Set refresh time (about 15us) */
  105. .align 2
  106. SDMR3_A: .long SDMR3_ADDRESS
  107. SDMR3_D: .long 0x00
  108. MCR_A: .long MCR
  109. MCR_D1: .long MCR_D1_VALUE
  110. MCR_D2: .long MCR_D2_VALUE
  111. RFCR_A: .long RFCR
  112. RFCR_D: .word 0xA400 /* RFCR Write Code A4h Data 00h */
  113. .align 2