blob: dcc1f831bc814a2b47fd034815091561859b7000 [file] [log] [blame]
Dirk Behme0b02b182008-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 Zundel792a09e2009-05-13 10:54:10 +02008 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
Dirk Behme0b02b182008-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 Denk25ddd1f2010-10-26 14:34:52 +020032#include <asm-offsets.h>
Dirk Behme0b02b182008-12-14 09:47:13 +010033#include <config.h>
34#include <version.h>
Aneesh Va8c68632011-11-21 23:34:00 +000035#include <asm/system.h>
Aneesh V74236ac2012-03-08 07:20:18 +000036#include <linux/linkage.h>
Dirk Behme0b02b182008-12-14 09:47:13 +010037
38.globl _start
39_start: b reset
40 ldr pc, _undefined_instruction
41 ldr pc, _software_interrupt
42 ldr pc, _prefetch_abort
43 ldr pc, _data_abort
44 ldr pc, _not_used
45 ldr pc, _irq
46 ldr pc, _fiq
Aneesh V033ca722011-07-21 09:10:18 -040047#ifdef CONFIG_SPL_BUILD
48_undefined_instruction: .word _undefined_instruction
49_software_interrupt: .word _software_interrupt
50_prefetch_abort: .word _prefetch_abort
51_data_abort: .word _data_abort
52_not_used: .word _not_used
53_irq: .word _irq
54_fiq: .word _fiq
55_pad: .word 0x12345678 /* now 16*4=64 */
56#else
Dirk Behme0b02b182008-12-14 09:47:13 +010057_undefined_instruction: .word undefined_instruction
58_software_interrupt: .word software_interrupt
59_prefetch_abort: .word prefetch_abort
60_data_abort: .word data_abort
61_not_used: .word not_used
62_irq: .word irq
63_fiq: .word fiq
64_pad: .word 0x12345678 /* now 16*4=64 */
Aneesh V033ca722011-07-21 09:10:18 -040065#endif /* CONFIG_SPL_BUILD */
66
Dirk Behme0b02b182008-12-14 09:47:13 +010067.global _end_vect
68_end_vect:
69
70 .balignl 16,0xdeadbeef
71/*************************************************************************
72 *
73 * Startup Code (reset vector)
74 *
75 * do important init only if we don't start from memory!
76 * setup Memory and board specific bits prior to relocation.
77 * relocate armboot to ram
78 * setup stack
79 *
80 *************************************************************************/
81
Heiko Schocher561142a2010-09-17 13:10:41 +020082.globl _TEXT_BASE
Dirk Behme0b02b182008-12-14 09:47:13 +010083_TEXT_BASE:
Wolfgang Denk14d0a022010-10-07 21:51:12 +020084 .word CONFIG_SYS_TEXT_BASE
Dirk Behme0b02b182008-12-14 09:47:13 +010085
Dirk Behme0b02b182008-12-14 09:47:13 +010086/*
87 * These are defined in the board-specific linker script.
88 */
Heiko Schocherc3d3a542010-10-11 14:08:15 +020089.globl _bss_start_ofs
90_bss_start_ofs:
91 .word __bss_start - _start
Dirk Behme0b02b182008-12-14 09:47:13 +010092
Aneesh V033ca722011-07-21 09:10:18 -040093.global _image_copy_end_ofs
94_image_copy_end_ofs:
95 .word __image_copy_end - _start
96
Heiko Schocherc3d3a542010-10-11 14:08:15 +020097.globl _bss_end_ofs
98_bss_end_ofs:
Po-Yu Chuang44c6e652011-03-01 22:59:59 +000099 .word __bss_end__ - _start
Dirk Behme0b02b182008-12-14 09:47:13 +0100100
Po-Yu Chuangf326cbb2011-03-01 23:02:04 +0000101.globl _end_ofs
102_end_ofs:
103 .word _end - _start
104
Dirk Behme0b02b182008-12-14 09:47:13 +0100105#ifdef CONFIG_USE_IRQ
106/* IRQ stack memory (calculated at run-time) */
107.globl IRQ_STACK_START
108IRQ_STACK_START:
109 .word 0x0badc0de
110
111/* IRQ stack memory (calculated at run-time) */
112.globl FIQ_STACK_START
113FIQ_STACK_START:
114 .word 0x0badc0de
115#endif
116
Heiko Schocher561142a2010-09-17 13:10:41 +0200117/* IRQ stack memory (calculated at run-time) + 8 bytes */
118.globl IRQ_STACK_START_IN
119IRQ_STACK_START_IN:
120 .word 0x0badc0de
121
Heiko Schocher561142a2010-09-17 13:10:41 +0200122/*
123 * the actual reset code
124 */
125
126reset:
Aneesh V8cf686e2011-07-21 09:10:27 -0400127 bl save_boot_params
Heiko Schocher561142a2010-09-17 13:10:41 +0200128 /*
129 * set the cpu to SVC32 mode
130 */
131 mrs r0, cpsr
132 bic r0, r0, #0x1f
133 orr r0, r0, #0xd3
134 msr cpsr,r0
135
Aneesh Va8c68632011-11-21 23:34:00 +0000136/*
137 * Setup vector:
138 * (OMAP4 spl TEXT_BASE is not 32 byte aligned.
139 * Continue to use ROM code vector only in OMAP4 spl)
140 */
141#if !(defined(CONFIG_OMAP44XX) && defined(CONFIG_SPL_BUILD))
142 /* Set V=0 in CP15 SCTRL register - for VBAR to point to vector */
143 mrc p15, 0, r0, c1, c0, 0 @ Read CP15 SCTRL Register
144 bic r0, #CR_V @ V = 0
145 mcr p15, 0, r0, c1, c0, 0 @ Write CP15 SCTRL Register
146
147 /* Set vector address in CP15 VBAR register */
148 ldr r0, =_start
149 mcr p15, 0, r0, c12, c0, 0 @Set VBAR
150#endif
151
Heiko Schocher561142a2010-09-17 13:10:41 +0200152 /* the mask ROM code should have PLL and others stable */
153#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Simon Glass80433c92011-11-05 03:56:51 +0000154 bl cpu_init_cp15
Heiko Schocher561142a2010-09-17 13:10:41 +0200155 bl cpu_init_crit
156#endif
157
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000158 bl _main
Heiko Schocher561142a2010-09-17 13:10:41 +0200159
160/*------------------------------------------------------------------------------*/
161
Tom Rini6507f132012-08-22 15:31:05 -0700162#ifndef CONFIG_SPL_BUILD
Heiko Schocher561142a2010-09-17 13:10:41 +0200163/*
164 * void relocate_code (addr_sp, gd, addr_moni)
165 *
166 * This "function" does not return, instead it continues in RAM
167 * after relocating the monitor code.
168 *
169 */
Aneesh V74236ac2012-03-08 07:20:18 +0000170ENTRY(relocate_code)
Heiko Schocher561142a2010-09-17 13:10:41 +0200171 mov r4, r0 /* save addr_sp */
172 mov r5, r1 /* save addr of gd */
173 mov r6, r2 /* save addr of destination */
Heiko Schocher561142a2010-09-17 13:10:41 +0200174
Heiko Schocher561142a2010-09-17 13:10:41 +0200175 adr r0, _start
Andreas Bießmannb9c50812010-12-01 00:58:36 +0100176 cmp r0, r6
Aneesh V033ca722011-07-21 09:10:18 -0400177 moveq r9, #0 /* no relocation. relocation offset(r9) = 0 */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000178 beq relocate_done /* skip relocation */
Andreas Bießmanna1a47d32010-12-01 00:58:34 +0100179 mov r1, r6 /* r1 <- scratch for copy_loop */
Aneesh V033ca722011-07-21 09:10:18 -0400180 ldr r3, _image_copy_end_ofs
Andreas Bießmanna1a47d32010-12-01 00:58:34 +0100181 add r2, r0, r3 /* r2 <- source end address */
Heiko Schocher561142a2010-09-17 13:10:41 +0200182
183copy_loop:
184 ldmia r0!, {r9-r10} /* copy from source address [r0] */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100185 stmia r1!, {r9-r10} /* copy to target address [r1] */
Albert Aribaudda90d4c2010-10-05 16:06:39 +0200186 cmp r0, r2 /* until source end address [r2] */
187 blo copy_loop
Heiko Schocher561142a2010-09-17 13:10:41 +0200188
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200189 /*
190 * fix .rel.dyn relocations
191 */
192 ldr r0, _TEXT_BASE /* r0 <- Text base */
Andreas Bießmanna78fb682010-12-01 00:58:33 +0100193 sub r9, r6, r0 /* r9 <- relocation offset */
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200194 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
195 add r10, r10, r0 /* r10 <- sym table in FLASH */
196 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
197 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
198 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
199 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
Heiko Schocher561142a2010-09-17 13:10:41 +0200200fixloop:
Gray Remlin8c0c2b92010-10-24 16:18:31 +0100201 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
202 add r0, r0, r9 /* r0 <- location to fix up in RAM */
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200203 ldr r1, [r2, #4]
Andreas Bießmann1f52d892010-12-01 00:58:35 +0100204 and r7, r1, #0xff
205 cmp r7, #23 /* relative fixup? */
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200206 beq fixrel
Andreas Bießmann1f52d892010-12-01 00:58:35 +0100207 cmp r7, #2 /* absolute fixup? */
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200208 beq fixabs
209 /* ignore unknown type of fixup */
210 b fixnext
211fixabs:
212 /* absolute fix: set location to (offset) symbol value */
213 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
214 add r1, r10, r1 /* r1 <- address of symbol in table */
215 ldr r1, [r1, #4] /* r1 <- symbol value */
Wolfgang Denk36009452010-12-09 11:26:24 +0100216 add r1, r1, r9 /* r1 <- relocated sym addr */
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200217 b fixnext
218fixrel:
219 /* relative fix: increase location by offset */
220 ldr r1, [r0]
221 add r1, r1, r9
222fixnext:
223 str r1, [r0]
Gray Remlin8c0c2b92010-10-24 16:18:31 +0100224 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
Heiko Schocher561142a2010-09-17 13:10:41 +0200225 cmp r2, r3
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200226 blo fixloop
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000227
228relocate_done:
229
230 bx lr
231
Aneesh V033ca722011-07-21 09:10:18 -0400232_rel_dyn_start_ofs:
233 .word __rel_dyn_start - _start
234_rel_dyn_end_ofs:
235 .word __rel_dyn_end - _start
236_dynsym_start_ofs:
237 .word __dynsym_start - _start
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000238ENDPROC(relocate_code)
Aneesh V033ca722011-07-21 09:10:18 -0400239
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000240#endif
Heiko Schocher561142a2010-09-17 13:10:41 +0200241
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000242ENTRY(c_runtime_cpu_setup)
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000243/*
244 * If I-cache is enabled invalidate it
245 */
246#ifndef CONFIG_SYS_ICACHE_OFF
247 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
248 mcr p15, 0, r0, c7, c10, 4 @ DSB
249 mcr p15, 0, r0, c7, c5, 4 @ ISB
250#endif
Tetsuyuki Kobayashif8b9d1d2012-06-25 02:40:57 +0000251/*
252 * Move vector table
253 */
Allen Martin00a27492012-08-31 08:30:00 +0000254#if !defined(CONFIG_TEGRA20)
Tetsuyuki Kobayashif8b9d1d2012-06-25 02:40:57 +0000255 /* Set vector address in CP15 VBAR register */
256 ldr r0, =_start
257 add r0, r0, r9
258 mcr p15, 0, r0, c12, c0, 0 @Set VBAR
Allen Martin00a27492012-08-31 08:30:00 +0000259#endif /* !Tegra20 */
Tetsuyuki Kobayashif8b9d1d2012-06-25 02:40:57 +0000260
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000261 bx lr
Heiko Schocher561142a2010-09-17 13:10:41 +0200262
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000263ENDPROC(c_runtime_cpu_setup)
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200264
Dirk Behme0b02b182008-12-14 09:47:13 +0100265/*************************************************************************
266 *
Tetsuyuki Kobayashi6f0dba82012-07-06 21:14:20 +0000267 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
268 * __attribute__((weak));
269 *
270 * Stack pointer is not yet initialized at this moment
271 * Don't save anything to stack even if compiled with -O0
272 *
273 *************************************************************************/
274ENTRY(save_boot_params)
275 bx lr @ back to my caller
276ENDPROC(save_boot_params)
277 .weak save_boot_params
278
279/*************************************************************************
280 *
Simon Glass80433c92011-11-05 03:56:51 +0000281 * cpu_init_cp15
Dirk Behme0b02b182008-12-14 09:47:13 +0100282 *
Simon Glass80433c92011-11-05 03:56:51 +0000283 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
284 * CONFIG_SYS_ICACHE_OFF is defined.
Dirk Behme0b02b182008-12-14 09:47:13 +0100285 *
286 *************************************************************************/
Aneesh V74236ac2012-03-08 07:20:18 +0000287ENTRY(cpu_init_cp15)
Dirk Behme0b02b182008-12-14 09:47:13 +0100288 /*
289 * Invalidate L1 I/D
290 */
291 mov r0, #0 @ set up for MCR
292 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
293 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000294 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
295 mcr p15, 0, r0, c7, c10, 4 @ DSB
296 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme0b02b182008-12-14 09:47:13 +0100297
298 /*
299 * disable MMU stuff and caches
300 */
301 mrc p15, 0, r0, c1, c0, 0
302 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
303 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
304 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000305 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
306#ifdef CONFIG_SYS_ICACHE_OFF
307 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
308#else
309 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
310#endif
Dirk Behme0b02b182008-12-14 09:47:13 +0100311 mcr p15, 0, r0, c1, c0, 0
Simon Glass80433c92011-11-05 03:56:51 +0000312 mov pc, lr @ back to my caller
Aneesh V74236ac2012-03-08 07:20:18 +0000313ENDPROC(cpu_init_cp15)
Simon Glass80433c92011-11-05 03:56:51 +0000314
315#ifndef CONFIG_SKIP_LOWLEVEL_INIT
316/*************************************************************************
317 *
318 * CPU_init_critical registers
319 *
320 * setup important registers
321 * setup memory timing
322 *
323 *************************************************************************/
Aneesh V74236ac2012-03-08 07:20:18 +0000324ENTRY(cpu_init_crit)
Dirk Behme0b02b182008-12-14 09:47:13 +0100325 /*
326 * Jump to board specific initialization...
327 * The Mask ROM will have already initialized
328 * basic memory. Go here to bump up clock rate and handle
329 * wake up conditions.
330 */
Benoît Thébaudeau63ee53a2012-08-10 12:05:16 +0000331 b lowlevel_init @ go setup pll,mux,memory
Aneesh V74236ac2012-03-08 07:20:18 +0000332ENDPROC(cpu_init_crit)
Rob Herring22193542011-06-28 05:39:38 +0000333#endif
Aneesh V033ca722011-07-21 09:10:18 -0400334
335#ifndef CONFIG_SPL_BUILD
Dirk Behme0b02b182008-12-14 09:47:13 +0100336/*
337 *************************************************************************
338 *
339 * Interrupt handling
340 *
341 *************************************************************************
342 */
343@
344@ IRQ stack frame.
345@
346#define S_FRAME_SIZE 72
347
348#define S_OLD_R0 68
349#define S_PSR 64
350#define S_PC 60
351#define S_LR 56
352#define S_SP 52
353
354#define S_IP 48
355#define S_FP 44
356#define S_R10 40
357#define S_R9 36
358#define S_R8 32
359#define S_R7 28
360#define S_R6 24
361#define S_R5 20
362#define S_R4 16
363#define S_R3 12
364#define S_R2 8
365#define S_R1 4
366#define S_R0 0
367
368#define MODE_SVC 0x13
369#define I_BIT 0x80
370
371/*
372 * use bad_save_user_regs for abort/prefetch/undef/swi ...
373 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
374 */
375
376 .macro bad_save_user_regs
377 sub sp, sp, #S_FRAME_SIZE @ carve out a frame on current
378 @ user stack
379 stmia sp, {r0 - r12} @ Save user registers (now in
380 @ svc mode) r0-r12
Heiko Schocher561142a2010-09-17 13:10:41 +0200381 ldr r2, IRQ_STACK_START_IN @ set base 2 words into abort
Dirk Behme0b02b182008-12-14 09:47:13 +0100382 @ stack
383 ldmia r2, {r2 - r3} @ get values for "aborted" pc
384 @ and cpsr (into parm regs)
385 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
386
387 add r5, sp, #S_SP
388 mov r1, lr
389 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
390 mov r0, sp @ save current stack into r0
391 @ (param register)
392 .endm
393
394 .macro irq_save_user_regs
395 sub sp, sp, #S_FRAME_SIZE
396 stmia sp, {r0 - r12} @ Calling r0-r12
397 add r8, sp, #S_PC @ !! R8 NEEDS to be saved !!
398 @ a reserved stack spot would
399 @ be good.
400 stmdb r8, {sp, lr}^ @ Calling SP, LR
401 str lr, [r8, #0] @ Save calling PC
402 mrs r6, spsr
403 str r6, [r8, #4] @ Save CPSR
404 str r0, [r8, #8] @ Save OLD_R0
405 mov r0, sp
406 .endm
407
408 .macro irq_restore_user_regs
409 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
410 mov r0, r0
411 ldr lr, [sp, #S_PC] @ Get PC
412 add sp, sp, #S_FRAME_SIZE
413 subs pc, lr, #4 @ return & move spsr_svc into
414 @ cpsr
415 .endm
416
417 .macro get_bad_stack
Heiko Schocher561142a2010-09-17 13:10:41 +0200418 ldr r13, IRQ_STACK_START_IN @ setup our mode stack (enter
419 @ in banked mode)
Dirk Behme0b02b182008-12-14 09:47:13 +0100420
421 str lr, [r13] @ save caller lr in position 0
422 @ of saved stack
423 mrs lr, spsr @ get the spsr
424 str lr, [r13, #4] @ save spsr in position 1 of
425 @ saved stack
426
427 mov r13, #MODE_SVC @ prepare SVC-Mode
428 @ msr spsr_c, r13
429 msr spsr, r13 @ switch modes, make sure
430 @ moves will execute
431 mov lr, pc @ capture return pc
432 movs pc, lr @ jump to next instruction &
433 @ switch modes.
434 .endm
435
436 .macro get_bad_stack_swi
437 sub r13, r13, #4 @ space on current stack for
438 @ scratch reg.
439 str r0, [r13] @ save R0's value.
Heiko Schocher561142a2010-09-17 13:10:41 +0200440 ldr r0, IRQ_STACK_START_IN @ get data regions start
Dirk Behme0b02b182008-12-14 09:47:13 +0100441 @ spots for abort stack
442 str lr, [r0] @ save caller lr in position 0
443 @ of saved stack
444 mrs r0, spsr @ get the spsr
445 str lr, [r0, #4] @ save spsr in position 1 of
446 @ saved stack
447 ldr r0, [r13] @ restore r0
448 add r13, r13, #4 @ pop stack entry
449 .endm
450
451 .macro get_irq_stack @ setup IRQ stack
452 ldr sp, IRQ_STACK_START
453 .endm
454
455 .macro get_fiq_stack @ setup FIQ stack
456 ldr sp, FIQ_STACK_START
457 .endm
458
459/*
460 * exception handlers
461 */
462 .align 5
463undefined_instruction:
464 get_bad_stack
465 bad_save_user_regs
466 bl do_undefined_instruction
467
468 .align 5
469software_interrupt:
470 get_bad_stack_swi
471 bad_save_user_regs
472 bl do_software_interrupt
473
474 .align 5
475prefetch_abort:
476 get_bad_stack
477 bad_save_user_regs
478 bl do_prefetch_abort
479
480 .align 5
481data_abort:
482 get_bad_stack
483 bad_save_user_regs
484 bl do_data_abort
485
486 .align 5
487not_used:
488 get_bad_stack
489 bad_save_user_regs
490 bl do_not_used
491
492#ifdef CONFIG_USE_IRQ
493
494 .align 5
495irq:
496 get_irq_stack
497 irq_save_user_regs
498 bl do_irq
499 irq_restore_user_regs
500
501 .align 5
502fiq:
503 get_fiq_stack
504 /* someone ought to write a more effective fiq_save_user_regs */
505 irq_save_user_regs
506 bl do_fiq
507 irq_restore_user_regs
508
509#else
510
511 .align 5
512irq:
513 get_bad_stack
514 bad_save_user_regs
515 bl do_irq
516
517 .align 5
518fiq:
519 get_bad_stack
520 bad_save_user_regs
521 bl do_fiq
522
Aneesh V033ca722011-07-21 09:10:18 -0400523#endif /* CONFIG_USE_IRQ */
524#endif /* CONFIG_SPL_BUILD */