Home | History | Annotate | Download | only in mips

Lines Matching defs:itmr

61                           16: ITMR: interval timer mode register
170 unsigned_4 itmr;
171 #define GET_ITMR_TIIE(c) (((c)->itmr & 0x8000) >> 15)
172 #define SET_ITMR_TIIE(c,v) BLIT32((c)->itmr, 15, (v) ? 1 : 0)
173 #define GET_ITMR_TZCE(c) (((c)->itmr & 0x0001) >> 0)
174 #define SET_ITMR_TZCE(c,v) BLIT32((c)->itmr, 0, (v) ? 1 : 0)
262 controller->itmr =
297 controller->itmr =
345 case ITMR_REG: register_value = controller->itmr; break;
406 /* HW_TRACE ((me, "itmr: %08lx", (long) controller->itmr)); */