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>
35 #include <asm/system.h>
36 #include <linux/linkage.h>
40 ldr pc, _undefined_instruction
41 ldr pc, _software_interrupt
42 ldr pc, _prefetch_abort
47 #ifdef CONFIG_SPL_BUILD
48 _undefined_instruction: .word _undefined_instruction
49 _software_interrupt: .word _software_interrupt
50 _prefetch_abort: .word _prefetch_abort
51 _data_abort: .word _data_abort
52 _not_used: .word _not_used
55 _pad: .word 0x12345678 /* now 16*4=64 */
57 _undefined_instruction: .word undefined_instruction
58 _software_interrupt: .word software_interrupt
59 _prefetch_abort: .word prefetch_abort
60 _data_abort: .word data_abort
61 _not_used: .word not_used
64 _pad: .word 0x12345678 /* now 16*4=64 */
65 #endif /* CONFIG_SPL_BUILD */
70 .balignl 16,0xdeadbeef
71 /*************************************************************************
73 * Startup Code (reset vector)
75 * do important init only if we don't start from memory!
76 * setup Memory and board specific bits prior to relocation.
77 * relocate armboot to ram
80 *************************************************************************/
84 .word CONFIG_SYS_TEXT_BASE
87 * These are defined in the board-specific linker script.
91 .word __bss_start - _start
93 .global _image_copy_end_ofs
95 .word __image_copy_end - _start
99 .word __bss_end - _start
105 #ifdef CONFIG_USE_IRQ
106 /* IRQ stack memory (calculated at run-time) */
107 .globl IRQ_STACK_START
111 /* IRQ stack memory (calculated at run-time) */
112 .globl FIQ_STACK_START
117 /* IRQ stack memory (calculated at run-time) + 8 bytes */
118 .globl IRQ_STACK_START_IN
123 * the actual reset code
129 * set the cpu to SVC32 mode
138 * (OMAP4 spl TEXT_BASE is not 32 byte aligned.
139 * Continue to use ROM code vector only in OMAP4 spl)
141 #if !(defined(CONFIG_OMAP44XX) && defined(CONFIG_SPL_BUILD))
142 /* Set V=0 in CP15 SCTRL register - for VBAR to point to vector */
143 mrc p15, 0, r0, c1, c0, 0 @ Read CP15 SCTRL Register
144 bic r0, #CR_V @ V = 0
145 mcr p15, 0, r0, c1, c0, 0 @ Write CP15 SCTRL Register
147 /* Set vector address in CP15 VBAR register */
149 mcr p15, 0, r0, c12, c0, 0 @Set VBAR
152 /* the mask ROM code should have PLL and others stable */
153 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
160 /*------------------------------------------------------------------------------*/
162 #ifndef CONFIG_SPL_BUILD
164 * void relocate_code (addr_sp, gd, addr_moni)
166 * This "function" does not return, instead it continues in RAM
167 * after relocating the monitor code.
171 mov r4, r0 /* save addr_sp */
172 mov r5, r1 /* save addr of gd */
173 mov r6, r2 /* save addr of destination */
177 moveq r9, #0 /* no relocation. relocation offset(r9) = 0 */
178 beq relocate_done /* skip relocation */
179 mov r1, r6 /* r1 <- scratch for copy_loop */
180 ldr r3, _image_copy_end_ofs
181 add r2, r0, r3 /* r2 <- source end address */
184 ldmia r0!, {r9-r10} /* copy from source address [r0] */
185 stmia r1!, {r9-r10} /* copy to target address [r1] */
186 cmp r0, r2 /* until source end address [r2] */
190 * fix .rel.dyn relocations
192 ldr r0, _TEXT_BASE /* r0 <- Text base */
193 sub r9, r6, r0 /* r9 <- relocation offset */
194 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
195 add r10, r10, r0 /* r10 <- sym table in FLASH */
196 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
197 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
198 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
199 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
201 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
202 add r0, r0, r9 /* r0 <- location to fix up in RAM */
205 cmp r7, #23 /* relative fixup? */
207 cmp r7, #2 /* absolute fixup? */
209 /* ignore unknown type of fixup */
212 /* absolute fix: set location to (offset) symbol value */
213 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
214 add r1, r10, r1 /* r1 <- address of symbol in table */
215 ldr r1, [r1, #4] /* r1 <- symbol value */
216 add r1, r1, r9 /* r1 <- relocated sym addr */
219 /* relative fix: increase location by offset */
224 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
233 .word __rel_dyn_start - _start
235 .word __rel_dyn_end - _start
237 .word __dynsym_start - _start
238 ENDPROC(relocate_code)
242 ENTRY(c_runtime_cpu_setup)
244 * If I-cache is enabled invalidate it
246 #ifndef CONFIG_SYS_ICACHE_OFF
247 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
248 mcr p15, 0, r0, c7, c10, 4 @ DSB
249 mcr p15, 0, r0, c7, c5, 4 @ ISB
254 #if !defined(CONFIG_TEGRA)
255 /* Set vector address in CP15 VBAR register */
257 mcr p15, 0, r0, c12, c0, 0 @Set VBAR
262 ENDPROC(c_runtime_cpu_setup)
264 /*************************************************************************
266 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
267 * __attribute__((weak));
269 * Stack pointer is not yet initialized at this moment
270 * Don't save anything to stack even if compiled with -O0
272 *************************************************************************/
273 ENTRY(save_boot_params)
274 bx lr @ back to my caller
275 ENDPROC(save_boot_params)
276 .weak save_boot_params
278 /*************************************************************************
282 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
283 * CONFIG_SYS_ICACHE_OFF is defined.
285 *************************************************************************/
290 mov r0, #0 @ set up for MCR
291 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
292 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
293 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
294 mcr p15, 0, r0, c7, c10, 4 @ DSB
295 mcr p15, 0, r0, c7, c5, 4 @ ISB
298 * disable MMU stuff and caches
300 mrc p15, 0, r0, c1, c0, 0
301 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
302 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
303 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
304 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
305 #ifdef CONFIG_SYS_ICACHE_OFF
306 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
308 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
310 mcr p15, 0, r0, c1, c0, 0
312 #ifdef CONFIG_ARM_ERRATA_716044
313 mrc p15, 0, r0, c1, c0, 0 @ read system control register
314 orr r0, r0, #1 << 11 @ set bit #11
315 mcr p15, 0, r0, c1, c0, 0 @ write system control register
318 #ifdef CONFIG_ARM_ERRATA_742230
319 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
320 orr r0, r0, #1 << 4 @ set bit #4
321 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
324 #ifdef CONFIG_ARM_ERRATA_743622
325 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
326 orr r0, r0, #1 << 6 @ set bit #6
327 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
330 #ifdef CONFIG_ARM_ERRATA_751472
331 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
332 orr r0, r0, #1 << 11 @ set bit #11
333 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
336 mov pc, lr @ back to my caller
337 ENDPROC(cpu_init_cp15)
339 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
340 /*************************************************************************
342 * CPU_init_critical registers
344 * setup important registers
345 * setup memory timing
347 *************************************************************************/
350 * Jump to board specific initialization...
351 * The Mask ROM will have already initialized
352 * basic memory. Go here to bump up clock rate and handle
353 * wake up conditions.
355 b lowlevel_init @ go setup pll,mux,memory
356 ENDPROC(cpu_init_crit)
359 #ifndef CONFIG_SPL_BUILD
361 *************************************************************************
365 *************************************************************************
370 #define S_FRAME_SIZE 72
392 #define MODE_SVC 0x13
396 * use bad_save_user_regs for abort/prefetch/undef/swi ...
397 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
400 .macro bad_save_user_regs
401 sub sp, sp, #S_FRAME_SIZE @ carve out a frame on current
403 stmia sp, {r0 - r12} @ Save user registers (now in
405 ldr r2, IRQ_STACK_START_IN @ set base 2 words into abort
407 ldmia r2, {r2 - r3} @ get values for "aborted" pc
408 @ and cpsr (into parm regs)
409 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
413 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
414 mov r0, sp @ save current stack into r0
418 .macro irq_save_user_regs
419 sub sp, sp, #S_FRAME_SIZE
420 stmia sp, {r0 - r12} @ Calling r0-r12
421 add r8, sp, #S_PC @ !! R8 NEEDS to be saved !!
422 @ a reserved stack spot would
424 stmdb r8, {sp, lr}^ @ Calling SP, LR
425 str lr, [r8, #0] @ Save calling PC
427 str r6, [r8, #4] @ Save CPSR
428 str r0, [r8, #8] @ Save OLD_R0
432 .macro irq_restore_user_regs
433 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
435 ldr lr, [sp, #S_PC] @ Get PC
436 add sp, sp, #S_FRAME_SIZE
437 subs pc, lr, #4 @ return & move spsr_svc into
442 ldr r13, IRQ_STACK_START_IN @ setup our mode stack (enter
445 str lr, [r13] @ save caller lr in position 0
447 mrs lr, spsr @ get the spsr
448 str lr, [r13, #4] @ save spsr in position 1 of
451 mov r13, #MODE_SVC @ prepare SVC-Mode
453 msr spsr, r13 @ switch modes, make sure
455 mov lr, pc @ capture return pc
456 movs pc, lr @ jump to next instruction &
460 .macro get_bad_stack_swi
461 sub r13, r13, #4 @ space on current stack for
463 str r0, [r13] @ save R0's value.
464 ldr r0, IRQ_STACK_START_IN @ get data regions start
465 @ spots for abort stack
466 str lr, [r0] @ save caller lr in position 0
468 mrs r0, spsr @ get the spsr
469 str lr, [r0, #4] @ save spsr in position 1 of
471 ldr r0, [r13] @ restore r0
472 add r13, r13, #4 @ pop stack entry
475 .macro get_irq_stack @ setup IRQ stack
476 ldr sp, IRQ_STACK_START
479 .macro get_fiq_stack @ setup FIQ stack
480 ldr sp, FIQ_STACK_START
487 undefined_instruction:
490 bl do_undefined_instruction
496 bl do_software_interrupt
516 #ifdef CONFIG_USE_IRQ
523 irq_restore_user_regs
528 /* someone ought to write a more effective fiq_save_user_regs */
531 irq_restore_user_regs
547 #endif /* CONFIG_USE_IRQ */
548 #endif /* CONFIG_SPL_BUILD */