lowlevel_init.S 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <config.h>
  25. #include <version.h>
  26. #include <asm/processor.h>
  27. #include <asm/macro.h>
  28. #ifdef CONFIG_CPU_SH7751
  29. #define BCR2_D_VALUE 0x2FFC /* Area 1-6 width: 32/32/32/32/32/16 */
  30. #define WCR1_D_VALUE 0x02770771 /* DMA:0 A6:2 A3:0 A0:1 Others:15 */
  31. #ifdef CONFIG_MARUBUN_PCCARD
  32. #define WCR2_D_VALUE 0xFFFE4FE7 /* A6:15 A6B:7 A5:15 A5B:7 A4:15
  33. A3:2 A2:15 A1:15 A0:6 A0B:7 */
  34. #else /* CONFIG_MARUBUN_PCCARD */
  35. #define WCR2_D_VALUE 0x7FFE4FE7 /* A6:3 A6B:7 A5:15 A5B:7 A4:15
  36. A3:2 A2:15 A1:15 A0:6 A0B:7 */
  37. #endif /* CONFIG_MARUBUN_PCCARD */
  38. #define WCR3_D_VALUE 0x01777771 /* A6: 0-1 A5: 1-3 A4: 1-3 A3: 1-3
  39. A2: 1-3 A1: 1-3 A0: 0-1 */
  40. #define RTCOR_D_VALUE 0xA50D /* Write code A5, data 0D (~15us?) */
  41. #define SDMR3_ADDRESS 0xFF940088 /* SDMR3 address on 32-bit bus */
  42. #define MCR_D1_VALUE 0x100901B4 /* SDRAM 32-bit, CAS/RAS Refresh, .. */
  43. #define MCR_D2_VALUE 0x500901B4 /* Same w/MRSET now 1 (mode reg cmd) */
  44. #else /* CONFIG_CPU_SH7751 */
  45. #define BCR2_D_VALUE 0x2E3C /* Area 1-6 width: 32/32/64/16/32/16 */
  46. #define WCR1_D_VALUE 0x02720777 /* DMA:0 A6:2 A4:2 A3:0 Others:15 */
  47. #define WCR2_D_VALUE 0xFFFE4FFF /* A6:15 A6B:7 A5:15 A5B:7 A4:15
  48. A3:2 A2:15 A1:15 A0:15 A0B:7 */
  49. #define WCR3_D_VALUE 0x01717771 /* A6: 0-1 A5: 1-3 A4: 0-1 A3: 1-3
  50. A2: 1-3 A1: 1-3 A0: 0-1 */
  51. #define RTCOR_D_VALUE 0xA510 /* Write code A5, data 10 (~15us?) */
  52. #define SDMR3_ADDRESS 0xFF940110 /* SDMR3 address on 64-bit bus */
  53. #define MCR_D1_VALUE 0x8801001C /* SDRAM 64-bit, CAS/RAS Refresh, .. */
  54. #define MCR_D2_VALUE 0xC801001C /* Same w/MRSET now 1 (mode reg cmd) */
  55. #endif /* CONFIG_CPU_SH7751 */
  56. .global lowlevel_init
  57. .text
  58. .align 2
  59. lowlevel_init:
  60. write32 CCR_A, CCR_D_DISABLE
  61. init_bsc:
  62. write16 FRQCR_A, FRQCR_D
  63. write32 BCR1_A, BCR1_D
  64. write16 BCR2_A, BCR2_D
  65. write32 WCR1_A, WCR1_D
  66. write32 WCR2_A, WCR2_D
  67. write32 WCR3_A, WCR3_D
  68. write32 MCR_A, MCR_D1
  69. /* Set SDRAM mode */
  70. write8 SDMR3_A, SDMR3_D
  71. ! Do you need PCMCIA setting?
  72. ! If so, please add the lines here...
  73. write16 RTCNT_A, RTCNT_D
  74. write16 RTCOR_A, RTCOR_D
  75. write16 RTCSR_A, RTCSR_D
  76. write16 RFCR_A, RFCR_D
  77. /* Wait DRAM refresh 30 times */
  78. mov #30, r3
  79. 1:
  80. mov.w @r1, r0
  81. extu.w r0, r2
  82. cmp/hi r3, r2
  83. bf 1b
  84. write32 MCR_A, MCR_D2
  85. /* Set SDRAM mode */
  86. write8 SDMR3_A, SDMR3_D
  87. rts
  88. nop
  89. .align 2
  90. CCR_A: .long CCR
  91. CCR_D_DISABLE: .long 0x0808
  92. FRQCR_A: .long FRQCR
  93. FRQCR_D:
  94. #ifdef CONFIG_CPU_TYPE_R
  95. .long 0x00000e1a /* 12:3:3 */
  96. #else /* CONFIG_CPU_TYPE_R */
  97. #ifdef CONFIG_GOOD_SESH4
  98. .long 0x00000e13 /* 6:2:1 */
  99. #else
  100. .long 0x00000e23 /* 6:1:1 */
  101. #endif
  102. #endif /* CONFIG_CPU_TYPE_R */
  103. BCR1_A: .long BCR1
  104. BCR1_D: .long 0x00000008 /* Area 3 SDRAM */
  105. BCR2_A: .long BCR2
  106. BCR2_D: .long BCR2_D_VALUE /* Bus width settings */
  107. WCR1_A: .long WCR1
  108. WCR1_D: .long WCR1_D_VALUE /* Inter-area or turnaround wait states */
  109. WCR2_A: .long WCR2
  110. WCR2_D: .long WCR2_D_VALUE /* Per-area access and burst wait states */
  111. WCR3_A: .long WCR3
  112. WCR3_D: .long WCR3_D_VALUE /* Address setup and data hold cycles */
  113. RTCSR_A: .long RTCSR
  114. RTCSR_D: .long 0xA518 /* RTCSR Write Code A5h Data 18h */
  115. RTCNT_A: .long RTCNT
  116. RTCNT_D: .long 0xA500 /* RTCNT Write Code A5h Data 00h */
  117. RTCOR_A: .long RTCOR
  118. RTCOR_D: .long RTCOR_D_VALUE /* Set refresh time (about 15us) */
  119. SDMR3_A: .long SDMR3_ADDRESS
  120. SDMR3_D: .long 0x00
  121. MCR_A: .long MCR
  122. MCR_D1: .long MCR_D1_VALUE
  123. MCR_D2: .long MCR_D2_VALUE
  124. RFCR_A: .long RFCR
  125. RFCR_D: .long 0xA400 /* RFCR Write Code A4h Data 00h */