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