blob: 8e052f406c35853b7e41d2496ad277978e25f9f4 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Sujith394cf0a2009-02-09 13:26:54 +053017#include "ath9k.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070018
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
Sujithc37452b2009-03-09 09:31:57 +053058static void ath_tx_send_ht_normal(struct ath_softc *sc, struct ath_txq *txq,
59 struct ath_atx_tid *tid,
60 struct list_head *bf_head);
Sujithe8324352009-01-16 21:38:42 +053061static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
Sujithfec247c2009-07-27 12:08:16 +053062 struct ath_txq *txq,
Sujithe8324352009-01-16 21:38:42 +053063 struct list_head *bf_q,
64 int txok, int sendbar);
65static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
66 struct list_head *head);
67static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf);
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +053068static int ath_tx_num_badfrms(struct ath_softc *sc, struct ath_buf *bf,
69 int txok);
70static void ath_tx_rc_status(struct ath_buf *bf, struct ath_desc *ds,
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +053071 int nbad, int txok, bool update_rc);
Sujithe8324352009-01-16 21:38:42 +053072
73/*********************/
74/* Aggregation logic */
75/*********************/
76
Sujithe8324352009-01-16 21:38:42 +053077static void ath_tx_queue_tid(struct ath_txq *txq, struct ath_atx_tid *tid)
78{
79 struct ath_atx_ac *ac = tid->ac;
80
81 if (tid->paused)
82 return;
83
84 if (tid->sched)
85 return;
86
87 tid->sched = true;
88 list_add_tail(&tid->list, &ac->tid_q);
89
90 if (ac->sched)
91 return;
92
93 ac->sched = true;
94 list_add_tail(&ac->list, &txq->axq_acq);
95}
96
97static void ath_tx_pause_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
98{
99 struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum];
100
101 spin_lock_bh(&txq->axq_lock);
102 tid->paused++;
103 spin_unlock_bh(&txq->axq_lock);
104}
105
106static void ath_tx_resume_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
107{
108 struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum];
109
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -0700110 BUG_ON(tid->paused <= 0);
Sujithe8324352009-01-16 21:38:42 +0530111 spin_lock_bh(&txq->axq_lock);
112
113 tid->paused--;
114
115 if (tid->paused > 0)
116 goto unlock;
117
118 if (list_empty(&tid->buf_q))
119 goto unlock;
120
121 ath_tx_queue_tid(txq, tid);
122 ath_txq_schedule(sc, txq);
123unlock:
124 spin_unlock_bh(&txq->axq_lock);
125}
126
127static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid)
128{
129 struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum];
130 struct ath_buf *bf;
131 struct list_head bf_head;
132 INIT_LIST_HEAD(&bf_head);
133
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -0700134 BUG_ON(tid->paused <= 0);
Sujithe8324352009-01-16 21:38:42 +0530135 spin_lock_bh(&txq->axq_lock);
136
137 tid->paused--;
138
139 if (tid->paused > 0) {
140 spin_unlock_bh(&txq->axq_lock);
141 return;
142 }
143
144 while (!list_empty(&tid->buf_q)) {
145 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -0700146 BUG_ON(bf_isretried(bf));
Sujithd43f30152009-01-16 21:38:53 +0530147 list_move_tail(&bf->list, &bf_head);
Sujithc37452b2009-03-09 09:31:57 +0530148 ath_tx_send_ht_normal(sc, txq, tid, &bf_head);
Sujithe8324352009-01-16 21:38:42 +0530149 }
150
151 spin_unlock_bh(&txq->axq_lock);
152}
153
154static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
155 int seqno)
156{
157 int index, cindex;
158
159 index = ATH_BA_INDEX(tid->seq_start, seqno);
160 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
161
162 tid->tx_buf[cindex] = NULL;
163
164 while (tid->baw_head != tid->baw_tail && !tid->tx_buf[tid->baw_head]) {
165 INCR(tid->seq_start, IEEE80211_SEQ_MAX);
166 INCR(tid->baw_head, ATH_TID_MAX_BUFS);
167 }
168}
169
170static void ath_tx_addto_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
171 struct ath_buf *bf)
172{
173 int index, cindex;
174
175 if (bf_isretried(bf))
176 return;
177
178 index = ATH_BA_INDEX(tid->seq_start, bf->bf_seqno);
179 cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
180
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -0700181 BUG_ON(tid->tx_buf[cindex] != NULL);
Sujithe8324352009-01-16 21:38:42 +0530182 tid->tx_buf[cindex] = bf;
183
184 if (index >= ((tid->baw_tail - tid->baw_head) &
185 (ATH_TID_MAX_BUFS - 1))) {
186 tid->baw_tail = cindex;
187 INCR(tid->baw_tail, ATH_TID_MAX_BUFS);
188 }
189}
190
191/*
192 * TODO: For frame(s) that are in the retry state, we will reuse the
193 * sequence number(s) without setting the retry bit. The
194 * alternative is to give up on these and BAR the receiver's window
195 * forward.
196 */
197static void ath_tid_drain(struct ath_softc *sc, struct ath_txq *txq,
198 struct ath_atx_tid *tid)
199
200{
201 struct ath_buf *bf;
202 struct list_head bf_head;
203 INIT_LIST_HEAD(&bf_head);
204
205 for (;;) {
206 if (list_empty(&tid->buf_q))
207 break;
Sujithe8324352009-01-16 21:38:42 +0530208
Sujithd43f30152009-01-16 21:38:53 +0530209 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
210 list_move_tail(&bf->list, &bf_head);
Sujithe8324352009-01-16 21:38:42 +0530211
212 if (bf_isretried(bf))
213 ath_tx_update_baw(sc, tid, bf->bf_seqno);
214
215 spin_unlock(&txq->axq_lock);
Sujithfec247c2009-07-27 12:08:16 +0530216 ath_tx_complete_buf(sc, bf, txq, &bf_head, 0, 0);
Sujithe8324352009-01-16 21:38:42 +0530217 spin_lock(&txq->axq_lock);
218 }
219
220 tid->seq_next = tid->seq_start;
221 tid->baw_tail = tid->baw_head;
222}
223
Sujithfec247c2009-07-27 12:08:16 +0530224static void ath_tx_set_retry(struct ath_softc *sc, struct ath_txq *txq,
225 struct ath_buf *bf)
Sujithe8324352009-01-16 21:38:42 +0530226{
227 struct sk_buff *skb;
228 struct ieee80211_hdr *hdr;
229
230 bf->bf_state.bf_type |= BUF_RETRY;
231 bf->bf_retries++;
Sujithfec247c2009-07-27 12:08:16 +0530232 TX_STAT_INC(txq->axq_qnum, a_retries);
Sujithe8324352009-01-16 21:38:42 +0530233
234 skb = bf->bf_mpdu;
235 hdr = (struct ieee80211_hdr *)skb->data;
236 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_RETRY);
237}
238
Sujithd43f30152009-01-16 21:38:53 +0530239static struct ath_buf* ath_clone_txbuf(struct ath_softc *sc, struct ath_buf *bf)
240{
241 struct ath_buf *tbf;
242
243 spin_lock_bh(&sc->tx.txbuflock);
Vasanthakumar Thiagarajan8a460972009-06-10 17:50:09 +0530244 if (WARN_ON(list_empty(&sc->tx.txbuf))) {
245 spin_unlock_bh(&sc->tx.txbuflock);
246 return NULL;
247 }
Sujithd43f30152009-01-16 21:38:53 +0530248 tbf = list_first_entry(&sc->tx.txbuf, struct ath_buf, list);
249 list_del(&tbf->list);
250 spin_unlock_bh(&sc->tx.txbuflock);
251
252 ATH_TXBUF_RESET(tbf);
253
254 tbf->bf_mpdu = bf->bf_mpdu;
255 tbf->bf_buf_addr = bf->bf_buf_addr;
256 *(tbf->bf_desc) = *(bf->bf_desc);
257 tbf->bf_state = bf->bf_state;
258 tbf->bf_dmacontext = bf->bf_dmacontext;
259
260 return tbf;
261}
262
263static void ath_tx_complete_aggr(struct ath_softc *sc, struct ath_txq *txq,
264 struct ath_buf *bf, struct list_head *bf_q,
265 int txok)
Sujithe8324352009-01-16 21:38:42 +0530266{
267 struct ath_node *an = NULL;
268 struct sk_buff *skb;
Sujith1286ec62009-01-27 13:30:37 +0530269 struct ieee80211_sta *sta;
270 struct ieee80211_hdr *hdr;
Sujithe8324352009-01-16 21:38:42 +0530271 struct ath_atx_tid *tid = NULL;
Sujithd43f30152009-01-16 21:38:53 +0530272 struct ath_buf *bf_next, *bf_last = bf->bf_lastbf;
Sujithe8324352009-01-16 21:38:42 +0530273 struct ath_desc *ds = bf_last->bf_desc;
Sujithe8324352009-01-16 21:38:42 +0530274 struct list_head bf_head, bf_pending;
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530275 u16 seq_st = 0, acked_cnt = 0, txfail_cnt = 0;
Sujithe8324352009-01-16 21:38:42 +0530276 u32 ba[WME_BA_BMP_SIZE >> 5];
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530277 int isaggr, txfail, txpending, sendbar = 0, needreset = 0, nbad = 0;
278 bool rc_update = true;
Sujithe8324352009-01-16 21:38:42 +0530279
Sujitha22be222009-03-30 15:28:36 +0530280 skb = bf->bf_mpdu;
Sujith1286ec62009-01-27 13:30:37 +0530281 hdr = (struct ieee80211_hdr *)skb->data;
Sujithe8324352009-01-16 21:38:42 +0530282
Sujith1286ec62009-01-27 13:30:37 +0530283 rcu_read_lock();
284
Johannes Berg5ed176e2009-11-04 14:42:28 +0100285 /* XXX: use ieee80211_find_sta! */
286 sta = ieee80211_find_sta_by_hw(sc->hw, hdr->addr1);
Sujith1286ec62009-01-27 13:30:37 +0530287 if (!sta) {
288 rcu_read_unlock();
289 return;
Sujithe8324352009-01-16 21:38:42 +0530290 }
291
Sujith1286ec62009-01-27 13:30:37 +0530292 an = (struct ath_node *)sta->drv_priv;
293 tid = ATH_AN_2_TID(an, bf->bf_tidno);
294
Sujithe8324352009-01-16 21:38:42 +0530295 isaggr = bf_isaggr(bf);
Sujithd43f30152009-01-16 21:38:53 +0530296 memset(ba, 0, WME_BA_BMP_SIZE >> 3);
Sujithe8324352009-01-16 21:38:42 +0530297
Sujithd43f30152009-01-16 21:38:53 +0530298 if (isaggr && txok) {
299 if (ATH_DS_TX_BA(ds)) {
300 seq_st = ATH_DS_BA_SEQ(ds);
301 memcpy(ba, ATH_DS_BA_BITMAP(ds),
302 WME_BA_BMP_SIZE >> 3);
Sujithe8324352009-01-16 21:38:42 +0530303 } else {
Sujithd43f30152009-01-16 21:38:53 +0530304 /*
305 * AR5416 can become deaf/mute when BA
306 * issue happens. Chip needs to be reset.
307 * But AP code may have sychronization issues
308 * when perform internal reset in this routine.
309 * Only enable reset in STA mode for now.
310 */
Sujith2660b812009-02-09 13:27:26 +0530311 if (sc->sc_ah->opmode == NL80211_IFTYPE_STATION)
Sujithd43f30152009-01-16 21:38:53 +0530312 needreset = 1;
Sujithe8324352009-01-16 21:38:42 +0530313 }
314 }
315
316 INIT_LIST_HEAD(&bf_pending);
317 INIT_LIST_HEAD(&bf_head);
318
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530319 nbad = ath_tx_num_badfrms(sc, bf, txok);
Sujithe8324352009-01-16 21:38:42 +0530320 while (bf) {
321 txfail = txpending = 0;
322 bf_next = bf->bf_next;
323
324 if (ATH_BA_ISSET(ba, ATH_BA_INDEX(seq_st, bf->bf_seqno))) {
325 /* transmit completion, subframe is
326 * acked by block ack */
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530327 acked_cnt++;
Sujithe8324352009-01-16 21:38:42 +0530328 } else if (!isaggr && txok) {
329 /* transmit completion */
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530330 acked_cnt++;
Sujithe8324352009-01-16 21:38:42 +0530331 } else {
Sujithe8324352009-01-16 21:38:42 +0530332 if (!(tid->state & AGGR_CLEANUP) &&
333 ds->ds_txstat.ts_flags != ATH9K_TX_SW_ABORTED) {
334 if (bf->bf_retries < ATH_MAX_SW_RETRIES) {
Sujithfec247c2009-07-27 12:08:16 +0530335 ath_tx_set_retry(sc, txq, bf);
Sujithe8324352009-01-16 21:38:42 +0530336 txpending = 1;
337 } else {
338 bf->bf_state.bf_type |= BUF_XRETRY;
339 txfail = 1;
340 sendbar = 1;
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530341 txfail_cnt++;
Sujithe8324352009-01-16 21:38:42 +0530342 }
343 } else {
344 /*
345 * cleanup in progress, just fail
346 * the un-acked sub-frames
347 */
348 txfail = 1;
349 }
350 }
351
352 if (bf_next == NULL) {
Vasanthakumar Thiagarajancbfe89c2009-06-24 18:58:47 +0530353 /*
354 * Make sure the last desc is reclaimed if it
355 * not a holding desc.
356 */
357 if (!bf_last->bf_stale)
358 list_move_tail(&bf->list, &bf_head);
359 else
360 INIT_LIST_HEAD(&bf_head);
Sujithe8324352009-01-16 21:38:42 +0530361 } else {
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -0700362 BUG_ON(list_empty(bf_q));
Sujithd43f30152009-01-16 21:38:53 +0530363 list_move_tail(&bf->list, &bf_head);
Sujithe8324352009-01-16 21:38:42 +0530364 }
365
366 if (!txpending) {
367 /*
368 * complete the acked-ones/xretried ones; update
369 * block-ack window
370 */
371 spin_lock_bh(&txq->axq_lock);
372 ath_tx_update_baw(sc, tid, bf->bf_seqno);
373 spin_unlock_bh(&txq->axq_lock);
374
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +0530375 if (rc_update && (acked_cnt == 1 || txfail_cnt == 1)) {
376 ath_tx_rc_status(bf, ds, nbad, txok, true);
377 rc_update = false;
378 } else {
379 ath_tx_rc_status(bf, ds, nbad, txok, false);
380 }
381
Sujithfec247c2009-07-27 12:08:16 +0530382 ath_tx_complete_buf(sc, bf, txq, &bf_head, !txfail, sendbar);
Sujithe8324352009-01-16 21:38:42 +0530383 } else {
Sujithd43f30152009-01-16 21:38:53 +0530384 /* retry the un-acked ones */
Sujitha119cc42009-03-30 15:28:38 +0530385 if (bf->bf_next == NULL && bf_last->bf_stale) {
Sujithe8324352009-01-16 21:38:42 +0530386 struct ath_buf *tbf;
387
Sujithd43f30152009-01-16 21:38:53 +0530388 tbf = ath_clone_txbuf(sc, bf_last);
Vasanthakumar Thiagarajanc41d92d2009-07-14 20:17:11 -0400389 /*
390 * Update tx baw and complete the frame with
391 * failed status if we run out of tx buf
392 */
393 if (!tbf) {
394 spin_lock_bh(&txq->axq_lock);
395 ath_tx_update_baw(sc, tid,
396 bf->bf_seqno);
397 spin_unlock_bh(&txq->axq_lock);
398
399 bf->bf_state.bf_type |= BUF_XRETRY;
400 ath_tx_rc_status(bf, ds, nbad,
401 0, false);
Sujithfec247c2009-07-27 12:08:16 +0530402 ath_tx_complete_buf(sc, bf, txq,
403 &bf_head, 0, 0);
Vasanthakumar Thiagarajan8a460972009-06-10 17:50:09 +0530404 break;
Vasanthakumar Thiagarajanc41d92d2009-07-14 20:17:11 -0400405 }
406
Sujithd43f30152009-01-16 21:38:53 +0530407 ath9k_hw_cleartxdesc(sc->sc_ah, tbf->bf_desc);
Sujithe8324352009-01-16 21:38:42 +0530408 list_add_tail(&tbf->list, &bf_head);
409 } else {
410 /*
411 * Clear descriptor status words for
412 * software retry
413 */
Sujithd43f30152009-01-16 21:38:53 +0530414 ath9k_hw_cleartxdesc(sc->sc_ah, bf->bf_desc);
Sujithe8324352009-01-16 21:38:42 +0530415 }
416
417 /*
418 * Put this buffer to the temporary pending
419 * queue to retain ordering
420 */
421 list_splice_tail_init(&bf_head, &bf_pending);
422 }
423
424 bf = bf_next;
425 }
426
427 if (tid->state & AGGR_CLEANUP) {
Sujithe8324352009-01-16 21:38:42 +0530428 if (tid->baw_head == tid->baw_tail) {
429 tid->state &= ~AGGR_ADDBA_COMPLETE;
Sujithe8324352009-01-16 21:38:42 +0530430 tid->state &= ~AGGR_CLEANUP;
431
432 /* send buffered frames as singles */
433 ath_tx_flush_tid(sc, tid);
Sujithd43f30152009-01-16 21:38:53 +0530434 }
Sujith1286ec62009-01-27 13:30:37 +0530435 rcu_read_unlock();
Sujithe8324352009-01-16 21:38:42 +0530436 return;
437 }
438
Sujithd43f30152009-01-16 21:38:53 +0530439 /* prepend un-acked frames to the beginning of the pending frame queue */
Sujithe8324352009-01-16 21:38:42 +0530440 if (!list_empty(&bf_pending)) {
441 spin_lock_bh(&txq->axq_lock);
442 list_splice(&bf_pending, &tid->buf_q);
443 ath_tx_queue_tid(txq, tid);
444 spin_unlock_bh(&txq->axq_lock);
445 }
446
Sujith1286ec62009-01-27 13:30:37 +0530447 rcu_read_unlock();
448
Sujithe8324352009-01-16 21:38:42 +0530449 if (needreset)
450 ath_reset(sc, false);
Sujithe8324352009-01-16 21:38:42 +0530451}
452
453static u32 ath_lookup_rate(struct ath_softc *sc, struct ath_buf *bf,
454 struct ath_atx_tid *tid)
455{
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -0400456 const struct ath_rate_table *rate_table = sc->cur_rate_table;
Sujithe8324352009-01-16 21:38:42 +0530457 struct sk_buff *skb;
458 struct ieee80211_tx_info *tx_info;
459 struct ieee80211_tx_rate *rates;
460 struct ath_tx_info_priv *tx_info_priv;
Sujithd43f30152009-01-16 21:38:53 +0530461 u32 max_4ms_framelen, frmlen;
Sujith4ef70842009-07-23 15:32:41 +0530462 u16 aggr_limit, legacy = 0;
Sujithe8324352009-01-16 21:38:42 +0530463 int i;
464
Sujitha22be222009-03-30 15:28:36 +0530465 skb = bf->bf_mpdu;
Sujithe8324352009-01-16 21:38:42 +0530466 tx_info = IEEE80211_SKB_CB(skb);
467 rates = tx_info->control.rates;
Sujithd43f30152009-01-16 21:38:53 +0530468 tx_info_priv = (struct ath_tx_info_priv *)tx_info->rate_driver_data[0];
Sujithe8324352009-01-16 21:38:42 +0530469
470 /*
471 * Find the lowest frame length among the rate series that will have a
472 * 4ms transmit duration.
473 * TODO - TXOP limit needs to be considered.
474 */
475 max_4ms_framelen = ATH_AMPDU_LIMIT_MAX;
476
477 for (i = 0; i < 4; i++) {
478 if (rates[i].count) {
479 if (!WLAN_RC_PHY_HT(rate_table->info[rates[i].idx].phy)) {
480 legacy = 1;
481 break;
482 }
483
Sujithd43f30152009-01-16 21:38:53 +0530484 frmlen = rate_table->info[rates[i].idx].max_4ms_framelen;
485 max_4ms_framelen = min(max_4ms_framelen, frmlen);
Sujithe8324352009-01-16 21:38:42 +0530486 }
487 }
488
489 /*
490 * limit aggregate size by the minimum rate if rate selected is
491 * not a probe rate, if rate selected is a probe rate then
492 * avoid aggregation of this packet.
493 */
494 if (tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE || legacy)
495 return 0;
496
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530497 if (sc->sc_flags & SC_OP_BT_PRIORITY_DETECTED)
498 aggr_limit = min((max_4ms_framelen * 3) / 8,
499 (u32)ATH_AMPDU_LIMIT_MAX);
500 else
501 aggr_limit = min(max_4ms_framelen,
502 (u32)ATH_AMPDU_LIMIT_MAX);
Sujithe8324352009-01-16 21:38:42 +0530503
504 /*
505 * h/w can accept aggregates upto 16 bit lengths (65535).
506 * The IE, however can hold upto 65536, which shows up here
507 * as zero. Ignore 65536 since we are constrained by hw.
508 */
Sujith4ef70842009-07-23 15:32:41 +0530509 if (tid->an->maxampdu)
510 aggr_limit = min(aggr_limit, tid->an->maxampdu);
Sujithe8324352009-01-16 21:38:42 +0530511
512 return aggr_limit;
513}
514
515/*
Sujithd43f30152009-01-16 21:38:53 +0530516 * Returns the number of delimiters to be added to
Sujithe8324352009-01-16 21:38:42 +0530517 * meet the minimum required mpdudensity.
Sujithe8324352009-01-16 21:38:42 +0530518 */
519static int ath_compute_num_delims(struct ath_softc *sc, struct ath_atx_tid *tid,
520 struct ath_buf *bf, u16 frmlen)
521{
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -0400522 const struct ath_rate_table *rt = sc->cur_rate_table;
Sujithe8324352009-01-16 21:38:42 +0530523 struct sk_buff *skb = bf->bf_mpdu;
524 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Sujith4ef70842009-07-23 15:32:41 +0530525 u32 nsymbits, nsymbols;
Sujithe8324352009-01-16 21:38:42 +0530526 u16 minlen;
527 u8 rc, flags, rix;
528 int width, half_gi, ndelim, mindelim;
529
530 /* Select standard number of delimiters based on frame length alone */
531 ndelim = ATH_AGGR_GET_NDELIM(frmlen);
532
533 /*
534 * If encryption enabled, hardware requires some more padding between
535 * subframes.
536 * TODO - this could be improved to be dependent on the rate.
537 * The hardware can keep up at lower rates, but not higher rates
538 */
539 if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR)
540 ndelim += ATH_AGGR_ENCRYPTDELIM;
541
542 /*
543 * Convert desired mpdu density from microeconds to bytes based
544 * on highest rate in rate series (i.e. first rate) to determine
545 * required minimum length for subframe. Take into account
546 * whether high rate is 20 or 40Mhz and half or full GI.
Sujith4ef70842009-07-23 15:32:41 +0530547 *
Sujithe8324352009-01-16 21:38:42 +0530548 * If there is no mpdu density restriction, no further calculation
549 * is needed.
550 */
Sujith4ef70842009-07-23 15:32:41 +0530551
552 if (tid->an->mpdudensity == 0)
Sujithe8324352009-01-16 21:38:42 +0530553 return ndelim;
554
555 rix = tx_info->control.rates[0].idx;
556 flags = tx_info->control.rates[0].flags;
557 rc = rt->info[rix].ratecode;
558 width = (flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ? 1 : 0;
559 half_gi = (flags & IEEE80211_TX_RC_SHORT_GI) ? 1 : 0;
560
561 if (half_gi)
Sujith4ef70842009-07-23 15:32:41 +0530562 nsymbols = NUM_SYMBOLS_PER_USEC_HALFGI(tid->an->mpdudensity);
Sujithe8324352009-01-16 21:38:42 +0530563 else
Sujith4ef70842009-07-23 15:32:41 +0530564 nsymbols = NUM_SYMBOLS_PER_USEC(tid->an->mpdudensity);
Sujithe8324352009-01-16 21:38:42 +0530565
566 if (nsymbols == 0)
567 nsymbols = 1;
568
569 nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
570 minlen = (nsymbols * nsymbits) / BITS_PER_BYTE;
571
Sujithe8324352009-01-16 21:38:42 +0530572 if (frmlen < minlen) {
Sujithe8324352009-01-16 21:38:42 +0530573 mindelim = (minlen - frmlen) / ATH_AGGR_DELIM_SZ;
574 ndelim = max(mindelim, ndelim);
575 }
576
577 return ndelim;
578}
579
580static enum ATH_AGGR_STATUS ath_tx_form_aggr(struct ath_softc *sc,
Sujithfec247c2009-07-27 12:08:16 +0530581 struct ath_txq *txq,
Sujithd43f30152009-01-16 21:38:53 +0530582 struct ath_atx_tid *tid,
583 struct list_head *bf_q)
Sujithe8324352009-01-16 21:38:42 +0530584{
585#define PADBYTES(_len) ((4 - ((_len) % 4)) % 4)
Sujithd43f30152009-01-16 21:38:53 +0530586 struct ath_buf *bf, *bf_first, *bf_prev = NULL;
587 int rl = 0, nframes = 0, ndelim, prev_al = 0;
Sujithe8324352009-01-16 21:38:42 +0530588 u16 aggr_limit = 0, al = 0, bpad = 0,
589 al_delta, h_baw = tid->baw_size / 2;
590 enum ATH_AGGR_STATUS status = ATH_AGGR_DONE;
Sujithe8324352009-01-16 21:38:42 +0530591
592 bf_first = list_first_entry(&tid->buf_q, struct ath_buf, list);
593
594 do {
595 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
596
Sujithd43f30152009-01-16 21:38:53 +0530597 /* do not step over block-ack window */
Sujithe8324352009-01-16 21:38:42 +0530598 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno)) {
599 status = ATH_AGGR_BAW_CLOSED;
600 break;
601 }
602
603 if (!rl) {
604 aggr_limit = ath_lookup_rate(sc, bf, tid);
605 rl = 1;
606 }
607
Sujithd43f30152009-01-16 21:38:53 +0530608 /* do not exceed aggregation limit */
Sujithe8324352009-01-16 21:38:42 +0530609 al_delta = ATH_AGGR_DELIM_SZ + bf->bf_frmlen;
610
Sujithd43f30152009-01-16 21:38:53 +0530611 if (nframes &&
612 (aggr_limit < (al + bpad + al_delta + prev_al))) {
Sujithe8324352009-01-16 21:38:42 +0530613 status = ATH_AGGR_LIMITED;
614 break;
615 }
616
Sujithd43f30152009-01-16 21:38:53 +0530617 /* do not exceed subframe limit */
618 if (nframes >= min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) {
Sujithe8324352009-01-16 21:38:42 +0530619 status = ATH_AGGR_LIMITED;
620 break;
621 }
Sujithd43f30152009-01-16 21:38:53 +0530622 nframes++;
Sujithe8324352009-01-16 21:38:42 +0530623
Sujithd43f30152009-01-16 21:38:53 +0530624 /* add padding for previous frame to aggregation length */
Sujithe8324352009-01-16 21:38:42 +0530625 al += bpad + al_delta;
626
627 /*
628 * Get the delimiters needed to meet the MPDU
629 * density for this node.
630 */
631 ndelim = ath_compute_num_delims(sc, tid, bf_first, bf->bf_frmlen);
Sujithe8324352009-01-16 21:38:42 +0530632 bpad = PADBYTES(al_delta) + (ndelim << 2);
633
634 bf->bf_next = NULL;
Sujithd43f30152009-01-16 21:38:53 +0530635 bf->bf_desc->ds_link = 0;
Sujithe8324352009-01-16 21:38:42 +0530636
Sujithd43f30152009-01-16 21:38:53 +0530637 /* link buffers of this frame to the aggregate */
Sujithe8324352009-01-16 21:38:42 +0530638 ath_tx_addto_baw(sc, tid, bf);
Sujithd43f30152009-01-16 21:38:53 +0530639 ath9k_hw_set11n_aggr_middle(sc->sc_ah, bf->bf_desc, ndelim);
640 list_move_tail(&bf->list, bf_q);
Sujithe8324352009-01-16 21:38:42 +0530641 if (bf_prev) {
642 bf_prev->bf_next = bf;
Sujithd43f30152009-01-16 21:38:53 +0530643 bf_prev->bf_desc->ds_link = bf->bf_daddr;
Sujithe8324352009-01-16 21:38:42 +0530644 }
645 bf_prev = bf;
Sujithfec247c2009-07-27 12:08:16 +0530646
Sujithe8324352009-01-16 21:38:42 +0530647 } while (!list_empty(&tid->buf_q));
648
649 bf_first->bf_al = al;
650 bf_first->bf_nframes = nframes;
Sujithd43f30152009-01-16 21:38:53 +0530651
Sujithe8324352009-01-16 21:38:42 +0530652 return status;
653#undef PADBYTES
654}
655
656static void ath_tx_sched_aggr(struct ath_softc *sc, struct ath_txq *txq,
657 struct ath_atx_tid *tid)
658{
Sujithd43f30152009-01-16 21:38:53 +0530659 struct ath_buf *bf;
Sujithe8324352009-01-16 21:38:42 +0530660 enum ATH_AGGR_STATUS status;
661 struct list_head bf_q;
Sujithe8324352009-01-16 21:38:42 +0530662
663 do {
664 if (list_empty(&tid->buf_q))
665 return;
666
667 INIT_LIST_HEAD(&bf_q);
668
Sujithfec247c2009-07-27 12:08:16 +0530669 status = ath_tx_form_aggr(sc, txq, tid, &bf_q);
Sujithe8324352009-01-16 21:38:42 +0530670
671 /*
Sujithd43f30152009-01-16 21:38:53 +0530672 * no frames picked up to be aggregated;
673 * block-ack window is not open.
Sujithe8324352009-01-16 21:38:42 +0530674 */
675 if (list_empty(&bf_q))
676 break;
677
678 bf = list_first_entry(&bf_q, struct ath_buf, list);
Sujithd43f30152009-01-16 21:38:53 +0530679 bf->bf_lastbf = list_entry(bf_q.prev, struct ath_buf, list);
Sujithe8324352009-01-16 21:38:42 +0530680
Sujithd43f30152009-01-16 21:38:53 +0530681 /* if only one frame, send as non-aggregate */
Sujithe8324352009-01-16 21:38:42 +0530682 if (bf->bf_nframes == 1) {
Sujithe8324352009-01-16 21:38:42 +0530683 bf->bf_state.bf_type &= ~BUF_AGGR;
Sujithd43f30152009-01-16 21:38:53 +0530684 ath9k_hw_clr11n_aggr(sc->sc_ah, bf->bf_desc);
Sujithe8324352009-01-16 21:38:42 +0530685 ath_buf_set_rate(sc, bf);
686 ath_tx_txqaddbuf(sc, txq, &bf_q);
687 continue;
688 }
689
Sujithd43f30152009-01-16 21:38:53 +0530690 /* setup first desc of aggregate */
Sujithe8324352009-01-16 21:38:42 +0530691 bf->bf_state.bf_type |= BUF_AGGR;
692 ath_buf_set_rate(sc, bf);
693 ath9k_hw_set11n_aggr_first(sc->sc_ah, bf->bf_desc, bf->bf_al);
694
Sujithd43f30152009-01-16 21:38:53 +0530695 /* anchor last desc of aggregate */
696 ath9k_hw_set11n_aggr_last(sc->sc_ah, bf->bf_lastbf->bf_desc);
Sujithe8324352009-01-16 21:38:42 +0530697
698 txq->axq_aggr_depth++;
Sujithe8324352009-01-16 21:38:42 +0530699 ath_tx_txqaddbuf(sc, txq, &bf_q);
Sujithfec247c2009-07-27 12:08:16 +0530700 TX_STAT_INC(txq->axq_qnum, a_aggr);
Sujithe8324352009-01-16 21:38:42 +0530701
702 } while (txq->axq_depth < ATH_AGGR_MIN_QDEPTH &&
703 status != ATH_AGGR_BAW_CLOSED);
704}
705
Sujithf83da962009-07-23 15:32:37 +0530706void ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta,
707 u16 tid, u16 *ssn)
Sujithe8324352009-01-16 21:38:42 +0530708{
709 struct ath_atx_tid *txtid;
710 struct ath_node *an;
711
712 an = (struct ath_node *)sta->drv_priv;
Sujithf83da962009-07-23 15:32:37 +0530713 txtid = ATH_AN_2_TID(an, tid);
714 txtid->state |= AGGR_ADDBA_PROGRESS;
715 ath_tx_pause_tid(sc, txtid);
716 *ssn = txtid->seq_start;
Sujithe8324352009-01-16 21:38:42 +0530717}
718
Sujithf83da962009-07-23 15:32:37 +0530719void ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
Sujithe8324352009-01-16 21:38:42 +0530720{
721 struct ath_node *an = (struct ath_node *)sta->drv_priv;
722 struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid);
723 struct ath_txq *txq = &sc->tx.txq[txtid->ac->qnum];
724 struct ath_buf *bf;
725 struct list_head bf_head;
726 INIT_LIST_HEAD(&bf_head);
727
728 if (txtid->state & AGGR_CLEANUP)
Sujithf83da962009-07-23 15:32:37 +0530729 return;
Sujithe8324352009-01-16 21:38:42 +0530730
731 if (!(txtid->state & AGGR_ADDBA_COMPLETE)) {
Vasanthakumar Thiagarajan5eae6592009-06-09 15:28:21 +0530732 txtid->state &= ~AGGR_ADDBA_PROGRESS;
Sujithf83da962009-07-23 15:32:37 +0530733 return;
Sujithe8324352009-01-16 21:38:42 +0530734 }
735
736 ath_tx_pause_tid(sc, txtid);
737
738 /* drop all software retried frames and mark this TID */
739 spin_lock_bh(&txq->axq_lock);
740 while (!list_empty(&txtid->buf_q)) {
741 bf = list_first_entry(&txtid->buf_q, struct ath_buf, list);
742 if (!bf_isretried(bf)) {
743 /*
744 * NB: it's based on the assumption that
745 * software retried frame will always stay
746 * at the head of software queue.
747 */
748 break;
749 }
Sujithd43f30152009-01-16 21:38:53 +0530750 list_move_tail(&bf->list, &bf_head);
Sujithe8324352009-01-16 21:38:42 +0530751 ath_tx_update_baw(sc, txtid, bf->bf_seqno);
Sujithfec247c2009-07-27 12:08:16 +0530752 ath_tx_complete_buf(sc, bf, txq, &bf_head, 0, 0);
Sujithe8324352009-01-16 21:38:42 +0530753 }
Sujithd43f30152009-01-16 21:38:53 +0530754 spin_unlock_bh(&txq->axq_lock);
Sujithe8324352009-01-16 21:38:42 +0530755
756 if (txtid->baw_head != txtid->baw_tail) {
Sujithe8324352009-01-16 21:38:42 +0530757 txtid->state |= AGGR_CLEANUP;
758 } else {
759 txtid->state &= ~AGGR_ADDBA_COMPLETE;
Sujithe8324352009-01-16 21:38:42 +0530760 ath_tx_flush_tid(sc, txtid);
761 }
Sujithe8324352009-01-16 21:38:42 +0530762}
763
764void ath_tx_aggr_resume(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
765{
766 struct ath_atx_tid *txtid;
767 struct ath_node *an;
768
769 an = (struct ath_node *)sta->drv_priv;
770
771 if (sc->sc_flags & SC_OP_TXAGGR) {
772 txtid = ATH_AN_2_TID(an, tid);
773 txtid->baw_size =
774 IEEE80211_MIN_AMPDU_BUF << sta->ht_cap.ampdu_factor;
775 txtid->state |= AGGR_ADDBA_COMPLETE;
776 txtid->state &= ~AGGR_ADDBA_PROGRESS;
777 ath_tx_resume_tid(sc, txtid);
778 }
779}
780
781bool ath_tx_aggr_check(struct ath_softc *sc, struct ath_node *an, u8 tidno)
782{
783 struct ath_atx_tid *txtid;
784
785 if (!(sc->sc_flags & SC_OP_TXAGGR))
786 return false;
787
788 txtid = ATH_AN_2_TID(an, tidno);
789
Vasanthakumar Thiagarajanc3d8f022009-06-10 17:50:08 +0530790 if (!(txtid->state & (AGGR_ADDBA_COMPLETE | AGGR_ADDBA_PROGRESS)))
Sujithe8324352009-01-16 21:38:42 +0530791 return true;
Sujithe8324352009-01-16 21:38:42 +0530792 return false;
793}
794
795/********************/
796/* Queue Management */
797/********************/
798
Sujithe8324352009-01-16 21:38:42 +0530799static void ath_txq_drain_pending_buffers(struct ath_softc *sc,
800 struct ath_txq *txq)
801{
802 struct ath_atx_ac *ac, *ac_tmp;
803 struct ath_atx_tid *tid, *tid_tmp;
804
805 list_for_each_entry_safe(ac, ac_tmp, &txq->axq_acq, list) {
806 list_del(&ac->list);
807 ac->sched = false;
808 list_for_each_entry_safe(tid, tid_tmp, &ac->tid_q, list) {
809 list_del(&tid->list);
810 tid->sched = false;
811 ath_tid_drain(sc, txq, tid);
812 }
813 }
814}
815
816struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype)
817{
Sujithcbe61d82009-02-09 13:27:12 +0530818 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700819 struct ath_common *common = ath9k_hw_common(ah);
Sujithe8324352009-01-16 21:38:42 +0530820 struct ath9k_tx_queue_info qi;
821 int qnum;
822
823 memset(&qi, 0, sizeof(qi));
824 qi.tqi_subtype = subtype;
825 qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT;
826 qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT;
827 qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT;
828 qi.tqi_physCompBuf = 0;
829
830 /*
831 * Enable interrupts only for EOL and DESC conditions.
832 * We mark tx descriptors to receive a DESC interrupt
833 * when a tx queue gets deep; otherwise waiting for the
834 * EOL to reap descriptors. Note that this is done to
835 * reduce interrupt load and this only defers reaping
836 * descriptors, never transmitting frames. Aside from
837 * reducing interrupts this also permits more concurrency.
838 * The only potential downside is if the tx queue backs
839 * up in which case the top half of the kernel may backup
840 * due to a lack of tx descriptors.
841 *
842 * The UAPSD queue is an exception, since we take a desc-
843 * based intr on the EOSP frames.
844 */
845 if (qtype == ATH9K_TX_QUEUE_UAPSD)
846 qi.tqi_qflags = TXQ_FLAG_TXDESCINT_ENABLE;
847 else
848 qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE |
849 TXQ_FLAG_TXDESCINT_ENABLE;
850 qnum = ath9k_hw_setuptxqueue(ah, qtype, &qi);
851 if (qnum == -1) {
852 /*
853 * NB: don't print a message, this happens
854 * normally on parts with too few tx queues
855 */
856 return NULL;
857 }
858 if (qnum >= ARRAY_SIZE(sc->tx.txq)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700859 ath_print(common, ATH_DBG_FATAL,
860 "qnum %u out of range, max %u!\n",
861 qnum, (unsigned int)ARRAY_SIZE(sc->tx.txq));
Sujithe8324352009-01-16 21:38:42 +0530862 ath9k_hw_releasetxqueue(ah, qnum);
863 return NULL;
864 }
865 if (!ATH_TXQ_SETUP(sc, qnum)) {
866 struct ath_txq *txq = &sc->tx.txq[qnum];
867
868 txq->axq_qnum = qnum;
869 txq->axq_link = NULL;
870 INIT_LIST_HEAD(&txq->axq_q);
871 INIT_LIST_HEAD(&txq->axq_acq);
872 spin_lock_init(&txq->axq_lock);
873 txq->axq_depth = 0;
874 txq->axq_aggr_depth = 0;
Sujithe8324352009-01-16 21:38:42 +0530875 txq->axq_linkbuf = NULL;
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400876 txq->axq_tx_inprogress = false;
Sujithe8324352009-01-16 21:38:42 +0530877 sc->tx.txqsetup |= 1<<qnum;
878 }
879 return &sc->tx.txq[qnum];
880}
881
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530882int ath_tx_get_qnum(struct ath_softc *sc, int qtype, int haltype)
Sujithe8324352009-01-16 21:38:42 +0530883{
884 int qnum;
885
886 switch (qtype) {
887 case ATH9K_TX_QUEUE_DATA:
888 if (haltype >= ARRAY_SIZE(sc->tx.hwq_map)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700889 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
890 "HAL AC %u out of range, max %zu!\n",
891 haltype, ARRAY_SIZE(sc->tx.hwq_map));
Sujithe8324352009-01-16 21:38:42 +0530892 return -1;
893 }
894 qnum = sc->tx.hwq_map[haltype];
895 break;
896 case ATH9K_TX_QUEUE_BEACON:
897 qnum = sc->beacon.beaconq;
898 break;
899 case ATH9K_TX_QUEUE_CAB:
900 qnum = sc->beacon.cabq->axq_qnum;
901 break;
902 default:
903 qnum = -1;
904 }
905 return qnum;
906}
907
908struct ath_txq *ath_test_get_txq(struct ath_softc *sc, struct sk_buff *skb)
909{
910 struct ath_txq *txq = NULL;
911 int qnum;
912
913 qnum = ath_get_hal_qnum(skb_get_queue_mapping(skb), sc);
914 txq = &sc->tx.txq[qnum];
915
916 spin_lock_bh(&txq->axq_lock);
917
918 if (txq->axq_depth >= (ATH_TXBUF - 20)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700919 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_XMIT,
920 "TX queue: %d is full, depth: %d\n",
921 qnum, txq->axq_depth);
Sujithe8324352009-01-16 21:38:42 +0530922 ieee80211_stop_queue(sc->hw, skb_get_queue_mapping(skb));
923 txq->stopped = 1;
924 spin_unlock_bh(&txq->axq_lock);
925 return NULL;
926 }
927
928 spin_unlock_bh(&txq->axq_lock);
929
930 return txq;
931}
932
933int ath_txq_update(struct ath_softc *sc, int qnum,
934 struct ath9k_tx_queue_info *qinfo)
935{
Sujithcbe61d82009-02-09 13:27:12 +0530936 struct ath_hw *ah = sc->sc_ah;
Sujithe8324352009-01-16 21:38:42 +0530937 int error = 0;
938 struct ath9k_tx_queue_info qi;
939
940 if (qnum == sc->beacon.beaconq) {
941 /*
942 * XXX: for beacon queue, we just save the parameter.
943 * It will be picked up by ath_beaconq_config when
944 * it's necessary.
945 */
946 sc->beacon.beacon_qi = *qinfo;
947 return 0;
948 }
949
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -0700950 BUG_ON(sc->tx.txq[qnum].axq_qnum != qnum);
Sujithe8324352009-01-16 21:38:42 +0530951
952 ath9k_hw_get_txq_props(ah, qnum, &qi);
953 qi.tqi_aifs = qinfo->tqi_aifs;
954 qi.tqi_cwmin = qinfo->tqi_cwmin;
955 qi.tqi_cwmax = qinfo->tqi_cwmax;
956 qi.tqi_burstTime = qinfo->tqi_burstTime;
957 qi.tqi_readyTime = qinfo->tqi_readyTime;
958
959 if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700960 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
961 "Unable to update hardware queue %u!\n", qnum);
Sujithe8324352009-01-16 21:38:42 +0530962 error = -EIO;
963 } else {
964 ath9k_hw_resettxqueue(ah, qnum);
965 }
966
967 return error;
968}
969
970int ath_cabq_update(struct ath_softc *sc)
971{
972 struct ath9k_tx_queue_info qi;
973 int qnum = sc->beacon.cabq->axq_qnum;
Sujithe8324352009-01-16 21:38:42 +0530974
975 ath9k_hw_get_txq_props(sc->sc_ah, qnum, &qi);
976 /*
977 * Ensure the readytime % is within the bounds.
978 */
Sujith17d79042009-02-09 13:27:03 +0530979 if (sc->config.cabqReadytime < ATH9K_READY_TIME_LO_BOUND)
980 sc->config.cabqReadytime = ATH9K_READY_TIME_LO_BOUND;
981 else if (sc->config.cabqReadytime > ATH9K_READY_TIME_HI_BOUND)
982 sc->config.cabqReadytime = ATH9K_READY_TIME_HI_BOUND;
Sujithe8324352009-01-16 21:38:42 +0530983
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200984 qi.tqi_readyTime = (sc->beacon_interval *
Sujithfdbf7332009-02-17 15:36:35 +0530985 sc->config.cabqReadytime) / 100;
Sujithe8324352009-01-16 21:38:42 +0530986 ath_txq_update(sc, qnum, &qi);
987
988 return 0;
989}
990
Sujith043a0402009-01-16 21:38:47 +0530991/*
992 * Drain a given TX queue (could be Beacon or Data)
993 *
994 * This assumes output has been stopped and
995 * we do not need to block ath_tx_tasklet.
996 */
997void ath_draintxq(struct ath_softc *sc, struct ath_txq *txq, bool retry_tx)
Sujithe8324352009-01-16 21:38:42 +0530998{
999 struct ath_buf *bf, *lastbf;
1000 struct list_head bf_head;
1001
1002 INIT_LIST_HEAD(&bf_head);
1003
Sujithe8324352009-01-16 21:38:42 +05301004 for (;;) {
1005 spin_lock_bh(&txq->axq_lock);
1006
1007 if (list_empty(&txq->axq_q)) {
1008 txq->axq_link = NULL;
1009 txq->axq_linkbuf = NULL;
1010 spin_unlock_bh(&txq->axq_lock);
1011 break;
1012 }
1013
1014 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
1015
Sujitha119cc42009-03-30 15:28:38 +05301016 if (bf->bf_stale) {
Sujithe8324352009-01-16 21:38:42 +05301017 list_del(&bf->list);
1018 spin_unlock_bh(&txq->axq_lock);
1019
1020 spin_lock_bh(&sc->tx.txbuflock);
1021 list_add_tail(&bf->list, &sc->tx.txbuf);
1022 spin_unlock_bh(&sc->tx.txbuflock);
1023 continue;
1024 }
1025
1026 lastbf = bf->bf_lastbf;
1027 if (!retry_tx)
1028 lastbf->bf_desc->ds_txstat.ts_flags =
1029 ATH9K_TX_SW_ABORTED;
1030
1031 /* remove ath_buf's of the same mpdu from txq */
1032 list_cut_position(&bf_head, &txq->axq_q, &lastbf->list);
1033 txq->axq_depth--;
1034
1035 spin_unlock_bh(&txq->axq_lock);
1036
1037 if (bf_isampdu(bf))
Sujithd43f30152009-01-16 21:38:53 +05301038 ath_tx_complete_aggr(sc, txq, bf, &bf_head, 0);
Sujithe8324352009-01-16 21:38:42 +05301039 else
Sujithfec247c2009-07-27 12:08:16 +05301040 ath_tx_complete_buf(sc, bf, txq, &bf_head, 0, 0);
Sujithe8324352009-01-16 21:38:42 +05301041 }
1042
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04001043 spin_lock_bh(&txq->axq_lock);
1044 txq->axq_tx_inprogress = false;
1045 spin_unlock_bh(&txq->axq_lock);
1046
Sujithe8324352009-01-16 21:38:42 +05301047 /* flush any pending frames if aggregation is enabled */
1048 if (sc->sc_flags & SC_OP_TXAGGR) {
1049 if (!retry_tx) {
1050 spin_lock_bh(&txq->axq_lock);
1051 ath_txq_drain_pending_buffers(sc, txq);
1052 spin_unlock_bh(&txq->axq_lock);
1053 }
1054 }
1055}
1056
Sujith043a0402009-01-16 21:38:47 +05301057void ath_drain_all_txq(struct ath_softc *sc, bool retry_tx)
1058{
Sujithcbe61d82009-02-09 13:27:12 +05301059 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001060 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith043a0402009-01-16 21:38:47 +05301061 struct ath_txq *txq;
1062 int i, npend = 0;
1063
1064 if (sc->sc_flags & SC_OP_INVALID)
1065 return;
1066
1067 /* Stop beacon queue */
1068 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
1069
1070 /* Stop data queues */
1071 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1072 if (ATH_TXQ_SETUP(sc, i)) {
1073 txq = &sc->tx.txq[i];
1074 ath9k_hw_stoptxdma(ah, txq->axq_qnum);
1075 npend += ath9k_hw_numtxpending(ah, txq->axq_qnum);
1076 }
1077 }
1078
1079 if (npend) {
1080 int r;
1081
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001082 ath_print(common, ATH_DBG_XMIT,
1083 "Unable to stop TxDMA. Reset HAL!\n");
Sujith043a0402009-01-16 21:38:47 +05301084
1085 spin_lock_bh(&sc->sc_resetlock);
Sujith2660b812009-02-09 13:27:26 +05301086 r = ath9k_hw_reset(ah, sc->sc_ah->curchan, true);
Sujith043a0402009-01-16 21:38:47 +05301087 if (r)
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001088 ath_print(common, ATH_DBG_FATAL,
1089 "Unable to reset hardware; reset status %d\n",
1090 r);
Sujith043a0402009-01-16 21:38:47 +05301091 spin_unlock_bh(&sc->sc_resetlock);
1092 }
1093
1094 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1095 if (ATH_TXQ_SETUP(sc, i))
1096 ath_draintxq(sc, &sc->tx.txq[i], retry_tx);
1097 }
1098}
1099
Sujithe8324352009-01-16 21:38:42 +05301100void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq)
1101{
1102 ath9k_hw_releasetxqueue(sc->sc_ah, txq->axq_qnum);
1103 sc->tx.txqsetup &= ~(1<<txq->axq_qnum);
1104}
1105
Sujithe8324352009-01-16 21:38:42 +05301106void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq)
1107{
1108 struct ath_atx_ac *ac;
1109 struct ath_atx_tid *tid;
1110
1111 if (list_empty(&txq->axq_acq))
1112 return;
1113
1114 ac = list_first_entry(&txq->axq_acq, struct ath_atx_ac, list);
1115 list_del(&ac->list);
1116 ac->sched = false;
1117
1118 do {
1119 if (list_empty(&ac->tid_q))
1120 return;
1121
1122 tid = list_first_entry(&ac->tid_q, struct ath_atx_tid, list);
1123 list_del(&tid->list);
1124 tid->sched = false;
1125
1126 if (tid->paused)
1127 continue;
1128
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04001129 ath_tx_sched_aggr(sc, txq, tid);
Sujithe8324352009-01-16 21:38:42 +05301130
1131 /*
1132 * add tid to round-robin queue if more frames
1133 * are pending for the tid
1134 */
1135 if (!list_empty(&tid->buf_q))
1136 ath_tx_queue_tid(txq, tid);
1137
1138 break;
1139 } while (!list_empty(&ac->tid_q));
1140
1141 if (!list_empty(&ac->tid_q)) {
1142 if (!ac->sched) {
1143 ac->sched = true;
1144 list_add_tail(&ac->list, &txq->axq_acq);
1145 }
1146 }
1147}
1148
1149int ath_tx_setup(struct ath_softc *sc, int haltype)
1150{
1151 struct ath_txq *txq;
1152
1153 if (haltype >= ARRAY_SIZE(sc->tx.hwq_map)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001154 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
1155 "HAL AC %u out of range, max %zu!\n",
Sujithe8324352009-01-16 21:38:42 +05301156 haltype, ARRAY_SIZE(sc->tx.hwq_map));
1157 return 0;
1158 }
1159 txq = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, haltype);
1160 if (txq != NULL) {
1161 sc->tx.hwq_map[haltype] = txq->axq_qnum;
1162 return 1;
1163 } else
1164 return 0;
1165}
1166
1167/***********/
1168/* TX, DMA */
1169/***********/
1170
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001171/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001172 * Insert a chain of ath_buf (descriptors) on a txq and
1173 * assume the descriptors are already chained together by caller.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001174 */
Sujith102e0572008-10-29 10:15:16 +05301175static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
1176 struct list_head *head)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001177{
Sujithcbe61d82009-02-09 13:27:12 +05301178 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001179 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001180 struct ath_buf *bf;
Sujith102e0572008-10-29 10:15:16 +05301181
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001182 /*
1183 * Insert the frame on the outbound list and
1184 * pass it on to the hardware.
1185 */
1186
1187 if (list_empty(head))
1188 return;
1189
1190 bf = list_first_entry(head, struct ath_buf, list);
1191
1192 list_splice_tail_init(head, &txq->axq_q);
1193 txq->axq_depth++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001194 txq->axq_linkbuf = list_entry(txq->axq_q.prev, struct ath_buf, list);
1195
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001196 ath_print(common, ATH_DBG_QUEUE,
1197 "qnum: %d, txq depth: %d\n", txq->axq_qnum, txq->axq_depth);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001198
1199 if (txq->axq_link == NULL) {
1200 ath9k_hw_puttxbuf(ah, txq->axq_qnum, bf->bf_daddr);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001201 ath_print(common, ATH_DBG_XMIT,
1202 "TXDP[%u] = %llx (%p)\n",
1203 txq->axq_qnum, ito64(bf->bf_daddr), bf->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001204 } else {
1205 *txq->axq_link = bf->bf_daddr;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001206 ath_print(common, ATH_DBG_XMIT, "link[%u] (%p)=%llx (%p)\n",
1207 txq->axq_qnum, txq->axq_link,
1208 ito64(bf->bf_daddr), bf->bf_desc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001209 }
1210 txq->axq_link = &(bf->bf_lastbf->bf_desc->ds_link);
1211 ath9k_hw_txstart(ah, txq->axq_qnum);
1212}
1213
Sujithe8324352009-01-16 21:38:42 +05301214static struct ath_buf *ath_tx_get_buffer(struct ath_softc *sc)
Sujithc4288392008-11-18 09:09:30 +05301215{
Sujithe8324352009-01-16 21:38:42 +05301216 struct ath_buf *bf = NULL;
Sujithc4288392008-11-18 09:09:30 +05301217
Sujithe8324352009-01-16 21:38:42 +05301218 spin_lock_bh(&sc->tx.txbuflock);
Sujithc4288392008-11-18 09:09:30 +05301219
Sujithe8324352009-01-16 21:38:42 +05301220 if (unlikely(list_empty(&sc->tx.txbuf))) {
1221 spin_unlock_bh(&sc->tx.txbuflock);
1222 return NULL;
Sujithc4288392008-11-18 09:09:30 +05301223 }
1224
Sujithe8324352009-01-16 21:38:42 +05301225 bf = list_first_entry(&sc->tx.txbuf, struct ath_buf, list);
1226 list_del(&bf->list);
Sujithc4288392008-11-18 09:09:30 +05301227
Sujithe8324352009-01-16 21:38:42 +05301228 spin_unlock_bh(&sc->tx.txbuflock);
Sujithc4288392008-11-18 09:09:30 +05301229
Sujithe8324352009-01-16 21:38:42 +05301230 return bf;
1231}
Sujithc4288392008-11-18 09:09:30 +05301232
Sujithe8324352009-01-16 21:38:42 +05301233static void ath_tx_send_ampdu(struct ath_softc *sc, struct ath_atx_tid *tid,
1234 struct list_head *bf_head,
1235 struct ath_tx_control *txctl)
1236{
1237 struct ath_buf *bf;
1238
Sujithe8324352009-01-16 21:38:42 +05301239 bf = list_first_entry(bf_head, struct ath_buf, list);
1240 bf->bf_state.bf_type |= BUF_AMPDU;
Sujithfec247c2009-07-27 12:08:16 +05301241 TX_STAT_INC(txctl->txq->axq_qnum, a_queued);
Sujithe8324352009-01-16 21:38:42 +05301242
1243 /*
1244 * Do not queue to h/w when any of the following conditions is true:
1245 * - there are pending frames in software queue
1246 * - the TID is currently paused for ADDBA/BAR request
1247 * - seqno is not within block-ack window
1248 * - h/w queue depth exceeds low water mark
1249 */
1250 if (!list_empty(&tid->buf_q) || tid->paused ||
1251 !BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno) ||
1252 txctl->txq->axq_depth >= ATH_AGGR_MIN_QDEPTH) {
Jouni Malinenf7a276a2008-12-15 16:02:04 +02001253 /*
Sujithe8324352009-01-16 21:38:42 +05301254 * Add this frame to software queue for scheduling later
1255 * for aggregation.
Jouni Malinenf7a276a2008-12-15 16:02:04 +02001256 */
Sujithd43f30152009-01-16 21:38:53 +05301257 list_move_tail(&bf->list, &tid->buf_q);
Sujithe8324352009-01-16 21:38:42 +05301258 ath_tx_queue_tid(txctl->txq, tid);
1259 return;
Jouni Malinenf7a276a2008-12-15 16:02:04 +02001260 }
1261
Sujithe8324352009-01-16 21:38:42 +05301262 /* Add sub-frame to BAW */
1263 ath_tx_addto_baw(sc, tid, bf);
1264
1265 /* Queue to h/w without aggregation */
1266 bf->bf_nframes = 1;
Sujithd43f30152009-01-16 21:38:53 +05301267 bf->bf_lastbf = bf;
Sujithe8324352009-01-16 21:38:42 +05301268 ath_buf_set_rate(sc, bf);
1269 ath_tx_txqaddbuf(sc, txctl->txq, bf_head);
Sujithc4288392008-11-18 09:09:30 +05301270}
1271
Sujithc37452b2009-03-09 09:31:57 +05301272static void ath_tx_send_ht_normal(struct ath_softc *sc, struct ath_txq *txq,
1273 struct ath_atx_tid *tid,
1274 struct list_head *bf_head)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001275{
Sujithe8324352009-01-16 21:38:42 +05301276 struct ath_buf *bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001277
Sujithe8324352009-01-16 21:38:42 +05301278 bf = list_first_entry(bf_head, struct ath_buf, list);
1279 bf->bf_state.bf_type &= ~BUF_AMPDU;
1280
1281 /* update starting sequence number for subsequent ADDBA request */
1282 INCR(tid->seq_start, IEEE80211_SEQ_MAX);
1283
1284 bf->bf_nframes = 1;
Sujithd43f30152009-01-16 21:38:53 +05301285 bf->bf_lastbf = bf;
Sujithe8324352009-01-16 21:38:42 +05301286 ath_buf_set_rate(sc, bf);
1287 ath_tx_txqaddbuf(sc, txq, bf_head);
Sujithfec247c2009-07-27 12:08:16 +05301288 TX_STAT_INC(txq->axq_qnum, queued);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001289}
1290
Sujithc37452b2009-03-09 09:31:57 +05301291static void ath_tx_send_normal(struct ath_softc *sc, struct ath_txq *txq,
1292 struct list_head *bf_head)
1293{
1294 struct ath_buf *bf;
1295
1296 bf = list_first_entry(bf_head, struct ath_buf, list);
1297
1298 bf->bf_lastbf = bf;
1299 bf->bf_nframes = 1;
1300 ath_buf_set_rate(sc, bf);
1301 ath_tx_txqaddbuf(sc, txq, bf_head);
Sujithfec247c2009-07-27 12:08:16 +05301302 TX_STAT_INC(txq->axq_qnum, queued);
Sujithc37452b2009-03-09 09:31:57 +05301303}
1304
Sujith528f0c62008-10-29 10:14:26 +05301305static enum ath9k_pkt_type get_hw_packet_type(struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001306{
Sujith528f0c62008-10-29 10:14:26 +05301307 struct ieee80211_hdr *hdr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001308 enum ath9k_pkt_type htype;
1309 __le16 fc;
1310
Sujith528f0c62008-10-29 10:14:26 +05301311 hdr = (struct ieee80211_hdr *)skb->data;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001312 fc = hdr->frame_control;
1313
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001314 if (ieee80211_is_beacon(fc))
1315 htype = ATH9K_PKT_TYPE_BEACON;
1316 else if (ieee80211_is_probe_resp(fc))
1317 htype = ATH9K_PKT_TYPE_PROBE_RESP;
1318 else if (ieee80211_is_atim(fc))
1319 htype = ATH9K_PKT_TYPE_ATIM;
1320 else if (ieee80211_is_pspoll(fc))
1321 htype = ATH9K_PKT_TYPE_PSPOLL;
1322 else
1323 htype = ATH9K_PKT_TYPE_NORMAL;
1324
1325 return htype;
1326}
1327
Sujitha8efee42008-11-18 09:07:30 +05301328static bool is_pae(struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001329{
1330 struct ieee80211_hdr *hdr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001331 __le16 fc;
1332
1333 hdr = (struct ieee80211_hdr *)skb->data;
1334 fc = hdr->frame_control;
Johannes Berge6a98542008-10-21 12:40:02 +02001335
Sujitha8efee42008-11-18 09:07:30 +05301336 if (ieee80211_is_data(fc)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001337 if (ieee80211_is_nullfunc(fc) ||
Sujith528f0c62008-10-29 10:14:26 +05301338 /* Port Access Entity (IEEE 802.1X) */
1339 (skb->protocol == cpu_to_be16(ETH_P_PAE))) {
Sujitha8efee42008-11-18 09:07:30 +05301340 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001341 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001342 }
1343
Sujitha8efee42008-11-18 09:07:30 +05301344 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345}
1346
Sujith528f0c62008-10-29 10:14:26 +05301347static int get_hw_crypto_keytype(struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001348{
Sujith528f0c62008-10-29 10:14:26 +05301349 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1350
1351 if (tx_info->control.hw_key) {
1352 if (tx_info->control.hw_key->alg == ALG_WEP)
1353 return ATH9K_KEY_TYPE_WEP;
1354 else if (tx_info->control.hw_key->alg == ALG_TKIP)
1355 return ATH9K_KEY_TYPE_TKIP;
1356 else if (tx_info->control.hw_key->alg == ALG_CCMP)
1357 return ATH9K_KEY_TYPE_AES;
1358 }
1359
1360 return ATH9K_KEY_TYPE_CLEAR;
1361}
1362
Sujith528f0c62008-10-29 10:14:26 +05301363static void assign_aggr_tid_seqno(struct sk_buff *skb,
1364 struct ath_buf *bf)
1365{
1366 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1367 struct ieee80211_hdr *hdr;
1368 struct ath_node *an;
1369 struct ath_atx_tid *tid;
1370 __le16 fc;
1371 u8 *qc;
1372
1373 if (!tx_info->control.sta)
1374 return;
1375
1376 an = (struct ath_node *)tx_info->control.sta->drv_priv;
1377 hdr = (struct ieee80211_hdr *)skb->data;
1378 fc = hdr->frame_control;
1379
Sujith528f0c62008-10-29 10:14:26 +05301380 if (ieee80211_is_data_qos(fc)) {
1381 qc = ieee80211_get_qos_ctl(hdr);
1382 bf->bf_tidno = qc[0] & 0xf;
Sujith98deeea2008-08-11 14:05:46 +05301383 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001384
Sujithe8324352009-01-16 21:38:42 +05301385 /*
1386 * For HT capable stations, we save tidno for later use.
Senthil Balasubramaniand3a1db12008-12-22 16:31:58 +05301387 * We also override seqno set by upper layer with the one
1388 * in tx aggregation state.
1389 *
1390 * If fragmentation is on, the sequence number is
1391 * not overridden, since it has been
1392 * incremented by the fragmentation routine.
1393 *
1394 * FIXME: check if the fragmentation threshold exceeds
1395 * IEEE80211 max.
1396 */
1397 tid = ATH_AN_2_TID(an, bf->bf_tidno);
1398 hdr->seq_ctrl = cpu_to_le16(tid->seq_next <<
1399 IEEE80211_SEQ_SEQ_SHIFT);
1400 bf->bf_seqno = tid->seq_next;
1401 INCR(tid->seq_next, IEEE80211_SEQ_MAX);
Sujith528f0c62008-10-29 10:14:26 +05301402}
1403
1404static int setup_tx_flags(struct ath_softc *sc, struct sk_buff *skb,
1405 struct ath_txq *txq)
1406{
1407 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1408 int flags = 0;
1409
1410 flags |= ATH9K_TXDESC_CLRDMASK; /* needed for crypto errors */
1411 flags |= ATH9K_TXDESC_INTREQ;
1412
1413 if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK)
1414 flags |= ATH9K_TXDESC_NOACK;
Sujith528f0c62008-10-29 10:14:26 +05301415
1416 return flags;
1417}
1418
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001419/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001420 * rix - rate index
1421 * pktlen - total bytes (delims + data + fcs + pads + pad delims)
1422 * width - 0 for 20 MHz, 1 for 40 MHz
1423 * half_gi - to use 4us v/s 3.6 us for symbol time
1424 */
Sujith102e0572008-10-29 10:15:16 +05301425static u32 ath_pkt_duration(struct ath_softc *sc, u8 rix, struct ath_buf *bf,
1426 int width, int half_gi, bool shortPreamble)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001427{
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -04001428 const struct ath_rate_table *rate_table = sc->cur_rate_table;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001429 u32 nbits, nsymbits, duration, nsymbols;
1430 u8 rc;
1431 int streams, pktlen;
1432
Sujithcd3d39a2008-08-11 14:03:34 +05301433 pktlen = bf_isaggr(bf) ? bf->bf_al : bf->bf_frmlen;
Sujithe63835b2008-11-18 09:07:53 +05301434 rc = rate_table->info[rix].ratecode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001435
Sujithe63835b2008-11-18 09:07:53 +05301436 /* for legacy rates, use old function to compute packet duration */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001437 if (!IS_HT_RATE(rc))
Sujithe63835b2008-11-18 09:07:53 +05301438 return ath9k_hw_computetxtime(sc->sc_ah, rate_table, pktlen,
1439 rix, shortPreamble);
1440
1441 /* find number of symbols: PLCP + data */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001442 nbits = (pktlen << 3) + OFDM_PLCP_BITS;
1443 nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
1444 nsymbols = (nbits + nsymbits - 1) / nsymbits;
1445
1446 if (!half_gi)
1447 duration = SYMBOL_TIME(nsymbols);
1448 else
1449 duration = SYMBOL_TIME_HALFGI(nsymbols);
1450
Sujithe63835b2008-11-18 09:07:53 +05301451 /* addup duration for legacy/ht training and signal fields */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001452 streams = HT_RC_2_STREAMS(rc);
1453 duration += L_STF + L_LTF + L_SIG + HT_SIG + HT_STF + HT_LTF(streams);
Sujith102e0572008-10-29 10:15:16 +05301454
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001455 return duration;
1456}
1457
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001458static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf)
1459{
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001460 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -04001461 const struct ath_rate_table *rt = sc->cur_rate_table;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001462 struct ath9k_11n_rate_series series[4];
Sujith528f0c62008-10-29 10:14:26 +05301463 struct sk_buff *skb;
1464 struct ieee80211_tx_info *tx_info;
Sujitha8efee42008-11-18 09:07:30 +05301465 struct ieee80211_tx_rate *rates;
Sujith254ad0f2009-02-04 08:10:19 +05301466 struct ieee80211_hdr *hdr;
Sujithc89424d2009-01-30 14:29:28 +05301467 int i, flags = 0;
1468 u8 rix = 0, ctsrate = 0;
Sujith254ad0f2009-02-04 08:10:19 +05301469 bool is_pspoll;
Sujithe63835b2008-11-18 09:07:53 +05301470
1471 memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4);
Sujith528f0c62008-10-29 10:14:26 +05301472
Sujitha22be222009-03-30 15:28:36 +05301473 skb = bf->bf_mpdu;
Sujith528f0c62008-10-29 10:14:26 +05301474 tx_info = IEEE80211_SKB_CB(skb);
Sujithe63835b2008-11-18 09:07:53 +05301475 rates = tx_info->control.rates;
Sujith254ad0f2009-02-04 08:10:19 +05301476 hdr = (struct ieee80211_hdr *)skb->data;
1477 is_pspoll = ieee80211_is_pspoll(hdr->frame_control);
Sujith528f0c62008-10-29 10:14:26 +05301478
Sujithc89424d2009-01-30 14:29:28 +05301479 /*
1480 * We check if Short Preamble is needed for the CTS rate by
1481 * checking the BSS's global flag.
1482 * But for the rate series, IEEE80211_TX_RC_USE_SHORT_PREAMBLE is used.
1483 */
1484 if (sc->sc_flags & SC_OP_PREAMBLE_SHORT)
1485 ctsrate = rt->info[tx_info->control.rts_cts_rate_idx].ratecode |
1486 rt->info[tx_info->control.rts_cts_rate_idx].short_preamble;
1487 else
1488 ctsrate = rt->info[tx_info->control.rts_cts_rate_idx].ratecode;
Luis R. Rodriguez96742252008-12-23 15:58:38 -08001489
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001490 /*
Sujithc89424d2009-01-30 14:29:28 +05301491 * ATH9K_TXDESC_RTSENA and ATH9K_TXDESC_CTSENA are mutually exclusive.
1492 * Check the first rate in the series to decide whether RTS/CTS
1493 * or CTS-to-self has to be used.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001494 */
Sujithc89424d2009-01-30 14:29:28 +05301495 if (rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
1496 flags = ATH9K_TXDESC_CTSENA;
1497 else if (rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
1498 flags = ATH9K_TXDESC_RTSENA;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001499
Sujithc89424d2009-01-30 14:29:28 +05301500 /* FIXME: Handle aggregation protection */
Sujith17d79042009-02-09 13:27:03 +05301501 if (sc->config.ath_aggr_prot &&
Sujithcd3d39a2008-08-11 14:03:34 +05301502 (!bf_isaggr(bf) || (bf_isaggr(bf) && bf->bf_al < 8192))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001503 flags = ATH9K_TXDESC_RTSENA;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001504 }
1505
Sujithe63835b2008-11-18 09:07:53 +05301506 /* For AR5416 - RTS cannot be followed by a frame larger than 8K */
Sujith2660b812009-02-09 13:27:26 +05301507 if (bf_isaggr(bf) && (bf->bf_al > sc->sc_ah->caps.rts_aggr_limit))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001508 flags &= ~(ATH9K_TXDESC_RTSENA);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001509
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001510 for (i = 0; i < 4; i++) {
Sujithe63835b2008-11-18 09:07:53 +05301511 if (!rates[i].count || (rates[i].idx < 0))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001512 continue;
1513
Sujitha8efee42008-11-18 09:07:30 +05301514 rix = rates[i].idx;
Sujitha8efee42008-11-18 09:07:30 +05301515 series[i].Tries = rates[i].count;
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001516 series[i].ChSel = common->tx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001517
Sujithc89424d2009-01-30 14:29:28 +05301518 if (rates[i].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
1519 series[i].Rate = rt->info[rix].ratecode |
1520 rt->info[rix].short_preamble;
1521 else
1522 series[i].Rate = rt->info[rix].ratecode;
1523
1524 if (rates[i].flags & IEEE80211_TX_RC_USE_RTS_CTS)
1525 series[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS;
1526 if (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1527 series[i].RateFlags |= ATH9K_RATESERIES_2040;
1528 if (rates[i].flags & IEEE80211_TX_RC_SHORT_GI)
1529 series[i].RateFlags |= ATH9K_RATESERIES_HALFGI;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001530
Sujith102e0572008-10-29 10:15:16 +05301531 series[i].PktDuration = ath_pkt_duration(sc, rix, bf,
Sujitha8efee42008-11-18 09:07:30 +05301532 (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) != 0,
1533 (rates[i].flags & IEEE80211_TX_RC_SHORT_GI),
Sujithc89424d2009-01-30 14:29:28 +05301534 (rates[i].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001535 }
1536
Sujithe63835b2008-11-18 09:07:53 +05301537 /* set dur_update_en for l-sig computation except for PS-Poll frames */
Sujithc89424d2009-01-30 14:29:28 +05301538 ath9k_hw_set11n_ratescenario(sc->sc_ah, bf->bf_desc,
1539 bf->bf_lastbf->bf_desc,
Sujith254ad0f2009-02-04 08:10:19 +05301540 !is_pspoll, ctsrate,
Sujithc89424d2009-01-30 14:29:28 +05301541 0, series, 4, flags);
Sujith102e0572008-10-29 10:15:16 +05301542
Sujith17d79042009-02-09 13:27:03 +05301543 if (sc->config.ath_aggr_prot && flags)
Sujithc89424d2009-01-30 14:29:28 +05301544 ath9k_hw_set11n_burstduration(sc->sc_ah, bf->bf_desc, 8192);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001545}
1546
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001547static int ath_tx_setup_buffer(struct ieee80211_hw *hw, struct ath_buf *bf,
Sujithe8324352009-01-16 21:38:42 +05301548 struct sk_buff *skb,
1549 struct ath_tx_control *txctl)
1550{
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001551 struct ath_wiphy *aphy = hw->priv;
1552 struct ath_softc *sc = aphy->sc;
Sujithe8324352009-01-16 21:38:42 +05301553 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1554 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1555 struct ath_tx_info_priv *tx_info_priv;
1556 int hdrlen;
1557 __le16 fc;
1558
1559 tx_info_priv = kzalloc(sizeof(*tx_info_priv), GFP_ATOMIC);
1560 if (unlikely(!tx_info_priv))
1561 return -ENOMEM;
1562 tx_info->rate_driver_data[0] = tx_info_priv;
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001563 tx_info_priv->aphy = aphy;
Jouni Malinenf0ed85c2009-03-03 19:23:31 +02001564 tx_info_priv->frame_type = txctl->frame_type;
Sujithe8324352009-01-16 21:38:42 +05301565 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1566 fc = hdr->frame_control;
1567
1568 ATH_TXBUF_RESET(bf);
1569
1570 bf->bf_frmlen = skb->len + FCS_LEN - (hdrlen & 3);
1571
Sujithc37452b2009-03-09 09:31:57 +05301572 if (conf_is_ht(&sc->hw->conf) && !is_pae(skb))
Sujithc656bbb2009-01-16 21:38:56 +05301573 bf->bf_state.bf_type |= BUF_HT;
Sujithe8324352009-01-16 21:38:42 +05301574
1575 bf->bf_flags = setup_tx_flags(sc, skb, txctl->txq);
1576
1577 bf->bf_keytype = get_hw_crypto_keytype(skb);
Sujithe8324352009-01-16 21:38:42 +05301578 if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR) {
1579 bf->bf_frmlen += tx_info->control.hw_key->icv_len;
1580 bf->bf_keyix = tx_info->control.hw_key->hw_key_idx;
1581 } else {
1582 bf->bf_keyix = ATH9K_TXKEYIX_INVALID;
1583 }
1584
1585 if (ieee80211_is_data_qos(fc) && (sc->sc_flags & SC_OP_TXAGGR))
1586 assign_aggr_tid_seqno(skb, bf);
1587
1588 bf->bf_mpdu = skb;
1589
1590 bf->bf_dmacontext = dma_map_single(sc->dev, skb->data,
1591 skb->len, DMA_TO_DEVICE);
1592 if (unlikely(dma_mapping_error(sc->dev, bf->bf_dmacontext))) {
1593 bf->bf_mpdu = NULL;
Sujith675902e2009-04-13 21:56:34 +05301594 kfree(tx_info_priv);
1595 tx_info->rate_driver_data[0] = NULL;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001596 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
1597 "dma_mapping_error() on TX\n");
Sujithe8324352009-01-16 21:38:42 +05301598 return -ENOMEM;
1599 }
1600
1601 bf->bf_buf_addr = bf->bf_dmacontext;
1602 return 0;
1603}
1604
1605/* FIXME: tx power */
1606static void ath_tx_start_dma(struct ath_softc *sc, struct ath_buf *bf,
1607 struct ath_tx_control *txctl)
1608{
Sujitha22be222009-03-30 15:28:36 +05301609 struct sk_buff *skb = bf->bf_mpdu;
Sujithe8324352009-01-16 21:38:42 +05301610 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Sujithc37452b2009-03-09 09:31:57 +05301611 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Sujithe8324352009-01-16 21:38:42 +05301612 struct ath_node *an = NULL;
1613 struct list_head bf_head;
1614 struct ath_desc *ds;
1615 struct ath_atx_tid *tid;
Sujithcbe61d82009-02-09 13:27:12 +05301616 struct ath_hw *ah = sc->sc_ah;
Sujithe8324352009-01-16 21:38:42 +05301617 int frm_type;
Sujithc37452b2009-03-09 09:31:57 +05301618 __le16 fc;
Sujithe8324352009-01-16 21:38:42 +05301619
1620 frm_type = get_hw_packet_type(skb);
Sujithc37452b2009-03-09 09:31:57 +05301621 fc = hdr->frame_control;
Sujithe8324352009-01-16 21:38:42 +05301622
1623 INIT_LIST_HEAD(&bf_head);
1624 list_add_tail(&bf->list, &bf_head);
1625
1626 ds = bf->bf_desc;
1627 ds->ds_link = 0;
1628 ds->ds_data = bf->bf_buf_addr;
1629
1630 ath9k_hw_set11n_txdesc(ah, ds, bf->bf_frmlen, frm_type, MAX_RATE_POWER,
1631 bf->bf_keyix, bf->bf_keytype, bf->bf_flags);
1632
1633 ath9k_hw_filltxdesc(ah, ds,
1634 skb->len, /* segment length */
1635 true, /* first segment */
1636 true, /* last segment */
1637 ds); /* first descriptor */
1638
Sujithe8324352009-01-16 21:38:42 +05301639 spin_lock_bh(&txctl->txq->axq_lock);
1640
1641 if (bf_isht(bf) && (sc->sc_flags & SC_OP_TXAGGR) &&
1642 tx_info->control.sta) {
1643 an = (struct ath_node *)tx_info->control.sta->drv_priv;
1644 tid = ATH_AN_2_TID(an, bf->bf_tidno);
1645
Sujithc37452b2009-03-09 09:31:57 +05301646 if (!ieee80211_is_data_qos(fc)) {
1647 ath_tx_send_normal(sc, txctl->txq, &bf_head);
1648 goto tx_done;
1649 }
1650
Vasanthakumar Thiagarajan089e6982009-06-10 17:50:07 +05301651 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
Sujithe8324352009-01-16 21:38:42 +05301652 /*
1653 * Try aggregation if it's a unicast data frame
1654 * and the destination is HT capable.
1655 */
1656 ath_tx_send_ampdu(sc, tid, &bf_head, txctl);
1657 } else {
1658 /*
1659 * Send this frame as regular when ADDBA
1660 * exchange is neither complete nor pending.
1661 */
Sujithc37452b2009-03-09 09:31:57 +05301662 ath_tx_send_ht_normal(sc, txctl->txq,
1663 tid, &bf_head);
Sujithe8324352009-01-16 21:38:42 +05301664 }
1665 } else {
Sujithc37452b2009-03-09 09:31:57 +05301666 ath_tx_send_normal(sc, txctl->txq, &bf_head);
Sujithe8324352009-01-16 21:38:42 +05301667 }
1668
Sujithc37452b2009-03-09 09:31:57 +05301669tx_done:
Sujithe8324352009-01-16 21:38:42 +05301670 spin_unlock_bh(&txctl->txq->axq_lock);
1671}
1672
1673/* Upon failure caller should free skb */
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001674int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb,
Sujithe8324352009-01-16 21:38:42 +05301675 struct ath_tx_control *txctl)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001676{
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001677 struct ath_wiphy *aphy = hw->priv;
1678 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001679 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001680 struct ath_buf *bf;
Sujithe8324352009-01-16 21:38:42 +05301681 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001682
Sujithe8324352009-01-16 21:38:42 +05301683 bf = ath_tx_get_buffer(sc);
1684 if (!bf) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001685 ath_print(common, ATH_DBG_XMIT, "TX buffers are full\n");
Sujithe8324352009-01-16 21:38:42 +05301686 return -1;
1687 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001688
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001689 r = ath_tx_setup_buffer(hw, bf, skb, txctl);
Sujithe8324352009-01-16 21:38:42 +05301690 if (unlikely(r)) {
1691 struct ath_txq *txq = txctl->txq;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001692
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001693 ath_print(common, ATH_DBG_FATAL, "TX mem alloc failure\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001694
Sujithe8324352009-01-16 21:38:42 +05301695 /* upon ath_tx_processq() this TX queue will be resumed, we
1696 * guarantee this will happen by knowing beforehand that
1697 * we will at least have to run TX completionon one buffer
1698 * on the queue */
1699 spin_lock_bh(&txq->axq_lock);
Sujithf7a99e42009-02-17 15:36:33 +05301700 if (sc->tx.txq[txq->axq_qnum].axq_depth > 1) {
Sujithe8324352009-01-16 21:38:42 +05301701 ieee80211_stop_queue(sc->hw,
1702 skb_get_queue_mapping(skb));
1703 txq->stopped = 1;
1704 }
1705 spin_unlock_bh(&txq->axq_lock);
1706
1707 spin_lock_bh(&sc->tx.txbuflock);
1708 list_add_tail(&bf->list, &sc->tx.txbuf);
1709 spin_unlock_bh(&sc->tx.txbuflock);
1710
1711 return r;
1712 }
1713
1714 ath_tx_start_dma(sc, bf, txctl);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001715
1716 return 0;
1717}
1718
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001719void ath_tx_cabq(struct ieee80211_hw *hw, struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001720{
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001721 struct ath_wiphy *aphy = hw->priv;
1722 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001723 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujithe8324352009-01-16 21:38:42 +05301724 int hdrlen, padsize;
1725 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1726 struct ath_tx_control txctl;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001727
Sujithe8324352009-01-16 21:38:42 +05301728 memset(&txctl, 0, sizeof(struct ath_tx_control));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001729
Sujithe8324352009-01-16 21:38:42 +05301730 /*
1731 * As a temporary workaround, assign seq# here; this will likely need
1732 * to be cleaned up to work better with Beacon transmission and virtual
1733 * BSSes.
1734 */
1735 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1736 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1737 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
1738 sc->tx.seq_no += 0x10;
1739 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
1740 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001741 }
1742
Sujithe8324352009-01-16 21:38:42 +05301743 /* Add the padding after the header if this is not already done */
1744 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1745 if (hdrlen & 3) {
1746 padsize = hdrlen % 4;
1747 if (skb_headroom(skb) < padsize) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001748 ath_print(common, ATH_DBG_XMIT,
1749 "TX CABQ padding failed\n");
Sujithe8324352009-01-16 21:38:42 +05301750 dev_kfree_skb_any(skb);
1751 return;
1752 }
1753 skb_push(skb, padsize);
1754 memmove(skb->data, skb->data + padsize, hdrlen);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001755 }
1756
Sujithe8324352009-01-16 21:38:42 +05301757 txctl.txq = sc->beacon.cabq;
1758
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001759 ath_print(common, ATH_DBG_XMIT,
1760 "transmitting CABQ packet, skb: %p\n", skb);
Sujithe8324352009-01-16 21:38:42 +05301761
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001762 if (ath_tx_start(hw, skb, &txctl) != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001763 ath_print(common, ATH_DBG_XMIT, "CABQ TX failed\n");
Sujithe8324352009-01-16 21:38:42 +05301764 goto exit;
1765 }
1766
1767 return;
1768exit:
1769 dev_kfree_skb_any(skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001770}
1771
Sujithe8324352009-01-16 21:38:42 +05301772/*****************/
1773/* TX Completion */
1774/*****************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001775
Sujithe8324352009-01-16 21:38:42 +05301776static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301777 int tx_flags)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001778{
Sujithe8324352009-01-16 21:38:42 +05301779 struct ieee80211_hw *hw = sc->hw;
1780 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1781 struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001782 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujithe8324352009-01-16 21:38:42 +05301783 int hdrlen, padsize;
Jouni Malinenf0ed85c2009-03-03 19:23:31 +02001784 int frame_type = ATH9K_NOT_INTERNAL;
Sujithe8324352009-01-16 21:38:42 +05301785
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001786 ath_print(common, ATH_DBG_XMIT, "TX complete: skb: %p\n", skb);
Sujithe8324352009-01-16 21:38:42 +05301787
Jouni Malinenf0ed85c2009-03-03 19:23:31 +02001788 if (tx_info_priv) {
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001789 hw = tx_info_priv->aphy->hw;
Jouni Malinenf0ed85c2009-03-03 19:23:31 +02001790 frame_type = tx_info_priv->frame_type;
1791 }
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001792
Sujithe8324352009-01-16 21:38:42 +05301793 if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK ||
1794 tx_info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
1795 kfree(tx_info_priv);
1796 tx_info->rate_driver_data[0] = NULL;
1797 }
1798
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301799 if (tx_flags & ATH_TX_BAR)
Sujithe8324352009-01-16 21:38:42 +05301800 tx_info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
Sujithe8324352009-01-16 21:38:42 +05301801
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301802 if (!(tx_flags & (ATH_TX_ERROR | ATH_TX_XRETRY))) {
Sujithe8324352009-01-16 21:38:42 +05301803 /* Frame was ACKed */
1804 tx_info->flags |= IEEE80211_TX_STAT_ACK;
1805 }
1806
Sujithe8324352009-01-16 21:38:42 +05301807 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1808 padsize = hdrlen & 3;
1809 if (padsize && hdrlen >= 24) {
1810 /*
1811 * Remove MAC header padding before giving the frame back to
1812 * mac80211.
1813 */
1814 memmove(skb->data + padsize, skb->data, hdrlen);
1815 skb_pull(skb, padsize);
1816 }
1817
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03001818 if (sc->sc_flags & SC_OP_WAIT_FOR_TX_ACK) {
1819 sc->sc_flags &= ~SC_OP_WAIT_FOR_TX_ACK;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001820 ath_print(common, ATH_DBG_PS,
1821 "Going back to sleep after having "
1822 "received TX status (0x%x)\n",
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03001823 sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
1824 SC_OP_WAIT_FOR_CAB |
1825 SC_OP_WAIT_FOR_PSPOLL_DATA |
1826 SC_OP_WAIT_FOR_TX_ACK));
1827 }
1828
Jouni Malinenf0ed85c2009-03-03 19:23:31 +02001829 if (frame_type == ATH9K_NOT_INTERNAL)
1830 ieee80211_tx_status(hw, skb);
1831 else
1832 ath9k_tx_status(hw, skb);
Sujithe8324352009-01-16 21:38:42 +05301833}
1834
1835static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
Sujithfec247c2009-07-27 12:08:16 +05301836 struct ath_txq *txq,
Sujithe8324352009-01-16 21:38:42 +05301837 struct list_head *bf_q,
1838 int txok, int sendbar)
1839{
1840 struct sk_buff *skb = bf->bf_mpdu;
Sujithe8324352009-01-16 21:38:42 +05301841 unsigned long flags;
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301842 int tx_flags = 0;
Sujithe8324352009-01-16 21:38:42 +05301843
Sujithe8324352009-01-16 21:38:42 +05301844 if (sendbar)
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301845 tx_flags = ATH_TX_BAR;
Sujithe8324352009-01-16 21:38:42 +05301846
1847 if (!txok) {
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301848 tx_flags |= ATH_TX_ERROR;
Sujithe8324352009-01-16 21:38:42 +05301849
1850 if (bf_isxretried(bf))
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301851 tx_flags |= ATH_TX_XRETRY;
Sujithe8324352009-01-16 21:38:42 +05301852 }
1853
1854 dma_unmap_single(sc->dev, bf->bf_dmacontext, skb->len, DMA_TO_DEVICE);
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301855 ath_tx_complete(sc, skb, tx_flags);
Sujithfec247c2009-07-27 12:08:16 +05301856 ath_debug_stat_tx(sc, txq, bf);
Sujithe8324352009-01-16 21:38:42 +05301857
1858 /*
1859 * Return the list of ath_buf of this mpdu to free queue
1860 */
1861 spin_lock_irqsave(&sc->tx.txbuflock, flags);
1862 list_splice_tail_init(bf_q, &sc->tx.txbuf);
1863 spin_unlock_irqrestore(&sc->tx.txbuflock, flags);
1864}
1865
1866static int ath_tx_num_badfrms(struct ath_softc *sc, struct ath_buf *bf,
1867 int txok)
1868{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001869 struct ath_buf *bf_last = bf->bf_lastbf;
1870 struct ath_desc *ds = bf_last->bf_desc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001871 u16 seq_st = 0;
1872 u32 ba[WME_BA_BMP_SIZE >> 5];
Sujithe8324352009-01-16 21:38:42 +05301873 int ba_index;
1874 int nbad = 0;
1875 int isaggr = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001876
Sujithe8324352009-01-16 21:38:42 +05301877 if (ds->ds_txstat.ts_flags == ATH9K_TX_SW_ABORTED)
1878 return 0;
Sujith528f0c62008-10-29 10:14:26 +05301879
Sujithcd3d39a2008-08-11 14:03:34 +05301880 isaggr = bf_isaggr(bf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001881 if (isaggr) {
Sujithe8324352009-01-16 21:38:42 +05301882 seq_st = ATH_DS_BA_SEQ(ds);
1883 memcpy(ba, ATH_DS_BA_BITMAP(ds), WME_BA_BMP_SIZE >> 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001884 }
1885
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001886 while (bf) {
Sujithe8324352009-01-16 21:38:42 +05301887 ba_index = ATH_BA_INDEX(seq_st, bf->bf_seqno);
1888 if (!txok || (isaggr && !ATH_BA_ISSET(ba, ba_index)))
1889 nbad++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001890
Sujithe8324352009-01-16 21:38:42 +05301891 bf = bf->bf_next;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001892 }
1893
Sujithe8324352009-01-16 21:38:42 +05301894 return nbad;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001895}
1896
Sujith95e4acb2009-03-13 08:56:09 +05301897static void ath_tx_rc_status(struct ath_buf *bf, struct ath_desc *ds,
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05301898 int nbad, int txok, bool update_rc)
Sujithc4288392008-11-18 09:09:30 +05301899{
Sujitha22be222009-03-30 15:28:36 +05301900 struct sk_buff *skb = bf->bf_mpdu;
Sujith254ad0f2009-02-04 08:10:19 +05301901 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Sujithc4288392008-11-18 09:09:30 +05301902 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
1903 struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info);
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05301904 struct ieee80211_hw *hw = tx_info_priv->aphy->hw;
1905 u8 i, tx_rateindex;
Sujithc4288392008-11-18 09:09:30 +05301906
Sujith95e4acb2009-03-13 08:56:09 +05301907 if (txok)
1908 tx_info->status.ack_signal = ds->ds_txstat.ts_rssi;
1909
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05301910 tx_rateindex = ds->ds_txstat.ts_rateindex;
1911 WARN_ON(tx_rateindex >= hw->max_rates);
1912
1913 tx_info_priv->update_rc = update_rc;
Sujithc4288392008-11-18 09:09:30 +05301914 if (ds->ds_txstat.ts_status & ATH9K_TXERR_FILT)
1915 tx_info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1916
1917 if ((ds->ds_txstat.ts_status & ATH9K_TXERR_FILT) == 0 &&
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05301918 (bf->bf_flags & ATH9K_TXDESC_NOACK) == 0 && update_rc) {
Sujith254ad0f2009-02-04 08:10:19 +05301919 if (ieee80211_is_data(hdr->frame_control)) {
Sujithc4288392008-11-18 09:09:30 +05301920 memcpy(&tx_info_priv->tx, &ds->ds_txstat,
1921 sizeof(tx_info_priv->tx));
1922 tx_info_priv->n_frames = bf->bf_nframes;
1923 tx_info_priv->n_bad_frames = nbad;
1924 }
1925 }
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05301926
1927 for (i = tx_rateindex + 1; i < hw->max_rates; i++)
1928 tx_info->status.rates[i].count = 0;
1929
1930 tx_info->status.rates[tx_rateindex].count = bf->bf_retries + 1;
Sujithc4288392008-11-18 09:09:30 +05301931}
1932
Sujith059d8062009-01-16 21:38:49 +05301933static void ath_wake_mac80211_queue(struct ath_softc *sc, struct ath_txq *txq)
1934{
1935 int qnum;
1936
1937 spin_lock_bh(&txq->axq_lock);
1938 if (txq->stopped &&
Sujithf7a99e42009-02-17 15:36:33 +05301939 sc->tx.txq[txq->axq_qnum].axq_depth <= (ATH_TXBUF - 20)) {
Sujith059d8062009-01-16 21:38:49 +05301940 qnum = ath_get_mac80211_qnum(txq->axq_qnum, sc);
1941 if (qnum != -1) {
1942 ieee80211_wake_queue(sc->hw, qnum);
1943 txq->stopped = 0;
1944 }
1945 }
1946 spin_unlock_bh(&txq->axq_lock);
1947}
1948
Sujithc4288392008-11-18 09:09:30 +05301949static void ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001950{
Sujithcbe61d82009-02-09 13:27:12 +05301951 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001952 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001953 struct ath_buf *bf, *lastbf, *bf_held = NULL;
1954 struct list_head bf_head;
Sujithc4288392008-11-18 09:09:30 +05301955 struct ath_desc *ds;
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +05301956 int txok;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001957 int status;
1958
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001959 ath_print(common, ATH_DBG_QUEUE, "tx queue %d (%x), link %p\n",
1960 txq->axq_qnum, ath9k_hw_gettxbuf(sc->sc_ah, txq->axq_qnum),
1961 txq->axq_link);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001962
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001963 for (;;) {
1964 spin_lock_bh(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001965 if (list_empty(&txq->axq_q)) {
1966 txq->axq_link = NULL;
1967 txq->axq_linkbuf = NULL;
1968 spin_unlock_bh(&txq->axq_lock);
1969 break;
1970 }
1971 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
1972
1973 /*
1974 * There is a race condition that a BH gets scheduled
1975 * after sw writes TxE and before hw re-load the last
1976 * descriptor to get the newly chained one.
1977 * Software must keep the last DONE descriptor as a
1978 * holding descriptor - software does so by marking
1979 * it with the STALE flag.
1980 */
1981 bf_held = NULL;
Sujitha119cc42009-03-30 15:28:38 +05301982 if (bf->bf_stale) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001983 bf_held = bf;
1984 if (list_is_last(&bf_held->list, &txq->axq_q)) {
Sujith6ef9b132009-01-16 21:38:51 +05301985 spin_unlock_bh(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001986 break;
1987 } else {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001988 bf = list_entry(bf_held->list.next,
Sujith6ef9b132009-01-16 21:38:51 +05301989 struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001990 }
1991 }
1992
1993 lastbf = bf->bf_lastbf;
Sujithe8324352009-01-16 21:38:42 +05301994 ds = lastbf->bf_desc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001995
1996 status = ath9k_hw_txprocdesc(ah, ds);
1997 if (status == -EINPROGRESS) {
1998 spin_unlock_bh(&txq->axq_lock);
1999 break;
2000 }
2001 if (bf->bf_desc == txq->axq_lastdsWithCTS)
2002 txq->axq_lastdsWithCTS = NULL;
2003 if (ds == txq->axq_gatingds)
2004 txq->axq_gatingds = NULL;
2005
2006 /*
2007 * Remove ath_buf's of the same transmit unit from txq,
2008 * however leave the last descriptor back as the holding
2009 * descriptor for hw.
2010 */
Sujitha119cc42009-03-30 15:28:38 +05302011 lastbf->bf_stale = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002012 INIT_LIST_HEAD(&bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002013 if (!list_is_singular(&lastbf->list))
2014 list_cut_position(&bf_head,
2015 &txq->axq_q, lastbf->list.prev);
2016
2017 txq->axq_depth--;
Sujithcd3d39a2008-08-11 14:03:34 +05302018 if (bf_isaggr(bf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002019 txq->axq_aggr_depth--;
2020
2021 txok = (ds->ds_txstat.ts_status == 0);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002022 txq->axq_tx_inprogress = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002023 spin_unlock_bh(&txq->axq_lock);
2024
2025 if (bf_held) {
Sujithb77f4832008-12-07 21:44:03 +05302026 spin_lock_bh(&sc->tx.txbuflock);
Sujith6ef9b132009-01-16 21:38:51 +05302027 list_move_tail(&bf_held->list, &sc->tx.txbuf);
Sujithb77f4832008-12-07 21:44:03 +05302028 spin_unlock_bh(&sc->tx.txbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002029 }
2030
Sujithcd3d39a2008-08-11 14:03:34 +05302031 if (!bf_isampdu(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002032 /*
2033 * This frame is sent out as a single frame.
2034 * Use hardware retry status for this frame.
2035 */
2036 bf->bf_retries = ds->ds_txstat.ts_longretry;
2037 if (ds->ds_txstat.ts_status & ATH9K_TXERR_XRETRY)
Sujithcd3d39a2008-08-11 14:03:34 +05302038 bf->bf_state.bf_type |= BUF_XRETRY;
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05302039 ath_tx_rc_status(bf, ds, 0, txok, true);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002040 }
Johannes Berge6a98542008-10-21 12:40:02 +02002041
Sujithcd3d39a2008-08-11 14:03:34 +05302042 if (bf_isampdu(bf))
Sujithd43f30152009-01-16 21:38:53 +05302043 ath_tx_complete_aggr(sc, txq, bf, &bf_head, txok);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002044 else
Sujithfec247c2009-07-27 12:08:16 +05302045 ath_tx_complete_buf(sc, bf, txq, &bf_head, txok, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002046
Sujith059d8062009-01-16 21:38:49 +05302047 ath_wake_mac80211_queue(sc, txq);
2048
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002049 spin_lock_bh(&txq->axq_lock);
Sujith672840a2008-08-11 14:05:08 +05302050 if (sc->sc_flags & SC_OP_TXAGGR)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002051 ath_txq_schedule(sc, txq);
2052 spin_unlock_bh(&txq->axq_lock);
2053 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002054}
2055
Sujith305fe472009-07-23 15:32:29 +05302056static void ath_tx_complete_poll_work(struct work_struct *work)
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002057{
2058 struct ath_softc *sc = container_of(work, struct ath_softc,
2059 tx_complete_work.work);
2060 struct ath_txq *txq;
2061 int i;
2062 bool needreset = false;
2063
2064 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
2065 if (ATH_TXQ_SETUP(sc, i)) {
2066 txq = &sc->tx.txq[i];
2067 spin_lock_bh(&txq->axq_lock);
2068 if (txq->axq_depth) {
2069 if (txq->axq_tx_inprogress) {
2070 needreset = true;
2071 spin_unlock_bh(&txq->axq_lock);
2072 break;
2073 } else {
2074 txq->axq_tx_inprogress = true;
2075 }
2076 }
2077 spin_unlock_bh(&txq->axq_lock);
2078 }
2079
2080 if (needreset) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002081 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_RESET,
2082 "tx hung, resetting the chip\n");
Sujith332c5562009-10-09 09:51:28 +05302083 ath9k_ps_wakeup(sc);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002084 ath_reset(sc, false);
Sujith332c5562009-10-09 09:51:28 +05302085 ath9k_ps_restore(sc);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002086 }
2087
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002088 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work,
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002089 msecs_to_jiffies(ATH_TX_COMPLETE_POLL_INT));
2090}
2091
2092
Sujithe8324352009-01-16 21:38:42 +05302093
2094void ath_tx_tasklet(struct ath_softc *sc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002095{
Sujithe8324352009-01-16 21:38:42 +05302096 int i;
2097 u32 qcumask = ((1 << ATH9K_NUM_TX_QUEUES) - 1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002098
Sujithe8324352009-01-16 21:38:42 +05302099 ath9k_hw_gettxintrtxqs(sc->sc_ah, &qcumask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002100
2101 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
Sujithe8324352009-01-16 21:38:42 +05302102 if (ATH_TXQ_SETUP(sc, i) && (qcumask & (1 << i)))
2103 ath_tx_processq(sc, &sc->tx.txq[i]);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002104 }
2105}
2106
Sujithe8324352009-01-16 21:38:42 +05302107/*****************/
2108/* Init, Cleanup */
2109/*****************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002110
2111int ath_tx_init(struct ath_softc *sc, int nbufs)
2112{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002113 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002114 int error = 0;
2115
Sujith797fe5cb2009-03-30 15:28:45 +05302116 spin_lock_init(&sc->tx.txbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002117
Sujith797fe5cb2009-03-30 15:28:45 +05302118 error = ath_descdma_setup(sc, &sc->tx.txdma, &sc->tx.txbuf,
2119 "tx", nbufs, 1);
2120 if (error != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002121 ath_print(common, ATH_DBG_FATAL,
2122 "Failed to allocate tx descriptors: %d\n", error);
Sujith797fe5cb2009-03-30 15:28:45 +05302123 goto err;
2124 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002125
Sujith797fe5cb2009-03-30 15:28:45 +05302126 error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf,
2127 "beacon", ATH_BCBUF, 1);
2128 if (error != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002129 ath_print(common, ATH_DBG_FATAL,
2130 "Failed to allocate beacon descriptors: %d\n", error);
Sujith797fe5cb2009-03-30 15:28:45 +05302131 goto err;
2132 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002133
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002134 INIT_DELAYED_WORK(&sc->tx_complete_work, ath_tx_complete_poll_work);
2135
Sujith797fe5cb2009-03-30 15:28:45 +05302136err:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002137 if (error != 0)
2138 ath_tx_cleanup(sc);
2139
2140 return error;
2141}
2142
Sujith797fe5cb2009-03-30 15:28:45 +05302143void ath_tx_cleanup(struct ath_softc *sc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002144{
Sujithb77f4832008-12-07 21:44:03 +05302145 if (sc->beacon.bdma.dd_desc_len != 0)
2146 ath_descdma_cleanup(sc, &sc->beacon.bdma, &sc->beacon.bbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002147
Sujithb77f4832008-12-07 21:44:03 +05302148 if (sc->tx.txdma.dd_desc_len != 0)
2149 ath_descdma_cleanup(sc, &sc->tx.txdma, &sc->tx.txbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002150}
2151
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002152void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an)
2153{
Sujithc5170162008-10-29 10:13:59 +05302154 struct ath_atx_tid *tid;
2155 struct ath_atx_ac *ac;
2156 int tidno, acno;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002157
Sujith8ee5afb2008-12-07 21:43:36 +05302158 for (tidno = 0, tid = &an->tid[tidno];
Sujithc5170162008-10-29 10:13:59 +05302159 tidno < WME_NUM_TID;
2160 tidno++, tid++) {
2161 tid->an = an;
2162 tid->tidno = tidno;
2163 tid->seq_start = tid->seq_next = 0;
2164 tid->baw_size = WME_MAX_BA;
2165 tid->baw_head = tid->baw_tail = 0;
2166 tid->sched = false;
Sujithe8324352009-01-16 21:38:42 +05302167 tid->paused = false;
Sujitha37c2c72008-10-29 10:15:40 +05302168 tid->state &= ~AGGR_CLEANUP;
Sujithc5170162008-10-29 10:13:59 +05302169 INIT_LIST_HEAD(&tid->buf_q);
Sujithc5170162008-10-29 10:13:59 +05302170 acno = TID_TO_WME_AC(tidno);
Sujith8ee5afb2008-12-07 21:43:36 +05302171 tid->ac = &an->ac[acno];
Sujitha37c2c72008-10-29 10:15:40 +05302172 tid->state &= ~AGGR_ADDBA_COMPLETE;
2173 tid->state &= ~AGGR_ADDBA_PROGRESS;
Sujithc5170162008-10-29 10:13:59 +05302174 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002175
Sujith8ee5afb2008-12-07 21:43:36 +05302176 for (acno = 0, ac = &an->ac[acno];
Sujithc5170162008-10-29 10:13:59 +05302177 acno < WME_NUM_AC; acno++, ac++) {
2178 ac->sched = false;
2179 INIT_LIST_HEAD(&ac->tid_q);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002180
Sujithc5170162008-10-29 10:13:59 +05302181 switch (acno) {
2182 case WME_AC_BE:
2183 ac->qnum = ath_tx_get_qnum(sc,
2184 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
2185 break;
2186 case WME_AC_BK:
2187 ac->qnum = ath_tx_get_qnum(sc,
2188 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BK);
2189 break;
2190 case WME_AC_VI:
2191 ac->qnum = ath_tx_get_qnum(sc,
2192 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VI);
2193 break;
2194 case WME_AC_VO:
2195 ac->qnum = ath_tx_get_qnum(sc,
2196 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VO);
2197 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002198 }
2199 }
2200}
2201
Sujithb5aa9bf2008-10-29 10:13:31 +05302202void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002203{
2204 int i;
2205 struct ath_atx_ac *ac, *ac_tmp;
2206 struct ath_atx_tid *tid, *tid_tmp;
2207 struct ath_txq *txq;
Sujithe8324352009-01-16 21:38:42 +05302208
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002209 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2210 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05302211 txq = &sc->tx.txq[i];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002212
Sujithb5aa9bf2008-10-29 10:13:31 +05302213 spin_lock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002214
2215 list_for_each_entry_safe(ac,
2216 ac_tmp, &txq->axq_acq, list) {
2217 tid = list_first_entry(&ac->tid_q,
2218 struct ath_atx_tid, list);
2219 if (tid && tid->an != an)
2220 continue;
2221 list_del(&ac->list);
2222 ac->sched = false;
2223
2224 list_for_each_entry_safe(tid,
2225 tid_tmp, &ac->tid_q, list) {
2226 list_del(&tid->list);
2227 tid->sched = false;
Sujithb5aa9bf2008-10-29 10:13:31 +05302228 ath_tid_drain(sc, txq, tid);
Sujitha37c2c72008-10-29 10:15:40 +05302229 tid->state &= ~AGGR_ADDBA_COMPLETE;
Sujitha37c2c72008-10-29 10:15:40 +05302230 tid->state &= ~AGGR_CLEANUP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002231 }
2232 }
2233
Sujithb5aa9bf2008-10-29 10:13:31 +05302234 spin_unlock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002235 }
2236 }
2237}