blob: 5fc8e0459474165aa2b899e1a3e3feaeaf345b27 [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 *
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>
wdenk7eaacc52003-08-29 22:00:43 +000011 * 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>
wdenk7eaacc52003-08-29 22:00:43 +000014 *
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>
wdenk7eaacc52003-08-29 22:00:43 +000035#include <config.h>
Wolfgang Denk66e8d442009-07-24 00:17:48 +020036#include <common.h>
wdenk7eaacc52003-08-29 22:00:43 +000037#include <version.h>
38
wdenk7eaacc52003-08-29 22:00:43 +000039/*
40 *************************************************************************
41 *
42 * Jump vector table as in table 3.1 in [1]
43 *
44 *************************************************************************
45 */
46
47
Heiko Schocherf49e9442011-09-14 19:59:37 +000048#ifdef CONFIG_SYS_DV_NOR_BOOT_CFG
wdenk7eaacc52003-08-29 22:00:43 +000049.globl _start
50_start:
Heiko Schocherf49e9442011-09-14 19:59:37 +000051.globl _NOR_BOOT_CFG
52_NOR_BOOT_CFG:
53 .word CONFIG_SYS_DV_NOR_BOOT_CFG
54 b reset
55#else
56.globl _start
57_start:
wdenk7eaacc52003-08-29 22:00:43 +000058 b reset
Heiko Schocherf49e9442011-09-14 19:59:37 +000059#endif
Aneesh V552a3192011-07-13 05:11:07 +000060#ifdef CONFIG_SPL_BUILD
John Rigbya9f3cf52010-01-25 23:12:52 -070061/* No exception handlers in preloader */
62 ldr pc, _hang
63 ldr pc, _hang
64 ldr pc, _hang
65 ldr pc, _hang
66 ldr pc, _hang
67 ldr pc, _hang
68 ldr pc, _hang
69
70_hang:
71 .word do_hang
72/* pad to 64 byte boundary */
73 .word 0x12345678
74 .word 0x12345678
75 .word 0x12345678
76 .word 0x12345678
77 .word 0x12345678
78 .word 0x12345678
79 .word 0x12345678
80#else
wdenk7eaacc52003-08-29 22:00:43 +000081 ldr pc, _undefined_instruction
82 ldr pc, _software_interrupt
83 ldr pc, _prefetch_abort
84 ldr pc, _data_abort
85 ldr pc, _not_used
86 ldr pc, _irq
87 ldr pc, _fiq
88
89_undefined_instruction:
90 .word undefined_instruction
91_software_interrupt:
92 .word software_interrupt
93_prefetch_abort:
94 .word prefetch_abort
95_data_abort:
96 .word data_abort
97_not_used:
98 .word not_used
99_irq:
100 .word irq
101_fiq:
102 .word fiq
103
Aneesh V552a3192011-07-13 05:11:07 +0000104#endif /* CONFIG_SPL_BUILD */
wdenk7eaacc52003-08-29 22:00:43 +0000105 .balignl 16,0xdeadbeef
106
107
108/*
109 *************************************************************************
110 *
111 * Startup Code (reset vector)
112 *
113 * do important init only if we don't start from memory!
114 * setup Memory and board specific bits prior to relocation.
115 * relocate armboot to ram
116 * setup stack
117 *
118 *************************************************************************
119 */
120
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200121.globl _TEXT_BASE
wdenk7eaacc52003-08-29 22:00:43 +0000122_TEXT_BASE:
Benoît Thébaudeaua402da32013-04-11 09:35:42 +0000123#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_TEXT_BASE)
Heiko Schocher565a09c2011-11-01 20:00:29 +0000124 .word CONFIG_SPL_TEXT_BASE
125#else
126 .word CONFIG_SYS_TEXT_BASE
127#endif
wdenk7eaacc52003-08-29 22:00:43 +0000128
wdenk7eaacc52003-08-29 22:00:43 +0000129/*
wdenk927034e2004-02-08 19:38:38 +0000130 * These are defined in the board-specific linker script.
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200131 * Subtracting _start from them lets the linker put their
132 * relative position in the executable instead of leaving
133 * them null.
wdenk7eaacc52003-08-29 22:00:43 +0000134 */
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200135.globl _bss_start_ofs
136_bss_start_ofs:
137 .word __bss_start - _start
wdenk927034e2004-02-08 19:38:38 +0000138
Albert Aribaud6d1fcb12010-10-11 13:13:28 +0200139.globl _bss_end_ofs
140_bss_end_ofs:
Simon Glassed70c8f2013-03-14 06:54:53 +0000141 .word __bss_end - _start
wdenk7eaacc52003-08-29 22:00:43 +0000142
Po-Yu Chuang1864b002011-03-01 23:02:04 +0000143.globl _end_ofs
144_end_ofs:
145 .word _end - _start
146
wdenk7eaacc52003-08-29 22:00:43 +0000147#ifdef CONFIG_USE_IRQ
148/* IRQ stack memory (calculated at run-time) */
149.globl IRQ_STACK_START
150IRQ_STACK_START:
151 .word 0x0badc0de
152
153/* IRQ stack memory (calculated at run-time) */
154.globl FIQ_STACK_START
155FIQ_STACK_START:
156 .word 0x0badc0de
157#endif
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200158
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200159/* IRQ stack memory (calculated at run-time) + 8 bytes */
160.globl IRQ_STACK_START_IN
161IRQ_STACK_START_IN:
162 .word 0x0badc0de
163
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200164/*
165 * the actual reset code
166 */
167
168reset:
169 /*
170 * set the cpu to SVC32 mode
171 */
172 mrs r0,cpsr
173 bic r0,r0,#0x1f
174 orr r0,r0,#0xd3
175 msr cpsr,r0
176
177 /*
178 * we do sys-critical inits only at reboot,
179 * not when booting from ram!
180 */
Christian Riesch11bf5762012-02-02 00:44:37 +0000181#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200182 bl cpu_init_crit
Christian Riesch11bf5762012-02-02 00:44:37 +0000183#endif
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200184
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000185 bl _main
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200186
187/*------------------------------------------------------------------------------*/
188
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000189 .globl c_runtime_cpu_setup
190c_runtime_cpu_setup:
191
192 bx lr
193
wdenk7eaacc52003-08-29 22:00:43 +0000194/*
195 *************************************************************************
196 *
197 * CPU_init_critical registers
198 *
199 * setup important registers
200 * setup memory timing
201 *
202 *************************************************************************
203 */
Christian Riesch11bf5762012-02-02 00:44:37 +0000204#ifndef CONFIG_SKIP_LOWLEVEL_INIT
wdenk7eaacc52003-08-29 22:00:43 +0000205cpu_init_crit:
206 /*
Sughosh Ganu4cb71862012-02-02 00:44:38 +0000207 * flush D cache before disabling it
wdenk7eaacc52003-08-29 22:00:43 +0000208 */
209 mov r0, #0
Sughosh Ganu4cb71862012-02-02 00:44:38 +0000210flush_dcache:
211 mrc p15, 0, r15, c7, c10, 3
212 bne flush_dcache
213
214 mcr p15, 0, r0, c8, c7, 0 /* invalidate TLB */
215 mcr p15, 0, r0, c7, c5, 0 /* invalidate I Cache */
wdenk7eaacc52003-08-29 22:00:43 +0000216
217 /*
Christian Riescha927d262012-02-02 00:44:40 +0000218 * disable MMU and D cache
219 * enable I cache if CONFIG_SYS_ICACHE_OFF is not defined
wdenk7eaacc52003-08-29 22:00:43 +0000220 */
221 mrc p15, 0, r0, c1, c0, 0
Christian Riesch48c2d6d2012-02-02 00:44:39 +0000222 bic r0, r0, #0x00000300 /* clear bits 9:8 (---- --RS) */
wdenk7eaacc52003-08-29 22:00:43 +0000223 bic r0, r0, #0x00000087 /* clear bits 7, 2:0 (B--- -CAM) */
Christian Riesch48c2d6d2012-02-02 00:44:39 +0000224#ifdef CONFIG_SYS_EXCEPTION_VECTORS_HIGH
225 orr r0, r0, #0x00002000 /* set bit 13 (--V- ----) */
226#else
227 bic r0, r0, #0x00002000 /* clear bit 13 (--V- ----) */
228#endif
wdenk7eaacc52003-08-29 22:00:43 +0000229 orr r0, r0, #0x00000002 /* set bit 2 (A) Align */
Christian Riescha927d262012-02-02 00:44:40 +0000230#ifndef CONFIG_SYS_ICACHE_OFF
wdenk7eaacc52003-08-29 22:00:43 +0000231 orr r0, r0, #0x00001000 /* set bit 12 (I) I-Cache */
Christian Riescha927d262012-02-02 00:44:40 +0000232#endif
wdenk7eaacc52003-08-29 22:00:43 +0000233 mcr p15, 0, r0, c1, c0, 0
234
235 /*
236 * Go setup Memory and board specific bits prior to relocation.
237 */
238 mov ip, lr /* perserve link reg across call */
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +0200239 bl lowlevel_init /* go setup pll,mux,memory */
wdenk7eaacc52003-08-29 22:00:43 +0000240 mov lr, ip /* restore link */
Heiko Schocherc8a6d752011-11-09 20:06:23 +0000241 mov pc, lr /* back to my caller */
Christian Riesch11bf5762012-02-02 00:44:37 +0000242#endif /* CONFIG_SKIP_LOWLEVEL_INIT */
Stelian Pop72a6f142008-01-19 21:09:35 +0000243
Aneesh V552a3192011-07-13 05:11:07 +0000244#ifndef CONFIG_SPL_BUILD
wdenk7eaacc52003-08-29 22:00:43 +0000245/*
246 *************************************************************************
247 *
248 * Interrupt handling
249 *
250 *************************************************************************
251 */
252
253@
254@ IRQ stack frame.
255@
256#define S_FRAME_SIZE 72
257
258#define S_OLD_R0 68
259#define S_PSR 64
260#define S_PC 60
261#define S_LR 56
262#define S_SP 52
263
264#define S_IP 48
265#define S_FP 44
266#define S_R10 40
267#define S_R9 36
268#define S_R8 32
269#define S_R7 28
270#define S_R6 24
271#define S_R5 20
272#define S_R4 16
273#define S_R3 12
274#define S_R2 8
275#define S_R1 4
276#define S_R0 0
277
278#define MODE_SVC 0x13
279#define I_BIT 0x80
280
281/*
282 * use bad_save_user_regs for abort/prefetch/undef/swi ...
283 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
284 */
285
286 .macro bad_save_user_regs
287 @ carve out a frame on current user stack
288 sub sp, sp, #S_FRAME_SIZE
289 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200290 ldr r2, IRQ_STACK_START_IN
wdenk7eaacc52003-08-29 22:00:43 +0000291 @ get values for "aborted" pc and cpsr (into parm regs)
292 ldmia r2, {r2 - r3}
293 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
294 add r5, sp, #S_SP
295 mov r1, lr
296 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
297 mov r0, sp @ save current stack into r0 (param register)
298 .endm
299
300 .macro irq_save_user_regs
301 sub sp, sp, #S_FRAME_SIZE
302 stmia sp, {r0 - r12} @ Calling r0-r12
303 @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
304 add r8, sp, #S_PC
305 stmdb r8, {sp, lr}^ @ Calling SP, LR
306 str lr, [r8, #0] @ Save calling PC
307 mrs r6, spsr
308 str r6, [r8, #4] @ Save CPSR
309 str r0, [r8, #8] @ Save OLD_R0
310 mov r0, sp
311 .endm
312
313 .macro irq_restore_user_regs
314 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
315 mov r0, r0
316 ldr lr, [sp, #S_PC] @ Get PC
317 add sp, sp, #S_FRAME_SIZE
318 subs pc, lr, #4 @ return & move spsr_svc into cpsr
319 .endm
320
321 .macro get_bad_stack
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200322 ldr r13, IRQ_STACK_START_IN @ setup our mode stack
wdenk7eaacc52003-08-29 22:00:43 +0000323
324 str lr, [r13] @ save caller lr in position 0 of saved stack
325 mrs lr, spsr @ get the spsr
326 str lr, [r13, #4] @ save spsr in position 1 of saved stack
327 mov r13, #MODE_SVC @ prepare SVC-Mode
328 @ msr spsr_c, r13
329 msr spsr, r13 @ switch modes, make sure moves will execute
330 mov lr, pc @ capture return pc
331 movs pc, lr @ jump to next instruction & switch modes.
332 .endm
333
334 .macro get_irq_stack @ setup IRQ stack
335 ldr sp, IRQ_STACK_START
336 .endm
337
338 .macro get_fiq_stack @ setup FIQ stack
339 ldr sp, FIQ_STACK_START
340 .endm
Aneesh V552a3192011-07-13 05:11:07 +0000341#endif /* CONFIG_SPL_BUILD */
wdenk7eaacc52003-08-29 22:00:43 +0000342
343/*
344 * exception handlers
345 */
Aneesh V552a3192011-07-13 05:11:07 +0000346#ifdef CONFIG_SPL_BUILD
John Rigbya9f3cf52010-01-25 23:12:52 -0700347 .align 5
348do_hang:
349 ldr sp, _TEXT_BASE /* switch to abort stack */
3501:
351 bl 1b /* hang and never return */
Aneesh V552a3192011-07-13 05:11:07 +0000352#else /* !CONFIG_SPL_BUILD */
wdenk7eaacc52003-08-29 22:00:43 +0000353 .align 5
354undefined_instruction:
355 get_bad_stack
356 bad_save_user_regs
357 bl do_undefined_instruction
358
359 .align 5
360software_interrupt:
361 get_bad_stack
362 bad_save_user_regs
363 bl do_software_interrupt
364
365 .align 5
366prefetch_abort:
367 get_bad_stack
368 bad_save_user_regs
369 bl do_prefetch_abort
370
371 .align 5
372data_abort:
373 get_bad_stack
374 bad_save_user_regs
375 bl do_data_abort
376
377 .align 5
378not_used:
379 get_bad_stack
380 bad_save_user_regs
381 bl do_not_used
382
383#ifdef CONFIG_USE_IRQ
384
385 .align 5
386irq:
387 get_irq_stack
388 irq_save_user_regs
Wolfgang Denka1be4762008-05-20 16:00:29 +0200389 bl do_irq
wdenk7eaacc52003-08-29 22:00:43 +0000390 irq_restore_user_regs
391
392 .align 5
393fiq:
394 get_fiq_stack
395 /* someone ought to write a more effiction fiq_save_user_regs */
396 irq_save_user_regs
Wolfgang Denka1be4762008-05-20 16:00:29 +0200397 bl do_fiq
wdenk7eaacc52003-08-29 22:00:43 +0000398 irq_restore_user_regs
399
400#else
401
402 .align 5
403irq:
404 get_bad_stack
405 bad_save_user_regs
406 bl do_irq
407
408 .align 5
409fiq:
410 get_bad_stack
411 bad_save_user_regs
412 bl do_fiq
413
414#endif
Aneesh V552a3192011-07-13 05:11:07 +0000415#endif /* CONFIG_SPL_BUILD */