source: rtems/c/src/lib/libbsp/mips/csb350/include/irq.h @ 0c0181d

4.115
Last change on this file since 0c0181d was 0c0181d, checked in by Jennifer Averett <jennifer.averett@…>, on 04/04/12 at 13:39:46

PR 1993 - Convert MIPS to PIC IRQ model

  • Property mode set to 100644
File size: 5.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.com/license/LICENSE.
16 *
17 *  $Id$
18 */
19
20#ifndef LIBBSP_MIPS_AU1X00_IRQ_H
21#define LIBBSP_MIPS_AU1X00_IRQ_H
22
23#ifndef ASM
24  #include <rtems.h>
25  #include <rtems/irq.h>
26  #include <rtems/irq-extension.h>
27  #include <rtems/score/mips.h>
28#endif
29
30/**
31 * @addtogroup bsp_interrupt
32 *
33 * @{
34 */
35
36/*
37 *  Interrupt Vector Numbers
38 *
39 */
40/* MIPS_INTERRUPT_BASE should be 32 (0x20) */
41#define BSP_INTERRUPT_VECTOR_MIN      0
42#define AU1X00_IRQ_SW0                (MIPS_INTERRUPT_BASE + 0)
43#define AU1X00_IRQ_SW1                (MIPS_INTERRUPT_BASE + 1)
44#define AU1X00_IRQ_IC0_REQ0           (MIPS_INTERRUPT_BASE + 2)
45#define AU1X00_IRQ_IC0_REQ1           (MIPS_INTERRUPT_BASE + 3)
46#define AU1X00_IRQ_IC1_REQ0           (MIPS_INTERRUPT_BASE + 4)
47#define AU1X00_IRQ_IC1_REQ1           (MIPS_INTERRUPT_BASE + 5)
48#define AU1X00_IRQ_PERF               (MIPS_INTERRUPT_BASE + 6)
49#define AU1X00_IRQ_CNT                (MIPS_INTERRUPT_BASE + 7)
50
51#define AU1X00_IRQ_IC0_BASE           (MIPS_INTERRUPT_BASE + 8)
52#define AU1X00_IRQ_UART0              (MIPS_INTERRUPT_BASE + 8)
53#define AU1X00_IRQ_INTA               (MIPS_INTERRUPT_BASE + 9)
54#define AU1X00_IRQ_INTB               (MIPS_INTERRUPT_BASE + 10)
55#define AU1X00_IRQ_UART3              (MIPS_INTERRUPT_BASE + 11)
56#define AU1X00_IRQ_INTC               (MIPS_INTERRUPT_BASE + 12)
57#define AU1X00_IRQ_INTD               (MIPS_INTERRUPT_BASE + 13)
58#define AU1X00_IRQ_DMA0               (MIPS_INTERRUPT_BASE + 14)
59#define AU1X00_IRQ_DMA1               (MIPS_INTERRUPT_BASE + 15)
60#define AU1X00_IRQ_DMA2               (MIPS_INTERRUPT_BASE + 16)
61#define AU1X00_IRQ_DMA3               (MIPS_INTERRUPT_BASE + 17)
62#define AU1X00_IRQ_DMA4               (MIPS_INTERRUPT_BASE + 18)
63#define AU1X00_IRQ_DMA5               (MIPS_INTERRUPT_BASE + 19)
64#define AU1X00_IRQ_DMA6               (MIPS_INTERRUPT_BASE + 20)
65#define AU1X00_IRQ_DMA7               (MIPS_INTERRUPT_BASE + 21)
66#define AU1X00_IRQ_TOY_TICK           (MIPS_INTERRUPT_BASE + 22)
67#define AU1X00_IRQ_TOY_MATCH0         (MIPS_INTERRUPT_BASE + 23)
68#define AU1X00_IRQ_TOY_MATCH1         (MIPS_INTERRUPT_BASE + 24)
69#define AU1X00_IRQ_TOY_MATCH2         (MIPS_INTERRUPT_BASE + 25)
70#define AU1X00_IRQ_RTC_TICK           (MIPS_INTERRUPT_BASE + 26)
71#define AU1X00_IRQ_RTC_MATCH0         (MIPS_INTERRUPT_BASE + 27)
72#define AU1X00_IRQ_RTC_MATCH1         (MIPS_INTERRUPT_BASE + 28)
73#define AU1X00_IRQ_RTC_MATCH2         (MIPS_INTERRUPT_BASE + 29)
74#define AU1X00_IRQ_PCI_ERR            (MIPS_INTERRUPT_BASE + 30)
75#define AU1X00_IRQ_RSV0               (MIPS_INTERRUPT_BASE + 31)
76#define AU1X00_IRQ_USB_DEV            (MIPS_INTERRUPT_BASE + 32)
77#define AU1X00_IRQ_USB_SUSPEND        (MIPS_INTERRUPT_BASE + 33)
78#define AU1X00_IRQ_USB_HOST           (MIPS_INTERRUPT_BASE + 34)
79#define AU1X00_IRQ_AC97_ACSYNC        (MIPS_INTERRUPT_BASE + 35)
80#define AU1X00_IRQ_MAC0               (MIPS_INTERRUPT_BASE + 36)
81#define AU1X00_IRQ_MAC1               (MIPS_INTERRUPT_BASE + 37)
82#define AU1X00_IRQ_RSV1               (MIPS_INTERRUPT_BASE + 38)
83#define AU1X00_IRQ_AC97_CMD           (MIPS_INTERRUPT_BASE + 39)
84
85#define AU1X00_IRQ_IC1_BASE           (MIPS_INTERRUPT_BASE + 40)
86#define AU1X00_IRQ_GPIO0              (MIPS_INTERRUPT_BASE + 40)
87#define AU1X00_IRQ_GPIO1              (MIPS_INTERRUPT_BASE + 41)
88#define AU1X00_IRQ_GPIO2              (MIPS_INTERRUPT_BASE + 42)
89#define AU1X00_IRQ_GPIO3              (MIPS_INTERRUPT_BASE + 43)
90#define AU1X00_IRQ_GPIO4              (MIPS_INTERRUPT_BASE + 44)
91#define AU1X00_IRQ_GPIO5              (MIPS_INTERRUPT_BASE + 45)
92#define AU1X00_IRQ_GPIO6              (MIPS_INTERRUPT_BASE + 46)
93#define AU1X00_IRQ_GPIO7              (MIPS_INTERRUPT_BASE + 47)
94#define AU1X00_IRQ_GPIO8              (MIPS_INTERRUPT_BASE + 48)
95#define AU1X00_IRQ_GPIO9              (MIPS_INTERRUPT_BASE + 49)
96#define AU1X00_IRQ_GPIO10             (MIPS_INTERRUPT_BASE + 50)
97#define AU1X00_IRQ_GPIO11             (MIPS_INTERRUPT_BASE + 51)
98#define AU1X00_IRQ_GPIO12             (MIPS_INTERRUPT_BASE + 52)
99#define AU1X00_IRQ_GPIO13             (MIPS_INTERRUPT_BASE + 53)
100#define AU1X00_IRQ_GPIO14             (MIPS_INTERRUPT_BASE + 54)
101#define AU1X00_IRQ_GPIO15             (MIPS_INTERRUPT_BASE + 55)
102#define AU1X00_IRQ_GPIO200            (MIPS_INTERRUPT_BASE + 56)
103#define AU1X00_IRQ_GPIO201            (MIPS_INTERRUPT_BASE + 57)
104#define AU1X00_IRQ_GPIO202            (MIPS_INTERRUPT_BASE + 58)
105#define AU1X00_IRQ_GPIO203            (MIPS_INTERRUPT_BASE + 59)
106#define AU1X00_IRQ_GPIO20             (MIPS_INTERRUPT_BASE + 60)
107#define AU1X00_IRQ_GPIO204            (MIPS_INTERRUPT_BASE + 61)
108#define AU1X00_IRQ_GPIO205            (MIPS_INTERRUPT_BASE + 62)
109#define AU1X00_IRQ_GPIO23             (MIPS_INTERRUPT_BASE + 63)
110#define AU1X00_IRQ_GPIO24             (MIPS_INTERRUPT_BASE + 64)
111#define AU1X00_IRQ_GPIO25             (MIPS_INTERRUPT_BASE + 65)
112#define AU1X00_IRQ_GPIO26             (MIPS_INTERRUPT_BASE + 66)
113#define AU1X00_IRQ_GPIO27             (MIPS_INTERRUPT_BASE + 67)
114#define AU1X00_IRQ_GPIO28             (MIPS_INTERRUPT_BASE + 68)
115#define AU1X00_IRQ_GPIO206            (MIPS_INTERRUPT_BASE + 69)
116#define AU1X00_IRQ_GPIO207            (MIPS_INTERRUPT_BASE + 70)
117#define AU1X00_IRQ_GPIO208_215        (MIPS_INTERRUPT_BASE + 71)
118
119#define AU1X00_MAXIMUM_VECTORS        (MIPS_INTERRUPT_BASE + 72)
120
121#define BSP_INTERRUPT_VECTOR_MAX      AU1X00_MAXIMUM_VECTORS
122
123/** @} */
124
125#endif /* LIBBSP_MIPS_AU1X00_IRQ_H */
Note: See TracBrowser for help on using the repository browser.