2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* include/asm-arm/arch-imx/entry-macro.S
|
|
|
|
*
|
|
|
|
* Low-level IRQ helper macros for iMX-based platforms
|
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public
|
|
|
|
* License version 2. This program is licensed "as is" without any
|
|
|
|
* warranty of any kind, whether express or implied.
|
|
|
|
*/
|
2006-01-03 12:39:34 -05:00
|
|
|
#include <asm/hardware.h>
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
.macro disable_fiq
|
|
|
|
.endm
|
2007-02-16 16:16:32 -05:00
|
|
|
|
|
|
|
.macro get_irqnr_preamble, base, tmp
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro arch_ret_to_user, tmp1, tmp2
|
|
|
|
.endm
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
#define AITC_NIVECSR 0x40
|
|
|
|
.macro get_irqnr_and_base, irqnr, irqstat, base, tmp
|
2007-02-12 17:34:38 -05:00
|
|
|
ldr \base, =IO_ADDRESS(IMX_AITC_BASE)
|
2005-04-16 18:20:36 -04:00
|
|
|
@ Load offset & priority of the highest priority
|
|
|
|
@ interrupt pending.
|
2007-02-12 17:34:38 -05:00
|
|
|
ldr \irqstat, [\base, #AITC_NIVECSR]
|
2005-04-16 18:20:36 -04:00
|
|
|
@ Shift off the priority leaving the offset or
|
2007-02-12 17:34:38 -05:00
|
|
|
@ "interrupt number", use arithmetic shift to
|
|
|
|
@ transform illegal source (0xffff) as -1
|
|
|
|
mov \irqnr, \irqstat, asr #16
|
|
|
|
adds \tmp, \irqnr, #1
|
2005-04-16 18:20:36 -04:00
|
|
|
.endm
|