source: rtems/c/src/lib/libbsp/mips/rbtx4925/include/irq.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 2.6 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup bsp_interrupt
5 *
6 * @brief interrupt definitions.
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2012.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifndef LIBBSP_MIPS_TX4925_IRQ_H
19#define LIBBSP_MIPS_TX4925_IRQ_H
20
21#ifndef ASM
22  #include <rtems.h>
23  #include <rtems/irq.h>
24  #include <rtems/irq-extension.h>
25  #include <rtems/score/mips.h>
26#endif
27
28/**
29 * @addtogroup bsp_interrupt
30 *
31 * @{
32 */
33
34/*
35 *  Interrupt Vector Numbers
36 *
37 */
38#define BSP_INTERRUPT_VECTOR_MIN   0
39#define TX4925_IRQ_RSV1        MIPS_INTERRUPT_BASE+0
40#define TX4925_IRQ_WTE         MIPS_INTERRUPT_BASE+1
41#define TX4925_IRQ_INT0        MIPS_INTERRUPT_BASE+2
42#define TX4925_IRQ_INT1        MIPS_INTERRUPT_BASE+3
43#define TX4925_IRQ_INT2        MIPS_INTERRUPT_BASE+4
44#define TX4925_IRQ_INT3        MIPS_INTERRUPT_BASE+5
45#define TX4925_IRQ_INT4        MIPS_INTERRUPT_BASE+6
46#define TX4925_IRQ_INT5        MIPS_INTERRUPT_BASE+7
47#define TX4925_IRQ_INT6        MIPS_INTERRUPT_BASE+8
48#define TX4925_IRQ_INT7        MIPS_INTERRUPT_BASE+9
49#define TX4925_IRQ_RSV2        MIPS_INTERRUPT_BASE+10
50#define TX4925_IRQ_NAND        MIPS_INTERRUPT_BASE+11
51#define TX4925_IRQ_SIO0        MIPS_INTERRUPT_BASE+12
52#define TX4925_IRQ_SIO1        MIPS_INTERRUPT_BASE+13
53#define TX4925_IRQ_DMAC0       MIPS_INTERRUPT_BASE+14
54#define TX4925_IRQ_DMAC1       MIPS_INTERRUPT_BASE+15
55#define TX4925_IRQ_DMAC2       MIPS_INTERRUPT_BASE+16
56#define TX4925_IRQ_DMAC3       MIPS_INTERRUPT_BASE+17
57#define TX4925_IRQ_IRC         MIPS_INTERRUPT_BASE+18
58#define TX4925_IRQ_PDMAC       MIPS_INTERRUPT_BASE+19
59#define TX4925_IRQ_PCIC        MIPS_INTERRUPT_BASE+20
60#define TX4925_IRQ_TMR0        MIPS_INTERRUPT_BASE+21
61#define TX4925_IRQ_TMR1        MIPS_INTERRUPT_BASE+22
62#define TX4925_IRQ_TMR2        MIPS_INTERRUPT_BASE+23
63#define TX4925_IRQ_SPI         MIPS_INTERRUPT_BASE+24
64#define TX4925_IRQ_RTC         MIPS_INTERRUPT_BASE+25
65#define TX4925_IRQ_ACLC        MIPS_INTERRUPT_BASE+26
66#define TX4925_IRQ_ACLCPME     MIPS_INTERRUPT_BASE+27
67#define TX4925_IRQ_CHI         MIPS_INTERRUPT_BASE+28
68#define TX4925_IRQ_PCIERR      MIPS_INTERRUPT_BASE+29
69#define TX4925_IRQ_PCIPME      MIPS_INTERRUPT_BASE+30
70#define TX4925_IRQ_RSV3        MIPS_INTERRUPT_BASE+31
71
72#define TX4925_IRQ_SOFTWARE_1  MIPS_INTERRUPT_BASE+32
73#define TX4925_IRQ_SOFTWARE_2  MIPS_INTERRUPT_BASE+33
74#define TX4925_MAXIMUM_VECTORS MIPS_INTERRUPT_BASE+34
75
76#define BSP_INTERRUPT_VECTOR_MAX TX4925_MAXIMUM_VECTORS
77
78/** @} */
79
80#endif /* LIBBSP_MIPS_ TX4925_IRQ_H */
Note: See TracBrowser for help on using the repository browser.