]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/blackfin/include/asm/mach-common/bits/trace.h
Move architecture-specific includes to arch/$ARCH/include/asm
[karo-tx-uboot.git] / arch / blackfin / include / asm / mach-common / bits / trace.h
1 /*
2  * Trace Unit Masks
3  */
4
5 #ifndef __BFIN_PERIPHERAL_TRACE__
6 #define __BFIN_PERIPHERAL_TRACE__
7
8 /* Trace Buffer Control (TBUFCTL) Register Masks */
9 #define TBUFPWR       0x00000001
10 #define TBUFEN        0x00000002
11 #define TBUFOVF       0x00000004
12 #define CMPLB_SINGLE  0x00000008
13 #define CMPLP_DOUBLE  0x00000010
14 #define CMPLB         (CMPLB_SINGLE | CMPLP_DOUBLE)
15
16 /* Trace Buffer Status (TBUFSTAT) Register Masks */
17 #define TBUFCNT       0x0000001F
18
19 #endif