2008-09-25 Allan Hessenflow <allanh@kallisti.com>

* clock/clock.c, include/bf533.h, include/bf537.h, include/sicRegs.h:
This commit is contained in:
Joel Sherrill
2008-09-25 20:07:47 +00:00
parent 321cce49bd
commit 44237e3c0c
5 changed files with 17 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2008-09-25 Allan Hessenflow <allanh@kallisti.com>
* clock/clock.c, include/bf533.h, include/bf537.h, include/sicRegs.h:
2008-09-06 Ralf Corsépius <ralf.corsepius@rtems.org>
* interrupt/interrupt.h, serial/spi.h, serial/twi.h, serial/uart.h:

View File

@@ -19,6 +19,9 @@
#include <libcpu/cecRegs.h>
#include <libcpu/coreTimerRegs.h>
#if (BFIN_ON_SKYEYE)
#define CLOCK_DRIVER_USE_FAST_IDLE
#endif
volatile uint32_t Clock_driver_ticks;

View File

@@ -109,6 +109,8 @@
/* System Interrupt Controller vectors */
#define SIC_IAR_COUNT 3
#define SIC_PLL_WAKEUP_VECTOR 0
#define SIC_DMA_ERROR_VECTOR 1
#define SIC_PPI_ERROR_VECTOR 2

View File

@@ -173,6 +173,8 @@
/* System Interrupt Controller vectors */
#define SIC_IAR_COUNT 4
#define SIC_PLL_WAKEUP_VECTOR 0
#define SIC_DMA_ERROR_VECTOR 1
#define SIC_DMAR0_BLOCK_DONE_VECTOR 1

View File

@@ -17,12 +17,17 @@
#define SIC_IMASK (SIC_BASE_ADDRESS + 0x000c)
#define SIC_IAR_BASE_ADDRESS (SIC_BASE_ADDRESS + 0x0010)
#define SIC_IAR_COUNT 4
#define SIC_IAR_PITCH 0x04
#define SIC_IAR0 (SIC_BASE_ADDRESS + 0x0010)
#if SIC_IAR_COUNT > 1
#define SIC_IAR1 (SIC_BASE_ADDRESS + 0x0014)
#endif
#if SIC_IAR_COUNT > 2
#define SIC_IAR2 (SIC_BASE_ADDRESS + 0x0018)
#endif
#if SIC_IAR_COUNT > 3
#define SIC_IAR3 (SIC_BASE_ADDRESS + 0x001c)
#endif
#define SIC_ISR (SIC_BASE_ADDRESS + 0x0020)
#define SIC_IWR (SIC_BASE_ADDRESS + 0x0024)