Lines Matching refs:isr
56 uint32_t isr, isr0, isr1; in ar5212GetPendingInterrupts() local
60 isr = OS_REG_READ(ah, AR_ISR); in ar5212GetPendingInterrupts()
62 if (isr & AR_ISR_BCNMISC) { in ar5212GetPendingInterrupts()
75 isr = OS_REG_READ(ah, AR_ISR_RAC); in ar5212GetPendingInterrupts()
76 if (isr == 0xffffffff) { in ar5212GetPendingInterrupts()
81 *masked = isr & HAL_INT_COMMON; in ar5212GetPendingInterrupts()
83 if (isr & AR_ISR_HIUERR) in ar5212GetPendingInterrupts()
85 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR)) in ar5212GetPendingInterrupts()
87 if (isr & (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR | AR_ISR_TXEOL)) { in ar5212GetPendingInterrupts()
102 if ((isr & AR_ISR_RXORN) && AH_PRIVATE(ah)->ah_rxornIsFatal) { in ar5212GetPendingInterrupts()
113 AH_PRIVATE(ah)->ah_fatalState[0] = isr; in ar5212GetPendingInterrupts()
121 __func__, isr, AH_PRIVATE(ah)->ah_fatalState[3]); in ar5212GetPendingInterrupts()