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>
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
106 .word __bss_end__ - _start
112 #ifdef CONFIG_USE_IRQ
113 /* IRQ stack memory (calculated at run-time) */
114 .globl IRQ_STACK_START
118 /* IRQ stack memory (calculated at run-time) */
119 .globl FIQ_STACK_START
124 /* IRQ stack memory (calculated at run-time) + 8 bytes */
125 .globl IRQ_STACK_START_IN
130 * the actual reset code
135 * set the cpu to SVC32 mode
143 * we do sys-critical inits only at reboot,
144 * not when booting from ram!
146 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
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 */
169 moveq r9, #0 /* no relocation. relocation offset(r9) = 0 */
170 beq relocate_done /* skip relocation */
171 mov r1, r6 /* r1 <- scratch for copy_loop */
172 ldr r3, _bss_start_ofs
173 add r2, r0, r3 /* r2 <- source end address */
176 ldmia r0!, {r9-r10} /* copy from source address [r0] */
177 stmia r1!, {r9-r10} /* copy to target address [r1] */
178 cmp r0, r2 /* until source end address [r2] */
181 #ifndef CONFIG_SPL_BUILD
183 * fix .rel.dyn relocations
185 ldr r0, _TEXT_BASE /* r0 <- Text base */
186 sub r9, r6, r0 /* r9 <- relocation offset */
187 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
188 add r10, r10, r0 /* r10 <- sym table in FLASH */
189 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
190 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
191 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
192 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
194 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
195 add r0, r0, r9 /* r0 <- location to fix up in RAM */
198 cmp r7, #23 /* relative fixup? */
200 cmp r7, #2 /* absolute fixup? */
202 /* ignore unknown type of fixup */
205 /* absolute fix: set location to (offset) symbol value */
206 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
207 add r1, r10, r1 /* r1 <- address of symbol in table */
208 ldr r1, [r1, #4] /* r1 <- symbol value */
209 add r1, r1, r9 /* r1 <- relocated sym addr */
212 /* relative fix: increase location by offset */
217 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
227 .word __rel_dyn_start - _start
229 .word __rel_dyn_end - _start
231 .word __dynsym_start - _start
233 .globl c_runtime_cpu_setup
239 *************************************************************************
241 * CPU_init_critical registers
243 * setup important registers
244 * setup memory timing
246 *************************************************************************
250 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
253 * flush v4 I/D caches
256 mcr p15, 0, r0, c7, c5, 0 /* flush v4 I-cache */
257 mcr p15, 0, r0, c7, c6, 0 /* flush v4 D-cache */
260 * disable MMU stuff and caches
262 mrc p15, 0, r0, c1, c0, 0
263 bic r0, r0, #0x00002300 /* clear bits 13, 9:8 (--V- --RS) */
264 bic r0, r0, #0x00000087 /* clear bits 7, 2:0 (B--- -CAM) */
265 orr r0, r0, #0x00000002 /* set bit 2 (A) Align */
266 orr r0, r0, #0x00001000 /* set bit 12 (I) I-Cache */
267 mcr p15, 0, r0, c1, c0, 0
270 * Go setup Memory and board specific bits prior to relocation.
272 mov ip, lr /* perserve link reg across call */
273 bl lowlevel_init /* go setup memory */
274 mov lr, ip /* restore link */
275 mov pc, lr /* back to my caller */
278 *************************************************************************
282 *************************************************************************
288 #define S_FRAME_SIZE 72
310 #define MODE_SVC 0x13
314 * use bad_save_user_regs for abort/prefetch/undef/swi ...
315 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
318 .macro bad_save_user_regs
319 @ carve out a frame on current user stack
320 sub sp, sp, #S_FRAME_SIZE
321 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12
323 ldr r2, IRQ_STACK_START_IN
324 @ get values for "aborted" pc and cpsr (into parm regs)
326 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
329 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
330 mov r0, sp @ save current stack into r0 (param register)
333 .macro irq_save_user_regs
334 sub sp, sp, #S_FRAME_SIZE
335 stmia sp, {r0 - r12} @ Calling r0-r12
336 @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
338 stmdb r8, {sp, lr}^ @ Calling SP, LR
339 str lr, [r8, #0] @ Save calling PC
341 str r6, [r8, #4] @ Save CPSR
342 str r0, [r8, #8] @ Save OLD_R0
346 .macro irq_restore_user_regs
347 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
349 ldr lr, [sp, #S_PC] @ Get PC
350 add sp, sp, #S_FRAME_SIZE
351 subs pc, lr, #4 @ return & move spsr_svc into cpsr
355 ldr r13, IRQ_STACK_START_IN @ setup our mode stack
357 str lr, [r13] @ save caller lr in position 0 of saved stack
358 mrs lr, spsr @ get the spsr
359 str lr, [r13, #4] @ save spsr in position 1 of saved stack
360 mov r13, #MODE_SVC @ prepare SVC-Mode
362 msr spsr, r13 @ switch modes, make sure moves will execute
363 mov lr, pc @ capture return pc
364 movs pc, lr @ jump to next instruction & switch modes.
367 .macro get_irq_stack @ setup IRQ stack
368 ldr sp, IRQ_STACK_START
371 .macro get_fiq_stack @ setup FIQ stack
372 ldr sp, FIQ_STACK_START
379 undefined_instruction:
382 bl do_undefined_instruction
388 bl do_software_interrupt
408 #ifdef CONFIG_USE_IRQ
415 irq_restore_user_regs
420 /* someone ought to write a more effiction fiq_save_user_regs */
423 irq_restore_user_regs
441 # ifdef CONFIG_INTEGRATOR
443 /* Satisfied by general board level routine */
451 ldr r1, rstctl1 /* get clkm1 reset ctl */
453 strh r3, [r1] /* clear it */
455 strh r3, [r1] /* force dsp+arm reset */
462 #endif /* #ifdef CONFIG_INTEGRATOR */