Home
last modified time | relevance | path

Searched refs:halTotalQueues (Results 1 – 14 of 14) sorted by relevance

/dragonfly/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_xmit.c102 if (q >= p_cap->halTotalQueues) { in ar9300_set_tx_queue_props()
119 if (q >= p_cap->halTotalQueues) { in ar9300_get_tx_queue_props()
153 q = p_cap->halTotalQueues - AH_TX_QUEUE_MINUS_OFFSET_CAB; in ar9300_setup_tx_queue()
174 if (q == p_cap->halTotalQueues - 3) { in ar9300_setup_tx_queue()
254 if (q >= p_cap->halTotalQueues) { in ar9300_release_tx_queue()
292 if (q >= p_cap->halTotalQueues) { in ar9300_reset_tx_queue()
515 HALASSERT(q < AH_PRIVATE(ah)->ah_caps.halTotalQueues); in ar9300_get_tx_dp()
525 HALASSERT(q < AH_PRIVATE(ah)->ah_caps.halTotalQueues); in ar9300_set_tx_dp()
552 HALASSERT(q < AH_PRIVATE(ah)->ah_caps.halTotalQueues); in ar9300_num_tx_pending()
605 HALASSERT(q < AH_PRIVATE(ah)->ah_caps.halTotalQueues); in ar9300_stop_tx_dma()
[all …]
H A Dar9300_attach.c2798 p_cap->halTotalQueues = MS(cap_field, AR_EEPROM_EEPCAP_MAXQCU); in ar9300_fill_capability_info()
2800 p_cap->halTotalQueues = HAL_NUM_TX_QUEUES; in ar9300_fill_capability_info()
H A Dar9300_reset.c1706 ah, AH_PRIVATE(ah)->ah_caps.halTotalQueues - 1) != 0 || in ar9300_set_reset()
4978 for (i = 0; i < AH_PRIVATE(ah)->ah_caps.halTotalQueues; i++) { in ar9300_reset()
/dragonfly/sys/dev/netif/ath/ath_hal/ar5212/
H A Dar5212_xmit.c91 if (q >= pCap->halTotalQueues) { in ar5212SetTxQueueProps()
109 if (q >= pCap->halTotalQueues) { in ar5212GetTxQueueProps()
137 q = pCap->halTotalQueues-1; /* highest priority */ in ar5212SetupTxQueue()
144 q = pCap->halTotalQueues-2; /* next highest priority */ in ar5212SetupTxQueue()
160 for (q = 0; q < pCap->halTotalQueues; q++) in ar5212SetupTxQueue()
163 if (q == pCap->halTotalQueues) { in ar5212SetupTxQueue()
237 if (q >= pCap->halTotalQueues) { in ar5212ReleaseTxQueue()
277 if (q >= pCap->halTotalQueues) { in ar5212ResetTxQueue()
517 HALASSERT(q < AH_PRIVATE(ah)->ah_caps.halTotalQueues); in ar5212GetTxDP()
527 HALASSERT(q < AH_PRIVATE(ah)->ah_caps.halTotalQueues); in ar5212SetTxDP()
[all …]
H A Dar5212_attach.c863 pCap->halTotalQueues = val; in ar5212FillCapabilityInfo()
865 pCap->halTotalQueues = HAL_NUM_TX_QUEUES; in ar5212FillCapabilityInfo()
H A Dar5212_reset.c560 for (i = 0; i < AH_PRIVATE(ah)->ah_caps.halTotalQueues; i++) in ar5212Reset()
743 for (qnum = 0; qnum < AH_PRIVATE(ah)->ah_caps.halTotalQueues; qnum++) { in ar5212ChannelChange()
/dragonfly/sys/dev/netif/ath/ath_hal/ar5416/
H A Dar5416_xmit.c40 HALASSERT(q < AH_PRIVATE(ah)->ah_caps.halTotalQueues); in ar5416StopTxDma()
1134 q = pCap->halTotalQueues-1; /* highest priority */ in ar5416SetupTxQueue()
1141 q = pCap->halTotalQueues-2; /* next highest priority */ in ar5416SetupTxQueue()
1157 q = pCap->halTotalQueues-3; /* nextest highest priority */ in ar5416SetupTxQueue()
1165 for (q = 0; q < pCap->halTotalQueues; q++) in ar5416SetupTxQueue()
1168 if (q == pCap->halTotalQueues) { in ar5416SetupTxQueue()
1247 if (q >= pCap->halTotalQueues) { in ar5416ResetTxQueue()
H A Dar5416_attach.c957 pCap->halTotalQueues = val; in ar5416FillCapabilityInfo()
959 pCap->halTotalQueues = HAL_NUM_TX_QUEUES; in ar5416FillCapabilityInfo()
H A Dar5416_reset.c327 for (i = 0; i < AH_PRIVATE(ah)->ah_caps.halTotalQueues; i++) in ar5416Reset()
503 for (qnum = 0; qnum < AH_PRIVATE(ah)->ah_caps.halTotalQueues; qnum++) {
/dragonfly/sys/dev/netif/ath/ath_hal/ar5210/
H A Dar5210_attach.c368 pCap->halTotalQueues = HAL_NUM_TX_QUEUES; in ar5210FillCapabilityInfo()
/dragonfly/sys/dev/netif/ath/ath_hal/ar5211/
H A Dar5211_attach.c503 pCap->halTotalQueues = HAL_NUM_TX_QUEUES; in ar5211FillCapabilityInfo()
/dragonfly/sys/dev/netif/ath/ath_hal/ar5312/
H A Dar5312_reset.c484 for (i = 0; i < AH_PRIVATE(ah)->ah_caps.halTotalQueues; i++) in ar5312Reset()
/dragonfly/sys/dev/netif/ath/ath_hal/
H A Dah_internal.h289 uint16_t halTotalQueues; member
H A Dah.c626 *result = pCap->halTotalQueues; in ath_hal_getcapability()