blob: c59ae43b9b35aeba9356f499a83f73ae02e96a8b [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
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
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000017#include <linux/dma-mapping.h>
Sujith394cf0a2009-02-09 13:26:54 +053018#include "ath9k.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040019#include "ar9003_mac.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070020
21#define BITS_PER_BYTE 8
22#define OFDM_PLCP_BITS 22
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070023#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 */
Felix Fietkauaa5955c2012-07-15 19:53:36 +020032#define TIME_SYMBOLS(t) ((t) >> 2)
33#define TIME_SYMBOLS_HALFGI(t) (((t) * 5 - 4) / 18)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070034#define NUM_SYMBOLS_PER_USEC(_usec) (_usec >> 2)
35#define NUM_SYMBOLS_PER_USEC_HALFGI(_usec) (((_usec*5)-4)/18)
36
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070037
Felix Fietkauc6663872010-04-19 19:57:33 +020038static u16 bits_per_symbol[][2] = {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070039 /* 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 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070048};
49
50#define IS_HT_RATE(_rate) ((_rate) & 0x80)
51
Felix Fietkau82b873a2010-11-11 03:18:37 +010052static void ath_tx_send_normal(struct ath_softc *sc, struct ath_txq *txq,
Felix Fietkau44f1d262011-08-28 00:32:25 +020053 struct ath_atx_tid *tid, struct sk_buff *skb);
54static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
55 int tx_flags, struct ath_txq *txq);
Sujithe8324352009-01-16 21:38:42 +053056static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
Felix Fietkaudb1a0522010-03-29 20:07:11 -070057 struct ath_txq *txq, struct list_head *bf_q,
Felix Fietkau156369f2011-12-14 22:08:04 +010058 struct ath_tx_status *ts, int txok);
Sujithe8324352009-01-16 21:38:42 +053059static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
Felix Fietkaufce041b2011-05-19 12:20:25 +020060 struct list_head *head, bool internal);
Felix Fietkau0cdd5c62011-01-24 19:23:17 +010061static void ath_tx_rc_status(struct ath_softc *sc, struct ath_buf *bf,
62 struct ath_tx_status *ts, int nframes, int nbad,
Felix Fietkau3afd21e2011-09-14 21:24:26 +020063 int txok);
Felix Fietkau90fa5392010-09-20 13:45:38 +020064static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
65 int seqno);
Felix Fietkau44f1d262011-08-28 00:32:25 +020066static struct ath_buf *ath_tx_setup_buffer(struct ath_softc *sc,
67 struct ath_txq *txq,
68 struct ath_atx_tid *tid,
Felix Fietkau249ee722012-10-03 21:07:52 +020069 struct sk_buff *skb);
Sujithe8324352009-01-16 21:38:42 +053070
Felix Fietkau545750d2009-11-23 22:21:01 +010071enum {
Felix Fietkau0e668cd2010-04-19 19:57:32 +020072 MCS_HT20,
73 MCS_HT20_SGI,
Felix Fietkau545750d2009-11-23 22:21:01 +010074 MCS_HT40,
75 MCS_HT40_SGI,
76};
77
Sujithe8324352009-01-16 21:38:42 +053078/*********************/
79/* Aggregation logic */
80/*********************/
81
Sujith Manoharanef1b6cd2012-06-04 20:23:37 +053082void ath_txq_lock(struct ath_softc *sc, struct ath_txq *txq)
Luis R. Rodriguez1512a482011-12-20 10:46:09 -080083 __acquires(&txq->axq_lock)
Felix Fietkau23de5dc2011-12-19 16:45:54 +010084{
85 spin_lock_bh(&txq->axq_lock);
86}
87
Sujith Manoharanef1b6cd2012-06-04 20:23:37 +053088void ath_txq_unlock(struct ath_softc *sc, struct ath_txq *txq)
Luis R. Rodriguez1512a482011-12-20 10:46:09 -080089 __releases(&txq->axq_lock)
Felix Fietkau23de5dc2011-12-19 16:45:54 +010090{
91 spin_unlock_bh(&txq->axq_lock);
92}
93
Sujith Manoharanef1b6cd2012-06-04 20:23:37 +053094void ath_txq_unlock_complete(struct ath_softc *sc, struct ath_txq *txq)
Luis R. Rodriguez1512a482011-12-20 10:46:09 -080095 __releases(&txq->axq_lock)
Felix Fietkau23de5dc2011-12-19 16:45:54 +010096{
97 struct sk_buff_head q;
98 struct sk_buff *skb;
99
100 __skb_queue_head_init(&q);
101 skb_queue_splice_init(&txq->complete_q, &q);
102 spin_unlock_bh(&txq->axq_lock);
103
104 while ((skb = __skb_dequeue(&q)))
105 ieee80211_tx_status(sc->hw, skb);
106}
107
Sujithe8324352009-01-16 21:38:42 +0530108static void ath_tx_queue_tid(struct ath_txq *txq, struct ath_atx_tid *tid)
109{
110 struct ath_atx_ac *ac = tid->ac;
111
112 if (tid->paused)
113 return;
114
115 if (tid->sched)
116 return;
117
118 tid->sched = true;
119 list_add_tail(&tid->list, &ac->tid_q);
120
121 if (ac->sched)
122 return;
123
124 ac->sched = true;
125 list_add_tail(&ac->list, &txq->axq_acq);
126}
127
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100128static struct ath_frame_info *get_frame_info(struct sk_buff *skb)
Felix Fietkau76e45222010-11-14 15:20:08 +0100129{
130 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100131 BUILD_BUG_ON(sizeof(struct ath_frame_info) >
132 sizeof(tx_info->rate_driver_data));
133 return (struct ath_frame_info *) &tx_info->rate_driver_data[0];
Felix Fietkau76e45222010-11-14 15:20:08 +0100134}
135
Felix Fietkau156369f2011-12-14 22:08:04 +0100136static void ath_send_bar(struct ath_atx_tid *tid, u16 seqno)
137{
138 ieee80211_send_bar(tid->an->vif, tid->an->sta->addr, tid->tidno,
139 seqno << IEEE80211_SEQ_SEQ_SHIFT);
140}
141
Felix Fietkau79acac02013-04-22 23:11:44 +0200142static void ath_set_rates(struct ieee80211_vif *vif, struct ieee80211_sta *sta,
143 struct ath_buf *bf)
144{
145 ieee80211_get_tx_rates(vif, sta, bf->bf_mpdu, bf->rates,
146 ARRAY_SIZE(bf->rates));
147}
148
Felix Fietkau08c96ab2013-05-18 21:28:15 +0200149static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
Sujithe8324352009-01-16 21:38:42 +0530150{
Felix Fietkau066dae92010-11-07 14:59:39 +0100151 struct ath_txq *txq = tid->ac->txq;
Felix Fietkau56dc6332011-08-28 00:32:22 +0200152 struct sk_buff *skb;
Sujithe8324352009-01-16 21:38:42 +0530153 struct ath_buf *bf;
154 struct list_head bf_head;
Felix Fietkau90fa5392010-09-20 13:45:38 +0200155 struct ath_tx_status ts;
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100156 struct ath_frame_info *fi;
Felix Fietkau156369f2011-12-14 22:08:04 +0100157 bool sendbar = false;
Felix Fietkau90fa5392010-09-20 13:45:38 +0200158
Sujithe8324352009-01-16 21:38:42 +0530159 INIT_LIST_HEAD(&bf_head);
160
Felix Fietkau90fa5392010-09-20 13:45:38 +0200161 memset(&ts, 0, sizeof(ts));
Sujithe8324352009-01-16 21:38:42 +0530162
Felix Fietkau56dc6332011-08-28 00:32:22 +0200163 while ((skb = __skb_dequeue(&tid->buf_q))) {
164 fi = get_frame_info(skb);
165 bf = fi->bf;
166
Felix Fietkau249ee722012-10-03 21:07:52 +0200167 if (!bf) {
Felix Fietkau08c96ab2013-05-18 21:28:15 +0200168 bf = ath_tx_setup_buffer(sc, txq, tid, skb);
169 if (!bf) {
170 ieee80211_free_txskb(sc->hw, skb);
171 continue;
172 }
Felix Fietkau249ee722012-10-03 21:07:52 +0200173 }
174
Felix Fietkau08c96ab2013-05-18 21:28:15 +0200175 if (fi->retries) {
Felix Fietkau44f1d262011-08-28 00:32:25 +0200176 list_add_tail(&bf->list, &bf_head);
Felix Fietkau6a0ddae2011-08-28 00:32:23 +0200177 ath_tx_update_baw(sc, tid, bf->bf_state.seqno);
Felix Fietkau156369f2011-12-14 22:08:04 +0100178 ath_tx_complete_buf(sc, bf, txq, &bf_head, &ts, 0);
179 sendbar = true;
Felix Fietkau90fa5392010-09-20 13:45:38 +0200180 } else {
Felix Fietkau79acac02013-04-22 23:11:44 +0200181 ath_set_rates(tid->an->vif, tid->an->sta, bf);
Felix Fietkau44f1d262011-08-28 00:32:25 +0200182 ath_tx_send_normal(sc, txq, NULL, skb);
Felix Fietkau90fa5392010-09-20 13:45:38 +0200183 }
Sujithe8324352009-01-16 21:38:42 +0530184 }
185
Felix Fietkau08c96ab2013-05-18 21:28:15 +0200186 if (sendbar) {
Felix Fietkau23de5dc2011-12-19 16:45:54 +0100187 ath_txq_unlock(sc, txq);
Felix Fietkau156369f2011-12-14 22:08:04 +0100188 ath_send_bar(tid, tid->seq_start);
Felix Fietkau23de5dc2011-12-19 16:45:54 +0100189 ath_txq_lock(sc, txq);
190 }
Sujithe8324352009-01-16 21:38:42 +0530191}
192
193static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
194 int seqno)
195{
196 int index, cindex;
197
198 index = ATH_BA_INDEX(tid->seq_start, seqno);
199 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
200
Felix Fietkau81ee13b2010-09-20 13:45:36 +0200201 __clear_bit(cindex, tid->tx_buf);
Sujithe8324352009-01-16 21:38:42 +0530202
Felix Fietkau81ee13b2010-09-20 13:45:36 +0200203 while (tid->baw_head != tid->baw_tail && !test_bit(tid->baw_head, tid->tx_buf)) {
Sujithe8324352009-01-16 21:38:42 +0530204 INCR(tid->seq_start, IEEE80211_SEQ_MAX);
205 INCR(tid->baw_head, ATH_TID_MAX_BUFS);
Felix Fietkauf9437542011-12-14 22:08:08 +0100206 if (tid->bar_index >= 0)
207 tid->bar_index--;
Sujithe8324352009-01-16 21:38:42 +0530208 }
209}
210
211static void ath_tx_addto_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
Felix Fietkau2d3bcba2010-11-14 15:20:01 +0100212 u16 seqno)
Sujithe8324352009-01-16 21:38:42 +0530213{
214 int index, cindex;
215
Felix Fietkau2d3bcba2010-11-14 15:20:01 +0100216 index = ATH_BA_INDEX(tid->seq_start, seqno);
Sujithe8324352009-01-16 21:38:42 +0530217 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
Felix Fietkau81ee13b2010-09-20 13:45:36 +0200218 __set_bit(cindex, tid->tx_buf);
Sujithe8324352009-01-16 21:38:42 +0530219
220 if (index >= ((tid->baw_tail - tid->baw_head) &
221 (ATH_TID_MAX_BUFS - 1))) {
222 tid->baw_tail = cindex;
223 INCR(tid->baw_tail, ATH_TID_MAX_BUFS);
224 }
225}
226
227/*
228 * TODO: For frame(s) that are in the retry state, we will reuse the
229 * sequence number(s) without setting the retry bit. The
230 * alternative is to give up on these and BAR the receiver's window
231 * forward.
232 */
233static void ath_tid_drain(struct ath_softc *sc, struct ath_txq *txq,
234 struct ath_atx_tid *tid)
235
236{
Felix Fietkau56dc6332011-08-28 00:32:22 +0200237 struct sk_buff *skb;
Sujithe8324352009-01-16 21:38:42 +0530238 struct ath_buf *bf;
239 struct list_head bf_head;
Felix Fietkaudb1a0522010-03-29 20:07:11 -0700240 struct ath_tx_status ts;
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100241 struct ath_frame_info *fi;
Felix Fietkaudb1a0522010-03-29 20:07:11 -0700242
243 memset(&ts, 0, sizeof(ts));
Sujithe8324352009-01-16 21:38:42 +0530244 INIT_LIST_HEAD(&bf_head);
245
Felix Fietkau56dc6332011-08-28 00:32:22 +0200246 while ((skb = __skb_dequeue(&tid->buf_q))) {
247 fi = get_frame_info(skb);
248 bf = fi->bf;
Sujithe8324352009-01-16 21:38:42 +0530249
Felix Fietkau44f1d262011-08-28 00:32:25 +0200250 if (!bf) {
Felix Fietkau44f1d262011-08-28 00:32:25 +0200251 ath_tx_complete(sc, skb, ATH_TX_ERROR, txq);
Felix Fietkau44f1d262011-08-28 00:32:25 +0200252 continue;
253 }
254
Felix Fietkau56dc6332011-08-28 00:32:22 +0200255 list_add_tail(&bf->list, &bf_head);
Sujithe8324352009-01-16 21:38:42 +0530256
Felix Fietkau6bb48802013-05-17 12:58:26 +0200257 ath_tx_update_baw(sc, tid, bf->bf_state.seqno);
Felix Fietkau156369f2011-12-14 22:08:04 +0100258 ath_tx_complete_buf(sc, bf, txq, &bf_head, &ts, 0);
Sujithe8324352009-01-16 21:38:42 +0530259 }
260
261 tid->seq_next = tid->seq_start;
262 tid->baw_tail = tid->baw_head;
Felix Fietkauf9437542011-12-14 22:08:08 +0100263 tid->bar_index = -1;
Sujithe8324352009-01-16 21:38:42 +0530264}
265
Sujithfec247c2009-07-27 12:08:16 +0530266static void ath_tx_set_retry(struct ath_softc *sc, struct ath_txq *txq,
Felix Fietkauda647622011-12-14 22:08:03 +0100267 struct sk_buff *skb, int count)
Sujithe8324352009-01-16 21:38:42 +0530268{
Felix Fietkau8b7f8532010-11-28 19:37:48 +0100269 struct ath_frame_info *fi = get_frame_info(skb);
Felix Fietkauf11cc942011-09-15 12:59:49 +0200270 struct ath_buf *bf = fi->bf;
Sujithe8324352009-01-16 21:38:42 +0530271 struct ieee80211_hdr *hdr;
Felix Fietkauda647622011-12-14 22:08:03 +0100272 int prev = fi->retries;
Sujithe8324352009-01-16 21:38:42 +0530273
Sujithfec247c2009-07-27 12:08:16 +0530274 TX_STAT_INC(txq->axq_qnum, a_retries);
Felix Fietkauda647622011-12-14 22:08:03 +0100275 fi->retries += count;
276
277 if (prev > 0)
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100278 return;
Sujithe8324352009-01-16 21:38:42 +0530279
Sujithe8324352009-01-16 21:38:42 +0530280 hdr = (struct ieee80211_hdr *)skb->data;
281 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_RETRY);
Felix Fietkauf11cc942011-09-15 12:59:49 +0200282 dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
283 sizeof(*hdr), DMA_TO_DEVICE);
Sujithe8324352009-01-16 21:38:42 +0530284}
285
Felix Fietkau0a8cea82010-04-19 19:57:30 +0200286static struct ath_buf *ath_tx_get_buffer(struct ath_softc *sc)
287{
288 struct ath_buf *bf = NULL;
289
290 spin_lock_bh(&sc->tx.txbuflock);
291
292 if (unlikely(list_empty(&sc->tx.txbuf))) {
293 spin_unlock_bh(&sc->tx.txbuflock);
294 return NULL;
295 }
296
297 bf = list_first_entry(&sc->tx.txbuf, struct ath_buf, list);
298 list_del(&bf->list);
299
300 spin_unlock_bh(&sc->tx.txbuflock);
301
302 return bf;
303}
304
305static void ath_tx_return_buffer(struct ath_softc *sc, struct ath_buf *bf)
306{
307 spin_lock_bh(&sc->tx.txbuflock);
308 list_add_tail(&bf->list, &sc->tx.txbuf);
309 spin_unlock_bh(&sc->tx.txbuflock);
310}
311
Sujithd43f30152009-01-16 21:38:53 +0530312static struct ath_buf* ath_clone_txbuf(struct ath_softc *sc, struct ath_buf *bf)
313{
314 struct ath_buf *tbf;
315
Felix Fietkau0a8cea82010-04-19 19:57:30 +0200316 tbf = ath_tx_get_buffer(sc);
317 if (WARN_ON(!tbf))
Vasanthakumar Thiagarajan8a460972009-06-10 17:50:09 +0530318 return NULL;
Sujithd43f30152009-01-16 21:38:53 +0530319
320 ATH_TXBUF_RESET(tbf);
321
322 tbf->bf_mpdu = bf->bf_mpdu;
323 tbf->bf_buf_addr = bf->bf_buf_addr;
Vasanthakumar Thiagarajand826c832010-04-15 17:38:45 -0400324 memcpy(tbf->bf_desc, bf->bf_desc, sc->sc_ah->caps.tx_desc_len);
Sujithd43f30152009-01-16 21:38:53 +0530325 tbf->bf_state = bf->bf_state;
Sujithd43f30152009-01-16 21:38:53 +0530326
327 return tbf;
328}
329
Felix Fietkaub572d032010-11-14 15:20:07 +0100330static void ath_tx_count_frames(struct ath_softc *sc, struct ath_buf *bf,
331 struct ath_tx_status *ts, int txok,
332 int *nframes, int *nbad)
333{
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100334 struct ath_frame_info *fi;
Felix Fietkaub572d032010-11-14 15:20:07 +0100335 u16 seq_st = 0;
336 u32 ba[WME_BA_BMP_SIZE >> 5];
337 int ba_index;
338 int isaggr = 0;
339
340 *nbad = 0;
341 *nframes = 0;
342
Felix Fietkaub572d032010-11-14 15:20:07 +0100343 isaggr = bf_isaggr(bf);
344 if (isaggr) {
345 seq_st = ts->ts_seqnum;
346 memcpy(ba, &ts->ba_low, WME_BA_BMP_SIZE >> 3);
347 }
348
349 while (bf) {
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100350 fi = get_frame_info(bf->bf_mpdu);
Felix Fietkau6a0ddae2011-08-28 00:32:23 +0200351 ba_index = ATH_BA_INDEX(seq_st, bf->bf_state.seqno);
Felix Fietkaub572d032010-11-14 15:20:07 +0100352
353 (*nframes)++;
354 if (!txok || (isaggr && !ATH_BA_ISSET(ba, ba_index)))
355 (*nbad)++;
356
357 bf = bf->bf_next;
358 }
359}
360
361
Sujithd43f30152009-01-16 21:38:53 +0530362static void ath_tx_complete_aggr(struct ath_softc *sc, struct ath_txq *txq,
363 struct ath_buf *bf, struct list_head *bf_q,
Felix Fietkau13815592013-01-20 18:51:53 +0100364 struct ath_tx_status *ts, int txok)
Sujithe8324352009-01-16 21:38:42 +0530365{
366 struct ath_node *an = NULL;
367 struct sk_buff *skb;
Sujith1286ec62009-01-27 13:30:37 +0530368 struct ieee80211_sta *sta;
Felix Fietkau0cdd5c62011-01-24 19:23:17 +0100369 struct ieee80211_hw *hw = sc->hw;
Sujith1286ec62009-01-27 13:30:37 +0530370 struct ieee80211_hdr *hdr;
Luis R. Rodriguez76d5a9e2009-11-02 16:08:34 -0800371 struct ieee80211_tx_info *tx_info;
Sujithe8324352009-01-16 21:38:42 +0530372 struct ath_atx_tid *tid = NULL;
Sujithd43f30152009-01-16 21:38:53 +0530373 struct ath_buf *bf_next, *bf_last = bf->bf_lastbf;
Felix Fietkau56dc6332011-08-28 00:32:22 +0200374 struct list_head bf_head;
375 struct sk_buff_head bf_pending;
Felix Fietkau156369f2011-12-14 22:08:04 +0100376 u16 seq_st = 0, acked_cnt = 0, txfail_cnt = 0, seq_first;
Sujithe8324352009-01-16 21:38:42 +0530377 u32 ba[WME_BA_BMP_SIZE >> 5];
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530378 int isaggr, txfail, txpending, sendbar = 0, needreset = 0, nbad = 0;
Sven Eckelmann6fe7cc72012-10-29 13:25:20 +0100379 bool rc_update = true, isba;
Felix Fietkau78c46532010-06-25 01:26:16 +0200380 struct ieee80211_tx_rate rates[4];
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100381 struct ath_frame_info *fi;
Björn Smedmanebd02282010-10-10 22:44:39 +0200382 int nframes;
Felix Fietkau5daefbd2010-11-14 15:20:02 +0100383 u8 tidno;
Felix Fietkaudaa5c402011-10-07 02:28:15 +0200384 bool flush = !!(ts->ts_status & ATH9K_TX_FLUSH);
Felix Fietkauda647622011-12-14 22:08:03 +0100385 int i, retries;
Felix Fietkau156369f2011-12-14 22:08:04 +0100386 int bar_index = -1;
Sujithe8324352009-01-16 21:38:42 +0530387
Sujitha22be222009-03-30 15:28:36 +0530388 skb = bf->bf_mpdu;
Sujith1286ec62009-01-27 13:30:37 +0530389 hdr = (struct ieee80211_hdr *)skb->data;
Sujithe8324352009-01-16 21:38:42 +0530390
Luis R. Rodriguez76d5a9e2009-11-02 16:08:34 -0800391 tx_info = IEEE80211_SKB_CB(skb);
Luis R. Rodriguez76d5a9e2009-11-02 16:08:34 -0800392
Felix Fietkau79acac02013-04-22 23:11:44 +0200393 memcpy(rates, bf->rates, sizeof(rates));
Felix Fietkau78c46532010-06-25 01:26:16 +0200394
Felix Fietkauda647622011-12-14 22:08:03 +0100395 retries = ts->ts_longretry + 1;
396 for (i = 0; i < ts->ts_rateindex; i++)
397 retries += rates[i].count;
398
Sujith1286ec62009-01-27 13:30:37 +0530399 rcu_read_lock();
400
Ben Greear686b9cb2010-09-23 09:44:36 -0700401 sta = ieee80211_find_sta_by_ifaddr(hw, hdr->addr1, hdr->addr2);
Sujith1286ec62009-01-27 13:30:37 +0530402 if (!sta) {
403 rcu_read_unlock();
Felix Fietkau73e19462010-07-07 19:42:09 +0200404
Felix Fietkau31e79a52010-07-12 23:16:34 +0200405 INIT_LIST_HEAD(&bf_head);
406 while (bf) {
407 bf_next = bf->bf_next;
408
Felix Fietkaufce041b2011-05-19 12:20:25 +0200409 if (!bf->bf_stale || bf_next != NULL)
Felix Fietkau31e79a52010-07-12 23:16:34 +0200410 list_move_tail(&bf->list, &bf_head);
411
Felix Fietkau156369f2011-12-14 22:08:04 +0100412 ath_tx_complete_buf(sc, bf, txq, &bf_head, ts, 0);
Felix Fietkau31e79a52010-07-12 23:16:34 +0200413
414 bf = bf_next;
415 }
Sujith1286ec62009-01-27 13:30:37 +0530416 return;
Sujithe8324352009-01-16 21:38:42 +0530417 }
418
Sujith1286ec62009-01-27 13:30:37 +0530419 an = (struct ath_node *)sta->drv_priv;
Felix Fietkau5daefbd2010-11-14 15:20:02 +0100420 tidno = ieee80211_get_qos_ctl(hdr)[0] & IEEE80211_QOS_CTL_TID_MASK;
421 tid = ATH_AN_2_TID(an, tidno);
Felix Fietkau156369f2011-12-14 22:08:04 +0100422 seq_first = tid->seq_start;
Sven Eckelmann6fe7cc72012-10-29 13:25:20 +0100423 isba = ts->ts_flags & ATH9K_TX_BA;
Sujith1286ec62009-01-27 13:30:37 +0530424
Felix Fietkaub11b1602010-07-11 12:48:44 +0200425 /*
426 * The hardware occasionally sends a tx status for the wrong TID.
427 * In this case, the BA status cannot be considered valid and all
428 * subframes need to be retransmitted
Sven Eckelmann6fe7cc72012-10-29 13:25:20 +0100429 *
430 * Only BlockAcks have a TID and therefore normal Acks cannot be
431 * checked
Felix Fietkaub11b1602010-07-11 12:48:44 +0200432 */
Sven Eckelmann6fe7cc72012-10-29 13:25:20 +0100433 if (isba && tidno != ts->tid)
Felix Fietkaub11b1602010-07-11 12:48:44 +0200434 txok = false;
435
Sujithe8324352009-01-16 21:38:42 +0530436 isaggr = bf_isaggr(bf);
Sujithd43f30152009-01-16 21:38:53 +0530437 memset(ba, 0, WME_BA_BMP_SIZE >> 3);
Sujithe8324352009-01-16 21:38:42 +0530438
Sujithd43f30152009-01-16 21:38:53 +0530439 if (isaggr && txok) {
Felix Fietkaudb1a0522010-03-29 20:07:11 -0700440 if (ts->ts_flags & ATH9K_TX_BA) {
441 seq_st = ts->ts_seqnum;
442 memcpy(ba, &ts->ba_low, WME_BA_BMP_SIZE >> 3);
Sujithe8324352009-01-16 21:38:42 +0530443 } else {
Sujithd43f30152009-01-16 21:38:53 +0530444 /*
445 * AR5416 can become deaf/mute when BA
446 * issue happens. Chip needs to be reset.
447 * But AP code may have sychronization issues
448 * when perform internal reset in this routine.
449 * Only enable reset in STA mode for now.
450 */
Sujith2660b812009-02-09 13:27:26 +0530451 if (sc->sc_ah->opmode == NL80211_IFTYPE_STATION)
Sujithd43f30152009-01-16 21:38:53 +0530452 needreset = 1;
Sujithe8324352009-01-16 21:38:42 +0530453 }
454 }
455
Felix Fietkau56dc6332011-08-28 00:32:22 +0200456 __skb_queue_head_init(&bf_pending);
Sujithe8324352009-01-16 21:38:42 +0530457
Felix Fietkaub572d032010-11-14 15:20:07 +0100458 ath_tx_count_frames(sc, bf, ts, txok, &nframes, &nbad);
Sujithe8324352009-01-16 21:38:42 +0530459 while (bf) {
Felix Fietkau6a0ddae2011-08-28 00:32:23 +0200460 u16 seqno = bf->bf_state.seqno;
461
Felix Fietkauf0b82202011-01-15 14:30:15 +0100462 txfail = txpending = sendbar = 0;
Sujithe8324352009-01-16 21:38:42 +0530463 bf_next = bf->bf_next;
464
Felix Fietkau78c46532010-06-25 01:26:16 +0200465 skb = bf->bf_mpdu;
466 tx_info = IEEE80211_SKB_CB(skb);
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100467 fi = get_frame_info(skb);
Felix Fietkau78c46532010-06-25 01:26:16 +0200468
Felix Fietkau08c96ab2013-05-18 21:28:15 +0200469 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, seqno)) {
470 /*
471 * Outside of the current BlockAck window,
472 * maybe part of a previous session
473 */
474 txfail = 1;
475 } else if (ATH_BA_ISSET(ba, ATH_BA_INDEX(seq_st, seqno))) {
Sujithe8324352009-01-16 21:38:42 +0530476 /* transmit completion, subframe is
477 * acked by block ack */
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530478 acked_cnt++;
Sujithe8324352009-01-16 21:38:42 +0530479 } else if (!isaggr && txok) {
480 /* transmit completion */
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530481 acked_cnt++;
Felix Fietkaub0477012011-12-14 22:08:05 +0100482 } else if (flush) {
483 txpending = 1;
484 } else if (fi->retries < ATH_MAX_SW_RETRIES) {
485 if (txok || !an->sleeping)
486 ath_tx_set_retry(sc, txq, bf->bf_mpdu,
487 retries);
Felix Fietkau55195412011-04-17 23:28:09 +0200488
Felix Fietkaub0477012011-12-14 22:08:05 +0100489 txpending = 1;
490 } else {
491 txfail = 1;
492 txfail_cnt++;
493 bar_index = max_t(int, bar_index,
494 ATH_BA_INDEX(seq_first, seqno));
Sujithe8324352009-01-16 21:38:42 +0530495 }
496
Felix Fietkaufce041b2011-05-19 12:20:25 +0200497 /*
498 * Make sure the last desc is reclaimed if it
499 * not a holding desc.
500 */
Felix Fietkau56dc6332011-08-28 00:32:22 +0200501 INIT_LIST_HEAD(&bf_head);
Felix Fietkau99ba6a42013-04-08 00:04:13 +0200502 if (bf_next != NULL || !bf_last->bf_stale)
Sujithd43f30152009-01-16 21:38:53 +0530503 list_move_tail(&bf->list, &bf_head);
Sujithe8324352009-01-16 21:38:42 +0530504
Felix Fietkau08c96ab2013-05-18 21:28:15 +0200505 if (!txpending) {
Sujithe8324352009-01-16 21:38:42 +0530506 /*
507 * complete the acked-ones/xretried ones; update
508 * block-ack window
509 */
Felix Fietkau6a0ddae2011-08-28 00:32:23 +0200510 ath_tx_update_baw(sc, tid, seqno);
Sujithe8324352009-01-16 21:38:42 +0530511
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +0530512 if (rc_update && (acked_cnt == 1 || txfail_cnt == 1)) {
Felix Fietkau78c46532010-06-25 01:26:16 +0200513 memcpy(tx_info->control.rates, rates, sizeof(rates));
Felix Fietkau3afd21e2011-09-14 21:24:26 +0200514 ath_tx_rc_status(sc, bf, ts, nframes, nbad, txok);
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +0530515 rc_update = false;
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +0530516 }
517
Felix Fietkaudb1a0522010-03-29 20:07:11 -0700518 ath_tx_complete_buf(sc, bf, txq, &bf_head, ts,
Felix Fietkau156369f2011-12-14 22:08:04 +0100519 !txfail);
Sujithe8324352009-01-16 21:38:42 +0530520 } else {
Felix Fietkau86a22ac2013-06-07 18:12:01 +0200521 if (tx_info->flags & IEEE80211_TX_STATUS_EOSP) {
522 tx_info->flags &= ~IEEE80211_TX_STATUS_EOSP;
523 ieee80211_sta_eosp(sta);
524 }
Sujithd43f30152009-01-16 21:38:53 +0530525 /* retry the un-acked ones */
Felix Fietkau99ba6a42013-04-08 00:04:13 +0200526 if (bf->bf_next == NULL && bf_last->bf_stale) {
Felix Fietkaub0477012011-12-14 22:08:05 +0100527 struct ath_buf *tbf;
Sujithe8324352009-01-16 21:38:42 +0530528
Felix Fietkaub0477012011-12-14 22:08:05 +0100529 tbf = ath_clone_txbuf(sc, bf_last);
530 /*
531 * Update tx baw and complete the
532 * frame with failed status if we
533 * run out of tx buf.
534 */
535 if (!tbf) {
Felix Fietkaub0477012011-12-14 22:08:05 +0100536 ath_tx_update_baw(sc, tid, seqno);
Vasanthakumar Thiagarajanc41d92d2009-07-14 20:17:11 -0400537
Felix Fietkaub0477012011-12-14 22:08:05 +0100538 ath_tx_complete_buf(sc, bf, txq,
539 &bf_head, ts, 0);
540 bar_index = max_t(int, bar_index,
541 ATH_BA_INDEX(seq_first, seqno));
542 break;
Vasanthakumar Thiagarajanc41d92d2009-07-14 20:17:11 -0400543 }
Felix Fietkaub0477012011-12-14 22:08:05 +0100544
545 fi->bf = tbf;
Sujithe8324352009-01-16 21:38:42 +0530546 }
547
548 /*
549 * Put this buffer to the temporary pending
550 * queue to retain ordering
551 */
Felix Fietkau56dc6332011-08-28 00:32:22 +0200552 __skb_queue_tail(&bf_pending, skb);
Sujithe8324352009-01-16 21:38:42 +0530553 }
554
555 bf = bf_next;
556 }
557
Felix Fietkau4cee7862010-07-23 03:53:16 +0200558 /* prepend un-acked frames to the beginning of the pending frame queue */
Felix Fietkau56dc6332011-08-28 00:32:22 +0200559 if (!skb_queue_empty(&bf_pending)) {
Felix Fietkau55195412011-04-17 23:28:09 +0200560 if (an->sleeping)
Johannes Berg042ec452011-09-29 16:04:26 +0200561 ieee80211_sta_set_buffered(sta, tid->tidno, true);
Felix Fietkau55195412011-04-17 23:28:09 +0200562
Felix Fietkau56dc6332011-08-28 00:32:22 +0200563 skb_queue_splice(&bf_pending, &tid->buf_q);
Felix Fietkau26a64252011-10-07 02:28:14 +0200564 if (!an->sleeping) {
Felix Fietkau9af73cf2011-08-10 15:23:35 -0600565 ath_tx_queue_tid(txq, tid);
Felix Fietkau26a64252011-10-07 02:28:14 +0200566
Sujith Manoharanadfbda62012-08-29 09:20:42 +0530567 if (ts->ts_status & (ATH9K_TXERR_FILT | ATH9K_TXERR_XRETRY))
Felix Fietkau26a64252011-10-07 02:28:14 +0200568 tid->ac->clear_ps_filter = true;
569 }
Felix Fietkau4cee7862010-07-23 03:53:16 +0200570 }
571
Felix Fietkau23de5dc2011-12-19 16:45:54 +0100572 if (bar_index >= 0) {
573 u16 bar_seq = ATH_BA_INDEX2SEQ(seq_first, bar_index);
574
575 if (BAW_WITHIN(tid->seq_start, tid->baw_size, bar_seq))
576 tid->bar_index = ATH_BA_INDEX(tid->seq_start, bar_seq);
577
578 ath_txq_unlock(sc, txq);
579 ath_send_bar(tid, ATH_BA_INDEX2SEQ(seq_first, bar_index + 1));
580 ath_txq_lock(sc, txq);
581 }
582
Sujith1286ec62009-01-27 13:30:37 +0530583 rcu_read_unlock();
584
Rajkumar Manoharan124b9792012-07-17 17:16:42 +0530585 if (needreset)
586 ath9k_queue_reset(sc, RESET_TYPE_TX_ERROR);
Sujithe8324352009-01-16 21:38:42 +0530587}
588
Felix Fietkau81b51952013-01-20 18:51:54 +0100589static bool bf_is_ampdu_not_probing(struct ath_buf *bf)
590{
591 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(bf->bf_mpdu);
592 return bf_isampdu(bf) && !(info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE);
593}
594
595static void ath_tx_process_buffer(struct ath_softc *sc, struct ath_txq *txq,
596 struct ath_tx_status *ts, struct ath_buf *bf,
597 struct list_head *bf_head)
598{
Felix Fietkau0c585dd2013-05-17 12:58:25 +0200599 struct ieee80211_tx_info *info;
Felix Fietkau81b51952013-01-20 18:51:54 +0100600 bool txok, flush;
601
602 txok = !(ts->ts_status & ATH9K_TXERR_MASK);
603 flush = !!(ts->ts_status & ATH9K_TX_FLUSH);
604 txq->axq_tx_inprogress = false;
605
606 txq->axq_depth--;
607 if (bf_is_ampdu_not_probing(bf))
608 txq->axq_ampdu_depth--;
609
610 if (!bf_isampdu(bf)) {
Felix Fietkau0c585dd2013-05-17 12:58:25 +0200611 if (!flush) {
612 info = IEEE80211_SKB_CB(bf->bf_mpdu);
613 memcpy(info->control.rates, bf->rates,
614 sizeof(info->control.rates));
Felix Fietkau81b51952013-01-20 18:51:54 +0100615 ath_tx_rc_status(sc, bf, ts, 1, txok ? 0 : 1, txok);
Felix Fietkau0c585dd2013-05-17 12:58:25 +0200616 }
Felix Fietkau81b51952013-01-20 18:51:54 +0100617 ath_tx_complete_buf(sc, bf, txq, bf_head, ts, txok);
618 } else
619 ath_tx_complete_aggr(sc, txq, bf, bf_head, ts, txok);
620
621 if ((sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT) && !flush)
622 ath_txq_schedule(sc, txq);
623}
624
Rajkumar Manoharan1a6e9d02011-08-23 12:32:57 +0530625static bool ath_lookup_legacy(struct ath_buf *bf)
626{
627 struct sk_buff *skb;
628 struct ieee80211_tx_info *tx_info;
629 struct ieee80211_tx_rate *rates;
630 int i;
631
632 skb = bf->bf_mpdu;
633 tx_info = IEEE80211_SKB_CB(skb);
634 rates = tx_info->control.rates;
635
Felix Fietkau059ee092011-08-27 10:25:27 +0200636 for (i = 0; i < 4; i++) {
637 if (!rates[i].count || rates[i].idx < 0)
638 break;
639
Rajkumar Manoharan1a6e9d02011-08-23 12:32:57 +0530640 if (!(rates[i].flags & IEEE80211_TX_RC_MCS))
641 return true;
642 }
643
644 return false;
645}
646
Sujithe8324352009-01-16 21:38:42 +0530647static u32 ath_lookup_rate(struct ath_softc *sc, struct ath_buf *bf,
648 struct ath_atx_tid *tid)
649{
Sujithe8324352009-01-16 21:38:42 +0530650 struct sk_buff *skb;
651 struct ieee80211_tx_info *tx_info;
652 struct ieee80211_tx_rate *rates;
Sujithd43f30152009-01-16 21:38:53 +0530653 u32 max_4ms_framelen, frmlen;
Sujith Manoharanc0ac53f2012-02-22 12:40:38 +0530654 u16 aggr_limit, bt_aggr_limit, legacy = 0;
Felix Fietkauaa5955c2012-07-15 19:53:36 +0200655 int q = tid->ac->txq->mac80211_qnum;
Sujithe8324352009-01-16 21:38:42 +0530656 int i;
657
Sujitha22be222009-03-30 15:28:36 +0530658 skb = bf->bf_mpdu;
Sujithe8324352009-01-16 21:38:42 +0530659 tx_info = IEEE80211_SKB_CB(skb);
Felix Fietkau0c585dd2013-05-17 12:58:25 +0200660 rates = bf->rates;
Sujithe8324352009-01-16 21:38:42 +0530661
662 /*
663 * Find the lowest frame length among the rate series that will have a
Felix Fietkauaa5955c2012-07-15 19:53:36 +0200664 * 4ms (or TXOP limited) transmit duration.
Sujithe8324352009-01-16 21:38:42 +0530665 */
666 max_4ms_framelen = ATH_AMPDU_LIMIT_MAX;
667
668 for (i = 0; i < 4; i++) {
Felix Fietkaub0477012011-12-14 22:08:05 +0100669 int modeidx;
Sujithe8324352009-01-16 21:38:42 +0530670
Felix Fietkaub0477012011-12-14 22:08:05 +0100671 if (!rates[i].count)
672 continue;
Felix Fietkau0e668cd2010-04-19 19:57:32 +0200673
Felix Fietkaub0477012011-12-14 22:08:05 +0100674 if (!(rates[i].flags & IEEE80211_TX_RC_MCS)) {
675 legacy = 1;
676 break;
Sujithe8324352009-01-16 21:38:42 +0530677 }
Felix Fietkaub0477012011-12-14 22:08:05 +0100678
679 if (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
680 modeidx = MCS_HT40;
681 else
682 modeidx = MCS_HT20;
683
684 if (rates[i].flags & IEEE80211_TX_RC_SHORT_GI)
685 modeidx++;
686
Felix Fietkauaa5955c2012-07-15 19:53:36 +0200687 frmlen = sc->tx.max_aggr_framelen[q][modeidx][rates[i].idx];
Felix Fietkaub0477012011-12-14 22:08:05 +0100688 max_4ms_framelen = min(max_4ms_framelen, frmlen);
Sujithe8324352009-01-16 21:38:42 +0530689 }
690
691 /*
692 * limit aggregate size by the minimum rate if rate selected is
693 * not a probe rate, if rate selected is a probe rate then
694 * avoid aggregation of this packet.
695 */
696 if (tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE || legacy)
697 return 0;
698
Sujith Manoharanc0ac53f2012-02-22 12:40:38 +0530699 aggr_limit = min(max_4ms_framelen, (u32)ATH_AMPDU_LIMIT_MAX);
700
701 /*
702 * Override the default aggregation limit for BTCOEX.
703 */
704 bt_aggr_limit = ath9k_btcoex_aggr_limit(sc, max_4ms_framelen);
705 if (bt_aggr_limit)
706 aggr_limit = bt_aggr_limit;
Sujithe8324352009-01-16 21:38:42 +0530707
708 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300709 * h/w can accept aggregates up to 16 bit lengths (65535).
710 * The IE, however can hold up to 65536, which shows up here
Sujithe8324352009-01-16 21:38:42 +0530711 * as zero. Ignore 65536 since we are constrained by hw.
712 */
Sujith4ef70842009-07-23 15:32:41 +0530713 if (tid->an->maxampdu)
714 aggr_limit = min(aggr_limit, tid->an->maxampdu);
Sujithe8324352009-01-16 21:38:42 +0530715
716 return aggr_limit;
717}
718
719/*
Sujithd43f30152009-01-16 21:38:53 +0530720 * Returns the number of delimiters to be added to
Sujithe8324352009-01-16 21:38:42 +0530721 * meet the minimum required mpdudensity.
Sujithe8324352009-01-16 21:38:42 +0530722 */
723static int ath_compute_num_delims(struct ath_softc *sc, struct ath_atx_tid *tid,
Rajkumar Manoharan7a12dfd2011-08-13 10:28:08 +0530724 struct ath_buf *bf, u16 frmlen,
725 bool first_subfrm)
Sujithe8324352009-01-16 21:38:42 +0530726{
Rajkumar Manoharan7a12dfd2011-08-13 10:28:08 +0530727#define FIRST_DESC_NDELIMS 60
Sujith4ef70842009-07-23 15:32:41 +0530728 u32 nsymbits, nsymbols;
Sujithe8324352009-01-16 21:38:42 +0530729 u16 minlen;
Felix Fietkau545750d2009-11-23 22:21:01 +0100730 u8 flags, rix;
Felix Fietkauc6663872010-04-19 19:57:33 +0200731 int width, streams, half_gi, ndelim, mindelim;
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100732 struct ath_frame_info *fi = get_frame_info(bf->bf_mpdu);
Sujithe8324352009-01-16 21:38:42 +0530733
734 /* Select standard number of delimiters based on frame length alone */
735 ndelim = ATH_AGGR_GET_NDELIM(frmlen);
736
737 /*
738 * If encryption enabled, hardware requires some more padding between
739 * subframes.
740 * TODO - this could be improved to be dependent on the rate.
741 * The hardware can keep up at lower rates, but not higher rates
742 */
Rajkumar Manoharan4f6760b2011-07-01 18:37:33 +0530743 if ((fi->keyix != ATH9K_TXKEYIX_INVALID) &&
744 !(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA))
Sujithe8324352009-01-16 21:38:42 +0530745 ndelim += ATH_AGGR_ENCRYPTDELIM;
746
747 /*
Rajkumar Manoharan7a12dfd2011-08-13 10:28:08 +0530748 * Add delimiter when using RTS/CTS with aggregation
749 * and non enterprise AR9003 card
750 */
Felix Fietkau34597312011-08-29 18:57:54 +0200751 if (first_subfrm && !AR_SREV_9580_10_OR_LATER(sc->sc_ah) &&
752 (sc->sc_ah->ent_mode & AR_ENT_OTP_MIN_PKT_SIZE_DISABLE))
Rajkumar Manoharan7a12dfd2011-08-13 10:28:08 +0530753 ndelim = max(ndelim, FIRST_DESC_NDELIMS);
754
755 /*
Sujithe8324352009-01-16 21:38:42 +0530756 * Convert desired mpdu density from microeconds to bytes based
757 * on highest rate in rate series (i.e. first rate) to determine
758 * required minimum length for subframe. Take into account
759 * whether high rate is 20 or 40Mhz and half or full GI.
Sujith4ef70842009-07-23 15:32:41 +0530760 *
Sujithe8324352009-01-16 21:38:42 +0530761 * If there is no mpdu density restriction, no further calculation
762 * is needed.
763 */
Sujith4ef70842009-07-23 15:32:41 +0530764
765 if (tid->an->mpdudensity == 0)
Sujithe8324352009-01-16 21:38:42 +0530766 return ndelim;
767
Felix Fietkau79acac02013-04-22 23:11:44 +0200768 rix = bf->rates[0].idx;
769 flags = bf->rates[0].flags;
Sujithe8324352009-01-16 21:38:42 +0530770 width = (flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ? 1 : 0;
771 half_gi = (flags & IEEE80211_TX_RC_SHORT_GI) ? 1 : 0;
772
773 if (half_gi)
Sujith4ef70842009-07-23 15:32:41 +0530774 nsymbols = NUM_SYMBOLS_PER_USEC_HALFGI(tid->an->mpdudensity);
Sujithe8324352009-01-16 21:38:42 +0530775 else
Sujith4ef70842009-07-23 15:32:41 +0530776 nsymbols = NUM_SYMBOLS_PER_USEC(tid->an->mpdudensity);
Sujithe8324352009-01-16 21:38:42 +0530777
778 if (nsymbols == 0)
779 nsymbols = 1;
780
Felix Fietkauc6663872010-04-19 19:57:33 +0200781 streams = HT_RC_2_STREAMS(rix);
782 nsymbits = bits_per_symbol[rix % 8][width] * streams;
Sujithe8324352009-01-16 21:38:42 +0530783 minlen = (nsymbols * nsymbits) / BITS_PER_BYTE;
784
Sujithe8324352009-01-16 21:38:42 +0530785 if (frmlen < minlen) {
Sujithe8324352009-01-16 21:38:42 +0530786 mindelim = (minlen - frmlen) / ATH_AGGR_DELIM_SZ;
787 ndelim = max(mindelim, ndelim);
788 }
789
790 return ndelim;
791}
792
Felix Fietkau86a22ac2013-06-07 18:12:01 +0200793static struct ath_buf *
794ath_tx_get_tid_subframe(struct ath_softc *sc, struct ath_txq *txq,
795 struct ath_atx_tid *tid)
Sujithe8324352009-01-16 21:38:42 +0530796{
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100797 struct ath_frame_info *fi;
Felix Fietkau56dc6332011-08-28 00:32:22 +0200798 struct sk_buff *skb;
Felix Fietkau86a22ac2013-06-07 18:12:01 +0200799 struct ath_buf *bf;
Felix Fietkau6a0ddae2011-08-28 00:32:23 +0200800 u16 seqno;
Sujithe8324352009-01-16 21:38:42 +0530801
Felix Fietkau86a22ac2013-06-07 18:12:01 +0200802 while (1) {
Felix Fietkau56dc6332011-08-28 00:32:22 +0200803 skb = skb_peek(&tid->buf_q);
Felix Fietkau86a22ac2013-06-07 18:12:01 +0200804 if (!skb)
805 break;
806
Felix Fietkau56dc6332011-08-28 00:32:22 +0200807 fi = get_frame_info(skb);
808 bf = fi->bf;
Felix Fietkau44f1d262011-08-28 00:32:25 +0200809 if (!fi->bf)
Felix Fietkau249ee722012-10-03 21:07:52 +0200810 bf = ath_tx_setup_buffer(sc, txq, tid, skb);
Felix Fietkau56dc6332011-08-28 00:32:22 +0200811
Felix Fietkau249ee722012-10-03 21:07:52 +0200812 if (!bf) {
813 __skb_unlink(skb, &tid->buf_q);
814 ieee80211_free_txskb(sc->hw, skb);
Felix Fietkau44f1d262011-08-28 00:32:25 +0200815 continue;
Felix Fietkau249ee722012-10-03 21:07:52 +0200816 }
Felix Fietkau44f1d262011-08-28 00:32:25 +0200817
Felix Fietkau399c6482011-09-14 21:24:17 +0200818 bf->bf_state.bf_type = BUF_AMPDU | BUF_AGGR;
Felix Fietkau44f1d262011-08-28 00:32:25 +0200819 seqno = bf->bf_state.seqno;
Sujithe8324352009-01-16 21:38:42 +0530820
Sujithd43f30152009-01-16 21:38:53 +0530821 /* do not step over block-ack window */
Felix Fietkau86a22ac2013-06-07 18:12:01 +0200822 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, seqno))
Sujithe8324352009-01-16 21:38:42 +0530823 break;
Sujithe8324352009-01-16 21:38:42 +0530824
Felix Fietkauf9437542011-12-14 22:08:08 +0100825 if (tid->bar_index > ATH_BA_INDEX(tid->seq_start, seqno)) {
826 struct ath_tx_status ts = {};
827 struct list_head bf_head;
828
829 INIT_LIST_HEAD(&bf_head);
830 list_add(&bf->list, &bf_head);
831 __skb_unlink(skb, &tid->buf_q);
832 ath_tx_update_baw(sc, tid, seqno);
833 ath_tx_complete_buf(sc, bf, txq, &bf_head, &ts, 0);
834 continue;
835 }
836
Felix Fietkau86a22ac2013-06-07 18:12:01 +0200837 bf->bf_next = NULL;
838 bf->bf_lastbf = bf;
839 return bf;
840 }
841
842 return NULL;
843}
844
845static enum ATH_AGGR_STATUS ath_tx_form_aggr(struct ath_softc *sc,
846 struct ath_txq *txq,
847 struct ath_atx_tid *tid,
848 struct list_head *bf_q,
849 int *aggr_len)
850{
851#define PADBYTES(_len) ((4 - ((_len) % 4)) % 4)
852 struct ath_buf *bf, *bf_first = NULL, *bf_prev = NULL;
853 int rl = 0, nframes = 0, ndelim, prev_al = 0;
854 u16 aggr_limit = 0, al = 0, bpad = 0,
855 al_delta, h_baw = tid->baw_size / 2;
856 enum ATH_AGGR_STATUS status = ATH_AGGR_DONE;
857 struct ieee80211_tx_info *tx_info;
858 struct ath_frame_info *fi;
859 struct sk_buff *skb;
860
861 do {
862 bf = ath_tx_get_tid_subframe(sc, txq, tid);
863 if (!bf) {
864 status = ATH_AGGR_BAW_CLOSED;
865 break;
866 }
867
868 skb = bf->bf_mpdu;
869 fi = get_frame_info(skb);
870
Felix Fietkauf9437542011-12-14 22:08:08 +0100871 if (!bf_first)
872 bf_first = bf;
873
Sujithe8324352009-01-16 21:38:42 +0530874 if (!rl) {
Felix Fietkau79acac02013-04-22 23:11:44 +0200875 ath_set_rates(tid->an->vif, tid->an->sta, bf);
Sujithe8324352009-01-16 21:38:42 +0530876 aggr_limit = ath_lookup_rate(sc, bf, tid);
877 rl = 1;
878 }
879
Sujithd43f30152009-01-16 21:38:53 +0530880 /* do not exceed aggregation limit */
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100881 al_delta = ATH_AGGR_DELIM_SZ + fi->framelen;
Sujithe8324352009-01-16 21:38:42 +0530882
Sujithd43f30152009-01-16 21:38:53 +0530883 if (nframes &&
Rajkumar Manoharan1a6e9d02011-08-23 12:32:57 +0530884 ((aggr_limit < (al + bpad + al_delta + prev_al)) ||
885 ath_lookup_legacy(bf))) {
Sujithe8324352009-01-16 21:38:42 +0530886 status = ATH_AGGR_LIMITED;
887 break;
888 }
889
Felix Fietkau0299a502010-10-21 02:47:24 +0200890 tx_info = IEEE80211_SKB_CB(bf->bf_mpdu);
Felix Fietkaubdf2dbf2011-09-14 21:24:25 +0200891 if (nframes && (tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE))
Felix Fietkau0299a502010-10-21 02:47:24 +0200892 break;
893
Sujithd43f30152009-01-16 21:38:53 +0530894 /* do not exceed subframe limit */
895 if (nframes >= min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) {
Sujithe8324352009-01-16 21:38:42 +0530896 status = ATH_AGGR_LIMITED;
897 break;
898 }
899
Sujithd43f30152009-01-16 21:38:53 +0530900 /* add padding for previous frame to aggregation length */
Sujithe8324352009-01-16 21:38:42 +0530901 al += bpad + al_delta;
902
903 /*
904 * Get the delimiters needed to meet the MPDU
905 * density for this node.
906 */
Rajkumar Manoharan7a12dfd2011-08-13 10:28:08 +0530907 ndelim = ath_compute_num_delims(sc, tid, bf_first, fi->framelen,
908 !nframes);
Sujithe8324352009-01-16 21:38:42 +0530909 bpad = PADBYTES(al_delta) + (ndelim << 2);
910
Rajkumar Manoharan7a12dfd2011-08-13 10:28:08 +0530911 nframes++;
Sujithe8324352009-01-16 21:38:42 +0530912 bf->bf_next = NULL;
Sujithe8324352009-01-16 21:38:42 +0530913
Sujithd43f30152009-01-16 21:38:53 +0530914 /* link buffers of this frame to the aggregate */
Felix Fietkau2d42efc2010-11-14 15:20:13 +0100915 if (!fi->retries)
Felix Fietkau86a22ac2013-06-07 18:12:01 +0200916 ath_tx_addto_baw(sc, tid, bf->bf_state.seqno);
Felix Fietkau399c6482011-09-14 21:24:17 +0200917 bf->bf_state.ndelim = ndelim;
Felix Fietkau56dc6332011-08-28 00:32:22 +0200918
919 __skb_unlink(skb, &tid->buf_q);
920 list_add_tail(&bf->list, bf_q);
Felix Fietkau399c6482011-09-14 21:24:17 +0200921 if (bf_prev)
Sujithe8324352009-01-16 21:38:42 +0530922 bf_prev->bf_next = bf;
Felix Fietkau399c6482011-09-14 21:24:17 +0200923
Sujithe8324352009-01-16 21:38:42 +0530924 bf_prev = bf;
Sujithfec247c2009-07-27 12:08:16 +0530925
Felix Fietkau56dc6332011-08-28 00:32:22 +0200926 } while (!skb_queue_empty(&tid->buf_q));
Sujithe8324352009-01-16 21:38:42 +0530927
Felix Fietkau269c44b2010-11-14 15:20:06 +0100928 *aggr_len = al;
Sujithd43f30152009-01-16 21:38:53 +0530929
Sujithe8324352009-01-16 21:38:42 +0530930 return status;
931#undef PADBYTES
932}
933
Felix Fietkau38dad7b2011-09-14 21:24:18 +0200934/*
935 * rix - rate index
936 * pktlen - total bytes (delims + data + fcs + pads + pad delims)
937 * width - 0 for 20 MHz, 1 for 40 MHz
938 * half_gi - to use 4us v/s 3.6 us for symbol time
939 */
940static u32 ath_pkt_duration(struct ath_softc *sc, u8 rix, int pktlen,
941 int width, int half_gi, bool shortPreamble)
942{
943 u32 nbits, nsymbits, duration, nsymbols;
944 int streams;
945
946 /* find number of symbols: PLCP + data */
947 streams = HT_RC_2_STREAMS(rix);
948 nbits = (pktlen << 3) + OFDM_PLCP_BITS;
949 nsymbits = bits_per_symbol[rix % 8][width] * streams;
950 nsymbols = (nbits + nsymbits - 1) / nsymbits;
951
952 if (!half_gi)
953 duration = SYMBOL_TIME(nsymbols);
954 else
955 duration = SYMBOL_TIME_HALFGI(nsymbols);
956
957 /* addup duration for legacy/ht training and signal fields */
958 duration += L_STF + L_LTF + L_SIG + HT_SIG + HT_STF + HT_LTF(streams);
959
960 return duration;
961}
962
Felix Fietkauaa5955c2012-07-15 19:53:36 +0200963static int ath_max_framelen(int usec, int mcs, bool ht40, bool sgi)
964{
965 int streams = HT_RC_2_STREAMS(mcs);
966 int symbols, bits;
967 int bytes = 0;
968
969 symbols = sgi ? TIME_SYMBOLS_HALFGI(usec) : TIME_SYMBOLS(usec);
970 bits = symbols * bits_per_symbol[mcs % 8][ht40] * streams;
971 bits -= OFDM_PLCP_BITS;
972 bytes = bits / 8;
973 bytes -= L_STF + L_LTF + L_SIG + HT_SIG + HT_STF + HT_LTF(streams);
974 if (bytes > 65532)
975 bytes = 65532;
976
977 return bytes;
978}
979
980void ath_update_max_aggr_framelen(struct ath_softc *sc, int queue, int txop)
981{
982 u16 *cur_ht20, *cur_ht20_sgi, *cur_ht40, *cur_ht40_sgi;
983 int mcs;
984
985 /* 4ms is the default (and maximum) duration */
986 if (!txop || txop > 4096)
987 txop = 4096;
988
989 cur_ht20 = sc->tx.max_aggr_framelen[queue][MCS_HT20];
990 cur_ht20_sgi = sc->tx.max_aggr_framelen[queue][MCS_HT20_SGI];
991 cur_ht40 = sc->tx.max_aggr_framelen[queue][MCS_HT40];
992 cur_ht40_sgi = sc->tx.max_aggr_framelen[queue][MCS_HT40_SGI];
993 for (mcs = 0; mcs < 32; mcs++) {
994 cur_ht20[mcs] = ath_max_framelen(txop, mcs, false, false);
995 cur_ht20_sgi[mcs] = ath_max_framelen(txop, mcs, false, true);
996 cur_ht40[mcs] = ath_max_framelen(txop, mcs, true, false);
997 cur_ht40_sgi[mcs] = ath_max_framelen(txop, mcs, true, true);
998 }
999}
1000
Felix Fietkau493cf042011-09-14 21:24:22 +02001001static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf,
1002 struct ath_tx_info *info, int len)
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001003{
1004 struct ath_hw *ah = sc->sc_ah;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001005 struct sk_buff *skb;
1006 struct ieee80211_tx_info *tx_info;
1007 struct ieee80211_tx_rate *rates;
1008 const struct ieee80211_rate *rate;
1009 struct ieee80211_hdr *hdr;
Felix Fietkau80b08a82012-06-15 03:04:53 +02001010 struct ath_frame_info *fi = get_frame_info(bf->bf_mpdu);
Felix Fietkau493cf042011-09-14 21:24:22 +02001011 int i;
1012 u8 rix = 0;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001013
1014 skb = bf->bf_mpdu;
1015 tx_info = IEEE80211_SKB_CB(skb);
Felix Fietkau79acac02013-04-22 23:11:44 +02001016 rates = bf->rates;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001017 hdr = (struct ieee80211_hdr *)skb->data;
Felix Fietkau493cf042011-09-14 21:24:22 +02001018
1019 /* set dur_update_en for l-sig computation except for PS-Poll frames */
1020 info->dur_update = !ieee80211_is_pspoll(hdr->frame_control);
Felix Fietkau80b08a82012-06-15 03:04:53 +02001021 info->rtscts_rate = fi->rtscts_rate;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001022
Felix Fietkau79acac02013-04-22 23:11:44 +02001023 for (i = 0; i < ARRAY_SIZE(bf->rates); i++) {
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001024 bool is_40, is_sgi, is_sp;
1025 int phy;
1026
1027 if (!rates[i].count || (rates[i].idx < 0))
1028 continue;
1029
1030 rix = rates[i].idx;
Felix Fietkau493cf042011-09-14 21:24:22 +02001031 info->rates[i].Tries = rates[i].count;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001032
1033 if (rates[i].flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Felix Fietkau493cf042011-09-14 21:24:22 +02001034 info->rates[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS;
1035 info->flags |= ATH9K_TXDESC_RTSENA;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001036 } else if (rates[i].flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Felix Fietkau493cf042011-09-14 21:24:22 +02001037 info->rates[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS;
1038 info->flags |= ATH9K_TXDESC_CTSENA;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001039 }
1040
1041 if (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
Felix Fietkau493cf042011-09-14 21:24:22 +02001042 info->rates[i].RateFlags |= ATH9K_RATESERIES_2040;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001043 if (rates[i].flags & IEEE80211_TX_RC_SHORT_GI)
Felix Fietkau493cf042011-09-14 21:24:22 +02001044 info->rates[i].RateFlags |= ATH9K_RATESERIES_HALFGI;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001045
1046 is_sgi = !!(rates[i].flags & IEEE80211_TX_RC_SHORT_GI);
1047 is_40 = !!(rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH);
1048 is_sp = !!(rates[i].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE);
1049
1050 if (rates[i].flags & IEEE80211_TX_RC_MCS) {
1051 /* MCS rates */
Felix Fietkau493cf042011-09-14 21:24:22 +02001052 info->rates[i].Rate = rix | 0x80;
1053 info->rates[i].ChSel = ath_txchainmask_reduction(sc,
1054 ah->txchainmask, info->rates[i].Rate);
1055 info->rates[i].PktDuration = ath_pkt_duration(sc, rix, len,
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001056 is_40, is_sgi, is_sp);
1057 if (rix < 8 && (tx_info->flags & IEEE80211_TX_CTL_STBC))
Felix Fietkau493cf042011-09-14 21:24:22 +02001058 info->rates[i].RateFlags |= ATH9K_RATESERIES_STBC;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001059 continue;
1060 }
1061
1062 /* legacy rates */
Felix Fietkau76591be2012-06-15 03:04:52 +02001063 rate = &sc->sbands[tx_info->band].bitrates[rates[i].idx];
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001064 if ((tx_info->band == IEEE80211_BAND_2GHZ) &&
1065 !(rate->flags & IEEE80211_RATE_ERP_G))
1066 phy = WLAN_RC_PHY_CCK;
1067 else
1068 phy = WLAN_RC_PHY_OFDM;
1069
Felix Fietkau493cf042011-09-14 21:24:22 +02001070 info->rates[i].Rate = rate->hw_value;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001071 if (rate->hw_value_short) {
1072 if (rates[i].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
Felix Fietkau493cf042011-09-14 21:24:22 +02001073 info->rates[i].Rate |= rate->hw_value_short;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001074 } else {
1075 is_sp = false;
1076 }
1077
1078 if (bf->bf_state.bfs_paprd)
Felix Fietkau493cf042011-09-14 21:24:22 +02001079 info->rates[i].ChSel = ah->txchainmask;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001080 else
Felix Fietkau493cf042011-09-14 21:24:22 +02001081 info->rates[i].ChSel = ath_txchainmask_reduction(sc,
1082 ah->txchainmask, info->rates[i].Rate);
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001083
Felix Fietkau493cf042011-09-14 21:24:22 +02001084 info->rates[i].PktDuration = ath9k_hw_computetxtime(sc->sc_ah,
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001085 phy, rate->bitrate * 100, len, rix, is_sp);
1086 }
1087
1088 /* For AR5416 - RTS cannot be followed by a frame larger than 8K */
1089 if (bf_isaggr(bf) && (len > sc->sc_ah->caps.rts_aggr_limit))
Felix Fietkau493cf042011-09-14 21:24:22 +02001090 info->flags &= ~ATH9K_TXDESC_RTSENA;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001091
1092 /* ATH9K_TXDESC_RTSENA and ATH9K_TXDESC_CTSENA are mutually exclusive. */
Felix Fietkau493cf042011-09-14 21:24:22 +02001093 if (info->flags & ATH9K_TXDESC_RTSENA)
1094 info->flags &= ~ATH9K_TXDESC_CTSENA;
Felix Fietkau38dad7b2011-09-14 21:24:18 +02001095}
1096
Felix Fietkau493cf042011-09-14 21:24:22 +02001097static enum ath9k_pkt_type get_hw_packet_type(struct sk_buff *skb)
1098{
1099 struct ieee80211_hdr *hdr;
1100 enum ath9k_pkt_type htype;
1101 __le16 fc;
1102
1103 hdr = (struct ieee80211_hdr *)skb->data;
1104 fc = hdr->frame_control;
1105
1106 if (ieee80211_is_beacon(fc))
1107 htype = ATH9K_PKT_TYPE_BEACON;
1108 else if (ieee80211_is_probe_resp(fc))
1109 htype = ATH9K_PKT_TYPE_PROBE_RESP;
1110 else if (ieee80211_is_atim(fc))
1111 htype = ATH9K_PKT_TYPE_ATIM;
1112 else if (ieee80211_is_pspoll(fc))
1113 htype = ATH9K_PKT_TYPE_PSPOLL;
1114 else
1115 htype = ATH9K_PKT_TYPE_NORMAL;
1116
1117 return htype;
1118}
1119
1120static void ath_tx_fill_desc(struct ath_softc *sc, struct ath_buf *bf,
1121 struct ath_txq *txq, int len)
Felix Fietkau399c6482011-09-14 21:24:17 +02001122{
1123 struct ath_hw *ah = sc->sc_ah;
Felix Fietkau86a22ac2013-06-07 18:12:01 +02001124 struct ath_buf *bf_first = NULL;
Felix Fietkau493cf042011-09-14 21:24:22 +02001125 struct ath_tx_info info;
Felix Fietkau399c6482011-09-14 21:24:17 +02001126
Felix Fietkau493cf042011-09-14 21:24:22 +02001127 memset(&info, 0, sizeof(info));
1128 info.is_first = true;
1129 info.is_last = true;
1130 info.txpower = MAX_RATE_POWER;
1131 info.qcu = txq->axq_qnum;
Felix Fietkau399c6482011-09-14 21:24:17 +02001132
Felix Fietkau399c6482011-09-14 21:24:17 +02001133 while (bf) {
Felix Fietkau493cf042011-09-14 21:24:22 +02001134 struct sk_buff *skb = bf->bf_mpdu;
Felix Fietkau86a22ac2013-06-07 18:12:01 +02001135 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Felix Fietkau493cf042011-09-14 21:24:22 +02001136 struct ath_frame_info *fi = get_frame_info(skb);
Felix Fietkau86a22ac2013-06-07 18:12:01 +02001137 bool aggr = !!(bf->bf_state.bf_type & BUF_AGGR);
Felix Fietkau493cf042011-09-14 21:24:22 +02001138
1139 info.type = get_hw_packet_type(skb);
Felix Fietkau399c6482011-09-14 21:24:17 +02001140 if (bf->bf_next)
Felix Fietkau493cf042011-09-14 21:24:22 +02001141 info.link = bf->bf_next->bf_daddr;
Felix Fietkau399c6482011-09-14 21:24:17 +02001142 else
Felix Fietkau493cf042011-09-14 21:24:22 +02001143 info.link = 0;
Felix Fietkau399c6482011-09-14 21:24:17 +02001144
Felix Fietkau86a22ac2013-06-07 18:12:01 +02001145 if (!bf_first) {
1146 bf_first = bf;
1147
1148 info.flags = ATH9K_TXDESC_INTREQ;
1149 if ((tx_info->flags & IEEE80211_TX_CTL_CLEAR_PS_FILT) ||
1150 txq == sc->tx.uapsdq)
1151 info.flags |= ATH9K_TXDESC_CLRDMASK;
1152
1153 if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK)
1154 info.flags |= ATH9K_TXDESC_NOACK;
1155 if (tx_info->flags & IEEE80211_TX_CTL_LDPC)
1156 info.flags |= ATH9K_TXDESC_LDPC;
1157
1158 if (bf->bf_state.bfs_paprd)
1159 info.flags |= (u32) bf->bf_state.bfs_paprd <<
1160 ATH9K_TXDESC_PAPRD_S;
1161
1162 ath_buf_set_rate(sc, bf, &info, len);
1163 }
1164
John W. Linville42cecc32011-09-19 15:42:31 -04001165 info.buf_addr[0] = bf->bf_buf_addr;
1166 info.buf_len[0] = skb->len;
Felix Fietkau493cf042011-09-14 21:24:22 +02001167 info.pkt_len = fi->framelen;
1168 info.keyix = fi->keyix;
1169 info.keytype = fi->keytype;
1170
1171 if (aggr) {
Felix Fietkau399c6482011-09-14 21:24:17 +02001172 if (bf == bf_first)
Felix Fietkau493cf042011-09-14 21:24:22 +02001173 info.aggr = AGGR_BUF_FIRST;
Felix Fietkau86a22ac2013-06-07 18:12:01 +02001174 else if (bf == bf_first->bf_lastbf)
Felix Fietkau493cf042011-09-14 21:24:22 +02001175 info.aggr = AGGR_BUF_LAST;
1176 else
1177 info.aggr = AGGR_BUF_MIDDLE;
Felix Fietkau399c6482011-09-14 21:24:17 +02001178
Felix Fietkau493cf042011-09-14 21:24:22 +02001179 info.ndelim = bf->bf_state.ndelim;
1180 info.aggr_len = len;
Felix Fietkau399c6482011-09-14 21:24:17 +02001181 }
1182
Felix Fietkau86a22ac2013-06-07 18:12:01 +02001183 if (bf == bf_first->bf_lastbf)
1184 bf_first = NULL;
1185
Felix Fietkau493cf042011-09-14 21:24:22 +02001186 ath9k_hw_set_txdesc(ah, bf->bf_desc, &info);
Felix Fietkau399c6482011-09-14 21:24:17 +02001187 bf = bf->bf_next;
1188 }
1189}
1190
Sujithe8324352009-01-16 21:38:42 +05301191static void ath_tx_sched_aggr(struct ath_softc *sc, struct ath_txq *txq,
1192 struct ath_atx_tid *tid)
1193{
Sujithd43f30152009-01-16 21:38:53 +05301194 struct ath_buf *bf;
Sujithe8324352009-01-16 21:38:42 +05301195 enum ATH_AGGR_STATUS status;
Felix Fietkau399c6482011-09-14 21:24:17 +02001196 struct ieee80211_tx_info *tx_info;
Sujithe8324352009-01-16 21:38:42 +05301197 struct list_head bf_q;
Felix Fietkau269c44b2010-11-14 15:20:06 +01001198 int aggr_len;
Sujithe8324352009-01-16 21:38:42 +05301199
1200 do {
Felix Fietkau56dc6332011-08-28 00:32:22 +02001201 if (skb_queue_empty(&tid->buf_q))
Sujithe8324352009-01-16 21:38:42 +05301202 return;
1203
1204 INIT_LIST_HEAD(&bf_q);
1205
Felix Fietkau269c44b2010-11-14 15:20:06 +01001206 status = ath_tx_form_aggr(sc, txq, tid, &bf_q, &aggr_len);
Sujithe8324352009-01-16 21:38:42 +05301207
1208 /*
Sujithd43f30152009-01-16 21:38:53 +05301209 * no frames picked up to be aggregated;
1210 * block-ack window is not open.
Sujithe8324352009-01-16 21:38:42 +05301211 */
1212 if (list_empty(&bf_q))
1213 break;
1214
1215 bf = list_first_entry(&bf_q, struct ath_buf, list);
Sujithd43f30152009-01-16 21:38:53 +05301216 bf->bf_lastbf = list_entry(bf_q.prev, struct ath_buf, list);
Felix Fietkau399c6482011-09-14 21:24:17 +02001217 tx_info = IEEE80211_SKB_CB(bf->bf_mpdu);
Sujithe8324352009-01-16 21:38:42 +05301218
Felix Fietkau55195412011-04-17 23:28:09 +02001219 if (tid->ac->clear_ps_filter) {
1220 tid->ac->clear_ps_filter = false;
Felix Fietkau399c6482011-09-14 21:24:17 +02001221 tx_info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1222 } else {
1223 tx_info->flags &= ~IEEE80211_TX_CTL_CLEAR_PS_FILT;
Felix Fietkau55195412011-04-17 23:28:09 +02001224 }
1225
Sujithd43f30152009-01-16 21:38:53 +05301226 /* if only one frame, send as non-aggregate */
Felix Fietkaub572d032010-11-14 15:20:07 +01001227 if (bf == bf->bf_lastbf) {
Felix Fietkau399c6482011-09-14 21:24:17 +02001228 aggr_len = get_frame_info(bf->bf_mpdu)->framelen;
1229 bf->bf_state.bf_type = BUF_AMPDU;
1230 } else {
1231 TX_STAT_INC(txq->axq_qnum, a_aggr);
Sujithe8324352009-01-16 21:38:42 +05301232 }
1233
Felix Fietkau493cf042011-09-14 21:24:22 +02001234 ath_tx_fill_desc(sc, bf, txq, aggr_len);
Felix Fietkaufce041b2011-05-19 12:20:25 +02001235 ath_tx_txqaddbuf(sc, txq, &bf_q, false);
Felix Fietkau4b3ba662010-12-17 00:57:00 +01001236 } while (txq->axq_ampdu_depth < ATH_AGGR_MIN_QDEPTH &&
Sujithe8324352009-01-16 21:38:42 +05301237 status != ATH_AGGR_BAW_CLOSED);
1238}
1239
Felix Fietkau231c3a12010-09-20 19:35:28 +02001240int ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta,
1241 u16 tid, u16 *ssn)
Sujithe8324352009-01-16 21:38:42 +05301242{
1243 struct ath_atx_tid *txtid;
1244 struct ath_node *an;
Sven Eckelmann313eb872012-06-25 07:15:22 +02001245 u8 density;
Sujithe8324352009-01-16 21:38:42 +05301246
1247 an = (struct ath_node *)sta->drv_priv;
Sujithf83da962009-07-23 15:32:37 +05301248 txtid = ATH_AN_2_TID(an, tid);
Felix Fietkau231c3a12010-09-20 19:35:28 +02001249
Sven Eckelmann313eb872012-06-25 07:15:22 +02001250 /* update ampdu factor/density, they may have changed. This may happen
1251 * in HT IBSS when a beacon with HT-info is received after the station
1252 * has already been added.
1253 */
Sujith Manoharandd5ee592013-02-04 15:38:23 +05301254 if (sta->ht_cap.ht_supported) {
Sven Eckelmann313eb872012-06-25 07:15:22 +02001255 an->maxampdu = 1 << (IEEE80211_HT_MAX_AMPDU_FACTOR +
1256 sta->ht_cap.ampdu_factor);
1257 density = ath9k_parse_mpdudensity(sta->ht_cap.ampdu_density);
1258 an->mpdudensity = density;
1259 }
1260
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001261 txtid->active = true;
Lorenzo Bianconi75401842010-08-01 15:47:32 +02001262 txtid->paused = true;
Felix Fietkau49447f22011-01-10 17:05:48 -07001263 *ssn = txtid->seq_start = txtid->seq_next;
Felix Fietkauf9437542011-12-14 22:08:08 +01001264 txtid->bar_index = -1;
Felix Fietkau231c3a12010-09-20 19:35:28 +02001265
Felix Fietkau2ed72222011-01-10 17:05:49 -07001266 memset(txtid->tx_buf, 0, sizeof(txtid->tx_buf));
1267 txtid->baw_head = txtid->baw_tail = 0;
1268
Felix Fietkau231c3a12010-09-20 19:35:28 +02001269 return 0;
Sujithe8324352009-01-16 21:38:42 +05301270}
1271
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001272void ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
Sujithe8324352009-01-16 21:38:42 +05301273{
1274 struct ath_node *an = (struct ath_node *)sta->drv_priv;
1275 struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid);
Felix Fietkau066dae92010-11-07 14:59:39 +01001276 struct ath_txq *txq = txtid->ac->txq;
Sujithe8324352009-01-16 21:38:42 +05301277
Felix Fietkau23de5dc2011-12-19 16:45:54 +01001278 ath_txq_lock(sc, txq);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001279 txtid->active = false;
Lorenzo Bianconi75401842010-08-01 15:47:32 +02001280 txtid->paused = true;
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001281 ath_tx_flush_tid(sc, txtid);
Felix Fietkau23de5dc2011-12-19 16:45:54 +01001282 ath_txq_unlock_complete(sc, txq);
Sujithe8324352009-01-16 21:38:42 +05301283}
1284
Johannes Berg042ec452011-09-29 16:04:26 +02001285void ath_tx_aggr_sleep(struct ieee80211_sta *sta, struct ath_softc *sc,
1286 struct ath_node *an)
Felix Fietkau55195412011-04-17 23:28:09 +02001287{
1288 struct ath_atx_tid *tid;
1289 struct ath_atx_ac *ac;
1290 struct ath_txq *txq;
Johannes Berg042ec452011-09-29 16:04:26 +02001291 bool buffered;
Felix Fietkau55195412011-04-17 23:28:09 +02001292 int tidno;
1293
1294 for (tidno = 0, tid = &an->tid[tidno];
Sujith Manoharande7b7602012-11-28 15:08:53 +05301295 tidno < IEEE80211_NUM_TIDS; tidno++, tid++) {
Felix Fietkau55195412011-04-17 23:28:09 +02001296
1297 if (!tid->sched)
1298 continue;
1299
1300 ac = tid->ac;
1301 txq = ac->txq;
1302
Felix Fietkau23de5dc2011-12-19 16:45:54 +01001303 ath_txq_lock(sc, txq);
Felix Fietkau55195412011-04-17 23:28:09 +02001304
Johannes Berg042ec452011-09-29 16:04:26 +02001305 buffered = !skb_queue_empty(&tid->buf_q);
Felix Fietkau55195412011-04-17 23:28:09 +02001306
1307 tid->sched = false;
1308 list_del(&tid->list);
1309
1310 if (ac->sched) {
1311 ac->sched = false;
1312 list_del(&ac->list);
1313 }
1314
Felix Fietkau23de5dc2011-12-19 16:45:54 +01001315 ath_txq_unlock(sc, txq);
Felix Fietkau55195412011-04-17 23:28:09 +02001316
Johannes Berg042ec452011-09-29 16:04:26 +02001317 ieee80211_sta_set_buffered(sta, tidno, buffered);
1318 }
Felix Fietkau55195412011-04-17 23:28:09 +02001319}
1320
1321void ath_tx_aggr_wakeup(struct ath_softc *sc, struct ath_node *an)
1322{
1323 struct ath_atx_tid *tid;
1324 struct ath_atx_ac *ac;
1325 struct ath_txq *txq;
1326 int tidno;
1327
1328 for (tidno = 0, tid = &an->tid[tidno];
Sujith Manoharande7b7602012-11-28 15:08:53 +05301329 tidno < IEEE80211_NUM_TIDS; tidno++, tid++) {
Felix Fietkau55195412011-04-17 23:28:09 +02001330
1331 ac = tid->ac;
1332 txq = ac->txq;
1333
Felix Fietkau23de5dc2011-12-19 16:45:54 +01001334 ath_txq_lock(sc, txq);
Felix Fietkau55195412011-04-17 23:28:09 +02001335 ac->clear_ps_filter = true;
1336
Felix Fietkau56dc6332011-08-28 00:32:22 +02001337 if (!skb_queue_empty(&tid->buf_q) && !tid->paused) {
Felix Fietkau55195412011-04-17 23:28:09 +02001338 ath_tx_queue_tid(txq, tid);
1339 ath_txq_schedule(sc, txq);
1340 }
1341
Felix Fietkau23de5dc2011-12-19 16:45:54 +01001342 ath_txq_unlock_complete(sc, txq);
Felix Fietkau55195412011-04-17 23:28:09 +02001343 }
1344}
1345
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001346void ath_tx_aggr_resume(struct ath_softc *sc, struct ieee80211_sta *sta,
1347 u16 tidno)
Sujithe8324352009-01-16 21:38:42 +05301348{
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001349 struct ath_atx_tid *tid;
Sujithe8324352009-01-16 21:38:42 +05301350 struct ath_node *an;
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001351 struct ath_txq *txq;
Sujithe8324352009-01-16 21:38:42 +05301352
1353 an = (struct ath_node *)sta->drv_priv;
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001354 tid = ATH_AN_2_TID(an, tidno);
1355 txq = tid->ac->txq;
Sujithe8324352009-01-16 21:38:42 +05301356
Felix Fietkau08c96ab2013-05-18 21:28:15 +02001357 ath_txq_lock(sc, txq);
1358
1359 tid->baw_size = IEEE80211_MIN_AMPDU_BUF << sta->ht_cap.ampdu_factor;
1360 tid->paused = false;
1361
1362 if (!skb_queue_empty(&tid->buf_q)) {
1363 ath_tx_queue_tid(txq, tid);
1364 ath_txq_schedule(sc, txq);
1365 }
1366
1367 ath_txq_unlock_complete(sc, txq);
Sujithe8324352009-01-16 21:38:42 +05301368}
1369
Felix Fietkau86a22ac2013-06-07 18:12:01 +02001370void ath9k_release_buffered_frames(struct ieee80211_hw *hw,
1371 struct ieee80211_sta *sta,
1372 u16 tids, int nframes,
1373 enum ieee80211_frame_release_type reason,
1374 bool more_data)
1375{
1376 struct ath_softc *sc = hw->priv;
1377 struct ath_node *an = (struct ath_node *)sta->drv_priv;
1378 struct ath_txq *txq = sc->tx.uapsdq;
1379 struct ieee80211_tx_info *info;
1380 struct list_head bf_q;
1381 struct ath_buf *bf_tail = NULL, *bf;
1382 int sent = 0;
1383 int i;
1384
1385 INIT_LIST_HEAD(&bf_q);
1386 for (i = 0; tids && nframes; i++, tids >>= 1) {
1387 struct ath_atx_tid *tid;
1388
1389 if (!(tids & 1))
1390 continue;
1391
1392 tid = ATH_AN_2_TID(an, i);
1393 if (tid->paused)
1394 continue;
1395
1396 ath_txq_lock(sc, tid->ac->txq);
1397 while (!skb_queue_empty(&tid->buf_q) && nframes > 0) {
1398 bf = ath_tx_get_tid_subframe(sc, sc->tx.uapsdq, tid);
1399 if (!bf)
1400 break;
1401
1402 __skb_unlink(bf->bf_mpdu, &tid->buf_q);
1403 list_add_tail(&bf->list, &bf_q);
1404 ath_set_rates(tid->an->vif, tid->an->sta, bf);
1405 ath_tx_addto_baw(sc, tid, bf->bf_state.seqno);
1406 bf->bf_state.bf_type &= ~BUF_AGGR;
1407 if (bf_tail)
1408 bf_tail->bf_next = bf;
1409
1410 bf_tail = bf;
1411 nframes--;
1412 sent++;
1413 TX_STAT_INC(txq->axq_qnum, a_queued_hw);
1414
1415 if (skb_queue_empty(&tid->buf_q))
1416 ieee80211_sta_set_buffered(an->sta, i, false);
1417 }
1418 ath_txq_unlock_complete(sc, tid->ac->txq);
1419 }
1420
1421 if (list_empty(&bf_q))
1422 return;
1423
1424 info = IEEE80211_SKB_CB(bf_tail->bf_mpdu);
1425 info->flags |= IEEE80211_TX_STATUS_EOSP;
1426
1427 bf = list_first_entry(&bf_q, struct ath_buf, list);
1428 ath_txq_lock(sc, txq);
1429 ath_tx_fill_desc(sc, bf, txq, 0);
1430 ath_tx_txqaddbuf(sc, txq, &bf_q, false);
1431 ath_txq_unlock(sc, txq);
1432}
1433
Sujithe8324352009-01-16 21:38:42 +05301434/********************/
1435/* Queue Management */
1436/********************/
1437
Sujithe8324352009-01-16 21:38:42 +05301438struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype)
1439{
Sujithcbe61d82009-02-09 13:27:12 +05301440 struct ath_hw *ah = sc->sc_ah;
Sujithe8324352009-01-16 21:38:42 +05301441 struct ath9k_tx_queue_info qi;
Felix Fietkau066dae92010-11-07 14:59:39 +01001442 static const int subtype_txq_to_hwq[] = {
Sujith Manoharanbea843c2012-11-21 18:13:10 +05301443 [IEEE80211_AC_BE] = ATH_TXQ_AC_BE,
1444 [IEEE80211_AC_BK] = ATH_TXQ_AC_BK,
1445 [IEEE80211_AC_VI] = ATH_TXQ_AC_VI,
1446 [IEEE80211_AC_VO] = ATH_TXQ_AC_VO,
Felix Fietkau066dae92010-11-07 14:59:39 +01001447 };
Ben Greear60f2d1d2011-01-09 23:11:52 -08001448 int axq_qnum, i;
Sujithe8324352009-01-16 21:38:42 +05301449
1450 memset(&qi, 0, sizeof(qi));
Felix Fietkau066dae92010-11-07 14:59:39 +01001451 qi.tqi_subtype = subtype_txq_to_hwq[subtype];
Sujithe8324352009-01-16 21:38:42 +05301452 qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT;
1453 qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT;
1454 qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT;
1455 qi.tqi_physCompBuf = 0;
1456
1457 /*
1458 * Enable interrupts only for EOL and DESC conditions.
1459 * We mark tx descriptors to receive a DESC interrupt
1460 * when a tx queue gets deep; otherwise waiting for the
1461 * EOL to reap descriptors. Note that this is done to
1462 * reduce interrupt load and this only defers reaping
1463 * descriptors, never transmitting frames. Aside from
1464 * reducing interrupts this also permits more concurrency.
1465 * The only potential downside is if the tx queue backs
1466 * up in which case the top half of the kernel may backup
1467 * due to a lack of tx descriptors.
1468 *
1469 * The UAPSD queue is an exception, since we take a desc-
1470 * based intr on the EOSP frames.
1471 */
Vasanthakumar Thiagarajanafe754d2010-04-15 17:39:40 -04001472 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
Felix Fietkauce8fdf62012-03-14 16:40:22 +01001473 qi.tqi_qflags = TXQ_FLAG_TXINT_ENABLE;
Vasanthakumar Thiagarajanafe754d2010-04-15 17:39:40 -04001474 } else {
1475 if (qtype == ATH9K_TX_QUEUE_UAPSD)
1476 qi.tqi_qflags = TXQ_FLAG_TXDESCINT_ENABLE;
1477 else
1478 qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE |
1479 TXQ_FLAG_TXDESCINT_ENABLE;
1480 }
Ben Greear60f2d1d2011-01-09 23:11:52 -08001481 axq_qnum = ath9k_hw_setuptxqueue(ah, qtype, &qi);
1482 if (axq_qnum == -1) {
Sujithe8324352009-01-16 21:38:42 +05301483 /*
1484 * NB: don't print a message, this happens
1485 * normally on parts with too few tx queues
1486 */
1487 return NULL;
1488 }
Ben Greear60f2d1d2011-01-09 23:11:52 -08001489 if (!ATH_TXQ_SETUP(sc, axq_qnum)) {
1490 struct ath_txq *txq = &sc->tx.txq[axq_qnum];
Sujithe8324352009-01-16 21:38:42 +05301491
Ben Greear60f2d1d2011-01-09 23:11:52 -08001492 txq->axq_qnum = axq_qnum;
1493 txq->mac80211_qnum = -1;
Sujithe8324352009-01-16 21:38:42 +05301494 txq->axq_link = NULL;
Felix Fietkau23de5dc2011-12-19 16:45:54 +01001495 __skb_queue_head_init(&txq->complete_q);
Sujithe8324352009-01-16 21:38:42 +05301496 INIT_LIST_HEAD(&txq->axq_q);
1497 INIT_LIST_HEAD(&txq->axq_acq);
1498 spin_lock_init(&txq->axq_lock);
1499 txq->axq_depth = 0;
Felix Fietkau4b3ba662010-12-17 00:57:00 +01001500 txq->axq_ampdu_depth = 0;
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04001501 txq->axq_tx_inprogress = false;
Ben Greear60f2d1d2011-01-09 23:11:52 -08001502 sc->tx.txqsetup |= 1<<axq_qnum;
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04001503
1504 txq->txq_headidx = txq->txq_tailidx = 0;
1505 for (i = 0; i < ATH_TXFIFO_DEPTH; i++)
1506 INIT_LIST_HEAD(&txq->txq_fifo[i]);
Sujithe8324352009-01-16 21:38:42 +05301507 }
Ben Greear60f2d1d2011-01-09 23:11:52 -08001508 return &sc->tx.txq[axq_qnum];
Sujithe8324352009-01-16 21:38:42 +05301509}
1510
Sujithe8324352009-01-16 21:38:42 +05301511int ath_txq_update(struct ath_softc *sc, int qnum,
1512 struct ath9k_tx_queue_info *qinfo)
1513{
Sujithcbe61d82009-02-09 13:27:12 +05301514 struct ath_hw *ah = sc->sc_ah;
Sujithe8324352009-01-16 21:38:42 +05301515 int error = 0;
1516 struct ath9k_tx_queue_info qi;
1517
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07001518 BUG_ON(sc->tx.txq[qnum].axq_qnum != qnum);
Sujithe8324352009-01-16 21:38:42 +05301519
1520 ath9k_hw_get_txq_props(ah, qnum, &qi);
1521 qi.tqi_aifs = qinfo->tqi_aifs;
1522 qi.tqi_cwmin = qinfo->tqi_cwmin;
1523 qi.tqi_cwmax = qinfo->tqi_cwmax;
1524 qi.tqi_burstTime = qinfo->tqi_burstTime;
1525 qi.tqi_readyTime = qinfo->tqi_readyTime;
1526
1527 if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) {
Joe Perches38002762010-12-02 19:12:36 -08001528 ath_err(ath9k_hw_common(sc->sc_ah),
1529 "Unable to update hardware queue %u!\n", qnum);
Sujithe8324352009-01-16 21:38:42 +05301530 error = -EIO;
1531 } else {
1532 ath9k_hw_resettxqueue(ah, qnum);
1533 }
1534
1535 return error;
1536}
1537
1538int ath_cabq_update(struct ath_softc *sc)
1539{
1540 struct ath9k_tx_queue_info qi;
Steve Brown9814f6b2011-02-07 17:10:39 -07001541 struct ath_beacon_config *cur_conf = &sc->cur_beacon_conf;
Sujithe8324352009-01-16 21:38:42 +05301542 int qnum = sc->beacon.cabq->axq_qnum;
Sujithe8324352009-01-16 21:38:42 +05301543
1544 ath9k_hw_get_txq_props(sc->sc_ah, qnum, &qi);
1545 /*
1546 * Ensure the readytime % is within the bounds.
1547 */
Sujith17d79042009-02-09 13:27:03 +05301548 if (sc->config.cabqReadytime < ATH9K_READY_TIME_LO_BOUND)
1549 sc->config.cabqReadytime = ATH9K_READY_TIME_LO_BOUND;
1550 else if (sc->config.cabqReadytime > ATH9K_READY_TIME_HI_BOUND)
1551 sc->config.cabqReadytime = ATH9K_READY_TIME_HI_BOUND;
Sujithe8324352009-01-16 21:38:42 +05301552
Steve Brown9814f6b2011-02-07 17:10:39 -07001553 qi.tqi_readyTime = (cur_conf->beacon_interval *
Sujithfdbf7332009-02-17 15:36:35 +05301554 sc->config.cabqReadytime) / 100;
Sujithe8324352009-01-16 21:38:42 +05301555 ath_txq_update(sc, qnum, &qi);
1556
1557 return 0;
1558}
1559
Felix Fietkaufce041b2011-05-19 12:20:25 +02001560static void ath_drain_txq_list(struct ath_softc *sc, struct ath_txq *txq,
Felix Fietkau13815592013-01-20 18:51:53 +01001561 struct list_head *list)
Sujithe8324352009-01-16 21:38:42 +05301562{
1563 struct ath_buf *bf, *lastbf;
1564 struct list_head bf_head;
Felix Fietkaudb1a0522010-03-29 20:07:11 -07001565 struct ath_tx_status ts;
1566
1567 memset(&ts, 0, sizeof(ts));
Felix Fietkaudaa5c402011-10-07 02:28:15 +02001568 ts.ts_status = ATH9K_TX_FLUSH;
Sujithe8324352009-01-16 21:38:42 +05301569 INIT_LIST_HEAD(&bf_head);
1570
Felix Fietkaufce041b2011-05-19 12:20:25 +02001571 while (!list_empty(list)) {
1572 bf = list_first_entry(list, struct ath_buf, list);
Sujithe8324352009-01-16 21:38:42 +05301573
Felix Fietkaufce041b2011-05-19 12:20:25 +02001574 if (bf->bf_stale) {
1575 list_del(&bf->list);
Sujithe8324352009-01-16 21:38:42 +05301576
Felix Fietkaufce041b2011-05-19 12:20:25 +02001577 ath_tx_return_buffer(sc, bf);
1578 continue;
Sujithe8324352009-01-16 21:38:42 +05301579 }
1580
1581 lastbf = bf->bf_lastbf;
Felix Fietkaufce041b2011-05-19 12:20:25 +02001582 list_cut_position(&bf_head, list, &lastbf->list);
Felix Fietkau81b51952013-01-20 18:51:54 +01001583 ath_tx_process_buffer(sc, txq, &ts, bf, &bf_head);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04001584 }
Felix Fietkaufce041b2011-05-19 12:20:25 +02001585}
1586
1587/*
1588 * Drain a given TX queue (could be Beacon or Data)
1589 *
1590 * This assumes output has been stopped and
1591 * we do not need to block ath_tx_tasklet.
1592 */
Felix Fietkau13815592013-01-20 18:51:53 +01001593void ath_draintxq(struct ath_softc *sc, struct ath_txq *txq)
Felix Fietkaufce041b2011-05-19 12:20:25 +02001594{
Felix Fietkau23de5dc2011-12-19 16:45:54 +01001595 ath_txq_lock(sc, txq);
1596
Felix Fietkaufce041b2011-05-19 12:20:25 +02001597 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
1598 int idx = txq->txq_tailidx;
1599
1600 while (!list_empty(&txq->txq_fifo[idx])) {
Felix Fietkau13815592013-01-20 18:51:53 +01001601 ath_drain_txq_list(sc, txq, &txq->txq_fifo[idx]);
Felix Fietkaufce041b2011-05-19 12:20:25 +02001602
1603 INCR(idx, ATH_TXFIFO_DEPTH);
1604 }
1605 txq->txq_tailidx = idx;
1606 }
1607
1608 txq->axq_link = NULL;
1609 txq->axq_tx_inprogress = false;
Felix Fietkau13815592013-01-20 18:51:53 +01001610 ath_drain_txq_list(sc, txq, &txq->axq_q);
Felix Fietkaufce041b2011-05-19 12:20:25 +02001611
Felix Fietkau23de5dc2011-12-19 16:45:54 +01001612 ath_txq_unlock_complete(sc, txq);
Sujithe8324352009-01-16 21:38:42 +05301613}
1614
Felix Fietkau13815592013-01-20 18:51:53 +01001615bool ath_drain_all_txq(struct ath_softc *sc)
Sujith043a0402009-01-16 21:38:47 +05301616{
Sujithcbe61d82009-02-09 13:27:12 +05301617 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001618 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith043a0402009-01-16 21:38:47 +05301619 struct ath_txq *txq;
Felix Fietkau34d25812011-10-07 02:28:12 +02001620 int i;
1621 u32 npend = 0;
Sujith043a0402009-01-16 21:38:47 +05301622
Sujith Manoharan781b14a2012-06-04 20:23:55 +05301623 if (test_bit(SC_OP_INVALID, &sc->sc_flags))
Felix Fietkau080e1a22010-12-05 20:17:53 +01001624 return true;
Sujith043a0402009-01-16 21:38:47 +05301625
Felix Fietkau0d51ccc2011-03-11 21:38:18 +01001626 ath9k_hw_abort_tx_dma(ah);
Sujith043a0402009-01-16 21:38:47 +05301627
Felix Fietkau0d51ccc2011-03-11 21:38:18 +01001628 /* Check if any queue remains active */
Sujith043a0402009-01-16 21:38:47 +05301629 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
Felix Fietkau0d51ccc2011-03-11 21:38:18 +01001630 if (!ATH_TXQ_SETUP(sc, i))
1631 continue;
1632
Felix Fietkau34d25812011-10-07 02:28:12 +02001633 if (ath9k_hw_numtxpending(ah, sc->tx.txq[i].axq_qnum))
1634 npend |= BIT(i);
Sujith043a0402009-01-16 21:38:47 +05301635 }
1636
Felix Fietkau080e1a22010-12-05 20:17:53 +01001637 if (npend)
Felix Fietkau34d25812011-10-07 02:28:12 +02001638 ath_err(common, "Failed to stop TX DMA, queues=0x%03x!\n", npend);
Sujith043a0402009-01-16 21:38:47 +05301639
1640 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
Felix Fietkau92460412011-01-24 19:23:14 +01001641 if (!ATH_TXQ_SETUP(sc, i))
1642 continue;
1643
1644 /*
1645 * The caller will resume queues with ieee80211_wake_queues.
1646 * Mark the queue as not stopped to prevent ath_tx_complete
1647 * from waking the queue too early.
1648 */
1649 txq = &sc->tx.txq[i];
1650 txq->stopped = false;
Felix Fietkau13815592013-01-20 18:51:53 +01001651 ath_draintxq(sc, txq);
Sujith043a0402009-01-16 21:38:47 +05301652 }
Felix Fietkau080e1a22010-12-05 20:17:53 +01001653
1654 return !npend;
Sujith043a0402009-01-16 21:38:47 +05301655}
1656
Sujithe8324352009-01-16 21:38:42 +05301657void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq)
1658{
1659 ath9k_hw_releasetxqueue(sc->sc_ah, txq->axq_qnum);
1660 sc->tx.txqsetup &= ~(1<<txq->axq_qnum);
1661}
1662
Ben Greear7755bad2011-01-18 17:30:00 -08001663/* For each axq_acq entry, for each tid, try to schedule packets
1664 * for transmit until ampdu_depth has reached min Q depth.
1665 */
Sujithe8324352009-01-16 21:38:42 +05301666void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq)
1667{
Ben Greear7755bad2011-01-18 17:30:00 -08001668 struct ath_atx_ac *ac, *ac_tmp, *last_ac;
1669 struct ath_atx_tid *tid, *last_tid;
Sujithe8324352009-01-16 21:38:42 +05301670
Rajkumar Manoharan124b9792012-07-17 17:16:42 +05301671 if (test_bit(SC_OP_HW_RESET, &sc->sc_flags) ||
1672 list_empty(&txq->axq_acq) ||
Felix Fietkau21f28e62011-01-15 14:30:14 +01001673 txq->axq_ampdu_depth >= ATH_AGGR_MIN_QDEPTH)
Sujithe8324352009-01-16 21:38:42 +05301674 return;
1675
Felix Fietkau23bc2022013-06-22 12:39:26 +02001676 rcu_read_lock();
1677
Sujithe8324352009-01-16 21:38:42 +05301678 ac = list_first_entry(&txq->axq_acq, struct ath_atx_ac, list);
Ben Greear7755bad2011-01-18 17:30:00 -08001679 last_ac = list_entry(txq->axq_acq.prev, struct ath_atx_ac, list);
Sujithe8324352009-01-16 21:38:42 +05301680
Ben Greear7755bad2011-01-18 17:30:00 -08001681 list_for_each_entry_safe(ac, ac_tmp, &txq->axq_acq, list) {
1682 last_tid = list_entry(ac->tid_q.prev, struct ath_atx_tid, list);
1683 list_del(&ac->list);
1684 ac->sched = false;
Sujithe8324352009-01-16 21:38:42 +05301685
Ben Greear7755bad2011-01-18 17:30:00 -08001686 while (!list_empty(&ac->tid_q)) {
1687 tid = list_first_entry(&ac->tid_q, struct ath_atx_tid,
1688 list);
1689 list_del(&tid->list);
1690 tid->sched = false;
Sujithe8324352009-01-16 21:38:42 +05301691
Ben Greear7755bad2011-01-18 17:30:00 -08001692 if (tid->paused)
1693 continue;
Sujithe8324352009-01-16 21:38:42 +05301694
Ben Greear7755bad2011-01-18 17:30:00 -08001695 ath_tx_sched_aggr(sc, txq, tid);
Sujithe8324352009-01-16 21:38:42 +05301696
Ben Greear7755bad2011-01-18 17:30:00 -08001697 /*
1698 * add tid to round-robin queue if more frames
1699 * are pending for the tid
1700 */
Felix Fietkau56dc6332011-08-28 00:32:22 +02001701 if (!skb_queue_empty(&tid->buf_q))
Ben Greear7755bad2011-01-18 17:30:00 -08001702 ath_tx_queue_tid(txq, tid);
Sujithe8324352009-01-16 21:38:42 +05301703
Ben Greear7755bad2011-01-18 17:30:00 -08001704 if (tid == last_tid ||
1705 txq->axq_ampdu_depth >= ATH_AGGR_MIN_QDEPTH)
1706 break;
Sujithe8324352009-01-16 21:38:42 +05301707 }
Ben Greear7755bad2011-01-18 17:30:00 -08001708
Felix Fietkaub0477012011-12-14 22:08:05 +01001709 if (!list_empty(&ac->tid_q) && !ac->sched) {
1710 ac->sched = true;
1711 list_add_tail(&ac->list, &txq->axq_acq);
Ben Greear7755bad2011-01-18 17:30:00 -08001712 }
1713
1714 if (ac == last_ac ||
1715 txq->axq_ampdu_depth >= ATH_AGGR_MIN_QDEPTH)
Felix Fietkau23bc2022013-06-22 12:39:26 +02001716 break;
Sujithe8324352009-01-16 21:38:42 +05301717 }
Felix Fietkau23bc2022013-06-22 12:39:26 +02001718
1719 rcu_read_unlock();
Sujithe8324352009-01-16 21:38:42 +05301720}
1721
Sujithe8324352009-01-16 21:38:42 +05301722/***********/
1723/* TX, DMA */
1724/***********/
1725
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001726/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001727 * Insert a chain of ath_buf (descriptors) on a txq and
1728 * assume the descriptors are already chained together by caller.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001729 */
Sujith102e0572008-10-29 10:15:16 +05301730static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
Felix Fietkaufce041b2011-05-19 12:20:25 +02001731 struct list_head *head, bool internal)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001732{
Sujithcbe61d82009-02-09 13:27:12 +05301733 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001734 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkaufce041b2011-05-19 12:20:25 +02001735 struct ath_buf *bf, *bf_last;
1736 bool puttxbuf = false;
1737 bool edma;
Sujith102e0572008-10-29 10:15:16 +05301738
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001739 /*
1740 * Insert the frame on the outbound list and
1741 * pass it on to the hardware.
1742 */
1743
1744 if (list_empty(head))
1745 return;
1746
Felix Fietkaufce041b2011-05-19 12:20:25 +02001747 edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001748 bf = list_first_entry(head, struct ath_buf, list);
Felix Fietkaufce041b2011-05-19 12:20:25 +02001749 bf_last = list_entry(head->prev, struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001750
Joe Perchesd2182b62011-12-15 14:55:53 -08001751 ath_dbg(common, QUEUE, "qnum: %d, txq depth: %d\n",
1752 txq->axq_qnum, txq->axq_depth);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001753
Felix Fietkaufce041b2011-05-19 12:20:25 +02001754 if (edma && list_empty(&txq->txq_fifo[txq->txq_headidx])) {
1755 list_splice_tail_init(head, &txq->txq_fifo[txq->txq_headidx]);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04001756 INCR(txq->txq_headidx, ATH_TXFIFO_DEPTH);
Felix Fietkaufce041b2011-05-19 12:20:25 +02001757 puttxbuf = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001758 } else {
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04001759 list_splice_tail_init(head, &txq->axq_q);
1760
Felix Fietkaufce041b2011-05-19 12:20:25 +02001761 if (txq->axq_link) {
1762 ath9k_hw_set_desc_link(ah, txq->axq_link, bf->bf_daddr);
Joe Perchesd2182b62011-12-15 14:55:53 -08001763 ath_dbg(common, XMIT, "link[%u] (%p)=%llx (%p)\n",
Joe Perches226afe62010-12-02 19:12:37 -08001764 txq->axq_qnum, txq->axq_link,
1765 ito64(bf->bf_daddr), bf->bf_desc);
Felix Fietkaufce041b2011-05-19 12:20:25 +02001766 } else if (!edma)
1767 puttxbuf = true;
1768
1769 txq->axq_link = bf_last->bf_desc;
1770 }
1771
1772 if (puttxbuf) {
1773 TX_STAT_INC(txq->axq_qnum, puttxbuf);
1774 ath9k_hw_puttxbuf(ah, txq->axq_qnum, bf->bf_daddr);
Joe Perchesd2182b62011-12-15 14:55:53 -08001775 ath_dbg(common, XMIT, "TXDP[%u] = %llx (%p)\n",
Felix Fietkaufce041b2011-05-19 12:20:25 +02001776 txq->axq_qnum, ito64(bf->bf_daddr), bf->bf_desc);
1777 }
1778
1779 if (!edma) {
Felix Fietkau8d8d3fd2011-01-24 19:11:54 +01001780 TX_STAT_INC(txq->axq_qnum, txstart);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04001781 ath9k_hw_txstart(ah, txq->axq_qnum);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001782 }
Felix Fietkaufce041b2011-05-19 12:20:25 +02001783
1784 if (!internal) {
Felix Fietkauf56e1212013-06-20 15:11:31 +02001785 while (bf) {
1786 txq->axq_depth++;
1787 if (bf_is_ampdu_not_probing(bf))
1788 txq->axq_ampdu_depth++;
1789
1790 bf = bf->bf_lastbf->bf_next;
1791 }
Felix Fietkaufce041b2011-05-19 12:20:25 +02001792 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001793}
1794
Felix Fietkauf2c7a792013-06-07 18:12:00 +02001795static void ath_tx_send_ampdu(struct ath_softc *sc, struct ath_txq *txq,
1796 struct ath_atx_tid *tid, struct sk_buff *skb,
1797 struct ath_tx_control *txctl)
Sujithe8324352009-01-16 21:38:42 +05301798{
Felix Fietkau44f1d262011-08-28 00:32:25 +02001799 struct ath_frame_info *fi = get_frame_info(skb);
Felix Fietkau04caf862010-11-14 15:20:12 +01001800 struct list_head bf_head;
Felix Fietkau44f1d262011-08-28 00:32:25 +02001801 struct ath_buf *bf;
Sujithe8324352009-01-16 21:38:42 +05301802
1803 /*
1804 * Do not queue to h/w when any of the following conditions is true:
1805 * - there are pending frames in software queue
1806 * - the TID is currently paused for ADDBA/BAR request
1807 * - seqno is not within block-ack window
1808 * - h/w queue depth exceeds low water mark
1809 */
Felix Fietkauf2c7a792013-06-07 18:12:00 +02001810 if ((!skb_queue_empty(&tid->buf_q) || tid->paused ||
1811 !BAW_WITHIN(tid->seq_start, tid->baw_size, tid->seq_next) ||
1812 txq->axq_ampdu_depth >= ATH_AGGR_MIN_QDEPTH) &&
1813 txq != sc->tx.uapsdq) {
Jouni Malinenf7a276a2008-12-15 16:02:04 +02001814 /*
Sujithe8324352009-01-16 21:38:42 +05301815 * Add this frame to software queue for scheduling later
1816 * for aggregation.
Jouni Malinenf7a276a2008-12-15 16:02:04 +02001817 */
Felix Fietkauf2c7a792013-06-07 18:12:00 +02001818 TX_STAT_INC(txq->axq_qnum, a_queued_sw);
Felix Fietkau44f1d262011-08-28 00:32:25 +02001819 __skb_queue_tail(&tid->buf_q, skb);
Felix Fietkau9af73cf2011-08-10 15:23:35 -06001820 if (!txctl->an || !txctl->an->sleeping)
Felix Fietkauf2c7a792013-06-07 18:12:00 +02001821 ath_tx_queue_tid(txq, tid);
Sujithe8324352009-01-16 21:38:42 +05301822 return;
Jouni Malinenf7a276a2008-12-15 16:02:04 +02001823 }
1824
Felix Fietkauf2c7a792013-06-07 18:12:00 +02001825 bf = ath_tx_setup_buffer(sc, txq, tid, skb);
Felix Fietkau249ee722012-10-03 21:07:52 +02001826 if (!bf) {
1827 ieee80211_free_txskb(sc->hw, skb);
Felix Fietkau44f1d262011-08-28 00:32:25 +02001828 return;
Felix Fietkau249ee722012-10-03 21:07:52 +02001829 }
Felix Fietkau44f1d262011-08-28 00:32:25 +02001830
Felix Fietkau79acac02013-04-22 23:11:44 +02001831 ath_set_rates(tid->an->vif, tid->an->sta, bf);
Felix Fietkau399c6482011-09-14 21:24:17 +02001832 bf->bf_state.bf_type = BUF_AMPDU;
Felix Fietkau04caf862010-11-14 15:20:12 +01001833 INIT_LIST_HEAD(&bf_head);
1834 list_add(&bf->list, &bf_head);
1835
Sujithe8324352009-01-16 21:38:42 +05301836 /* Add sub-frame to BAW */
Felix Fietkau44f1d262011-08-28 00:32:25 +02001837 ath_tx_addto_baw(sc, tid, bf->bf_state.seqno);
Sujithe8324352009-01-16 21:38:42 +05301838
1839 /* Queue to h/w without aggregation */
Felix Fietkauf2c7a792013-06-07 18:12:00 +02001840 TX_STAT_INC(txq->axq_qnum, a_queued_hw);
Sujithd43f30152009-01-16 21:38:53 +05301841 bf->bf_lastbf = bf;
Felix Fietkauf2c7a792013-06-07 18:12:00 +02001842 ath_tx_fill_desc(sc, bf, txq, fi->framelen);
1843 ath_tx_txqaddbuf(sc, txq, &bf_head, false);
Sujithc4288392008-11-18 09:09:30 +05301844}
1845
Felix Fietkau82b873a2010-11-11 03:18:37 +01001846static void ath_tx_send_normal(struct ath_softc *sc, struct ath_txq *txq,
Felix Fietkau44f1d262011-08-28 00:32:25 +02001847 struct ath_atx_tid *tid, struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001848{
Felix Fietkau44f1d262011-08-28 00:32:25 +02001849 struct ath_frame_info *fi = get_frame_info(skb);
1850 struct list_head bf_head;
Sujithe8324352009-01-16 21:38:42 +05301851 struct ath_buf *bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001852
Felix Fietkau44f1d262011-08-28 00:32:25 +02001853 bf = fi->bf;
Felix Fietkau44f1d262011-08-28 00:32:25 +02001854
1855 INIT_LIST_HEAD(&bf_head);
1856 list_add_tail(&bf->list, &bf_head);
Felix Fietkau399c6482011-09-14 21:24:17 +02001857 bf->bf_state.bf_type = 0;
Sujithe8324352009-01-16 21:38:42 +05301858
Felix Fietkau8c6e3092012-10-26 00:31:11 +02001859 bf->bf_next = NULL;
Sujithd43f30152009-01-16 21:38:53 +05301860 bf->bf_lastbf = bf;
Felix Fietkau493cf042011-09-14 21:24:22 +02001861 ath_tx_fill_desc(sc, bf, txq, fi->framelen);
Felix Fietkau44f1d262011-08-28 00:32:25 +02001862 ath_tx_txqaddbuf(sc, txq, &bf_head, false);
Sujithfec247c2009-07-27 12:08:16 +05301863 TX_STAT_INC(txq->axq_qnum, queued);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001864}
1865
Thomas Huehn36323f82012-07-23 21:33:42 +02001866static void setup_frame_info(struct ieee80211_hw *hw,
1867 struct ieee80211_sta *sta,
1868 struct sk_buff *skb,
Felix Fietkau2d42efc2010-11-14 15:20:13 +01001869 int framelen)
Sujith528f0c62008-10-29 10:14:26 +05301870{
1871 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Felix Fietkau2d42efc2010-11-14 15:20:13 +01001872 struct ieee80211_key_conf *hw_key = tx_info->control.hw_key;
Felix Fietkau6a0ddae2011-08-28 00:32:23 +02001873 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Felix Fietkau80b08a82012-06-15 03:04:53 +02001874 const struct ieee80211_rate *rate;
Felix Fietkau2d42efc2010-11-14 15:20:13 +01001875 struct ath_frame_info *fi = get_frame_info(skb);
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001876 struct ath_node *an = NULL;
Felix Fietkau2d42efc2010-11-14 15:20:13 +01001877 enum ath9k_key_type keytype;
Felix Fietkau80b08a82012-06-15 03:04:53 +02001878 bool short_preamble = false;
Sujith528f0c62008-10-29 10:14:26 +05301879
Felix Fietkau80b08a82012-06-15 03:04:53 +02001880 /*
1881 * We check if Short Preamble is needed for the CTS rate by
1882 * checking the BSS's global flag.
1883 * But for the rate series, IEEE80211_TX_RC_USE_SHORT_PREAMBLE is used.
1884 */
1885 if (tx_info->control.vif &&
1886 tx_info->control.vif->bss_conf.use_short_preamble)
1887 short_preamble = true;
1888
1889 rate = ieee80211_get_rts_cts_rate(hw, tx_info);
Felix Fietkau2d42efc2010-11-14 15:20:13 +01001890 keytype = ath9k_cmn_get_hw_crypto_keytype(skb);
Sujith528f0c62008-10-29 10:14:26 +05301891
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001892 if (sta)
1893 an = (struct ath_node *) sta->drv_priv;
1894
Felix Fietkau2d42efc2010-11-14 15:20:13 +01001895 memset(fi, 0, sizeof(*fi));
1896 if (hw_key)
1897 fi->keyix = hw_key->hw_key_idx;
Felix Fietkau93ae2dd2011-04-17 23:28:10 +02001898 else if (an && ieee80211_is_data(hdr->frame_control) && an->ps_key > 0)
1899 fi->keyix = an->ps_key;
Felix Fietkau2d42efc2010-11-14 15:20:13 +01001900 else
1901 fi->keyix = ATH9K_TXKEYIX_INVALID;
1902 fi->keytype = keytype;
1903 fi->framelen = framelen;
Felix Fietkau80b08a82012-06-15 03:04:53 +02001904 fi->rtscts_rate = rate->hw_value;
1905 if (short_preamble)
1906 fi->rtscts_rate |= rate->hw_value_short;
Sujith528f0c62008-10-29 10:14:26 +05301907}
1908
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05301909u8 ath_txchainmask_reduction(struct ath_softc *sc, u8 chainmask, u32 rate)
1910{
1911 struct ath_hw *ah = sc->sc_ah;
1912 struct ath9k_channel *curchan = ah->curchan;
Sujith Manoharan365d2eb2012-09-26 12:22:08 +05301913
Rajkumar Manoharand77bf3e2011-08-13 10:28:14 +05301914 if ((ah->caps.hw_caps & ATH9K_HW_CAP_APM) &&
1915 (curchan->channelFlags & CHANNEL_5GHZ) &&
1916 (chainmask == 0x7) && (rate < 0x90))
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05301917 return 0x3;
Sujith Manoharan365d2eb2012-09-26 12:22:08 +05301918 else if (AR_SREV_9462(ah) && ath9k_hw_btcoex_is_enabled(ah) &&
1919 IS_CCK_RATE(rate))
1920 return 0x2;
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05301921 else
1922 return chainmask;
1923}
1924
Felix Fietkau44f1d262011-08-28 00:32:25 +02001925/*
1926 * Assign a descriptor (and sequence number if necessary,
1927 * and map buffer for DMA. Frees skb on error
1928 */
Felix Fietkaufa05f872011-08-28 00:32:24 +02001929static struct ath_buf *ath_tx_setup_buffer(struct ath_softc *sc,
Felix Fietkau04caf862010-11-14 15:20:12 +01001930 struct ath_txq *txq,
Felix Fietkaufa05f872011-08-28 00:32:24 +02001931 struct ath_atx_tid *tid,
Felix Fietkau249ee722012-10-03 21:07:52 +02001932 struct sk_buff *skb)
Sujithe8324352009-01-16 21:38:42 +05301933{
Felix Fietkau82b873a2010-11-11 03:18:37 +01001934 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Felix Fietkau2d42efc2010-11-14 15:20:13 +01001935 struct ath_frame_info *fi = get_frame_info(skb);
Felix Fietkaufa05f872011-08-28 00:32:24 +02001936 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Felix Fietkau82b873a2010-11-11 03:18:37 +01001937 struct ath_buf *bf;
Sujith Manoharanfd09c852012-04-17 08:34:50 +05301938 int fragno;
Felix Fietkaufa05f872011-08-28 00:32:24 +02001939 u16 seqno;
Felix Fietkau82b873a2010-11-11 03:18:37 +01001940
1941 bf = ath_tx_get_buffer(sc);
1942 if (!bf) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001943 ath_dbg(common, XMIT, "TX buffers are full\n");
Felix Fietkau249ee722012-10-03 21:07:52 +02001944 return NULL;
Felix Fietkau82b873a2010-11-11 03:18:37 +01001945 }
Sujithe8324352009-01-16 21:38:42 +05301946
Sujithe8324352009-01-16 21:38:42 +05301947 ATH_TXBUF_RESET(bf);
1948
Felix Fietkaufa05f872011-08-28 00:32:24 +02001949 if (tid) {
Sujith Manoharanfd09c852012-04-17 08:34:50 +05301950 fragno = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
Felix Fietkaufa05f872011-08-28 00:32:24 +02001951 seqno = tid->seq_next;
1952 hdr->seq_ctrl = cpu_to_le16(tid->seq_next << IEEE80211_SEQ_SEQ_SHIFT);
Sujith Manoharanfd09c852012-04-17 08:34:50 +05301953
1954 if (fragno)
1955 hdr->seq_ctrl |= cpu_to_le16(fragno);
1956
1957 if (!ieee80211_has_morefrags(hdr->frame_control))
1958 INCR(tid->seq_next, IEEE80211_SEQ_MAX);
1959
Felix Fietkaufa05f872011-08-28 00:32:24 +02001960 bf->bf_state.seqno = seqno;
1961 }
1962
Sujithe8324352009-01-16 21:38:42 +05301963 bf->bf_mpdu = skb;
1964
Ben Greearc1739eb32010-10-14 12:45:29 -07001965 bf->bf_buf_addr = dma_map_single(sc->dev, skb->data,
1966 skb->len, DMA_TO_DEVICE);
1967 if (unlikely(dma_mapping_error(sc->dev, bf->bf_buf_addr))) {
Sujithe8324352009-01-16 21:38:42 +05301968 bf->bf_mpdu = NULL;
Ben Greear6cf9e992010-10-14 12:45:30 -07001969 bf->bf_buf_addr = 0;
Joe Perches38002762010-12-02 19:12:36 -08001970 ath_err(ath9k_hw_common(sc->sc_ah),
1971 "dma_mapping_error() on TX\n");
Felix Fietkau82b873a2010-11-11 03:18:37 +01001972 ath_tx_return_buffer(sc, bf);
Felix Fietkau249ee722012-10-03 21:07:52 +02001973 return NULL;
Sujithe8324352009-01-16 21:38:42 +05301974 }
1975
Felix Fietkau56dc6332011-08-28 00:32:22 +02001976 fi->bf = bf;
Felix Fietkau04caf862010-11-14 15:20:12 +01001977
1978 return bf;
1979}
1980
Felix Fietkau59505c02013-06-07 18:12:02 +02001981static int ath_tx_prepare(struct ieee80211_hw *hw, struct sk_buff *skb,
1982 struct ath_tx_control *txctl)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001983{
Felix Fietkau28d16702010-11-14 15:20:10 +01001984 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1985 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Thomas Huehn36323f82012-07-23 21:33:42 +02001986 struct ieee80211_sta *sta = txctl->sta;
Felix Fietkauf59a59f2011-05-10 20:52:22 +02001987 struct ieee80211_vif *vif = info->control.vif;
Felix Fietkau9ac586152011-01-24 19:23:18 +01001988 struct ath_softc *sc = hw->priv;
Felix Fietkau04caf862010-11-14 15:20:12 +01001989 int frmlen = skb->len + FCS_LEN;
Felix Fietkau59505c02013-06-07 18:12:02 +02001990 int padpos, padsize;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001991
Ben Greeara9927ba2010-12-06 21:13:49 -08001992 /* NOTE: sta can be NULL according to net/mac80211.h */
1993 if (sta)
1994 txctl->an = (struct ath_node *)sta->drv_priv;
1995
Felix Fietkau04caf862010-11-14 15:20:12 +01001996 if (info->control.hw_key)
1997 frmlen += info->control.hw_key->icv_len;
1998
Felix Fietkau28d16702010-11-14 15:20:10 +01001999 /*
2000 * As a temporary workaround, assign seq# here; this will likely need
2001 * to be cleaned up to work better with Beacon transmission and virtual
2002 * BSSes.
2003 */
2004 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
2005 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
2006 sc->tx.seq_no += 0x10;
2007 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
2008 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
2009 }
2010
Felix Fietkau59505c02013-06-07 18:12:02 +02002011 if ((vif && vif->type != NL80211_IFTYPE_AP &&
2012 vif->type != NL80211_IFTYPE_AP_VLAN) ||
2013 !ieee80211_is_data(hdr->frame_control))
2014 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
2015
John W. Linville42cecc32011-09-19 15:42:31 -04002016 /* Add the padding after the header if this is not already done */
Felix Fietkauc60c9922013-04-08 00:04:09 +02002017 padpos = ieee80211_hdrlen(hdr->frame_control);
John W. Linville42cecc32011-09-19 15:42:31 -04002018 padsize = padpos & 3;
2019 if (padsize && skb->len > padpos) {
2020 if (skb_headroom(skb) < padsize)
2021 return -ENOMEM;
Felix Fietkau28d16702010-11-14 15:20:10 +01002022
John W. Linville42cecc32011-09-19 15:42:31 -04002023 skb_push(skb, padsize);
2024 memmove(skb->data, skb->data + padsize, padpos);
Felix Fietkau28d16702010-11-14 15:20:10 +01002025 }
2026
Thomas Huehn36323f82012-07-23 21:33:42 +02002027 setup_frame_info(hw, sta, skb, frmlen);
Felix Fietkau59505c02013-06-07 18:12:02 +02002028 return 0;
2029}
Felix Fietkau2d42efc2010-11-14 15:20:13 +01002030
Felix Fietkau59505c02013-06-07 18:12:02 +02002031
2032/* Upon failure caller should free skb */
2033int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb,
2034 struct ath_tx_control *txctl)
2035{
2036 struct ieee80211_hdr *hdr;
2037 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2038 struct ieee80211_sta *sta = txctl->sta;
2039 struct ieee80211_vif *vif = info->control.vif;
2040 struct ath_softc *sc = hw->priv;
2041 struct ath_txq *txq = txctl->txq;
2042 struct ath_atx_tid *tid = NULL;
2043 struct ath_buf *bf;
2044 u8 tidno;
2045 int q;
2046 int ret;
2047
2048 ret = ath_tx_prepare(hw, skb, txctl);
2049 if (ret)
2050 return ret;
2051
2052 hdr = (struct ieee80211_hdr *) skb->data;
Felix Fietkau2d42efc2010-11-14 15:20:13 +01002053 /*
2054 * At this point, the vif, hw_key and sta pointers in the tx control
2055 * info are no longer valid (overwritten by the ath_frame_info data.
2056 */
2057
Felix Fietkau066dae92010-11-07 14:59:39 +01002058 q = skb_get_queue_mapping(skb);
Felix Fietkau23de5dc2011-12-19 16:45:54 +01002059
2060 ath_txq_lock(sc, txq);
Felix Fietkau066dae92010-11-07 14:59:39 +01002061 if (txq == sc->tx.txq_map[q] &&
Felix Fietkau7702e782012-07-15 19:53:35 +02002062 ++txq->pending_frames > sc->tx.txq_max_pending[q] &&
2063 !txq->stopped) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01002064 ieee80211_stop_queue(sc->hw, q);
Rusty Russell3db1cd52011-12-19 13:56:45 +00002065 txq->stopped = true;
Felix Fietkau97923b12010-06-12 00:33:55 -04002066 }
Felix Fietkau97923b12010-06-12 00:33:55 -04002067
Felix Fietkauf2c7a792013-06-07 18:12:00 +02002068 if (info->flags & IEEE80211_TX_CTL_PS_RESPONSE) {
2069 ath_txq_unlock(sc, txq);
2070 txq = sc->tx.uapsdq;
2071 ath_txq_lock(sc, txq);
2072 }
2073
Felix Fietkaubdc21452013-04-22 23:11:43 +02002074 if (txctl->an && ieee80211_is_data_qos(hdr->frame_control)) {
2075 tidno = ieee80211_get_qos_ctl(hdr)[0] &
2076 IEEE80211_QOS_CTL_TID_MASK;
2077 tid = ATH_AN_2_TID(txctl->an, tidno);
Felix Fietkau3ad29522011-12-14 22:08:07 +01002078
Felix Fietkaubdc21452013-04-22 23:11:43 +02002079 WARN_ON(tid->ac->txq != txctl->txq);
2080 }
2081
2082 if ((info->flags & IEEE80211_TX_CTL_AMPDU) && tid) {
2083 /*
2084 * Try aggregation if it's a unicast data frame
2085 * and the destination is HT capable.
2086 */
Felix Fietkauf2c7a792013-06-07 18:12:00 +02002087 ath_tx_send_ampdu(sc, txq, tid, skb, txctl);
Felix Fietkaubdc21452013-04-22 23:11:43 +02002088 goto out;
2089 }
2090
Felix Fietkauf2c7a792013-06-07 18:12:00 +02002091 bf = ath_tx_setup_buffer(sc, txq, tid, skb);
Felix Fietkaubdc21452013-04-22 23:11:43 +02002092 if (!bf) {
2093 if (txctl->paprd)
2094 dev_kfree_skb_any(skb);
2095 else
2096 ieee80211_free_txskb(sc->hw, skb);
2097 goto out;
2098 }
2099
2100 bf->bf_state.bfs_paprd = txctl->paprd;
2101
2102 if (txctl->paprd)
2103 bf->bf_state.bfs_paprd_timestamp = jiffies;
2104
Felix Fietkau79acac02013-04-22 23:11:44 +02002105 ath_set_rates(vif, sta, bf);
Felix Fietkauf2c7a792013-06-07 18:12:00 +02002106 ath_tx_send_normal(sc, txq, tid, skb);
Felix Fietkaubdc21452013-04-22 23:11:43 +02002107
2108out:
Felix Fietkau23de5dc2011-12-19 16:45:54 +01002109 ath_txq_unlock(sc, txq);
Felix Fietkau3ad29522011-12-14 22:08:07 +01002110
Felix Fietkau44f1d262011-08-28 00:32:25 +02002111 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002112}
2113
Felix Fietkau59505c02013-06-07 18:12:02 +02002114void ath_tx_cabq(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2115 struct sk_buff *skb)
2116{
2117 struct ath_softc *sc = hw->priv;
2118 struct ath_tx_control txctl = {
2119 .txq = sc->beacon.cabq
2120 };
2121 struct ath_tx_info info = {};
2122 struct ieee80211_hdr *hdr;
2123 struct ath_buf *bf_tail = NULL;
2124 struct ath_buf *bf;
2125 LIST_HEAD(bf_q);
2126 int duration = 0;
2127 int max_duration;
2128
2129 max_duration =
2130 sc->cur_beacon_conf.beacon_interval * 1000 *
2131 sc->cur_beacon_conf.dtim_period / ATH_BCBUF;
2132
2133 do {
2134 struct ath_frame_info *fi = get_frame_info(skb);
2135
2136 if (ath_tx_prepare(hw, skb, &txctl))
2137 break;
2138
2139 bf = ath_tx_setup_buffer(sc, txctl.txq, NULL, skb);
2140 if (!bf)
2141 break;
2142
2143 bf->bf_lastbf = bf;
2144 ath_set_rates(vif, NULL, bf);
2145 ath_buf_set_rate(sc, bf, &info, fi->framelen);
2146 duration += info.rates[0].PktDuration;
2147 if (bf_tail)
2148 bf_tail->bf_next = bf;
2149
2150 list_add_tail(&bf->list, &bf_q);
2151 bf_tail = bf;
2152 skb = NULL;
2153
2154 if (duration > max_duration)
2155 break;
2156
2157 skb = ieee80211_get_buffered_bc(hw, vif);
2158 } while(skb);
2159
2160 if (skb)
2161 ieee80211_free_txskb(hw, skb);
2162
2163 if (list_empty(&bf_q))
2164 return;
2165
2166 bf = list_first_entry(&bf_q, struct ath_buf, list);
2167 hdr = (struct ieee80211_hdr *) bf->bf_mpdu->data;
2168
2169 if (hdr->frame_control & IEEE80211_FCTL_MOREDATA) {
2170 hdr->frame_control &= ~IEEE80211_FCTL_MOREDATA;
2171 dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
2172 sizeof(*hdr), DMA_TO_DEVICE);
2173 }
2174
2175 ath_txq_lock(sc, txctl.txq);
2176 ath_tx_fill_desc(sc, bf, txctl.txq, 0);
2177 ath_tx_txqaddbuf(sc, txctl.txq, &bf_q, false);
2178 TX_STAT_INC(txctl.txq->axq_qnum, queued);
2179 ath_txq_unlock(sc, txctl.txq);
2180}
2181
Sujithe8324352009-01-16 21:38:42 +05302182/*****************/
2183/* TX Completion */
2184/*****************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002185
Sujithe8324352009-01-16 21:38:42 +05302186static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
Rajkumar Manoharan0f9dc292011-07-29 17:38:14 +05302187 int tx_flags, struct ath_txq *txq)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002188{
Sujithe8324352009-01-16 21:38:42 +05302189 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002190 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Benoit Papillault4d91f9f2009-12-12 00:22:35 +01002191 struct ieee80211_hdr * hdr = (struct ieee80211_hdr *)skb->data;
Felix Fietkau97923b12010-06-12 00:33:55 -04002192 int q, padpos, padsize;
Sujith Manoharan07c15a32012-06-04 20:24:07 +05302193 unsigned long flags;
Sujithe8324352009-01-16 21:38:42 +05302194
Joe Perchesd2182b62011-12-15 14:55:53 -08002195 ath_dbg(common, XMIT, "TX complete: skb: %p\n", skb);
Sujithe8324352009-01-16 21:38:42 +05302196
Felix Fietkau51dea9b2012-08-27 17:00:07 +02002197 if (sc->sc_ah->caldata)
2198 sc->sc_ah->caldata->paprd_packet_sent = true;
2199
Felix Fietkau55797b12011-09-14 21:24:16 +02002200 if (!(tx_flags & ATH_TX_ERROR))
Sujithe8324352009-01-16 21:38:42 +05302201 /* Frame was ACKed */
2202 tx_info->flags |= IEEE80211_TX_STAT_ACK;
Sujithe8324352009-01-16 21:38:42 +05302203
Felix Fietkauc60c9922013-04-08 00:04:09 +02002204 padpos = ieee80211_hdrlen(hdr->frame_control);
John W. Linville42cecc32011-09-19 15:42:31 -04002205 padsize = padpos & 3;
2206 if (padsize && skb->len>padpos+padsize) {
2207 /*
2208 * Remove MAC header padding before giving the frame back to
2209 * mac80211.
2210 */
2211 memmove(skb->data + padsize, skb->data, padpos);
2212 skb_pull(skb, padsize);
Sujithe8324352009-01-16 21:38:42 +05302213 }
2214
Sujith Manoharan07c15a32012-06-04 20:24:07 +05302215 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Felix Fietkauc8e88682011-11-16 13:08:40 +01002216 if ((sc->ps_flags & PS_WAIT_FOR_TX_ACK) && !txq->axq_depth) {
Sujith1b04b932010-01-08 10:36:05 +05302217 sc->ps_flags &= ~PS_WAIT_FOR_TX_ACK;
Joe Perchesd2182b62011-12-15 14:55:53 -08002218 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -08002219 "Going back to sleep after having received TX status (0x%lx)\n",
Sujith1b04b932010-01-08 10:36:05 +05302220 sc->ps_flags & (PS_WAIT_FOR_BEACON |
2221 PS_WAIT_FOR_CAB |
2222 PS_WAIT_FOR_PSPOLL_DATA |
2223 PS_WAIT_FOR_TX_ACK));
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03002224 }
Sujith Manoharan07c15a32012-06-04 20:24:07 +05302225 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03002226
Felix Fietkauf2c7a792013-06-07 18:12:00 +02002227 __skb_queue_tail(&txq->complete_q, skb);
2228
Felix Fietkau7545daf2011-01-24 19:23:16 +01002229 q = skb_get_queue_mapping(skb);
Felix Fietkauf2c7a792013-06-07 18:12:00 +02002230 if (txq == sc->tx.uapsdq)
2231 txq = sc->tx.txq_map[q];
2232
Felix Fietkau7545daf2011-01-24 19:23:16 +01002233 if (txq == sc->tx.txq_map[q]) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01002234 if (WARN_ON(--txq->pending_frames < 0))
2235 txq->pending_frames = 0;
Felix Fietkau92460412011-01-24 19:23:14 +01002236
Felix Fietkau7702e782012-07-15 19:53:35 +02002237 if (txq->stopped &&
2238 txq->pending_frames < sc->tx.txq_max_pending[q]) {
Felix Fietkau7545daf2011-01-24 19:23:16 +01002239 ieee80211_wake_queue(sc->hw, q);
Rusty Russell3db1cd52011-12-19 13:56:45 +00002240 txq->stopped = false;
Felix Fietkau066dae92010-11-07 14:59:39 +01002241 }
Felix Fietkau97923b12010-06-12 00:33:55 -04002242 }
Sujithe8324352009-01-16 21:38:42 +05302243}
2244
2245static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
Felix Fietkaudb1a0522010-03-29 20:07:11 -07002246 struct ath_txq *txq, struct list_head *bf_q,
Felix Fietkau156369f2011-12-14 22:08:04 +01002247 struct ath_tx_status *ts, int txok)
Sujithe8324352009-01-16 21:38:42 +05302248{
2249 struct sk_buff *skb = bf->bf_mpdu;
Felix Fietkau3afd21e2011-09-14 21:24:26 +02002250 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Sujithe8324352009-01-16 21:38:42 +05302251 unsigned long flags;
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05302252 int tx_flags = 0;
Sujithe8324352009-01-16 21:38:42 +05302253
Felix Fietkau55797b12011-09-14 21:24:16 +02002254 if (!txok)
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05302255 tx_flags |= ATH_TX_ERROR;
Sujithe8324352009-01-16 21:38:42 +05302256
Felix Fietkau3afd21e2011-09-14 21:24:26 +02002257 if (ts->ts_status & ATH9K_TXERR_FILT)
2258 tx_info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
2259
Ben Greearc1739eb32010-10-14 12:45:29 -07002260 dma_unmap_single(sc->dev, bf->bf_buf_addr, skb->len, DMA_TO_DEVICE);
Ben Greear6cf9e992010-10-14 12:45:30 -07002261 bf->bf_buf_addr = 0;
Felix Fietkau9f42c2b2010-06-12 00:34:01 -04002262
2263 if (bf->bf_state.bfs_paprd) {
Mohammed Shafi Shajakhan9cf04dc2011-02-04 18:38:23 +05302264 if (time_after(jiffies,
2265 bf->bf_state.bfs_paprd_timestamp +
2266 msecs_to_jiffies(ATH_PAPRD_TIMEOUT)))
Vasanthakumar Thiagarajanca369eb2010-06-24 02:42:44 -07002267 dev_kfree_skb_any(skb);
Vasanthakumar Thiagarajan78a18172010-06-24 02:42:46 -07002268 else
Vasanthakumar Thiagarajanca369eb2010-06-24 02:42:44 -07002269 complete(&sc->paprd_complete);
Felix Fietkau9f42c2b2010-06-12 00:34:01 -04002270 } else {
Felix Fietkau55797b12011-09-14 21:24:16 +02002271 ath_debug_stat_tx(sc, bf, ts, txq, tx_flags);
Rajkumar Manoharan0f9dc292011-07-29 17:38:14 +05302272 ath_tx_complete(sc, skb, tx_flags, txq);
Felix Fietkau9f42c2b2010-06-12 00:34:01 -04002273 }
Ben Greear6cf9e992010-10-14 12:45:30 -07002274 /* At this point, skb (bf->bf_mpdu) is consumed...make sure we don't
2275 * accidentally reference it later.
2276 */
2277 bf->bf_mpdu = NULL;
Sujithe8324352009-01-16 21:38:42 +05302278
2279 /*
2280 * Return the list of ath_buf of this mpdu to free queue
2281 */
2282 spin_lock_irqsave(&sc->tx.txbuflock, flags);
2283 list_splice_tail_init(bf_q, &sc->tx.txbuf);
2284 spin_unlock_irqrestore(&sc->tx.txbuflock, flags);
2285}
2286
Felix Fietkau0cdd5c62011-01-24 19:23:17 +01002287static void ath_tx_rc_status(struct ath_softc *sc, struct ath_buf *bf,
2288 struct ath_tx_status *ts, int nframes, int nbad,
Felix Fietkau3afd21e2011-09-14 21:24:26 +02002289 int txok)
Sujithc4288392008-11-18 09:09:30 +05302290{
Sujitha22be222009-03-30 15:28:36 +05302291 struct sk_buff *skb = bf->bf_mpdu;
Sujith254ad0f2009-02-04 08:10:19 +05302292 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Sujithc4288392008-11-18 09:09:30 +05302293 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Felix Fietkau0cdd5c62011-01-24 19:23:17 +01002294 struct ieee80211_hw *hw = sc->hw;
Felix Fietkauf0c255a2010-11-11 03:18:35 +01002295 struct ath_hw *ah = sc->sc_ah;
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05302296 u8 i, tx_rateindex;
Sujithc4288392008-11-18 09:09:30 +05302297
Sujith95e4acb2009-03-13 08:56:09 +05302298 if (txok)
Felix Fietkaudb1a0522010-03-29 20:07:11 -07002299 tx_info->status.ack_signal = ts->ts_rssi;
Sujith95e4acb2009-03-13 08:56:09 +05302300
Felix Fietkaudb1a0522010-03-29 20:07:11 -07002301 tx_rateindex = ts->ts_rateindex;
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05302302 WARN_ON(tx_rateindex >= hw->max_rates);
2303
Felix Fietkau3afd21e2011-09-14 21:24:26 +02002304 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
Felix Fietkaud9698472010-03-01 13:32:11 +01002305 tx_info->flags |= IEEE80211_TX_STAT_AMPDU;
Sujithc4288392008-11-18 09:09:30 +05302306
Felix Fietkaub572d032010-11-14 15:20:07 +01002307 BUG_ON(nbad > nframes);
Björn Smedmanebd02282010-10-10 22:44:39 +02002308 }
Rajkumar Manoharan185d1582011-09-26 21:48:39 +05302309 tx_info->status.ampdu_len = nframes;
2310 tx_info->status.ampdu_ack_len = nframes - nbad;
Björn Smedmanebd02282010-10-10 22:44:39 +02002311
Felix Fietkaudb1a0522010-03-29 20:07:11 -07002312 if ((ts->ts_status & ATH9K_TXERR_FILT) == 0 &&
Felix Fietkau3afd21e2011-09-14 21:24:26 +02002313 (tx_info->flags & IEEE80211_TX_CTL_NO_ACK) == 0) {
Felix Fietkauf0c255a2010-11-11 03:18:35 +01002314 /*
2315 * If an underrun error is seen assume it as an excessive
2316 * retry only if max frame trigger level has been reached
2317 * (2 KB for single stream, and 4 KB for dual stream).
2318 * Adjust the long retry as if the frame was tried
2319 * hw->max_rate_tries times to affect how rate control updates
2320 * PER for the failed rate.
2321 * In case of congestion on the bus penalizing this type of
2322 * underruns should help hardware actually transmit new frames
2323 * successfully by eventually preferring slower rates.
2324 * This itself should also alleviate congestion on the bus.
2325 */
Felix Fietkau3afd21e2011-09-14 21:24:26 +02002326 if (unlikely(ts->ts_flags & (ATH9K_TX_DATA_UNDERRUN |
2327 ATH9K_TX_DELIM_UNDERRUN)) &&
2328 ieee80211_is_data(hdr->frame_control) &&
Felix Fietkau83860c52011-03-23 20:57:33 +01002329 ah->tx_trig_level >= sc->sc_ah->config.max_txtrig_level)
Felix Fietkauf0c255a2010-11-11 03:18:35 +01002330 tx_info->status.rates[tx_rateindex].count =
2331 hw->max_rate_tries;
Sujithc4288392008-11-18 09:09:30 +05302332 }
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05302333
Felix Fietkau545750d2009-11-23 22:21:01 +01002334 for (i = tx_rateindex + 1; i < hw->max_rates; i++) {
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05302335 tx_info->status.rates[i].count = 0;
Felix Fietkau545750d2009-11-23 22:21:01 +01002336 tx_info->status.rates[i].idx = -1;
2337 }
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05302338
Felix Fietkau78c46532010-06-25 01:26:16 +02002339 tx_info->status.rates[tx_rateindex].count = ts->ts_longretry + 1;
Sujithc4288392008-11-18 09:09:30 +05302340}
2341
Sujithc4288392008-11-18 09:09:30 +05302342static void ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002343{
Sujithcbe61d82009-02-09 13:27:12 +05302344 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002345 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002346 struct ath_buf *bf, *lastbf, *bf_held = NULL;
2347 struct list_head bf_head;
Sujithc4288392008-11-18 09:09:30 +05302348 struct ath_desc *ds;
Felix Fietkau29bffa92010-03-29 20:14:23 -07002349 struct ath_tx_status ts;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002350 int status;
2351
Joe Perchesd2182b62011-12-15 14:55:53 -08002352 ath_dbg(common, QUEUE, "tx queue %d (%x), link %p\n",
Joe Perches226afe62010-12-02 19:12:37 -08002353 txq->axq_qnum, ath9k_hw_gettxbuf(sc->sc_ah, txq->axq_qnum),
2354 txq->axq_link);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002355
Felix Fietkau23de5dc2011-12-19 16:45:54 +01002356 ath_txq_lock(sc, txq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002357 for (;;) {
Rajkumar Manoharan124b9792012-07-17 17:16:42 +05302358 if (test_bit(SC_OP_HW_RESET, &sc->sc_flags))
Felix Fietkau236de512011-09-03 01:40:25 +02002359 break;
2360
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002361 if (list_empty(&txq->axq_q)) {
2362 txq->axq_link = NULL;
Sujith Manoharan3d4e20f2012-03-14 14:40:58 +05302363 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT)
Ben Greear082f6532011-01-09 23:11:47 -08002364 ath_txq_schedule(sc, txq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002365 break;
2366 }
2367 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
2368
2369 /*
2370 * There is a race condition that a BH gets scheduled
2371 * after sw writes TxE and before hw re-load the last
2372 * descriptor to get the newly chained one.
2373 * Software must keep the last DONE descriptor as a
2374 * holding descriptor - software does so by marking
2375 * it with the STALE flag.
2376 */
2377 bf_held = NULL;
Sujitha119cc42009-03-30 15:28:38 +05302378 if (bf->bf_stale) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002379 bf_held = bf;
Felix Fietkaufce041b2011-05-19 12:20:25 +02002380 if (list_is_last(&bf_held->list, &txq->axq_q))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002381 break;
Felix Fietkaufce041b2011-05-19 12:20:25 +02002382
2383 bf = list_entry(bf_held->list.next, struct ath_buf,
2384 list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002385 }
2386
2387 lastbf = bf->bf_lastbf;
Sujithe8324352009-01-16 21:38:42 +05302388 ds = lastbf->bf_desc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002389
Felix Fietkau29bffa92010-03-29 20:14:23 -07002390 memset(&ts, 0, sizeof(ts));
2391 status = ath9k_hw_txprocdesc(ah, ds, &ts);
Felix Fietkaufce041b2011-05-19 12:20:25 +02002392 if (status == -EINPROGRESS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002393 break;
Felix Fietkaufce041b2011-05-19 12:20:25 +02002394
Ben Greear2dac4fb2011-01-09 23:11:45 -08002395 TX_STAT_INC(txq->axq_qnum, txprocdesc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002396
2397 /*
2398 * Remove ath_buf's of the same transmit unit from txq,
2399 * however leave the last descriptor back as the holding
2400 * descriptor for hw.
2401 */
Sujitha119cc42009-03-30 15:28:38 +05302402 lastbf->bf_stale = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002403 INIT_LIST_HEAD(&bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002404 if (!list_is_singular(&lastbf->list))
2405 list_cut_position(&bf_head,
2406 &txq->axq_q, lastbf->list.prev);
2407
Felix Fietkaufce041b2011-05-19 12:20:25 +02002408 if (bf_held) {
Felix Fietkau0a8cea82010-04-19 19:57:30 +02002409 list_del(&bf_held->list);
Felix Fietkau0a8cea82010-04-19 19:57:30 +02002410 ath_tx_return_buffer(sc, bf_held);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411 }
Johannes Berge6a98542008-10-21 12:40:02 +02002412
Felix Fietkaufce041b2011-05-19 12:20:25 +02002413 ath_tx_process_buffer(sc, txq, &ts, bf, &bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002414 }
Felix Fietkau23de5dc2011-12-19 16:45:54 +01002415 ath_txq_unlock_complete(sc, txq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002416}
2417
Sujithe8324352009-01-16 21:38:42 +05302418void ath_tx_tasklet(struct ath_softc *sc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002419{
Felix Fietkau239c7952012-03-14 16:40:26 +01002420 struct ath_hw *ah = sc->sc_ah;
2421 u32 qcumask = ((1 << ATH9K_NUM_TX_QUEUES) - 1) & ah->intr_txqs;
Sujithe8324352009-01-16 21:38:42 +05302422 int i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002423
2424 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
Sujithe8324352009-01-16 21:38:42 +05302425 if (ATH_TXQ_SETUP(sc, i) && (qcumask & (1 << i)))
2426 ath_tx_processq(sc, &sc->tx.txq[i]);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002427 }
2428}
2429
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002430void ath_tx_edma_tasklet(struct ath_softc *sc)
2431{
Felix Fietkaufce041b2011-05-19 12:20:25 +02002432 struct ath_tx_status ts;
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002433 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
2434 struct ath_hw *ah = sc->sc_ah;
2435 struct ath_txq *txq;
2436 struct ath_buf *bf, *lastbf;
2437 struct list_head bf_head;
Felix Fietkau99ba6a42013-04-08 00:04:13 +02002438 struct list_head *fifo_list;
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002439 int status;
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002440
2441 for (;;) {
Rajkumar Manoharan124b9792012-07-17 17:16:42 +05302442 if (test_bit(SC_OP_HW_RESET, &sc->sc_flags))
Felix Fietkau236de512011-09-03 01:40:25 +02002443 break;
2444
Felix Fietkaufce041b2011-05-19 12:20:25 +02002445 status = ath9k_hw_txprocdesc(ah, NULL, (void *)&ts);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002446 if (status == -EINPROGRESS)
2447 break;
2448 if (status == -EIO) {
Joe Perchesd2182b62011-12-15 14:55:53 -08002449 ath_dbg(common, XMIT, "Error processing tx status\n");
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002450 break;
2451 }
2452
Felix Fietkau4e0ad252012-02-27 19:58:42 +01002453 /* Process beacon completions separately */
2454 if (ts.qid == sc->beacon.beaconq) {
2455 sc->beacon.tx_processed = true;
2456 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002457 continue;
Felix Fietkau4e0ad252012-02-27 19:58:42 +01002458 }
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002459
Felix Fietkaufce041b2011-05-19 12:20:25 +02002460 txq = &sc->tx.txq[ts.qid];
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002461
Felix Fietkau23de5dc2011-12-19 16:45:54 +01002462 ath_txq_lock(sc, txq);
Felix Fietkaufce041b2011-05-19 12:20:25 +02002463
Sujith Manoharan78ef7312012-11-21 18:13:11 +05302464 TX_STAT_INC(txq->axq_qnum, txprocdesc);
2465
Felix Fietkau99ba6a42013-04-08 00:04:13 +02002466 fifo_list = &txq->txq_fifo[txq->txq_tailidx];
2467 if (list_empty(fifo_list)) {
Felix Fietkau23de5dc2011-12-19 16:45:54 +01002468 ath_txq_unlock(sc, txq);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002469 return;
2470 }
2471
Felix Fietkau99ba6a42013-04-08 00:04:13 +02002472 bf = list_first_entry(fifo_list, struct ath_buf, list);
2473 if (bf->bf_stale) {
2474 list_del(&bf->list);
2475 ath_tx_return_buffer(sc, bf);
2476 bf = list_first_entry(fifo_list, struct ath_buf, list);
2477 }
2478
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002479 lastbf = bf->bf_lastbf;
2480
2481 INIT_LIST_HEAD(&bf_head);
Felix Fietkau99ba6a42013-04-08 00:04:13 +02002482 if (list_is_last(&lastbf->list, fifo_list)) {
2483 list_splice_tail_init(fifo_list, &bf_head);
Felix Fietkaufce041b2011-05-19 12:20:25 +02002484 INCR(txq->txq_tailidx, ATH_TXFIFO_DEPTH);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002485
Felix Fietkaufce041b2011-05-19 12:20:25 +02002486 if (!list_empty(&txq->axq_q)) {
2487 struct list_head bf_q;
2488
2489 INIT_LIST_HEAD(&bf_q);
2490 txq->axq_link = NULL;
2491 list_splice_tail_init(&txq->axq_q, &bf_q);
2492 ath_tx_txqaddbuf(sc, txq, &bf_q, true);
2493 }
Felix Fietkau99ba6a42013-04-08 00:04:13 +02002494 } else {
2495 lastbf->bf_stale = true;
2496 if (bf != lastbf)
2497 list_cut_position(&bf_head, fifo_list,
2498 lastbf->list.prev);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002499 }
2500
Felix Fietkaufce041b2011-05-19 12:20:25 +02002501 ath_tx_process_buffer(sc, txq, &ts, bf, &bf_head);
Felix Fietkau23de5dc2011-12-19 16:45:54 +01002502 ath_txq_unlock_complete(sc, txq);
Vasanthakumar Thiagarajane5003242010-04-15 17:39:36 -04002503 }
2504}
2505
Sujithe8324352009-01-16 21:38:42 +05302506/*****************/
2507/* Init, Cleanup */
2508/*****************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002509
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002510static int ath_txstatus_setup(struct ath_softc *sc, int size)
2511{
2512 struct ath_descdma *dd = &sc->txsdma;
2513 u8 txs_len = sc->sc_ah->caps.txs_len;
2514
2515 dd->dd_desc_len = size * txs_len;
Felix Fietkaub81950b12012-12-12 13:14:22 +01002516 dd->dd_desc = dmam_alloc_coherent(sc->dev, dd->dd_desc_len,
2517 &dd->dd_desc_paddr, GFP_KERNEL);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002518 if (!dd->dd_desc)
2519 return -ENOMEM;
2520
2521 return 0;
2522}
2523
2524static int ath_tx_edma_init(struct ath_softc *sc)
2525{
2526 int err;
2527
2528 err = ath_txstatus_setup(sc, ATH_TXSTATUS_RING_SIZE);
2529 if (!err)
2530 ath9k_hw_setup_statusring(sc->sc_ah, sc->txsdma.dd_desc,
2531 sc->txsdma.dd_desc_paddr,
2532 ATH_TXSTATUS_RING_SIZE);
2533
2534 return err;
2535}
2536
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002537int ath_tx_init(struct ath_softc *sc, int nbufs)
2538{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002539 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002540 int error = 0;
2541
Sujith797fe5cb2009-03-30 15:28:45 +05302542 spin_lock_init(&sc->tx.txbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002543
Sujith797fe5cb2009-03-30 15:28:45 +05302544 error = ath_descdma_setup(sc, &sc->tx.txdma, &sc->tx.txbuf,
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -04002545 "tx", nbufs, 1, 1);
Sujith797fe5cb2009-03-30 15:28:45 +05302546 if (error != 0) {
Joe Perches38002762010-12-02 19:12:36 -08002547 ath_err(common,
2548 "Failed to allocate tx descriptors: %d\n", error);
Felix Fietkaub81950b12012-12-12 13:14:22 +01002549 return error;
Sujith797fe5cb2009-03-30 15:28:45 +05302550 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002551
Sujith797fe5cb2009-03-30 15:28:45 +05302552 error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf,
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002553 "beacon", ATH_BCBUF, 1, 1);
Sujith797fe5cb2009-03-30 15:28:45 +05302554 if (error != 0) {
Joe Perches38002762010-12-02 19:12:36 -08002555 ath_err(common,
2556 "Failed to allocate beacon descriptors: %d\n", error);
Felix Fietkaub81950b12012-12-12 13:14:22 +01002557 return error;
Sujith797fe5cb2009-03-30 15:28:45 +05302558 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002559
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002560 INIT_DELAYED_WORK(&sc->tx_complete_work, ath_tx_complete_poll_work);
2561
Felix Fietkaub81950b12012-12-12 13:14:22 +01002562 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002563 error = ath_tx_edma_init(sc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002564
2565 return error;
2566}
2567
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002568void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an)
2569{
Sujithc5170162008-10-29 10:13:59 +05302570 struct ath_atx_tid *tid;
2571 struct ath_atx_ac *ac;
2572 int tidno, acno;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002573
Sujith8ee5afb2008-12-07 21:43:36 +05302574 for (tidno = 0, tid = &an->tid[tidno];
Sujith Manoharande7b7602012-11-28 15:08:53 +05302575 tidno < IEEE80211_NUM_TIDS;
Sujithc5170162008-10-29 10:13:59 +05302576 tidno++, tid++) {
2577 tid->an = an;
2578 tid->tidno = tidno;
2579 tid->seq_start = tid->seq_next = 0;
2580 tid->baw_size = WME_MAX_BA;
2581 tid->baw_head = tid->baw_tail = 0;
2582 tid->sched = false;
Sujithe8324352009-01-16 21:38:42 +05302583 tid->paused = false;
Felix Fietkau08c96ab2013-05-18 21:28:15 +02002584 tid->active = false;
Felix Fietkau56dc6332011-08-28 00:32:22 +02002585 __skb_queue_head_init(&tid->buf_q);
Sujithc5170162008-10-29 10:13:59 +05302586 acno = TID_TO_WME_AC(tidno);
Sujith8ee5afb2008-12-07 21:43:36 +05302587 tid->ac = &an->ac[acno];
Sujithc5170162008-10-29 10:13:59 +05302588 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002589
Sujith8ee5afb2008-12-07 21:43:36 +05302590 for (acno = 0, ac = &an->ac[acno];
Sujith Manoharanbea843c2012-11-21 18:13:10 +05302591 acno < IEEE80211_NUM_ACS; acno++, ac++) {
Sujithc5170162008-10-29 10:13:59 +05302592 ac->sched = false;
Felix Fietkau066dae92010-11-07 14:59:39 +01002593 ac->txq = sc->tx.txq_map[acno];
Sujithc5170162008-10-29 10:13:59 +05302594 INIT_LIST_HEAD(&ac->tid_q);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002595 }
2596}
2597
Sujithb5aa9bf2008-10-29 10:13:31 +05302598void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002599{
Felix Fietkau2b409942010-07-07 19:42:08 +02002600 struct ath_atx_ac *ac;
2601 struct ath_atx_tid *tid;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002602 struct ath_txq *txq;
Felix Fietkau066dae92010-11-07 14:59:39 +01002603 int tidno;
Sujithe8324352009-01-16 21:38:42 +05302604
Felix Fietkau2b409942010-07-07 19:42:08 +02002605 for (tidno = 0, tid = &an->tid[tidno];
Sujith Manoharande7b7602012-11-28 15:08:53 +05302606 tidno < IEEE80211_NUM_TIDS; tidno++, tid++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002607
Felix Fietkau2b409942010-07-07 19:42:08 +02002608 ac = tid->ac;
Felix Fietkau066dae92010-11-07 14:59:39 +01002609 txq = ac->txq;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002610
Felix Fietkau23de5dc2011-12-19 16:45:54 +01002611 ath_txq_lock(sc, txq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002612
Felix Fietkau2b409942010-07-07 19:42:08 +02002613 if (tid->sched) {
2614 list_del(&tid->list);
2615 tid->sched = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002616 }
Felix Fietkau2b409942010-07-07 19:42:08 +02002617
2618 if (ac->sched) {
2619 list_del(&ac->list);
2620 tid->ac->sched = false;
2621 }
2622
2623 ath_tid_drain(sc, txq, tid);
Felix Fietkau08c96ab2013-05-18 21:28:15 +02002624 tid->active = false;
Felix Fietkau2b409942010-07-07 19:42:08 +02002625
Felix Fietkau23de5dc2011-12-19 16:45:54 +01002626 ath_txq_unlock(sc, txq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002627 }
2628}