start.S 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. /*
  2. * armboot - Startup Code for ARM920 CPU-core
  3. *
  4. * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
  5. * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
  6. * Copyright (c) 2002 Gary Jennejohn <gj@denx.de>
  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 <config.h>
  27. #include <version.h>
  28. /*
  29. *************************************************************************
  30. *
  31. * Jump vector table as in table 3.1 in [1]
  32. *
  33. *************************************************************************
  34. */
  35. .globl _start
  36. _start: b reset
  37. ldr pc, _undefined_instruction
  38. ldr pc, _software_interrupt
  39. ldr pc, _prefetch_abort
  40. ldr pc, _data_abort
  41. ldr pc, _not_used
  42. ldr pc, _irq
  43. ldr pc, _fiq
  44. _undefined_instruction: .word undefined_instruction
  45. _software_interrupt: .word software_interrupt
  46. _prefetch_abort: .word prefetch_abort
  47. _data_abort: .word data_abort
  48. _not_used: .word not_used
  49. _irq: .word irq
  50. _fiq: .word fiq
  51. .balignl 16,0xdeadbeef
  52. /*
  53. *************************************************************************
  54. *
  55. * Startup Code (reset vector)
  56. *
  57. * do important init only if we don't start from memory!
  58. * relocate armboot to ram
  59. * setup stack
  60. * jump to second stage
  61. *
  62. *************************************************************************
  63. */
  64. _TEXT_BASE:
  65. .word TEXT_BASE
  66. .globl _armboot_start
  67. _armboot_start:
  68. .word _start
  69. /*
  70. * These are defined in the board-specific linker script.
  71. */
  72. .globl _bss_start
  73. _bss_start:
  74. .word __bss_start
  75. .globl _bss_end
  76. _bss_end:
  77. .word _end
  78. #ifdef CONFIG_USE_IRQ
  79. /* IRQ stack memory (calculated at run-time) */
  80. .globl IRQ_STACK_START
  81. IRQ_STACK_START:
  82. .word 0x0badc0de
  83. /* IRQ stack memory (calculated at run-time) */
  84. .globl FIQ_STACK_START
  85. FIQ_STACK_START:
  86. .word 0x0badc0de
  87. #endif
  88. /*
  89. * the actual reset code
  90. */
  91. reset:
  92. /*
  93. * set the cpu to SVC32 mode
  94. */
  95. mrs r0,cpsr
  96. bic r0,r0,#0x1f
  97. orr r0,r0,#0xd3
  98. msr cpsr,r0
  99. /* turn off the watchdog */
  100. #if defined(CONFIG_S3C2400)
  101. # define pWTCON 0x15300000
  102. # define INTMSK 0x14400008 /* Interupt-Controller base addresses */
  103. # define CLKDIVN 0x14800014 /* clock divisor register */
  104. #elif defined(CONFIG_S3C2410)
  105. # define pWTCON 0x53000000
  106. # define INTMSK 0x4A000008 /* Interupt-Controller base addresses */
  107. # define INTSUBMSK 0x4A00001C
  108. # define CLKDIVN 0x4C000014 /* clock divisor register */
  109. #endif
  110. #if defined(CONFIG_S3C2400) || defined(CONFIG_S3C2410)
  111. ldr r0, =pWTCON
  112. mov r1, #0x0
  113. str r1, [r0]
  114. /*
  115. * mask all IRQs by setting all bits in the INTMR - default
  116. */
  117. mov r1, #0xffffffff
  118. ldr r0, =INTMSK
  119. str r1, [r0]
  120. # if defined(CONFIG_S3C2410)
  121. ldr r1, =0x3ff
  122. ldr r0, =INTSUBMSK
  123. str r1, [r0]
  124. # endif
  125. /* FCLK:HCLK:PCLK = 1:2:4 */
  126. /* default FCLK is 120 MHz ! */
  127. ldr r0, =CLKDIVN
  128. mov r1, #3
  129. str r1, [r0]
  130. #endif /* CONFIG_S3C2400 || CONFIG_S3C2410 */
  131. /*
  132. * we do sys-critical inits only at reboot,
  133. * not when booting from ram!
  134. */
  135. #ifndef CONFIG_SKIP_LOWLEVEL_INIT
  136. bl cpu_init_crit
  137. #endif
  138. #ifndef CONFIG_SKIP_RELOCATE_UBOOT
  139. relocate: /* relocate U-Boot to RAM */
  140. adr r0, _start /* r0 <- current position of code */
  141. ldr r1, _TEXT_BASE /* test if we run from flash or RAM */
  142. cmp r0, r1 /* don't reloc during debug */
  143. beq stack_setup
  144. ldr r2, _armboot_start
  145. ldr r3, _bss_start
  146. sub r2, r3, r2 /* r2 <- size of armboot */
  147. add r2, r0, r2 /* r2 <- source end address */
  148. copy_loop:
  149. ldmia r0!, {r3-r10} /* copy from source address [r0] */
  150. stmia r1!, {r3-r10} /* copy to target address [r1] */
  151. cmp r0, r2 /* until source end addreee [r2] */
  152. ble copy_loop
  153. #endif /* CONFIG_SKIP_RELOCATE_UBOOT */
  154. /* Set up the stack */
  155. stack_setup:
  156. ldr r0, _TEXT_BASE /* upper 128 KiB: relocated uboot */
  157. sub r0, r0, #CFG_MALLOC_LEN /* malloc area */
  158. sub r0, r0, #CFG_GBL_DATA_SIZE /* bdinfo */
  159. #ifdef CONFIG_USE_IRQ
  160. sub r0, r0, #(CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ)
  161. #endif
  162. sub sp, r0, #12 /* leave 3 words for abort-stack */
  163. clear_bss:
  164. ldr r0, _bss_start /* find start of bss segment */
  165. ldr r1, _bss_end /* stop here */
  166. mov r2, #0x00000000 /* clear */
  167. clbss_l:str r2, [r0] /* clear loop... */
  168. add r0, r0, #4
  169. cmp r0, r1
  170. ble clbss_l
  171. #if 0
  172. /* try doing this stuff after the relocation */
  173. ldr r0, =pWTCON
  174. mov r1, #0x0
  175. str r1, [r0]
  176. /*
  177. * mask all IRQs by setting all bits in the INTMR - default
  178. */
  179. mov r1, #0xffffffff
  180. ldr r0, =INTMR
  181. str r1, [r0]
  182. /* FCLK:HCLK:PCLK = 1:2:4 */
  183. /* default FCLK is 120 MHz ! */
  184. ldr r0, =CLKDIVN
  185. mov r1, #3
  186. str r1, [r0]
  187. /* END stuff after relocation */
  188. #endif
  189. ldr pc, _start_armboot
  190. _start_armboot: .word start_armboot
  191. /*
  192. *************************************************************************
  193. *
  194. * CPU_init_critical registers
  195. *
  196. * setup important registers
  197. * setup memory timing
  198. *
  199. *************************************************************************
  200. */
  201. cpu_init_crit:
  202. /*
  203. * flush v4 I/D caches
  204. */
  205. mov r0, #0
  206. mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
  207. mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */
  208. /*
  209. * disable MMU stuff and caches
  210. */
  211. mrc p15, 0, r0, c1, c0, 0
  212. bic r0, r0, #0x00002300 @ clear bits 13, 9:8 (--V- --RS)
  213. bic r0, r0, #0x00000087 @ clear bits 7, 2:0 (B--- -CAM)
  214. orr r0, r0, #0x00000002 @ set bit 2 (A) Align
  215. orr r0, r0, #0x00001000 @ set bit 12 (I) I-Cache
  216. mcr p15, 0, r0, c1, c0, 0
  217. /*
  218. * before relocating, we have to setup RAM timing
  219. * because memory timing is board-dependend, you will
  220. * find a lowlevel_init.S in your board directory.
  221. */
  222. mov ip, lr
  223. bl lowlevel_init
  224. mov lr, ip
  225. mov pc, lr
  226. /*
  227. *************************************************************************
  228. *
  229. * Interrupt handling
  230. *
  231. *************************************************************************
  232. */
  233. @
  234. @ IRQ stack frame.
  235. @
  236. #define S_FRAME_SIZE 72
  237. #define S_OLD_R0 68
  238. #define S_PSR 64
  239. #define S_PC 60
  240. #define S_LR 56
  241. #define S_SP 52
  242. #define S_IP 48
  243. #define S_FP 44
  244. #define S_R10 40
  245. #define S_R9 36
  246. #define S_R8 32
  247. #define S_R7 28
  248. #define S_R6 24
  249. #define S_R5 20
  250. #define S_R4 16
  251. #define S_R3 12
  252. #define S_R2 8
  253. #define S_R1 4
  254. #define S_R0 0
  255. #define MODE_SVC 0x13
  256. #define I_BIT 0x80
  257. /*
  258. * use bad_save_user_regs for abort/prefetch/undef/swi ...
  259. * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
  260. */
  261. .macro bad_save_user_regs
  262. sub sp, sp, #S_FRAME_SIZE
  263. stmia sp, {r0 - r12} @ Calling r0-r12
  264. ldr r2, _armboot_start
  265. sub r2, r2, #(CONFIG_STACKSIZE+CFG_MALLOC_LEN)
  266. sub r2, r2, #(CFG_GBL_DATA_SIZE+8) @ set base 2 words into abort stack
  267. ldmia r2, {r2 - r3} @ get pc, cpsr
  268. add r0, sp, #S_FRAME_SIZE @ restore sp_SVC
  269. add r5, sp, #S_SP
  270. mov r1, lr
  271. stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
  272. mov r0, sp
  273. .endm
  274. .macro irq_save_user_regs
  275. sub sp, sp, #S_FRAME_SIZE
  276. stmia sp, {r0 - r12} @ Calling r0-r12
  277. add r8, sp, #S_PC
  278. stmdb r8, {sp, lr}^ @ Calling SP, LR
  279. str lr, [r8, #0] @ Save calling PC
  280. mrs r6, spsr
  281. str r6, [r8, #4] @ Save CPSR
  282. str r0, [r8, #8] @ Save OLD_R0
  283. mov r0, sp
  284. .endm
  285. .macro irq_restore_user_regs
  286. ldmia sp, {r0 - lr}^ @ Calling r0 - lr
  287. mov r0, r0
  288. ldr lr, [sp, #S_PC] @ Get PC
  289. add sp, sp, #S_FRAME_SIZE
  290. subs pc, lr, #4 @ return & move spsr_svc into cpsr
  291. .endm
  292. .macro get_bad_stack
  293. ldr r13, _armboot_start @ setup our mode stack
  294. sub r13, r13, #(CONFIG_STACKSIZE+CFG_MALLOC_LEN)
  295. sub r13, r13, #(CFG_GBL_DATA_SIZE+8) @ reserved a couple spots in abort stack
  296. str lr, [r13] @ save caller lr / spsr
  297. mrs lr, spsr
  298. str lr, [r13, #4]
  299. mov r13, #MODE_SVC @ prepare SVC-Mode
  300. @ msr spsr_c, r13
  301. msr spsr, r13
  302. mov lr, pc
  303. movs pc, lr
  304. .endm
  305. .macro get_irq_stack @ setup IRQ stack
  306. ldr sp, IRQ_STACK_START
  307. .endm
  308. .macro get_fiq_stack @ setup FIQ stack
  309. ldr sp, FIQ_STACK_START
  310. .endm
  311. /*
  312. * exception handlers
  313. */
  314. .align 5
  315. undefined_instruction:
  316. get_bad_stack
  317. bad_save_user_regs
  318. bl do_undefined_instruction
  319. .align 5
  320. software_interrupt:
  321. get_bad_stack
  322. bad_save_user_regs
  323. bl do_software_interrupt
  324. .align 5
  325. prefetch_abort:
  326. get_bad_stack
  327. bad_save_user_regs
  328. bl do_prefetch_abort
  329. .align 5
  330. data_abort:
  331. get_bad_stack
  332. bad_save_user_regs
  333. bl do_data_abort
  334. .align 5
  335. not_used:
  336. get_bad_stack
  337. bad_save_user_regs
  338. bl do_not_used
  339. #ifdef CONFIG_USE_IRQ
  340. .align 5
  341. irq:
  342. get_irq_stack
  343. irq_save_user_regs
  344. bl do_irq
  345. irq_restore_user_regs
  346. .align 5
  347. fiq:
  348. get_fiq_stack
  349. /* someone ought to write a more effiction fiq_save_user_regs */
  350. irq_save_user_regs
  351. bl do_fiq
  352. irq_restore_user_regs
  353. #else
  354. .align 5
  355. irq:
  356. get_bad_stack
  357. bad_save_user_regs
  358. bl do_irq
  359. .align 5
  360. fiq:
  361. get_bad_stack
  362. bad_save_user_regs
  363. bl do_fiq
  364. #endif