blob: 8073c71b3a675b62c6c12fd7f952f1f1f78759f7 [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
17/*
18 * Implementation of transmit path.
19 */
20
21#include "core.h"
22
23#define BITS_PER_BYTE 8
24#define OFDM_PLCP_BITS 22
25#define HT_RC_2_MCS(_rc) ((_rc) & 0x0f)
26#define HT_RC_2_STREAMS(_rc) ((((_rc) & 0x78) >> 3) + 1)
27#define L_STF 8
28#define L_LTF 8
29#define L_SIG 4
30#define HT_SIG 8
31#define HT_STF 4
32#define HT_LTF(_ns) (4 * (_ns))
33#define SYMBOL_TIME(_ns) ((_ns) << 2) /* ns * 4 us */
34#define SYMBOL_TIME_HALFGI(_ns) (((_ns) * 18 + 4) / 5) /* ns * 3.6 us */
35#define NUM_SYMBOLS_PER_USEC(_usec) (_usec >> 2)
36#define NUM_SYMBOLS_PER_USEC_HALFGI(_usec) (((_usec*5)-4)/18)
37
38#define OFDM_SIFS_TIME 16
39
40static u32 bits_per_symbol[][2] = {
41 /* 20MHz 40MHz */
42 { 26, 54 }, /* 0: BPSK */
43 { 52, 108 }, /* 1: QPSK 1/2 */
44 { 78, 162 }, /* 2: QPSK 3/4 */
45 { 104, 216 }, /* 3: 16-QAM 1/2 */
46 { 156, 324 }, /* 4: 16-QAM 3/4 */
47 { 208, 432 }, /* 5: 64-QAM 2/3 */
48 { 234, 486 }, /* 6: 64-QAM 3/4 */
49 { 260, 540 }, /* 7: 64-QAM 5/6 */
50 { 52, 108 }, /* 8: BPSK */
51 { 104, 216 }, /* 9: QPSK 1/2 */
52 { 156, 324 }, /* 10: QPSK 3/4 */
53 { 208, 432 }, /* 11: 16-QAM 1/2 */
54 { 312, 648 }, /* 12: 16-QAM 3/4 */
55 { 416, 864 }, /* 13: 64-QAM 2/3 */
56 { 468, 972 }, /* 14: 64-QAM 3/4 */
57 { 520, 1080 }, /* 15: 64-QAM 5/6 */
58};
59
60#define IS_HT_RATE(_rate) ((_rate) & 0x80)
61
62/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070063 * Insert a chain of ath_buf (descriptors) on a txq and
64 * assume the descriptors are already chained together by caller.
65 * NB: must be called with txq lock held
66 */
67
68static void ath_tx_txqaddbuf(struct ath_softc *sc,
69 struct ath_txq *txq, struct list_head *head)
70{
71 struct ath_hal *ah = sc->sc_ah;
72 struct ath_buf *bf;
73 /*
74 * Insert the frame on the outbound list and
75 * pass it on to the hardware.
76 */
77
78 if (list_empty(head))
79 return;
80
81 bf = list_first_entry(head, struct ath_buf, list);
82
83 list_splice_tail_init(head, &txq->axq_q);
84 txq->axq_depth++;
85 txq->axq_totalqueued++;
86 txq->axq_linkbuf = list_entry(txq->axq_q.prev, struct ath_buf, list);
87
88 DPRINTF(sc, ATH_DBG_QUEUE,
89 "%s: txq depth = %d\n", __func__, txq->axq_depth);
90
91 if (txq->axq_link == NULL) {
92 ath9k_hw_puttxbuf(ah, txq->axq_qnum, bf->bf_daddr);
93 DPRINTF(sc, ATH_DBG_XMIT,
94 "%s: TXDP[%u] = %llx (%p)\n",
95 __func__, txq->axq_qnum,
96 ito64(bf->bf_daddr), bf->bf_desc);
97 } else {
98 *txq->axq_link = bf->bf_daddr;
99 DPRINTF(sc, ATH_DBG_XMIT, "%s: link[%u] (%p)=%llx (%p)\n",
100 __func__,
101 txq->axq_qnum, txq->axq_link,
102 ito64(bf->bf_daddr), bf->bf_desc);
103 }
104 txq->axq_link = &(bf->bf_lastbf->bf_desc->ds_link);
105 ath9k_hw_txstart(ah, txq->axq_qnum);
106}
107
108/* Get transmit rate index using rate in Kbps */
109
110static int ath_tx_findindex(const struct ath9k_rate_table *rt, int rate)
111{
112 int i;
113 int ndx = 0;
114
115 for (i = 0; i < rt->rateCount; i++) {
116 if (rt->info[i].rateKbps == rate) {
117 ndx = i;
118 break;
119 }
120 }
121
122 return ndx;
123}
124
125/* Check if it's okay to send out aggregates */
126
127static int ath_aggr_query(struct ath_softc *sc,
128 struct ath_node *an, u8 tidno)
129{
130 struct ath_atx_tid *tid;
131 tid = ATH_AN_2_TID(an, tidno);
132
133 if (tid->addba_exchangecomplete || tid->addba_exchangeinprogress)
134 return 1;
135 else
136 return 0;
137}
138
139static enum ath9k_pkt_type get_hal_packet_type(struct ieee80211_hdr *hdr)
140{
141 enum ath9k_pkt_type htype;
142 __le16 fc;
143
144 fc = hdr->frame_control;
145
146 /* Calculate Atheros packet type from IEEE80211 packet header */
147
148 if (ieee80211_is_beacon(fc))
149 htype = ATH9K_PKT_TYPE_BEACON;
150 else if (ieee80211_is_probe_resp(fc))
151 htype = ATH9K_PKT_TYPE_PROBE_RESP;
152 else if (ieee80211_is_atim(fc))
153 htype = ATH9K_PKT_TYPE_ATIM;
154 else if (ieee80211_is_pspoll(fc))
155 htype = ATH9K_PKT_TYPE_PSPOLL;
156 else
157 htype = ATH9K_PKT_TYPE_NORMAL;
158
159 return htype;
160}
161
162static void fill_min_rates(struct sk_buff *skb, struct ath_tx_control *txctl)
163{
164 struct ieee80211_hdr *hdr;
165 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
166 struct ath_tx_info_priv *tx_info_priv;
167 __le16 fc;
168
169 hdr = (struct ieee80211_hdr *)skb->data;
170 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +0200171
172 /* XXX: HACK! */
173 tx_info_priv = (struct ath_tx_info_priv *)tx_info->control.vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700174
175 if (ieee80211_is_mgmt(fc) || ieee80211_is_ctl(fc)) {
176 txctl->use_minrate = 1;
177 txctl->min_rate = tx_info_priv->min_rate;
178 } else if (ieee80211_is_data(fc)) {
179 if (ieee80211_is_nullfunc(fc) ||
180 /* Port Access Entity (IEEE 802.1X) */
181 (skb->protocol == cpu_to_be16(0x888E))) {
182 txctl->use_minrate = 1;
183 txctl->min_rate = tx_info_priv->min_rate;
184 }
185 if (is_multicast_ether_addr(hdr->addr1))
186 txctl->mcast_rate = tx_info_priv->min_rate;
187 }
188
189}
190
191/* This function will setup additional txctl information, mostly rate stuff */
192/* FIXME: seqno, ps */
193static int ath_tx_prepare(struct ath_softc *sc,
194 struct sk_buff *skb,
195 struct ath_tx_control *txctl)
196{
197 struct ieee80211_hw *hw = sc->hw;
198 struct ieee80211_hdr *hdr;
199 struct ath_rc_series *rcs;
200 struct ath_txq *txq = NULL;
201 const struct ath9k_rate_table *rt;
202 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
203 struct ath_tx_info_priv *tx_info_priv;
204 int hdrlen;
205 u8 rix, antenna;
206 __le16 fc;
207 u8 *qc;
208
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700209 txctl->dev = sc;
210 hdr = (struct ieee80211_hdr *)skb->data;
211 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
212 fc = hdr->frame_control;
213
214 rt = sc->sc_currates;
215 BUG_ON(!rt);
216
217 /* Fill misc fields */
218
219 spin_lock_bh(&sc->node_lock);
220 txctl->an = ath_node_get(sc, hdr->addr1);
221 /* create a temp node, if the node is not there already */
222 if (!txctl->an)
223 txctl->an = ath_node_attach(sc, hdr->addr1, 0);
224 spin_unlock_bh(&sc->node_lock);
225
226 if (ieee80211_is_data_qos(fc)) {
227 qc = ieee80211_get_qos_ctl(hdr);
228 txctl->tidno = qc[0] & 0xf;
229 }
230
231 txctl->if_id = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700232 txctl->frmlen = skb->len + FCS_LEN - (hdrlen & 3);
233 txctl->txpower = MAX_RATE_POWER; /* FIXME */
234
235 /* Fill Key related fields */
236
237 txctl->keytype = ATH9K_KEY_TYPE_CLEAR;
238 txctl->keyix = ATH9K_TXKEYIX_INVALID;
239
240 if (tx_info->control.hw_key) {
241 txctl->keyix = tx_info->control.hw_key->hw_key_idx;
Felix Fietkau76708de2008-10-05 18:02:48 +0200242 txctl->frmlen += tx_info->control.hw_key->icv_len;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700243
Senthil Balasubramaniand0be7cc2008-09-17 12:39:49 +0530244 if (tx_info->control.hw_key->alg == ALG_WEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700245 txctl->keytype = ATH9K_KEY_TYPE_WEP;
Senthil Balasubramaniand0be7cc2008-09-17 12:39:49 +0530246 else if (tx_info->control.hw_key->alg == ALG_TKIP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700247 txctl->keytype = ATH9K_KEY_TYPE_TKIP;
Senthil Balasubramaniand0be7cc2008-09-17 12:39:49 +0530248 else if (tx_info->control.hw_key->alg == ALG_CCMP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700249 txctl->keytype = ATH9K_KEY_TYPE_AES;
250 }
251
252 /* Fill packet type */
253
254 txctl->atype = get_hal_packet_type(hdr);
255
256 /* Fill qnum */
257
Jouni Malinene022edb2008-08-22 17:31:33 +0300258 if (unlikely(txctl->flags & ATH9K_TXDESC_CAB)) {
259 txctl->qnum = 0;
260 txq = sc->sc_cabq;
261 } else {
262 txctl->qnum = ath_get_hal_qnum(skb_get_queue_mapping(skb), sc);
263 txq = &sc->sc_txq[txctl->qnum];
264 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700265 spin_lock_bh(&txq->axq_lock);
266
267 /* Try to avoid running out of descriptors */
Jouni Malinene022edb2008-08-22 17:31:33 +0300268 if (txq->axq_depth >= (ATH_TXBUF - 20) &&
269 !(txctl->flags & ATH9K_TXDESC_CAB)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700270 DPRINTF(sc, ATH_DBG_FATAL,
271 "%s: TX queue: %d is full, depth: %d\n",
272 __func__,
273 txctl->qnum,
274 txq->axq_depth);
275 ieee80211_stop_queue(hw, skb_get_queue_mapping(skb));
276 txq->stopped = 1;
277 spin_unlock_bh(&txq->axq_lock);
278 return -1;
279 }
280
281 spin_unlock_bh(&txq->axq_lock);
282
283 /* Fill rate */
284
285 fill_min_rates(skb, txctl);
286
287 /* Fill flags */
288
Luis R. Rodriguezb139a102008-10-22 13:28:43 -0700289 txctl->flags |= ATH9K_TXDESC_CLRDMASK /* needed for crypto errors */
290 | ATH9K_TXDESC_INTREQ; /* Generate an interrupt */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700291
292 if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK)
Jouni Malinenb14ecdd2008-08-11 14:01:51 +0300293 txctl->flags |= ATH9K_TXDESC_NOACK;
Johannes Berge6a98542008-10-21 12:40:02 +0200294
295 if (tx_info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
Jouni Malinenb14ecdd2008-08-11 14:01:51 +0300296 txctl->flags |= ATH9K_TXDESC_RTSENA;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700297
298 /*
299 * Setup for rate calculations.
300 */
Johannes Berge6a98542008-10-21 12:40:02 +0200301
302 /* XXX: HACK! */
303 tx_info_priv = (struct ath_tx_info_priv *)tx_info->control.vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700304 rcs = tx_info_priv->rcs;
305
306 if (ieee80211_is_data(fc) && !txctl->use_minrate) {
307
308 /* Enable HT only for DATA frames and not for EAPOL */
Johannes Bergae5eb022008-10-14 16:58:37 +0200309 /* XXX why AMPDU only?? */
310 txctl->ht = (hw->conf.ht.enabled &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700311 (tx_info->flags & IEEE80211_TX_CTL_AMPDU));
312
313 if (is_multicast_ether_addr(hdr->addr1)) {
314 rcs[0].rix = (u8)
315 ath_tx_findindex(rt, txctl->mcast_rate);
316
317 /*
318 * mcast packets are not re-tried.
319 */
320 rcs[0].tries = 1;
321 }
322 /* For HT capable stations, we save tidno for later use.
323 * We also override seqno set by upper layer with the one
324 * in tx aggregation state.
325 *
326 * First, the fragmentation stat is determined.
327 * If fragmentation is on, the sequence number is
328 * not overridden, since it has been
329 * incremented by the fragmentation routine.
330 */
331 if (likely(!(txctl->flags & ATH9K_TXDESC_FRAG_IS_ON)) &&
Sujith672840a2008-08-11 14:05:08 +0530332 txctl->ht && (sc->sc_flags & SC_OP_TXAGGR)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700333 struct ath_atx_tid *tid;
334
335 tid = ATH_AN_2_TID(txctl->an, txctl->tidno);
336
337 hdr->seq_ctrl = cpu_to_le16(tid->seq_next <<
338 IEEE80211_SEQ_SEQ_SHIFT);
339 txctl->seqno = tid->seq_next;
340 INCR(tid->seq_next, IEEE80211_SEQ_MAX);
341 }
342 } else {
343 /* for management and control frames,
344 * or for NULL and EAPOL frames */
345 if (txctl->min_rate)
346 rcs[0].rix = ath_rate_findrateix(sc, txctl->min_rate);
347 else
Sujith86b89ee2008-08-07 10:54:57 +0530348 rcs[0].rix = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700349 rcs[0].tries = ATH_MGT_TXMAXTRY;
350 }
351 rix = rcs[0].rix;
352
Sujith14cc7092008-08-26 08:10:49 +0530353 if (ieee80211_has_morefrags(fc) ||
354 (le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700355 /*
Sujith14cc7092008-08-26 08:10:49 +0530356 ** Force hardware to use computed duration for next
357 ** fragment by disabling multi-rate retry, which
358 ** updates duration based on the multi-rate
359 ** duration table.
360 */
361 rcs[1].tries = rcs[2].tries = rcs[3].tries = 0;
362 rcs[1].rix = rcs[2].rix = rcs[3].rix = 0;
363 /* reset tries but keep rate index */
364 rcs[0].tries = ATH_TXMAXTRY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700365 }
366
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700367 if (is_multicast_ether_addr(hdr->addr1)) {
368 antenna = sc->sc_mcastantenna + 1;
369 sc->sc_mcastantenna = (sc->sc_mcastantenna + 1) & 0x1;
Sujith98deeea2008-08-11 14:05:46 +0530370 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700371
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700372 return 0;
373}
374
375/* To complete a chain of buffers associated a frame */
376
377static void ath_tx_complete_buf(struct ath_softc *sc,
378 struct ath_buf *bf,
379 struct list_head *bf_q,
380 int txok, int sendbar)
381{
382 struct sk_buff *skb = bf->bf_mpdu;
383 struct ath_xmit_status tx_status;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700384
385 /*
386 * Set retry information.
387 * NB: Don't use the information in the descriptor, because the frame
388 * could be software retried.
389 */
390 tx_status.retries = bf->bf_retries;
391 tx_status.flags = 0;
392
393 if (sendbar)
394 tx_status.flags = ATH_TX_BAR;
395
396 if (!txok) {
397 tx_status.flags |= ATH_TX_ERROR;
398
Sujithcd3d39a2008-08-11 14:03:34 +0530399 if (bf_isxretried(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700400 tx_status.flags |= ATH_TX_XRETRY;
401 }
402 /* Unmap this frame */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700403 pci_unmap_single(sc->pdev,
Sujithff9b6622008-08-14 13:27:16 +0530404 bf->bf_dmacontext,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700405 skb->len,
406 PCI_DMA_TODEVICE);
407 /* complete this frame */
408 ath_tx_complete(sc, skb, &tx_status, bf->bf_node);
409
410 /*
411 * Return the list of ath_buf of this mpdu to free queue
412 */
413 spin_lock_bh(&sc->sc_txbuflock);
414 list_splice_tail_init(bf_q, &sc->sc_txbuf);
415 spin_unlock_bh(&sc->sc_txbuflock);
416}
417
418/*
419 * queue up a dest/ac pair for tx scheduling
420 * NB: must be called with txq lock held
421 */
422
423static void ath_tx_queue_tid(struct ath_txq *txq, struct ath_atx_tid *tid)
424{
425 struct ath_atx_ac *ac = tid->ac;
426
427 /*
428 * if tid is paused, hold off
429 */
430 if (tid->paused)
431 return;
432
433 /*
434 * add tid to ac atmost once
435 */
436 if (tid->sched)
437 return;
438
439 tid->sched = true;
440 list_add_tail(&tid->list, &ac->tid_q);
441
442 /*
443 * add node ac to txq atmost once
444 */
445 if (ac->sched)
446 return;
447
448 ac->sched = true;
449 list_add_tail(&ac->list, &txq->axq_acq);
450}
451
452/* pause a tid */
453
454static void ath_tx_pause_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
455{
456 struct ath_txq *txq = &sc->sc_txq[tid->ac->qnum];
457
458 spin_lock_bh(&txq->axq_lock);
459
460 tid->paused++;
461
462 spin_unlock_bh(&txq->axq_lock);
463}
464
465/* resume a tid and schedule aggregate */
466
467void ath_tx_resume_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
468{
469 struct ath_txq *txq = &sc->sc_txq[tid->ac->qnum];
470
471 ASSERT(tid->paused > 0);
472 spin_lock_bh(&txq->axq_lock);
473
474 tid->paused--;
475
476 if (tid->paused > 0)
477 goto unlock;
478
479 if (list_empty(&tid->buf_q))
480 goto unlock;
481
482 /*
483 * Add this TID to scheduler and try to send out aggregates
484 */
485 ath_tx_queue_tid(txq, tid);
486 ath_txq_schedule(sc, txq);
487unlock:
488 spin_unlock_bh(&txq->axq_lock);
489}
490
491/* Compute the number of bad frames */
492
493static int ath_tx_num_badfrms(struct ath_softc *sc,
494 struct ath_buf *bf, int txok)
495{
496 struct ath_node *an = bf->bf_node;
497 int isnodegone = (an->an_flags & ATH_NODE_CLEAN);
498 struct ath_buf *bf_last = bf->bf_lastbf;
499 struct ath_desc *ds = bf_last->bf_desc;
500 u16 seq_st = 0;
501 u32 ba[WME_BA_BMP_SIZE >> 5];
502 int ba_index;
503 int nbad = 0;
504 int isaggr = 0;
505
506 if (isnodegone || ds->ds_txstat.ts_flags == ATH9K_TX_SW_ABORTED)
507 return 0;
508
Sujithcd3d39a2008-08-11 14:03:34 +0530509 isaggr = bf_isaggr(bf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700510 if (isaggr) {
511 seq_st = ATH_DS_BA_SEQ(ds);
512 memcpy(ba, ATH_DS_BA_BITMAP(ds), WME_BA_BMP_SIZE >> 3);
513 }
514
515 while (bf) {
516 ba_index = ATH_BA_INDEX(seq_st, bf->bf_seqno);
517 if (!txok || (isaggr && !ATH_BA_ISSET(ba, ba_index)))
518 nbad++;
519
520 bf = bf->bf_next;
521 }
522
523 return nbad;
524}
525
526static void ath_tx_set_retry(struct ath_softc *sc, struct ath_buf *bf)
527{
528 struct sk_buff *skb;
529 struct ieee80211_hdr *hdr;
530
Sujithcd3d39a2008-08-11 14:03:34 +0530531 bf->bf_state.bf_type |= BUF_RETRY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700532 bf->bf_retries++;
533
534 skb = bf->bf_mpdu;
535 hdr = (struct ieee80211_hdr *)skb->data;
536 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_RETRY);
537}
538
539/* Update block ack window */
540
541static void ath_tx_update_baw(struct ath_softc *sc,
542 struct ath_atx_tid *tid, int seqno)
543{
544 int index, cindex;
545
546 index = ATH_BA_INDEX(tid->seq_start, seqno);
547 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
548
549 tid->tx_buf[cindex] = NULL;
550
551 while (tid->baw_head != tid->baw_tail && !tid->tx_buf[tid->baw_head]) {
552 INCR(tid->seq_start, IEEE80211_SEQ_MAX);
553 INCR(tid->baw_head, ATH_TID_MAX_BUFS);
554 }
555}
556
557/*
558 * ath_pkt_dur - compute packet duration (NB: not NAV)
559 *
560 * rix - rate index
561 * pktlen - total bytes (delims + data + fcs + pads + pad delims)
562 * width - 0 for 20 MHz, 1 for 40 MHz
563 * half_gi - to use 4us v/s 3.6 us for symbol time
564 */
565
566static u32 ath_pkt_duration(struct ath_softc *sc,
567 u8 rix,
568 struct ath_buf *bf,
569 int width,
570 int half_gi,
571 bool shortPreamble)
572{
573 const struct ath9k_rate_table *rt = sc->sc_currates;
574 u32 nbits, nsymbits, duration, nsymbols;
575 u8 rc;
576 int streams, pktlen;
577
Sujithcd3d39a2008-08-11 14:03:34 +0530578 pktlen = bf_isaggr(bf) ? bf->bf_al : bf->bf_frmlen;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700579 rc = rt->info[rix].rateCode;
580
581 /*
582 * for legacy rates, use old function to compute packet duration
583 */
584 if (!IS_HT_RATE(rc))
585 return ath9k_hw_computetxtime(sc->sc_ah,
586 rt,
587 pktlen,
588 rix,
589 shortPreamble);
590 /*
591 * find number of symbols: PLCP + data
592 */
593 nbits = (pktlen << 3) + OFDM_PLCP_BITS;
594 nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
595 nsymbols = (nbits + nsymbits - 1) / nsymbits;
596
597 if (!half_gi)
598 duration = SYMBOL_TIME(nsymbols);
599 else
600 duration = SYMBOL_TIME_HALFGI(nsymbols);
601
602 /*
603 * addup duration for legacy/ht training and signal fields
604 */
605 streams = HT_RC_2_STREAMS(rc);
606 duration += L_STF + L_LTF + L_SIG + HT_SIG + HT_STF + HT_LTF(streams);
607 return duration;
608}
609
610/* Rate module function to set rate related fields in tx descriptor */
611
612static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf)
613{
614 struct ath_hal *ah = sc->sc_ah;
615 const struct ath9k_rate_table *rt;
616 struct ath_desc *ds = bf->bf_desc;
617 struct ath_desc *lastds = bf->bf_lastbf->bf_desc;
618 struct ath9k_11n_rate_series series[4];
619 int i, flags, rtsctsena = 0, dynamic_mimops = 0;
620 u32 ctsduration = 0;
621 u8 rix = 0, cix, ctsrate = 0;
Sujith98deeea2008-08-11 14:05:46 +0530622 u32 aggr_limit_with_rts = ah->ah_caps.rts_aggr_limit;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700623 struct ath_node *an = (struct ath_node *) bf->bf_node;
624
625 /*
626 * get the cix for the lowest valid rix.
627 */
628 rt = sc->sc_currates;
629 for (i = 4; i--;) {
630 if (bf->bf_rcs[i].tries) {
631 rix = bf->bf_rcs[i].rix;
632 break;
633 }
634 }
635 flags = (bf->bf_flags & (ATH9K_TXDESC_RTSENA | ATH9K_TXDESC_CTSENA));
636 cix = rt->info[rix].controlRate;
637
638 /*
639 * If 802.11g protection is enabled, determine whether
640 * to use RTS/CTS or just CTS. Note that this is only
641 * done for OFDM/HT unicast frames.
642 */
643 if (sc->sc_protmode != PROT_M_NONE &&
644 (rt->info[rix].phy == PHY_OFDM ||
645 rt->info[rix].phy == PHY_HT) &&
646 (bf->bf_flags & ATH9K_TXDESC_NOACK) == 0) {
647 if (sc->sc_protmode == PROT_M_RTSCTS)
648 flags = ATH9K_TXDESC_RTSENA;
649 else if (sc->sc_protmode == PROT_M_CTSONLY)
650 flags = ATH9K_TXDESC_CTSENA;
651
652 cix = rt->info[sc->sc_protrix].controlRate;
653 rtsctsena = 1;
654 }
655
656 /* For 11n, the default behavior is to enable RTS for
657 * hw retried frames. We enable the global flag here and
658 * let rate series flags determine which rates will actually
659 * use RTS.
660 */
Sujithcd3d39a2008-08-11 14:03:34 +0530661 if ((ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) && bf_isdata(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700662 BUG_ON(!an);
663 /*
664 * 802.11g protection not needed, use our default behavior
665 */
666 if (!rtsctsena)
667 flags = ATH9K_TXDESC_RTSENA;
668 /*
669 * For dynamic MIMO PS, RTS needs to precede the first aggregate
670 * and the second aggregate should have any protection at all.
671 */
672 if (an->an_smmode == ATH_SM_PWRSAV_DYNAMIC) {
Sujithcd3d39a2008-08-11 14:03:34 +0530673 if (!bf_isaggrburst(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700674 flags = ATH9K_TXDESC_RTSENA;
675 dynamic_mimops = 1;
676 } else {
677 flags = 0;
678 }
679 }
680 }
681
682 /*
683 * Set protection if aggregate protection on
684 */
685 if (sc->sc_config.ath_aggr_prot &&
Sujithcd3d39a2008-08-11 14:03:34 +0530686 (!bf_isaggr(bf) || (bf_isaggr(bf) && bf->bf_al < 8192))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700687 flags = ATH9K_TXDESC_RTSENA;
688 cix = rt->info[sc->sc_protrix].controlRate;
689 rtsctsena = 1;
690 }
691
692 /*
693 * For AR5416 - RTS cannot be followed by a frame larger than 8K.
694 */
Sujithcd3d39a2008-08-11 14:03:34 +0530695 if (bf_isaggr(bf) && (bf->bf_al > aggr_limit_with_rts)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700696 /*
697 * Ensure that in the case of SM Dynamic power save
698 * while we are bursting the second aggregate the
699 * RTS is cleared.
700 */
701 flags &= ~(ATH9K_TXDESC_RTSENA);
702 }
703
704 /*
705 * CTS transmit rate is derived from the transmit rate
706 * by looking in the h/w rate table. We must also factor
707 * in whether or not a short preamble is to be used.
708 */
709 /* NB: cix is set above where RTS/CTS is enabled */
710 BUG_ON(cix == 0xff);
711 ctsrate = rt->info[cix].rateCode |
Sujithcd3d39a2008-08-11 14:03:34 +0530712 (bf_isshpreamble(bf) ? rt->info[cix].shortPreamble : 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700713
714 /*
715 * Setup HAL rate series
716 */
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700717 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700718
719 for (i = 0; i < 4; i++) {
720 if (!bf->bf_rcs[i].tries)
721 continue;
722
723 rix = bf->bf_rcs[i].rix;
724
725 series[i].Rate = rt->info[rix].rateCode |
Sujithcd3d39a2008-08-11 14:03:34 +0530726 (bf_isshpreamble(bf) ? rt->info[rix].shortPreamble : 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700727
728 series[i].Tries = bf->bf_rcs[i].tries;
729
730 series[i].RateFlags = (
731 (bf->bf_rcs[i].flags & ATH_RC_RTSCTS_FLAG) ?
732 ATH9K_RATESERIES_RTS_CTS : 0) |
733 ((bf->bf_rcs[i].flags & ATH_RC_CW40_FLAG) ?
734 ATH9K_RATESERIES_2040 : 0) |
735 ((bf->bf_rcs[i].flags & ATH_RC_SGI_FLAG) ?
736 ATH9K_RATESERIES_HALFGI : 0);
737
738 series[i].PktDuration = ath_pkt_duration(
739 sc, rix, bf,
740 (bf->bf_rcs[i].flags & ATH_RC_CW40_FLAG) != 0,
741 (bf->bf_rcs[i].flags & ATH_RC_SGI_FLAG),
Sujithcd3d39a2008-08-11 14:03:34 +0530742 bf_isshpreamble(bf));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700743
744 if ((an->an_smmode == ATH_SM_PWRSAV_STATIC) &&
745 (bf->bf_rcs[i].flags & ATH_RC_DS_FLAG) == 0) {
746 /*
747 * When sending to an HT node that has enabled static
748 * SM/MIMO power save, send at single stream rates but
749 * use maximum allowed transmit chains per user,
750 * hardware, regulatory, or country limits for
751 * better range.
752 */
753 series[i].ChSel = sc->sc_tx_chainmask;
754 } else {
Sujithcd3d39a2008-08-11 14:03:34 +0530755 if (bf_isht(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700756 series[i].ChSel =
757 ath_chainmask_sel_logic(sc, an);
758 else
759 series[i].ChSel = sc->sc_tx_chainmask;
760 }
761
762 if (rtsctsena)
763 series[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS;
764
765 /*
766 * Set RTS for all rates if node is in dynamic powersave
767 * mode and we are using dual stream rates.
768 */
769 if (dynamic_mimops && (bf->bf_rcs[i].flags & ATH_RC_DS_FLAG))
770 series[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS;
771 }
772
773 /*
774 * For non-HT devices, calculate RTS/CTS duration in software
775 * and disable multi-rate retry.
776 */
Sujith60b67f52008-08-07 10:52:38 +0530777 if (flags && !(ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700778 /*
779 * Compute the transmit duration based on the frame
780 * size and the size of an ACK frame. We call into the
781 * HAL to do the computation since it depends on the
782 * characteristics of the actual PHY being used.
783 *
784 * NB: CTS is assumed the same size as an ACK so we can
785 * use the precalculated ACK durations.
786 */
787 if (flags & ATH9K_TXDESC_RTSENA) { /* SIFS + CTS */
Sujithcd3d39a2008-08-11 14:03:34 +0530788 ctsduration += bf_isshpreamble(bf) ?
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700789 rt->info[cix].spAckDuration :
790 rt->info[cix].lpAckDuration;
791 }
792
793 ctsduration += series[0].PktDuration;
794
795 if ((bf->bf_flags & ATH9K_TXDESC_NOACK) == 0) { /* SIFS + ACK */
Sujithcd3d39a2008-08-11 14:03:34 +0530796 ctsduration += bf_isshpreamble(bf) ?
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700797 rt->info[rix].spAckDuration :
798 rt->info[rix].lpAckDuration;
799 }
800
801 /*
802 * Disable multi-rate retry when using RTS/CTS by clearing
803 * series 1, 2 and 3.
804 */
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700805 memset(&series[1], 0, sizeof(struct ath9k_11n_rate_series) * 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806 }
807
808 /*
809 * set dur_update_en for l-sig computation except for PS-Poll frames
810 */
811 ath9k_hw_set11n_ratescenario(ah, ds, lastds,
Sujithcd3d39a2008-08-11 14:03:34 +0530812 !bf_ispspoll(bf),
813 ctsrate,
814 ctsduration,
815 series, 4, flags);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700816 if (sc->sc_config.ath_aggr_prot && flags)
817 ath9k_hw_set11n_burstduration(ah, ds, 8192);
818}
819
820/*
821 * Function to send a normal HT (non-AMPDU) frame
822 * NB: must be called with txq lock held
823 */
824
825static int ath_tx_send_normal(struct ath_softc *sc,
826 struct ath_txq *txq,
827 struct ath_atx_tid *tid,
828 struct list_head *bf_head)
829{
830 struct ath_buf *bf;
831 struct sk_buff *skb;
832 struct ieee80211_tx_info *tx_info;
833 struct ath_tx_info_priv *tx_info_priv;
834
835 BUG_ON(list_empty(bf_head));
836
837 bf = list_first_entry(bf_head, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +0530838 bf->bf_state.bf_type &= ~BUF_AMPDU; /* regular HT frame */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700839
840 skb = (struct sk_buff *)bf->bf_mpdu;
841 tx_info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200842
843 /* XXX: HACK! */
844 tx_info_priv = (struct ath_tx_info_priv *)tx_info->control.vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700845 memcpy(bf->bf_rcs, tx_info_priv->rcs, 4 * sizeof(tx_info_priv->rcs[0]));
846
847 /* update starting sequence number for subsequent ADDBA request */
848 INCR(tid->seq_start, IEEE80211_SEQ_MAX);
849
850 /* Queue to h/w without aggregation */
851 bf->bf_nframes = 1;
852 bf->bf_lastbf = bf->bf_lastfrm; /* one single frame */
853 ath_buf_set_rate(sc, bf);
854 ath_tx_txqaddbuf(sc, txq, bf_head);
855
856 return 0;
857}
858
859/* flush tid's software queue and send frames as non-ampdu's */
860
861static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
862{
863 struct ath_txq *txq = &sc->sc_txq[tid->ac->qnum];
864 struct ath_buf *bf;
865 struct list_head bf_head;
866 INIT_LIST_HEAD(&bf_head);
867
868 ASSERT(tid->paused > 0);
869 spin_lock_bh(&txq->axq_lock);
870
871 tid->paused--;
872
873 if (tid->paused > 0) {
874 spin_unlock_bh(&txq->axq_lock);
875 return;
876 }
877
878 while (!list_empty(&tid->buf_q)) {
879 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +0530880 ASSERT(!bf_isretried(bf));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700881 list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list);
882 ath_tx_send_normal(sc, txq, tid, &bf_head);
883 }
884
885 spin_unlock_bh(&txq->axq_lock);
886}
887
888/* Completion routine of an aggregate */
889
890static void ath_tx_complete_aggr_rifs(struct ath_softc *sc,
891 struct ath_txq *txq,
892 struct ath_buf *bf,
893 struct list_head *bf_q,
894 int txok)
895{
896 struct ath_node *an = bf->bf_node;
897 struct ath_atx_tid *tid = ATH_AN_2_TID(an, bf->bf_tidno);
898 struct ath_buf *bf_last = bf->bf_lastbf;
899 struct ath_desc *ds = bf_last->bf_desc;
900 struct ath_buf *bf_next, *bf_lastq = NULL;
901 struct list_head bf_head, bf_pending;
902 u16 seq_st = 0;
903 u32 ba[WME_BA_BMP_SIZE >> 5];
904 int isaggr, txfail, txpending, sendbar = 0, needreset = 0;
905 int isnodegone = (an->an_flags & ATH_NODE_CLEAN);
906
Sujithcd3d39a2008-08-11 14:03:34 +0530907 isaggr = bf_isaggr(bf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700908 if (isaggr) {
909 if (txok) {
910 if (ATH_DS_TX_BA(ds)) {
911 /*
912 * extract starting sequence and
913 * block-ack bitmap
914 */
915 seq_st = ATH_DS_BA_SEQ(ds);
916 memcpy(ba,
917 ATH_DS_BA_BITMAP(ds),
918 WME_BA_BMP_SIZE >> 3);
919 } else {
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700920 memset(ba, 0, WME_BA_BMP_SIZE >> 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700921
922 /*
923 * AR5416 can become deaf/mute when BA
924 * issue happens. Chip needs to be reset.
925 * But AP code may have sychronization issues
926 * when perform internal reset in this routine.
927 * Only enable reset in STA mode for now.
928 */
Sujithb4696c8b2008-08-11 14:04:52 +0530929 if (sc->sc_ah->ah_opmode == ATH9K_M_STA)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700930 needreset = 1;
931 }
932 } else {
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700933 memset(ba, 0, WME_BA_BMP_SIZE >> 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700934 }
935 }
936
937 INIT_LIST_HEAD(&bf_pending);
938 INIT_LIST_HEAD(&bf_head);
939
940 while (bf) {
941 txfail = txpending = 0;
942 bf_next = bf->bf_next;
943
944 if (ATH_BA_ISSET(ba, ATH_BA_INDEX(seq_st, bf->bf_seqno))) {
945 /* transmit completion, subframe is
946 * acked by block ack */
947 } else if (!isaggr && txok) {
948 /* transmit completion */
949 } else {
950
951 if (!tid->cleanup_inprogress && !isnodegone &&
952 ds->ds_txstat.ts_flags != ATH9K_TX_SW_ABORTED) {
953 if (bf->bf_retries < ATH_MAX_SW_RETRIES) {
954 ath_tx_set_retry(sc, bf);
955 txpending = 1;
956 } else {
Sujithcd3d39a2008-08-11 14:03:34 +0530957 bf->bf_state.bf_type |= BUF_XRETRY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700958 txfail = 1;
959 sendbar = 1;
960 }
961 } else {
962 /*
963 * cleanup in progress, just fail
964 * the un-acked sub-frames
965 */
966 txfail = 1;
967 }
968 }
969 /*
970 * Remove ath_buf's of this sub-frame from aggregate queue.
971 */
972 if (bf_next == NULL) { /* last subframe in the aggregate */
973 ASSERT(bf->bf_lastfrm == bf_last);
974
975 /*
976 * The last descriptor of the last sub frame could be
977 * a holding descriptor for h/w. If that's the case,
978 * bf->bf_lastfrm won't be in the bf_q.
979 * Make sure we handle bf_q properly here.
980 */
981
982 if (!list_empty(bf_q)) {
983 bf_lastq = list_entry(bf_q->prev,
984 struct ath_buf, list);
985 list_cut_position(&bf_head,
986 bf_q, &bf_lastq->list);
987 } else {
988 /*
989 * XXX: if the last subframe only has one
990 * descriptor which is also being used as
991 * a holding descriptor. Then the ath_buf
992 * is not in the bf_q at all.
993 */
994 INIT_LIST_HEAD(&bf_head);
995 }
996 } else {
997 ASSERT(!list_empty(bf_q));
998 list_cut_position(&bf_head,
999 bf_q, &bf->bf_lastfrm->list);
1000 }
1001
1002 if (!txpending) {
1003 /*
1004 * complete the acked-ones/xretried ones; update
1005 * block-ack window
1006 */
1007 spin_lock_bh(&txq->axq_lock);
1008 ath_tx_update_baw(sc, tid, bf->bf_seqno);
1009 spin_unlock_bh(&txq->axq_lock);
1010
1011 /* complete this sub-frame */
1012 ath_tx_complete_buf(sc, bf, &bf_head, !txfail, sendbar);
1013 } else {
1014 /*
1015 * retry the un-acked ones
1016 */
1017 /*
1018 * XXX: if the last descriptor is holding descriptor,
1019 * in order to requeue the frame to software queue, we
1020 * need to allocate a new descriptor and
1021 * copy the content of holding descriptor to it.
1022 */
1023 if (bf->bf_next == NULL &&
1024 bf_last->bf_status & ATH_BUFSTATUS_STALE) {
1025 struct ath_buf *tbf;
1026
1027 /* allocate new descriptor */
1028 spin_lock_bh(&sc->sc_txbuflock);
1029 ASSERT(!list_empty((&sc->sc_txbuf)));
1030 tbf = list_first_entry(&sc->sc_txbuf,
1031 struct ath_buf, list);
1032 list_del(&tbf->list);
1033 spin_unlock_bh(&sc->sc_txbuflock);
1034
1035 ATH_TXBUF_RESET(tbf);
1036
1037 /* copy descriptor content */
1038 tbf->bf_mpdu = bf_last->bf_mpdu;
1039 tbf->bf_node = bf_last->bf_node;
1040 tbf->bf_buf_addr = bf_last->bf_buf_addr;
1041 *(tbf->bf_desc) = *(bf_last->bf_desc);
1042
1043 /* link it to the frame */
1044 if (bf_lastq) {
1045 bf_lastq->bf_desc->ds_link =
1046 tbf->bf_daddr;
1047 bf->bf_lastfrm = tbf;
1048 ath9k_hw_cleartxdesc(sc->sc_ah,
1049 bf->bf_lastfrm->bf_desc);
1050 } else {
1051 tbf->bf_state = bf_last->bf_state;
1052 tbf->bf_lastfrm = tbf;
1053 ath9k_hw_cleartxdesc(sc->sc_ah,
1054 tbf->bf_lastfrm->bf_desc);
1055
1056 /* copy the DMA context */
Sujithff9b6622008-08-14 13:27:16 +05301057 tbf->bf_dmacontext =
1058 bf_last->bf_dmacontext;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001059 }
1060 list_add_tail(&tbf->list, &bf_head);
1061 } else {
1062 /*
1063 * Clear descriptor status words for
1064 * software retry
1065 */
1066 ath9k_hw_cleartxdesc(sc->sc_ah,
Sujithff9b6622008-08-14 13:27:16 +05301067 bf->bf_lastfrm->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001068 }
1069
1070 /*
1071 * Put this buffer to the temporary pending
1072 * queue to retain ordering
1073 */
1074 list_splice_tail_init(&bf_head, &bf_pending);
1075 }
1076
1077 bf = bf_next;
1078 }
1079
1080 /*
1081 * node is already gone. no more assocication
1082 * with the node. the node might have been freed
1083 * any node acces can result in panic.note tid
1084 * is part of the node.
1085 */
1086 if (isnodegone)
1087 return;
1088
1089 if (tid->cleanup_inprogress) {
1090 /* check to see if we're done with cleaning the h/w queue */
1091 spin_lock_bh(&txq->axq_lock);
1092
1093 if (tid->baw_head == tid->baw_tail) {
1094 tid->addba_exchangecomplete = 0;
1095 tid->addba_exchangeattempts = 0;
1096 spin_unlock_bh(&txq->axq_lock);
1097
1098 tid->cleanup_inprogress = false;
1099
1100 /* send buffered frames as singles */
1101 ath_tx_flush_tid(sc, tid);
1102 } else
1103 spin_unlock_bh(&txq->axq_lock);
1104
1105 return;
1106 }
1107
1108 /*
1109 * prepend un-acked frames to the beginning of the pending frame queue
1110 */
1111 if (!list_empty(&bf_pending)) {
1112 spin_lock_bh(&txq->axq_lock);
1113 /* Note: we _prepend_, we _do_not_ at to
1114 * the end of the queue ! */
1115 list_splice(&bf_pending, &tid->buf_q);
1116 ath_tx_queue_tid(txq, tid);
1117 spin_unlock_bh(&txq->axq_lock);
1118 }
1119
1120 if (needreset)
Sujithf45144e2008-08-11 14:02:53 +05301121 ath_reset(sc, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001122
1123 return;
1124}
1125
1126/* Process completed xmit descriptors from the specified queue */
1127
1128static int ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq)
1129{
1130 struct ath_hal *ah = sc->sc_ah;
1131 struct ath_buf *bf, *lastbf, *bf_held = NULL;
1132 struct list_head bf_head;
1133 struct ath_desc *ds, *tmp_ds;
1134 struct sk_buff *skb;
1135 struct ieee80211_tx_info *tx_info;
1136 struct ath_tx_info_priv *tx_info_priv;
1137 int nacked, txok, nbad = 0, isrifs = 0;
1138 int status;
1139
1140 DPRINTF(sc, ATH_DBG_QUEUE,
1141 "%s: tx queue %d (%x), link %p\n", __func__,
1142 txq->axq_qnum, ath9k_hw_gettxbuf(sc->sc_ah, txq->axq_qnum),
1143 txq->axq_link);
1144
1145 nacked = 0;
1146 for (;;) {
1147 spin_lock_bh(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001148 if (list_empty(&txq->axq_q)) {
1149 txq->axq_link = NULL;
1150 txq->axq_linkbuf = NULL;
1151 spin_unlock_bh(&txq->axq_lock);
1152 break;
1153 }
1154 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
1155
1156 /*
1157 * There is a race condition that a BH gets scheduled
1158 * after sw writes TxE and before hw re-load the last
1159 * descriptor to get the newly chained one.
1160 * Software must keep the last DONE descriptor as a
1161 * holding descriptor - software does so by marking
1162 * it with the STALE flag.
1163 */
1164 bf_held = NULL;
1165 if (bf->bf_status & ATH_BUFSTATUS_STALE) {
1166 bf_held = bf;
1167 if (list_is_last(&bf_held->list, &txq->axq_q)) {
1168 /* FIXME:
1169 * The holding descriptor is the last
1170 * descriptor in queue. It's safe to remove
1171 * the last holding descriptor in BH context.
1172 */
1173 spin_unlock_bh(&txq->axq_lock);
1174 break;
1175 } else {
1176 /* Lets work with the next buffer now */
1177 bf = list_entry(bf_held->list.next,
1178 struct ath_buf, list);
1179 }
1180 }
1181
1182 lastbf = bf->bf_lastbf;
1183 ds = lastbf->bf_desc; /* NB: last decriptor */
1184
1185 status = ath9k_hw_txprocdesc(ah, ds);
1186 if (status == -EINPROGRESS) {
1187 spin_unlock_bh(&txq->axq_lock);
1188 break;
1189 }
1190 if (bf->bf_desc == txq->axq_lastdsWithCTS)
1191 txq->axq_lastdsWithCTS = NULL;
1192 if (ds == txq->axq_gatingds)
1193 txq->axq_gatingds = NULL;
1194
1195 /*
1196 * Remove ath_buf's of the same transmit unit from txq,
1197 * however leave the last descriptor back as the holding
1198 * descriptor for hw.
1199 */
1200 lastbf->bf_status |= ATH_BUFSTATUS_STALE;
1201 INIT_LIST_HEAD(&bf_head);
1202
1203 if (!list_is_singular(&lastbf->list))
1204 list_cut_position(&bf_head,
1205 &txq->axq_q, lastbf->list.prev);
1206
1207 txq->axq_depth--;
1208
Sujithcd3d39a2008-08-11 14:03:34 +05301209 if (bf_isaggr(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001210 txq->axq_aggr_depth--;
1211
1212 txok = (ds->ds_txstat.ts_status == 0);
1213
1214 spin_unlock_bh(&txq->axq_lock);
1215
1216 if (bf_held) {
1217 list_del(&bf_held->list);
1218 spin_lock_bh(&sc->sc_txbuflock);
1219 list_add_tail(&bf_held->list, &sc->sc_txbuf);
1220 spin_unlock_bh(&sc->sc_txbuflock);
1221 }
1222
Sujithcd3d39a2008-08-11 14:03:34 +05301223 if (!bf_isampdu(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001224 /*
1225 * This frame is sent out as a single frame.
1226 * Use hardware retry status for this frame.
1227 */
1228 bf->bf_retries = ds->ds_txstat.ts_longretry;
1229 if (ds->ds_txstat.ts_status & ATH9K_TXERR_XRETRY)
Sujithcd3d39a2008-08-11 14:03:34 +05301230 bf->bf_state.bf_type |= BUF_XRETRY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001231 nbad = 0;
1232 } else {
1233 nbad = ath_tx_num_badfrms(sc, bf, txok);
1234 }
1235 skb = bf->bf_mpdu;
1236 tx_info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +02001237
1238 /* XXX: HACK! */
1239 tx_info_priv = (struct ath_tx_info_priv *) tx_info->control.vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001240 if (ds->ds_txstat.ts_status & ATH9K_TXERR_FILT)
1241 tx_info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1242 if ((ds->ds_txstat.ts_status & ATH9K_TXERR_FILT) == 0 &&
1243 (bf->bf_flags & ATH9K_TXDESC_NOACK) == 0) {
1244 if (ds->ds_txstat.ts_status == 0)
1245 nacked++;
1246
Sujithcd3d39a2008-08-11 14:03:34 +05301247 if (bf_isdata(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001248 if (isrifs)
1249 tmp_ds = bf->bf_rifslast->bf_desc;
1250 else
1251 tmp_ds = ds;
1252 memcpy(&tx_info_priv->tx,
1253 &tmp_ds->ds_txstat,
1254 sizeof(tx_info_priv->tx));
1255 tx_info_priv->n_frames = bf->bf_nframes;
1256 tx_info_priv->n_bad_frames = nbad;
1257 }
1258 }
1259
1260 /*
1261 * Complete this transmit unit
1262 */
Sujithcd3d39a2008-08-11 14:03:34 +05301263 if (bf_isampdu(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001264 ath_tx_complete_aggr_rifs(sc, txq, bf, &bf_head, txok);
1265 else
1266 ath_tx_complete_buf(sc, bf, &bf_head, txok, 0);
1267
1268 /* Wake up mac80211 queue */
1269
1270 spin_lock_bh(&txq->axq_lock);
1271 if (txq->stopped && ath_txq_depth(sc, txq->axq_qnum) <=
1272 (ATH_TXBUF - 20)) {
1273 int qnum;
1274 qnum = ath_get_mac80211_qnum(txq->axq_qnum, sc);
1275 if (qnum != -1) {
1276 ieee80211_wake_queue(sc->hw, qnum);
1277 txq->stopped = 0;
1278 }
1279
1280 }
1281
1282 /*
1283 * schedule any pending packets if aggregation is enabled
1284 */
Sujith672840a2008-08-11 14:05:08 +05301285 if (sc->sc_flags & SC_OP_TXAGGR)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001286 ath_txq_schedule(sc, txq);
1287 spin_unlock_bh(&txq->axq_lock);
1288 }
1289 return nacked;
1290}
1291
1292static void ath_tx_stopdma(struct ath_softc *sc, struct ath_txq *txq)
1293{
1294 struct ath_hal *ah = sc->sc_ah;
1295
1296 (void) ath9k_hw_stoptxdma(ah, txq->axq_qnum);
1297 DPRINTF(sc, ATH_DBG_XMIT, "%s: tx queue [%u] %x, link %p\n",
1298 __func__, txq->axq_qnum,
1299 ath9k_hw_gettxbuf(ah, txq->axq_qnum), txq->axq_link);
1300}
1301
1302/* Drain only the data queues */
1303
1304static void ath_drain_txdataq(struct ath_softc *sc, bool retry_tx)
1305{
1306 struct ath_hal *ah = sc->sc_ah;
1307 int i;
1308 int npend = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001309
1310 /* XXX return value */
Sujith672840a2008-08-11 14:05:08 +05301311 if (!(sc->sc_flags & SC_OP_INVALID)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001312 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1313 if (ATH_TXQ_SETUP(sc, i)) {
1314 ath_tx_stopdma(sc, &sc->sc_txq[i]);
1315
1316 /* The TxDMA may not really be stopped.
1317 * Double check the hal tx pending count */
1318 npend += ath9k_hw_numtxpending(ah,
1319 sc->sc_txq[i].axq_qnum);
1320 }
1321 }
1322 }
1323
1324 if (npend) {
1325 int status;
1326
1327 /* TxDMA not stopped, reset the hal */
1328 DPRINTF(sc, ATH_DBG_XMIT,
1329 "%s: Unable to stop TxDMA. Reset HAL!\n", __func__);
1330
1331 spin_lock_bh(&sc->sc_resetlock);
Sujithb4696c8b2008-08-11 14:04:52 +05301332 if (!ath9k_hw_reset(ah,
Sujith927e70e2008-08-14 13:26:34 +05301333 sc->sc_ah->ah_curchan,
1334 sc->sc_ht_info.tx_chan_width,
1335 sc->sc_tx_chainmask, sc->sc_rx_chainmask,
1336 sc->sc_ht_extprotspacing, true, &status)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001337
1338 DPRINTF(sc, ATH_DBG_FATAL,
1339 "%s: unable to reset hardware; hal status %u\n",
1340 __func__,
1341 status);
1342 }
1343 spin_unlock_bh(&sc->sc_resetlock);
1344 }
1345
1346 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1347 if (ATH_TXQ_SETUP(sc, i))
1348 ath_tx_draintxq(sc, &sc->sc_txq[i], retry_tx);
1349 }
1350}
1351
1352/* Add a sub-frame to block ack window */
1353
1354static void ath_tx_addto_baw(struct ath_softc *sc,
1355 struct ath_atx_tid *tid,
1356 struct ath_buf *bf)
1357{
1358 int index, cindex;
1359
Sujithcd3d39a2008-08-11 14:03:34 +05301360 if (bf_isretried(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001361 return;
1362
1363 index = ATH_BA_INDEX(tid->seq_start, bf->bf_seqno);
1364 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
1365
1366 ASSERT(tid->tx_buf[cindex] == NULL);
1367 tid->tx_buf[cindex] = bf;
1368
1369 if (index >= ((tid->baw_tail - tid->baw_head) &
1370 (ATH_TID_MAX_BUFS - 1))) {
1371 tid->baw_tail = cindex;
1372 INCR(tid->baw_tail, ATH_TID_MAX_BUFS);
1373 }
1374}
1375
1376/*
1377 * Function to send an A-MPDU
1378 * NB: must be called with txq lock held
1379 */
1380
1381static int ath_tx_send_ampdu(struct ath_softc *sc,
1382 struct ath_txq *txq,
1383 struct ath_atx_tid *tid,
1384 struct list_head *bf_head,
1385 struct ath_tx_control *txctl)
1386{
1387 struct ath_buf *bf;
1388 struct sk_buff *skb;
1389 struct ieee80211_tx_info *tx_info;
1390 struct ath_tx_info_priv *tx_info_priv;
1391
1392 BUG_ON(list_empty(bf_head));
1393
1394 bf = list_first_entry(bf_head, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +05301395 bf->bf_state.bf_type |= BUF_AMPDU;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001396 bf->bf_seqno = txctl->seqno; /* save seqno and tidno in buffer */
1397 bf->bf_tidno = txctl->tidno;
1398
1399 /*
1400 * Do not queue to h/w when any of the following conditions is true:
1401 * - there are pending frames in software queue
1402 * - the TID is currently paused for ADDBA/BAR request
1403 * - seqno is not within block-ack window
1404 * - h/w queue depth exceeds low water mark
1405 */
1406 if (!list_empty(&tid->buf_q) || tid->paused ||
1407 !BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno) ||
1408 txq->axq_depth >= ATH_AGGR_MIN_QDEPTH) {
1409 /*
1410 * Add this frame to software queue for scheduling later
1411 * for aggregation.
1412 */
1413 list_splice_tail_init(bf_head, &tid->buf_q);
1414 ath_tx_queue_tid(txq, tid);
1415 return 0;
1416 }
1417
1418 skb = (struct sk_buff *)bf->bf_mpdu;
1419 tx_info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +02001420 /* XXX: HACK! */
1421 tx_info_priv = (struct ath_tx_info_priv *)tx_info->control.vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422 memcpy(bf->bf_rcs, tx_info_priv->rcs, 4 * sizeof(tx_info_priv->rcs[0]));
1423
1424 /* Add sub-frame to BAW */
1425 ath_tx_addto_baw(sc, tid, bf);
1426
1427 /* Queue to h/w without aggregation */
1428 bf->bf_nframes = 1;
1429 bf->bf_lastbf = bf->bf_lastfrm; /* one single frame */
1430 ath_buf_set_rate(sc, bf);
1431 ath_tx_txqaddbuf(sc, txq, bf_head);
1432 return 0;
1433}
1434
1435/*
1436 * looks up the rate
1437 * returns aggr limit based on lowest of the rates
1438 */
1439
1440static u32 ath_lookup_rate(struct ath_softc *sc,
Johannes Bergae5eb022008-10-14 16:58:37 +02001441 struct ath_buf *bf,
1442 struct ath_atx_tid *tid)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001443{
1444 const struct ath9k_rate_table *rt = sc->sc_currates;
1445 struct sk_buff *skb;
1446 struct ieee80211_tx_info *tx_info;
1447 struct ath_tx_info_priv *tx_info_priv;
1448 u32 max_4ms_framelen, frame_length;
1449 u16 aggr_limit, legacy = 0, maxampdu;
1450 int i;
1451
1452
1453 skb = (struct sk_buff *)bf->bf_mpdu;
1454 tx_info = IEEE80211_SKB_CB(skb);
1455 tx_info_priv = (struct ath_tx_info_priv *)
Johannes Berge6a98542008-10-21 12:40:02 +02001456 tx_info->control.vif; /* XXX: HACK! */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001457 memcpy(bf->bf_rcs,
1458 tx_info_priv->rcs, 4 * sizeof(tx_info_priv->rcs[0]));
1459
1460 /*
1461 * Find the lowest frame length among the rate series that will have a
1462 * 4ms transmit duration.
1463 * TODO - TXOP limit needs to be considered.
1464 */
1465 max_4ms_framelen = ATH_AMPDU_LIMIT_MAX;
1466
1467 for (i = 0; i < 4; i++) {
1468 if (bf->bf_rcs[i].tries) {
1469 frame_length = bf->bf_rcs[i].max_4ms_framelen;
1470
1471 if (rt->info[bf->bf_rcs[i].rix].phy != PHY_HT) {
1472 legacy = 1;
1473 break;
1474 }
1475
1476 max_4ms_framelen = min(max_4ms_framelen, frame_length);
1477 }
1478 }
1479
1480 /*
1481 * limit aggregate size by the minimum rate if rate selected is
1482 * not a probe rate, if rate selected is a probe rate then
1483 * avoid aggregation of this packet.
1484 */
1485 if (tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE || legacy)
1486 return 0;
1487
1488 aggr_limit = min(max_4ms_framelen,
1489 (u32)ATH_AMPDU_LIMIT_DEFAULT);
1490
1491 /*
1492 * h/w can accept aggregates upto 16 bit lengths (65535).
1493 * The IE, however can hold upto 65536, which shows up here
1494 * as zero. Ignore 65536 since we are constrained by hw.
1495 */
Johannes Bergae5eb022008-10-14 16:58:37 +02001496 maxampdu = tid->an->maxampdu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001497 if (maxampdu)
1498 aggr_limit = min(aggr_limit, maxampdu);
1499
1500 return aggr_limit;
1501}
1502
1503/*
1504 * returns the number of delimiters to be added to
1505 * meet the minimum required mpdudensity.
1506 * caller should make sure that the rate is HT rate .
1507 */
1508
1509static int ath_compute_num_delims(struct ath_softc *sc,
Johannes Bergae5eb022008-10-14 16:58:37 +02001510 struct ath_atx_tid *tid,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001511 struct ath_buf *bf,
1512 u16 frmlen)
1513{
1514 const struct ath9k_rate_table *rt = sc->sc_currates;
1515 u32 nsymbits, nsymbols, mpdudensity;
1516 u16 minlen;
1517 u8 rc, flags, rix;
1518 int width, half_gi, ndelim, mindelim;
1519
1520 /* Select standard number of delimiters based on frame length alone */
1521 ndelim = ATH_AGGR_GET_NDELIM(frmlen);
1522
1523 /*
1524 * If encryption enabled, hardware requires some more padding between
1525 * subframes.
1526 * TODO - this could be improved to be dependent on the rate.
1527 * The hardware can keep up at lower rates, but not higher rates
1528 */
1529 if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR)
1530 ndelim += ATH_AGGR_ENCRYPTDELIM;
1531
1532 /*
1533 * Convert desired mpdu density from microeconds to bytes based
1534 * on highest rate in rate series (i.e. first rate) to determine
1535 * required minimum length for subframe. Take into account
1536 * whether high rate is 20 or 40Mhz and half or full GI.
1537 */
Johannes Bergae5eb022008-10-14 16:58:37 +02001538 mpdudensity = tid->an->mpdudensity;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001539
1540 /*
1541 * If there is no mpdu density restriction, no further calculation
1542 * is needed.
1543 */
1544 if (mpdudensity == 0)
1545 return ndelim;
1546
1547 rix = bf->bf_rcs[0].rix;
1548 flags = bf->bf_rcs[0].flags;
1549 rc = rt->info[rix].rateCode;
1550 width = (flags & ATH_RC_CW40_FLAG) ? 1 : 0;
1551 half_gi = (flags & ATH_RC_SGI_FLAG) ? 1 : 0;
1552
1553 if (half_gi)
1554 nsymbols = NUM_SYMBOLS_PER_USEC_HALFGI(mpdudensity);
1555 else
1556 nsymbols = NUM_SYMBOLS_PER_USEC(mpdudensity);
1557
1558 if (nsymbols == 0)
1559 nsymbols = 1;
1560
1561 nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
1562 minlen = (nsymbols * nsymbits) / BITS_PER_BYTE;
1563
1564 /* Is frame shorter than required minimum length? */
1565 if (frmlen < minlen) {
1566 /* Get the minimum number of delimiters required. */
1567 mindelim = (minlen - frmlen) / ATH_AGGR_DELIM_SZ;
1568 ndelim = max(mindelim, ndelim);
1569 }
1570
1571 return ndelim;
1572}
1573
1574/*
1575 * For aggregation from software buffer queue.
1576 * NB: must be called with txq lock held
1577 */
1578
1579static enum ATH_AGGR_STATUS ath_tx_form_aggr(struct ath_softc *sc,
1580 struct ath_atx_tid *tid,
1581 struct list_head *bf_q,
1582 struct ath_buf **bf_last,
1583 struct aggr_rifs_param *param,
1584 int *prev_frames)
1585{
1586#define PADBYTES(_len) ((4 - ((_len) % 4)) % 4)
1587 struct ath_buf *bf, *tbf, *bf_first, *bf_prev = NULL;
1588 struct list_head bf_head;
1589 int rl = 0, nframes = 0, ndelim;
1590 u16 aggr_limit = 0, al = 0, bpad = 0,
1591 al_delta, h_baw = tid->baw_size / 2;
1592 enum ATH_AGGR_STATUS status = ATH_AGGR_DONE;
1593 int prev_al = 0, is_ds_rate = 0;
1594 INIT_LIST_HEAD(&bf_head);
1595
1596 BUG_ON(list_empty(&tid->buf_q));
1597
1598 bf_first = list_first_entry(&tid->buf_q, struct ath_buf, list);
1599
1600 do {
1601 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
1602
1603 /*
1604 * do not step over block-ack window
1605 */
1606 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno)) {
1607 status = ATH_AGGR_BAW_CLOSED;
1608 break;
1609 }
1610
1611 if (!rl) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001612 aggr_limit = ath_lookup_rate(sc, bf, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001613 rl = 1;
1614 /*
1615 * Is rate dual stream
1616 */
1617 is_ds_rate =
1618 (bf->bf_rcs[0].flags & ATH_RC_DS_FLAG) ? 1 : 0;
1619 }
1620
1621 /*
1622 * do not exceed aggregation limit
1623 */
1624 al_delta = ATH_AGGR_DELIM_SZ + bf->bf_frmlen;
1625
1626 if (nframes && (aggr_limit <
1627 (al + bpad + al_delta + prev_al))) {
1628 status = ATH_AGGR_LIMITED;
1629 break;
1630 }
1631
1632 /*
1633 * do not exceed subframe limit
1634 */
1635 if ((nframes + *prev_frames) >=
1636 min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) {
1637 status = ATH_AGGR_LIMITED;
1638 break;
1639 }
1640
1641 /*
1642 * add padding for previous frame to aggregation length
1643 */
1644 al += bpad + al_delta;
1645
1646 /*
1647 * Get the delimiters needed to meet the MPDU
1648 * density for this node.
1649 */
Johannes Bergae5eb022008-10-14 16:58:37 +02001650 ndelim = ath_compute_num_delims(sc, tid, bf_first, bf->bf_frmlen);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001651
1652 bpad = PADBYTES(al_delta) + (ndelim << 2);
1653
1654 bf->bf_next = NULL;
1655 bf->bf_lastfrm->bf_desc->ds_link = 0;
1656
1657 /*
1658 * this packet is part of an aggregate
1659 * - remove all descriptors belonging to this frame from
1660 * software queue
1661 * - add it to block ack window
1662 * - set up descriptors for aggregation
1663 */
1664 list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list);
1665 ath_tx_addto_baw(sc, tid, bf);
1666
1667 list_for_each_entry(tbf, &bf_head, list) {
1668 ath9k_hw_set11n_aggr_middle(sc->sc_ah,
1669 tbf->bf_desc, ndelim);
1670 }
1671
1672 /*
1673 * link buffers of this frame to the aggregate
1674 */
1675 list_splice_tail_init(&bf_head, bf_q);
1676 nframes++;
1677
1678 if (bf_prev) {
1679 bf_prev->bf_next = bf;
1680 bf_prev->bf_lastfrm->bf_desc->ds_link = bf->bf_daddr;
1681 }
1682 bf_prev = bf;
1683
1684#ifdef AGGR_NOSHORT
1685 /*
1686 * terminate aggregation on a small packet boundary
1687 */
1688 if (bf->bf_frmlen < ATH_AGGR_MINPLEN) {
1689 status = ATH_AGGR_SHORTPKT;
1690 break;
1691 }
1692#endif
1693 } while (!list_empty(&tid->buf_q));
1694
1695 bf_first->bf_al = al;
1696 bf_first->bf_nframes = nframes;
1697 *bf_last = bf_prev;
1698 return status;
1699#undef PADBYTES
1700}
1701
1702/*
1703 * process pending frames possibly doing a-mpdu aggregation
1704 * NB: must be called with txq lock held
1705 */
1706
1707static void ath_tx_sched_aggr(struct ath_softc *sc,
1708 struct ath_txq *txq, struct ath_atx_tid *tid)
1709{
1710 struct ath_buf *bf, *tbf, *bf_last, *bf_lastaggr = NULL;
1711 enum ATH_AGGR_STATUS status;
1712 struct list_head bf_q;
1713 struct aggr_rifs_param param = {0, 0, 0, 0, NULL};
1714 int prev_frames = 0;
1715
1716 do {
1717 if (list_empty(&tid->buf_q))
1718 return;
1719
1720 INIT_LIST_HEAD(&bf_q);
1721
1722 status = ath_tx_form_aggr(sc, tid, &bf_q, &bf_lastaggr, &param,
1723 &prev_frames);
1724
1725 /*
1726 * no frames picked up to be aggregated; block-ack
1727 * window is not open
1728 */
1729 if (list_empty(&bf_q))
1730 break;
1731
1732 bf = list_first_entry(&bf_q, struct ath_buf, list);
1733 bf_last = list_entry(bf_q.prev, struct ath_buf, list);
1734 bf->bf_lastbf = bf_last;
1735
1736 /*
1737 * if only one frame, send as non-aggregate
1738 */
1739 if (bf->bf_nframes == 1) {
1740 ASSERT(bf->bf_lastfrm == bf_last);
1741
Sujithcd3d39a2008-08-11 14:03:34 +05301742 bf->bf_state.bf_type &= ~BUF_AGGR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001743 /*
1744 * clear aggr bits for every descriptor
1745 * XXX TODO: is there a way to optimize it?
1746 */
1747 list_for_each_entry(tbf, &bf_q, list) {
1748 ath9k_hw_clr11n_aggr(sc->sc_ah, tbf->bf_desc);
1749 }
1750
1751 ath_buf_set_rate(sc, bf);
1752 ath_tx_txqaddbuf(sc, txq, &bf_q);
1753 continue;
1754 }
1755
1756 /*
1757 * setup first desc with rate and aggr info
1758 */
Sujithcd3d39a2008-08-11 14:03:34 +05301759 bf->bf_state.bf_type |= BUF_AGGR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001760 ath_buf_set_rate(sc, bf);
1761 ath9k_hw_set11n_aggr_first(sc->sc_ah, bf->bf_desc, bf->bf_al);
1762
1763 /*
1764 * anchor last frame of aggregate correctly
1765 */
1766 ASSERT(bf_lastaggr);
1767 ASSERT(bf_lastaggr->bf_lastfrm == bf_last);
1768 tbf = bf_lastaggr;
1769 ath9k_hw_set11n_aggr_last(sc->sc_ah, tbf->bf_desc);
1770
1771 /* XXX: We don't enter into this loop, consider removing this */
1772 while (!list_empty(&bf_q) && !list_is_last(&tbf->list, &bf_q)) {
1773 tbf = list_entry(tbf->list.next, struct ath_buf, list);
1774 ath9k_hw_set11n_aggr_last(sc->sc_ah, tbf->bf_desc);
1775 }
1776
1777 txq->axq_aggr_depth++;
1778
1779 /*
1780 * Normal aggregate, queue to hardware
1781 */
1782 ath_tx_txqaddbuf(sc, txq, &bf_q);
1783
1784 } while (txq->axq_depth < ATH_AGGR_MIN_QDEPTH &&
1785 status != ATH_AGGR_BAW_CLOSED);
1786}
1787
1788/* Called with txq lock held */
1789
1790static void ath_tid_drain(struct ath_softc *sc,
1791 struct ath_txq *txq,
1792 struct ath_atx_tid *tid,
1793 bool bh_flag)
1794{
1795 struct ath_buf *bf;
1796 struct list_head bf_head;
1797 INIT_LIST_HEAD(&bf_head);
1798
1799 for (;;) {
1800 if (list_empty(&tid->buf_q))
1801 break;
1802 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
1803
1804 list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list);
1805
1806 /* update baw for software retried frame */
Sujithcd3d39a2008-08-11 14:03:34 +05301807 if (bf_isretried(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001808 ath_tx_update_baw(sc, tid, bf->bf_seqno);
1809
1810 /*
1811 * do not indicate packets while holding txq spinlock.
1812 * unlock is intentional here
1813 */
1814 if (likely(bh_flag))
1815 spin_unlock_bh(&txq->axq_lock);
1816 else
1817 spin_unlock(&txq->axq_lock);
1818
1819 /* complete this sub-frame */
1820 ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
1821
1822 if (likely(bh_flag))
1823 spin_lock_bh(&txq->axq_lock);
1824 else
1825 spin_lock(&txq->axq_lock);
1826 }
1827
1828 /*
1829 * TODO: For frame(s) that are in the retry state, we will reuse the
1830 * sequence number(s) without setting the retry bit. The
1831 * alternative is to give up on these and BAR the receiver's window
1832 * forward.
1833 */
1834 tid->seq_next = tid->seq_start;
1835 tid->baw_tail = tid->baw_head;
1836}
1837
1838/*
1839 * Drain all pending buffers
1840 * NB: must be called with txq lock held
1841 */
1842
1843static void ath_txq_drain_pending_buffers(struct ath_softc *sc,
1844 struct ath_txq *txq,
1845 bool bh_flag)
1846{
1847 struct ath_atx_ac *ac, *ac_tmp;
1848 struct ath_atx_tid *tid, *tid_tmp;
1849
1850 list_for_each_entry_safe(ac, ac_tmp, &txq->axq_acq, list) {
1851 list_del(&ac->list);
1852 ac->sched = false;
1853 list_for_each_entry_safe(tid, tid_tmp, &ac->tid_q, list) {
1854 list_del(&tid->list);
1855 tid->sched = false;
1856 ath_tid_drain(sc, txq, tid, bh_flag);
1857 }
1858 }
1859}
1860
1861static int ath_tx_start_dma(struct ath_softc *sc,
1862 struct sk_buff *skb,
1863 struct scatterlist *sg,
1864 u32 n_sg,
1865 struct ath_tx_control *txctl)
1866{
1867 struct ath_node *an = txctl->an;
1868 struct ath_buf *bf = NULL;
1869 struct list_head bf_head;
1870 struct ath_desc *ds;
1871 struct ath_hal *ah = sc->sc_ah;
Jouni Malinene022edb2008-08-22 17:31:33 +03001872 struct ath_txq *txq;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001873 struct ath_tx_info_priv *tx_info_priv;
1874 struct ath_rc_series *rcs;
1875 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1876 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1877 __le16 fc = hdr->frame_control;
1878
Jouni Malinene022edb2008-08-22 17:31:33 +03001879 if (unlikely(txctl->flags & ATH9K_TXDESC_CAB))
1880 txq = sc->sc_cabq;
1881 else
1882 txq = &sc->sc_txq[txctl->qnum];
1883
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001884 /* For each sglist entry, allocate an ath_buf for DMA */
1885 INIT_LIST_HEAD(&bf_head);
1886 spin_lock_bh(&sc->sc_txbuflock);
1887 if (unlikely(list_empty(&sc->sc_txbuf))) {
1888 spin_unlock_bh(&sc->sc_txbuflock);
1889 return -ENOMEM;
1890 }
1891
1892 bf = list_first_entry(&sc->sc_txbuf, struct ath_buf, list);
1893 list_del(&bf->list);
1894 spin_unlock_bh(&sc->sc_txbuflock);
1895
1896 list_add_tail(&bf->list, &bf_head);
1897
1898 /* set up this buffer */
1899 ATH_TXBUF_RESET(bf);
1900 bf->bf_frmlen = txctl->frmlen;
Sujithcd3d39a2008-08-11 14:03:34 +05301901
1902 ieee80211_is_data(fc) ?
1903 (bf->bf_state.bf_type |= BUF_DATA) :
1904 (bf->bf_state.bf_type &= ~BUF_DATA);
1905 ieee80211_is_back_req(fc) ?
1906 (bf->bf_state.bf_type |= BUF_BAR) :
1907 (bf->bf_state.bf_type &= ~BUF_BAR);
1908 ieee80211_is_pspoll(fc) ?
1909 (bf->bf_state.bf_type |= BUF_PSPOLL) :
1910 (bf->bf_state.bf_type &= ~BUF_PSPOLL);
Sujith672840a2008-08-11 14:05:08 +05301911 (sc->sc_flags & SC_OP_PREAMBLE_SHORT) ?
Sujithcd3d39a2008-08-11 14:03:34 +05301912 (bf->bf_state.bf_type |= BUF_SHORT_PREAMBLE) :
1913 (bf->bf_state.bf_type &= ~BUF_SHORT_PREAMBLE);
1914
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915 bf->bf_flags = txctl->flags;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001916 bf->bf_keytype = txctl->keytype;
Johannes Berge6a98542008-10-21 12:40:02 +02001917 /* XXX: HACK! */
1918 tx_info_priv = (struct ath_tx_info_priv *)tx_info->control.vif;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001919 rcs = tx_info_priv->rcs;
1920 bf->bf_rcs[0] = rcs[0];
1921 bf->bf_rcs[1] = rcs[1];
1922 bf->bf_rcs[2] = rcs[2];
1923 bf->bf_rcs[3] = rcs[3];
1924 bf->bf_node = an;
1925 bf->bf_mpdu = skb;
1926 bf->bf_buf_addr = sg_dma_address(sg);
1927
1928 /* setup descriptor */
1929 ds = bf->bf_desc;
1930 ds->ds_link = 0;
1931 ds->ds_data = bf->bf_buf_addr;
1932
1933 /*
1934 * Save the DMA context in the first ath_buf
1935 */
Sujithff9b6622008-08-14 13:27:16 +05301936 bf->bf_dmacontext = txctl->dmacontext;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001937
1938 /*
1939 * Formulate first tx descriptor with tx controls.
1940 */
1941 ath9k_hw_set11n_txdesc(ah,
1942 ds,
1943 bf->bf_frmlen, /* frame length */
1944 txctl->atype, /* Atheros packet type */
1945 min(txctl->txpower, (u16)60), /* txpower */
1946 txctl->keyix, /* key cache index */
1947 txctl->keytype, /* key type */
1948 txctl->flags); /* flags */
1949 ath9k_hw_filltxdesc(ah,
1950 ds,
1951 sg_dma_len(sg), /* segment length */
1952 true, /* first segment */
1953 (n_sg == 1) ? true : false, /* last segment */
1954 ds); /* first descriptor */
1955
1956 bf->bf_lastfrm = bf;
Sujithcd3d39a2008-08-11 14:03:34 +05301957 (txctl->ht) ?
1958 (bf->bf_state.bf_type |= BUF_HT) :
1959 (bf->bf_state.bf_type &= ~BUF_HT);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001960
1961 spin_lock_bh(&txq->axq_lock);
1962
Sujith672840a2008-08-11 14:05:08 +05301963 if (txctl->ht && (sc->sc_flags & SC_OP_TXAGGR)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001964 struct ath_atx_tid *tid = ATH_AN_2_TID(an, txctl->tidno);
1965 if (ath_aggr_query(sc, an, txctl->tidno)) {
1966 /*
1967 * Try aggregation if it's a unicast data frame
1968 * and the destination is HT capable.
1969 */
1970 ath_tx_send_ampdu(sc, txq, tid, &bf_head, txctl);
1971 } else {
1972 /*
1973 * Send this frame as regular when ADDBA exchange
1974 * is neither complete nor pending.
1975 */
1976 ath_tx_send_normal(sc, txq, tid, &bf_head);
1977 }
1978 } else {
1979 bf->bf_lastbf = bf;
1980 bf->bf_nframes = 1;
1981 ath_buf_set_rate(sc, bf);
1982
1983 if (ieee80211_is_back_req(fc)) {
1984 /* This is required for resuming tid
1985 * during BAR completion */
1986 bf->bf_tidno = txctl->tidno;
1987 }
1988
Jouni Malinene022edb2008-08-22 17:31:33 +03001989 ath_tx_txqaddbuf(sc, txq, &bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001990 }
1991 spin_unlock_bh(&txq->axq_lock);
1992 return 0;
1993}
1994
1995static void xmit_map_sg(struct ath_softc *sc,
1996 struct sk_buff *skb,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001997 struct ath_tx_control *txctl)
1998{
1999 struct ath_xmit_status tx_status;
2000 struct ath_atx_tid *tid;
2001 struct scatterlist sg;
2002
Sujithff9b6622008-08-14 13:27:16 +05302003 txctl->dmacontext = pci_map_single(sc->pdev, skb->data,
2004 skb->len, PCI_DMA_TODEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002005
2006 /* setup S/G list */
2007 memset(&sg, 0, sizeof(struct scatterlist));
Sujithff9b6622008-08-14 13:27:16 +05302008 sg_dma_address(&sg) = txctl->dmacontext;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002009 sg_dma_len(&sg) = skb->len;
2010
2011 if (ath_tx_start_dma(sc, skb, &sg, 1, txctl) != 0) {
2012 /*
2013 * We have to do drop frame here.
2014 */
Sujithff9b6622008-08-14 13:27:16 +05302015 pci_unmap_single(sc->pdev, txctl->dmacontext,
2016 skb->len, PCI_DMA_TODEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002017
2018 tx_status.retries = 0;
2019 tx_status.flags = ATH_TX_ERROR;
2020
Sujith672840a2008-08-11 14:05:08 +05302021 if (txctl->ht && (sc->sc_flags & SC_OP_TXAGGR)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002022 /* Reclaim the seqno. */
2023 tid = ATH_AN_2_TID((struct ath_node *)
2024 txctl->an, txctl->tidno);
2025 DECR(tid->seq_next, IEEE80211_SEQ_MAX);
2026 }
2027 ath_tx_complete(sc, skb, &tx_status, txctl->an);
2028 }
2029}
2030
2031/* Initialize TX queue and h/w */
2032
2033int ath_tx_init(struct ath_softc *sc, int nbufs)
2034{
2035 int error = 0;
2036
2037 do {
2038 spin_lock_init(&sc->sc_txbuflock);
2039
2040 /* Setup tx descriptors */
2041 error = ath_descdma_setup(sc, &sc->sc_txdma, &sc->sc_txbuf,
Sujith556bb8f2008-08-11 14:03:53 +05302042 "tx", nbufs, 1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002043 if (error != 0) {
2044 DPRINTF(sc, ATH_DBG_FATAL,
2045 "%s: failed to allocate tx descriptors: %d\n",
2046 __func__, error);
2047 break;
2048 }
2049
2050 /* XXX allocate beacon state together with vap */
2051 error = ath_descdma_setup(sc, &sc->sc_bdma, &sc->sc_bbuf,
2052 "beacon", ATH_BCBUF, 1);
2053 if (error != 0) {
2054 DPRINTF(sc, ATH_DBG_FATAL,
2055 "%s: failed to allocate "
2056 "beacon descripotrs: %d\n",
2057 __func__, error);
2058 break;
2059 }
2060
2061 } while (0);
2062
2063 if (error != 0)
2064 ath_tx_cleanup(sc);
2065
2066 return error;
2067}
2068
2069/* Reclaim all tx queue resources */
2070
2071int ath_tx_cleanup(struct ath_softc *sc)
2072{
2073 /* cleanup beacon descriptors */
2074 if (sc->sc_bdma.dd_desc_len != 0)
2075 ath_descdma_cleanup(sc, &sc->sc_bdma, &sc->sc_bbuf);
2076
2077 /* cleanup tx descriptors */
2078 if (sc->sc_txdma.dd_desc_len != 0)
2079 ath_descdma_cleanup(sc, &sc->sc_txdma, &sc->sc_txbuf);
2080
2081 return 0;
2082}
2083
2084/* Setup a h/w transmit queue */
2085
2086struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype)
2087{
2088 struct ath_hal *ah = sc->sc_ah;
Sujithea9880f2008-08-07 10:53:10 +05302089 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002090 int qnum;
2091
Luis R. Rodriguez0345f372008-10-03 15:45:25 -07002092 memset(&qi, 0, sizeof(qi));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002093 qi.tqi_subtype = subtype;
2094 qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT;
2095 qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT;
2096 qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT;
Sujithea9880f2008-08-07 10:53:10 +05302097 qi.tqi_physCompBuf = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002098
2099 /*
2100 * Enable interrupts only for EOL and DESC conditions.
2101 * We mark tx descriptors to receive a DESC interrupt
2102 * when a tx queue gets deep; otherwise waiting for the
2103 * EOL to reap descriptors. Note that this is done to
2104 * reduce interrupt load and this only defers reaping
2105 * descriptors, never transmitting frames. Aside from
2106 * reducing interrupts this also permits more concurrency.
2107 * The only potential downside is if the tx queue backs
2108 * up in which case the top half of the kernel may backup
2109 * due to a lack of tx descriptors.
2110 *
2111 * The UAPSD queue is an exception, since we take a desc-
2112 * based intr on the EOSP frames.
2113 */
2114 if (qtype == ATH9K_TX_QUEUE_UAPSD)
2115 qi.tqi_qflags = TXQ_FLAG_TXDESCINT_ENABLE;
2116 else
2117 qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE |
2118 TXQ_FLAG_TXDESCINT_ENABLE;
2119 qnum = ath9k_hw_setuptxqueue(ah, qtype, &qi);
2120 if (qnum == -1) {
2121 /*
2122 * NB: don't print a message, this happens
2123 * normally on parts with too few tx queues
2124 */
2125 return NULL;
2126 }
2127 if (qnum >= ARRAY_SIZE(sc->sc_txq)) {
2128 DPRINTF(sc, ATH_DBG_FATAL,
2129 "%s: hal qnum %u out of range, max %u!\n",
2130 __func__, qnum, (unsigned int)ARRAY_SIZE(sc->sc_txq));
2131 ath9k_hw_releasetxqueue(ah, qnum);
2132 return NULL;
2133 }
2134 if (!ATH_TXQ_SETUP(sc, qnum)) {
2135 struct ath_txq *txq = &sc->sc_txq[qnum];
2136
2137 txq->axq_qnum = qnum;
2138 txq->axq_link = NULL;
2139 INIT_LIST_HEAD(&txq->axq_q);
2140 INIT_LIST_HEAD(&txq->axq_acq);
2141 spin_lock_init(&txq->axq_lock);
2142 txq->axq_depth = 0;
2143 txq->axq_aggr_depth = 0;
2144 txq->axq_totalqueued = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002145 txq->axq_linkbuf = NULL;
2146 sc->sc_txqsetup |= 1<<qnum;
2147 }
2148 return &sc->sc_txq[qnum];
2149}
2150
2151/* Reclaim resources for a setup queue */
2152
2153void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq)
2154{
2155 ath9k_hw_releasetxqueue(sc->sc_ah, txq->axq_qnum);
2156 sc->sc_txqsetup &= ~(1<<txq->axq_qnum);
2157}
2158
2159/*
2160 * Setup a hardware data transmit queue for the specified
2161 * access control. The hal may not support all requested
2162 * queues in which case it will return a reference to a
2163 * previously setup queue. We record the mapping from ac's
2164 * to h/w queues for use by ath_tx_start and also track
2165 * the set of h/w queues being used to optimize work in the
2166 * transmit interrupt handler and related routines.
2167 */
2168
2169int ath_tx_setup(struct ath_softc *sc, int haltype)
2170{
2171 struct ath_txq *txq;
2172
2173 if (haltype >= ARRAY_SIZE(sc->sc_haltype2q)) {
2174 DPRINTF(sc, ATH_DBG_FATAL,
2175 "%s: HAL AC %u out of range, max %zu!\n",
2176 __func__, haltype, ARRAY_SIZE(sc->sc_haltype2q));
2177 return 0;
2178 }
2179 txq = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, haltype);
2180 if (txq != NULL) {
2181 sc->sc_haltype2q[haltype] = txq->axq_qnum;
2182 return 1;
2183 } else
2184 return 0;
2185}
2186
2187int ath_tx_get_qnum(struct ath_softc *sc, int qtype, int haltype)
2188{
2189 int qnum;
2190
2191 switch (qtype) {
2192 case ATH9K_TX_QUEUE_DATA:
2193 if (haltype >= ARRAY_SIZE(sc->sc_haltype2q)) {
2194 DPRINTF(sc, ATH_DBG_FATAL,
2195 "%s: HAL AC %u out of range, max %zu!\n",
2196 __func__,
2197 haltype, ARRAY_SIZE(sc->sc_haltype2q));
2198 return -1;
2199 }
2200 qnum = sc->sc_haltype2q[haltype];
2201 break;
2202 case ATH9K_TX_QUEUE_BEACON:
2203 qnum = sc->sc_bhalq;
2204 break;
2205 case ATH9K_TX_QUEUE_CAB:
2206 qnum = sc->sc_cabq->axq_qnum;
2207 break;
2208 default:
2209 qnum = -1;
2210 }
2211 return qnum;
2212}
2213
2214/* Update parameters for a transmit queue */
2215
Sujithea9880f2008-08-07 10:53:10 +05302216int ath_txq_update(struct ath_softc *sc, int qnum,
2217 struct ath9k_tx_queue_info *qinfo)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002218{
2219 struct ath_hal *ah = sc->sc_ah;
2220 int error = 0;
Sujithea9880f2008-08-07 10:53:10 +05302221 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002222
2223 if (qnum == sc->sc_bhalq) {
2224 /*
2225 * XXX: for beacon queue, we just save the parameter.
2226 * It will be picked up by ath_beaconq_config when
2227 * it's necessary.
2228 */
Sujithea9880f2008-08-07 10:53:10 +05302229 sc->sc_beacon_qi = *qinfo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002230 return 0;
2231 }
2232
2233 ASSERT(sc->sc_txq[qnum].axq_qnum == qnum);
2234
Sujithea9880f2008-08-07 10:53:10 +05302235 ath9k_hw_get_txq_props(ah, qnum, &qi);
2236 qi.tqi_aifs = qinfo->tqi_aifs;
2237 qi.tqi_cwmin = qinfo->tqi_cwmin;
2238 qi.tqi_cwmax = qinfo->tqi_cwmax;
2239 qi.tqi_burstTime = qinfo->tqi_burstTime;
2240 qi.tqi_readyTime = qinfo->tqi_readyTime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002241
Sujithea9880f2008-08-07 10:53:10 +05302242 if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002243 DPRINTF(sc, ATH_DBG_FATAL,
2244 "%s: unable to update hardware queue %u!\n",
2245 __func__, qnum);
2246 error = -EIO;
2247 } else {
2248 ath9k_hw_resettxqueue(ah, qnum); /* push to h/w */
2249 }
2250
2251 return error;
2252}
2253
2254int ath_cabq_update(struct ath_softc *sc)
2255{
Sujithea9880f2008-08-07 10:53:10 +05302256 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002257 int qnum = sc->sc_cabq->axq_qnum;
2258 struct ath_beacon_config conf;
2259
Sujithea9880f2008-08-07 10:53:10 +05302260 ath9k_hw_get_txq_props(sc->sc_ah, qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002261 /*
2262 * Ensure the readytime % is within the bounds.
2263 */
2264 if (sc->sc_config.cabqReadytime < ATH9K_READY_TIME_LO_BOUND)
2265 sc->sc_config.cabqReadytime = ATH9K_READY_TIME_LO_BOUND;
2266 else if (sc->sc_config.cabqReadytime > ATH9K_READY_TIME_HI_BOUND)
2267 sc->sc_config.cabqReadytime = ATH9K_READY_TIME_HI_BOUND;
2268
2269 ath_get_beaconconfig(sc, ATH_IF_ID_ANY, &conf);
2270 qi.tqi_readyTime =
2271 (conf.beacon_interval * sc->sc_config.cabqReadytime) / 100;
2272 ath_txq_update(sc, qnum, &qi);
2273
2274 return 0;
2275}
2276
2277int ath_tx_start(struct ath_softc *sc, struct sk_buff *skb)
2278{
2279 struct ath_tx_control txctl;
2280 int error = 0;
2281
Jouni Malinene022edb2008-08-22 17:31:33 +03002282 memset(&txctl, 0, sizeof(struct ath_tx_control));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002283 error = ath_tx_prepare(sc, skb, &txctl);
2284 if (error == 0)
2285 /*
2286 * Start DMA mapping.
2287 * ath_tx_start_dma() will be called either synchronously
2288 * or asynchrounsly once DMA is complete.
2289 */
Sujithff9b6622008-08-14 13:27:16 +05302290 xmit_map_sg(sc, skb, &txctl);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002291 else
2292 ath_node_put(sc, txctl.an, ATH9K_BH_STATUS_CHANGE);
2293
2294 /* failed packets will be dropped by the caller */
2295 return error;
2296}
2297
2298/* Deferred processing of transmit interrupt */
2299
2300void ath_tx_tasklet(struct ath_softc *sc)
2301{
Sujith1fe11322008-08-26 08:11:06 +05302302 int i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002303 u32 qcumask = ((1 << ATH9K_NUM_TX_QUEUES) - 1);
2304
2305 ath9k_hw_gettxintrtxqs(sc->sc_ah, &qcumask);
2306
2307 /*
2308 * Process each active queue.
2309 */
2310 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2311 if (ATH_TXQ_SETUP(sc, i) && (qcumask & (1 << i)))
Sujith1fe11322008-08-26 08:11:06 +05302312 ath_tx_processq(sc, &sc->sc_txq[i]);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002313 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002314}
2315
2316void ath_tx_draintxq(struct ath_softc *sc,
2317 struct ath_txq *txq, bool retry_tx)
2318{
2319 struct ath_buf *bf, *lastbf;
2320 struct list_head bf_head;
2321
2322 INIT_LIST_HEAD(&bf_head);
2323
2324 /*
2325 * NB: this assumes output has been stopped and
2326 * we do not need to block ath_tx_tasklet
2327 */
2328 for (;;) {
2329 spin_lock_bh(&txq->axq_lock);
2330
2331 if (list_empty(&txq->axq_q)) {
2332 txq->axq_link = NULL;
2333 txq->axq_linkbuf = NULL;
2334 spin_unlock_bh(&txq->axq_lock);
2335 break;
2336 }
2337
2338 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
2339
2340 if (bf->bf_status & ATH_BUFSTATUS_STALE) {
2341 list_del(&bf->list);
2342 spin_unlock_bh(&txq->axq_lock);
2343
2344 spin_lock_bh(&sc->sc_txbuflock);
2345 list_add_tail(&bf->list, &sc->sc_txbuf);
2346 spin_unlock_bh(&sc->sc_txbuflock);
2347 continue;
2348 }
2349
2350 lastbf = bf->bf_lastbf;
2351 if (!retry_tx)
2352 lastbf->bf_desc->ds_txstat.ts_flags =
2353 ATH9K_TX_SW_ABORTED;
2354
2355 /* remove ath_buf's of the same mpdu from txq */
2356 list_cut_position(&bf_head, &txq->axq_q, &lastbf->list);
2357 txq->axq_depth--;
2358
2359 spin_unlock_bh(&txq->axq_lock);
2360
Sujithcd3d39a2008-08-11 14:03:34 +05302361 if (bf_isampdu(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002362 ath_tx_complete_aggr_rifs(sc, txq, bf, &bf_head, 0);
2363 else
2364 ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
2365 }
2366
2367 /* flush any pending frames if aggregation is enabled */
Sujith672840a2008-08-11 14:05:08 +05302368 if (sc->sc_flags & SC_OP_TXAGGR) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002369 if (!retry_tx) {
2370 spin_lock_bh(&txq->axq_lock);
2371 ath_txq_drain_pending_buffers(sc, txq,
2372 ATH9K_BH_STATUS_CHANGE);
2373 spin_unlock_bh(&txq->axq_lock);
2374 }
2375 }
2376}
2377
2378/* Drain the transmit queues and reclaim resources */
2379
2380void ath_draintxq(struct ath_softc *sc, bool retry_tx)
2381{
2382 /* stop beacon queue. The beacon will be freed when
2383 * we go to INIT state */
Sujith672840a2008-08-11 14:05:08 +05302384 if (!(sc->sc_flags & SC_OP_INVALID)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002385 (void) ath9k_hw_stoptxdma(sc->sc_ah, sc->sc_bhalq);
2386 DPRINTF(sc, ATH_DBG_XMIT, "%s: beacon queue %x\n", __func__,
2387 ath9k_hw_gettxbuf(sc->sc_ah, sc->sc_bhalq));
2388 }
2389
2390 ath_drain_txdataq(sc, retry_tx);
2391}
2392
2393u32 ath_txq_depth(struct ath_softc *sc, int qnum)
2394{
2395 return sc->sc_txq[qnum].axq_depth;
2396}
2397
2398u32 ath_txq_aggr_depth(struct ath_softc *sc, int qnum)
2399{
2400 return sc->sc_txq[qnum].axq_aggr_depth;
2401}
2402
2403/* Check if an ADDBA is required. A valid node must be passed. */
2404enum ATH_AGGR_CHECK ath_tx_aggr_check(struct ath_softc *sc,
2405 struct ath_node *an,
2406 u8 tidno)
2407{
2408 struct ath_atx_tid *txtid;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002409
Sujith672840a2008-08-11 14:05:08 +05302410 if (!(sc->sc_flags & SC_OP_TXAGGR))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002411 return AGGR_NOT_REQUIRED;
2412
2413 /* ADDBA exchange must be completed before sending aggregates */
2414 txtid = ATH_AN_2_TID(an, tidno);
2415
2416 if (txtid->addba_exchangecomplete)
2417 return AGGR_EXCHANGE_DONE;
2418
2419 if (txtid->cleanup_inprogress)
2420 return AGGR_CLEANUP_PROGRESS;
2421
2422 if (txtid->addba_exchangeinprogress)
2423 return AGGR_EXCHANGE_PROGRESS;
2424
2425 if (!txtid->addba_exchangecomplete) {
2426 if (!txtid->addba_exchangeinprogress &&
2427 (txtid->addba_exchangeattempts < ADDBA_EXCHANGE_ATTEMPTS)) {
2428 txtid->addba_exchangeattempts++;
2429 return AGGR_REQUIRED;
2430 }
2431 }
2432
2433 return AGGR_NOT_REQUIRED;
2434}
2435
2436/* Start TX aggregation */
2437
2438int ath_tx_aggr_start(struct ath_softc *sc,
2439 const u8 *addr,
2440 u16 tid,
2441 u16 *ssn)
2442{
2443 struct ath_atx_tid *txtid;
2444 struct ath_node *an;
2445
2446 spin_lock_bh(&sc->node_lock);
2447 an = ath_node_find(sc, (u8 *) addr);
2448 spin_unlock_bh(&sc->node_lock);
2449
2450 if (!an) {
2451 DPRINTF(sc, ATH_DBG_AGGR,
2452 "%s: Node not found to initialize "
2453 "TX aggregation\n", __func__);
2454 return -1;
2455 }
2456
Sujith672840a2008-08-11 14:05:08 +05302457 if (sc->sc_flags & SC_OP_TXAGGR) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002458 txtid = ATH_AN_2_TID(an, tid);
2459 txtid->addba_exchangeinprogress = 1;
2460 ath_tx_pause_tid(sc, txtid);
2461 }
2462
2463 return 0;
2464}
2465
2466/* Stop tx aggregation */
2467
2468int ath_tx_aggr_stop(struct ath_softc *sc,
2469 const u8 *addr,
2470 u16 tid)
2471{
2472 struct ath_node *an;
2473
2474 spin_lock_bh(&sc->node_lock);
2475 an = ath_node_find(sc, (u8 *) addr);
2476 spin_unlock_bh(&sc->node_lock);
2477
2478 if (!an) {
2479 DPRINTF(sc, ATH_DBG_AGGR,
2480 "%s: TX aggr stop for non-existent node\n", __func__);
2481 return -1;
2482 }
2483
2484 ath_tx_aggr_teardown(sc, an, tid);
2485 return 0;
2486}
2487
2488/*
2489 * Performs transmit side cleanup when TID changes from aggregated to
2490 * unaggregated.
2491 * - Pause the TID and mark cleanup in progress
2492 * - Discard all retry frames from the s/w queue.
2493 */
2494
2495void ath_tx_aggr_teardown(struct ath_softc *sc,
2496 struct ath_node *an, u8 tid)
2497{
2498 struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid);
2499 struct ath_txq *txq = &sc->sc_txq[txtid->ac->qnum];
2500 struct ath_buf *bf;
2501 struct list_head bf_head;
2502 INIT_LIST_HEAD(&bf_head);
2503
2504 DPRINTF(sc, ATH_DBG_AGGR, "%s: teardown TX aggregation\n", __func__);
2505
2506 if (txtid->cleanup_inprogress) /* cleanup is in progress */
2507 return;
2508
2509 if (!txtid->addba_exchangecomplete) {
2510 txtid->addba_exchangeattempts = 0;
2511 return;
2512 }
2513
2514 /* TID must be paused first */
2515 ath_tx_pause_tid(sc, txtid);
2516
2517 /* drop all software retried frames and mark this TID */
2518 spin_lock_bh(&txq->axq_lock);
2519 while (!list_empty(&txtid->buf_q)) {
2520 bf = list_first_entry(&txtid->buf_q, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +05302521 if (!bf_isretried(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002522 /*
2523 * NB: it's based on the assumption that
2524 * software retried frame will always stay
2525 * at the head of software queue.
2526 */
2527 break;
2528 }
2529 list_cut_position(&bf_head,
2530 &txtid->buf_q, &bf->bf_lastfrm->list);
2531 ath_tx_update_baw(sc, txtid, bf->bf_seqno);
2532
2533 /* complete this sub-frame */
2534 ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
2535 }
2536
2537 if (txtid->baw_head != txtid->baw_tail) {
2538 spin_unlock_bh(&txq->axq_lock);
2539 txtid->cleanup_inprogress = true;
2540 } else {
2541 txtid->addba_exchangecomplete = 0;
2542 txtid->addba_exchangeattempts = 0;
2543 spin_unlock_bh(&txq->axq_lock);
2544 ath_tx_flush_tid(sc, txtid);
2545 }
2546}
2547
2548/*
2549 * Tx scheduling logic
2550 * NB: must be called with txq lock held
2551 */
2552
2553void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq)
2554{
2555 struct ath_atx_ac *ac;
2556 struct ath_atx_tid *tid;
2557
2558 /* nothing to schedule */
2559 if (list_empty(&txq->axq_acq))
2560 return;
2561 /*
2562 * get the first node/ac pair on the queue
2563 */
2564 ac = list_first_entry(&txq->axq_acq, struct ath_atx_ac, list);
2565 list_del(&ac->list);
2566 ac->sched = false;
2567
2568 /*
2569 * process a single tid per destination
2570 */
2571 do {
2572 /* nothing to schedule */
2573 if (list_empty(&ac->tid_q))
2574 return;
2575
2576 tid = list_first_entry(&ac->tid_q, struct ath_atx_tid, list);
2577 list_del(&tid->list);
2578 tid->sched = false;
2579
2580 if (tid->paused) /* check next tid to keep h/w busy */
2581 continue;
2582
2583 if (!(tid->an->an_smmode == ATH_SM_PWRSAV_DYNAMIC) ||
2584 ((txq->axq_depth % 2) == 0)) {
2585 ath_tx_sched_aggr(sc, txq, tid);
2586 }
2587
2588 /*
2589 * add tid to round-robin queue if more frames
2590 * are pending for the tid
2591 */
2592 if (!list_empty(&tid->buf_q))
2593 ath_tx_queue_tid(txq, tid);
2594
2595 /* only schedule one TID at a time */
2596 break;
2597 } while (!list_empty(&ac->tid_q));
2598
2599 /*
2600 * schedule AC if more TIDs need processing
2601 */
2602 if (!list_empty(&ac->tid_q)) {
2603 /*
2604 * add dest ac to txq if not already added
2605 */
2606 if (!ac->sched) {
2607 ac->sched = true;
2608 list_add_tail(&ac->list, &txq->axq_acq);
2609 }
2610 }
2611}
2612
2613/* Initialize per-node transmit state */
2614
2615void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an)
2616{
Sujith672840a2008-08-11 14:05:08 +05302617 if (sc->sc_flags & SC_OP_TXAGGR) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002618 struct ath_atx_tid *tid;
2619 struct ath_atx_ac *ac;
2620 int tidno, acno;
2621
Johannes Bergae5eb022008-10-14 16:58:37 +02002622 an->maxampdu = ATH_AMPDU_LIMIT_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002623
2624 /*
2625 * Init per tid tx state
2626 */
2627 for (tidno = 0, tid = &an->an_aggr.tx.tid[tidno];
2628 tidno < WME_NUM_TID;
2629 tidno++, tid++) {
2630 tid->an = an;
2631 tid->tidno = tidno;
2632 tid->seq_start = tid->seq_next = 0;
2633 tid->baw_size = WME_MAX_BA;
2634 tid->baw_head = tid->baw_tail = 0;
2635 tid->sched = false;
2636 tid->paused = false;
2637 tid->cleanup_inprogress = false;
2638 INIT_LIST_HEAD(&tid->buf_q);
2639
2640 acno = TID_TO_WME_AC(tidno);
2641 tid->ac = &an->an_aggr.tx.ac[acno];
2642
2643 /* ADDBA state */
2644 tid->addba_exchangecomplete = 0;
2645 tid->addba_exchangeinprogress = 0;
2646 tid->addba_exchangeattempts = 0;
2647 }
2648
2649 /*
2650 * Init per ac tx state
2651 */
2652 for (acno = 0, ac = &an->an_aggr.tx.ac[acno];
2653 acno < WME_NUM_AC; acno++, ac++) {
2654 ac->sched = false;
2655 INIT_LIST_HEAD(&ac->tid_q);
2656
2657 switch (acno) {
2658 case WME_AC_BE:
2659 ac->qnum = ath_tx_get_qnum(sc,
2660 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
2661 break;
2662 case WME_AC_BK:
2663 ac->qnum = ath_tx_get_qnum(sc,
2664 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BK);
2665 break;
2666 case WME_AC_VI:
2667 ac->qnum = ath_tx_get_qnum(sc,
2668 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VI);
2669 break;
2670 case WME_AC_VO:
2671 ac->qnum = ath_tx_get_qnum(sc,
2672 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VO);
2673 break;
2674 }
2675 }
2676 }
2677}
2678
2679/* Cleanupthe pending buffers for the node. */
2680
2681void ath_tx_node_cleanup(struct ath_softc *sc,
2682 struct ath_node *an, bool bh_flag)
2683{
2684 int i;
2685 struct ath_atx_ac *ac, *ac_tmp;
2686 struct ath_atx_tid *tid, *tid_tmp;
2687 struct ath_txq *txq;
2688 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2689 if (ATH_TXQ_SETUP(sc, i)) {
2690 txq = &sc->sc_txq[i];
2691
2692 if (likely(bh_flag))
2693 spin_lock_bh(&txq->axq_lock);
2694 else
2695 spin_lock(&txq->axq_lock);
2696
2697 list_for_each_entry_safe(ac,
2698 ac_tmp, &txq->axq_acq, list) {
2699 tid = list_first_entry(&ac->tid_q,
2700 struct ath_atx_tid, list);
2701 if (tid && tid->an != an)
2702 continue;
2703 list_del(&ac->list);
2704 ac->sched = false;
2705
2706 list_for_each_entry_safe(tid,
2707 tid_tmp, &ac->tid_q, list) {
2708 list_del(&tid->list);
2709 tid->sched = false;
2710 ath_tid_drain(sc, txq, tid, bh_flag);
2711 tid->addba_exchangecomplete = 0;
2712 tid->addba_exchangeattempts = 0;
2713 tid->cleanup_inprogress = false;
2714 }
2715 }
2716
2717 if (likely(bh_flag))
2718 spin_unlock_bh(&txq->axq_lock);
2719 else
2720 spin_unlock(&txq->axq_lock);
2721 }
2722 }
2723}
2724
2725/* Cleanup per node transmit state */
2726
2727void ath_tx_node_free(struct ath_softc *sc, struct ath_node *an)
2728{
Sujith672840a2008-08-11 14:05:08 +05302729 if (sc->sc_flags & SC_OP_TXAGGR) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002730 struct ath_atx_tid *tid;
2731 int tidno, i;
2732
2733 /* Init per tid rx state */
2734 for (tidno = 0, tid = &an->an_aggr.tx.tid[tidno];
2735 tidno < WME_NUM_TID;
2736 tidno++, tid++) {
2737
2738 for (i = 0; i < ATH_TID_MAX_BUFS; i++)
2739 ASSERT(tid->tx_buf[i] == NULL);
2740 }
2741 }
2742}
Jouni Malinene022edb2008-08-22 17:31:33 +03002743
2744void ath_tx_cabq(struct ath_softc *sc, struct sk_buff *skb)
2745{
2746 int hdrlen, padsize;
2747 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2748 struct ath_tx_control txctl;
2749
2750 /*
2751 * As a temporary workaround, assign seq# here; this will likely need
2752 * to be cleaned up to work better with Beacon transmission and virtual
2753 * BSSes.
2754 */
2755 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
2756 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2757 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
2758 sc->seq_no += 0x10;
2759 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
2760 hdr->seq_ctrl |= cpu_to_le16(sc->seq_no);
2761 }
2762
2763 /* Add the padding after the header if this is not already done */
2764 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
2765 if (hdrlen & 3) {
2766 padsize = hdrlen % 4;
2767 if (skb_headroom(skb) < padsize) {
2768 DPRINTF(sc, ATH_DBG_XMIT, "%s: TX CABQ padding "
2769 "failed\n", __func__);
2770 dev_kfree_skb_any(skb);
2771 return;
2772 }
2773 skb_push(skb, padsize);
2774 memmove(skb->data, skb->data + padsize, hdrlen);
2775 }
2776
2777 DPRINTF(sc, ATH_DBG_XMIT, "%s: transmitting CABQ packet, skb: %p\n",
2778 __func__,
2779 skb);
2780
2781 memset(&txctl, 0, sizeof(struct ath_tx_control));
2782 txctl.flags = ATH9K_TXDESC_CAB;
2783 if (ath_tx_prepare(sc, skb, &txctl) == 0) {
2784 /*
2785 * Start DMA mapping.
2786 * ath_tx_start_dma() will be called either synchronously
2787 * or asynchrounsly once DMA is complete.
2788 */
2789 xmit_map_sg(sc, skb, &txctl);
2790 } else {
2791 ath_node_put(sc, txctl.an, ATH9K_BH_STATUS_CHANGE);
2792 DPRINTF(sc, ATH_DBG_XMIT, "%s: TX CABQ failed\n", __func__);
2793 dev_kfree_skb_any(skb);
2794 }
2795}
2796