123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /*
- * SYSTEM MMR REGISTER AND MEMORY MAP FOR ADSP-BF561
- *
- * Copyright 2005-2008 Analog Devices Inc.
- *
- * Licensed under the GPL-2 or later.
- */
- #ifndef __MACH_BF533_H__
- #define __MACH_BF533_H__
- #define OFFSET_(x) ((x) & 0x0000FFFF)
- /*some misc defines*/
- #define IMASK_IVG15 0x8000
- #define IMASK_IVG14 0x4000
- #define IMASK_IVG13 0x2000
- #define IMASK_IVG12 0x1000
- #define IMASK_IVG11 0x0800
- #define IMASK_IVG10 0x0400
- #define IMASK_IVG9 0x0200
- #define IMASK_IVG8 0x0100
- #define IMASK_IVG7 0x0080
- #define IMASK_IVGTMR 0x0040
- #define IMASK_IVGHW 0x0020
- /***************************/
- #define BFIN_DSUBBANKS 4
- #define BFIN_DWAYS 2
- #define BFIN_DLINES 64
- #define BFIN_ISUBBANKS 4
- #define BFIN_IWAYS 4
- #define BFIN_ILINES 32
- #define WAY0_L 0x1
- #define WAY1_L 0x2
- #define WAY01_L 0x3
- #define WAY2_L 0x4
- #define WAY02_L 0x5
- #define WAY12_L 0x6
- #define WAY012_L 0x7
- #define WAY3_L 0x8
- #define WAY03_L 0x9
- #define WAY13_L 0xA
- #define WAY013_L 0xB
- #define WAY32_L 0xC
- #define WAY320_L 0xD
- #define WAY321_L 0xE
- #define WAYALL_L 0xF
- #define DMC_ENABLE (2<<2) /*yes, 2, not 1 */
- /* IAR0 BIT FIELDS*/
- #define RTC_ERROR_BIT 0x0FFFFFFF
- #define UART_ERROR_BIT 0xF0FFFFFF
- #define SPORT1_ERROR_BIT 0xFF0FFFFF
- #define SPI_ERROR_BIT 0xFFF0FFFF
- #define SPORT0_ERROR_BIT 0xFFFF0FFF
- #define PPI_ERROR_BIT 0xFFFFF0FF
- #define DMA_ERROR_BIT 0xFFFFFF0F
- #define PLLWAKE_ERROR_BIT 0xFFFFFFFF
- /* IAR1 BIT FIELDS*/
- #define DMA7_UARTTX_BIT 0x0FFFFFFF
- #define DMA6_UARTRX_BIT 0xF0FFFFFF
- #define DMA5_SPI_BIT 0xFF0FFFFF
- #define DMA4_SPORT1TX_BIT 0xFFF0FFFF
- #define DMA3_SPORT1RX_BIT 0xFFFF0FFF
- #define DMA2_SPORT0TX_BIT 0xFFFFF0FF
- #define DMA1_SPORT0RX_BIT 0xFFFFFF0F
- #define DMA0_PPI_BIT 0xFFFFFFFF
- /* IAR2 BIT FIELDS*/
- #define WDTIMER_BIT 0x0FFFFFFF
- #define MEMDMA1_BIT 0xF0FFFFFF
- #define MEMDMA0_BIT 0xFF0FFFFF
- #define PFB_BIT 0xFFF0FFFF
- #define PFA_BIT 0xFFFF0FFF
- #define TIMER2_BIT 0xFFFFF0FF
- #define TIMER1_BIT 0xFFFFFF0F
- #define TIMER0_BIT 0xFFFFFFFF
- /********************************* EBIU Settings ************************************/
- #define AMBCTL0VAL ((CONFIG_BANK_1 << 16) | CONFIG_BANK_0)
- #define AMBCTL1VAL ((CONFIG_BANK_3 << 16) | CONFIG_BANK_2)
- #ifdef CONFIG_C_AMBEN_ALL
- #define V_AMBEN AMBEN_ALL
- #endif
- #ifdef CONFIG_C_AMBEN
- #define V_AMBEN 0x0
- #endif
- #ifdef CONFIG_C_AMBEN_B0
- #define V_AMBEN AMBEN_B0
- #endif
- #ifdef CONFIG_C_AMBEN_B0_B1
- #define V_AMBEN AMBEN_B0_B1
- #endif
- #ifdef CONFIG_C_AMBEN_B0_B1_B2
- #define V_AMBEN AMBEN_B0_B1_B2
- #endif
- #ifdef CONFIG_C_AMCKEN
- #define V_AMCKEN AMCKEN
- #else
- #define V_AMCKEN 0x0
- #endif
- #ifdef CONFIG_C_CDPRIO
- #define V_CDPRIO 0x100
- #else
- #define V_CDPRIO 0x0
- #endif
- #define AMGCTLVAL (V_AMBEN | V_AMCKEN | V_CDPRIO)
- #ifdef CONFIG_BF533
- #define CPU "BF533"
- #define CPUID 0x27a5
- #endif
- #ifdef CONFIG_BF532
- #define CPU "BF532"
- #define CPUID 0x27a5
- #endif
- #ifdef CONFIG_BF531
- #define CPU "BF531"
- #define CPUID 0x27a5
- #endif
- #ifndef CPU
- #error "Unknown CPU type - This kernel doesn't seem to be configured properly"
- #endif
- #endif /* __MACH_BF533_H__ */
|