Lines Matching refs:ahp

82 	struct ath_hal_5211 *ahp = AH5211(ah);  in ar5211SetTxQueueProps()  local
89 return ath_hal_setTxQProps(ah, &ahp->ah_txq[q], qInfo); in ar5211SetTxQueueProps()
98 struct ath_hal_5211 *ahp = AH5211(ah); in ar5211GetTxQueueProps() local
105 return ath_hal_getTxQProps(ah, qInfo, &ahp->ah_txq[q]); in ar5211GetTxQueueProps()
115 struct ath_hal_5211 *ahp = AH5211(ah); in ar5211SetupTxQueue() local
128 if (ahp->ah_txq[q].tqi_type != HAL_TX_QUEUE_INACTIVE) in ar5211SetupTxQueue()
139 qi = &ahp->ah_txq[q]; in ar5211SetupTxQueue()
171 struct ath_hal_5211 *ahp = AH5211(ah); in setTxQInterrupts() local
175 , ahp->ah_txOkInterruptMask in setTxQInterrupts()
176 , ahp->ah_txErrInterruptMask in setTxQInterrupts()
177 , ahp->ah_txDescInterruptMask in setTxQInterrupts()
178 , ahp->ah_txEolInterruptMask in setTxQInterrupts()
179 , ahp->ah_txUrnInterruptMask in setTxQInterrupts()
183 SM(ahp->ah_txOkInterruptMask, AR_IMR_S0_QCU_TXOK) in setTxQInterrupts()
184 | SM(ahp->ah_txDescInterruptMask, AR_IMR_S0_QCU_TXDESC) in setTxQInterrupts()
187 SM(ahp->ah_txErrInterruptMask, AR_IMR_S1_QCU_TXERR) in setTxQInterrupts()
188 | SM(ahp->ah_txEolInterruptMask, AR_IMR_S1_QCU_TXEOL) in setTxQInterrupts()
191 AR_IMR_S2_QCU_TXURN, ahp->ah_txUrnInterruptMask); in setTxQInterrupts()
200 struct ath_hal_5211 *ahp = AH5211(ah); in ar5211ReleaseTxQueue() local
208 qi = &ahp->ah_txq[q]; in ar5211ReleaseTxQueue()
218 ahp->ah_txOkInterruptMask &= ~(1 << q); in ar5211ReleaseTxQueue()
219 ahp->ah_txErrInterruptMask &= ~(1 << q); in ar5211ReleaseTxQueue()
220 ahp->ah_txDescInterruptMask &= ~(1 << q); in ar5211ReleaseTxQueue()
221 ahp->ah_txEolInterruptMask &= ~(1 << q); in ar5211ReleaseTxQueue()
222 ahp->ah_txUrnInterruptMask &= ~(1 << q); in ar5211ReleaseTxQueue()
234 struct ath_hal_5211 *ahp = AH5211(ah); in ar5211ResetTxQueue() local
244 qi = &ahp->ah_txq[q]; in ar5211ResetTxQueue()
346 value = (ahp->ah_beaconInterval in ar5211ResetTxQueue()
374 ahp->ah_txOkInterruptMask |= 1 << q; in ar5211ResetTxQueue()
376 ahp->ah_txOkInterruptMask &= ~(1 << q); in ar5211ResetTxQueue()
378 ahp->ah_txErrInterruptMask |= 1 << q; in ar5211ResetTxQueue()
380 ahp->ah_txErrInterruptMask &= ~(1 << q); in ar5211ResetTxQueue()
382 ahp->ah_txDescInterruptMask |= 1 << q; in ar5211ResetTxQueue()
384 ahp->ah_txDescInterruptMask &= ~(1 << q); in ar5211ResetTxQueue()
386 ahp->ah_txEolInterruptMask |= 1 << q; in ar5211ResetTxQueue()
388 ahp->ah_txEolInterruptMask &= ~(1 << q); in ar5211ResetTxQueue()
390 ahp->ah_txUrnInterruptMask |= 1 << q; in ar5211ResetTxQueue()
392 ahp->ah_txUrnInterruptMask &= ~(1 << q); in ar5211ResetTxQueue()