lowlevel_init.S 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. * File : application.c
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2006, RT-Thread Development Team
  5. *
  6. * The license and distribution terms for this file may be
  7. * found in the file LICENSE in this distribution or at
  8. * http://www.rt-thread.org/license/LICENSE
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2010-03-16 Gary Lee the first version
  13. */
  14. #define BWSCON 0x48000000
  15. /* BWSCON */
  16. #define DW8 (0x0)
  17. #define DW16 (0x1)
  18. #define DW32 (0x2)
  19. #define WAIT (0x1<<2)
  20. #define UBLB (0x1<<3)
  21. #define B1_BWSCON (DW16)
  22. #define B2_BWSCON (DW16)
  23. #define B3_BWSCON (DW16 + WAIT + UBLB)
  24. #define B4_BWSCON (DW16)
  25. #define B5_BWSCON (DW16)
  26. #define B6_BWSCON (DW32)
  27. #define B7_BWSCON (DW32)
  28. #define B0_Tacs 0x0
  29. #define B0_Tcos 0x0
  30. #define B0_Tacc 0x7
  31. #define B0_Tcoh 0x0
  32. #define B0_Tah 0x0
  33. #define B0_Tacp 0x0
  34. #define B0_PMC 0x0
  35. #define B1_Tacs 0x0
  36. #define B1_Tcos 0x0
  37. #define B1_Tacc 0x7
  38. #define B1_Tcoh 0x0
  39. #define B1_Tah 0x0
  40. #define B1_Tacp 0x0
  41. #define B1_PMC 0x0
  42. #define B2_Tacs 0x0
  43. #define B2_Tcos 0x0
  44. #define B2_Tacc 0x7
  45. #define B2_Tcoh 0x0
  46. #define B2_Tah 0x0
  47. #define B2_Tacp 0x0
  48. #define B2_PMC 0x0
  49. #define B3_Tacs 0xc
  50. #define B3_Tcos 0x7
  51. #define B3_Tacc 0xf
  52. #define B3_Tcoh 0x1
  53. #define B3_Tah 0x0
  54. #define B3_Tacp 0x0
  55. #define B3_PMC 0x0
  56. #define B4_Tacs 0x0
  57. #define B4_Tcos 0x0
  58. #define B4_Tacc 0x7
  59. #define B4_Tcoh 0x0
  60. #define B4_Tah 0x0
  61. #define B4_Tacp 0x0
  62. #define B4_PMC 0x0
  63. #define B5_Tacs 0xc
  64. #define B5_Tcos 0x7
  65. #define B5_Tacc 0xf
  66. #define B5_Tcoh 0x1
  67. #define B5_Tah 0x0
  68. #define B5_Tacp 0x0
  69. #define B5_PMC 0x0
  70. #define B6_MT 0x3 /* SDRAM */
  71. #define B6_Trcd 0x1
  72. #define B6_SCAN 0x1 /* 9bit */
  73. #define B7_MT 0x3 /* SDRAM */
  74. #define B7_Trcd 0x1 /* 3clk */
  75. #define B7_SCAN 0x1 /* 9bit */
  76. /* REFRESH parameter */
  77. #define REFEN 0x1 /* Refresh enable */
  78. #define TREFMD 0x0 /* CBR(CAS before RAS)/Auto refresh */
  79. #define Trc 0x3 /* 7clk */
  80. #define Tchr 0x2 /* 3clk */
  81. #define Trp 0x2 /* 4clk */
  82. #define REFCNT 1012
  83. /**************************************/
  84. .globl lowlevel_init
  85. lowlevel_init:
  86. /* memory control configuration */
  87. /* make r0 relative the current location so that it */
  88. /* reads SMRDATA out of FLASH rather than memory ! */
  89. ldr r0, =SMRDATA
  90. ldr r1, =lowlevel_init
  91. sub r0, r0, r1
  92. adr r3, lowlevel_init /* r3 <- current position of code */
  93. add r0, r0, r3
  94. ldr r1, =BWSCON /* Bus Width Status Controller */
  95. add r2, r0, #13*4
  96. 0:
  97. ldr r3, [r0], #4
  98. str r3, [r1], #4
  99. cmp r2, r0
  100. bne 0b
  101. /* everything is fine now */
  102. mov pc, lr
  103. .ltorg
  104. /* the literal pools origin */
  105. SMRDATA:
  106. .word (0+(B1_BWSCON<<4)+(B2_BWSCON<<8)+(B3_BWSCON<<12)+(B4_BWSCON<<16)+(B5_BWSCON<<20)+(B6_BWSCON<<24)+(B7_BWSCON<<28))
  107. .word ((B0_Tacs<<13)+(B0_Tcos<<11)+(B0_Tacc<<8)+(B0_Tcoh<<6)+(B0_Tah<<4)+(B0_Tacp<<2)+(B0_PMC))
  108. .word ((B1_Tacs<<13)+(B1_Tcos<<11)+(B1_Tacc<<8)+(B1_Tcoh<<6)+(B1_Tah<<4)+(B1_Tacp<<2)+(B1_PMC))
  109. .word ((B2_Tacs<<13)+(B2_Tcos<<11)+(B2_Tacc<<8)+(B2_Tcoh<<6)+(B2_Tah<<4)+(B2_Tacp<<2)+(B2_PMC))
  110. .word ((B3_Tacs<<13)+(B3_Tcos<<11)+(B3_Tacc<<8)+(B3_Tcoh<<6)+(B3_Tah<<4)+(B3_Tacp<<2)+(B3_PMC))
  111. .word ((B4_Tacs<<13)+(B4_Tcos<<11)+(B4_Tacc<<8)+(B4_Tcoh<<6)+(B4_Tah<<4)+(B4_Tacp<<2)+(B4_PMC))
  112. .word ((B5_Tacs<<13)+(B5_Tcos<<11)+(B5_Tacc<<8)+(B5_Tcoh<<6)+(B5_Tah<<4)+(B5_Tacp<<2)+(B5_PMC))
  113. .word ((B6_MT<<15)+(B6_Trcd<<2)+(B6_SCAN))
  114. .word ((B7_MT<<15)+(B7_Trcd<<2)+(B7_SCAN))
  115. .word ((REFEN<<23)+(TREFMD<<22)+(Trp<<20)+(Trc<<18)+(Tchr<<16)+REFCNT)
  116. .word 0xb2
  117. .word 0x30
  118. .word 0x30