]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/asm-blackfin/mach-common/bits/trace.h
Replace "#include <asm-$ARCH/$FILE>" with "#include <asm/$FILE>"
[people/ms/u-boot.git] / include / asm-blackfin / 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