Lines Matching refs:HWREG

106     HWREG(ulBase + TIMER_O_CTL) |= ulTimer & (TIMER_CTL_TAEN | TIMER_CTL_TBEN);  in TimerEnable()
135 HWREG(ulBase + TIMER_O_CTL) &= ~(ulTimer & in TimerDisable()
212 HWREG(0x440260B0) = 0xFF; in TimerConfigure()
217 HWREG(ulBase + TIMER_O_CTL) &= ~(TIMER_CTL_TAEN | TIMER_CTL_TBEN); in TimerConfigure()
222 HWREG(ulBase + TIMER_O_CFG) = ulConfig >> 24; in TimerConfigure()
228 HWREG(ulBase + TIMER_O_TAMR) = ulConfig & 255; in TimerConfigure()
229 HWREG(ulBase + TIMER_O_TBMR) = (ulConfig >> 8) & 255; in TimerConfigure()
263 HWREG(ulBase + TIMER_O_CTL) = (bInvert ? in TimerControlLevel()
264 (HWREG(ulBase + TIMER_O_CTL) | ulTimer) : in TimerControlLevel()
265 (HWREG(ulBase + TIMER_O_CTL) & ~(ulTimer))); in TimerControlLevel()
300 HWREG(ulBase + TIMER_O_CTL) = ((HWREG(ulBase + TIMER_O_CTL) & in TimerControlEvent()
337 HWREG(ulBase + TIMER_O_CTL) = (bStall ? in TimerControlStall()
338 (HWREG(ulBase + TIMER_O_CTL) | ulTimer) : in TimerControlStall()
339 (HWREG(ulBase + TIMER_O_CTL) & ~(ulTimer))); in TimerControlStall()
376 HWREG(ulBase + TIMER_O_TAPR) = ulValue; in TimerPrescaleSet()
384 HWREG(ulBase + TIMER_O_TBPR) = ulValue; in TimerPrescaleSet()
418 return((ulTimer == TIMER_A) ? HWREG(ulBase + TIMER_O_TAPR) : in TimerPrescaleGet()
419 HWREG(ulBase + TIMER_O_TBPR)); in TimerPrescaleGet()
460 HWREG(ulBase + TIMER_O_TAPMR) = ulValue; in TimerPrescaleMatchSet()
468 HWREG(ulBase + TIMER_O_TBPMR) = ulValue; in TimerPrescaleMatchSet()
504 return((ulTimer == TIMER_A) ? HWREG(ulBase + TIMER_O_TAPMR) : in TimerPrescaleMatchGet()
505 HWREG(ulBase + TIMER_O_TBPMR)); in TimerPrescaleMatchGet()
543 HWREG(ulBase + TIMER_O_TAILR) = ulValue; in TimerLoadSet()
551 HWREG(ulBase + TIMER_O_TBILR) = ulValue; in TimerLoadSet()
585 return((ulTimer == TIMER_A) ? HWREG(ulBase + TIMER_O_TAILR) : in TimerLoadGet()
586 HWREG(ulBase + TIMER_O_TBILR)); in TimerLoadGet()
615 return((ulTimer == TIMER_A) ? HWREG(ulBase + TIMER_O_TAR) : in TimerValueGet()
616 HWREG(ulBase + TIMER_O_TBR)); in TimerValueGet()
649 HWREG(ulBase + TIMER_O_TAV) = ulValue; in TimerValueSet()
653 HWREG(ulBase + TIMER_O_TBV) = ulValue; in TimerValueSet()
691 HWREG(ulBase + TIMER_O_TAMATCHR) = ulValue; in TimerMatchSet()
699 HWREG(ulBase + TIMER_O_TBMATCHR) = ulValue; in TimerMatchSet()
729 return((ulTimer == TIMER_A) ? HWREG(ulBase + TIMER_O_TAMATCHR) : in TimerMatchGet()
730 HWREG(ulBase + TIMER_O_TBMATCHR)); in TimerMatchGet()
910 HWREG(ulBase + TIMER_O_IMR) |= ulIntFlags; in TimerIntEnable()
941 HWREG(ulBase + TIMER_O_IMR) &= ~(ulIntFlags); in TimerIntDisable()
972 return(bMasked ? HWREG(ulBase + TIMER_O_MIS) : in TimerIntStatus()
973 HWREG(ulBase + TIMER_O_RIS)); in TimerIntStatus()
1013 HWREG(ulBase + TIMER_O_ICR) = ulIntFlags; in TimerIntClear()
1056 HWREG(ulBase + TIMER_O_DMAEV) = ulDMAEvent; in TimerDMAEventSet()
1098 return(HWREG(ulBase + TIMER_O_DMAEV)); in TimerDMAEventGet()