2010-02-05 12:14:49 +01:00
|
|
|
#ifndef __ASM_MACH_IRQS_H
|
|
|
|
#define __ASM_MACH_IRQS_H
|
|
|
|
|
2012-01-17 18:20:23 +01:00
|
|
|
#include <linux/sh_intc.h>
|
|
|
|
|
2010-11-17 11:59:31 +01:00
|
|
|
/* GIC */
|
|
|
|
#define gic_spi(nr) ((nr) + 32)
|
2013-02-25 10:39:44 +01:00
|
|
|
#define gic_iid(nr) (nr) /* ICCIAR / interrupt ID */
|
2010-11-17 11:59:31 +01:00
|
|
|
|
2010-03-11 06:30:30 +01:00
|
|
|
/* INTCS */
|
2012-03-28 12:22:54 +02:00
|
|
|
#define INTCS_VECT_BASE 0x3400
|
2010-03-11 06:30:30 +01:00
|
|
|
#define INTCS_VECT(n, vect) INTC_VECT((n), INTCS_VECT_BASE + (vect))
|
|
|
|
#define intcs_evt2irq(evt) evt2irq(INTCS_VECT_BASE + (evt))
|
|
|
|
|
2013-02-26 04:00:59 +01:00
|
|
|
/* External IRQ pins */
|
|
|
|
#define IRQPIN_BASE 2000
|
|
|
|
#define irq_pin(nr) ((nr) + IRQPIN_BASE)
|
|
|
|
|
2013-04-18 08:41:30 +02:00
|
|
|
/* GPIO IRQ */
|
|
|
|
#define _GPIO_IRQ_BASE 2500
|
|
|
|
#define GPIO_IRQ_BASE(x) (_GPIO_IRQ_BASE + (32 * x))
|
|
|
|
#define GPIO_IRQ(x, y) (_GPIO_IRQ_BASE + (32 * x) + y)
|
|
|
|
|
2010-02-05 12:14:49 +01:00
|
|
|
#endif /* __ASM_MACH_IRQS_H */
|