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

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • 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#ifndef __IRQ_H__
16#define __IRQ_H__
17
18#ifndef __asm__
19
20#include <rtems.h>
21#include <rtems/irq.h>
22#include <rtems/irq-extension.h>
23
24#endif /* __asm__ */
25
26  /* int interrupt status/mask register 1 */
27#define BSP_EXTFIQ     0
28#define BSP_BLINT      1
29#define BSP_WEINT      2
30#define BSP_MCINT      3
31#define BSP_CSINT      4
32#define BSP_EINT1      5
33#define BSP_EINT2      6
34#define BSP_EINT3      7
35#define BSP_TC1OI      8
36#define BSP_TC2OI      9
37#define BSP_RTCMI     10
38#define BSP_TINT      11
39#define BSP_UTXINT1   12
40#define BSP_URXINT1   13
41#define BSP_UMSINT    14
42#define BSP_SSEOTI    15
43 /* int interrupt status/mask register 2 */
44#define BSP_KBDINT    16
45#define BSP_SS2RX     17
46#define BSP_SS2TX     18
47#define BSP_UTXINT2   19
48#define BSP_URXINT2   20
49 /* int interrupt status/mask register 3 */
50#define BSP_DAIINT    21
51#define BSP_MAX_INT   22
52
53#define BSP_INTERRUPT_VECTOR_MIN 0
54
55#define BSP_INTERRUPT_VECTOR_MAX (BSP_MAX_INT - 1)
56
57#endif /* __IRQ_H__ */
Note: See TracBrowser for help on using the repository browser.