2005-04-16 22:20:36 +00:00
|
|
|
#ifndef __ASM_ARM_IRQ_H
|
|
|
|
#define __ASM_ARM_IRQ_H
|
|
|
|
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/irqs.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#ifndef irq_canonicalize
|
|
|
|
#define irq_canonicalize(i) (i)
|
|
|
|
#endif
|
|
|
|
|
2010-06-25 08:46:09 +00:00
|
|
|
#define NR_IRQS_LEGACY 16
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Use this value to indicate lack of interrupt
|
|
|
|
* capability
|
|
|
|
*/
|
|
|
|
#ifndef NO_IRQ
|
|
|
|
#define NO_IRQ ((unsigned int)(-1))
|
|
|
|
#endif
|
|
|
|
|
2006-12-27 21:56:44 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
struct irqaction;
|
2010-03-29 04:29:57 +00:00
|
|
|
struct pt_regs;
|
2005-11-02 22:24:33 +00:00
|
|
|
extern void migrate_irqs(void);
|
2008-09-06 09:56:27 +00:00
|
|
|
|
|
|
|
extern void asm_do_IRQ(unsigned int, struct pt_regs *);
|
|
|
|
void init_IRQ(void);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
|
2006-12-27 21:56:44 +00:00
|
|
|
#endif
|
|
|
|
|