blob: 01d1a597b98165ea3b5effae8da41c2fa344eb0e [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2 * armboot - Startup Code for SA1100 CPU
3 *
4 * Copyright (C) 1998 Dan Malek <dmalek@jlc.net>
5 * Copyright (C) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se>
6 * Copyright (C) 2000 Wolfgang Denk <wd@denx.de>
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02007 * Copyright (c) 2001 Alex Züpke <azu@sysgo.de>
wdenkfe8c2802002-11-03 00:38:21 +00008 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020028#include <asm-offsets.h>
wdenkfe8c2802002-11-03 00:38:21 +000029#include <config.h>
30#include <version.h>
31
wdenkfe8c2802002-11-03 00:38:21 +000032/*
33 *************************************************************************
34 *
35 * Jump vector table as in table 3.1 in [1]
36 *
37 *************************************************************************
38 */
39
40
41.globl _start
42_start: b reset
43 ldr pc, _undefined_instruction
44 ldr pc, _software_interrupt
45 ldr pc, _prefetch_abort
46 ldr pc, _data_abort
47 ldr pc, _not_used
48 ldr pc, _irq
49 ldr pc, _fiq
50
51_undefined_instruction: .word undefined_instruction
52_software_interrupt: .word software_interrupt
53_prefetch_abort: .word prefetch_abort
54_data_abort: .word data_abort
55_not_used: .word not_used
56_irq: .word irq
57_fiq: .word fiq
58
59 .balignl 16,0xdeadbeef
60
61
62/*
63 *************************************************************************
64 *
65 * Startup Code (reset vector)
66 *
67 * do important init only if we don't start from memory!
68 * relocate armboot to ram
69 * setup stack
70 * jump to second stage
71 *
72 *************************************************************************
73 */
74
Heiko Schochere30ceca2010-09-17 13:10:48 +020075.globl _TEXT_BASE
wdenkfe8c2802002-11-03 00:38:21 +000076_TEXT_BASE:
Benoît Thébaudeau508611b2013-04-11 09:35:42 +000077#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_TEXT_BASE)
78 .word CONFIG_SPL_TEXT_BASE
79#else
Wolfgang Denk14d0a022010-10-07 21:51:12 +020080 .word CONFIG_SYS_TEXT_BASE
Benoît Thébaudeau508611b2013-04-11 09:35:42 +000081#endif
wdenkfe8c2802002-11-03 00:38:21 +000082
wdenkfe8c2802002-11-03 00:38:21 +000083/*
wdenkf6e20fc2004-02-08 19:38:38 +000084 * These are defined in the board-specific linker script.
Albert Aribaud3336ca62010-11-25 22:45:02 +010085 * Subtracting _start from them lets the linker put their
86 * relative position in the executable instead of leaving
87 * them null.
wdenkfe8c2802002-11-03 00:38:21 +000088 */
Albert Aribaud3336ca62010-11-25 22:45:02 +010089.globl _bss_start_ofs
90_bss_start_ofs:
91 .word __bss_start - _start
wdenkf6e20fc2004-02-08 19:38:38 +000092
Albert Aribaud3336ca62010-11-25 22:45:02 +010093.globl _bss_end_ofs
94_bss_end_ofs:
Simon Glass3929fb02013-03-14 06:54:53 +000095 .word __bss_end - _start
wdenkfe8c2802002-11-03 00:38:21 +000096
Po-Yu Chuangf326cbb2011-03-01 23:02:04 +000097.globl _end_ofs
98_end_ofs:
99 .word _end - _start
100
wdenkfe8c2802002-11-03 00:38:21 +0000101#ifdef CONFIG_USE_IRQ
102/* IRQ stack memory (calculated at run-time) */
103.globl IRQ_STACK_START
104IRQ_STACK_START:
105 .word 0x0badc0de
106
107/* IRQ stack memory (calculated at run-time) */
108.globl FIQ_STACK_START
109FIQ_STACK_START:
110 .word 0x0badc0de
111#endif
112
Heiko Schochere30ceca2010-09-17 13:10:48 +0200113/* IRQ stack memory (calculated at run-time) + 8 bytes */
114.globl IRQ_STACK_START_IN
115IRQ_STACK_START_IN:
116 .word 0x0badc0de
117
Heiko Schochere30ceca2010-09-17 13:10:48 +0200118/*
119 * the actual reset code
120 */
121
122reset:
123 /*
124 * set the cpu to SVC32 mode
125 */
126 mrs r0,cpsr
127 bic r0,r0,#0x1f
128 orr r0,r0,#0xd3
129 msr cpsr,r0
130
131 /*
132 * we do sys-critical inits only at reboot,
133 * not when booting from ram!
134 */
135#ifndef CONFIG_SKIP_LOWLEVEL_INIT
136 bl cpu_init_crit
137#endif
138
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000139 bl _main
Heiko Schochere30ceca2010-09-17 13:10:48 +0200140
141/*------------------------------------------------------------------------------*/
142
143/*
144 * void relocate_code (addr_sp, gd, addr_moni)
145 *
146 * This "function" does not return, instead it continues in RAM
147 * after relocating the monitor code.
148 *
149 */
150 .globl relocate_code
151relocate_code:
152 mov r4, r0 /* save addr_sp */
153 mov r5, r1 /* save addr of gd */
154 mov r6, r2 /* save addr of destination */
Heiko Schochere30ceca2010-09-17 13:10:48 +0200155
Heiko Schochere30ceca2010-09-17 13:10:48 +0200156 adr r0, _start
Andreas Bießmanna1a47d32010-12-01 00:58:34 +0100157 cmp r0, r6
Zhong Hongbo76abfa52012-09-01 20:49:52 +0000158 moveq r9, #0 /* no relocation. relocation offset(r9) = 0 */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000159 beq relocate_done /* skip relocation */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100160 mov r1, r6 /* r1 <- scratch for copy_loop */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100161 ldr r3, _bss_start_ofs
162 add r2, r0, r3 /* r2 <- source end address */
Heiko Schochere30ceca2010-09-17 13:10:48 +0200163
Heiko Schochere30ceca2010-09-17 13:10:48 +0200164copy_loop:
165 ldmia r0!, {r9-r10} /* copy from source address [r0] */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100166 stmia r1!, {r9-r10} /* copy to target address [r1] */
Albert Aribaudda90d4c2010-10-05 16:06:39 +0200167 cmp r0, r2 /* until source end address [r2] */
168 blo copy_loop
Heiko Schochere30ceca2010-09-17 13:10:48 +0200169
Aneesh V401bb302011-07-13 05:11:07 +0000170#ifndef CONFIG_SPL_BUILD
Albert Aribaud3336ca62010-11-25 22:45:02 +0100171 /*
172 * fix .rel.dyn relocations
173 */
174 ldr r0, _TEXT_BASE /* r0 <- Text base */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100175 sub r9, r6, r0 /* r9 <- relocation offset */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100176 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
177 add r10, r10, r0 /* r10 <- sym table in FLASH */
178 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
179 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
180 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
181 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
Heiko Schochere30ceca2010-09-17 13:10:48 +0200182fixloop:
Albert Aribaud3336ca62010-11-25 22:45:02 +0100183 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
184 add r0, r0, r9 /* r0 <- location to fix up in RAM */
185 ldr r1, [r2, #4]
Andreas Bießmann1f52d892010-12-01 00:58:35 +0100186 and r7, r1, #0xff
187 cmp r7, #23 /* relative fixup? */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100188 beq fixrel
Andreas Bießmann1f52d892010-12-01 00:58:35 +0100189 cmp r7, #2 /* absolute fixup? */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100190 beq fixabs
191 /* ignore unknown type of fixup */
192 b fixnext
193fixabs:
194 /* absolute fix: set location to (offset) symbol value */
195 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
196 add r1, r10, r1 /* r1 <- address of symbol in table */
197 ldr r1, [r1, #4] /* r1 <- symbol value */
Wolfgang Denk36009452010-12-09 11:26:24 +0100198 add r1, r1, r9 /* r1 <- relocated sym addr */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100199 b fixnext
200fixrel:
201 /* relative fix: increase location by offset */
202 ldr r1, [r0]
203 add r1, r1, r9
204fixnext:
205 str r1, [r0]
206 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
Heiko Schochere30ceca2010-09-17 13:10:48 +0200207 cmp r2, r3
Wolfgang Denk79e63132010-10-23 23:22:38 +0200208 blo fixloop
Heiko Schochere30ceca2010-09-17 13:10:48 +0200209#endif
Heiko Schochere30ceca2010-09-17 13:10:48 +0200210
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000211relocate_done:
Heiko Schochere30ceca2010-09-17 13:10:48 +0200212
Heiko Schochere30ceca2010-09-17 13:10:48 +0200213 mov pc, lr
214
Albert Aribaud3336ca62010-11-25 22:45:02 +0100215_rel_dyn_start_ofs:
216 .word __rel_dyn_start - _start
217_rel_dyn_end_ofs:
218 .word __rel_dyn_end - _start
219_dynsym_start_ofs:
220 .word __dynsym_start - _start
Heiko Schochere30ceca2010-09-17 13:10:48 +0200221
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000222 .globl c_runtime_cpu_setup
223c_runtime_cpu_setup:
224
225 mov pc, lr
226
wdenkfe8c2802002-11-03 00:38:21 +0000227/*
228 *************************************************************************
229 *
230 * CPU_init_critical registers
231 *
232 * setup important registers
233 * setup memory timing
234 *
235 *************************************************************************
236 */
237
238
Mike Williams16263082011-07-22 04:01:30 +0000239/* Interrupt-Controller base address */
wdenkfe8c2802002-11-03 00:38:21 +0000240IC_BASE: .word 0x90050000
241#define ICMR 0x04
242
243
244/* Reset-Controller */
245RST_BASE: .word 0x90030000
246#define RSRR 0x00
247#define RCSR 0x04
248
249
250/* PWR */
251PWR_BASE: .word 0x90020000
252#define PSPR 0x08
253#define PPCR 0x14
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200254cpuspeed: .word CONFIG_SYS_CPUSPEED
wdenkfe8c2802002-11-03 00:38:21 +0000255
256
257cpu_init_crit:
258 /*
259 * mask all IRQs
260 */
261 ldr r0, IC_BASE
262 mov r1, #0x00
263 str r1, [r0, #ICMR]
264
265 /* set clock speed */
266 ldr r0, PWR_BASE
267 ldr r1, cpuspeed
268 str r1, [r0, #PPCR]
269
270 /*
271 * before relocating, we have to setup RAM timing
272 * because memory timing is board-dependend, you will
wdenk400558b2005-04-02 23:52:25 +0000273 * find a lowlevel_init.S in your board directory.
wdenkfe8c2802002-11-03 00:38:21 +0000274 */
275 mov ip, lr
wdenk400558b2005-04-02 23:52:25 +0000276 bl lowlevel_init
wdenkfe8c2802002-11-03 00:38:21 +0000277 mov lr, ip
278
279 /*
280 * disable MMU stuff and enable I-cache
281 */
282 mrc p15,0,r0,c1,c0
283 bic r0, r0, #0x00002000 @ clear bit 13 (X)
284 bic r0, r0, #0x0000000f @ clear bits 3-0 (WCAM)
285 orr r0, r0, #0x00001000 @ set bit 12 (I) Icache
286 orr r0, r0, #0x00000002 @ set bit 2 (A) Align
287 mcr p15,0,r0,c1,c0
288
289 /*
290 * flush v4 I/D caches
291 */
292 mov r0, #0
293 mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
294 mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */
295
296 mov pc, lr
297
298
wdenkfe8c2802002-11-03 00:38:21 +0000299/*
300 *************************************************************************
301 *
302 * Interrupt handling
303 *
304 *************************************************************************
305 */
306
307@
308@ IRQ stack frame.
309@
310#define S_FRAME_SIZE 72
311
312#define S_OLD_R0 68
313#define S_PSR 64
314#define S_PC 60
315#define S_LR 56
316#define S_SP 52
317
318#define S_IP 48
319#define S_FP 44
320#define S_R10 40
321#define S_R9 36
322#define S_R8 32
323#define S_R7 28
324#define S_R6 24
325#define S_R5 20
326#define S_R4 16
327#define S_R3 12
328#define S_R2 8
329#define S_R1 4
330#define S_R0 0
331
332#define MODE_SVC 0x13
333#define I_BIT 0x80
334
335/*
336 * use bad_save_user_regs for abort/prefetch/undef/swi ...
337 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
338 */
339
340 .macro bad_save_user_regs
341 sub sp, sp, #S_FRAME_SIZE
342 stmia sp, {r0 - r12} @ Calling r0-r12
343 add r8, sp, #S_PC
344
Heiko Schochere30ceca2010-09-17 13:10:48 +0200345 ldr r2, IRQ_STACK_START_IN
wdenkfe8c2802002-11-03 00:38:21 +0000346 ldmia r2, {r2 - r4} @ get pc, cpsr, old_r0
347 add r0, sp, #S_FRAME_SIZE @ restore sp_SVC
348
349 add r5, sp, #S_SP
350 mov r1, lr
351 stmia r5, {r0 - r4} @ save sp_SVC, lr_SVC, pc, cpsr, old_r
352 mov r0, sp
353 .endm
354
355 .macro irq_save_user_regs
356 sub sp, sp, #S_FRAME_SIZE
357 stmia sp, {r0 - r12} @ Calling r0-r12
358 add r8, sp, #S_PC
359 stmdb r8, {sp, lr}^ @ Calling SP, LR
360 str lr, [r8, #0] @ Save calling PC
361 mrs r6, spsr
362 str r6, [r8, #4] @ Save CPSR
363 str r0, [r8, #8] @ Save OLD_R0
364 mov r0, sp
365 .endm
366
367 .macro irq_restore_user_regs
368 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
369 mov r0, r0
370 ldr lr, [sp, #S_PC] @ Get PC
371 add sp, sp, #S_FRAME_SIZE
372 subs pc, lr, #4 @ return & move spsr_svc into cpsr
373 .endm
374
375 .macro get_bad_stack
Heiko Schochere30ceca2010-09-17 13:10:48 +0200376 ldr r13, IRQ_STACK_START_IN @ setup our mode stack
wdenkfe8c2802002-11-03 00:38:21 +0000377
378 str lr, [r13] @ save caller lr / spsr
379 mrs lr, spsr
380 str lr, [r13, #4]
381
382 mov r13, #MODE_SVC @ prepare SVC-Mode
383 msr spsr_c, r13
384 mov lr, pc
385 movs pc, lr
386 .endm
387
388 .macro get_irq_stack @ setup IRQ stack
389 ldr sp, IRQ_STACK_START
390 .endm
391
392 .macro get_fiq_stack @ setup FIQ stack
393 ldr sp, FIQ_STACK_START
394 .endm
395
396/*
397 * exception handlers
398 */
399 .align 5
400undefined_instruction:
401 get_bad_stack
402 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200403 bl do_undefined_instruction
wdenkfe8c2802002-11-03 00:38:21 +0000404
405 .align 5
406software_interrupt:
407 get_bad_stack
408 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200409 bl do_software_interrupt
wdenkfe8c2802002-11-03 00:38:21 +0000410
411 .align 5
412prefetch_abort:
413 get_bad_stack
414 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200415 bl do_prefetch_abort
wdenkfe8c2802002-11-03 00:38:21 +0000416
417 .align 5
418data_abort:
419 get_bad_stack
420 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200421 bl do_data_abort
wdenkfe8c2802002-11-03 00:38:21 +0000422
423 .align 5
424not_used:
425 get_bad_stack
426 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200427 bl do_not_used
wdenkfe8c2802002-11-03 00:38:21 +0000428
429#ifdef CONFIG_USE_IRQ
430
431 .align 5
432irq:
433 get_irq_stack
434 irq_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200435 bl do_irq
wdenkfe8c2802002-11-03 00:38:21 +0000436 irq_restore_user_regs
437
438 .align 5
439fiq:
440 get_fiq_stack
441 /* someone ought to write a more effiction fiq_save_user_regs */
442 irq_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200443 bl do_fiq
wdenkfe8c2802002-11-03 00:38:21 +0000444 irq_restore_user_regs
445
446#else
447
448 .align 5
449irq:
450 get_bad_stack
451 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200452 bl do_irq
wdenkfe8c2802002-11-03 00:38:21 +0000453
454 .align 5
455fiq:
456 get_bad_stack
457 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200458 bl do_fiq
wdenkfe8c2802002-11-03 00:38:21 +0000459
460#endif
461
462 .align 5
463.globl reset_cpu
464reset_cpu:
465 ldr r0, RST_BASE
466 mov r1, #0x0 @ set bit 3-0 ...
467 str r1, [r0, #RCSR] @ ... to clear in RCSR
468 mov r1, #0x1
469 str r1, [r0, #RSRR] @ and perform reset
470 b reset_cpu @ silly, but repeat endlessly