GNU Linux-libre 4.19.264-gnu1
[releases.git] / drivers / net / wireless / ath / ath9k / xmit.c
1 /*
2  * Copyright (c) 2008-2011 Atheros Communications Inc.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #include <linux/dma-mapping.h>
18 #include "ath9k.h"
19 #include "ar9003_mac.h"
20
21 #define BITS_PER_BYTE           8
22 #define OFDM_PLCP_BITS          22
23 #define HT_RC_2_STREAMS(_rc)    ((((_rc) & 0x78) >> 3) + 1)
24 #define L_STF                   8
25 #define L_LTF                   8
26 #define L_SIG                   4
27 #define HT_SIG                  8
28 #define HT_STF                  4
29 #define HT_LTF(_ns)             (4 * (_ns))
30 #define SYMBOL_TIME(_ns)        ((_ns) << 2) /* ns * 4 us */
31 #define SYMBOL_TIME_HALFGI(_ns) (((_ns) * 18 + 4) / 5)  /* ns * 3.6 us */
32 #define TIME_SYMBOLS(t)         ((t) >> 2)
33 #define TIME_SYMBOLS_HALFGI(t)  (((t) * 5 - 4) / 18)
34 #define NUM_SYMBOLS_PER_USEC(_usec) (_usec >> 2)
35 #define NUM_SYMBOLS_PER_USEC_HALFGI(_usec) (((_usec*5)-4)/18)
36
37
38 static u16 bits_per_symbol[][2] = {
39         /* 20MHz 40MHz */
40         {    26,   54 },     /*  0: BPSK */
41         {    52,  108 },     /*  1: QPSK 1/2 */
42         {    78,  162 },     /*  2: QPSK 3/4 */
43         {   104,  216 },     /*  3: 16-QAM 1/2 */
44         {   156,  324 },     /*  4: 16-QAM 3/4 */
45         {   208,  432 },     /*  5: 64-QAM 2/3 */
46         {   234,  486 },     /*  6: 64-QAM 3/4 */
47         {   260,  540 },     /*  7: 64-QAM 5/6 */
48 };
49
50 static void ath_tx_send_normal(struct ath_softc *sc, struct ath_txq *txq,
51                                struct ath_atx_tid *tid, struct sk_buff *skb);
52 static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
53                             int tx_flags, struct ath_txq *txq,
54                             struct ieee80211_sta *sta);
55 static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
56                                 struct ath_txq *txq, struct list_head *bf_q,
57                                 struct ieee80211_sta *sta,
58                                 struct ath_tx_status *ts, int txok);
59 static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
60                              struct list_head *head, bool internal);
61 static void ath_tx_rc_status(struct ath_softc *sc, struct ath_buf *bf,
62                              struct ath_tx_status *ts, int nframes, int nbad,
63                              int txok);
64 static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
65                               struct ath_buf *bf);
66 static struct ath_buf *ath_tx_setup_buffer(struct ath_softc *sc,
67                                            struct ath_txq *txq,
68                                            struct ath_atx_tid *tid,
69                                            struct sk_buff *skb);
70 static int ath_tx_prepare(struct ieee80211_hw *hw, struct sk_buff *skb,
71                           struct ath_tx_control *txctl);
72
73 enum {
74         MCS_HT20,
75         MCS_HT20_SGI,
76         MCS_HT40,
77         MCS_HT40_SGI,
78 };
79
80 /*********************/
81 /* Aggregation logic */
82 /*********************/
83
84 static void ath_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
85 {
86         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
87         struct ieee80211_sta *sta = info->status.status_driver_data[0];
88
89         if (info->flags & (IEEE80211_TX_CTL_REQ_TX_STATUS |
90                            IEEE80211_TX_STATUS_EOSP)) {
91                 ieee80211_tx_status(hw, skb);
92                 return;
93         }
94
95         if (sta)
96                 ieee80211_tx_status_noskb(hw, sta, info);
97
98         dev_kfree_skb(skb);
99 }
100
101 void ath_txq_unlock_complete(struct ath_softc *sc, struct ath_txq *txq)
102         __releases(&txq->axq_lock)
103 {
104         struct ieee80211_hw *hw = sc->hw;
105         struct sk_buff_head q;
106         struct sk_buff *skb;
107
108         __skb_queue_head_init(&q);
109         skb_queue_splice_init(&txq->complete_q, &q);
110         spin_unlock_bh(&txq->axq_lock);
111
112         while ((skb = __skb_dequeue(&q)))
113                 ath_tx_status(hw, skb);
114 }
115
116 void __ath_tx_queue_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
117 {
118         struct ath_vif *avp = (struct ath_vif *) tid->an->vif->drv_priv;
119         struct ath_chanctx *ctx = avp->chanctx;
120         struct ath_acq *acq;
121         struct list_head *tid_list;
122         u8 acno = TID_TO_WME_AC(tid->tidno);
123
124         if (!ctx || !list_empty(&tid->list))
125                 return;
126
127
128         acq = &ctx->acq[acno];
129         if ((sc->airtime_flags & AIRTIME_USE_NEW_QUEUES) &&
130             tid->an->airtime_deficit[acno] > 0)
131                 tid_list = &acq->acq_new;
132         else
133                 tid_list = &acq->acq_old;
134
135         list_add_tail(&tid->list, tid_list);
136 }
137
138 void ath_tx_queue_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
139 {
140         struct ath_vif *avp = (struct ath_vif *) tid->an->vif->drv_priv;
141         struct ath_chanctx *ctx = avp->chanctx;
142         struct ath_acq *acq;
143
144         if (!ctx || !list_empty(&tid->list))
145                 return;
146
147         acq = &ctx->acq[TID_TO_WME_AC(tid->tidno)];
148         spin_lock_bh(&acq->lock);
149         __ath_tx_queue_tid(sc, tid);
150         spin_unlock_bh(&acq->lock);
151 }
152
153
154 void ath9k_wake_tx_queue(struct ieee80211_hw *hw, struct ieee80211_txq *queue)
155 {
156         struct ath_softc *sc = hw->priv;
157         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
158         struct ath_atx_tid *tid = (struct ath_atx_tid *) queue->drv_priv;
159         struct ath_txq *txq = tid->txq;
160
161         ath_dbg(common, QUEUE, "Waking TX queue: %pM (%d)\n",
162                 queue->sta ? queue->sta->addr : queue->vif->addr,
163                 tid->tidno);
164
165         ath_txq_lock(sc, txq);
166
167         tid->has_queued = true;
168         ath_tx_queue_tid(sc, tid);
169         ath_txq_schedule(sc, txq);
170
171         ath_txq_unlock(sc, txq);
172 }
173
174 static struct ath_frame_info *get_frame_info(struct sk_buff *skb)
175 {
176         struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
177         BUILD_BUG_ON(sizeof(struct ath_frame_info) >
178                      sizeof(tx_info->rate_driver_data));
179         return (struct ath_frame_info *) &tx_info->rate_driver_data[0];
180 }
181
182 static void ath_send_bar(struct ath_atx_tid *tid, u16 seqno)
183 {
184         if (!tid->an->sta)
185                 return;
186
187         ieee80211_send_bar(tid->an->vif, tid->an->sta->addr, tid->tidno,
188                            seqno << IEEE80211_SEQ_SEQ_SHIFT);
189 }
190
191 static void ath_set_rates(struct ieee80211_vif *vif, struct ieee80211_sta *sta,
192                           struct ath_buf *bf)
193 {
194         ieee80211_get_tx_rates(vif, sta, bf->bf_mpdu, bf->rates,
195                                ARRAY_SIZE(bf->rates));
196 }
197
198 static void ath_txq_skb_done(struct ath_softc *sc, struct ath_txq *txq,
199                              struct sk_buff *skb)
200 {
201         struct ath_frame_info *fi = get_frame_info(skb);
202         int q = fi->txq;
203
204         if (q < 0)
205                 return;
206
207         txq = sc->tx.txq_map[q];
208         if (WARN_ON(--txq->pending_frames < 0))
209                 txq->pending_frames = 0;
210
211 }
212
213 static struct ath_atx_tid *
214 ath_get_skb_tid(struct ath_softc *sc, struct ath_node *an, struct sk_buff *skb)
215 {
216         u8 tidno = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
217         return ATH_AN_2_TID(an, tidno);
218 }
219
220 static struct sk_buff *
221 ath_tid_pull(struct ath_atx_tid *tid)
222 {
223         struct ieee80211_txq *txq = container_of((void*)tid, struct ieee80211_txq, drv_priv);
224         struct ath_softc *sc = tid->an->sc;
225         struct ieee80211_hw *hw = sc->hw;
226         struct ath_tx_control txctl = {
227                 .txq = tid->txq,
228                 .sta = tid->an->sta,
229         };
230         struct sk_buff *skb;
231         struct ath_frame_info *fi;
232         int q;
233
234         if (!tid->has_queued)
235                 return NULL;
236
237         skb = ieee80211_tx_dequeue(hw, txq);
238         if (!skb) {
239                 tid->has_queued = false;
240                 return NULL;
241         }
242
243         if (ath_tx_prepare(hw, skb, &txctl)) {
244                 ieee80211_free_txskb(hw, skb);
245                 return NULL;
246         }
247
248         q = skb_get_queue_mapping(skb);
249         if (tid->txq == sc->tx.txq_map[q]) {
250                 fi = get_frame_info(skb);
251                 fi->txq = q;
252                 ++tid->txq->pending_frames;
253         }
254
255         return skb;
256 }
257
258
259 static bool ath_tid_has_buffered(struct ath_atx_tid *tid)
260 {
261         return !skb_queue_empty(&tid->retry_q) || tid->has_queued;
262 }
263
264 static struct sk_buff *ath_tid_dequeue(struct ath_atx_tid *tid)
265 {
266         struct sk_buff *skb;
267
268         skb = __skb_dequeue(&tid->retry_q);
269         if (!skb)
270                 skb = ath_tid_pull(tid);
271
272         return skb;
273 }
274
275 static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
276 {
277         struct ath_txq *txq = tid->txq;
278         struct sk_buff *skb;
279         struct ath_buf *bf;
280         struct list_head bf_head;
281         struct ath_tx_status ts;
282         struct ath_frame_info *fi;
283         bool sendbar = false;
284
285         INIT_LIST_HEAD(&bf_head);
286
287         memset(&ts, 0, sizeof(ts));
288
289         while ((skb = __skb_dequeue(&tid->retry_q))) {
290                 fi = get_frame_info(skb);
291                 bf = fi->bf;
292                 if (!bf) {
293                         ath_txq_skb_done(sc, txq, skb);
294                         ieee80211_free_txskb(sc->hw, skb);
295                         continue;
296                 }
297
298                 if (fi->baw_tracked) {
299                         ath_tx_update_baw(sc, tid, bf);
300                         sendbar = true;
301                 }
302
303                 list_add_tail(&bf->list, &bf_head);
304                 ath_tx_complete_buf(sc, bf, txq, &bf_head, NULL, &ts, 0);
305         }
306
307         if (sendbar) {
308                 ath_txq_unlock(sc, txq);
309                 ath_send_bar(tid, tid->seq_start);
310                 ath_txq_lock(sc, txq);
311         }
312 }
313
314 static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
315                               struct ath_buf *bf)
316 {
317         struct ath_frame_info *fi = get_frame_info(bf->bf_mpdu);
318         u16 seqno = bf->bf_state.seqno;
319         int index, cindex;
320
321         if (!fi->baw_tracked)
322                 return;
323
324         index  = ATH_BA_INDEX(tid->seq_start, seqno);
325         cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
326
327         __clear_bit(cindex, tid->tx_buf);
328
329         while (tid->baw_head != tid->baw_tail && !test_bit(tid->baw_head, tid->tx_buf)) {
330                 INCR(tid->seq_start, IEEE80211_SEQ_MAX);
331                 INCR(tid->baw_head, ATH_TID_MAX_BUFS);
332                 if (tid->bar_index >= 0)
333                         tid->bar_index--;
334         }
335 }
336
337 static void ath_tx_addto_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
338                              struct ath_buf *bf)
339 {
340         struct ath_frame_info *fi = get_frame_info(bf->bf_mpdu);
341         u16 seqno = bf->bf_state.seqno;
342         int index, cindex;
343
344         if (fi->baw_tracked)
345                 return;
346
347         index  = ATH_BA_INDEX(tid->seq_start, seqno);
348         cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
349         __set_bit(cindex, tid->tx_buf);
350         fi->baw_tracked = 1;
351
352         if (index >= ((tid->baw_tail - tid->baw_head) &
353                 (ATH_TID_MAX_BUFS - 1))) {
354                 tid->baw_tail = cindex;
355                 INCR(tid->baw_tail, ATH_TID_MAX_BUFS);
356         }
357 }
358
359 static void ath_tid_drain(struct ath_softc *sc, struct ath_txq *txq,
360                           struct ath_atx_tid *tid)
361
362 {
363         struct sk_buff *skb;
364         struct ath_buf *bf;
365         struct list_head bf_head;
366         struct ath_tx_status ts;
367         struct ath_frame_info *fi;
368
369         memset(&ts, 0, sizeof(ts));
370         INIT_LIST_HEAD(&bf_head);
371
372         while ((skb = ath_tid_dequeue(tid))) {
373                 fi = get_frame_info(skb);
374                 bf = fi->bf;
375
376                 if (!bf) {
377                         ath_tx_complete(sc, skb, ATH_TX_ERROR, txq, NULL);
378                         continue;
379                 }
380
381                 list_add_tail(&bf->list, &bf_head);
382                 ath_tx_complete_buf(sc, bf, txq, &bf_head, NULL, &ts, 0);
383         }
384 }
385
386 static void ath_tx_set_retry(struct ath_softc *sc, struct ath_txq *txq,
387                              struct sk_buff *skb, int count)
388 {
389         struct ath_frame_info *fi = get_frame_info(skb);
390         struct ath_buf *bf = fi->bf;
391         struct ieee80211_hdr *hdr;
392         int prev = fi->retries;
393
394         TX_STAT_INC(txq->axq_qnum, a_retries);
395         fi->retries += count;
396
397         if (prev > 0)
398                 return;
399
400         hdr = (struct ieee80211_hdr *)skb->data;
401         hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_RETRY);
402         dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
403                 sizeof(*hdr), DMA_TO_DEVICE);
404 }
405
406 static struct ath_buf *ath_tx_get_buffer(struct ath_softc *sc)
407 {
408         struct ath_buf *bf = NULL;
409
410         spin_lock_bh(&sc->tx.txbuflock);
411
412         if (unlikely(list_empty(&sc->tx.txbuf))) {
413                 spin_unlock_bh(&sc->tx.txbuflock);
414                 return NULL;
415         }
416
417         bf = list_first_entry(&sc->tx.txbuf, struct ath_buf, list);
418         list_del(&bf->list);
419
420         spin_unlock_bh(&sc->tx.txbuflock);
421
422         return bf;
423 }
424
425 static void ath_tx_return_buffer(struct ath_softc *sc, struct ath_buf *bf)
426 {
427         spin_lock_bh(&sc->tx.txbuflock);
428         list_add_tail(&bf->list, &sc->tx.txbuf);
429         spin_unlock_bh(&sc->tx.txbuflock);
430 }
431
432 static struct ath_buf* ath_clone_txbuf(struct ath_softc *sc, struct ath_buf *bf)
433 {
434         struct ath_buf *tbf;
435
436         tbf = ath_tx_get_buffer(sc);
437         if (WARN_ON(!tbf))
438                 return NULL;
439
440         ATH_TXBUF_RESET(tbf);
441
442         tbf->bf_mpdu = bf->bf_mpdu;
443         tbf->bf_buf_addr = bf->bf_buf_addr;
444         memcpy(tbf->bf_desc, bf->bf_desc, sc->sc_ah->caps.tx_desc_len);
445         tbf->bf_state = bf->bf_state;
446         tbf->bf_state.stale = false;
447
448         return tbf;
449 }
450
451 static void ath_tx_count_frames(struct ath_softc *sc, struct ath_buf *bf,
452                                 struct ath_tx_status *ts, int txok,
453                                 int *nframes, int *nbad)
454 {
455         struct ath_frame_info *fi;
456         u16 seq_st = 0;
457         u32 ba[WME_BA_BMP_SIZE >> 5];
458         int ba_index;
459         int isaggr = 0;
460
461         *nbad = 0;
462         *nframes = 0;
463
464         isaggr = bf_isaggr(bf);
465         if (isaggr) {
466                 seq_st = ts->ts_seqnum;
467                 memcpy(ba, &ts->ba_low, WME_BA_BMP_SIZE >> 3);
468         }
469
470         while (bf) {
471                 fi = get_frame_info(bf->bf_mpdu);
472                 ba_index = ATH_BA_INDEX(seq_st, bf->bf_state.seqno);
473
474                 (*nframes)++;
475                 if (!txok || (isaggr && !ATH_BA_ISSET(ba, ba_index)))
476                         (*nbad)++;
477
478                 bf = bf->bf_next;
479         }
480 }
481
482
483 static void ath_tx_complete_aggr(struct ath_softc *sc, struct ath_txq *txq,
484                                  struct ath_buf *bf, struct list_head *bf_q,
485                                  struct ieee80211_sta *sta,
486                                  struct ath_atx_tid *tid,
487                                  struct ath_tx_status *ts, int txok)
488 {
489         struct ath_node *an = NULL;
490         struct sk_buff *skb;
491         struct ieee80211_hdr *hdr;
492         struct ieee80211_tx_info *tx_info;
493         struct ath_buf *bf_next, *bf_last = bf->bf_lastbf;
494         struct list_head bf_head;
495         struct sk_buff_head bf_pending;
496         u16 seq_st = 0, acked_cnt = 0, txfail_cnt = 0, seq_first;
497         u32 ba[WME_BA_BMP_SIZE >> 5];
498         int isaggr, txfail, txpending, sendbar = 0, needreset = 0, nbad = 0;
499         bool rc_update = true, isba;
500         struct ieee80211_tx_rate rates[4];
501         struct ath_frame_info *fi;
502         int nframes;
503         bool flush = !!(ts->ts_status & ATH9K_TX_FLUSH);
504         int i, retries;
505         int bar_index = -1;
506
507         skb = bf->bf_mpdu;
508         hdr = (struct ieee80211_hdr *)skb->data;
509
510         tx_info = IEEE80211_SKB_CB(skb);
511
512         memcpy(rates, bf->rates, sizeof(rates));
513
514         retries = ts->ts_longretry + 1;
515         for (i = 0; i < ts->ts_rateindex; i++)
516                 retries += rates[i].count;
517
518         if (!sta) {
519                 INIT_LIST_HEAD(&bf_head);
520                 while (bf) {
521                         bf_next = bf->bf_next;
522
523                         if (!bf->bf_state.stale || bf_next != NULL)
524                                 list_move_tail(&bf->list, &bf_head);
525
526                         ath_tx_complete_buf(sc, bf, txq, &bf_head, NULL, ts, 0);
527
528                         bf = bf_next;
529                 }
530                 return;
531         }
532
533         an = (struct ath_node *)sta->drv_priv;
534         seq_first = tid->seq_start;
535         isba = ts->ts_flags & ATH9K_TX_BA;
536
537         /*
538          * The hardware occasionally sends a tx status for the wrong TID.
539          * In this case, the BA status cannot be considered valid and all
540          * subframes need to be retransmitted
541          *
542          * Only BlockAcks have a TID and therefore normal Acks cannot be
543          * checked
544          */
545         if (isba && tid->tidno != ts->tid)
546                 txok = false;
547
548         isaggr = bf_isaggr(bf);
549         memset(ba, 0, WME_BA_BMP_SIZE >> 3);
550
551         if (isaggr && txok) {
552                 if (ts->ts_flags & ATH9K_TX_BA) {
553                         seq_st = ts->ts_seqnum;
554                         memcpy(ba, &ts->ba_low, WME_BA_BMP_SIZE >> 3);
555                 } else {
556                         /*
557                          * AR5416 can become deaf/mute when BA
558                          * issue happens. Chip needs to be reset.
559                          * But AP code may have sychronization issues
560                          * when perform internal reset in this routine.
561                          * Only enable reset in STA mode for now.
562                          */
563                         if (sc->sc_ah->opmode == NL80211_IFTYPE_STATION)
564                                 needreset = 1;
565                 }
566         }
567
568         __skb_queue_head_init(&bf_pending);
569
570         ath_tx_count_frames(sc, bf, ts, txok, &nframes, &nbad);
571         while (bf) {
572                 u16 seqno = bf->bf_state.seqno;
573
574                 txfail = txpending = sendbar = 0;
575                 bf_next = bf->bf_next;
576
577                 skb = bf->bf_mpdu;
578                 tx_info = IEEE80211_SKB_CB(skb);
579                 fi = get_frame_info(skb);
580
581                 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, seqno) ||
582                     !tid->active) {
583                         /*
584                          * Outside of the current BlockAck window,
585                          * maybe part of a previous session
586                          */
587                         txfail = 1;
588                 } else if (ATH_BA_ISSET(ba, ATH_BA_INDEX(seq_st, seqno))) {
589                         /* transmit completion, subframe is
590                          * acked by block ack */
591                         acked_cnt++;
592                 } else if (!isaggr && txok) {
593                         /* transmit completion */
594                         acked_cnt++;
595                 } else if (flush) {
596                         txpending = 1;
597                 } else if (fi->retries < ATH_MAX_SW_RETRIES) {
598                         if (txok || !an->sleeping)
599                                 ath_tx_set_retry(sc, txq, bf->bf_mpdu,
600                                                  retries);
601
602                         txpending = 1;
603                 } else {
604                         txfail = 1;
605                         txfail_cnt++;
606                         bar_index = max_t(int, bar_index,
607                                 ATH_BA_INDEX(seq_first, seqno));
608                 }
609
610                 /*
611                  * Make sure the last desc is reclaimed if it
612                  * not a holding desc.
613                  */
614                 INIT_LIST_HEAD(&bf_head);
615                 if (bf_next != NULL || !bf_last->bf_state.stale)
616                         list_move_tail(&bf->list, &bf_head);
617
618                 if (!txpending) {
619                         /*
620                          * complete the acked-ones/xretried ones; update
621                          * block-ack window
622                          */
623                         ath_tx_update_baw(sc, tid, bf);
624
625                         if (rc_update && (acked_cnt == 1 || txfail_cnt == 1)) {
626                                 memcpy(tx_info->control.rates, rates, sizeof(rates));
627                                 ath_tx_rc_status(sc, bf, ts, nframes, nbad, txok);
628                                 rc_update = false;
629                                 if (bf == bf->bf_lastbf)
630                                         ath_dynack_sample_tx_ts(sc->sc_ah,
631                                                                 bf->bf_mpdu,
632                                                                 ts, sta);
633                         }
634
635                         ath_tx_complete_buf(sc, bf, txq, &bf_head, sta, ts,
636                                 !txfail);
637                 } else {
638                         if (tx_info->flags & IEEE80211_TX_STATUS_EOSP) {
639                                 tx_info->flags &= ~IEEE80211_TX_STATUS_EOSP;
640                                 ieee80211_sta_eosp(sta);
641                         }
642                         /* retry the un-acked ones */
643                         if (bf->bf_next == NULL && bf_last->bf_state.stale) {
644                                 struct ath_buf *tbf;
645
646                                 tbf = ath_clone_txbuf(sc, bf_last);
647                                 /*
648                                  * Update tx baw and complete the
649                                  * frame with failed status if we
650                                  * run out of tx buf.
651                                  */
652                                 if (!tbf) {
653                                         ath_tx_update_baw(sc, tid, bf);
654
655                                         ath_tx_complete_buf(sc, bf, txq,
656                                                             &bf_head, NULL, ts,
657                                                             0);
658                                         bar_index = max_t(int, bar_index,
659                                                 ATH_BA_INDEX(seq_first, seqno));
660                                         break;
661                                 }
662
663                                 fi->bf = tbf;
664                         }
665
666                         /*
667                          * Put this buffer to the temporary pending
668                          * queue to retain ordering
669                          */
670                         __skb_queue_tail(&bf_pending, skb);
671                 }
672
673                 bf = bf_next;
674         }
675
676         /* prepend un-acked frames to the beginning of the pending frame queue */
677         if (!skb_queue_empty(&bf_pending)) {
678                 if (an->sleeping)
679                         ieee80211_sta_set_buffered(sta, tid->tidno, true);
680
681                 skb_queue_splice_tail(&bf_pending, &tid->retry_q);
682                 if (!an->sleeping) {
683                         ath_tx_queue_tid(sc, tid);
684
685                         if (ts->ts_status & (ATH9K_TXERR_FILT | ATH9K_TXERR_XRETRY))
686                                 tid->clear_ps_filter = true;
687                 }
688         }
689
690         if (bar_index >= 0) {
691                 u16 bar_seq = ATH_BA_INDEX2SEQ(seq_first, bar_index);
692
693                 if (BAW_WITHIN(tid->seq_start, tid->baw_size, bar_seq))
694                         tid->bar_index = ATH_BA_INDEX(tid->seq_start, bar_seq);
695
696                 ath_txq_unlock(sc, txq);
697                 ath_send_bar(tid, ATH_BA_INDEX2SEQ(seq_first, bar_index + 1));
698                 ath_txq_lock(sc, txq);
699         }
700
701         if (needreset)
702                 ath9k_queue_reset(sc, RESET_TYPE_TX_ERROR);
703 }
704
705 static bool bf_is_ampdu_not_probing(struct ath_buf *bf)
706 {
707     struct ieee80211_tx_info *info = IEEE80211_SKB_CB(bf->bf_mpdu);
708     return bf_isampdu(bf) && !(info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE);
709 }
710
711 static void ath_tx_count_airtime(struct ath_softc *sc, struct ath_node *an,
712                                  struct ath_atx_tid *tid, struct ath_buf *bf,
713                                  struct ath_tx_status *ts)
714 {
715         struct ath_txq *txq = tid->txq;
716         u32 airtime = 0;
717         int i;
718
719         airtime += ts->duration * (ts->ts_longretry + 1);
720         for(i = 0; i < ts->ts_rateindex; i++) {
721                 int rate_dur = ath9k_hw_get_duration(sc->sc_ah, bf->bf_desc, i);
722                 airtime += rate_dur * bf->rates[i].count;
723         }
724
725         if (sc->airtime_flags & AIRTIME_USE_TX) {
726                 int q = txq->mac80211_qnum;
727                 struct ath_acq *acq = &sc->cur_chan->acq[q];
728
729                 spin_lock_bh(&acq->lock);
730                 an->airtime_deficit[q] -= airtime;
731                 if (an->airtime_deficit[q] <= 0)
732                         __ath_tx_queue_tid(sc, tid);
733                 spin_unlock_bh(&acq->lock);
734         }
735         ath_debug_airtime(sc, an, 0, airtime);
736 }
737
738 static void ath_tx_process_buffer(struct ath_softc *sc, struct ath_txq *txq,
739                                   struct ath_tx_status *ts, struct ath_buf *bf,
740                                   struct list_head *bf_head)
741 {
742         struct ieee80211_hw *hw = sc->hw;
743         struct ieee80211_tx_info *info;
744         struct ieee80211_sta *sta;
745         struct ieee80211_hdr *hdr;
746         struct ath_atx_tid *tid = NULL;
747         bool txok, flush;
748
749         txok = !(ts->ts_status & ATH9K_TXERR_MASK);
750         flush = !!(ts->ts_status & ATH9K_TX_FLUSH);
751         txq->axq_tx_inprogress = false;
752
753         txq->axq_depth--;
754         if (bf_is_ampdu_not_probing(bf))
755                 txq->axq_ampdu_depth--;
756
757         ts->duration = ath9k_hw_get_duration(sc->sc_ah, bf->bf_desc,
758                                              ts->ts_rateindex);
759
760         hdr = (struct ieee80211_hdr *) bf->bf_mpdu->data;
761         sta = ieee80211_find_sta_by_ifaddr(hw, hdr->addr1, hdr->addr2);
762         if (sta) {
763                 struct ath_node *an = (struct ath_node *)sta->drv_priv;
764                 tid = ath_get_skb_tid(sc, an, bf->bf_mpdu);
765                 ath_tx_count_airtime(sc, an, tid, bf, ts);
766                 if (ts->ts_status & (ATH9K_TXERR_FILT | ATH9K_TXERR_XRETRY))
767                         tid->clear_ps_filter = true;
768         }
769
770         if (!bf_isampdu(bf)) {
771                 if (!flush) {
772                         info = IEEE80211_SKB_CB(bf->bf_mpdu);
773                         memcpy(info->control.rates, bf->rates,
774                                sizeof(info->control.rates));
775                         ath_tx_rc_status(sc, bf, ts, 1, txok ? 0 : 1, txok);
776                         ath_dynack_sample_tx_ts(sc->sc_ah, bf->bf_mpdu, ts,
777                                                 sta);
778                 }
779                 ath_tx_complete_buf(sc, bf, txq, bf_head, sta, ts, txok);
780         } else
781                 ath_tx_complete_aggr(sc, txq, bf, bf_head, sta, tid, ts, txok);
782
783         if (!flush)
784                 ath_txq_schedule(sc, txq);
785 }
786
787 static bool ath_lookup_legacy(struct ath_buf *bf)
788 {
789         struct sk_buff *skb;
790         struct ieee80211_tx_info *tx_info;
791         struct ieee80211_tx_rate *rates;
792         int i;
793
794         skb = bf->bf_mpdu;
795         tx_info = IEEE80211_SKB_CB(skb);
796         rates = tx_info->control.rates;
797
798         for (i = 0; i < 4; i++) {
799                 if (!rates[i].count || rates[i].idx < 0)
800                         break;
801
802                 if (!(rates[i].flags & IEEE80211_TX_RC_MCS))
803                         return true;
804         }
805
806         return false;
807 }
808
809 static u32 ath_lookup_rate(struct ath_softc *sc, struct ath_buf *bf,
810                            struct ath_atx_tid *tid)
811 {
812         struct sk_buff *skb;
813         struct ieee80211_tx_info *tx_info;
814         struct ieee80211_tx_rate *rates;
815         u32 max_4ms_framelen, frmlen;
816         u16 aggr_limit, bt_aggr_limit, legacy = 0;
817         int q = tid->txq->mac80211_qnum;
818         int i;
819
820         skb = bf->bf_mpdu;
821         tx_info = IEEE80211_SKB_CB(skb);
822         rates = bf->rates;
823
824         /*
825          * Find the lowest frame length among the rate series that will have a
826          * 4ms (or TXOP limited) transmit duration.
827          */
828         max_4ms_framelen = ATH_AMPDU_LIMIT_MAX;
829
830         for (i = 0; i < 4; i++) {
831                 int modeidx;
832
833                 if (!rates[i].count)
834                         continue;
835
836                 if (!(rates[i].flags & IEEE80211_TX_RC_MCS)) {
837                         legacy = 1;
838                         break;
839                 }
840
841                 if (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
842                         modeidx = MCS_HT40;
843                 else
844                         modeidx = MCS_HT20;
845
846                 if (rates[i].flags & IEEE80211_TX_RC_SHORT_GI)
847                         modeidx++;
848
849                 frmlen = sc->tx.max_aggr_framelen[q][modeidx][rates[i].idx];
850                 max_4ms_framelen = min(max_4ms_framelen, frmlen);
851         }
852
853         /*
854          * limit aggregate size by the minimum rate if rate selected is
855          * not a probe rate, if rate selected is a probe rate then
856          * avoid aggregation of this packet.
857          */
858         if (tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE || legacy)
859                 return 0;
860
861         aggr_limit = min(max_4ms_framelen, (u32)ATH_AMPDU_LIMIT_MAX);
862
863         /*
864          * Override the default aggregation limit for BTCOEX.
865          */
866         bt_aggr_limit = ath9k_btcoex_aggr_limit(sc, max_4ms_framelen);
867         if (bt_aggr_limit)
868                 aggr_limit = bt_aggr_limit;
869
870         if (tid->an->maxampdu)
871                 aggr_limit = min(aggr_limit, tid->an->maxampdu);
872
873         return aggr_limit;
874 }
875
876 /*
877  * Returns the number of delimiters to be added to
878  * meet the minimum required mpdudensity.
879  */
880 static int ath_compute_num_delims(struct ath_softc *sc, struct ath_atx_tid *tid,
881                                   struct ath_buf *bf, u16 frmlen,
882                                   bool first_subfrm)
883 {
884 #define FIRST_DESC_NDELIMS 60
885         u32 nsymbits, nsymbols;
886         u16 minlen;
887         u8 flags, rix;
888         int width, streams, half_gi, ndelim, mindelim;
889         struct ath_frame_info *fi = get_frame_info(bf->bf_mpdu);
890
891         /* Select standard number of delimiters based on frame length alone */
892         ndelim = ATH_AGGR_GET_NDELIM(frmlen);
893
894         /*
895          * If encryption enabled, hardware requires some more padding between
896          * subframes.
897          * TODO - this could be improved to be dependent on the rate.
898          *      The hardware can keep up at lower rates, but not higher rates
899          */
900         if ((fi->keyix != ATH9K_TXKEYIX_INVALID) &&
901             !(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA))
902                 ndelim += ATH_AGGR_ENCRYPTDELIM;
903
904         /*
905          * Add delimiter when using RTS/CTS with aggregation
906          * and non enterprise AR9003 card
907          */
908         if (first_subfrm && !AR_SREV_9580_10_OR_LATER(sc->sc_ah) &&
909             (sc->sc_ah->ent_mode & AR_ENT_OTP_MIN_PKT_SIZE_DISABLE))
910                 ndelim = max(ndelim, FIRST_DESC_NDELIMS);
911
912         /*
913          * Convert desired mpdu density from microeconds to bytes based
914          * on highest rate in rate series (i.e. first rate) to determine
915          * required minimum length for subframe. Take into account
916          * whether high rate is 20 or 40Mhz and half or full GI.
917          *
918          * If there is no mpdu density restriction, no further calculation
919          * is needed.
920          */
921
922         if (tid->an->mpdudensity == 0)
923                 return ndelim;
924
925         rix = bf->rates[0].idx;
926         flags = bf->rates[0].flags;
927         width = (flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ? 1 : 0;
928         half_gi = (flags & IEEE80211_TX_RC_SHORT_GI) ? 1 : 0;
929
930         if (half_gi)
931                 nsymbols = NUM_SYMBOLS_PER_USEC_HALFGI(tid->an->mpdudensity);
932         else
933                 nsymbols = NUM_SYMBOLS_PER_USEC(tid->an->mpdudensity);
934
935         if (nsymbols == 0)
936                 nsymbols = 1;
937
938         streams = HT_RC_2_STREAMS(rix);
939         nsymbits = bits_per_symbol[rix % 8][width] * streams;
940         minlen = (nsymbols * nsymbits) / BITS_PER_BYTE;
941
942         if (frmlen < minlen) {
943                 mindelim = (minlen - frmlen) / ATH_AGGR_DELIM_SZ;
944                 ndelim = max(mindelim, ndelim);
945         }
946
947         return ndelim;
948 }
949
950 static struct ath_buf *
951 ath_tx_get_tid_subframe(struct ath_softc *sc, struct ath_txq *txq,
952                         struct ath_atx_tid *tid)
953 {
954         struct ieee80211_tx_info *tx_info;
955         struct ath_frame_info *fi;
956         struct sk_buff *skb, *first_skb = NULL;
957         struct ath_buf *bf;
958         u16 seqno;
959
960         while (1) {
961                 skb = ath_tid_dequeue(tid);
962                 if (!skb)
963                         break;
964
965                 fi = get_frame_info(skb);
966                 bf = fi->bf;
967                 if (!fi->bf)
968                         bf = ath_tx_setup_buffer(sc, txq, tid, skb);
969                 else
970                         bf->bf_state.stale = false;
971
972                 if (!bf) {
973                         ath_txq_skb_done(sc, txq, skb);
974                         ieee80211_free_txskb(sc->hw, skb);
975                         continue;
976                 }
977
978                 bf->bf_next = NULL;
979                 bf->bf_lastbf = bf;
980
981                 tx_info = IEEE80211_SKB_CB(skb);
982                 tx_info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
983                                     IEEE80211_TX_STATUS_EOSP);
984
985                 /*
986                  * No aggregation session is running, but there may be frames
987                  * from a previous session or a failed attempt in the queue.
988                  * Send them out as normal data frames
989                  */
990                 if (!tid->active)
991                         tx_info->flags &= ~IEEE80211_TX_CTL_AMPDU;
992
993                 if (!(tx_info->flags & IEEE80211_TX_CTL_AMPDU)) {
994                         bf->bf_state.bf_type = 0;
995                         return bf;
996                 }
997
998                 bf->bf_state.bf_type = BUF_AMPDU | BUF_AGGR;
999                 seqno = bf->bf_state.seqno;
1000
1001                 /* do not step over block-ack window */
1002                 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, seqno)) {
1003                         __skb_queue_tail(&tid->retry_q, skb);
1004
1005                         /* If there are other skbs in the retry q, they are
1006                          * probably within the BAW, so loop immediately to get
1007                          * one of them. Otherwise the queue can get stuck. */
1008                         if (!skb_queue_is_first(&tid->retry_q, skb) &&
1009                             !WARN_ON(skb == first_skb)) {
1010                                 if(!first_skb) /* infinite loop prevention */
1011                                         first_skb = skb;
1012                                 continue;
1013                         }
1014                         break;
1015                 }
1016
1017                 if (tid->bar_index > ATH_BA_INDEX(tid->seq_start, seqno)) {
1018                         struct ath_tx_status ts = {};
1019                         struct list_head bf_head;
1020
1021                         INIT_LIST_HEAD(&bf_head);
1022                         list_add(&bf->list, &bf_head);
1023                         ath_tx_update_baw(sc, tid, bf);
1024                         ath_tx_complete_buf(sc, bf, txq, &bf_head, NULL, &ts, 0);
1025                         continue;
1026                 }
1027
1028                 if (bf_isampdu(bf))
1029                         ath_tx_addto_baw(sc, tid, bf);
1030
1031                 return bf;
1032         }
1033
1034         return NULL;
1035 }
1036
1037 static int
1038 ath_tx_form_aggr(struct ath_softc *sc, struct ath_txq *txq,
1039                  struct ath_atx_tid *tid, struct list_head *bf_q,
1040                  struct ath_buf *bf_first)
1041 {
1042 #define PADBYTES(_len) ((4 - ((_len) % 4)) % 4)
1043         struct ath_buf *bf = bf_first, *bf_prev = NULL;
1044         int nframes = 0, ndelim;
1045         u16 aggr_limit = 0, al = 0, bpad = 0,
1046             al_delta, h_baw = tid->baw_size / 2;
1047         struct ieee80211_tx_info *tx_info;
1048         struct ath_frame_info *fi;
1049         struct sk_buff *skb;
1050
1051
1052         bf = bf_first;
1053         aggr_limit = ath_lookup_rate(sc, bf, tid);
1054
1055         while (bf)
1056         {
1057                 skb = bf->bf_mpdu;
1058                 fi = get_frame_info(skb);
1059
1060                 /* do not exceed aggregation limit */
1061                 al_delta = ATH_AGGR_DELIM_SZ + fi->framelen;
1062                 if (nframes) {
1063                         if (aggr_limit < al + bpad + al_delta ||
1064                             ath_lookup_legacy(bf) || nframes >= h_baw)
1065                                 goto stop;
1066
1067                         tx_info = IEEE80211_SKB_CB(bf->bf_mpdu);
1068                         if ((tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) ||
1069                             !(tx_info->flags & IEEE80211_TX_CTL_AMPDU))
1070                                 goto stop;
1071                 }
1072
1073                 /* add padding for previous frame to aggregation length */
1074                 al += bpad + al_delta;
1075
1076                 /*
1077                  * Get the delimiters needed to meet the MPDU
1078                  * density for this node.
1079                  */
1080                 ndelim = ath_compute_num_delims(sc, tid, bf_first, fi->framelen,
1081                                                 !nframes);
1082                 bpad = PADBYTES(al_delta) + (ndelim << 2);
1083
1084                 nframes++;
1085                 bf->bf_next = NULL;
1086
1087                 /* link buffers of this frame to the aggregate */
1088                 bf->bf_state.ndelim = ndelim;
1089
1090                 list_add_tail(&bf->list, bf_q);
1091                 if (bf_prev)
1092                         bf_prev->bf_next = bf;
1093
1094                 bf_prev = bf;
1095
1096                 bf = ath_tx_get_tid_subframe(sc, txq, tid);
1097         }
1098         goto finish;
1099 stop:
1100         __skb_queue_tail(&tid->retry_q, bf->bf_mpdu);
1101 finish:
1102         bf = bf_first;
1103         bf->bf_lastbf = bf_prev;
1104
1105         if (bf == bf_prev) {
1106                 al = get_frame_info(bf->bf_mpdu)->framelen;
1107                 bf->bf_state.bf_type = BUF_AMPDU;
1108         } else {
1109                 TX_STAT_INC(txq->axq_qnum, a_aggr);
1110         }
1111
1112         return al;
1113 #undef PADBYTES
1114 }
1115
1116 /*
1117  * rix - rate index
1118  * pktlen - total bytes (delims + data + fcs + pads + pad delims)
1119  * width  - 0 for 20 MHz, 1 for 40 MHz
1120  * half_gi - to use 4us v/s 3.6 us for symbol time
1121  */
1122 u32 ath_pkt_duration(struct ath_softc *sc, u8 rix, int pktlen,
1123                      int width, int half_gi, bool shortPreamble)
1124 {
1125         u32 nbits, nsymbits, duration, nsymbols;
1126         int streams;
1127
1128         /* find number of symbols: PLCP + data */
1129         streams = HT_RC_2_STREAMS(rix);
1130         nbits = (pktlen << 3) + OFDM_PLCP_BITS;
1131         nsymbits = bits_per_symbol[rix % 8][width] * streams;
1132         nsymbols = (nbits + nsymbits - 1) / nsymbits;
1133
1134         if (!half_gi)
1135                 duration = SYMBOL_TIME(nsymbols);
1136         else
1137                 duration = SYMBOL_TIME_HALFGI(nsymbols);
1138
1139         /* addup duration for legacy/ht training and signal fields */
1140         duration += L_STF + L_LTF + L_SIG + HT_SIG + HT_STF + HT_LTF(streams);
1141
1142         return duration;
1143 }
1144
1145 static int ath_max_framelen(int usec, int mcs, bool ht40, bool sgi)
1146 {
1147         int streams = HT_RC_2_STREAMS(mcs);
1148         int symbols, bits;
1149         int bytes = 0;
1150
1151         usec -= L_STF + L_LTF + L_SIG + HT_SIG + HT_STF + HT_LTF(streams);
1152         symbols = sgi ? TIME_SYMBOLS_HALFGI(usec) : TIME_SYMBOLS(usec);
1153         bits = symbols * bits_per_symbol[mcs % 8][ht40] * streams;
1154         bits -= OFDM_PLCP_BITS;
1155         bytes = bits / 8;
1156         if (bytes > 65532)
1157                 bytes = 65532;
1158
1159         return bytes;
1160 }
1161
1162 void ath_update_max_aggr_framelen(struct ath_softc *sc, int queue, int txop)
1163 {
1164         u16 *cur_ht20, *cur_ht20_sgi, *cur_ht40, *cur_ht40_sgi;
1165         int mcs;
1166
1167         /* 4ms is the default (and maximum) duration */
1168         if (!txop || txop > 4096)
1169                 txop = 4096;
1170
1171         cur_ht20 = sc->tx.max_aggr_framelen[queue][MCS_HT20];
1172         cur_ht20_sgi = sc->tx.max_aggr_framelen[queue][MCS_HT20_SGI];
1173         cur_ht40 = sc->tx.max_aggr_framelen[queue][MCS_HT40];
1174         cur_ht40_sgi = sc->tx.max_aggr_framelen[queue][MCS_HT40_SGI];
1175         for (mcs = 0; mcs < 32; mcs++) {
1176                 cur_ht20[mcs] = ath_max_framelen(txop, mcs, false, false);
1177                 cur_ht20_sgi[mcs] = ath_max_framelen(txop, mcs, false, true);
1178                 cur_ht40[mcs] = ath_max_framelen(txop, mcs, true, false);
1179                 cur_ht40_sgi[mcs] = ath_max_framelen(txop, mcs, true, true);
1180         }
1181 }
1182
1183 static u8 ath_get_rate_txpower(struct ath_softc *sc, struct ath_buf *bf,
1184                                u8 rateidx, bool is_40, bool is_cck)
1185 {
1186         u8 max_power;
1187         struct sk_buff *skb;
1188         struct ath_frame_info *fi;
1189         struct ieee80211_tx_info *info;
1190         struct ath_hw *ah = sc->sc_ah;
1191
1192         if (sc->tx99_state || !ah->tpc_enabled)
1193                 return MAX_RATE_POWER;
1194
1195         skb = bf->bf_mpdu;
1196         fi = get_frame_info(skb);
1197         info = IEEE80211_SKB_CB(skb);
1198
1199         if (!AR_SREV_9300_20_OR_LATER(ah)) {
1200                 int txpower = fi->tx_power;
1201
1202                 if (is_40) {
1203                         u8 power_ht40delta;
1204                         struct ar5416_eeprom_def *eep = &ah->eeprom.def;
1205                         u16 eeprom_rev = ah->eep_ops->get_eeprom_rev(ah);
1206
1207                         if (eeprom_rev >= AR5416_EEP_MINOR_VER_2) {
1208                                 bool is_2ghz;
1209                                 struct modal_eep_header *pmodal;
1210
1211                                 is_2ghz = info->band == NL80211_BAND_2GHZ;
1212                                 pmodal = &eep->modalHeader[is_2ghz];
1213                                 power_ht40delta = pmodal->ht40PowerIncForPdadc;
1214                         } else {
1215                                 power_ht40delta = 2;
1216                         }
1217                         txpower += power_ht40delta;
1218                 }
1219
1220                 if (AR_SREV_9287(ah) || AR_SREV_9285(ah) ||
1221                     AR_SREV_9271(ah)) {
1222                         txpower -= 2 * AR9287_PWR_TABLE_OFFSET_DB;
1223                 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
1224                         s8 power_offset;
1225
1226                         power_offset = ah->eep_ops->get_eeprom(ah,
1227                                                         EEP_PWR_TABLE_OFFSET);
1228                         txpower -= 2 * power_offset;
1229                 }
1230
1231                 if (OLC_FOR_AR9280_20_LATER && is_cck)
1232                         txpower -= 2;
1233
1234                 txpower = max(txpower, 0);
1235                 max_power = min_t(u8, ah->tx_power[rateidx], txpower);
1236
1237                 /* XXX: clamp minimum TX power at 1 for AR9160 since if
1238                  * max_power is set to 0, frames are transmitted at max
1239                  * TX power
1240                  */
1241                 if (!max_power && !AR_SREV_9280_20_OR_LATER(ah))
1242                         max_power = 1;
1243         } else if (!bf->bf_state.bfs_paprd) {
1244                 if (rateidx < 8 && (info->flags & IEEE80211_TX_CTL_STBC))
1245                         max_power = min_t(u8, ah->tx_power_stbc[rateidx],
1246                                           fi->tx_power);
1247                 else
1248                         max_power = min_t(u8, ah->tx_power[rateidx],
1249                                           fi->tx_power);
1250         } else {
1251                 max_power = ah->paprd_training_power;
1252         }
1253
1254         return max_power;
1255 }
1256
1257 static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf,
1258                              struct ath_tx_info *info, int len, bool rts)
1259 {
1260         struct ath_hw *ah = sc->sc_ah;
1261         struct ath_common *common = ath9k_hw_common(ah);
1262         struct sk_buff *skb;
1263         struct ieee80211_tx_info *tx_info;
1264         struct ieee80211_tx_rate *rates;
1265         const struct ieee80211_rate *rate;
1266         struct ieee80211_hdr *hdr;
1267         struct ath_frame_info *fi = get_frame_info(bf->bf_mpdu);
1268         u32 rts_thresh = sc->hw->wiphy->rts_threshold;
1269         int i;
1270         u8 rix = 0;
1271
1272         skb = bf->bf_mpdu;
1273         tx_info = IEEE80211_SKB_CB(skb);
1274         rates = bf->rates;
1275         hdr = (struct ieee80211_hdr *)skb->data;
1276
1277         /* set dur_update_en for l-sig computation except for PS-Poll frames */
1278         info->dur_update = !ieee80211_is_pspoll(hdr->frame_control);
1279         info->rtscts_rate = fi->rtscts_rate;
1280
1281         for (i = 0; i < ARRAY_SIZE(bf->rates); i++) {
1282                 bool is_40, is_sgi, is_sp, is_cck;
1283                 int phy;
1284
1285                 if (!rates[i].count || (rates[i].idx < 0))
1286                         continue;
1287
1288                 rix = rates[i].idx;
1289                 info->rates[i].Tries = rates[i].count;
1290
1291                 /*
1292                  * Handle RTS threshold for unaggregated HT frames.
1293                  */
1294                 if (bf_isampdu(bf) && !bf_isaggr(bf) &&
1295                     (rates[i].flags & IEEE80211_TX_RC_MCS) &&
1296                     unlikely(rts_thresh != (u32) -1)) {
1297                         if (!rts_thresh || (len > rts_thresh))
1298                                 rts = true;
1299                 }
1300
1301                 if (rts || rates[i].flags & IEEE80211_TX_RC_USE_RTS_CTS) {
1302                         info->rates[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS;
1303                         info->flags |= ATH9K_TXDESC_RTSENA;
1304                 } else if (rates[i].flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
1305                         info->rates[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS;
1306                         info->flags |= ATH9K_TXDESC_CTSENA;
1307                 }
1308
1309                 if (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1310                         info->rates[i].RateFlags |= ATH9K_RATESERIES_2040;
1311                 if (rates[i].flags & IEEE80211_TX_RC_SHORT_GI)
1312                         info->rates[i].RateFlags |= ATH9K_RATESERIES_HALFGI;
1313
1314                 is_sgi = !!(rates[i].flags & IEEE80211_TX_RC_SHORT_GI);
1315                 is_40 = !!(rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH);
1316                 is_sp = !!(rates[i].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE);
1317
1318                 if (rates[i].flags & IEEE80211_TX_RC_MCS) {
1319                         /* MCS rates */
1320                         info->rates[i].Rate = rix | 0x80;
1321                         info->rates[i].ChSel = ath_txchainmask_reduction(sc,
1322                                         ah->txchainmask, info->rates[i].Rate);
1323                         info->rates[i].PktDuration = ath_pkt_duration(sc, rix, len,
1324                                  is_40, is_sgi, is_sp);
1325                         if (rix < 8 && (tx_info->flags & IEEE80211_TX_CTL_STBC))
1326                                 info->rates[i].RateFlags |= ATH9K_RATESERIES_STBC;
1327                         if (rix >= 8 && fi->dyn_smps) {
1328                                 info->rates[i].RateFlags |=
1329                                         ATH9K_RATESERIES_RTS_CTS;
1330                                 info->flags |= ATH9K_TXDESC_CTSENA;
1331                         }
1332
1333                         info->txpower[i] = ath_get_rate_txpower(sc, bf, rix,
1334                                                                 is_40, false);
1335                         continue;
1336                 }
1337
1338                 /* legacy rates */
1339                 rate = &common->sbands[tx_info->band].bitrates[rates[i].idx];
1340                 if ((tx_info->band == NL80211_BAND_2GHZ) &&
1341                     !(rate->flags & IEEE80211_RATE_ERP_G))
1342                         phy = WLAN_RC_PHY_CCK;
1343                 else
1344                         phy = WLAN_RC_PHY_OFDM;
1345
1346                 info->rates[i].Rate = rate->hw_value;
1347                 if (rate->hw_value_short) {
1348                         if (rates[i].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
1349                                 info->rates[i].Rate |= rate->hw_value_short;
1350                 } else {
1351                         is_sp = false;
1352                 }
1353
1354                 if (bf->bf_state.bfs_paprd)
1355                         info->rates[i].ChSel = ah->txchainmask;
1356                 else
1357                         info->rates[i].ChSel = ath_txchainmask_reduction(sc,
1358                                         ah->txchainmask, info->rates[i].Rate);
1359
1360                 info->rates[i].PktDuration = ath9k_hw_computetxtime(sc->sc_ah,
1361                         phy, rate->bitrate * 100, len, rix, is_sp);
1362
1363                 is_cck = IS_CCK_RATE(info->rates[i].Rate);
1364                 info->txpower[i] = ath_get_rate_txpower(sc, bf, rix, false,
1365                                                         is_cck);
1366         }
1367
1368         /* For AR5416 - RTS cannot be followed by a frame larger than 8K */
1369         if (bf_isaggr(bf) && (len > sc->sc_ah->caps.rts_aggr_limit))
1370                 info->flags &= ~ATH9K_TXDESC_RTSENA;
1371
1372         /* ATH9K_TXDESC_RTSENA and ATH9K_TXDESC_CTSENA are mutually exclusive. */
1373         if (info->flags & ATH9K_TXDESC_RTSENA)
1374                 info->flags &= ~ATH9K_TXDESC_CTSENA;
1375 }
1376
1377 static enum ath9k_pkt_type get_hw_packet_type(struct sk_buff *skb)
1378 {
1379         struct ieee80211_hdr *hdr;
1380         enum ath9k_pkt_type htype;
1381         __le16 fc;
1382
1383         hdr = (struct ieee80211_hdr *)skb->data;
1384         fc = hdr->frame_control;
1385
1386         if (ieee80211_is_beacon(fc))
1387                 htype = ATH9K_PKT_TYPE_BEACON;
1388         else if (ieee80211_is_probe_resp(fc))
1389                 htype = ATH9K_PKT_TYPE_PROBE_RESP;
1390         else if (ieee80211_is_atim(fc))
1391                 htype = ATH9K_PKT_TYPE_ATIM;
1392         else if (ieee80211_is_pspoll(fc))
1393                 htype = ATH9K_PKT_TYPE_PSPOLL;
1394         else
1395                 htype = ATH9K_PKT_TYPE_NORMAL;
1396
1397         return htype;
1398 }
1399
1400 static void ath_tx_fill_desc(struct ath_softc *sc, struct ath_buf *bf,
1401                              struct ath_txq *txq, int len)
1402 {
1403         struct ath_hw *ah = sc->sc_ah;
1404         struct ath_buf *bf_first = NULL;
1405         struct ath_tx_info info;
1406         u32 rts_thresh = sc->hw->wiphy->rts_threshold;
1407         bool rts = false;
1408
1409         memset(&info, 0, sizeof(info));
1410         info.is_first = true;
1411         info.is_last = true;
1412         info.qcu = txq->axq_qnum;
1413
1414         while (bf) {
1415                 struct sk_buff *skb = bf->bf_mpdu;
1416                 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1417                 struct ath_frame_info *fi = get_frame_info(skb);
1418                 bool aggr = !!(bf->bf_state.bf_type & BUF_AGGR);
1419
1420                 info.type = get_hw_packet_type(skb);
1421                 if (bf->bf_next)
1422                         info.link = bf->bf_next->bf_daddr;
1423                 else
1424                         info.link = (sc->tx99_state) ? bf->bf_daddr : 0;
1425
1426                 if (!bf_first) {
1427                         bf_first = bf;
1428
1429                         if (!sc->tx99_state)
1430                                 info.flags = ATH9K_TXDESC_INTREQ;
1431                         if ((tx_info->flags & IEEE80211_TX_CTL_CLEAR_PS_FILT) ||
1432                             txq == sc->tx.uapsdq)
1433                                 info.flags |= ATH9K_TXDESC_CLRDMASK;
1434
1435                         if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK)
1436                                 info.flags |= ATH9K_TXDESC_NOACK;
1437                         if (tx_info->flags & IEEE80211_TX_CTL_LDPC)
1438                                 info.flags |= ATH9K_TXDESC_LDPC;
1439
1440                         if (bf->bf_state.bfs_paprd)
1441                                 info.flags |= (u32) bf->bf_state.bfs_paprd <<
1442                                               ATH9K_TXDESC_PAPRD_S;
1443
1444                         /*
1445                          * mac80211 doesn't handle RTS threshold for HT because
1446                          * the decision has to be taken based on AMPDU length
1447                          * and aggregation is done entirely inside ath9k.
1448                          * Set the RTS/CTS flag for the first subframe based
1449                          * on the threshold.
1450                          */
1451                         if (aggr && (bf == bf_first) &&
1452                             unlikely(rts_thresh != (u32) -1)) {
1453                                 /*
1454                                  * "len" is the size of the entire AMPDU.
1455                                  */
1456                                 if (!rts_thresh || (len > rts_thresh))
1457                                         rts = true;
1458                         }
1459
1460                         if (!aggr)
1461                                 len = fi->framelen;
1462
1463                         ath_buf_set_rate(sc, bf, &info, len, rts);
1464                 }
1465
1466                 info.buf_addr[0] = bf->bf_buf_addr;
1467                 info.buf_len[0] = skb->len;
1468                 info.pkt_len = fi->framelen;
1469                 info.keyix = fi->keyix;
1470                 info.keytype = fi->keytype;
1471
1472                 if (aggr) {
1473                         if (bf == bf_first)
1474                                 info.aggr = AGGR_BUF_FIRST;
1475                         else if (bf == bf_first->bf_lastbf)
1476                                 info.aggr = AGGR_BUF_LAST;
1477                         else
1478                                 info.aggr = AGGR_BUF_MIDDLE;
1479
1480                         info.ndelim = bf->bf_state.ndelim;
1481                         info.aggr_len = len;
1482                 }
1483
1484                 if (bf == bf_first->bf_lastbf)
1485                         bf_first = NULL;
1486
1487                 ath9k_hw_set_txdesc(ah, bf->bf_desc, &info);
1488                 bf = bf->bf_next;
1489         }
1490 }
1491
1492 static void
1493 ath_tx_form_burst(struct ath_softc *sc, struct ath_txq *txq,
1494                   struct ath_atx_tid *tid, struct list_head *bf_q,
1495                   struct ath_buf *bf_first)
1496 {
1497         struct ath_buf *bf = bf_first, *bf_prev = NULL;
1498         int nframes = 0;
1499
1500         do {
1501                 struct ieee80211_tx_info *tx_info;
1502
1503                 nframes++;
1504                 list_add_tail(&bf->list, bf_q);
1505                 if (bf_prev)
1506                         bf_prev->bf_next = bf;
1507                 bf_prev = bf;
1508
1509                 if (nframes >= 2)
1510                         break;
1511
1512                 bf = ath_tx_get_tid_subframe(sc, txq, tid);
1513                 if (!bf)
1514                         break;
1515
1516                 tx_info = IEEE80211_SKB_CB(bf->bf_mpdu);
1517                 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
1518                         __skb_queue_tail(&tid->retry_q, bf->bf_mpdu);
1519                         break;
1520                 }
1521
1522                 ath_set_rates(tid->an->vif, tid->an->sta, bf);
1523         } while (1);
1524 }
1525
1526 static bool ath_tx_sched_aggr(struct ath_softc *sc, struct ath_txq *txq,
1527                               struct ath_atx_tid *tid)
1528 {
1529         struct ath_buf *bf;
1530         struct ieee80211_tx_info *tx_info;
1531         struct list_head bf_q;
1532         int aggr_len = 0;
1533         bool aggr;
1534
1535         if (!ath_tid_has_buffered(tid))
1536                 return false;
1537
1538         INIT_LIST_HEAD(&bf_q);
1539
1540         bf = ath_tx_get_tid_subframe(sc, txq, tid);
1541         if (!bf)
1542                 return false;
1543
1544         tx_info = IEEE80211_SKB_CB(bf->bf_mpdu);
1545         aggr = !!(tx_info->flags & IEEE80211_TX_CTL_AMPDU);
1546         if ((aggr && txq->axq_ampdu_depth >= ATH_AGGR_MIN_QDEPTH) ||
1547             (!aggr && txq->axq_depth >= ATH_NON_AGGR_MIN_QDEPTH)) {
1548                 __skb_queue_tail(&tid->retry_q, bf->bf_mpdu);
1549                 return false;
1550         }
1551
1552         ath_set_rates(tid->an->vif, tid->an->sta, bf);
1553         if (aggr)
1554                 aggr_len = ath_tx_form_aggr(sc, txq, tid, &bf_q, bf);
1555         else
1556                 ath_tx_form_burst(sc, txq, tid, &bf_q, bf);
1557
1558         if (list_empty(&bf_q))
1559                 return false;
1560
1561         if (tid->clear_ps_filter || tid->an->no_ps_filter) {
1562                 tid->clear_ps_filter = false;
1563                 tx_info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1564         }
1565
1566         ath_tx_fill_desc(sc, bf, txq, aggr_len);
1567         ath_tx_txqaddbuf(sc, txq, &bf_q, false);
1568         return true;
1569 }
1570
1571 int ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta,
1572                       u16 tid, u16 *ssn)
1573 {
1574         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1575         struct ath_atx_tid *txtid;
1576         struct ath_txq *txq;
1577         struct ath_node *an;
1578         u8 density;
1579
1580         ath_dbg(common, XMIT, "%s called\n", __func__);
1581
1582         an = (struct ath_node *)sta->drv_priv;
1583         txtid = ATH_AN_2_TID(an, tid);
1584         txq = txtid->txq;
1585
1586         ath_txq_lock(sc, txq);
1587
1588         /* update ampdu factor/density, they may have changed. This may happen
1589          * in HT IBSS when a beacon with HT-info is received after the station
1590          * has already been added.
1591          */
1592         if (sta->ht_cap.ht_supported) {
1593                 an->maxampdu = (1 << (IEEE80211_HT_MAX_AMPDU_FACTOR +
1594                                       sta->ht_cap.ampdu_factor)) - 1;
1595                 density = ath9k_parse_mpdudensity(sta->ht_cap.ampdu_density);
1596                 an->mpdudensity = density;
1597         }
1598
1599         txtid->active = true;
1600         *ssn = txtid->seq_start = txtid->seq_next;
1601         txtid->bar_index = -1;
1602
1603         memset(txtid->tx_buf, 0, sizeof(txtid->tx_buf));
1604         txtid->baw_head = txtid->baw_tail = 0;
1605
1606         ath_txq_unlock_complete(sc, txq);
1607
1608         return 0;
1609 }
1610
1611 void ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
1612 {
1613         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1614         struct ath_node *an = (struct ath_node *)sta->drv_priv;
1615         struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid);
1616         struct ath_txq *txq = txtid->txq;
1617
1618         ath_dbg(common, XMIT, "%s called\n", __func__);
1619
1620         ath_txq_lock(sc, txq);
1621         txtid->active = false;
1622         ath_tx_flush_tid(sc, txtid);
1623         ath_txq_unlock_complete(sc, txq);
1624 }
1625
1626 void ath_tx_aggr_sleep(struct ieee80211_sta *sta, struct ath_softc *sc,
1627                        struct ath_node *an)
1628 {
1629         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1630         struct ath_atx_tid *tid;
1631         struct ath_txq *txq;
1632         int tidno;
1633
1634         ath_dbg(common, XMIT, "%s called\n", __func__);
1635
1636         for (tidno = 0; tidno < IEEE80211_NUM_TIDS; tidno++) {
1637                 tid = ath_node_to_tid(an, tidno);
1638                 txq = tid->txq;
1639
1640                 ath_txq_lock(sc, txq);
1641
1642                 if (list_empty(&tid->list)) {
1643                         ath_txq_unlock(sc, txq);
1644                         continue;
1645                 }
1646
1647                 if (!skb_queue_empty(&tid->retry_q))
1648                         ieee80211_sta_set_buffered(sta, tid->tidno, true);
1649
1650                 list_del_init(&tid->list);
1651
1652                 ath_txq_unlock(sc, txq);
1653         }
1654 }
1655
1656 void ath_tx_aggr_wakeup(struct ath_softc *sc, struct ath_node *an)
1657 {
1658         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1659         struct ath_atx_tid *tid;
1660         struct ath_txq *txq;
1661         int tidno;
1662
1663         ath_dbg(common, XMIT, "%s called\n", __func__);
1664
1665         for (tidno = 0; tidno < IEEE80211_NUM_TIDS; tidno++) {
1666                 tid = ath_node_to_tid(an, tidno);
1667                 txq = tid->txq;
1668
1669                 ath_txq_lock(sc, txq);
1670                 tid->clear_ps_filter = true;
1671                 if (ath_tid_has_buffered(tid)) {
1672                         ath_tx_queue_tid(sc, tid);
1673                         ath_txq_schedule(sc, txq);
1674                 }
1675                 ath_txq_unlock_complete(sc, txq);
1676         }
1677 }
1678
1679
1680 static void
1681 ath9k_set_moredata(struct ath_softc *sc, struct ath_buf *bf, bool val)
1682 {
1683         struct ieee80211_hdr *hdr;
1684         u16 mask = cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1685         u16 mask_val = mask * val;
1686
1687         hdr = (struct ieee80211_hdr *) bf->bf_mpdu->data;
1688         if ((hdr->frame_control & mask) != mask_val) {
1689                 hdr->frame_control = (hdr->frame_control & ~mask) | mask_val;
1690                 dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
1691                         sizeof(*hdr), DMA_TO_DEVICE);
1692         }
1693 }
1694
1695 void ath9k_release_buffered_frames(struct ieee80211_hw *hw,
1696                                    struct ieee80211_sta *sta,
1697                                    u16 tids, int nframes,
1698                                    enum ieee80211_frame_release_type reason,
1699                                    bool more_data)
1700 {
1701         struct ath_softc *sc = hw->priv;
1702         struct ath_node *an = (struct ath_node *)sta->drv_priv;
1703         struct ath_txq *txq = sc->tx.uapsdq;
1704         struct ieee80211_tx_info *info;
1705         struct list_head bf_q;
1706         struct ath_buf *bf_tail = NULL, *bf;
1707         int sent = 0;
1708         int i;
1709
1710         INIT_LIST_HEAD(&bf_q);
1711         for (i = 0; tids && nframes; i++, tids >>= 1) {
1712                 struct ath_atx_tid *tid;
1713
1714                 if (!(tids & 1))
1715                         continue;
1716
1717                 tid = ATH_AN_2_TID(an, i);
1718
1719                 ath_txq_lock(sc, tid->txq);
1720                 while (nframes > 0) {
1721                         bf = ath_tx_get_tid_subframe(sc, sc->tx.uapsdq, tid);
1722                         if (!bf)
1723                                 break;
1724
1725                         ath9k_set_moredata(sc, bf, true);
1726                         list_add_tail(&bf->list, &bf_q);
1727                         ath_set_rates(tid->an->vif, tid->an->sta, bf);
1728                         if (bf_isampdu(bf))
1729                                 bf->bf_state.bf_type &= ~BUF_AGGR;
1730                         if (bf_tail)
1731                                 bf_tail->bf_next = bf;
1732
1733                         bf_tail = bf;
1734                         nframes--;
1735                         sent++;
1736                         TX_STAT_INC(txq->axq_qnum, a_queued_hw);
1737
1738                         if (an->sta && skb_queue_empty(&tid->retry_q))
1739                                 ieee80211_sta_set_buffered(an->sta, i, false);
1740                 }
1741                 ath_txq_unlock_complete(sc, tid->txq);
1742         }
1743
1744         if (list_empty(&bf_q))
1745                 return;
1746
1747         if (!more_data)
1748                 ath9k_set_moredata(sc, bf_tail, false);
1749
1750         info = IEEE80211_SKB_CB(bf_tail->bf_mpdu);
1751         info->flags |= IEEE80211_TX_STATUS_EOSP;
1752
1753         bf = list_first_entry(&bf_q, struct ath_buf, list);
1754         ath_txq_lock(sc, txq);
1755         ath_tx_fill_desc(sc, bf, txq, 0);
1756         ath_tx_txqaddbuf(sc, txq, &bf_q, false);
1757         ath_txq_unlock(sc, txq);
1758 }
1759
1760 /********************/
1761 /* Queue Management */
1762 /********************/
1763
1764 struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype)
1765 {
1766         struct ath_hw *ah = sc->sc_ah;
1767         struct ath9k_tx_queue_info qi;
1768         static const int subtype_txq_to_hwq[] = {
1769                 [IEEE80211_AC_BE] = ATH_TXQ_AC_BE,
1770                 [IEEE80211_AC_BK] = ATH_TXQ_AC_BK,
1771                 [IEEE80211_AC_VI] = ATH_TXQ_AC_VI,
1772                 [IEEE80211_AC_VO] = ATH_TXQ_AC_VO,
1773         };
1774         int axq_qnum, i;
1775
1776         memset(&qi, 0, sizeof(qi));
1777         qi.tqi_subtype = subtype_txq_to_hwq[subtype];
1778         qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT;
1779         qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT;
1780         qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT;
1781         qi.tqi_physCompBuf = 0;
1782
1783         /*
1784          * Enable interrupts only for EOL and DESC conditions.
1785          * We mark tx descriptors to receive a DESC interrupt
1786          * when a tx queue gets deep; otherwise waiting for the
1787          * EOL to reap descriptors.  Note that this is done to
1788          * reduce interrupt load and this only defers reaping
1789          * descriptors, never transmitting frames.  Aside from
1790          * reducing interrupts this also permits more concurrency.
1791          * The only potential downside is if the tx queue backs
1792          * up in which case the top half of the kernel may backup
1793          * due to a lack of tx descriptors.
1794          *
1795          * The UAPSD queue is an exception, since we take a desc-
1796          * based intr on the EOSP frames.
1797          */
1798         if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
1799                 qi.tqi_qflags = TXQ_FLAG_TXINT_ENABLE;
1800         } else {
1801                 if (qtype == ATH9K_TX_QUEUE_UAPSD)
1802                         qi.tqi_qflags = TXQ_FLAG_TXDESCINT_ENABLE;
1803                 else
1804                         qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE |
1805                                         TXQ_FLAG_TXDESCINT_ENABLE;
1806         }
1807         axq_qnum = ath9k_hw_setuptxqueue(ah, qtype, &qi);
1808         if (axq_qnum == -1) {
1809                 /*
1810                  * NB: don't print a message, this happens
1811                  * normally on parts with too few tx queues
1812                  */
1813                 return NULL;
1814         }
1815         if (!ATH_TXQ_SETUP(sc, axq_qnum)) {
1816                 struct ath_txq *txq = &sc->tx.txq[axq_qnum];
1817
1818                 txq->axq_qnum = axq_qnum;
1819                 txq->mac80211_qnum = -1;
1820                 txq->axq_link = NULL;
1821                 __skb_queue_head_init(&txq->complete_q);
1822                 INIT_LIST_HEAD(&txq->axq_q);
1823                 spin_lock_init(&txq->axq_lock);
1824                 txq->axq_depth = 0;
1825                 txq->axq_ampdu_depth = 0;
1826                 txq->axq_tx_inprogress = false;
1827                 sc->tx.txqsetup |= 1<<axq_qnum;
1828
1829                 txq->txq_headidx = txq->txq_tailidx = 0;
1830                 for (i = 0; i < ATH_TXFIFO_DEPTH; i++)
1831                         INIT_LIST_HEAD(&txq->txq_fifo[i]);
1832         }
1833         return &sc->tx.txq[axq_qnum];
1834 }
1835
1836 int ath_txq_update(struct ath_softc *sc, int qnum,
1837                    struct ath9k_tx_queue_info *qinfo)
1838 {
1839         struct ath_hw *ah = sc->sc_ah;
1840         int error = 0;
1841         struct ath9k_tx_queue_info qi;
1842
1843         BUG_ON(sc->tx.txq[qnum].axq_qnum != qnum);
1844
1845         ath9k_hw_get_txq_props(ah, qnum, &qi);
1846         qi.tqi_aifs = qinfo->tqi_aifs;
1847         qi.tqi_cwmin = qinfo->tqi_cwmin;
1848         qi.tqi_cwmax = qinfo->tqi_cwmax;
1849         qi.tqi_burstTime = qinfo->tqi_burstTime;
1850         qi.tqi_readyTime = qinfo->tqi_readyTime;
1851
1852         if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) {
1853                 ath_err(ath9k_hw_common(sc->sc_ah),
1854                         "Unable to update hardware queue %u!\n", qnum);
1855                 error = -EIO;
1856         } else {
1857                 ath9k_hw_resettxqueue(ah, qnum);
1858         }
1859
1860         return error;
1861 }
1862
1863 int ath_cabq_update(struct ath_softc *sc)
1864 {
1865         struct ath9k_tx_queue_info qi;
1866         struct ath_beacon_config *cur_conf = &sc->cur_chan->beacon;
1867         int qnum = sc->beacon.cabq->axq_qnum;
1868
1869         ath9k_hw_get_txq_props(sc->sc_ah, qnum, &qi);
1870
1871         qi.tqi_readyTime = (TU_TO_USEC(cur_conf->beacon_interval) *
1872                             ATH_CABQ_READY_TIME) / 100;
1873         ath_txq_update(sc, qnum, &qi);
1874
1875         return 0;
1876 }
1877
1878 static void ath_drain_txq_list(struct ath_softc *sc, struct ath_txq *txq,
1879                                struct list_head *list)
1880 {
1881         struct ath_buf *bf, *lastbf;
1882         struct list_head bf_head;
1883         struct ath_tx_status ts;
1884
1885         memset(&ts, 0, sizeof(ts));
1886         ts.ts_status = ATH9K_TX_FLUSH;
1887         INIT_LIST_HEAD(&bf_head);
1888
1889         while (!list_empty(list)) {
1890                 bf = list_first_entry(list, struct ath_buf, list);
1891
1892                 if (bf->bf_state.stale) {
1893                         list_del(&bf->list);
1894
1895                         ath_tx_return_buffer(sc, bf);
1896                         continue;
1897                 }
1898
1899                 lastbf = bf->bf_lastbf;
1900                 list_cut_position(&bf_head, list, &lastbf->list);
1901                 ath_tx_process_buffer(sc, txq, &ts, bf, &bf_head);
1902         }
1903 }
1904
1905 /*
1906  * Drain a given TX queue (could be Beacon or Data)
1907  *
1908  * This assumes output has been stopped and
1909  * we do not need to block ath_tx_tasklet.
1910  */
1911 void ath_draintxq(struct ath_softc *sc, struct ath_txq *txq)
1912 {
1913         rcu_read_lock();
1914         ath_txq_lock(sc, txq);
1915
1916         if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
1917                 int idx = txq->txq_tailidx;
1918
1919                 while (!list_empty(&txq->txq_fifo[idx])) {
1920                         ath_drain_txq_list(sc, txq, &txq->txq_fifo[idx]);
1921
1922                         INCR(idx, ATH_TXFIFO_DEPTH);
1923                 }
1924                 txq->txq_tailidx = idx;
1925         }
1926
1927         txq->axq_link = NULL;
1928         txq->axq_tx_inprogress = false;
1929         ath_drain_txq_list(sc, txq, &txq->axq_q);
1930
1931         ath_txq_unlock_complete(sc, txq);
1932         rcu_read_unlock();
1933 }
1934
1935 bool ath_drain_all_txq(struct ath_softc *sc)
1936 {
1937         struct ath_hw *ah = sc->sc_ah;
1938         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1939         struct ath_txq *txq;
1940         int i;
1941         u32 npend = 0;
1942
1943         if (test_bit(ATH_OP_INVALID, &common->op_flags))
1944                 return true;
1945
1946         ath9k_hw_abort_tx_dma(ah);
1947
1948         /* Check if any queue remains active */
1949         for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1950                 if (!ATH_TXQ_SETUP(sc, i))
1951                         continue;
1952
1953                 if (!sc->tx.txq[i].axq_depth)
1954                         continue;
1955
1956                 if (ath9k_hw_numtxpending(ah, sc->tx.txq[i].axq_qnum))
1957                         npend |= BIT(i);
1958         }
1959
1960         if (npend) {
1961                 RESET_STAT_INC(sc, RESET_TX_DMA_ERROR);
1962                 ath_dbg(common, RESET,
1963                         "Failed to stop TX DMA, queues=0x%03x!\n", npend);
1964         }
1965
1966         for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1967                 if (!ATH_TXQ_SETUP(sc, i))
1968                         continue;
1969
1970                 txq = &sc->tx.txq[i];
1971                 ath_draintxq(sc, txq);
1972         }
1973
1974         return !npend;
1975 }
1976
1977 void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq)
1978 {
1979         ath9k_hw_releasetxqueue(sc->sc_ah, txq->axq_qnum);
1980         sc->tx.txqsetup &= ~(1<<txq->axq_qnum);
1981 }
1982
1983 /* For each acq entry, for each tid, try to schedule packets
1984  * for transmit until ampdu_depth has reached min Q depth.
1985  */
1986 void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq)
1987 {
1988         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
1989         struct ath_atx_tid *tid;
1990         struct list_head *tid_list;
1991         struct ath_acq *acq;
1992         bool active = AIRTIME_ACTIVE(sc->airtime_flags);
1993
1994         if (txq->mac80211_qnum < 0)
1995                 return;
1996
1997         if (test_bit(ATH_OP_HW_RESET, &common->op_flags))
1998                 return;
1999
2000         spin_lock_bh(&sc->chan_lock);
2001         rcu_read_lock();
2002         acq = &sc->cur_chan->acq[txq->mac80211_qnum];
2003
2004         if (sc->cur_chan->stopped)
2005                 goto out;
2006
2007 begin:
2008         tid_list = &acq->acq_new;
2009         if (list_empty(tid_list)) {
2010                 tid_list = &acq->acq_old;
2011                 if (list_empty(tid_list))
2012                         goto out;
2013         }
2014         tid = list_first_entry(tid_list, struct ath_atx_tid, list);
2015
2016         if (active && tid->an->airtime_deficit[txq->mac80211_qnum] <= 0) {
2017                 spin_lock_bh(&acq->lock);
2018                 tid->an->airtime_deficit[txq->mac80211_qnum] += ATH_AIRTIME_QUANTUM;
2019                 list_move_tail(&tid->list, &acq->acq_old);
2020                 spin_unlock_bh(&acq->lock);
2021                 goto begin;
2022         }
2023
2024         if (!ath_tid_has_buffered(tid)) {
2025                 spin_lock_bh(&acq->lock);
2026                 if ((tid_list == &acq->acq_new) && !list_empty(&acq->acq_old))
2027                         list_move_tail(&tid->list, &acq->acq_old);
2028                 else {
2029                         list_del_init(&tid->list);
2030                 }
2031                 spin_unlock_bh(&acq->lock);
2032                 goto begin;
2033         }
2034
2035
2036         /*
2037          * If we succeed in scheduling something, immediately restart to make
2038          * sure we keep the HW busy.
2039          */
2040         if(ath_tx_sched_aggr(sc, txq, tid)) {
2041                 if (!active) {
2042                         spin_lock_bh(&acq->lock);
2043                         list_move_tail(&tid->list, &acq->acq_old);
2044                         spin_unlock_bh(&acq->lock);
2045                 }
2046                 goto begin;
2047         }
2048
2049 out:
2050         rcu_read_unlock();
2051         spin_unlock_bh(&sc->chan_lock);
2052 }
2053
2054 void ath_txq_schedule_all(struct ath_softc *sc)
2055 {
2056         struct ath_txq *txq;
2057         int i;
2058
2059         for (i = 0; i < IEEE80211_NUM_ACS; i++) {
2060                 txq = sc->tx.txq_map[i];
2061
2062                 spin_lock_bh(&txq->axq_lock);
2063                 ath_txq_schedule(sc, txq);
2064                 spin_unlock_bh(&txq->axq_lock);
2065         }
2066 }
2067
2068 /***********/
2069 /* TX, DMA */
2070 /***********/
2071
2072 /*
2073  * Insert a chain of ath_buf (descriptors) on a txq and
2074  * assume the descriptors are already chained together by caller.
2075  */
2076 static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
2077                              struct list_head *head, bool internal)
2078 {
2079         struct ath_hw *ah = sc->sc_ah;
2080         struct ath_common *common = ath9k_hw_common(ah);
2081         struct ath_buf *bf, *bf_last;
2082         bool puttxbuf = false;
2083         bool edma;
2084
2085         /*
2086          * Insert the frame on the outbound list and
2087          * pass it on to the hardware.
2088          */
2089
2090         if (list_empty(head))
2091                 return;
2092
2093         edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
2094         bf = list_first_entry(head, struct ath_buf, list);
2095         bf_last = list_entry(head->prev, struct ath_buf, list);
2096
2097         ath_dbg(common, QUEUE, "qnum: %d, txq depth: %d\n",
2098                 txq->axq_qnum, txq->axq_depth);
2099
2100         if (edma && list_empty(&txq->txq_fifo[txq->txq_headidx])) {
2101                 list_splice_tail_init(head, &txq->txq_fifo[txq->txq_headidx]);
2102                 INCR(txq->txq_headidx, ATH_TXFIFO_DEPTH);
2103                 puttxbuf = true;
2104         } else {
2105                 list_splice_tail_init(head, &txq->axq_q);
2106
2107                 if (txq->axq_link) {
2108                         ath9k_hw_set_desc_link(ah, txq->axq_link, bf->bf_daddr);
2109                         ath_dbg(common, XMIT, "link[%u] (%p)=%llx (%p)\n",
2110                                 txq->axq_qnum, txq->axq_link,
2111                                 ito64(bf->bf_daddr), bf->bf_desc);
2112                 } else if (!edma)
2113                         puttxbuf = true;
2114
2115                 txq->axq_link = bf_last->bf_desc;
2116         }
2117
2118         if (puttxbuf) {
2119                 TX_STAT_INC(txq->axq_qnum, puttxbuf);
2120                 ath9k_hw_puttxbuf(ah, txq->axq_qnum, bf->bf_daddr);
2121                 ath_dbg(common, XMIT, "TXDP[%u] = %llx (%p)\n",
2122                         txq->axq_qnum, ito64(bf->bf_daddr), bf->bf_desc);
2123         }
2124
2125         if (!edma || sc->tx99_state) {
2126                 TX_STAT_INC(txq->axq_qnum, txstart);
2127                 ath9k_hw_txstart(ah, txq->axq_qnum);
2128         }
2129
2130         if (!internal) {
2131                 while (bf) {
2132                         txq->axq_depth++;
2133                         if (bf_is_ampdu_not_probing(bf))
2134                                 txq->axq_ampdu_depth++;
2135
2136                         bf_last = bf->bf_lastbf;
2137                         bf = bf_last->bf_next;
2138                         bf_last->bf_next = NULL;
2139                 }
2140         }
2141 }
2142
2143 static void ath_tx_send_normal(struct ath_softc *sc, struct ath_txq *txq,
2144                                struct ath_atx_tid *tid, struct sk_buff *skb)
2145 {
2146         struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
2147         struct ath_frame_info *fi = get_frame_info(skb);
2148         struct list_head bf_head;
2149         struct ath_buf *bf = fi->bf;
2150
2151         INIT_LIST_HEAD(&bf_head);
2152         list_add_tail(&bf->list, &bf_head);
2153         bf->bf_state.bf_type = 0;
2154         if (tid && (tx_info->flags & IEEE80211_TX_CTL_AMPDU)) {
2155                 bf->bf_state.bf_type = BUF_AMPDU;
2156                 ath_tx_addto_baw(sc, tid, bf);
2157         }
2158
2159         bf->bf_next = NULL;
2160         bf->bf_lastbf = bf;
2161         ath_tx_fill_desc(sc, bf, txq, fi->framelen);
2162         ath_tx_txqaddbuf(sc, txq, &bf_head, false);
2163         TX_STAT_INC(txq->axq_qnum, queued);
2164 }
2165
2166 static void setup_frame_info(struct ieee80211_hw *hw,
2167                              struct ieee80211_sta *sta,
2168                              struct sk_buff *skb,
2169                              int framelen)
2170 {
2171         struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
2172         struct ieee80211_key_conf *hw_key = tx_info->control.hw_key;
2173         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2174         const struct ieee80211_rate *rate;
2175         struct ath_frame_info *fi = get_frame_info(skb);
2176         struct ath_node *an = NULL;
2177         enum ath9k_key_type keytype;
2178         bool short_preamble = false;
2179         u8 txpower;
2180
2181         /*
2182          * We check if Short Preamble is needed for the CTS rate by
2183          * checking the BSS's global flag.
2184          * But for the rate series, IEEE80211_TX_RC_USE_SHORT_PREAMBLE is used.
2185          */
2186         if (tx_info->control.vif &&
2187             tx_info->control.vif->bss_conf.use_short_preamble)
2188                 short_preamble = true;
2189
2190         rate = ieee80211_get_rts_cts_rate(hw, tx_info);
2191         keytype = ath9k_cmn_get_hw_crypto_keytype(skb);
2192
2193         if (sta)
2194                 an = (struct ath_node *) sta->drv_priv;
2195
2196         if (tx_info->control.vif) {
2197                 struct ieee80211_vif *vif = tx_info->control.vif;
2198
2199                 txpower = 2 * vif->bss_conf.txpower;
2200         } else {
2201                 struct ath_softc *sc = hw->priv;
2202
2203                 txpower = sc->cur_chan->cur_txpower;
2204         }
2205
2206         memset(fi, 0, sizeof(*fi));
2207         fi->txq = -1;
2208         if (hw_key)
2209                 fi->keyix = hw_key->hw_key_idx;
2210         else if (an && ieee80211_is_data(hdr->frame_control) && an->ps_key > 0)
2211                 fi->keyix = an->ps_key;
2212         else
2213                 fi->keyix = ATH9K_TXKEYIX_INVALID;
2214         fi->dyn_smps = sta && sta->smps_mode == IEEE80211_SMPS_DYNAMIC;
2215         fi->keytype = keytype;
2216         fi->framelen = framelen;
2217         fi->tx_power = txpower;
2218
2219         if (!rate)
2220                 return;
2221         fi->rtscts_rate = rate->hw_value;
2222         if (short_preamble)
2223                 fi->rtscts_rate |= rate->hw_value_short;
2224 }
2225
2226 u8 ath_txchainmask_reduction(struct ath_softc *sc, u8 chainmask, u32 rate)
2227 {
2228         struct ath_hw *ah = sc->sc_ah;
2229         struct ath9k_channel *curchan = ah->curchan;
2230
2231         if ((ah->caps.hw_caps & ATH9K_HW_CAP_APM) && IS_CHAN_5GHZ(curchan) &&
2232             (chainmask == 0x7) && (rate < 0x90))
2233                 return 0x3;
2234         else if (AR_SREV_9462(ah) && ath9k_hw_btcoex_is_enabled(ah) &&
2235                  IS_CCK_RATE(rate))
2236                 return 0x2;
2237         else
2238                 return chainmask;
2239 }
2240
2241 /*
2242  * Assign a descriptor (and sequence number if necessary,
2243  * and map buffer for DMA. Frees skb on error
2244  */
2245 static struct ath_buf *ath_tx_setup_buffer(struct ath_softc *sc,
2246                                            struct ath_txq *txq,
2247                                            struct ath_atx_tid *tid,
2248                                            struct sk_buff *skb)
2249 {
2250         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2251         struct ath_frame_info *fi = get_frame_info(skb);
2252         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2253         struct ath_buf *bf;
2254         int fragno;
2255         u16 seqno;
2256
2257         bf = ath_tx_get_buffer(sc);
2258         if (!bf) {
2259                 ath_dbg(common, XMIT, "TX buffers are full\n");
2260                 return NULL;
2261         }
2262
2263         ATH_TXBUF_RESET(bf);
2264
2265         if (tid && ieee80211_is_data_present(hdr->frame_control)) {
2266                 fragno = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
2267                 seqno = tid->seq_next;
2268                 hdr->seq_ctrl = cpu_to_le16(tid->seq_next << IEEE80211_SEQ_SEQ_SHIFT);
2269
2270                 if (fragno)
2271                         hdr->seq_ctrl |= cpu_to_le16(fragno);
2272
2273                 if (!ieee80211_has_morefrags(hdr->frame_control))
2274                         INCR(tid->seq_next, IEEE80211_SEQ_MAX);
2275
2276                 bf->bf_state.seqno = seqno;
2277         }
2278
2279         bf->bf_mpdu = skb;
2280
2281         bf->bf_buf_addr = dma_map_single(sc->dev, skb->data,
2282                                          skb->len, DMA_TO_DEVICE);
2283         if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
2284                 bf->bf_mpdu = NULL;
2285                 bf->bf_buf_addr = 0;
2286                 ath_err(ath9k_hw_common(sc->sc_ah),
2287                         "dma_mapping_error() on TX\n");
2288                 ath_tx_return_buffer(sc, bf);
2289                 return NULL;
2290         }
2291
2292         fi->bf = bf;
2293
2294         return bf;
2295 }
2296
2297 void ath_assign_seq(struct ath_common *common, struct sk_buff *skb)
2298 {
2299         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2300         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2301         struct ieee80211_vif *vif = info->control.vif;
2302         struct ath_vif *avp;
2303
2304         if (!(info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ))
2305                 return;
2306
2307         if (!vif)
2308                 return;
2309
2310         avp = (struct ath_vif *)vif->drv_priv;
2311
2312         if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
2313                 avp->seq_no += 0x10;
2314
2315         hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
2316         hdr->seq_ctrl |= cpu_to_le16(avp->seq_no);
2317 }
2318
2319 static int ath_tx_prepare(struct ieee80211_hw *hw, struct sk_buff *skb,
2320                           struct ath_tx_control *txctl)
2321 {
2322         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2323         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2324         struct ieee80211_sta *sta = txctl->sta;
2325         struct ieee80211_vif *vif = info->control.vif;
2326         struct ath_vif *avp;
2327         struct ath_softc *sc = hw->priv;
2328         int frmlen = skb->len + FCS_LEN;
2329         int padpos, padsize;
2330
2331         /* NOTE:  sta can be NULL according to net/mac80211.h */
2332         if (sta)
2333                 txctl->an = (struct ath_node *)sta->drv_priv;
2334         else if (vif && ieee80211_is_data(hdr->frame_control)) {
2335                 avp = (void *)vif->drv_priv;
2336                 txctl->an = &avp->mcast_node;
2337         }
2338
2339         if (info->control.hw_key)
2340                 frmlen += info->control.hw_key->icv_len;
2341
2342         ath_assign_seq(ath9k_hw_common(sc->sc_ah), skb);
2343
2344         if ((vif && vif->type != NL80211_IFTYPE_AP &&
2345                     vif->type != NL80211_IFTYPE_AP_VLAN) ||
2346             !ieee80211_is_data(hdr->frame_control))
2347                 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
2348
2349         /* Add the padding after the header if this is not already done */
2350         padpos = ieee80211_hdrlen(hdr->frame_control);
2351         padsize = padpos & 3;
2352         if (padsize && skb->len > padpos) {
2353                 if (skb_headroom(skb) < padsize)
2354                         return -ENOMEM;
2355
2356                 skb_push(skb, padsize);
2357                 memmove(skb->data, skb->data + padsize, padpos);
2358         }
2359
2360         setup_frame_info(hw, sta, skb, frmlen);
2361         return 0;
2362 }
2363
2364
2365 /* Upon failure caller should free skb */
2366 int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb,
2367                  struct ath_tx_control *txctl)
2368 {
2369         struct ieee80211_hdr *hdr;
2370         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2371         struct ieee80211_sta *sta = txctl->sta;
2372         struct ieee80211_vif *vif = info->control.vif;
2373         struct ath_frame_info *fi = get_frame_info(skb);
2374         struct ath_vif *avp = NULL;
2375         struct ath_softc *sc = hw->priv;
2376         struct ath_txq *txq = txctl->txq;
2377         struct ath_atx_tid *tid = NULL;
2378         struct ath_node *an = NULL;
2379         struct ath_buf *bf;
2380         bool ps_resp;
2381         int q, ret;
2382
2383         if (vif)
2384                 avp = (void *)vif->drv_priv;
2385
2386         ps_resp = !!(info->control.flags & IEEE80211_TX_CTRL_PS_RESPONSE);
2387
2388         ret = ath_tx_prepare(hw, skb, txctl);
2389         if (ret)
2390             return ret;
2391
2392         hdr = (struct ieee80211_hdr *) skb->data;
2393         /*
2394          * At this point, the vif, hw_key and sta pointers in the tx control
2395          * info are no longer valid (overwritten by the ath_frame_info data.
2396          */
2397
2398         q = skb_get_queue_mapping(skb);
2399
2400         if (ps_resp)
2401                 txq = sc->tx.uapsdq;
2402
2403         if (txctl->sta) {
2404                 an = (struct ath_node *) sta->drv_priv;
2405                 tid = ath_get_skb_tid(sc, an, skb);
2406         }
2407
2408         ath_txq_lock(sc, txq);
2409         if (txq == sc->tx.txq_map[q]) {
2410                 fi->txq = q;
2411                 ++txq->pending_frames;
2412         }
2413
2414         bf = ath_tx_setup_buffer(sc, txq, tid, skb);
2415         if (!bf) {
2416                 ath_txq_skb_done(sc, txq, skb);
2417                 if (txctl->paprd)
2418                         dev_kfree_skb_any(skb);
2419                 else
2420                         ieee80211_free_txskb(sc->hw, skb);
2421                 goto out;
2422         }
2423
2424         bf->bf_state.bfs_paprd = txctl->paprd;
2425
2426         if (txctl->paprd)
2427                 bf->bf_state.bfs_paprd_timestamp = jiffies;
2428
2429         ath_set_rates(vif, sta, bf);
2430         ath_tx_send_normal(sc, txq, tid, skb);
2431
2432 out:
2433         ath_txq_unlock(sc, txq);
2434
2435         return 0;
2436 }
2437
2438 void ath_tx_cabq(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2439                  struct sk_buff *skb)
2440 {
2441         struct ath_softc *sc = hw->priv;
2442         struct ath_tx_control txctl = {
2443                 .txq = sc->beacon.cabq
2444         };
2445         struct ath_tx_info info = {};
2446         struct ath_buf *bf_tail = NULL;
2447         struct ath_buf *bf;
2448         LIST_HEAD(bf_q);
2449         int duration = 0;
2450         int max_duration;
2451
2452         max_duration =
2453                 sc->cur_chan->beacon.beacon_interval * 1000 *
2454                 sc->cur_chan->beacon.dtim_period / ATH_BCBUF;
2455
2456         do {
2457                 struct ath_frame_info *fi = get_frame_info(skb);
2458
2459                 if (ath_tx_prepare(hw, skb, &txctl))
2460                         break;
2461
2462                 bf = ath_tx_setup_buffer(sc, txctl.txq, NULL, skb);
2463                 if (!bf)
2464                         break;
2465
2466                 bf->bf_lastbf = bf;
2467                 ath_set_rates(vif, NULL, bf);
2468                 ath_buf_set_rate(sc, bf, &info, fi->framelen, false);
2469                 duration += info.rates[0].PktDuration;
2470                 if (bf_tail)
2471                         bf_tail->bf_next = bf;
2472
2473                 list_add_tail(&bf->list, &bf_q);
2474                 bf_tail = bf;
2475                 skb = NULL;
2476
2477                 if (duration > max_duration)
2478                         break;
2479
2480                 skb = ieee80211_get_buffered_bc(hw, vif);
2481         } while(skb);
2482
2483         if (skb)
2484                 ieee80211_free_txskb(hw, skb);
2485
2486         if (list_empty(&bf_q))
2487                 return;
2488
2489         bf = list_last_entry(&bf_q, struct ath_buf, list);
2490         ath9k_set_moredata(sc, bf, false);
2491
2492         bf = list_first_entry(&bf_q, struct ath_buf, list);
2493         ath_txq_lock(sc, txctl.txq);
2494         ath_tx_fill_desc(sc, bf, txctl.txq, 0);
2495         ath_tx_txqaddbuf(sc, txctl.txq, &bf_q, false);
2496         TX_STAT_INC(txctl.txq->axq_qnum, queued);
2497         ath_txq_unlock(sc, txctl.txq);
2498 }
2499
2500 /*****************/
2501 /* TX Completion */
2502 /*****************/
2503
2504 static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
2505                             int tx_flags, struct ath_txq *txq,
2506                             struct ieee80211_sta *sta)
2507 {
2508         struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
2509         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2510         struct ieee80211_hdr * hdr = (struct ieee80211_hdr *)skb->data;
2511         int padpos, padsize;
2512         unsigned long flags;
2513
2514         ath_dbg(common, XMIT, "TX complete: skb: %p\n", skb);
2515
2516         if (sc->sc_ah->caldata)
2517                 set_bit(PAPRD_PACKET_SENT, &sc->sc_ah->caldata->cal_flags);
2518
2519         if (!(tx_flags & ATH_TX_ERROR)) {
2520                 if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK)
2521                         tx_info->flags |= IEEE80211_TX_STAT_NOACK_TRANSMITTED;
2522                 else
2523                         tx_info->flags |= IEEE80211_TX_STAT_ACK;
2524         }
2525
2526         if (tx_info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS) {
2527                 padpos = ieee80211_hdrlen(hdr->frame_control);
2528                 padsize = padpos & 3;
2529                 if (padsize && skb->len>padpos+padsize) {
2530                         /*
2531                          * Remove MAC header padding before giving the frame back to
2532                          * mac80211.
2533                          */
2534                         memmove(skb->data + padsize, skb->data, padpos);
2535                         skb_pull(skb, padsize);
2536                 }
2537         }
2538
2539         spin_lock_irqsave(&sc->sc_pm_lock, flags);
2540         if ((sc->ps_flags & PS_WAIT_FOR_TX_ACK) && !txq->axq_depth) {
2541                 sc->ps_flags &= ~PS_WAIT_FOR_TX_ACK;
2542                 ath_dbg(common, PS,
2543                         "Going back to sleep after having received TX status (0x%lx)\n",
2544                         sc->ps_flags & (PS_WAIT_FOR_BEACON |
2545                                         PS_WAIT_FOR_CAB |
2546                                         PS_WAIT_FOR_PSPOLL_DATA |
2547                                         PS_WAIT_FOR_TX_ACK));
2548         }
2549         spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
2550
2551         ath_txq_skb_done(sc, txq, skb);
2552         tx_info->status.status_driver_data[0] = sta;
2553         __skb_queue_tail(&txq->complete_q, skb);
2554 }
2555
2556 static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
2557                                 struct ath_txq *txq, struct list_head *bf_q,
2558                                 struct ieee80211_sta *sta,
2559                                 struct ath_tx_status *ts, int txok)
2560 {
2561         struct sk_buff *skb = bf->bf_mpdu;
2562         struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
2563         unsigned long flags;
2564         int tx_flags = 0;
2565
2566         if (!txok)
2567                 tx_flags |= ATH_TX_ERROR;
2568
2569         if (ts->ts_status & ATH9K_TXERR_FILT)
2570                 tx_info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
2571
2572         dma_unmap_single(sc->dev, bf->bf_buf_addr, skb->len, DMA_TO_DEVICE);
2573         bf->bf_buf_addr = 0;
2574         if (sc->tx99_state)
2575                 goto skip_tx_complete;
2576
2577         if (bf->bf_state.bfs_paprd) {
2578                 if (time_after(jiffies,
2579                                 bf->bf_state.bfs_paprd_timestamp +
2580                                 msecs_to_jiffies(ATH_PAPRD_TIMEOUT)))
2581                         dev_kfree_skb_any(skb);
2582                 else
2583                         complete(&sc->paprd_complete);
2584         } else {
2585                 ath_debug_stat_tx(sc, bf, ts, txq, tx_flags);
2586                 ath_tx_complete(sc, skb, tx_flags, txq, sta);
2587         }
2588 skip_tx_complete:
2589         /* At this point, skb (bf->bf_mpdu) is consumed...make sure we don't
2590          * accidentally reference it later.
2591          */
2592         bf->bf_mpdu = NULL;
2593
2594         /*
2595          * Return the list of ath_buf of this mpdu to free queue
2596          */
2597         spin_lock_irqsave(&sc->tx.txbuflock, flags);
2598         list_splice_tail_init(bf_q, &sc->tx.txbuf);
2599         spin_unlock_irqrestore(&sc->tx.txbuflock, flags);
2600 }
2601
2602 static void ath_tx_rc_status(struct ath_softc *sc, struct ath_buf *bf,
2603                              struct ath_tx_status *ts, int nframes, int nbad,
2604                              int txok)
2605 {
2606         struct sk_buff *skb = bf->bf_mpdu;
2607         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2608         struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
2609         struct ieee80211_hw *hw = sc->hw;
2610         struct ath_hw *ah = sc->sc_ah;
2611         u8 i, tx_rateindex;
2612
2613         if (txok)
2614                 tx_info->status.ack_signal = ts->ts_rssi;
2615
2616         tx_rateindex = ts->ts_rateindex;
2617         WARN_ON(tx_rateindex >= hw->max_rates);
2618
2619         if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
2620                 tx_info->flags |= IEEE80211_TX_STAT_AMPDU;
2621
2622                 BUG_ON(nbad > nframes);
2623         }
2624         tx_info->status.ampdu_len = nframes;
2625         tx_info->status.ampdu_ack_len = nframes - nbad;
2626
2627         if ((ts->ts_status & ATH9K_TXERR_FILT) == 0 &&
2628             (tx_info->flags & IEEE80211_TX_CTL_NO_ACK) == 0) {
2629                 /*
2630                  * If an underrun error is seen assume it as an excessive
2631                  * retry only if max frame trigger level has been reached
2632                  * (2 KB for single stream, and 4 KB for dual stream).
2633                  * Adjust the long retry as if the frame was tried
2634                  * hw->max_rate_tries times to affect how rate control updates
2635                  * PER for the failed rate.
2636                  * In case of congestion on the bus penalizing this type of
2637                  * underruns should help hardware actually transmit new frames
2638                  * successfully by eventually preferring slower rates.
2639                  * This itself should also alleviate congestion on the bus.
2640                  */
2641                 if (unlikely(ts->ts_flags & (ATH9K_TX_DATA_UNDERRUN |
2642                                              ATH9K_TX_DELIM_UNDERRUN)) &&
2643                     ieee80211_is_data(hdr->frame_control) &&
2644                     ah->tx_trig_level >= sc->sc_ah->config.max_txtrig_level)
2645                         tx_info->status.rates[tx_rateindex].count =
2646                                 hw->max_rate_tries;
2647         }
2648
2649         for (i = tx_rateindex + 1; i < hw->max_rates; i++) {
2650                 tx_info->status.rates[i].count = 0;
2651                 tx_info->status.rates[i].idx = -1;
2652         }
2653
2654         tx_info->status.rates[tx_rateindex].count = ts->ts_longretry + 1;
2655 }
2656
2657 static void ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq)
2658 {
2659         struct ath_hw *ah = sc->sc_ah;
2660         struct ath_common *common = ath9k_hw_common(ah);
2661         struct ath_buf *bf, *lastbf, *bf_held = NULL;
2662         struct list_head bf_head;
2663         struct ath_desc *ds;
2664         struct ath_tx_status ts;
2665         int status;
2666
2667         ath_dbg(common, QUEUE, "tx queue %d (%x), link %p\n",
2668                 txq->axq_qnum, ath9k_hw_gettxbuf(sc->sc_ah, txq->axq_qnum),
2669                 txq->axq_link);
2670
2671         ath_txq_lock(sc, txq);
2672         for (;;) {
2673                 if (test_bit(ATH_OP_HW_RESET, &common->op_flags))
2674                         break;
2675
2676                 if (list_empty(&txq->axq_q)) {
2677                         txq->axq_link = NULL;
2678                         ath_txq_schedule(sc, txq);
2679                         break;
2680                 }
2681                 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
2682
2683                 /*
2684                  * There is a race condition that a BH gets scheduled
2685                  * after sw writes TxE and before hw re-load the last
2686                  * descriptor to get the newly chained one.
2687                  * Software must keep the last DONE descriptor as a
2688                  * holding descriptor - software does so by marking
2689                  * it with the STALE flag.
2690                  */
2691                 bf_held = NULL;
2692                 if (bf->bf_state.stale) {
2693                         bf_held = bf;
2694                         if (list_is_last(&bf_held->list, &txq->axq_q))
2695                                 break;
2696
2697                         bf = list_entry(bf_held->list.next, struct ath_buf,
2698                                         list);
2699                 }
2700
2701                 lastbf = bf->bf_lastbf;
2702                 ds = lastbf->bf_desc;
2703
2704                 memset(&ts, 0, sizeof(ts));
2705                 status = ath9k_hw_txprocdesc(ah, ds, &ts);
2706                 if (status == -EINPROGRESS)
2707                         break;
2708
2709                 TX_STAT_INC(txq->axq_qnum, txprocdesc);
2710
2711                 /*
2712                  * Remove ath_buf's of the same transmit unit from txq,
2713                  * however leave the last descriptor back as the holding
2714                  * descriptor for hw.
2715                  */
2716                 lastbf->bf_state.stale = true;
2717                 INIT_LIST_HEAD(&bf_head);
2718                 if (!list_is_singular(&lastbf->list))
2719                         list_cut_position(&bf_head,
2720                                 &txq->axq_q, lastbf->list.prev);
2721
2722                 if (bf_held) {
2723                         list_del(&bf_held->list);
2724                         ath_tx_return_buffer(sc, bf_held);
2725                 }
2726
2727                 ath_tx_process_buffer(sc, txq, &ts, bf, &bf_head);
2728         }
2729         ath_txq_unlock_complete(sc, txq);
2730 }
2731
2732 void ath_tx_tasklet(struct ath_softc *sc)
2733 {
2734         struct ath_hw *ah = sc->sc_ah;
2735         u32 qcumask = ((1 << ATH9K_NUM_TX_QUEUES) - 1) & ah->intr_txqs;
2736         int i;
2737
2738         rcu_read_lock();
2739         for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2740                 if (ATH_TXQ_SETUP(sc, i) && (qcumask & (1 << i)))
2741                         ath_tx_processq(sc, &sc->tx.txq[i]);
2742         }
2743         rcu_read_unlock();
2744 }
2745
2746 void ath_tx_edma_tasklet(struct ath_softc *sc)
2747 {
2748         struct ath_tx_status ts;
2749         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2750         struct ath_hw *ah = sc->sc_ah;
2751         struct ath_txq *txq;
2752         struct ath_buf *bf, *lastbf;
2753         struct list_head bf_head;
2754         struct list_head *fifo_list;
2755         int status;
2756
2757         rcu_read_lock();
2758         for (;;) {
2759                 if (test_bit(ATH_OP_HW_RESET, &common->op_flags))
2760                         break;
2761
2762                 status = ath9k_hw_txprocdesc(ah, NULL, (void *)&ts);
2763                 if (status == -EINPROGRESS)
2764                         break;
2765                 if (status == -EIO) {
2766                         ath_dbg(common, XMIT, "Error processing tx status\n");
2767                         break;
2768                 }
2769
2770                 /* Process beacon completions separately */
2771                 if (ts.qid == sc->beacon.beaconq) {
2772                         sc->beacon.tx_processed = true;
2773                         sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
2774
2775                         if (ath9k_is_chanctx_enabled()) {
2776                                 ath_chanctx_event(sc, NULL,
2777                                                   ATH_CHANCTX_EVENT_BEACON_SENT);
2778                         }
2779
2780                         ath9k_csa_update(sc);
2781                         continue;
2782                 }
2783
2784                 txq = &sc->tx.txq[ts.qid];
2785
2786                 ath_txq_lock(sc, txq);
2787
2788                 TX_STAT_INC(txq->axq_qnum, txprocdesc);
2789
2790                 fifo_list = &txq->txq_fifo[txq->txq_tailidx];
2791                 if (list_empty(fifo_list)) {
2792                         ath_txq_unlock(sc, txq);
2793                         break;
2794                 }
2795
2796                 bf = list_first_entry(fifo_list, struct ath_buf, list);
2797                 if (bf->bf_state.stale) {
2798                         list_del(&bf->list);
2799                         ath_tx_return_buffer(sc, bf);
2800                         bf = list_first_entry(fifo_list, struct ath_buf, list);
2801                 }
2802
2803                 lastbf = bf->bf_lastbf;
2804
2805                 INIT_LIST_HEAD(&bf_head);
2806                 if (list_is_last(&lastbf->list, fifo_list)) {
2807                         list_splice_tail_init(fifo_list, &bf_head);
2808                         INCR(txq->txq_tailidx, ATH_TXFIFO_DEPTH);
2809
2810                         if (!list_empty(&txq->axq_q)) {
2811                                 struct list_head bf_q;
2812
2813                                 INIT_LIST_HEAD(&bf_q);
2814                                 txq->axq_link = NULL;
2815                                 list_splice_tail_init(&txq->axq_q, &bf_q);
2816                                 ath_tx_txqaddbuf(sc, txq, &bf_q, true);
2817                         }
2818                 } else {
2819                         lastbf->bf_state.stale = true;
2820                         if (bf != lastbf)
2821                                 list_cut_position(&bf_head, fifo_list,
2822                                                   lastbf->list.prev);
2823                 }
2824
2825                 ath_tx_process_buffer(sc, txq, &ts, bf, &bf_head);
2826                 ath_txq_unlock_complete(sc, txq);
2827         }
2828         rcu_read_unlock();
2829 }
2830
2831 /*****************/
2832 /* Init, Cleanup */
2833 /*****************/
2834
2835 static int ath_txstatus_setup(struct ath_softc *sc, int size)
2836 {
2837         struct ath_descdma *dd = &sc->txsdma;
2838         u8 txs_len = sc->sc_ah->caps.txs_len;
2839
2840         dd->dd_desc_len = size * txs_len;
2841         dd->dd_desc = dmam_alloc_coherent(sc->dev, dd->dd_desc_len,
2842                                           &dd->dd_desc_paddr, GFP_KERNEL);
2843         if (!dd->dd_desc)
2844                 return -ENOMEM;
2845
2846         return 0;
2847 }
2848
2849 static int ath_tx_edma_init(struct ath_softc *sc)
2850 {
2851         int err;
2852
2853         err = ath_txstatus_setup(sc, ATH_TXSTATUS_RING_SIZE);
2854         if (!err)
2855                 ath9k_hw_setup_statusring(sc->sc_ah, sc->txsdma.dd_desc,
2856                                           sc->txsdma.dd_desc_paddr,
2857                                           ATH_TXSTATUS_RING_SIZE);
2858
2859         return err;
2860 }
2861
2862 int ath_tx_init(struct ath_softc *sc, int nbufs)
2863 {
2864         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2865         int error = 0;
2866
2867         spin_lock_init(&sc->tx.txbuflock);
2868
2869         error = ath_descdma_setup(sc, &sc->tx.txdma, &sc->tx.txbuf,
2870                                   "tx", nbufs, 1, 1);
2871         if (error != 0) {
2872                 ath_err(common,
2873                         "Failed to allocate tx descriptors: %d\n", error);
2874                 return error;
2875         }
2876
2877         error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf,
2878                                   "beacon", ATH_BCBUF, 1, 1);
2879         if (error != 0) {
2880                 ath_err(common,
2881                         "Failed to allocate beacon descriptors: %d\n", error);
2882                 return error;
2883         }
2884
2885         if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
2886                 error = ath_tx_edma_init(sc);
2887
2888         return error;
2889 }
2890
2891 void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an)
2892 {
2893         struct ath_atx_tid *tid;
2894         int tidno, acno;
2895
2896         for (acno = 0; acno < IEEE80211_NUM_ACS; acno++)
2897                 an->airtime_deficit[acno] = ATH_AIRTIME_QUANTUM;
2898
2899         for (tidno = 0; tidno < IEEE80211_NUM_TIDS; tidno++) {
2900                 tid = ath_node_to_tid(an, tidno);
2901                 tid->an        = an;
2902                 tid->tidno     = tidno;
2903                 tid->seq_start = tid->seq_next = 0;
2904                 tid->baw_size  = WME_MAX_BA;
2905                 tid->baw_head  = tid->baw_tail = 0;
2906                 tid->active        = false;
2907                 tid->clear_ps_filter = true;
2908                 tid->has_queued  = false;
2909                 __skb_queue_head_init(&tid->retry_q);
2910                 INIT_LIST_HEAD(&tid->list);
2911                 acno = TID_TO_WME_AC(tidno);
2912                 tid->txq = sc->tx.txq_map[acno];
2913
2914                 if (!an->sta)
2915                         break; /* just one multicast ath_atx_tid */
2916         }
2917 }
2918
2919 void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an)
2920 {
2921         struct ath_atx_tid *tid;
2922         struct ath_txq *txq;
2923         int tidno;
2924
2925         rcu_read_lock();
2926
2927         for (tidno = 0; tidno < IEEE80211_NUM_TIDS; tidno++) {
2928                 tid = ath_node_to_tid(an, tidno);
2929                 txq = tid->txq;
2930
2931                 ath_txq_lock(sc, txq);
2932
2933                 if (!list_empty(&tid->list))
2934                         list_del_init(&tid->list);
2935
2936                 ath_tid_drain(sc, txq, tid);
2937                 tid->active = false;
2938
2939                 ath_txq_unlock(sc, txq);
2940
2941                 if (!an->sta)
2942                         break; /* just one multicast ath_atx_tid */
2943         }
2944
2945         rcu_read_unlock();
2946 }
2947
2948 #ifdef CONFIG_ATH9K_TX99
2949
2950 int ath9k_tx99_send(struct ath_softc *sc, struct sk_buff *skb,
2951                     struct ath_tx_control *txctl)
2952 {
2953         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2954         struct ath_frame_info *fi = get_frame_info(skb);
2955         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2956         struct ath_buf *bf;
2957         int padpos, padsize;
2958
2959         padpos = ieee80211_hdrlen(hdr->frame_control);
2960         padsize = padpos & 3;
2961
2962         if (padsize && skb->len > padpos) {
2963                 if (skb_headroom(skb) < padsize) {
2964                         ath_dbg(common, XMIT,
2965                                 "tx99 padding failed\n");
2966                         return -EINVAL;
2967                 }
2968
2969                 skb_push(skb, padsize);
2970                 memmove(skb->data, skb->data + padsize, padpos);
2971         }
2972
2973         fi->keyix = ATH9K_TXKEYIX_INVALID;
2974         fi->framelen = skb->len + FCS_LEN;
2975         fi->keytype = ATH9K_KEY_TYPE_CLEAR;
2976
2977         bf = ath_tx_setup_buffer(sc, txctl->txq, NULL, skb);
2978         if (!bf) {
2979                 ath_dbg(common, XMIT, "tx99 buffer setup failed\n");
2980                 return -EINVAL;
2981         }
2982
2983         ath_set_rates(sc->tx99_vif, NULL, bf);
2984
2985         ath9k_hw_set_desc_link(sc->sc_ah, bf->bf_desc, bf->bf_daddr);
2986         ath9k_hw_tx99_start(sc->sc_ah, txctl->txq->axq_qnum);
2987
2988         ath_tx_send_normal(sc, txctl->txq, NULL, skb);
2989
2990         return 0;
2991 }
2992
2993 #endif /* CONFIG_ATH9K_TX99 */