Lines Matching refs:HWREG

172     HWREG(ulBase + TIMER_O_CTL) |= ulTimer & (TIMER_CTL_TAEN | TIMER_CTL_TBEN);  in TimerEnable()
201 HWREG(ulBase + TIMER_O_CTL) &= ~(ulTimer & in TimerDisable()
291 HWREG(ulBase + TIMER_O_CTL) &= ~(TIMER_CTL_TAEN | TIMER_CTL_TBEN); in TimerConfigure()
296 HWREG(ulBase + TIMER_O_CFG) = ulConfig >> 24; in TimerConfigure()
302 HWREG(ulBase + TIMER_O_TAMR) = (ulConfig & 255) | TIMER_TAMR_TAPWMIE; in TimerConfigure()
303 HWREG(ulBase + TIMER_O_TBMR) = in TimerConfigure()
338 HWREG(ulBase + TIMER_O_CTL) = (bInvert ? in TimerControlLevel()
339 (HWREG(ulBase + TIMER_O_CTL) | ulTimer) : in TimerControlLevel()
340 (HWREG(ulBase + TIMER_O_CTL) & ~(ulTimer))); in TimerControlLevel()
375 HWREG(ulBase + TIMER_O_CTL) = (bEnable ? in TimerControlTrigger()
376 (HWREG(ulBase + TIMER_O_CTL) | ulTimer) : in TimerControlTrigger()
377 (HWREG(ulBase + TIMER_O_CTL) & ~(ulTimer))); in TimerControlTrigger()
412 HWREG(ulBase + TIMER_O_CTL) = ((HWREG(ulBase + TIMER_O_CTL) & ~ulTimer) | in TimerControlEvent()
448 HWREG(ulBase + TIMER_O_CTL) = (bStall ? in TimerControlStall()
449 (HWREG(ulBase + TIMER_O_CTL) | ulTimer) : in TimerControlStall()
450 (HWREG(ulBase + TIMER_O_CTL) & ~(ulTimer))); in TimerControlStall()
491 HWREG(ulBase + TIMER_O_TAMR) |= TIMER_TAMR_TAWOT; in TimerControlWaitOnTrigger()
495 HWREG(ulBase + TIMER_O_TAMR) &= ~(TIMER_TAMR_TAWOT); in TimerControlWaitOnTrigger()
506 HWREG(ulBase + TIMER_O_TBMR) |= TIMER_TBMR_TBWOT; in TimerControlWaitOnTrigger()
510 HWREG(ulBase + TIMER_O_TBMR) &= ~(TIMER_TBMR_TBWOT); in TimerControlWaitOnTrigger()
538 HWREG(ulBase + TIMER_O_CTL) |= TIMER_CTL_RTCEN; in TimerRTCEnable()
563 HWREG(ulBase + TIMER_O_CTL) &= ~(TIMER_CTL_RTCEN); in TimerRTCDisable()
607 HWREG(ulBase + TIMER_O_TAPR) = ulValue; in TimerPrescaleSet()
615 HWREG(ulBase + TIMER_O_TBPR) = ulValue; in TimerPrescaleSet()
653 return((ulTimer == TIMER_A) ? HWREG(ulBase + TIMER_O_TAPR) : in TimerPrescaleGet()
654 HWREG(ulBase + TIMER_O_TBPR)); in TimerPrescaleGet()
699 HWREG(ulBase + TIMER_O_TAPMR) = ulValue; in TimerPrescaleMatchSet()
707 HWREG(ulBase + TIMER_O_TBPMR) = ulValue; in TimerPrescaleMatchSet()
746 return((ulTimer == TIMER_A) ? HWREG(ulBase + TIMER_O_TAPMR) : in TimerPrescaleMatchGet()
747 HWREG(ulBase + TIMER_O_TBPMR)); in TimerPrescaleMatchGet()
786 HWREG(ulBase + TIMER_O_TAILR) = ulValue; in TimerLoadSet()
794 HWREG(ulBase + TIMER_O_TBILR) = ulValue; in TimerLoadSet()
829 return((ulTimer == TIMER_A) ? HWREG(ulBase + TIMER_O_TAILR) : in TimerLoadGet()
830 HWREG(ulBase + TIMER_O_TBILR)); in TimerLoadGet()
859 HWREG(ulBase + TIMER_O_TBILR) = ullValue >> 32; in TimerLoadSet64()
860 HWREG(ulBase + TIMER_O_TAILR) = ullValue & 0xffffffff; in TimerLoadSet64()
894 ulHigh1 = HWREG(ulBase + TIMER_O_TBILR); in TimerLoadGet64()
895 ulLow = HWREG(ulBase + TIMER_O_TAILR); in TimerLoadGet64()
896 ulHigh2 = HWREG(ulBase + TIMER_O_TBILR); in TimerLoadGet64()
936 return((ulTimer == TIMER_A) ? HWREG(ulBase + TIMER_O_TAR) : in TimerValueGet()
937 HWREG(ulBase + TIMER_O_TBR)); in TimerValueGet()
970 ulHigh1 = HWREG(ulBase + TIMER_O_TBR); in TimerValueGet64()
971 ulLow = HWREG(ulBase + TIMER_O_TAR); in TimerValueGet64()
972 ulHigh2 = HWREG(ulBase + TIMER_O_TBR); in TimerValueGet64()
1021 HWREG(ulBase + TIMER_O_TAMATCHR) = ulValue; in TimerMatchSet()
1029 HWREG(ulBase + TIMER_O_TBMATCHR) = ulValue; in TimerMatchSet()
1063 return((ulTimer == TIMER_A) ? HWREG(ulBase + TIMER_O_TAMATCHR) : in TimerMatchGet()
1064 HWREG(ulBase + TIMER_O_TBMATCHR)); in TimerMatchGet()
1094 HWREG(ulBase + TIMER_O_TBMATCHR) = ullValue >> 32; in TimerMatchSet64()
1095 HWREG(ulBase + TIMER_O_TAMATCHR) = ullValue & 0xffffffff; in TimerMatchSet64()
1128 ulHigh1 = HWREG(ulBase + TIMER_O_TBMATCHR); in TimerMatchGet64()
1129 ulLow = HWREG(ulBase + TIMER_O_TAMATCHR); in TimerMatchGet64()
1130 ulHigh2 = HWREG(ulBase + TIMER_O_TBMATCHR); in TimerMatchGet64()
1313 HWREG(ulBase + TIMER_O_IMR) |= ulIntFlags; in TimerIntEnable()
1344 HWREG(ulBase + TIMER_O_IMR) &= ~(ulIntFlags); in TimerIntDisable()
1375 return(bMasked ? HWREG(ulBase + TIMER_O_MIS) : in TimerIntStatus()
1376 HWREG(ulBase + TIMER_O_RIS)); in TimerIntStatus()
1416 HWREG(ulBase + TIMER_O_ICR) = ulIntFlags; in TimerIntClear()
1477 HWREG(ulBase + TIMER_O_SYNC) = ulTimers; in TimerSynchronize()
1505 HWREG(ulBase + TIMER_O_CTL) = TIMER_RV_CTL; in TimerQuiesce()
1510 HWREG(ulBase + TIMER_O_IMR) = TIMER_RV_IMR; in TimerQuiesce()
1515 HWREG(ulBase + TIMER_O_ICR) = 0xFFFFFFFF; in TimerQuiesce()
1526 HWREG(ulBase + TIMER_O_CFG) = TIMER_RV_CFG; in TimerQuiesce()
1527 HWREG(ulBase + TIMER_O_TAMR) = TIMER_RV_TAMR; in TimerQuiesce()
1528 HWREG(ulBase + TIMER_O_TBMR) = TIMER_RV_TBMR; in TimerQuiesce()
1529 HWREG(ulBase + TIMER_O_RIS) = TIMER_RV_RIS; in TimerQuiesce()
1530 HWREG(ulBase + TIMER_O_MIS) = TIMER_RV_MIS; in TimerQuiesce()
1531 HWREG(ulBase + TIMER_O_TAILR) = TIMER_RV_TAILR; in TimerQuiesce()
1532 HWREG(ulBase + TIMER_O_TBILR) = TIMER_RV_TBILR; in TimerQuiesce()
1533 HWREG(ulBase + TIMER_O_TAMATCHR) = TIMER_RV_TAMATCHR; in TimerQuiesce()
1534 HWREG(ulBase + TIMER_O_TBMATCHR) = TIMER_RV_TBMATCHR; in TimerQuiesce()
1535 HWREG(ulBase + TIMER_O_TAPR) = TIMER_RV_TAPR; in TimerQuiesce()
1536 HWREG(ulBase + TIMER_O_TBPR) = TIMER_RV_TBPR; in TimerQuiesce()
1537 HWREG(ulBase + TIMER_O_TAPMR) = TIMER_RV_TAPMR; in TimerQuiesce()
1538 HWREG(ulBase + TIMER_O_TBPMR) = TIMER_RV_TBPMR; in TimerQuiesce()
1539 HWREG(ulBase + TIMER_O_TAR) = TIMER_RV_TAR; in TimerQuiesce()
1540 HWREG(ulBase + TIMER_O_TBR) = TIMER_RV_TBR; in TimerQuiesce()