blob: a7e0c28c9015ac9fa8a3d118eb8c9feb8e78a3ce [file] [log] [blame]
wdenkf8062712005-01-09 23:16:25 +00001/*
2 * armboot - Startup Code for OMP2420/ARM1136 CPU-core
3 *
wdenk2e405bf2005-01-10 00:01:04 +00004 * Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
wdenkf8062712005-01-09 23:16:25 +00005 *
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02006 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
7 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
Detlev Zundelf1b3f2b2009-05-13 10:54:10 +02008 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
wdenkf8062712005-01-09 23:16:25 +00009 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
10 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenk2e405bf2005-01-10 00:01:04 +000022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkf8062712005-01-09 23:16:25 +000023 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * MA 02111-1307 USA
29 */
30
Wolfgang Denk0191e472010-10-26 14:34:52 +020031#include <asm-offsets.h>
wdenkf8062712005-01-09 23:16:25 +000032#include <config.h>
33#include <version.h>
wdenkf8062712005-01-09 23:16:25 +000034.globl _start
wdenk2e405bf2005-01-10 00:01:04 +000035_start: b reset
Aneesh V552a3192011-07-13 05:11:07 +000036#ifdef CONFIG_SPL_BUILD
Kyungmin Park33174212008-01-17 16:43:25 +090037 ldr pc, _hang
38 ldr pc, _hang
39 ldr pc, _hang
40 ldr pc, _hang
41 ldr pc, _hang
42 ldr pc, _hang
43 ldr pc, _hang
44
45_hang:
46 .word do_hang
47 .word 0x12345678
48 .word 0x12345678
49 .word 0x12345678
50 .word 0x12345678
51 .word 0x12345678
52 .word 0x12345678
53 .word 0x12345678 /* now 16*4=64 */
54#else
wdenkf8062712005-01-09 23:16:25 +000055 ldr pc, _undefined_instruction
56 ldr pc, _software_interrupt
57 ldr pc, _prefetch_abort
58 ldr pc, _data_abort
59 ldr pc, _not_used
60 ldr pc, _irq
61 ldr pc, _fiq
62
wdenk2e405bf2005-01-10 00:01:04 +000063_undefined_instruction: .word undefined_instruction
wdenkf8062712005-01-09 23:16:25 +000064_software_interrupt: .word software_interrupt
65_prefetch_abort: .word prefetch_abort
66_data_abort: .word data_abort
67_not_used: .word not_used
68_irq: .word irq
69_fiq: .word fiq
wdenk2e405bf2005-01-10 00:01:04 +000070_pad: .word 0x12345678 /* now 16*4=64 */
Aneesh V552a3192011-07-13 05:11:07 +000071#endif /* CONFIG_SPL_BUILD */
wdenkf8062712005-01-09 23:16:25 +000072.global _end_vect
73_end_vect:
74
75 .balignl 16,0xdeadbeef
76/*
77 *************************************************************************
78 *
79 * Startup Code (reset vector)
80 *
81 * do important init only if we don't start from memory!
82 * setup Memory and board specific bits prior to relocation.
83 * relocate armboot to ram
84 * setup stack
85 *
86 *************************************************************************
87 */
88
Heiko Schocher504f87c2010-09-17 13:10:40 +020089.globl _TEXT_BASE
wdenkf8062712005-01-09 23:16:25 +000090_TEXT_BASE:
Benoît Thébaudeaua402da32013-04-11 09:35:42 +000091#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_TEXT_BASE)
92 .word CONFIG_SPL_TEXT_BASE
93#else
Wolfgang Denk0708bc62010-10-07 21:51:12 +020094 .word CONFIG_SYS_TEXT_BASE
Benoît Thébaudeaua402da32013-04-11 09:35:42 +000095#endif
wdenkf8062712005-01-09 23:16:25 +000096
wdenkf8062712005-01-09 23:16:25 +000097/*
98 * These are defined in the board-specific linker script.
Heiko Schocher429ddf62010-10-13 07:57:14 +020099 * Subtracting _start from them lets the linker put their
100 * relative position in the executable instead of leaving
101 * them null.
wdenkf8062712005-01-09 23:16:25 +0000102 */
Heiko Schocher429ddf62010-10-13 07:57:14 +0200103.globl _bss_start_ofs
104_bss_start_ofs:
105 .word __bss_start - _start
Heiko Schocher504f87c2010-09-17 13:10:40 +0200106
Heiko Schocher429ddf62010-10-13 07:57:14 +0200107.globl _bss_end_ofs
108_bss_end_ofs:
Simon Glassed70c8f2013-03-14 06:54:53 +0000109 .word __bss_end - _start
Heiko Schocher504f87c2010-09-17 13:10:40 +0200110
Po-Yu Chuang1864b002011-03-01 23:02:04 +0000111.globl _end_ofs
112_end_ofs:
113 .word _end - _start
114
wdenkf8062712005-01-09 23:16:25 +0000115#ifdef CONFIG_USE_IRQ
116/* IRQ stack memory (calculated at run-time) */
117.globl IRQ_STACK_START
118IRQ_STACK_START:
119 .word 0x0badc0de
120
121/* IRQ stack memory (calculated at run-time) */
122.globl FIQ_STACK_START
123FIQ_STACK_START:
124 .word 0x0badc0de
125#endif
Heiko Schocher504f87c2010-09-17 13:10:40 +0200126
Heiko Schocher504f87c2010-09-17 13:10:40 +0200127/* IRQ stack memory (calculated at run-time) + 8 bytes */
128.globl IRQ_STACK_START_IN
129IRQ_STACK_START_IN:
130 .word 0x0badc0de
Heiko Schocher504f87c2010-09-17 13:10:40 +0200131
Heiko Schocher504f87c2010-09-17 13:10:40 +0200132/*
133 * the actual reset code
134 */
135
136reset:
137 /*
138 * set the cpu to SVC32 mode
139 */
140 mrs r0,cpsr
141 bic r0,r0,#0x1f
142 orr r0,r0,#0xd3
143 msr cpsr,r0
144
Heiko Schocher504f87c2010-09-17 13:10:40 +0200145 /* the mask ROM code should have PLL and others stable */
146#ifndef CONFIG_SKIP_LOWLEVEL_INIT
147 bl cpu_init_crit
148#endif
149
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000150 bl _main
Heiko Schocher504f87c2010-09-17 13:10:40 +0200151
152/*------------------------------------------------------------------------------*/
153
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000154 .globl c_runtime_cpu_setup
155c_runtime_cpu_setup:
wdenkf8062712005-01-09 23:16:25 +0000156
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000157 bx lr
Heiko Schocher429ddf62010-10-13 07:57:14 +0200158
wdenkf8062712005-01-09 23:16:25 +0000159/*
160 *************************************************************************
161 *
162 * CPU_init_critical registers
163 *
164 * setup important registers
165 * setup memory timing
166 *
167 *************************************************************************
168 */
Magnus Lilja4133f652009-06-13 20:50:01 +0200169#ifndef CONFIG_SKIP_LOWLEVEL_INIT
wdenkf8062712005-01-09 23:16:25 +0000170cpu_init_crit:
171 /*
172 * flush v4 I/D caches
173 */
174 mov r0, #0
George G. Davis15967892010-05-11 10:15:36 -0400175 mcr p15, 0, r0, c7, c7, 0 /* Invalidate I+D+BTB caches */
176 mcr p15, 0, r0, c8, c7, 0 /* Invalidate Unified TLB */
wdenkf8062712005-01-09 23:16:25 +0000177
178 /*
179 * disable MMU stuff and caches
180 */
181 mrc p15, 0, r0, c1, c0, 0
182 bic r0, r0, #0x00002300 @ clear bits 13, 9:8 (--V- --RS)
183 bic r0, r0, #0x00000087 @ clear bits 7, 2:0 (B--- -CAM)
184 orr r0, r0, #0x00000002 @ set bit 2 (A) Align
wdenkf8062712005-01-09 23:16:25 +0000185 orr r0, r0, #0x00001000 @ set bit 12 (I) I-Cache
wdenkf8062712005-01-09 23:16:25 +0000186 mcr p15, 0, r0, c1, c0, 0
187
188 /*
wdenk2e405bf2005-01-10 00:01:04 +0000189 * Jump to board specific initialization... The Mask ROM will have already initialized
190 * basic memory. Go here to bump up clock rate and handle wake up conditions.
wdenkf8062712005-01-09 23:16:25 +0000191 */
wdenk2e405bf2005-01-10 00:01:04 +0000192 mov ip, lr /* persevere link reg across call */
Wolfgang Denk7f88a5e2005-10-06 17:08:18 +0200193 bl lowlevel_init /* go setup pll,mux,memory */
wdenk2e405bf2005-01-10 00:01:04 +0000194 mov lr, ip /* restore link */
195 mov pc, lr /* back to my caller */
Magnus Lilja4133f652009-06-13 20:50:01 +0200196#endif /* CONFIG_SKIP_LOWLEVEL_INIT */
Kyungmin Park33174212008-01-17 16:43:25 +0900197
Aneesh V552a3192011-07-13 05:11:07 +0000198#ifndef CONFIG_SPL_BUILD
wdenkf8062712005-01-09 23:16:25 +0000199/*
200 *************************************************************************
201 *
202 * Interrupt handling
203 *
204 *************************************************************************
205 */
206@
207@ IRQ stack frame.
208@
209#define S_FRAME_SIZE 72
210
211#define S_OLD_R0 68
212#define S_PSR 64
213#define S_PC 60
214#define S_LR 56
215#define S_SP 52
216
217#define S_IP 48
218#define S_FP 44
219#define S_R10 40
220#define S_R9 36
221#define S_R8 32
222#define S_R7 28
223#define S_R6 24
224#define S_R5 20
225#define S_R4 16
226#define S_R3 12
227#define S_R2 8
228#define S_R1 4
229#define S_R0 0
230
231#define MODE_SVC 0x13
232#define I_BIT 0x80
233
234/*
235 * use bad_save_user_regs for abort/prefetch/undef/swi ...
236 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
237 */
238
239 .macro bad_save_user_regs
wdenk2e405bf2005-01-10 00:01:04 +0000240 sub sp, sp, #S_FRAME_SIZE @ carve out a frame on current user stack
wdenkf8062712005-01-09 23:16:25 +0000241 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12
242
Heiko Schocher504f87c2010-09-17 13:10:40 +0200243 ldr r2, IRQ_STACK_START_IN @ set base 2 words into abort stack
wdenk2e405bf2005-01-10 00:01:04 +0000244 ldmia r2, {r2 - r3} @ get values for "aborted" pc and cpsr (into parm regs)
wdenkf8062712005-01-09 23:16:25 +0000245 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
246
247 add r5, sp, #S_SP
248 mov r1, lr
wdenk2e405bf2005-01-10 00:01:04 +0000249 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
250 mov r0, sp @ save current stack into r0 (param register)
wdenkf8062712005-01-09 23:16:25 +0000251 .endm
252
253 .macro irq_save_user_regs
254 sub sp, sp, #S_FRAME_SIZE
255 stmia sp, {r0 - r12} @ Calling r0-r12
wdenk2e405bf2005-01-10 00:01:04 +0000256 add r8, sp, #S_PC @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
257 stmdb r8, {sp, lr}^ @ Calling SP, LR
258 str lr, [r8, #0] @ Save calling PC
259 mrs r6, spsr
260 str r6, [r8, #4] @ Save CPSR
261 str r0, [r8, #8] @ Save OLD_R0
wdenkf8062712005-01-09 23:16:25 +0000262 mov r0, sp
263 .endm
264
265 .macro irq_restore_user_regs
266 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
267 mov r0, r0
268 ldr lr, [sp, #S_PC] @ Get PC
269 add sp, sp, #S_FRAME_SIZE
270 subs pc, lr, #4 @ return & move spsr_svc into cpsr
271 .endm
272
273 .macro get_bad_stack
Heiko Schocher504f87c2010-09-17 13:10:40 +0200274 ldr r13, IRQ_STACK_START_IN @ setup our mode stack (enter in banked mode)
wdenkf8062712005-01-09 23:16:25 +0000275
276 str lr, [r13] @ save caller lr in position 0 of saved stack
wdenk2e405bf2005-01-10 00:01:04 +0000277 mrs lr, spsr @ get the spsr
278 str lr, [r13, #4] @ save spsr in position 1 of saved stack
wdenkf8062712005-01-09 23:16:25 +0000279
280 mov r13, #MODE_SVC @ prepare SVC-Mode
281 @ msr spsr_c, r13
wdenk2e405bf2005-01-10 00:01:04 +0000282 msr spsr, r13 @ switch modes, make sure moves will execute
283 mov lr, pc @ capture return pc
284 movs pc, lr @ jump to next instruction & switch modes.
wdenkf8062712005-01-09 23:16:25 +0000285 .endm
286
287 .macro get_bad_stack_swi
wdenk2e405bf2005-01-10 00:01:04 +0000288 sub r13, r13, #4 @ space on current stack for scratch reg.
289 str r0, [r13] @ save R0's value.
Heiko Schocher504f87c2010-09-17 13:10:40 +0200290 ldr r0, IRQ_STACK_START_IN @ get data regions start
wdenkf8062712005-01-09 23:16:25 +0000291 str lr, [r0] @ save caller lr in position 0 of saved stack
Tetsuyuki Kobayashib023a952013-04-05 00:12:51 +0000292 mrs lr, spsr @ get the spsr
wdenk2e405bf2005-01-10 00:01:04 +0000293 str lr, [r0, #4] @ save spsr in position 1 of saved stack
Tetsuyuki Kobayashib023a952013-04-05 00:12:51 +0000294 ldr lr, [r0] @ restore lr
wdenk2e405bf2005-01-10 00:01:04 +0000295 ldr r0, [r13] @ restore r0
296 add r13, r13, #4 @ pop stack entry
wdenkf8062712005-01-09 23:16:25 +0000297 .endm
298
299 .macro get_irq_stack @ setup IRQ stack
300 ldr sp, IRQ_STACK_START
301 .endm
302
303 .macro get_fiq_stack @ setup FIQ stack
304 ldr sp, FIQ_STACK_START
305 .endm
Aneesh V552a3192011-07-13 05:11:07 +0000306#endif /* CONFIG_SPL_BUILD */
wdenkf8062712005-01-09 23:16:25 +0000307
308/*
309 * exception handlers
310 */
Aneesh V552a3192011-07-13 05:11:07 +0000311#ifdef CONFIG_SPL_BUILD
Kyungmin Park33174212008-01-17 16:43:25 +0900312 .align 5
313do_hang:
314 ldr sp, _TEXT_BASE /* use 32 words about stack */
315 bl hang /* hang and never return */
Aneesh V552a3192011-07-13 05:11:07 +0000316#else /* !CONFIG_SPL_BUILD */
wdenk2e405bf2005-01-10 00:01:04 +0000317 .align 5
wdenkf8062712005-01-09 23:16:25 +0000318undefined_instruction:
319 get_bad_stack
320 bad_save_user_regs
wdenk2e405bf2005-01-10 00:01:04 +0000321 bl do_undefined_instruction
wdenkf8062712005-01-09 23:16:25 +0000322
323 .align 5
324software_interrupt:
325 get_bad_stack_swi
326 bad_save_user_regs
wdenk2e405bf2005-01-10 00:01:04 +0000327 bl do_software_interrupt
wdenkf8062712005-01-09 23:16:25 +0000328
329 .align 5
330prefetch_abort:
331 get_bad_stack
332 bad_save_user_regs
wdenk2e405bf2005-01-10 00:01:04 +0000333 bl do_prefetch_abort
wdenkf8062712005-01-09 23:16:25 +0000334
335 .align 5
336data_abort:
337 get_bad_stack
338 bad_save_user_regs
wdenk2e405bf2005-01-10 00:01:04 +0000339 bl do_data_abort
wdenkf8062712005-01-09 23:16:25 +0000340
341 .align 5
342not_used:
343 get_bad_stack
344 bad_save_user_regs
wdenk2e405bf2005-01-10 00:01:04 +0000345 bl do_not_used
wdenkf8062712005-01-09 23:16:25 +0000346
347#ifdef CONFIG_USE_IRQ
348
349 .align 5
350irq:
351 get_irq_stack
352 irq_save_user_regs
wdenk2e405bf2005-01-10 00:01:04 +0000353 bl do_irq
wdenkf8062712005-01-09 23:16:25 +0000354 irq_restore_user_regs
355
356 .align 5
357fiq:
358 get_fiq_stack
359 /* someone ought to write a more effiction fiq_save_user_regs */
360 irq_save_user_regs
wdenk2e405bf2005-01-10 00:01:04 +0000361 bl do_fiq
wdenkf8062712005-01-09 23:16:25 +0000362 irq_restore_user_regs
363
364#else
365
366 .align 5
367irq:
368 get_bad_stack
369 bad_save_user_regs
wdenk2e405bf2005-01-10 00:01:04 +0000370 bl do_irq
wdenkf8062712005-01-09 23:16:25 +0000371
372 .align 5
373fiq:
374 get_bad_stack
375 bad_save_user_regs
wdenk2e405bf2005-01-10 00:01:04 +0000376 bl do_fiq
wdenkf8062712005-01-09 23:16:25 +0000377
378#endif
379 .align 5
380.global arm1136_cache_flush
381arm1136_cache_flush:
Aneesh Vecee9c82011-06-16 23:30:48 +0000382#if !defined(CONFIG_SYS_ICACHE_OFF)
wdenkf8062712005-01-09 23:16:25 +0000383 mcr p15, 0, r1, c7, c5, 0 @ invalidate I cache
Heiko Schocher95965b92010-09-17 13:10:32 +0200384#endif
Aneesh Vecee9c82011-06-16 23:30:48 +0000385#if !defined(CONFIG_SYS_DCACHE_OFF)
Heiko Schocher95965b92010-09-17 13:10:32 +0200386 mcr p15, 0, r1, c7, c14, 0 @ invalidate D cache
387#endif
wdenkf8062712005-01-09 23:16:25 +0000388 mov pc, lr @ back to caller
Aneesh V552a3192011-07-13 05:11:07 +0000389#endif /* CONFIG_SPL_BUILD */