Lines Matching refs:tmpReg
392 uint32_t tmpReg; in BmGetRevision() local
403 tmpReg = GET_UINT32(p_Bm->p_BmRegs->ip_rev_1); in BmGetRevision()
404 p_BmRevisionInfo->majorRev = (uint8_t)((tmpReg & REV1_MAJOR_MASK) >> REV1_MAJOR_SHIFT); in BmGetRevision()
405 p_BmRevisionInfo->minorRev = (uint8_t)((tmpReg & REV1_MINOR_MASK) >> REV1_MINOR_SHIFT); in BmGetRevision()
683 uint32_t tmpReg; in BM_ErrorIsr() local
693 tmpReg = GET_UINT32(p_Bm->p_BmRegs->err_isr); in BM_ErrorIsr()
694 tmpReg &= GET_UINT32(p_Bm->p_BmRegs->err_ier); in BM_ErrorIsr()
695 WRITE_UINT32(p_Bm->p_BmRegs->err_isr, tmpReg); in BM_ErrorIsr()
697 if (tmpReg & BM_EX_INVALID_COMMAND) in BM_ErrorIsr()
699 if (tmpReg & BM_EX_FBPR_THRESHOLD) in BM_ErrorIsr()
701 if (tmpReg & BM_EX_MULTI_ECC) in BM_ErrorIsr()
703 if (tmpReg & BM_EX_SINGLE_ECC) in BM_ErrorIsr()
730 uint32_t tmpReg, bitMask = 0; in BM_SetException() local
739 tmpReg = GET_UINT32(p_Bm->p_BmRegs->err_ier); in BM_SetException()
742 tmpReg |= bitMask; in BM_SetException()
744 tmpReg &= ~bitMask; in BM_SetException()
745 WRITE_UINT32(p_Bm->p_BmRegs->err_ier, tmpReg); in BM_SetException()