You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
726 B
31 lines
726 B
17 years ago
|
/*
|
||
17 years ago
|
* arch/arm/mach-loki/include/mach/entry-macro.S
|
||
17 years ago
|
*
|
||
|
* Low-level IRQ helper macros for Marvell Loki (88RC8480) 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.
|
||
|
*/
|
||
|
|
||
17 years ago
|
#include <mach/loki.h>
|
||
17 years ago
|
|
||
|
.macro disable_fiq
|
||
|
.endm
|
||
|
|
||
|
.macro arch_ret_to_user, tmp1, tmp2
|
||
|
.endm
|
||
|
|
||
|
.macro get_irqnr_preamble, base, tmp
|
||
|
ldr \base, =IRQ_VIRT_BASE
|
||
|
.endm
|
||
|
|
||
|
.macro get_irqnr_and_base, irqnr, irqstat, base, tmp
|
||
|
ldr \irqstat, [\base, #IRQ_CAUSE_OFF]
|
||
|
ldr \tmp, [\base, #IRQ_MASK_OFF]
|
||
|
mov \irqnr, #0
|
||
|
ands \irqstat, \irqstat, \tmp
|
||
|
clzne \irqnr, \irqstat
|
||
|
rsbne \irqnr, \irqnr, #31
|
||
|
.endm
|