source: rtems/c/src/lib/libbsp/arm/edb7312/irq/irq.h @ cfaa366

4.115
Last change on this file since cfaa366 was cfaa366, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 17:55:58

General - Remove extraneous blank line in license message

Many files had an extra blank line in the license text
found in the file header. This patch removes that line.

The script that did this also turned off execute permission
when it was turned on incorrectly.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 * Cirrus EP7312 Intererrupt handler
3 *
4 * Copyright (c) 2010 embedded brains GmbH.
5 *
6 * Copyright (c) 2002 by Jay Monkman <jtm@smoothsmoothie.com>
7 *
8 * Copyright (c) 2002 by Charlie Steader <charlies@poliac.com>
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *
15 *  $Id$
16*/
17
18#ifndef __IRQ_H__
19#define __IRQ_H__
20
21#ifndef __asm__
22
23#include <rtems.h>
24#include <rtems/irq.h>
25#include <rtems/irq-extension.h>
26
27#endif /* __asm__ */
28
29  /* int interrupt status/mask register 1 */
30#define BSP_EXTFIQ     0
31#define BSP_BLINT      1
32#define BSP_WEINT      2
33#define BSP_MCINT      3
34#define BSP_CSINT      4
35#define BSP_EINT1      5
36#define BSP_EINT2      6
37#define BSP_EINT3      7
38#define BSP_TC1OI      8
39#define BSP_TC2OI      9
40#define BSP_RTCMI     10
41#define BSP_TINT      11
42#define BSP_UTXINT1   12
43#define BSP_URXINT1   13
44#define BSP_UMSINT    14
45#define BSP_SSEOTI    15
46 /* int interrupt status/mask register 2 */
47#define BSP_KBDINT    16
48#define BSP_SS2RX     17
49#define BSP_SS2TX     18
50#define BSP_UTXINT2   19
51#define BSP_URXINT2   20
52 /* int interrupt status/mask register 3 */
53#define BSP_DAIINT    21
54#define BSP_MAX_INT   22
55
56#define BSP_INTERRUPT_VECTOR_MIN 0
57
58#define BSP_INTERRUPT_VECTOR_MAX (BSP_MAX_INT - 1)
59
60#endif /* __IRQ_H__ */
Note: See TracBrowser for help on using the repository browser.