source: rtems/c/src/lib/libbsp/mips/hurricane/include/irq.h @ 63defa58

Last change on this file since 63defa58 was 63defa58, 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: 797 bytes
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_XXX_IRQ_H
21#define LIBBSP_MIPS_XXX_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#define BSP_INTERRUPT_VECTOR_MIN    0
37#define RM5231_MAXIMUM_VECTORS      (MIPS_INTERRUPT_BASE+8)
38#define BSP_INTERRUPT_VECTOR_MAX    RM5231_MAXIMUM_VECTORS
39
40/** @} */
41
42#endif /* LIBBSP_MIPS_JMR3904_IRQ_H */
Note: See TracBrowser for help on using the repository browser.