2006-09-18 22:10:26 +00:00
|
|
|
/*
|
|
|
|
* include/asm-arm/arch-iop32x/entry-macro.S
|
|
|
|
*
|
|
|
|
* Low-level IRQ helper macros for IOP32x-based platforms
|
|
|
|
*
|
2006-09-18 22:26:25 +00:00
|
|
|
* This file is licensed under the terms of the GNU General Public
|
2006-09-18 22:10:26 +00:00
|
|
|
* License version 2. This program is licensed "as is" without any
|
|
|
|
* warranty of any kind, whether express or implied.
|
|
|
|
*/
|
2006-09-18 22:26:25 +00:00
|
|
|
#include <asm/arch/iop32x.h>
|
2006-09-18 22:10:26 +00:00
|
|
|
|
2006-09-18 22:26:25 +00:00
|
|
|
.macro disable_fiq
|
2006-09-18 22:10:26 +00:00
|
|
|
.endm
|
|
|
|
|
2006-09-18 22:26:25 +00:00
|
|
|
.macro get_irqnr_and_base, irqnr, irqstat, base, tmp
|
2006-09-18 22:21:38 +00:00
|
|
|
ldr \base, =IOP3XX_REG_ADDR(0x07D8)
|
|
|
|
ldr \irqstat, [\base] @ Read IINTSRC
|
2006-09-18 22:24:10 +00:00
|
|
|
cmp \irqstat, #0
|
|
|
|
clzne \irqnr, \irqstat
|
|
|
|
rsbne \irqnr, \irqnr, #31
|
2006-09-18 22:10:26 +00:00
|
|
|
.endm
|