2007-05-01 02:37:19 +08:00
|
|
|
/*
|
|
|
|
* Low-level IRQ helper macros for TI DaVinci-based platforms
|
|
|
|
*
|
|
|
|
* Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
|
|
|
|
*
|
|
|
|
* 2007 (c) MontaVista Software, Inc. 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.
|
|
|
|
*/
|
2008-08-05 23:14:15 +08:00
|
|
|
#include <mach/io.h>
|
|
|
|
#include <mach/irqs.h>
|
2007-05-01 02:37:19 +08:00
|
|
|
|
|
|
|
.macro disable_fiq
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro get_irqnr_preamble, base, tmp
|
2009-04-16 03:40:00 +08:00
|
|
|
ldr \base, =davinci_intc_base
|
|
|
|
ldr \base, [\base]
|
2007-05-01 02:37:19 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro arch_ret_to_user, tmp1, tmp2
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro get_irqnr_and_base, irqnr, irqstat, base, tmp
|
|
|
|
ldr \tmp, [\base, #0x14]
|
2008-02-12 05:44:07 +08:00
|
|
|
movs \tmp, \tmp, lsr #2
|
2007-05-01 02:37:19 +08:00
|
|
|
sub \irqnr, \tmp, #1
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro irq_prio_table
|
|
|
|
.endm
|