blob: 2dd1fa3407d982c39fa7885217ff0b5279a5df71 [file] [log] [blame]
Wolfgang Denkadf20a12005-09-25 01:48:28 +02001/*
2 * armboot - Startup Code for ARM926EJS CPU-core
3 *
4 * Copyright (c) 2003 Texas Instruments
5 *
6 * ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
7 *
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02008 * 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>
Wolfgang Denkadf20a12005-09-25 01:48:28 +020011 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
12 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
Albert ARIBAUD340983d2011-04-22 19:41:02 +020013 * Copyright (c) 2010 Albert Aribaud <albert.u.boot@aribaud.net>
Wolfgang Denkadf20a12005-09-25 01:48:28 +020014 *
15 * See file CREDITS for list of people who contributed to this
16 * project.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
21 * the License, or (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 * MA 02111-1307 USA
32 */
33
Wolfgang Denk0191e472010-10-26 14:34:52 +020034#include <asm-offsets.h>
Wolfgang Denkadf20a12005-09-25 01:48:28 +020035#include <config.h>
36#include <version.h>
37
38/*
39 *************************************************************************
40 *
41 * Jump vector table as in table 3.1 in [1]
42 *
43 *************************************************************************
44 */
45
46
47.globl _start
48_start:
49 b reset
50 ldr pc, _undefined_instruction
51 ldr pc, _software_interrupt
52 ldr pc, _prefetch_abort
53 ldr pc, _data_abort
54 ldr pc, _not_used
55 ldr pc, _irq
56 ldr pc, _fiq
57
58_undefined_instruction:
59 .word undefined_instruction
60_software_interrupt:
61 .word software_interrupt
62_prefetch_abort:
63 .word prefetch_abort
64_data_abort:
65 .word data_abort
66_not_used:
67 .word not_used
68_irq:
69 .word irq
70_fiq:
71 .word fiq
72
73 .balignl 16,0xdeadbeef
74
Albert Aribaud126897e2010-11-25 22:45:02 +010075_vectors_end:
Wolfgang Denkadf20a12005-09-25 01:48:28 +020076
77/*
78 *************************************************************************
79 *
80 * Startup Code (reset vector)
81 *
82 * do important init only if we don't start from memory!
83 * setup Memory and board specific bits prior to relocation.
84 * relocate armboot to ram
85 * setup stack
86 *
87 *************************************************************************
88 */
89
Heiko Schocher68c4d2e2010-09-17 13:10:45 +020090.globl _TEXT_BASE
Wolfgang Denkadf20a12005-09-25 01:48:28 +020091_TEXT_BASE:
Benoît Thébaudeaua402da32013-04-11 09:35:42 +000092#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_TEXT_BASE)
93 .word CONFIG_SPL_TEXT_BASE
94#else
Wolfgang Denk0708bc62010-10-07 21:51:12 +020095 .word CONFIG_SYS_TEXT_BASE
Benoît Thébaudeaua402da32013-04-11 09:35:42 +000096#endif
Wolfgang Denkadf20a12005-09-25 01:48:28 +020097
Wolfgang Denkadf20a12005-09-25 01:48:28 +020098/*
99 * These are defined in the board-specific linker script.
Albert Aribaud126897e2010-11-25 22:45:02 +0100100 * Subtracting _start from them lets the linker put their
101 * relative position in the executable instead of leaving
102 * them null.
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200103 */
Albert Aribaud126897e2010-11-25 22:45:02 +0100104.globl _bss_start_ofs
105_bss_start_ofs:
106 .word __bss_start - _start
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200107
Benoît Thébaudeau03bae032013-04-11 09:35:46 +0000108.globl _image_copy_end_ofs
109_image_copy_end_ofs:
110 .word __image_copy_end - _start
111
Albert Aribaud126897e2010-11-25 22:45:02 +0100112.globl _bss_end_ofs
113_bss_end_ofs:
Simon Glassed70c8f2013-03-14 06:54:53 +0000114 .word __bss_end - _start
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200115
Po-Yu Chuang1864b002011-03-01 23:02:04 +0000116.globl _end_ofs
117_end_ofs:
118 .word _end - _start
119
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200120#ifdef CONFIG_USE_IRQ
121/* IRQ stack memory (calculated at run-time) */
122.globl IRQ_STACK_START
123IRQ_STACK_START:
124 .word 0x0badc0de
125
126/* IRQ stack memory (calculated at run-time) */
127.globl FIQ_STACK_START
128FIQ_STACK_START:
129 .word 0x0badc0de
130#endif
131
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200132/* IRQ stack memory (calculated at run-time) + 8 bytes */
133.globl IRQ_STACK_START_IN
134IRQ_STACK_START_IN:
135 .word 0x0badc0de
136
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200137/*
138 * the actual reset code
139 */
140
141reset:
142 /*
143 * set the cpu to SVC32 mode
144 */
145 mrs r0,cpsr
146 bic r0,r0,#0x1f
147 orr r0,r0,#0xd3
148 msr cpsr,r0
149
150 /*
151 * we do sys-critical inits only at reboot,
152 * not when booting from ram!
153 */
154#ifndef CONFIG_SKIP_LOWLEVEL_INIT
155 bl cpu_init_crit
156#endif
157
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000158 bl _main
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200159
160/*------------------------------------------------------------------------------*/
161
162/*
163 * void relocate_code (addr_sp, gd, addr_moni)
164 *
Benoît Thébaudeau9039c102013-04-11 09:35:43 +0000165 * This function relocates the monitor code.
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200166 */
167 .globl relocate_code
168relocate_code:
169 mov r4, r0 /* save addr_sp */
170 mov r5, r1 /* save addr of gd */
171 mov r6, r2 /* save addr of destination */
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200172
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200173 adr r0, _start
Benoît Thébaudeaua18f3232013-04-11 09:35:45 +0000174 subs r9, r6, r0 /* r9 <- relocation offset */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000175 beq relocate_done /* skip relocation */
Andreas Bießmann8cfbda92010-12-01 00:58:33 +0100176 mov r1, r6 /* r1 <- scratch for copy_loop */
Benoît Thébaudeau03bae032013-04-11 09:35:46 +0000177 ldr r3, _image_copy_end_ofs
Albert Aribaud126897e2010-11-25 22:45:02 +0100178 add r2, r0, r3 /* r2 <- source end address */
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200179
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200180copy_loop:
Benoît Thébaudeaua18f3232013-04-11 09:35:45 +0000181 ldmia r0!, {r10-r11} /* copy from source address [r0] */
182 stmia r1!, {r10-r11} /* copy to target address [r1] */
Albert Aribaud0668d162010-10-05 16:06:39 +0200183 cmp r0, r2 /* until source end address [r2] */
184 blo copy_loop
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200185
Aneesh V552a3192011-07-13 05:11:07 +0000186#ifndef CONFIG_SPL_BUILD
Albert Aribaud126897e2010-11-25 22:45:02 +0100187 /*
188 * fix .rel.dyn relocations
189 */
190 ldr r0, _TEXT_BASE /* r0 <- Text base */
Albert Aribaud126897e2010-11-25 22:45:02 +0100191 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
192 add r10, r10, r0 /* r10 <- sym table in FLASH */
193 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
194 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
195 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
196 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200197fixloop:
Albert Aribaud126897e2010-11-25 22:45:02 +0100198 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
199 add r0, r0, r9 /* r0 <- location to fix up in RAM */
200 ldr r1, [r2, #4]
Andreas Bießmann318cea12010-12-01 00:58:35 +0100201 and r7, r1, #0xff
202 cmp r7, #23 /* relative fixup? */
Albert Aribaud126897e2010-11-25 22:45:02 +0100203 beq fixrel
Andreas Bießmann318cea12010-12-01 00:58:35 +0100204 cmp r7, #2 /* absolute fixup? */
Albert Aribaud126897e2010-11-25 22:45:02 +0100205 beq fixabs
206 /* ignore unknown type of fixup */
207 b fixnext
208fixabs:
209 /* absolute fix: set location to (offset) symbol value */
210 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
211 add r1, r10, r1 /* r1 <- address of symbol in table */
212 ldr r1, [r1, #4] /* r1 <- symbol value */
Wolfgang Denk899cdd12010-12-09 11:26:24 +0100213 add r1, r1, r9 /* r1 <- relocated sym addr */
Albert Aribaud126897e2010-11-25 22:45:02 +0100214 b fixnext
215fixrel:
216 /* relative fix: increase location by offset */
217 ldr r1, [r0]
218 add r1, r1, r9
219fixnext:
220 str r1, [r0]
221 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200222 cmp r2, r3
Wolfgang Denk98dd07c2010-10-23 23:22:38 +0200223 blo fixloop
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200224#endif
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200225
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000226relocate_done:
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200227
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200228 mov pc, lr
229
Albert Aribaud126897e2010-11-25 22:45:02 +0100230_rel_dyn_start_ofs:
231 .word __rel_dyn_start - _start
232_rel_dyn_end_ofs:
233 .word __rel_dyn_end - _start
234_dynsym_start_ofs:
235 .word __dynsym_start - _start
236
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000237 .globl c_runtime_cpu_setup
238c_runtime_cpu_setup:
239
240 mov pc, lr
241
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200242/*
243 *************************************************************************
244 *
245 * CPU_init_critical registers
246 *
247 * setup important registers
248 * setup memory timing
249 *
250 *************************************************************************
251 */
252
253
Jean-Christophe PLAGNIOL-VILLARD314b7282009-05-15 23:45:20 +0200254#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200255cpu_init_crit:
256 /*
257 * flush v4 I/D caches
258 */
259 mov r0, #0
260 mcr p15, 0, r0, c7, c5, 0 /* flush v4 I-cache */
261 mcr p15, 0, r0, c7, c6, 0 /* flush v4 D-cache */
262
263 /*
264 * disable MMU stuff and caches
265 */
266 mrc p15, 0, r0, c1, c0, 0
267 bic r0, r0, #0x00002300 /* clear bits 13, 9:8 (--V- --RS) */
268 bic r0, r0, #0x00000087 /* clear bits 7, 2:0 (B--- -CAM) */
269 orr r0, r0, #0x00000002 /* set bit 2 (A) Align */
270 orr r0, r0, #0x00001000 /* set bit 12 (I) I-Cache */
271 mcr p15, 0, r0, c1, c0, 0
272
273 /*
274 * Go setup Memory and board specific bits prior to relocation.
275 */
276 mov ip, lr /* perserve link reg across call */
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +0200277 bl lowlevel_init /* go setup memory */
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200278 mov lr, ip /* restore link */
279 mov pc, lr /* back to my caller */
Jean-Christophe PLAGNIOL-VILLARD314b7282009-05-15 23:45:20 +0200280#endif
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200281/*
282 *************************************************************************
283 *
284 * Interrupt handling
285 *
286 *************************************************************************
287 */
288
289@
290@ IRQ stack frame.
291@
292#define S_FRAME_SIZE 72
293
294#define S_OLD_R0 68
295#define S_PSR 64
296#define S_PC 60
297#define S_LR 56
298#define S_SP 52
299
300#define S_IP 48
301#define S_FP 44
302#define S_R10 40
303#define S_R9 36
304#define S_R8 32
305#define S_R7 28
306#define S_R6 24
307#define S_R5 20
308#define S_R4 16
309#define S_R3 12
310#define S_R2 8
311#define S_R1 4
312#define S_R0 0
313
314#define MODE_SVC 0x13
315#define I_BIT 0x80
316
317/*
318 * use bad_save_user_regs for abort/prefetch/undef/swi ...
319 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
320 */
321
322 .macro bad_save_user_regs
323 @ carve out a frame on current user stack
324 sub sp, sp, #S_FRAME_SIZE
325 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12
326
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200327 ldr r2, IRQ_STACK_START_IN
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200328 @ get values for "aborted" pc and cpsr (into parm regs)
329 ldmia r2, {r2 - r3}
330 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
331 add r5, sp, #S_SP
332 mov r1, lr
333 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
334 mov r0, sp @ save current stack into r0 (param register)
335 .endm
336
337 .macro irq_save_user_regs
338 sub sp, sp, #S_FRAME_SIZE
339 stmia sp, {r0 - r12} @ Calling r0-r12
340 @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
341 add r8, sp, #S_PC
342 stmdb r8, {sp, lr}^ @ Calling SP, LR
343 str lr, [r8, #0] @ Save calling PC
344 mrs r6, spsr
345 str r6, [r8, #4] @ Save CPSR
346 str r0, [r8, #8] @ Save OLD_R0
347 mov r0, sp
348 .endm
349
350 .macro irq_restore_user_regs
351 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
352 mov r0, r0
353 ldr lr, [sp, #S_PC] @ Get PC
354 add sp, sp, #S_FRAME_SIZE
355 subs pc, lr, #4 @ return & move spsr_svc into cpsr
356 .endm
357
358 .macro get_bad_stack
Heiko Schocher68c4d2e2010-09-17 13:10:45 +0200359 ldr r13, IRQ_STACK_START_IN @ setup our mode stack
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200360
361 str lr, [r13] @ save caller lr in position 0 of saved stack
362 mrs lr, spsr @ get the spsr
363 str lr, [r13, #4] @ save spsr in position 1 of saved stack
364 mov r13, #MODE_SVC @ prepare SVC-Mode
365 @ msr spsr_c, r13
366 msr spsr, r13 @ switch modes, make sure moves will execute
367 mov lr, pc @ capture return pc
368 movs pc, lr @ jump to next instruction & switch modes.
369 .endm
370
371 .macro get_irq_stack @ setup IRQ stack
372 ldr sp, IRQ_STACK_START
373 .endm
374
375 .macro get_fiq_stack @ setup FIQ stack
376 ldr sp, FIQ_STACK_START
377 .endm
378
379/*
380 * exception handlers
381 */
382 .align 5
383undefined_instruction:
384 get_bad_stack
385 bad_save_user_regs
386 bl do_undefined_instruction
387
388 .align 5
389software_interrupt:
390 get_bad_stack
391 bad_save_user_regs
392 bl do_software_interrupt
393
394 .align 5
395prefetch_abort:
396 get_bad_stack
397 bad_save_user_regs
398 bl do_prefetch_abort
399
400 .align 5
401data_abort:
402 get_bad_stack
403 bad_save_user_regs
404 bl do_data_abort
405
406 .align 5
407not_used:
408 get_bad_stack
409 bad_save_user_regs
410 bl do_not_used
411
412#ifdef CONFIG_USE_IRQ
413
414 .align 5
415irq:
416 get_irq_stack
417 irq_save_user_regs
Wolfgang Denka1be4762008-05-20 16:00:29 +0200418 bl do_irq
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200419 irq_restore_user_regs
420
421 .align 5
422fiq:
423 get_fiq_stack
424 /* someone ought to write a more effiction fiq_save_user_regs */
425 irq_save_user_regs
Wolfgang Denka1be4762008-05-20 16:00:29 +0200426 bl do_fiq
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200427 irq_restore_user_regs
428
429#else
430
431 .align 5
432irq:
433 get_bad_stack
434 bad_save_user_regs
435 bl do_irq
436
437 .align 5
438fiq:
439 get_bad_stack
440 bad_save_user_regs
441 bl do_fiq
442
443#endif
444
445# ifdef CONFIG_INTEGRATOR
446
447 /* Satisfied by general board level routine */
448
449#else
450
451 .align 5
452.globl reset_cpu
453reset_cpu:
454
455 ldr r1, rstctl1 /* get clkm1 reset ctl */
456 mov r3, #0x0
457 strh r3, [r1] /* clear it */
458 mov r3, #0x8
459 strh r3, [r1] /* force dsp+arm reset */
460_loop_forever:
461 b _loop_forever
462
463rstctl1:
464 .word 0xfffece10
465
466#endif /* #ifdef CONFIG_INTEGRATOR */