2 * armboot - Startup Code for OMAP3530/ARM Cortex CPU-core
4 * Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
6 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
7 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
8 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
9 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
10 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
11 * Copyright (c) 2006-2008 Syed Mohammed Khasim <x0khasim@ti.com>
13 * See file CREDITS for list of people who contributed to this
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
19 * the License, or (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 #include <asm-offsets.h>
38 ldr pc, _undefined_instruction
39 ldr pc, _software_interrupt
40 ldr pc, _prefetch_abort
46 _undefined_instruction: .word undefined_instruction
47 _software_interrupt: .word software_interrupt
48 _prefetch_abort: .word prefetch_abort
49 _data_abort: .word data_abort
50 _not_used: .word not_used
53 _pad: .word 0x12345678 /* now 16*4=64 */
57 .balignl 16,0xdeadbeef
58 /*************************************************************************
60 * Startup Code (reset vector)
62 * do important init only if we don't start from memory!
63 * setup Memory and board specific bits prior to relocation.
64 * relocate armboot to ram
67 *************************************************************************/
71 .word CONFIG_SYS_TEXT_BASE
74 * These are defined in the board-specific linker script.
78 .word __bss_start - _start
85 /* IRQ stack memory (calculated at run-time) */
86 .globl IRQ_STACK_START
90 /* IRQ stack memory (calculated at run-time) */
91 .globl FIQ_STACK_START
96 /* IRQ stack memory (calculated at run-time) + 8 bytes */
97 .globl IRQ_STACK_START_IN
102 * the actual reset code
107 * set the cpu to SVC32 mode
114 #if (CONFIG_OMAP34XX)
115 /* Copy vectors to mask ROM indirect addr */
116 adr r0, _start @ r0 <- current position of code
117 add r0, r0, #4 @ skip reset vector
118 mov r2, #64 @ r2 <- size to copy
119 add r2, r0, r2 @ r2 <- source end address
120 mov r1, #SRAM_OFFSET0 @ build vect addr
121 mov r3, #SRAM_OFFSET1
123 mov r3, #SRAM_OFFSET2
126 ldmia r0!, {r3 - r10} @ copy from source address [r0]
127 stmia r1!, {r3 - r10} @ copy to target address [r1]
128 cmp r0, r2 @ until source end address [r2]
129 bne next @ loop until equal */
130 #if !defined(CONFIG_SYS_NAND_BOOT) && !defined(CONFIG_SYS_ONENAND_BOOT)
131 /* No need to copy/exec the clock code - DPLL adjust already done
132 * in NAND/oneNAND Boot.
134 bl cpy_clk_code @ put dpll adjust code behind vectors
135 #endif /* NAND Boot */
137 /* the mask ROM code should have PLL and others stable */
138 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
142 /* Set stackpointer in internal RAM to call board_init_f */
144 ldr sp, =(CONFIG_SYS_INIT_SP_ADDR)
148 /*------------------------------------------------------------------------------*/
151 * void relocate_code (addr_sp, gd, addr_moni)
153 * This "function" does not return, instead it continues in RAM
154 * after relocating the monitor code.
159 mov r4, r0 /* save addr_sp */
160 mov r5, r1 /* save addr of gd */
161 mov r6, r2 /* save addr of destination */
162 mov r7, r2 /* save addr of destination */
164 /* Set up the stack */
170 ldr r3, _bss_start_ofs
171 add r2, r0, r3 /* r2 <- source end address */
173 #ifndef CONFIG_PRELOADER
178 ldmia r0!, {r9-r10} /* copy from source address [r0] */
179 stmia r6!, {r9-r10} /* copy to target address [r1] */
180 cmp r0, r2 /* until source end address [r2] */
183 #ifndef CONFIG_PRELOADER
185 * fix .rel.dyn relocations
187 ldr r0, _TEXT_BASE /* r0 <- Text base */
188 sub r9, r7, r0 /* r9 <- relocation offset */
189 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
190 add r10, r10, r0 /* r10 <- sym table in FLASH */
191 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
192 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
193 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
194 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
196 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
197 add r0, r0, r9 /* r0 <- location to fix up in RAM */
200 cmp r8, #23 /* relative fixup? */
202 cmp r8, #2 /* absolute fixup? */
204 /* ignore unknown type of fixup */
207 /* absolute fix: set location to (offset) symbol value */
208 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
209 add r1, r10, r1 /* r1 <- address of symbol in table */
210 ldr r1, [r1, #4] /* r1 <- symbol value */
211 add r1, r9 /* r1 <- relocated sym addr */
214 /* relative fix: increase location by offset */
219 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
224 ldr r0, _bss_start_ofs
226 ldr r3, _TEXT_BASE /* Text base */
227 mov r4, r7 /* reloc addr */
230 mov r2, #0x00000000 /* clear */
232 clbss_l:str r2, [r0] /* clear loop... */
236 #endif /* #ifndef CONFIG_PRELOADER */
239 * We are done. Do not return, instead branch to second part of board
240 * initialization, now running from RAM.
243 ldr r0, _board_init_r_ofs
247 /* setup parameters for board_init_r */
248 mov r0, r5 /* gd_t */
249 mov r1, r7 /* dest_addr */
254 .word board_init_r - _start
257 .word __rel_dyn_start - _start
259 .word __rel_dyn_end - _start
261 .word __dynsym_start - _start
263 /*************************************************************************
265 * CPU_init_critical registers
267 * setup important registers
268 * setup memory timing
270 *************************************************************************/
275 mov r0, #0 @ set up for MCR
276 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
277 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
280 * disable MMU stuff and caches
282 mrc p15, 0, r0, c1, c0, 0
283 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
284 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
285 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
286 orr r0, r0, #0x00000800 @ set bit 12 (Z---) BTB
287 mcr p15, 0, r0, c1, c0, 0
290 * Jump to board specific initialization...
291 * The Mask ROM will have already initialized
292 * basic memory. Go here to bump up clock rate and handle
293 * wake up conditions.
295 mov ip, lr @ persevere link reg across call
296 bl lowlevel_init @ go setup pll,mux,memory
297 mov lr, ip @ restore link
298 mov pc, lr @ back to my caller
300 *************************************************************************
304 *************************************************************************
309 #define S_FRAME_SIZE 72
331 #define MODE_SVC 0x13
335 * use bad_save_user_regs for abort/prefetch/undef/swi ...
336 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
339 .macro bad_save_user_regs
340 sub sp, sp, #S_FRAME_SIZE @ carve out a frame on current
342 stmia sp, {r0 - r12} @ Save user registers (now in
344 ldr r2, IRQ_STACK_START_IN @ set base 2 words into abort
346 ldmia r2, {r2 - r3} @ get values for "aborted" pc
347 @ and cpsr (into parm regs)
348 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
352 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
353 mov r0, sp @ save current stack into r0
357 .macro irq_save_user_regs
358 sub sp, sp, #S_FRAME_SIZE
359 stmia sp, {r0 - r12} @ Calling r0-r12
360 add r8, sp, #S_PC @ !! R8 NEEDS to be saved !!
361 @ a reserved stack spot would
363 stmdb r8, {sp, lr}^ @ Calling SP, LR
364 str lr, [r8, #0] @ Save calling PC
366 str r6, [r8, #4] @ Save CPSR
367 str r0, [r8, #8] @ Save OLD_R0
371 .macro irq_restore_user_regs
372 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
374 ldr lr, [sp, #S_PC] @ Get PC
375 add sp, sp, #S_FRAME_SIZE
376 subs pc, lr, #4 @ return & move spsr_svc into
381 ldr r13, IRQ_STACK_START_IN @ setup our mode stack (enter
384 str lr, [r13] @ save caller lr in position 0
386 mrs lr, spsr @ get the spsr
387 str lr, [r13, #4] @ save spsr in position 1 of
390 mov r13, #MODE_SVC @ prepare SVC-Mode
392 msr spsr, r13 @ switch modes, make sure
394 mov lr, pc @ capture return pc
395 movs pc, lr @ jump to next instruction &
399 .macro get_bad_stack_swi
400 sub r13, r13, #4 @ space on current stack for
402 str r0, [r13] @ save R0's value.
403 ldr r0, IRQ_STACK_START_IN @ get data regions start
404 @ spots for abort stack
405 str lr, [r0] @ save caller lr in position 0
407 mrs r0, spsr @ get the spsr
408 str lr, [r0, #4] @ save spsr in position 1 of
410 ldr r0, [r13] @ restore r0
411 add r13, r13, #4 @ pop stack entry
414 .macro get_irq_stack @ setup IRQ stack
415 ldr sp, IRQ_STACK_START
418 .macro get_fiq_stack @ setup FIQ stack
419 ldr sp, FIQ_STACK_START
426 undefined_instruction:
429 bl do_undefined_instruction
435 bl do_software_interrupt
455 #ifdef CONFIG_USE_IRQ
462 irq_restore_user_regs
467 /* someone ought to write a more effective fiq_save_user_regs */
470 irq_restore_user_regs