blob: 4bf6f5fe97ee103d53ad012af9a64c891dcf19be [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:
Wolfgang Denk14d0a022010-10-07 21:51:12 +020077 .word CONFIG_SYS_TEXT_BASE
wdenkfe8c2802002-11-03 00:38:21 +000078
wdenkfe8c2802002-11-03 00:38:21 +000079/*
wdenkf6e20fc2004-02-08 19:38:38 +000080 * These are defined in the board-specific linker script.
Albert Aribaud3336ca62010-11-25 22:45:02 +010081 * Subtracting _start from them lets the linker put their
82 * relative position in the executable instead of leaving
83 * them null.
wdenkfe8c2802002-11-03 00:38:21 +000084 */
Albert Aribaud3336ca62010-11-25 22:45:02 +010085.globl _bss_start_ofs
86_bss_start_ofs:
87 .word __bss_start - _start
wdenkf6e20fc2004-02-08 19:38:38 +000088
Albert Aribaud3336ca62010-11-25 22:45:02 +010089.globl _bss_end_ofs
90_bss_end_ofs:
Simon Glass3929fb02013-03-14 06:54:53 +000091 .word __bss_end - _start
wdenkfe8c2802002-11-03 00:38:21 +000092
Po-Yu Chuangf326cbb2011-03-01 23:02:04 +000093.globl _end_ofs
94_end_ofs:
95 .word _end - _start
96
wdenkfe8c2802002-11-03 00:38:21 +000097#ifdef CONFIG_USE_IRQ
98/* IRQ stack memory (calculated at run-time) */
99.globl IRQ_STACK_START
100IRQ_STACK_START:
101 .word 0x0badc0de
102
103/* IRQ stack memory (calculated at run-time) */
104.globl FIQ_STACK_START
105FIQ_STACK_START:
106 .word 0x0badc0de
107#endif
108
Heiko Schochere30ceca2010-09-17 13:10:48 +0200109/* IRQ stack memory (calculated at run-time) + 8 bytes */
110.globl IRQ_STACK_START_IN
111IRQ_STACK_START_IN:
112 .word 0x0badc0de
113
Heiko Schochere30ceca2010-09-17 13:10:48 +0200114/*
115 * the actual reset code
116 */
117
118reset:
119 /*
120 * set the cpu to SVC32 mode
121 */
122 mrs r0,cpsr
123 bic r0,r0,#0x1f
124 orr r0,r0,#0xd3
125 msr cpsr,r0
126
127 /*
128 * we do sys-critical inits only at reboot,
129 * not when booting from ram!
130 */
131#ifndef CONFIG_SKIP_LOWLEVEL_INIT
132 bl cpu_init_crit
133#endif
134
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000135 bl _main
Heiko Schochere30ceca2010-09-17 13:10:48 +0200136
137/*------------------------------------------------------------------------------*/
138
139/*
140 * void relocate_code (addr_sp, gd, addr_moni)
141 *
142 * This "function" does not return, instead it continues in RAM
143 * after relocating the monitor code.
144 *
145 */
146 .globl relocate_code
147relocate_code:
148 mov r4, r0 /* save addr_sp */
149 mov r5, r1 /* save addr of gd */
150 mov r6, r2 /* save addr of destination */
Heiko Schochere30ceca2010-09-17 13:10:48 +0200151
Heiko Schochere30ceca2010-09-17 13:10:48 +0200152 adr r0, _start
Andreas Bießmanna1a47d32010-12-01 00:58:34 +0100153 cmp r0, r6
Zhong Hongbo76abfa52012-09-01 20:49:52 +0000154 moveq r9, #0 /* no relocation. relocation offset(r9) = 0 */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000155 beq relocate_done /* skip relocation */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100156 mov r1, r6 /* r1 <- scratch for copy_loop */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100157 ldr r3, _bss_start_ofs
158 add r2, r0, r3 /* r2 <- source end address */
Heiko Schochere30ceca2010-09-17 13:10:48 +0200159
Heiko Schochere30ceca2010-09-17 13:10:48 +0200160copy_loop:
161 ldmia r0!, {r9-r10} /* copy from source address [r0] */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100162 stmia r1!, {r9-r10} /* copy to target address [r1] */
Albert Aribaudda90d4c2010-10-05 16:06:39 +0200163 cmp r0, r2 /* until source end address [r2] */
164 blo copy_loop
Heiko Schochere30ceca2010-09-17 13:10:48 +0200165
Aneesh V401bb302011-07-13 05:11:07 +0000166#ifndef CONFIG_SPL_BUILD
Albert Aribaud3336ca62010-11-25 22:45:02 +0100167 /*
168 * fix .rel.dyn relocations
169 */
170 ldr r0, _TEXT_BASE /* r0 <- Text base */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100171 sub r9, r6, r0 /* r9 <- relocation offset */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100172 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
173 add r10, r10, r0 /* r10 <- sym table in FLASH */
174 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
175 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
176 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
177 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
Heiko Schochere30ceca2010-09-17 13:10:48 +0200178fixloop:
Albert Aribaud3336ca62010-11-25 22:45:02 +0100179 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
180 add r0, r0, r9 /* r0 <- location to fix up in RAM */
181 ldr r1, [r2, #4]
Andreas Bießmann1f52d892010-12-01 00:58:35 +0100182 and r7, r1, #0xff
183 cmp r7, #23 /* relative fixup? */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100184 beq fixrel
Andreas Bießmann1f52d892010-12-01 00:58:35 +0100185 cmp r7, #2 /* absolute fixup? */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100186 beq fixabs
187 /* ignore unknown type of fixup */
188 b fixnext
189fixabs:
190 /* absolute fix: set location to (offset) symbol value */
191 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
192 add r1, r10, r1 /* r1 <- address of symbol in table */
193 ldr r1, [r1, #4] /* r1 <- symbol value */
Wolfgang Denk36009452010-12-09 11:26:24 +0100194 add r1, r1, r9 /* r1 <- relocated sym addr */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100195 b fixnext
196fixrel:
197 /* relative fix: increase location by offset */
198 ldr r1, [r0]
199 add r1, r1, r9
200fixnext:
201 str r1, [r0]
202 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
Heiko Schochere30ceca2010-09-17 13:10:48 +0200203 cmp r2, r3
Wolfgang Denk79e63132010-10-23 23:22:38 +0200204 blo fixloop
Heiko Schochere30ceca2010-09-17 13:10:48 +0200205#endif
Heiko Schochere30ceca2010-09-17 13:10:48 +0200206
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000207relocate_done:
Heiko Schochere30ceca2010-09-17 13:10:48 +0200208
Heiko Schochere30ceca2010-09-17 13:10:48 +0200209 mov pc, lr
210
Albert Aribaud3336ca62010-11-25 22:45:02 +0100211_rel_dyn_start_ofs:
212 .word __rel_dyn_start - _start
213_rel_dyn_end_ofs:
214 .word __rel_dyn_end - _start
215_dynsym_start_ofs:
216 .word __dynsym_start - _start
Heiko Schochere30ceca2010-09-17 13:10:48 +0200217
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000218 .globl c_runtime_cpu_setup
219c_runtime_cpu_setup:
220
221 mov pc, lr
222
wdenkfe8c2802002-11-03 00:38:21 +0000223/*
224 *************************************************************************
225 *
226 * CPU_init_critical registers
227 *
228 * setup important registers
229 * setup memory timing
230 *
231 *************************************************************************
232 */
233
234
Mike Williams16263082011-07-22 04:01:30 +0000235/* Interrupt-Controller base address */
wdenkfe8c2802002-11-03 00:38:21 +0000236IC_BASE: .word 0x90050000
237#define ICMR 0x04
238
239
240/* Reset-Controller */
241RST_BASE: .word 0x90030000
242#define RSRR 0x00
243#define RCSR 0x04
244
245
246/* PWR */
247PWR_BASE: .word 0x90020000
248#define PSPR 0x08
249#define PPCR 0x14
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200250cpuspeed: .word CONFIG_SYS_CPUSPEED
wdenkfe8c2802002-11-03 00:38:21 +0000251
252
253cpu_init_crit:
254 /*
255 * mask all IRQs
256 */
257 ldr r0, IC_BASE
258 mov r1, #0x00
259 str r1, [r0, #ICMR]
260
261 /* set clock speed */
262 ldr r0, PWR_BASE
263 ldr r1, cpuspeed
264 str r1, [r0, #PPCR]
265
266 /*
267 * before relocating, we have to setup RAM timing
268 * because memory timing is board-dependend, you will
wdenk400558b2005-04-02 23:52:25 +0000269 * find a lowlevel_init.S in your board directory.
wdenkfe8c2802002-11-03 00:38:21 +0000270 */
271 mov ip, lr
wdenk400558b2005-04-02 23:52:25 +0000272 bl lowlevel_init
wdenkfe8c2802002-11-03 00:38:21 +0000273 mov lr, ip
274
275 /*
276 * disable MMU stuff and enable I-cache
277 */
278 mrc p15,0,r0,c1,c0
279 bic r0, r0, #0x00002000 @ clear bit 13 (X)
280 bic r0, r0, #0x0000000f @ clear bits 3-0 (WCAM)
281 orr r0, r0, #0x00001000 @ set bit 12 (I) Icache
282 orr r0, r0, #0x00000002 @ set bit 2 (A) Align
283 mcr p15,0,r0,c1,c0
284
285 /*
286 * flush v4 I/D caches
287 */
288 mov r0, #0
289 mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
290 mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */
291
292 mov pc, lr
293
294
wdenkfe8c2802002-11-03 00:38:21 +0000295/*
296 *************************************************************************
297 *
298 * Interrupt handling
299 *
300 *************************************************************************
301 */
302
303@
304@ IRQ stack frame.
305@
306#define S_FRAME_SIZE 72
307
308#define S_OLD_R0 68
309#define S_PSR 64
310#define S_PC 60
311#define S_LR 56
312#define S_SP 52
313
314#define S_IP 48
315#define S_FP 44
316#define S_R10 40
317#define S_R9 36
318#define S_R8 32
319#define S_R7 28
320#define S_R6 24
321#define S_R5 20
322#define S_R4 16
323#define S_R3 12
324#define S_R2 8
325#define S_R1 4
326#define S_R0 0
327
328#define MODE_SVC 0x13
329#define I_BIT 0x80
330
331/*
332 * use bad_save_user_regs for abort/prefetch/undef/swi ...
333 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
334 */
335
336 .macro bad_save_user_regs
337 sub sp, sp, #S_FRAME_SIZE
338 stmia sp, {r0 - r12} @ Calling r0-r12
339 add r8, sp, #S_PC
340
Heiko Schochere30ceca2010-09-17 13:10:48 +0200341 ldr r2, IRQ_STACK_START_IN
wdenkfe8c2802002-11-03 00:38:21 +0000342 ldmia r2, {r2 - r4} @ get pc, cpsr, old_r0
343 add r0, sp, #S_FRAME_SIZE @ restore sp_SVC
344
345 add r5, sp, #S_SP
346 mov r1, lr
347 stmia r5, {r0 - r4} @ save sp_SVC, lr_SVC, pc, cpsr, old_r
348 mov r0, sp
349 .endm
350
351 .macro irq_save_user_regs
352 sub sp, sp, #S_FRAME_SIZE
353 stmia sp, {r0 - r12} @ Calling r0-r12
354 add r8, sp, #S_PC
355 stmdb r8, {sp, lr}^ @ Calling SP, LR
356 str lr, [r8, #0] @ Save calling PC
357 mrs r6, spsr
358 str r6, [r8, #4] @ Save CPSR
359 str r0, [r8, #8] @ Save OLD_R0
360 mov r0, sp
361 .endm
362
363 .macro irq_restore_user_regs
364 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
365 mov r0, r0
366 ldr lr, [sp, #S_PC] @ Get PC
367 add sp, sp, #S_FRAME_SIZE
368 subs pc, lr, #4 @ return & move spsr_svc into cpsr
369 .endm
370
371 .macro get_bad_stack
Heiko Schochere30ceca2010-09-17 13:10:48 +0200372 ldr r13, IRQ_STACK_START_IN @ setup our mode stack
wdenkfe8c2802002-11-03 00:38:21 +0000373
374 str lr, [r13] @ save caller lr / spsr
375 mrs lr, spsr
376 str lr, [r13, #4]
377
378 mov r13, #MODE_SVC @ prepare SVC-Mode
379 msr spsr_c, r13
380 mov lr, pc
381 movs pc, lr
382 .endm
383
384 .macro get_irq_stack @ setup IRQ stack
385 ldr sp, IRQ_STACK_START
386 .endm
387
388 .macro get_fiq_stack @ setup FIQ stack
389 ldr sp, FIQ_STACK_START
390 .endm
391
392/*
393 * exception handlers
394 */
395 .align 5
396undefined_instruction:
397 get_bad_stack
398 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200399 bl do_undefined_instruction
wdenkfe8c2802002-11-03 00:38:21 +0000400
401 .align 5
402software_interrupt:
403 get_bad_stack
404 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200405 bl do_software_interrupt
wdenkfe8c2802002-11-03 00:38:21 +0000406
407 .align 5
408prefetch_abort:
409 get_bad_stack
410 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200411 bl do_prefetch_abort
wdenkfe8c2802002-11-03 00:38:21 +0000412
413 .align 5
414data_abort:
415 get_bad_stack
416 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200417 bl do_data_abort
wdenkfe8c2802002-11-03 00:38:21 +0000418
419 .align 5
420not_used:
421 get_bad_stack
422 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200423 bl do_not_used
wdenkfe8c2802002-11-03 00:38:21 +0000424
425#ifdef CONFIG_USE_IRQ
426
427 .align 5
428irq:
429 get_irq_stack
430 irq_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200431 bl do_irq
wdenkfe8c2802002-11-03 00:38:21 +0000432 irq_restore_user_regs
433
434 .align 5
435fiq:
436 get_fiq_stack
437 /* someone ought to write a more effiction fiq_save_user_regs */
438 irq_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200439 bl do_fiq
wdenkfe8c2802002-11-03 00:38:21 +0000440 irq_restore_user_regs
441
442#else
443
444 .align 5
445irq:
446 get_bad_stack
447 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200448 bl do_irq
wdenkfe8c2802002-11-03 00:38:21 +0000449
450 .align 5
451fiq:
452 get_bad_stack
453 bad_save_user_regs
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200454 bl do_fiq
wdenkfe8c2802002-11-03 00:38:21 +0000455
456#endif
457
458 .align 5
459.globl reset_cpu
460reset_cpu:
461 ldr r0, RST_BASE
462 mov r1, #0x0 @ set bit 3-0 ...
463 str r1, [r0, #RCSR] @ ... to clear in RCSR
464 mov r1, #0x1
465 str r1, [r0, #RSRR] @ and perform reset
466 b reset_cpu @ silly, but repeat endlessly