]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/ath/if_ath_tx.c
Upgrade to OpenSSH 6.6p1.
[FreeBSD/FreeBSD.git] / sys / dev / ath / if_ath_tx.c
1 /*-
2  * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3  * Copyright (c) 2010-2012 Adrian Chadd, Xenion Pty Ltd
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer,
11  *    without modification.
12  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
13  *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
14  *    redistribution must be conditioned upon including a substantially
15  *    similar Disclaimer requirement for further binary redistribution.
16  *
17  * NO WARRANTY
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
21  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22  * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
23  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
26  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28  * THE POSSIBILITY OF SUCH DAMAGES.
29  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 /*
35  * Driver for the Atheros Wireless LAN controller.
36  *
37  * This software is derived from work of Atsushi Onoe; his contribution
38  * is greatly appreciated.
39  */
40
41 #include "opt_inet.h"
42 #include "opt_ath.h"
43 #include "opt_wlan.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/sysctl.h>
48 #include <sys/mbuf.h>
49 #include <sys/malloc.h>
50 #include <sys/lock.h>
51 #include <sys/mutex.h>
52 #include <sys/kernel.h>
53 #include <sys/socket.h>
54 #include <sys/sockio.h>
55 #include <sys/errno.h>
56 #include <sys/callout.h>
57 #include <sys/bus.h>
58 #include <sys/endian.h>
59 #include <sys/kthread.h>
60 #include <sys/taskqueue.h>
61 #include <sys/priv.h>
62 #include <sys/ktr.h>
63
64 #include <machine/bus.h>
65
66 #include <net/if.h>
67 #include <net/if_var.h>
68 #include <net/if_dl.h>
69 #include <net/if_media.h>
70 #include <net/if_types.h>
71 #include <net/if_arp.h>
72 #include <net/ethernet.h>
73 #include <net/if_llc.h>
74
75 #include <net80211/ieee80211_var.h>
76 #include <net80211/ieee80211_regdomain.h>
77 #ifdef IEEE80211_SUPPORT_SUPERG
78 #include <net80211/ieee80211_superg.h>
79 #endif
80 #ifdef IEEE80211_SUPPORT_TDMA
81 #include <net80211/ieee80211_tdma.h>
82 #endif
83 #include <net80211/ieee80211_ht.h>
84
85 #include <net/bpf.h>
86
87 #ifdef INET
88 #include <netinet/in.h>
89 #include <netinet/if_ether.h>
90 #endif
91
92 #include <dev/ath/if_athvar.h>
93 #include <dev/ath/ath_hal/ah_devid.h>           /* XXX for softled */
94 #include <dev/ath/ath_hal/ah_diagcodes.h>
95
96 #include <dev/ath/if_ath_debug.h>
97
98 #ifdef ATH_TX99_DIAG
99 #include <dev/ath/ath_tx99/ath_tx99.h>
100 #endif
101
102 #include <dev/ath/if_ath_misc.h>
103 #include <dev/ath/if_ath_tx.h>
104 #include <dev/ath/if_ath_tx_ht.h>
105
106 #ifdef  ATH_DEBUG_ALQ
107 #include <dev/ath/if_ath_alq.h>
108 #endif
109
110 /*
111  * How many retries to perform in software
112  */
113 #define SWMAX_RETRIES           10
114
115 /*
116  * What queue to throw the non-QoS TID traffic into
117  */
118 #define ATH_NONQOS_TID_AC       WME_AC_VO
119
120 #if 0
121 static int ath_tx_node_is_asleep(struct ath_softc *sc, struct ath_node *an);
122 #endif
123 static int ath_tx_ampdu_pending(struct ath_softc *sc, struct ath_node *an,
124     int tid);
125 static int ath_tx_ampdu_running(struct ath_softc *sc, struct ath_node *an,
126     int tid);
127 static ieee80211_seq ath_tx_tid_seqno_assign(struct ath_softc *sc,
128     struct ieee80211_node *ni, struct ath_buf *bf, struct mbuf *m0);
129 static int ath_tx_action_frame_override_queue(struct ath_softc *sc,
130     struct ieee80211_node *ni, struct mbuf *m0, int *tid);
131 static struct ath_buf *
132 ath_tx_retry_clone(struct ath_softc *sc, struct ath_node *an,
133     struct ath_tid *tid, struct ath_buf *bf);
134
135 #ifdef  ATH_DEBUG_ALQ
136 void
137 ath_tx_alq_post(struct ath_softc *sc, struct ath_buf *bf_first)
138 {
139         struct ath_buf *bf;
140         int i, n;
141         const char *ds;
142
143         /* XXX we should skip out early if debugging isn't enabled! */
144         bf = bf_first;
145
146         while (bf != NULL) {
147                 /* XXX should ensure bf_nseg > 0! */
148                 if (bf->bf_nseg == 0)
149                         break;
150                 n = ((bf->bf_nseg - 1) / sc->sc_tx_nmaps) + 1;
151                 for (i = 0, ds = (const char *) bf->bf_desc;
152                     i < n;
153                     i++, ds += sc->sc_tx_desclen) {
154                         if_ath_alq_post(&sc->sc_alq,
155                             ATH_ALQ_EDMA_TXDESC,
156                             sc->sc_tx_desclen,
157                             ds);
158                 }
159                 bf = bf->bf_next;
160         }
161 }
162 #endif /* ATH_DEBUG_ALQ */
163
164 /*
165  * Whether to use the 11n rate scenario functions or not
166  */
167 static inline int
168 ath_tx_is_11n(struct ath_softc *sc)
169 {
170         return ((sc->sc_ah->ah_magic == 0x20065416) ||
171                     (sc->sc_ah->ah_magic == 0x19741014));
172 }
173
174 /*
175  * Obtain the current TID from the given frame.
176  *
177  * Non-QoS frames need to go into TID 16 (IEEE80211_NONQOS_TID.)
178  * This has implications for which AC/priority the packet is placed
179  * in.
180  */
181 static int
182 ath_tx_gettid(struct ath_softc *sc, const struct mbuf *m0)
183 {
184         const struct ieee80211_frame *wh;
185         int pri = M_WME_GETAC(m0);
186
187         wh = mtod(m0, const struct ieee80211_frame *);
188         if (! IEEE80211_QOS_HAS_SEQ(wh))
189                 return IEEE80211_NONQOS_TID;
190         else
191                 return WME_AC_TO_TID(pri);
192 }
193
194 static void
195 ath_tx_set_retry(struct ath_softc *sc, struct ath_buf *bf)
196 {
197         struct ieee80211_frame *wh;
198
199         wh = mtod(bf->bf_m, struct ieee80211_frame *);
200         /* Only update/resync if needed */
201         if (bf->bf_state.bfs_isretried == 0) {
202                 wh->i_fc[1] |= IEEE80211_FC1_RETRY;
203                 bus_dmamap_sync(sc->sc_dmat, bf->bf_dmamap,
204                     BUS_DMASYNC_PREWRITE);
205         }
206         bf->bf_state.bfs_isretried = 1;
207         bf->bf_state.bfs_retries ++;
208 }
209
210 /*
211  * Determine what the correct AC queue for the given frame
212  * should be.
213  *
214  * This code assumes that the TIDs map consistently to
215  * the underlying hardware (or software) ath_txq.
216  * Since the sender may try to set an AC which is
217  * arbitrary, non-QoS TIDs may end up being put on
218  * completely different ACs. There's no way to put a
219  * TID into multiple ath_txq's for scheduling, so
220  * for now we override the AC/TXQ selection and set
221  * non-QOS TID frames into the BE queue.
222  *
223  * This may be completely incorrect - specifically,
224  * some management frames may end up out of order
225  * compared to the QoS traffic they're controlling.
226  * I'll look into this later.
227  */
228 static int
229 ath_tx_getac(struct ath_softc *sc, const struct mbuf *m0)
230 {
231         const struct ieee80211_frame *wh;
232         int pri = M_WME_GETAC(m0);
233         wh = mtod(m0, const struct ieee80211_frame *);
234         if (IEEE80211_QOS_HAS_SEQ(wh))
235                 return pri;
236
237         return ATH_NONQOS_TID_AC;
238 }
239
240 void
241 ath_txfrag_cleanup(struct ath_softc *sc,
242         ath_bufhead *frags, struct ieee80211_node *ni)
243 {
244         struct ath_buf *bf, *next;
245
246         ATH_TXBUF_LOCK_ASSERT(sc);
247
248         TAILQ_FOREACH_SAFE(bf, frags, bf_list, next) {
249                 /* NB: bf assumed clean */
250                 TAILQ_REMOVE(frags, bf, bf_list);
251                 ath_returnbuf_head(sc, bf);
252                 ieee80211_node_decref(ni);
253         }
254 }
255
256 /*
257  * Setup xmit of a fragmented frame.  Allocate a buffer
258  * for each frag and bump the node reference count to
259  * reflect the held reference to be setup by ath_tx_start.
260  */
261 int
262 ath_txfrag_setup(struct ath_softc *sc, ath_bufhead *frags,
263         struct mbuf *m0, struct ieee80211_node *ni)
264 {
265         struct mbuf *m;
266         struct ath_buf *bf;
267
268         ATH_TXBUF_LOCK(sc);
269         for (m = m0->m_nextpkt; m != NULL; m = m->m_nextpkt) {
270                 /* XXX non-management? */
271                 bf = _ath_getbuf_locked(sc, ATH_BUFTYPE_NORMAL);
272                 if (bf == NULL) {       /* out of buffers, cleanup */
273                         DPRINTF(sc, ATH_DEBUG_XMIT, "%s: no buffer?\n",
274                             __func__);
275                         ath_txfrag_cleanup(sc, frags, ni);
276                         break;
277                 }
278                 ieee80211_node_incref(ni);
279                 TAILQ_INSERT_TAIL(frags, bf, bf_list);
280         }
281         ATH_TXBUF_UNLOCK(sc);
282
283         return !TAILQ_EMPTY(frags);
284 }
285
286 /*
287  * Reclaim mbuf resources.  For fragmented frames we
288  * need to claim each frag chained with m_nextpkt.
289  */
290 void
291 ath_freetx(struct mbuf *m)
292 {
293         struct mbuf *next;
294
295         do {
296                 next = m->m_nextpkt;
297                 m->m_nextpkt = NULL;
298                 m_freem(m);
299         } while ((m = next) != NULL);
300 }
301
302 static int
303 ath_tx_dmasetup(struct ath_softc *sc, struct ath_buf *bf, struct mbuf *m0)
304 {
305         struct mbuf *m;
306         int error;
307
308         /*
309          * Load the DMA map so any coalescing is done.  This
310          * also calculates the number of descriptors we need.
311          */
312         error = bus_dmamap_load_mbuf_sg(sc->sc_dmat, bf->bf_dmamap, m0,
313                                      bf->bf_segs, &bf->bf_nseg,
314                                      BUS_DMA_NOWAIT);
315         if (error == EFBIG) {
316                 /* XXX packet requires too many descriptors */
317                 bf->bf_nseg = ATH_MAX_SCATTER + 1;
318         } else if (error != 0) {
319                 sc->sc_stats.ast_tx_busdma++;
320                 ath_freetx(m0);
321                 return error;
322         }
323         /*
324          * Discard null packets and check for packets that
325          * require too many TX descriptors.  We try to convert
326          * the latter to a cluster.
327          */
328         if (bf->bf_nseg > ATH_MAX_SCATTER) {            /* too many desc's, linearize */
329                 sc->sc_stats.ast_tx_linear++;
330                 m = m_collapse(m0, M_NOWAIT, ATH_MAX_SCATTER);
331                 if (m == NULL) {
332                         ath_freetx(m0);
333                         sc->sc_stats.ast_tx_nombuf++;
334                         return ENOMEM;
335                 }
336                 m0 = m;
337                 error = bus_dmamap_load_mbuf_sg(sc->sc_dmat, bf->bf_dmamap, m0,
338                                              bf->bf_segs, &bf->bf_nseg,
339                                              BUS_DMA_NOWAIT);
340                 if (error != 0) {
341                         sc->sc_stats.ast_tx_busdma++;
342                         ath_freetx(m0);
343                         return error;
344                 }
345                 KASSERT(bf->bf_nseg <= ATH_MAX_SCATTER,
346                     ("too many segments after defrag; nseg %u", bf->bf_nseg));
347         } else if (bf->bf_nseg == 0) {          /* null packet, discard */
348                 sc->sc_stats.ast_tx_nodata++;
349                 ath_freetx(m0);
350                 return EIO;
351         }
352         DPRINTF(sc, ATH_DEBUG_XMIT, "%s: m %p len %u\n",
353                 __func__, m0, m0->m_pkthdr.len);
354         bus_dmamap_sync(sc->sc_dmat, bf->bf_dmamap, BUS_DMASYNC_PREWRITE);
355         bf->bf_m = m0;
356
357         return 0;
358 }
359
360 /*
361  * Chain together segments+descriptors for a frame - 11n or otherwise.
362  *
363  * For aggregates, this is called on each frame in the aggregate.
364  */
365 static void
366 ath_tx_chaindesclist(struct ath_softc *sc, struct ath_desc *ds0,
367     struct ath_buf *bf, int is_aggr, int is_first_subframe,
368     int is_last_subframe)
369 {
370         struct ath_hal *ah = sc->sc_ah;
371         char *ds;
372         int i, bp, dsp;
373         HAL_DMA_ADDR bufAddrList[4];
374         uint32_t segLenList[4];
375         int numTxMaps = 1;
376         int isFirstDesc = 1;
377
378         /*
379          * XXX There's txdma and txdma_mgmt; the descriptor
380          * sizes must match.
381          */
382         struct ath_descdma *dd = &sc->sc_txdma;
383
384         /*
385          * Fillin the remainder of the descriptor info.
386          */
387
388         /*
389          * We need the number of TX data pointers in each descriptor.
390          * EDMA and later chips support 4 TX buffers per descriptor;
391          * previous chips just support one.
392          */
393         numTxMaps = sc->sc_tx_nmaps;
394
395         /*
396          * For EDMA and later chips ensure the TX map is fully populated
397          * before advancing to the next descriptor.
398          */
399         ds = (char *) bf->bf_desc;
400         bp = dsp = 0;
401         bzero(bufAddrList, sizeof(bufAddrList));
402         bzero(segLenList, sizeof(segLenList));
403         for (i = 0; i < bf->bf_nseg; i++) {
404                 bufAddrList[bp] = bf->bf_segs[i].ds_addr;
405                 segLenList[bp] = bf->bf_segs[i].ds_len;
406                 bp++;
407
408                 /*
409                  * Go to the next segment if this isn't the last segment
410                  * and there's space in the current TX map.
411                  */
412                 if ((i != bf->bf_nseg - 1) && (bp < numTxMaps))
413                         continue;
414
415                 /*
416                  * Last segment or we're out of buffer pointers.
417                  */
418                 bp = 0;
419
420                 if (i == bf->bf_nseg - 1)
421                         ath_hal_settxdesclink(ah, (struct ath_desc *) ds, 0);
422                 else
423                         ath_hal_settxdesclink(ah, (struct ath_desc *) ds,
424                             bf->bf_daddr + dd->dd_descsize * (dsp + 1));
425
426                 /*
427                  * XXX This assumes that bfs_txq is the actual destination
428                  * hardware queue at this point.  It may not have been
429                  * assigned, it may actually be pointing to the multicast
430                  * software TXQ id.  These must be fixed!
431                  */
432                 ath_hal_filltxdesc(ah, (struct ath_desc *) ds
433                         , bufAddrList
434                         , segLenList
435                         , bf->bf_descid         /* XXX desc id */
436                         , bf->bf_state.bfs_tx_queue
437                         , isFirstDesc           /* first segment */
438                         , i == bf->bf_nseg - 1  /* last segment */
439                         , (struct ath_desc *) ds0       /* first descriptor */
440                 );
441
442                 /*
443                  * Make sure the 11n aggregate fields are cleared.
444                  *
445                  * XXX TODO: this doesn't need to be called for
446                  * aggregate frames; as it'll be called on all
447                  * sub-frames.  Since the descriptors are in
448                  * non-cacheable memory, this leads to some
449                  * rather slow writes on MIPS/ARM platforms.
450                  */
451                 if (ath_tx_is_11n(sc))
452                         ath_hal_clr11n_aggr(sc->sc_ah, (struct ath_desc *) ds);
453
454                 /*
455                  * If 11n is enabled, set it up as if it's an aggregate
456                  * frame.
457                  */
458                 if (is_last_subframe) {
459                         ath_hal_set11n_aggr_last(sc->sc_ah,
460                             (struct ath_desc *) ds);
461                 } else if (is_aggr) {
462                         /*
463                          * This clears the aggrlen field; so
464                          * the caller needs to call set_aggr_first()!
465                          *
466                          * XXX TODO: don't call this for the first
467                          * descriptor in the first frame in an
468                          * aggregate!
469                          */
470                         ath_hal_set11n_aggr_middle(sc->sc_ah,
471                             (struct ath_desc *) ds,
472                             bf->bf_state.bfs_ndelim);
473                 }
474                 isFirstDesc = 0;
475                 bf->bf_lastds = (struct ath_desc *) ds;
476
477                 /*
478                  * Don't forget to skip to the next descriptor.
479                  */
480                 ds += sc->sc_tx_desclen;
481                 dsp++;
482
483                 /*
484                  * .. and don't forget to blank these out!
485                  */
486                 bzero(bufAddrList, sizeof(bufAddrList));
487                 bzero(segLenList, sizeof(segLenList));
488         }
489         bus_dmamap_sync(sc->sc_dmat, bf->bf_dmamap, BUS_DMASYNC_PREWRITE);
490 }
491
492 /*
493  * Set the rate control fields in the given descriptor based on
494  * the bf_state fields and node state.
495  *
496  * The bfs fields should already be set with the relevant rate
497  * control information, including whether MRR is to be enabled.
498  *
499  * Since the FreeBSD HAL currently sets up the first TX rate
500  * in ath_hal_setuptxdesc(), this will setup the MRR
501  * conditionally for the pre-11n chips, and call ath_buf_set_rate
502  * unconditionally for 11n chips. These require the 11n rate
503  * scenario to be set if MCS rates are enabled, so it's easier
504  * to just always call it. The caller can then only set rates 2, 3
505  * and 4 if multi-rate retry is needed.
506  */
507 static void
508 ath_tx_set_ratectrl(struct ath_softc *sc, struct ieee80211_node *ni,
509     struct ath_buf *bf)
510 {
511         struct ath_rc_series *rc = bf->bf_state.bfs_rc;
512
513         /* If mrr is disabled, blank tries 1, 2, 3 */
514         if (! bf->bf_state.bfs_ismrr)
515                 rc[1].tries = rc[2].tries = rc[3].tries = 0;
516
517 #if 0
518         /*
519          * If NOACK is set, just set ntries=1.
520          */
521         else if (bf->bf_state.bfs_txflags & HAL_TXDESC_NOACK) {
522                 rc[1].tries = rc[2].tries = rc[3].tries = 0;
523                 rc[0].tries = 1;
524         }
525 #endif
526
527         /*
528          * Always call - that way a retried descriptor will
529          * have the MRR fields overwritten.
530          *
531          * XXX TODO: see if this is really needed - setting up
532          * the first descriptor should set the MRR fields to 0
533          * for us anyway.
534          */
535         if (ath_tx_is_11n(sc)) {
536                 ath_buf_set_rate(sc, ni, bf);
537         } else {
538                 ath_hal_setupxtxdesc(sc->sc_ah, bf->bf_desc
539                         , rc[1].ratecode, rc[1].tries
540                         , rc[2].ratecode, rc[2].tries
541                         , rc[3].ratecode, rc[3].tries
542                 );
543         }
544 }
545
546 /*
547  * Setup segments+descriptors for an 11n aggregate.
548  * bf_first is the first buffer in the aggregate.
549  * The descriptor list must already been linked together using
550  * bf->bf_next.
551  */
552 static void
553 ath_tx_setds_11n(struct ath_softc *sc, struct ath_buf *bf_first)
554 {
555         struct ath_buf *bf, *bf_prev = NULL;
556         struct ath_desc *ds0 = bf_first->bf_desc;
557
558         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR, "%s: nframes=%d, al=%d\n",
559             __func__, bf_first->bf_state.bfs_nframes,
560             bf_first->bf_state.bfs_al);
561
562         bf = bf_first;
563
564         if (bf->bf_state.bfs_txrate0 == 0)
565                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR, "%s: bf=%p, txrate0=%d\n",
566                     __func__, bf, 0);
567         if (bf->bf_state.bfs_rc[0].ratecode == 0)
568                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR, "%s: bf=%p, rix0=%d\n",
569                     __func__, bf, 0);
570
571         /*
572          * Setup all descriptors of all subframes - this will
573          * call ath_hal_set11naggrmiddle() on every frame.
574          */
575         while (bf != NULL) {
576                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
577                     "%s: bf=%p, nseg=%d, pktlen=%d, seqno=%d\n",
578                     __func__, bf, bf->bf_nseg, bf->bf_state.bfs_pktlen,
579                     SEQNO(bf->bf_state.bfs_seqno));
580
581                 /*
582                  * Setup the initial fields for the first descriptor - all
583                  * the non-11n specific stuff.
584                  */
585                 ath_hal_setuptxdesc(sc->sc_ah, bf->bf_desc
586                         , bf->bf_state.bfs_pktlen       /* packet length */
587                         , bf->bf_state.bfs_hdrlen       /* header length */
588                         , bf->bf_state.bfs_atype        /* Atheros packet type */
589                         , bf->bf_state.bfs_txpower      /* txpower */
590                         , bf->bf_state.bfs_txrate0
591                         , bf->bf_state.bfs_try0         /* series 0 rate/tries */
592                         , bf->bf_state.bfs_keyix        /* key cache index */
593                         , bf->bf_state.bfs_txantenna    /* antenna mode */
594                         , bf->bf_state.bfs_txflags | HAL_TXDESC_INTREQ  /* flags */
595                         , bf->bf_state.bfs_ctsrate      /* rts/cts rate */
596                         , bf->bf_state.bfs_ctsduration  /* rts/cts duration */
597                 );
598
599                 /*
600                  * First descriptor? Setup the rate control and initial
601                  * aggregate header information.
602                  */
603                 if (bf == bf_first) {
604                         /*
605                          * setup first desc with rate and aggr info
606                          */
607                         ath_tx_set_ratectrl(sc, bf->bf_node, bf);
608                 }
609
610                 /*
611                  * Setup the descriptors for a multi-descriptor frame.
612                  * This is both aggregate and non-aggregate aware.
613                  */
614                 ath_tx_chaindesclist(sc, ds0, bf,
615                     1, /* is_aggr */
616                     !! (bf == bf_first), /* is_first_subframe */
617                     !! (bf->bf_next == NULL) /* is_last_subframe */
618                     );
619
620                 if (bf == bf_first) {
621                         /*
622                          * Initialise the first 11n aggregate with the
623                          * aggregate length and aggregate enable bits.
624                          */
625                         ath_hal_set11n_aggr_first(sc->sc_ah,
626                             ds0,
627                             bf->bf_state.bfs_al,
628                             bf->bf_state.bfs_ndelim);
629                 }
630
631                 /*
632                  * Link the last descriptor of the previous frame
633                  * to the beginning descriptor of this frame.
634                  */
635                 if (bf_prev != NULL)
636                         ath_hal_settxdesclink(sc->sc_ah, bf_prev->bf_lastds,
637                             bf->bf_daddr);
638
639                 /* Save a copy so we can link the next descriptor in */
640                 bf_prev = bf;
641                 bf = bf->bf_next;
642         }
643
644         /*
645          * Set the first descriptor bf_lastds field to point to
646          * the last descriptor in the last subframe, that's where
647          * the status update will occur.
648          */
649         bf_first->bf_lastds = bf_prev->bf_lastds;
650
651         /*
652          * And bf_last in the first descriptor points to the end of
653          * the aggregate list.
654          */
655         bf_first->bf_last = bf_prev;
656
657         /*
658          * For non-AR9300 NICs, which require the rate control
659          * in the final descriptor - let's set that up now.
660          *
661          * This is because the filltxdesc() HAL call doesn't
662          * populate the last segment with rate control information
663          * if firstSeg is also true.  For non-aggregate frames
664          * that is fine, as the first frame already has rate control
665          * info.  But if the last frame in an aggregate has one
666          * descriptor, both firstseg and lastseg will be true and
667          * the rate info isn't copied.
668          *
669          * This is inefficient on MIPS/ARM platforms that have
670          * non-cachable memory for TX descriptors, but we'll just
671          * make do for now.
672          *
673          * As to why the rate table is stashed in the last descriptor
674          * rather than the first descriptor?  Because proctxdesc()
675          * is called on the final descriptor in an MPDU or A-MPDU -
676          * ie, the one that gets updated by the hardware upon
677          * completion.  That way proctxdesc() doesn't need to know
678          * about the first _and_ last TX descriptor.
679          */
680         ath_hal_setuplasttxdesc(sc->sc_ah, bf_prev->bf_lastds, ds0);
681
682         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR, "%s: end\n", __func__);
683 }
684
685 /*
686  * Hand-off a frame to the multicast TX queue.
687  *
688  * This is a software TXQ which will be appended to the CAB queue
689  * during the beacon setup code.
690  *
691  * XXX TODO: since the AR9300 EDMA TX queue support wants the QCU ID
692  * as part of the TX descriptor, bf_state.bfs_tx_queue must be updated
693  * with the actual hardware txq, or all of this will fall apart.
694  *
695  * XXX It may not be a bad idea to just stuff the QCU ID into bf_state
696  * and retire bfs_tx_queue; then make sure the CABQ QCU ID is populated
697  * correctly.
698  */
699 static void
700 ath_tx_handoff_mcast(struct ath_softc *sc, struct ath_txq *txq,
701     struct ath_buf *bf)
702 {
703         ATH_TX_LOCK_ASSERT(sc);
704
705         KASSERT((bf->bf_flags & ATH_BUF_BUSY) == 0,
706              ("%s: busy status 0x%x", __func__, bf->bf_flags));
707
708         /*
709          * Ensure that the tx queue is the cabq, so things get
710          * mapped correctly.
711          */
712         if (bf->bf_state.bfs_tx_queue != sc->sc_cabq->axq_qnum) {
713                 DPRINTF(sc, ATH_DEBUG_XMIT,
714                     "%s: bf=%p, bfs_tx_queue=%d, axq_qnum=%d\n",
715                     __func__, bf, bf->bf_state.bfs_tx_queue,
716                     txq->axq_qnum);
717         }
718
719         ATH_TXQ_LOCK(txq);
720         if (ATH_TXQ_LAST(txq, axq_q_s) != NULL) {
721                 struct ath_buf *bf_last = ATH_TXQ_LAST(txq, axq_q_s);
722                 struct ieee80211_frame *wh;
723
724                 /* mark previous frame */
725                 wh = mtod(bf_last->bf_m, struct ieee80211_frame *);
726                 wh->i_fc[1] |= IEEE80211_FC1_MORE_DATA;
727                 bus_dmamap_sync(sc->sc_dmat, bf_last->bf_dmamap,
728                     BUS_DMASYNC_PREWRITE);
729
730                 /* link descriptor */
731                 ath_hal_settxdesclink(sc->sc_ah,
732                     bf_last->bf_lastds,
733                     bf->bf_daddr);
734         }
735         ATH_TXQ_INSERT_TAIL(txq, bf, bf_list);
736         ATH_TXQ_UNLOCK(txq);
737 }
738
739 /*
740  * Hand-off packet to a hardware queue.
741  */
742 static void
743 ath_tx_handoff_hw(struct ath_softc *sc, struct ath_txq *txq,
744     struct ath_buf *bf)
745 {
746         struct ath_hal *ah = sc->sc_ah;
747         struct ath_buf *bf_first;
748
749         /*
750          * Insert the frame on the outbound list and pass it on
751          * to the hardware.  Multicast frames buffered for power
752          * save stations and transmit from the CAB queue are stored
753          * on a s/w only queue and loaded on to the CAB queue in
754          * the SWBA handler since frames only go out on DTIM and
755          * to avoid possible races.
756          */
757         ATH_TX_LOCK_ASSERT(sc);
758         KASSERT((bf->bf_flags & ATH_BUF_BUSY) == 0,
759              ("%s: busy status 0x%x", __func__, bf->bf_flags));
760         KASSERT(txq->axq_qnum != ATH_TXQ_SWQ,
761              ("ath_tx_handoff_hw called for mcast queue"));
762
763         /*
764          * XXX racy, should hold the PCU lock when checking this,
765          * and also should ensure that the TX counter is >0!
766          */
767         KASSERT((sc->sc_inreset_cnt == 0),
768             ("%s: TX during reset?\n", __func__));
769
770 #if 0
771         /*
772          * This causes a LOR. Find out where the PCU lock is being
773          * held whilst the TXQ lock is grabbed - that shouldn't
774          * be occuring.
775          */
776         ATH_PCU_LOCK(sc);
777         if (sc->sc_inreset_cnt) {
778                 ATH_PCU_UNLOCK(sc);
779                 DPRINTF(sc, ATH_DEBUG_RESET,
780                     "%s: called with sc_in_reset != 0\n",
781                     __func__);
782                 DPRINTF(sc, ATH_DEBUG_XMIT,
783                     "%s: queued: TXDP[%u] = %p (%p) depth %d\n",
784                     __func__, txq->axq_qnum,
785                     (caddr_t)bf->bf_daddr, bf->bf_desc,
786                     txq->axq_depth);
787                 /* XXX axq_link needs to be set and updated! */
788                 ATH_TXQ_INSERT_TAIL(txq, bf, bf_list);
789                 if (bf->bf_state.bfs_aggr)
790                         txq->axq_aggr_depth++;
791                 return;
792                 }
793         ATH_PCU_UNLOCK(sc);
794 #endif
795
796         ATH_TXQ_LOCK(txq);
797
798         /*
799          * XXX TODO: if there's a holdingbf, then
800          * ATH_TXQ_PUTRUNNING should be clear.
801          *
802          * If there is a holdingbf and the list is empty,
803          * then axq_link should be pointing to the holdingbf.
804          *
805          * Otherwise it should point to the last descriptor
806          * in the last ath_buf.
807          *
808          * In any case, we should really ensure that we
809          * update the previous descriptor link pointer to
810          * this descriptor, regardless of all of the above state.
811          *
812          * For now this is captured by having axq_link point
813          * to either the holdingbf (if the TXQ list is empty)
814          * or the end of the list (if the TXQ list isn't empty.)
815          * I'd rather just kill axq_link here and do it as above.
816          */
817
818         /*
819          * Append the frame to the TX queue.
820          */
821         ATH_TXQ_INSERT_TAIL(txq, bf, bf_list);
822         ATH_KTR(sc, ATH_KTR_TX, 3,
823             "ath_tx_handoff: non-tdma: txq=%u, add bf=%p "
824             "depth=%d",
825             txq->axq_qnum,
826             bf,
827             txq->axq_depth);
828
829         /*
830          * If there's a link pointer, update it.
831          *
832          * XXX we should replace this with the above logic, just
833          * to kill axq_link with fire.
834          */
835         if (txq->axq_link != NULL) {
836                 *txq->axq_link = bf->bf_daddr;
837                 DPRINTF(sc, ATH_DEBUG_XMIT,
838                     "%s: link[%u](%p)=%p (%p) depth %d\n", __func__,
839                     txq->axq_qnum, txq->axq_link,
840                     (caddr_t)bf->bf_daddr, bf->bf_desc,
841                     txq->axq_depth);
842                 ATH_KTR(sc, ATH_KTR_TX, 5,
843                     "ath_tx_handoff: non-tdma: link[%u](%p)=%p (%p) "
844                     "lastds=%d",
845                     txq->axq_qnum, txq->axq_link,
846                     (caddr_t)bf->bf_daddr, bf->bf_desc,
847                     bf->bf_lastds);
848         }
849
850         /*
851          * If we've not pushed anything into the hardware yet,
852          * push the head of the queue into the TxDP.
853          *
854          * Once we've started DMA, there's no guarantee that
855          * updating the TxDP with a new value will actually work.
856          * So we just don't do that - if we hit the end of the list,
857          * we keep that buffer around (the "holding buffer") and
858          * re-start DMA by updating the link pointer of _that_
859          * descriptor and then restart DMA.
860          */
861         if (! (txq->axq_flags & ATH_TXQ_PUTRUNNING)) {
862                 bf_first = TAILQ_FIRST(&txq->axq_q);
863                 txq->axq_flags |= ATH_TXQ_PUTRUNNING;
864                 ath_hal_puttxbuf(ah, txq->axq_qnum, bf_first->bf_daddr);
865                 DPRINTF(sc, ATH_DEBUG_XMIT,
866                     "%s: TXDP[%u] = %p (%p) depth %d\n",
867                     __func__, txq->axq_qnum,
868                     (caddr_t)bf_first->bf_daddr, bf_first->bf_desc,
869                     txq->axq_depth);
870                 ATH_KTR(sc, ATH_KTR_TX, 5,
871                     "ath_tx_handoff: TXDP[%u] = %p (%p) "
872                     "lastds=%p depth %d",
873                     txq->axq_qnum,
874                     (caddr_t)bf_first->bf_daddr, bf_first->bf_desc,
875                     bf_first->bf_lastds,
876                     txq->axq_depth);
877         }
878
879         /*
880          * Ensure that the bf TXQ matches this TXQ, so later
881          * checking and holding buffer manipulation is sane.
882          */
883         if (bf->bf_state.bfs_tx_queue != txq->axq_qnum) {
884                 DPRINTF(sc, ATH_DEBUG_XMIT,
885                     "%s: bf=%p, bfs_tx_queue=%d, axq_qnum=%d\n",
886                     __func__, bf, bf->bf_state.bfs_tx_queue,
887                     txq->axq_qnum);
888         }
889
890         /*
891          * Track aggregate queue depth.
892          */
893         if (bf->bf_state.bfs_aggr)
894                 txq->axq_aggr_depth++;
895
896         /*
897          * Update the link pointer.
898          */
899         ath_hal_gettxdesclinkptr(ah, bf->bf_lastds, &txq->axq_link);
900
901         /*
902          * Start DMA.
903          *
904          * If we wrote a TxDP above, DMA will start from here.
905          *
906          * If DMA is running, it'll do nothing.
907          *
908          * If the DMA engine hit the end of the QCU list (ie LINK=NULL,
909          * or VEOL) then it stops at the last transmitted write.
910          * We then append a new frame by updating the link pointer
911          * in that descriptor and then kick TxE here; it will re-read
912          * that last descriptor and find the new descriptor to transmit.
913          *
914          * This is why we keep the holding descriptor around.
915          */
916         ath_hal_txstart(ah, txq->axq_qnum);
917         ATH_TXQ_UNLOCK(txq);
918         ATH_KTR(sc, ATH_KTR_TX, 1,
919             "ath_tx_handoff: txq=%u, txstart", txq->axq_qnum);
920 }
921
922 /*
923  * Restart TX DMA for the given TXQ.
924  *
925  * This must be called whether the queue is empty or not.
926  */
927 static void
928 ath_legacy_tx_dma_restart(struct ath_softc *sc, struct ath_txq *txq)
929 {
930         struct ath_buf *bf, *bf_last;
931
932         ATH_TXQ_LOCK_ASSERT(txq);
933
934         /* XXX make this ATH_TXQ_FIRST */
935         bf = TAILQ_FIRST(&txq->axq_q);
936         bf_last = ATH_TXQ_LAST(txq, axq_q_s);
937
938         if (bf == NULL)
939                 return;
940
941         DPRINTF(sc, ATH_DEBUG_RESET,
942             "%s: Q%d: bf=%p, bf_last=%p, daddr=0x%08x\n",
943             __func__,
944             txq->axq_qnum,
945             bf,
946             bf_last,
947             (uint32_t) bf->bf_daddr);
948
949 #ifdef  ATH_DEBUG
950         if (sc->sc_debug & ATH_DEBUG_RESET)
951                 ath_tx_dump(sc, txq);
952 #endif
953
954         /*
955          * This is called from a restart, so DMA is known to be
956          * completely stopped.
957          */
958         KASSERT((!(txq->axq_flags & ATH_TXQ_PUTRUNNING)),
959             ("%s: Q%d: called with PUTRUNNING=1\n",
960             __func__,
961             txq->axq_qnum));
962
963         ath_hal_puttxbuf(sc->sc_ah, txq->axq_qnum, bf->bf_daddr);
964         txq->axq_flags |= ATH_TXQ_PUTRUNNING;
965
966         ath_hal_gettxdesclinkptr(sc->sc_ah, bf_last->bf_lastds,
967             &txq->axq_link);
968         ath_hal_txstart(sc->sc_ah, txq->axq_qnum);
969 }
970
971 /*
972  * Hand off a packet to the hardware (or mcast queue.)
973  *
974  * The relevant hardware txq should be locked.
975  */
976 static void
977 ath_legacy_xmit_handoff(struct ath_softc *sc, struct ath_txq *txq,
978     struct ath_buf *bf)
979 {
980         ATH_TX_LOCK_ASSERT(sc);
981
982 #ifdef  ATH_DEBUG_ALQ
983         if (if_ath_alq_checkdebug(&sc->sc_alq, ATH_ALQ_EDMA_TXDESC))
984                 ath_tx_alq_post(sc, bf);
985 #endif
986
987         if (txq->axq_qnum == ATH_TXQ_SWQ)
988                 ath_tx_handoff_mcast(sc, txq, bf);
989         else
990                 ath_tx_handoff_hw(sc, txq, bf);
991 }
992
993 static int
994 ath_tx_tag_crypto(struct ath_softc *sc, struct ieee80211_node *ni,
995     struct mbuf *m0, int iswep, int isfrag, int *hdrlen, int *pktlen,
996     int *keyix)
997 {
998         DPRINTF(sc, ATH_DEBUG_XMIT,
999             "%s: hdrlen=%d, pktlen=%d, isfrag=%d, iswep=%d, m0=%p\n",
1000             __func__,
1001             *hdrlen,
1002             *pktlen,
1003             isfrag,
1004             iswep,
1005             m0);
1006
1007         if (iswep) {
1008                 const struct ieee80211_cipher *cip;
1009                 struct ieee80211_key *k;
1010
1011                 /*
1012                  * Construct the 802.11 header+trailer for an encrypted
1013                  * frame. The only reason this can fail is because of an
1014                  * unknown or unsupported cipher/key type.
1015                  */
1016                 k = ieee80211_crypto_encap(ni, m0);
1017                 if (k == NULL) {
1018                         /*
1019                          * This can happen when the key is yanked after the
1020                          * frame was queued.  Just discard the frame; the
1021                          * 802.11 layer counts failures and provides
1022                          * debugging/diagnostics.
1023                          */
1024                         return (0);
1025                 }
1026                 /*
1027                  * Adjust the packet + header lengths for the crypto
1028                  * additions and calculate the h/w key index.  When
1029                  * a s/w mic is done the frame will have had any mic
1030                  * added to it prior to entry so m0->m_pkthdr.len will
1031                  * account for it. Otherwise we need to add it to the
1032                  * packet length.
1033                  */
1034                 cip = k->wk_cipher;
1035                 (*hdrlen) += cip->ic_header;
1036                 (*pktlen) += cip->ic_header + cip->ic_trailer;
1037                 /* NB: frags always have any TKIP MIC done in s/w */
1038                 if ((k->wk_flags & IEEE80211_KEY_SWMIC) == 0 && !isfrag)
1039                         (*pktlen) += cip->ic_miclen;
1040                 (*keyix) = k->wk_keyix;
1041         } else if (ni->ni_ucastkey.wk_cipher == &ieee80211_cipher_none) {
1042                 /*
1043                  * Use station key cache slot, if assigned.
1044                  */
1045                 (*keyix) = ni->ni_ucastkey.wk_keyix;
1046                 if ((*keyix) == IEEE80211_KEYIX_NONE)
1047                         (*keyix) = HAL_TXKEYIX_INVALID;
1048         } else
1049                 (*keyix) = HAL_TXKEYIX_INVALID;
1050
1051         return (1);
1052 }
1053
1054 /*
1055  * Calculate whether interoperability protection is required for
1056  * this frame.
1057  *
1058  * This requires the rate control information be filled in,
1059  * as the protection requirement depends upon the current
1060  * operating mode / PHY.
1061  */
1062 static void
1063 ath_tx_calc_protection(struct ath_softc *sc, struct ath_buf *bf)
1064 {
1065         struct ieee80211_frame *wh;
1066         uint8_t rix;
1067         uint16_t flags;
1068         int shortPreamble;
1069         const HAL_RATE_TABLE *rt = sc->sc_currates;
1070         struct ifnet *ifp = sc->sc_ifp;
1071         struct ieee80211com *ic = ifp->if_l2com;
1072
1073         flags = bf->bf_state.bfs_txflags;
1074         rix = bf->bf_state.bfs_rc[0].rix;
1075         shortPreamble = bf->bf_state.bfs_shpream;
1076         wh = mtod(bf->bf_m, struct ieee80211_frame *);
1077
1078         /*
1079          * If 802.11g protection is enabled, determine whether
1080          * to use RTS/CTS or just CTS.  Note that this is only
1081          * done for OFDM unicast frames.
1082          */
1083         if ((ic->ic_flags & IEEE80211_F_USEPROT) &&
1084             rt->info[rix].phy == IEEE80211_T_OFDM &&
1085             (flags & HAL_TXDESC_NOACK) == 0) {
1086                 bf->bf_state.bfs_doprot = 1;
1087                 /* XXX fragments must use CCK rates w/ protection */
1088                 if (ic->ic_protmode == IEEE80211_PROT_RTSCTS) {
1089                         flags |= HAL_TXDESC_RTSENA;
1090                 } else if (ic->ic_protmode == IEEE80211_PROT_CTSONLY) {
1091                         flags |= HAL_TXDESC_CTSENA;
1092                 }
1093                 /*
1094                  * For frags it would be desirable to use the
1095                  * highest CCK rate for RTS/CTS.  But stations
1096                  * farther away may detect it at a lower CCK rate
1097                  * so use the configured protection rate instead
1098                  * (for now).
1099                  */
1100                 sc->sc_stats.ast_tx_protect++;
1101         }
1102
1103         /*
1104          * If 11n protection is enabled and it's a HT frame,
1105          * enable RTS.
1106          *
1107          * XXX ic_htprotmode or ic_curhtprotmode?
1108          * XXX should it_htprotmode only matter if ic_curhtprotmode 
1109          * XXX indicates it's not a HT pure environment?
1110          */
1111         if ((ic->ic_htprotmode == IEEE80211_PROT_RTSCTS) &&
1112             rt->info[rix].phy == IEEE80211_T_HT &&
1113             (flags & HAL_TXDESC_NOACK) == 0) {
1114                 flags |= HAL_TXDESC_RTSENA;
1115                 sc->sc_stats.ast_tx_htprotect++;
1116         }
1117         bf->bf_state.bfs_txflags = flags;
1118 }
1119
1120 /*
1121  * Update the frame duration given the currently selected rate.
1122  *
1123  * This also updates the frame duration value, so it will require
1124  * a DMA flush.
1125  */
1126 static void
1127 ath_tx_calc_duration(struct ath_softc *sc, struct ath_buf *bf)
1128 {
1129         struct ieee80211_frame *wh;
1130         uint8_t rix;
1131         uint16_t flags;
1132         int shortPreamble;
1133         struct ath_hal *ah = sc->sc_ah;
1134         const HAL_RATE_TABLE *rt = sc->sc_currates;
1135         int isfrag = bf->bf_m->m_flags & M_FRAG;
1136
1137         flags = bf->bf_state.bfs_txflags;
1138         rix = bf->bf_state.bfs_rc[0].rix;
1139         shortPreamble = bf->bf_state.bfs_shpream;
1140         wh = mtod(bf->bf_m, struct ieee80211_frame *);
1141
1142         /*
1143          * Calculate duration.  This logically belongs in the 802.11
1144          * layer but it lacks sufficient information to calculate it.
1145          */
1146         if ((flags & HAL_TXDESC_NOACK) == 0 &&
1147             (wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) != IEEE80211_FC0_TYPE_CTL) {
1148                 u_int16_t dur;
1149                 if (shortPreamble)
1150                         dur = rt->info[rix].spAckDuration;
1151                 else
1152                         dur = rt->info[rix].lpAckDuration;
1153                 if (wh->i_fc[1] & IEEE80211_FC1_MORE_FRAG) {
1154                         dur += dur;             /* additional SIFS+ACK */
1155                         /*
1156                          * Include the size of next fragment so NAV is
1157                          * updated properly.  The last fragment uses only
1158                          * the ACK duration
1159                          *
1160                          * XXX TODO: ensure that the rate lookup for each
1161                          * fragment is the same as the rate used by the
1162                          * first fragment!
1163                          */
1164                         dur += ath_hal_computetxtime(ah,
1165                             rt,
1166                             bf->bf_nextfraglen,
1167                             rix, shortPreamble);
1168                 }
1169                 if (isfrag) {
1170                         /*
1171                          * Force hardware to use computed duration for next
1172                          * fragment by disabling multi-rate retry which updates
1173                          * duration based on the multi-rate duration table.
1174                          */
1175                         bf->bf_state.bfs_ismrr = 0;
1176                         bf->bf_state.bfs_try0 = ATH_TXMGTTRY;
1177                         /* XXX update bfs_rc[0].try? */
1178                 }
1179
1180                 /* Update the duration field itself */
1181                 *(u_int16_t *)wh->i_dur = htole16(dur);
1182         }
1183 }
1184
1185 static uint8_t
1186 ath_tx_get_rtscts_rate(struct ath_hal *ah, const HAL_RATE_TABLE *rt,
1187     int cix, int shortPreamble)
1188 {
1189         uint8_t ctsrate;
1190
1191         /*
1192          * CTS transmit rate is derived from the transmit rate
1193          * by looking in the h/w rate table.  We must also factor
1194          * in whether or not a short preamble is to be used.
1195          */
1196         /* NB: cix is set above where RTS/CTS is enabled */
1197         KASSERT(cix != 0xff, ("cix not setup"));
1198         ctsrate = rt->info[cix].rateCode;
1199
1200         /* XXX this should only matter for legacy rates */
1201         if (shortPreamble)
1202                 ctsrate |= rt->info[cix].shortPreamble;
1203
1204         return (ctsrate);
1205 }
1206
1207 /*
1208  * Calculate the RTS/CTS duration for legacy frames.
1209  */
1210 static int
1211 ath_tx_calc_ctsduration(struct ath_hal *ah, int rix, int cix,
1212     int shortPreamble, int pktlen, const HAL_RATE_TABLE *rt,
1213     int flags)
1214 {
1215         int ctsduration = 0;
1216
1217         /* This mustn't be called for HT modes */
1218         if (rt->info[cix].phy == IEEE80211_T_HT) {
1219                 printf("%s: HT rate where it shouldn't be (0x%x)\n",
1220                     __func__, rt->info[cix].rateCode);
1221                 return (-1);
1222         }
1223
1224         /*
1225          * Compute the transmit duration based on the frame
1226          * size and the size of an ACK frame.  We call into the
1227          * HAL to do the computation since it depends on the
1228          * characteristics of the actual PHY being used.
1229          *
1230          * NB: CTS is assumed the same size as an ACK so we can
1231          *     use the precalculated ACK durations.
1232          */
1233         if (shortPreamble) {
1234                 if (flags & HAL_TXDESC_RTSENA)          /* SIFS + CTS */
1235                         ctsduration += rt->info[cix].spAckDuration;
1236                 ctsduration += ath_hal_computetxtime(ah,
1237                         rt, pktlen, rix, AH_TRUE);
1238                 if ((flags & HAL_TXDESC_NOACK) == 0)    /* SIFS + ACK */
1239                         ctsduration += rt->info[rix].spAckDuration;
1240         } else {
1241                 if (flags & HAL_TXDESC_RTSENA)          /* SIFS + CTS */
1242                         ctsduration += rt->info[cix].lpAckDuration;
1243                 ctsduration += ath_hal_computetxtime(ah,
1244                         rt, pktlen, rix, AH_FALSE);
1245                 if ((flags & HAL_TXDESC_NOACK) == 0)    /* SIFS + ACK */
1246                         ctsduration += rt->info[rix].lpAckDuration;
1247         }
1248
1249         return (ctsduration);
1250 }
1251
1252 /*
1253  * Update the given ath_buf with updated rts/cts setup and duration
1254  * values.
1255  *
1256  * To support rate lookups for each software retry, the rts/cts rate
1257  * and cts duration must be re-calculated.
1258  *
1259  * This function assumes the RTS/CTS flags have been set as needed;
1260  * mrr has been disabled; and the rate control lookup has been done.
1261  *
1262  * XXX TODO: MRR need only be disabled for the pre-11n NICs.
1263  * XXX The 11n NICs support per-rate RTS/CTS configuration.
1264  */
1265 static void
1266 ath_tx_set_rtscts(struct ath_softc *sc, struct ath_buf *bf)
1267 {
1268         uint16_t ctsduration = 0;
1269         uint8_t ctsrate = 0;
1270         uint8_t rix = bf->bf_state.bfs_rc[0].rix;
1271         uint8_t cix = 0;
1272         const HAL_RATE_TABLE *rt = sc->sc_currates;
1273
1274         /*
1275          * No RTS/CTS enabled? Don't bother.
1276          */
1277         if ((bf->bf_state.bfs_txflags &
1278             (HAL_TXDESC_RTSENA | HAL_TXDESC_CTSENA)) == 0) {
1279                 /* XXX is this really needed? */
1280                 bf->bf_state.bfs_ctsrate = 0;
1281                 bf->bf_state.bfs_ctsduration = 0;
1282                 return;
1283         }
1284
1285         /*
1286          * If protection is enabled, use the protection rix control
1287          * rate. Otherwise use the rate0 control rate.
1288          */
1289         if (bf->bf_state.bfs_doprot)
1290                 rix = sc->sc_protrix;
1291         else
1292                 rix = bf->bf_state.bfs_rc[0].rix;
1293
1294         /*
1295          * If the raw path has hard-coded ctsrate0 to something,
1296          * use it.
1297          */
1298         if (bf->bf_state.bfs_ctsrate0 != 0)
1299                 cix = ath_tx_findrix(sc, bf->bf_state.bfs_ctsrate0);
1300         else
1301                 /* Control rate from above */
1302                 cix = rt->info[rix].controlRate;
1303
1304         /* Calculate the rtscts rate for the given cix */
1305         ctsrate = ath_tx_get_rtscts_rate(sc->sc_ah, rt, cix,
1306             bf->bf_state.bfs_shpream);
1307
1308         /* The 11n chipsets do ctsduration calculations for you */
1309         if (! ath_tx_is_11n(sc))
1310                 ctsduration = ath_tx_calc_ctsduration(sc->sc_ah, rix, cix,
1311                     bf->bf_state.bfs_shpream, bf->bf_state.bfs_pktlen,
1312                     rt, bf->bf_state.bfs_txflags);
1313
1314         /* Squirrel away in ath_buf */
1315         bf->bf_state.bfs_ctsrate = ctsrate;
1316         bf->bf_state.bfs_ctsduration = ctsduration;
1317         
1318         /*
1319          * Must disable multi-rate retry when using RTS/CTS.
1320          */
1321         if (!sc->sc_mrrprot) {
1322                 bf->bf_state.bfs_ismrr = 0;
1323                 bf->bf_state.bfs_try0 =
1324                     bf->bf_state.bfs_rc[0].tries = ATH_TXMGTTRY; /* XXX ew */
1325         }
1326 }
1327
1328 /*
1329  * Setup the descriptor chain for a normal or fast-frame
1330  * frame.
1331  *
1332  * XXX TODO: extend to include the destination hardware QCU ID.
1333  * Make sure that is correct.  Make sure that when being added
1334  * to the mcastq, the CABQ QCUID is set or things will get a bit
1335  * odd.
1336  */
1337 static void
1338 ath_tx_setds(struct ath_softc *sc, struct ath_buf *bf)
1339 {
1340         struct ath_desc *ds = bf->bf_desc;
1341         struct ath_hal *ah = sc->sc_ah;
1342
1343         if (bf->bf_state.bfs_txrate0 == 0)
1344                 DPRINTF(sc, ATH_DEBUG_XMIT, 
1345                     "%s: bf=%p, txrate0=%d\n", __func__, bf, 0);
1346
1347         ath_hal_setuptxdesc(ah, ds
1348                 , bf->bf_state.bfs_pktlen       /* packet length */
1349                 , bf->bf_state.bfs_hdrlen       /* header length */
1350                 , bf->bf_state.bfs_atype        /* Atheros packet type */
1351                 , bf->bf_state.bfs_txpower      /* txpower */
1352                 , bf->bf_state.bfs_txrate0
1353                 , bf->bf_state.bfs_try0         /* series 0 rate/tries */
1354                 , bf->bf_state.bfs_keyix        /* key cache index */
1355                 , bf->bf_state.bfs_txantenna    /* antenna mode */
1356                 , bf->bf_state.bfs_txflags      /* flags */
1357                 , bf->bf_state.bfs_ctsrate      /* rts/cts rate */
1358                 , bf->bf_state.bfs_ctsduration  /* rts/cts duration */
1359         );
1360
1361         /*
1362          * This will be overriden when the descriptor chain is written.
1363          */
1364         bf->bf_lastds = ds;
1365         bf->bf_last = bf;
1366
1367         /* Set rate control and descriptor chain for this frame */
1368         ath_tx_set_ratectrl(sc, bf->bf_node, bf);
1369         ath_tx_chaindesclist(sc, ds, bf, 0, 0, 0);
1370 }
1371
1372 /*
1373  * Do a rate lookup.
1374  *
1375  * This performs a rate lookup for the given ath_buf only if it's required.
1376  * Non-data frames and raw frames don't require it.
1377  *
1378  * This populates the primary and MRR entries; MRR values are
1379  * then disabled later on if something requires it (eg RTS/CTS on
1380  * pre-11n chipsets.
1381  *
1382  * This needs to be done before the RTS/CTS fields are calculated
1383  * as they may depend upon the rate chosen.
1384  */
1385 static void
1386 ath_tx_do_ratelookup(struct ath_softc *sc, struct ath_buf *bf)
1387 {
1388         uint8_t rate, rix;
1389         int try0;
1390
1391         if (! bf->bf_state.bfs_doratelookup)
1392                 return;
1393
1394         /* Get rid of any previous state */
1395         bzero(bf->bf_state.bfs_rc, sizeof(bf->bf_state.bfs_rc));
1396
1397         ATH_NODE_LOCK(ATH_NODE(bf->bf_node));
1398         ath_rate_findrate(sc, ATH_NODE(bf->bf_node), bf->bf_state.bfs_shpream,
1399             bf->bf_state.bfs_pktlen, &rix, &try0, &rate);
1400
1401         /* In case MRR is disabled, make sure rc[0] is setup correctly */
1402         bf->bf_state.bfs_rc[0].rix = rix;
1403         bf->bf_state.bfs_rc[0].ratecode = rate;
1404         bf->bf_state.bfs_rc[0].tries = try0;
1405
1406         if (bf->bf_state.bfs_ismrr && try0 != ATH_TXMAXTRY)
1407                 ath_rate_getxtxrates(sc, ATH_NODE(bf->bf_node), rix,
1408                     bf->bf_state.bfs_rc);
1409         ATH_NODE_UNLOCK(ATH_NODE(bf->bf_node));
1410
1411         sc->sc_txrix = rix;     /* for LED blinking */
1412         sc->sc_lastdatarix = rix;       /* for fast frames */
1413         bf->bf_state.bfs_try0 = try0;
1414         bf->bf_state.bfs_txrate0 = rate;
1415 }
1416
1417 /*
1418  * Update the CLRDMASK bit in the ath_buf if it needs to be set.
1419  */
1420 static void
1421 ath_tx_update_clrdmask(struct ath_softc *sc, struct ath_tid *tid,
1422     struct ath_buf *bf)
1423 {
1424         struct ath_node *an = ATH_NODE(bf->bf_node);
1425
1426         ATH_TX_LOCK_ASSERT(sc);
1427
1428         if (an->clrdmask == 1) {
1429                 bf->bf_state.bfs_txflags |= HAL_TXDESC_CLRDMASK;
1430                 an->clrdmask = 0;
1431         }
1432 }
1433
1434 /*
1435  * Return whether this frame should be software queued or
1436  * direct dispatched.
1437  *
1438  * When doing powersave, BAR frames should be queued but other management
1439  * frames should be directly sent.
1440  *
1441  * When not doing powersave, stick BAR frames into the hardware queue
1442  * so it goes out even though the queue is paused.
1443  *
1444  * For now, management frames are also software queued by default.
1445  */
1446 static int
1447 ath_tx_should_swq_frame(struct ath_softc *sc, struct ath_node *an,
1448     struct mbuf *m0, int *queue_to_head)
1449 {
1450         struct ieee80211_node *ni = &an->an_node;
1451         struct ieee80211_frame *wh;
1452         uint8_t type, subtype;
1453
1454         wh = mtod(m0, struct ieee80211_frame *);
1455         type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
1456         subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK;
1457
1458         (*queue_to_head) = 0;
1459
1460         /* If it's not in powersave - direct-dispatch BAR */
1461         if ((ATH_NODE(ni)->an_is_powersave == 0)
1462             && type == IEEE80211_FC0_TYPE_CTL &&
1463             subtype == IEEE80211_FC0_SUBTYPE_BAR) {
1464                 DPRINTF(sc, ATH_DEBUG_SW_TX,
1465                     "%s: BAR: TX'ing direct\n", __func__);
1466                 return (0);
1467         } else if ((ATH_NODE(ni)->an_is_powersave == 1)
1468             && type == IEEE80211_FC0_TYPE_CTL &&
1469             subtype == IEEE80211_FC0_SUBTYPE_BAR) {
1470                 /* BAR TX whilst asleep; queue */
1471                 DPRINTF(sc, ATH_DEBUG_SW_TX,
1472                     "%s: swq: TX'ing\n", __func__);
1473                 (*queue_to_head) = 1;
1474                 return (1);
1475         } else if ((ATH_NODE(ni)->an_is_powersave == 1)
1476             && (type == IEEE80211_FC0_TYPE_MGT ||
1477                 type == IEEE80211_FC0_TYPE_CTL)) {
1478                 /*
1479                  * Other control/mgmt frame; bypass software queuing
1480                  * for now!
1481                  */
1482                 DPRINTF(sc, ATH_DEBUG_XMIT, 
1483                     "%s: %6D: Node is asleep; sending mgmt "
1484                     "(type=%d, subtype=%d)\n",
1485                     __func__, ni->ni_macaddr, ":", type, subtype);
1486                 return (0);
1487         } else {
1488                 return (1);
1489         }
1490 }
1491
1492
1493 /*
1494  * Transmit the given frame to the hardware.
1495  *
1496  * The frame must already be setup; rate control must already have
1497  * been done.
1498  *
1499  * XXX since the TXQ lock is being held here (and I dislike holding
1500  * it for this long when not doing software aggregation), later on
1501  * break this function into "setup_normal" and "xmit_normal". The
1502  * lock only needs to be held for the ath_tx_handoff call.
1503  *
1504  * XXX we don't update the leak count here - if we're doing
1505  * direct frame dispatch, we need to be able to do it without
1506  * decrementing the leak count (eg multicast queue frames.)
1507  */
1508 static void
1509 ath_tx_xmit_normal(struct ath_softc *sc, struct ath_txq *txq,
1510     struct ath_buf *bf)
1511 {
1512         struct ath_node *an = ATH_NODE(bf->bf_node);
1513         struct ath_tid *tid = &an->an_tid[bf->bf_state.bfs_tid];
1514
1515         ATH_TX_LOCK_ASSERT(sc);
1516
1517         /*
1518          * For now, just enable CLRDMASK. ath_tx_xmit_normal() does
1519          * set a completion handler however it doesn't (yet) properly
1520          * handle the strict ordering requirements needed for normal,
1521          * non-aggregate session frames.
1522          *
1523          * Once this is implemented, only set CLRDMASK like this for
1524          * frames that must go out - eg management/raw frames.
1525          */
1526         bf->bf_state.bfs_txflags |= HAL_TXDESC_CLRDMASK;
1527
1528         /* Setup the descriptor before handoff */
1529         ath_tx_do_ratelookup(sc, bf);
1530         ath_tx_calc_duration(sc, bf);
1531         ath_tx_calc_protection(sc, bf);
1532         ath_tx_set_rtscts(sc, bf);
1533         ath_tx_rate_fill_rcflags(sc, bf);
1534         ath_tx_setds(sc, bf);
1535
1536         /* Track per-TID hardware queue depth correctly */
1537         tid->hwq_depth++;
1538
1539         /* Assign the completion handler */
1540         bf->bf_comp = ath_tx_normal_comp;
1541
1542         /* Hand off to hardware */
1543         ath_tx_handoff(sc, txq, bf);
1544 }
1545
1546 /*
1547  * Do the basic frame setup stuff that's required before the frame
1548  * is added to a software queue.
1549  *
1550  * All frames get mostly the same treatment and it's done once.
1551  * Retransmits fiddle with things like the rate control setup,
1552  * setting the retransmit bit in the packet; doing relevant DMA/bus
1553  * syncing and relinking it (back) into the hardware TX queue.
1554  *
1555  * Note that this may cause the mbuf to be reallocated, so
1556  * m0 may not be valid.
1557  */
1558 static int
1559 ath_tx_normal_setup(struct ath_softc *sc, struct ieee80211_node *ni,
1560     struct ath_buf *bf, struct mbuf *m0, struct ath_txq *txq)
1561 {
1562         struct ieee80211vap *vap = ni->ni_vap;
1563         struct ath_hal *ah = sc->sc_ah;
1564         struct ifnet *ifp = sc->sc_ifp;
1565         struct ieee80211com *ic = ifp->if_l2com;
1566         const struct chanAccParams *cap = &ic->ic_wme.wme_chanParams;
1567         int error, iswep, ismcast, isfrag, ismrr;
1568         int keyix, hdrlen, pktlen, try0 = 0;
1569         u_int8_t rix = 0, txrate = 0;
1570         struct ath_desc *ds;
1571         struct ieee80211_frame *wh;
1572         u_int subtype, flags;
1573         HAL_PKT_TYPE atype;
1574         const HAL_RATE_TABLE *rt;
1575         HAL_BOOL shortPreamble;
1576         struct ath_node *an;
1577         u_int pri;
1578
1579         /*
1580          * To ensure that both sequence numbers and the CCMP PN handling
1581          * is "correct", make sure that the relevant TID queue is locked.
1582          * Otherwise the CCMP PN and seqno may appear out of order, causing
1583          * re-ordered frames to have out of order CCMP PN's, resulting
1584          * in many, many frame drops.
1585          */
1586         ATH_TX_LOCK_ASSERT(sc);
1587
1588         wh = mtod(m0, struct ieee80211_frame *);
1589         iswep = wh->i_fc[1] & IEEE80211_FC1_PROTECTED;
1590         ismcast = IEEE80211_IS_MULTICAST(wh->i_addr1);
1591         isfrag = m0->m_flags & M_FRAG;
1592         hdrlen = ieee80211_anyhdrsize(wh);
1593         /*
1594          * Packet length must not include any
1595          * pad bytes; deduct them here.
1596          */
1597         pktlen = m0->m_pkthdr.len - (hdrlen & 3);
1598
1599         /* Handle encryption twiddling if needed */
1600         if (! ath_tx_tag_crypto(sc, ni, m0, iswep, isfrag, &hdrlen,
1601             &pktlen, &keyix)) {
1602                 ath_freetx(m0);
1603                 return EIO;
1604         }
1605
1606         /* packet header may have moved, reset our local pointer */
1607         wh = mtod(m0, struct ieee80211_frame *);
1608
1609         pktlen += IEEE80211_CRC_LEN;
1610
1611         /*
1612          * Load the DMA map so any coalescing is done.  This
1613          * also calculates the number of descriptors we need.
1614          */
1615         error = ath_tx_dmasetup(sc, bf, m0);
1616         if (error != 0)
1617                 return error;
1618         bf->bf_node = ni;                       /* NB: held reference */
1619         m0 = bf->bf_m;                          /* NB: may have changed */
1620         wh = mtod(m0, struct ieee80211_frame *);
1621
1622         /* setup descriptors */
1623         ds = bf->bf_desc;
1624         rt = sc->sc_currates;
1625         KASSERT(rt != NULL, ("no rate table, mode %u", sc->sc_curmode));
1626
1627         /*
1628          * NB: the 802.11 layer marks whether or not we should
1629          * use short preamble based on the current mode and
1630          * negotiated parameters.
1631          */
1632         if ((ic->ic_flags & IEEE80211_F_SHPREAMBLE) &&
1633             (ni->ni_capinfo & IEEE80211_CAPINFO_SHORT_PREAMBLE)) {
1634                 shortPreamble = AH_TRUE;
1635                 sc->sc_stats.ast_tx_shortpre++;
1636         } else {
1637                 shortPreamble = AH_FALSE;
1638         }
1639
1640         an = ATH_NODE(ni);
1641         //flags = HAL_TXDESC_CLRDMASK;          /* XXX needed for crypto errs */
1642         flags = 0;
1643         ismrr = 0;                              /* default no multi-rate retry*/
1644         pri = M_WME_GETAC(m0);                  /* honor classification */
1645         /* XXX use txparams instead of fixed values */
1646         /*
1647          * Calculate Atheros packet type from IEEE80211 packet header,
1648          * setup for rate calculations, and select h/w transmit queue.
1649          */
1650         switch (wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) {
1651         case IEEE80211_FC0_TYPE_MGT:
1652                 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK;
1653                 if (subtype == IEEE80211_FC0_SUBTYPE_BEACON)
1654                         atype = HAL_PKT_TYPE_BEACON;
1655                 else if (subtype == IEEE80211_FC0_SUBTYPE_PROBE_RESP)
1656                         atype = HAL_PKT_TYPE_PROBE_RESP;
1657                 else if (subtype == IEEE80211_FC0_SUBTYPE_ATIM)
1658                         atype = HAL_PKT_TYPE_ATIM;
1659                 else
1660                         atype = HAL_PKT_TYPE_NORMAL;    /* XXX */
1661                 rix = an->an_mgmtrix;
1662                 txrate = rt->info[rix].rateCode;
1663                 if (shortPreamble)
1664                         txrate |= rt->info[rix].shortPreamble;
1665                 try0 = ATH_TXMGTTRY;
1666                 flags |= HAL_TXDESC_INTREQ;     /* force interrupt */
1667                 break;
1668         case IEEE80211_FC0_TYPE_CTL:
1669                 atype = HAL_PKT_TYPE_PSPOLL;    /* stop setting of duration */
1670                 rix = an->an_mgmtrix;
1671                 txrate = rt->info[rix].rateCode;
1672                 if (shortPreamble)
1673                         txrate |= rt->info[rix].shortPreamble;
1674                 try0 = ATH_TXMGTTRY;
1675                 flags |= HAL_TXDESC_INTREQ;     /* force interrupt */
1676                 break;
1677         case IEEE80211_FC0_TYPE_DATA:
1678                 atype = HAL_PKT_TYPE_NORMAL;            /* default */
1679                 /*
1680                  * Data frames: multicast frames go out at a fixed rate,
1681                  * EAPOL frames use the mgmt frame rate; otherwise consult
1682                  * the rate control module for the rate to use.
1683                  */
1684                 if (ismcast) {
1685                         rix = an->an_mcastrix;
1686                         txrate = rt->info[rix].rateCode;
1687                         if (shortPreamble)
1688                                 txrate |= rt->info[rix].shortPreamble;
1689                         try0 = 1;
1690                 } else if (m0->m_flags & M_EAPOL) {
1691                         /* XXX? maybe always use long preamble? */
1692                         rix = an->an_mgmtrix;
1693                         txrate = rt->info[rix].rateCode;
1694                         if (shortPreamble)
1695                                 txrate |= rt->info[rix].shortPreamble;
1696                         try0 = ATH_TXMAXTRY;    /* XXX?too many? */
1697                 } else {
1698                         /*
1699                          * Do rate lookup on each TX, rather than using
1700                          * the hard-coded TX information decided here.
1701                          */
1702                         ismrr = 1;
1703                         bf->bf_state.bfs_doratelookup = 1;
1704                 }
1705                 if (cap->cap_wmeParams[pri].wmep_noackPolicy)
1706                         flags |= HAL_TXDESC_NOACK;
1707                 break;
1708         default:
1709                 if_printf(ifp, "bogus frame type 0x%x (%s)\n",
1710                         wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK, __func__);
1711                 /* XXX statistic */
1712                 /* XXX free tx dmamap */
1713                 ath_freetx(m0);
1714                 return EIO;
1715         }
1716
1717         /*
1718          * There are two known scenarios where the frame AC doesn't match
1719          * what the destination TXQ is.
1720          *
1721          * + non-QoS frames (eg management?) that the net80211 stack has
1722          *   assigned a higher AC to, but since it's a non-QoS TID, it's
1723          *   being thrown into TID 16.  TID 16 gets the AC_BE queue.
1724          *   It's quite possible that management frames should just be
1725          *   direct dispatched to hardware rather than go via the software
1726          *   queue; that should be investigated in the future.  There are
1727          *   some specific scenarios where this doesn't make sense, mostly
1728          *   surrounding ADDBA request/response - hence why that is special
1729          *   cased.
1730          *
1731          * + Multicast frames going into the VAP mcast queue.  That shows up
1732          *   as "TXQ 11".
1733          *
1734          * This driver should eventually support separate TID and TXQ locking,
1735          * allowing for arbitrary AC frames to appear on arbitrary software
1736          * queues, being queued to the "correct" hardware queue when needed.
1737          */
1738 #if 0
1739         if (txq != sc->sc_ac2q[pri]) {
1740                 DPRINTF(sc, ATH_DEBUG_XMIT, 
1741                     "%s: txq=%p (%d), pri=%d, pri txq=%p (%d)\n",
1742                     __func__,
1743                     txq,
1744                     txq->axq_qnum,
1745                     pri,
1746                     sc->sc_ac2q[pri],
1747                     sc->sc_ac2q[pri]->axq_qnum);
1748         }
1749 #endif
1750
1751         /*
1752          * Calculate miscellaneous flags.
1753          */
1754         if (ismcast) {
1755                 flags |= HAL_TXDESC_NOACK;      /* no ack on broad/multicast */
1756         } else if (pktlen > vap->iv_rtsthreshold &&
1757             (ni->ni_ath_flags & IEEE80211_NODE_FF) == 0) {
1758                 flags |= HAL_TXDESC_RTSENA;     /* RTS based on frame length */
1759                 sc->sc_stats.ast_tx_rts++;
1760         }
1761         if (flags & HAL_TXDESC_NOACK)           /* NB: avoid double counting */
1762                 sc->sc_stats.ast_tx_noack++;
1763 #ifdef IEEE80211_SUPPORT_TDMA
1764         if (sc->sc_tdma && (flags & HAL_TXDESC_NOACK) == 0) {
1765                 DPRINTF(sc, ATH_DEBUG_TDMA,
1766                     "%s: discard frame, ACK required w/ TDMA\n", __func__);
1767                 sc->sc_stats.ast_tdma_ack++;
1768                 /* XXX free tx dmamap */
1769                 ath_freetx(m0);
1770                 return EIO;
1771         }
1772 #endif
1773
1774         /*
1775          * Determine if a tx interrupt should be generated for
1776          * this descriptor.  We take a tx interrupt to reap
1777          * descriptors when the h/w hits an EOL condition or
1778          * when the descriptor is specifically marked to generate
1779          * an interrupt.  We periodically mark descriptors in this
1780          * way to insure timely replenishing of the supply needed
1781          * for sending frames.  Defering interrupts reduces system
1782          * load and potentially allows more concurrent work to be
1783          * done but if done to aggressively can cause senders to
1784          * backup.
1785          *
1786          * NB: use >= to deal with sc_txintrperiod changing
1787          *     dynamically through sysctl.
1788          */
1789         if (flags & HAL_TXDESC_INTREQ) {
1790                 txq->axq_intrcnt = 0;
1791         } else if (++txq->axq_intrcnt >= sc->sc_txintrperiod) {
1792                 flags |= HAL_TXDESC_INTREQ;
1793                 txq->axq_intrcnt = 0;
1794         }
1795
1796         /* This point forward is actual TX bits */
1797
1798         /*
1799          * At this point we are committed to sending the frame
1800          * and we don't need to look at m_nextpkt; clear it in
1801          * case this frame is part of frag chain.
1802          */
1803         m0->m_nextpkt = NULL;
1804
1805         if (IFF_DUMPPKTS(sc, ATH_DEBUG_XMIT))
1806                 ieee80211_dump_pkt(ic, mtod(m0, const uint8_t *), m0->m_len,
1807                     sc->sc_hwmap[rix].ieeerate, -1);
1808
1809         if (ieee80211_radiotap_active_vap(vap)) {
1810                 u_int64_t tsf = ath_hal_gettsf64(ah);
1811
1812                 sc->sc_tx_th.wt_tsf = htole64(tsf);
1813                 sc->sc_tx_th.wt_flags = sc->sc_hwmap[rix].txflags;
1814                 if (iswep)
1815                         sc->sc_tx_th.wt_flags |= IEEE80211_RADIOTAP_F_WEP;
1816                 if (isfrag)
1817                         sc->sc_tx_th.wt_flags |= IEEE80211_RADIOTAP_F_FRAG;
1818                 sc->sc_tx_th.wt_rate = sc->sc_hwmap[rix].ieeerate;
1819                 sc->sc_tx_th.wt_txpower = ieee80211_get_node_txpower(ni);
1820                 sc->sc_tx_th.wt_antenna = sc->sc_txantenna;
1821
1822                 ieee80211_radiotap_tx(vap, m0);
1823         }
1824
1825         /* Blank the legacy rate array */
1826         bzero(&bf->bf_state.bfs_rc, sizeof(bf->bf_state.bfs_rc));
1827
1828         /*
1829          * ath_buf_set_rate needs at least one rate/try to setup
1830          * the rate scenario.
1831          */
1832         bf->bf_state.bfs_rc[0].rix = rix;
1833         bf->bf_state.bfs_rc[0].tries = try0;
1834         bf->bf_state.bfs_rc[0].ratecode = txrate;
1835
1836         /* Store the decided rate index values away */
1837         bf->bf_state.bfs_pktlen = pktlen;
1838         bf->bf_state.bfs_hdrlen = hdrlen;
1839         bf->bf_state.bfs_atype = atype;
1840         bf->bf_state.bfs_txpower = ieee80211_get_node_txpower(ni);
1841         bf->bf_state.bfs_txrate0 = txrate;
1842         bf->bf_state.bfs_try0 = try0;
1843         bf->bf_state.bfs_keyix = keyix;
1844         bf->bf_state.bfs_txantenna = sc->sc_txantenna;
1845         bf->bf_state.bfs_txflags = flags;
1846         bf->bf_state.bfs_shpream = shortPreamble;
1847
1848         /* XXX this should be done in ath_tx_setrate() */
1849         bf->bf_state.bfs_ctsrate0 = 0;  /* ie, no hard-coded ctsrate */
1850         bf->bf_state.bfs_ctsrate = 0;   /* calculated later */
1851         bf->bf_state.bfs_ctsduration = 0;
1852         bf->bf_state.bfs_ismrr = ismrr;
1853
1854         return 0;
1855 }
1856
1857 /*
1858  * Queue a frame to the hardware or software queue.
1859  *
1860  * This can be called by the net80211 code.
1861  *
1862  * XXX what about locking? Or, push the seqno assign into the
1863  * XXX aggregate scheduler so its serialised?
1864  *
1865  * XXX When sending management frames via ath_raw_xmit(),
1866  *     should CLRDMASK be set unconditionally?
1867  */
1868 int
1869 ath_tx_start(struct ath_softc *sc, struct ieee80211_node *ni,
1870     struct ath_buf *bf, struct mbuf *m0)
1871 {
1872         struct ieee80211vap *vap = ni->ni_vap;
1873         struct ath_vap *avp = ATH_VAP(vap);
1874         int r = 0;
1875         u_int pri;
1876         int tid;
1877         struct ath_txq *txq;
1878         int ismcast;
1879         const struct ieee80211_frame *wh;
1880         int is_ampdu, is_ampdu_tx, is_ampdu_pending;
1881         ieee80211_seq seqno;
1882         uint8_t type, subtype;
1883         int queue_to_head;
1884
1885         ATH_TX_LOCK_ASSERT(sc);
1886
1887         /*
1888          * Determine the target hardware queue.
1889          *
1890          * For multicast frames, the txq gets overridden appropriately
1891          * depending upon the state of PS.
1892          *
1893          * For any other frame, we do a TID/QoS lookup inside the frame
1894          * to see what the TID should be. If it's a non-QoS frame, the
1895          * AC and TID are overridden. The TID/TXQ code assumes the
1896          * TID is on a predictable hardware TXQ, so we don't support
1897          * having a node TID queued to multiple hardware TXQs.
1898          * This may change in the future but would require some locking
1899          * fudgery.
1900          */
1901         pri = ath_tx_getac(sc, m0);
1902         tid = ath_tx_gettid(sc, m0);
1903
1904         txq = sc->sc_ac2q[pri];
1905         wh = mtod(m0, struct ieee80211_frame *);
1906         ismcast = IEEE80211_IS_MULTICAST(wh->i_addr1);
1907         type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
1908         subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK;
1909
1910         /*
1911          * Enforce how deep the multicast queue can grow.
1912          *
1913          * XXX duplicated in ath_raw_xmit().
1914          */
1915         if (IEEE80211_IS_MULTICAST(wh->i_addr1)) {
1916                 if (sc->sc_cabq->axq_depth + sc->sc_cabq->fifo.axq_depth
1917                     > sc->sc_txq_mcastq_maxdepth) {
1918                         sc->sc_stats.ast_tx_mcastq_overflow++;
1919                         m_freem(m0);
1920                         return (ENOBUFS);
1921                 }
1922         }
1923
1924         /*
1925          * Enforce how deep the unicast queue can grow.
1926          *
1927          * If the node is in power save then we don't want
1928          * the software queue to grow too deep, or a node may
1929          * end up consuming all of the ath_buf entries.
1930          *
1931          * For now, only do this for DATA frames.
1932          *
1933          * We will want to cap how many management/control
1934          * frames get punted to the software queue so it doesn't
1935          * fill up.  But the correct solution isn't yet obvious.
1936          * In any case, this check should at least let frames pass
1937          * that we are direct-dispatching.
1938          *
1939          * XXX TODO: duplicate this to the raw xmit path!
1940          */
1941         if (type == IEEE80211_FC0_TYPE_DATA &&
1942             ATH_NODE(ni)->an_is_powersave &&
1943             ATH_NODE(ni)->an_swq_depth >
1944              sc->sc_txq_node_psq_maxdepth) {
1945                 sc->sc_stats.ast_tx_node_psq_overflow++;
1946                 m_freem(m0);
1947                 return (ENOBUFS);
1948         }
1949
1950         /* A-MPDU TX */
1951         is_ampdu_tx = ath_tx_ampdu_running(sc, ATH_NODE(ni), tid);
1952         is_ampdu_pending = ath_tx_ampdu_pending(sc, ATH_NODE(ni), tid);
1953         is_ampdu = is_ampdu_tx | is_ampdu_pending;
1954
1955         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: tid=%d, ac=%d, is_ampdu=%d\n",
1956             __func__, tid, pri, is_ampdu);
1957
1958         /* Set local packet state, used to queue packets to hardware */
1959         bf->bf_state.bfs_tid = tid;
1960         bf->bf_state.bfs_tx_queue = txq->axq_qnum;
1961         bf->bf_state.bfs_pri = pri;
1962
1963 #if 1
1964         /*
1965          * When servicing one or more stations in power-save mode
1966          * (or) if there is some mcast data waiting on the mcast
1967          * queue (to prevent out of order delivery) multicast frames
1968          * must be bufferd until after the beacon.
1969          *
1970          * TODO: we should lock the mcastq before we check the length.
1971          */
1972         if (sc->sc_cabq_enable && ismcast && (vap->iv_ps_sta || avp->av_mcastq.axq_depth)) {
1973                 txq = &avp->av_mcastq;
1974                 /*
1975                  * Mark the frame as eventually belonging on the CAB
1976                  * queue, so the descriptor setup functions will
1977                  * correctly initialise the descriptor 'qcuId' field.
1978                  */
1979                 bf->bf_state.bfs_tx_queue = sc->sc_cabq->axq_qnum;
1980         }
1981 #endif
1982
1983         /* Do the generic frame setup */
1984         /* XXX should just bzero the bf_state? */
1985         bf->bf_state.bfs_dobaw = 0;
1986
1987         /* A-MPDU TX? Manually set sequence number */
1988         /*
1989          * Don't do it whilst pending; the net80211 layer still
1990          * assigns them.
1991          */
1992         if (is_ampdu_tx) {
1993                 /*
1994                  * Always call; this function will
1995                  * handle making sure that null data frames
1996                  * don't get a sequence number from the current
1997                  * TID and thus mess with the BAW.
1998                  */
1999                 seqno = ath_tx_tid_seqno_assign(sc, ni, bf, m0);
2000
2001                 /*
2002                  * Don't add QoS NULL frames to the BAW.
2003                  */
2004                 if (IEEE80211_QOS_HAS_SEQ(wh) &&
2005                     subtype != IEEE80211_FC0_SUBTYPE_QOS_NULL) {
2006                         bf->bf_state.bfs_dobaw = 1;
2007                 }
2008         }
2009
2010         /*
2011          * If needed, the sequence number has been assigned.
2012          * Squirrel it away somewhere easy to get to.
2013          */
2014         bf->bf_state.bfs_seqno = M_SEQNO_GET(m0) << IEEE80211_SEQ_SEQ_SHIFT;
2015
2016         /* Is ampdu pending? fetch the seqno and print it out */
2017         if (is_ampdu_pending)
2018                 DPRINTF(sc, ATH_DEBUG_SW_TX,
2019                     "%s: tid %d: ampdu pending, seqno %d\n",
2020                     __func__, tid, M_SEQNO_GET(m0));
2021
2022         /* This also sets up the DMA map */
2023         r = ath_tx_normal_setup(sc, ni, bf, m0, txq);
2024
2025         if (r != 0)
2026                 goto done;
2027
2028         /* At this point m0 could have changed! */
2029         m0 = bf->bf_m;
2030
2031 #if 1
2032         /*
2033          * If it's a multicast frame, do a direct-dispatch to the
2034          * destination hardware queue. Don't bother software
2035          * queuing it.
2036          */
2037         /*
2038          * If it's a BAR frame, do a direct dispatch to the
2039          * destination hardware queue. Don't bother software
2040          * queuing it, as the TID will now be paused.
2041          * Sending a BAR frame can occur from the net80211 txa timer
2042          * (ie, retries) or from the ath txtask (completion call.)
2043          * It queues directly to hardware because the TID is paused
2044          * at this point (and won't be unpaused until the BAR has
2045          * either been TXed successfully or max retries has been
2046          * reached.)
2047          */
2048         /*
2049          * Until things are better debugged - if this node is asleep
2050          * and we're sending it a non-BAR frame, direct dispatch it.
2051          * Why? Because we need to figure out what's actually being
2052          * sent - eg, during reassociation/reauthentication after
2053          * the node (last) disappeared whilst asleep, the driver should
2054          * have unpaused/unsleep'ed the node.  So until that is
2055          * sorted out, use this workaround.
2056          */
2057         if (txq == &avp->av_mcastq) {
2058                 DPRINTF(sc, ATH_DEBUG_SW_TX,
2059                     "%s: bf=%p: mcastq: TX'ing\n", __func__, bf);
2060                 bf->bf_state.bfs_txflags |= HAL_TXDESC_CLRDMASK;
2061                 ath_tx_xmit_normal(sc, txq, bf);
2062         } else if (ath_tx_should_swq_frame(sc, ATH_NODE(ni), m0,
2063             &queue_to_head)) {
2064                 ath_tx_swq(sc, ni, txq, queue_to_head, bf);
2065         } else {
2066                 bf->bf_state.bfs_txflags |= HAL_TXDESC_CLRDMASK;
2067                 ath_tx_xmit_normal(sc, txq, bf);
2068         }
2069 #else
2070         /*
2071          * For now, since there's no software queue,
2072          * direct-dispatch to the hardware.
2073          */
2074         bf->bf_state.bfs_txflags |= HAL_TXDESC_CLRDMASK;
2075         /*
2076          * Update the current leak count if
2077          * we're leaking frames; and set the
2078          * MORE flag as appropriate.
2079          */
2080         ath_tx_leak_count_update(sc, tid, bf);
2081         ath_tx_xmit_normal(sc, txq, bf);
2082 #endif
2083 done:
2084         return 0;
2085 }
2086
2087 static int
2088 ath_tx_raw_start(struct ath_softc *sc, struct ieee80211_node *ni,
2089         struct ath_buf *bf, struct mbuf *m0,
2090         const struct ieee80211_bpf_params *params)
2091 {
2092         struct ifnet *ifp = sc->sc_ifp;
2093         struct ieee80211com *ic = ifp->if_l2com;
2094         struct ath_hal *ah = sc->sc_ah;
2095         struct ieee80211vap *vap = ni->ni_vap;
2096         int error, ismcast, ismrr;
2097         int keyix, hdrlen, pktlen, try0, txantenna;
2098         u_int8_t rix, txrate;
2099         struct ieee80211_frame *wh;
2100         u_int flags;
2101         HAL_PKT_TYPE atype;
2102         const HAL_RATE_TABLE *rt;
2103         struct ath_desc *ds;
2104         u_int pri;
2105         int o_tid = -1;
2106         int do_override;
2107         uint8_t type, subtype;
2108         int queue_to_head;
2109
2110         ATH_TX_LOCK_ASSERT(sc);
2111
2112         wh = mtod(m0, struct ieee80211_frame *);
2113         ismcast = IEEE80211_IS_MULTICAST(wh->i_addr1);
2114         hdrlen = ieee80211_anyhdrsize(wh);
2115         /*
2116          * Packet length must not include any
2117          * pad bytes; deduct them here.
2118          */
2119         /* XXX honor IEEE80211_BPF_DATAPAD */
2120         pktlen = m0->m_pkthdr.len - (hdrlen & 3) + IEEE80211_CRC_LEN;
2121
2122         type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
2123         subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK;
2124
2125         ATH_KTR(sc, ATH_KTR_TX, 2,
2126              "ath_tx_raw_start: ni=%p, bf=%p, raw", ni, bf);
2127
2128         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: ismcast=%d\n",
2129             __func__, ismcast);
2130
2131         pri = params->ibp_pri & 3;
2132         /* Override pri if the frame isn't a QoS one */
2133         if (! IEEE80211_QOS_HAS_SEQ(wh))
2134                 pri = ath_tx_getac(sc, m0);
2135
2136         /* XXX If it's an ADDBA, override the correct queue */
2137         do_override = ath_tx_action_frame_override_queue(sc, ni, m0, &o_tid);
2138
2139         /* Map ADDBA to the correct priority */
2140         if (do_override) {
2141 #if 0
2142                 DPRINTF(sc, ATH_DEBUG_XMIT, 
2143                     "%s: overriding tid %d pri %d -> %d\n",
2144                     __func__, o_tid, pri, TID_TO_WME_AC(o_tid));
2145 #endif
2146                 pri = TID_TO_WME_AC(o_tid);
2147         }
2148
2149         /* Handle encryption twiddling if needed */
2150         if (! ath_tx_tag_crypto(sc, ni,
2151             m0, params->ibp_flags & IEEE80211_BPF_CRYPTO, 0,
2152             &hdrlen, &pktlen, &keyix)) {
2153                 ath_freetx(m0);
2154                 return EIO;
2155         }
2156         /* packet header may have moved, reset our local pointer */
2157         wh = mtod(m0, struct ieee80211_frame *);
2158
2159         /* Do the generic frame setup */
2160         /* XXX should just bzero the bf_state? */
2161         bf->bf_state.bfs_dobaw = 0;
2162
2163         error = ath_tx_dmasetup(sc, bf, m0);
2164         if (error != 0)
2165                 return error;
2166         m0 = bf->bf_m;                          /* NB: may have changed */
2167         wh = mtod(m0, struct ieee80211_frame *);
2168         bf->bf_node = ni;                       /* NB: held reference */
2169
2170         /* Always enable CLRDMASK for raw frames for now.. */
2171         flags = HAL_TXDESC_CLRDMASK;            /* XXX needed for crypto errs */
2172         flags |= HAL_TXDESC_INTREQ;             /* force interrupt */
2173         if (params->ibp_flags & IEEE80211_BPF_RTS)
2174                 flags |= HAL_TXDESC_RTSENA;
2175         else if (params->ibp_flags & IEEE80211_BPF_CTS) {
2176                 /* XXX assume 11g/11n protection? */
2177                 bf->bf_state.bfs_doprot = 1;
2178                 flags |= HAL_TXDESC_CTSENA;
2179         }
2180         /* XXX leave ismcast to injector? */
2181         if ((params->ibp_flags & IEEE80211_BPF_NOACK) || ismcast)
2182                 flags |= HAL_TXDESC_NOACK;
2183
2184         rt = sc->sc_currates;
2185         KASSERT(rt != NULL, ("no rate table, mode %u", sc->sc_curmode));
2186         rix = ath_tx_findrix(sc, params->ibp_rate0);
2187         txrate = rt->info[rix].rateCode;
2188         if (params->ibp_flags & IEEE80211_BPF_SHORTPRE)
2189                 txrate |= rt->info[rix].shortPreamble;
2190         sc->sc_txrix = rix;
2191         try0 = params->ibp_try0;
2192         ismrr = (params->ibp_try1 != 0);
2193         txantenna = params->ibp_pri >> 2;
2194         if (txantenna == 0)                     /* XXX? */
2195                 txantenna = sc->sc_txantenna;
2196
2197         /*
2198          * Since ctsrate is fixed, store it away for later
2199          * use when the descriptor fields are being set.
2200          */
2201         if (flags & (HAL_TXDESC_RTSENA|HAL_TXDESC_CTSENA))
2202                 bf->bf_state.bfs_ctsrate0 = params->ibp_ctsrate;
2203
2204         /*
2205          * NB: we mark all packets as type PSPOLL so the h/w won't
2206          * set the sequence number, duration, etc.
2207          */
2208         atype = HAL_PKT_TYPE_PSPOLL;
2209
2210         if (IFF_DUMPPKTS(sc, ATH_DEBUG_XMIT))
2211                 ieee80211_dump_pkt(ic, mtod(m0, caddr_t), m0->m_len,
2212                     sc->sc_hwmap[rix].ieeerate, -1);
2213
2214         if (ieee80211_radiotap_active_vap(vap)) {
2215                 u_int64_t tsf = ath_hal_gettsf64(ah);
2216
2217                 sc->sc_tx_th.wt_tsf = htole64(tsf);
2218                 sc->sc_tx_th.wt_flags = sc->sc_hwmap[rix].txflags;
2219                 if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED)
2220                         sc->sc_tx_th.wt_flags |= IEEE80211_RADIOTAP_F_WEP;
2221                 if (m0->m_flags & M_FRAG)
2222                         sc->sc_tx_th.wt_flags |= IEEE80211_RADIOTAP_F_FRAG;
2223                 sc->sc_tx_th.wt_rate = sc->sc_hwmap[rix].ieeerate;
2224                 sc->sc_tx_th.wt_txpower = MIN(params->ibp_power,
2225                     ieee80211_get_node_txpower(ni));
2226                 sc->sc_tx_th.wt_antenna = sc->sc_txantenna;
2227
2228                 ieee80211_radiotap_tx(vap, m0);
2229         }
2230
2231         /*
2232          * Formulate first tx descriptor with tx controls.
2233          */
2234         ds = bf->bf_desc;
2235         /* XXX check return value? */
2236
2237         /* Store the decided rate index values away */
2238         bf->bf_state.bfs_pktlen = pktlen;
2239         bf->bf_state.bfs_hdrlen = hdrlen;
2240         bf->bf_state.bfs_atype = atype;
2241         bf->bf_state.bfs_txpower = MIN(params->ibp_power,
2242             ieee80211_get_node_txpower(ni));
2243         bf->bf_state.bfs_txrate0 = txrate;
2244         bf->bf_state.bfs_try0 = try0;
2245         bf->bf_state.bfs_keyix = keyix;
2246         bf->bf_state.bfs_txantenna = txantenna;
2247         bf->bf_state.bfs_txflags = flags;
2248         bf->bf_state.bfs_shpream =
2249             !! (params->ibp_flags & IEEE80211_BPF_SHORTPRE);
2250
2251         /* Set local packet state, used to queue packets to hardware */
2252         bf->bf_state.bfs_tid = WME_AC_TO_TID(pri);
2253         bf->bf_state.bfs_tx_queue = sc->sc_ac2q[pri]->axq_qnum;
2254         bf->bf_state.bfs_pri = pri;
2255
2256         /* XXX this should be done in ath_tx_setrate() */
2257         bf->bf_state.bfs_ctsrate = 0;
2258         bf->bf_state.bfs_ctsduration = 0;
2259         bf->bf_state.bfs_ismrr = ismrr;
2260
2261         /* Blank the legacy rate array */
2262         bzero(&bf->bf_state.bfs_rc, sizeof(bf->bf_state.bfs_rc));
2263
2264         bf->bf_state.bfs_rc[0].rix =
2265             ath_tx_findrix(sc, params->ibp_rate0);
2266         bf->bf_state.bfs_rc[0].tries = try0;
2267         bf->bf_state.bfs_rc[0].ratecode = txrate;
2268
2269         if (ismrr) {
2270                 int rix;
2271
2272                 rix = ath_tx_findrix(sc, params->ibp_rate1);
2273                 bf->bf_state.bfs_rc[1].rix = rix;
2274                 bf->bf_state.bfs_rc[1].tries = params->ibp_try1;
2275
2276                 rix = ath_tx_findrix(sc, params->ibp_rate2);
2277                 bf->bf_state.bfs_rc[2].rix = rix;
2278                 bf->bf_state.bfs_rc[2].tries = params->ibp_try2;
2279
2280                 rix = ath_tx_findrix(sc, params->ibp_rate3);
2281                 bf->bf_state.bfs_rc[3].rix = rix;
2282                 bf->bf_state.bfs_rc[3].tries = params->ibp_try3;
2283         }
2284         /*
2285          * All the required rate control decisions have been made;
2286          * fill in the rc flags.
2287          */
2288         ath_tx_rate_fill_rcflags(sc, bf);
2289
2290         /* NB: no buffered multicast in power save support */
2291
2292         /*
2293          * If we're overiding the ADDBA destination, dump directly
2294          * into the hardware queue, right after any pending
2295          * frames to that node are.
2296          */
2297         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: dooverride=%d\n",
2298             __func__, do_override);
2299
2300 #if 1
2301         /*
2302          * Put addba frames in the right place in the right TID/HWQ.
2303          */
2304         if (do_override) {
2305                 bf->bf_state.bfs_txflags |= HAL_TXDESC_CLRDMASK;
2306                 /*
2307                  * XXX if it's addba frames, should we be leaking
2308                  * them out via the frame leak method?
2309                  * XXX for now let's not risk it; but we may wish
2310                  * to investigate this later.
2311                  */
2312                 ath_tx_xmit_normal(sc, sc->sc_ac2q[pri], bf);
2313         } else if (ath_tx_should_swq_frame(sc, ATH_NODE(ni), m0,
2314             &queue_to_head)) {
2315                 /* Queue to software queue */
2316                 ath_tx_swq(sc, ni, sc->sc_ac2q[pri], queue_to_head, bf);
2317         } else {
2318                 bf->bf_state.bfs_txflags |= HAL_TXDESC_CLRDMASK;
2319                 ath_tx_xmit_normal(sc, sc->sc_ac2q[pri], bf);
2320         }
2321 #else
2322         /* Direct-dispatch to the hardware */
2323         bf->bf_state.bfs_txflags |= HAL_TXDESC_CLRDMASK;
2324         /*
2325          * Update the current leak count if
2326          * we're leaking frames; and set the
2327          * MORE flag as appropriate.
2328          */
2329         ath_tx_leak_count_update(sc, tid, bf);
2330         ath_tx_xmit_normal(sc, sc->sc_ac2q[pri], bf);
2331 #endif
2332         return 0;
2333 }
2334
2335 /*
2336  * Send a raw frame.
2337  *
2338  * This can be called by net80211.
2339  */
2340 int
2341 ath_raw_xmit(struct ieee80211_node *ni, struct mbuf *m,
2342         const struct ieee80211_bpf_params *params)
2343 {
2344         struct ieee80211com *ic = ni->ni_ic;
2345         struct ifnet *ifp = ic->ic_ifp;
2346         struct ath_softc *sc = ifp->if_softc;
2347         struct ath_buf *bf;
2348         struct ieee80211_frame *wh = mtod(m, struct ieee80211_frame *);
2349         int error = 0;
2350
2351         ATH_PCU_LOCK(sc);
2352         if (sc->sc_inreset_cnt > 0) {
2353                 DPRINTF(sc, ATH_DEBUG_XMIT, 
2354                     "%s: sc_inreset_cnt > 0; bailing\n", __func__);
2355                 error = EIO;
2356                 ATH_PCU_UNLOCK(sc);
2357                 goto bad0;
2358         }
2359         sc->sc_txstart_cnt++;
2360         ATH_PCU_UNLOCK(sc);
2361
2362         ATH_TX_LOCK(sc);
2363
2364         if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0 || sc->sc_invalid) {
2365                 DPRINTF(sc, ATH_DEBUG_XMIT, "%s: discard frame, %s", __func__,
2366                     (ifp->if_drv_flags & IFF_DRV_RUNNING) == 0 ?
2367                         "!running" : "invalid");
2368                 m_freem(m);
2369                 error = ENETDOWN;
2370                 goto bad;
2371         }
2372
2373         /*
2374          * Enforce how deep the multicast queue can grow.
2375          *
2376          * XXX duplicated in ath_tx_start().
2377          */
2378         if (IEEE80211_IS_MULTICAST(wh->i_addr1)) {
2379                 if (sc->sc_cabq->axq_depth + sc->sc_cabq->fifo.axq_depth
2380                     > sc->sc_txq_mcastq_maxdepth) {
2381                         sc->sc_stats.ast_tx_mcastq_overflow++;
2382                         error = ENOBUFS;
2383                 }
2384
2385                 if (error != 0) {
2386                         m_freem(m);
2387                         goto bad;
2388                 }
2389         }
2390
2391         /*
2392          * Grab a TX buffer and associated resources.
2393          */
2394         bf = ath_getbuf(sc, ATH_BUFTYPE_MGMT);
2395         if (bf == NULL) {
2396                 sc->sc_stats.ast_tx_nobuf++;
2397                 m_freem(m);
2398                 error = ENOBUFS;
2399                 goto bad;
2400         }
2401         ATH_KTR(sc, ATH_KTR_TX, 3, "ath_raw_xmit: m=%p, params=%p, bf=%p\n",
2402             m, params,  bf);
2403
2404         if (params == NULL) {
2405                 /*
2406                  * Legacy path; interpret frame contents to decide
2407                  * precisely how to send the frame.
2408                  */
2409                 if (ath_tx_start(sc, ni, bf, m)) {
2410                         error = EIO;            /* XXX */
2411                         goto bad2;
2412                 }
2413         } else {
2414                 /*
2415                  * Caller supplied explicit parameters to use in
2416                  * sending the frame.
2417                  */
2418                 if (ath_tx_raw_start(sc, ni, bf, m, params)) {
2419                         error = EIO;            /* XXX */
2420                         goto bad2;
2421                 }
2422         }
2423         sc->sc_wd_timer = 5;
2424         ifp->if_opackets++;
2425         sc->sc_stats.ast_tx_raw++;
2426
2427         /*
2428          * Update the TIM - if there's anything queued to the
2429          * software queue and power save is enabled, we should
2430          * set the TIM.
2431          */
2432         ath_tx_update_tim(sc, ni, 1);
2433
2434         ATH_TX_UNLOCK(sc);
2435
2436         ATH_PCU_LOCK(sc);
2437         sc->sc_txstart_cnt--;
2438         ATH_PCU_UNLOCK(sc);
2439
2440         return 0;
2441 bad2:
2442         ATH_KTR(sc, ATH_KTR_TX, 3, "ath_raw_xmit: bad2: m=%p, params=%p, "
2443             "bf=%p",
2444             m,
2445             params,
2446             bf);
2447         ATH_TXBUF_LOCK(sc);
2448         ath_returnbuf_head(sc, bf);
2449         ATH_TXBUF_UNLOCK(sc);
2450 bad:
2451
2452         ATH_TX_UNLOCK(sc);
2453
2454         ATH_PCU_LOCK(sc);
2455         sc->sc_txstart_cnt--;
2456         ATH_PCU_UNLOCK(sc);
2457 bad0:
2458         ATH_KTR(sc, ATH_KTR_TX, 2, "ath_raw_xmit: bad0: m=%p, params=%p",
2459             m, params);
2460         ifp->if_oerrors++;
2461         sc->sc_stats.ast_tx_raw_fail++;
2462         ieee80211_free_node(ni);
2463
2464         return error;
2465 }
2466
2467 /* Some helper functions */
2468
2469 /*
2470  * ADDBA (and potentially others) need to be placed in the same
2471  * hardware queue as the TID/node it's relating to. This is so
2472  * it goes out after any pending non-aggregate frames to the
2473  * same node/TID.
2474  *
2475  * If this isn't done, the ADDBA can go out before the frames
2476  * queued in hardware. Even though these frames have a sequence
2477  * number -earlier- than the ADDBA can be transmitted (but
2478  * no frames whose sequence numbers are after the ADDBA should
2479  * be!) they'll arrive after the ADDBA - and the receiving end
2480  * will simply drop them as being out of the BAW.
2481  *
2482  * The frames can't be appended to the TID software queue - it'll
2483  * never be sent out. So these frames have to be directly
2484  * dispatched to the hardware, rather than queued in software.
2485  * So if this function returns true, the TXQ has to be
2486  * overridden and it has to be directly dispatched.
2487  *
2488  * It's a dirty hack, but someone's gotta do it.
2489  */
2490
2491 /*
2492  * XXX doesn't belong here!
2493  */
2494 static int
2495 ieee80211_is_action(struct ieee80211_frame *wh)
2496 {
2497         /* Type: Management frame? */
2498         if ((wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) !=
2499             IEEE80211_FC0_TYPE_MGT)
2500                 return 0;
2501
2502         /* Subtype: Action frame? */
2503         if ((wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) !=
2504             IEEE80211_FC0_SUBTYPE_ACTION)
2505                 return 0;
2506
2507         return 1;
2508 }
2509
2510 #define MS(_v, _f)      (((_v) & _f) >> _f##_S)
2511 /*
2512  * Return an alternate TID for ADDBA request frames.
2513  *
2514  * Yes, this likely should be done in the net80211 layer.
2515  */
2516 static int
2517 ath_tx_action_frame_override_queue(struct ath_softc *sc,
2518     struct ieee80211_node *ni,
2519     struct mbuf *m0, int *tid)
2520 {
2521         struct ieee80211_frame *wh = mtod(m0, struct ieee80211_frame *);
2522         struct ieee80211_action_ba_addbarequest *ia;
2523         uint8_t *frm;
2524         uint16_t baparamset;
2525
2526         /* Not action frame? Bail */
2527         if (! ieee80211_is_action(wh))
2528                 return 0;
2529
2530         /* XXX Not needed for frames we send? */
2531 #if 0
2532         /* Correct length? */
2533         if (! ieee80211_parse_action(ni, m))
2534                 return 0;
2535 #endif
2536
2537         /* Extract out action frame */
2538         frm = (u_int8_t *)&wh[1];
2539         ia = (struct ieee80211_action_ba_addbarequest *) frm;
2540
2541         /* Not ADDBA? Bail */
2542         if (ia->rq_header.ia_category != IEEE80211_ACTION_CAT_BA)
2543                 return 0;
2544         if (ia->rq_header.ia_action != IEEE80211_ACTION_BA_ADDBA_REQUEST)
2545                 return 0;
2546
2547         /* Extract TID, return it */
2548         baparamset = le16toh(ia->rq_baparamset);
2549         *tid = (int) MS(baparamset, IEEE80211_BAPS_TID);
2550
2551         return 1;
2552 }
2553 #undef  MS
2554
2555 /* Per-node software queue operations */
2556
2557 /*
2558  * Add the current packet to the given BAW.
2559  * It is assumed that the current packet
2560  *
2561  * + fits inside the BAW;
2562  * + already has had a sequence number allocated.
2563  *
2564  * Since the BAW status may be modified by both the ath task and
2565  * the net80211/ifnet contexts, the TID must be locked.
2566  */
2567 void
2568 ath_tx_addto_baw(struct ath_softc *sc, struct ath_node *an,
2569     struct ath_tid *tid, struct ath_buf *bf)
2570 {
2571         int index, cindex;
2572         struct ieee80211_tx_ampdu *tap;
2573
2574         ATH_TX_LOCK_ASSERT(sc);
2575
2576         if (bf->bf_state.bfs_isretried)
2577                 return;
2578
2579         tap = ath_tx_get_tx_tid(an, tid->tid);
2580
2581         if (! bf->bf_state.bfs_dobaw) {
2582                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2583                     "%s: dobaw=0, seqno=%d, window %d:%d\n",
2584                     __func__, SEQNO(bf->bf_state.bfs_seqno),
2585                     tap->txa_start, tap->txa_wnd);
2586         }
2587
2588         if (bf->bf_state.bfs_addedbaw)
2589                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2590                     "%s: re-added? tid=%d, seqno %d; window %d:%d; "
2591                     "baw head=%d tail=%d\n",
2592                     __func__, tid->tid, SEQNO(bf->bf_state.bfs_seqno),
2593                     tap->txa_start, tap->txa_wnd, tid->baw_head,
2594                     tid->baw_tail);
2595
2596         /*
2597          * Verify that the given sequence number is not outside of the
2598          * BAW.  Complain loudly if that's the case.
2599          */
2600         if (! BAW_WITHIN(tap->txa_start, tap->txa_wnd,
2601             SEQNO(bf->bf_state.bfs_seqno))) {
2602                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2603                     "%s: bf=%p: outside of BAW?? tid=%d, seqno %d; window %d:%d; "
2604                     "baw head=%d tail=%d\n",
2605                     __func__, bf, tid->tid, SEQNO(bf->bf_state.bfs_seqno),
2606                     tap->txa_start, tap->txa_wnd, tid->baw_head,
2607                     tid->baw_tail);
2608         }
2609
2610         /*
2611          * ni->ni_txseqs[] is the currently allocated seqno.
2612          * the txa state contains the current baw start.
2613          */
2614         index  = ATH_BA_INDEX(tap->txa_start, SEQNO(bf->bf_state.bfs_seqno));
2615         cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
2616         DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2617             "%s: tid=%d, seqno %d; window %d:%d; index=%d cindex=%d "
2618             "baw head=%d tail=%d\n",
2619             __func__, tid->tid, SEQNO(bf->bf_state.bfs_seqno),
2620             tap->txa_start, tap->txa_wnd, index, cindex, tid->baw_head,
2621             tid->baw_tail);
2622
2623
2624 #if 0
2625         assert(tid->tx_buf[cindex] == NULL);
2626 #endif
2627         if (tid->tx_buf[cindex] != NULL) {
2628                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2629                     "%s: ba packet dup (index=%d, cindex=%d, "
2630                     "head=%d, tail=%d)\n",
2631                     __func__, index, cindex, tid->baw_head, tid->baw_tail);
2632                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2633                     "%s: BA bf: %p; seqno=%d ; new bf: %p; seqno=%d\n",
2634                     __func__,
2635                     tid->tx_buf[cindex],
2636                     SEQNO(tid->tx_buf[cindex]->bf_state.bfs_seqno),
2637                     bf,
2638                     SEQNO(bf->bf_state.bfs_seqno)
2639                 );
2640         }
2641         tid->tx_buf[cindex] = bf;
2642
2643         if (index >= ((tid->baw_tail - tid->baw_head) &
2644             (ATH_TID_MAX_BUFS - 1))) {
2645                 tid->baw_tail = cindex;
2646                 INCR(tid->baw_tail, ATH_TID_MAX_BUFS);
2647         }
2648 }
2649
2650 /*
2651  * Flip the BAW buffer entry over from the existing one to the new one.
2652  *
2653  * When software retransmitting a (sub-)frame, it is entirely possible that
2654  * the frame ath_buf is marked as BUSY and can't be immediately reused.
2655  * In that instance the buffer is cloned and the new buffer is used for
2656  * retransmit. We thus need to update the ath_buf slot in the BAW buf
2657  * tracking array to maintain consistency.
2658  */
2659 static void
2660 ath_tx_switch_baw_buf(struct ath_softc *sc, struct ath_node *an,
2661     struct ath_tid *tid, struct ath_buf *old_bf, struct ath_buf *new_bf)
2662 {
2663         int index, cindex;
2664         struct ieee80211_tx_ampdu *tap;
2665         int seqno = SEQNO(old_bf->bf_state.bfs_seqno);
2666
2667         ATH_TX_LOCK_ASSERT(sc);
2668
2669         tap = ath_tx_get_tx_tid(an, tid->tid);
2670         index  = ATH_BA_INDEX(tap->txa_start, seqno);
2671         cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
2672
2673         /*
2674          * Just warn for now; if it happens then we should find out
2675          * about it. It's highly likely the aggregation session will
2676          * soon hang.
2677          */
2678         if (old_bf->bf_state.bfs_seqno != new_bf->bf_state.bfs_seqno) {
2679                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2680                     "%s: retransmitted buffer"
2681                     " has mismatching seqno's, BA session may hang.\n",
2682                     __func__);
2683                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2684                     "%s: old seqno=%d, new_seqno=%d\n", __func__,
2685                     old_bf->bf_state.bfs_seqno, new_bf->bf_state.bfs_seqno);
2686         }
2687
2688         if (tid->tx_buf[cindex] != old_bf) {
2689                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2690                     "%s: ath_buf pointer incorrect; "
2691                     " has m BA session may hang.\n", __func__);
2692                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2693                     "%s: old bf=%p, new bf=%p\n", __func__, old_bf, new_bf);
2694         }
2695
2696         tid->tx_buf[cindex] = new_bf;
2697 }
2698
2699 /*
2700  * seq_start - left edge of BAW
2701  * seq_next - current/next sequence number to allocate
2702  *
2703  * Since the BAW status may be modified by both the ath task and
2704  * the net80211/ifnet contexts, the TID must be locked.
2705  */
2706 static void
2707 ath_tx_update_baw(struct ath_softc *sc, struct ath_node *an,
2708     struct ath_tid *tid, const struct ath_buf *bf)
2709 {
2710         int index, cindex;
2711         struct ieee80211_tx_ampdu *tap;
2712         int seqno = SEQNO(bf->bf_state.bfs_seqno);
2713
2714         ATH_TX_LOCK_ASSERT(sc);
2715
2716         tap = ath_tx_get_tx_tid(an, tid->tid);
2717         index  = ATH_BA_INDEX(tap->txa_start, seqno);
2718         cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1);
2719
2720         DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2721             "%s: tid=%d, baw=%d:%d, seqno=%d, index=%d, cindex=%d, "
2722             "baw head=%d, tail=%d\n",
2723             __func__, tid->tid, tap->txa_start, tap->txa_wnd, seqno, index,
2724             cindex, tid->baw_head, tid->baw_tail);
2725
2726         /*
2727          * If this occurs then we have a big problem - something else
2728          * has slid tap->txa_start along without updating the BAW
2729          * tracking start/end pointers. Thus the TX BAW state is now
2730          * completely busted.
2731          *
2732          * But for now, since I haven't yet fixed TDMA and buffer cloning,
2733          * it's quite possible that a cloned buffer is making its way
2734          * here and causing it to fire off. Disable TDMA for now.
2735          */
2736         if (tid->tx_buf[cindex] != bf) {
2737                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2738                     "%s: comp bf=%p, seq=%d; slot bf=%p, seqno=%d\n",
2739                     __func__, bf, SEQNO(bf->bf_state.bfs_seqno),
2740                     tid->tx_buf[cindex],
2741                     (tid->tx_buf[cindex] != NULL) ?
2742                       SEQNO(tid->tx_buf[cindex]->bf_state.bfs_seqno) : -1);
2743         }
2744
2745         tid->tx_buf[cindex] = NULL;
2746
2747         while (tid->baw_head != tid->baw_tail &&
2748             !tid->tx_buf[tid->baw_head]) {
2749                 INCR(tap->txa_start, IEEE80211_SEQ_RANGE);
2750                 INCR(tid->baw_head, ATH_TID_MAX_BUFS);
2751         }
2752         DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
2753             "%s: baw is now %d:%d, baw head=%d\n",
2754             __func__, tap->txa_start, tap->txa_wnd, tid->baw_head);
2755 }
2756
2757 static void
2758 ath_tx_leak_count_update(struct ath_softc *sc, struct ath_tid *tid,
2759     struct ath_buf *bf)
2760 {
2761         struct ieee80211_frame *wh;
2762
2763         ATH_TX_LOCK_ASSERT(sc);
2764
2765         if (tid->an->an_leak_count > 0) {
2766                 wh = mtod(bf->bf_m, struct ieee80211_frame *);
2767
2768                 /*
2769                  * Update MORE based on the software/net80211 queue states.
2770                  */
2771                 if ((tid->an->an_stack_psq > 0)
2772                     || (tid->an->an_swq_depth > 0))
2773                         wh->i_fc[1] |= IEEE80211_FC1_MORE_DATA;
2774                 else
2775                         wh->i_fc[1] &= ~IEEE80211_FC1_MORE_DATA;
2776
2777                 DPRINTF(sc, ATH_DEBUG_NODE_PWRSAVE,
2778                     "%s: %6D: leak count = %d, psq=%d, swq=%d, MORE=%d\n",
2779                     __func__,
2780                     tid->an->an_node.ni_macaddr,
2781                     ":",
2782                     tid->an->an_leak_count,
2783                     tid->an->an_stack_psq,
2784                     tid->an->an_swq_depth,
2785                     !! (wh->i_fc[1] & IEEE80211_FC1_MORE_DATA));
2786
2787                 /*
2788                  * Re-sync the underlying buffer.
2789                  */
2790                 bus_dmamap_sync(sc->sc_dmat, bf->bf_dmamap,
2791                     BUS_DMASYNC_PREWRITE);
2792
2793                 tid->an->an_leak_count --;
2794         }
2795 }
2796
2797 static int
2798 ath_tx_tid_can_tx_or_sched(struct ath_softc *sc, struct ath_tid *tid)
2799 {
2800
2801         ATH_TX_LOCK_ASSERT(sc);
2802
2803         if (tid->an->an_leak_count > 0) {
2804                 return (1);
2805         }
2806         if (tid->paused)
2807                 return (0);
2808         return (1);
2809 }
2810
2811 /*
2812  * Mark the current node/TID as ready to TX.
2813  *
2814  * This is done to make it easy for the software scheduler to
2815  * find which nodes have data to send.
2816  *
2817  * The TXQ lock must be held.
2818  */
2819 void
2820 ath_tx_tid_sched(struct ath_softc *sc, struct ath_tid *tid)
2821 {
2822         struct ath_txq *txq = sc->sc_ac2q[tid->ac];
2823
2824         ATH_TX_LOCK_ASSERT(sc);
2825
2826         /*
2827          * If we are leaking out a frame to this destination
2828          * for PS-POLL, ensure that we allow scheduling to
2829          * occur.
2830          */
2831         if (! ath_tx_tid_can_tx_or_sched(sc, tid))
2832                 return;         /* paused, can't schedule yet */
2833
2834         if (tid->sched)
2835                 return;         /* already scheduled */
2836
2837         tid->sched = 1;
2838
2839 #if 0
2840         /*
2841          * If this is a sleeping node we're leaking to, given
2842          * it a higher priority.  This is so bad for QoS it hurts.
2843          */
2844         if (tid->an->an_leak_count) {
2845                 TAILQ_INSERT_HEAD(&txq->axq_tidq, tid, axq_qelem);
2846         } else {
2847                 TAILQ_INSERT_TAIL(&txq->axq_tidq, tid, axq_qelem);
2848         }
2849 #endif
2850
2851         /*
2852          * We can't do the above - it'll confuse the TXQ software
2853          * scheduler which will keep checking the _head_ TID
2854          * in the list to see if it has traffic.  If we queue
2855          * a TID to the head of the list and it doesn't transmit,
2856          * we'll check it again.
2857          *
2858          * So, get the rest of this leaking frames support working
2859          * and reliable first and _then_ optimise it so they're
2860          * pushed out in front of any other pending software
2861          * queued nodes.
2862          */
2863         TAILQ_INSERT_TAIL(&txq->axq_tidq, tid, axq_qelem);
2864 }
2865
2866 /*
2867  * Mark the current node as no longer needing to be polled for
2868  * TX packets.
2869  *
2870  * The TXQ lock must be held.
2871  */
2872 static void
2873 ath_tx_tid_unsched(struct ath_softc *sc, struct ath_tid *tid)
2874 {
2875         struct ath_txq *txq = sc->sc_ac2q[tid->ac];
2876
2877         ATH_TX_LOCK_ASSERT(sc);
2878
2879         if (tid->sched == 0)
2880                 return;
2881
2882         tid->sched = 0;
2883         TAILQ_REMOVE(&txq->axq_tidq, tid, axq_qelem);
2884 }
2885
2886 /*
2887  * Assign a sequence number manually to the given frame.
2888  *
2889  * This should only be called for A-MPDU TX frames.
2890  */
2891 static ieee80211_seq
2892 ath_tx_tid_seqno_assign(struct ath_softc *sc, struct ieee80211_node *ni,
2893     struct ath_buf *bf, struct mbuf *m0)
2894 {
2895         struct ieee80211_frame *wh;
2896         int tid, pri;
2897         ieee80211_seq seqno;
2898         uint8_t subtype;
2899
2900         /* TID lookup */
2901         wh = mtod(m0, struct ieee80211_frame *);
2902         pri = M_WME_GETAC(m0);                  /* honor classification */
2903         tid = WME_AC_TO_TID(pri);
2904         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: pri=%d, tid=%d, qos has seq=%d\n",
2905             __func__, pri, tid, IEEE80211_QOS_HAS_SEQ(wh));
2906
2907         /* XXX Is it a control frame? Ignore */
2908
2909         /* Does the packet require a sequence number? */
2910         if (! IEEE80211_QOS_HAS_SEQ(wh))
2911                 return -1;
2912
2913         ATH_TX_LOCK_ASSERT(sc);
2914
2915         /*
2916          * Is it a QOS NULL Data frame? Give it a sequence number from
2917          * the default TID (IEEE80211_NONQOS_TID.)
2918          *
2919          * The RX path of everything I've looked at doesn't include the NULL
2920          * data frame sequence number in the aggregation state updates, so
2921          * assigning it a sequence number there will cause a BAW hole on the
2922          * RX side.
2923          */
2924         subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK;
2925         if (subtype == IEEE80211_FC0_SUBTYPE_QOS_NULL) {
2926                 /* XXX no locking for this TID? This is a bit of a problem. */
2927                 seqno = ni->ni_txseqs[IEEE80211_NONQOS_TID];
2928                 INCR(ni->ni_txseqs[IEEE80211_NONQOS_TID], IEEE80211_SEQ_RANGE);
2929         } else {
2930                 /* Manually assign sequence number */
2931                 seqno = ni->ni_txseqs[tid];
2932                 INCR(ni->ni_txseqs[tid], IEEE80211_SEQ_RANGE);
2933         }
2934         *(uint16_t *)&wh->i_seq[0] = htole16(seqno << IEEE80211_SEQ_SEQ_SHIFT);
2935         M_SEQNO_SET(m0, seqno);
2936
2937         /* Return so caller can do something with it if needed */
2938         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s:  -> seqno=%d\n", __func__, seqno);
2939         return seqno;
2940 }
2941
2942 /*
2943  * Attempt to direct dispatch an aggregate frame to hardware.
2944  * If the frame is out of BAW, queue.
2945  * Otherwise, schedule it as a single frame.
2946  */
2947 static void
2948 ath_tx_xmit_aggr(struct ath_softc *sc, struct ath_node *an,
2949     struct ath_txq *txq, struct ath_buf *bf)
2950 {
2951         struct ath_tid *tid = &an->an_tid[bf->bf_state.bfs_tid];
2952         struct ieee80211_tx_ampdu *tap;
2953
2954         ATH_TX_LOCK_ASSERT(sc);
2955
2956         tap = ath_tx_get_tx_tid(an, tid->tid);
2957
2958         /* paused? queue */
2959         if (! ath_tx_tid_can_tx_or_sched(sc, tid)) {
2960                 ATH_TID_INSERT_HEAD(tid, bf, bf_list);
2961                 /* XXX don't sched - we're paused! */
2962                 return;
2963         }
2964
2965         /* outside baw? queue */
2966         if (bf->bf_state.bfs_dobaw &&
2967             (! BAW_WITHIN(tap->txa_start, tap->txa_wnd,
2968             SEQNO(bf->bf_state.bfs_seqno)))) {
2969                 ATH_TID_INSERT_HEAD(tid, bf, bf_list);
2970                 ath_tx_tid_sched(sc, tid);
2971                 return;
2972         }
2973
2974         /*
2975          * This is a temporary check and should be removed once
2976          * all the relevant code paths have been fixed.
2977          *
2978          * During aggregate retries, it's possible that the head
2979          * frame will fail (which has the bfs_aggr and bfs_nframes
2980          * fields set for said aggregate) and will be retried as
2981          * a single frame.  In this instance, the values should
2982          * be reset or the completion code will get upset with you.
2983          */
2984         if (bf->bf_state.bfs_aggr != 0 || bf->bf_state.bfs_nframes > 1) {
2985                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
2986                     "%s: bfs_aggr=%d, bfs_nframes=%d\n", __func__,
2987                     bf->bf_state.bfs_aggr, bf->bf_state.bfs_nframes);
2988                 bf->bf_state.bfs_aggr = 0;
2989                 bf->bf_state.bfs_nframes = 1;
2990         }
2991
2992         /* Update CLRDMASK just before this frame is queued */
2993         ath_tx_update_clrdmask(sc, tid, bf);
2994
2995         /* Direct dispatch to hardware */
2996         ath_tx_do_ratelookup(sc, bf);
2997         ath_tx_calc_duration(sc, bf);
2998         ath_tx_calc_protection(sc, bf);
2999         ath_tx_set_rtscts(sc, bf);
3000         ath_tx_rate_fill_rcflags(sc, bf);
3001         ath_tx_setds(sc, bf);
3002
3003         /* Statistics */
3004         sc->sc_aggr_stats.aggr_low_hwq_single_pkt++;
3005
3006         /* Track per-TID hardware queue depth correctly */
3007         tid->hwq_depth++;
3008
3009         /* Add to BAW */
3010         if (bf->bf_state.bfs_dobaw) {
3011                 ath_tx_addto_baw(sc, an, tid, bf);
3012                 bf->bf_state.bfs_addedbaw = 1;
3013         }
3014
3015         /* Set completion handler, multi-frame aggregate or not */
3016         bf->bf_comp = ath_tx_aggr_comp;
3017
3018         /*
3019          * Update the current leak count if
3020          * we're leaking frames; and set the
3021          * MORE flag as appropriate.
3022          */
3023         ath_tx_leak_count_update(sc, tid, bf);
3024
3025         /* Hand off to hardware */
3026         ath_tx_handoff(sc, txq, bf);
3027 }
3028
3029 /*
3030  * Attempt to send the packet.
3031  * If the queue isn't busy, direct-dispatch.
3032  * If the queue is busy enough, queue the given packet on the
3033  *  relevant software queue.
3034  */
3035 void
3036 ath_tx_swq(struct ath_softc *sc, struct ieee80211_node *ni,
3037     struct ath_txq *txq, int queue_to_head, struct ath_buf *bf)
3038 {
3039         struct ath_node *an = ATH_NODE(ni);
3040         struct ieee80211_frame *wh;
3041         struct ath_tid *atid;
3042         int pri, tid;
3043         struct mbuf *m0 = bf->bf_m;
3044
3045         ATH_TX_LOCK_ASSERT(sc);
3046
3047         /* Fetch the TID - non-QoS frames get assigned to TID 16 */
3048         wh = mtod(m0, struct ieee80211_frame *);
3049         pri = ath_tx_getac(sc, m0);
3050         tid = ath_tx_gettid(sc, m0);
3051         atid = &an->an_tid[tid];
3052
3053         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: bf=%p, pri=%d, tid=%d, qos=%d\n",
3054             __func__, bf, pri, tid, IEEE80211_QOS_HAS_SEQ(wh));
3055
3056         /* Set local packet state, used to queue packets to hardware */
3057         /* XXX potentially duplicate info, re-check */
3058         bf->bf_state.bfs_tid = tid;
3059         bf->bf_state.bfs_tx_queue = txq->axq_qnum;
3060         bf->bf_state.bfs_pri = pri;
3061
3062         /*
3063          * If the hardware queue isn't busy, queue it directly.
3064          * If the hardware queue is busy, queue it.
3065          * If the TID is paused or the traffic it outside BAW, software
3066          * queue it.
3067          *
3068          * If the node is in power-save and we're leaking a frame,
3069          * leak a single frame.
3070          */
3071         if (! ath_tx_tid_can_tx_or_sched(sc, atid)) {
3072                 /* TID is paused, queue */
3073                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: paused\n", __func__);
3074                 /*
3075                  * If the caller requested that it be sent at a high
3076                  * priority, queue it at the head of the list.
3077                  */
3078                 if (queue_to_head)
3079                         ATH_TID_INSERT_HEAD(atid, bf, bf_list);
3080                 else
3081                         ATH_TID_INSERT_TAIL(atid, bf, bf_list);
3082         } else if (ath_tx_ampdu_pending(sc, an, tid)) {
3083                 /* AMPDU pending; queue */
3084                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: pending\n", __func__);
3085                 ATH_TID_INSERT_TAIL(atid, bf, bf_list);
3086                 /* XXX sched? */
3087         } else if (ath_tx_ampdu_running(sc, an, tid)) {
3088                 /* AMPDU running, attempt direct dispatch if possible */
3089
3090                 /*
3091                  * Always queue the frame to the tail of the list.
3092                  */
3093                 ATH_TID_INSERT_TAIL(atid, bf, bf_list);
3094
3095                 /*
3096                  * If the hardware queue isn't busy, direct dispatch
3097                  * the head frame in the list.  Don't schedule the
3098                  * TID - let it build some more frames first?
3099                  *
3100                  * When running A-MPDU, always just check the hardware
3101                  * queue depth against the aggregate frame limit.
3102                  * We don't want to burst a large number of single frames
3103                  * out to the hardware; we want to aggressively hold back.
3104                  *
3105                  * Otherwise, schedule the TID.
3106                  */
3107                 /* XXX TXQ locking */
3108                 if (txq->axq_depth + txq->fifo.axq_depth < sc->sc_hwq_limit_aggr) {
3109                         bf = ATH_TID_FIRST(atid);
3110                         ATH_TID_REMOVE(atid, bf, bf_list);
3111
3112                         /*
3113                          * Ensure it's definitely treated as a non-AMPDU
3114                          * frame - this information may have been left
3115                          * over from a previous attempt.
3116                          */
3117                         bf->bf_state.bfs_aggr = 0;
3118                         bf->bf_state.bfs_nframes = 1;
3119
3120                         /* Queue to the hardware */
3121                         ath_tx_xmit_aggr(sc, an, txq, bf);
3122                         DPRINTF(sc, ATH_DEBUG_SW_TX,
3123                             "%s: xmit_aggr\n",
3124                             __func__);
3125                 } else {
3126                         DPRINTF(sc, ATH_DEBUG_SW_TX,
3127                             "%s: ampdu; swq'ing\n",
3128                             __func__);
3129
3130                         ath_tx_tid_sched(sc, atid);
3131                 }
3132         /*
3133          * If we're not doing A-MPDU, be prepared to direct dispatch
3134          * up to both limits if possible.  This particular corner
3135          * case may end up with packet starvation between aggregate
3136          * traffic and non-aggregate traffic: we wnat to ensure
3137          * that non-aggregate stations get a few frames queued to the
3138          * hardware before the aggregate station(s) get their chance.
3139          *
3140          * So if you only ever see a couple of frames direct dispatched
3141          * to the hardware from a non-AMPDU client, check both here
3142          * and in the software queue dispatcher to ensure that those
3143          * non-AMPDU stations get a fair chance to transmit.
3144          */
3145         /* XXX TXQ locking */
3146         } else if ((txq->axq_depth + txq->fifo.axq_depth < sc->sc_hwq_limit_nonaggr) &&
3147                     (txq->axq_aggr_depth < sc->sc_hwq_limit_aggr)) {
3148                 /* AMPDU not running, attempt direct dispatch */
3149                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: xmit_normal\n", __func__);
3150                 /* See if clrdmask needs to be set */
3151                 ath_tx_update_clrdmask(sc, atid, bf);
3152
3153                 /*
3154                  * Update the current leak count if
3155                  * we're leaking frames; and set the
3156                  * MORE flag as appropriate.
3157                  */
3158                 ath_tx_leak_count_update(sc, atid, bf);
3159
3160                 /*
3161                  * Dispatch the frame.
3162                  */
3163                 ath_tx_xmit_normal(sc, txq, bf);
3164         } else {
3165                 /* Busy; queue */
3166                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: swq'ing\n", __func__);
3167                 ATH_TID_INSERT_TAIL(atid, bf, bf_list);
3168                 ath_tx_tid_sched(sc, atid);
3169         }
3170 }
3171
3172 /*
3173  * Only set the clrdmask bit if none of the nodes are currently
3174  * filtered.
3175  *
3176  * XXX TODO: go through all the callers and check to see
3177  * which are being called in the context of looping over all
3178  * TIDs (eg, if all tids are being paused, resumed, etc.)
3179  * That'll avoid O(n^2) complexity here.
3180  */
3181 static void
3182 ath_tx_set_clrdmask(struct ath_softc *sc, struct ath_node *an)
3183 {
3184         int i;
3185
3186         ATH_TX_LOCK_ASSERT(sc);
3187
3188         for (i = 0; i < IEEE80211_TID_SIZE; i++) {
3189                 if (an->an_tid[i].isfiltered == 1)
3190                         return;
3191         }
3192         an->clrdmask = 1;
3193 }
3194
3195 /*
3196  * Configure the per-TID node state.
3197  *
3198  * This likely belongs in if_ath_node.c but I can't think of anywhere
3199  * else to put it just yet.
3200  *
3201  * This sets up the SLISTs and the mutex as appropriate.
3202  */
3203 void
3204 ath_tx_tid_init(struct ath_softc *sc, struct ath_node *an)
3205 {
3206         int i, j;
3207         struct ath_tid *atid;
3208
3209         for (i = 0; i < IEEE80211_TID_SIZE; i++) {
3210                 atid = &an->an_tid[i];
3211
3212                 /* XXX now with this bzer(), is the field 0'ing needed? */
3213                 bzero(atid, sizeof(*atid));
3214
3215                 TAILQ_INIT(&atid->tid_q);
3216                 TAILQ_INIT(&atid->filtq.tid_q);
3217                 atid->tid = i;
3218                 atid->an = an;
3219                 for (j = 0; j < ATH_TID_MAX_BUFS; j++)
3220                         atid->tx_buf[j] = NULL;
3221                 atid->baw_head = atid->baw_tail = 0;
3222                 atid->paused = 0;
3223                 atid->sched = 0;
3224                 atid->hwq_depth = 0;
3225                 atid->cleanup_inprogress = 0;
3226                 if (i == IEEE80211_NONQOS_TID)
3227                         atid->ac = ATH_NONQOS_TID_AC;
3228                 else
3229                         atid->ac = TID_TO_WME_AC(i);
3230         }
3231         an->clrdmask = 1;       /* Always start by setting this bit */
3232 }
3233
3234 /*
3235  * Pause the current TID. This stops packets from being transmitted
3236  * on it.
3237  *
3238  * Since this is also called from upper layers as well as the driver,
3239  * it will get the TID lock.
3240  */
3241 static void
3242 ath_tx_tid_pause(struct ath_softc *sc, struct ath_tid *tid)
3243 {
3244
3245         ATH_TX_LOCK_ASSERT(sc);
3246         tid->paused++;
3247         DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL, "%s: paused = %d\n",
3248             __func__, tid->paused);
3249 }
3250
3251 /*
3252  * Unpause the current TID, and schedule it if needed.
3253  */
3254 static void
3255 ath_tx_tid_resume(struct ath_softc *sc, struct ath_tid *tid)
3256 {
3257         ATH_TX_LOCK_ASSERT(sc);
3258
3259         /*
3260          * There's some odd places where ath_tx_tid_resume() is called
3261          * when it shouldn't be; this works around that particular issue
3262          * until it's actually resolved.
3263          */
3264         if (tid->paused == 0) {
3265                 DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL,
3266                     "%s: %6D: paused=0?\n", __func__,
3267                     tid->an->an_node.ni_macaddr, ":");
3268         } else {
3269                 tid->paused--;
3270         }
3271
3272         DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL, "%s: unpaused = %d\n",
3273             __func__, tid->paused);
3274
3275         if (tid->paused)
3276                 return;
3277
3278         /*
3279          * Override the clrdmask configuration for the next frame
3280          * from this TID, just to get the ball rolling.
3281          */
3282         ath_tx_set_clrdmask(sc, tid->an);
3283
3284         if (tid->axq_depth == 0)
3285                 return;
3286
3287         /* XXX isfiltered shouldn't ever be 0 at this point */
3288         if (tid->isfiltered == 1) {
3289                 DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL, "%s: filtered?!\n",
3290                     __func__);
3291                 return;
3292         }
3293
3294         ath_tx_tid_sched(sc, tid);
3295
3296         /*
3297          * Queue the software TX scheduler.
3298          */
3299         ath_tx_swq_kick(sc);
3300 }
3301
3302 /*
3303  * Add the given ath_buf to the TID filtered frame list.
3304  * This requires the TID be filtered.
3305  */
3306 static void
3307 ath_tx_tid_filt_addbuf(struct ath_softc *sc, struct ath_tid *tid,
3308     struct ath_buf *bf)
3309 {
3310
3311         ATH_TX_LOCK_ASSERT(sc);
3312
3313         if (!tid->isfiltered)
3314                 DPRINTF(sc, ATH_DEBUG_SW_TX_FILT, "%s: not filtered?!\n",
3315                     __func__);
3316
3317         DPRINTF(sc, ATH_DEBUG_SW_TX_FILT, "%s: bf=%p\n", __func__, bf);
3318
3319         /* Set the retry bit and bump the retry counter */
3320         ath_tx_set_retry(sc, bf);
3321         sc->sc_stats.ast_tx_swfiltered++;
3322
3323         ATH_TID_FILT_INSERT_TAIL(tid, bf, bf_list);
3324 }
3325
3326 /*
3327  * Handle a completed filtered frame from the given TID.
3328  * This just enables/pauses the filtered frame state if required
3329  * and appends the filtered frame to the filtered queue.
3330  */
3331 static void
3332 ath_tx_tid_filt_comp_buf(struct ath_softc *sc, struct ath_tid *tid,
3333     struct ath_buf *bf)
3334 {
3335
3336         ATH_TX_LOCK_ASSERT(sc);
3337
3338         if (! tid->isfiltered) {
3339                 DPRINTF(sc, ATH_DEBUG_SW_TX_FILT, "%s: filter transition\n",
3340                     __func__);
3341                 tid->isfiltered = 1;
3342                 ath_tx_tid_pause(sc, tid);
3343         }
3344
3345         /* Add the frame to the filter queue */
3346         ath_tx_tid_filt_addbuf(sc, tid, bf);
3347 }
3348
3349 /*
3350  * Complete the filtered frame TX completion.
3351  *
3352  * If there are no more frames in the hardware queue, unpause/unfilter
3353  * the TID if applicable.  Otherwise we will wait for a node PS transition
3354  * to unfilter.
3355  */
3356 static void
3357 ath_tx_tid_filt_comp_complete(struct ath_softc *sc, struct ath_tid *tid)
3358 {
3359         struct ath_buf *bf;
3360
3361         ATH_TX_LOCK_ASSERT(sc);
3362
3363         if (tid->hwq_depth != 0)
3364                 return;
3365
3366         DPRINTF(sc, ATH_DEBUG_SW_TX_FILT, "%s: hwq=0, transition back\n",
3367             __func__);
3368         tid->isfiltered = 0;
3369         /* XXX ath_tx_tid_resume() also calls ath_tx_set_clrdmask()! */
3370         ath_tx_set_clrdmask(sc, tid->an);
3371
3372         /* XXX this is really quite inefficient */
3373         while ((bf = ATH_TID_FILT_LAST(tid, ath_bufhead_s)) != NULL) {
3374                 ATH_TID_FILT_REMOVE(tid, bf, bf_list);
3375                 ATH_TID_INSERT_HEAD(tid, bf, bf_list);
3376         }
3377
3378         ath_tx_tid_resume(sc, tid);
3379 }
3380
3381 /*
3382  * Called when a single (aggregate or otherwise) frame is completed.
3383  *
3384  * Returns 1 if the buffer could be added to the filtered list
3385  * (cloned or otherwise), 0 if the buffer couldn't be added to the
3386  * filtered list (failed clone; expired retry) and the caller should
3387  * free it and handle it like a failure (eg by sending a BAR.)
3388  */
3389 static int
3390 ath_tx_tid_filt_comp_single(struct ath_softc *sc, struct ath_tid *tid,
3391     struct ath_buf *bf)
3392 {
3393         struct ath_buf *nbf;
3394         int retval;
3395
3396         ATH_TX_LOCK_ASSERT(sc);
3397
3398         /*
3399          * Don't allow a filtered frame to live forever.
3400          */
3401         if (bf->bf_state.bfs_retries > SWMAX_RETRIES) {
3402                 sc->sc_stats.ast_tx_swretrymax++;
3403                 DPRINTF(sc, ATH_DEBUG_SW_TX_FILT,
3404                     "%s: bf=%p, seqno=%d, exceeded retries\n",
3405                     __func__,
3406                     bf,
3407                     bf->bf_state.bfs_seqno);
3408                 return (0);
3409         }
3410
3411         /*
3412          * A busy buffer can't be added to the retry list.
3413          * It needs to be cloned.
3414          */
3415         if (bf->bf_flags & ATH_BUF_BUSY) {
3416                 nbf = ath_tx_retry_clone(sc, tid->an, tid, bf);
3417                 DPRINTF(sc, ATH_DEBUG_SW_TX_FILT,
3418                     "%s: busy buffer clone: %p -> %p\n",
3419                     __func__, bf, nbf);
3420         } else {
3421                 nbf = bf;
3422         }
3423
3424         if (nbf == NULL) {
3425                 DPRINTF(sc, ATH_DEBUG_SW_TX_FILT,
3426                     "%s: busy buffer couldn't be cloned (%p)!\n",
3427                     __func__, bf);
3428                 retval = 1;
3429         } else {
3430                 ath_tx_tid_filt_comp_buf(sc, tid, nbf);
3431                 retval = 0;
3432         }
3433         ath_tx_tid_filt_comp_complete(sc, tid);
3434
3435         return (retval);
3436 }
3437
3438 static void
3439 ath_tx_tid_filt_comp_aggr(struct ath_softc *sc, struct ath_tid *tid,
3440     struct ath_buf *bf_first, ath_bufhead *bf_q)
3441 {
3442         struct ath_buf *bf, *bf_next, *nbf;
3443
3444         ATH_TX_LOCK_ASSERT(sc);
3445
3446         bf = bf_first;
3447         while (bf) {
3448                 bf_next = bf->bf_next;
3449                 bf->bf_next = NULL;     /* Remove it from the aggr list */
3450
3451                 /*
3452                  * Don't allow a filtered frame to live forever.
3453                  */
3454                 if (bf->bf_state.bfs_retries > SWMAX_RETRIES) {
3455                         sc->sc_stats.ast_tx_swretrymax++;
3456                         DPRINTF(sc, ATH_DEBUG_SW_TX_FILT,
3457                             "%s: bf=%p, seqno=%d, exceeded retries\n",
3458                             __func__,
3459                             bf,
3460                             bf->bf_state.bfs_seqno);
3461                         TAILQ_INSERT_TAIL(bf_q, bf, bf_list);
3462                         goto next;
3463                 }
3464
3465                 if (bf->bf_flags & ATH_BUF_BUSY) {
3466                         nbf = ath_tx_retry_clone(sc, tid->an, tid, bf);
3467                         DPRINTF(sc, ATH_DEBUG_SW_TX_FILT,
3468                             "%s: busy buffer cloned: %p -> %p",
3469                             __func__, bf, nbf);
3470                 } else {
3471                         nbf = bf;
3472                 }
3473
3474                 /*
3475                  * If the buffer couldn't be cloned, add it to bf_q;
3476                  * the caller will free the buffer(s) as required.
3477                  */
3478                 if (nbf == NULL) {
3479                         DPRINTF(sc, ATH_DEBUG_SW_TX_FILT,
3480                             "%s: buffer couldn't be cloned! (%p)\n",
3481                             __func__, bf);
3482                         TAILQ_INSERT_TAIL(bf_q, bf, bf_list);
3483                 } else {
3484                         ath_tx_tid_filt_comp_buf(sc, tid, nbf);
3485                 }
3486 next:
3487                 bf = bf_next;
3488         }
3489
3490         ath_tx_tid_filt_comp_complete(sc, tid);
3491 }
3492
3493 /*
3494  * Suspend the queue because we need to TX a BAR.
3495  */
3496 static void
3497 ath_tx_tid_bar_suspend(struct ath_softc *sc, struct ath_tid *tid)
3498 {
3499
3500         ATH_TX_LOCK_ASSERT(sc);
3501
3502         DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
3503             "%s: tid=%d, bar_wait=%d, bar_tx=%d, called\n",
3504             __func__,
3505             tid->tid,
3506             tid->bar_wait,
3507             tid->bar_tx);
3508
3509         /* We shouldn't be called when bar_tx is 1 */
3510         if (tid->bar_tx) {
3511                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
3512                     "%s: bar_tx is 1?!\n", __func__);
3513         }
3514
3515         /* If we've already been called, just be patient. */
3516         if (tid->bar_wait)
3517                 return;
3518
3519         /* Wait! */
3520         tid->bar_wait = 1;
3521
3522         /* Only one pause, no matter how many frames fail */
3523         ath_tx_tid_pause(sc, tid);
3524 }
3525
3526 /*
3527  * We've finished with BAR handling - either we succeeded or
3528  * failed. Either way, unsuspend TX.
3529  */
3530 static void
3531 ath_tx_tid_bar_unsuspend(struct ath_softc *sc, struct ath_tid *tid)
3532 {
3533
3534         ATH_TX_LOCK_ASSERT(sc);
3535
3536         DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
3537             "%s: %6D: TID=%d, called\n",
3538             __func__,
3539             tid->an->an_node.ni_macaddr,
3540             ":",
3541             tid->tid);
3542
3543         if (tid->bar_tx == 0 || tid->bar_wait == 0) {
3544                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
3545                     "%s: %6D: TID=%d, bar_tx=%d, bar_wait=%d: ?\n",
3546                     __func__, tid->an->an_node.ni_macaddr, ":",
3547                     tid->tid, tid->bar_tx, tid->bar_wait);
3548         }
3549
3550         tid->bar_tx = tid->bar_wait = 0;
3551         ath_tx_tid_resume(sc, tid);
3552 }
3553
3554 /*
3555  * Return whether we're ready to TX a BAR frame.
3556  *
3557  * Requires the TID lock be held.
3558  */
3559 static int
3560 ath_tx_tid_bar_tx_ready(struct ath_softc *sc, struct ath_tid *tid)
3561 {
3562
3563         ATH_TX_LOCK_ASSERT(sc);
3564
3565         if (tid->bar_wait == 0 || tid->hwq_depth > 0)
3566                 return (0);
3567
3568         DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
3569             "%s: %6D: TID=%d, bar ready\n",
3570             __func__,
3571             tid->an->an_node.ni_macaddr,
3572             ":",
3573             tid->tid);
3574
3575         return (1);
3576 }
3577
3578 /*
3579  * Check whether the current TID is ready to have a BAR
3580  * TXed and if so, do the TX.
3581  *
3582  * Since the TID/TXQ lock can't be held during a call to
3583  * ieee80211_send_bar(), we have to do the dirty thing of unlocking it,
3584  * sending the BAR and locking it again.
3585  *
3586  * Eventually, the code to send the BAR should be broken out
3587  * from this routine so the lock doesn't have to be reacquired
3588  * just to be immediately dropped by the caller.
3589  */
3590 static void
3591 ath_tx_tid_bar_tx(struct ath_softc *sc, struct ath_tid *tid)
3592 {
3593         struct ieee80211_tx_ampdu *tap;
3594
3595         ATH_TX_LOCK_ASSERT(sc);
3596
3597         DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
3598             "%s: %6D: TID=%d, called\n",
3599             __func__,
3600             tid->an->an_node.ni_macaddr,
3601             ":",
3602             tid->tid);
3603
3604         tap = ath_tx_get_tx_tid(tid->an, tid->tid);
3605
3606         /*
3607          * This is an error condition!
3608          */
3609         if (tid->bar_wait == 0 || tid->bar_tx == 1) {
3610                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
3611                     "%s: %6D: TID=%d, bar_tx=%d, bar_wait=%d: ?\n",
3612                     __func__, tid->an->an_node.ni_macaddr, ":",
3613                     tid->tid, tid->bar_tx, tid->bar_wait);
3614                 return;
3615         }
3616
3617         /* Don't do anything if we still have pending frames */
3618         if (tid->hwq_depth > 0) {
3619                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
3620                     "%s: %6D: TID=%d, hwq_depth=%d, waiting\n",
3621                     __func__,
3622                     tid->an->an_node.ni_macaddr,
3623                     ":",
3624                     tid->tid,
3625                     tid->hwq_depth);
3626                 return;
3627         }
3628
3629         /* We're now about to TX */
3630         tid->bar_tx = 1;
3631
3632         /*
3633          * Override the clrdmask configuration for the next frame,
3634          * just to get the ball rolling.
3635          */
3636         ath_tx_set_clrdmask(sc, tid->an);
3637
3638         /*
3639          * Calculate new BAW left edge, now that all frames have either
3640          * succeeded or failed.
3641          *
3642          * XXX verify this is _actually_ the valid value to begin at!
3643          */
3644         DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
3645             "%s: %6D: TID=%d, new BAW left edge=%d\n",
3646             __func__,
3647             tid->an->an_node.ni_macaddr,
3648             ":",
3649             tid->tid,
3650             tap->txa_start);
3651
3652         /* Try sending the BAR frame */
3653         /* We can't hold the lock here! */
3654
3655         ATH_TX_UNLOCK(sc);
3656         if (ieee80211_send_bar(&tid->an->an_node, tap, tap->txa_start) == 0) {
3657                 /* Success? Now we wait for notification that it's done */
3658                 ATH_TX_LOCK(sc);
3659                 return;
3660         }
3661
3662         /* Failure? For now, warn loudly and continue */
3663         ATH_TX_LOCK(sc);
3664         DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
3665             "%s: %6D: TID=%d, failed to TX BAR, continue!\n",
3666             __func__, tid->an->an_node.ni_macaddr, ":",
3667             tid->tid);
3668         ath_tx_tid_bar_unsuspend(sc, tid);
3669 }
3670
3671 static void
3672 ath_tx_tid_drain_pkt(struct ath_softc *sc, struct ath_node *an,
3673     struct ath_tid *tid, ath_bufhead *bf_cq, struct ath_buf *bf)
3674 {
3675
3676         ATH_TX_LOCK_ASSERT(sc);
3677
3678         /*
3679          * If the current TID is running AMPDU, update
3680          * the BAW.
3681          */
3682         if (ath_tx_ampdu_running(sc, an, tid->tid) &&
3683             bf->bf_state.bfs_dobaw) {
3684                 /*
3685                  * Only remove the frame from the BAW if it's
3686                  * been transmitted at least once; this means
3687                  * the frame was in the BAW to begin with.
3688                  */
3689                 if (bf->bf_state.bfs_retries > 0) {
3690                         ath_tx_update_baw(sc, an, tid, bf);
3691                         bf->bf_state.bfs_dobaw = 0;
3692                 }
3693 #if 0
3694                 /*
3695                  * This has become a non-fatal error now
3696                  */
3697                 if (! bf->bf_state.bfs_addedbaw)
3698                         DPRINTF(sc, ATH_DEBUG_SW_TX_BAW
3699                             "%s: wasn't added: seqno %d\n",
3700                             __func__, SEQNO(bf->bf_state.bfs_seqno));
3701 #endif
3702         }
3703
3704         /* Strip it out of an aggregate list if it was in one */
3705         bf->bf_next = NULL;
3706
3707         /* Insert on the free queue to be freed by the caller */
3708         TAILQ_INSERT_TAIL(bf_cq, bf, bf_list);
3709 }
3710
3711 static void
3712 ath_tx_tid_drain_print(struct ath_softc *sc, struct ath_node *an,
3713     const char *pfx, struct ath_tid *tid, struct ath_buf *bf)
3714 {
3715         struct ieee80211_node *ni = &an->an_node;
3716         struct ath_txq *txq;
3717         struct ieee80211_tx_ampdu *tap;
3718
3719         txq = sc->sc_ac2q[tid->ac];
3720         tap = ath_tx_get_tx_tid(an, tid->tid);
3721
3722         DPRINTF(sc, ATH_DEBUG_SW_TX | ATH_DEBUG_RESET,
3723             "%s: %s: %6D: bf=%p: addbaw=%d, dobaw=%d, "
3724             "seqno=%d, retry=%d\n",
3725             __func__,
3726             pfx,
3727             ni->ni_macaddr,
3728             ":",
3729             bf,
3730             bf->bf_state.bfs_addedbaw,
3731             bf->bf_state.bfs_dobaw,
3732             SEQNO(bf->bf_state.bfs_seqno),
3733             bf->bf_state.bfs_retries);
3734         DPRINTF(sc, ATH_DEBUG_SW_TX | ATH_DEBUG_RESET,
3735             "%s: %s: %6D: bf=%p: txq[%d] axq_depth=%d, axq_aggr_depth=%d\n",
3736             __func__,
3737             pfx,
3738             ni->ni_macaddr,
3739             ":",
3740             bf,
3741             txq->axq_qnum,
3742             txq->axq_depth,
3743             txq->axq_aggr_depth);
3744         DPRINTF(sc, ATH_DEBUG_SW_TX | ATH_DEBUG_RESET,
3745             "%s: %s: %6D: bf=%p: tid txq_depth=%d hwq_depth=%d, bar_wait=%d, "
3746               "isfiltered=%d\n",
3747             __func__,
3748             pfx,
3749             ni->ni_macaddr,
3750             ":",
3751             bf,
3752             tid->axq_depth,
3753             tid->hwq_depth,
3754             tid->bar_wait,
3755             tid->isfiltered);
3756         DPRINTF(sc, ATH_DEBUG_SW_TX | ATH_DEBUG_RESET,
3757             "%s: %s: %6D: tid %d: "
3758             "sched=%d, paused=%d, "
3759             "incomp=%d, baw_head=%d, "
3760             "baw_tail=%d txa_start=%d, ni_txseqs=%d\n",
3761              __func__,
3762              pfx,
3763              ni->ni_macaddr,
3764              ":",
3765              tid->tid,
3766              tid->sched, tid->paused,
3767              tid->incomp, tid->baw_head,
3768              tid->baw_tail, tap == NULL ? -1 : tap->txa_start,
3769              ni->ni_txseqs[tid->tid]);
3770
3771         /* XXX Dump the frame, see what it is? */
3772         if (IFF_DUMPPKTS(sc, ATH_DEBUG_XMIT))
3773                 ieee80211_dump_pkt(ni->ni_ic,
3774                     mtod(bf->bf_m, const uint8_t *),
3775                     bf->bf_m->m_len, 0, -1);
3776 }
3777
3778 /*
3779  * Free any packets currently pending in the software TX queue.
3780  *
3781  * This will be called when a node is being deleted.
3782  *
3783  * It can also be called on an active node during an interface
3784  * reset or state transition.
3785  *
3786  * (From Linux/reference):
3787  *
3788  * TODO: For frame(s) that are in the retry state, we will reuse the
3789  * sequence number(s) without setting the retry bit. The
3790  * alternative is to give up on these and BAR the receiver's window
3791  * forward.
3792  */
3793 static void
3794 ath_tx_tid_drain(struct ath_softc *sc, struct ath_node *an,
3795     struct ath_tid *tid, ath_bufhead *bf_cq)
3796 {
3797         struct ath_buf *bf;
3798         struct ieee80211_tx_ampdu *tap;
3799         struct ieee80211_node *ni = &an->an_node;
3800         int t;
3801
3802         tap = ath_tx_get_tx_tid(an, tid->tid);
3803
3804         ATH_TX_LOCK_ASSERT(sc);
3805
3806         /* Walk the queue, free frames */
3807         t = 0;
3808         for (;;) {
3809                 bf = ATH_TID_FIRST(tid);
3810                 if (bf == NULL) {
3811                         break;
3812                 }
3813
3814                 if (t == 0) {
3815                         ath_tx_tid_drain_print(sc, an, "norm", tid, bf);
3816 //                      t = 1;
3817                 }
3818
3819                 ATH_TID_REMOVE(tid, bf, bf_list);
3820                 ath_tx_tid_drain_pkt(sc, an, tid, bf_cq, bf);
3821         }
3822
3823         /* And now, drain the filtered frame queue */
3824         t = 0;
3825         for (;;) {
3826                 bf = ATH_TID_FILT_FIRST(tid);
3827                 if (bf == NULL)
3828                         break;
3829
3830                 if (t == 0) {
3831                         ath_tx_tid_drain_print(sc, an, "filt", tid, bf);
3832 //                      t = 1;
3833                 }
3834
3835                 ATH_TID_FILT_REMOVE(tid, bf, bf_list);
3836                 ath_tx_tid_drain_pkt(sc, an, tid, bf_cq, bf);
3837         }
3838
3839         /*
3840          * Override the clrdmask configuration for the next frame
3841          * in case there is some future transmission, just to get
3842          * the ball rolling.
3843          *
3844          * This won't hurt things if the TID is about to be freed.
3845          */
3846         ath_tx_set_clrdmask(sc, tid->an);
3847
3848         /*
3849          * Now that it's completed, grab the TID lock and update
3850          * the sequence number and BAW window.
3851          * Because sequence numbers have been assigned to frames
3852          * that haven't been sent yet, it's entirely possible
3853          * we'll be called with some pending frames that have not
3854          * been transmitted.
3855          *
3856          * The cleaner solution is to do the sequence number allocation
3857          * when the packet is first transmitted - and thus the "retries"
3858          * check above would be enough to update the BAW/seqno.
3859          */
3860
3861         /* But don't do it for non-QoS TIDs */
3862         if (tap) {
3863 #if 1
3864                 DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL,
3865                     "%s: %6D: node %p: TID %d: sliding BAW left edge to %d\n",
3866                     __func__,
3867                     ni->ni_macaddr,
3868                     ":",
3869                     an,
3870                     tid->tid,
3871                     tap->txa_start);
3872 #endif
3873                 ni->ni_txseqs[tid->tid] = tap->txa_start;
3874                 tid->baw_tail = tid->baw_head;
3875         }
3876 }
3877
3878 /*
3879  * Reset the TID state.  This must be only called once the node has
3880  * had its frames flushed from this TID, to ensure that no other
3881  * pause / unpause logic can kick in.
3882  */
3883 static void
3884 ath_tx_tid_reset(struct ath_softc *sc, struct ath_tid *tid)
3885 {
3886
3887 #if 0
3888         tid->bar_wait = tid->bar_tx = tid->isfiltered = 0;
3889         tid->paused = tid->sched = tid->addba_tx_pending = 0;
3890         tid->incomp = tid->cleanup_inprogress = 0;
3891 #endif
3892
3893         /*
3894          * If we have a bar_wait set, we need to unpause the TID
3895          * here.  Otherwise once cleanup has finished, the TID won't
3896          * have the right paused counter.
3897          *
3898          * XXX I'm not going through resume here - I don't want the
3899          * node to be rescheuled just yet.  This however should be
3900          * methodized!
3901          */
3902         if (tid->bar_wait) {
3903                 if (tid->paused > 0) {
3904                         tid->paused --;
3905                 }
3906         }
3907
3908         /*
3909          * XXX same with a currently filtered TID.
3910          *
3911          * Since this is being called during a flush, we assume that
3912          * the filtered frame list is actually empty.
3913          *
3914          * XXX TODO: add in a check to ensure that the filtered queue
3915          * depth is actually 0!
3916          */
3917         if (tid->isfiltered) {
3918                 if (tid->paused > 0) {
3919                         tid->paused --;
3920                 }
3921         }
3922
3923         /*
3924          * Clear BAR, filtered frames, scheduled and ADDBA pending.
3925          * The TID may be going through cleanup from the last association
3926          * where things in the BAW are still in the hardware queue.
3927          */
3928         tid->bar_wait = 0;
3929         tid->bar_tx = 0;
3930         tid->isfiltered = 0;
3931         tid->sched = 0;
3932         tid->addba_tx_pending = 0;
3933
3934         /*
3935          * XXX TODO: it may just be enough to walk the HWQs and mark
3936          * frames for that node as non-aggregate; or mark the ath_node
3937          * with something that indicates that aggregation is no longer
3938          * occuring.  Then we can just toss the BAW complaints and
3939          * do a complete hard reset of state here - no pause, no
3940          * complete counter, etc.
3941          */
3942
3943 }
3944
3945 /*
3946  * Flush all software queued packets for the given node.
3947  *
3948  * This occurs when a completion handler frees the last buffer
3949  * for a node, and the node is thus freed. This causes the node
3950  * to be cleaned up, which ends up calling ath_tx_node_flush.
3951  */
3952 void
3953 ath_tx_node_flush(struct ath_softc *sc, struct ath_node *an)
3954 {
3955         int tid;
3956         ath_bufhead bf_cq;
3957         struct ath_buf *bf;
3958
3959         TAILQ_INIT(&bf_cq);
3960
3961         ATH_KTR(sc, ATH_KTR_NODE, 1, "ath_tx_node_flush: flush node; ni=%p",
3962             &an->an_node);
3963
3964         ATH_TX_LOCK(sc);
3965         DPRINTF(sc, ATH_DEBUG_NODE,
3966             "%s: %6D: flush; is_powersave=%d, stack_psq=%d, tim=%d, "
3967             "swq_depth=%d, clrdmask=%d, leak_count=%d\n",
3968             __func__,
3969             an->an_node.ni_macaddr,
3970             ":",
3971             an->an_is_powersave,
3972             an->an_stack_psq,
3973             an->an_tim_set,
3974             an->an_swq_depth,
3975             an->clrdmask,
3976             an->an_leak_count);
3977
3978         for (tid = 0; tid < IEEE80211_TID_SIZE; tid++) {
3979                 struct ath_tid *atid = &an->an_tid[tid];
3980
3981                 /* Free packets */
3982                 ath_tx_tid_drain(sc, an, atid, &bf_cq);
3983
3984                 /* Remove this tid from the list of active tids */
3985                 ath_tx_tid_unsched(sc, atid);
3986
3987                 /* Reset the per-TID pause, BAR, etc state */
3988                 ath_tx_tid_reset(sc, atid);
3989         }
3990
3991         /*
3992          * Clear global leak count
3993          */
3994         an->an_leak_count = 0;
3995         ATH_TX_UNLOCK(sc);
3996
3997         /* Handle completed frames */
3998         while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) {
3999                 TAILQ_REMOVE(&bf_cq, bf, bf_list);
4000                 ath_tx_default_comp(sc, bf, 0);
4001         }
4002 }
4003
4004 /*
4005  * Drain all the software TXQs currently with traffic queued.
4006  */
4007 void
4008 ath_tx_txq_drain(struct ath_softc *sc, struct ath_txq *txq)
4009 {
4010         struct ath_tid *tid;
4011         ath_bufhead bf_cq;
4012         struct ath_buf *bf;
4013
4014         TAILQ_INIT(&bf_cq);
4015         ATH_TX_LOCK(sc);
4016
4017         /*
4018          * Iterate over all active tids for the given txq,
4019          * flushing and unsched'ing them
4020          */
4021         while (! TAILQ_EMPTY(&txq->axq_tidq)) {
4022                 tid = TAILQ_FIRST(&txq->axq_tidq);
4023                 ath_tx_tid_drain(sc, tid->an, tid, &bf_cq);
4024                 ath_tx_tid_unsched(sc, tid);
4025         }
4026
4027         ATH_TX_UNLOCK(sc);
4028
4029         while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) {
4030                 TAILQ_REMOVE(&bf_cq, bf, bf_list);
4031                 ath_tx_default_comp(sc, bf, 0);
4032         }
4033 }
4034
4035 /*
4036  * Handle completion of non-aggregate session frames.
4037  *
4038  * This (currently) doesn't implement software retransmission of
4039  * non-aggregate frames!
4040  *
4041  * Software retransmission of non-aggregate frames needs to obey
4042  * the strict sequence number ordering, and drop any frames that
4043  * will fail this.
4044  *
4045  * For now, filtered frames and frame transmission will cause
4046  * all kinds of issues.  So we don't support them.
4047  *
4048  * So anyone queuing frames via ath_tx_normal_xmit() or
4049  * ath_tx_hw_queue_norm() must override and set CLRDMASK.
4050  */
4051 void
4052 ath_tx_normal_comp(struct ath_softc *sc, struct ath_buf *bf, int fail)
4053 {
4054         struct ieee80211_node *ni = bf->bf_node;
4055         struct ath_node *an = ATH_NODE(ni);
4056         int tid = bf->bf_state.bfs_tid;
4057         struct ath_tid *atid = &an->an_tid[tid];
4058         struct ath_tx_status *ts = &bf->bf_status.ds_txstat;
4059
4060         /* The TID state is protected behind the TXQ lock */
4061         ATH_TX_LOCK(sc);
4062
4063         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: bf=%p: fail=%d, hwq_depth now %d\n",
4064             __func__, bf, fail, atid->hwq_depth - 1);
4065
4066         atid->hwq_depth--;
4067
4068 #if 0
4069         /*
4070          * If the frame was filtered, stick it on the filter frame
4071          * queue and complain about it.  It shouldn't happen!
4072          */
4073         if ((ts->ts_status & HAL_TXERR_FILT) ||
4074             (ts->ts_status != 0 && atid->isfiltered)) {
4075                 DPRINTF(sc, ATH_DEBUG_SW_TX,
4076                     "%s: isfiltered=%d, ts_status=%d: huh?\n",
4077                     __func__,
4078                     atid->isfiltered,
4079                     ts->ts_status);
4080                 ath_tx_tid_filt_comp_buf(sc, atid, bf);
4081         }
4082 #endif
4083         if (atid->isfiltered)
4084                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: filtered?!\n", __func__);
4085         if (atid->hwq_depth < 0)
4086                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: hwq_depth < 0: %d\n",
4087                     __func__, atid->hwq_depth);
4088
4089         /*
4090          * If the queue is filtered, potentially mark it as complete
4091          * and reschedule it as needed.
4092          *
4093          * This is required as there may be a subsequent TX descriptor
4094          * for this end-node that has CLRDMASK set, so it's quite possible
4095          * that a filtered frame will be followed by a non-filtered
4096          * (complete or otherwise) frame.
4097          *
4098          * XXX should we do this before we complete the frame?
4099          */
4100         if (atid->isfiltered)
4101                 ath_tx_tid_filt_comp_complete(sc, atid);
4102         ATH_TX_UNLOCK(sc);
4103
4104         /*
4105          * punt to rate control if we're not being cleaned up
4106          * during a hw queue drain and the frame wanted an ACK.
4107          */
4108         if (fail == 0 && ((bf->bf_state.bfs_txflags & HAL_TXDESC_NOACK) == 0))
4109                 ath_tx_update_ratectrl(sc, ni, bf->bf_state.bfs_rc,
4110                     ts, bf->bf_state.bfs_pktlen,
4111                     1, (ts->ts_status == 0) ? 0 : 1);
4112
4113         ath_tx_default_comp(sc, bf, fail);
4114 }
4115
4116 /*
4117  * Handle cleanup of aggregate session packets that aren't
4118  * an A-MPDU.
4119  *
4120  * There's no need to update the BAW here - the session is being
4121  * torn down.
4122  */
4123 static void
4124 ath_tx_comp_cleanup_unaggr(struct ath_softc *sc, struct ath_buf *bf)
4125 {
4126         struct ieee80211_node *ni = bf->bf_node;
4127         struct ath_node *an = ATH_NODE(ni);
4128         int tid = bf->bf_state.bfs_tid;
4129         struct ath_tid *atid = &an->an_tid[tid];
4130
4131         DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL, "%s: TID %d: incomp=%d\n",
4132             __func__, tid, atid->incomp);
4133
4134         ATH_TX_LOCK(sc);
4135         atid->incomp--;
4136         if (atid->incomp == 0) {
4137                 DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL,
4138                     "%s: TID %d: cleaned up! resume!\n",
4139                     __func__, tid);
4140                 atid->cleanup_inprogress = 0;
4141                 ath_tx_tid_resume(sc, atid);
4142         }
4143         ATH_TX_UNLOCK(sc);
4144
4145         ath_tx_default_comp(sc, bf, 0);
4146 }
4147
4148 /*
4149  * Performs transmit side cleanup when TID changes from aggregated to
4150  * unaggregated.
4151  *
4152  * - Discard all retry frames from the s/w queue.
4153  * - Fix the tx completion function for all buffers in s/w queue.
4154  * - Count the number of unacked frames, and let transmit completion
4155  *   handle it later.
4156  *
4157  * The caller is responsible for pausing the TID and unpausing the
4158  * TID if no cleanup was required. Otherwise the cleanup path will
4159  * unpause the TID once the last hardware queued frame is completed.
4160  */
4161 static void
4162 ath_tx_tid_cleanup(struct ath_softc *sc, struct ath_node *an, int tid,
4163     ath_bufhead *bf_cq)
4164 {
4165         struct ath_tid *atid = &an->an_tid[tid];
4166         struct ieee80211_tx_ampdu *tap;
4167         struct ath_buf *bf, *bf_next;
4168
4169         ATH_TX_LOCK_ASSERT(sc);
4170
4171         DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
4172             "%s: TID %d: called\n", __func__, tid);
4173
4174         /*
4175          * Move the filtered frames to the TX queue, before
4176          * we run off and discard/process things.
4177          */
4178         /* XXX this is really quite inefficient */
4179         while ((bf = ATH_TID_FILT_LAST(atid, ath_bufhead_s)) != NULL) {
4180                 ATH_TID_FILT_REMOVE(atid, bf, bf_list);
4181                 ATH_TID_INSERT_HEAD(atid, bf, bf_list);
4182         }
4183
4184         /*
4185          * Update the frames in the software TX queue:
4186          *
4187          * + Discard retry frames in the queue
4188          * + Fix the completion function to be non-aggregate
4189          */
4190         bf = ATH_TID_FIRST(atid);
4191         while (bf) {
4192                 if (bf->bf_state.bfs_isretried) {
4193                         bf_next = TAILQ_NEXT(bf, bf_list);
4194                         ATH_TID_REMOVE(atid, bf, bf_list);
4195                         if (bf->bf_state.bfs_dobaw) {
4196                                 ath_tx_update_baw(sc, an, atid, bf);
4197                                 if (!bf->bf_state.bfs_addedbaw)
4198                                         DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
4199                                             "%s: wasn't added: seqno %d\n",
4200                                             __func__,
4201                                             SEQNO(bf->bf_state.bfs_seqno));
4202                         }
4203                         bf->bf_state.bfs_dobaw = 0;
4204                         /*
4205                          * Call the default completion handler with "fail" just
4206                          * so upper levels are suitably notified about this.
4207                          */
4208                         TAILQ_INSERT_TAIL(bf_cq, bf, bf_list);
4209                         bf = bf_next;
4210                         continue;
4211                 }
4212                 /* Give these the default completion handler */
4213                 bf->bf_comp = ath_tx_normal_comp;
4214                 bf = TAILQ_NEXT(bf, bf_list);
4215         }
4216
4217         /*
4218          * Calculate what hardware-queued frames exist based
4219          * on the current BAW size. Ie, what frames have been
4220          * added to the TX hardware queue for this TID but
4221          * not yet ACKed.
4222          */
4223         tap = ath_tx_get_tx_tid(an, tid);
4224         /* Need the lock - fiddling with BAW */
4225         while (atid->baw_head != atid->baw_tail) {
4226                 if (atid->tx_buf[atid->baw_head]) {
4227                         atid->incomp++;
4228                         atid->cleanup_inprogress = 1;
4229                         atid->tx_buf[atid->baw_head] = NULL;
4230                 }
4231                 INCR(atid->baw_head, ATH_TID_MAX_BUFS);
4232                 INCR(tap->txa_start, IEEE80211_SEQ_RANGE);
4233         }
4234
4235         if (atid->cleanup_inprogress)
4236                 DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL,
4237                     "%s: TID %d: cleanup needed: %d packets\n",
4238                     __func__, tid, atid->incomp);
4239
4240         /* Owner now must free completed frames */
4241 }
4242
4243 static struct ath_buf *
4244 ath_tx_retry_clone(struct ath_softc *sc, struct ath_node *an,
4245     struct ath_tid *tid, struct ath_buf *bf)
4246 {
4247         struct ath_buf *nbf;
4248         int error;
4249
4250         /*
4251          * Clone the buffer.  This will handle the dma unmap and
4252          * copy the node reference to the new buffer.  If this
4253          * works out, 'bf' will have no DMA mapping, no mbuf
4254          * pointer and no node reference.
4255          */
4256         nbf = ath_buf_clone(sc, bf);
4257
4258 #if 0
4259         DPRINTF(sc, ATH_DEBUG_XMIT, "%s: ATH_BUF_BUSY; cloning\n",
4260             __func__);
4261 #endif
4262
4263         if (nbf == NULL) {
4264                 /* Failed to clone */
4265                 DPRINTF(sc, ATH_DEBUG_XMIT,
4266                     "%s: failed to clone a busy buffer\n",
4267                     __func__);
4268                 return NULL;
4269         }
4270
4271         /* Setup the dma for the new buffer */
4272         error = ath_tx_dmasetup(sc, nbf, nbf->bf_m);
4273         if (error != 0) {
4274                 DPRINTF(sc, ATH_DEBUG_XMIT,
4275                     "%s: failed to setup dma for clone\n",
4276                     __func__);
4277                 /*
4278                  * Put this at the head of the list, not tail;
4279                  * that way it doesn't interfere with the
4280                  * busy buffer logic (which uses the tail of
4281                  * the list.)
4282                  */
4283                 ATH_TXBUF_LOCK(sc);
4284                 ath_returnbuf_head(sc, nbf);
4285                 ATH_TXBUF_UNLOCK(sc);
4286                 return NULL;
4287         }
4288
4289         /* Update BAW if required, before we free the original buf */
4290         if (bf->bf_state.bfs_dobaw)
4291                 ath_tx_switch_baw_buf(sc, an, tid, bf, nbf);
4292
4293         /* Free original buffer; return new buffer */
4294         ath_freebuf(sc, bf);
4295
4296         return nbf;
4297 }
4298
4299 /*
4300  * Handle retrying an unaggregate frame in an aggregate
4301  * session.
4302  *
4303  * If too many retries occur, pause the TID, wait for
4304  * any further retransmits (as there's no reason why
4305  * non-aggregate frames in an aggregate session are
4306  * transmitted in-order; they just have to be in-BAW)
4307  * and then queue a BAR.
4308  */
4309 static void
4310 ath_tx_aggr_retry_unaggr(struct ath_softc *sc, struct ath_buf *bf)
4311 {
4312         struct ieee80211_node *ni = bf->bf_node;
4313         struct ath_node *an = ATH_NODE(ni);
4314         int tid = bf->bf_state.bfs_tid;
4315         struct ath_tid *atid = &an->an_tid[tid];
4316         struct ieee80211_tx_ampdu *tap;
4317
4318         ATH_TX_LOCK(sc);
4319
4320         tap = ath_tx_get_tx_tid(an, tid);
4321
4322         /*
4323          * If the buffer is marked as busy, we can't directly
4324          * reuse it. Instead, try to clone the buffer.
4325          * If the clone is successful, recycle the old buffer.
4326          * If the clone is unsuccessful, set bfs_retries to max
4327          * to force the next bit of code to free the buffer
4328          * for us.
4329          */
4330         if ((bf->bf_state.bfs_retries < SWMAX_RETRIES) &&
4331             (bf->bf_flags & ATH_BUF_BUSY)) {
4332                 struct ath_buf *nbf;
4333                 nbf = ath_tx_retry_clone(sc, an, atid, bf);
4334                 if (nbf)
4335                         /* bf has been freed at this point */
4336                         bf = nbf;
4337                 else
4338                         bf->bf_state.bfs_retries = SWMAX_RETRIES + 1;
4339         }
4340
4341         if (bf->bf_state.bfs_retries >= SWMAX_RETRIES) {
4342                 DPRINTF(sc, ATH_DEBUG_SW_TX_RETRIES,
4343                     "%s: exceeded retries; seqno %d\n",
4344                     __func__, SEQNO(bf->bf_state.bfs_seqno));
4345                 sc->sc_stats.ast_tx_swretrymax++;
4346
4347                 /* Update BAW anyway */
4348                 if (bf->bf_state.bfs_dobaw) {
4349                         ath_tx_update_baw(sc, an, atid, bf);
4350                         if (! bf->bf_state.bfs_addedbaw)
4351                                 DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
4352                                     "%s: wasn't added: seqno %d\n",
4353                                     __func__, SEQNO(bf->bf_state.bfs_seqno));
4354                 }
4355                 bf->bf_state.bfs_dobaw = 0;
4356
4357                 /* Suspend the TX queue and get ready to send the BAR */
4358                 ath_tx_tid_bar_suspend(sc, atid);
4359
4360                 /* Send the BAR if there are no other frames waiting */
4361                 if (ath_tx_tid_bar_tx_ready(sc, atid))
4362                         ath_tx_tid_bar_tx(sc, atid);
4363
4364                 ATH_TX_UNLOCK(sc);
4365
4366                 /* Free buffer, bf is free after this call */
4367                 ath_tx_default_comp(sc, bf, 0);
4368                 return;
4369         }
4370
4371         /*
4372          * This increments the retry counter as well as
4373          * sets the retry flag in the ath_buf and packet
4374          * body.
4375          */
4376         ath_tx_set_retry(sc, bf);
4377         sc->sc_stats.ast_tx_swretries++;
4378
4379         /*
4380          * Insert this at the head of the queue, so it's
4381          * retried before any current/subsequent frames.
4382          */
4383         ATH_TID_INSERT_HEAD(atid, bf, bf_list);
4384         ath_tx_tid_sched(sc, atid);
4385         /* Send the BAR if there are no other frames waiting */
4386         if (ath_tx_tid_bar_tx_ready(sc, atid))
4387                 ath_tx_tid_bar_tx(sc, atid);
4388
4389         ATH_TX_UNLOCK(sc);
4390 }
4391
4392 /*
4393  * Common code for aggregate excessive retry/subframe retry.
4394  * If retrying, queues buffers to bf_q. If not, frees the
4395  * buffers.
4396  *
4397  * XXX should unify this with ath_tx_aggr_retry_unaggr()
4398  */
4399 static int
4400 ath_tx_retry_subframe(struct ath_softc *sc, struct ath_buf *bf,
4401     ath_bufhead *bf_q)
4402 {
4403         struct ieee80211_node *ni = bf->bf_node;
4404         struct ath_node *an = ATH_NODE(ni);
4405         int tid = bf->bf_state.bfs_tid;
4406         struct ath_tid *atid = &an->an_tid[tid];
4407
4408         ATH_TX_LOCK_ASSERT(sc);
4409
4410         /* XXX clr11naggr should be done for all subframes */
4411         ath_hal_clr11n_aggr(sc->sc_ah, bf->bf_desc);
4412         ath_hal_set11nburstduration(sc->sc_ah, bf->bf_desc, 0);
4413
4414         /* ath_hal_set11n_virtualmorefrag(sc->sc_ah, bf->bf_desc, 0); */
4415
4416         /*
4417          * If the buffer is marked as busy, we can't directly
4418          * reuse it. Instead, try to clone the buffer.
4419          * If the clone is successful, recycle the old buffer.
4420          * If the clone is unsuccessful, set bfs_retries to max
4421          * to force the next bit of code to free the buffer
4422          * for us.
4423          */
4424         if ((bf->bf_state.bfs_retries < SWMAX_RETRIES) &&
4425             (bf->bf_flags & ATH_BUF_BUSY)) {
4426                 struct ath_buf *nbf;
4427                 nbf = ath_tx_retry_clone(sc, an, atid, bf);
4428                 if (nbf)
4429                         /* bf has been freed at this point */
4430                         bf = nbf;
4431                 else
4432                         bf->bf_state.bfs_retries = SWMAX_RETRIES + 1;
4433         }
4434
4435         if (bf->bf_state.bfs_retries >= SWMAX_RETRIES) {
4436                 sc->sc_stats.ast_tx_swretrymax++;
4437                 DPRINTF(sc, ATH_DEBUG_SW_TX_RETRIES,
4438                     "%s: max retries: seqno %d\n",
4439                     __func__, SEQNO(bf->bf_state.bfs_seqno));
4440                 ath_tx_update_baw(sc, an, atid, bf);
4441                 if (!bf->bf_state.bfs_addedbaw)
4442                         DPRINTF(sc, ATH_DEBUG_SW_TX_BAW,
4443                             "%s: wasn't added: seqno %d\n",
4444                             __func__, SEQNO(bf->bf_state.bfs_seqno));
4445                 bf->bf_state.bfs_dobaw = 0;
4446                 return 1;
4447         }
4448
4449         ath_tx_set_retry(sc, bf);
4450         sc->sc_stats.ast_tx_swretries++;
4451         bf->bf_next = NULL;             /* Just to make sure */
4452
4453         /* Clear the aggregate state */
4454         bf->bf_state.bfs_aggr = 0;
4455         bf->bf_state.bfs_ndelim = 0;    /* ??? needed? */
4456         bf->bf_state.bfs_nframes = 1;
4457
4458         TAILQ_INSERT_TAIL(bf_q, bf, bf_list);
4459         return 0;
4460 }
4461
4462 /*
4463  * error pkt completion for an aggregate destination
4464  */
4465 static void
4466 ath_tx_comp_aggr_error(struct ath_softc *sc, struct ath_buf *bf_first,
4467     struct ath_tid *tid)
4468 {
4469         struct ieee80211_node *ni = bf_first->bf_node;
4470         struct ath_node *an = ATH_NODE(ni);
4471         struct ath_buf *bf_next, *bf;
4472         ath_bufhead bf_q;
4473         int drops = 0;
4474         struct ieee80211_tx_ampdu *tap;
4475         ath_bufhead bf_cq;
4476
4477         TAILQ_INIT(&bf_q);
4478         TAILQ_INIT(&bf_cq);
4479
4480         /*
4481          * Update rate control - all frames have failed.
4482          *
4483          * XXX use the length in the first frame in the series;
4484          * XXX just so things are consistent for now.
4485          */
4486         ath_tx_update_ratectrl(sc, ni, bf_first->bf_state.bfs_rc,
4487             &bf_first->bf_status.ds_txstat,
4488             bf_first->bf_state.bfs_pktlen,
4489             bf_first->bf_state.bfs_nframes, bf_first->bf_state.bfs_nframes);
4490
4491         ATH_TX_LOCK(sc);
4492         tap = ath_tx_get_tx_tid(an, tid->tid);
4493         sc->sc_stats.ast_tx_aggr_failall++;
4494
4495         /* Retry all subframes */
4496         bf = bf_first;
4497         while (bf) {
4498                 bf_next = bf->bf_next;
4499                 bf->bf_next = NULL;     /* Remove it from the aggr list */
4500                 sc->sc_stats.ast_tx_aggr_fail++;
4501                 if (ath_tx_retry_subframe(sc, bf, &bf_q)) {
4502                         drops++;
4503                         bf->bf_next = NULL;
4504                         TAILQ_INSERT_TAIL(&bf_cq, bf, bf_list);
4505                 }
4506                 bf = bf_next;
4507         }
4508
4509         /* Prepend all frames to the beginning of the queue */
4510         while ((bf = TAILQ_LAST(&bf_q, ath_bufhead_s)) != NULL) {
4511                 TAILQ_REMOVE(&bf_q, bf, bf_list);
4512                 ATH_TID_INSERT_HEAD(tid, bf, bf_list);
4513         }
4514
4515         /*
4516          * Schedule the TID to be re-tried.
4517          */
4518         ath_tx_tid_sched(sc, tid);
4519
4520         /*
4521          * send bar if we dropped any frames
4522          *
4523          * Keep the txq lock held for now, as we need to ensure
4524          * that ni_txseqs[] is consistent (as it's being updated
4525          * in the ifnet TX context or raw TX context.)
4526          */
4527         if (drops) {
4528                 /* Suspend the TX queue and get ready to send the BAR */
4529                 ath_tx_tid_bar_suspend(sc, tid);
4530         }
4531
4532         /*
4533          * Send BAR if required
4534          */
4535         if (ath_tx_tid_bar_tx_ready(sc, tid))
4536                 ath_tx_tid_bar_tx(sc, tid);
4537
4538         ATH_TX_UNLOCK(sc);
4539
4540         /* Complete frames which errored out */
4541         while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) {
4542                 TAILQ_REMOVE(&bf_cq, bf, bf_list);
4543                 ath_tx_default_comp(sc, bf, 0);
4544         }
4545 }
4546
4547 /*
4548  * Handle clean-up of packets from an aggregate list.
4549  *
4550  * There's no need to update the BAW here - the session is being
4551  * torn down.
4552  */
4553 static void
4554 ath_tx_comp_cleanup_aggr(struct ath_softc *sc, struct ath_buf *bf_first)
4555 {
4556         struct ath_buf *bf, *bf_next;
4557         struct ieee80211_node *ni = bf_first->bf_node;
4558         struct ath_node *an = ATH_NODE(ni);
4559         int tid = bf_first->bf_state.bfs_tid;
4560         struct ath_tid *atid = &an->an_tid[tid];
4561
4562         ATH_TX_LOCK(sc);
4563
4564         /* update incomp */
4565         bf = bf_first;
4566         while (bf) {
4567                 atid->incomp--;
4568                 bf = bf->bf_next;
4569         }
4570
4571         if (atid->incomp == 0) {
4572                 DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL,
4573                     "%s: TID %d: cleaned up! resume!\n",
4574                     __func__, tid);
4575                 atid->cleanup_inprogress = 0;
4576                 ath_tx_tid_resume(sc, atid);
4577         }
4578
4579         /* Send BAR if required */
4580         /* XXX why would we send a BAR when transitioning to non-aggregation? */
4581         /*
4582          * XXX TODO: we should likely just tear down the BAR state here,
4583          * rather than sending a BAR.
4584          */
4585         if (ath_tx_tid_bar_tx_ready(sc, atid))
4586                 ath_tx_tid_bar_tx(sc, atid);
4587
4588         ATH_TX_UNLOCK(sc);
4589
4590         /* Handle frame completion */
4591         bf = bf_first;
4592         while (bf) {
4593                 bf_next = bf->bf_next;
4594                 ath_tx_default_comp(sc, bf, 1);
4595                 bf = bf_next;
4596         }
4597 }
4598
4599 /*
4600  * Handle completion of an set of aggregate frames.
4601  *
4602  * Note: the completion handler is the last descriptor in the aggregate,
4603  * not the last descriptor in the first frame.
4604  */
4605 static void
4606 ath_tx_aggr_comp_aggr(struct ath_softc *sc, struct ath_buf *bf_first,
4607     int fail)
4608 {
4609         //struct ath_desc *ds = bf->bf_lastds;
4610         struct ieee80211_node *ni = bf_first->bf_node;
4611         struct ath_node *an = ATH_NODE(ni);
4612         int tid = bf_first->bf_state.bfs_tid;
4613         struct ath_tid *atid = &an->an_tid[tid];
4614         struct ath_tx_status ts;
4615         struct ieee80211_tx_ampdu *tap;
4616         ath_bufhead bf_q;
4617         ath_bufhead bf_cq;
4618         int seq_st, tx_ok;
4619         int hasba, isaggr;
4620         uint32_t ba[2];
4621         struct ath_buf *bf, *bf_next;
4622         int ba_index;
4623         int drops = 0;
4624         int nframes = 0, nbad = 0, nf;
4625         int pktlen;
4626         /* XXX there's too much on the stack? */
4627         struct ath_rc_series rc[ATH_RC_NUM];
4628         int txseq;
4629
4630         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR, "%s: called; hwq_depth=%d\n",
4631             __func__, atid->hwq_depth);
4632
4633         /*
4634          * Take a copy; this may be needed -after- bf_first
4635          * has been completed and freed.
4636          */
4637         ts = bf_first->bf_status.ds_txstat;
4638
4639         TAILQ_INIT(&bf_q);
4640         TAILQ_INIT(&bf_cq);
4641
4642         /* The TID state is kept behind the TXQ lock */
4643         ATH_TX_LOCK(sc);
4644
4645         atid->hwq_depth--;
4646         if (atid->hwq_depth < 0)
4647                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR, "%s: hwq_depth < 0: %d\n",
4648                     __func__, atid->hwq_depth);
4649
4650         /*
4651          * If the TID is filtered, handle completing the filter
4652          * transition before potentially kicking it to the cleanup
4653          * function.
4654          *
4655          * XXX this is duplicate work, ew.
4656          */
4657         if (atid->isfiltered)
4658                 ath_tx_tid_filt_comp_complete(sc, atid);
4659
4660         /*
4661          * Punt cleanup to the relevant function, not our problem now
4662          */
4663         if (atid->cleanup_inprogress) {
4664                 if (atid->isfiltered)
4665                         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
4666                             "%s: isfiltered=1, normal_comp?\n",
4667                             __func__);
4668                 ATH_TX_UNLOCK(sc);
4669                 ath_tx_comp_cleanup_aggr(sc, bf_first);
4670                 return;
4671         }
4672
4673         /*
4674          * If the frame is filtered, transition to filtered frame
4675          * mode and add this to the filtered frame list.
4676          *
4677          * XXX TODO: figure out how this interoperates with
4678          * BAR, pause and cleanup states.
4679          */
4680         if ((ts.ts_status & HAL_TXERR_FILT) ||
4681             (ts.ts_status != 0 && atid->isfiltered)) {
4682                 if (fail != 0)
4683                         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
4684                             "%s: isfiltered=1, fail=%d\n", __func__, fail);
4685                 ath_tx_tid_filt_comp_aggr(sc, atid, bf_first, &bf_cq);
4686
4687                 /* Remove from BAW */
4688                 TAILQ_FOREACH_SAFE(bf, &bf_cq, bf_list, bf_next) {
4689                         if (bf->bf_state.bfs_addedbaw)
4690                                 drops++;
4691                         if (bf->bf_state.bfs_dobaw) {
4692                                 ath_tx_update_baw(sc, an, atid, bf);
4693                                 if (!bf->bf_state.bfs_addedbaw)
4694                                         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
4695                                             "%s: wasn't added: seqno %d\n",
4696                                             __func__,
4697                                             SEQNO(bf->bf_state.bfs_seqno));
4698                         }
4699                         bf->bf_state.bfs_dobaw = 0;
4700                 }
4701                 /*
4702                  * If any intermediate frames in the BAW were dropped when
4703                  * handling filtering things, send a BAR.
4704                  */
4705                 if (drops)
4706                         ath_tx_tid_bar_suspend(sc, atid);
4707
4708                 /*
4709                  * Finish up by sending a BAR if required and freeing
4710                  * the frames outside of the TX lock.
4711                  */
4712                 goto finish_send_bar;
4713         }
4714
4715         /*
4716          * XXX for now, use the first frame in the aggregate for
4717          * XXX rate control completion; it's at least consistent.
4718          */
4719         pktlen = bf_first->bf_state.bfs_pktlen;
4720
4721         /*
4722          * Handle errors first!
4723          *
4724          * Here, handle _any_ error as a "exceeded retries" error.
4725          * Later on (when filtered frames are to be specially handled)
4726          * it'll have to be expanded.
4727          */
4728 #if 0
4729         if (ts.ts_status & HAL_TXERR_XRETRY) {
4730 #endif
4731         if (ts.ts_status != 0) {
4732                 ATH_TX_UNLOCK(sc);
4733                 ath_tx_comp_aggr_error(sc, bf_first, atid);
4734                 return;
4735         }
4736
4737         tap = ath_tx_get_tx_tid(an, tid);
4738
4739         /*
4740          * extract starting sequence and block-ack bitmap
4741          */
4742         /* XXX endian-ness of seq_st, ba? */
4743         seq_st = ts.ts_seqnum;
4744         hasba = !! (ts.ts_flags & HAL_TX_BA);
4745         tx_ok = (ts.ts_status == 0);
4746         isaggr = bf_first->bf_state.bfs_aggr;
4747         ba[0] = ts.ts_ba_low;
4748         ba[1] = ts.ts_ba_high;
4749
4750         /*
4751          * Copy the TX completion status and the rate control
4752          * series from the first descriptor, as it may be freed
4753          * before the rate control code can get its grubby fingers
4754          * into things.
4755          */
4756         memcpy(rc, bf_first->bf_state.bfs_rc, sizeof(rc));
4757
4758         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
4759             "%s: txa_start=%d, tx_ok=%d, status=%.8x, flags=%.8x, "
4760             "isaggr=%d, seq_st=%d, hasba=%d, ba=%.8x, %.8x\n",
4761             __func__, tap->txa_start, tx_ok, ts.ts_status, ts.ts_flags,
4762             isaggr, seq_st, hasba, ba[0], ba[1]);
4763
4764         /*
4765          * The reference driver doesn't do this; it simply ignores
4766          * this check in its entirety.
4767          *
4768          * I've seen this occur when using iperf to send traffic
4769          * out tid 1 - the aggregate frames are all marked as TID 1,
4770          * but the TXSTATUS has TID=0.  So, let's just ignore this
4771          * check.
4772          */
4773 #if 0
4774         /* Occasionally, the MAC sends a tx status for the wrong TID. */
4775         if (tid != ts.ts_tid) {
4776                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR, "%s: tid %d != hw tid %d\n",
4777                     __func__, tid, ts.ts_tid);
4778                 tx_ok = 0;
4779         }
4780 #endif
4781
4782         /* AR5416 BA bug; this requires an interface reset */
4783         if (isaggr && tx_ok && (! hasba)) {
4784                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
4785                     "%s: AR5416 bug: hasba=%d; txok=%d, isaggr=%d, "
4786                     "seq_st=%d\n",
4787                     __func__, hasba, tx_ok, isaggr, seq_st);
4788                 /* XXX TODO: schedule an interface reset */
4789 #ifdef ATH_DEBUG
4790                 ath_printtxbuf(sc, bf_first,
4791                     sc->sc_ac2q[atid->ac]->axq_qnum, 0, 0);
4792 #endif
4793         }
4794
4795         /*
4796          * Walk the list of frames, figure out which ones were correctly
4797          * sent and which weren't.
4798          */
4799         bf = bf_first;
4800         nf = bf_first->bf_state.bfs_nframes;
4801
4802         /* bf_first is going to be invalid once this list is walked */
4803         bf_first = NULL;
4804
4805         /*
4806          * Walk the list of completed frames and determine
4807          * which need to be completed and which need to be
4808          * retransmitted.
4809          *
4810          * For completed frames, the completion functions need
4811          * to be called at the end of this function as the last
4812          * node reference may free the node.
4813          *
4814          * Finally, since the TXQ lock can't be held during the
4815          * completion callback (to avoid lock recursion),
4816          * the completion calls have to be done outside of the
4817          * lock.
4818          */
4819         while (bf) {
4820                 nframes++;
4821                 ba_index = ATH_BA_INDEX(seq_st,
4822                     SEQNO(bf->bf_state.bfs_seqno));
4823                 bf_next = bf->bf_next;
4824                 bf->bf_next = NULL;     /* Remove it from the aggr list */
4825
4826                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
4827                     "%s: checking bf=%p seqno=%d; ack=%d\n",
4828                     __func__, bf, SEQNO(bf->bf_state.bfs_seqno),
4829                     ATH_BA_ISSET(ba, ba_index));
4830
4831                 if (tx_ok && ATH_BA_ISSET(ba, ba_index)) {
4832                         sc->sc_stats.ast_tx_aggr_ok++;
4833                         ath_tx_update_baw(sc, an, atid, bf);
4834                         bf->bf_state.bfs_dobaw = 0;
4835                         if (!bf->bf_state.bfs_addedbaw)
4836                                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
4837                                     "%s: wasn't added: seqno %d\n",
4838                                     __func__, SEQNO(bf->bf_state.bfs_seqno));
4839                         bf->bf_next = NULL;
4840                         TAILQ_INSERT_TAIL(&bf_cq, bf, bf_list);
4841                 } else {
4842                         sc->sc_stats.ast_tx_aggr_fail++;
4843                         if (ath_tx_retry_subframe(sc, bf, &bf_q)) {
4844                                 drops++;
4845                                 bf->bf_next = NULL;
4846                                 TAILQ_INSERT_TAIL(&bf_cq, bf, bf_list);
4847                         }
4848                         nbad++;
4849                 }
4850                 bf = bf_next;
4851         }
4852
4853         /*
4854          * Now that the BAW updates have been done, unlock
4855          *
4856          * txseq is grabbed before the lock is released so we
4857          * have a consistent view of what -was- in the BAW.
4858          * Anything after this point will not yet have been
4859          * TXed.
4860          */
4861         txseq = tap->txa_start;
4862         ATH_TX_UNLOCK(sc);
4863
4864         if (nframes != nf)
4865                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
4866                     "%s: num frames seen=%d; bf nframes=%d\n",
4867                     __func__, nframes, nf);
4868
4869         /*
4870          * Now we know how many frames were bad, call the rate
4871          * control code.
4872          */
4873         if (fail == 0)
4874                 ath_tx_update_ratectrl(sc, ni, rc, &ts, pktlen, nframes,
4875                     nbad);
4876
4877         /*
4878          * send bar if we dropped any frames
4879          */
4880         if (drops) {
4881                 /* Suspend the TX queue and get ready to send the BAR */
4882                 ATH_TX_LOCK(sc);
4883                 ath_tx_tid_bar_suspend(sc, atid);
4884                 ATH_TX_UNLOCK(sc);
4885         }
4886
4887         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
4888             "%s: txa_start now %d\n", __func__, tap->txa_start);
4889
4890         ATH_TX_LOCK(sc);
4891
4892         /* Prepend all frames to the beginning of the queue */
4893         while ((bf = TAILQ_LAST(&bf_q, ath_bufhead_s)) != NULL) {
4894                 TAILQ_REMOVE(&bf_q, bf, bf_list);
4895                 ATH_TID_INSERT_HEAD(atid, bf, bf_list);
4896         }
4897
4898         /*
4899          * Reschedule to grab some further frames.
4900          */
4901         ath_tx_tid_sched(sc, atid);
4902
4903         /*
4904          * If the queue is filtered, re-schedule as required.
4905          *
4906          * This is required as there may be a subsequent TX descriptor
4907          * for this end-node that has CLRDMASK set, so it's quite possible
4908          * that a filtered frame will be followed by a non-filtered
4909          * (complete or otherwise) frame.
4910          *
4911          * XXX should we do this before we complete the frame?
4912          */
4913         if (atid->isfiltered)
4914                 ath_tx_tid_filt_comp_complete(sc, atid);
4915
4916 finish_send_bar:
4917
4918         /*
4919          * Send BAR if required
4920          */
4921         if (ath_tx_tid_bar_tx_ready(sc, atid))
4922                 ath_tx_tid_bar_tx(sc, atid);
4923
4924         ATH_TX_UNLOCK(sc);
4925
4926         /* Do deferred completion */
4927         while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) {
4928                 TAILQ_REMOVE(&bf_cq, bf, bf_list);
4929                 ath_tx_default_comp(sc, bf, 0);
4930         }
4931 }
4932
4933 /*
4934  * Handle completion of unaggregated frames in an ADDBA
4935  * session.
4936  *
4937  * Fail is set to 1 if the entry is being freed via a call to
4938  * ath_tx_draintxq().
4939  */
4940 static void
4941 ath_tx_aggr_comp_unaggr(struct ath_softc *sc, struct ath_buf *bf, int fail)
4942 {
4943         struct ieee80211_node *ni = bf->bf_node;
4944         struct ath_node *an = ATH_NODE(ni);
4945         int tid = bf->bf_state.bfs_tid;
4946         struct ath_tid *atid = &an->an_tid[tid];
4947         struct ath_tx_status ts;
4948         int drops = 0;
4949
4950         /*
4951          * Take a copy of this; filtering/cloning the frame may free the
4952          * bf pointer.
4953          */
4954         ts = bf->bf_status.ds_txstat;
4955
4956         /*
4957          * Update rate control status here, before we possibly
4958          * punt to retry or cleanup.
4959          *
4960          * Do it outside of the TXQ lock.
4961          */
4962         if (fail == 0 && ((bf->bf_state.bfs_txflags & HAL_TXDESC_NOACK) == 0))
4963                 ath_tx_update_ratectrl(sc, ni, bf->bf_state.bfs_rc,
4964                     &bf->bf_status.ds_txstat,
4965                     bf->bf_state.bfs_pktlen,
4966                     1, (ts.ts_status == 0) ? 0 : 1);
4967
4968         /*
4969          * This is called early so atid->hwq_depth can be tracked.
4970          * This unfortunately means that it's released and regrabbed
4971          * during retry and cleanup. That's rather inefficient.
4972          */
4973         ATH_TX_LOCK(sc);
4974
4975         if (tid == IEEE80211_NONQOS_TID)
4976                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: TID=16!\n", __func__);
4977
4978         DPRINTF(sc, ATH_DEBUG_SW_TX,
4979             "%s: bf=%p: tid=%d, hwq_depth=%d, seqno=%d\n",
4980             __func__, bf, bf->bf_state.bfs_tid, atid->hwq_depth,
4981             SEQNO(bf->bf_state.bfs_seqno));
4982
4983         atid->hwq_depth--;
4984         if (atid->hwq_depth < 0)
4985                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: hwq_depth < 0: %d\n",
4986                     __func__, atid->hwq_depth);
4987
4988         /*
4989          * If the TID is filtered, handle completing the filter
4990          * transition before potentially kicking it to the cleanup
4991          * function.
4992          */
4993         if (atid->isfiltered)
4994                 ath_tx_tid_filt_comp_complete(sc, atid);
4995
4996         /*
4997          * If a cleanup is in progress, punt to comp_cleanup;
4998          * rather than handling it here. It's thus their
4999          * responsibility to clean up, call the completion
5000          * function in net80211, etc.
5001          */
5002         if (atid->cleanup_inprogress) {
5003                 if (atid->isfiltered)
5004                         DPRINTF(sc, ATH_DEBUG_SW_TX,
5005                             "%s: isfiltered=1, normal_comp?\n",
5006                             __func__);
5007                 ATH_TX_UNLOCK(sc);
5008                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: cleanup_unaggr\n",
5009                     __func__);
5010                 ath_tx_comp_cleanup_unaggr(sc, bf);
5011                 return;
5012         }
5013
5014         /*
5015          * XXX TODO: how does cleanup, BAR and filtered frame handling
5016          * overlap?
5017          *
5018          * If the frame is filtered OR if it's any failure but
5019          * the TID is filtered, the frame must be added to the
5020          * filtered frame list.
5021          *
5022          * However - a busy buffer can't be added to the filtered
5023          * list as it will end up being recycled without having
5024          * been made available for the hardware.
5025          */
5026         if ((ts.ts_status & HAL_TXERR_FILT) ||
5027             (ts.ts_status != 0 && atid->isfiltered)) {
5028                 int freeframe;
5029
5030                 if (fail != 0)
5031                         DPRINTF(sc, ATH_DEBUG_SW_TX,
5032                             "%s: isfiltered=1, fail=%d\n",
5033                             __func__, fail);
5034                 freeframe = ath_tx_tid_filt_comp_single(sc, atid, bf);
5035                 if (freeframe) {
5036                         /* Remove from BAW */
5037                         if (bf->bf_state.bfs_addedbaw)
5038                                 drops++;
5039                         if (bf->bf_state.bfs_dobaw) {
5040                                 ath_tx_update_baw(sc, an, atid, bf);
5041                                 if (!bf->bf_state.bfs_addedbaw)
5042                                         DPRINTF(sc, ATH_DEBUG_SW_TX,
5043                                             "%s: wasn't added: seqno %d\n",
5044                                             __func__, SEQNO(bf->bf_state.bfs_seqno));
5045                         }
5046                         bf->bf_state.bfs_dobaw = 0;
5047                 }
5048
5049                 /*
5050                  * If the frame couldn't be filtered, treat it as a drop and
5051                  * prepare to send a BAR.
5052                  */
5053                 if (freeframe && drops)
5054                         ath_tx_tid_bar_suspend(sc, atid);
5055
5056                 /*
5057                  * Send BAR if required
5058                  */
5059                 if (ath_tx_tid_bar_tx_ready(sc, atid))
5060                         ath_tx_tid_bar_tx(sc, atid);
5061
5062                 ATH_TX_UNLOCK(sc);
5063                 /*
5064                  * If freeframe is set, then the frame couldn't be
5065                  * cloned and bf is still valid.  Just complete/free it.
5066                  */
5067                 if (freeframe)
5068                         ath_tx_default_comp(sc, bf, fail);
5069
5070
5071                 return;
5072         }
5073         /*
5074          * Don't bother with the retry check if all frames
5075          * are being failed (eg during queue deletion.)
5076          */
5077 #if 0
5078         if (fail == 0 && ts->ts_status & HAL_TXERR_XRETRY) {
5079 #endif
5080         if (fail == 0 && ts.ts_status != 0) {
5081                 ATH_TX_UNLOCK(sc);
5082                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: retry_unaggr\n",
5083                     __func__);
5084                 ath_tx_aggr_retry_unaggr(sc, bf);
5085                 return;
5086         }
5087
5088         /* Success? Complete */
5089         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: TID=%d, seqno %d\n",
5090             __func__, tid, SEQNO(bf->bf_state.bfs_seqno));
5091         if (bf->bf_state.bfs_dobaw) {
5092                 ath_tx_update_baw(sc, an, atid, bf);
5093                 bf->bf_state.bfs_dobaw = 0;
5094                 if (!bf->bf_state.bfs_addedbaw)
5095                         DPRINTF(sc, ATH_DEBUG_SW_TX,
5096                             "%s: wasn't added: seqno %d\n",
5097                             __func__, SEQNO(bf->bf_state.bfs_seqno));
5098         }
5099
5100         /*
5101          * If the queue is filtered, re-schedule as required.
5102          *
5103          * This is required as there may be a subsequent TX descriptor
5104          * for this end-node that has CLRDMASK set, so it's quite possible
5105          * that a filtered frame will be followed by a non-filtered
5106          * (complete or otherwise) frame.
5107          *
5108          * XXX should we do this before we complete the frame?
5109          */
5110         if (atid->isfiltered)
5111                 ath_tx_tid_filt_comp_complete(sc, atid);
5112
5113         /*
5114          * Send BAR if required
5115          */
5116         if (ath_tx_tid_bar_tx_ready(sc, atid))
5117                 ath_tx_tid_bar_tx(sc, atid);
5118
5119         ATH_TX_UNLOCK(sc);
5120
5121         ath_tx_default_comp(sc, bf, fail);
5122         /* bf is freed at this point */
5123 }
5124
5125 void
5126 ath_tx_aggr_comp(struct ath_softc *sc, struct ath_buf *bf, int fail)
5127 {
5128         if (bf->bf_state.bfs_aggr)
5129                 ath_tx_aggr_comp_aggr(sc, bf, fail);
5130         else
5131                 ath_tx_aggr_comp_unaggr(sc, bf, fail);
5132 }
5133
5134 /*
5135  * Schedule some packets from the given node/TID to the hardware.
5136  *
5137  * This is the aggregate version.
5138  */
5139 void
5140 ath_tx_tid_hw_queue_aggr(struct ath_softc *sc, struct ath_node *an,
5141     struct ath_tid *tid)
5142 {
5143         struct ath_buf *bf;
5144         struct ath_txq *txq = sc->sc_ac2q[tid->ac];
5145         struct ieee80211_tx_ampdu *tap;
5146         ATH_AGGR_STATUS status;
5147         ath_bufhead bf_q;
5148
5149         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: tid=%d\n", __func__, tid->tid);
5150         ATH_TX_LOCK_ASSERT(sc);
5151
5152         /*
5153          * XXX TODO: If we're called for a queue that we're leaking frames to,
5154          * ensure we only leak one.
5155          */
5156
5157         tap = ath_tx_get_tx_tid(an, tid->tid);
5158
5159         if (tid->tid == IEEE80211_NONQOS_TID)
5160                 DPRINTF(sc, ATH_DEBUG_SW_TX, 
5161                     "%s: called for TID=NONQOS_TID?\n", __func__);
5162
5163         for (;;) {
5164                 status = ATH_AGGR_DONE;
5165
5166                 /*
5167                  * If the upper layer has paused the TID, don't
5168                  * queue any further packets.
5169                  *
5170                  * This can also occur from the completion task because
5171                  * of packet loss; but as its serialised with this code,
5172                  * it won't "appear" half way through queuing packets.
5173                  */
5174                 if (! ath_tx_tid_can_tx_or_sched(sc, tid))
5175                         break;
5176
5177                 bf = ATH_TID_FIRST(tid);
5178                 if (bf == NULL) {
5179                         break;
5180                 }
5181
5182                 /*
5183                  * If the packet doesn't fall within the BAW (eg a NULL
5184                  * data frame), schedule it directly; continue.
5185                  */
5186                 if (! bf->bf_state.bfs_dobaw) {
5187                         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
5188                             "%s: non-baw packet\n",
5189                             __func__);
5190                         ATH_TID_REMOVE(tid, bf, bf_list);
5191
5192                         if (bf->bf_state.bfs_nframes > 1)
5193                                 DPRINTF(sc, ATH_DEBUG_SW_TX, 
5194                                     "%s: aggr=%d, nframes=%d\n",
5195                                     __func__,
5196                                     bf->bf_state.bfs_aggr,
5197                                     bf->bf_state.bfs_nframes);
5198
5199                         /*
5200                          * This shouldn't happen - such frames shouldn't
5201                          * ever have been queued as an aggregate in the
5202                          * first place.  However, make sure the fields
5203                          * are correctly setup just to be totally sure.
5204                          */
5205                         bf->bf_state.bfs_aggr = 0;
5206                         bf->bf_state.bfs_nframes = 1;
5207
5208                         /* Update CLRDMASK just before this frame is queued */
5209                         ath_tx_update_clrdmask(sc, tid, bf);
5210
5211                         ath_tx_do_ratelookup(sc, bf);
5212                         ath_tx_calc_duration(sc, bf);
5213                         ath_tx_calc_protection(sc, bf);
5214                         ath_tx_set_rtscts(sc, bf);
5215                         ath_tx_rate_fill_rcflags(sc, bf);
5216                         ath_tx_setds(sc, bf);
5217                         ath_hal_clr11n_aggr(sc->sc_ah, bf->bf_desc);
5218
5219                         sc->sc_aggr_stats.aggr_nonbaw_pkt++;
5220
5221                         /* Queue the packet; continue */
5222                         goto queuepkt;
5223                 }
5224
5225                 TAILQ_INIT(&bf_q);
5226
5227                 /*
5228                  * Do a rate control lookup on the first frame in the
5229                  * list. The rate control code needs that to occur
5230                  * before it can determine whether to TX.
5231                  * It's inaccurate because the rate control code doesn't
5232                  * really "do" aggregate lookups, so it only considers
5233                  * the size of the first frame.
5234                  */
5235                 ath_tx_do_ratelookup(sc, bf);
5236                 bf->bf_state.bfs_rc[3].rix = 0;
5237                 bf->bf_state.bfs_rc[3].tries = 0;
5238
5239                 ath_tx_calc_duration(sc, bf);
5240                 ath_tx_calc_protection(sc, bf);
5241
5242                 ath_tx_set_rtscts(sc, bf);
5243                 ath_tx_rate_fill_rcflags(sc, bf);
5244
5245                 status = ath_tx_form_aggr(sc, an, tid, &bf_q);
5246
5247                 DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
5248                     "%s: ath_tx_form_aggr() status=%d\n", __func__, status);
5249
5250                 /*
5251                  * No frames to be picked up - out of BAW
5252                  */
5253                 if (TAILQ_EMPTY(&bf_q))
5254                         break;
5255
5256                 /*
5257                  * This assumes that the descriptor list in the ath_bufhead
5258                  * are already linked together via bf_next pointers.
5259                  */
5260                 bf = TAILQ_FIRST(&bf_q);
5261
5262                 if (status == ATH_AGGR_8K_LIMITED)
5263                         sc->sc_aggr_stats.aggr_rts_aggr_limited++;
5264
5265                 /*
5266                  * If it's the only frame send as non-aggregate
5267                  * assume that ath_tx_form_aggr() has checked
5268                  * whether it's in the BAW and added it appropriately.
5269                  */
5270                 if (bf->bf_state.bfs_nframes == 1) {
5271                         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
5272                             "%s: single-frame aggregate\n", __func__);
5273
5274                         /* Update CLRDMASK just before this frame is queued */
5275                         ath_tx_update_clrdmask(sc, tid, bf);
5276
5277                         bf->bf_state.bfs_aggr = 0;
5278                         bf->bf_state.bfs_ndelim = 0;
5279                         ath_tx_setds(sc, bf);
5280                         ath_hal_clr11n_aggr(sc->sc_ah, bf->bf_desc);
5281                         if (status == ATH_AGGR_BAW_CLOSED)
5282                                 sc->sc_aggr_stats.aggr_baw_closed_single_pkt++;
5283                         else
5284                                 sc->sc_aggr_stats.aggr_single_pkt++;
5285                 } else {
5286                         DPRINTF(sc, ATH_DEBUG_SW_TX_AGGR,
5287                             "%s: multi-frame aggregate: %d frames, "
5288                             "length %d\n",
5289                              __func__, bf->bf_state.bfs_nframes,
5290                             bf->bf_state.bfs_al);
5291                         bf->bf_state.bfs_aggr = 1;
5292                         sc->sc_aggr_stats.aggr_pkts[bf->bf_state.bfs_nframes]++;
5293                         sc->sc_aggr_stats.aggr_aggr_pkt++;
5294
5295                         /* Update CLRDMASK just before this frame is queued */
5296                         ath_tx_update_clrdmask(sc, tid, bf);
5297
5298                         /*
5299                          * Calculate the duration/protection as required.
5300                          */
5301                         ath_tx_calc_duration(sc, bf);
5302                         ath_tx_calc_protection(sc, bf);
5303
5304                         /*
5305                          * Update the rate and rtscts information based on the
5306                          * rate decision made by the rate control code;
5307                          * the first frame in the aggregate needs it.
5308                          */
5309                         ath_tx_set_rtscts(sc, bf);
5310
5311                         /*
5312                          * Setup the relevant descriptor fields
5313                          * for aggregation. The first descriptor
5314                          * already points to the rest in the chain.
5315                          */
5316                         ath_tx_setds_11n(sc, bf);
5317
5318                 }
5319         queuepkt:
5320                 /* Set completion handler, multi-frame aggregate or not */
5321                 bf->bf_comp = ath_tx_aggr_comp;
5322
5323                 if (bf->bf_state.bfs_tid == IEEE80211_NONQOS_TID)
5324                         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: TID=16?\n", __func__);
5325
5326                 /*
5327                  * Update leak count and frame config if were leaking frames.
5328                  *
5329                  * XXX TODO: it should update all frames in an aggregate
5330                  * correctly!
5331                  */
5332                 ath_tx_leak_count_update(sc, tid, bf);
5333
5334                 /* Punt to txq */
5335                 ath_tx_handoff(sc, txq, bf);
5336
5337                 /* Track outstanding buffer count to hardware */
5338                 /* aggregates are "one" buffer */
5339                 tid->hwq_depth++;
5340
5341                 /*
5342                  * Break out if ath_tx_form_aggr() indicated
5343                  * there can't be any further progress (eg BAW is full.)
5344                  * Checking for an empty txq is done above.
5345                  *
5346                  * XXX locking on txq here?
5347                  */
5348                 /* XXX TXQ locking */
5349                 if (txq->axq_aggr_depth >= sc->sc_hwq_limit_aggr ||
5350                     (status == ATH_AGGR_BAW_CLOSED ||
5351                      status == ATH_AGGR_LEAK_CLOSED))
5352                         break;
5353         }
5354 }
5355
5356 /*
5357  * Schedule some packets from the given node/TID to the hardware.
5358  *
5359  * XXX TODO: this routine doesn't enforce the maximum TXQ depth.
5360  * It just dumps frames into the TXQ.  We should limit how deep
5361  * the transmit queue can grow for frames dispatched to the given
5362  * TXQ.
5363  *
5364  * To avoid locking issues, either we need to own the TXQ lock
5365  * at this point, or we need to pass in the maximum frame count
5366  * from the caller.
5367  */
5368 void
5369 ath_tx_tid_hw_queue_norm(struct ath_softc *sc, struct ath_node *an,
5370     struct ath_tid *tid)
5371 {
5372         struct ath_buf *bf;
5373         struct ath_txq *txq = sc->sc_ac2q[tid->ac];
5374
5375         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: node %p: TID %d: called\n",
5376             __func__, an, tid->tid);
5377
5378         ATH_TX_LOCK_ASSERT(sc);
5379
5380         /* Check - is AMPDU pending or running? then print out something */
5381         if (ath_tx_ampdu_pending(sc, an, tid->tid))
5382                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: tid=%d, ampdu pending?\n",
5383                     __func__, tid->tid);
5384         if (ath_tx_ampdu_running(sc, an, tid->tid))
5385                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: tid=%d, ampdu running?\n",
5386                     __func__, tid->tid);
5387
5388         for (;;) {
5389
5390                 /*
5391                  * If the upper layers have paused the TID, don't
5392                  * queue any further packets.
5393                  *
5394                  * XXX if we are leaking frames, make sure we decrement
5395                  * that counter _and_ we continue here.
5396                  */
5397                 if (! ath_tx_tid_can_tx_or_sched(sc, tid))
5398                         break;
5399
5400                 bf = ATH_TID_FIRST(tid);
5401                 if (bf == NULL) {
5402                         break;
5403                 }
5404
5405                 ATH_TID_REMOVE(tid, bf, bf_list);
5406
5407                 /* Sanity check! */
5408                 if (tid->tid != bf->bf_state.bfs_tid) {
5409                         DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: bfs_tid %d !="
5410                             " tid %d\n", __func__, bf->bf_state.bfs_tid,
5411                             tid->tid);
5412                 }
5413                 /* Normal completion handler */
5414                 bf->bf_comp = ath_tx_normal_comp;
5415
5416                 /*
5417                  * Override this for now, until the non-aggregate
5418                  * completion handler correctly handles software retransmits.
5419                  */
5420                 bf->bf_state.bfs_txflags |= HAL_TXDESC_CLRDMASK;
5421
5422                 /* Update CLRDMASK just before this frame is queued */
5423                 ath_tx_update_clrdmask(sc, tid, bf);
5424
5425                 /* Program descriptors + rate control */
5426                 ath_tx_do_ratelookup(sc, bf);
5427                 ath_tx_calc_duration(sc, bf);
5428                 ath_tx_calc_protection(sc, bf);
5429                 ath_tx_set_rtscts(sc, bf);
5430                 ath_tx_rate_fill_rcflags(sc, bf);
5431                 ath_tx_setds(sc, bf);
5432
5433                 /*
5434                  * Update the current leak count if
5435                  * we're leaking frames; and set the
5436                  * MORE flag as appropriate.
5437                  */
5438                 ath_tx_leak_count_update(sc, tid, bf);
5439
5440                 /* Track outstanding buffer count to hardware */
5441                 /* aggregates are "one" buffer */
5442                 tid->hwq_depth++;
5443
5444                 /* Punt to hardware or software txq */
5445                 ath_tx_handoff(sc, txq, bf);
5446         }
5447 }
5448
5449 /*
5450  * Schedule some packets to the given hardware queue.
5451  *
5452  * This function walks the list of TIDs (ie, ath_node TIDs
5453  * with queued traffic) and attempts to schedule traffic
5454  * from them.
5455  *
5456  * TID scheduling is implemented as a FIFO, with TIDs being
5457  * added to the end of the queue after some frames have been
5458  * scheduled.
5459  */
5460 void
5461 ath_txq_sched(struct ath_softc *sc, struct ath_txq *txq)
5462 {
5463         struct ath_tid *tid, *next, *last;
5464
5465         ATH_TX_LOCK_ASSERT(sc);
5466
5467         /*
5468          * Don't schedule if the hardware queue is busy.
5469          * This (hopefully) gives some more time to aggregate
5470          * some packets in the aggregation queue.
5471          *
5472          * XXX It doesn't stop a parallel sender from sneaking
5473          * in transmitting a frame!
5474          */
5475         /* XXX TXQ locking */
5476         if (txq->axq_aggr_depth + txq->fifo.axq_depth >= sc->sc_hwq_limit_aggr) {
5477                 sc->sc_aggr_stats.aggr_sched_nopkt++;
5478                 return;
5479         }
5480         if (txq->axq_depth >= sc->sc_hwq_limit_nonaggr) {
5481                 sc->sc_aggr_stats.aggr_sched_nopkt++;
5482                 return;
5483         }
5484
5485         last = TAILQ_LAST(&txq->axq_tidq, axq_t_s);
5486
5487         TAILQ_FOREACH_SAFE(tid, &txq->axq_tidq, axq_qelem, next) {
5488                 /*
5489                  * Suspend paused queues here; they'll be resumed
5490                  * once the addba completes or times out.
5491                  */
5492                 DPRINTF(sc, ATH_DEBUG_SW_TX, "%s: tid=%d, paused=%d\n",
5493                     __func__, tid->tid, tid->paused);
5494                 ath_tx_tid_unsched(sc, tid);
5495                 /*
5496                  * This node may be in power-save and we're leaking
5497                  * a frame; be careful.
5498                  */
5499                 if (! ath_tx_tid_can_tx_or_sched(sc, tid)) {
5500                         continue;
5501                 }
5502                 if (ath_tx_ampdu_running(sc, tid->an, tid->tid))
5503                         ath_tx_tid_hw_queue_aggr(sc, tid->an, tid);
5504                 else
5505                         ath_tx_tid_hw_queue_norm(sc, tid->an, tid);
5506
5507                 /* Not empty? Re-schedule */
5508                 if (tid->axq_depth != 0)
5509                         ath_tx_tid_sched(sc, tid);
5510
5511                 /*
5512                  * Give the software queue time to aggregate more
5513                  * packets.  If we aren't running aggregation then
5514                  * we should still limit the hardware queue depth.
5515                  */
5516                 /* XXX TXQ locking */
5517                 if (txq->axq_aggr_depth + txq->fifo.axq_depth >= sc->sc_hwq_limit_aggr) {
5518                         break;
5519                 }
5520                 if (txq->axq_depth >= sc->sc_hwq_limit_nonaggr) {
5521                         break;
5522                 }
5523
5524                 /*
5525                  * If this was the last entry on the original list, stop.
5526                  * Otherwise nodes that have been rescheduled onto the end
5527                  * of the TID FIFO list will just keep being rescheduled.
5528                  *
5529                  * XXX What should we do about nodes that were paused
5530                  * but are pending a leaking frame in response to a ps-poll?
5531                  * They'll be put at the front of the list; so they'll
5532                  * prematurely trigger this condition! Ew.
5533                  */
5534                 if (tid == last)
5535                         break;
5536         }
5537 }
5538
5539 /*
5540  * TX addba handling
5541  */
5542
5543 /*
5544  * Return net80211 TID struct pointer, or NULL for none
5545  */
5546 struct ieee80211_tx_ampdu *
5547 ath_tx_get_tx_tid(struct ath_node *an, int tid)
5548 {
5549         struct ieee80211_node *ni = &an->an_node;
5550         struct ieee80211_tx_ampdu *tap;
5551
5552         if (tid == IEEE80211_NONQOS_TID)
5553                 return NULL;
5554
5555         tap = &ni->ni_tx_ampdu[tid];
5556         return tap;
5557 }
5558
5559 /*
5560  * Is AMPDU-TX running?
5561  */
5562 static int
5563 ath_tx_ampdu_running(struct ath_softc *sc, struct ath_node *an, int tid)
5564 {
5565         struct ieee80211_tx_ampdu *tap;
5566
5567         if (tid == IEEE80211_NONQOS_TID)
5568                 return 0;
5569
5570         tap = ath_tx_get_tx_tid(an, tid);
5571         if (tap == NULL)
5572                 return 0;       /* Not valid; default to not running */
5573
5574         return !! (tap->txa_flags & IEEE80211_AGGR_RUNNING);
5575 }
5576
5577 /*
5578  * Is AMPDU-TX negotiation pending?
5579  */
5580 static int
5581 ath_tx_ampdu_pending(struct ath_softc *sc, struct ath_node *an, int tid)
5582 {
5583         struct ieee80211_tx_ampdu *tap;
5584
5585         if (tid == IEEE80211_NONQOS_TID)
5586                 return 0;
5587
5588         tap = ath_tx_get_tx_tid(an, tid);
5589         if (tap == NULL)
5590                 return 0;       /* Not valid; default to not pending */
5591
5592         return !! (tap->txa_flags & IEEE80211_AGGR_XCHGPEND);
5593 }
5594
5595 /*
5596  * Is AMPDU-TX pending for the given TID?
5597  */
5598
5599
5600 /*
5601  * Method to handle sending an ADDBA request.
5602  *
5603  * We tap this so the relevant flags can be set to pause the TID
5604  * whilst waiting for the response.
5605  *
5606  * XXX there's no timeout handler we can override?
5607  */
5608 int
5609 ath_addba_request(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap,
5610     int dialogtoken, int baparamset, int batimeout)
5611 {
5612         struct ath_softc *sc = ni->ni_ic->ic_ifp->if_softc;
5613         int tid = tap->txa_tid;
5614         struct ath_node *an = ATH_NODE(ni);
5615         struct ath_tid *atid = &an->an_tid[tid];
5616
5617         /*
5618          * XXX danger Will Robinson!
5619          *
5620          * Although the taskqueue may be running and scheduling some more
5621          * packets, these should all be _before_ the addba sequence number.
5622          * However, net80211 will keep self-assigning sequence numbers
5623          * until addba has been negotiated.
5624          *
5625          * In the past, these packets would be "paused" (which still works
5626          * fine, as they're being scheduled to the driver in the same
5627          * serialised method which is calling the addba request routine)
5628          * and when the aggregation session begins, they'll be dequeued
5629          * as aggregate packets and added to the BAW. However, now there's
5630          * a "bf->bf_state.bfs_dobaw" flag, and this isn't set for these
5631          * packets. Thus they never get included in the BAW tracking and
5632          * this can cause the initial burst of packets after the addba
5633          * negotiation to "hang", as they quickly fall outside the BAW.
5634          *
5635          * The "eventual" solution should be to tag these packets with
5636          * dobaw. Although net80211 has given us a sequence number,
5637          * it'll be "after" the left edge of the BAW and thus it'll
5638          * fall within it.
5639          */
5640         ATH_TX_LOCK(sc);
5641         /*
5642          * This is a bit annoying.  Until net80211 HT code inherits some
5643          * (any) locking, we may have this called in parallel BUT only
5644          * one response/timeout will be called.  Grr.
5645          */
5646         if (atid->addba_tx_pending == 0) {
5647                 ath_tx_tid_pause(sc, atid);
5648                 atid->addba_tx_pending = 1;
5649         }
5650         ATH_TX_UNLOCK(sc);
5651
5652         DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL,
5653             "%s: %6D: called; dialogtoken=%d, baparamset=%d, batimeout=%d\n",
5654             __func__,
5655             ni->ni_macaddr,
5656             ":",
5657             dialogtoken, baparamset, batimeout);
5658         DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL,
5659             "%s: txa_start=%d, ni_txseqs=%d\n",
5660             __func__, tap->txa_start, ni->ni_txseqs[tid]);
5661
5662         return sc->sc_addba_request(ni, tap, dialogtoken, baparamset,
5663             batimeout);
5664 }
5665
5666 /*
5667  * Handle an ADDBA response.
5668  *
5669  * We unpause the queue so TX'ing can resume.
5670  *
5671  * Any packets TX'ed from this point should be "aggregate" (whether
5672  * aggregate or not) so the BAW is updated.
5673  *
5674  * Note! net80211 keeps self-assigning sequence numbers until
5675  * ampdu is negotiated. This means the initially-negotiated BAW left
5676  * edge won't match the ni->ni_txseq.
5677  *
5678  * So, being very dirty, the BAW left edge is "slid" here to match
5679  * ni->ni_txseq.
5680  *
5681  * What likely SHOULD happen is that all packets subsequent to the
5682  * addba request should be tagged as aggregate and queued as non-aggregate
5683  * frames; thus updating the BAW. For now though, I'll just slide the
5684  * window.
5685  */
5686 int
5687 ath_addba_response(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap,
5688     int status, int code, int batimeout)
5689 {
5690         struct ath_softc *sc = ni->ni_ic->ic_ifp->if_softc;
5691         int tid = tap->txa_tid;
5692         struct ath_node *an = ATH_NODE(ni);
5693         struct ath_tid *atid = &an->an_tid[tid];
5694         int r;
5695
5696         DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL,
5697             "%s: %6D: called; status=%d, code=%d, batimeout=%d\n", __func__,
5698             ni->ni_macaddr,
5699             ":",
5700             status, code, batimeout);
5701
5702         DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL,
5703             "%s: txa_start=%d, ni_txseqs=%d\n",
5704             __func__, tap->txa_start, ni->ni_txseqs[tid]);
5705
5706         /*
5707          * Call this first, so the interface flags get updated
5708          * before the TID is unpaused. Otherwise a race condition
5709          * exists where the unpaused TID still doesn't yet have
5710          * IEEE80211_AGGR_RUNNING set.
5711          */
5712         r = sc->sc_addba_response(ni, tap, status, code, batimeout);
5713
5714         ATH_TX_LOCK(sc);
5715         atid->addba_tx_pending = 0;
5716         /*
5717          * XXX dirty!
5718          * Slide the BAW left edge to wherever net80211 left it for us.
5719          * Read above for more information.
5720          */
5721         tap->txa_start = ni->ni_txseqs[tid];
5722         ath_tx_tid_resume(sc, atid);
5723         ATH_TX_UNLOCK(sc);
5724         return r;
5725 }
5726
5727
5728 /*
5729  * Stop ADDBA on a queue.
5730  *
5731  * This can be called whilst BAR TX is currently active on the queue,
5732  * so make sure this is unblocked before continuing.
5733  */
5734 void
5735 ath_addba_stop(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap)
5736 {
5737         struct ath_softc *sc = ni->ni_ic->ic_ifp->if_softc;
5738         int tid = tap->txa_tid;
5739         struct ath_node *an = ATH_NODE(ni);
5740         struct ath_tid *atid = &an->an_tid[tid];
5741         ath_bufhead bf_cq;
5742         struct ath_buf *bf;
5743
5744         DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL, "%s: %6D: called\n",
5745             __func__,
5746             ni->ni_macaddr,
5747             ":");
5748
5749         /*
5750          * Pause TID traffic early, so there aren't any races
5751          * Unblock the pending BAR held traffic, if it's currently paused.
5752          */
5753         ATH_TX_LOCK(sc);
5754         ath_tx_tid_pause(sc, atid);
5755         if (atid->bar_wait) {
5756                 /*
5757                  * bar_unsuspend() expects bar_tx == 1, as it should be
5758                  * called from the TX completion path.  This quietens
5759                  * the warning.  It's cleared for us anyway.
5760                  */
5761                 atid->bar_tx = 1;
5762                 ath_tx_tid_bar_unsuspend(sc, atid);
5763         }
5764         ATH_TX_UNLOCK(sc);
5765
5766         /* There's no need to hold the TXQ lock here */
5767         sc->sc_addba_stop(ni, tap);
5768
5769         /*
5770          * ath_tx_tid_cleanup will resume the TID if possible, otherwise
5771          * it'll set the cleanup flag, and it'll be unpaused once
5772          * things have been cleaned up.
5773          */
5774         TAILQ_INIT(&bf_cq);
5775         ATH_TX_LOCK(sc);
5776         ath_tx_tid_cleanup(sc, an, tid, &bf_cq);
5777         /*
5778          * Unpause the TID if no cleanup is required.
5779          */
5780         if (! atid->cleanup_inprogress)
5781                 ath_tx_tid_resume(sc, atid);
5782         ATH_TX_UNLOCK(sc);
5783
5784         /* Handle completing frames and fail them */
5785         while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) {
5786                 TAILQ_REMOVE(&bf_cq, bf, bf_list);
5787                 ath_tx_default_comp(sc, bf, 1);
5788         }
5789
5790 }
5791
5792 /*
5793  * Handle a node reassociation.
5794  *
5795  * We may have a bunch of frames queued to the hardware; those need
5796  * to be marked as cleanup.
5797  */
5798 void
5799 ath_tx_node_reassoc(struct ath_softc *sc, struct ath_node *an)
5800 {
5801         struct ath_tid *tid;
5802         int i;
5803         ath_bufhead bf_cq;
5804         struct ath_buf *bf;
5805
5806         TAILQ_INIT(&bf_cq);
5807
5808         ATH_TX_UNLOCK_ASSERT(sc);
5809
5810         ATH_TX_LOCK(sc);
5811         for (i = 0; i < IEEE80211_TID_SIZE; i++) {
5812                 tid = &an->an_tid[i];
5813                 if (tid->hwq_depth == 0)
5814                         continue;
5815                 ath_tx_tid_pause(sc, tid);
5816                 DPRINTF(sc, ATH_DEBUG_NODE,
5817                     "%s: %6D: TID %d: cleaning up TID\n",
5818                     __func__,
5819                     an->an_node.ni_macaddr,
5820                     ":",
5821                     i);
5822                 ath_tx_tid_cleanup(sc, an, i, &bf_cq);
5823                 /*
5824                  * Unpause the TID if no cleanup is required.
5825                  */
5826                 if (! tid->cleanup_inprogress)
5827                         ath_tx_tid_resume(sc, tid);
5828         }
5829         ATH_TX_UNLOCK(sc);
5830
5831         /* Handle completing frames and fail them */
5832         while ((bf = TAILQ_FIRST(&bf_cq)) != NULL) {
5833                 TAILQ_REMOVE(&bf_cq, bf, bf_list);
5834                 ath_tx_default_comp(sc, bf, 1);
5835         }
5836 }
5837
5838 /*
5839  * Note: net80211 bar_timeout() doesn't call this function on BAR failure;
5840  * it simply tears down the aggregation session. Ew.
5841  *
5842  * It however will call ieee80211_ampdu_stop() which will call
5843  * ic->ic_addba_stop().
5844  *
5845  * XXX This uses a hard-coded max BAR count value; the whole
5846  * XXX BAR TX success or failure should be better handled!
5847  */
5848 void
5849 ath_bar_response(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap,
5850     int status)
5851 {
5852         struct ath_softc *sc = ni->ni_ic->ic_ifp->if_softc;
5853         int tid = tap->txa_tid;
5854         struct ath_node *an = ATH_NODE(ni);
5855         struct ath_tid *atid = &an->an_tid[tid];
5856         int attempts = tap->txa_attempts;
5857
5858         DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
5859             "%s: %6D: called; txa_tid=%d, atid->tid=%d, status=%d, attempts=%d\n",
5860             __func__,
5861             ni->ni_macaddr,
5862             ":",
5863             tap->txa_tid,
5864             atid->tid,
5865             status,
5866             attempts);
5867
5868         /* Note: This may update the BAW details */
5869         sc->sc_bar_response(ni, tap, status);
5870
5871         /* Unpause the TID */
5872         /*
5873          * XXX if this is attempt=50, the TID will be downgraded
5874          * XXX to a non-aggregate session. So we must unpause the
5875          * XXX TID here or it'll never be done.
5876          *
5877          * Also, don't call it if bar_tx/bar_wait are 0; something
5878          * has beaten us to the punch? (XXX figure out what?)
5879          */
5880         if (status == 0 || attempts == 50) {
5881                 ATH_TX_LOCK(sc);
5882                 if (atid->bar_tx == 0 || atid->bar_wait == 0)
5883                         DPRINTF(sc, ATH_DEBUG_SW_TX_BAR,
5884                             "%s: huh? bar_tx=%d, bar_wait=%d\n",
5885                             __func__,
5886                             atid->bar_tx, atid->bar_wait);
5887                 else
5888                         ath_tx_tid_bar_unsuspend(sc, atid);
5889                 ATH_TX_UNLOCK(sc);
5890         }
5891 }
5892
5893 /*
5894  * This is called whenever the pending ADDBA request times out.
5895  * Unpause and reschedule the TID.
5896  */
5897 void
5898 ath_addba_response_timeout(struct ieee80211_node *ni,
5899     struct ieee80211_tx_ampdu *tap)
5900 {
5901         struct ath_softc *sc = ni->ni_ic->ic_ifp->if_softc;
5902         int tid = tap->txa_tid;
5903         struct ath_node *an = ATH_NODE(ni);
5904         struct ath_tid *atid = &an->an_tid[tid];
5905
5906         DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL,
5907             "%s: %6D: TID=%d, called; resuming\n",
5908             __func__,
5909             ni->ni_macaddr,
5910             ":",
5911             tid);
5912
5913         ATH_TX_LOCK(sc);
5914         atid->addba_tx_pending = 0;
5915         ATH_TX_UNLOCK(sc);
5916
5917         /* Note: This updates the aggregate state to (again) pending */
5918         sc->sc_addba_response_timeout(ni, tap);
5919
5920         /* Unpause the TID; which reschedules it */
5921         ATH_TX_LOCK(sc);
5922         ath_tx_tid_resume(sc, atid);
5923         ATH_TX_UNLOCK(sc);
5924 }
5925
5926 /*
5927  * Check if a node is asleep or not.
5928  */
5929 int
5930 ath_tx_node_is_asleep(struct ath_softc *sc, struct ath_node *an)
5931 {
5932
5933         ATH_TX_LOCK_ASSERT(sc);
5934
5935         return (an->an_is_powersave);
5936 }
5937
5938 /*
5939  * Mark a node as currently "in powersaving."
5940  * This suspends all traffic on the node.
5941  *
5942  * This must be called with the node/tx locks free.
5943  *
5944  * XXX TODO: the locking silliness below is due to how the node
5945  * locking currently works.  Right now, the node lock is grabbed
5946  * to do rate control lookups and these are done with the TX
5947  * queue lock held.  This means the node lock can't be grabbed
5948  * first here or a LOR will occur.
5949  *
5950  * Eventually (hopefully!) the TX path code will only grab
5951  * the TXQ lock when transmitting and the ath_node lock when
5952  * doing node/TID operations.  There are other complications -
5953  * the sched/unsched operations involve walking the per-txq
5954  * 'active tid' list and this requires both locks to be held.
5955  */
5956 void
5957 ath_tx_node_sleep(struct ath_softc *sc, struct ath_node *an)
5958 {
5959         struct ath_tid *atid;
5960         struct ath_txq *txq;
5961         int tid;
5962
5963         ATH_TX_UNLOCK_ASSERT(sc);
5964
5965         /* Suspend all traffic on the node */
5966         ATH_TX_LOCK(sc);
5967
5968         if (an->an_is_powersave) {
5969                 DPRINTF(sc, ATH_DEBUG_XMIT,
5970                     "%s: %6D: node was already asleep!\n",
5971                     __func__, an->an_node.ni_macaddr, ":");
5972                 ATH_TX_UNLOCK(sc);
5973                 return;
5974         }
5975
5976         for (tid = 0; tid < IEEE80211_TID_SIZE; tid++) {
5977                 atid = &an->an_tid[tid];
5978                 txq = sc->sc_ac2q[atid->ac];
5979
5980                 ath_tx_tid_pause(sc, atid);
5981         }
5982
5983         /* Mark node as in powersaving */
5984         an->an_is_powersave = 1;
5985
5986         ATH_TX_UNLOCK(sc);
5987 }
5988
5989 /*
5990  * Mark a node as currently "awake."
5991  * This resumes all traffic to the node.
5992  */
5993 void
5994 ath_tx_node_wakeup(struct ath_softc *sc, struct ath_node *an)
5995 {
5996         struct ath_tid *atid;
5997         struct ath_txq *txq;
5998         int tid;
5999
6000         ATH_TX_UNLOCK_ASSERT(sc);
6001
6002         ATH_TX_LOCK(sc);
6003
6004         /* !? */
6005         if (an->an_is_powersave == 0) {
6006                 ATH_TX_UNLOCK(sc);
6007                 DPRINTF(sc, ATH_DEBUG_XMIT,
6008                     "%s: an=%p: node was already awake\n",
6009                     __func__, an);
6010                 return;
6011         }
6012
6013         /* Mark node as awake */
6014         an->an_is_powersave = 0;
6015         /*
6016          * Clear any pending leaked frame requests
6017          */
6018         an->an_leak_count = 0;
6019
6020         for (tid = 0; tid < IEEE80211_TID_SIZE; tid++) {
6021                 atid = &an->an_tid[tid];
6022                 txq = sc->sc_ac2q[atid->ac];
6023
6024                 ath_tx_tid_resume(sc, atid);
6025         }
6026         ATH_TX_UNLOCK(sc);
6027 }
6028
6029 static int
6030 ath_legacy_dma_txsetup(struct ath_softc *sc)
6031 {
6032
6033         /* nothing new needed */
6034         return (0);
6035 }
6036
6037 static int
6038 ath_legacy_dma_txteardown(struct ath_softc *sc)
6039 {
6040
6041         /* nothing new needed */
6042         return (0);
6043 }
6044
6045 void
6046 ath_xmit_setup_legacy(struct ath_softc *sc)
6047 {
6048         /*
6049          * For now, just set the descriptor length to sizeof(ath_desc);
6050          * worry about extracting the real length out of the HAL later.
6051          */
6052         sc->sc_tx_desclen = sizeof(struct ath_desc);
6053         sc->sc_tx_statuslen = sizeof(struct ath_desc);
6054         sc->sc_tx_nmaps = 1;    /* only one buffer per TX desc */
6055
6056         sc->sc_tx.xmit_setup = ath_legacy_dma_txsetup;
6057         sc->sc_tx.xmit_teardown = ath_legacy_dma_txteardown;
6058         sc->sc_tx.xmit_attach_comp_func = ath_legacy_attach_comp_func;
6059
6060         sc->sc_tx.xmit_dma_restart = ath_legacy_tx_dma_restart;
6061         sc->sc_tx.xmit_handoff = ath_legacy_xmit_handoff;
6062
6063         sc->sc_tx.xmit_drain = ath_legacy_tx_drain;
6064 }