Lines Matching refs:tid
57 struct ath_atx_tid *tid, struct sk_buff *skb);
70 static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
74 struct ath_atx_tid *tid,
122 void ath_tx_queue_tid(struct ath_softc *sc, struct ath_atx_tid *tid) in ath_tx_queue_tid() argument
125 container_of((void *)tid, struct ieee80211_txq, drv_priv); in ath_tx_queue_tid()
134 struct ath_atx_tid *tid = (struct ath_atx_tid *) queue->drv_priv; in ath9k_wake_tx_queue() local
135 struct ath_txq *txq = tid->txq; in ath9k_wake_tx_queue()
139 tid->tidno); in ath9k_wake_tx_queue()
154 static void ath_send_bar(struct ath_atx_tid *tid, u16 seqno) in ath_send_bar() argument
156 if (!tid->an->sta) in ath_send_bar()
159 ieee80211_send_bar(tid->an->vif, tid->an->sta->addr, tid->tidno, in ath_send_bar()
234 ath_tid_pull(struct ath_atx_tid *tid, struct sk_buff **skbuf) in ath_tid_pull() argument
236 struct ieee80211_txq *txq = container_of((void*)tid, struct ieee80211_txq, drv_priv); in ath_tid_pull()
237 struct ath_softc *sc = tid->an->sc; in ath_tid_pull()
240 .txq = tid->txq, in ath_tid_pull()
241 .sta = tid->an->sta, in ath_tid_pull()
258 if (tid->txq == sc->tx.txq_map[q]) { in ath_tid_pull()
261 ++tid->txq->pending_frames; in ath_tid_pull()
268 static int ath_tid_dequeue(struct ath_atx_tid *tid, in ath_tid_dequeue() argument
272 *skb = __skb_dequeue(&tid->retry_q); in ath_tid_dequeue()
274 ret = ath_tid_pull(tid, skb); in ath_tid_dequeue()
279 static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid) in ath_tx_flush_tid() argument
281 struct ath_txq *txq = tid->txq; in ath_tx_flush_tid()
293 while ((skb = __skb_dequeue(&tid->retry_q))) { in ath_tx_flush_tid()
303 ath_tx_update_baw(sc, tid, bf); in ath_tx_flush_tid()
313 ath_send_bar(tid, tid->seq_start); in ath_tx_flush_tid()
318 static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid, in ath_tx_update_baw() argument
328 index = ATH_BA_INDEX(tid->seq_start, seqno); in ath_tx_update_baw()
329 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1); in ath_tx_update_baw()
331 __clear_bit(cindex, tid->tx_buf); in ath_tx_update_baw()
333 while (tid->baw_head != tid->baw_tail && !test_bit(tid->baw_head, tid->tx_buf)) { in ath_tx_update_baw()
334 INCR(tid->seq_start, IEEE80211_SEQ_MAX); in ath_tx_update_baw()
335 INCR(tid->baw_head, ATH_TID_MAX_BUFS); in ath_tx_update_baw()
336 if (tid->bar_index >= 0) in ath_tx_update_baw()
337 tid->bar_index--; in ath_tx_update_baw()
341 static void ath_tx_addto_baw(struct ath_softc *sc, struct ath_atx_tid *tid, in ath_tx_addto_baw() argument
351 index = ATH_BA_INDEX(tid->seq_start, seqno); in ath_tx_addto_baw()
352 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1); in ath_tx_addto_baw()
353 __set_bit(cindex, tid->tx_buf); in ath_tx_addto_baw()
356 if (index >= ((tid->baw_tail - tid->baw_head) & in ath_tx_addto_baw()
358 tid->baw_tail = cindex; in ath_tx_addto_baw()
359 INCR(tid->baw_tail, ATH_TID_MAX_BUFS); in ath_tx_addto_baw()
364 struct ath_atx_tid *tid) in ath_tid_drain() argument
376 while (ath_tid_dequeue(tid, &skb) == 0) { in ath_tid_drain()
490 struct ath_atx_tid *tid, in ath_tx_complete_aggr() argument
535 seq_first = tid->seq_start; in ath_tx_complete_aggr()
546 if (isba && tid->tidno != ts->tid) in ath_tx_complete_aggr()
582 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, seqno) || in ath_tx_complete_aggr()
583 !tid->active) { in ath_tx_complete_aggr()
624 ath_tx_update_baw(sc, tid, bf); in ath_tx_complete_aggr()
654 ath_tx_update_baw(sc, tid, bf); in ath_tx_complete_aggr()
680 ieee80211_sta_set_buffered(sta, tid->tidno, true); in ath_tx_complete_aggr()
682 skb_queue_splice_tail(&bf_pending, &tid->retry_q); in ath_tx_complete_aggr()
684 ath_tx_queue_tid(sc, tid); in ath_tx_complete_aggr()
686 tid->clear_ps_filter = true; in ath_tx_complete_aggr()
693 if (BAW_WITHIN(tid->seq_start, tid->baw_size, bar_seq)) in ath_tx_complete_aggr()
694 tid->bar_index = ATH_BA_INDEX(tid->seq_start, bar_seq); in ath_tx_complete_aggr()
697 ath_send_bar(tid, ATH_BA_INDEX2SEQ(seq_first, bar_index + 1)); in ath_tx_complete_aggr()
715 u8 tid) in ath_tx_count_airtime() argument
726 ieee80211_sta_register_airtime(sta, tid, airtime, 0); in ath_tx_count_airtime()
737 struct ath_atx_tid *tid = NULL; in ath_tx_process_buffer() local
755 tid = ath_get_skb_tid(sc, an, bf->bf_mpdu); in ath_tx_process_buffer()
756 ath_tx_count_airtime(sc, sta, bf, ts, tid->tidno); in ath_tx_process_buffer()
758 tid->clear_ps_filter = true; in ath_tx_process_buffer()
772 ath_tx_complete_aggr(sc, txq, bf, bf_head, sta, tid, ts, txok); in ath_tx_process_buffer()
801 struct ath_atx_tid *tid) in ath_lookup_rate() argument
808 int q = tid->txq->mac80211_qnum; in ath_lookup_rate()
861 if (tid->an->maxampdu) in ath_lookup_rate()
862 aggr_limit = min(aggr_limit, tid->an->maxampdu); in ath_lookup_rate()
871 static int ath_compute_num_delims(struct ath_softc *sc, struct ath_atx_tid *tid, in ath_compute_num_delims() argument
913 if (tid->an->mpdudensity == 0) in ath_compute_num_delims()
922 nsymbols = NUM_SYMBOLS_PER_USEC_HALFGI(tid->an->mpdudensity); in ath_compute_num_delims()
924 nsymbols = NUM_SYMBOLS_PER_USEC(tid->an->mpdudensity); in ath_compute_num_delims()
943 struct ath_atx_tid *tid, struct ath_buf **buf) in ath_tx_get_tid_subframe() argument
953 ret = ath_tid_dequeue(tid, &skb); in ath_tx_get_tid_subframe()
960 bf = ath_tx_setup_buffer(sc, txq, tid, skb); in ath_tx_get_tid_subframe()
982 if (!tid->active) in ath_tx_get_tid_subframe()
994 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, seqno)) { in ath_tx_get_tid_subframe()
995 __skb_queue_tail(&tid->retry_q, skb); in ath_tx_get_tid_subframe()
1000 if (!skb_queue_is_first(&tid->retry_q, skb) && in ath_tx_get_tid_subframe()
1009 if (tid->bar_index > ATH_BA_INDEX(tid->seq_start, seqno)) { in ath_tx_get_tid_subframe()
1015 ath_tx_update_baw(sc, tid, bf); in ath_tx_get_tid_subframe()
1021 ath_tx_addto_baw(sc, tid, bf); in ath_tx_get_tid_subframe()
1032 struct ath_atx_tid *tid, struct list_head *bf_q, in ath_tx_form_aggr() argument
1039 al_delta, h_baw = tid->baw_size / 2; in ath_tx_form_aggr()
1046 aggr_limit = ath_lookup_rate(sc, bf, tid); in ath_tx_form_aggr()
1073 ndelim = ath_compute_num_delims(sc, tid, bf_first, fi->framelen, in ath_tx_form_aggr()
1089 ret = ath_tx_get_tid_subframe(sc, txq, tid, &bf); in ath_tx_form_aggr()
1095 __skb_queue_tail(&tid->retry_q, bf->bf_mpdu); in ath_tx_form_aggr()
1501 struct ath_atx_tid *tid, struct list_head *bf_q, in ath_tx_form_burst() argument
1519 ret = ath_tx_get_tid_subframe(sc, txq, tid, &bf); in ath_tx_form_burst()
1525 __skb_queue_tail(&tid->retry_q, bf->bf_mpdu); in ath_tx_form_burst()
1529 ath_set_rates(tid->an->vif, tid->an->sta, bf); in ath_tx_form_burst()
1534 struct ath_atx_tid *tid) in ath_tx_sched_aggr() argument
1544 ret = ath_tx_get_tid_subframe(sc, txq, tid, &bf); in ath_tx_sched_aggr()
1552 __skb_queue_tail(&tid->retry_q, bf->bf_mpdu); in ath_tx_sched_aggr()
1556 ath_set_rates(tid->an->vif, tid->an->sta, bf); in ath_tx_sched_aggr()
1558 aggr_len = ath_tx_form_aggr(sc, txq, tid, &bf_q, bf); in ath_tx_sched_aggr()
1560 ath_tx_form_burst(sc, txq, tid, &bf_q, bf); in ath_tx_sched_aggr()
1565 if (tid->clear_ps_filter || tid->an->no_ps_filter) { in ath_tx_sched_aggr()
1566 tid->clear_ps_filter = false; in ath_tx_sched_aggr()
1576 u16 tid, u16 *ssn) in ath_tx_aggr_start() argument
1587 txtid = ATH_AN_2_TID(an, tid); in ath_tx_aggr_start()
1615 void ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid) in ath_tx_aggr_stop() argument
1619 struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid); in ath_tx_aggr_stop()
1634 struct ath_atx_tid *tid; in ath_tx_aggr_sleep() local
1640 tid = ath_node_to_tid(an, tidno); in ath_tx_aggr_sleep()
1642 if (!skb_queue_empty(&tid->retry_q)) in ath_tx_aggr_sleep()
1643 ieee80211_sta_set_buffered(sta, tid->tidno, true); in ath_tx_aggr_sleep()
1651 struct ath_atx_tid *tid; in ath_tx_aggr_wakeup() local
1658 tid = ath_node_to_tid(an, tidno); in ath_tx_aggr_wakeup()
1659 txq = tid->txq; in ath_tx_aggr_wakeup()
1662 tid->clear_ps_filter = true; in ath_tx_aggr_wakeup()
1663 if (!skb_queue_empty(&tid->retry_q)) { in ath_tx_aggr_wakeup()
1664 ath_tx_queue_tid(sc, tid); in ath_tx_aggr_wakeup()
1710 struct ath_atx_tid *tid; in ath9k_release_buffered_frames() local
1715 tid = ATH_AN_2_TID(an, i); in ath9k_release_buffered_frames()
1717 ath_txq_lock(sc, tid->txq); in ath9k_release_buffered_frames()
1720 tid, &bf); in ath9k_release_buffered_frames()
1726 ath_set_rates(tid->an->vif, tid->an->sta, bf); in ath9k_release_buffered_frames()
1736 if (an->sta && skb_queue_empty(&tid->retry_q)) in ath9k_release_buffered_frames()
1739 ath_txq_unlock_complete(sc, tid->txq); in ath9k_release_buffered_frames()
1989 struct ath_atx_tid *tid; in ath_txq_schedule() local
2008 tid = (struct ath_atx_tid *)queue->drv_priv; in ath_txq_schedule()
2010 ret = ath_tx_sched_aggr(sc, txq, tid); in ath_txq_schedule()
2013 force = !skb_queue_empty(&tid->retry_q); in ath_txq_schedule()
2113 struct ath_atx_tid *tid, struct sk_buff *skb) in ath_tx_send_normal() argument
2123 if (tid && (tx_info->flags & IEEE80211_TX_CTL_AMPDU)) { in ath_tx_send_normal()
2125 ath_tx_addto_baw(sc, tid, bf); in ath_tx_send_normal()
2219 struct ath_atx_tid *tid, in ath_tx_setup_buffer() argument
2237 if (tid && ieee80211_is_data_present(hdr->frame_control)) { in ath_tx_setup_buffer()
2239 seqno = tid->seq_next; in ath_tx_setup_buffer()
2240 hdr->seq_ctrl = cpu_to_le16(tid->seq_next << IEEE80211_SEQ_SEQ_SHIFT); in ath_tx_setup_buffer()
2246 INCR(tid->seq_next, IEEE80211_SEQ_MAX); in ath_tx_setup_buffer()
2347 struct ath_atx_tid *tid = NULL; in ath_tx_start() local
2371 tid = ath_get_skb_tid(sc, an, skb); in ath_tx_start()
2380 bf = ath_tx_setup_buffer(sc, txq, tid, skb); in ath_tx_start()
2396 ath_tx_send_normal(sc, txq, tid, skb); in ath_tx_start()
2871 struct ath_atx_tid *tid; in ath_tx_node_init() local
2875 tid = ath_node_to_tid(an, tidno); in ath_tx_node_init()
2876 tid->an = an; in ath_tx_node_init()
2877 tid->tidno = tidno; in ath_tx_node_init()
2878 tid->seq_start = tid->seq_next = 0; in ath_tx_node_init()
2879 tid->baw_size = WME_MAX_BA; in ath_tx_node_init()
2880 tid->baw_head = tid->baw_tail = 0; in ath_tx_node_init()
2881 tid->active = false; in ath_tx_node_init()
2882 tid->clear_ps_filter = true; in ath_tx_node_init()
2883 __skb_queue_head_init(&tid->retry_q); in ath_tx_node_init()
2884 INIT_LIST_HEAD(&tid->list); in ath_tx_node_init()
2886 tid->txq = sc->tx.txq_map[acno]; in ath_tx_node_init()
2895 struct ath_atx_tid *tid; in ath_tx_node_cleanup() local
2902 tid = ath_node_to_tid(an, tidno); in ath_tx_node_cleanup()
2903 txq = tid->txq; in ath_tx_node_cleanup()
2907 if (!list_empty(&tid->list)) in ath_tx_node_cleanup()
2908 list_del_init(&tid->list); in ath_tx_node_cleanup()
2910 ath_tid_drain(sc, txq, tid); in ath_tx_node_cleanup()
2911 tid->active = false; in ath_tx_node_cleanup()