blob: 0e698b624b6c161467b9153201ad37f9abb2e3d2 [file] [log] [blame]
Dirk Behme0b02b182008-12-14 09:47:13 +01001/*
2 * armboot - Startup Code for OMAP3530/ARM Cortex CPU-core
3 *
4 * Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
5 *
6 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
7 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
Detlev Zundel792a09e2009-05-13 10:54:10 +02008 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
Dirk Behme0b02b182008-12-14 09:47:13 +01009 * 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>
12 *
13 * See file CREDITS for list of people who contributed to this
14 * project.
15 *
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.
20 *
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.
25 *
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,
29 * MA 02111-1307 USA
30 */
31
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020032#include <asm-offsets.h>
Dirk Behme0b02b182008-12-14 09:47:13 +010033#include <config.h>
34#include <version.h>
35
36.globl _start
37_start: b reset
38 ldr pc, _undefined_instruction
39 ldr pc, _software_interrupt
40 ldr pc, _prefetch_abort
41 ldr pc, _data_abort
42 ldr pc, _not_used
43 ldr pc, _irq
44 ldr pc, _fiq
45
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
51_irq: .word irq
52_fiq: .word fiq
53_pad: .word 0x12345678 /* now 16*4=64 */
54.global _end_vect
55_end_vect:
56
57 .balignl 16,0xdeadbeef
58/*************************************************************************
59 *
60 * Startup Code (reset vector)
61 *
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
65 * setup stack
66 *
67 *************************************************************************/
68
Heiko Schocher561142a2010-09-17 13:10:41 +020069.globl _TEXT_BASE
Dirk Behme0b02b182008-12-14 09:47:13 +010070_TEXT_BASE:
Wolfgang Denk14d0a022010-10-07 21:51:12 +020071 .word CONFIG_SYS_TEXT_BASE
Dirk Behme0b02b182008-12-14 09:47:13 +010072
Tom Warren74652cf2011-04-14 12:18:06 +000073#ifdef CONFIG_TEGRA2
74/*
75 * Tegra2 uses 2 separate CPUs - the AVP (ARM7TDMI) and the CPU (dual A9s).
76 * U-Boot runs on the AVP first, setting things up for the CPU (PLLs,
77 * muxes, clocks, clamps, etc.). Then the AVP halts, and expects the CPU
78 * to pick up its reset vector, which points here.
79 */
80.globl _armboot_start
81_armboot_start:
Wolfgang Denkcd6881b2011-05-19 22:21:41 +020082 .word _start
Tom Warren74652cf2011-04-14 12:18:06 +000083#endif
84
Dirk Behme0b02b182008-12-14 09:47:13 +010085/*
86 * These are defined in the board-specific linker script.
87 */
Heiko Schocherc3d3a542010-10-11 14:08:15 +020088.globl _bss_start_ofs
89_bss_start_ofs:
90 .word __bss_start - _start
Dirk Behme0b02b182008-12-14 09:47:13 +010091
Heiko Schocherc3d3a542010-10-11 14:08:15 +020092.globl _bss_end_ofs
93_bss_end_ofs:
Po-Yu Chuang44c6e652011-03-01 22:59:59 +000094 .word __bss_end__ - _start
Dirk Behme0b02b182008-12-14 09:47:13 +010095
Po-Yu Chuangf326cbb2011-03-01 23:02:04 +000096.globl _end_ofs
97_end_ofs:
98 .word _end - _start
99
Dirk Behme0b02b182008-12-14 09:47:13 +0100100#ifdef CONFIG_USE_IRQ
101/* IRQ stack memory (calculated at run-time) */
102.globl IRQ_STACK_START
103IRQ_STACK_START:
104 .word 0x0badc0de
105
106/* IRQ stack memory (calculated at run-time) */
107.globl FIQ_STACK_START
108FIQ_STACK_START:
109 .word 0x0badc0de
110#endif
111
Heiko Schocher561142a2010-09-17 13:10:41 +0200112/* IRQ stack memory (calculated at run-time) + 8 bytes */
113.globl IRQ_STACK_START_IN
114IRQ_STACK_START_IN:
115 .word 0x0badc0de
116
Heiko Schocher561142a2010-09-17 13:10:41 +0200117/*
118 * the actual reset code
119 */
120
121reset:
122 /*
123 * set the cpu to SVC32 mode
124 */
125 mrs r0, cpsr
126 bic r0, r0, #0x1f
127 orr r0, r0, #0xd3
128 msr cpsr,r0
129
Luca Ceresolib32e8122011-04-19 09:47:21 -0400130#if defined(CONFIG_OMAP34XX)
Heiko Schocher561142a2010-09-17 13:10:41 +0200131 /* Copy vectors to mask ROM indirect addr */
132 adr r0, _start @ r0 <- current position of code
133 add r0, r0, #4 @ skip reset vector
134 mov r2, #64 @ r2 <- size to copy
135 add r2, r0, r2 @ r2 <- source end address
136 mov r1, #SRAM_OFFSET0 @ build vect addr
137 mov r3, #SRAM_OFFSET1
138 add r1, r1, r3
139 mov r3, #SRAM_OFFSET2
140 add r1, r1, r3
141next:
142 ldmia r0!, {r3 - r10} @ copy from source address [r0]
143 stmia r1!, {r3 - r10} @ copy to target address [r1]
144 cmp r0, r2 @ until source end address [r2]
145 bne next @ loop until equal */
146#if !defined(CONFIG_SYS_NAND_BOOT) && !defined(CONFIG_SYS_ONENAND_BOOT)
147 /* No need to copy/exec the clock code - DPLL adjust already done
148 * in NAND/oneNAND Boot.
149 */
150 bl cpy_clk_code @ put dpll adjust code behind vectors
151#endif /* NAND Boot */
152#endif
153 /* the mask ROM code should have PLL and others stable */
154#ifndef CONFIG_SKIP_LOWLEVEL_INIT
155 bl cpu_init_crit
156#endif
157
158/* Set stackpointer in internal RAM to call board_init_f */
159call_board_init_f:
160 ldr sp, =(CONFIG_SYS_INIT_SP_ADDR)
Heiko Schocher296cae72010-11-12 07:53:55 +0100161 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
Heiko Schocher561142a2010-09-17 13:10:41 +0200162 ldr r0,=0x00000000
163 bl board_init_f
164
165/*------------------------------------------------------------------------------*/
166
167/*
168 * void relocate_code (addr_sp, gd, addr_moni)
169 *
170 * This "function" does not return, instead it continues in RAM
171 * after relocating the monitor code.
172 *
173 */
174 .globl relocate_code
175relocate_code:
176 mov r4, r0 /* save addr_sp */
177 mov r5, r1 /* save addr of gd */
178 mov r6, r2 /* save addr of destination */
Heiko Schocher561142a2010-09-17 13:10:41 +0200179
180 /* Set up the stack */
181stack_setup:
182 mov sp, r4
183
Heiko Schocher561142a2010-09-17 13:10:41 +0200184 adr r0, _start
Heiko Schocher561142a2010-09-17 13:10:41 +0200185#ifndef CONFIG_PRELOADER
Andreas Bießmannb9c50812010-12-01 00:58:36 +0100186 cmp r0, r6
187 beq clear_bss /* skip relocation */
Heiko Schocher561142a2010-09-17 13:10:41 +0200188#endif
Andreas Bießmanna1a47d32010-12-01 00:58:34 +0100189 mov r1, r6 /* r1 <- scratch for copy_loop */
Andreas Bießmanna1a47d32010-12-01 00:58:34 +0100190 ldr r3, _bss_start_ofs
191 add r2, r0, r3 /* r2 <- source end address */
Heiko Schocher561142a2010-09-17 13:10:41 +0200192
193copy_loop:
194 ldmia r0!, {r9-r10} /* copy from source address [r0] */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100195 stmia r1!, {r9-r10} /* copy to target address [r1] */
Albert Aribaudda90d4c2010-10-05 16:06:39 +0200196 cmp r0, r2 /* until source end address [r2] */
197 blo copy_loop
Heiko Schocher561142a2010-09-17 13:10:41 +0200198
199#ifndef CONFIG_PRELOADER
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200200 /*
201 * fix .rel.dyn relocations
202 */
203 ldr r0, _TEXT_BASE /* r0 <- Text base */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100204 sub r9, r6, r0 /* r9 <- relocation offset */
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200205 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
206 add r10, r10, r0 /* r10 <- sym table in FLASH */
207 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
208 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
209 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
210 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
Heiko Schocher561142a2010-09-17 13:10:41 +0200211fixloop:
Gray Remlin8c0c2b92010-10-24 16:18:31 +0100212 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
213 add r0, r0, r9 /* r0 <- location to fix up in RAM */
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200214 ldr r1, [r2, #4]
Andreas Bießmann1f52d892010-12-01 00:58:35 +0100215 and r7, r1, #0xff
216 cmp r7, #23 /* relative fixup? */
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200217 beq fixrel
Andreas Bießmann1f52d892010-12-01 00:58:35 +0100218 cmp r7, #2 /* absolute fixup? */
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200219 beq fixabs
220 /* ignore unknown type of fixup */
221 b fixnext
222fixabs:
223 /* absolute fix: set location to (offset) symbol value */
224 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
225 add r1, r10, r1 /* r1 <- address of symbol in table */
226 ldr r1, [r1, #4] /* r1 <- symbol value */
Wolfgang Denk36009452010-12-09 11:26:24 +0100227 add r1, r1, r9 /* r1 <- relocated sym addr */
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200228 b fixnext
229fixrel:
230 /* relative fix: increase location by offset */
231 ldr r1, [r0]
232 add r1, r1, r9
233fixnext:
234 str r1, [r0]
Gray Remlin8c0c2b92010-10-24 16:18:31 +0100235 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
Heiko Schocher561142a2010-09-17 13:10:41 +0200236 cmp r2, r3
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200237 blo fixloop
Heiko Schocher561142a2010-09-17 13:10:41 +0200238
239clear_bss:
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200240 ldr r0, _bss_start_ofs
241 ldr r1, _bss_end_ofs
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100242 mov r4, r6 /* reloc addr */
Heiko Schocher561142a2010-09-17 13:10:41 +0200243 add r0, r0, r4
Heiko Schocher561142a2010-09-17 13:10:41 +0200244 add r1, r1, r4
245 mov r2, #0x00000000 /* clear */
246
247clbss_l:str r2, [r0] /* clear loop... */
248 add r0, r0, #4
249 cmp r0, r1
250 bne clbss_l
251#endif /* #ifndef CONFIG_PRELOADER */
Heiko Schocher561142a2010-09-17 13:10:41 +0200252
253/*
254 * We are done. Do not return, instead branch to second part of board
255 * initialization, now running from RAM.
256 */
257jump_2_ram:
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000258/*
259 * If I-cache is enabled invalidate it
260 */
261#ifndef CONFIG_SYS_ICACHE_OFF
262 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
263 mcr p15, 0, r0, c7, c10, 4 @ DSB
264 mcr p15, 0, r0, c7, c5, 4 @ ISB
265#endif
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200266 ldr r0, _board_init_r_ofs
267 adr r1, _start
Darius Augulis123fb7d2010-10-25 13:45:35 +0300268 add lr, r0, r1
Darius Augulis123fb7d2010-10-25 13:45:35 +0300269 add lr, lr, r9
Heiko Schocher561142a2010-09-17 13:10:41 +0200270 /* setup parameters for board_init_r */
271 mov r0, r5 /* gd_t */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100272 mov r1, r6 /* dest_addr */
Heiko Schocher561142a2010-09-17 13:10:41 +0200273 /* jump to it ... */
Heiko Schocher561142a2010-09-17 13:10:41 +0200274 mov pc, lr
275
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200276_board_init_r_ofs:
277 .word board_init_r - _start
278
279_rel_dyn_start_ofs:
280 .word __rel_dyn_start - _start
281_rel_dyn_end_ofs:
282 .word __rel_dyn_end - _start
283_dynsym_start_ofs:
284 .word __dynsym_start - _start
285
Dirk Behme0b02b182008-12-14 09:47:13 +0100286/*************************************************************************
287 *
288 * CPU_init_critical registers
289 *
290 * setup important registers
291 * setup memory timing
292 *
293 *************************************************************************/
294cpu_init_crit:
295 /*
296 * Invalidate L1 I/D
297 */
298 mov r0, #0 @ set up for MCR
299 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
300 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000301 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
302 mcr p15, 0, r0, c7, c10, 4 @ DSB
303 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme0b02b182008-12-14 09:47:13 +0100304
305 /*
306 * disable MMU stuff and caches
307 */
308 mrc p15, 0, r0, c1, c0, 0
309 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
310 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
311 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000312 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
313#ifdef CONFIG_SYS_ICACHE_OFF
314 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
315#else
316 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
317#endif
Dirk Behme0b02b182008-12-14 09:47:13 +0100318 mcr p15, 0, r0, c1, c0, 0
319
320 /*
321 * Jump to board specific initialization...
322 * The Mask ROM will have already initialized
323 * basic memory. Go here to bump up clock rate and handle
324 * wake up conditions.
325 */
326 mov ip, lr @ persevere 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/*
331 *************************************************************************
332 *
333 * Interrupt handling
334 *
335 *************************************************************************
336 */
337@
338@ IRQ stack frame.
339@
340#define S_FRAME_SIZE 72
341
342#define S_OLD_R0 68
343#define S_PSR 64
344#define S_PC 60
345#define S_LR 56
346#define S_SP 52
347
348#define S_IP 48
349#define S_FP 44
350#define S_R10 40
351#define S_R9 36
352#define S_R8 32
353#define S_R7 28
354#define S_R6 24
355#define S_R5 20
356#define S_R4 16
357#define S_R3 12
358#define S_R2 8
359#define S_R1 4
360#define S_R0 0
361
362#define MODE_SVC 0x13
363#define I_BIT 0x80
364
365/*
366 * use bad_save_user_regs for abort/prefetch/undef/swi ...
367 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
368 */
369
370 .macro bad_save_user_regs
371 sub sp, sp, #S_FRAME_SIZE @ carve out a frame on current
372 @ user stack
373 stmia sp, {r0 - r12} @ Save user registers (now in
374 @ svc mode) r0-r12
Heiko Schocher561142a2010-09-17 13:10:41 +0200375 ldr r2, IRQ_STACK_START_IN @ set base 2 words into abort
Dirk Behme0b02b182008-12-14 09:47:13 +0100376 @ stack
377 ldmia r2, {r2 - r3} @ get values for "aborted" pc
378 @ and cpsr (into parm regs)
379 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
380
381 add r5, sp, #S_SP
382 mov r1, lr
383 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
384 mov r0, sp @ save current stack into r0
385 @ (param register)
386 .endm
387
388 .macro irq_save_user_regs
389 sub sp, sp, #S_FRAME_SIZE
390 stmia sp, {r0 - r12} @ Calling r0-r12
391 add r8, sp, #S_PC @ !! R8 NEEDS to be saved !!
392 @ a reserved stack spot would
393 @ be good.
394 stmdb r8, {sp, lr}^ @ Calling SP, LR
395 str lr, [r8, #0] @ Save calling PC
396 mrs r6, spsr
397 str r6, [r8, #4] @ Save CPSR
398 str r0, [r8, #8] @ Save OLD_R0
399 mov r0, sp
400 .endm
401
402 .macro irq_restore_user_regs
403 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
404 mov r0, r0
405 ldr lr, [sp, #S_PC] @ Get PC
406 add sp, sp, #S_FRAME_SIZE
407 subs pc, lr, #4 @ return & move spsr_svc into
408 @ cpsr
409 .endm
410
411 .macro get_bad_stack
Heiko Schocher561142a2010-09-17 13:10:41 +0200412 ldr r13, IRQ_STACK_START_IN @ setup our mode stack (enter
413 @ in banked mode)
Dirk Behme0b02b182008-12-14 09:47:13 +0100414
415 str lr, [r13] @ save caller lr in position 0
416 @ of saved stack
417 mrs lr, spsr @ get the spsr
418 str lr, [r13, #4] @ save spsr in position 1 of
419 @ saved stack
420
421 mov r13, #MODE_SVC @ prepare SVC-Mode
422 @ msr spsr_c, r13
423 msr spsr, r13 @ switch modes, make sure
424 @ moves will execute
425 mov lr, pc @ capture return pc
426 movs pc, lr @ jump to next instruction &
427 @ switch modes.
428 .endm
429
430 .macro get_bad_stack_swi
431 sub r13, r13, #4 @ space on current stack for
432 @ scratch reg.
433 str r0, [r13] @ save R0's value.
Heiko Schocher561142a2010-09-17 13:10:41 +0200434 ldr r0, IRQ_STACK_START_IN @ get data regions start
Dirk Behme0b02b182008-12-14 09:47:13 +0100435 @ spots for abort stack
436 str lr, [r0] @ save caller lr in position 0
437 @ of saved stack
438 mrs r0, spsr @ get the spsr
439 str lr, [r0, #4] @ save spsr in position 1 of
440 @ saved stack
441 ldr r0, [r13] @ restore r0
442 add r13, r13, #4 @ pop stack entry
443 .endm
444
445 .macro get_irq_stack @ setup IRQ stack
446 ldr sp, IRQ_STACK_START
447 .endm
448
449 .macro get_fiq_stack @ setup FIQ stack
450 ldr sp, FIQ_STACK_START
451 .endm
452
453/*
454 * exception handlers
455 */
456 .align 5
457undefined_instruction:
458 get_bad_stack
459 bad_save_user_regs
460 bl do_undefined_instruction
461
462 .align 5
463software_interrupt:
464 get_bad_stack_swi
465 bad_save_user_regs
466 bl do_software_interrupt
467
468 .align 5
469prefetch_abort:
470 get_bad_stack
471 bad_save_user_regs
472 bl do_prefetch_abort
473
474 .align 5
475data_abort:
476 get_bad_stack
477 bad_save_user_regs
478 bl do_data_abort
479
480 .align 5
481not_used:
482 get_bad_stack
483 bad_save_user_regs
484 bl do_not_used
485
486#ifdef CONFIG_USE_IRQ
487
488 .align 5
489irq:
490 get_irq_stack
491 irq_save_user_regs
492 bl do_irq
493 irq_restore_user_regs
494
495 .align 5
496fiq:
497 get_fiq_stack
498 /* someone ought to write a more effective fiq_save_user_regs */
499 irq_save_user_regs
500 bl do_fiq
501 irq_restore_user_regs
502
503#else
504
505 .align 5
506irq:
507 get_bad_stack
508 bad_save_user_regs
509 bl do_irq
510
511 .align 5
512fiq:
513 get_bad_stack
514 bad_save_user_regs
515 bl do_fiq
516
517#endif