blob: 8043322583a8870869dfa67c768b60dcf0f020ef [file] [log] [blame]
wdenk6f213472003-08-29 22:00:43 +00001/*
2 * armboot - Startup Code for ARM926EJS CPU-core
3 *
4 * Copyright (c) 2003 Texas Instruments
5 *
wdenka56bd922004-06-06 23:13:55 +00006 * ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
wdenk6f213472003-08-29 22:00:43 +00007 *
8 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
9 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
Detlev Zundel792a09e2009-05-13 10:54:10 +020010 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
wdenk6f213472003-08-29 22:00:43 +000011 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
12 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
13 *
14 * See file CREDITS for list of people who contributed to this
15 * project.
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 * MA 02111-1307 USA
31 */
32
33
wdenk6f213472003-08-29 22:00:43 +000034#include <config.h>
Wolfgang Denkfcd3c872009-07-24 00:17:48 +020035#include <common.h>
wdenk6f213472003-08-29 22:00:43 +000036#include <version.h>
37
38#if defined(CONFIG_OMAP1610)
39#include <./configs/omap1510.h>
wdenka56bd922004-06-06 23:13:55 +000040#elif defined(CONFIG_OMAP730)
41#include <./configs/omap730.h>
wdenk6f213472003-08-29 22:00:43 +000042#endif
43
44/*
45 *************************************************************************
46 *
47 * Jump vector table as in table 3.1 in [1]
48 *
49 *************************************************************************
50 */
51
52
53.globl _start
54_start:
55 b reset
56 ldr pc, _undefined_instruction
57 ldr pc, _software_interrupt
58 ldr pc, _prefetch_abort
59 ldr pc, _data_abort
60 ldr pc, _not_used
61 ldr pc, _irq
62 ldr pc, _fiq
63
64_undefined_instruction:
65 .word undefined_instruction
66_software_interrupt:
67 .word software_interrupt
68_prefetch_abort:
69 .word prefetch_abort
70_data_abort:
71 .word data_abort
72_not_used:
73 .word not_used
74_irq:
75 .word irq
76_fiq:
77 .word fiq
78
79 .balignl 16,0xdeadbeef
80
81
82/*
83 *************************************************************************
84 *
85 * Startup Code (reset vector)
86 *
87 * do important init only if we don't start from memory!
88 * setup Memory and board specific bits prior to relocation.
89 * relocate armboot to ram
90 * setup stack
91 *
92 *************************************************************************
93 */
94
wdenk6f213472003-08-29 22:00:43 +000095_TEXT_BASE:
96 .word TEXT_BASE
97
98.globl _armboot_start
99_armboot_start:
100 .word _start
101
102/*
wdenkf6e20fc2004-02-08 19:38:38 +0000103 * These are defined in the board-specific linker script.
wdenk6f213472003-08-29 22:00:43 +0000104 */
wdenkf6e20fc2004-02-08 19:38:38 +0000105.globl _bss_start
106_bss_start:
107 .word __bss_start
108
109.globl _bss_end
110_bss_end:
111 .word _end
wdenk6f213472003-08-29 22:00:43 +0000112
wdenk6f213472003-08-29 22:00:43 +0000113#ifdef CONFIG_USE_IRQ
114/* IRQ stack memory (calculated at run-time) */
115.globl IRQ_STACK_START
116IRQ_STACK_START:
117 .word 0x0badc0de
118
119/* IRQ stack memory (calculated at run-time) */
120.globl FIQ_STACK_START
121FIQ_STACK_START:
122 .word 0x0badc0de
123#endif
124
125
126/*
127 * the actual reset code
128 */
129
130reset:
131 /*
132 * set the cpu to SVC32 mode
133 */
134 mrs r0,cpsr
135 bic r0,r0,#0x1f
136 orr r0,r0,#0xd3
137 msr cpsr,r0
138
wdenk6f213472003-08-29 22:00:43 +0000139 /*
wdenka8c7c702003-12-06 19:49:23 +0000140 * we do sys-critical inits only at reboot,
141 * not when booting from ram!
wdenk6f213472003-08-29 22:00:43 +0000142 */
wdenk8aa1a2d2005-04-04 12:44:11 +0000143#ifndef CONFIG_SKIP_LOWLEVEL_INIT
wdenka8c7c702003-12-06 19:49:23 +0000144 bl cpu_init_crit
145#endif
146
wdenk8aa1a2d2005-04-04 12:44:11 +0000147#ifndef CONFIG_SKIP_RELOCATE_UBOOT
wdenka8c7c702003-12-06 19:49:23 +0000148relocate: /* relocate U-Boot to RAM */
149 adr r0, _start /* r0 <- current position of code */
150 ldr r1, _TEXT_BASE /* test if we run from flash or RAM */
151 cmp r0, r1 /* don't reloc during debug */
152 beq stack_setup
153
wdenk6f213472003-08-29 22:00:43 +0000154 ldr r2, _armboot_start
wdenkf6e20fc2004-02-08 19:38:38 +0000155 ldr r3, _bss_start
wdenka8c7c702003-12-06 19:49:23 +0000156 sub r2, r3, r2 /* r2 <- size of armboot */
157 add r2, r0, r2 /* r2 <- source end address */
wdenk6f213472003-08-29 22:00:43 +0000158
wdenk6f213472003-08-29 22:00:43 +0000159copy_loop:
wdenka8c7c702003-12-06 19:49:23 +0000160 ldmia r0!, {r3-r10} /* copy from source address [r0] */
161 stmia r1!, {r3-r10} /* copy to target address [r1] */
162 cmp r0, r2 /* until source end addreee [r2] */
wdenk6f213472003-08-29 22:00:43 +0000163 ble copy_loop
wdenk8aa1a2d2005-04-04 12:44:11 +0000164#endif /* CONFIG_SKIP_RELOCATE_UBOOT */
wdenk6f213472003-08-29 22:00:43 +0000165
wdenka8c7c702003-12-06 19:49:23 +0000166 /* Set up the stack */
167stack_setup:
168 ldr r0, _TEXT_BASE /* upper 128 KiB: relocated uboot */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200169 sub r0, r0, #CONFIG_SYS_MALLOC_LEN /* malloc area */
170 sub r0, r0, #CONFIG_SYS_GBL_DATA_SIZE /* bdinfo */
wdenka8c7c702003-12-06 19:49:23 +0000171#ifdef CONFIG_USE_IRQ
172 sub r0, r0, #(CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ)
173#endif
174 sub sp, r0, #12 /* leave 3 words for abort-stack */
wdenk6f213472003-08-29 22:00:43 +0000175
wdenkf6e20fc2004-02-08 19:38:38 +0000176clear_bss:
177 ldr r0, _bss_start /* find start of bss segment */
wdenkf6e20fc2004-02-08 19:38:38 +0000178 ldr r1, _bss_end /* stop here */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200179 mov r2, #0x00000000 /* clear */
wdenkf6e20fc2004-02-08 19:38:38 +0000180
181clbss_l:str r2, [r0] /* clear loop... */
182 add r0, r0, #4
183 cmp r0, r1
wdenka1191902005-01-09 17:12:27 +0000184 ble clbss_l
wdenkf6e20fc2004-02-08 19:38:38 +0000185
Stelian Popfefb6c12008-01-30 21:15:54 +0000186 bl coloured_LED_init
187 bl red_LED_on
188
wdenk6f213472003-08-29 22:00:43 +0000189 ldr pc, _start_armboot
190
191_start_armboot:
192 .word start_armboot
193
194
195/*
196 *************************************************************************
197 *
198 * CPU_init_critical registers
199 *
200 * setup important registers
201 * setup memory timing
202 *
203 *************************************************************************
204 */
Stelian Popa6cdd212008-01-19 21:09:35 +0000205#ifndef CONFIG_SKIP_LOWLEVEL_INIT
wdenk6f213472003-08-29 22:00:43 +0000206cpu_init_crit:
207 /*
208 * flush v4 I/D caches
209 */
210 mov r0, #0
211 mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
212 mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */
213
214 /*
215 * disable MMU stuff and caches
216 */
217 mrc p15, 0, r0, c1, c0, 0
218 bic r0, r0, #0x00002300 /* clear bits 13, 9:8 (--V- --RS) */
219 bic r0, r0, #0x00000087 /* clear bits 7, 2:0 (B--- -CAM) */
220 orr r0, r0, #0x00000002 /* set bit 2 (A) Align */
221 orr r0, r0, #0x00001000 /* set bit 12 (I) I-Cache */
222 mcr p15, 0, r0, c1, c0, 0
223
224 /*
225 * Go setup Memory and board specific bits prior to relocation.
226 */
227 mov ip, lr /* perserve link reg across call */
Wolfgang Denk87cb6862005-10-06 17:08:18 +0200228 bl lowlevel_init /* go setup pll,mux,memory */
wdenk6f213472003-08-29 22:00:43 +0000229 mov lr, ip /* restore link */
230 mov pc, lr /* back to my caller */
Stelian Popa6cdd212008-01-19 21:09:35 +0000231#endif /* CONFIG_SKIP_LOWLEVEL_INIT */
232
wdenk6f213472003-08-29 22:00:43 +0000233/*
234 *************************************************************************
235 *
236 * Interrupt handling
237 *
238 *************************************************************************
239 */
240
241@
242@ IRQ stack frame.
243@
244#define S_FRAME_SIZE 72
245
246#define S_OLD_R0 68
247#define S_PSR 64
248#define S_PC 60
249#define S_LR 56
250#define S_SP 52
251
252#define S_IP 48
253#define S_FP 44
254#define S_R10 40
255#define S_R9 36
256#define S_R8 32
257#define S_R7 28
258#define S_R6 24
259#define S_R5 20
260#define S_R4 16
261#define S_R3 12
262#define S_R2 8
263#define S_R1 4
264#define S_R0 0
265
266#define MODE_SVC 0x13
267#define I_BIT 0x80
268
269/*
270 * use bad_save_user_regs for abort/prefetch/undef/swi ...
271 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
272 */
273
274 .macro bad_save_user_regs
275 @ carve out a frame on current user stack
276 sub sp, sp, #S_FRAME_SIZE
277 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12
wdenkf6e20fc2004-02-08 19:38:38 +0000278
279 ldr r2, _armboot_start
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200280 sub r2, r2, #(CONFIG_STACKSIZE+CONFIG_SYS_MALLOC_LEN)
281 sub r2, r2, #(CONFIG_SYS_GBL_DATA_SIZE+8) @ set base 2 words into abort stack
wdenk6f213472003-08-29 22:00:43 +0000282 @ get values for "aborted" pc and cpsr (into parm regs)
283 ldmia r2, {r2 - r3}
284 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
285 add r5, sp, #S_SP
286 mov r1, lr
287 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
288 mov r0, sp @ save current stack into r0 (param register)
289 .endm
290
291 .macro irq_save_user_regs
292 sub sp, sp, #S_FRAME_SIZE
293 stmia sp, {r0 - r12} @ Calling r0-r12
294 @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
295 add r8, sp, #S_PC
296 stmdb r8, {sp, lr}^ @ Calling SP, LR
297 str lr, [r8, #0] @ Save calling PC
298 mrs r6, spsr
299 str r6, [r8, #4] @ Save CPSR
300 str r0, [r8, #8] @ Save OLD_R0
301 mov r0, sp
302 .endm
303
304 .macro irq_restore_user_regs
305 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
306 mov r0, r0
307 ldr lr, [sp, #S_PC] @ Get PC
308 add sp, sp, #S_FRAME_SIZE
309 subs pc, lr, #4 @ return & move spsr_svc into cpsr
310 .endm
311
312 .macro get_bad_stack
wdenkf6e20fc2004-02-08 19:38:38 +0000313 ldr r13, _armboot_start @ setup our mode stack
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200314 sub r13, r13, #(CONFIG_STACKSIZE+CONFIG_SYS_MALLOC_LEN)
315 sub r13, r13, #(CONFIG_SYS_GBL_DATA_SIZE+8) @ reserved a couple spots in abort stack
wdenk6f213472003-08-29 22:00:43 +0000316
317 str lr, [r13] @ save caller lr in position 0 of saved stack
318 mrs lr, spsr @ get the spsr
319 str lr, [r13, #4] @ save spsr in position 1 of saved stack
320 mov r13, #MODE_SVC @ prepare SVC-Mode
321 @ msr spsr_c, r13
322 msr spsr, r13 @ switch modes, make sure moves will execute
323 mov lr, pc @ capture return pc
324 movs pc, lr @ jump to next instruction & switch modes.
325 .endm
326
327 .macro get_irq_stack @ setup IRQ stack
328 ldr sp, IRQ_STACK_START
329 .endm
330
331 .macro get_fiq_stack @ setup FIQ stack
332 ldr sp, FIQ_STACK_START
333 .endm
334
335/*
336 * exception handlers
337 */
338 .align 5
339undefined_instruction:
340 get_bad_stack
341 bad_save_user_regs
342 bl do_undefined_instruction
343
344 .align 5
345software_interrupt:
346 get_bad_stack
347 bad_save_user_regs
348 bl do_software_interrupt
349
350 .align 5
351prefetch_abort:
352 get_bad_stack
353 bad_save_user_regs
354 bl do_prefetch_abort
355
356 .align 5
357data_abort:
358 get_bad_stack
359 bad_save_user_regs
360 bl do_data_abort
361
362 .align 5
363not_used:
364 get_bad_stack
365 bad_save_user_regs
366 bl do_not_used
367
368#ifdef CONFIG_USE_IRQ
369
370 .align 5
371irq:
372 get_irq_stack
373 irq_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200374 bl do_irq
wdenk6f213472003-08-29 22:00:43 +0000375 irq_restore_user_regs
376
377 .align 5
378fiq:
379 get_fiq_stack
380 /* someone ought to write a more effiction fiq_save_user_regs */
381 irq_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200382 bl do_fiq
wdenk6f213472003-08-29 22:00:43 +0000383 irq_restore_user_regs
384
385#else
386
387 .align 5
388irq:
389 get_bad_stack
390 bad_save_user_regs
391 bl do_irq
392
393 .align 5
394fiq:
395 get_bad_stack
396 bad_save_user_regs
397 bl do_fiq
398
399#endif