start.S 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /*
  2. * (C) Copyright 2007 Michal Simek
  3. * (C) Copyright 2004 Atmark Techno, Inc.
  4. *
  5. * Michal SIMEK <monstr@monstr.eu>
  6. * Yasushi SHOJI <yashi@atmark-techno.com>
  7. *
  8. * See file CREDITS for list of people who contributed to this
  9. * project.
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. #include <asm-offsets.h>
  27. #include <config.h>
  28. .text
  29. .global _start
  30. _start:
  31. mts rmsr, r0 /* disable cache */
  32. addi r1, r0, CONFIG_SYS_INIT_SP_OFFSET
  33. addi r1, r1, -4 /* Decrement SP to top of memory */
  34. /* Find-out if u-boot is running on BIG/LITTLE endian platform
  35. * There are some steps which is necessary to keep in mind:
  36. * 1. Setup offset value to r6
  37. * 2. Store word offset value to address 0x0
  38. * 3. Load just byte from address 0x0
  39. * 4a) LITTLE endian - r10 contains 0x2 because it is the smallest
  40. * value that's why is on address 0x0
  41. * 4b) BIG endian - r10 contains 0x0 because 0x2 offset is on addr 0x3
  42. */
  43. addik r6, r0, 0x2 /* BIG/LITTLE endian offset */
  44. swi r6, r0, 0
  45. lbui r10, r0, 0
  46. swi r6, r0, 0x40
  47. swi r10, r0, 0x50
  48. /* add opcode instruction for 32bit jump - 2 instruction imm & brai*/
  49. addi r6, r0, 0xb0000000 /* hex b000 opcode imm */
  50. swi r6, r0, 0x0 /* reset address */
  51. swi r6, r0, 0x8 /* user vector exception */
  52. swi r6, r0, 0x10 /* interrupt */
  53. swi r6, r0, 0x20 /* hardware exception */
  54. addi r6, r0, 0xb8080000 /* hew b808 opcode brai*/
  55. swi r6, r0, 0x4 /* reset address */
  56. swi r6, r0, 0xC /* user vector exception */
  57. swi r6, r0, 0x14 /* interrupt */
  58. swi r6, r0, 0x24 /* hardware exception */
  59. #ifdef CONFIG_SYS_RESET_ADDRESS
  60. /* reset address */
  61. addik r6, r0, CONFIG_SYS_RESET_ADDRESS
  62. sw r6, r1, r0
  63. lhu r7, r1, r0
  64. shi r7, r0, 0x2
  65. shi r6, r0, 0x6
  66. /*
  67. * Copy U-Boot code to CONFIG_SYS_TEXT_BASE
  68. * solve problem with sbrk_base
  69. */
  70. #if (CONFIG_SYS_RESET_ADDRESS != CONFIG_SYS_TEXT_BASE)
  71. addi r4, r0, __end
  72. addi r5, r0, __text_start
  73. rsub r4, r5, r4 /* size = __end - __text_start */
  74. addi r6, r0, CONFIG_SYS_RESET_ADDRESS /* source address */
  75. addi r7, r0, 0 /* counter */
  76. 4:
  77. lw r8, r6, r7
  78. sw r8, r5, r7
  79. addi r7, r7, 0x4
  80. cmp r8, r4, r7
  81. blti r8, 4b
  82. #endif
  83. #endif
  84. #ifdef CONFIG_SYS_USR_EXCEP
  85. /* user_vector_exception */
  86. addik r6, r0, _exception_handler
  87. sw r6, r1, r0
  88. /*
  89. * BIG ENDIAN memory map for user exception
  90. * 0x8: 0xB000XXXX
  91. * 0xC: 0xB808XXXX
  92. *
  93. * then it is necessary to count address for storing the most significant
  94. * 16bits from _exception_handler address and copy it to
  95. * 0xa address. Big endian use offset in r10=0 that's why is it just
  96. * 0xa address. The same is done for the least significant 16 bits
  97. * for 0xe address.
  98. *
  99. * LITTLE ENDIAN memory map for user exception
  100. * 0x8: 0xXXXX00B0
  101. * 0xC: 0xXXXX08B8
  102. *
  103. * Offset is for little endian setup to 0x2. rsubi instruction decrease
  104. * address value to ensure that points to proper place which is
  105. * 0x8 for the most significant 16 bits and
  106. * 0xC for the least significant 16 bits
  107. */
  108. lhu r7, r1, r10
  109. rsubi r8, r10, 0xa
  110. sh r7, r0, r8
  111. rsubi r8, r10, 0xe
  112. sh r6, r0, r8
  113. #endif
  114. #ifdef CONFIG_SYS_INTC_0
  115. /* interrupt_handler */
  116. addik r6, r0, _interrupt_handler
  117. sw r6, r1, r0
  118. lhu r7, r1, r10
  119. rsubi r8, r10, 0x12
  120. sh r7, r0, r8
  121. rsubi r8, r10, 0x16
  122. sh r6, r0, r8
  123. #endif
  124. /* hardware exception */
  125. addik r6, r0, _hw_exception_handler
  126. sw r6, r1, r0
  127. lhu r7, r1, r10
  128. rsubi r8, r10, 0x22
  129. sh r7, r0, r8
  130. rsubi r8, r10, 0x26
  131. sh r6, r0, r8
  132. /* enable instruction and data cache */
  133. mfs r12, rmsr
  134. ori r12, r12, 0xa0
  135. mts rmsr, r12
  136. clear_bss:
  137. /* clear BSS segments */
  138. addi r5, r0, __bss_start
  139. addi r4, r0, __bss_end
  140. cmp r6, r5, r4
  141. beqi r6, 3f
  142. 2:
  143. swi r0, r5, 0 /* write zero to loc */
  144. addi r5, r5, 4 /* increment to next loc */
  145. cmp r6, r5, r4 /* check if we have reach the end */
  146. bnei r6, 2b
  147. 3: /* jumping to board_init */
  148. brai board_init
  149. 1: bri 1b
  150. /*
  151. * Read 16bit little endian
  152. */
  153. .text
  154. .global in16
  155. .ent in16
  156. .align 2
  157. in16: lhu r3, r0, r5
  158. bslli r4, r3, 8
  159. bsrli r3, r3, 8
  160. andi r4, r4, 0xffff
  161. or r3, r3, r4
  162. rtsd r15, 8
  163. sext16 r3, r3
  164. .end in16
  165. /*
  166. * Write 16bit little endian
  167. * first parameter(r5) - address, second(r6) - short value
  168. */
  169. .text
  170. .global out16
  171. .ent out16
  172. .align 2
  173. out16: bslli r3, r6, 8
  174. bsrli r6, r6, 8
  175. andi r3, r3, 0xffff
  176. or r3, r3, r6
  177. sh r3, r0, r5
  178. rtsd r15, 8
  179. or r0, r0, r0
  180. .end out16