Mike Frysinger | 66c4cf4 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 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 |