blob: 4c9a03ed8382e7f5592e25aebd05915fe1f5eea3 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
2 * Copyright (c) 2008 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070017#include "core.h"
18
19#define BITS_PER_BYTE 8
20#define OFDM_PLCP_BITS 22
21#define HT_RC_2_MCS(_rc) ((_rc) & 0x0f)
22#define HT_RC_2_STREAMS(_rc) ((((_rc) & 0x78) >> 3) + 1)
23#define L_STF 8
24#define L_LTF 8
25#define L_SIG 4
26#define HT_SIG 8
27#define HT_STF 4
28#define HT_LTF(_ns) (4 * (_ns))
29#define SYMBOL_TIME(_ns) ((_ns) << 2) /* ns * 4 us */
30#define SYMBOL_TIME_HALFGI(_ns) (((_ns) * 18 + 4) / 5) /* ns * 3.6 us */
31#define NUM_SYMBOLS_PER_USEC(_usec) (_usec >> 2)
32#define NUM_SYMBOLS_PER_USEC_HALFGI(_usec) (((_usec*5)-4)/18)
33
34#define OFDM_SIFS_TIME 16
35
36static u32 bits_per_symbol[][2] = {
37 /* 20MHz 40MHz */
38 { 26, 54 }, /* 0: BPSK */
39 { 52, 108 }, /* 1: QPSK 1/2 */
40 { 78, 162 }, /* 2: QPSK 3/4 */
41 { 104, 216 }, /* 3: 16-QAM 1/2 */
42 { 156, 324 }, /* 4: 16-QAM 3/4 */
43 { 208, 432 }, /* 5: 64-QAM 2/3 */
44 { 234, 486 }, /* 6: 64-QAM 3/4 */
45 { 260, 540 }, /* 7: 64-QAM 5/6 */
46 { 52, 108 }, /* 8: BPSK */
47 { 104, 216 }, /* 9: QPSK 1/2 */
48 { 156, 324 }, /* 10: QPSK 3/4 */
49 { 208, 432 }, /* 11: 16-QAM 1/2 */
50 { 312, 648 }, /* 12: 16-QAM 3/4 */
51 { 416, 864 }, /* 13: 64-QAM 2/3 */
52 { 468, 972 }, /* 14: 64-QAM 3/4 */
53 { 520, 1080 }, /* 15: 64-QAM 5/6 */
54};
55
56#define IS_HT_RATE(_rate) ((_rate) & 0x80)
57
58/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070059 * Insert a chain of ath_buf (descriptors) on a txq and
60 * assume the descriptors are already chained together by caller.
61 * NB: must be called with txq lock held
62 */
63
Sujith102e0572008-10-29 10:15:16 +053064static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
65 struct list_head *head)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070066{
67 struct ath_hal *ah = sc->sc_ah;
68 struct ath_buf *bf;
Sujith102e0572008-10-29 10:15:16 +053069
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070070 /*
71 * Insert the frame on the outbound list and
72 * pass it on to the hardware.
73 */
74
75 if (list_empty(head))
76 return;
77
78 bf = list_first_entry(head, struct ath_buf, list);
79
80 list_splice_tail_init(head, &txq->axq_q);
81 txq->axq_depth++;
82 txq->axq_totalqueued++;
83 txq->axq_linkbuf = list_entry(txq->axq_q.prev, struct ath_buf, list);
84
85 DPRINTF(sc, ATH_DBG_QUEUE,
86 "%s: txq depth = %d\n", __func__, txq->axq_depth);
87
88 if (txq->axq_link == NULL) {
89 ath9k_hw_puttxbuf(ah, txq->axq_qnum, bf->bf_daddr);
90 DPRINTF(sc, ATH_DBG_XMIT,
91 "%s: TXDP[%u] = %llx (%p)\n",
92 __func__, txq->axq_qnum,
93 ito64(bf->bf_daddr), bf->bf_desc);
94 } else {
95 *txq->axq_link = bf->bf_daddr;
96 DPRINTF(sc, ATH_DBG_XMIT, "%s: link[%u] (%p)=%llx (%p)\n",
97 __func__,
98 txq->axq_qnum, txq->axq_link,
99 ito64(bf->bf_daddr), bf->bf_desc);
100 }
101 txq->axq_link = &(bf->bf_lastbf->bf_desc->ds_link);
102 ath9k_hw_txstart(ah, txq->axq_qnum);
103}
104
Sujithc4288392008-11-18 09:09:30 +0530105static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
106 struct ath_xmit_status *tx_status)
107{
108 struct ieee80211_hw *hw = sc->hw;
109 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
110 struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
111
112 DPRINTF(sc, ATH_DBG_XMIT,
113 "%s: TX complete: skb: %p\n", __func__, skb);
114
115 if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK ||
116 tx_info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
117 kfree(tx_info_priv);
118 tx_info->rate_driver_data[0] = NULL;
119 }
120
121 if (tx_status->flags & ATH_TX_BAR) {
122 tx_info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
123 tx_status->flags &= ~ATH_TX_BAR;
124 }
125
126 if (!(tx_status->flags & (ATH_TX_ERROR | ATH_TX_XRETRY))) {
127 /* Frame was ACKed */
128 tx_info->flags |= IEEE80211_TX_STAT_ACK;
129 }
130
131 tx_info->status.rates[0].count = tx_status->retries + 1;
132
133 ieee80211_tx_status(hw, skb);
134}
135
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700136/* Check if it's okay to send out aggregates */
137
Sujitha37c2c72008-10-29 10:15:40 +0530138static int ath_aggr_query(struct ath_softc *sc, struct ath_node *an, u8 tidno)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700139{
140 struct ath_atx_tid *tid;
141 tid = ATH_AN_2_TID(an, tidno);
142
Sujitha37c2c72008-10-29 10:15:40 +0530143 if (tid->state & AGGR_ADDBA_COMPLETE ||
144 tid->state & AGGR_ADDBA_PROGRESS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700145 return 1;
146 else
147 return 0;
148}
149
Sujith528f0c62008-10-29 10:14:26 +0530150/* Calculate Atheros packet type from IEEE80211 packet header */
151
152static enum ath9k_pkt_type get_hw_packet_type(struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700153{
Sujith528f0c62008-10-29 10:14:26 +0530154 struct ieee80211_hdr *hdr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700155 enum ath9k_pkt_type htype;
156 __le16 fc;
157
Sujith528f0c62008-10-29 10:14:26 +0530158 hdr = (struct ieee80211_hdr *)skb->data;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700159 fc = hdr->frame_control;
160
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700161 if (ieee80211_is_beacon(fc))
162 htype = ATH9K_PKT_TYPE_BEACON;
163 else if (ieee80211_is_probe_resp(fc))
164 htype = ATH9K_PKT_TYPE_PROBE_RESP;
165 else if (ieee80211_is_atim(fc))
166 htype = ATH9K_PKT_TYPE_ATIM;
167 else if (ieee80211_is_pspoll(fc))
168 htype = ATH9K_PKT_TYPE_PSPOLL;
169 else
170 htype = ATH9K_PKT_TYPE_NORMAL;
171
172 return htype;
173}
174
Sujitha8efee42008-11-18 09:07:30 +0530175static bool is_pae(struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700176{
177 struct ieee80211_hdr *hdr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700178 __le16 fc;
179
180 hdr = (struct ieee80211_hdr *)skb->data;
181 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +0200182
Sujitha8efee42008-11-18 09:07:30 +0530183 if (ieee80211_is_data(fc)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700184 if (ieee80211_is_nullfunc(fc) ||
Sujith528f0c62008-10-29 10:14:26 +0530185 /* Port Access Entity (IEEE 802.1X) */
186 (skb->protocol == cpu_to_be16(ETH_P_PAE))) {
Sujitha8efee42008-11-18 09:07:30 +0530187 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700188 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700189 }
190
Sujitha8efee42008-11-18 09:07:30 +0530191 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700192}
193
Sujith528f0c62008-10-29 10:14:26 +0530194static int get_hw_crypto_keytype(struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700195{
Sujith528f0c62008-10-29 10:14:26 +0530196 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
197
198 if (tx_info->control.hw_key) {
199 if (tx_info->control.hw_key->alg == ALG_WEP)
200 return ATH9K_KEY_TYPE_WEP;
201 else if (tx_info->control.hw_key->alg == ALG_TKIP)
202 return ATH9K_KEY_TYPE_TKIP;
203 else if (tx_info->control.hw_key->alg == ALG_CCMP)
204 return ATH9K_KEY_TYPE_AES;
205 }
206
207 return ATH9K_KEY_TYPE_CLEAR;
208}
209
Sujith528f0c62008-10-29 10:14:26 +0530210/* Called only when tx aggregation is enabled and HT is supported */
211
212static void assign_aggr_tid_seqno(struct sk_buff *skb,
213 struct ath_buf *bf)
214{
215 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
216 struct ieee80211_hdr *hdr;
217 struct ath_node *an;
218 struct ath_atx_tid *tid;
219 __le16 fc;
220 u8 *qc;
221
222 if (!tx_info->control.sta)
223 return;
224
225 an = (struct ath_node *)tx_info->control.sta->drv_priv;
226 hdr = (struct ieee80211_hdr *)skb->data;
227 fc = hdr->frame_control;
228
229 /* Get tidno */
230
231 if (ieee80211_is_data_qos(fc)) {
232 qc = ieee80211_get_qos_ctl(hdr);
233 bf->bf_tidno = qc[0] & 0xf;
Sujith98deeea2008-08-11 14:05:46 +0530234 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700235
Sujith528f0c62008-10-29 10:14:26 +0530236 /* Get seqno */
237
Sujitha8efee42008-11-18 09:07:30 +0530238 if (ieee80211_is_data(fc) && !is_pae(skb)) {
Sujith528f0c62008-10-29 10:14:26 +0530239 /* For HT capable stations, we save tidno for later use.
240 * We also override seqno set by upper layer with the one
241 * in tx aggregation state.
242 *
243 * If fragmentation is on, the sequence number is
244 * not overridden, since it has been
245 * incremented by the fragmentation routine.
246 *
247 * FIXME: check if the fragmentation threshold exceeds
248 * IEEE80211 max.
249 */
250 tid = ATH_AN_2_TID(an, bf->bf_tidno);
251 hdr->seq_ctrl = cpu_to_le16(tid->seq_next <<
252 IEEE80211_SEQ_SEQ_SHIFT);
253 bf->bf_seqno = tid->seq_next;
254 INCR(tid->seq_next, IEEE80211_SEQ_MAX);
255 }
256}
257
258static int setup_tx_flags(struct ath_softc *sc, struct sk_buff *skb,
259 struct ath_txq *txq)
260{
261 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
262 int flags = 0;
263
264 flags |= ATH9K_TXDESC_CLRDMASK; /* needed for crypto errors */
265 flags |= ATH9K_TXDESC_INTREQ;
266
267 if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK)
268 flags |= ATH9K_TXDESC_NOACK;
269 if (tx_info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
270 flags |= ATH9K_TXDESC_RTSENA;
271
272 return flags;
273}
274
275static struct ath_buf *ath_tx_get_buffer(struct ath_softc *sc)
276{
277 struct ath_buf *bf = NULL;
278
279 spin_lock_bh(&sc->sc_txbuflock);
280
281 if (unlikely(list_empty(&sc->sc_txbuf))) {
282 spin_unlock_bh(&sc->sc_txbuflock);
283 return NULL;
284 }
285
286 bf = list_first_entry(&sc->sc_txbuf, struct ath_buf, list);
287 list_del(&bf->list);
288
289 spin_unlock_bh(&sc->sc_txbuflock);
290
291 return bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700292}
293
294/* To complete a chain of buffers associated a frame */
295
296static void ath_tx_complete_buf(struct ath_softc *sc,
297 struct ath_buf *bf,
298 struct list_head *bf_q,
299 int txok, int sendbar)
300{
301 struct sk_buff *skb = bf->bf_mpdu;
302 struct ath_xmit_status tx_status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700303
304 /*
305 * Set retry information.
306 * NB: Don't use the information in the descriptor, because the frame
307 * could be software retried.
308 */
309 tx_status.retries = bf->bf_retries;
310 tx_status.flags = 0;
311
312 if (sendbar)
313 tx_status.flags = ATH_TX_BAR;
314
315 if (!txok) {
316 tx_status.flags |= ATH_TX_ERROR;
317
Sujithcd3d39a2008-08-11 14:03:34 +0530318 if (bf_isxretried(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700319 tx_status.flags |= ATH_TX_XRETRY;
320 }
Sujith102e0572008-10-29 10:15:16 +0530321
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700322 /* Unmap this frame */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700323 pci_unmap_single(sc->pdev,
Sujithff9b6622008-08-14 13:27:16 +0530324 bf->bf_dmacontext,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700325 skb->len,
326 PCI_DMA_TODEVICE);
327 /* complete this frame */
Sujith528f0c62008-10-29 10:14:26 +0530328 ath_tx_complete(sc, skb, &tx_status);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700329
330 /*
331 * Return the list of ath_buf of this mpdu to free queue
332 */
333 spin_lock_bh(&sc->sc_txbuflock);
334 list_splice_tail_init(bf_q, &sc->sc_txbuf);
335 spin_unlock_bh(&sc->sc_txbuflock);
336}
337
338/*
339 * queue up a dest/ac pair for tx scheduling
340 * NB: must be called with txq lock held
341 */
342
343static void ath_tx_queue_tid(struct ath_txq *txq, struct ath_atx_tid *tid)
344{
345 struct ath_atx_ac *ac = tid->ac;
346
347 /*
348 * if tid is paused, hold off
349 */
350 if (tid->paused)
351 return;
352
353 /*
354 * add tid to ac atmost once
355 */
356 if (tid->sched)
357 return;
358
359 tid->sched = true;
360 list_add_tail(&tid->list, &ac->tid_q);
361
362 /*
363 * add node ac to txq atmost once
364 */
365 if (ac->sched)
366 return;
367
368 ac->sched = true;
369 list_add_tail(&ac->list, &txq->axq_acq);
370}
371
372/* pause a tid */
373
374static void ath_tx_pause_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
375{
376 struct ath_txq *txq = &sc->sc_txq[tid->ac->qnum];
377
378 spin_lock_bh(&txq->axq_lock);
379
380 tid->paused++;
381
382 spin_unlock_bh(&txq->axq_lock);
383}
384
385/* resume a tid and schedule aggregate */
386
387void ath_tx_resume_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
388{
389 struct ath_txq *txq = &sc->sc_txq[tid->ac->qnum];
390
391 ASSERT(tid->paused > 0);
392 spin_lock_bh(&txq->axq_lock);
393
394 tid->paused--;
395
396 if (tid->paused > 0)
397 goto unlock;
398
399 if (list_empty(&tid->buf_q))
400 goto unlock;
401
402 /*
403 * Add this TID to scheduler and try to send out aggregates
404 */
405 ath_tx_queue_tid(txq, tid);
406 ath_txq_schedule(sc, txq);
407unlock:
408 spin_unlock_bh(&txq->axq_lock);
409}
410
411/* Compute the number of bad frames */
412
Sujithb5aa9bf2008-10-29 10:13:31 +0530413static int ath_tx_num_badfrms(struct ath_softc *sc, struct ath_buf *bf,
414 int txok)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700415{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700416 struct ath_buf *bf_last = bf->bf_lastbf;
417 struct ath_desc *ds = bf_last->bf_desc;
418 u16 seq_st = 0;
419 u32 ba[WME_BA_BMP_SIZE >> 5];
420 int ba_index;
421 int nbad = 0;
422 int isaggr = 0;
423
Sujithb5aa9bf2008-10-29 10:13:31 +0530424 if (ds->ds_txstat.ts_flags == ATH9K_TX_SW_ABORTED)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700425 return 0;
426
Sujithcd3d39a2008-08-11 14:03:34 +0530427 isaggr = bf_isaggr(bf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700428 if (isaggr) {
429 seq_st = ATH_DS_BA_SEQ(ds);
430 memcpy(ba, ATH_DS_BA_BITMAP(ds), WME_BA_BMP_SIZE >> 3);
431 }
432
433 while (bf) {
434 ba_index = ATH_BA_INDEX(seq_st, bf->bf_seqno);
435 if (!txok || (isaggr && !ATH_BA_ISSET(ba, ba_index)))
436 nbad++;
437
438 bf = bf->bf_next;
439 }
440
441 return nbad;
442}
443
444static void ath_tx_set_retry(struct ath_softc *sc, struct ath_buf *bf)
445{
446 struct sk_buff *skb;
447 struct ieee80211_hdr *hdr;
448
Sujithcd3d39a2008-08-11 14:03:34 +0530449 bf->bf_state.bf_type |= BUF_RETRY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450 bf->bf_retries++;
451
452 skb = bf->bf_mpdu;
453 hdr = (struct ieee80211_hdr *)skb->data;
454 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_RETRY);
455}
456
457/* Update block ack window */
458
Sujith102e0572008-10-29 10:15:16 +0530459static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
460 int seqno)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461{
462 int index, cindex;
463
464 index = ATH_BA_INDEX(tid->seq_start, seqno);
465 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
466
467 tid->tx_buf[cindex] = NULL;
468
469 while (tid->baw_head != tid->baw_tail && !tid->tx_buf[tid->baw_head]) {
470 INCR(tid->seq_start, IEEE80211_SEQ_MAX);
471 INCR(tid->baw_head, ATH_TID_MAX_BUFS);
472 }
473}
474
475/*
476 * ath_pkt_dur - compute packet duration (NB: not NAV)
477 *
478 * rix - rate index
479 * pktlen - total bytes (delims + data + fcs + pads + pad delims)
480 * width - 0 for 20 MHz, 1 for 40 MHz
481 * half_gi - to use 4us v/s 3.6 us for symbol time
482 */
Sujith102e0572008-10-29 10:15:16 +0530483static u32 ath_pkt_duration(struct ath_softc *sc, u8 rix, struct ath_buf *bf,
484 int width, int half_gi, bool shortPreamble)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700485{
Sujithe63835b2008-11-18 09:07:53 +0530486 struct ath_rate_table *rate_table = sc->hw_rate_table[sc->sc_curmode];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700487 u32 nbits, nsymbits, duration, nsymbols;
488 u8 rc;
489 int streams, pktlen;
490
Sujithcd3d39a2008-08-11 14:03:34 +0530491 pktlen = bf_isaggr(bf) ? bf->bf_al : bf->bf_frmlen;
Sujithe63835b2008-11-18 09:07:53 +0530492 rc = rate_table->info[rix].ratecode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700493
Sujithe63835b2008-11-18 09:07:53 +0530494 /* for legacy rates, use old function to compute packet duration */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495 if (!IS_HT_RATE(rc))
Sujithe63835b2008-11-18 09:07:53 +0530496 return ath9k_hw_computetxtime(sc->sc_ah, rate_table, pktlen,
497 rix, shortPreamble);
498
499 /* find number of symbols: PLCP + data */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700500 nbits = (pktlen << 3) + OFDM_PLCP_BITS;
501 nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
502 nsymbols = (nbits + nsymbits - 1) / nsymbits;
503
504 if (!half_gi)
505 duration = SYMBOL_TIME(nsymbols);
506 else
507 duration = SYMBOL_TIME_HALFGI(nsymbols);
508
Sujithe63835b2008-11-18 09:07:53 +0530509 /* addup duration for legacy/ht training and signal fields */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700510 streams = HT_RC_2_STREAMS(rc);
511 duration += L_STF + L_LTF + L_SIG + HT_SIG + HT_STF + HT_LTF(streams);
Sujith102e0572008-10-29 10:15:16 +0530512
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700513 return duration;
514}
515
516/* Rate module function to set rate related fields in tx descriptor */
517
518static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf)
519{
520 struct ath_hal *ah = sc->sc_ah;
Sujithe63835b2008-11-18 09:07:53 +0530521 struct ath_rate_table *rt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700522 struct ath_desc *ds = bf->bf_desc;
523 struct ath_desc *lastds = bf->bf_lastbf->bf_desc;
524 struct ath9k_11n_rate_series series[4];
Sujith528f0c62008-10-29 10:14:26 +0530525 struct ath_node *an = NULL;
526 struct sk_buff *skb;
527 struct ieee80211_tx_info *tx_info;
Sujitha8efee42008-11-18 09:07:30 +0530528 struct ieee80211_tx_rate *rates;
Sujithe63835b2008-11-18 09:07:53 +0530529 struct ieee80211_hdr *hdr;
530 int i, flags, rtsctsena = 0;
531 u32 ctsduration = 0;
532 u8 rix = 0, cix, ctsrate = 0;
533 __le16 fc;
534
535 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
Sujith528f0c62008-10-29 10:14:26 +0530536
537 skb = (struct sk_buff *)bf->bf_mpdu;
Sujithe63835b2008-11-18 09:07:53 +0530538 hdr = (struct ieee80211_hdr *)skb->data;
539 fc = hdr->frame_control;
Sujith528f0c62008-10-29 10:14:26 +0530540 tx_info = IEEE80211_SKB_CB(skb);
Sujithe63835b2008-11-18 09:07:53 +0530541 rates = tx_info->control.rates;
Sujith528f0c62008-10-29 10:14:26 +0530542
543 if (tx_info->control.sta)
544 an = (struct ath_node *)tx_info->control.sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700545
Sujithe63835b2008-11-18 09:07:53 +0530546 if (ieee80211_has_morefrags(fc) ||
547 (le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG)) {
548 rates[1].count = rates[2].count = rates[3].count = 0;
549 rates[1].idx = rates[2].idx = rates[3].idx = 0;
550 rates[0].count = ATH_TXMAXTRY;
551 }
552
553 /* get the cix for the lowest valid rix */
554 rt = sc->hw_rate_table[sc->sc_curmode];
Sujitha8efee42008-11-18 09:07:30 +0530555 for (i = 3; i >= 0; i--) {
Sujithe63835b2008-11-18 09:07:53 +0530556 if (rates[i].count && (rates[i].idx >= 0)) {
Sujitha8efee42008-11-18 09:07:30 +0530557 rix = rates[i].idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700558 break;
559 }
560 }
Sujithe63835b2008-11-18 09:07:53 +0530561
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700562 flags = (bf->bf_flags & (ATH9K_TXDESC_RTSENA | ATH9K_TXDESC_CTSENA));
Sujithe63835b2008-11-18 09:07:53 +0530563 cix = rt->info[rix].ctrl_rate;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700564
565 /*
Sujithe63835b2008-11-18 09:07:53 +0530566 * If 802.11g protection is enabled, determine whether to use RTS/CTS or
567 * just CTS. Note that this is only done for OFDM/HT unicast frames.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700568 */
Sujithe63835b2008-11-18 09:07:53 +0530569 if (sc->sc_protmode != PROT_M_NONE && !(bf->bf_flags & ATH9K_TXDESC_NOACK)
Sujith46d14a52008-11-18 09:08:13 +0530570 && (rt->info[rix].phy == WLAN_RC_PHY_OFDM ||
Sujithe63835b2008-11-18 09:07:53 +0530571 WLAN_RC_PHY_HT(rt->info[rix].phy))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700572 if (sc->sc_protmode == PROT_M_RTSCTS)
573 flags = ATH9K_TXDESC_RTSENA;
574 else if (sc->sc_protmode == PROT_M_CTSONLY)
575 flags = ATH9K_TXDESC_CTSENA;
576
Sujithe63835b2008-11-18 09:07:53 +0530577 cix = rt->info[sc->sc_protrix].ctrl_rate;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700578 rtsctsena = 1;
579 }
580
Sujithe63835b2008-11-18 09:07:53 +0530581 /* For 11n, the default behavior is to enable RTS for hw retried frames.
582 * We enable the global flag here and let rate series flags determine
583 * which rates will actually use RTS.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700584 */
Sujithcd3d39a2008-08-11 14:03:34 +0530585 if ((ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) && bf_isdata(bf)) {
Sujithe63835b2008-11-18 09:07:53 +0530586 /* 802.11g protection not needed, use our default behavior */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700587 if (!rtsctsena)
588 flags = ATH9K_TXDESC_RTSENA;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700589 }
590
Sujithe63835b2008-11-18 09:07:53 +0530591 /* Set protection if aggregate protection on */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700592 if (sc->sc_config.ath_aggr_prot &&
Sujithcd3d39a2008-08-11 14:03:34 +0530593 (!bf_isaggr(bf) || (bf_isaggr(bf) && bf->bf_al < 8192))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700594 flags = ATH9K_TXDESC_RTSENA;
Sujithe63835b2008-11-18 09:07:53 +0530595 cix = rt->info[sc->sc_protrix].ctrl_rate;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700596 rtsctsena = 1;
597 }
598
Sujithe63835b2008-11-18 09:07:53 +0530599 /* For AR5416 - RTS cannot be followed by a frame larger than 8K */
600 if (bf_isaggr(bf) && (bf->bf_al > ah->ah_caps.rts_aggr_limit))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700601 flags &= ~(ATH9K_TXDESC_RTSENA);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700602
603 /*
Sujithe63835b2008-11-18 09:07:53 +0530604 * CTS transmit rate is derived from the transmit rate by looking in the
605 * h/w rate table. We must also factor in whether or not a short
606 * preamble is to be used. NB: cix is set above where RTS/CTS is enabled
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700607 */
Sujithe63835b2008-11-18 09:07:53 +0530608 ctsrate = rt->info[cix].ratecode |
609 (bf_isshpreamble(bf) ? rt->info[cix].short_preamble : 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700610
611 for (i = 0; i < 4; i++) {
Sujithe63835b2008-11-18 09:07:53 +0530612 if (!rates[i].count || (rates[i].idx < 0))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700613 continue;
614
Sujitha8efee42008-11-18 09:07:30 +0530615 rix = rates[i].idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700616
Sujithe63835b2008-11-18 09:07:53 +0530617 series[i].Rate = rt->info[rix].ratecode |
618 (bf_isshpreamble(bf) ? rt->info[rix].short_preamble : 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700619
Sujitha8efee42008-11-18 09:07:30 +0530620 series[i].Tries = rates[i].count;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700621
622 series[i].RateFlags = (
Sujitha8efee42008-11-18 09:07:30 +0530623 (rates[i].flags & IEEE80211_TX_RC_USE_RTS_CTS) ?
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700624 ATH9K_RATESERIES_RTS_CTS : 0) |
Sujitha8efee42008-11-18 09:07:30 +0530625 ((rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ?
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700626 ATH9K_RATESERIES_2040 : 0) |
Sujitha8efee42008-11-18 09:07:30 +0530627 ((rates[i].flags & IEEE80211_TX_RC_SHORT_GI) ?
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700628 ATH9K_RATESERIES_HALFGI : 0);
629
Sujith102e0572008-10-29 10:15:16 +0530630 series[i].PktDuration = ath_pkt_duration(sc, rix, bf,
Sujitha8efee42008-11-18 09:07:30 +0530631 (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) != 0,
632 (rates[i].flags & IEEE80211_TX_RC_SHORT_GI),
Sujith102e0572008-10-29 10:15:16 +0530633 bf_isshpreamble(bf));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700634
Sujith102e0572008-10-29 10:15:16 +0530635 if (bf_isht(bf) && an)
636 series[i].ChSel = ath_chainmask_sel_logic(sc, an);
Sujith43453b32008-10-29 10:14:52 +0530637 else
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700638 series[i].ChSel = sc->sc_tx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639
640 if (rtsctsena)
641 series[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700642 }
643
Sujithe63835b2008-11-18 09:07:53 +0530644 /* set dur_update_en for l-sig computation except for PS-Poll frames */
645 ath9k_hw_set11n_ratescenario(ah, ds, lastds, !bf_ispspoll(bf),
646 ctsrate, ctsduration,
Sujithcd3d39a2008-08-11 14:03:34 +0530647 series, 4, flags);
Sujith102e0572008-10-29 10:15:16 +0530648
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649 if (sc->sc_config.ath_aggr_prot && flags)
650 ath9k_hw_set11n_burstduration(ah, ds, 8192);
651}
652
653/*
654 * Function to send a normal HT (non-AMPDU) frame
655 * NB: must be called with txq lock held
656 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700657static int ath_tx_send_normal(struct ath_softc *sc,
658 struct ath_txq *txq,
659 struct ath_atx_tid *tid,
660 struct list_head *bf_head)
661{
662 struct ath_buf *bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700663
664 BUG_ON(list_empty(bf_head));
665
666 bf = list_first_entry(bf_head, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +0530667 bf->bf_state.bf_type &= ~BUF_AMPDU; /* regular HT frame */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700668
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700669 /* update starting sequence number for subsequent ADDBA request */
670 INCR(tid->seq_start, IEEE80211_SEQ_MAX);
671
672 /* Queue to h/w without aggregation */
673 bf->bf_nframes = 1;
674 bf->bf_lastbf = bf->bf_lastfrm; /* one single frame */
675 ath_buf_set_rate(sc, bf);
676 ath_tx_txqaddbuf(sc, txq, bf_head);
677
678 return 0;
679}
680
681/* flush tid's software queue and send frames as non-ampdu's */
682
683static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
684{
685 struct ath_txq *txq = &sc->sc_txq[tid->ac->qnum];
686 struct ath_buf *bf;
687 struct list_head bf_head;
688 INIT_LIST_HEAD(&bf_head);
689
690 ASSERT(tid->paused > 0);
691 spin_lock_bh(&txq->axq_lock);
692
693 tid->paused--;
694
695 if (tid->paused > 0) {
696 spin_unlock_bh(&txq->axq_lock);
697 return;
698 }
699
700 while (!list_empty(&tid->buf_q)) {
701 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +0530702 ASSERT(!bf_isretried(bf));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700703 list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list);
704 ath_tx_send_normal(sc, txq, tid, &bf_head);
705 }
706
707 spin_unlock_bh(&txq->axq_lock);
708}
709
710/* Completion routine of an aggregate */
711
712static void ath_tx_complete_aggr_rifs(struct ath_softc *sc,
713 struct ath_txq *txq,
714 struct ath_buf *bf,
715 struct list_head *bf_q,
716 int txok)
717{
Sujith528f0c62008-10-29 10:14:26 +0530718 struct ath_node *an = NULL;
719 struct sk_buff *skb;
720 struct ieee80211_tx_info *tx_info;
721 struct ath_atx_tid *tid = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700722 struct ath_buf *bf_last = bf->bf_lastbf;
723 struct ath_desc *ds = bf_last->bf_desc;
724 struct ath_buf *bf_next, *bf_lastq = NULL;
725 struct list_head bf_head, bf_pending;
726 u16 seq_st = 0;
727 u32 ba[WME_BA_BMP_SIZE >> 5];
728 int isaggr, txfail, txpending, sendbar = 0, needreset = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700729
Sujith528f0c62008-10-29 10:14:26 +0530730 skb = (struct sk_buff *)bf->bf_mpdu;
731 tx_info = IEEE80211_SKB_CB(skb);
732
733 if (tx_info->control.sta) {
734 an = (struct ath_node *)tx_info->control.sta->drv_priv;
735 tid = ATH_AN_2_TID(an, bf->bf_tidno);
736 }
737
Sujithcd3d39a2008-08-11 14:03:34 +0530738 isaggr = bf_isaggr(bf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700739 if (isaggr) {
740 if (txok) {
741 if (ATH_DS_TX_BA(ds)) {
742 /*
743 * extract starting sequence and
744 * block-ack bitmap
745 */
746 seq_st = ATH_DS_BA_SEQ(ds);
747 memcpy(ba,
748 ATH_DS_BA_BITMAP(ds),
749 WME_BA_BMP_SIZE >> 3);
750 } else {
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700751 memset(ba, 0, WME_BA_BMP_SIZE >> 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700752
753 /*
754 * AR5416 can become deaf/mute when BA
755 * issue happens. Chip needs to be reset.
756 * But AP code may have sychronization issues
757 * when perform internal reset in this routine.
758 * Only enable reset in STA mode for now.
759 */
Sujithb4696c8b2008-08-11 14:04:52 +0530760 if (sc->sc_ah->ah_opmode == ATH9K_M_STA)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700761 needreset = 1;
762 }
763 } else {
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700764 memset(ba, 0, WME_BA_BMP_SIZE >> 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700765 }
766 }
767
768 INIT_LIST_HEAD(&bf_pending);
769 INIT_LIST_HEAD(&bf_head);
770
771 while (bf) {
772 txfail = txpending = 0;
773 bf_next = bf->bf_next;
774
775 if (ATH_BA_ISSET(ba, ATH_BA_INDEX(seq_st, bf->bf_seqno))) {
776 /* transmit completion, subframe is
777 * acked by block ack */
778 } else if (!isaggr && txok) {
779 /* transmit completion */
780 } else {
781
Sujitha37c2c72008-10-29 10:15:40 +0530782 if (!(tid->state & AGGR_CLEANUP) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700783 ds->ds_txstat.ts_flags != ATH9K_TX_SW_ABORTED) {
784 if (bf->bf_retries < ATH_MAX_SW_RETRIES) {
785 ath_tx_set_retry(sc, bf);
786 txpending = 1;
787 } else {
Sujithcd3d39a2008-08-11 14:03:34 +0530788 bf->bf_state.bf_type |= BUF_XRETRY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700789 txfail = 1;
790 sendbar = 1;
791 }
792 } else {
793 /*
794 * cleanup in progress, just fail
795 * the un-acked sub-frames
796 */
797 txfail = 1;
798 }
799 }
800 /*
801 * Remove ath_buf's of this sub-frame from aggregate queue.
802 */
803 if (bf_next == NULL) { /* last subframe in the aggregate */
804 ASSERT(bf->bf_lastfrm == bf_last);
805
806 /*
807 * The last descriptor of the last sub frame could be
808 * a holding descriptor for h/w. If that's the case,
809 * bf->bf_lastfrm won't be in the bf_q.
810 * Make sure we handle bf_q properly here.
811 */
812
813 if (!list_empty(bf_q)) {
814 bf_lastq = list_entry(bf_q->prev,
815 struct ath_buf, list);
816 list_cut_position(&bf_head,
817 bf_q, &bf_lastq->list);
818 } else {
819 /*
820 * XXX: if the last subframe only has one
821 * descriptor which is also being used as
822 * a holding descriptor. Then the ath_buf
823 * is not in the bf_q at all.
824 */
825 INIT_LIST_HEAD(&bf_head);
826 }
827 } else {
828 ASSERT(!list_empty(bf_q));
829 list_cut_position(&bf_head,
830 bf_q, &bf->bf_lastfrm->list);
831 }
832
833 if (!txpending) {
834 /*
835 * complete the acked-ones/xretried ones; update
836 * block-ack window
837 */
838 spin_lock_bh(&txq->axq_lock);
839 ath_tx_update_baw(sc, tid, bf->bf_seqno);
840 spin_unlock_bh(&txq->axq_lock);
841
842 /* complete this sub-frame */
843 ath_tx_complete_buf(sc, bf, &bf_head, !txfail, sendbar);
844 } else {
845 /*
846 * retry the un-acked ones
847 */
848 /*
849 * XXX: if the last descriptor is holding descriptor,
850 * in order to requeue the frame to software queue, we
851 * need to allocate a new descriptor and
852 * copy the content of holding descriptor to it.
853 */
854 if (bf->bf_next == NULL &&
855 bf_last->bf_status & ATH_BUFSTATUS_STALE) {
856 struct ath_buf *tbf;
857
858 /* allocate new descriptor */
859 spin_lock_bh(&sc->sc_txbuflock);
860 ASSERT(!list_empty((&sc->sc_txbuf)));
861 tbf = list_first_entry(&sc->sc_txbuf,
862 struct ath_buf, list);
863 list_del(&tbf->list);
864 spin_unlock_bh(&sc->sc_txbuflock);
865
866 ATH_TXBUF_RESET(tbf);
867
868 /* copy descriptor content */
869 tbf->bf_mpdu = bf_last->bf_mpdu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700870 tbf->bf_buf_addr = bf_last->bf_buf_addr;
871 *(tbf->bf_desc) = *(bf_last->bf_desc);
872
873 /* link it to the frame */
874 if (bf_lastq) {
875 bf_lastq->bf_desc->ds_link =
876 tbf->bf_daddr;
877 bf->bf_lastfrm = tbf;
878 ath9k_hw_cleartxdesc(sc->sc_ah,
879 bf->bf_lastfrm->bf_desc);
880 } else {
881 tbf->bf_state = bf_last->bf_state;
882 tbf->bf_lastfrm = tbf;
883 ath9k_hw_cleartxdesc(sc->sc_ah,
884 tbf->bf_lastfrm->bf_desc);
885
886 /* copy the DMA context */
Sujithff9b6622008-08-14 13:27:16 +0530887 tbf->bf_dmacontext =
888 bf_last->bf_dmacontext;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700889 }
890 list_add_tail(&tbf->list, &bf_head);
891 } else {
892 /*
893 * Clear descriptor status words for
894 * software retry
895 */
896 ath9k_hw_cleartxdesc(sc->sc_ah,
Sujithff9b6622008-08-14 13:27:16 +0530897 bf->bf_lastfrm->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700898 }
899
900 /*
901 * Put this buffer to the temporary pending
902 * queue to retain ordering
903 */
904 list_splice_tail_init(&bf_head, &bf_pending);
905 }
906
907 bf = bf_next;
908 }
909
Sujitha37c2c72008-10-29 10:15:40 +0530910 if (tid->state & AGGR_CLEANUP) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700911 /* check to see if we're done with cleaning the h/w queue */
912 spin_lock_bh(&txq->axq_lock);
913
914 if (tid->baw_head == tid->baw_tail) {
Sujitha37c2c72008-10-29 10:15:40 +0530915 tid->state &= ~AGGR_ADDBA_COMPLETE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700916 tid->addba_exchangeattempts = 0;
917 spin_unlock_bh(&txq->axq_lock);
918
Sujitha37c2c72008-10-29 10:15:40 +0530919 tid->state &= ~AGGR_CLEANUP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700920
921 /* send buffered frames as singles */
922 ath_tx_flush_tid(sc, tid);
923 } else
924 spin_unlock_bh(&txq->axq_lock);
925
926 return;
927 }
928
929 /*
930 * prepend un-acked frames to the beginning of the pending frame queue
931 */
932 if (!list_empty(&bf_pending)) {
933 spin_lock_bh(&txq->axq_lock);
934 /* Note: we _prepend_, we _do_not_ at to
935 * the end of the queue ! */
936 list_splice(&bf_pending, &tid->buf_q);
937 ath_tx_queue_tid(txq, tid);
938 spin_unlock_bh(&txq->axq_lock);
939 }
940
941 if (needreset)
Sujithf45144e2008-08-11 14:02:53 +0530942 ath_reset(sc, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700943
944 return;
945}
946
Sujithc4288392008-11-18 09:09:30 +0530947static void ath_tx_rc_status(struct ath_buf *bf, struct ath_desc *ds, int nbad)
948{
949 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
950 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
951 struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
952
953 if (ds->ds_txstat.ts_status & ATH9K_TXERR_FILT)
954 tx_info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
955
956 if ((ds->ds_txstat.ts_status & ATH9K_TXERR_FILT) == 0 &&
957 (bf->bf_flags & ATH9K_TXDESC_NOACK) == 0) {
958 if (bf_isdata(bf)) {
959 memcpy(&tx_info_priv->tx, &ds->ds_txstat,
960 sizeof(tx_info_priv->tx));
961 tx_info_priv->n_frames = bf->bf_nframes;
962 tx_info_priv->n_bad_frames = nbad;
963 }
964 }
965}
966
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700967/* Process completed xmit descriptors from the specified queue */
968
Sujithc4288392008-11-18 09:09:30 +0530969static void ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700970{
971 struct ath_hal *ah = sc->sc_ah;
972 struct ath_buf *bf, *lastbf, *bf_held = NULL;
973 struct list_head bf_head;
Sujithc4288392008-11-18 09:09:30 +0530974 struct ath_desc *ds;
975 int txok, nbad = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700976 int status;
977
978 DPRINTF(sc, ATH_DBG_QUEUE,
979 "%s: tx queue %d (%x), link %p\n", __func__,
980 txq->axq_qnum, ath9k_hw_gettxbuf(sc->sc_ah, txq->axq_qnum),
981 txq->axq_link);
982
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700983 for (;;) {
984 spin_lock_bh(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700985 if (list_empty(&txq->axq_q)) {
986 txq->axq_link = NULL;
987 txq->axq_linkbuf = NULL;
988 spin_unlock_bh(&txq->axq_lock);
989 break;
990 }
991 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
992
993 /*
994 * There is a race condition that a BH gets scheduled
995 * after sw writes TxE and before hw re-load the last
996 * descriptor to get the newly chained one.
997 * Software must keep the last DONE descriptor as a
998 * holding descriptor - software does so by marking
999 * it with the STALE flag.
1000 */
1001 bf_held = NULL;
1002 if (bf->bf_status & ATH_BUFSTATUS_STALE) {
1003 bf_held = bf;
1004 if (list_is_last(&bf_held->list, &txq->axq_q)) {
1005 /* FIXME:
1006 * The holding descriptor is the last
1007 * descriptor in queue. It's safe to remove
1008 * the last holding descriptor in BH context.
1009 */
1010 spin_unlock_bh(&txq->axq_lock);
1011 break;
1012 } else {
1013 /* Lets work with the next buffer now */
1014 bf = list_entry(bf_held->list.next,
1015 struct ath_buf, list);
1016 }
1017 }
1018
1019 lastbf = bf->bf_lastbf;
1020 ds = lastbf->bf_desc; /* NB: last decriptor */
1021
1022 status = ath9k_hw_txprocdesc(ah, ds);
1023 if (status == -EINPROGRESS) {
1024 spin_unlock_bh(&txq->axq_lock);
1025 break;
1026 }
1027 if (bf->bf_desc == txq->axq_lastdsWithCTS)
1028 txq->axq_lastdsWithCTS = NULL;
1029 if (ds == txq->axq_gatingds)
1030 txq->axq_gatingds = NULL;
1031
1032 /*
1033 * Remove ath_buf's of the same transmit unit from txq,
1034 * however leave the last descriptor back as the holding
1035 * descriptor for hw.
1036 */
1037 lastbf->bf_status |= ATH_BUFSTATUS_STALE;
1038 INIT_LIST_HEAD(&bf_head);
1039
1040 if (!list_is_singular(&lastbf->list))
1041 list_cut_position(&bf_head,
1042 &txq->axq_q, lastbf->list.prev);
1043
1044 txq->axq_depth--;
1045
Sujithcd3d39a2008-08-11 14:03:34 +05301046 if (bf_isaggr(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001047 txq->axq_aggr_depth--;
1048
1049 txok = (ds->ds_txstat.ts_status == 0);
1050
1051 spin_unlock_bh(&txq->axq_lock);
1052
1053 if (bf_held) {
1054 list_del(&bf_held->list);
1055 spin_lock_bh(&sc->sc_txbuflock);
1056 list_add_tail(&bf_held->list, &sc->sc_txbuf);
1057 spin_unlock_bh(&sc->sc_txbuflock);
1058 }
1059
Sujithcd3d39a2008-08-11 14:03:34 +05301060 if (!bf_isampdu(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001061 /*
1062 * This frame is sent out as a single frame.
1063 * Use hardware retry status for this frame.
1064 */
1065 bf->bf_retries = ds->ds_txstat.ts_longretry;
1066 if (ds->ds_txstat.ts_status & ATH9K_TXERR_XRETRY)
Sujithcd3d39a2008-08-11 14:03:34 +05301067 bf->bf_state.bf_type |= BUF_XRETRY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001068 nbad = 0;
1069 } else {
1070 nbad = ath_tx_num_badfrms(sc, bf, txok);
1071 }
Johannes Berge6a98542008-10-21 12:40:02 +02001072
Sujithc4288392008-11-18 09:09:30 +05301073 ath_tx_rc_status(bf, ds, nbad);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001074
1075 /*
1076 * Complete this transmit unit
1077 */
Sujithcd3d39a2008-08-11 14:03:34 +05301078 if (bf_isampdu(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001079 ath_tx_complete_aggr_rifs(sc, txq, bf, &bf_head, txok);
1080 else
1081 ath_tx_complete_buf(sc, bf, &bf_head, txok, 0);
1082
1083 /* Wake up mac80211 queue */
1084
1085 spin_lock_bh(&txq->axq_lock);
1086 if (txq->stopped && ath_txq_depth(sc, txq->axq_qnum) <=
1087 (ATH_TXBUF - 20)) {
1088 int qnum;
1089 qnum = ath_get_mac80211_qnum(txq->axq_qnum, sc);
1090 if (qnum != -1) {
1091 ieee80211_wake_queue(sc->hw, qnum);
1092 txq->stopped = 0;
1093 }
1094
1095 }
1096
1097 /*
1098 * schedule any pending packets if aggregation is enabled
1099 */
Sujith672840a2008-08-11 14:05:08 +05301100 if (sc->sc_flags & SC_OP_TXAGGR)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001101 ath_txq_schedule(sc, txq);
1102 spin_unlock_bh(&txq->axq_lock);
1103 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001104}
1105
1106static void ath_tx_stopdma(struct ath_softc *sc, struct ath_txq *txq)
1107{
1108 struct ath_hal *ah = sc->sc_ah;
1109
1110 (void) ath9k_hw_stoptxdma(ah, txq->axq_qnum);
1111 DPRINTF(sc, ATH_DBG_XMIT, "%s: tx queue [%u] %x, link %p\n",
1112 __func__, txq->axq_qnum,
1113 ath9k_hw_gettxbuf(ah, txq->axq_qnum), txq->axq_link);
1114}
1115
1116/* Drain only the data queues */
1117
1118static void ath_drain_txdataq(struct ath_softc *sc, bool retry_tx)
1119{
1120 struct ath_hal *ah = sc->sc_ah;
Sujith102e0572008-10-29 10:15:16 +05301121 int i, status, npend = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001122
Sujith672840a2008-08-11 14:05:08 +05301123 if (!(sc->sc_flags & SC_OP_INVALID)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001124 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1125 if (ATH_TXQ_SETUP(sc, i)) {
1126 ath_tx_stopdma(sc, &sc->sc_txq[i]);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001127 /* The TxDMA may not really be stopped.
1128 * Double check the hal tx pending count */
1129 npend += ath9k_hw_numtxpending(ah,
Sujith102e0572008-10-29 10:15:16 +05301130 sc->sc_txq[i].axq_qnum);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001131 }
1132 }
1133 }
1134
1135 if (npend) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001136 /* TxDMA not stopped, reset the hal */
1137 DPRINTF(sc, ATH_DBG_XMIT,
1138 "%s: Unable to stop TxDMA. Reset HAL!\n", __func__);
1139
1140 spin_lock_bh(&sc->sc_resetlock);
Sujithb4696c8b2008-08-11 14:04:52 +05301141 if (!ath9k_hw_reset(ah,
Sujith927e70e2008-08-14 13:26:34 +05301142 sc->sc_ah->ah_curchan,
1143 sc->sc_ht_info.tx_chan_width,
1144 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1145 sc->sc_ht_extprotspacing, true, &status)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001146
1147 DPRINTF(sc, ATH_DBG_FATAL,
1148 "%s: unable to reset hardware; hal status %u\n",
1149 __func__,
1150 status);
1151 }
1152 spin_unlock_bh(&sc->sc_resetlock);
1153 }
1154
1155 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1156 if (ATH_TXQ_SETUP(sc, i))
1157 ath_tx_draintxq(sc, &sc->sc_txq[i], retry_tx);
1158 }
1159}
1160
1161/* Add a sub-frame to block ack window */
1162
1163static void ath_tx_addto_baw(struct ath_softc *sc,
1164 struct ath_atx_tid *tid,
1165 struct ath_buf *bf)
1166{
1167 int index, cindex;
1168
Sujithcd3d39a2008-08-11 14:03:34 +05301169 if (bf_isretried(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001170 return;
1171
1172 index = ATH_BA_INDEX(tid->seq_start, bf->bf_seqno);
1173 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
1174
1175 ASSERT(tid->tx_buf[cindex] == NULL);
1176 tid->tx_buf[cindex] = bf;
1177
1178 if (index >= ((tid->baw_tail - tid->baw_head) &
1179 (ATH_TID_MAX_BUFS - 1))) {
1180 tid->baw_tail = cindex;
1181 INCR(tid->baw_tail, ATH_TID_MAX_BUFS);
1182 }
1183}
1184
1185/*
1186 * Function to send an A-MPDU
1187 * NB: must be called with txq lock held
1188 */
1189
1190static int ath_tx_send_ampdu(struct ath_softc *sc,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001191 struct ath_atx_tid *tid,
1192 struct list_head *bf_head,
1193 struct ath_tx_control *txctl)
1194{
1195 struct ath_buf *bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001196
1197 BUG_ON(list_empty(bf_head));
1198
1199 bf = list_first_entry(bf_head, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +05301200 bf->bf_state.bf_type |= BUF_AMPDU;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001201
1202 /*
1203 * Do not queue to h/w when any of the following conditions is true:
1204 * - there are pending frames in software queue
1205 * - the TID is currently paused for ADDBA/BAR request
1206 * - seqno is not within block-ack window
1207 * - h/w queue depth exceeds low water mark
1208 */
1209 if (!list_empty(&tid->buf_q) || tid->paused ||
1210 !BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno) ||
Sujith528f0c62008-10-29 10:14:26 +05301211 txctl->txq->axq_depth >= ATH_AGGR_MIN_QDEPTH) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001212 /*
1213 * Add this frame to software queue for scheduling later
1214 * for aggregation.
1215 */
1216 list_splice_tail_init(bf_head, &tid->buf_q);
Sujith528f0c62008-10-29 10:14:26 +05301217 ath_tx_queue_tid(txctl->txq, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001218 return 0;
1219 }
1220
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001221 /* Add sub-frame to BAW */
1222 ath_tx_addto_baw(sc, tid, bf);
1223
1224 /* Queue to h/w without aggregation */
1225 bf->bf_nframes = 1;
1226 bf->bf_lastbf = bf->bf_lastfrm; /* one single frame */
1227 ath_buf_set_rate(sc, bf);
Sujith528f0c62008-10-29 10:14:26 +05301228 ath_tx_txqaddbuf(sc, txctl->txq, bf_head);
Sujith102e0572008-10-29 10:15:16 +05301229
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001230 return 0;
1231}
1232
1233/*
1234 * looks up the rate
1235 * returns aggr limit based on lowest of the rates
1236 */
1237
1238static u32 ath_lookup_rate(struct ath_softc *sc,
Johannes Bergae5eb022008-10-14 16:58:37 +02001239 struct ath_buf *bf,
1240 struct ath_atx_tid *tid)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001241{
Sujitha8efee42008-11-18 09:07:30 +05301242 struct ath_rate_table *rate_table = sc->hw_rate_table[sc->sc_curmode];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001243 struct sk_buff *skb;
1244 struct ieee80211_tx_info *tx_info;
Sujitha8efee42008-11-18 09:07:30 +05301245 struct ieee80211_tx_rate *rates;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001246 struct ath_tx_info_priv *tx_info_priv;
1247 u32 max_4ms_framelen, frame_length;
1248 u16 aggr_limit, legacy = 0, maxampdu;
1249 int i;
1250
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001251 skb = (struct sk_buff *)bf->bf_mpdu;
1252 tx_info = IEEE80211_SKB_CB(skb);
Sujitha8efee42008-11-18 09:07:30 +05301253 rates = tx_info->control.rates;
1254 tx_info_priv =
1255 (struct ath_tx_info_priv *)tx_info->rate_driver_data[0];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001256
1257 /*
1258 * Find the lowest frame length among the rate series that will have a
1259 * 4ms transmit duration.
1260 * TODO - TXOP limit needs to be considered.
1261 */
1262 max_4ms_framelen = ATH_AMPDU_LIMIT_MAX;
1263
1264 for (i = 0; i < 4; i++) {
Sujitha8efee42008-11-18 09:07:30 +05301265 if (rates[i].count) {
Sujithe63835b2008-11-18 09:07:53 +05301266 if (!WLAN_RC_PHY_HT(rate_table->info[rates[i].idx].phy)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001267 legacy = 1;
1268 break;
1269 }
1270
Sujitha8efee42008-11-18 09:07:30 +05301271 frame_length =
1272 rate_table->info[rates[i].idx].max_4ms_framelen;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001273 max_4ms_framelen = min(max_4ms_framelen, frame_length);
1274 }
1275 }
1276
1277 /*
1278 * limit aggregate size by the minimum rate if rate selected is
1279 * not a probe rate, if rate selected is a probe rate then
1280 * avoid aggregation of this packet.
1281 */
1282 if (tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE || legacy)
1283 return 0;
1284
1285 aggr_limit = min(max_4ms_framelen,
1286 (u32)ATH_AMPDU_LIMIT_DEFAULT);
1287
1288 /*
1289 * h/w can accept aggregates upto 16 bit lengths (65535).
1290 * The IE, however can hold upto 65536, which shows up here
1291 * as zero. Ignore 65536 since we are constrained by hw.
1292 */
Johannes Bergae5eb022008-10-14 16:58:37 +02001293 maxampdu = tid->an->maxampdu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001294 if (maxampdu)
1295 aggr_limit = min(aggr_limit, maxampdu);
1296
1297 return aggr_limit;
1298}
1299
1300/*
1301 * returns the number of delimiters to be added to
1302 * meet the minimum required mpdudensity.
1303 * caller should make sure that the rate is HT rate .
1304 */
1305
1306static int ath_compute_num_delims(struct ath_softc *sc,
Johannes Bergae5eb022008-10-14 16:58:37 +02001307 struct ath_atx_tid *tid,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001308 struct ath_buf *bf,
1309 u16 frmlen)
1310{
Sujithe63835b2008-11-18 09:07:53 +05301311 struct ath_rate_table *rt = sc->hw_rate_table[sc->sc_curmode];
Sujitha8efee42008-11-18 09:07:30 +05301312 struct sk_buff *skb = bf->bf_mpdu;
1313 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001314 u32 nsymbits, nsymbols, mpdudensity;
1315 u16 minlen;
1316 u8 rc, flags, rix;
1317 int width, half_gi, ndelim, mindelim;
1318
1319 /* Select standard number of delimiters based on frame length alone */
1320 ndelim = ATH_AGGR_GET_NDELIM(frmlen);
1321
1322 /*
1323 * If encryption enabled, hardware requires some more padding between
1324 * subframes.
1325 * TODO - this could be improved to be dependent on the rate.
1326 * The hardware can keep up at lower rates, but not higher rates
1327 */
1328 if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR)
1329 ndelim += ATH_AGGR_ENCRYPTDELIM;
1330
1331 /*
1332 * Convert desired mpdu density from microeconds to bytes based
1333 * on highest rate in rate series (i.e. first rate) to determine
1334 * required minimum length for subframe. Take into account
1335 * whether high rate is 20 or 40Mhz and half or full GI.
1336 */
Johannes Bergae5eb022008-10-14 16:58:37 +02001337 mpdudensity = tid->an->mpdudensity;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001338
1339 /*
1340 * If there is no mpdu density restriction, no further calculation
1341 * is needed.
1342 */
1343 if (mpdudensity == 0)
1344 return ndelim;
1345
Sujitha8efee42008-11-18 09:07:30 +05301346 rix = tx_info->control.rates[0].idx;
1347 flags = tx_info->control.rates[0].flags;
Sujithe63835b2008-11-18 09:07:53 +05301348 rc = rt->info[rix].ratecode;
Sujitha8efee42008-11-18 09:07:30 +05301349 width = (flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ? 1 : 0;
1350 half_gi = (flags & IEEE80211_TX_RC_SHORT_GI) ? 1 : 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351
1352 if (half_gi)
1353 nsymbols = NUM_SYMBOLS_PER_USEC_HALFGI(mpdudensity);
1354 else
1355 nsymbols = NUM_SYMBOLS_PER_USEC(mpdudensity);
1356
1357 if (nsymbols == 0)
1358 nsymbols = 1;
1359
1360 nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
1361 minlen = (nsymbols * nsymbits) / BITS_PER_BYTE;
1362
1363 /* Is frame shorter than required minimum length? */
1364 if (frmlen < minlen) {
1365 /* Get the minimum number of delimiters required. */
1366 mindelim = (minlen - frmlen) / ATH_AGGR_DELIM_SZ;
1367 ndelim = max(mindelim, ndelim);
1368 }
1369
1370 return ndelim;
1371}
1372
1373/*
1374 * For aggregation from software buffer queue.
1375 * NB: must be called with txq lock held
1376 */
1377
1378static enum ATH_AGGR_STATUS ath_tx_form_aggr(struct ath_softc *sc,
1379 struct ath_atx_tid *tid,
1380 struct list_head *bf_q,
1381 struct ath_buf **bf_last,
1382 struct aggr_rifs_param *param,
1383 int *prev_frames)
1384{
1385#define PADBYTES(_len) ((4 - ((_len) % 4)) % 4)
1386 struct ath_buf *bf, *tbf, *bf_first, *bf_prev = NULL;
1387 struct list_head bf_head;
1388 int rl = 0, nframes = 0, ndelim;
1389 u16 aggr_limit = 0, al = 0, bpad = 0,
1390 al_delta, h_baw = tid->baw_size / 2;
1391 enum ATH_AGGR_STATUS status = ATH_AGGR_DONE;
Sujitha8efee42008-11-18 09:07:30 +05301392 int prev_al = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001393 INIT_LIST_HEAD(&bf_head);
1394
1395 BUG_ON(list_empty(&tid->buf_q));
1396
1397 bf_first = list_first_entry(&tid->buf_q, struct ath_buf, list);
1398
1399 do {
1400 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
1401
1402 /*
1403 * do not step over block-ack window
1404 */
1405 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno)) {
1406 status = ATH_AGGR_BAW_CLOSED;
1407 break;
1408 }
1409
1410 if (!rl) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001411 aggr_limit = ath_lookup_rate(sc, bf, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001412 rl = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001413 }
1414
1415 /*
1416 * do not exceed aggregation limit
1417 */
1418 al_delta = ATH_AGGR_DELIM_SZ + bf->bf_frmlen;
1419
1420 if (nframes && (aggr_limit <
1421 (al + bpad + al_delta + prev_al))) {
1422 status = ATH_AGGR_LIMITED;
1423 break;
1424 }
1425
1426 /*
1427 * do not exceed subframe limit
1428 */
1429 if ((nframes + *prev_frames) >=
1430 min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) {
1431 status = ATH_AGGR_LIMITED;
1432 break;
1433 }
1434
1435 /*
1436 * add padding for previous frame to aggregation length
1437 */
1438 al += bpad + al_delta;
1439
1440 /*
1441 * Get the delimiters needed to meet the MPDU
1442 * density for this node.
1443 */
Johannes Bergae5eb022008-10-14 16:58:37 +02001444 ndelim = ath_compute_num_delims(sc, tid, bf_first, bf->bf_frmlen);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001445
1446 bpad = PADBYTES(al_delta) + (ndelim << 2);
1447
1448 bf->bf_next = NULL;
1449 bf->bf_lastfrm->bf_desc->ds_link = 0;
1450
1451 /*
1452 * this packet is part of an aggregate
1453 * - remove all descriptors belonging to this frame from
1454 * software queue
1455 * - add it to block ack window
1456 * - set up descriptors for aggregation
1457 */
1458 list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list);
1459 ath_tx_addto_baw(sc, tid, bf);
1460
1461 list_for_each_entry(tbf, &bf_head, list) {
1462 ath9k_hw_set11n_aggr_middle(sc->sc_ah,
1463 tbf->bf_desc, ndelim);
1464 }
1465
1466 /*
1467 * link buffers of this frame to the aggregate
1468 */
1469 list_splice_tail_init(&bf_head, bf_q);
1470 nframes++;
1471
1472 if (bf_prev) {
1473 bf_prev->bf_next = bf;
1474 bf_prev->bf_lastfrm->bf_desc->ds_link = bf->bf_daddr;
1475 }
1476 bf_prev = bf;
1477
1478#ifdef AGGR_NOSHORT
1479 /*
1480 * terminate aggregation on a small packet boundary
1481 */
1482 if (bf->bf_frmlen < ATH_AGGR_MINPLEN) {
1483 status = ATH_AGGR_SHORTPKT;
1484 break;
1485 }
1486#endif
1487 } while (!list_empty(&tid->buf_q));
1488
1489 bf_first->bf_al = al;
1490 bf_first->bf_nframes = nframes;
1491 *bf_last = bf_prev;
1492 return status;
1493#undef PADBYTES
1494}
1495
1496/*
1497 * process pending frames possibly doing a-mpdu aggregation
1498 * NB: must be called with txq lock held
1499 */
1500
1501static void ath_tx_sched_aggr(struct ath_softc *sc,
1502 struct ath_txq *txq, struct ath_atx_tid *tid)
1503{
1504 struct ath_buf *bf, *tbf, *bf_last, *bf_lastaggr = NULL;
1505 enum ATH_AGGR_STATUS status;
1506 struct list_head bf_q;
1507 struct aggr_rifs_param param = {0, 0, 0, 0, NULL};
1508 int prev_frames = 0;
1509
1510 do {
1511 if (list_empty(&tid->buf_q))
1512 return;
1513
1514 INIT_LIST_HEAD(&bf_q);
1515
1516 status = ath_tx_form_aggr(sc, tid, &bf_q, &bf_lastaggr, &param,
1517 &prev_frames);
1518
1519 /*
1520 * no frames picked up to be aggregated; block-ack
1521 * window is not open
1522 */
1523 if (list_empty(&bf_q))
1524 break;
1525
1526 bf = list_first_entry(&bf_q, struct ath_buf, list);
1527 bf_last = list_entry(bf_q.prev, struct ath_buf, list);
1528 bf->bf_lastbf = bf_last;
1529
1530 /*
1531 * if only one frame, send as non-aggregate
1532 */
1533 if (bf->bf_nframes == 1) {
1534 ASSERT(bf->bf_lastfrm == bf_last);
1535
Sujithcd3d39a2008-08-11 14:03:34 +05301536 bf->bf_state.bf_type &= ~BUF_AGGR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001537 /*
1538 * clear aggr bits for every descriptor
1539 * XXX TODO: is there a way to optimize it?
1540 */
1541 list_for_each_entry(tbf, &bf_q, list) {
1542 ath9k_hw_clr11n_aggr(sc->sc_ah, tbf->bf_desc);
1543 }
1544
1545 ath_buf_set_rate(sc, bf);
1546 ath_tx_txqaddbuf(sc, txq, &bf_q);
1547 continue;
1548 }
1549
1550 /*
1551 * setup first desc with rate and aggr info
1552 */
Sujithcd3d39a2008-08-11 14:03:34 +05301553 bf->bf_state.bf_type |= BUF_AGGR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001554 ath_buf_set_rate(sc, bf);
1555 ath9k_hw_set11n_aggr_first(sc->sc_ah, bf->bf_desc, bf->bf_al);
1556
1557 /*
1558 * anchor last frame of aggregate correctly
1559 */
1560 ASSERT(bf_lastaggr);
1561 ASSERT(bf_lastaggr->bf_lastfrm == bf_last);
1562 tbf = bf_lastaggr;
1563 ath9k_hw_set11n_aggr_last(sc->sc_ah, tbf->bf_desc);
1564
1565 /* XXX: We don't enter into this loop, consider removing this */
1566 while (!list_empty(&bf_q) && !list_is_last(&tbf->list, &bf_q)) {
1567 tbf = list_entry(tbf->list.next, struct ath_buf, list);
1568 ath9k_hw_set11n_aggr_last(sc->sc_ah, tbf->bf_desc);
1569 }
1570
1571 txq->axq_aggr_depth++;
1572
1573 /*
1574 * Normal aggregate, queue to hardware
1575 */
1576 ath_tx_txqaddbuf(sc, txq, &bf_q);
1577
1578 } while (txq->axq_depth < ATH_AGGR_MIN_QDEPTH &&
1579 status != ATH_AGGR_BAW_CLOSED);
1580}
1581
1582/* Called with txq lock held */
1583
1584static void ath_tid_drain(struct ath_softc *sc,
1585 struct ath_txq *txq,
Sujithb5aa9bf2008-10-29 10:13:31 +05301586 struct ath_atx_tid *tid)
1587
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001588{
1589 struct ath_buf *bf;
1590 struct list_head bf_head;
1591 INIT_LIST_HEAD(&bf_head);
1592
1593 for (;;) {
1594 if (list_empty(&tid->buf_q))
1595 break;
1596 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
1597
1598 list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list);
1599
1600 /* update baw for software retried frame */
Sujithcd3d39a2008-08-11 14:03:34 +05301601 if (bf_isretried(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001602 ath_tx_update_baw(sc, tid, bf->bf_seqno);
1603
1604 /*
1605 * do not indicate packets while holding txq spinlock.
1606 * unlock is intentional here
1607 */
Sujithb5aa9bf2008-10-29 10:13:31 +05301608 spin_unlock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001609
1610 /* complete this sub-frame */
1611 ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
1612
Sujithb5aa9bf2008-10-29 10:13:31 +05301613 spin_lock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001614 }
1615
1616 /*
1617 * TODO: For frame(s) that are in the retry state, we will reuse the
1618 * sequence number(s) without setting the retry bit. The
1619 * alternative is to give up on these and BAR the receiver's window
1620 * forward.
1621 */
1622 tid->seq_next = tid->seq_start;
1623 tid->baw_tail = tid->baw_head;
1624}
1625
1626/*
1627 * Drain all pending buffers
1628 * NB: must be called with txq lock held
1629 */
1630
1631static void ath_txq_drain_pending_buffers(struct ath_softc *sc,
Sujithb5aa9bf2008-10-29 10:13:31 +05301632 struct ath_txq *txq)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001633{
1634 struct ath_atx_ac *ac, *ac_tmp;
1635 struct ath_atx_tid *tid, *tid_tmp;
1636
1637 list_for_each_entry_safe(ac, ac_tmp, &txq->axq_acq, list) {
1638 list_del(&ac->list);
1639 ac->sched = false;
1640 list_for_each_entry_safe(tid, tid_tmp, &ac->tid_q, list) {
1641 list_del(&tid->list);
1642 tid->sched = false;
Sujithb5aa9bf2008-10-29 10:13:31 +05301643 ath_tid_drain(sc, txq, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001644 }
1645 }
1646}
1647
Sujith528f0c62008-10-29 10:14:26 +05301648static void ath_tx_setup_buffer(struct ath_softc *sc, struct ath_buf *bf,
1649 struct sk_buff *skb, struct scatterlist *sg,
1650 struct ath_tx_control *txctl)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001651{
Sujith528f0c62008-10-29 10:14:26 +05301652 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1653 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001654 struct ath_tx_info_priv *tx_info_priv;
Sujith528f0c62008-10-29 10:14:26 +05301655 int hdrlen;
1656 __le16 fc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001657
Sujitha8efee42008-11-18 09:07:30 +05301658 tx_info_priv = kzalloc(sizeof(*tx_info_priv), GFP_KERNEL);
1659 tx_info->rate_driver_data[0] = tx_info_priv;
Sujith528f0c62008-10-29 10:14:26 +05301660 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1661 fc = hdr->frame_control;
Jouni Malinene022edb2008-08-22 17:31:33 +03001662
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001663 ATH_TXBUF_RESET(bf);
Sujith528f0c62008-10-29 10:14:26 +05301664
1665 /* Frame type */
1666
1667 bf->bf_frmlen = skb->len + FCS_LEN - (hdrlen & 3);
Sujithcd3d39a2008-08-11 14:03:34 +05301668
1669 ieee80211_is_data(fc) ?
1670 (bf->bf_state.bf_type |= BUF_DATA) :
1671 (bf->bf_state.bf_type &= ~BUF_DATA);
1672 ieee80211_is_back_req(fc) ?
1673 (bf->bf_state.bf_type |= BUF_BAR) :
1674 (bf->bf_state.bf_type &= ~BUF_BAR);
1675 ieee80211_is_pspoll(fc) ?
1676 (bf->bf_state.bf_type |= BUF_PSPOLL) :
1677 (bf->bf_state.bf_type &= ~BUF_PSPOLL);
Sujith672840a2008-08-11 14:05:08 +05301678 (sc->sc_flags & SC_OP_PREAMBLE_SHORT) ?
Sujithcd3d39a2008-08-11 14:03:34 +05301679 (bf->bf_state.bf_type |= BUF_SHORT_PREAMBLE) :
1680 (bf->bf_state.bf_type &= ~BUF_SHORT_PREAMBLE);
Sujitha8efee42008-11-18 09:07:30 +05301681 (sc->hw->conf.ht.enabled && !is_pae(skb) &&
Sujith528f0c62008-10-29 10:14:26 +05301682 (tx_info->flags & IEEE80211_TX_CTL_AMPDU)) ?
1683 (bf->bf_state.bf_type |= BUF_HT) :
1684 (bf->bf_state.bf_type &= ~BUF_HT);
Sujithcd3d39a2008-08-11 14:03:34 +05301685
Sujith528f0c62008-10-29 10:14:26 +05301686 bf->bf_flags = setup_tx_flags(sc, skb, txctl->txq);
1687
1688 /* Crypto */
1689
1690 bf->bf_keytype = get_hw_crypto_keytype(skb);
1691
1692 if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR) {
1693 bf->bf_frmlen += tx_info->control.hw_key->icv_len;
1694 bf->bf_keyix = tx_info->control.hw_key->hw_key_idx;
1695 } else {
1696 bf->bf_keyix = ATH9K_TXKEYIX_INVALID;
1697 }
1698
Sujith528f0c62008-10-29 10:14:26 +05301699 /* Assign seqno, tidno */
1700
1701 if (bf_isht(bf) && (sc->sc_flags & SC_OP_TXAGGR))
1702 assign_aggr_tid_seqno(skb, bf);
1703
1704 /* DMA setup */
1705
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001706 bf->bf_mpdu = skb;
Sujith528f0c62008-10-29 10:14:26 +05301707 bf->bf_dmacontext = pci_map_single(sc->pdev, skb->data,
1708 skb->len, PCI_DMA_TODEVICE);
1709 bf->bf_buf_addr = bf->bf_dmacontext;
1710}
1711
1712/* FIXME: tx power */
1713static void ath_tx_start_dma(struct ath_softc *sc, struct ath_buf *bf,
1714 struct scatterlist *sg, u32 n_sg,
1715 struct ath_tx_control *txctl)
1716{
1717 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
1718 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1719 struct ath_node *an = NULL;
1720 struct list_head bf_head;
1721 struct ath_desc *ds;
1722 struct ath_atx_tid *tid;
1723 struct ath_hal *ah = sc->sc_ah;
1724 int frm_type;
1725
Sujith528f0c62008-10-29 10:14:26 +05301726 frm_type = get_hw_packet_type(skb);
1727
1728 INIT_LIST_HEAD(&bf_head);
1729 list_add_tail(&bf->list, &bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001730
1731 /* setup descriptor */
Sujith528f0c62008-10-29 10:14:26 +05301732
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001733 ds = bf->bf_desc;
1734 ds->ds_link = 0;
1735 ds->ds_data = bf->bf_buf_addr;
1736
Sujith528f0c62008-10-29 10:14:26 +05301737 /* Formulate first tx descriptor with tx controls */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001738
Sujith528f0c62008-10-29 10:14:26 +05301739 ath9k_hw_set11n_txdesc(ah, ds, bf->bf_frmlen, frm_type, MAX_RATE_POWER,
1740 bf->bf_keyix, bf->bf_keytype, bf->bf_flags);
1741
1742 ath9k_hw_filltxdesc(ah, ds,
1743 sg_dma_len(sg), /* segment length */
1744 true, /* first segment */
1745 (n_sg == 1) ? true : false, /* last segment */
1746 ds); /* first descriptor */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001747
1748 bf->bf_lastfrm = bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001749
Sujith528f0c62008-10-29 10:14:26 +05301750 spin_lock_bh(&txctl->txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001751
John W. Linvillef1617962008-10-31 16:45:15 -04001752 if (bf_isht(bf) && (sc->sc_flags & SC_OP_TXAGGR) &&
1753 tx_info->control.sta) {
1754 an = (struct ath_node *)tx_info->control.sta->drv_priv;
1755 tid = ATH_AN_2_TID(an, bf->bf_tidno);
1756
Sujith528f0c62008-10-29 10:14:26 +05301757 if (ath_aggr_query(sc, an, bf->bf_tidno)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001758 /*
1759 * Try aggregation if it's a unicast data frame
1760 * and the destination is HT capable.
1761 */
Sujith528f0c62008-10-29 10:14:26 +05301762 ath_tx_send_ampdu(sc, tid, &bf_head, txctl);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001763 } else {
1764 /*
Sujith528f0c62008-10-29 10:14:26 +05301765 * Send this frame as regular when ADDBA
1766 * exchange is neither complete nor pending.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001767 */
Sujith528f0c62008-10-29 10:14:26 +05301768 ath_tx_send_normal(sc, txctl->txq,
1769 tid, &bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001770 }
1771 } else {
1772 bf->bf_lastbf = bf;
1773 bf->bf_nframes = 1;
Sujith528f0c62008-10-29 10:14:26 +05301774
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001775 ath_buf_set_rate(sc, bf);
Sujith528f0c62008-10-29 10:14:26 +05301776 ath_tx_txqaddbuf(sc, txctl->txq, &bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001777 }
Sujith528f0c62008-10-29 10:14:26 +05301778
1779 spin_unlock_bh(&txctl->txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001780}
1781
Sujith528f0c62008-10-29 10:14:26 +05301782int ath_tx_start(struct ath_softc *sc, struct sk_buff *skb,
1783 struct ath_tx_control *txctl)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001784{
Sujith528f0c62008-10-29 10:14:26 +05301785 struct ath_buf *bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001786 struct scatterlist sg;
1787
Sujith528f0c62008-10-29 10:14:26 +05301788 /* Check if a tx buffer is available */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001789
Sujith528f0c62008-10-29 10:14:26 +05301790 bf = ath_tx_get_buffer(sc);
1791 if (!bf) {
1792 DPRINTF(sc, ATH_DBG_XMIT, "%s: TX buffers are full\n",
1793 __func__);
1794 return -1;
1795 }
1796
1797 ath_tx_setup_buffer(sc, bf, skb, &sg, txctl);
1798
1799 /* Setup S/G */
1800
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001801 memset(&sg, 0, sizeof(struct scatterlist));
Sujith528f0c62008-10-29 10:14:26 +05301802 sg_dma_address(&sg) = bf->bf_dmacontext;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001803 sg_dma_len(&sg) = skb->len;
1804
Sujith528f0c62008-10-29 10:14:26 +05301805 ath_tx_start_dma(sc, bf, &sg, 1, txctl);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001806
Sujith528f0c62008-10-29 10:14:26 +05301807 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001808}
1809
1810/* Initialize TX queue and h/w */
1811
1812int ath_tx_init(struct ath_softc *sc, int nbufs)
1813{
1814 int error = 0;
1815
1816 do {
1817 spin_lock_init(&sc->sc_txbuflock);
1818
1819 /* Setup tx descriptors */
1820 error = ath_descdma_setup(sc, &sc->sc_txdma, &sc->sc_txbuf,
Sujith556bb8f2008-08-11 14:03:53 +05301821 "tx", nbufs, 1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001822 if (error != 0) {
1823 DPRINTF(sc, ATH_DBG_FATAL,
1824 "%s: failed to allocate tx descriptors: %d\n",
1825 __func__, error);
1826 break;
1827 }
1828
1829 /* XXX allocate beacon state together with vap */
1830 error = ath_descdma_setup(sc, &sc->sc_bdma, &sc->sc_bbuf,
1831 "beacon", ATH_BCBUF, 1);
1832 if (error != 0) {
1833 DPRINTF(sc, ATH_DBG_FATAL,
1834 "%s: failed to allocate "
1835 "beacon descripotrs: %d\n",
1836 __func__, error);
1837 break;
1838 }
1839
1840 } while (0);
1841
1842 if (error != 0)
1843 ath_tx_cleanup(sc);
1844
1845 return error;
1846}
1847
1848/* Reclaim all tx queue resources */
1849
1850int ath_tx_cleanup(struct ath_softc *sc)
1851{
1852 /* cleanup beacon descriptors */
1853 if (sc->sc_bdma.dd_desc_len != 0)
1854 ath_descdma_cleanup(sc, &sc->sc_bdma, &sc->sc_bbuf);
1855
1856 /* cleanup tx descriptors */
1857 if (sc->sc_txdma.dd_desc_len != 0)
1858 ath_descdma_cleanup(sc, &sc->sc_txdma, &sc->sc_txbuf);
1859
1860 return 0;
1861}
1862
1863/* Setup a h/w transmit queue */
1864
1865struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype)
1866{
1867 struct ath_hal *ah = sc->sc_ah;
Sujithea9880f2008-08-07 10:53:10 +05301868 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001869 int qnum;
1870
Luis R. Rodriguez0345f372008-10-03 15:45:25 -07001871 memset(&qi, 0, sizeof(qi));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001872 qi.tqi_subtype = subtype;
1873 qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT;
1874 qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT;
1875 qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT;
Sujithea9880f2008-08-07 10:53:10 +05301876 qi.tqi_physCompBuf = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001877
1878 /*
1879 * Enable interrupts only for EOL and DESC conditions.
1880 * We mark tx descriptors to receive a DESC interrupt
1881 * when a tx queue gets deep; otherwise waiting for the
1882 * EOL to reap descriptors. Note that this is done to
1883 * reduce interrupt load and this only defers reaping
1884 * descriptors, never transmitting frames. Aside from
1885 * reducing interrupts this also permits more concurrency.
1886 * The only potential downside is if the tx queue backs
1887 * up in which case the top half of the kernel may backup
1888 * due to a lack of tx descriptors.
1889 *
1890 * The UAPSD queue is an exception, since we take a desc-
1891 * based intr on the EOSP frames.
1892 */
1893 if (qtype == ATH9K_TX_QUEUE_UAPSD)
1894 qi.tqi_qflags = TXQ_FLAG_TXDESCINT_ENABLE;
1895 else
1896 qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE |
1897 TXQ_FLAG_TXDESCINT_ENABLE;
1898 qnum = ath9k_hw_setuptxqueue(ah, qtype, &qi);
1899 if (qnum == -1) {
1900 /*
1901 * NB: don't print a message, this happens
1902 * normally on parts with too few tx queues
1903 */
1904 return NULL;
1905 }
1906 if (qnum >= ARRAY_SIZE(sc->sc_txq)) {
1907 DPRINTF(sc, ATH_DBG_FATAL,
1908 "%s: hal qnum %u out of range, max %u!\n",
1909 __func__, qnum, (unsigned int)ARRAY_SIZE(sc->sc_txq));
1910 ath9k_hw_releasetxqueue(ah, qnum);
1911 return NULL;
1912 }
1913 if (!ATH_TXQ_SETUP(sc, qnum)) {
1914 struct ath_txq *txq = &sc->sc_txq[qnum];
1915
1916 txq->axq_qnum = qnum;
1917 txq->axq_link = NULL;
1918 INIT_LIST_HEAD(&txq->axq_q);
1919 INIT_LIST_HEAD(&txq->axq_acq);
1920 spin_lock_init(&txq->axq_lock);
1921 txq->axq_depth = 0;
1922 txq->axq_aggr_depth = 0;
1923 txq->axq_totalqueued = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001924 txq->axq_linkbuf = NULL;
1925 sc->sc_txqsetup |= 1<<qnum;
1926 }
1927 return &sc->sc_txq[qnum];
1928}
1929
1930/* Reclaim resources for a setup queue */
1931
1932void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq)
1933{
1934 ath9k_hw_releasetxqueue(sc->sc_ah, txq->axq_qnum);
1935 sc->sc_txqsetup &= ~(1<<txq->axq_qnum);
1936}
1937
1938/*
1939 * Setup a hardware data transmit queue for the specified
1940 * access control. The hal may not support all requested
1941 * queues in which case it will return a reference to a
1942 * previously setup queue. We record the mapping from ac's
1943 * to h/w queues for use by ath_tx_start and also track
1944 * the set of h/w queues being used to optimize work in the
1945 * transmit interrupt handler and related routines.
1946 */
1947
1948int ath_tx_setup(struct ath_softc *sc, int haltype)
1949{
1950 struct ath_txq *txq;
1951
1952 if (haltype >= ARRAY_SIZE(sc->sc_haltype2q)) {
1953 DPRINTF(sc, ATH_DBG_FATAL,
1954 "%s: HAL AC %u out of range, max %zu!\n",
1955 __func__, haltype, ARRAY_SIZE(sc->sc_haltype2q));
1956 return 0;
1957 }
1958 txq = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, haltype);
1959 if (txq != NULL) {
1960 sc->sc_haltype2q[haltype] = txq->axq_qnum;
1961 return 1;
1962 } else
1963 return 0;
1964}
1965
1966int ath_tx_get_qnum(struct ath_softc *sc, int qtype, int haltype)
1967{
1968 int qnum;
1969
1970 switch (qtype) {
1971 case ATH9K_TX_QUEUE_DATA:
1972 if (haltype >= ARRAY_SIZE(sc->sc_haltype2q)) {
1973 DPRINTF(sc, ATH_DBG_FATAL,
1974 "%s: HAL AC %u out of range, max %zu!\n",
1975 __func__,
1976 haltype, ARRAY_SIZE(sc->sc_haltype2q));
1977 return -1;
1978 }
1979 qnum = sc->sc_haltype2q[haltype];
1980 break;
1981 case ATH9K_TX_QUEUE_BEACON:
1982 qnum = sc->sc_bhalq;
1983 break;
1984 case ATH9K_TX_QUEUE_CAB:
1985 qnum = sc->sc_cabq->axq_qnum;
1986 break;
1987 default:
1988 qnum = -1;
1989 }
1990 return qnum;
1991}
1992
Sujith528f0c62008-10-29 10:14:26 +05301993/* Get a transmit queue, if available */
1994
1995struct ath_txq *ath_test_get_txq(struct ath_softc *sc, struct sk_buff *skb)
1996{
1997 struct ath_txq *txq = NULL;
1998 int qnum;
1999
2000 qnum = ath_get_hal_qnum(skb_get_queue_mapping(skb), sc);
2001 txq = &sc->sc_txq[qnum];
2002
2003 spin_lock_bh(&txq->axq_lock);
2004
2005 /* Try to avoid running out of descriptors */
2006 if (txq->axq_depth >= (ATH_TXBUF - 20)) {
2007 DPRINTF(sc, ATH_DBG_FATAL,
2008 "%s: TX queue: %d is full, depth: %d\n",
2009 __func__, qnum, txq->axq_depth);
2010 ieee80211_stop_queue(sc->hw, skb_get_queue_mapping(skb));
2011 txq->stopped = 1;
2012 spin_unlock_bh(&txq->axq_lock);
2013 return NULL;
2014 }
2015
2016 spin_unlock_bh(&txq->axq_lock);
2017
2018 return txq;
2019}
2020
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002021/* Update parameters for a transmit queue */
2022
Sujithea9880f2008-08-07 10:53:10 +05302023int ath_txq_update(struct ath_softc *sc, int qnum,
2024 struct ath9k_tx_queue_info *qinfo)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002025{
2026 struct ath_hal *ah = sc->sc_ah;
2027 int error = 0;
Sujithea9880f2008-08-07 10:53:10 +05302028 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002029
2030 if (qnum == sc->sc_bhalq) {
2031 /*
2032 * XXX: for beacon queue, we just save the parameter.
2033 * It will be picked up by ath_beaconq_config when
2034 * it's necessary.
2035 */
Sujithea9880f2008-08-07 10:53:10 +05302036 sc->sc_beacon_qi = *qinfo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002037 return 0;
2038 }
2039
2040 ASSERT(sc->sc_txq[qnum].axq_qnum == qnum);
2041
Sujithea9880f2008-08-07 10:53:10 +05302042 ath9k_hw_get_txq_props(ah, qnum, &qi);
2043 qi.tqi_aifs = qinfo->tqi_aifs;
2044 qi.tqi_cwmin = qinfo->tqi_cwmin;
2045 qi.tqi_cwmax = qinfo->tqi_cwmax;
2046 qi.tqi_burstTime = qinfo->tqi_burstTime;
2047 qi.tqi_readyTime = qinfo->tqi_readyTime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002048
Sujithea9880f2008-08-07 10:53:10 +05302049 if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002050 DPRINTF(sc, ATH_DBG_FATAL,
2051 "%s: unable to update hardware queue %u!\n",
2052 __func__, qnum);
2053 error = -EIO;
2054 } else {
2055 ath9k_hw_resettxqueue(ah, qnum); /* push to h/w */
2056 }
2057
2058 return error;
2059}
2060
2061int ath_cabq_update(struct ath_softc *sc)
2062{
Sujithea9880f2008-08-07 10:53:10 +05302063 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002064 int qnum = sc->sc_cabq->axq_qnum;
2065 struct ath_beacon_config conf;
2066
Sujithea9880f2008-08-07 10:53:10 +05302067 ath9k_hw_get_txq_props(sc->sc_ah, qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002068 /*
2069 * Ensure the readytime % is within the bounds.
2070 */
2071 if (sc->sc_config.cabqReadytime < ATH9K_READY_TIME_LO_BOUND)
2072 sc->sc_config.cabqReadytime = ATH9K_READY_TIME_LO_BOUND;
2073 else if (sc->sc_config.cabqReadytime > ATH9K_READY_TIME_HI_BOUND)
2074 sc->sc_config.cabqReadytime = ATH9K_READY_TIME_HI_BOUND;
2075
2076 ath_get_beaconconfig(sc, ATH_IF_ID_ANY, &conf);
2077 qi.tqi_readyTime =
2078 (conf.beacon_interval * sc->sc_config.cabqReadytime) / 100;
2079 ath_txq_update(sc, qnum, &qi);
2080
2081 return 0;
2082}
2083
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002084/* Deferred processing of transmit interrupt */
2085
2086void ath_tx_tasklet(struct ath_softc *sc)
2087{
Sujith1fe11322008-08-26 08:11:06 +05302088 int i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002089 u32 qcumask = ((1 << ATH9K_NUM_TX_QUEUES) - 1);
2090
2091 ath9k_hw_gettxintrtxqs(sc->sc_ah, &qcumask);
2092
2093 /*
2094 * Process each active queue.
2095 */
2096 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2097 if (ATH_TXQ_SETUP(sc, i) && (qcumask & (1 << i)))
Sujith1fe11322008-08-26 08:11:06 +05302098 ath_tx_processq(sc, &sc->sc_txq[i]);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002099 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002100}
2101
2102void ath_tx_draintxq(struct ath_softc *sc,
2103 struct ath_txq *txq, bool retry_tx)
2104{
2105 struct ath_buf *bf, *lastbf;
2106 struct list_head bf_head;
2107
2108 INIT_LIST_HEAD(&bf_head);
2109
2110 /*
2111 * NB: this assumes output has been stopped and
2112 * we do not need to block ath_tx_tasklet
2113 */
2114 for (;;) {
2115 spin_lock_bh(&txq->axq_lock);
2116
2117 if (list_empty(&txq->axq_q)) {
2118 txq->axq_link = NULL;
2119 txq->axq_linkbuf = NULL;
2120 spin_unlock_bh(&txq->axq_lock);
2121 break;
2122 }
2123
2124 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
2125
2126 if (bf->bf_status & ATH_BUFSTATUS_STALE) {
2127 list_del(&bf->list);
2128 spin_unlock_bh(&txq->axq_lock);
2129
2130 spin_lock_bh(&sc->sc_txbuflock);
2131 list_add_tail(&bf->list, &sc->sc_txbuf);
2132 spin_unlock_bh(&sc->sc_txbuflock);
2133 continue;
2134 }
2135
2136 lastbf = bf->bf_lastbf;
2137 if (!retry_tx)
2138 lastbf->bf_desc->ds_txstat.ts_flags =
2139 ATH9K_TX_SW_ABORTED;
2140
2141 /* remove ath_buf's of the same mpdu from txq */
2142 list_cut_position(&bf_head, &txq->axq_q, &lastbf->list);
2143 txq->axq_depth--;
2144
2145 spin_unlock_bh(&txq->axq_lock);
2146
Sujithcd3d39a2008-08-11 14:03:34 +05302147 if (bf_isampdu(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002148 ath_tx_complete_aggr_rifs(sc, txq, bf, &bf_head, 0);
2149 else
2150 ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
2151 }
2152
2153 /* flush any pending frames if aggregation is enabled */
Sujith672840a2008-08-11 14:05:08 +05302154 if (sc->sc_flags & SC_OP_TXAGGR) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002155 if (!retry_tx) {
2156 spin_lock_bh(&txq->axq_lock);
Sujithb5aa9bf2008-10-29 10:13:31 +05302157 ath_txq_drain_pending_buffers(sc, txq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002158 spin_unlock_bh(&txq->axq_lock);
2159 }
2160 }
2161}
2162
2163/* Drain the transmit queues and reclaim resources */
2164
2165void ath_draintxq(struct ath_softc *sc, bool retry_tx)
2166{
2167 /* stop beacon queue. The beacon will be freed when
2168 * we go to INIT state */
Sujith672840a2008-08-11 14:05:08 +05302169 if (!(sc->sc_flags & SC_OP_INVALID)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002170 (void) ath9k_hw_stoptxdma(sc->sc_ah, sc->sc_bhalq);
2171 DPRINTF(sc, ATH_DBG_XMIT, "%s: beacon queue %x\n", __func__,
2172 ath9k_hw_gettxbuf(sc->sc_ah, sc->sc_bhalq));
2173 }
2174
2175 ath_drain_txdataq(sc, retry_tx);
2176}
2177
2178u32 ath_txq_depth(struct ath_softc *sc, int qnum)
2179{
2180 return sc->sc_txq[qnum].axq_depth;
2181}
2182
2183u32 ath_txq_aggr_depth(struct ath_softc *sc, int qnum)
2184{
2185 return sc->sc_txq[qnum].axq_aggr_depth;
2186}
2187
Sujithccc75c52008-10-29 10:18:14 +05302188bool ath_tx_aggr_check(struct ath_softc *sc, struct ath_node *an, u8 tidno)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002189{
2190 struct ath_atx_tid *txtid;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002191
Sujith672840a2008-08-11 14:05:08 +05302192 if (!(sc->sc_flags & SC_OP_TXAGGR))
Sujithccc75c52008-10-29 10:18:14 +05302193 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002194
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002195 txtid = ATH_AN_2_TID(an, tidno);
2196
Sujitha37c2c72008-10-29 10:15:40 +05302197 if (!(txtid->state & AGGR_ADDBA_COMPLETE)) {
2198 if (!(txtid->state & AGGR_ADDBA_PROGRESS) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002199 (txtid->addba_exchangeattempts < ADDBA_EXCHANGE_ATTEMPTS)) {
2200 txtid->addba_exchangeattempts++;
Sujithccc75c52008-10-29 10:18:14 +05302201 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002202 }
2203 }
2204
Sujithccc75c52008-10-29 10:18:14 +05302205 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002206}
2207
2208/* Start TX aggregation */
2209
Sujithb5aa9bf2008-10-29 10:13:31 +05302210int ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta,
2211 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002212{
2213 struct ath_atx_tid *txtid;
2214 struct ath_node *an;
2215
Sujithb5aa9bf2008-10-29 10:13:31 +05302216 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002217
Sujith672840a2008-08-11 14:05:08 +05302218 if (sc->sc_flags & SC_OP_TXAGGR) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002219 txtid = ATH_AN_2_TID(an, tid);
Sujitha37c2c72008-10-29 10:15:40 +05302220 txtid->state |= AGGR_ADDBA_PROGRESS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002221 ath_tx_pause_tid(sc, txtid);
2222 }
2223
2224 return 0;
2225}
2226
2227/* Stop tx aggregation */
2228
Sujithb5aa9bf2008-10-29 10:13:31 +05302229int ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002230{
Sujithb5aa9bf2008-10-29 10:13:31 +05302231 struct ath_node *an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002232
2233 ath_tx_aggr_teardown(sc, an, tid);
2234 return 0;
2235}
2236
Sujith8469cde2008-10-29 10:19:28 +05302237/* Resume tx aggregation */
2238
2239void ath_tx_aggr_resume(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
2240{
2241 struct ath_atx_tid *txtid;
2242 struct ath_node *an;
2243
2244 an = (struct ath_node *)sta->drv_priv;
2245
2246 if (sc->sc_flags & SC_OP_TXAGGR) {
2247 txtid = ATH_AN_2_TID(an, tid);
2248 txtid->baw_size =
2249 IEEE80211_MIN_AMPDU_BUF << sta->ht_cap.ampdu_factor;
2250 txtid->state |= AGGR_ADDBA_COMPLETE;
2251 txtid->state &= ~AGGR_ADDBA_PROGRESS;
2252 ath_tx_resume_tid(sc, txtid);
2253 }
2254}
2255
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002256/*
2257 * Performs transmit side cleanup when TID changes from aggregated to
2258 * unaggregated.
2259 * - Pause the TID and mark cleanup in progress
2260 * - Discard all retry frames from the s/w queue.
2261 */
2262
Sujithb5aa9bf2008-10-29 10:13:31 +05302263void ath_tx_aggr_teardown(struct ath_softc *sc, struct ath_node *an, u8 tid)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002264{
2265 struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid);
2266 struct ath_txq *txq = &sc->sc_txq[txtid->ac->qnum];
2267 struct ath_buf *bf;
2268 struct list_head bf_head;
2269 INIT_LIST_HEAD(&bf_head);
2270
2271 DPRINTF(sc, ATH_DBG_AGGR, "%s: teardown TX aggregation\n", __func__);
2272
Sujitha37c2c72008-10-29 10:15:40 +05302273 if (txtid->state & AGGR_CLEANUP) /* cleanup is in progress */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002274 return;
2275
Sujitha37c2c72008-10-29 10:15:40 +05302276 if (!(txtid->state & AGGR_ADDBA_COMPLETE)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002277 txtid->addba_exchangeattempts = 0;
2278 return;
2279 }
2280
2281 /* TID must be paused first */
2282 ath_tx_pause_tid(sc, txtid);
2283
2284 /* drop all software retried frames and mark this TID */
2285 spin_lock_bh(&txq->axq_lock);
2286 while (!list_empty(&txtid->buf_q)) {
2287 bf = list_first_entry(&txtid->buf_q, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +05302288 if (!bf_isretried(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002289 /*
2290 * NB: it's based on the assumption that
2291 * software retried frame will always stay
2292 * at the head of software queue.
2293 */
2294 break;
2295 }
2296 list_cut_position(&bf_head,
2297 &txtid->buf_q, &bf->bf_lastfrm->list);
2298 ath_tx_update_baw(sc, txtid, bf->bf_seqno);
2299
2300 /* complete this sub-frame */
2301 ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
2302 }
2303
2304 if (txtid->baw_head != txtid->baw_tail) {
2305 spin_unlock_bh(&txq->axq_lock);
Sujitha37c2c72008-10-29 10:15:40 +05302306 txtid->state |= AGGR_CLEANUP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002307 } else {
Sujitha37c2c72008-10-29 10:15:40 +05302308 txtid->state &= ~AGGR_ADDBA_COMPLETE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002309 txtid->addba_exchangeattempts = 0;
2310 spin_unlock_bh(&txq->axq_lock);
2311 ath_tx_flush_tid(sc, txtid);
2312 }
2313}
2314
2315/*
2316 * Tx scheduling logic
2317 * NB: must be called with txq lock held
2318 */
2319
2320void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq)
2321{
2322 struct ath_atx_ac *ac;
2323 struct ath_atx_tid *tid;
2324
2325 /* nothing to schedule */
2326 if (list_empty(&txq->axq_acq))
2327 return;
2328 /*
2329 * get the first node/ac pair on the queue
2330 */
2331 ac = list_first_entry(&txq->axq_acq, struct ath_atx_ac, list);
2332 list_del(&ac->list);
2333 ac->sched = false;
2334
2335 /*
2336 * process a single tid per destination
2337 */
2338 do {
2339 /* nothing to schedule */
2340 if (list_empty(&ac->tid_q))
2341 return;
2342
2343 tid = list_first_entry(&ac->tid_q, struct ath_atx_tid, list);
2344 list_del(&tid->list);
2345 tid->sched = false;
2346
2347 if (tid->paused) /* check next tid to keep h/w busy */
2348 continue;
2349
Sujith43453b32008-10-29 10:14:52 +05302350 if ((txq->axq_depth % 2) == 0)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002351 ath_tx_sched_aggr(sc, txq, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002352
2353 /*
2354 * add tid to round-robin queue if more frames
2355 * are pending for the tid
2356 */
2357 if (!list_empty(&tid->buf_q))
2358 ath_tx_queue_tid(txq, tid);
2359
2360 /* only schedule one TID at a time */
2361 break;
2362 } while (!list_empty(&ac->tid_q));
2363
2364 /*
2365 * schedule AC if more TIDs need processing
2366 */
2367 if (!list_empty(&ac->tid_q)) {
2368 /*
2369 * add dest ac to txq if not already added
2370 */
2371 if (!ac->sched) {
2372 ac->sched = true;
2373 list_add_tail(&ac->list, &txq->axq_acq);
2374 }
2375 }
2376}
2377
2378/* Initialize per-node transmit state */
2379
2380void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an)
2381{
Sujithc5170162008-10-29 10:13:59 +05302382 struct ath_atx_tid *tid;
2383 struct ath_atx_ac *ac;
2384 int tidno, acno;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002385
Sujithc5170162008-10-29 10:13:59 +05302386 /*
2387 * Init per tid tx state
2388 */
2389 for (tidno = 0, tid = &an->an_aggr.tx.tid[tidno];
2390 tidno < WME_NUM_TID;
2391 tidno++, tid++) {
2392 tid->an = an;
2393 tid->tidno = tidno;
2394 tid->seq_start = tid->seq_next = 0;
2395 tid->baw_size = WME_MAX_BA;
2396 tid->baw_head = tid->baw_tail = 0;
2397 tid->sched = false;
2398 tid->paused = false;
Sujitha37c2c72008-10-29 10:15:40 +05302399 tid->state &= ~AGGR_CLEANUP;
Sujithc5170162008-10-29 10:13:59 +05302400 INIT_LIST_HEAD(&tid->buf_q);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002401
Sujithc5170162008-10-29 10:13:59 +05302402 acno = TID_TO_WME_AC(tidno);
2403 tid->ac = &an->an_aggr.tx.ac[acno];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002404
Sujithc5170162008-10-29 10:13:59 +05302405 /* ADDBA state */
Sujitha37c2c72008-10-29 10:15:40 +05302406 tid->state &= ~AGGR_ADDBA_COMPLETE;
2407 tid->state &= ~AGGR_ADDBA_PROGRESS;
2408 tid->addba_exchangeattempts = 0;
Sujithc5170162008-10-29 10:13:59 +05302409 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002410
Sujithc5170162008-10-29 10:13:59 +05302411 /*
2412 * Init per ac tx state
2413 */
2414 for (acno = 0, ac = &an->an_aggr.tx.ac[acno];
2415 acno < WME_NUM_AC; acno++, ac++) {
2416 ac->sched = false;
2417 INIT_LIST_HEAD(&ac->tid_q);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002418
Sujithc5170162008-10-29 10:13:59 +05302419 switch (acno) {
2420 case WME_AC_BE:
2421 ac->qnum = ath_tx_get_qnum(sc,
2422 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
2423 break;
2424 case WME_AC_BK:
2425 ac->qnum = ath_tx_get_qnum(sc,
2426 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BK);
2427 break;
2428 case WME_AC_VI:
2429 ac->qnum = ath_tx_get_qnum(sc,
2430 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VI);
2431 break;
2432 case WME_AC_VO:
2433 ac->qnum = ath_tx_get_qnum(sc,
2434 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VO);
2435 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002436 }
2437 }
2438}
2439
2440/* Cleanupthe pending buffers for the node. */
2441
Sujithb5aa9bf2008-10-29 10:13:31 +05302442void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002443{
2444 int i;
2445 struct ath_atx_ac *ac, *ac_tmp;
2446 struct ath_atx_tid *tid, *tid_tmp;
2447 struct ath_txq *txq;
2448 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2449 if (ATH_TXQ_SETUP(sc, i)) {
2450 txq = &sc->sc_txq[i];
2451
Sujithb5aa9bf2008-10-29 10:13:31 +05302452 spin_lock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002453
2454 list_for_each_entry_safe(ac,
2455 ac_tmp, &txq->axq_acq, list) {
2456 tid = list_first_entry(&ac->tid_q,
2457 struct ath_atx_tid, list);
2458 if (tid && tid->an != an)
2459 continue;
2460 list_del(&ac->list);
2461 ac->sched = false;
2462
2463 list_for_each_entry_safe(tid,
2464 tid_tmp, &ac->tid_q, list) {
2465 list_del(&tid->list);
2466 tid->sched = false;
Sujithb5aa9bf2008-10-29 10:13:31 +05302467 ath_tid_drain(sc, txq, tid);
Sujitha37c2c72008-10-29 10:15:40 +05302468 tid->state &= ~AGGR_ADDBA_COMPLETE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002469 tid->addba_exchangeattempts = 0;
Sujitha37c2c72008-10-29 10:15:40 +05302470 tid->state &= ~AGGR_CLEANUP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002471 }
2472 }
2473
Sujithb5aa9bf2008-10-29 10:13:31 +05302474 spin_unlock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002475 }
2476 }
2477}
2478
Jouni Malinene022edb2008-08-22 17:31:33 +03002479void ath_tx_cabq(struct ath_softc *sc, struct sk_buff *skb)
2480{
2481 int hdrlen, padsize;
2482 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2483 struct ath_tx_control txctl;
2484
Sujith528f0c62008-10-29 10:14:26 +05302485 memset(&txctl, 0, sizeof(struct ath_tx_control));
2486
Jouni Malinene022edb2008-08-22 17:31:33 +03002487 /*
2488 * As a temporary workaround, assign seq# here; this will likely need
2489 * to be cleaned up to work better with Beacon transmission and virtual
2490 * BSSes.
2491 */
2492 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
2493 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2494 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
2495 sc->seq_no += 0x10;
2496 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
2497 hdr->seq_ctrl |= cpu_to_le16(sc->seq_no);
2498 }
2499
2500 /* Add the padding after the header if this is not already done */
2501 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
2502 if (hdrlen & 3) {
2503 padsize = hdrlen % 4;
2504 if (skb_headroom(skb) < padsize) {
2505 DPRINTF(sc, ATH_DBG_XMIT, "%s: TX CABQ padding "
2506 "failed\n", __func__);
2507 dev_kfree_skb_any(skb);
2508 return;
2509 }
2510 skb_push(skb, padsize);
2511 memmove(skb->data, skb->data + padsize, hdrlen);
2512 }
2513
Sujith528f0c62008-10-29 10:14:26 +05302514 txctl.txq = sc->sc_cabq;
2515
Jouni Malinene022edb2008-08-22 17:31:33 +03002516 DPRINTF(sc, ATH_DBG_XMIT, "%s: transmitting CABQ packet, skb: %p\n",
2517 __func__,
2518 skb);
2519
Sujith528f0c62008-10-29 10:14:26 +05302520 if (ath_tx_start(sc, skb, &txctl) != 0) {
2521 DPRINTF(sc, ATH_DBG_XMIT, "%s: TX failed\n", __func__);
2522 goto exit;
Jouni Malinene022edb2008-08-22 17:31:33 +03002523 }
Jouni Malinene022edb2008-08-22 17:31:33 +03002524
Sujith528f0c62008-10-29 10:14:26 +05302525 return;
2526exit:
2527 dev_kfree_skb_any(skb);
2528}