blob: 13e2134ab323d5585d968d764a53aa9fc3db6d75 [file] [log] [blame]
Mike Frysingerd4d77302008-02-04 19:26:55 -05001/*
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