wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * armboot - Startup Code for ARM926EJS CPU-core |
| 3 | * |
| 4 | * Copyright (c) 2003 Texas Instruments |
| 5 | * |
wdenk | e3a0680 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 6 | * ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------ |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 7 | * |
| 8 | * Copyright (c) 2001 Marius Gröger <mag@sysgo.de> |
| 9 | * Copyright (c) 2002 Alex Züpke <azu@sysgo.de> |
Detlev Zundel | f1b3f2b | 2009-05-13 10:54:10 +0200 | [diff] [blame] | 10 | * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de> |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 11 | * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com> |
| 12 | * Copyright (c) 2003 Kshitij <kshitij@ti.com> |
| 13 | * |
| 14 | * See file CREDITS for list of people who contributed to this |
| 15 | * project. |
| 16 | * |
| 17 | * This program is free software; you can redistribute it and/or |
| 18 | * modify it under the terms of the GNU General Public License as |
| 19 | * published by the Free Software Foundation; either version 2 of |
| 20 | * the License, or (at your option) any later version. |
| 21 | * |
| 22 | * This program is distributed in the hope that it will be useful, |
| 23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 25 | * GNU General Public License for more details. |
| 26 | * |
| 27 | * You should have received a copy of the GNU General Public License |
| 28 | * along with this program; if not, write to the Free Software |
| 29 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 30 | * MA 02111-1307 USA |
| 31 | */ |
| 32 | |
| 33 | |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 34 | #include <config.h> |
Wolfgang Denk | 66e8d44 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 35 | #include <common.h> |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 36 | #include <version.h> |
| 37 | |
| 38 | #if defined(CONFIG_OMAP1610) |
| 39 | #include <./configs/omap1510.h> |
wdenk | e3a0680 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 40 | #elif defined(CONFIG_OMAP730) |
| 41 | #include <./configs/omap730.h> |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 42 | #endif |
| 43 | |
| 44 | /* |
| 45 | ************************************************************************* |
| 46 | * |
| 47 | * Jump vector table as in table 3.1 in [1] |
| 48 | * |
| 49 | ************************************************************************* |
| 50 | */ |
| 51 | |
| 52 | |
| 53 | .globl _start |
| 54 | _start: |
| 55 | b reset |
| 56 | ldr pc, _undefined_instruction |
| 57 | ldr pc, _software_interrupt |
| 58 | ldr pc, _prefetch_abort |
| 59 | ldr pc, _data_abort |
| 60 | ldr pc, _not_used |
| 61 | ldr pc, _irq |
| 62 | ldr pc, _fiq |
| 63 | |
| 64 | _undefined_instruction: |
| 65 | .word undefined_instruction |
| 66 | _software_interrupt: |
| 67 | .word software_interrupt |
| 68 | _prefetch_abort: |
| 69 | .word prefetch_abort |
| 70 | _data_abort: |
| 71 | .word data_abort |
| 72 | _not_used: |
| 73 | .word not_used |
| 74 | _irq: |
| 75 | .word irq |
| 76 | _fiq: |
| 77 | .word fiq |
| 78 | |
| 79 | .balignl 16,0xdeadbeef |
| 80 | |
| 81 | |
| 82 | /* |
| 83 | ************************************************************************* |
| 84 | * |
| 85 | * Startup Code (reset vector) |
| 86 | * |
| 87 | * do important init only if we don't start from memory! |
| 88 | * setup Memory and board specific bits prior to relocation. |
| 89 | * relocate armboot to ram |
| 90 | * setup stack |
| 91 | * |
| 92 | ************************************************************************* |
| 93 | */ |
| 94 | |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 95 | _TEXT_BASE: |
| 96 | .word TEXT_BASE |
| 97 | |
| 98 | .globl _armboot_start |
| 99 | _armboot_start: |
| 100 | .word _start |
| 101 | |
| 102 | /* |
wdenk | 927034e | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 103 | * These are defined in the board-specific linker script. |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 104 | */ |
wdenk | 927034e | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 105 | .globl _bss_start |
| 106 | _bss_start: |
| 107 | .word __bss_start |
| 108 | |
| 109 | .globl _bss_end |
| 110 | _bss_end: |
| 111 | .word _end |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 112 | |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 113 | #ifdef CONFIG_USE_IRQ |
| 114 | /* IRQ stack memory (calculated at run-time) */ |
| 115 | .globl IRQ_STACK_START |
| 116 | IRQ_STACK_START: |
| 117 | .word 0x0badc0de |
| 118 | |
| 119 | /* IRQ stack memory (calculated at run-time) */ |
| 120 | .globl FIQ_STACK_START |
| 121 | FIQ_STACK_START: |
| 122 | .word 0x0badc0de |
| 123 | #endif |
| 124 | |
| 125 | |
| 126 | /* |
| 127 | * the actual reset code |
| 128 | */ |
| 129 | |
| 130 | reset: |
| 131 | /* |
| 132 | * set the cpu to SVC32 mode |
| 133 | */ |
| 134 | mrs r0,cpsr |
| 135 | bic r0,r0,#0x1f |
| 136 | orr r0,r0,#0xd3 |
| 137 | msr cpsr,r0 |
| 138 | |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 139 | /* |
wdenk | c0aa5c5 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 140 | * we do sys-critical inits only at reboot, |
| 141 | * not when booting from ram! |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 142 | */ |
wdenk | 3d3d99f | 2005-04-04 12:44:11 +0000 | [diff] [blame] | 143 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
wdenk | c0aa5c5 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 144 | bl cpu_init_crit |
| 145 | #endif |
| 146 | |
wdenk | 3d3d99f | 2005-04-04 12:44:11 +0000 | [diff] [blame] | 147 | #ifndef CONFIG_SKIP_RELOCATE_UBOOT |
wdenk | c0aa5c5 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 148 | relocate: /* relocate U-Boot to RAM */ |
| 149 | adr r0, _start /* r0 <- current position of code */ |
| 150 | ldr r1, _TEXT_BASE /* test if we run from flash or RAM */ |
| 151 | cmp r0, r1 /* don't reloc during debug */ |
| 152 | beq stack_setup |
| 153 | |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 154 | ldr r2, _armboot_start |
wdenk | 927034e | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 155 | ldr r3, _bss_start |
wdenk | c0aa5c5 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 156 | sub r2, r3, r2 /* r2 <- size of armboot */ |
| 157 | add r2, r0, r2 /* r2 <- source end address */ |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 158 | |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 159 | copy_loop: |
wdenk | c0aa5c5 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 160 | ldmia r0!, {r3-r10} /* copy from source address [r0] */ |
| 161 | stmia r1!, {r3-r10} /* copy to target address [r1] */ |
| 162 | cmp r0, r2 /* until source end addreee [r2] */ |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 163 | ble copy_loop |
wdenk | 3d3d99f | 2005-04-04 12:44:11 +0000 | [diff] [blame] | 164 | #endif /* CONFIG_SKIP_RELOCATE_UBOOT */ |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 165 | |
wdenk | c0aa5c5 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 166 | /* Set up the stack */ |
| 167 | stack_setup: |
| 168 | ldr r0, _TEXT_BASE /* upper 128 KiB: relocated uboot */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 169 | sub r0, r0, #CONFIG_SYS_MALLOC_LEN /* malloc area */ |
| 170 | sub r0, r0, #CONFIG_SYS_GBL_DATA_SIZE /* bdinfo */ |
wdenk | c0aa5c5 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 171 | #ifdef CONFIG_USE_IRQ |
| 172 | sub r0, r0, #(CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ) |
| 173 | #endif |
| 174 | sub sp, r0, #12 /* leave 3 words for abort-stack */ |
Simon Kagstrom | 31502fa | 2009-10-06 08:44:22 +0200 | [diff] [blame] | 175 | bic sp, r0, #7 /* 8-byte align stack for ABI compliance */ |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 176 | |
wdenk | 927034e | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 177 | clear_bss: |
| 178 | ldr r0, _bss_start /* find start of bss segment */ |
wdenk | 927034e | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 179 | ldr r1, _bss_end /* stop here */ |
Wolfgang Denk | a1be476 | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 180 | mov r2, #0x00000000 /* clear */ |
wdenk | 927034e | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 181 | |
| 182 | clbss_l:str r2, [r0] /* clear loop... */ |
| 183 | add r0, r0, #4 |
| 184 | cmp r0, r1 |
wdenk | 26c5843 | 2005-01-09 17:12:27 +0000 | [diff] [blame] | 185 | ble clbss_l |
wdenk | 927034e | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 186 | |
Stelian Pop | d1aea1c | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 187 | bl coloured_LED_init |
| 188 | bl red_LED_on |
| 189 | |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 190 | ldr pc, _start_armboot |
| 191 | |
| 192 | _start_armboot: |
| 193 | .word start_armboot |
| 194 | |
| 195 | |
| 196 | /* |
| 197 | ************************************************************************* |
| 198 | * |
| 199 | * CPU_init_critical registers |
| 200 | * |
| 201 | * setup important registers |
| 202 | * setup memory timing |
| 203 | * |
| 204 | ************************************************************************* |
| 205 | */ |
Stelian Pop | 72a6f14 | 2008-01-19 21:09:35 +0000 | [diff] [blame] | 206 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 207 | cpu_init_crit: |
| 208 | /* |
| 209 | * flush v4 I/D caches |
| 210 | */ |
| 211 | mov r0, #0 |
| 212 | mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */ |
| 213 | mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */ |
| 214 | |
| 215 | /* |
| 216 | * disable MMU stuff and caches |
| 217 | */ |
| 218 | mrc p15, 0, r0, c1, c0, 0 |
| 219 | bic r0, r0, #0x00002300 /* clear bits 13, 9:8 (--V- --RS) */ |
| 220 | bic r0, r0, #0x00000087 /* clear bits 7, 2:0 (B--- -CAM) */ |
| 221 | orr r0, r0, #0x00000002 /* set bit 2 (A) Align */ |
| 222 | orr r0, r0, #0x00001000 /* set bit 12 (I) I-Cache */ |
| 223 | mcr p15, 0, r0, c1, c0, 0 |
| 224 | |
| 225 | /* |
| 226 | * Go setup Memory and board specific bits prior to relocation. |
| 227 | */ |
| 228 | mov ip, lr /* perserve link reg across call */ |
Wolfgang Denk | 7f88a5e | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 229 | bl lowlevel_init /* go setup pll,mux,memory */ |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 230 | mov lr, ip /* restore link */ |
| 231 | mov pc, lr /* back to my caller */ |
Stelian Pop | 72a6f14 | 2008-01-19 21:09:35 +0000 | [diff] [blame] | 232 | #endif /* CONFIG_SKIP_LOWLEVEL_INIT */ |
| 233 | |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 234 | /* |
| 235 | ************************************************************************* |
| 236 | * |
| 237 | * Interrupt handling |
| 238 | * |
| 239 | ************************************************************************* |
| 240 | */ |
| 241 | |
| 242 | @ |
| 243 | @ IRQ stack frame. |
| 244 | @ |
| 245 | #define S_FRAME_SIZE 72 |
| 246 | |
| 247 | #define S_OLD_R0 68 |
| 248 | #define S_PSR 64 |
| 249 | #define S_PC 60 |
| 250 | #define S_LR 56 |
| 251 | #define S_SP 52 |
| 252 | |
| 253 | #define S_IP 48 |
| 254 | #define S_FP 44 |
| 255 | #define S_R10 40 |
| 256 | #define S_R9 36 |
| 257 | #define S_R8 32 |
| 258 | #define S_R7 28 |
| 259 | #define S_R6 24 |
| 260 | #define S_R5 20 |
| 261 | #define S_R4 16 |
| 262 | #define S_R3 12 |
| 263 | #define S_R2 8 |
| 264 | #define S_R1 4 |
| 265 | #define S_R0 0 |
| 266 | |
| 267 | #define MODE_SVC 0x13 |
| 268 | #define I_BIT 0x80 |
| 269 | |
| 270 | /* |
| 271 | * use bad_save_user_regs for abort/prefetch/undef/swi ... |
| 272 | * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling |
| 273 | */ |
| 274 | |
| 275 | .macro bad_save_user_regs |
| 276 | @ carve out a frame on current user stack |
| 277 | sub sp, sp, #S_FRAME_SIZE |
| 278 | stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12 |
wdenk | 927034e | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 279 | |
| 280 | ldr r2, _armboot_start |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 281 | sub r2, r2, #(CONFIG_STACKSIZE+CONFIG_SYS_MALLOC_LEN) |
| 282 | sub r2, r2, #(CONFIG_SYS_GBL_DATA_SIZE+8) @ set base 2 words into abort stack |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 283 | @ get values for "aborted" pc and cpsr (into parm regs) |
| 284 | ldmia r2, {r2 - r3} |
| 285 | add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack |
| 286 | add r5, sp, #S_SP |
| 287 | mov r1, lr |
| 288 | stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr |
| 289 | mov r0, sp @ save current stack into r0 (param register) |
| 290 | .endm |
| 291 | |
| 292 | .macro irq_save_user_regs |
| 293 | sub sp, sp, #S_FRAME_SIZE |
| 294 | stmia sp, {r0 - r12} @ Calling r0-r12 |
| 295 | @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good. |
| 296 | add r8, sp, #S_PC |
| 297 | stmdb r8, {sp, lr}^ @ Calling SP, LR |
| 298 | str lr, [r8, #0] @ Save calling PC |
| 299 | mrs r6, spsr |
| 300 | str r6, [r8, #4] @ Save CPSR |
| 301 | str r0, [r8, #8] @ Save OLD_R0 |
| 302 | mov r0, sp |
| 303 | .endm |
| 304 | |
| 305 | .macro irq_restore_user_regs |
| 306 | ldmia sp, {r0 - lr}^ @ Calling r0 - lr |
| 307 | mov r0, r0 |
| 308 | ldr lr, [sp, #S_PC] @ Get PC |
| 309 | add sp, sp, #S_FRAME_SIZE |
| 310 | subs pc, lr, #4 @ return & move spsr_svc into cpsr |
| 311 | .endm |
| 312 | |
| 313 | .macro get_bad_stack |
wdenk | 927034e | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 314 | ldr r13, _armboot_start @ setup our mode stack |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 315 | sub r13, r13, #(CONFIG_STACKSIZE+CONFIG_SYS_MALLOC_LEN) |
| 316 | sub r13, r13, #(CONFIG_SYS_GBL_DATA_SIZE+8) @ reserved a couple spots in abort stack |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 317 | |
| 318 | str lr, [r13] @ save caller lr in position 0 of saved stack |
| 319 | mrs lr, spsr @ get the spsr |
| 320 | str lr, [r13, #4] @ save spsr in position 1 of saved stack |
| 321 | mov r13, #MODE_SVC @ prepare SVC-Mode |
| 322 | @ msr spsr_c, r13 |
| 323 | msr spsr, r13 @ switch modes, make sure moves will execute |
| 324 | mov lr, pc @ capture return pc |
| 325 | movs pc, lr @ jump to next instruction & switch modes. |
| 326 | .endm |
| 327 | |
| 328 | .macro get_irq_stack @ setup IRQ stack |
| 329 | ldr sp, IRQ_STACK_START |
| 330 | .endm |
| 331 | |
| 332 | .macro get_fiq_stack @ setup FIQ stack |
| 333 | ldr sp, FIQ_STACK_START |
| 334 | .endm |
| 335 | |
| 336 | /* |
| 337 | * exception handlers |
| 338 | */ |
| 339 | .align 5 |
| 340 | undefined_instruction: |
| 341 | get_bad_stack |
| 342 | bad_save_user_regs |
| 343 | bl do_undefined_instruction |
| 344 | |
| 345 | .align 5 |
| 346 | software_interrupt: |
| 347 | get_bad_stack |
| 348 | bad_save_user_regs |
| 349 | bl do_software_interrupt |
| 350 | |
| 351 | .align 5 |
| 352 | prefetch_abort: |
| 353 | get_bad_stack |
| 354 | bad_save_user_regs |
| 355 | bl do_prefetch_abort |
| 356 | |
| 357 | .align 5 |
| 358 | data_abort: |
| 359 | get_bad_stack |
| 360 | bad_save_user_regs |
| 361 | bl do_data_abort |
| 362 | |
| 363 | .align 5 |
| 364 | not_used: |
| 365 | get_bad_stack |
| 366 | bad_save_user_regs |
| 367 | bl do_not_used |
| 368 | |
| 369 | #ifdef CONFIG_USE_IRQ |
| 370 | |
| 371 | .align 5 |
| 372 | irq: |
| 373 | get_irq_stack |
| 374 | irq_save_user_regs |
Wolfgang Denk | a1be476 | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 375 | bl do_irq |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 376 | irq_restore_user_regs |
| 377 | |
| 378 | .align 5 |
| 379 | fiq: |
| 380 | get_fiq_stack |
| 381 | /* someone ought to write a more effiction fiq_save_user_regs */ |
| 382 | irq_save_user_regs |
Wolfgang Denk | a1be476 | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 383 | bl do_fiq |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 384 | irq_restore_user_regs |
| 385 | |
| 386 | #else |
| 387 | |
| 388 | .align 5 |
| 389 | irq: |
| 390 | get_bad_stack |
| 391 | bad_save_user_regs |
| 392 | bl do_irq |
| 393 | |
| 394 | .align 5 |
| 395 | fiq: |
| 396 | get_bad_stack |
| 397 | bad_save_user_regs |
| 398 | bl do_fiq |
| 399 | |
| 400 | #endif |