2 * armboot - Startup Code for ARM926EJS CPU-core
4 * Copyright (c) 2003 Texas Instruments
6 * ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
8 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
9 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
10 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
11 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
12 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
13 * Copyright (c) 2010 Albert Aribaud <albert.aribaud@free.fr>
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>
39 *************************************************************************
41 * Jump vector table as in table 3.1 in [1]
43 *************************************************************************
50 ldr pc, _undefined_instruction
51 ldr pc, _software_interrupt
52 ldr pc, _prefetch_abort
58 _undefined_instruction:
59 .word undefined_instruction
61 .word software_interrupt
73 .balignl 16,0xdeadbeef
78 *************************************************************************
80 * Startup Code (reset vector)
82 * do important init only if we don't start from memory!
83 * setup Memory and board specific bits prior to relocation.
84 * relocate armboot to ram
87 *************************************************************************
92 .word CONFIG_SYS_TEXT_BASE
95 * These are defined in the board-specific linker script.
96 * Subtracting _start from them lets the linker put their
97 * relative position in the executable instead of leaving
100 .globl _bss_start_ofs
102 .word __bss_start - _start
108 #ifdef CONFIG_USE_IRQ
109 /* IRQ stack memory (calculated at run-time) */
110 .globl IRQ_STACK_START
114 /* IRQ stack memory (calculated at run-time) */
115 .globl FIQ_STACK_START
120 /* IRQ stack memory (calculated at run-time) + 8 bytes */
121 .globl IRQ_STACK_START_IN
126 * the actual reset code
131 * set the cpu to SVC32 mode
139 * we do sys-critical inits only at reboot,
140 * not when booting from ram!
142 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
146 /* Set stackpointer in internal RAM to call board_init_f */
148 ldr sp, =(CONFIG_SYS_INIT_SP_ADDR)
152 /*------------------------------------------------------------------------------*/
155 * void relocate_code (addr_sp, gd, addr_moni)
157 * This "function" does not return, instead it continues in RAM
158 * after relocating the monitor code.
163 mov r4, r0 /* save addr_sp */
164 mov r5, r1 /* save addr of gd */
165 mov r6, r2 /* save addr of destination */
166 mov r7, r2 /* save addr of destination */
168 /* Set up the stack */
174 ldr r3, _bss_start_ofs
175 add r2, r0, r3 /* r2 <- source end address */
180 ldmia r0!, {r9-r10} /* copy from source address [r0] */
181 stmia r6!, {r9-r10} /* copy to target address [r1] */
182 cmp r0, r2 /* until source end address [r2] */
185 #ifndef CONFIG_PRELOADER
187 * fix .rel.dyn relocations
189 ldr r0, _TEXT_BASE /* r0 <- Text base */
190 sub r9, r7, r0 /* r9 <- relocation offset */
191 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
192 add r10, r10, r0 /* r10 <- sym table in FLASH */
193 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
194 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
195 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
196 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
198 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
199 add r0, r0, r9 /* r0 <- location to fix up in RAM */
202 cmp r8, #23 /* relative fixup? */
204 cmp r8, #2 /* absolute fixup? */
206 /* ignore unknown type of fixup */
209 /* absolute fix: set location to (offset) symbol value */
210 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
211 add r1, r10, r1 /* r1 <- address of symbol in table */
212 ldr r1, [r1, #4] /* r1 <- symbol value */
213 add r1, r9 /* r1 <- relocated sym addr */
216 /* relative fix: increase location by offset */
221 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
227 #ifndef CONFIG_PRELOADER
228 ldr r0, _bss_start_ofs
230 ldr r3, _TEXT_BASE /* Text base */
231 mov r4, r7 /* reloc addr */
234 mov r2, #0x00000000 /* clear */
236 clbss_l:str r2, [r0] /* clear loop... */
243 * We are done. Do not return, instead branch to second part of board
244 * initialization, now running from RAM.
246 #ifdef CONFIG_NAND_SPL
249 _nand_boot: .word nand_boot
251 ldr r0, _board_init_r_ofs
255 /* setup parameters for board_init_r */
256 mov r0, r5 /* gd_t */
257 mov r1, r7 /* dest_addr */
262 .word board_init_r - _start
266 .word __rel_dyn_start - _start
268 .word __rel_dyn_end - _start
270 .word __dynsym_start - _start
273 *************************************************************************
275 * CPU_init_critical registers
277 * setup important registers
278 * setup memory timing
280 *************************************************************************
284 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
287 * flush v4 I/D caches
290 mcr p15, 0, r0, c7, c5, 0 /* flush v4 I-cache */
291 mcr p15, 0, r0, c7, c6, 0 /* flush v4 D-cache */
294 * disable MMU stuff and caches
296 mrc p15, 0, r0, c1, c0, 0
297 bic r0, r0, #0x00002300 /* clear bits 13, 9:8 (--V- --RS) */
298 bic r0, r0, #0x00000087 /* clear bits 7, 2:0 (B--- -CAM) */
299 orr r0, r0, #0x00000002 /* set bit 2 (A) Align */
300 orr r0, r0, #0x00001000 /* set bit 12 (I) I-Cache */
301 mcr p15, 0, r0, c1, c0, 0
304 * Go setup Memory and board specific bits prior to relocation.
306 mov ip, lr /* perserve link reg across call */
307 bl lowlevel_init /* go setup memory */
308 mov lr, ip /* restore link */
309 mov pc, lr /* back to my caller */
312 *************************************************************************
316 *************************************************************************
322 #define S_FRAME_SIZE 72
344 #define MODE_SVC 0x13
348 * use bad_save_user_regs for abort/prefetch/undef/swi ...
349 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
352 .macro bad_save_user_regs
353 @ carve out a frame on current user stack
354 sub sp, sp, #S_FRAME_SIZE
355 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12
357 ldr r2, IRQ_STACK_START_IN
358 @ get values for "aborted" pc and cpsr (into parm regs)
360 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
363 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
364 mov r0, sp @ save current stack into r0 (param register)
367 .macro irq_save_user_regs
368 sub sp, sp, #S_FRAME_SIZE
369 stmia sp, {r0 - r12} @ Calling r0-r12
370 @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
372 stmdb r8, {sp, lr}^ @ Calling SP, LR
373 str lr, [r8, #0] @ Save calling PC
375 str r6, [r8, #4] @ Save CPSR
376 str r0, [r8, #8] @ Save OLD_R0
380 .macro irq_restore_user_regs
381 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
383 ldr lr, [sp, #S_PC] @ Get PC
384 add sp, sp, #S_FRAME_SIZE
385 subs pc, lr, #4 @ return & move spsr_svc into cpsr
389 ldr r13, IRQ_STACK_START_IN @ setup our mode stack
391 str lr, [r13] @ save caller lr in position 0 of saved stack
392 mrs lr, spsr @ get the spsr
393 str lr, [r13, #4] @ save spsr in position 1 of saved stack
394 mov r13, #MODE_SVC @ prepare SVC-Mode
396 msr spsr, r13 @ switch modes, make sure moves will execute
397 mov lr, pc @ capture return pc
398 movs pc, lr @ jump to next instruction & switch modes.
401 .macro get_irq_stack @ setup IRQ stack
402 ldr sp, IRQ_STACK_START
405 .macro get_fiq_stack @ setup FIQ stack
406 ldr sp, FIQ_STACK_START
413 undefined_instruction:
416 bl do_undefined_instruction
422 bl do_software_interrupt
442 #ifdef CONFIG_USE_IRQ
449 irq_restore_user_regs
454 /* someone ought to write a more effiction fiq_save_user_regs */
457 irq_restore_user_regs
475 # ifdef CONFIG_INTEGRATOR
477 /* Satisfied by general board level routine */
485 ldr r1, rstctl1 /* get clkm1 reset ctl */
487 strh r3, [r1] /* clear it */
489 strh r3, [r1] /* force dsp+arm reset */
496 #endif /* #ifdef CONFIG_INTEGRATOR */