2 * armboot - Startup Code for ARM926EJS CPU-core
4 * Copyright (c) 2003 Texas Instruments
6 * ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
15 * See file CREDITS for list of people who contributed to this
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
21 * the License, or (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
34 #include <asm-offsets.h>
40 *************************************************************************
42 * Jump vector table as in table 3.1 in [1]
44 *************************************************************************
48 #ifdef CONFIG_SYS_DV_NOR_BOOT_CFG
53 .word CONFIG_SYS_DV_NOR_BOOT_CFG
60 #ifdef CONFIG_SPL_BUILD
61 /* No exception handlers in preloader */
72 /* pad to 64 byte boundary */
81 ldr pc, _undefined_instruction
82 ldr pc, _software_interrupt
83 ldr pc, _prefetch_abort
89 _undefined_instruction:
90 .word undefined_instruction
92 .word software_interrupt
104 #endif /* CONFIG_SPL_BUILD */
105 .balignl 16,0xdeadbeef
109 *************************************************************************
111 * Startup Code (reset vector)
113 * do important init only if we don't start from memory!
114 * setup Memory and board specific bits prior to relocation.
115 * relocate armboot to ram
118 *************************************************************************
123 #ifdef CONFIG_NAND_SPL /* deprecated, use instead CONFIG_SPL_BUILD */
124 .word CONFIG_SYS_TEXT_BASE
126 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_TEXT_BASE)
127 .word CONFIG_SPL_TEXT_BASE
129 .word CONFIG_SYS_TEXT_BASE
134 * These are defined in the board-specific linker script.
135 * Subtracting _start from them lets the linker put their
136 * relative position in the executable instead of leaving
139 .globl _bss_start_ofs
141 .word __bss_start - _start
145 .word __bss_end - _start
151 #ifdef CONFIG_NAND_U_BOOT
157 #ifdef CONFIG_USE_IRQ
158 /* IRQ stack memory (calculated at run-time) */
159 .globl IRQ_STACK_START
163 /* IRQ stack memory (calculated at run-time) */
164 .globl FIQ_STACK_START
169 /* IRQ stack memory (calculated at run-time) + 8 bytes */
170 .globl IRQ_STACK_START_IN
175 * the actual reset code
180 * set the cpu to SVC32 mode
188 * we do sys-critical inits only at reboot,
189 * not when booting from ram!
191 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
197 /*------------------------------------------------------------------------------*/
199 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_NAND_SPL)
201 * void relocate_code (addr_sp, gd, addr_moni)
203 * This function relocates the monitor code.
207 mov r4, r0 /* save addr_sp */
208 mov r5, r1 /* save addr of gd */
209 mov r6, r2 /* save addr of destination */
212 subs r9, r6, r0 /* r9 <- relocation offset */
213 beq relocate_done /* skip relocation */
214 mov r1, r6 /* r1 <- scratch for copy loop */
215 ldr r3, _bss_start_ofs
216 add r2, r0, r3 /* r2 <- source end address */
219 ldmia r0!, {r10-r11} /* copy from source address [r0] */
220 stmia r1!, {r10-r11} /* copy to target address [r1] */
221 cmp r0, r2 /* until source end address [r2] */
224 #ifndef CONFIG_SPL_BUILD
226 * fix .rel.dyn relocations
228 ldr r0, _TEXT_BASE /* r0 <- Text base */
229 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
230 add r10, r10, r0 /* r10 <- sym table in FLASH */
231 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
232 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
233 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
234 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
236 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
237 add r0, r0, r9 /* r0 <- location to fix up in RAM */
240 cmp r7, #23 /* relative fixup? */
242 cmp r7, #2 /* absolute fixup? */
244 /* ignore unknown type of fixup */
247 /* absolute fix: set location to (offset) symbol value */
248 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
249 add r1, r10, r1 /* r1 <- address of symbol in table */
250 ldr r1, [r1, #4] /* r1 <- symbol value */
251 add r1, r1, r9 /* r1 <- relocated sym addr */
254 /* relative fix: increase location by offset */
259 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
269 .word __rel_dyn_start - _start
271 .word __rel_dyn_end - _start
273 .word __dynsym_start - _start
277 .globl c_runtime_cpu_setup
283 *************************************************************************
285 * CPU_init_critical registers
287 * setup important registers
288 * setup memory timing
290 *************************************************************************
292 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
295 * flush D cache before disabling it
299 mrc p15, 0, r15, c7, c10, 3
302 mcr p15, 0, r0, c8, c7, 0 /* invalidate TLB */
303 mcr p15, 0, r0, c7, c5, 0 /* invalidate I Cache */
306 * disable MMU and D cache
307 * enable I cache if CONFIG_SYS_ICACHE_OFF is not defined
309 mrc p15, 0, r0, c1, c0, 0
310 bic r0, r0, #0x00000300 /* clear bits 9:8 (---- --RS) */
311 bic r0, r0, #0x00000087 /* clear bits 7, 2:0 (B--- -CAM) */
312 #ifdef CONFIG_SYS_EXCEPTION_VECTORS_HIGH
313 orr r0, r0, #0x00002000 /* set bit 13 (--V- ----) */
315 bic r0, r0, #0x00002000 /* clear bit 13 (--V- ----) */
317 orr r0, r0, #0x00000002 /* set bit 2 (A) Align */
318 #ifndef CONFIG_SYS_ICACHE_OFF
319 orr r0, r0, #0x00001000 /* set bit 12 (I) I-Cache */
321 mcr p15, 0, r0, c1, c0, 0
324 * Go setup Memory and board specific bits prior to relocation.
326 mov ip, lr /* perserve link reg across call */
327 bl lowlevel_init /* go setup pll,mux,memory */
328 mov lr, ip /* restore link */
329 mov pc, lr /* back to my caller */
330 #endif /* CONFIG_SKIP_LOWLEVEL_INIT */
332 #ifndef CONFIG_SPL_BUILD
334 *************************************************************************
338 *************************************************************************
344 #define S_FRAME_SIZE 72
366 #define MODE_SVC 0x13
370 * use bad_save_user_regs for abort/prefetch/undef/swi ...
371 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
374 .macro bad_save_user_regs
375 @ carve out a frame on current user stack
376 sub sp, sp, #S_FRAME_SIZE
377 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12
378 ldr r2, IRQ_STACK_START_IN
379 @ get values for "aborted" pc and cpsr (into parm regs)
381 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
384 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
385 mov r0, sp @ save current stack into r0 (param register)
388 .macro irq_save_user_regs
389 sub sp, sp, #S_FRAME_SIZE
390 stmia sp, {r0 - r12} @ Calling r0-r12
391 @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
393 stmdb r8, {sp, lr}^ @ Calling SP, LR
394 str lr, [r8, #0] @ Save calling PC
396 str r6, [r8, #4] @ Save CPSR
397 str r0, [r8, #8] @ Save OLD_R0
401 .macro irq_restore_user_regs
402 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
404 ldr lr, [sp, #S_PC] @ Get PC
405 add sp, sp, #S_FRAME_SIZE
406 subs pc, lr, #4 @ return & move spsr_svc into cpsr
410 ldr r13, IRQ_STACK_START_IN @ setup our mode stack
412 str lr, [r13] @ save caller lr in position 0 of saved stack
413 mrs lr, spsr @ get the spsr
414 str lr, [r13, #4] @ save spsr in position 1 of saved stack
415 mov r13, #MODE_SVC @ prepare SVC-Mode
417 msr spsr, r13 @ switch modes, make sure moves will execute
418 mov lr, pc @ capture return pc
419 movs pc, lr @ jump to next instruction & switch modes.
422 .macro get_irq_stack @ setup IRQ stack
423 ldr sp, IRQ_STACK_START
426 .macro get_fiq_stack @ setup FIQ stack
427 ldr sp, FIQ_STACK_START
429 #endif /* CONFIG_SPL_BUILD */
434 #ifdef CONFIG_SPL_BUILD
437 ldr sp, _TEXT_BASE /* switch to abort stack */
439 bl 1b /* hang and never return */
440 #else /* !CONFIG_SPL_BUILD */
442 undefined_instruction:
445 bl do_undefined_instruction
451 bl do_software_interrupt
471 #ifdef CONFIG_USE_IRQ
478 irq_restore_user_regs
483 /* someone ought to write a more effiction fiq_save_user_regs */
486 irq_restore_user_regs
503 #endif /* CONFIG_SPL_BUILD */