source: rtems/c/src/lib/libcpu/bfin/include/sicRegs.h @ 30abd24

4.104.114.95
Last change on this file since 30abd24 was 30abd24, checked in by Joel Sherrill <joel.sherrill@…>, on 08/15/08 at 20:18:41

2008-08-15 Allan Hessenflow <allanh@…>

  • ChangeLog?, Makefile.am, README, configure.ac, preinstall.am, cache/cache.c, cache/cache_.h, clock/clock.c, clock/rtc.c, clock/tod.h, include/bf533.h, include/bf537.h, include/cecRegs.h, include/coreTimerRegs.h, include/dmaRegs.h, include/ebiuRegs.h, include/ethernetRegs.h, include/gpioRegs.h, include/memoryRegs.h, include/mmuRegs.h, include/ppiRegs.h, include/rtcRegs.h, include/sicRegs.h, include/spiRegs.h, include/sportRegs.h, include/timerRegs.h, include/twiRegs.h, include/uartRegs.h, include/wdogRegs.h, interrupt/interrupt.c, interrupt/interrupt.h, mmu/mmu.c, mmu/mmu.h, network/ethernet.c, network/ethernet.h, serial/spi.c, serial/spi.h, serial/sport.c, serial/sport.h, serial/twi.c, serial/twi.h, serial/uart.c, serial/uart.h, timer/timer.c: New files.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*  Blackfin System Interrupt Controller Registers
2 *
3 *  Copyright (c) 2008 Kallisti Labs, Los Gatos, CA, USA
4 *             written by Allan Hessenflow <allanh@kallisti.com>
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 *
10 *  $Id$
11 */
12
13#ifndef _sicRegs_h_
14#define _sicRegs_h_
15
16/* register addresses */
17
18#define SIC_IMASK                (SIC_BASE_ADDRESS + 0x000c)
19#define SIC_IAR_BASE_ADDRESS     (SIC_BASE_ADDRESS + 0x0010)
20#define SIC_IAR_COUNT                                      4
21#define SIC_IAR_PITCH                                   0x04
22#define SIC_IAR0                 (SIC_BASE_ADDRESS + 0x0010)
23#define SIC_IAR1                 (SIC_BASE_ADDRESS + 0x0014)
24#define SIC_IAR2                 (SIC_BASE_ADDRESS + 0x0018)
25#define SIC_IAR3                 (SIC_BASE_ADDRESS + 0x001c)
26#define SIC_ISR                  (SIC_BASE_ADDRESS + 0x0020)
27#define SIC_IWR                  (SIC_BASE_ADDRESS + 0x0024)
28
29
30/* register fields */
31
32
33
34#endif /* _sicRegs_h_ */
35
Note: See TracBrowser for help on using the repository browser.