trace.h 460 B

12345678910111213141516171819
  1. /*
  2. * Trace Unit Masks
  3. */
  4. #ifndef __BFIN_PERIPHERAL_TRACE__
  5. #define __BFIN_PERIPHERAL_TRACE__
  6. /* Trace Buffer Control (TBUFCTL) Register Masks */
  7. #define TBUFPWR 0x00000001
  8. #define TBUFEN 0x00000002
  9. #define TBUFOVF 0x00000004
  10. #define CMPLB_SINGLE 0x00000008
  11. #define CMPLP_DOUBLE 0x00000010
  12. #define CMPLB (CMPLB_SINGLE | CMPLP_DOUBLE)
  13. /* Trace Buffer Status (TBUFSTAT) Register Masks */
  14. #define TBUFCNT 0x0000001F
  15. #endif