RTEMS  5.0.0
irq.h
1 /*
2  * Copyright (c) 2010 embedded brains GmbH.
3  *
4  * Interrupt handler Header file for PXA By Yang Xi <hiyangxi@gmail.com>
5  * Copyright (c) 2004 by Jay Monkman <jtm@lopingdog.com>
6  *
7  * The license and distribution terms for this file may be
8  * found in the file LICENSE in this distribution or at
9  * http://www.rtems.org/license/LICENSE.
10  */
11 
12 #ifndef __IRQ_H__
13 #define __IRQ_H__
14 
15 #ifndef __asm__
16 
17 #include <rtems.h>
18 #include <rtems/irq.h>
19 #include <rtems/irq-extension.h>
20 
21 #include <pxa255.h>
22 
23 #define BSP_INTERRUPT_VECTOR_MIN 0
24 
25 #define BSP_INTERRUPT_VECTOR_MAX (PRIMARY_IRQS - 1)
26 
27 #endif /* __asm__ */
28 
29 #endif /* __IRQ_H__ */
Header file for the Interrupt Manager Extension.