blob: 522078d809318570b39864e40077cbfc607ba043 [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,
Sujith04bd46382008-11-28 22:18:05 +053086 "qnum: %d, txq depth: %d\n", txq->axq_qnum, txq->axq_depth);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070087
88 if (txq->axq_link == NULL) {
89 ath9k_hw_puttxbuf(ah, txq->axq_qnum, bf->bf_daddr);
90 DPRINTF(sc, ATH_DBG_XMIT,
Sujith04bd46382008-11-28 22:18:05 +053091 "TXDP[%u] = %llx (%p)\n",
92 txq->axq_qnum, ito64(bf->bf_daddr), bf->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070093 } else {
94 *txq->axq_link = bf->bf_daddr;
Sujith04bd46382008-11-28 22:18:05 +053095 DPRINTF(sc, ATH_DBG_XMIT, "link[%u] (%p)=%llx (%p)\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070096 txq->axq_qnum, txq->axq_link,
97 ito64(bf->bf_daddr), bf->bf_desc);
98 }
99 txq->axq_link = &(bf->bf_lastbf->bf_desc->ds_link);
100 ath9k_hw_txstart(ah, txq->axq_qnum);
101}
102
Sujithc4288392008-11-18 09:09:30 +0530103static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
104 struct ath_xmit_status *tx_status)
105{
106 struct ieee80211_hw *hw = sc->hw;
107 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
108 struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
Jouni Malinenf7a276a2008-12-15 16:02:04 +0200109 int hdrlen, padsize;
Sujithc4288392008-11-18 09:09:30 +0530110
Sujith04bd46382008-11-28 22:18:05 +0530111 DPRINTF(sc, ATH_DBG_XMIT, "TX complete: skb: %p\n", skb);
Sujithc4288392008-11-18 09:09:30 +0530112
113 if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK ||
114 tx_info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
115 kfree(tx_info_priv);
116 tx_info->rate_driver_data[0] = NULL;
117 }
118
119 if (tx_status->flags & ATH_TX_BAR) {
120 tx_info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
121 tx_status->flags &= ~ATH_TX_BAR;
122 }
123
124 if (!(tx_status->flags & (ATH_TX_ERROR | ATH_TX_XRETRY))) {
125 /* Frame was ACKed */
126 tx_info->flags |= IEEE80211_TX_STAT_ACK;
127 }
128
Jouni Malinen157ec872008-12-22 16:45:54 +0200129 tx_info->status.rates[0].count = tx_status->retries + 1;
Sujithc4288392008-11-18 09:09:30 +0530130
Jouni Malinenf7a276a2008-12-15 16:02:04 +0200131 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
132 padsize = hdrlen & 3;
133 if (padsize && hdrlen >= 24) {
134 /*
135 * Remove MAC header padding before giving the frame back to
136 * mac80211.
137 */
138 memmove(skb->data + padsize, skb->data, hdrlen);
139 skb_pull(skb, padsize);
140 }
141
Sujithc4288392008-11-18 09:09:30 +0530142 ieee80211_tx_status(hw, skb);
143}
144
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700145/* Check if it's okay to send out aggregates */
146
Sujitha37c2c72008-10-29 10:15:40 +0530147static int ath_aggr_query(struct ath_softc *sc, struct ath_node *an, u8 tidno)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700148{
149 struct ath_atx_tid *tid;
150 tid = ATH_AN_2_TID(an, tidno);
151
Sujitha37c2c72008-10-29 10:15:40 +0530152 if (tid->state & AGGR_ADDBA_COMPLETE ||
153 tid->state & AGGR_ADDBA_PROGRESS)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700154 return 1;
155 else
156 return 0;
157}
158
Sujithff37e332008-11-24 12:07:55 +0530159static void ath_get_beaconconfig(struct ath_softc *sc, int if_id,
160 struct ath_beacon_config *conf)
161{
162 struct ieee80211_hw *hw = sc->hw;
163
164 /* fill in beacon config data */
165
166 conf->beacon_interval = hw->conf.beacon_int;
167 conf->listen_interval = 100;
168 conf->dtim_count = 1;
169 conf->bmiss_timeout = ATH_DEFAULT_BMISS_LIMIT * conf->listen_interval;
170}
171
Sujith528f0c62008-10-29 10:14:26 +0530172/* Calculate Atheros packet type from IEEE80211 packet header */
173
174static enum ath9k_pkt_type get_hw_packet_type(struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700175{
Sujith528f0c62008-10-29 10:14:26 +0530176 struct ieee80211_hdr *hdr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700177 enum ath9k_pkt_type htype;
178 __le16 fc;
179
Sujith528f0c62008-10-29 10:14:26 +0530180 hdr = (struct ieee80211_hdr *)skb->data;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700181 fc = hdr->frame_control;
182
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700183 if (ieee80211_is_beacon(fc))
184 htype = ATH9K_PKT_TYPE_BEACON;
185 else if (ieee80211_is_probe_resp(fc))
186 htype = ATH9K_PKT_TYPE_PROBE_RESP;
187 else if (ieee80211_is_atim(fc))
188 htype = ATH9K_PKT_TYPE_ATIM;
189 else if (ieee80211_is_pspoll(fc))
190 htype = ATH9K_PKT_TYPE_PSPOLL;
191 else
192 htype = ATH9K_PKT_TYPE_NORMAL;
193
194 return htype;
195}
196
Sujitha8efee42008-11-18 09:07:30 +0530197static bool is_pae(struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700198{
199 struct ieee80211_hdr *hdr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700200 __le16 fc;
201
202 hdr = (struct ieee80211_hdr *)skb->data;
203 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +0200204
Sujitha8efee42008-11-18 09:07:30 +0530205 if (ieee80211_is_data(fc)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700206 if (ieee80211_is_nullfunc(fc) ||
Sujith528f0c62008-10-29 10:14:26 +0530207 /* Port Access Entity (IEEE 802.1X) */
208 (skb->protocol == cpu_to_be16(ETH_P_PAE))) {
Sujitha8efee42008-11-18 09:07:30 +0530209 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700210 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700211 }
212
Sujitha8efee42008-11-18 09:07:30 +0530213 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700214}
215
Sujith528f0c62008-10-29 10:14:26 +0530216static int get_hw_crypto_keytype(struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700217{
Sujith528f0c62008-10-29 10:14:26 +0530218 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
219
220 if (tx_info->control.hw_key) {
221 if (tx_info->control.hw_key->alg == ALG_WEP)
222 return ATH9K_KEY_TYPE_WEP;
223 else if (tx_info->control.hw_key->alg == ALG_TKIP)
224 return ATH9K_KEY_TYPE_TKIP;
225 else if (tx_info->control.hw_key->alg == ALG_CCMP)
226 return ATH9K_KEY_TYPE_AES;
227 }
228
229 return ATH9K_KEY_TYPE_CLEAR;
230}
231
Sujith528f0c62008-10-29 10:14:26 +0530232/* Called only when tx aggregation is enabled and HT is supported */
233
234static void assign_aggr_tid_seqno(struct sk_buff *skb,
235 struct ath_buf *bf)
236{
237 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
238 struct ieee80211_hdr *hdr;
239 struct ath_node *an;
240 struct ath_atx_tid *tid;
241 __le16 fc;
242 u8 *qc;
243
244 if (!tx_info->control.sta)
245 return;
246
247 an = (struct ath_node *)tx_info->control.sta->drv_priv;
248 hdr = (struct ieee80211_hdr *)skb->data;
249 fc = hdr->frame_control;
250
251 /* Get tidno */
252
253 if (ieee80211_is_data_qos(fc)) {
254 qc = ieee80211_get_qos_ctl(hdr);
255 bf->bf_tidno = qc[0] & 0xf;
Sujith98deeea2008-08-11 14:05:46 +0530256 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700257
Sujith528f0c62008-10-29 10:14:26 +0530258 /* Get seqno */
Senthil Balasubramaniand3a1db12008-12-22 16:31:58 +0530259 /* For HT capable stations, we save tidno for later use.
260 * We also override seqno set by upper layer with the one
261 * in tx aggregation state.
262 *
263 * If fragmentation is on, the sequence number is
264 * not overridden, since it has been
265 * incremented by the fragmentation routine.
266 *
267 * FIXME: check if the fragmentation threshold exceeds
268 * IEEE80211 max.
269 */
270 tid = ATH_AN_2_TID(an, bf->bf_tidno);
271 hdr->seq_ctrl = cpu_to_le16(tid->seq_next <<
272 IEEE80211_SEQ_SEQ_SHIFT);
273 bf->bf_seqno = tid->seq_next;
274 INCR(tid->seq_next, IEEE80211_SEQ_MAX);
Sujith528f0c62008-10-29 10:14:26 +0530275}
276
277static int setup_tx_flags(struct ath_softc *sc, struct sk_buff *skb,
278 struct ath_txq *txq)
279{
280 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
281 int flags = 0;
282
283 flags |= ATH9K_TXDESC_CLRDMASK; /* needed for crypto errors */
284 flags |= ATH9K_TXDESC_INTREQ;
285
286 if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK)
287 flags |= ATH9K_TXDESC_NOACK;
288 if (tx_info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
289 flags |= ATH9K_TXDESC_RTSENA;
290
291 return flags;
292}
293
294static struct ath_buf *ath_tx_get_buffer(struct ath_softc *sc)
295{
296 struct ath_buf *bf = NULL;
297
Sujithb77f4832008-12-07 21:44:03 +0530298 spin_lock_bh(&sc->tx.txbuflock);
Sujith528f0c62008-10-29 10:14:26 +0530299
Sujithb77f4832008-12-07 21:44:03 +0530300 if (unlikely(list_empty(&sc->tx.txbuf))) {
301 spin_unlock_bh(&sc->tx.txbuflock);
Sujith528f0c62008-10-29 10:14:26 +0530302 return NULL;
303 }
304
Sujithb77f4832008-12-07 21:44:03 +0530305 bf = list_first_entry(&sc->tx.txbuf, struct ath_buf, list);
Sujith528f0c62008-10-29 10:14:26 +0530306 list_del(&bf->list);
307
Sujithb77f4832008-12-07 21:44:03 +0530308 spin_unlock_bh(&sc->tx.txbuflock);
Sujith528f0c62008-10-29 10:14:26 +0530309
310 return bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700311}
312
313/* To complete a chain of buffers associated a frame */
314
315static void ath_tx_complete_buf(struct ath_softc *sc,
316 struct ath_buf *bf,
317 struct list_head *bf_q,
318 int txok, int sendbar)
319{
320 struct sk_buff *skb = bf->bf_mpdu;
321 struct ath_xmit_status tx_status;
Senthil Balasubramaniana07d3612008-12-09 17:23:33 +0530322 unsigned long flags;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700323
324 /*
325 * Set retry information.
326 * NB: Don't use the information in the descriptor, because the frame
327 * could be software retried.
328 */
329 tx_status.retries = bf->bf_retries;
330 tx_status.flags = 0;
331
332 if (sendbar)
333 tx_status.flags = ATH_TX_BAR;
334
335 if (!txok) {
336 tx_status.flags |= ATH_TX_ERROR;
337
Sujithcd3d39a2008-08-11 14:03:34 +0530338 if (bf_isxretried(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700339 tx_status.flags |= ATH_TX_XRETRY;
340 }
Sujith102e0572008-10-29 10:15:16 +0530341
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700342 /* Unmap this frame */
Gabor Juhos7da3c552009-01-14 20:17:03 +0100343 dma_unmap_single(sc->dev, bf->bf_dmacontext, skb->len, DMA_TO_DEVICE);
344
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700345 /* complete this frame */
Sujith528f0c62008-10-29 10:14:26 +0530346 ath_tx_complete(sc, skb, &tx_status);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700347
348 /*
349 * Return the list of ath_buf of this mpdu to free queue
350 */
Sujithb77f4832008-12-07 21:44:03 +0530351 spin_lock_irqsave(&sc->tx.txbuflock, flags);
352 list_splice_tail_init(bf_q, &sc->tx.txbuf);
353 spin_unlock_irqrestore(&sc->tx.txbuflock, flags);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700354}
355
356/*
357 * queue up a dest/ac pair for tx scheduling
358 * NB: must be called with txq lock held
359 */
360
361static void ath_tx_queue_tid(struct ath_txq *txq, struct ath_atx_tid *tid)
362{
363 struct ath_atx_ac *ac = tid->ac;
364
365 /*
366 * if tid is paused, hold off
367 */
368 if (tid->paused)
369 return;
370
371 /*
372 * add tid to ac atmost once
373 */
374 if (tid->sched)
375 return;
376
377 tid->sched = true;
378 list_add_tail(&tid->list, &ac->tid_q);
379
380 /*
381 * add node ac to txq atmost once
382 */
383 if (ac->sched)
384 return;
385
386 ac->sched = true;
387 list_add_tail(&ac->list, &txq->axq_acq);
388}
389
390/* pause a tid */
391
392static void ath_tx_pause_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
393{
Sujithb77f4832008-12-07 21:44:03 +0530394 struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700395
396 spin_lock_bh(&txq->axq_lock);
397
398 tid->paused++;
399
400 spin_unlock_bh(&txq->axq_lock);
401}
402
403/* resume a tid and schedule aggregate */
404
405void ath_tx_resume_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
406{
Sujithb77f4832008-12-07 21:44:03 +0530407 struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700408
409 ASSERT(tid->paused > 0);
410 spin_lock_bh(&txq->axq_lock);
411
412 tid->paused--;
413
414 if (tid->paused > 0)
415 goto unlock;
416
417 if (list_empty(&tid->buf_q))
418 goto unlock;
419
420 /*
421 * Add this TID to scheduler and try to send out aggregates
422 */
423 ath_tx_queue_tid(txq, tid);
424 ath_txq_schedule(sc, txq);
425unlock:
426 spin_unlock_bh(&txq->axq_lock);
427}
428
429/* Compute the number of bad frames */
430
Sujithb5aa9bf2008-10-29 10:13:31 +0530431static int ath_tx_num_badfrms(struct ath_softc *sc, struct ath_buf *bf,
432 int txok)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700433{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700434 struct ath_buf *bf_last = bf->bf_lastbf;
435 struct ath_desc *ds = bf_last->bf_desc;
436 u16 seq_st = 0;
437 u32 ba[WME_BA_BMP_SIZE >> 5];
438 int ba_index;
439 int nbad = 0;
440 int isaggr = 0;
441
Sujithb5aa9bf2008-10-29 10:13:31 +0530442 if (ds->ds_txstat.ts_flags == ATH9K_TX_SW_ABORTED)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443 return 0;
444
Sujithcd3d39a2008-08-11 14:03:34 +0530445 isaggr = bf_isaggr(bf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700446 if (isaggr) {
447 seq_st = ATH_DS_BA_SEQ(ds);
448 memcpy(ba, ATH_DS_BA_BITMAP(ds), WME_BA_BMP_SIZE >> 3);
449 }
450
451 while (bf) {
452 ba_index = ATH_BA_INDEX(seq_st, bf->bf_seqno);
453 if (!txok || (isaggr && !ATH_BA_ISSET(ba, ba_index)))
454 nbad++;
455
456 bf = bf->bf_next;
457 }
458
459 return nbad;
460}
461
462static void ath_tx_set_retry(struct ath_softc *sc, struct ath_buf *bf)
463{
464 struct sk_buff *skb;
465 struct ieee80211_hdr *hdr;
466
Sujithcd3d39a2008-08-11 14:03:34 +0530467 bf->bf_state.bf_type |= BUF_RETRY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700468 bf->bf_retries++;
469
470 skb = bf->bf_mpdu;
471 hdr = (struct ieee80211_hdr *)skb->data;
472 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_RETRY);
473}
474
475/* Update block ack window */
476
Sujith102e0572008-10-29 10:15:16 +0530477static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
478 int seqno)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700479{
480 int index, cindex;
481
482 index = ATH_BA_INDEX(tid->seq_start, seqno);
483 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
484
485 tid->tx_buf[cindex] = NULL;
486
487 while (tid->baw_head != tid->baw_tail && !tid->tx_buf[tid->baw_head]) {
488 INCR(tid->seq_start, IEEE80211_SEQ_MAX);
489 INCR(tid->baw_head, ATH_TID_MAX_BUFS);
490 }
491}
492
493/*
494 * ath_pkt_dur - compute packet duration (NB: not NAV)
495 *
496 * rix - rate index
497 * pktlen - total bytes (delims + data + fcs + pads + pad delims)
498 * width - 0 for 20 MHz, 1 for 40 MHz
499 * half_gi - to use 4us v/s 3.6 us for symbol time
500 */
Sujith102e0572008-10-29 10:15:16 +0530501static u32 ath_pkt_duration(struct ath_softc *sc, u8 rix, struct ath_buf *bf,
502 int width, int half_gi, bool shortPreamble)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700503{
Sujith3706de62008-12-07 21:42:10 +0530504 struct ath_rate_table *rate_table = sc->cur_rate_table;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700505 u32 nbits, nsymbits, duration, nsymbols;
506 u8 rc;
507 int streams, pktlen;
508
Sujithcd3d39a2008-08-11 14:03:34 +0530509 pktlen = bf_isaggr(bf) ? bf->bf_al : bf->bf_frmlen;
Sujithe63835b2008-11-18 09:07:53 +0530510 rc = rate_table->info[rix].ratecode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700511
Sujithe63835b2008-11-18 09:07:53 +0530512 /* for legacy rates, use old function to compute packet duration */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700513 if (!IS_HT_RATE(rc))
Sujithe63835b2008-11-18 09:07:53 +0530514 return ath9k_hw_computetxtime(sc->sc_ah, rate_table, pktlen,
515 rix, shortPreamble);
516
517 /* find number of symbols: PLCP + data */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700518 nbits = (pktlen << 3) + OFDM_PLCP_BITS;
519 nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
520 nsymbols = (nbits + nsymbits - 1) / nsymbits;
521
522 if (!half_gi)
523 duration = SYMBOL_TIME(nsymbols);
524 else
525 duration = SYMBOL_TIME_HALFGI(nsymbols);
526
Sujithe63835b2008-11-18 09:07:53 +0530527 /* addup duration for legacy/ht training and signal fields */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700528 streams = HT_RC_2_STREAMS(rc);
529 duration += L_STF + L_LTF + L_SIG + HT_SIG + HT_STF + HT_LTF(streams);
Sujith102e0572008-10-29 10:15:16 +0530530
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700531 return duration;
532}
533
534/* Rate module function to set rate related fields in tx descriptor */
535
536static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf)
537{
538 struct ath_hal *ah = sc->sc_ah;
Sujithe63835b2008-11-18 09:07:53 +0530539 struct ath_rate_table *rt;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700540 struct ath_desc *ds = bf->bf_desc;
541 struct ath_desc *lastds = bf->bf_lastbf->bf_desc;
542 struct ath9k_11n_rate_series series[4];
Sujith528f0c62008-10-29 10:14:26 +0530543 struct sk_buff *skb;
544 struct ieee80211_tx_info *tx_info;
Sujitha8efee42008-11-18 09:07:30 +0530545 struct ieee80211_tx_rate *rates;
Sujithe63835b2008-11-18 09:07:53 +0530546 struct ieee80211_hdr *hdr;
Luis R. Rodriguez96742252008-12-23 15:58:38 -0800547 struct ieee80211_hw *hw = sc->hw;
548 int i, flags, rtsctsena = 0, enable_g_protection = 0;
Sujithe63835b2008-11-18 09:07:53 +0530549 u32 ctsduration = 0;
550 u8 rix = 0, cix, ctsrate = 0;
551 __le16 fc;
552
553 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
Sujith528f0c62008-10-29 10:14:26 +0530554
555 skb = (struct sk_buff *)bf->bf_mpdu;
Sujithe63835b2008-11-18 09:07:53 +0530556 hdr = (struct ieee80211_hdr *)skb->data;
557 fc = hdr->frame_control;
Sujith528f0c62008-10-29 10:14:26 +0530558 tx_info = IEEE80211_SKB_CB(skb);
Sujithe63835b2008-11-18 09:07:53 +0530559 rates = tx_info->control.rates;
Sujith528f0c62008-10-29 10:14:26 +0530560
Sujithe63835b2008-11-18 09:07:53 +0530561 if (ieee80211_has_morefrags(fc) ||
562 (le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG)) {
563 rates[1].count = rates[2].count = rates[3].count = 0;
564 rates[1].idx = rates[2].idx = rates[3].idx = 0;
565 rates[0].count = ATH_TXMAXTRY;
566 }
567
568 /* get the cix for the lowest valid rix */
Sujith3706de62008-12-07 21:42:10 +0530569 rt = sc->cur_rate_table;
Sujitha8efee42008-11-18 09:07:30 +0530570 for (i = 3; i >= 0; i--) {
Sujithe63835b2008-11-18 09:07:53 +0530571 if (rates[i].count && (rates[i].idx >= 0)) {
Sujitha8efee42008-11-18 09:07:30 +0530572 rix = rates[i].idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700573 break;
574 }
575 }
Sujithe63835b2008-11-18 09:07:53 +0530576
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700577 flags = (bf->bf_flags & (ATH9K_TXDESC_RTSENA | ATH9K_TXDESC_CTSENA));
Sujithe63835b2008-11-18 09:07:53 +0530578 cix = rt->info[rix].ctrl_rate;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700579
Luis R. Rodriguez96742252008-12-23 15:58:38 -0800580 /* All protection frames are transmited at 2Mb/s for 802.11g,
581 * otherwise we transmit them at 1Mb/s */
582 if (hw->conf.channel->band == IEEE80211_BAND_2GHZ &&
583 !conf_is_ht(&hw->conf))
584 enable_g_protection = 1;
585
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700586 /*
Sujithe63835b2008-11-18 09:07:53 +0530587 * If 802.11g protection is enabled, determine whether to use RTS/CTS or
588 * just CTS. Note that this is only done for OFDM/HT unicast frames.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700589 */
Sujithe63835b2008-11-18 09:07:53 +0530590 if (sc->sc_protmode != PROT_M_NONE && !(bf->bf_flags & ATH9K_TXDESC_NOACK)
Sujith46d14a52008-11-18 09:08:13 +0530591 && (rt->info[rix].phy == WLAN_RC_PHY_OFDM ||
Sujithe63835b2008-11-18 09:07:53 +0530592 WLAN_RC_PHY_HT(rt->info[rix].phy))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700593 if (sc->sc_protmode == PROT_M_RTSCTS)
594 flags = ATH9K_TXDESC_RTSENA;
595 else if (sc->sc_protmode == PROT_M_CTSONLY)
596 flags = ATH9K_TXDESC_CTSENA;
597
Luis R. Rodriguez96742252008-12-23 15:58:38 -0800598 cix = rt->info[enable_g_protection].ctrl_rate;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700599 rtsctsena = 1;
600 }
601
Sujithe63835b2008-11-18 09:07:53 +0530602 /* For 11n, the default behavior is to enable RTS for hw retried frames.
603 * We enable the global flag here and let rate series flags determine
604 * which rates will actually use RTS.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700605 */
Sujithcd3d39a2008-08-11 14:03:34 +0530606 if ((ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) && bf_isdata(bf)) {
Sujithe63835b2008-11-18 09:07:53 +0530607 /* 802.11g protection not needed, use our default behavior */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608 if (!rtsctsena)
609 flags = ATH9K_TXDESC_RTSENA;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700610 }
611
Sujithe63835b2008-11-18 09:07:53 +0530612 /* Set protection if aggregate protection on */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700613 if (sc->sc_config.ath_aggr_prot &&
Sujithcd3d39a2008-08-11 14:03:34 +0530614 (!bf_isaggr(bf) || (bf_isaggr(bf) && bf->bf_al < 8192))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700615 flags = ATH9K_TXDESC_RTSENA;
Luis R. Rodriguez96742252008-12-23 15:58:38 -0800616 cix = rt->info[enable_g_protection].ctrl_rate;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700617 rtsctsena = 1;
618 }
619
Sujithe63835b2008-11-18 09:07:53 +0530620 /* For AR5416 - RTS cannot be followed by a frame larger than 8K */
621 if (bf_isaggr(bf) && (bf->bf_al > ah->ah_caps.rts_aggr_limit))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700622 flags &= ~(ATH9K_TXDESC_RTSENA);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700623
624 /*
Sujithe63835b2008-11-18 09:07:53 +0530625 * CTS transmit rate is derived from the transmit rate by looking in the
626 * h/w rate table. We must also factor in whether or not a short
627 * preamble is to be used. NB: cix is set above where RTS/CTS is enabled
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700628 */
Sujithe63835b2008-11-18 09:07:53 +0530629 ctsrate = rt->info[cix].ratecode |
630 (bf_isshpreamble(bf) ? rt->info[cix].short_preamble : 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700631
632 for (i = 0; i < 4; i++) {
Sujithe63835b2008-11-18 09:07:53 +0530633 if (!rates[i].count || (rates[i].idx < 0))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700634 continue;
635
Sujitha8efee42008-11-18 09:07:30 +0530636 rix = rates[i].idx;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700637
Sujithe63835b2008-11-18 09:07:53 +0530638 series[i].Rate = rt->info[rix].ratecode |
639 (bf_isshpreamble(bf) ? rt->info[rix].short_preamble : 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700640
Sujitha8efee42008-11-18 09:07:30 +0530641 series[i].Tries = rates[i].count;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700642
643 series[i].RateFlags = (
Sujitha8efee42008-11-18 09:07:30 +0530644 (rates[i].flags & IEEE80211_TX_RC_USE_RTS_CTS) ?
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645 ATH9K_RATESERIES_RTS_CTS : 0) |
Sujitha8efee42008-11-18 09:07:30 +0530646 ((rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ?
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647 ATH9K_RATESERIES_2040 : 0) |
Sujitha8efee42008-11-18 09:07:30 +0530648 ((rates[i].flags & IEEE80211_TX_RC_SHORT_GI) ?
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649 ATH9K_RATESERIES_HALFGI : 0);
650
Sujith102e0572008-10-29 10:15:16 +0530651 series[i].PktDuration = ath_pkt_duration(sc, rix, bf,
Sujitha8efee42008-11-18 09:07:30 +0530652 (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) != 0,
653 (rates[i].flags & IEEE80211_TX_RC_SHORT_GI),
Sujith102e0572008-10-29 10:15:16 +0530654 bf_isshpreamble(bf));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700655
Sujithff37e332008-11-24 12:07:55 +0530656 series[i].ChSel = sc->sc_tx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700657
658 if (rtsctsena)
659 series[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700660 }
661
Sujithe63835b2008-11-18 09:07:53 +0530662 /* set dur_update_en for l-sig computation except for PS-Poll frames */
663 ath9k_hw_set11n_ratescenario(ah, ds, lastds, !bf_ispspoll(bf),
664 ctsrate, ctsduration,
Sujithcd3d39a2008-08-11 14:03:34 +0530665 series, 4, flags);
Sujith102e0572008-10-29 10:15:16 +0530666
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700667 if (sc->sc_config.ath_aggr_prot && flags)
668 ath9k_hw_set11n_burstduration(ah, ds, 8192);
669}
670
671/*
672 * Function to send a normal HT (non-AMPDU) frame
673 * NB: must be called with txq lock held
674 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700675static int ath_tx_send_normal(struct ath_softc *sc,
676 struct ath_txq *txq,
677 struct ath_atx_tid *tid,
678 struct list_head *bf_head)
679{
680 struct ath_buf *bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700681
682 BUG_ON(list_empty(bf_head));
683
684 bf = list_first_entry(bf_head, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +0530685 bf->bf_state.bf_type &= ~BUF_AMPDU; /* regular HT frame */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700686
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700687 /* update starting sequence number for subsequent ADDBA request */
688 INCR(tid->seq_start, IEEE80211_SEQ_MAX);
689
690 /* Queue to h/w without aggregation */
691 bf->bf_nframes = 1;
692 bf->bf_lastbf = bf->bf_lastfrm; /* one single frame */
693 ath_buf_set_rate(sc, bf);
694 ath_tx_txqaddbuf(sc, txq, bf_head);
695
696 return 0;
697}
698
699/* flush tid's software queue and send frames as non-ampdu's */
700
701static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
702{
Sujithb77f4832008-12-07 21:44:03 +0530703 struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700704 struct ath_buf *bf;
705 struct list_head bf_head;
706 INIT_LIST_HEAD(&bf_head);
707
708 ASSERT(tid->paused > 0);
709 spin_lock_bh(&txq->axq_lock);
710
711 tid->paused--;
712
713 if (tid->paused > 0) {
714 spin_unlock_bh(&txq->axq_lock);
715 return;
716 }
717
718 while (!list_empty(&tid->buf_q)) {
719 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +0530720 ASSERT(!bf_isretried(bf));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700721 list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list);
722 ath_tx_send_normal(sc, txq, tid, &bf_head);
723 }
724
725 spin_unlock_bh(&txq->axq_lock);
726}
727
728/* Completion routine of an aggregate */
729
730static void ath_tx_complete_aggr_rifs(struct ath_softc *sc,
731 struct ath_txq *txq,
732 struct ath_buf *bf,
733 struct list_head *bf_q,
734 int txok)
735{
Sujith528f0c62008-10-29 10:14:26 +0530736 struct ath_node *an = NULL;
737 struct sk_buff *skb;
738 struct ieee80211_tx_info *tx_info;
739 struct ath_atx_tid *tid = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700740 struct ath_buf *bf_last = bf->bf_lastbf;
741 struct ath_desc *ds = bf_last->bf_desc;
742 struct ath_buf *bf_next, *bf_lastq = NULL;
743 struct list_head bf_head, bf_pending;
744 u16 seq_st = 0;
745 u32 ba[WME_BA_BMP_SIZE >> 5];
746 int isaggr, txfail, txpending, sendbar = 0, needreset = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700747
Sujith528f0c62008-10-29 10:14:26 +0530748 skb = (struct sk_buff *)bf->bf_mpdu;
749 tx_info = IEEE80211_SKB_CB(skb);
750
751 if (tx_info->control.sta) {
752 an = (struct ath_node *)tx_info->control.sta->drv_priv;
753 tid = ATH_AN_2_TID(an, bf->bf_tidno);
754 }
755
Sujithcd3d39a2008-08-11 14:03:34 +0530756 isaggr = bf_isaggr(bf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700757 if (isaggr) {
758 if (txok) {
759 if (ATH_DS_TX_BA(ds)) {
760 /*
761 * extract starting sequence and
762 * block-ack bitmap
763 */
764 seq_st = ATH_DS_BA_SEQ(ds);
765 memcpy(ba,
766 ATH_DS_BA_BITMAP(ds),
767 WME_BA_BMP_SIZE >> 3);
768 } else {
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700769 memset(ba, 0, WME_BA_BMP_SIZE >> 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700770
771 /*
772 * AR5416 can become deaf/mute when BA
773 * issue happens. Chip needs to be reset.
774 * But AP code may have sychronization issues
775 * when perform internal reset in this routine.
776 * Only enable reset in STA mode for now.
777 */
Colin McCabed97809d2008-12-01 13:38:55 -0800778 if (sc->sc_ah->ah_opmode ==
779 NL80211_IFTYPE_STATION)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700780 needreset = 1;
781 }
782 } else {
Luis R. Rodriguez0345f372008-10-03 15:45:25 -0700783 memset(ba, 0, WME_BA_BMP_SIZE >> 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700784 }
785 }
786
787 INIT_LIST_HEAD(&bf_pending);
788 INIT_LIST_HEAD(&bf_head);
789
790 while (bf) {
791 txfail = txpending = 0;
792 bf_next = bf->bf_next;
793
794 if (ATH_BA_ISSET(ba, ATH_BA_INDEX(seq_st, bf->bf_seqno))) {
795 /* transmit completion, subframe is
796 * acked by block ack */
797 } else if (!isaggr && txok) {
798 /* transmit completion */
799 } else {
800
Sujitha37c2c72008-10-29 10:15:40 +0530801 if (!(tid->state & AGGR_CLEANUP) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700802 ds->ds_txstat.ts_flags != ATH9K_TX_SW_ABORTED) {
803 if (bf->bf_retries < ATH_MAX_SW_RETRIES) {
804 ath_tx_set_retry(sc, bf);
805 txpending = 1;
806 } else {
Sujithcd3d39a2008-08-11 14:03:34 +0530807 bf->bf_state.bf_type |= BUF_XRETRY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700808 txfail = 1;
809 sendbar = 1;
810 }
811 } else {
812 /*
813 * cleanup in progress, just fail
814 * the un-acked sub-frames
815 */
816 txfail = 1;
817 }
818 }
819 /*
820 * Remove ath_buf's of this sub-frame from aggregate queue.
821 */
822 if (bf_next == NULL) { /* last subframe in the aggregate */
823 ASSERT(bf->bf_lastfrm == bf_last);
824
825 /*
826 * The last descriptor of the last sub frame could be
827 * a holding descriptor for h/w. If that's the case,
828 * bf->bf_lastfrm won't be in the bf_q.
829 * Make sure we handle bf_q properly here.
830 */
831
832 if (!list_empty(bf_q)) {
833 bf_lastq = list_entry(bf_q->prev,
834 struct ath_buf, list);
835 list_cut_position(&bf_head,
836 bf_q, &bf_lastq->list);
837 } else {
838 /*
839 * XXX: if the last subframe only has one
840 * descriptor which is also being used as
841 * a holding descriptor. Then the ath_buf
842 * is not in the bf_q at all.
843 */
844 INIT_LIST_HEAD(&bf_head);
845 }
846 } else {
847 ASSERT(!list_empty(bf_q));
848 list_cut_position(&bf_head,
849 bf_q, &bf->bf_lastfrm->list);
850 }
851
852 if (!txpending) {
853 /*
854 * complete the acked-ones/xretried ones; update
855 * block-ack window
856 */
857 spin_lock_bh(&txq->axq_lock);
858 ath_tx_update_baw(sc, tid, bf->bf_seqno);
859 spin_unlock_bh(&txq->axq_lock);
860
861 /* complete this sub-frame */
862 ath_tx_complete_buf(sc, bf, &bf_head, !txfail, sendbar);
863 } else {
864 /*
865 * retry the un-acked ones
866 */
867 /*
868 * XXX: if the last descriptor is holding descriptor,
869 * in order to requeue the frame to software queue, we
870 * need to allocate a new descriptor and
871 * copy the content of holding descriptor to it.
872 */
873 if (bf->bf_next == NULL &&
874 bf_last->bf_status & ATH_BUFSTATUS_STALE) {
875 struct ath_buf *tbf;
876
877 /* allocate new descriptor */
Sujithb77f4832008-12-07 21:44:03 +0530878 spin_lock_bh(&sc->tx.txbuflock);
879 ASSERT(!list_empty((&sc->tx.txbuf)));
880 tbf = list_first_entry(&sc->tx.txbuf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700881 struct ath_buf, list);
882 list_del(&tbf->list);
Sujithb77f4832008-12-07 21:44:03 +0530883 spin_unlock_bh(&sc->tx.txbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700884
885 ATH_TXBUF_RESET(tbf);
886
887 /* copy descriptor content */
888 tbf->bf_mpdu = bf_last->bf_mpdu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700889 tbf->bf_buf_addr = bf_last->bf_buf_addr;
890 *(tbf->bf_desc) = *(bf_last->bf_desc);
891
892 /* link it to the frame */
893 if (bf_lastq) {
894 bf_lastq->bf_desc->ds_link =
895 tbf->bf_daddr;
896 bf->bf_lastfrm = tbf;
897 ath9k_hw_cleartxdesc(sc->sc_ah,
898 bf->bf_lastfrm->bf_desc);
899 } else {
900 tbf->bf_state = bf_last->bf_state;
901 tbf->bf_lastfrm = tbf;
902 ath9k_hw_cleartxdesc(sc->sc_ah,
903 tbf->bf_lastfrm->bf_desc);
904
905 /* copy the DMA context */
Sujithff9b6622008-08-14 13:27:16 +0530906 tbf->bf_dmacontext =
907 bf_last->bf_dmacontext;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700908 }
909 list_add_tail(&tbf->list, &bf_head);
910 } else {
911 /*
912 * Clear descriptor status words for
913 * software retry
914 */
915 ath9k_hw_cleartxdesc(sc->sc_ah,
Sujithff9b6622008-08-14 13:27:16 +0530916 bf->bf_lastfrm->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700917 }
918
919 /*
920 * Put this buffer to the temporary pending
921 * queue to retain ordering
922 */
923 list_splice_tail_init(&bf_head, &bf_pending);
924 }
925
926 bf = bf_next;
927 }
928
Sujitha37c2c72008-10-29 10:15:40 +0530929 if (tid->state & AGGR_CLEANUP) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700930 /* check to see if we're done with cleaning the h/w queue */
931 spin_lock_bh(&txq->axq_lock);
932
933 if (tid->baw_head == tid->baw_tail) {
Sujitha37c2c72008-10-29 10:15:40 +0530934 tid->state &= ~AGGR_ADDBA_COMPLETE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700935 tid->addba_exchangeattempts = 0;
936 spin_unlock_bh(&txq->axq_lock);
937
Sujitha37c2c72008-10-29 10:15:40 +0530938 tid->state &= ~AGGR_CLEANUP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700939
940 /* send buffered frames as singles */
941 ath_tx_flush_tid(sc, tid);
942 } else
943 spin_unlock_bh(&txq->axq_lock);
944
945 return;
946 }
947
948 /*
949 * prepend un-acked frames to the beginning of the pending frame queue
950 */
951 if (!list_empty(&bf_pending)) {
952 spin_lock_bh(&txq->axq_lock);
953 /* Note: we _prepend_, we _do_not_ at to
954 * the end of the queue ! */
955 list_splice(&bf_pending, &tid->buf_q);
956 ath_tx_queue_tid(txq, tid);
957 spin_unlock_bh(&txq->axq_lock);
958 }
959
960 if (needreset)
Sujithf45144e2008-08-11 14:02:53 +0530961 ath_reset(sc, false);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700962
963 return;
964}
965
Sujithc4288392008-11-18 09:09:30 +0530966static void ath_tx_rc_status(struct ath_buf *bf, struct ath_desc *ds, int nbad)
967{
968 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
969 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
970 struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
971
Vasanthakumar Thiagarajan7ac47012008-11-20 11:51:18 +0530972 tx_info_priv->update_rc = false;
Sujithc4288392008-11-18 09:09:30 +0530973 if (ds->ds_txstat.ts_status & ATH9K_TXERR_FILT)
974 tx_info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
975
976 if ((ds->ds_txstat.ts_status & ATH9K_TXERR_FILT) == 0 &&
977 (bf->bf_flags & ATH9K_TXDESC_NOACK) == 0) {
978 if (bf_isdata(bf)) {
979 memcpy(&tx_info_priv->tx, &ds->ds_txstat,
980 sizeof(tx_info_priv->tx));
981 tx_info_priv->n_frames = bf->bf_nframes;
982 tx_info_priv->n_bad_frames = nbad;
Vasanthakumar Thiagarajan7ac47012008-11-20 11:51:18 +0530983 tx_info_priv->update_rc = true;
Sujithc4288392008-11-18 09:09:30 +0530984 }
985 }
986}
987
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700988/* Process completed xmit descriptors from the specified queue */
989
Sujithc4288392008-11-18 09:09:30 +0530990static void ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700991{
992 struct ath_hal *ah = sc->sc_ah;
993 struct ath_buf *bf, *lastbf, *bf_held = NULL;
994 struct list_head bf_head;
Sujithc4288392008-11-18 09:09:30 +0530995 struct ath_desc *ds;
996 int txok, nbad = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700997 int status;
998
Sujith04bd46382008-11-28 22:18:05 +0530999 DPRINTF(sc, ATH_DBG_QUEUE, "tx queue %d (%x), link %p\n",
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001000 txq->axq_qnum, ath9k_hw_gettxbuf(sc->sc_ah, txq->axq_qnum),
1001 txq->axq_link);
1002
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001003 for (;;) {
1004 spin_lock_bh(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001005 if (list_empty(&txq->axq_q)) {
1006 txq->axq_link = NULL;
1007 txq->axq_linkbuf = NULL;
1008 spin_unlock_bh(&txq->axq_lock);
1009 break;
1010 }
1011 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
1012
1013 /*
1014 * There is a race condition that a BH gets scheduled
1015 * after sw writes TxE and before hw re-load the last
1016 * descriptor to get the newly chained one.
1017 * Software must keep the last DONE descriptor as a
1018 * holding descriptor - software does so by marking
1019 * it with the STALE flag.
1020 */
1021 bf_held = NULL;
1022 if (bf->bf_status & ATH_BUFSTATUS_STALE) {
1023 bf_held = bf;
1024 if (list_is_last(&bf_held->list, &txq->axq_q)) {
1025 /* FIXME:
1026 * The holding descriptor is the last
1027 * descriptor in queue. It's safe to remove
1028 * the last holding descriptor in BH context.
1029 */
1030 spin_unlock_bh(&txq->axq_lock);
1031 break;
1032 } else {
1033 /* Lets work with the next buffer now */
1034 bf = list_entry(bf_held->list.next,
1035 struct ath_buf, list);
1036 }
1037 }
1038
1039 lastbf = bf->bf_lastbf;
1040 ds = lastbf->bf_desc; /* NB: last decriptor */
1041
1042 status = ath9k_hw_txprocdesc(ah, ds);
1043 if (status == -EINPROGRESS) {
1044 spin_unlock_bh(&txq->axq_lock);
1045 break;
1046 }
1047 if (bf->bf_desc == txq->axq_lastdsWithCTS)
1048 txq->axq_lastdsWithCTS = NULL;
1049 if (ds == txq->axq_gatingds)
1050 txq->axq_gatingds = NULL;
1051
1052 /*
1053 * Remove ath_buf's of the same transmit unit from txq,
1054 * however leave the last descriptor back as the holding
1055 * descriptor for hw.
1056 */
1057 lastbf->bf_status |= ATH_BUFSTATUS_STALE;
1058 INIT_LIST_HEAD(&bf_head);
1059
1060 if (!list_is_singular(&lastbf->list))
1061 list_cut_position(&bf_head,
1062 &txq->axq_q, lastbf->list.prev);
1063
1064 txq->axq_depth--;
1065
Sujithcd3d39a2008-08-11 14:03:34 +05301066 if (bf_isaggr(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001067 txq->axq_aggr_depth--;
1068
1069 txok = (ds->ds_txstat.ts_status == 0);
1070
1071 spin_unlock_bh(&txq->axq_lock);
1072
1073 if (bf_held) {
1074 list_del(&bf_held->list);
Sujithb77f4832008-12-07 21:44:03 +05301075 spin_lock_bh(&sc->tx.txbuflock);
1076 list_add_tail(&bf_held->list, &sc->tx.txbuf);
1077 spin_unlock_bh(&sc->tx.txbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001078 }
1079
Sujithcd3d39a2008-08-11 14:03:34 +05301080 if (!bf_isampdu(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001081 /*
1082 * This frame is sent out as a single frame.
1083 * Use hardware retry status for this frame.
1084 */
1085 bf->bf_retries = ds->ds_txstat.ts_longretry;
1086 if (ds->ds_txstat.ts_status & ATH9K_TXERR_XRETRY)
Sujithcd3d39a2008-08-11 14:03:34 +05301087 bf->bf_state.bf_type |= BUF_XRETRY;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001088 nbad = 0;
1089 } else {
1090 nbad = ath_tx_num_badfrms(sc, bf, txok);
1091 }
Johannes Berge6a98542008-10-21 12:40:02 +02001092
Sujithc4288392008-11-18 09:09:30 +05301093 ath_tx_rc_status(bf, ds, nbad);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001094
1095 /*
1096 * Complete this transmit unit
1097 */
Sujithcd3d39a2008-08-11 14:03:34 +05301098 if (bf_isampdu(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001099 ath_tx_complete_aggr_rifs(sc, txq, bf, &bf_head, txok);
1100 else
1101 ath_tx_complete_buf(sc, bf, &bf_head, txok, 0);
1102
1103 /* Wake up mac80211 queue */
1104
1105 spin_lock_bh(&txq->axq_lock);
1106 if (txq->stopped && ath_txq_depth(sc, txq->axq_qnum) <=
1107 (ATH_TXBUF - 20)) {
1108 int qnum;
1109 qnum = ath_get_mac80211_qnum(txq->axq_qnum, sc);
1110 if (qnum != -1) {
1111 ieee80211_wake_queue(sc->hw, qnum);
1112 txq->stopped = 0;
1113 }
1114
1115 }
1116
1117 /*
1118 * schedule any pending packets if aggregation is enabled
1119 */
Sujith672840a2008-08-11 14:05:08 +05301120 if (sc->sc_flags & SC_OP_TXAGGR)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001121 ath_txq_schedule(sc, txq);
1122 spin_unlock_bh(&txq->axq_lock);
1123 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001124}
1125
1126static void ath_tx_stopdma(struct ath_softc *sc, struct ath_txq *txq)
1127{
1128 struct ath_hal *ah = sc->sc_ah;
1129
1130 (void) ath9k_hw_stoptxdma(ah, txq->axq_qnum);
Sujith04bd46382008-11-28 22:18:05 +05301131 DPRINTF(sc, ATH_DBG_XMIT, "tx queue [%u] %x, link %p\n",
1132 txq->axq_qnum, ath9k_hw_gettxbuf(ah, txq->axq_qnum),
1133 txq->axq_link);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001134}
1135
1136/* Drain only the data queues */
1137
1138static void ath_drain_txdataq(struct ath_softc *sc, bool retry_tx)
1139{
1140 struct ath_hal *ah = sc->sc_ah;
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001141 int i, npend = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001142
Sujith672840a2008-08-11 14:05:08 +05301143 if (!(sc->sc_flags & SC_OP_INVALID)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001144 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1145 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05301146 ath_tx_stopdma(sc, &sc->tx.txq[i]);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001147 /* The TxDMA may not really be stopped.
1148 * Double check the hal tx pending count */
1149 npend += ath9k_hw_numtxpending(ah,
Sujithb77f4832008-12-07 21:44:03 +05301150 sc->tx.txq[i].axq_qnum);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001151 }
1152 }
1153 }
1154
1155 if (npend) {
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001156 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001157 /* TxDMA not stopped, reset the hal */
Sujith04bd46382008-11-28 22:18:05 +05301158 DPRINTF(sc, ATH_DBG_XMIT, "Unable to stop TxDMA. Reset HAL!\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001159
1160 spin_lock_bh(&sc->sc_resetlock);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001161 r = ath9k_hw_reset(ah, sc->sc_ah->ah_curchan, true);
1162 if (r)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001163 DPRINTF(sc, ATH_DBG_FATAL,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001164 "Unable to reset hardware; reset status %u\n",
1165 r);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001166 spin_unlock_bh(&sc->sc_resetlock);
1167 }
1168
1169 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1170 if (ATH_TXQ_SETUP(sc, i))
Sujithb77f4832008-12-07 21:44:03 +05301171 ath_tx_draintxq(sc, &sc->tx.txq[i], retry_tx);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001172 }
1173}
1174
1175/* Add a sub-frame to block ack window */
1176
1177static void ath_tx_addto_baw(struct ath_softc *sc,
1178 struct ath_atx_tid *tid,
1179 struct ath_buf *bf)
1180{
1181 int index, cindex;
1182
Sujithcd3d39a2008-08-11 14:03:34 +05301183 if (bf_isretried(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001184 return;
1185
1186 index = ATH_BA_INDEX(tid->seq_start, bf->bf_seqno);
1187 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
1188
1189 ASSERT(tid->tx_buf[cindex] == NULL);
1190 tid->tx_buf[cindex] = bf;
1191
1192 if (index >= ((tid->baw_tail - tid->baw_head) &
1193 (ATH_TID_MAX_BUFS - 1))) {
1194 tid->baw_tail = cindex;
1195 INCR(tid->baw_tail, ATH_TID_MAX_BUFS);
1196 }
1197}
1198
1199/*
1200 * Function to send an A-MPDU
1201 * NB: must be called with txq lock held
1202 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001203static int ath_tx_send_ampdu(struct ath_softc *sc,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001204 struct ath_atx_tid *tid,
1205 struct list_head *bf_head,
1206 struct ath_tx_control *txctl)
1207{
1208 struct ath_buf *bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001209
1210 BUG_ON(list_empty(bf_head));
1211
1212 bf = list_first_entry(bf_head, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +05301213 bf->bf_state.bf_type |= BUF_AMPDU;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001214
1215 /*
1216 * Do not queue to h/w when any of the following conditions is true:
1217 * - there are pending frames in software queue
1218 * - the TID is currently paused for ADDBA/BAR request
1219 * - seqno is not within block-ack window
1220 * - h/w queue depth exceeds low water mark
1221 */
1222 if (!list_empty(&tid->buf_q) || tid->paused ||
1223 !BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno) ||
Sujith528f0c62008-10-29 10:14:26 +05301224 txctl->txq->axq_depth >= ATH_AGGR_MIN_QDEPTH) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001225 /*
1226 * Add this frame to software queue for scheduling later
1227 * for aggregation.
1228 */
1229 list_splice_tail_init(bf_head, &tid->buf_q);
Sujith528f0c62008-10-29 10:14:26 +05301230 ath_tx_queue_tid(txctl->txq, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001231 return 0;
1232 }
1233
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001234 /* Add sub-frame to BAW */
1235 ath_tx_addto_baw(sc, tid, bf);
1236
1237 /* Queue to h/w without aggregation */
1238 bf->bf_nframes = 1;
1239 bf->bf_lastbf = bf->bf_lastfrm; /* one single frame */
1240 ath_buf_set_rate(sc, bf);
Sujith528f0c62008-10-29 10:14:26 +05301241 ath_tx_txqaddbuf(sc, txctl->txq, bf_head);
Sujith102e0572008-10-29 10:15:16 +05301242
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001243 return 0;
1244}
1245
1246/*
1247 * looks up the rate
1248 * returns aggr limit based on lowest of the rates
1249 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001250static u32 ath_lookup_rate(struct ath_softc *sc,
Johannes Bergae5eb022008-10-14 16:58:37 +02001251 struct ath_buf *bf,
1252 struct ath_atx_tid *tid)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001253{
Sujith3706de62008-12-07 21:42:10 +05301254 struct ath_rate_table *rate_table = sc->cur_rate_table;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001255 struct sk_buff *skb;
1256 struct ieee80211_tx_info *tx_info;
Sujitha8efee42008-11-18 09:07:30 +05301257 struct ieee80211_tx_rate *rates;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001258 struct ath_tx_info_priv *tx_info_priv;
1259 u32 max_4ms_framelen, frame_length;
1260 u16 aggr_limit, legacy = 0, maxampdu;
1261 int i;
1262
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001263 skb = (struct sk_buff *)bf->bf_mpdu;
1264 tx_info = IEEE80211_SKB_CB(skb);
Sujitha8efee42008-11-18 09:07:30 +05301265 rates = tx_info->control.rates;
1266 tx_info_priv =
1267 (struct ath_tx_info_priv *)tx_info->rate_driver_data[0];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001268
1269 /*
1270 * Find the lowest frame length among the rate series that will have a
1271 * 4ms transmit duration.
1272 * TODO - TXOP limit needs to be considered.
1273 */
1274 max_4ms_framelen = ATH_AMPDU_LIMIT_MAX;
1275
1276 for (i = 0; i < 4; i++) {
Sujitha8efee42008-11-18 09:07:30 +05301277 if (rates[i].count) {
Sujithe63835b2008-11-18 09:07:53 +05301278 if (!WLAN_RC_PHY_HT(rate_table->info[rates[i].idx].phy)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001279 legacy = 1;
1280 break;
1281 }
1282
Sujitha8efee42008-11-18 09:07:30 +05301283 frame_length =
1284 rate_table->info[rates[i].idx].max_4ms_framelen;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001285 max_4ms_framelen = min(max_4ms_framelen, frame_length);
1286 }
1287 }
1288
1289 /*
1290 * limit aggregate size by the minimum rate if rate selected is
1291 * not a probe rate, if rate selected is a probe rate then
1292 * avoid aggregation of this packet.
1293 */
1294 if (tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE || legacy)
1295 return 0;
1296
1297 aggr_limit = min(max_4ms_framelen,
1298 (u32)ATH_AMPDU_LIMIT_DEFAULT);
1299
1300 /*
1301 * h/w can accept aggregates upto 16 bit lengths (65535).
1302 * The IE, however can hold upto 65536, which shows up here
1303 * as zero. Ignore 65536 since we are constrained by hw.
1304 */
Johannes Bergae5eb022008-10-14 16:58:37 +02001305 maxampdu = tid->an->maxampdu;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001306 if (maxampdu)
1307 aggr_limit = min(aggr_limit, maxampdu);
1308
1309 return aggr_limit;
1310}
1311
1312/*
1313 * returns the number of delimiters to be added to
1314 * meet the minimum required mpdudensity.
1315 * caller should make sure that the rate is HT rate .
1316 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001317static int ath_compute_num_delims(struct ath_softc *sc,
Johannes Bergae5eb022008-10-14 16:58:37 +02001318 struct ath_atx_tid *tid,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001319 struct ath_buf *bf,
1320 u16 frmlen)
1321{
Sujith3706de62008-12-07 21:42:10 +05301322 struct ath_rate_table *rt = sc->cur_rate_table;
Sujitha8efee42008-11-18 09:07:30 +05301323 struct sk_buff *skb = bf->bf_mpdu;
1324 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001325 u32 nsymbits, nsymbols, mpdudensity;
1326 u16 minlen;
1327 u8 rc, flags, rix;
1328 int width, half_gi, ndelim, mindelim;
1329
1330 /* Select standard number of delimiters based on frame length alone */
1331 ndelim = ATH_AGGR_GET_NDELIM(frmlen);
1332
1333 /*
1334 * If encryption enabled, hardware requires some more padding between
1335 * subframes.
1336 * TODO - this could be improved to be dependent on the rate.
1337 * The hardware can keep up at lower rates, but not higher rates
1338 */
1339 if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR)
1340 ndelim += ATH_AGGR_ENCRYPTDELIM;
1341
1342 /*
1343 * Convert desired mpdu density from microeconds to bytes based
1344 * on highest rate in rate series (i.e. first rate) to determine
1345 * required minimum length for subframe. Take into account
1346 * whether high rate is 20 or 40Mhz and half or full GI.
1347 */
Johannes Bergae5eb022008-10-14 16:58:37 +02001348 mpdudensity = tid->an->mpdudensity;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001349
1350 /*
1351 * If there is no mpdu density restriction, no further calculation
1352 * is needed.
1353 */
1354 if (mpdudensity == 0)
1355 return ndelim;
1356
Sujitha8efee42008-11-18 09:07:30 +05301357 rix = tx_info->control.rates[0].idx;
1358 flags = tx_info->control.rates[0].flags;
Sujithe63835b2008-11-18 09:07:53 +05301359 rc = rt->info[rix].ratecode;
Sujitha8efee42008-11-18 09:07:30 +05301360 width = (flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ? 1 : 0;
1361 half_gi = (flags & IEEE80211_TX_RC_SHORT_GI) ? 1 : 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001362
1363 if (half_gi)
1364 nsymbols = NUM_SYMBOLS_PER_USEC_HALFGI(mpdudensity);
1365 else
1366 nsymbols = NUM_SYMBOLS_PER_USEC(mpdudensity);
1367
1368 if (nsymbols == 0)
1369 nsymbols = 1;
1370
1371 nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
1372 minlen = (nsymbols * nsymbits) / BITS_PER_BYTE;
1373
1374 /* Is frame shorter than required minimum length? */
1375 if (frmlen < minlen) {
1376 /* Get the minimum number of delimiters required. */
1377 mindelim = (minlen - frmlen) / ATH_AGGR_DELIM_SZ;
1378 ndelim = max(mindelim, ndelim);
1379 }
1380
1381 return ndelim;
1382}
1383
1384/*
1385 * For aggregation from software buffer queue.
1386 * NB: must be called with txq lock held
1387 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001388static enum ATH_AGGR_STATUS ath_tx_form_aggr(struct ath_softc *sc,
1389 struct ath_atx_tid *tid,
1390 struct list_head *bf_q,
1391 struct ath_buf **bf_last,
1392 struct aggr_rifs_param *param,
1393 int *prev_frames)
1394{
1395#define PADBYTES(_len) ((4 - ((_len) % 4)) % 4)
1396 struct ath_buf *bf, *tbf, *bf_first, *bf_prev = NULL;
1397 struct list_head bf_head;
1398 int rl = 0, nframes = 0, ndelim;
1399 u16 aggr_limit = 0, al = 0, bpad = 0,
1400 al_delta, h_baw = tid->baw_size / 2;
1401 enum ATH_AGGR_STATUS status = ATH_AGGR_DONE;
Sujitha8efee42008-11-18 09:07:30 +05301402 int prev_al = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001403 INIT_LIST_HEAD(&bf_head);
1404
1405 BUG_ON(list_empty(&tid->buf_q));
1406
1407 bf_first = list_first_entry(&tid->buf_q, struct ath_buf, list);
1408
1409 do {
1410 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
1411
1412 /*
1413 * do not step over block-ack window
1414 */
1415 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno)) {
1416 status = ATH_AGGR_BAW_CLOSED;
1417 break;
1418 }
1419
1420 if (!rl) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001421 aggr_limit = ath_lookup_rate(sc, bf, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422 rl = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001423 }
1424
1425 /*
1426 * do not exceed aggregation limit
1427 */
1428 al_delta = ATH_AGGR_DELIM_SZ + bf->bf_frmlen;
1429
1430 if (nframes && (aggr_limit <
1431 (al + bpad + al_delta + prev_al))) {
1432 status = ATH_AGGR_LIMITED;
1433 break;
1434 }
1435
1436 /*
1437 * do not exceed subframe limit
1438 */
1439 if ((nframes + *prev_frames) >=
1440 min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) {
1441 status = ATH_AGGR_LIMITED;
1442 break;
1443 }
1444
1445 /*
1446 * add padding for previous frame to aggregation length
1447 */
1448 al += bpad + al_delta;
1449
1450 /*
1451 * Get the delimiters needed to meet the MPDU
1452 * density for this node.
1453 */
Johannes Bergae5eb022008-10-14 16:58:37 +02001454 ndelim = ath_compute_num_delims(sc, tid, bf_first, bf->bf_frmlen);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001455
1456 bpad = PADBYTES(al_delta) + (ndelim << 2);
1457
1458 bf->bf_next = NULL;
1459 bf->bf_lastfrm->bf_desc->ds_link = 0;
1460
1461 /*
1462 * this packet is part of an aggregate
1463 * - remove all descriptors belonging to this frame from
1464 * software queue
1465 * - add it to block ack window
1466 * - set up descriptors for aggregation
1467 */
1468 list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list);
1469 ath_tx_addto_baw(sc, tid, bf);
1470
1471 list_for_each_entry(tbf, &bf_head, list) {
1472 ath9k_hw_set11n_aggr_middle(sc->sc_ah,
1473 tbf->bf_desc, ndelim);
1474 }
1475
1476 /*
1477 * link buffers of this frame to the aggregate
1478 */
1479 list_splice_tail_init(&bf_head, bf_q);
1480 nframes++;
1481
1482 if (bf_prev) {
1483 bf_prev->bf_next = bf;
1484 bf_prev->bf_lastfrm->bf_desc->ds_link = bf->bf_daddr;
1485 }
1486 bf_prev = bf;
1487
1488#ifdef AGGR_NOSHORT
1489 /*
1490 * terminate aggregation on a small packet boundary
1491 */
1492 if (bf->bf_frmlen < ATH_AGGR_MINPLEN) {
1493 status = ATH_AGGR_SHORTPKT;
1494 break;
1495 }
1496#endif
1497 } while (!list_empty(&tid->buf_q));
1498
1499 bf_first->bf_al = al;
1500 bf_first->bf_nframes = nframes;
1501 *bf_last = bf_prev;
1502 return status;
1503#undef PADBYTES
1504}
1505
1506/*
1507 * process pending frames possibly doing a-mpdu aggregation
1508 * NB: must be called with txq lock held
1509 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001510static void ath_tx_sched_aggr(struct ath_softc *sc,
1511 struct ath_txq *txq, struct ath_atx_tid *tid)
1512{
1513 struct ath_buf *bf, *tbf, *bf_last, *bf_lastaggr = NULL;
1514 enum ATH_AGGR_STATUS status;
1515 struct list_head bf_q;
1516 struct aggr_rifs_param param = {0, 0, 0, 0, NULL};
1517 int prev_frames = 0;
1518
1519 do {
1520 if (list_empty(&tid->buf_q))
1521 return;
1522
1523 INIT_LIST_HEAD(&bf_q);
1524
1525 status = ath_tx_form_aggr(sc, tid, &bf_q, &bf_lastaggr, &param,
1526 &prev_frames);
1527
1528 /*
1529 * no frames picked up to be aggregated; block-ack
1530 * window is not open
1531 */
1532 if (list_empty(&bf_q))
1533 break;
1534
1535 bf = list_first_entry(&bf_q, struct ath_buf, list);
1536 bf_last = list_entry(bf_q.prev, struct ath_buf, list);
1537 bf->bf_lastbf = bf_last;
1538
1539 /*
1540 * if only one frame, send as non-aggregate
1541 */
1542 if (bf->bf_nframes == 1) {
1543 ASSERT(bf->bf_lastfrm == bf_last);
1544
Sujithcd3d39a2008-08-11 14:03:34 +05301545 bf->bf_state.bf_type &= ~BUF_AGGR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001546 /*
1547 * clear aggr bits for every descriptor
1548 * XXX TODO: is there a way to optimize it?
1549 */
1550 list_for_each_entry(tbf, &bf_q, list) {
1551 ath9k_hw_clr11n_aggr(sc->sc_ah, tbf->bf_desc);
1552 }
1553
1554 ath_buf_set_rate(sc, bf);
1555 ath_tx_txqaddbuf(sc, txq, &bf_q);
1556 continue;
1557 }
1558
1559 /*
1560 * setup first desc with rate and aggr info
1561 */
Sujithcd3d39a2008-08-11 14:03:34 +05301562 bf->bf_state.bf_type |= BUF_AGGR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001563 ath_buf_set_rate(sc, bf);
1564 ath9k_hw_set11n_aggr_first(sc->sc_ah, bf->bf_desc, bf->bf_al);
1565
1566 /*
1567 * anchor last frame of aggregate correctly
1568 */
1569 ASSERT(bf_lastaggr);
1570 ASSERT(bf_lastaggr->bf_lastfrm == bf_last);
1571 tbf = bf_lastaggr;
1572 ath9k_hw_set11n_aggr_last(sc->sc_ah, tbf->bf_desc);
1573
1574 /* XXX: We don't enter into this loop, consider removing this */
1575 while (!list_empty(&bf_q) && !list_is_last(&tbf->list, &bf_q)) {
1576 tbf = list_entry(tbf->list.next, struct ath_buf, list);
1577 ath9k_hw_set11n_aggr_last(sc->sc_ah, tbf->bf_desc);
1578 }
1579
1580 txq->axq_aggr_depth++;
1581
1582 /*
1583 * Normal aggregate, queue to hardware
1584 */
1585 ath_tx_txqaddbuf(sc, txq, &bf_q);
1586
1587 } while (txq->axq_depth < ATH_AGGR_MIN_QDEPTH &&
1588 status != ATH_AGGR_BAW_CLOSED);
1589}
1590
1591/* Called with txq lock held */
1592
1593static void ath_tid_drain(struct ath_softc *sc,
1594 struct ath_txq *txq,
Sujithb5aa9bf2008-10-29 10:13:31 +05301595 struct ath_atx_tid *tid)
1596
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001597{
1598 struct ath_buf *bf;
1599 struct list_head bf_head;
1600 INIT_LIST_HEAD(&bf_head);
1601
1602 for (;;) {
1603 if (list_empty(&tid->buf_q))
1604 break;
1605 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
1606
1607 list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list);
1608
1609 /* update baw for software retried frame */
Sujithcd3d39a2008-08-11 14:03:34 +05301610 if (bf_isretried(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001611 ath_tx_update_baw(sc, tid, bf->bf_seqno);
1612
1613 /*
1614 * do not indicate packets while holding txq spinlock.
1615 * unlock is intentional here
1616 */
Sujithb5aa9bf2008-10-29 10:13:31 +05301617 spin_unlock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001618
1619 /* complete this sub-frame */
1620 ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
1621
Sujithb5aa9bf2008-10-29 10:13:31 +05301622 spin_lock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001623 }
1624
1625 /*
1626 * TODO: For frame(s) that are in the retry state, we will reuse the
1627 * sequence number(s) without setting the retry bit. The
1628 * alternative is to give up on these and BAR the receiver's window
1629 * forward.
1630 */
1631 tid->seq_next = tid->seq_start;
1632 tid->baw_tail = tid->baw_head;
1633}
1634
1635/*
1636 * Drain all pending buffers
1637 * NB: must be called with txq lock held
1638 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001639static void ath_txq_drain_pending_buffers(struct ath_softc *sc,
Sujithb5aa9bf2008-10-29 10:13:31 +05301640 struct ath_txq *txq)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001641{
1642 struct ath_atx_ac *ac, *ac_tmp;
1643 struct ath_atx_tid *tid, *tid_tmp;
1644
1645 list_for_each_entry_safe(ac, ac_tmp, &txq->axq_acq, list) {
1646 list_del(&ac->list);
1647 ac->sched = false;
1648 list_for_each_entry_safe(tid, tid_tmp, &ac->tid_q, list) {
1649 list_del(&tid->list);
1650 tid->sched = false;
Sujithb5aa9bf2008-10-29 10:13:31 +05301651 ath_tid_drain(sc, txq, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001652 }
1653 }
1654}
1655
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -08001656static int ath_tx_setup_buffer(struct ath_softc *sc, struct ath_buf *bf,
Sujith8f93b8b2008-11-18 09:10:42 +05301657 struct sk_buff *skb,
Sujith528f0c62008-10-29 10:14:26 +05301658 struct ath_tx_control *txctl)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001659{
Sujith528f0c62008-10-29 10:14:26 +05301660 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1661 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001662 struct ath_tx_info_priv *tx_info_priv;
Sujith528f0c62008-10-29 10:14:26 +05301663 int hdrlen;
1664 __le16 fc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001665
Luis R. Rodriguezc112d0c2008-12-03 03:35:30 -08001666 tx_info_priv = kzalloc(sizeof(*tx_info_priv), GFP_ATOMIC);
1667 if (unlikely(!tx_info_priv))
1668 return -ENOMEM;
Sujitha8efee42008-11-18 09:07:30 +05301669 tx_info->rate_driver_data[0] = tx_info_priv;
Sujith528f0c62008-10-29 10:14:26 +05301670 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1671 fc = hdr->frame_control;
Jouni Malinene022edb2008-08-22 17:31:33 +03001672
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001673 ATH_TXBUF_RESET(bf);
Sujith528f0c62008-10-29 10:14:26 +05301674
1675 /* Frame type */
1676
1677 bf->bf_frmlen = skb->len + FCS_LEN - (hdrlen & 3);
Sujithcd3d39a2008-08-11 14:03:34 +05301678
1679 ieee80211_is_data(fc) ?
1680 (bf->bf_state.bf_type |= BUF_DATA) :
1681 (bf->bf_state.bf_type &= ~BUF_DATA);
1682 ieee80211_is_back_req(fc) ?
1683 (bf->bf_state.bf_type |= BUF_BAR) :
1684 (bf->bf_state.bf_type &= ~BUF_BAR);
1685 ieee80211_is_pspoll(fc) ?
1686 (bf->bf_state.bf_type |= BUF_PSPOLL) :
1687 (bf->bf_state.bf_type &= ~BUF_PSPOLL);
Sujith672840a2008-08-11 14:05:08 +05301688 (sc->sc_flags & SC_OP_PREAMBLE_SHORT) ?
Sujithcd3d39a2008-08-11 14:03:34 +05301689 (bf->bf_state.bf_type |= BUF_SHORT_PREAMBLE) :
1690 (bf->bf_state.bf_type &= ~BUF_SHORT_PREAMBLE);
Luis R. Rodriguezecf70442008-12-23 15:58:43 -08001691 (conf_is_ht(&sc->hw->conf) && !is_pae(skb) &&
Sujith528f0c62008-10-29 10:14:26 +05301692 (tx_info->flags & IEEE80211_TX_CTL_AMPDU)) ?
1693 (bf->bf_state.bf_type |= BUF_HT) :
1694 (bf->bf_state.bf_type &= ~BUF_HT);
Sujithcd3d39a2008-08-11 14:03:34 +05301695
Sujith528f0c62008-10-29 10:14:26 +05301696 bf->bf_flags = setup_tx_flags(sc, skb, txctl->txq);
1697
1698 /* Crypto */
1699
1700 bf->bf_keytype = get_hw_crypto_keytype(skb);
1701
1702 if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR) {
1703 bf->bf_frmlen += tx_info->control.hw_key->icv_len;
1704 bf->bf_keyix = tx_info->control.hw_key->hw_key_idx;
1705 } else {
1706 bf->bf_keyix = ATH9K_TXKEYIX_INVALID;
1707 }
1708
Sujith528f0c62008-10-29 10:14:26 +05301709 /* Assign seqno, tidno */
1710
Senthil Balasubramaniand3a1db12008-12-22 16:31:58 +05301711 if (ieee80211_is_data_qos(fc) && (sc->sc_flags & SC_OP_TXAGGR))
Sujith528f0c62008-10-29 10:14:26 +05301712 assign_aggr_tid_seqno(skb, bf);
1713
1714 /* DMA setup */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001715 bf->bf_mpdu = skb;
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -08001716
Gabor Juhos7da3c552009-01-14 20:17:03 +01001717 bf->bf_dmacontext = dma_map_single(sc->dev, skb->data,
1718 skb->len, DMA_TO_DEVICE);
1719 if (unlikely(dma_mapping_error(sc->dev, bf->bf_dmacontext))) {
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -08001720 bf->bf_mpdu = NULL;
1721 DPRINTF(sc, ATH_DBG_CONFIG,
Gabor Juhos7da3c552009-01-14 20:17:03 +01001722 "dma_mapping_error() on TX\n");
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -08001723 return -ENOMEM;
1724 }
1725
Sujith528f0c62008-10-29 10:14:26 +05301726 bf->bf_buf_addr = bf->bf_dmacontext;
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -08001727 return 0;
Sujith528f0c62008-10-29 10:14:26 +05301728}
1729
1730/* FIXME: tx power */
1731static void ath_tx_start_dma(struct ath_softc *sc, struct ath_buf *bf,
Sujith528f0c62008-10-29 10:14:26 +05301732 struct ath_tx_control *txctl)
1733{
1734 struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu;
1735 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1736 struct ath_node *an = NULL;
1737 struct list_head bf_head;
1738 struct ath_desc *ds;
1739 struct ath_atx_tid *tid;
1740 struct ath_hal *ah = sc->sc_ah;
1741 int frm_type;
1742
Sujith528f0c62008-10-29 10:14:26 +05301743 frm_type = get_hw_packet_type(skb);
1744
1745 INIT_LIST_HEAD(&bf_head);
1746 list_add_tail(&bf->list, &bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001747
1748 /* setup descriptor */
Sujith528f0c62008-10-29 10:14:26 +05301749
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001750 ds = bf->bf_desc;
1751 ds->ds_link = 0;
1752 ds->ds_data = bf->bf_buf_addr;
1753
Sujith528f0c62008-10-29 10:14:26 +05301754 /* Formulate first tx descriptor with tx controls */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001755
Sujith528f0c62008-10-29 10:14:26 +05301756 ath9k_hw_set11n_txdesc(ah, ds, bf->bf_frmlen, frm_type, MAX_RATE_POWER,
1757 bf->bf_keyix, bf->bf_keytype, bf->bf_flags);
1758
1759 ath9k_hw_filltxdesc(ah, ds,
Sujith8f93b8b2008-11-18 09:10:42 +05301760 skb->len, /* segment length */
1761 true, /* first segment */
1762 true, /* last segment */
1763 ds); /* first descriptor */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001764
1765 bf->bf_lastfrm = bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001766
Sujith528f0c62008-10-29 10:14:26 +05301767 spin_lock_bh(&txctl->txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001768
John W. Linvillef1617962008-10-31 16:45:15 -04001769 if (bf_isht(bf) && (sc->sc_flags & SC_OP_TXAGGR) &&
1770 tx_info->control.sta) {
1771 an = (struct ath_node *)tx_info->control.sta->drv_priv;
1772 tid = ATH_AN_2_TID(an, bf->bf_tidno);
1773
Sujith528f0c62008-10-29 10:14:26 +05301774 if (ath_aggr_query(sc, an, bf->bf_tidno)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001775 /*
1776 * Try aggregation if it's a unicast data frame
1777 * and the destination is HT capable.
1778 */
Sujith528f0c62008-10-29 10:14:26 +05301779 ath_tx_send_ampdu(sc, tid, &bf_head, txctl);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001780 } else {
1781 /*
Sujith528f0c62008-10-29 10:14:26 +05301782 * Send this frame as regular when ADDBA
1783 * exchange is neither complete nor pending.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001784 */
Sujith528f0c62008-10-29 10:14:26 +05301785 ath_tx_send_normal(sc, txctl->txq,
1786 tid, &bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001787 }
1788 } else {
1789 bf->bf_lastbf = bf;
1790 bf->bf_nframes = 1;
Sujith528f0c62008-10-29 10:14:26 +05301791
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001792 ath_buf_set_rate(sc, bf);
Sujith528f0c62008-10-29 10:14:26 +05301793 ath_tx_txqaddbuf(sc, txctl->txq, &bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001794 }
Sujith528f0c62008-10-29 10:14:26 +05301795
1796 spin_unlock_bh(&txctl->txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001797}
1798
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -08001799/* Upon failure caller should free skb */
Sujith528f0c62008-10-29 10:14:26 +05301800int ath_tx_start(struct ath_softc *sc, struct sk_buff *skb,
1801 struct ath_tx_control *txctl)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001802{
Sujith528f0c62008-10-29 10:14:26 +05301803 struct ath_buf *bf;
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -08001804 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001805
Sujith528f0c62008-10-29 10:14:26 +05301806 /* Check if a tx buffer is available */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001807
Sujith528f0c62008-10-29 10:14:26 +05301808 bf = ath_tx_get_buffer(sc);
1809 if (!bf) {
Sujith04bd46382008-11-28 22:18:05 +05301810 DPRINTF(sc, ATH_DBG_XMIT, "TX buffers are full\n");
Sujith528f0c62008-10-29 10:14:26 +05301811 return -1;
1812 }
1813
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -08001814 r = ath_tx_setup_buffer(sc, bf, skb, txctl);
1815 if (unlikely(r)) {
Luis R. Rodriguezc112d0c2008-12-03 03:35:30 -08001816 struct ath_txq *txq = txctl->txq;
1817
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -08001818 DPRINTF(sc, ATH_DBG_FATAL, "TX mem alloc failure\n");
Luis R. Rodriguezc112d0c2008-12-03 03:35:30 -08001819
1820 /* upon ath_tx_processq() this TX queue will be resumed, we
1821 * guarantee this will happen by knowing beforehand that
1822 * we will at least have to run TX completionon one buffer
1823 * on the queue */
1824 spin_lock_bh(&txq->axq_lock);
1825 if (ath_txq_depth(sc, txq->axq_qnum) > 1) {
1826 ieee80211_stop_queue(sc->hw,
1827 skb_get_queue_mapping(skb));
1828 txq->stopped = 1;
1829 }
1830 spin_unlock_bh(&txq->axq_lock);
1831
Sujithb77f4832008-12-07 21:44:03 +05301832 spin_lock_bh(&sc->tx.txbuflock);
1833 list_add_tail(&bf->list, &sc->tx.txbuf);
1834 spin_unlock_bh(&sc->tx.txbuflock);
Luis R. Rodriguezc112d0c2008-12-03 03:35:30 -08001835
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -08001836 return r;
1837 }
1838
Sujith8f93b8b2008-11-18 09:10:42 +05301839 ath_tx_start_dma(sc, bf, txctl);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001840
Sujith528f0c62008-10-29 10:14:26 +05301841 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001842}
1843
1844/* Initialize TX queue and h/w */
1845
1846int ath_tx_init(struct ath_softc *sc, int nbufs)
1847{
1848 int error = 0;
1849
1850 do {
Sujithb77f4832008-12-07 21:44:03 +05301851 spin_lock_init(&sc->tx.txbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001852
1853 /* Setup tx descriptors */
Sujithb77f4832008-12-07 21:44:03 +05301854 error = ath_descdma_setup(sc, &sc->tx.txdma, &sc->tx.txbuf,
Sujith556bb8f2008-08-11 14:03:53 +05301855 "tx", nbufs, 1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001856 if (error != 0) {
1857 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301858 "Failed to allocate tx descriptors: %d\n",
1859 error);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001860 break;
1861 }
1862
1863 /* XXX allocate beacon state together with vap */
Sujithb77f4832008-12-07 21:44:03 +05301864 error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001865 "beacon", ATH_BCBUF, 1);
1866 if (error != 0) {
1867 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301868 "Failed to allocate beacon descriptors: %d\n",
1869 error);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001870 break;
1871 }
1872
1873 } while (0);
1874
1875 if (error != 0)
1876 ath_tx_cleanup(sc);
1877
1878 return error;
1879}
1880
1881/* Reclaim all tx queue resources */
1882
1883int ath_tx_cleanup(struct ath_softc *sc)
1884{
1885 /* cleanup beacon descriptors */
Sujithb77f4832008-12-07 21:44:03 +05301886 if (sc->beacon.bdma.dd_desc_len != 0)
1887 ath_descdma_cleanup(sc, &sc->beacon.bdma, &sc->beacon.bbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001888
1889 /* cleanup tx descriptors */
Sujithb77f4832008-12-07 21:44:03 +05301890 if (sc->tx.txdma.dd_desc_len != 0)
1891 ath_descdma_cleanup(sc, &sc->tx.txdma, &sc->tx.txbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001892
1893 return 0;
1894}
1895
1896/* Setup a h/w transmit queue */
1897
1898struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype)
1899{
1900 struct ath_hal *ah = sc->sc_ah;
Sujithea9880f2008-08-07 10:53:10 +05301901 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001902 int qnum;
1903
Luis R. Rodriguez0345f372008-10-03 15:45:25 -07001904 memset(&qi, 0, sizeof(qi));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001905 qi.tqi_subtype = subtype;
1906 qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT;
1907 qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT;
1908 qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT;
Sujithea9880f2008-08-07 10:53:10 +05301909 qi.tqi_physCompBuf = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001910
1911 /*
1912 * Enable interrupts only for EOL and DESC conditions.
1913 * We mark tx descriptors to receive a DESC interrupt
1914 * when a tx queue gets deep; otherwise waiting for the
1915 * EOL to reap descriptors. Note that this is done to
1916 * reduce interrupt load and this only defers reaping
1917 * descriptors, never transmitting frames. Aside from
1918 * reducing interrupts this also permits more concurrency.
1919 * The only potential downside is if the tx queue backs
1920 * up in which case the top half of the kernel may backup
1921 * due to a lack of tx descriptors.
1922 *
1923 * The UAPSD queue is an exception, since we take a desc-
1924 * based intr on the EOSP frames.
1925 */
1926 if (qtype == ATH9K_TX_QUEUE_UAPSD)
1927 qi.tqi_qflags = TXQ_FLAG_TXDESCINT_ENABLE;
1928 else
1929 qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE |
1930 TXQ_FLAG_TXDESCINT_ENABLE;
1931 qnum = ath9k_hw_setuptxqueue(ah, qtype, &qi);
1932 if (qnum == -1) {
1933 /*
1934 * NB: don't print a message, this happens
1935 * normally on parts with too few tx queues
1936 */
1937 return NULL;
1938 }
Sujithb77f4832008-12-07 21:44:03 +05301939 if (qnum >= ARRAY_SIZE(sc->tx.txq)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001940 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301941 "qnum %u out of range, max %u!\n",
Sujithb77f4832008-12-07 21:44:03 +05301942 qnum, (unsigned int)ARRAY_SIZE(sc->tx.txq));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001943 ath9k_hw_releasetxqueue(ah, qnum);
1944 return NULL;
1945 }
1946 if (!ATH_TXQ_SETUP(sc, qnum)) {
Sujithb77f4832008-12-07 21:44:03 +05301947 struct ath_txq *txq = &sc->tx.txq[qnum];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001948
1949 txq->axq_qnum = qnum;
1950 txq->axq_link = NULL;
1951 INIT_LIST_HEAD(&txq->axq_q);
1952 INIT_LIST_HEAD(&txq->axq_acq);
1953 spin_lock_init(&txq->axq_lock);
1954 txq->axq_depth = 0;
1955 txq->axq_aggr_depth = 0;
1956 txq->axq_totalqueued = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001957 txq->axq_linkbuf = NULL;
Sujithb77f4832008-12-07 21:44:03 +05301958 sc->tx.txqsetup |= 1<<qnum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001959 }
Sujithb77f4832008-12-07 21:44:03 +05301960 return &sc->tx.txq[qnum];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001961}
1962
1963/* Reclaim resources for a setup queue */
1964
1965void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq)
1966{
1967 ath9k_hw_releasetxqueue(sc->sc_ah, txq->axq_qnum);
Sujithb77f4832008-12-07 21:44:03 +05301968 sc->tx.txqsetup &= ~(1<<txq->axq_qnum);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001969}
1970
1971/*
1972 * Setup a hardware data transmit queue for the specified
1973 * access control. The hal may not support all requested
1974 * queues in which case it will return a reference to a
1975 * previously setup queue. We record the mapping from ac's
1976 * to h/w queues for use by ath_tx_start and also track
1977 * the set of h/w queues being used to optimize work in the
1978 * transmit interrupt handler and related routines.
1979 */
1980
1981int ath_tx_setup(struct ath_softc *sc, int haltype)
1982{
1983 struct ath_txq *txq;
1984
Sujithb77f4832008-12-07 21:44:03 +05301985 if (haltype >= ARRAY_SIZE(sc->tx.hwq_map)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001986 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05301987 "HAL AC %u out of range, max %zu!\n",
Sujithb77f4832008-12-07 21:44:03 +05301988 haltype, ARRAY_SIZE(sc->tx.hwq_map));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001989 return 0;
1990 }
1991 txq = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, haltype);
1992 if (txq != NULL) {
Sujithb77f4832008-12-07 21:44:03 +05301993 sc->tx.hwq_map[haltype] = txq->axq_qnum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001994 return 1;
1995 } else
1996 return 0;
1997}
1998
1999int ath_tx_get_qnum(struct ath_softc *sc, int qtype, int haltype)
2000{
2001 int qnum;
2002
2003 switch (qtype) {
2004 case ATH9K_TX_QUEUE_DATA:
Sujithb77f4832008-12-07 21:44:03 +05302005 if (haltype >= ARRAY_SIZE(sc->tx.hwq_map)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002006 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302007 "HAL AC %u out of range, max %zu!\n",
Sujithb77f4832008-12-07 21:44:03 +05302008 haltype, ARRAY_SIZE(sc->tx.hwq_map));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002009 return -1;
2010 }
Sujithb77f4832008-12-07 21:44:03 +05302011 qnum = sc->tx.hwq_map[haltype];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002012 break;
2013 case ATH9K_TX_QUEUE_BEACON:
Sujithb77f4832008-12-07 21:44:03 +05302014 qnum = sc->beacon.beaconq;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002015 break;
2016 case ATH9K_TX_QUEUE_CAB:
Sujithb77f4832008-12-07 21:44:03 +05302017 qnum = sc->beacon.cabq->axq_qnum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002018 break;
2019 default:
2020 qnum = -1;
2021 }
2022 return qnum;
2023}
2024
Sujith528f0c62008-10-29 10:14:26 +05302025/* Get a transmit queue, if available */
2026
2027struct ath_txq *ath_test_get_txq(struct ath_softc *sc, struct sk_buff *skb)
2028{
2029 struct ath_txq *txq = NULL;
2030 int qnum;
2031
2032 qnum = ath_get_hal_qnum(skb_get_queue_mapping(skb), sc);
Sujithb77f4832008-12-07 21:44:03 +05302033 txq = &sc->tx.txq[qnum];
Sujith528f0c62008-10-29 10:14:26 +05302034
2035 spin_lock_bh(&txq->axq_lock);
2036
2037 /* Try to avoid running out of descriptors */
2038 if (txq->axq_depth >= (ATH_TXBUF - 20)) {
2039 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302040 "TX queue: %d is full, depth: %d\n",
2041 qnum, txq->axq_depth);
Sujith528f0c62008-10-29 10:14:26 +05302042 ieee80211_stop_queue(sc->hw, skb_get_queue_mapping(skb));
2043 txq->stopped = 1;
2044 spin_unlock_bh(&txq->axq_lock);
2045 return NULL;
2046 }
2047
2048 spin_unlock_bh(&txq->axq_lock);
2049
2050 return txq;
2051}
2052
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002053/* Update parameters for a transmit queue */
2054
Sujithea9880f2008-08-07 10:53:10 +05302055int ath_txq_update(struct ath_softc *sc, int qnum,
2056 struct ath9k_tx_queue_info *qinfo)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002057{
2058 struct ath_hal *ah = sc->sc_ah;
2059 int error = 0;
Sujithea9880f2008-08-07 10:53:10 +05302060 struct ath9k_tx_queue_info qi;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002061
Sujithb77f4832008-12-07 21:44:03 +05302062 if (qnum == sc->beacon.beaconq) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002063 /*
2064 * XXX: for beacon queue, we just save the parameter.
2065 * It will be picked up by ath_beaconq_config when
2066 * it's necessary.
2067 */
Sujithb77f4832008-12-07 21:44:03 +05302068 sc->beacon.beacon_qi = *qinfo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002069 return 0;
2070 }
2071
Sujithb77f4832008-12-07 21:44:03 +05302072 ASSERT(sc->tx.txq[qnum].axq_qnum == qnum);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002073
Sujithea9880f2008-08-07 10:53:10 +05302074 ath9k_hw_get_txq_props(ah, qnum, &qi);
2075 qi.tqi_aifs = qinfo->tqi_aifs;
2076 qi.tqi_cwmin = qinfo->tqi_cwmin;
2077 qi.tqi_cwmax = qinfo->tqi_cwmax;
2078 qi.tqi_burstTime = qinfo->tqi_burstTime;
2079 qi.tqi_readyTime = qinfo->tqi_readyTime;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002080
Sujithea9880f2008-08-07 10:53:10 +05302081 if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002082 DPRINTF(sc, ATH_DBG_FATAL,
Sujith04bd46382008-11-28 22:18:05 +05302083 "Unable to update hardware queue %u!\n", qnum);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002084 error = -EIO;
2085 } else {
2086 ath9k_hw_resettxqueue(ah, qnum); /* push to h/w */
2087 }
2088
2089 return error;
2090}
2091
2092int ath_cabq_update(struct ath_softc *sc)
2093{
Sujithea9880f2008-08-07 10:53:10 +05302094 struct ath9k_tx_queue_info qi;
Sujithb77f4832008-12-07 21:44:03 +05302095 int qnum = sc->beacon.cabq->axq_qnum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002096 struct ath_beacon_config conf;
2097
Sujithea9880f2008-08-07 10:53:10 +05302098 ath9k_hw_get_txq_props(sc->sc_ah, qnum, &qi);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002099 /*
2100 * Ensure the readytime % is within the bounds.
2101 */
2102 if (sc->sc_config.cabqReadytime < ATH9K_READY_TIME_LO_BOUND)
2103 sc->sc_config.cabqReadytime = ATH9K_READY_TIME_LO_BOUND;
2104 else if (sc->sc_config.cabqReadytime > ATH9K_READY_TIME_HI_BOUND)
2105 sc->sc_config.cabqReadytime = ATH9K_READY_TIME_HI_BOUND;
2106
2107 ath_get_beaconconfig(sc, ATH_IF_ID_ANY, &conf);
2108 qi.tqi_readyTime =
2109 (conf.beacon_interval * sc->sc_config.cabqReadytime) / 100;
2110 ath_txq_update(sc, qnum, &qi);
2111
2112 return 0;
2113}
2114
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002115/* Deferred processing of transmit interrupt */
2116
2117void ath_tx_tasklet(struct ath_softc *sc)
2118{
Sujith1fe11322008-08-26 08:11:06 +05302119 int i;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002120 u32 qcumask = ((1 << ATH9K_NUM_TX_QUEUES) - 1);
2121
2122 ath9k_hw_gettxintrtxqs(sc->sc_ah, &qcumask);
2123
2124 /*
2125 * Process each active queue.
2126 */
2127 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2128 if (ATH_TXQ_SETUP(sc, i) && (qcumask & (1 << i)))
Sujithb77f4832008-12-07 21:44:03 +05302129 ath_tx_processq(sc, &sc->tx.txq[i]);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002130 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002131}
2132
2133void ath_tx_draintxq(struct ath_softc *sc,
2134 struct ath_txq *txq, bool retry_tx)
2135{
2136 struct ath_buf *bf, *lastbf;
2137 struct list_head bf_head;
2138
2139 INIT_LIST_HEAD(&bf_head);
2140
2141 /*
2142 * NB: this assumes output has been stopped and
2143 * we do not need to block ath_tx_tasklet
2144 */
2145 for (;;) {
2146 spin_lock_bh(&txq->axq_lock);
2147
2148 if (list_empty(&txq->axq_q)) {
2149 txq->axq_link = NULL;
2150 txq->axq_linkbuf = NULL;
2151 spin_unlock_bh(&txq->axq_lock);
2152 break;
2153 }
2154
2155 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
2156
2157 if (bf->bf_status & ATH_BUFSTATUS_STALE) {
2158 list_del(&bf->list);
2159 spin_unlock_bh(&txq->axq_lock);
2160
Sujithb77f4832008-12-07 21:44:03 +05302161 spin_lock_bh(&sc->tx.txbuflock);
2162 list_add_tail(&bf->list, &sc->tx.txbuf);
2163 spin_unlock_bh(&sc->tx.txbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002164 continue;
2165 }
2166
2167 lastbf = bf->bf_lastbf;
2168 if (!retry_tx)
2169 lastbf->bf_desc->ds_txstat.ts_flags =
2170 ATH9K_TX_SW_ABORTED;
2171
2172 /* remove ath_buf's of the same mpdu from txq */
2173 list_cut_position(&bf_head, &txq->axq_q, &lastbf->list);
2174 txq->axq_depth--;
2175
2176 spin_unlock_bh(&txq->axq_lock);
2177
Sujithcd3d39a2008-08-11 14:03:34 +05302178 if (bf_isampdu(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002179 ath_tx_complete_aggr_rifs(sc, txq, bf, &bf_head, 0);
2180 else
2181 ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
2182 }
2183
2184 /* flush any pending frames if aggregation is enabled */
Sujith672840a2008-08-11 14:05:08 +05302185 if (sc->sc_flags & SC_OP_TXAGGR) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002186 if (!retry_tx) {
2187 spin_lock_bh(&txq->axq_lock);
Sujithb5aa9bf2008-10-29 10:13:31 +05302188 ath_txq_drain_pending_buffers(sc, txq);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002189 spin_unlock_bh(&txq->axq_lock);
2190 }
2191 }
2192}
2193
2194/* Drain the transmit queues and reclaim resources */
2195
2196void ath_draintxq(struct ath_softc *sc, bool retry_tx)
2197{
2198 /* stop beacon queue. The beacon will be freed when
2199 * we go to INIT state */
Sujith672840a2008-08-11 14:05:08 +05302200 if (!(sc->sc_flags & SC_OP_INVALID)) {
Sujithb77f4832008-12-07 21:44:03 +05302201 (void) ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
Sujith04bd46382008-11-28 22:18:05 +05302202 DPRINTF(sc, ATH_DBG_XMIT, "beacon queue %x\n",
Sujithb77f4832008-12-07 21:44:03 +05302203 ath9k_hw_gettxbuf(sc->sc_ah, sc->beacon.beaconq));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002204 }
2205
2206 ath_drain_txdataq(sc, retry_tx);
2207}
2208
2209u32 ath_txq_depth(struct ath_softc *sc, int qnum)
2210{
Sujithb77f4832008-12-07 21:44:03 +05302211 return sc->tx.txq[qnum].axq_depth;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002212}
2213
2214u32 ath_txq_aggr_depth(struct ath_softc *sc, int qnum)
2215{
Sujithb77f4832008-12-07 21:44:03 +05302216 return sc->tx.txq[qnum].axq_aggr_depth;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002217}
2218
Sujithccc75c52008-10-29 10:18:14 +05302219bool ath_tx_aggr_check(struct ath_softc *sc, struct ath_node *an, u8 tidno)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002220{
2221 struct ath_atx_tid *txtid;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002222
Sujith672840a2008-08-11 14:05:08 +05302223 if (!(sc->sc_flags & SC_OP_TXAGGR))
Sujithccc75c52008-10-29 10:18:14 +05302224 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002225
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002226 txtid = ATH_AN_2_TID(an, tidno);
2227
Sujitha37c2c72008-10-29 10:15:40 +05302228 if (!(txtid->state & AGGR_ADDBA_COMPLETE)) {
2229 if (!(txtid->state & AGGR_ADDBA_PROGRESS) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002230 (txtid->addba_exchangeattempts < ADDBA_EXCHANGE_ATTEMPTS)) {
2231 txtid->addba_exchangeattempts++;
Sujithccc75c52008-10-29 10:18:14 +05302232 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002233 }
2234 }
2235
Sujithccc75c52008-10-29 10:18:14 +05302236 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002237}
2238
2239/* Start TX aggregation */
2240
Sujithb5aa9bf2008-10-29 10:13:31 +05302241int ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta,
2242 u16 tid, u16 *ssn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002243{
2244 struct ath_atx_tid *txtid;
2245 struct ath_node *an;
2246
Sujithb5aa9bf2008-10-29 10:13:31 +05302247 an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002248
Sujith672840a2008-08-11 14:05:08 +05302249 if (sc->sc_flags & SC_OP_TXAGGR) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002250 txtid = ATH_AN_2_TID(an, tid);
Sujitha37c2c72008-10-29 10:15:40 +05302251 txtid->state |= AGGR_ADDBA_PROGRESS;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002252 ath_tx_pause_tid(sc, txtid);
2253 }
2254
2255 return 0;
2256}
2257
2258/* Stop tx aggregation */
2259
Sujithb5aa9bf2008-10-29 10:13:31 +05302260int ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002261{
Sujithb5aa9bf2008-10-29 10:13:31 +05302262 struct ath_node *an = (struct ath_node *)sta->drv_priv;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002263
2264 ath_tx_aggr_teardown(sc, an, tid);
2265 return 0;
2266}
2267
Sujith8469cde2008-10-29 10:19:28 +05302268/* Resume tx aggregation */
2269
2270void ath_tx_aggr_resume(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
2271{
2272 struct ath_atx_tid *txtid;
2273 struct ath_node *an;
2274
2275 an = (struct ath_node *)sta->drv_priv;
2276
2277 if (sc->sc_flags & SC_OP_TXAGGR) {
2278 txtid = ATH_AN_2_TID(an, tid);
2279 txtid->baw_size =
2280 IEEE80211_MIN_AMPDU_BUF << sta->ht_cap.ampdu_factor;
2281 txtid->state |= AGGR_ADDBA_COMPLETE;
2282 txtid->state &= ~AGGR_ADDBA_PROGRESS;
2283 ath_tx_resume_tid(sc, txtid);
2284 }
2285}
2286
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002287/*
2288 * Performs transmit side cleanup when TID changes from aggregated to
2289 * unaggregated.
2290 * - Pause the TID and mark cleanup in progress
2291 * - Discard all retry frames from the s/w queue.
2292 */
2293
Sujithb5aa9bf2008-10-29 10:13:31 +05302294void ath_tx_aggr_teardown(struct ath_softc *sc, struct ath_node *an, u8 tid)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002295{
2296 struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid);
Sujithb77f4832008-12-07 21:44:03 +05302297 struct ath_txq *txq = &sc->tx.txq[txtid->ac->qnum];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002298 struct ath_buf *bf;
2299 struct list_head bf_head;
2300 INIT_LIST_HEAD(&bf_head);
2301
Sujitha37c2c72008-10-29 10:15:40 +05302302 if (txtid->state & AGGR_CLEANUP) /* cleanup is in progress */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002303 return;
2304
Sujitha37c2c72008-10-29 10:15:40 +05302305 if (!(txtid->state & AGGR_ADDBA_COMPLETE)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002306 txtid->addba_exchangeattempts = 0;
2307 return;
2308 }
2309
2310 /* TID must be paused first */
2311 ath_tx_pause_tid(sc, txtid);
2312
2313 /* drop all software retried frames and mark this TID */
2314 spin_lock_bh(&txq->axq_lock);
2315 while (!list_empty(&txtid->buf_q)) {
2316 bf = list_first_entry(&txtid->buf_q, struct ath_buf, list);
Sujithcd3d39a2008-08-11 14:03:34 +05302317 if (!bf_isretried(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002318 /*
2319 * NB: it's based on the assumption that
2320 * software retried frame will always stay
2321 * at the head of software queue.
2322 */
2323 break;
2324 }
2325 list_cut_position(&bf_head,
2326 &txtid->buf_q, &bf->bf_lastfrm->list);
2327 ath_tx_update_baw(sc, txtid, bf->bf_seqno);
2328
2329 /* complete this sub-frame */
2330 ath_tx_complete_buf(sc, bf, &bf_head, 0, 0);
2331 }
2332
2333 if (txtid->baw_head != txtid->baw_tail) {
2334 spin_unlock_bh(&txq->axq_lock);
Sujitha37c2c72008-10-29 10:15:40 +05302335 txtid->state |= AGGR_CLEANUP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002336 } else {
Sujitha37c2c72008-10-29 10:15:40 +05302337 txtid->state &= ~AGGR_ADDBA_COMPLETE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002338 txtid->addba_exchangeattempts = 0;
2339 spin_unlock_bh(&txq->axq_lock);
2340 ath_tx_flush_tid(sc, txtid);
2341 }
2342}
2343
2344/*
2345 * Tx scheduling logic
2346 * NB: must be called with txq lock held
2347 */
2348
2349void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq)
2350{
2351 struct ath_atx_ac *ac;
2352 struct ath_atx_tid *tid;
2353
2354 /* nothing to schedule */
2355 if (list_empty(&txq->axq_acq))
2356 return;
2357 /*
2358 * get the first node/ac pair on the queue
2359 */
2360 ac = list_first_entry(&txq->axq_acq, struct ath_atx_ac, list);
2361 list_del(&ac->list);
2362 ac->sched = false;
2363
2364 /*
2365 * process a single tid per destination
2366 */
2367 do {
2368 /* nothing to schedule */
2369 if (list_empty(&ac->tid_q))
2370 return;
2371
2372 tid = list_first_entry(&ac->tid_q, struct ath_atx_tid, list);
2373 list_del(&tid->list);
2374 tid->sched = false;
2375
2376 if (tid->paused) /* check next tid to keep h/w busy */
2377 continue;
2378
Sujith43453b32008-10-29 10:14:52 +05302379 if ((txq->axq_depth % 2) == 0)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002380 ath_tx_sched_aggr(sc, txq, tid);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002381
2382 /*
2383 * add tid to round-robin queue if more frames
2384 * are pending for the tid
2385 */
2386 if (!list_empty(&tid->buf_q))
2387 ath_tx_queue_tid(txq, tid);
2388
2389 /* only schedule one TID at a time */
2390 break;
2391 } while (!list_empty(&ac->tid_q));
2392
2393 /*
2394 * schedule AC if more TIDs need processing
2395 */
2396 if (!list_empty(&ac->tid_q)) {
2397 /*
2398 * add dest ac to txq if not already added
2399 */
2400 if (!ac->sched) {
2401 ac->sched = true;
2402 list_add_tail(&ac->list, &txq->axq_acq);
2403 }
2404 }
2405}
2406
2407/* Initialize per-node transmit state */
2408
2409void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an)
2410{
Sujithc5170162008-10-29 10:13:59 +05302411 struct ath_atx_tid *tid;
2412 struct ath_atx_ac *ac;
2413 int tidno, acno;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002414
Sujithc5170162008-10-29 10:13:59 +05302415 /*
2416 * Init per tid tx state
2417 */
Sujith8ee5afb2008-12-07 21:43:36 +05302418 for (tidno = 0, tid = &an->tid[tidno];
Sujithc5170162008-10-29 10:13:59 +05302419 tidno < WME_NUM_TID;
2420 tidno++, tid++) {
2421 tid->an = an;
2422 tid->tidno = tidno;
2423 tid->seq_start = tid->seq_next = 0;
2424 tid->baw_size = WME_MAX_BA;
2425 tid->baw_head = tid->baw_tail = 0;
2426 tid->sched = false;
2427 tid->paused = false;
Sujitha37c2c72008-10-29 10:15:40 +05302428 tid->state &= ~AGGR_CLEANUP;
Sujithc5170162008-10-29 10:13:59 +05302429 INIT_LIST_HEAD(&tid->buf_q);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002430
Sujithc5170162008-10-29 10:13:59 +05302431 acno = TID_TO_WME_AC(tidno);
Sujith8ee5afb2008-12-07 21:43:36 +05302432 tid->ac = &an->ac[acno];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002433
Sujithc5170162008-10-29 10:13:59 +05302434 /* ADDBA state */
Sujitha37c2c72008-10-29 10:15:40 +05302435 tid->state &= ~AGGR_ADDBA_COMPLETE;
2436 tid->state &= ~AGGR_ADDBA_PROGRESS;
2437 tid->addba_exchangeattempts = 0;
Sujithc5170162008-10-29 10:13:59 +05302438 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002439
Sujithc5170162008-10-29 10:13:59 +05302440 /*
2441 * Init per ac tx state
2442 */
Sujith8ee5afb2008-12-07 21:43:36 +05302443 for (acno = 0, ac = &an->ac[acno];
Sujithc5170162008-10-29 10:13:59 +05302444 acno < WME_NUM_AC; acno++, ac++) {
2445 ac->sched = false;
2446 INIT_LIST_HEAD(&ac->tid_q);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002447
Sujithc5170162008-10-29 10:13:59 +05302448 switch (acno) {
2449 case WME_AC_BE:
2450 ac->qnum = ath_tx_get_qnum(sc,
2451 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
2452 break;
2453 case WME_AC_BK:
2454 ac->qnum = ath_tx_get_qnum(sc,
2455 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BK);
2456 break;
2457 case WME_AC_VI:
2458 ac->qnum = ath_tx_get_qnum(sc,
2459 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VI);
2460 break;
2461 case WME_AC_VO:
2462 ac->qnum = ath_tx_get_qnum(sc,
2463 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VO);
2464 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002465 }
2466 }
2467}
2468
2469/* Cleanupthe pending buffers for the node. */
2470
Sujithb5aa9bf2008-10-29 10:13:31 +05302471void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002472{
2473 int i;
2474 struct ath_atx_ac *ac, *ac_tmp;
2475 struct ath_atx_tid *tid, *tid_tmp;
2476 struct ath_txq *txq;
2477 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2478 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05302479 txq = &sc->tx.txq[i];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002480
Sujithb5aa9bf2008-10-29 10:13:31 +05302481 spin_lock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002482
2483 list_for_each_entry_safe(ac,
2484 ac_tmp, &txq->axq_acq, list) {
2485 tid = list_first_entry(&ac->tid_q,
2486 struct ath_atx_tid, list);
2487 if (tid && tid->an != an)
2488 continue;
2489 list_del(&ac->list);
2490 ac->sched = false;
2491
2492 list_for_each_entry_safe(tid,
2493 tid_tmp, &ac->tid_q, list) {
2494 list_del(&tid->list);
2495 tid->sched = false;
Sujithb5aa9bf2008-10-29 10:13:31 +05302496 ath_tid_drain(sc, txq, tid);
Sujitha37c2c72008-10-29 10:15:40 +05302497 tid->state &= ~AGGR_ADDBA_COMPLETE;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002498 tid->addba_exchangeattempts = 0;
Sujitha37c2c72008-10-29 10:15:40 +05302499 tid->state &= ~AGGR_CLEANUP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002500 }
2501 }
2502
Sujithb5aa9bf2008-10-29 10:13:31 +05302503 spin_unlock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002504 }
2505 }
2506}
2507
Jouni Malinene022edb2008-08-22 17:31:33 +03002508void ath_tx_cabq(struct ath_softc *sc, struct sk_buff *skb)
2509{
2510 int hdrlen, padsize;
2511 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2512 struct ath_tx_control txctl;
2513
Sujith528f0c62008-10-29 10:14:26 +05302514 memset(&txctl, 0, sizeof(struct ath_tx_control));
2515
Jouni Malinene022edb2008-08-22 17:31:33 +03002516 /*
2517 * As a temporary workaround, assign seq# here; this will likely need
2518 * to be cleaned up to work better with Beacon transmission and virtual
2519 * BSSes.
2520 */
2521 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
2522 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2523 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Sujithb77f4832008-12-07 21:44:03 +05302524 sc->tx.seq_no += 0x10;
Jouni Malinene022edb2008-08-22 17:31:33 +03002525 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
Sujithb77f4832008-12-07 21:44:03 +05302526 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Jouni Malinene022edb2008-08-22 17:31:33 +03002527 }
2528
2529 /* Add the padding after the header if this is not already done */
2530 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
2531 if (hdrlen & 3) {
2532 padsize = hdrlen % 4;
2533 if (skb_headroom(skb) < padsize) {
Sujith04bd46382008-11-28 22:18:05 +05302534 DPRINTF(sc, ATH_DBG_XMIT, "TX CABQ padding failed\n");
Jouni Malinene022edb2008-08-22 17:31:33 +03002535 dev_kfree_skb_any(skb);
2536 return;
2537 }
2538 skb_push(skb, padsize);
2539 memmove(skb->data, skb->data + padsize, hdrlen);
2540 }
2541
Sujithb77f4832008-12-07 21:44:03 +05302542 txctl.txq = sc->beacon.cabq;
Sujith528f0c62008-10-29 10:14:26 +05302543
Sujith04bd46382008-11-28 22:18:05 +05302544 DPRINTF(sc, ATH_DBG_XMIT, "transmitting CABQ packet, skb: %p\n", skb);
Jouni Malinene022edb2008-08-22 17:31:33 +03002545
Sujith528f0c62008-10-29 10:14:26 +05302546 if (ath_tx_start(sc, skb, &txctl) != 0) {
Sujith04bd46382008-11-28 22:18:05 +05302547 DPRINTF(sc, ATH_DBG_XMIT, "CABQ TX failed\n");
Sujith528f0c62008-10-29 10:14:26 +05302548 goto exit;
Jouni Malinene022edb2008-08-22 17:31:33 +03002549 }
Jouni Malinene022edb2008-08-22 17:31:33 +03002550
Sujith528f0c62008-10-29 10:14:26 +05302551 return;
2552exit:
2553 dev_kfree_skb_any(skb);
2554}