blob: 745d91995d78d91e4c59e11545bf7a09a66446e2 [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
Felix Fietkau827e69b2009-11-15 23:09:25 +0100254 tbf->aphy = bf->aphy;
Sujithd43f30152009-01-16 21:38:53 +0530255 tbf->bf_mpdu = bf->bf_mpdu;
256 tbf->bf_buf_addr = bf->bf_buf_addr;
257 *(tbf->bf_desc) = *(bf->bf_desc);
258 tbf->bf_state = bf->bf_state;
259 tbf->bf_dmacontext = bf->bf_dmacontext;
260
261 return tbf;
262}
263
264static void ath_tx_complete_aggr(struct ath_softc *sc, struct ath_txq *txq,
265 struct ath_buf *bf, struct list_head *bf_q,
266 int txok)
Sujithe8324352009-01-16 21:38:42 +0530267{
268 struct ath_node *an = NULL;
269 struct sk_buff *skb;
Sujith1286ec62009-01-27 13:30:37 +0530270 struct ieee80211_sta *sta;
Luis R. Rodriguez76d5a9e2009-11-02 16:08:34 -0800271 struct ieee80211_hw *hw;
Sujith1286ec62009-01-27 13:30:37 +0530272 struct ieee80211_hdr *hdr;
Luis R. Rodriguez76d5a9e2009-11-02 16:08:34 -0800273 struct ieee80211_tx_info *tx_info;
Sujithe8324352009-01-16 21:38:42 +0530274 struct ath_atx_tid *tid = NULL;
Sujithd43f30152009-01-16 21:38:53 +0530275 struct ath_buf *bf_next, *bf_last = bf->bf_lastbf;
Sujithe8324352009-01-16 21:38:42 +0530276 struct ath_desc *ds = bf_last->bf_desc;
Sujithe8324352009-01-16 21:38:42 +0530277 struct list_head bf_head, bf_pending;
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530278 u16 seq_st = 0, acked_cnt = 0, txfail_cnt = 0;
Sujithe8324352009-01-16 21:38:42 +0530279 u32 ba[WME_BA_BMP_SIZE >> 5];
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530280 int isaggr, txfail, txpending, sendbar = 0, needreset = 0, nbad = 0;
281 bool rc_update = true;
Sujithe8324352009-01-16 21:38:42 +0530282
Sujitha22be222009-03-30 15:28:36 +0530283 skb = bf->bf_mpdu;
Sujith1286ec62009-01-27 13:30:37 +0530284 hdr = (struct ieee80211_hdr *)skb->data;
Sujithe8324352009-01-16 21:38:42 +0530285
Luis R. Rodriguez76d5a9e2009-11-02 16:08:34 -0800286 tx_info = IEEE80211_SKB_CB(skb);
Felix Fietkau827e69b2009-11-15 23:09:25 +0100287 hw = bf->aphy->hw;
Luis R. Rodriguez76d5a9e2009-11-02 16:08:34 -0800288
Sujith1286ec62009-01-27 13:30:37 +0530289 rcu_read_lock();
290
Johannes Berg5ed176e2009-11-04 14:42:28 +0100291 /* XXX: use ieee80211_find_sta! */
Luis R. Rodriguez76d5a9e2009-11-02 16:08:34 -0800292 sta = ieee80211_find_sta_by_hw(hw, hdr->addr1);
Sujith1286ec62009-01-27 13:30:37 +0530293 if (!sta) {
294 rcu_read_unlock();
295 return;
Sujithe8324352009-01-16 21:38:42 +0530296 }
297
Sujith1286ec62009-01-27 13:30:37 +0530298 an = (struct ath_node *)sta->drv_priv;
299 tid = ATH_AN_2_TID(an, bf->bf_tidno);
300
Sujithe8324352009-01-16 21:38:42 +0530301 isaggr = bf_isaggr(bf);
Sujithd43f30152009-01-16 21:38:53 +0530302 memset(ba, 0, WME_BA_BMP_SIZE >> 3);
Sujithe8324352009-01-16 21:38:42 +0530303
Sujithd43f30152009-01-16 21:38:53 +0530304 if (isaggr && txok) {
305 if (ATH_DS_TX_BA(ds)) {
306 seq_st = ATH_DS_BA_SEQ(ds);
307 memcpy(ba, ATH_DS_BA_BITMAP(ds),
308 WME_BA_BMP_SIZE >> 3);
Sujithe8324352009-01-16 21:38:42 +0530309 } else {
Sujithd43f30152009-01-16 21:38:53 +0530310 /*
311 * AR5416 can become deaf/mute when BA
312 * issue happens. Chip needs to be reset.
313 * But AP code may have sychronization issues
314 * when perform internal reset in this routine.
315 * Only enable reset in STA mode for now.
316 */
Sujith2660b812009-02-09 13:27:26 +0530317 if (sc->sc_ah->opmode == NL80211_IFTYPE_STATION)
Sujithd43f30152009-01-16 21:38:53 +0530318 needreset = 1;
Sujithe8324352009-01-16 21:38:42 +0530319 }
320 }
321
322 INIT_LIST_HEAD(&bf_pending);
323 INIT_LIST_HEAD(&bf_head);
324
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530325 nbad = ath_tx_num_badfrms(sc, bf, txok);
Sujithe8324352009-01-16 21:38:42 +0530326 while (bf) {
327 txfail = txpending = 0;
328 bf_next = bf->bf_next;
329
330 if (ATH_BA_ISSET(ba, ATH_BA_INDEX(seq_st, bf->bf_seqno))) {
331 /* transmit completion, subframe is
332 * acked by block ack */
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530333 acked_cnt++;
Sujithe8324352009-01-16 21:38:42 +0530334 } else if (!isaggr && txok) {
335 /* transmit completion */
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530336 acked_cnt++;
Sujithe8324352009-01-16 21:38:42 +0530337 } else {
Sujithe8324352009-01-16 21:38:42 +0530338 if (!(tid->state & AGGR_CLEANUP) &&
339 ds->ds_txstat.ts_flags != ATH9K_TX_SW_ABORTED) {
340 if (bf->bf_retries < ATH_MAX_SW_RETRIES) {
Sujithfec247c2009-07-27 12:08:16 +0530341 ath_tx_set_retry(sc, txq, bf);
Sujithe8324352009-01-16 21:38:42 +0530342 txpending = 1;
343 } else {
344 bf->bf_state.bf_type |= BUF_XRETRY;
345 txfail = 1;
346 sendbar = 1;
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +0530347 txfail_cnt++;
Sujithe8324352009-01-16 21:38:42 +0530348 }
349 } else {
350 /*
351 * cleanup in progress, just fail
352 * the un-acked sub-frames
353 */
354 txfail = 1;
355 }
356 }
357
358 if (bf_next == NULL) {
Vasanthakumar Thiagarajancbfe89c2009-06-24 18:58:47 +0530359 /*
360 * Make sure the last desc is reclaimed if it
361 * not a holding desc.
362 */
363 if (!bf_last->bf_stale)
364 list_move_tail(&bf->list, &bf_head);
365 else
366 INIT_LIST_HEAD(&bf_head);
Sujithe8324352009-01-16 21:38:42 +0530367 } else {
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -0700368 BUG_ON(list_empty(bf_q));
Sujithd43f30152009-01-16 21:38:53 +0530369 list_move_tail(&bf->list, &bf_head);
Sujithe8324352009-01-16 21:38:42 +0530370 }
371
372 if (!txpending) {
373 /*
374 * complete the acked-ones/xretried ones; update
375 * block-ack window
376 */
377 spin_lock_bh(&txq->axq_lock);
378 ath_tx_update_baw(sc, tid, bf->bf_seqno);
379 spin_unlock_bh(&txq->axq_lock);
380
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +0530381 if (rc_update && (acked_cnt == 1 || txfail_cnt == 1)) {
382 ath_tx_rc_status(bf, ds, nbad, txok, true);
383 rc_update = false;
384 } else {
385 ath_tx_rc_status(bf, ds, nbad, txok, false);
386 }
387
Sujithfec247c2009-07-27 12:08:16 +0530388 ath_tx_complete_buf(sc, bf, txq, &bf_head, !txfail, sendbar);
Sujithe8324352009-01-16 21:38:42 +0530389 } else {
Sujithd43f30152009-01-16 21:38:53 +0530390 /* retry the un-acked ones */
Sujitha119cc42009-03-30 15:28:38 +0530391 if (bf->bf_next == NULL && bf_last->bf_stale) {
Sujithe8324352009-01-16 21:38:42 +0530392 struct ath_buf *tbf;
393
Sujithd43f30152009-01-16 21:38:53 +0530394 tbf = ath_clone_txbuf(sc, bf_last);
Vasanthakumar Thiagarajanc41d92d2009-07-14 20:17:11 -0400395 /*
396 * Update tx baw and complete the frame with
397 * failed status if we run out of tx buf
398 */
399 if (!tbf) {
400 spin_lock_bh(&txq->axq_lock);
401 ath_tx_update_baw(sc, tid,
402 bf->bf_seqno);
403 spin_unlock_bh(&txq->axq_lock);
404
405 bf->bf_state.bf_type |= BUF_XRETRY;
406 ath_tx_rc_status(bf, ds, nbad,
407 0, false);
Sujithfec247c2009-07-27 12:08:16 +0530408 ath_tx_complete_buf(sc, bf, txq,
409 &bf_head, 0, 0);
Vasanthakumar Thiagarajan8a460972009-06-10 17:50:09 +0530410 break;
Vasanthakumar Thiagarajanc41d92d2009-07-14 20:17:11 -0400411 }
412
Sujithd43f30152009-01-16 21:38:53 +0530413 ath9k_hw_cleartxdesc(sc->sc_ah, tbf->bf_desc);
Sujithe8324352009-01-16 21:38:42 +0530414 list_add_tail(&tbf->list, &bf_head);
415 } else {
416 /*
417 * Clear descriptor status words for
418 * software retry
419 */
Sujithd43f30152009-01-16 21:38:53 +0530420 ath9k_hw_cleartxdesc(sc->sc_ah, bf->bf_desc);
Sujithe8324352009-01-16 21:38:42 +0530421 }
422
423 /*
424 * Put this buffer to the temporary pending
425 * queue to retain ordering
426 */
427 list_splice_tail_init(&bf_head, &bf_pending);
428 }
429
430 bf = bf_next;
431 }
432
433 if (tid->state & AGGR_CLEANUP) {
Sujithe8324352009-01-16 21:38:42 +0530434 if (tid->baw_head == tid->baw_tail) {
435 tid->state &= ~AGGR_ADDBA_COMPLETE;
Sujithe8324352009-01-16 21:38:42 +0530436 tid->state &= ~AGGR_CLEANUP;
437
438 /* send buffered frames as singles */
439 ath_tx_flush_tid(sc, tid);
Sujithd43f30152009-01-16 21:38:53 +0530440 }
Sujith1286ec62009-01-27 13:30:37 +0530441 rcu_read_unlock();
Sujithe8324352009-01-16 21:38:42 +0530442 return;
443 }
444
Sujithd43f30152009-01-16 21:38:53 +0530445 /* prepend un-acked frames to the beginning of the pending frame queue */
Sujithe8324352009-01-16 21:38:42 +0530446 if (!list_empty(&bf_pending)) {
447 spin_lock_bh(&txq->axq_lock);
448 list_splice(&bf_pending, &tid->buf_q);
449 ath_tx_queue_tid(txq, tid);
450 spin_unlock_bh(&txq->axq_lock);
451 }
452
Sujith1286ec62009-01-27 13:30:37 +0530453 rcu_read_unlock();
454
Sujithe8324352009-01-16 21:38:42 +0530455 if (needreset)
456 ath_reset(sc, false);
Sujithe8324352009-01-16 21:38:42 +0530457}
458
459static u32 ath_lookup_rate(struct ath_softc *sc, struct ath_buf *bf,
460 struct ath_atx_tid *tid)
461{
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -0400462 const struct ath_rate_table *rate_table = sc->cur_rate_table;
Sujithe8324352009-01-16 21:38:42 +0530463 struct sk_buff *skb;
464 struct ieee80211_tx_info *tx_info;
465 struct ieee80211_tx_rate *rates;
Sujithd43f30152009-01-16 21:38:53 +0530466 u32 max_4ms_framelen, frmlen;
Sujith4ef70842009-07-23 15:32:41 +0530467 u16 aggr_limit, legacy = 0;
Sujithe8324352009-01-16 21:38:42 +0530468 int i;
469
Sujitha22be222009-03-30 15:28:36 +0530470 skb = bf->bf_mpdu;
Sujithe8324352009-01-16 21:38:42 +0530471 tx_info = IEEE80211_SKB_CB(skb);
472 rates = tx_info->control.rates;
Sujithe8324352009-01-16 21:38:42 +0530473
474 /*
475 * Find the lowest frame length among the rate series that will have a
476 * 4ms transmit duration.
477 * TODO - TXOP limit needs to be considered.
478 */
479 max_4ms_framelen = ATH_AMPDU_LIMIT_MAX;
480
481 for (i = 0; i < 4; i++) {
482 if (rates[i].count) {
483 if (!WLAN_RC_PHY_HT(rate_table->info[rates[i].idx].phy)) {
484 legacy = 1;
485 break;
486 }
487
Sujithd43f30152009-01-16 21:38:53 +0530488 frmlen = rate_table->info[rates[i].idx].max_4ms_framelen;
489 max_4ms_framelen = min(max_4ms_framelen, frmlen);
Sujithe8324352009-01-16 21:38:42 +0530490 }
491 }
492
493 /*
494 * limit aggregate size by the minimum rate if rate selected is
495 * not a probe rate, if rate selected is a probe rate then
496 * avoid aggregation of this packet.
497 */
498 if (tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE || legacy)
499 return 0;
500
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530501 if (sc->sc_flags & SC_OP_BT_PRIORITY_DETECTED)
502 aggr_limit = min((max_4ms_framelen * 3) / 8,
503 (u32)ATH_AMPDU_LIMIT_MAX);
504 else
505 aggr_limit = min(max_4ms_framelen,
506 (u32)ATH_AMPDU_LIMIT_MAX);
Sujithe8324352009-01-16 21:38:42 +0530507
508 /*
509 * h/w can accept aggregates upto 16 bit lengths (65535).
510 * The IE, however can hold upto 65536, which shows up here
511 * as zero. Ignore 65536 since we are constrained by hw.
512 */
Sujith4ef70842009-07-23 15:32:41 +0530513 if (tid->an->maxampdu)
514 aggr_limit = min(aggr_limit, tid->an->maxampdu);
Sujithe8324352009-01-16 21:38:42 +0530515
516 return aggr_limit;
517}
518
519/*
Sujithd43f30152009-01-16 21:38:53 +0530520 * Returns the number of delimiters to be added to
Sujithe8324352009-01-16 21:38:42 +0530521 * meet the minimum required mpdudensity.
Sujithe8324352009-01-16 21:38:42 +0530522 */
523static int ath_compute_num_delims(struct ath_softc *sc, struct ath_atx_tid *tid,
524 struct ath_buf *bf, u16 frmlen)
525{
Luis R. Rodriguez4f0fc7c2009-05-06 02:20:00 -0400526 const struct ath_rate_table *rt = sc->cur_rate_table;
Sujithe8324352009-01-16 21:38:42 +0530527 struct sk_buff *skb = bf->bf_mpdu;
528 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Sujith4ef70842009-07-23 15:32:41 +0530529 u32 nsymbits, nsymbols;
Sujithe8324352009-01-16 21:38:42 +0530530 u16 minlen;
531 u8 rc, flags, rix;
532 int width, half_gi, ndelim, mindelim;
533
534 /* Select standard number of delimiters based on frame length alone */
535 ndelim = ATH_AGGR_GET_NDELIM(frmlen);
536
537 /*
538 * If encryption enabled, hardware requires some more padding between
539 * subframes.
540 * TODO - this could be improved to be dependent on the rate.
541 * The hardware can keep up at lower rates, but not higher rates
542 */
543 if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR)
544 ndelim += ATH_AGGR_ENCRYPTDELIM;
545
546 /*
547 * Convert desired mpdu density from microeconds to bytes based
548 * on highest rate in rate series (i.e. first rate) to determine
549 * required minimum length for subframe. Take into account
550 * whether high rate is 20 or 40Mhz and half or full GI.
Sujith4ef70842009-07-23 15:32:41 +0530551 *
Sujithe8324352009-01-16 21:38:42 +0530552 * If there is no mpdu density restriction, no further calculation
553 * is needed.
554 */
Sujith4ef70842009-07-23 15:32:41 +0530555
556 if (tid->an->mpdudensity == 0)
Sujithe8324352009-01-16 21:38:42 +0530557 return ndelim;
558
559 rix = tx_info->control.rates[0].idx;
560 flags = tx_info->control.rates[0].flags;
561 rc = rt->info[rix].ratecode;
562 width = (flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ? 1 : 0;
563 half_gi = (flags & IEEE80211_TX_RC_SHORT_GI) ? 1 : 0;
564
565 if (half_gi)
Sujith4ef70842009-07-23 15:32:41 +0530566 nsymbols = NUM_SYMBOLS_PER_USEC_HALFGI(tid->an->mpdudensity);
Sujithe8324352009-01-16 21:38:42 +0530567 else
Sujith4ef70842009-07-23 15:32:41 +0530568 nsymbols = NUM_SYMBOLS_PER_USEC(tid->an->mpdudensity);
Sujithe8324352009-01-16 21:38:42 +0530569
570 if (nsymbols == 0)
571 nsymbols = 1;
572
573 nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width];
574 minlen = (nsymbols * nsymbits) / BITS_PER_BYTE;
575
Sujithe8324352009-01-16 21:38:42 +0530576 if (frmlen < minlen) {
Sujithe8324352009-01-16 21:38:42 +0530577 mindelim = (minlen - frmlen) / ATH_AGGR_DELIM_SZ;
578 ndelim = max(mindelim, ndelim);
579 }
580
581 return ndelim;
582}
583
584static enum ATH_AGGR_STATUS ath_tx_form_aggr(struct ath_softc *sc,
Sujithfec247c2009-07-27 12:08:16 +0530585 struct ath_txq *txq,
Sujithd43f30152009-01-16 21:38:53 +0530586 struct ath_atx_tid *tid,
587 struct list_head *bf_q)
Sujithe8324352009-01-16 21:38:42 +0530588{
589#define PADBYTES(_len) ((4 - ((_len) % 4)) % 4)
Sujithd43f30152009-01-16 21:38:53 +0530590 struct ath_buf *bf, *bf_first, *bf_prev = NULL;
591 int rl = 0, nframes = 0, ndelim, prev_al = 0;
Sujithe8324352009-01-16 21:38:42 +0530592 u16 aggr_limit = 0, al = 0, bpad = 0,
593 al_delta, h_baw = tid->baw_size / 2;
594 enum ATH_AGGR_STATUS status = ATH_AGGR_DONE;
Sujithe8324352009-01-16 21:38:42 +0530595
596 bf_first = list_first_entry(&tid->buf_q, struct ath_buf, list);
597
598 do {
599 bf = list_first_entry(&tid->buf_q, struct ath_buf, list);
600
Sujithd43f30152009-01-16 21:38:53 +0530601 /* do not step over block-ack window */
Sujithe8324352009-01-16 21:38:42 +0530602 if (!BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno)) {
603 status = ATH_AGGR_BAW_CLOSED;
604 break;
605 }
606
607 if (!rl) {
608 aggr_limit = ath_lookup_rate(sc, bf, tid);
609 rl = 1;
610 }
611
Sujithd43f30152009-01-16 21:38:53 +0530612 /* do not exceed aggregation limit */
Sujithe8324352009-01-16 21:38:42 +0530613 al_delta = ATH_AGGR_DELIM_SZ + bf->bf_frmlen;
614
Sujithd43f30152009-01-16 21:38:53 +0530615 if (nframes &&
616 (aggr_limit < (al + bpad + al_delta + prev_al))) {
Sujithe8324352009-01-16 21:38:42 +0530617 status = ATH_AGGR_LIMITED;
618 break;
619 }
620
Sujithd43f30152009-01-16 21:38:53 +0530621 /* do not exceed subframe limit */
622 if (nframes >= min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) {
Sujithe8324352009-01-16 21:38:42 +0530623 status = ATH_AGGR_LIMITED;
624 break;
625 }
Sujithd43f30152009-01-16 21:38:53 +0530626 nframes++;
Sujithe8324352009-01-16 21:38:42 +0530627
Sujithd43f30152009-01-16 21:38:53 +0530628 /* add padding for previous frame to aggregation length */
Sujithe8324352009-01-16 21:38:42 +0530629 al += bpad + al_delta;
630
631 /*
632 * Get the delimiters needed to meet the MPDU
633 * density for this node.
634 */
635 ndelim = ath_compute_num_delims(sc, tid, bf_first, bf->bf_frmlen);
Sujithe8324352009-01-16 21:38:42 +0530636 bpad = PADBYTES(al_delta) + (ndelim << 2);
637
638 bf->bf_next = NULL;
Sujithd43f30152009-01-16 21:38:53 +0530639 bf->bf_desc->ds_link = 0;
Sujithe8324352009-01-16 21:38:42 +0530640
Sujithd43f30152009-01-16 21:38:53 +0530641 /* link buffers of this frame to the aggregate */
Sujithe8324352009-01-16 21:38:42 +0530642 ath_tx_addto_baw(sc, tid, bf);
Sujithd43f30152009-01-16 21:38:53 +0530643 ath9k_hw_set11n_aggr_middle(sc->sc_ah, bf->bf_desc, ndelim);
644 list_move_tail(&bf->list, bf_q);
Sujithe8324352009-01-16 21:38:42 +0530645 if (bf_prev) {
646 bf_prev->bf_next = bf;
Sujithd43f30152009-01-16 21:38:53 +0530647 bf_prev->bf_desc->ds_link = bf->bf_daddr;
Sujithe8324352009-01-16 21:38:42 +0530648 }
649 bf_prev = bf;
Sujithfec247c2009-07-27 12:08:16 +0530650
Sujithe8324352009-01-16 21:38:42 +0530651 } while (!list_empty(&tid->buf_q));
652
653 bf_first->bf_al = al;
654 bf_first->bf_nframes = nframes;
Sujithd43f30152009-01-16 21:38:53 +0530655
Sujithe8324352009-01-16 21:38:42 +0530656 return status;
657#undef PADBYTES
658}
659
660static void ath_tx_sched_aggr(struct ath_softc *sc, struct ath_txq *txq,
661 struct ath_atx_tid *tid)
662{
Sujithd43f30152009-01-16 21:38:53 +0530663 struct ath_buf *bf;
Sujithe8324352009-01-16 21:38:42 +0530664 enum ATH_AGGR_STATUS status;
665 struct list_head bf_q;
Sujithe8324352009-01-16 21:38:42 +0530666
667 do {
668 if (list_empty(&tid->buf_q))
669 return;
670
671 INIT_LIST_HEAD(&bf_q);
672
Sujithfec247c2009-07-27 12:08:16 +0530673 status = ath_tx_form_aggr(sc, txq, tid, &bf_q);
Sujithe8324352009-01-16 21:38:42 +0530674
675 /*
Sujithd43f30152009-01-16 21:38:53 +0530676 * no frames picked up to be aggregated;
677 * block-ack window is not open.
Sujithe8324352009-01-16 21:38:42 +0530678 */
679 if (list_empty(&bf_q))
680 break;
681
682 bf = list_first_entry(&bf_q, struct ath_buf, list);
Sujithd43f30152009-01-16 21:38:53 +0530683 bf->bf_lastbf = list_entry(bf_q.prev, struct ath_buf, list);
Sujithe8324352009-01-16 21:38:42 +0530684
Sujithd43f30152009-01-16 21:38:53 +0530685 /* if only one frame, send as non-aggregate */
Sujithe8324352009-01-16 21:38:42 +0530686 if (bf->bf_nframes == 1) {
Sujithe8324352009-01-16 21:38:42 +0530687 bf->bf_state.bf_type &= ~BUF_AGGR;
Sujithd43f30152009-01-16 21:38:53 +0530688 ath9k_hw_clr11n_aggr(sc->sc_ah, bf->bf_desc);
Sujithe8324352009-01-16 21:38:42 +0530689 ath_buf_set_rate(sc, bf);
690 ath_tx_txqaddbuf(sc, txq, &bf_q);
691 continue;
692 }
693
Sujithd43f30152009-01-16 21:38:53 +0530694 /* setup first desc of aggregate */
Sujithe8324352009-01-16 21:38:42 +0530695 bf->bf_state.bf_type |= BUF_AGGR;
696 ath_buf_set_rate(sc, bf);
697 ath9k_hw_set11n_aggr_first(sc->sc_ah, bf->bf_desc, bf->bf_al);
698
Sujithd43f30152009-01-16 21:38:53 +0530699 /* anchor last desc of aggregate */
700 ath9k_hw_set11n_aggr_last(sc->sc_ah, bf->bf_lastbf->bf_desc);
Sujithe8324352009-01-16 21:38:42 +0530701
Sujithe8324352009-01-16 21:38:42 +0530702 ath_tx_txqaddbuf(sc, txq, &bf_q);
Sujithfec247c2009-07-27 12:08:16 +0530703 TX_STAT_INC(txq->axq_qnum, a_aggr);
Sujithe8324352009-01-16 21:38:42 +0530704
705 } while (txq->axq_depth < ATH_AGGR_MIN_QDEPTH &&
706 status != ATH_AGGR_BAW_CLOSED);
707}
708
Sujithf83da962009-07-23 15:32:37 +0530709void ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta,
710 u16 tid, u16 *ssn)
Sujithe8324352009-01-16 21:38:42 +0530711{
712 struct ath_atx_tid *txtid;
713 struct ath_node *an;
714
715 an = (struct ath_node *)sta->drv_priv;
Sujithf83da962009-07-23 15:32:37 +0530716 txtid = ATH_AN_2_TID(an, tid);
717 txtid->state |= AGGR_ADDBA_PROGRESS;
718 ath_tx_pause_tid(sc, txtid);
719 *ssn = txtid->seq_start;
Sujithe8324352009-01-16 21:38:42 +0530720}
721
Sujithf83da962009-07-23 15:32:37 +0530722void ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
Sujithe8324352009-01-16 21:38:42 +0530723{
724 struct ath_node *an = (struct ath_node *)sta->drv_priv;
725 struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid);
726 struct ath_txq *txq = &sc->tx.txq[txtid->ac->qnum];
727 struct ath_buf *bf;
728 struct list_head bf_head;
729 INIT_LIST_HEAD(&bf_head);
730
731 if (txtid->state & AGGR_CLEANUP)
Sujithf83da962009-07-23 15:32:37 +0530732 return;
Sujithe8324352009-01-16 21:38:42 +0530733
734 if (!(txtid->state & AGGR_ADDBA_COMPLETE)) {
Vasanthakumar Thiagarajan5eae6592009-06-09 15:28:21 +0530735 txtid->state &= ~AGGR_ADDBA_PROGRESS;
Sujithf83da962009-07-23 15:32:37 +0530736 return;
Sujithe8324352009-01-16 21:38:42 +0530737 }
738
739 ath_tx_pause_tid(sc, txtid);
740
741 /* drop all software retried frames and mark this TID */
742 spin_lock_bh(&txq->axq_lock);
743 while (!list_empty(&txtid->buf_q)) {
744 bf = list_first_entry(&txtid->buf_q, struct ath_buf, list);
745 if (!bf_isretried(bf)) {
746 /*
747 * NB: it's based on the assumption that
748 * software retried frame will always stay
749 * at the head of software queue.
750 */
751 break;
752 }
Sujithd43f30152009-01-16 21:38:53 +0530753 list_move_tail(&bf->list, &bf_head);
Sujithe8324352009-01-16 21:38:42 +0530754 ath_tx_update_baw(sc, txtid, bf->bf_seqno);
Sujithfec247c2009-07-27 12:08:16 +0530755 ath_tx_complete_buf(sc, bf, txq, &bf_head, 0, 0);
Sujithe8324352009-01-16 21:38:42 +0530756 }
Sujithd43f30152009-01-16 21:38:53 +0530757 spin_unlock_bh(&txq->axq_lock);
Sujithe8324352009-01-16 21:38:42 +0530758
759 if (txtid->baw_head != txtid->baw_tail) {
Sujithe8324352009-01-16 21:38:42 +0530760 txtid->state |= AGGR_CLEANUP;
761 } else {
762 txtid->state &= ~AGGR_ADDBA_COMPLETE;
Sujithe8324352009-01-16 21:38:42 +0530763 ath_tx_flush_tid(sc, txtid);
764 }
Sujithe8324352009-01-16 21:38:42 +0530765}
766
767void ath_tx_aggr_resume(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid)
768{
769 struct ath_atx_tid *txtid;
770 struct ath_node *an;
771
772 an = (struct ath_node *)sta->drv_priv;
773
774 if (sc->sc_flags & SC_OP_TXAGGR) {
775 txtid = ATH_AN_2_TID(an, tid);
776 txtid->baw_size =
777 IEEE80211_MIN_AMPDU_BUF << sta->ht_cap.ampdu_factor;
778 txtid->state |= AGGR_ADDBA_COMPLETE;
779 txtid->state &= ~AGGR_ADDBA_PROGRESS;
780 ath_tx_resume_tid(sc, txtid);
781 }
782}
783
784bool ath_tx_aggr_check(struct ath_softc *sc, struct ath_node *an, u8 tidno)
785{
786 struct ath_atx_tid *txtid;
787
788 if (!(sc->sc_flags & SC_OP_TXAGGR))
789 return false;
790
791 txtid = ATH_AN_2_TID(an, tidno);
792
Vasanthakumar Thiagarajanc3d8f022009-06-10 17:50:08 +0530793 if (!(txtid->state & (AGGR_ADDBA_COMPLETE | AGGR_ADDBA_PROGRESS)))
Sujithe8324352009-01-16 21:38:42 +0530794 return true;
Sujithe8324352009-01-16 21:38:42 +0530795 return false;
796}
797
798/********************/
799/* Queue Management */
800/********************/
801
Sujithe8324352009-01-16 21:38:42 +0530802static void ath_txq_drain_pending_buffers(struct ath_softc *sc,
803 struct ath_txq *txq)
804{
805 struct ath_atx_ac *ac, *ac_tmp;
806 struct ath_atx_tid *tid, *tid_tmp;
807
808 list_for_each_entry_safe(ac, ac_tmp, &txq->axq_acq, list) {
809 list_del(&ac->list);
810 ac->sched = false;
811 list_for_each_entry_safe(tid, tid_tmp, &ac->tid_q, list) {
812 list_del(&tid->list);
813 tid->sched = false;
814 ath_tid_drain(sc, txq, tid);
815 }
816 }
817}
818
819struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype)
820{
Sujithcbe61d82009-02-09 13:27:12 +0530821 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700822 struct ath_common *common = ath9k_hw_common(ah);
Sujithe8324352009-01-16 21:38:42 +0530823 struct ath9k_tx_queue_info qi;
824 int qnum;
825
826 memset(&qi, 0, sizeof(qi));
827 qi.tqi_subtype = subtype;
828 qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT;
829 qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT;
830 qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT;
831 qi.tqi_physCompBuf = 0;
832
833 /*
834 * Enable interrupts only for EOL and DESC conditions.
835 * We mark tx descriptors to receive a DESC interrupt
836 * when a tx queue gets deep; otherwise waiting for the
837 * EOL to reap descriptors. Note that this is done to
838 * reduce interrupt load and this only defers reaping
839 * descriptors, never transmitting frames. Aside from
840 * reducing interrupts this also permits more concurrency.
841 * The only potential downside is if the tx queue backs
842 * up in which case the top half of the kernel may backup
843 * due to a lack of tx descriptors.
844 *
845 * The UAPSD queue is an exception, since we take a desc-
846 * based intr on the EOSP frames.
847 */
848 if (qtype == ATH9K_TX_QUEUE_UAPSD)
849 qi.tqi_qflags = TXQ_FLAG_TXDESCINT_ENABLE;
850 else
851 qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE |
852 TXQ_FLAG_TXDESCINT_ENABLE;
853 qnum = ath9k_hw_setuptxqueue(ah, qtype, &qi);
854 if (qnum == -1) {
855 /*
856 * NB: don't print a message, this happens
857 * normally on parts with too few tx queues
858 */
859 return NULL;
860 }
861 if (qnum >= ARRAY_SIZE(sc->tx.txq)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700862 ath_print(common, ATH_DBG_FATAL,
863 "qnum %u out of range, max %u!\n",
864 qnum, (unsigned int)ARRAY_SIZE(sc->tx.txq));
Sujithe8324352009-01-16 21:38:42 +0530865 ath9k_hw_releasetxqueue(ah, qnum);
866 return NULL;
867 }
868 if (!ATH_TXQ_SETUP(sc, qnum)) {
869 struct ath_txq *txq = &sc->tx.txq[qnum];
870
871 txq->axq_qnum = qnum;
872 txq->axq_link = NULL;
873 INIT_LIST_HEAD(&txq->axq_q);
874 INIT_LIST_HEAD(&txq->axq_acq);
875 spin_lock_init(&txq->axq_lock);
876 txq->axq_depth = 0;
Senthil Balasubramanian164ace32009-07-14 20:17:09 -0400877 txq->axq_tx_inprogress = false;
Sujithe8324352009-01-16 21:38:42 +0530878 sc->tx.txqsetup |= 1<<qnum;
879 }
880 return &sc->tx.txq[qnum];
881}
882
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +0530883int ath_tx_get_qnum(struct ath_softc *sc, int qtype, int haltype)
Sujithe8324352009-01-16 21:38:42 +0530884{
885 int qnum;
886
887 switch (qtype) {
888 case ATH9K_TX_QUEUE_DATA:
889 if (haltype >= ARRAY_SIZE(sc->tx.hwq_map)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700890 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
891 "HAL AC %u out of range, max %zu!\n",
892 haltype, ARRAY_SIZE(sc->tx.hwq_map));
Sujithe8324352009-01-16 21:38:42 +0530893 return -1;
894 }
895 qnum = sc->tx.hwq_map[haltype];
896 break;
897 case ATH9K_TX_QUEUE_BEACON:
898 qnum = sc->beacon.beaconq;
899 break;
900 case ATH9K_TX_QUEUE_CAB:
901 qnum = sc->beacon.cabq->axq_qnum;
902 break;
903 default:
904 qnum = -1;
905 }
906 return qnum;
907}
908
909struct ath_txq *ath_test_get_txq(struct ath_softc *sc, struct sk_buff *skb)
910{
911 struct ath_txq *txq = NULL;
Luis R. Rodriguezf52de032009-11-02 17:09:12 -0800912 u16 skb_queue = skb_get_queue_mapping(skb);
Sujithe8324352009-01-16 21:38:42 +0530913 int qnum;
914
Luis R. Rodriguezf52de032009-11-02 17:09:12 -0800915 qnum = ath_get_hal_qnum(skb_queue, sc);
Sujithe8324352009-01-16 21:38:42 +0530916 txq = &sc->tx.txq[qnum];
917
918 spin_lock_bh(&txq->axq_lock);
919
920 if (txq->axq_depth >= (ATH_TXBUF - 20)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700921 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_XMIT,
922 "TX queue: %d is full, depth: %d\n",
923 qnum, txq->axq_depth);
Luis R. Rodriguezf52de032009-11-02 17:09:12 -0800924 ath_mac80211_stop_queue(sc, skb_queue);
Sujithe8324352009-01-16 21:38:42 +0530925 txq->stopped = 1;
926 spin_unlock_bh(&txq->axq_lock);
927 return NULL;
928 }
929
930 spin_unlock_bh(&txq->axq_lock);
931
932 return txq;
933}
934
935int ath_txq_update(struct ath_softc *sc, int qnum,
936 struct ath9k_tx_queue_info *qinfo)
937{
Sujithcbe61d82009-02-09 13:27:12 +0530938 struct ath_hw *ah = sc->sc_ah;
Sujithe8324352009-01-16 21:38:42 +0530939 int error = 0;
940 struct ath9k_tx_queue_info qi;
941
942 if (qnum == sc->beacon.beaconq) {
943 /*
944 * XXX: for beacon queue, we just save the parameter.
945 * It will be picked up by ath_beaconq_config when
946 * it's necessary.
947 */
948 sc->beacon.beacon_qi = *qinfo;
949 return 0;
950 }
951
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -0700952 BUG_ON(sc->tx.txq[qnum].axq_qnum != qnum);
Sujithe8324352009-01-16 21:38:42 +0530953
954 ath9k_hw_get_txq_props(ah, qnum, &qi);
955 qi.tqi_aifs = qinfo->tqi_aifs;
956 qi.tqi_cwmin = qinfo->tqi_cwmin;
957 qi.tqi_cwmax = qinfo->tqi_cwmax;
958 qi.tqi_burstTime = qinfo->tqi_burstTime;
959 qi.tqi_readyTime = qinfo->tqi_readyTime;
960
961 if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700962 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
963 "Unable to update hardware queue %u!\n", qnum);
Sujithe8324352009-01-16 21:38:42 +0530964 error = -EIO;
965 } else {
966 ath9k_hw_resettxqueue(ah, qnum);
967 }
968
969 return error;
970}
971
972int ath_cabq_update(struct ath_softc *sc)
973{
974 struct ath9k_tx_queue_info qi;
975 int qnum = sc->beacon.cabq->axq_qnum;
Sujithe8324352009-01-16 21:38:42 +0530976
977 ath9k_hw_get_txq_props(sc->sc_ah, qnum, &qi);
978 /*
979 * Ensure the readytime % is within the bounds.
980 */
Sujith17d79042009-02-09 13:27:03 +0530981 if (sc->config.cabqReadytime < ATH9K_READY_TIME_LO_BOUND)
982 sc->config.cabqReadytime = ATH9K_READY_TIME_LO_BOUND;
983 else if (sc->config.cabqReadytime > ATH9K_READY_TIME_HI_BOUND)
984 sc->config.cabqReadytime = ATH9K_READY_TIME_HI_BOUND;
Sujithe8324352009-01-16 21:38:42 +0530985
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200986 qi.tqi_readyTime = (sc->beacon_interval *
Sujithfdbf7332009-02-17 15:36:35 +0530987 sc->config.cabqReadytime) / 100;
Sujithe8324352009-01-16 21:38:42 +0530988 ath_txq_update(sc, qnum, &qi);
989
990 return 0;
991}
992
Sujith043a0402009-01-16 21:38:47 +0530993/*
994 * Drain a given TX queue (could be Beacon or Data)
995 *
996 * This assumes output has been stopped and
997 * we do not need to block ath_tx_tasklet.
998 */
999void ath_draintxq(struct ath_softc *sc, struct ath_txq *txq, bool retry_tx)
Sujithe8324352009-01-16 21:38:42 +05301000{
1001 struct ath_buf *bf, *lastbf;
1002 struct list_head bf_head;
1003
1004 INIT_LIST_HEAD(&bf_head);
1005
Sujithe8324352009-01-16 21:38:42 +05301006 for (;;) {
1007 spin_lock_bh(&txq->axq_lock);
1008
1009 if (list_empty(&txq->axq_q)) {
1010 txq->axq_link = NULL;
Sujithe8324352009-01-16 21:38:42 +05301011 spin_unlock_bh(&txq->axq_lock);
1012 break;
1013 }
1014
1015 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
1016
Sujitha119cc42009-03-30 15:28:38 +05301017 if (bf->bf_stale) {
Sujithe8324352009-01-16 21:38:42 +05301018 list_del(&bf->list);
1019 spin_unlock_bh(&txq->axq_lock);
1020
1021 spin_lock_bh(&sc->tx.txbuflock);
1022 list_add_tail(&bf->list, &sc->tx.txbuf);
1023 spin_unlock_bh(&sc->tx.txbuflock);
1024 continue;
1025 }
1026
1027 lastbf = bf->bf_lastbf;
1028 if (!retry_tx)
1029 lastbf->bf_desc->ds_txstat.ts_flags =
1030 ATH9K_TX_SW_ABORTED;
1031
1032 /* remove ath_buf's of the same mpdu from txq */
1033 list_cut_position(&bf_head, &txq->axq_q, &lastbf->list);
1034 txq->axq_depth--;
1035
1036 spin_unlock_bh(&txq->axq_lock);
1037
1038 if (bf_isampdu(bf))
Sujithd43f30152009-01-16 21:38:53 +05301039 ath_tx_complete_aggr(sc, txq, bf, &bf_head, 0);
Sujithe8324352009-01-16 21:38:42 +05301040 else
Sujithfec247c2009-07-27 12:08:16 +05301041 ath_tx_complete_buf(sc, bf, txq, &bf_head, 0, 0);
Sujithe8324352009-01-16 21:38:42 +05301042 }
1043
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04001044 spin_lock_bh(&txq->axq_lock);
1045 txq->axq_tx_inprogress = false;
1046 spin_unlock_bh(&txq->axq_lock);
1047
Sujithe8324352009-01-16 21:38:42 +05301048 /* flush any pending frames if aggregation is enabled */
1049 if (sc->sc_flags & SC_OP_TXAGGR) {
1050 if (!retry_tx) {
1051 spin_lock_bh(&txq->axq_lock);
1052 ath_txq_drain_pending_buffers(sc, txq);
1053 spin_unlock_bh(&txq->axq_lock);
1054 }
1055 }
1056}
1057
Sujith043a0402009-01-16 21:38:47 +05301058void ath_drain_all_txq(struct ath_softc *sc, bool retry_tx)
1059{
Sujithcbe61d82009-02-09 13:27:12 +05301060 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001061 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujith043a0402009-01-16 21:38:47 +05301062 struct ath_txq *txq;
1063 int i, npend = 0;
1064
1065 if (sc->sc_flags & SC_OP_INVALID)
1066 return;
1067
1068 /* Stop beacon queue */
1069 ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq);
1070
1071 /* Stop data queues */
1072 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1073 if (ATH_TXQ_SETUP(sc, i)) {
1074 txq = &sc->tx.txq[i];
1075 ath9k_hw_stoptxdma(ah, txq->axq_qnum);
1076 npend += ath9k_hw_numtxpending(ah, txq->axq_qnum);
1077 }
1078 }
1079
1080 if (npend) {
1081 int r;
1082
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001083 ath_print(common, ATH_DBG_XMIT,
1084 "Unable to stop TxDMA. Reset HAL!\n");
Sujith043a0402009-01-16 21:38:47 +05301085
1086 spin_lock_bh(&sc->sc_resetlock);
Sujith2660b812009-02-09 13:27:26 +05301087 r = ath9k_hw_reset(ah, sc->sc_ah->curchan, true);
Sujith043a0402009-01-16 21:38:47 +05301088 if (r)
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001089 ath_print(common, ATH_DBG_FATAL,
1090 "Unable to reset hardware; reset status %d\n",
1091 r);
Sujith043a0402009-01-16 21:38:47 +05301092 spin_unlock_bh(&sc->sc_resetlock);
1093 }
1094
1095 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
1096 if (ATH_TXQ_SETUP(sc, i))
1097 ath_draintxq(sc, &sc->tx.txq[i], retry_tx);
1098 }
1099}
1100
Sujithe8324352009-01-16 21:38:42 +05301101void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq)
1102{
1103 ath9k_hw_releasetxqueue(sc->sc_ah, txq->axq_qnum);
1104 sc->tx.txqsetup &= ~(1<<txq->axq_qnum);
1105}
1106
Sujithe8324352009-01-16 21:38:42 +05301107void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq)
1108{
1109 struct ath_atx_ac *ac;
1110 struct ath_atx_tid *tid;
1111
1112 if (list_empty(&txq->axq_acq))
1113 return;
1114
1115 ac = list_first_entry(&txq->axq_acq, struct ath_atx_ac, list);
1116 list_del(&ac->list);
1117 ac->sched = false;
1118
1119 do {
1120 if (list_empty(&ac->tid_q))
1121 return;
1122
1123 tid = list_first_entry(&ac->tid_q, struct ath_atx_tid, list);
1124 list_del(&tid->list);
1125 tid->sched = false;
1126
1127 if (tid->paused)
1128 continue;
1129
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04001130 ath_tx_sched_aggr(sc, txq, tid);
Sujithe8324352009-01-16 21:38:42 +05301131
1132 /*
1133 * add tid to round-robin queue if more frames
1134 * are pending for the tid
1135 */
1136 if (!list_empty(&tid->buf_q))
1137 ath_tx_queue_tid(txq, tid);
1138
1139 break;
1140 } while (!list_empty(&ac->tid_q));
1141
1142 if (!list_empty(&ac->tid_q)) {
1143 if (!ac->sched) {
1144 ac->sched = true;
1145 list_add_tail(&ac->list, &txq->axq_acq);
1146 }
1147 }
1148}
1149
1150int ath_tx_setup(struct ath_softc *sc, int haltype)
1151{
1152 struct ath_txq *txq;
1153
1154 if (haltype >= ARRAY_SIZE(sc->tx.hwq_map)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001155 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
1156 "HAL AC %u out of range, max %zu!\n",
Sujithe8324352009-01-16 21:38:42 +05301157 haltype, ARRAY_SIZE(sc->tx.hwq_map));
1158 return 0;
1159 }
1160 txq = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, haltype);
1161 if (txq != NULL) {
1162 sc->tx.hwq_map[haltype] = txq->axq_qnum;
1163 return 1;
1164 } else
1165 return 0;
1166}
1167
1168/***********/
1169/* TX, DMA */
1170/***********/
1171
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001172/*
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001173 * Insert a chain of ath_buf (descriptors) on a txq and
1174 * assume the descriptors are already chained together by caller.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001175 */
Sujith102e0572008-10-29 10:15:16 +05301176static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
1177 struct list_head *head)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001178{
Sujithcbe61d82009-02-09 13:27:12 +05301179 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001180 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001181 struct ath_buf *bf;
Sujith102e0572008-10-29 10:15:16 +05301182
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001183 /*
1184 * Insert the frame on the outbound list and
1185 * pass it on to the hardware.
1186 */
1187
1188 if (list_empty(head))
1189 return;
1190
1191 bf = list_first_entry(head, struct ath_buf, list);
1192
1193 list_splice_tail_init(head, &txq->axq_q);
1194 txq->axq_depth++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001195
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;
Sujithe8324352009-01-16 21:38:42 +05301555 int hdrlen;
1556 __le16 fc;
1557
Felix Fietkau827e69b2009-11-15 23:09:25 +01001558 tx_info->pad[0] = 0;
1559 switch (txctl->frame_type) {
1560 case ATH9K_NOT_INTERNAL:
1561 break;
1562 case ATH9K_INT_PAUSE:
1563 tx_info->pad[0] |= ATH_TX_INFO_FRAME_TYPE_PAUSE;
1564 /* fall through */
1565 case ATH9K_INT_UNPAUSE:
1566 tx_info->pad[0] |= ATH_TX_INFO_FRAME_TYPE_INTERNAL;
1567 break;
1568 }
Sujithe8324352009-01-16 21:38:42 +05301569 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1570 fc = hdr->frame_control;
1571
1572 ATH_TXBUF_RESET(bf);
1573
Felix Fietkau827e69b2009-11-15 23:09:25 +01001574 bf->aphy = aphy;
Sujithe8324352009-01-16 21:38:42 +05301575 bf->bf_frmlen = skb->len + FCS_LEN - (hdrlen & 3);
1576
Luis R. Rodriguez5008f372009-11-02 16:27:33 -08001577 if (conf_is_ht(&hw->conf) && !is_pae(skb))
Sujithc656bbb2009-01-16 21:38:56 +05301578 bf->bf_state.bf_type |= BUF_HT;
Sujithe8324352009-01-16 21:38:42 +05301579
1580 bf->bf_flags = setup_tx_flags(sc, skb, txctl->txq);
1581
1582 bf->bf_keytype = get_hw_crypto_keytype(skb);
Sujithe8324352009-01-16 21:38:42 +05301583 if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR) {
1584 bf->bf_frmlen += tx_info->control.hw_key->icv_len;
1585 bf->bf_keyix = tx_info->control.hw_key->hw_key_idx;
1586 } else {
1587 bf->bf_keyix = ATH9K_TXKEYIX_INVALID;
1588 }
1589
1590 if (ieee80211_is_data_qos(fc) && (sc->sc_flags & SC_OP_TXAGGR))
1591 assign_aggr_tid_seqno(skb, bf);
1592
1593 bf->bf_mpdu = skb;
1594
1595 bf->bf_dmacontext = dma_map_single(sc->dev, skb->data,
1596 skb->len, DMA_TO_DEVICE);
1597 if (unlikely(dma_mapping_error(sc->dev, bf->bf_dmacontext))) {
1598 bf->bf_mpdu = NULL;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001599 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_FATAL,
1600 "dma_mapping_error() on TX\n");
Sujithe8324352009-01-16 21:38:42 +05301601 return -ENOMEM;
1602 }
1603
1604 bf->bf_buf_addr = bf->bf_dmacontext;
1605 return 0;
1606}
1607
1608/* FIXME: tx power */
1609static void ath_tx_start_dma(struct ath_softc *sc, struct ath_buf *bf,
1610 struct ath_tx_control *txctl)
1611{
Sujitha22be222009-03-30 15:28:36 +05301612 struct sk_buff *skb = bf->bf_mpdu;
Sujithe8324352009-01-16 21:38:42 +05301613 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Sujithc37452b2009-03-09 09:31:57 +05301614 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Sujithe8324352009-01-16 21:38:42 +05301615 struct ath_node *an = NULL;
1616 struct list_head bf_head;
1617 struct ath_desc *ds;
1618 struct ath_atx_tid *tid;
Sujithcbe61d82009-02-09 13:27:12 +05301619 struct ath_hw *ah = sc->sc_ah;
Sujithe8324352009-01-16 21:38:42 +05301620 int frm_type;
Sujithc37452b2009-03-09 09:31:57 +05301621 __le16 fc;
Sujithe8324352009-01-16 21:38:42 +05301622
1623 frm_type = get_hw_packet_type(skb);
Sujithc37452b2009-03-09 09:31:57 +05301624 fc = hdr->frame_control;
Sujithe8324352009-01-16 21:38:42 +05301625
1626 INIT_LIST_HEAD(&bf_head);
1627 list_add_tail(&bf->list, &bf_head);
1628
1629 ds = bf->bf_desc;
1630 ds->ds_link = 0;
1631 ds->ds_data = bf->bf_buf_addr;
1632
1633 ath9k_hw_set11n_txdesc(ah, ds, bf->bf_frmlen, frm_type, MAX_RATE_POWER,
1634 bf->bf_keyix, bf->bf_keytype, bf->bf_flags);
1635
1636 ath9k_hw_filltxdesc(ah, ds,
1637 skb->len, /* segment length */
1638 true, /* first segment */
1639 true, /* last segment */
1640 ds); /* first descriptor */
1641
Sujithe8324352009-01-16 21:38:42 +05301642 spin_lock_bh(&txctl->txq->axq_lock);
1643
1644 if (bf_isht(bf) && (sc->sc_flags & SC_OP_TXAGGR) &&
1645 tx_info->control.sta) {
1646 an = (struct ath_node *)tx_info->control.sta->drv_priv;
1647 tid = ATH_AN_2_TID(an, bf->bf_tidno);
1648
Sujithc37452b2009-03-09 09:31:57 +05301649 if (!ieee80211_is_data_qos(fc)) {
1650 ath_tx_send_normal(sc, txctl->txq, &bf_head);
1651 goto tx_done;
1652 }
1653
Vasanthakumar Thiagarajan089e6982009-06-10 17:50:07 +05301654 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
Sujithe8324352009-01-16 21:38:42 +05301655 /*
1656 * Try aggregation if it's a unicast data frame
1657 * and the destination is HT capable.
1658 */
1659 ath_tx_send_ampdu(sc, tid, &bf_head, txctl);
1660 } else {
1661 /*
1662 * Send this frame as regular when ADDBA
1663 * exchange is neither complete nor pending.
1664 */
Sujithc37452b2009-03-09 09:31:57 +05301665 ath_tx_send_ht_normal(sc, txctl->txq,
1666 tid, &bf_head);
Sujithe8324352009-01-16 21:38:42 +05301667 }
1668 } else {
Sujithc37452b2009-03-09 09:31:57 +05301669 ath_tx_send_normal(sc, txctl->txq, &bf_head);
Sujithe8324352009-01-16 21:38:42 +05301670 }
1671
Sujithc37452b2009-03-09 09:31:57 +05301672tx_done:
Sujithe8324352009-01-16 21:38:42 +05301673 spin_unlock_bh(&txctl->txq->axq_lock);
1674}
1675
1676/* Upon failure caller should free skb */
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001677int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb,
Sujithe8324352009-01-16 21:38:42 +05301678 struct ath_tx_control *txctl)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001679{
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001680 struct ath_wiphy *aphy = hw->priv;
1681 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001682 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001683 struct ath_buf *bf;
Sujithe8324352009-01-16 21:38:42 +05301684 int r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001685
Sujithe8324352009-01-16 21:38:42 +05301686 bf = ath_tx_get_buffer(sc);
1687 if (!bf) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001688 ath_print(common, ATH_DBG_XMIT, "TX buffers are full\n");
Sujithe8324352009-01-16 21:38:42 +05301689 return -1;
1690 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001691
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001692 r = ath_tx_setup_buffer(hw, bf, skb, txctl);
Sujithe8324352009-01-16 21:38:42 +05301693 if (unlikely(r)) {
1694 struct ath_txq *txq = txctl->txq;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001695
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001696 ath_print(common, ATH_DBG_FATAL, "TX mem alloc failure\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001697
Sujithe8324352009-01-16 21:38:42 +05301698 /* upon ath_tx_processq() this TX queue will be resumed, we
1699 * guarantee this will happen by knowing beforehand that
1700 * we will at least have to run TX completionon one buffer
1701 * on the queue */
1702 spin_lock_bh(&txq->axq_lock);
Sujithf7a99e42009-02-17 15:36:33 +05301703 if (sc->tx.txq[txq->axq_qnum].axq_depth > 1) {
Luis R. Rodriguezf52de032009-11-02 17:09:12 -08001704 ath_mac80211_stop_queue(sc, skb_get_queue_mapping(skb));
Sujithe8324352009-01-16 21:38:42 +05301705 txq->stopped = 1;
1706 }
1707 spin_unlock_bh(&txq->axq_lock);
1708
1709 spin_lock_bh(&sc->tx.txbuflock);
1710 list_add_tail(&bf->list, &sc->tx.txbuf);
1711 spin_unlock_bh(&sc->tx.txbuflock);
1712
1713 return r;
1714 }
1715
1716 ath_tx_start_dma(sc, bf, txctl);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001717
1718 return 0;
1719}
1720
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001721void ath_tx_cabq(struct ieee80211_hw *hw, struct sk_buff *skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001722{
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001723 struct ath_wiphy *aphy = hw->priv;
1724 struct ath_softc *sc = aphy->sc;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001725 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujithe8324352009-01-16 21:38:42 +05301726 int hdrlen, padsize;
1727 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1728 struct ath_tx_control txctl;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001729
Sujithe8324352009-01-16 21:38:42 +05301730 memset(&txctl, 0, sizeof(struct ath_tx_control));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001731
Sujithe8324352009-01-16 21:38:42 +05301732 /*
1733 * As a temporary workaround, assign seq# here; this will likely need
1734 * to be cleaned up to work better with Beacon transmission and virtual
1735 * BSSes.
1736 */
1737 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1738 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1739 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
1740 sc->tx.seq_no += 0x10;
1741 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
1742 hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001743 }
1744
Sujithe8324352009-01-16 21:38:42 +05301745 /* Add the padding after the header if this is not already done */
1746 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1747 if (hdrlen & 3) {
1748 padsize = hdrlen % 4;
1749 if (skb_headroom(skb) < padsize) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001750 ath_print(common, ATH_DBG_XMIT,
1751 "TX CABQ padding failed\n");
Sujithe8324352009-01-16 21:38:42 +05301752 dev_kfree_skb_any(skb);
1753 return;
1754 }
1755 skb_push(skb, padsize);
1756 memmove(skb->data, skb->data + padsize, hdrlen);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001757 }
1758
Sujithe8324352009-01-16 21:38:42 +05301759 txctl.txq = sc->beacon.cabq;
1760
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001761 ath_print(common, ATH_DBG_XMIT,
1762 "transmitting CABQ packet, skb: %p\n", skb);
Sujithe8324352009-01-16 21:38:42 +05301763
Jouni Malinenc52f33d2009-03-03 19:23:29 +02001764 if (ath_tx_start(hw, skb, &txctl) != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001765 ath_print(common, ATH_DBG_XMIT, "CABQ TX failed\n");
Sujithe8324352009-01-16 21:38:42 +05301766 goto exit;
1767 }
1768
1769 return;
1770exit:
1771 dev_kfree_skb_any(skb);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001772}
1773
Sujithe8324352009-01-16 21:38:42 +05301774/*****************/
1775/* TX Completion */
1776/*****************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001777
Sujithe8324352009-01-16 21:38:42 +05301778static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
Felix Fietkau827e69b2009-11-15 23:09:25 +01001779 struct ath_wiphy *aphy, int tx_flags)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001780{
Sujithe8324352009-01-16 21:38:42 +05301781 struct ieee80211_hw *hw = sc->hw;
1782 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001783 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Sujithe8324352009-01-16 21:38:42 +05301784 int hdrlen, padsize;
1785
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
Felix Fietkau827e69b2009-11-15 23:09:25 +01001788 if (aphy)
1789 hw = aphy->hw;
Sujithe8324352009-01-16 21:38:42 +05301790
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301791 if (tx_flags & ATH_TX_BAR)
Sujithe8324352009-01-16 21:38:42 +05301792 tx_info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
Sujithe8324352009-01-16 21:38:42 +05301793
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301794 if (!(tx_flags & (ATH_TX_ERROR | ATH_TX_XRETRY))) {
Sujithe8324352009-01-16 21:38:42 +05301795 /* Frame was ACKed */
1796 tx_info->flags |= IEEE80211_TX_STAT_ACK;
1797 }
1798
Sujithe8324352009-01-16 21:38:42 +05301799 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1800 padsize = hdrlen & 3;
1801 if (padsize && hdrlen >= 24) {
1802 /*
1803 * Remove MAC header padding before giving the frame back to
1804 * mac80211.
1805 */
1806 memmove(skb->data + padsize, skb->data, hdrlen);
1807 skb_pull(skb, padsize);
1808 }
1809
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03001810 if (sc->sc_flags & SC_OP_WAIT_FOR_TX_ACK) {
1811 sc->sc_flags &= ~SC_OP_WAIT_FOR_TX_ACK;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001812 ath_print(common, ATH_DBG_PS,
1813 "Going back to sleep after having "
1814 "received TX status (0x%x)\n",
Jouni Malinen9a23f9c2009-05-19 17:01:38 +03001815 sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
1816 SC_OP_WAIT_FOR_CAB |
1817 SC_OP_WAIT_FOR_PSPOLL_DATA |
1818 SC_OP_WAIT_FOR_TX_ACK));
1819 }
1820
Felix Fietkau827e69b2009-11-15 23:09:25 +01001821 if (unlikely(tx_info->pad[0] & ATH_TX_INFO_FRAME_TYPE_INTERNAL))
Jouni Malinenf0ed85c2009-03-03 19:23:31 +02001822 ath9k_tx_status(hw, skb);
Felix Fietkau827e69b2009-11-15 23:09:25 +01001823 else
1824 ieee80211_tx_status(hw, skb);
Sujithe8324352009-01-16 21:38:42 +05301825}
1826
1827static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
Sujithfec247c2009-07-27 12:08:16 +05301828 struct ath_txq *txq,
Sujithe8324352009-01-16 21:38:42 +05301829 struct list_head *bf_q,
1830 int txok, int sendbar)
1831{
1832 struct sk_buff *skb = bf->bf_mpdu;
Sujithe8324352009-01-16 21:38:42 +05301833 unsigned long flags;
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301834 int tx_flags = 0;
Sujithe8324352009-01-16 21:38:42 +05301835
Sujithe8324352009-01-16 21:38:42 +05301836 if (sendbar)
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301837 tx_flags = ATH_TX_BAR;
Sujithe8324352009-01-16 21:38:42 +05301838
1839 if (!txok) {
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301840 tx_flags |= ATH_TX_ERROR;
Sujithe8324352009-01-16 21:38:42 +05301841
1842 if (bf_isxretried(bf))
Vasanthakumar Thiagarajan6b2c4032009-03-20 15:27:50 +05301843 tx_flags |= ATH_TX_XRETRY;
Sujithe8324352009-01-16 21:38:42 +05301844 }
1845
1846 dma_unmap_single(sc->dev, bf->bf_dmacontext, skb->len, DMA_TO_DEVICE);
Felix Fietkau827e69b2009-11-15 23:09:25 +01001847 ath_tx_complete(sc, skb, bf->aphy, tx_flags);
Sujithfec247c2009-07-27 12:08:16 +05301848 ath_debug_stat_tx(sc, txq, bf);
Sujithe8324352009-01-16 21:38:42 +05301849
1850 /*
1851 * Return the list of ath_buf of this mpdu to free queue
1852 */
1853 spin_lock_irqsave(&sc->tx.txbuflock, flags);
1854 list_splice_tail_init(bf_q, &sc->tx.txbuf);
1855 spin_unlock_irqrestore(&sc->tx.txbuflock, flags);
1856}
1857
1858static int ath_tx_num_badfrms(struct ath_softc *sc, struct ath_buf *bf,
1859 int txok)
1860{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001861 struct ath_buf *bf_last = bf->bf_lastbf;
1862 struct ath_desc *ds = bf_last->bf_desc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001863 u16 seq_st = 0;
1864 u32 ba[WME_BA_BMP_SIZE >> 5];
Sujithe8324352009-01-16 21:38:42 +05301865 int ba_index;
1866 int nbad = 0;
1867 int isaggr = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001868
Sujithe8324352009-01-16 21:38:42 +05301869 if (ds->ds_txstat.ts_flags == ATH9K_TX_SW_ABORTED)
1870 return 0;
Sujith528f0c62008-10-29 10:14:26 +05301871
Sujithcd3d39a2008-08-11 14:03:34 +05301872 isaggr = bf_isaggr(bf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001873 if (isaggr) {
Sujithe8324352009-01-16 21:38:42 +05301874 seq_st = ATH_DS_BA_SEQ(ds);
1875 memcpy(ba, ATH_DS_BA_BITMAP(ds), WME_BA_BMP_SIZE >> 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001876 }
1877
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001878 while (bf) {
Sujithe8324352009-01-16 21:38:42 +05301879 ba_index = ATH_BA_INDEX(seq_st, bf->bf_seqno);
1880 if (!txok || (isaggr && !ATH_BA_ISSET(ba, ba_index)))
1881 nbad++;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001882
Sujithe8324352009-01-16 21:38:42 +05301883 bf = bf->bf_next;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001884 }
1885
Sujithe8324352009-01-16 21:38:42 +05301886 return nbad;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001887}
1888
Sujith95e4acb2009-03-13 08:56:09 +05301889static void ath_tx_rc_status(struct ath_buf *bf, struct ath_desc *ds,
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05301890 int nbad, int txok, bool update_rc)
Sujithc4288392008-11-18 09:09:30 +05301891{
Sujitha22be222009-03-30 15:28:36 +05301892 struct sk_buff *skb = bf->bf_mpdu;
Sujith254ad0f2009-02-04 08:10:19 +05301893 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Sujithc4288392008-11-18 09:09:30 +05301894 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
Felix Fietkau827e69b2009-11-15 23:09:25 +01001895 struct ieee80211_hw *hw = bf->aphy->hw;
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05301896 u8 i, tx_rateindex;
Sujithc4288392008-11-18 09:09:30 +05301897
Sujith95e4acb2009-03-13 08:56:09 +05301898 if (txok)
1899 tx_info->status.ack_signal = ds->ds_txstat.ts_rssi;
1900
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05301901 tx_rateindex = ds->ds_txstat.ts_rateindex;
1902 WARN_ON(tx_rateindex >= hw->max_rates);
1903
Felix Fietkau827e69b2009-11-15 23:09:25 +01001904 if (update_rc)
1905 tx_info->pad[0] |= ATH_TX_INFO_UPDATE_RC;
Sujithc4288392008-11-18 09:09:30 +05301906 if (ds->ds_txstat.ts_status & ATH9K_TXERR_FILT)
1907 tx_info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1908
1909 if ((ds->ds_txstat.ts_status & ATH9K_TXERR_FILT) == 0 &&
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05301910 (bf->bf_flags & ATH9K_TXDESC_NOACK) == 0 && update_rc) {
Sujith254ad0f2009-02-04 08:10:19 +05301911 if (ieee80211_is_data(hdr->frame_control)) {
Felix Fietkau827e69b2009-11-15 23:09:25 +01001912 if (ds->ds_txstat.ts_flags &
1913 (ATH9K_TX_DATA_UNDERRUN | ATH9K_TX_DELIM_UNDERRUN))
1914 tx_info->pad[0] |= ATH_TX_INFO_UNDERRUN;
1915 if ((ds->ds_txstat.ts_status & ATH9K_TXERR_XRETRY) ||
1916 (ds->ds_txstat.ts_status & ATH9K_TXERR_FIFO))
1917 tx_info->pad[0] |= ATH_TX_INFO_XRETRY;
1918 tx_info->status.ampdu_len = bf->bf_nframes;
1919 tx_info->status.ampdu_ack_len = bf->bf_nframes - nbad;
Sujithc4288392008-11-18 09:09:30 +05301920 }
1921 }
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05301922
1923 for (i = tx_rateindex + 1; i < hw->max_rates; i++)
1924 tx_info->status.rates[i].count = 0;
1925
1926 tx_info->status.rates[tx_rateindex].count = bf->bf_retries + 1;
Sujithc4288392008-11-18 09:09:30 +05301927}
1928
Sujith059d8062009-01-16 21:38:49 +05301929static void ath_wake_mac80211_queue(struct ath_softc *sc, struct ath_txq *txq)
1930{
1931 int qnum;
1932
1933 spin_lock_bh(&txq->axq_lock);
1934 if (txq->stopped &&
Sujithf7a99e42009-02-17 15:36:33 +05301935 sc->tx.txq[txq->axq_qnum].axq_depth <= (ATH_TXBUF - 20)) {
Sujith059d8062009-01-16 21:38:49 +05301936 qnum = ath_get_mac80211_qnum(txq->axq_qnum, sc);
1937 if (qnum != -1) {
Luis R. Rodriguezf52de032009-11-02 17:09:12 -08001938 ath_mac80211_start_queue(sc, qnum);
Sujith059d8062009-01-16 21:38:49 +05301939 txq->stopped = 0;
1940 }
1941 }
1942 spin_unlock_bh(&txq->axq_lock);
1943}
1944
Sujithc4288392008-11-18 09:09:30 +05301945static void ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001946{
Sujithcbe61d82009-02-09 13:27:12 +05301947 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001948 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001949 struct ath_buf *bf, *lastbf, *bf_held = NULL;
1950 struct list_head bf_head;
Sujithc4288392008-11-18 09:09:30 +05301951 struct ath_desc *ds;
Vasanthakumar Thiagarajan0934af22009-03-18 20:22:00 +05301952 int txok;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001953 int status;
1954
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001955 ath_print(common, ATH_DBG_QUEUE, "tx queue %d (%x), link %p\n",
1956 txq->axq_qnum, ath9k_hw_gettxbuf(sc->sc_ah, txq->axq_qnum),
1957 txq->axq_link);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001958
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001959 for (;;) {
1960 spin_lock_bh(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001961 if (list_empty(&txq->axq_q)) {
1962 txq->axq_link = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001963 spin_unlock_bh(&txq->axq_lock);
1964 break;
1965 }
1966 bf = list_first_entry(&txq->axq_q, struct ath_buf, list);
1967
1968 /*
1969 * There is a race condition that a BH gets scheduled
1970 * after sw writes TxE and before hw re-load the last
1971 * descriptor to get the newly chained one.
1972 * Software must keep the last DONE descriptor as a
1973 * holding descriptor - software does so by marking
1974 * it with the STALE flag.
1975 */
1976 bf_held = NULL;
Sujitha119cc42009-03-30 15:28:38 +05301977 if (bf->bf_stale) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001978 bf_held = bf;
1979 if (list_is_last(&bf_held->list, &txq->axq_q)) {
Sujith6ef9b132009-01-16 21:38:51 +05301980 spin_unlock_bh(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001981 break;
1982 } else {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001983 bf = list_entry(bf_held->list.next,
Sujith6ef9b132009-01-16 21:38:51 +05301984 struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001985 }
1986 }
1987
1988 lastbf = bf->bf_lastbf;
Sujithe8324352009-01-16 21:38:42 +05301989 ds = lastbf->bf_desc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001990
1991 status = ath9k_hw_txprocdesc(ah, ds);
1992 if (status == -EINPROGRESS) {
1993 spin_unlock_bh(&txq->axq_lock);
1994 break;
1995 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001996
1997 /*
1998 * Remove ath_buf's of the same transmit unit from txq,
1999 * however leave the last descriptor back as the holding
2000 * descriptor for hw.
2001 */
Sujitha119cc42009-03-30 15:28:38 +05302002 lastbf->bf_stale = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002003 INIT_LIST_HEAD(&bf_head);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002004 if (!list_is_singular(&lastbf->list))
2005 list_cut_position(&bf_head,
2006 &txq->axq_q, lastbf->list.prev);
2007
2008 txq->axq_depth--;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002009 txok = (ds->ds_txstat.ts_status == 0);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002010 txq->axq_tx_inprogress = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002011 spin_unlock_bh(&txq->axq_lock);
2012
2013 if (bf_held) {
Sujithb77f4832008-12-07 21:44:03 +05302014 spin_lock_bh(&sc->tx.txbuflock);
Sujith6ef9b132009-01-16 21:38:51 +05302015 list_move_tail(&bf_held->list, &sc->tx.txbuf);
Sujithb77f4832008-12-07 21:44:03 +05302016 spin_unlock_bh(&sc->tx.txbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002017 }
2018
Sujithcd3d39a2008-08-11 14:03:34 +05302019 if (!bf_isampdu(bf)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002020 /*
2021 * This frame is sent out as a single frame.
2022 * Use hardware retry status for this frame.
2023 */
2024 bf->bf_retries = ds->ds_txstat.ts_longretry;
2025 if (ds->ds_txstat.ts_status & ATH9K_TXERR_XRETRY)
Sujithcd3d39a2008-08-11 14:03:34 +05302026 bf->bf_state.bf_type |= BUF_XRETRY;
Vasanthakumar Thiagarajan8a92e2e2009-03-20 15:27:49 +05302027 ath_tx_rc_status(bf, ds, 0, txok, true);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002028 }
Johannes Berge6a98542008-10-21 12:40:02 +02002029
Sujithcd3d39a2008-08-11 14:03:34 +05302030 if (bf_isampdu(bf))
Sujithd43f30152009-01-16 21:38:53 +05302031 ath_tx_complete_aggr(sc, txq, bf, &bf_head, txok);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002032 else
Sujithfec247c2009-07-27 12:08:16 +05302033 ath_tx_complete_buf(sc, bf, txq, &bf_head, txok, 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002034
Sujith059d8062009-01-16 21:38:49 +05302035 ath_wake_mac80211_queue(sc, txq);
2036
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002037 spin_lock_bh(&txq->axq_lock);
Sujith672840a2008-08-11 14:05:08 +05302038 if (sc->sc_flags & SC_OP_TXAGGR)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002039 ath_txq_schedule(sc, txq);
2040 spin_unlock_bh(&txq->axq_lock);
2041 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002042}
2043
Sujith305fe472009-07-23 15:32:29 +05302044static void ath_tx_complete_poll_work(struct work_struct *work)
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002045{
2046 struct ath_softc *sc = container_of(work, struct ath_softc,
2047 tx_complete_work.work);
2048 struct ath_txq *txq;
2049 int i;
2050 bool needreset = false;
2051
2052 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
2053 if (ATH_TXQ_SETUP(sc, i)) {
2054 txq = &sc->tx.txq[i];
2055 spin_lock_bh(&txq->axq_lock);
2056 if (txq->axq_depth) {
2057 if (txq->axq_tx_inprogress) {
2058 needreset = true;
2059 spin_unlock_bh(&txq->axq_lock);
2060 break;
2061 } else {
2062 txq->axq_tx_inprogress = true;
2063 }
2064 }
2065 spin_unlock_bh(&txq->axq_lock);
2066 }
2067
2068 if (needreset) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002069 ath_print(ath9k_hw_common(sc->sc_ah), ATH_DBG_RESET,
2070 "tx hung, resetting the chip\n");
Sujith332c5562009-10-09 09:51:28 +05302071 ath9k_ps_wakeup(sc);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002072 ath_reset(sc, false);
Sujith332c5562009-10-09 09:51:28 +05302073 ath9k_ps_restore(sc);
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002074 }
2075
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002076 ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work,
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002077 msecs_to_jiffies(ATH_TX_COMPLETE_POLL_INT));
2078}
2079
2080
Sujithe8324352009-01-16 21:38:42 +05302081
2082void ath_tx_tasklet(struct ath_softc *sc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002083{
Sujithe8324352009-01-16 21:38:42 +05302084 int i;
2085 u32 qcumask = ((1 << ATH9K_NUM_TX_QUEUES) - 1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002086
Sujithe8324352009-01-16 21:38:42 +05302087 ath9k_hw_gettxintrtxqs(sc->sc_ah, &qcumask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002088
2089 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
Sujithe8324352009-01-16 21:38:42 +05302090 if (ATH_TXQ_SETUP(sc, i) && (qcumask & (1 << i)))
2091 ath_tx_processq(sc, &sc->tx.txq[i]);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002092 }
2093}
2094
Sujithe8324352009-01-16 21:38:42 +05302095/*****************/
2096/* Init, Cleanup */
2097/*****************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002098
2099int ath_tx_init(struct ath_softc *sc, int nbufs)
2100{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002101 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002102 int error = 0;
2103
Sujith797fe5cb2009-03-30 15:28:45 +05302104 spin_lock_init(&sc->tx.txbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002105
Sujith797fe5cb2009-03-30 15:28:45 +05302106 error = ath_descdma_setup(sc, &sc->tx.txdma, &sc->tx.txbuf,
2107 "tx", nbufs, 1);
2108 if (error != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002109 ath_print(common, ATH_DBG_FATAL,
2110 "Failed to allocate tx descriptors: %d\n", error);
Sujith797fe5cb2009-03-30 15:28:45 +05302111 goto err;
2112 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002113
Sujith797fe5cb2009-03-30 15:28:45 +05302114 error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf,
2115 "beacon", ATH_BCBUF, 1);
2116 if (error != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002117 ath_print(common, ATH_DBG_FATAL,
2118 "Failed to allocate beacon descriptors: %d\n", error);
Sujith797fe5cb2009-03-30 15:28:45 +05302119 goto err;
2120 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002121
Senthil Balasubramanian164ace32009-07-14 20:17:09 -04002122 INIT_DELAYED_WORK(&sc->tx_complete_work, ath_tx_complete_poll_work);
2123
Sujith797fe5cb2009-03-30 15:28:45 +05302124err:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002125 if (error != 0)
2126 ath_tx_cleanup(sc);
2127
2128 return error;
2129}
2130
Sujith797fe5cb2009-03-30 15:28:45 +05302131void ath_tx_cleanup(struct ath_softc *sc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002132{
Sujithb77f4832008-12-07 21:44:03 +05302133 if (sc->beacon.bdma.dd_desc_len != 0)
2134 ath_descdma_cleanup(sc, &sc->beacon.bdma, &sc->beacon.bbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002135
Sujithb77f4832008-12-07 21:44:03 +05302136 if (sc->tx.txdma.dd_desc_len != 0)
2137 ath_descdma_cleanup(sc, &sc->tx.txdma, &sc->tx.txbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002138}
2139
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002140void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an)
2141{
Sujithc5170162008-10-29 10:13:59 +05302142 struct ath_atx_tid *tid;
2143 struct ath_atx_ac *ac;
2144 int tidno, acno;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002145
Sujith8ee5afb2008-12-07 21:43:36 +05302146 for (tidno = 0, tid = &an->tid[tidno];
Sujithc5170162008-10-29 10:13:59 +05302147 tidno < WME_NUM_TID;
2148 tidno++, tid++) {
2149 tid->an = an;
2150 tid->tidno = tidno;
2151 tid->seq_start = tid->seq_next = 0;
2152 tid->baw_size = WME_MAX_BA;
2153 tid->baw_head = tid->baw_tail = 0;
2154 tid->sched = false;
Sujithe8324352009-01-16 21:38:42 +05302155 tid->paused = false;
Sujitha37c2c72008-10-29 10:15:40 +05302156 tid->state &= ~AGGR_CLEANUP;
Sujithc5170162008-10-29 10:13:59 +05302157 INIT_LIST_HEAD(&tid->buf_q);
Sujithc5170162008-10-29 10:13:59 +05302158 acno = TID_TO_WME_AC(tidno);
Sujith8ee5afb2008-12-07 21:43:36 +05302159 tid->ac = &an->ac[acno];
Sujitha37c2c72008-10-29 10:15:40 +05302160 tid->state &= ~AGGR_ADDBA_COMPLETE;
2161 tid->state &= ~AGGR_ADDBA_PROGRESS;
Sujithc5170162008-10-29 10:13:59 +05302162 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002163
Sujith8ee5afb2008-12-07 21:43:36 +05302164 for (acno = 0, ac = &an->ac[acno];
Sujithc5170162008-10-29 10:13:59 +05302165 acno < WME_NUM_AC; acno++, ac++) {
2166 ac->sched = false;
2167 INIT_LIST_HEAD(&ac->tid_q);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002168
Sujithc5170162008-10-29 10:13:59 +05302169 switch (acno) {
2170 case WME_AC_BE:
2171 ac->qnum = ath_tx_get_qnum(sc,
2172 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
2173 break;
2174 case WME_AC_BK:
2175 ac->qnum = ath_tx_get_qnum(sc,
2176 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BK);
2177 break;
2178 case WME_AC_VI:
2179 ac->qnum = ath_tx_get_qnum(sc,
2180 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VI);
2181 break;
2182 case WME_AC_VO:
2183 ac->qnum = ath_tx_get_qnum(sc,
2184 ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VO);
2185 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002186 }
2187 }
2188}
2189
Sujithb5aa9bf2008-10-29 10:13:31 +05302190void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002191{
2192 int i;
2193 struct ath_atx_ac *ac, *ac_tmp;
2194 struct ath_atx_tid *tid, *tid_tmp;
2195 struct ath_txq *txq;
Sujithe8324352009-01-16 21:38:42 +05302196
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002197 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) {
2198 if (ATH_TXQ_SETUP(sc, i)) {
Sujithb77f4832008-12-07 21:44:03 +05302199 txq = &sc->tx.txq[i];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002200
Sujithb5aa9bf2008-10-29 10:13:31 +05302201 spin_lock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002202
2203 list_for_each_entry_safe(ac,
2204 ac_tmp, &txq->axq_acq, list) {
2205 tid = list_first_entry(&ac->tid_q,
2206 struct ath_atx_tid, list);
2207 if (tid && tid->an != an)
2208 continue;
2209 list_del(&ac->list);
2210 ac->sched = false;
2211
2212 list_for_each_entry_safe(tid,
2213 tid_tmp, &ac->tid_q, list) {
2214 list_del(&tid->list);
2215 tid->sched = false;
Sujithb5aa9bf2008-10-29 10:13:31 +05302216 ath_tid_drain(sc, txq, tid);
Sujitha37c2c72008-10-29 10:15:40 +05302217 tid->state &= ~AGGR_ADDBA_COMPLETE;
Sujitha37c2c72008-10-29 10:15:40 +05302218 tid->state &= ~AGGR_CLEANUP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002219 }
2220 }
2221
Sujithb5aa9bf2008-10-29 10:13:31 +05302222 spin_unlock(&txq->axq_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002223 }
2224 }
2225}