blob: 4421b6a99015dba90f58f39540379af2cad322bf [file] [log] [blame]
wdenk7eaacc52003-08-29 22:00:43 +00001/*
2 * armboot - Startup Code for ARM926EJS CPU-core
3 *
4 * Copyright (c) 2003 Texas Instruments
5 *
wdenke3a06802004-06-06 23:13:55 +00006 * ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
wdenk7eaacc52003-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 Zundelf1b3f2b2009-05-13 10:54:10 +020010 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
wdenk7eaacc52003-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
wdenk7eaacc52003-08-29 22:00:43 +000034#include <config.h>
Wolfgang Denk66e8d442009-07-24 00:17:48 +020035#include <common.h>
wdenk7eaacc52003-08-29 22:00:43 +000036#include <version.h>
37
38#if defined(CONFIG_OMAP1610)
39#include <./configs/omap1510.h>
wdenke3a06802004-06-06 23:13:55 +000040#elif defined(CONFIG_OMAP730)
41#include <./configs/omap730.h>
wdenk7eaacc52003-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
wdenk7eaacc52003-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/*
wdenk927034e2004-02-08 19:38:38 +0000103 * These are defined in the board-specific linker script.
wdenk7eaacc52003-08-29 22:00:43 +0000104 */
wdenk927034e2004-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
wdenk7eaacc52003-08-29 22:00:43 +0000112
wdenk7eaacc52003-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
wdenk7eaacc52003-08-29 22:00:43 +0000139 /*
wdenkc0aa5c52003-12-06 19:49:23 +0000140 * we do sys-critical inits only at reboot,
141 * not when booting from ram!
wdenk7eaacc52003-08-29 22:00:43 +0000142 */
wdenk3d3d99f2005-04-04 12:44:11 +0000143#ifndef CONFIG_SKIP_LOWLEVEL_INIT
wdenkc0aa5c52003-12-06 19:49:23 +0000144 bl cpu_init_crit
145#endif
146
wdenk3d3d99f2005-04-04 12:44:11 +0000147#ifndef CONFIG_SKIP_RELOCATE_UBOOT
wdenkc0aa5c52003-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
wdenk7eaacc52003-08-29 22:00:43 +0000154 ldr r2, _armboot_start
wdenk927034e2004-02-08 19:38:38 +0000155 ldr r3, _bss_start
wdenkc0aa5c52003-12-06 19:49:23 +0000156 sub r2, r3, r2 /* r2 <- size of armboot */
157 add r2, r0, r2 /* r2 <- source end address */
wdenk7eaacc52003-08-29 22:00:43 +0000158
wdenk7eaacc52003-08-29 22:00:43 +0000159copy_loop:
wdenkc0aa5c52003-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] */
wdenk7eaacc52003-08-29 22:00:43 +0000163 ble copy_loop
wdenk3d3d99f2005-04-04 12:44:11 +0000164#endif /* CONFIG_SKIP_RELOCATE_UBOOT */
wdenk7eaacc52003-08-29 22:00:43 +0000165
wdenkc0aa5c52003-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-VILLARD03836942008-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 */
wdenkc0aa5c52003-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 */
Simon Kagstrom31502fa2009-10-06 08:44:22 +0200175 bic sp, r0, #7 /* 8-byte align stack for ABI compliance */
wdenk7eaacc52003-08-29 22:00:43 +0000176
wdenk927034e2004-02-08 19:38:38 +0000177clear_bss:
178 ldr r0, _bss_start /* find start of bss segment */
wdenk927034e2004-02-08 19:38:38 +0000179 ldr r1, _bss_end /* stop here */
Wolfgang Denka1be4762008-05-20 16:00:29 +0200180 mov r2, #0x00000000 /* clear */
wdenk927034e2004-02-08 19:38:38 +0000181
182clbss_l:str r2, [r0] /* clear loop... */
183 add r0, r0, #4
184 cmp r0, r1
wdenk26c58432005-01-09 17:12:27 +0000185 ble clbss_l
wdenk927034e2004-02-08 19:38:38 +0000186
Stelian Popd1aea1c2008-01-30 21:15:54 +0000187 bl coloured_LED_init
188 bl red_LED_on
189
wdenk7eaacc52003-08-29 22:00:43 +0000190 ldr pc, _start_armboot
191
192_start_armboot:
193 .word start_armboot
194
195
196/*
197 *************************************************************************
198 *
199 * CPU_init_critical registers
200 *
201 * setup important registers
202 * setup memory timing
203 *
204 *************************************************************************
205 */
Stelian Pop72a6f142008-01-19 21:09:35 +0000206#ifndef CONFIG_SKIP_LOWLEVEL_INIT
wdenk7eaacc52003-08-29 22:00:43 +0000207cpu_init_crit:
208 /*
209 * flush v4 I/D caches
210 */
211 mov r0, #0
212 mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
213 mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */
214
215 /*
216 * disable MMU stuff and caches
217 */
218 mrc p15, 0, r0, c1, c0, 0
219 bic r0, r0, #0x00002300 /* clear bits 13, 9:8 (--V- --RS) */
220 bic r0, r0, #0x00000087 /* clear bits 7, 2:0 (B--- -CAM) */
221 orr r0, r0, #0x00000002 /* set bit 2 (A) Align */
222 orr r0, r0, #0x00001000 /* set bit 12 (I) I-Cache */
223 mcr p15, 0, r0, c1, c0, 0
224
225 /*
226 * Go setup Memory and board specific bits prior to relocation.
227 */
228 mov ip, lr /* perserve link reg across call */
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +0200229 bl lowlevel_init /* go setup pll,mux,memory */
wdenk7eaacc52003-08-29 22:00:43 +0000230 mov lr, ip /* restore link */
231 mov pc, lr /* back to my caller */
Stelian Pop72a6f142008-01-19 21:09:35 +0000232#endif /* CONFIG_SKIP_LOWLEVEL_INIT */
233
wdenk7eaacc52003-08-29 22:00:43 +0000234/*
235 *************************************************************************
236 *
237 * Interrupt handling
238 *
239 *************************************************************************
240 */
241
242@
243@ IRQ stack frame.
244@
245#define S_FRAME_SIZE 72
246
247#define S_OLD_R0 68
248#define S_PSR 64
249#define S_PC 60
250#define S_LR 56
251#define S_SP 52
252
253#define S_IP 48
254#define S_FP 44
255#define S_R10 40
256#define S_R9 36
257#define S_R8 32
258#define S_R7 28
259#define S_R6 24
260#define S_R5 20
261#define S_R4 16
262#define S_R3 12
263#define S_R2 8
264#define S_R1 4
265#define S_R0 0
266
267#define MODE_SVC 0x13
268#define I_BIT 0x80
269
270/*
271 * use bad_save_user_regs for abort/prefetch/undef/swi ...
272 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
273 */
274
275 .macro bad_save_user_regs
276 @ carve out a frame on current user stack
277 sub sp, sp, #S_FRAME_SIZE
278 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12
wdenk927034e2004-02-08 19:38:38 +0000279
280 ldr r2, _armboot_start
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200281 sub r2, r2, #(CONFIG_STACKSIZE+CONFIG_SYS_MALLOC_LEN)
282 sub r2, r2, #(CONFIG_SYS_GBL_DATA_SIZE+8) @ set base 2 words into abort stack
wdenk7eaacc52003-08-29 22:00:43 +0000283 @ get values for "aborted" pc and cpsr (into parm regs)
284 ldmia r2, {r2 - r3}
285 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
286 add r5, sp, #S_SP
287 mov r1, lr
288 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
289 mov r0, sp @ save current stack into r0 (param register)
290 .endm
291
292 .macro irq_save_user_regs
293 sub sp, sp, #S_FRAME_SIZE
294 stmia sp, {r0 - r12} @ Calling r0-r12
295 @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
296 add r8, sp, #S_PC
297 stmdb r8, {sp, lr}^ @ Calling SP, LR
298 str lr, [r8, #0] @ Save calling PC
299 mrs r6, spsr
300 str r6, [r8, #4] @ Save CPSR
301 str r0, [r8, #8] @ Save OLD_R0
302 mov r0, sp
303 .endm
304
305 .macro irq_restore_user_regs
306 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
307 mov r0, r0
308 ldr lr, [sp, #S_PC] @ Get PC
309 add sp, sp, #S_FRAME_SIZE
310 subs pc, lr, #4 @ return & move spsr_svc into cpsr
311 .endm
312
313 .macro get_bad_stack
wdenk927034e2004-02-08 19:38:38 +0000314 ldr r13, _armboot_start @ setup our mode stack
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200315 sub r13, r13, #(CONFIG_STACKSIZE+CONFIG_SYS_MALLOC_LEN)
316 sub r13, r13, #(CONFIG_SYS_GBL_DATA_SIZE+8) @ reserved a couple spots in abort stack
wdenk7eaacc52003-08-29 22:00:43 +0000317
318 str lr, [r13] @ save caller lr in position 0 of saved stack
319 mrs lr, spsr @ get the spsr
320 str lr, [r13, #4] @ save spsr in position 1 of saved stack
321 mov r13, #MODE_SVC @ prepare SVC-Mode
322 @ msr spsr_c, r13
323 msr spsr, r13 @ switch modes, make sure moves will execute
324 mov lr, pc @ capture return pc
325 movs pc, lr @ jump to next instruction & switch modes.
326 .endm
327
328 .macro get_irq_stack @ setup IRQ stack
329 ldr sp, IRQ_STACK_START
330 .endm
331
332 .macro get_fiq_stack @ setup FIQ stack
333 ldr sp, FIQ_STACK_START
334 .endm
335
336/*
337 * exception handlers
338 */
339 .align 5
340undefined_instruction:
341 get_bad_stack
342 bad_save_user_regs
343 bl do_undefined_instruction
344
345 .align 5
346software_interrupt:
347 get_bad_stack
348 bad_save_user_regs
349 bl do_software_interrupt
350
351 .align 5
352prefetch_abort:
353 get_bad_stack
354 bad_save_user_regs
355 bl do_prefetch_abort
356
357 .align 5
358data_abort:
359 get_bad_stack
360 bad_save_user_regs
361 bl do_data_abort
362
363 .align 5
364not_used:
365 get_bad_stack
366 bad_save_user_regs
367 bl do_not_used
368
369#ifdef CONFIG_USE_IRQ
370
371 .align 5
372irq:
373 get_irq_stack
374 irq_save_user_regs
Wolfgang Denka1be4762008-05-20 16:00:29 +0200375 bl do_irq
wdenk7eaacc52003-08-29 22:00:43 +0000376 irq_restore_user_regs
377
378 .align 5
379fiq:
380 get_fiq_stack
381 /* someone ought to write a more effiction fiq_save_user_regs */
382 irq_save_user_regs
Wolfgang Denka1be4762008-05-20 16:00:29 +0200383 bl do_fiq
wdenk7eaacc52003-08-29 22:00:43 +0000384 irq_restore_user_regs
385
386#else
387
388 .align 5
389irq:
390 get_bad_stack
391 bad_save_user_regs
392 bl do_irq
393
394 .align 5
395fiq:
396 get_bad_stack
397 bad_save_user_regs
398 bl do_fiq
399
400#endif