blob: 02a25354e926a15dd5ed453d91174b03dae29cbf [file] [log] [blame]
Dirk Behme7d75a102008-12-14 09:47:13 +01001/*
2 * armboot - Startup Code for OMAP3530/ARM Cortex CPU-core
3 *
4 * Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
5 *
6 * 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>
Dirk Behme7d75a102008-12-14 09:47:13 +01009 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
10 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
11 * Copyright (c) 2006-2008 Syed Mohammed Khasim <x0khasim@ti.com>
12 *
13 * See file CREDITS for list of people who contributed to this
14 * project.
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
19 * the License, or (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
30 */
31
Wolfgang Denk0191e472010-10-26 14:34:52 +020032#include <asm-offsets.h>
Dirk Behme7d75a102008-12-14 09:47:13 +010033#include <config.h>
34#include <version.h>
35
36.globl _start
37_start: b reset
38 ldr pc, _undefined_instruction
39 ldr pc, _software_interrupt
40 ldr pc, _prefetch_abort
41 ldr pc, _data_abort
42 ldr pc, _not_used
43 ldr pc, _irq
44 ldr pc, _fiq
Aneesh Vef0f76e2011-07-21 09:10:18 -040045#ifdef CONFIG_SPL_BUILD
46_undefined_instruction: .word _undefined_instruction
47_software_interrupt: .word _software_interrupt
48_prefetch_abort: .word _prefetch_abort
49_data_abort: .word _data_abort
50_not_used: .word _not_used
51_irq: .word _irq
52_fiq: .word _fiq
53_pad: .word 0x12345678 /* now 16*4=64 */
54#else
Dirk Behme7d75a102008-12-14 09:47:13 +010055_undefined_instruction: .word undefined_instruction
56_software_interrupt: .word software_interrupt
57_prefetch_abort: .word prefetch_abort
58_data_abort: .word data_abort
59_not_used: .word not_used
60_irq: .word irq
61_fiq: .word fiq
62_pad: .word 0x12345678 /* now 16*4=64 */
Aneesh Vef0f76e2011-07-21 09:10:18 -040063#endif /* CONFIG_SPL_BUILD */
64
Dirk Behme7d75a102008-12-14 09:47:13 +010065.global _end_vect
66_end_vect:
67
68 .balignl 16,0xdeadbeef
69/*************************************************************************
70 *
71 * Startup Code (reset vector)
72 *
73 * do important init only if we don't start from memory!
74 * setup Memory and board specific bits prior to relocation.
75 * relocate armboot to ram
76 * setup stack
77 *
78 *************************************************************************/
79
Heiko Schocher56d0a4d2010-09-17 13:10:41 +020080.globl _TEXT_BASE
Dirk Behme7d75a102008-12-14 09:47:13 +010081_TEXT_BASE:
Wolfgang Denk0708bc62010-10-07 21:51:12 +020082 .word CONFIG_SYS_TEXT_BASE
Dirk Behme7d75a102008-12-14 09:47:13 +010083
Tom Warren112a1882011-04-14 12:18:06 +000084#ifdef CONFIG_TEGRA2
85/*
86 * Tegra2 uses 2 separate CPUs - the AVP (ARM7TDMI) and the CPU (dual A9s).
87 * U-Boot runs on the AVP first, setting things up for the CPU (PLLs,
88 * muxes, clocks, clamps, etc.). Then the AVP halts, and expects the CPU
89 * to pick up its reset vector, which points here.
90 */
91.globl _armboot_start
92_armboot_start:
Wolfgang Denk80f70212011-05-19 22:21:41 +020093 .word _start
Tom Warren112a1882011-04-14 12:18:06 +000094#endif
95
Dirk Behme7d75a102008-12-14 09:47:13 +010096/*
97 * These are defined in the board-specific linker script.
98 */
Heiko Schocher661a29e2010-10-11 14:08:15 +020099.globl _bss_start_ofs
100_bss_start_ofs:
101 .word __bss_start - _start
Dirk Behme7d75a102008-12-14 09:47:13 +0100102
Aneesh Vef0f76e2011-07-21 09:10:18 -0400103.global _image_copy_end_ofs
104_image_copy_end_ofs:
105 .word __image_copy_end - _start
106
Heiko Schocher661a29e2010-10-11 14:08:15 +0200107.globl _bss_end_ofs
108_bss_end_ofs:
Po-Yu Chuangcedbf4b2011-03-01 22:59:59 +0000109 .word __bss_end__ - _start
Dirk Behme7d75a102008-12-14 09:47:13 +0100110
Po-Yu Chuang1864b002011-03-01 23:02:04 +0000111.globl _end_ofs
112_end_ofs:
113 .word _end - _start
114
Dirk Behme7d75a102008-12-14 09:47:13 +0100115#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
126
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200127/* IRQ stack memory (calculated at run-time) + 8 bytes */
128.globl IRQ_STACK_START_IN
129IRQ_STACK_START_IN:
130 .word 0x0badc0de
131
Dirk Behme7d75a102008-12-14 09:47:13 +0100132/*
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
Luca Ceresolic1164af2011-04-19 09:47:21 -0400145#if defined(CONFIG_OMAP34XX)
Dirk Behme7d75a102008-12-14 09:47:13 +0100146 /* Copy vectors to mask ROM indirect addr */
147 adr r0, _start @ r0 <- current position of code
148 add r0, r0, #4 @ skip reset vector
149 mov r2, #64 @ r2 <- size to copy
150 add r2, r0, r2 @ r2 <- source end address
151 mov r1, #SRAM_OFFSET0 @ build vect addr
152 mov r3, #SRAM_OFFSET1
153 add r1, r1, r3
154 mov r3, #SRAM_OFFSET2
155 add r1, r1, r3
156next:
157 ldmia r0!, {r3 - r10} @ copy from source address [r0]
158 stmia r1!, {r3 - r10} @ copy to target address [r1]
159 cmp r0, r2 @ until source end address [r2]
160 bne next @ loop until equal */
161#if !defined(CONFIG_SYS_NAND_BOOT) && !defined(CONFIG_SYS_ONENAND_BOOT)
162 /* No need to copy/exec the clock code - DPLL adjust already done
163 * in NAND/oneNAND Boot.
164 */
165 bl cpy_clk_code @ put dpll adjust code behind vectors
166#endif /* NAND Boot */
167#endif
168 /* the mask ROM code should have PLL and others stable */
169#ifndef CONFIG_SKIP_LOWLEVEL_INIT
170 bl cpu_init_crit
171#endif
172
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200173/* Set stackpointer in internal RAM to call board_init_f */
174call_board_init_f:
175 ldr sp, =(CONFIG_SYS_INIT_SP_ADDR)
Heiko Schocher17f288a2010-11-12 07:53:55 +0100176 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200177 ldr r0,=0x00000000
178 bl board_init_f
179
180/*------------------------------------------------------------------------------*/
181
182/*
183 * void relocate_code (addr_sp, gd, addr_moni)
184 *
185 * This "function" does not return, instead it continues in RAM
186 * after relocating the monitor code.
187 *
188 */
189 .globl relocate_code
190relocate_code:
191 mov r4, r0 /* save addr_sp */
192 mov r5, r1 /* save addr of gd */
193 mov r6, r2 /* save addr of destination */
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200194
195 /* Set up the stack */
196stack_setup:
197 mov sp, r4
198
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200199 adr r0, _start
Andreas Bießmann2003d8c2010-12-01 00:58:36 +0100200 cmp r0, r6
Aneesh Vef0f76e2011-07-21 09:10:18 -0400201 moveq r9, #0 /* no relocation. relocation offset(r9) = 0 */
Andreas Bießmann2003d8c2010-12-01 00:58:36 +0100202 beq clear_bss /* skip relocation */
Andreas Bießmann007b38f2010-12-01 00:58:34 +0100203 mov r1, r6 /* r1 <- scratch for copy_loop */
Aneesh Vef0f76e2011-07-21 09:10:18 -0400204 ldr r3, _image_copy_end_ofs
Andreas Bießmann007b38f2010-12-01 00:58:34 +0100205 add r2, r0, r3 /* r2 <- source end address */
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200206
207copy_loop:
208 ldmia r0!, {r9-r10} /* copy from source address [r0] */
Andreas Bießmann8cfbda92010-12-01 00:58:33 +0100209 stmia r1!, {r9-r10} /* copy to target address [r1] */
Albert Aribaud0668d162010-10-05 16:06:39 +0200210 cmp r0, r2 /* until source end address [r2] */
211 blo copy_loop
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200212
Aneesh V552a3192011-07-13 05:11:07 +0000213#ifndef CONFIG_SPL_BUILD
Heiko Schocher661a29e2010-10-11 14:08:15 +0200214 /*
215 * fix .rel.dyn relocations
216 */
217 ldr r0, _TEXT_BASE /* r0 <- Text base */
Andreas Bießmann8cfbda92010-12-01 00:58:33 +0100218 sub r9, r6, r0 /* r9 <- relocation offset */
Heiko Schocher661a29e2010-10-11 14:08:15 +0200219 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
220 add r10, r10, r0 /* r10 <- sym table in FLASH */
221 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
222 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
223 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
224 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200225fixloop:
Gray Remlinea4b2c82010-10-24 16:18:31 +0100226 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
227 add r0, r0, r9 /* r0 <- location to fix up in RAM */
Heiko Schocher661a29e2010-10-11 14:08:15 +0200228 ldr r1, [r2, #4]
Andreas Bießmann318cea12010-12-01 00:58:35 +0100229 and r7, r1, #0xff
230 cmp r7, #23 /* relative fixup? */
Heiko Schocher661a29e2010-10-11 14:08:15 +0200231 beq fixrel
Andreas Bießmann318cea12010-12-01 00:58:35 +0100232 cmp r7, #2 /* absolute fixup? */
Heiko Schocher661a29e2010-10-11 14:08:15 +0200233 beq fixabs
234 /* ignore unknown type of fixup */
235 b fixnext
236fixabs:
237 /* absolute fix: set location to (offset) symbol value */
238 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
239 add r1, r10, r1 /* r1 <- address of symbol in table */
240 ldr r1, [r1, #4] /* r1 <- symbol value */
Wolfgang Denk899cdd12010-12-09 11:26:24 +0100241 add r1, r1, r9 /* r1 <- relocated sym addr */
Heiko Schocher661a29e2010-10-11 14:08:15 +0200242 b fixnext
243fixrel:
244 /* relative fix: increase location by offset */
245 ldr r1, [r0]
246 add r1, r1, r9
247fixnext:
248 str r1, [r0]
Gray Remlinea4b2c82010-10-24 16:18:31 +0100249 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200250 cmp r2, r3
Heiko Schocher661a29e2010-10-11 14:08:15 +0200251 blo fixloop
Aneesh Vef0f76e2011-07-21 09:10:18 -0400252 b clear_bss
253_rel_dyn_start_ofs:
254 .word __rel_dyn_start - _start
255_rel_dyn_end_ofs:
256 .word __rel_dyn_end - _start
257_dynsym_start_ofs:
258 .word __dynsym_start - _start
259
260#endif /* #ifndef CONFIG_SPL_BUILD */
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200261
262clear_bss:
Aneesh Vef0f76e2011-07-21 09:10:18 -0400263#ifdef CONFIG_SPL_BUILD
264 /* No relocation for SPL */
265 ldr r0, =__bss_start
266 ldr r1, =__bss_end__
267#else
Heiko Schocher661a29e2010-10-11 14:08:15 +0200268 ldr r0, _bss_start_ofs
269 ldr r1, _bss_end_ofs
Andreas Bießmann8cfbda92010-12-01 00:58:33 +0100270 mov r4, r6 /* reloc addr */
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200271 add r0, r0, r4
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200272 add r1, r1, r4
Aneesh Vef0f76e2011-07-21 09:10:18 -0400273#endif
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200274 mov r2, #0x00000000 /* clear */
275
276clbss_l:str r2, [r0] /* clear loop... */
277 add r0, r0, #4
278 cmp r0, r1
279 bne clbss_l
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200280
281/*
282 * We are done. Do not return, instead branch to second part of board
283 * initialization, now running from RAM.
284 */
285jump_2_ram:
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000286/*
287 * If I-cache is enabled invalidate it
288 */
289#ifndef CONFIG_SYS_ICACHE_OFF
290 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
291 mcr p15, 0, r0, c7, c10, 4 @ DSB
292 mcr p15, 0, r0, c7, c5, 4 @ ISB
293#endif
Heiko Schocher661a29e2010-10-11 14:08:15 +0200294 ldr r0, _board_init_r_ofs
295 adr r1, _start
Darius Augulis50a0a9c2010-10-25 13:45:35 +0300296 add lr, r0, r1
Darius Augulis50a0a9c2010-10-25 13:45:35 +0300297 add lr, lr, r9
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200298 /* setup parameters for board_init_r */
299 mov r0, r5 /* gd_t */
Andreas Bießmann8cfbda92010-12-01 00:58:33 +0100300 mov r1, r6 /* dest_addr */
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200301 /* jump to it ... */
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200302 mov pc, lr
303
Heiko Schocher661a29e2010-10-11 14:08:15 +0200304_board_init_r_ofs:
305 .word board_init_r - _start
306
Heiko Schocher661a29e2010-10-11 14:08:15 +0200307
Rob Herringa6932872011-06-28 05:39:38 +0000308#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Dirk Behme7d75a102008-12-14 09:47:13 +0100309/*************************************************************************
310 *
311 * CPU_init_critical registers
312 *
313 * setup important registers
314 * setup memory timing
315 *
316 *************************************************************************/
317cpu_init_crit:
318 /*
319 * Invalidate L1 I/D
320 */
321 mov r0, #0 @ set up for MCR
322 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
323 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000324 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
325 mcr p15, 0, r0, c7, c10, 4 @ DSB
326 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme7d75a102008-12-14 09:47:13 +0100327
328 /*
329 * disable MMU stuff and caches
330 */
331 mrc p15, 0, r0, c1, c0, 0
332 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
333 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
334 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000335 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
336#ifdef CONFIG_SYS_ICACHE_OFF
337 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
338#else
339 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
340#endif
Dirk Behme7d75a102008-12-14 09:47:13 +0100341 mcr p15, 0, r0, c1, c0, 0
342
343 /*
344 * Jump to board specific initialization...
345 * The Mask ROM will have already initialized
346 * basic memory. Go here to bump up clock rate and handle
347 * wake up conditions.
348 */
349 mov ip, lr @ persevere link reg across call
350 bl lowlevel_init @ go setup pll,mux,memory
351 mov lr, ip @ restore link
352 mov pc, lr @ back to my caller
Rob Herringa6932872011-06-28 05:39:38 +0000353#endif
Aneesh Vef0f76e2011-07-21 09:10:18 -0400354
355#ifndef CONFIG_SPL_BUILD
Dirk Behme7d75a102008-12-14 09:47:13 +0100356/*
357 *************************************************************************
358 *
359 * Interrupt handling
360 *
361 *************************************************************************
362 */
363@
364@ IRQ stack frame.
365@
366#define S_FRAME_SIZE 72
367
368#define S_OLD_R0 68
369#define S_PSR 64
370#define S_PC 60
371#define S_LR 56
372#define S_SP 52
373
374#define S_IP 48
375#define S_FP 44
376#define S_R10 40
377#define S_R9 36
378#define S_R8 32
379#define S_R7 28
380#define S_R6 24
381#define S_R5 20
382#define S_R4 16
383#define S_R3 12
384#define S_R2 8
385#define S_R1 4
386#define S_R0 0
387
388#define MODE_SVC 0x13
389#define I_BIT 0x80
390
391/*
392 * use bad_save_user_regs for abort/prefetch/undef/swi ...
393 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
394 */
395
396 .macro bad_save_user_regs
397 sub sp, sp, #S_FRAME_SIZE @ carve out a frame on current
398 @ user stack
399 stmia sp, {r0 - r12} @ Save user registers (now in
400 @ svc mode) r0-r12
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200401 ldr r2, IRQ_STACK_START_IN @ set base 2 words into abort
Dirk Behme7d75a102008-12-14 09:47:13 +0100402 @ stack
403 ldmia r2, {r2 - r3} @ get values for "aborted" pc
404 @ and cpsr (into parm regs)
405 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
406
407 add r5, sp, #S_SP
408 mov r1, lr
409 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
410 mov r0, sp @ save current stack into r0
411 @ (param register)
412 .endm
413
414 .macro irq_save_user_regs
415 sub sp, sp, #S_FRAME_SIZE
416 stmia sp, {r0 - r12} @ Calling r0-r12
417 add r8, sp, #S_PC @ !! R8 NEEDS to be saved !!
418 @ a reserved stack spot would
419 @ be good.
420 stmdb r8, {sp, lr}^ @ Calling SP, LR
421 str lr, [r8, #0] @ Save calling PC
422 mrs r6, spsr
423 str r6, [r8, #4] @ Save CPSR
424 str r0, [r8, #8] @ Save OLD_R0
425 mov r0, sp
426 .endm
427
428 .macro irq_restore_user_regs
429 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
430 mov r0, r0
431 ldr lr, [sp, #S_PC] @ Get PC
432 add sp, sp, #S_FRAME_SIZE
433 subs pc, lr, #4 @ return & move spsr_svc into
434 @ cpsr
435 .endm
436
437 .macro get_bad_stack
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200438 ldr r13, IRQ_STACK_START_IN @ setup our mode stack (enter
439 @ in banked mode)
Dirk Behme7d75a102008-12-14 09:47:13 +0100440
441 str lr, [r13] @ save caller lr in position 0
442 @ of saved stack
443 mrs lr, spsr @ get the spsr
444 str lr, [r13, #4] @ save spsr in position 1 of
445 @ saved stack
446
447 mov r13, #MODE_SVC @ prepare SVC-Mode
448 @ msr spsr_c, r13
449 msr spsr, r13 @ switch modes, make sure
450 @ moves will execute
451 mov lr, pc @ capture return pc
452 movs pc, lr @ jump to next instruction &
453 @ switch modes.
454 .endm
455
456 .macro get_bad_stack_swi
457 sub r13, r13, #4 @ space on current stack for
458 @ scratch reg.
459 str r0, [r13] @ save R0's value.
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200460 ldr r0, IRQ_STACK_START_IN @ get data regions start
Dirk Behme7d75a102008-12-14 09:47:13 +0100461 @ spots for abort stack
462 str lr, [r0] @ save caller lr in position 0
463 @ of saved stack
464 mrs r0, spsr @ get the spsr
465 str lr, [r0, #4] @ save spsr in position 1 of
466 @ saved stack
467 ldr r0, [r13] @ restore r0
468 add r13, r13, #4 @ pop stack entry
469 .endm
470
471 .macro get_irq_stack @ setup IRQ stack
472 ldr sp, IRQ_STACK_START
473 .endm
474
475 .macro get_fiq_stack @ setup FIQ stack
476 ldr sp, FIQ_STACK_START
477 .endm
478
479/*
480 * exception handlers
481 */
482 .align 5
483undefined_instruction:
484 get_bad_stack
485 bad_save_user_regs
486 bl do_undefined_instruction
487
488 .align 5
489software_interrupt:
490 get_bad_stack_swi
491 bad_save_user_regs
492 bl do_software_interrupt
493
494 .align 5
495prefetch_abort:
496 get_bad_stack
497 bad_save_user_regs
498 bl do_prefetch_abort
499
500 .align 5
501data_abort:
502 get_bad_stack
503 bad_save_user_regs
504 bl do_data_abort
505
506 .align 5
507not_used:
508 get_bad_stack
509 bad_save_user_regs
510 bl do_not_used
511
512#ifdef CONFIG_USE_IRQ
513
514 .align 5
515irq:
516 get_irq_stack
517 irq_save_user_regs
518 bl do_irq
519 irq_restore_user_regs
520
521 .align 5
522fiq:
523 get_fiq_stack
524 /* someone ought to write a more effective fiq_save_user_regs */
525 irq_save_user_regs
526 bl do_fiq
527 irq_restore_user_regs
528
529#else
530
531 .align 5
532irq:
533 get_bad_stack
534 bad_save_user_regs
535 bl do_irq
536
537 .align 5
538fiq:
539 get_bad_stack
540 bad_save_user_regs
541 bl do_fiq
542
Aneesh Vef0f76e2011-07-21 09:10:18 -0400543#endif /* CONFIG_USE_IRQ */
544#endif /* CONFIG_SPL_BUILD */