source: rtems/c/src/lib/libcpu/bfin/bf52x/interrupt/interrupt.h @ 0c5ea9b

4.10
Last change on this file since 0c5ea9b was 0c5ea9b, checked in by Joel Sherrill <joel.sherrill@…>, on 04/20/11 at 20:19:52

2011-04-20 Rohan Kangralkar <rkangral@…>

PR 1781/bsps

  • bf52x/include: Added additional MMR.
  • bf52x/interrupt: The BF52X processors have a different System interrupt controller than present in the 53X range of processors. The 52X have 8 interrupt assignment registers. The implementation uses tables to increase predictability.
  • serial/uart.?: Added DMA based and interrupt based transfer support. The uart code used a single ISR for TX and RX and tried to identify and multiplex inside the ISR. In the new code the type of interrupt is identified by the central ISR dispatcher bf52x/interrupt or interrupt/. This simplifies the UART ISR.
  • Property mode set to 100644
File size: 5.0 KB
Line 
1/**
2 *@file interrupt.h
3 *
4 *@brief
5 *  - This file implements interrupt dispatcher. The init code is taken from
6 *  the 533 implementation for blackfin. Since 52X supports 56 line and 2 ISR
7 *  registers some portion is written twice.
8 *
9 * Target:   TLL6527v1-0
10 * Compiler:
11 *
12 * COPYRIGHT (c) 2010 by ECE Northeastern University.
13 *
14 * The license and distribution terms for this file may be
15 * found in the file LICENSE in this distribution or at
16 * http://www.rtems.com/license
17 *
18 * @author Rohan Kangralkar, ECE, Northeastern University
19 *         (kangralkar.r@husky.neu.edu)
20 *
21 * LastChange:
22 * $Id$
23 *
24 */
25
26#ifndef _BFIN_INTERRUPT_H_
27#define _BFIN_INTERRUPT_H_
28
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34/** The type of interrupts handled by the SIC
35 */
36typedef enum {
37    IRQ_PLL_WAKEUP_INTERRUPT,                 /* 0 */
38    IRQ_DMA_ERROR_0,                          /* 1 */
39    IRQ_DMAR0_BLOCK_INTERRUPT,                /* 2 */
40    IRQ_DMAR1_BLOCK_INTERRUPT,                /* 3 */
41    IRQ_DMAR0_OVERFLOW_ERROR,                 /* 4 */
42    IRQ_DMAR1_OVERFLOW_ERROR,                 /* 5 */
43    IRQ_PPI_STATUS,                           /* 6 */
44    IRQ_MAC_STATUS,                           /* 7 */
45    IRQ_SPORT0_STATUS,                        /* 8 */
46    IRQ_SPORT1_STATUS,                        /* 9 */
47    IRQ_RESERVED_10,                          /* 10 */
48    IRQ_RESERVED_11,                          /* 11 */
49    IRQ_UART0_STATUS,                         /* 12 */
50    IRQ_UART1_STATUS,                         /* 13 */
51    IRQ_REAL_TIME_CLOCK,                      /* 14 */
52    IRQ_DMA0_PPI_NFC,                         /* 15 */
53    IRQ_DMA3_SPORT0_RX,                       /* 16 */
54    IRQ_DMA4_SPORT0_TX,                       /* 17 */
55    IRQ_DMA5_SPORT1_RX,                       /* 18 */
56    IRQ_DMA6_SPORT1_TX,                       /* 19 */
57    IRQ_TWI_INTERRUPT,                        /* 20 */
58    IRQ_DMA7_SPI,                             /* 21 */
59    IRQ_DMA8_UART0_RX,                        /* 22 */
60    IRQ_DMA9_UART0_TX,                        /* 23 */
61    IRQ_DMA10_UART1_RX,                       /* 24 */
62    IRQ_DMA11_UART1_TX,                       /* 25 */
63    IRQ_OTP,                                  /* 26 */
64    IRQ_GP_COUNTER,                           /* 27 */
65    IRQ_DMA1_MAC_RX_HOSTDP,                   /* 28 */
66    IRQ_PORT_H_INTERRUPT_A,                   /* 29 */
67    IRQ_DMA2_MAC_TX_NFC,                      /* 30 */
68    IRQ_PORT_H_INTERRUPT_B,                   /* 31 */
69    SIC_ISR0_MAX,                             /* 32 ***/
70    IRQ_TIMER0 = SIC_ISR0_MAX,                /* 32 */
71    IRQ_TIMER1,                               /* 33 */
72    IRQ_TIMER2,                               /* 34 */
73    IRQ_TIMER3,                               /* 35 */
74    IRQ_TIMER4,                               /* 36 */
75    IRQ_TIMER5,                               /* 37 */
76    IRQ_TIMER6,                               /* 38 */
77    IRQ_TIMER7,                               /* 39 */
78    IRQ_PORT_G_INTERRUPT_A,                   /* 40 */
79    IRQ_PORT_G_INTERRUPT_B,                   /* 41 */
80    IRQ_MDMA0_STREAM_0_INTERRUPT,             /* 42 */
81    IRQ_MDMA1_STREAM_0_INTERRUPT,             /* 43 */
82    IRQ_SOFTWARE_WATCHDOG_INTERRUPT,          /* 44 */
83    IRQ_PORT_F_INTERRUPT_A,                   /* 45 */
84    IRQ_PORT_F_INTERRUPT_B,                   /* 46 */
85    IRQ_SPI_STATUS,                           /* 47 */
86    IRQ_NFC_STATUS,                           /* 48 */
87    IRQ_HOSTDP_STATUS,                        /* 49 */
88    IRQ_HOREAD_DONE_INTERRUPT,                /* 50 */
89    IRQ_RESERVED_19,                          /* 51 */
90    IRQ_USB_INT0_INTERRUPT,                   /* 52 */
91    IRQ_USB_INT1_INTERRUPT,                   /* 53 */
92    IRQ_USB_INT2_INTERRUPT,                   /* 54 */
93    IRQ_USB_DMAINT,                           /* 55 */
94    IRQ_MAX,                                  /* 56 */
95} e_isr_t;
96
97
98
99
100/* source is the source to the SIC (the bit number in SIC_ISR).  isr is
101   the function that will be called when the interrupt is active. */
102typedef struct bfin_isr_s {
103#if INTERRUPT_USE_TABLE
104  e_isr_t source;
105  void (*pFunc)(void *arg);
106  void *pArg;
107  int priority; /** not used */
108#else
109  int source;
110  void (*isr)(void *arg);
111  void *_arg;
112  /* the following are for internal use only */
113  uint32_t mask0;
114  uint32_t mask1;
115  uint32_t vector;
116  struct bfin_isr_s *next;
117#endif
118} bfin_isr_t;
119
120/**
121 * This routine registers a new ISR. It will write a new entry to the IVT table
122 * @param isr contains a callback function and source
123 * @return rtems status code
124 */
125rtems_status_code bfin_interrupt_register(bfin_isr_t *isr);
126
127/**
128 * This function unregisters a registered interrupt handler.
129 * @param isr
130 */
131rtems_status_code bfin_interrupt_unregister(bfin_isr_t *isr);
132
133/**
134 * blackfin interrupt initialization routine. It initializes the bfin ISR
135 * dispatcher. It will also create SIC CEC map which will be used for
136 * identifying the ISR.
137 */
138void bfin_interrupt_init(void);
139
140
141#ifdef __cplusplus
142}
143#endif
144
145#endif /* _BFIN_INTERRUPT_H_ */
146
Note: See TracBrowser for help on using the repository browser.