blob: 5a526afb5f1858615ec02928f2e2010b3a25982d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_ARM_IRQ_H
2#define __ASM_ARM_IRQ_H
3
Russell Kinga09e64f2008-08-05 16:14:15 +01004#include <mach/irqs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
6#ifndef irq_canonicalize
7#define irq_canonicalize(i) (i)
8#endif
9
eric miao354e6f72010-06-25 09:46:09 +010010#define NR_IRQS_LEGACY 16
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012/*
13 * Use this value to indicate lack of interrupt
14 * capability
15 */
16#ifndef NO_IRQ
17#define NO_IRQ ((unsigned int)(-1))
18#endif
19
Arnaud Patard431d2cd2006-12-27 22:56:44 +010020#ifndef __ASSEMBLY__
21struct irqaction;
viresh kumaraedceb22010-03-29 05:29:57 +010022struct pt_regs;
Russell Kinga054a812005-11-02 22:24:33 +000023extern void migrate_irqs(void);
Russell King446616d2008-09-06 10:56:27 +010024
25extern void asm_do_IRQ(unsigned int, struct pt_regs *);
Russell King - ARM Linuxa4841e32011-07-11 22:25:43 +010026void handle_IRQ(unsigned int, struct pt_regs *);
Russell King446616d2008-09-06 10:56:27 +010027void init_IRQ(void);
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#endif
30
Arnaud Patard431d2cd2006-12-27 22:56:44 +010031#endif
32