Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[linux/fpc-iii.git] / arch / arm / mach-shmobile / include / mach / irqs.h
blobd241bfd6926de3d4f9fddaed6aa6ab19e9158383
1 #ifndef __ASM_MACH_IRQS_H
2 #define __ASM_MACH_IRQS_H
4 #include <linux/sh_intc.h>
6 /* GIC */
7 #define gic_spi(nr) ((nr) + 32)
8 #define gic_iid(nr) (nr) /* ICCIAR / interrupt ID */
10 /* INTCS */
11 #define INTCS_VECT_BASE 0x3400
12 #define INTCS_VECT(n, vect) INTC_VECT((n), INTCS_VECT_BASE + (vect))
13 #define intcs_evt2irq(evt) evt2irq(INTCS_VECT_BASE + (evt))
15 /* External IRQ pins */
16 #define IRQPIN_BASE 2000
17 #define irq_pin(nr) ((nr) + IRQPIN_BASE)
19 /* GPIO IRQ */
20 #define _GPIO_IRQ_BASE 2500
21 #define GPIO_IRQ_BASE(x) (_GPIO_IRQ_BASE + (32 * x))
22 #define GPIO_IRQ(x, y) (_GPIO_IRQ_BASE + (32 * x) + y)
24 #endif /* __ASM_MACH_IRQS_H */