Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2008 Atheros Communications Inc. |
| 3 | * |
| 4 | * Permission to use, copy, modify, and/or distribute this software for any |
| 5 | * purpose with or without fee is hereby granted, provided that the above |
| 6 | * copyright notice and this permission notice appear in all copies. |
| 7 | * |
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 15 | */ |
| 16 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 17 | #include "core.h" |
| 18 | |
| 19 | #define BITS_PER_BYTE 8 |
| 20 | #define OFDM_PLCP_BITS 22 |
| 21 | #define HT_RC_2_MCS(_rc) ((_rc) & 0x0f) |
| 22 | #define HT_RC_2_STREAMS(_rc) ((((_rc) & 0x78) >> 3) + 1) |
| 23 | #define L_STF 8 |
| 24 | #define L_LTF 8 |
| 25 | #define L_SIG 4 |
| 26 | #define HT_SIG 8 |
| 27 | #define HT_STF 4 |
| 28 | #define HT_LTF(_ns) (4 * (_ns)) |
| 29 | #define SYMBOL_TIME(_ns) ((_ns) << 2) /* ns * 4 us */ |
| 30 | #define SYMBOL_TIME_HALFGI(_ns) (((_ns) * 18 + 4) / 5) /* ns * 3.6 us */ |
| 31 | #define NUM_SYMBOLS_PER_USEC(_usec) (_usec >> 2) |
| 32 | #define NUM_SYMBOLS_PER_USEC_HALFGI(_usec) (((_usec*5)-4)/18) |
| 33 | |
| 34 | #define OFDM_SIFS_TIME 16 |
| 35 | |
| 36 | static u32 bits_per_symbol[][2] = { |
| 37 | /* 20MHz 40MHz */ |
| 38 | { 26, 54 }, /* 0: BPSK */ |
| 39 | { 52, 108 }, /* 1: QPSK 1/2 */ |
| 40 | { 78, 162 }, /* 2: QPSK 3/4 */ |
| 41 | { 104, 216 }, /* 3: 16-QAM 1/2 */ |
| 42 | { 156, 324 }, /* 4: 16-QAM 3/4 */ |
| 43 | { 208, 432 }, /* 5: 64-QAM 2/3 */ |
| 44 | { 234, 486 }, /* 6: 64-QAM 3/4 */ |
| 45 | { 260, 540 }, /* 7: 64-QAM 5/6 */ |
| 46 | { 52, 108 }, /* 8: BPSK */ |
| 47 | { 104, 216 }, /* 9: QPSK 1/2 */ |
| 48 | { 156, 324 }, /* 10: QPSK 3/4 */ |
| 49 | { 208, 432 }, /* 11: 16-QAM 1/2 */ |
| 50 | { 312, 648 }, /* 12: 16-QAM 3/4 */ |
| 51 | { 416, 864 }, /* 13: 64-QAM 2/3 */ |
| 52 | { 468, 972 }, /* 14: 64-QAM 3/4 */ |
| 53 | { 520, 1080 }, /* 15: 64-QAM 5/6 */ |
| 54 | }; |
| 55 | |
| 56 | #define IS_HT_RATE(_rate) ((_rate) & 0x80) |
| 57 | |
| 58 | /* |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 59 | * Insert a chain of ath_buf (descriptors) on a txq and |
| 60 | * assume the descriptors are already chained together by caller. |
| 61 | * NB: must be called with txq lock held |
| 62 | */ |
| 63 | |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 64 | static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq, |
| 65 | struct list_head *head) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 66 | { |
| 67 | struct ath_hal *ah = sc->sc_ah; |
| 68 | struct ath_buf *bf; |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 69 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 70 | /* |
| 71 | * Insert the frame on the outbound list and |
| 72 | * pass it on to the hardware. |
| 73 | */ |
| 74 | |
| 75 | if (list_empty(head)) |
| 76 | return; |
| 77 | |
| 78 | bf = list_first_entry(head, struct ath_buf, list); |
| 79 | |
| 80 | list_splice_tail_init(head, &txq->axq_q); |
| 81 | txq->axq_depth++; |
| 82 | txq->axq_totalqueued++; |
| 83 | txq->axq_linkbuf = list_entry(txq->axq_q.prev, struct ath_buf, list); |
| 84 | |
| 85 | DPRINTF(sc, ATH_DBG_QUEUE, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 86 | "qnum: %d, txq depth: %d\n", txq->axq_qnum, txq->axq_depth); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 87 | |
| 88 | if (txq->axq_link == NULL) { |
| 89 | ath9k_hw_puttxbuf(ah, txq->axq_qnum, bf->bf_daddr); |
| 90 | DPRINTF(sc, ATH_DBG_XMIT, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 91 | "TXDP[%u] = %llx (%p)\n", |
| 92 | txq->axq_qnum, ito64(bf->bf_daddr), bf->bf_desc); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 93 | } else { |
| 94 | *txq->axq_link = bf->bf_daddr; |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 95 | DPRINTF(sc, ATH_DBG_XMIT, "link[%u] (%p)=%llx (%p)\n", |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 96 | txq->axq_qnum, txq->axq_link, |
| 97 | ito64(bf->bf_daddr), bf->bf_desc); |
| 98 | } |
| 99 | txq->axq_link = &(bf->bf_lastbf->bf_desc->ds_link); |
| 100 | ath9k_hw_txstart(ah, txq->axq_qnum); |
| 101 | } |
| 102 | |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 103 | static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb, |
| 104 | struct ath_xmit_status *tx_status) |
| 105 | { |
| 106 | struct ieee80211_hw *hw = sc->hw; |
| 107 | struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb); |
| 108 | struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info); |
Jouni Malinen | f7a276a | 2008-12-15 16:02:04 +0200 | [diff] [blame] | 109 | int hdrlen, padsize; |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 110 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 111 | DPRINTF(sc, ATH_DBG_XMIT, "TX complete: skb: %p\n", skb); |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 112 | |
| 113 | if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK || |
| 114 | tx_info->flags & IEEE80211_TX_STAT_TX_FILTERED) { |
| 115 | kfree(tx_info_priv); |
| 116 | tx_info->rate_driver_data[0] = NULL; |
| 117 | } |
| 118 | |
| 119 | if (tx_status->flags & ATH_TX_BAR) { |
| 120 | tx_info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK; |
| 121 | tx_status->flags &= ~ATH_TX_BAR; |
| 122 | } |
| 123 | |
| 124 | if (!(tx_status->flags & (ATH_TX_ERROR | ATH_TX_XRETRY))) { |
| 125 | /* Frame was ACKed */ |
| 126 | tx_info->flags |= IEEE80211_TX_STAT_ACK; |
| 127 | } |
| 128 | |
Jouni Malinen | 157ec87 | 2008-12-22 16:45:54 +0200 | [diff] [blame] | 129 | tx_info->status.rates[0].count = tx_status->retries + 1; |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 130 | |
Jouni Malinen | f7a276a | 2008-12-15 16:02:04 +0200 | [diff] [blame] | 131 | hdrlen = ieee80211_get_hdrlen_from_skb(skb); |
| 132 | padsize = hdrlen & 3; |
| 133 | if (padsize && hdrlen >= 24) { |
| 134 | /* |
| 135 | * Remove MAC header padding before giving the frame back to |
| 136 | * mac80211. |
| 137 | */ |
| 138 | memmove(skb->data + padsize, skb->data, hdrlen); |
| 139 | skb_pull(skb, padsize); |
| 140 | } |
| 141 | |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 142 | ieee80211_tx_status(hw, skb); |
| 143 | } |
| 144 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 145 | /* Check if it's okay to send out aggregates */ |
| 146 | |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 147 | static int ath_aggr_query(struct ath_softc *sc, struct ath_node *an, u8 tidno) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 148 | { |
| 149 | struct ath_atx_tid *tid; |
| 150 | tid = ATH_AN_2_TID(an, tidno); |
| 151 | |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 152 | if (tid->state & AGGR_ADDBA_COMPLETE || |
| 153 | tid->state & AGGR_ADDBA_PROGRESS) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 154 | return 1; |
| 155 | else |
| 156 | return 0; |
| 157 | } |
| 158 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 159 | static void ath_get_beaconconfig(struct ath_softc *sc, int if_id, |
| 160 | struct ath_beacon_config *conf) |
| 161 | { |
| 162 | struct ieee80211_hw *hw = sc->hw; |
| 163 | |
| 164 | /* fill in beacon config data */ |
| 165 | |
| 166 | conf->beacon_interval = hw->conf.beacon_int; |
| 167 | conf->listen_interval = 100; |
| 168 | conf->dtim_count = 1; |
| 169 | conf->bmiss_timeout = ATH_DEFAULT_BMISS_LIMIT * conf->listen_interval; |
| 170 | } |
| 171 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 172 | /* Calculate Atheros packet type from IEEE80211 packet header */ |
| 173 | |
| 174 | static enum ath9k_pkt_type get_hw_packet_type(struct sk_buff *skb) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 175 | { |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 176 | struct ieee80211_hdr *hdr; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 177 | enum ath9k_pkt_type htype; |
| 178 | __le16 fc; |
| 179 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 180 | hdr = (struct ieee80211_hdr *)skb->data; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 181 | fc = hdr->frame_control; |
| 182 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 183 | if (ieee80211_is_beacon(fc)) |
| 184 | htype = ATH9K_PKT_TYPE_BEACON; |
| 185 | else if (ieee80211_is_probe_resp(fc)) |
| 186 | htype = ATH9K_PKT_TYPE_PROBE_RESP; |
| 187 | else if (ieee80211_is_atim(fc)) |
| 188 | htype = ATH9K_PKT_TYPE_ATIM; |
| 189 | else if (ieee80211_is_pspoll(fc)) |
| 190 | htype = ATH9K_PKT_TYPE_PSPOLL; |
| 191 | else |
| 192 | htype = ATH9K_PKT_TYPE_NORMAL; |
| 193 | |
| 194 | return htype; |
| 195 | } |
| 196 | |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 197 | static bool is_pae(struct sk_buff *skb) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 198 | { |
| 199 | struct ieee80211_hdr *hdr; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 200 | __le16 fc; |
| 201 | |
| 202 | hdr = (struct ieee80211_hdr *)skb->data; |
| 203 | fc = hdr->frame_control; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 204 | |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 205 | if (ieee80211_is_data(fc)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 206 | if (ieee80211_is_nullfunc(fc) || |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 207 | /* Port Access Entity (IEEE 802.1X) */ |
| 208 | (skb->protocol == cpu_to_be16(ETH_P_PAE))) { |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 209 | return true; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 210 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 211 | } |
| 212 | |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 213 | return false; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 216 | static int get_hw_crypto_keytype(struct sk_buff *skb) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 217 | { |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 218 | struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb); |
| 219 | |
| 220 | if (tx_info->control.hw_key) { |
| 221 | if (tx_info->control.hw_key->alg == ALG_WEP) |
| 222 | return ATH9K_KEY_TYPE_WEP; |
| 223 | else if (tx_info->control.hw_key->alg == ALG_TKIP) |
| 224 | return ATH9K_KEY_TYPE_TKIP; |
| 225 | else if (tx_info->control.hw_key->alg == ALG_CCMP) |
| 226 | return ATH9K_KEY_TYPE_AES; |
| 227 | } |
| 228 | |
| 229 | return ATH9K_KEY_TYPE_CLEAR; |
| 230 | } |
| 231 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 232 | /* Called only when tx aggregation is enabled and HT is supported */ |
| 233 | |
| 234 | static void assign_aggr_tid_seqno(struct sk_buff *skb, |
| 235 | struct ath_buf *bf) |
| 236 | { |
| 237 | struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb); |
| 238 | struct ieee80211_hdr *hdr; |
| 239 | struct ath_node *an; |
| 240 | struct ath_atx_tid *tid; |
| 241 | __le16 fc; |
| 242 | u8 *qc; |
| 243 | |
| 244 | if (!tx_info->control.sta) |
| 245 | return; |
| 246 | |
| 247 | an = (struct ath_node *)tx_info->control.sta->drv_priv; |
| 248 | hdr = (struct ieee80211_hdr *)skb->data; |
| 249 | fc = hdr->frame_control; |
| 250 | |
| 251 | /* Get tidno */ |
| 252 | |
| 253 | if (ieee80211_is_data_qos(fc)) { |
| 254 | qc = ieee80211_get_qos_ctl(hdr); |
| 255 | bf->bf_tidno = qc[0] & 0xf; |
Sujith | 98deeea | 2008-08-11 14:05:46 +0530 | [diff] [blame] | 256 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 257 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 258 | /* Get seqno */ |
Senthil Balasubramanian | d3a1db1 | 2008-12-22 16:31:58 +0530 | [diff] [blame] | 259 | /* For HT capable stations, we save tidno for later use. |
| 260 | * We also override seqno set by upper layer with the one |
| 261 | * in tx aggregation state. |
| 262 | * |
| 263 | * If fragmentation is on, the sequence number is |
| 264 | * not overridden, since it has been |
| 265 | * incremented by the fragmentation routine. |
| 266 | * |
| 267 | * FIXME: check if the fragmentation threshold exceeds |
| 268 | * IEEE80211 max. |
| 269 | */ |
| 270 | tid = ATH_AN_2_TID(an, bf->bf_tidno); |
| 271 | hdr->seq_ctrl = cpu_to_le16(tid->seq_next << |
| 272 | IEEE80211_SEQ_SEQ_SHIFT); |
| 273 | bf->bf_seqno = tid->seq_next; |
| 274 | INCR(tid->seq_next, IEEE80211_SEQ_MAX); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | static int setup_tx_flags(struct ath_softc *sc, struct sk_buff *skb, |
| 278 | struct ath_txq *txq) |
| 279 | { |
| 280 | struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb); |
| 281 | int flags = 0; |
| 282 | |
| 283 | flags |= ATH9K_TXDESC_CLRDMASK; /* needed for crypto errors */ |
| 284 | flags |= ATH9K_TXDESC_INTREQ; |
| 285 | |
| 286 | if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK) |
| 287 | flags |= ATH9K_TXDESC_NOACK; |
| 288 | if (tx_info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) |
| 289 | flags |= ATH9K_TXDESC_RTSENA; |
| 290 | |
| 291 | return flags; |
| 292 | } |
| 293 | |
| 294 | static struct ath_buf *ath_tx_get_buffer(struct ath_softc *sc) |
| 295 | { |
| 296 | struct ath_buf *bf = NULL; |
| 297 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 298 | spin_lock_bh(&sc->tx.txbuflock); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 299 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 300 | if (unlikely(list_empty(&sc->tx.txbuf))) { |
| 301 | spin_unlock_bh(&sc->tx.txbuflock); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 302 | return NULL; |
| 303 | } |
| 304 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 305 | bf = list_first_entry(&sc->tx.txbuf, struct ath_buf, list); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 306 | list_del(&bf->list); |
| 307 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 308 | spin_unlock_bh(&sc->tx.txbuflock); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 309 | |
| 310 | return bf; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | /* To complete a chain of buffers associated a frame */ |
| 314 | |
| 315 | static void ath_tx_complete_buf(struct ath_softc *sc, |
| 316 | struct ath_buf *bf, |
| 317 | struct list_head *bf_q, |
| 318 | int txok, int sendbar) |
| 319 | { |
| 320 | struct sk_buff *skb = bf->bf_mpdu; |
| 321 | struct ath_xmit_status tx_status; |
Senthil Balasubramanian | a07d361 | 2008-12-09 17:23:33 +0530 | [diff] [blame] | 322 | unsigned long flags; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 323 | |
| 324 | /* |
| 325 | * Set retry information. |
| 326 | * NB: Don't use the information in the descriptor, because the frame |
| 327 | * could be software retried. |
| 328 | */ |
| 329 | tx_status.retries = bf->bf_retries; |
| 330 | tx_status.flags = 0; |
| 331 | |
| 332 | if (sendbar) |
| 333 | tx_status.flags = ATH_TX_BAR; |
| 334 | |
| 335 | if (!txok) { |
| 336 | tx_status.flags |= ATH_TX_ERROR; |
| 337 | |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 338 | if (bf_isxretried(bf)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 339 | tx_status.flags |= ATH_TX_XRETRY; |
| 340 | } |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 341 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 342 | /* Unmap this frame */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 343 | pci_unmap_single(sc->pdev, |
Sujith | ff9b662 | 2008-08-14 13:27:16 +0530 | [diff] [blame] | 344 | bf->bf_dmacontext, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 345 | skb->len, |
| 346 | PCI_DMA_TODEVICE); |
| 347 | /* complete this frame */ |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 348 | ath_tx_complete(sc, skb, &tx_status); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 349 | |
| 350 | /* |
| 351 | * Return the list of ath_buf of this mpdu to free queue |
| 352 | */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 353 | spin_lock_irqsave(&sc->tx.txbuflock, flags); |
| 354 | list_splice_tail_init(bf_q, &sc->tx.txbuf); |
| 355 | spin_unlock_irqrestore(&sc->tx.txbuflock, flags); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | /* |
| 359 | * queue up a dest/ac pair for tx scheduling |
| 360 | * NB: must be called with txq lock held |
| 361 | */ |
| 362 | |
| 363 | static void ath_tx_queue_tid(struct ath_txq *txq, struct ath_atx_tid *tid) |
| 364 | { |
| 365 | struct ath_atx_ac *ac = tid->ac; |
| 366 | |
| 367 | /* |
| 368 | * if tid is paused, hold off |
| 369 | */ |
| 370 | if (tid->paused) |
| 371 | return; |
| 372 | |
| 373 | /* |
| 374 | * add tid to ac atmost once |
| 375 | */ |
| 376 | if (tid->sched) |
| 377 | return; |
| 378 | |
| 379 | tid->sched = true; |
| 380 | list_add_tail(&tid->list, &ac->tid_q); |
| 381 | |
| 382 | /* |
| 383 | * add node ac to txq atmost once |
| 384 | */ |
| 385 | if (ac->sched) |
| 386 | return; |
| 387 | |
| 388 | ac->sched = true; |
| 389 | list_add_tail(&ac->list, &txq->axq_acq); |
| 390 | } |
| 391 | |
| 392 | /* pause a tid */ |
| 393 | |
| 394 | static void ath_tx_pause_tid(struct ath_softc *sc, struct ath_atx_tid *tid) |
| 395 | { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 396 | struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 397 | |
| 398 | spin_lock_bh(&txq->axq_lock); |
| 399 | |
| 400 | tid->paused++; |
| 401 | |
| 402 | spin_unlock_bh(&txq->axq_lock); |
| 403 | } |
| 404 | |
| 405 | /* resume a tid and schedule aggregate */ |
| 406 | |
| 407 | void ath_tx_resume_tid(struct ath_softc *sc, struct ath_atx_tid *tid) |
| 408 | { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 409 | struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 410 | |
| 411 | ASSERT(tid->paused > 0); |
| 412 | spin_lock_bh(&txq->axq_lock); |
| 413 | |
| 414 | tid->paused--; |
| 415 | |
| 416 | if (tid->paused > 0) |
| 417 | goto unlock; |
| 418 | |
| 419 | if (list_empty(&tid->buf_q)) |
| 420 | goto unlock; |
| 421 | |
| 422 | /* |
| 423 | * Add this TID to scheduler and try to send out aggregates |
| 424 | */ |
| 425 | ath_tx_queue_tid(txq, tid); |
| 426 | ath_txq_schedule(sc, txq); |
| 427 | unlock: |
| 428 | spin_unlock_bh(&txq->axq_lock); |
| 429 | } |
| 430 | |
| 431 | /* Compute the number of bad frames */ |
| 432 | |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 433 | static int ath_tx_num_badfrms(struct ath_softc *sc, struct ath_buf *bf, |
| 434 | int txok) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 435 | { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 436 | struct ath_buf *bf_last = bf->bf_lastbf; |
| 437 | struct ath_desc *ds = bf_last->bf_desc; |
| 438 | u16 seq_st = 0; |
| 439 | u32 ba[WME_BA_BMP_SIZE >> 5]; |
| 440 | int ba_index; |
| 441 | int nbad = 0; |
| 442 | int isaggr = 0; |
| 443 | |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 444 | if (ds->ds_txstat.ts_flags == ATH9K_TX_SW_ABORTED) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 445 | return 0; |
| 446 | |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 447 | isaggr = bf_isaggr(bf); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 448 | if (isaggr) { |
| 449 | seq_st = ATH_DS_BA_SEQ(ds); |
| 450 | memcpy(ba, ATH_DS_BA_BITMAP(ds), WME_BA_BMP_SIZE >> 3); |
| 451 | } |
| 452 | |
| 453 | while (bf) { |
| 454 | ba_index = ATH_BA_INDEX(seq_st, bf->bf_seqno); |
| 455 | if (!txok || (isaggr && !ATH_BA_ISSET(ba, ba_index))) |
| 456 | nbad++; |
| 457 | |
| 458 | bf = bf->bf_next; |
| 459 | } |
| 460 | |
| 461 | return nbad; |
| 462 | } |
| 463 | |
| 464 | static void ath_tx_set_retry(struct ath_softc *sc, struct ath_buf *bf) |
| 465 | { |
| 466 | struct sk_buff *skb; |
| 467 | struct ieee80211_hdr *hdr; |
| 468 | |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 469 | bf->bf_state.bf_type |= BUF_RETRY; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 470 | bf->bf_retries++; |
| 471 | |
| 472 | skb = bf->bf_mpdu; |
| 473 | hdr = (struct ieee80211_hdr *)skb->data; |
| 474 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_RETRY); |
| 475 | } |
| 476 | |
| 477 | /* Update block ack window */ |
| 478 | |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 479 | static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid, |
| 480 | int seqno) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 481 | { |
| 482 | int index, cindex; |
| 483 | |
| 484 | index = ATH_BA_INDEX(tid->seq_start, seqno); |
| 485 | cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1); |
| 486 | |
| 487 | tid->tx_buf[cindex] = NULL; |
| 488 | |
| 489 | while (tid->baw_head != tid->baw_tail && !tid->tx_buf[tid->baw_head]) { |
| 490 | INCR(tid->seq_start, IEEE80211_SEQ_MAX); |
| 491 | INCR(tid->baw_head, ATH_TID_MAX_BUFS); |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | /* |
| 496 | * ath_pkt_dur - compute packet duration (NB: not NAV) |
| 497 | * |
| 498 | * rix - rate index |
| 499 | * pktlen - total bytes (delims + data + fcs + pads + pad delims) |
| 500 | * width - 0 for 20 MHz, 1 for 40 MHz |
| 501 | * half_gi - to use 4us v/s 3.6 us for symbol time |
| 502 | */ |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 503 | static u32 ath_pkt_duration(struct ath_softc *sc, u8 rix, struct ath_buf *bf, |
| 504 | int width, int half_gi, bool shortPreamble) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 505 | { |
Sujith | 3706de6 | 2008-12-07 21:42:10 +0530 | [diff] [blame] | 506 | struct ath_rate_table *rate_table = sc->cur_rate_table; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 507 | u32 nbits, nsymbits, duration, nsymbols; |
| 508 | u8 rc; |
| 509 | int streams, pktlen; |
| 510 | |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 511 | pktlen = bf_isaggr(bf) ? bf->bf_al : bf->bf_frmlen; |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 512 | rc = rate_table->info[rix].ratecode; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 513 | |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 514 | /* for legacy rates, use old function to compute packet duration */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 515 | if (!IS_HT_RATE(rc)) |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 516 | return ath9k_hw_computetxtime(sc->sc_ah, rate_table, pktlen, |
| 517 | rix, shortPreamble); |
| 518 | |
| 519 | /* find number of symbols: PLCP + data */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 520 | nbits = (pktlen << 3) + OFDM_PLCP_BITS; |
| 521 | nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width]; |
| 522 | nsymbols = (nbits + nsymbits - 1) / nsymbits; |
| 523 | |
| 524 | if (!half_gi) |
| 525 | duration = SYMBOL_TIME(nsymbols); |
| 526 | else |
| 527 | duration = SYMBOL_TIME_HALFGI(nsymbols); |
| 528 | |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 529 | /* addup duration for legacy/ht training and signal fields */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 530 | streams = HT_RC_2_STREAMS(rc); |
| 531 | duration += L_STF + L_LTF + L_SIG + HT_SIG + HT_STF + HT_LTF(streams); |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 532 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 533 | return duration; |
| 534 | } |
| 535 | |
| 536 | /* Rate module function to set rate related fields in tx descriptor */ |
| 537 | |
| 538 | static void ath_buf_set_rate(struct ath_softc *sc, struct ath_buf *bf) |
| 539 | { |
| 540 | struct ath_hal *ah = sc->sc_ah; |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 541 | struct ath_rate_table *rt; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 542 | struct ath_desc *ds = bf->bf_desc; |
| 543 | struct ath_desc *lastds = bf->bf_lastbf->bf_desc; |
| 544 | struct ath9k_11n_rate_series series[4]; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 545 | struct sk_buff *skb; |
| 546 | struct ieee80211_tx_info *tx_info; |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 547 | struct ieee80211_tx_rate *rates; |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 548 | struct ieee80211_hdr *hdr; |
Luis R. Rodriguez | 9674225 | 2008-12-23 15:58:38 -0800 | [diff] [blame^] | 549 | struct ieee80211_hw *hw = sc->hw; |
| 550 | int i, flags, rtsctsena = 0, enable_g_protection = 0; |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 551 | u32 ctsduration = 0; |
| 552 | u8 rix = 0, cix, ctsrate = 0; |
| 553 | __le16 fc; |
| 554 | |
| 555 | memset(series, 0, sizeof(struct ath9k_11n_rate_series) * 4); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 556 | |
| 557 | skb = (struct sk_buff *)bf->bf_mpdu; |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 558 | hdr = (struct ieee80211_hdr *)skb->data; |
| 559 | fc = hdr->frame_control; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 560 | tx_info = IEEE80211_SKB_CB(skb); |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 561 | rates = tx_info->control.rates; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 562 | |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 563 | if (ieee80211_has_morefrags(fc) || |
| 564 | (le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG)) { |
| 565 | rates[1].count = rates[2].count = rates[3].count = 0; |
| 566 | rates[1].idx = rates[2].idx = rates[3].idx = 0; |
| 567 | rates[0].count = ATH_TXMAXTRY; |
| 568 | } |
| 569 | |
| 570 | /* get the cix for the lowest valid rix */ |
Sujith | 3706de6 | 2008-12-07 21:42:10 +0530 | [diff] [blame] | 571 | rt = sc->cur_rate_table; |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 572 | for (i = 3; i >= 0; i--) { |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 573 | if (rates[i].count && (rates[i].idx >= 0)) { |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 574 | rix = rates[i].idx; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 575 | break; |
| 576 | } |
| 577 | } |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 578 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 579 | flags = (bf->bf_flags & (ATH9K_TXDESC_RTSENA | ATH9K_TXDESC_CTSENA)); |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 580 | cix = rt->info[rix].ctrl_rate; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 581 | |
Luis R. Rodriguez | 9674225 | 2008-12-23 15:58:38 -0800 | [diff] [blame^] | 582 | /* All protection frames are transmited at 2Mb/s for 802.11g, |
| 583 | * otherwise we transmit them at 1Mb/s */ |
| 584 | if (hw->conf.channel->band == IEEE80211_BAND_2GHZ && |
| 585 | !conf_is_ht(&hw->conf)) |
| 586 | enable_g_protection = 1; |
| 587 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 588 | /* |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 589 | * If 802.11g protection is enabled, determine whether to use RTS/CTS or |
| 590 | * just CTS. Note that this is only done for OFDM/HT unicast frames. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 591 | */ |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 592 | if (sc->sc_protmode != PROT_M_NONE && !(bf->bf_flags & ATH9K_TXDESC_NOACK) |
Sujith | 46d14a5 | 2008-11-18 09:08:13 +0530 | [diff] [blame] | 593 | && (rt->info[rix].phy == WLAN_RC_PHY_OFDM || |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 594 | WLAN_RC_PHY_HT(rt->info[rix].phy))) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 595 | if (sc->sc_protmode == PROT_M_RTSCTS) |
| 596 | flags = ATH9K_TXDESC_RTSENA; |
| 597 | else if (sc->sc_protmode == PROT_M_CTSONLY) |
| 598 | flags = ATH9K_TXDESC_CTSENA; |
| 599 | |
Luis R. Rodriguez | 9674225 | 2008-12-23 15:58:38 -0800 | [diff] [blame^] | 600 | cix = rt->info[enable_g_protection].ctrl_rate; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 601 | rtsctsena = 1; |
| 602 | } |
| 603 | |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 604 | /* For 11n, the default behavior is to enable RTS for hw retried frames. |
| 605 | * We enable the global flag here and let rate series flags determine |
| 606 | * which rates will actually use RTS. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 607 | */ |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 608 | if ((ah->ah_caps.hw_caps & ATH9K_HW_CAP_HT) && bf_isdata(bf)) { |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 609 | /* 802.11g protection not needed, use our default behavior */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 610 | if (!rtsctsena) |
| 611 | flags = ATH9K_TXDESC_RTSENA; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 612 | } |
| 613 | |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 614 | /* Set protection if aggregate protection on */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 615 | if (sc->sc_config.ath_aggr_prot && |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 616 | (!bf_isaggr(bf) || (bf_isaggr(bf) && bf->bf_al < 8192))) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 617 | flags = ATH9K_TXDESC_RTSENA; |
Luis R. Rodriguez | 9674225 | 2008-12-23 15:58:38 -0800 | [diff] [blame^] | 618 | cix = rt->info[enable_g_protection].ctrl_rate; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 619 | rtsctsena = 1; |
| 620 | } |
| 621 | |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 622 | /* For AR5416 - RTS cannot be followed by a frame larger than 8K */ |
| 623 | if (bf_isaggr(bf) && (bf->bf_al > ah->ah_caps.rts_aggr_limit)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 624 | flags &= ~(ATH9K_TXDESC_RTSENA); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 625 | |
| 626 | /* |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 627 | * CTS transmit rate is derived from the transmit rate by looking in the |
| 628 | * h/w rate table. We must also factor in whether or not a short |
| 629 | * preamble is to be used. NB: cix is set above where RTS/CTS is enabled |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 630 | */ |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 631 | ctsrate = rt->info[cix].ratecode | |
| 632 | (bf_isshpreamble(bf) ? rt->info[cix].short_preamble : 0); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 633 | |
| 634 | for (i = 0; i < 4; i++) { |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 635 | if (!rates[i].count || (rates[i].idx < 0)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 636 | continue; |
| 637 | |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 638 | rix = rates[i].idx; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 639 | |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 640 | series[i].Rate = rt->info[rix].ratecode | |
| 641 | (bf_isshpreamble(bf) ? rt->info[rix].short_preamble : 0); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 642 | |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 643 | series[i].Tries = rates[i].count; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 644 | |
| 645 | series[i].RateFlags = ( |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 646 | (rates[i].flags & IEEE80211_TX_RC_USE_RTS_CTS) ? |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 647 | ATH9K_RATESERIES_RTS_CTS : 0) | |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 648 | ((rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ? |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 649 | ATH9K_RATESERIES_2040 : 0) | |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 650 | ((rates[i].flags & IEEE80211_TX_RC_SHORT_GI) ? |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 651 | ATH9K_RATESERIES_HALFGI : 0); |
| 652 | |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 653 | series[i].PktDuration = ath_pkt_duration(sc, rix, bf, |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 654 | (rates[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) != 0, |
| 655 | (rates[i].flags & IEEE80211_TX_RC_SHORT_GI), |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 656 | bf_isshpreamble(bf)); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 657 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 658 | series[i].ChSel = sc->sc_tx_chainmask; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 659 | |
| 660 | if (rtsctsena) |
| 661 | series[i].RateFlags |= ATH9K_RATESERIES_RTS_CTS; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 662 | } |
| 663 | |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 664 | /* set dur_update_en for l-sig computation except for PS-Poll frames */ |
| 665 | ath9k_hw_set11n_ratescenario(ah, ds, lastds, !bf_ispspoll(bf), |
| 666 | ctsrate, ctsduration, |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 667 | series, 4, flags); |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 668 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 669 | if (sc->sc_config.ath_aggr_prot && flags) |
| 670 | ath9k_hw_set11n_burstduration(ah, ds, 8192); |
| 671 | } |
| 672 | |
| 673 | /* |
| 674 | * Function to send a normal HT (non-AMPDU) frame |
| 675 | * NB: must be called with txq lock held |
| 676 | */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 677 | static int ath_tx_send_normal(struct ath_softc *sc, |
| 678 | struct ath_txq *txq, |
| 679 | struct ath_atx_tid *tid, |
| 680 | struct list_head *bf_head) |
| 681 | { |
| 682 | struct ath_buf *bf; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 683 | |
| 684 | BUG_ON(list_empty(bf_head)); |
| 685 | |
| 686 | bf = list_first_entry(bf_head, struct ath_buf, list); |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 687 | bf->bf_state.bf_type &= ~BUF_AMPDU; /* regular HT frame */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 688 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 689 | /* update starting sequence number for subsequent ADDBA request */ |
| 690 | INCR(tid->seq_start, IEEE80211_SEQ_MAX); |
| 691 | |
| 692 | /* Queue to h/w without aggregation */ |
| 693 | bf->bf_nframes = 1; |
| 694 | bf->bf_lastbf = bf->bf_lastfrm; /* one single frame */ |
| 695 | ath_buf_set_rate(sc, bf); |
| 696 | ath_tx_txqaddbuf(sc, txq, bf_head); |
| 697 | |
| 698 | return 0; |
| 699 | } |
| 700 | |
| 701 | /* flush tid's software queue and send frames as non-ampdu's */ |
| 702 | |
| 703 | static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid) |
| 704 | { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 705 | struct ath_txq *txq = &sc->tx.txq[tid->ac->qnum]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 706 | struct ath_buf *bf; |
| 707 | struct list_head bf_head; |
| 708 | INIT_LIST_HEAD(&bf_head); |
| 709 | |
| 710 | ASSERT(tid->paused > 0); |
| 711 | spin_lock_bh(&txq->axq_lock); |
| 712 | |
| 713 | tid->paused--; |
| 714 | |
| 715 | if (tid->paused > 0) { |
| 716 | spin_unlock_bh(&txq->axq_lock); |
| 717 | return; |
| 718 | } |
| 719 | |
| 720 | while (!list_empty(&tid->buf_q)) { |
| 721 | bf = list_first_entry(&tid->buf_q, struct ath_buf, list); |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 722 | ASSERT(!bf_isretried(bf)); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 723 | list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list); |
| 724 | ath_tx_send_normal(sc, txq, tid, &bf_head); |
| 725 | } |
| 726 | |
| 727 | spin_unlock_bh(&txq->axq_lock); |
| 728 | } |
| 729 | |
| 730 | /* Completion routine of an aggregate */ |
| 731 | |
| 732 | static void ath_tx_complete_aggr_rifs(struct ath_softc *sc, |
| 733 | struct ath_txq *txq, |
| 734 | struct ath_buf *bf, |
| 735 | struct list_head *bf_q, |
| 736 | int txok) |
| 737 | { |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 738 | struct ath_node *an = NULL; |
| 739 | struct sk_buff *skb; |
| 740 | struct ieee80211_tx_info *tx_info; |
| 741 | struct ath_atx_tid *tid = NULL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 742 | struct ath_buf *bf_last = bf->bf_lastbf; |
| 743 | struct ath_desc *ds = bf_last->bf_desc; |
| 744 | struct ath_buf *bf_next, *bf_lastq = NULL; |
| 745 | struct list_head bf_head, bf_pending; |
| 746 | u16 seq_st = 0; |
| 747 | u32 ba[WME_BA_BMP_SIZE >> 5]; |
| 748 | int isaggr, txfail, txpending, sendbar = 0, needreset = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 749 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 750 | skb = (struct sk_buff *)bf->bf_mpdu; |
| 751 | tx_info = IEEE80211_SKB_CB(skb); |
| 752 | |
| 753 | if (tx_info->control.sta) { |
| 754 | an = (struct ath_node *)tx_info->control.sta->drv_priv; |
| 755 | tid = ATH_AN_2_TID(an, bf->bf_tidno); |
| 756 | } |
| 757 | |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 758 | isaggr = bf_isaggr(bf); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 759 | if (isaggr) { |
| 760 | if (txok) { |
| 761 | if (ATH_DS_TX_BA(ds)) { |
| 762 | /* |
| 763 | * extract starting sequence and |
| 764 | * block-ack bitmap |
| 765 | */ |
| 766 | seq_st = ATH_DS_BA_SEQ(ds); |
| 767 | memcpy(ba, |
| 768 | ATH_DS_BA_BITMAP(ds), |
| 769 | WME_BA_BMP_SIZE >> 3); |
| 770 | } else { |
Luis R. Rodriguez | 0345f37 | 2008-10-03 15:45:25 -0700 | [diff] [blame] | 771 | memset(ba, 0, WME_BA_BMP_SIZE >> 3); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 772 | |
| 773 | /* |
| 774 | * AR5416 can become deaf/mute when BA |
| 775 | * issue happens. Chip needs to be reset. |
| 776 | * But AP code may have sychronization issues |
| 777 | * when perform internal reset in this routine. |
| 778 | * Only enable reset in STA mode for now. |
| 779 | */ |
Colin McCabe | d97809d | 2008-12-01 13:38:55 -0800 | [diff] [blame] | 780 | if (sc->sc_ah->ah_opmode == |
| 781 | NL80211_IFTYPE_STATION) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 782 | needreset = 1; |
| 783 | } |
| 784 | } else { |
Luis R. Rodriguez | 0345f37 | 2008-10-03 15:45:25 -0700 | [diff] [blame] | 785 | memset(ba, 0, WME_BA_BMP_SIZE >> 3); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 786 | } |
| 787 | } |
| 788 | |
| 789 | INIT_LIST_HEAD(&bf_pending); |
| 790 | INIT_LIST_HEAD(&bf_head); |
| 791 | |
| 792 | while (bf) { |
| 793 | txfail = txpending = 0; |
| 794 | bf_next = bf->bf_next; |
| 795 | |
| 796 | if (ATH_BA_ISSET(ba, ATH_BA_INDEX(seq_st, bf->bf_seqno))) { |
| 797 | /* transmit completion, subframe is |
| 798 | * acked by block ack */ |
| 799 | } else if (!isaggr && txok) { |
| 800 | /* transmit completion */ |
| 801 | } else { |
| 802 | |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 803 | if (!(tid->state & AGGR_CLEANUP) && |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 804 | ds->ds_txstat.ts_flags != ATH9K_TX_SW_ABORTED) { |
| 805 | if (bf->bf_retries < ATH_MAX_SW_RETRIES) { |
| 806 | ath_tx_set_retry(sc, bf); |
| 807 | txpending = 1; |
| 808 | } else { |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 809 | bf->bf_state.bf_type |= BUF_XRETRY; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 810 | txfail = 1; |
| 811 | sendbar = 1; |
| 812 | } |
| 813 | } else { |
| 814 | /* |
| 815 | * cleanup in progress, just fail |
| 816 | * the un-acked sub-frames |
| 817 | */ |
| 818 | txfail = 1; |
| 819 | } |
| 820 | } |
| 821 | /* |
| 822 | * Remove ath_buf's of this sub-frame from aggregate queue. |
| 823 | */ |
| 824 | if (bf_next == NULL) { /* last subframe in the aggregate */ |
| 825 | ASSERT(bf->bf_lastfrm == bf_last); |
| 826 | |
| 827 | /* |
| 828 | * The last descriptor of the last sub frame could be |
| 829 | * a holding descriptor for h/w. If that's the case, |
| 830 | * bf->bf_lastfrm won't be in the bf_q. |
| 831 | * Make sure we handle bf_q properly here. |
| 832 | */ |
| 833 | |
| 834 | if (!list_empty(bf_q)) { |
| 835 | bf_lastq = list_entry(bf_q->prev, |
| 836 | struct ath_buf, list); |
| 837 | list_cut_position(&bf_head, |
| 838 | bf_q, &bf_lastq->list); |
| 839 | } else { |
| 840 | /* |
| 841 | * XXX: if the last subframe only has one |
| 842 | * descriptor which is also being used as |
| 843 | * a holding descriptor. Then the ath_buf |
| 844 | * is not in the bf_q at all. |
| 845 | */ |
| 846 | INIT_LIST_HEAD(&bf_head); |
| 847 | } |
| 848 | } else { |
| 849 | ASSERT(!list_empty(bf_q)); |
| 850 | list_cut_position(&bf_head, |
| 851 | bf_q, &bf->bf_lastfrm->list); |
| 852 | } |
| 853 | |
| 854 | if (!txpending) { |
| 855 | /* |
| 856 | * complete the acked-ones/xretried ones; update |
| 857 | * block-ack window |
| 858 | */ |
| 859 | spin_lock_bh(&txq->axq_lock); |
| 860 | ath_tx_update_baw(sc, tid, bf->bf_seqno); |
| 861 | spin_unlock_bh(&txq->axq_lock); |
| 862 | |
| 863 | /* complete this sub-frame */ |
| 864 | ath_tx_complete_buf(sc, bf, &bf_head, !txfail, sendbar); |
| 865 | } else { |
| 866 | /* |
| 867 | * retry the un-acked ones |
| 868 | */ |
| 869 | /* |
| 870 | * XXX: if the last descriptor is holding descriptor, |
| 871 | * in order to requeue the frame to software queue, we |
| 872 | * need to allocate a new descriptor and |
| 873 | * copy the content of holding descriptor to it. |
| 874 | */ |
| 875 | if (bf->bf_next == NULL && |
| 876 | bf_last->bf_status & ATH_BUFSTATUS_STALE) { |
| 877 | struct ath_buf *tbf; |
| 878 | |
| 879 | /* allocate new descriptor */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 880 | spin_lock_bh(&sc->tx.txbuflock); |
| 881 | ASSERT(!list_empty((&sc->tx.txbuf))); |
| 882 | tbf = list_first_entry(&sc->tx.txbuf, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 883 | struct ath_buf, list); |
| 884 | list_del(&tbf->list); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 885 | spin_unlock_bh(&sc->tx.txbuflock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 886 | |
| 887 | ATH_TXBUF_RESET(tbf); |
| 888 | |
| 889 | /* copy descriptor content */ |
| 890 | tbf->bf_mpdu = bf_last->bf_mpdu; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 891 | tbf->bf_buf_addr = bf_last->bf_buf_addr; |
| 892 | *(tbf->bf_desc) = *(bf_last->bf_desc); |
| 893 | |
| 894 | /* link it to the frame */ |
| 895 | if (bf_lastq) { |
| 896 | bf_lastq->bf_desc->ds_link = |
| 897 | tbf->bf_daddr; |
| 898 | bf->bf_lastfrm = tbf; |
| 899 | ath9k_hw_cleartxdesc(sc->sc_ah, |
| 900 | bf->bf_lastfrm->bf_desc); |
| 901 | } else { |
| 902 | tbf->bf_state = bf_last->bf_state; |
| 903 | tbf->bf_lastfrm = tbf; |
| 904 | ath9k_hw_cleartxdesc(sc->sc_ah, |
| 905 | tbf->bf_lastfrm->bf_desc); |
| 906 | |
| 907 | /* copy the DMA context */ |
Sujith | ff9b662 | 2008-08-14 13:27:16 +0530 | [diff] [blame] | 908 | tbf->bf_dmacontext = |
| 909 | bf_last->bf_dmacontext; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 910 | } |
| 911 | list_add_tail(&tbf->list, &bf_head); |
| 912 | } else { |
| 913 | /* |
| 914 | * Clear descriptor status words for |
| 915 | * software retry |
| 916 | */ |
| 917 | ath9k_hw_cleartxdesc(sc->sc_ah, |
Sujith | ff9b662 | 2008-08-14 13:27:16 +0530 | [diff] [blame] | 918 | bf->bf_lastfrm->bf_desc); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | /* |
| 922 | * Put this buffer to the temporary pending |
| 923 | * queue to retain ordering |
| 924 | */ |
| 925 | list_splice_tail_init(&bf_head, &bf_pending); |
| 926 | } |
| 927 | |
| 928 | bf = bf_next; |
| 929 | } |
| 930 | |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 931 | if (tid->state & AGGR_CLEANUP) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 932 | /* check to see if we're done with cleaning the h/w queue */ |
| 933 | spin_lock_bh(&txq->axq_lock); |
| 934 | |
| 935 | if (tid->baw_head == tid->baw_tail) { |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 936 | tid->state &= ~AGGR_ADDBA_COMPLETE; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 937 | tid->addba_exchangeattempts = 0; |
| 938 | spin_unlock_bh(&txq->axq_lock); |
| 939 | |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 940 | tid->state &= ~AGGR_CLEANUP; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 941 | |
| 942 | /* send buffered frames as singles */ |
| 943 | ath_tx_flush_tid(sc, tid); |
| 944 | } else |
| 945 | spin_unlock_bh(&txq->axq_lock); |
| 946 | |
| 947 | return; |
| 948 | } |
| 949 | |
| 950 | /* |
| 951 | * prepend un-acked frames to the beginning of the pending frame queue |
| 952 | */ |
| 953 | if (!list_empty(&bf_pending)) { |
| 954 | spin_lock_bh(&txq->axq_lock); |
| 955 | /* Note: we _prepend_, we _do_not_ at to |
| 956 | * the end of the queue ! */ |
| 957 | list_splice(&bf_pending, &tid->buf_q); |
| 958 | ath_tx_queue_tid(txq, tid); |
| 959 | spin_unlock_bh(&txq->axq_lock); |
| 960 | } |
| 961 | |
| 962 | if (needreset) |
Sujith | f45144e | 2008-08-11 14:02:53 +0530 | [diff] [blame] | 963 | ath_reset(sc, false); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 964 | |
| 965 | return; |
| 966 | } |
| 967 | |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 968 | static void ath_tx_rc_status(struct ath_buf *bf, struct ath_desc *ds, int nbad) |
| 969 | { |
| 970 | struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu; |
| 971 | struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb); |
| 972 | struct ath_tx_info_priv *tx_info_priv = ATH_TX_INFO_PRIV(tx_info); |
| 973 | |
Vasanthakumar Thiagarajan | 7ac4701 | 2008-11-20 11:51:18 +0530 | [diff] [blame] | 974 | tx_info_priv->update_rc = false; |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 975 | if (ds->ds_txstat.ts_status & ATH9K_TXERR_FILT) |
| 976 | tx_info->flags |= IEEE80211_TX_STAT_TX_FILTERED; |
| 977 | |
| 978 | if ((ds->ds_txstat.ts_status & ATH9K_TXERR_FILT) == 0 && |
| 979 | (bf->bf_flags & ATH9K_TXDESC_NOACK) == 0) { |
| 980 | if (bf_isdata(bf)) { |
| 981 | memcpy(&tx_info_priv->tx, &ds->ds_txstat, |
| 982 | sizeof(tx_info_priv->tx)); |
| 983 | tx_info_priv->n_frames = bf->bf_nframes; |
| 984 | tx_info_priv->n_bad_frames = nbad; |
Vasanthakumar Thiagarajan | 7ac4701 | 2008-11-20 11:51:18 +0530 | [diff] [blame] | 985 | tx_info_priv->update_rc = true; |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 986 | } |
| 987 | } |
| 988 | } |
| 989 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 990 | /* Process completed xmit descriptors from the specified queue */ |
| 991 | |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 992 | static void ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 993 | { |
| 994 | struct ath_hal *ah = sc->sc_ah; |
| 995 | struct ath_buf *bf, *lastbf, *bf_held = NULL; |
| 996 | struct list_head bf_head; |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 997 | struct ath_desc *ds; |
| 998 | int txok, nbad = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 999 | int status; |
| 1000 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1001 | DPRINTF(sc, ATH_DBG_QUEUE, "tx queue %d (%x), link %p\n", |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1002 | txq->axq_qnum, ath9k_hw_gettxbuf(sc->sc_ah, txq->axq_qnum), |
| 1003 | txq->axq_link); |
| 1004 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1005 | for (;;) { |
| 1006 | spin_lock_bh(&txq->axq_lock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1007 | if (list_empty(&txq->axq_q)) { |
| 1008 | txq->axq_link = NULL; |
| 1009 | txq->axq_linkbuf = NULL; |
| 1010 | spin_unlock_bh(&txq->axq_lock); |
| 1011 | break; |
| 1012 | } |
| 1013 | bf = list_first_entry(&txq->axq_q, struct ath_buf, list); |
| 1014 | |
| 1015 | /* |
| 1016 | * There is a race condition that a BH gets scheduled |
| 1017 | * after sw writes TxE and before hw re-load the last |
| 1018 | * descriptor to get the newly chained one. |
| 1019 | * Software must keep the last DONE descriptor as a |
| 1020 | * holding descriptor - software does so by marking |
| 1021 | * it with the STALE flag. |
| 1022 | */ |
| 1023 | bf_held = NULL; |
| 1024 | if (bf->bf_status & ATH_BUFSTATUS_STALE) { |
| 1025 | bf_held = bf; |
| 1026 | if (list_is_last(&bf_held->list, &txq->axq_q)) { |
| 1027 | /* FIXME: |
| 1028 | * The holding descriptor is the last |
| 1029 | * descriptor in queue. It's safe to remove |
| 1030 | * the last holding descriptor in BH context. |
| 1031 | */ |
| 1032 | spin_unlock_bh(&txq->axq_lock); |
| 1033 | break; |
| 1034 | } else { |
| 1035 | /* Lets work with the next buffer now */ |
| 1036 | bf = list_entry(bf_held->list.next, |
| 1037 | struct ath_buf, list); |
| 1038 | } |
| 1039 | } |
| 1040 | |
| 1041 | lastbf = bf->bf_lastbf; |
| 1042 | ds = lastbf->bf_desc; /* NB: last decriptor */ |
| 1043 | |
| 1044 | status = ath9k_hw_txprocdesc(ah, ds); |
| 1045 | if (status == -EINPROGRESS) { |
| 1046 | spin_unlock_bh(&txq->axq_lock); |
| 1047 | break; |
| 1048 | } |
| 1049 | if (bf->bf_desc == txq->axq_lastdsWithCTS) |
| 1050 | txq->axq_lastdsWithCTS = NULL; |
| 1051 | if (ds == txq->axq_gatingds) |
| 1052 | txq->axq_gatingds = NULL; |
| 1053 | |
| 1054 | /* |
| 1055 | * Remove ath_buf's of the same transmit unit from txq, |
| 1056 | * however leave the last descriptor back as the holding |
| 1057 | * descriptor for hw. |
| 1058 | */ |
| 1059 | lastbf->bf_status |= ATH_BUFSTATUS_STALE; |
| 1060 | INIT_LIST_HEAD(&bf_head); |
| 1061 | |
| 1062 | if (!list_is_singular(&lastbf->list)) |
| 1063 | list_cut_position(&bf_head, |
| 1064 | &txq->axq_q, lastbf->list.prev); |
| 1065 | |
| 1066 | txq->axq_depth--; |
| 1067 | |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1068 | if (bf_isaggr(bf)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1069 | txq->axq_aggr_depth--; |
| 1070 | |
| 1071 | txok = (ds->ds_txstat.ts_status == 0); |
| 1072 | |
| 1073 | spin_unlock_bh(&txq->axq_lock); |
| 1074 | |
| 1075 | if (bf_held) { |
| 1076 | list_del(&bf_held->list); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1077 | spin_lock_bh(&sc->tx.txbuflock); |
| 1078 | list_add_tail(&bf_held->list, &sc->tx.txbuf); |
| 1079 | spin_unlock_bh(&sc->tx.txbuflock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1080 | } |
| 1081 | |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1082 | if (!bf_isampdu(bf)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1083 | /* |
| 1084 | * This frame is sent out as a single frame. |
| 1085 | * Use hardware retry status for this frame. |
| 1086 | */ |
| 1087 | bf->bf_retries = ds->ds_txstat.ts_longretry; |
| 1088 | if (ds->ds_txstat.ts_status & ATH9K_TXERR_XRETRY) |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1089 | bf->bf_state.bf_type |= BUF_XRETRY; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1090 | nbad = 0; |
| 1091 | } else { |
| 1092 | nbad = ath_tx_num_badfrms(sc, bf, txok); |
| 1093 | } |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 1094 | |
Sujith | c428839 | 2008-11-18 09:09:30 +0530 | [diff] [blame] | 1095 | ath_tx_rc_status(bf, ds, nbad); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1096 | |
| 1097 | /* |
| 1098 | * Complete this transmit unit |
| 1099 | */ |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1100 | if (bf_isampdu(bf)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1101 | ath_tx_complete_aggr_rifs(sc, txq, bf, &bf_head, txok); |
| 1102 | else |
| 1103 | ath_tx_complete_buf(sc, bf, &bf_head, txok, 0); |
| 1104 | |
| 1105 | /* Wake up mac80211 queue */ |
| 1106 | |
| 1107 | spin_lock_bh(&txq->axq_lock); |
| 1108 | if (txq->stopped && ath_txq_depth(sc, txq->axq_qnum) <= |
| 1109 | (ATH_TXBUF - 20)) { |
| 1110 | int qnum; |
| 1111 | qnum = ath_get_mac80211_qnum(txq->axq_qnum, sc); |
| 1112 | if (qnum != -1) { |
| 1113 | ieee80211_wake_queue(sc->hw, qnum); |
| 1114 | txq->stopped = 0; |
| 1115 | } |
| 1116 | |
| 1117 | } |
| 1118 | |
| 1119 | /* |
| 1120 | * schedule any pending packets if aggregation is enabled |
| 1121 | */ |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 1122 | if (sc->sc_flags & SC_OP_TXAGGR) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1123 | ath_txq_schedule(sc, txq); |
| 1124 | spin_unlock_bh(&txq->axq_lock); |
| 1125 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1126 | } |
| 1127 | |
| 1128 | static void ath_tx_stopdma(struct ath_softc *sc, struct ath_txq *txq) |
| 1129 | { |
| 1130 | struct ath_hal *ah = sc->sc_ah; |
| 1131 | |
| 1132 | (void) ath9k_hw_stoptxdma(ah, txq->axq_qnum); |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1133 | DPRINTF(sc, ATH_DBG_XMIT, "tx queue [%u] %x, link %p\n", |
| 1134 | txq->axq_qnum, ath9k_hw_gettxbuf(ah, txq->axq_qnum), |
| 1135 | txq->axq_link); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | /* Drain only the data queues */ |
| 1139 | |
| 1140 | static void ath_drain_txdataq(struct ath_softc *sc, bool retry_tx) |
| 1141 | { |
| 1142 | struct ath_hal *ah = sc->sc_ah; |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 1143 | int i, status, npend = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1144 | |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 1145 | if (!(sc->sc_flags & SC_OP_INVALID)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1146 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) { |
| 1147 | if (ATH_TXQ_SETUP(sc, i)) { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1148 | ath_tx_stopdma(sc, &sc->tx.txq[i]); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1149 | /* The TxDMA may not really be stopped. |
| 1150 | * Double check the hal tx pending count */ |
| 1151 | npend += ath9k_hw_numtxpending(ah, |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1152 | sc->tx.txq[i].axq_qnum); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1153 | } |
| 1154 | } |
| 1155 | } |
| 1156 | |
| 1157 | if (npend) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1158 | /* TxDMA not stopped, reset the hal */ |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1159 | DPRINTF(sc, ATH_DBG_XMIT, "Unable to stop TxDMA. Reset HAL!\n"); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1160 | |
| 1161 | spin_lock_bh(&sc->sc_resetlock); |
Sujith | b4696c8b | 2008-08-11 14:04:52 +0530 | [diff] [blame] | 1162 | if (!ath9k_hw_reset(ah, |
Sujith | 927e70e | 2008-08-14 13:26:34 +0530 | [diff] [blame] | 1163 | sc->sc_ah->ah_curchan, |
Sujith | 99405f9 | 2008-11-24 12:08:35 +0530 | [diff] [blame] | 1164 | sc->tx_chan_width, |
Sujith | 927e70e | 2008-08-14 13:26:34 +0530 | [diff] [blame] | 1165 | sc->sc_tx_chainmask, sc->sc_rx_chainmask, |
| 1166 | sc->sc_ht_extprotspacing, true, &status)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1167 | |
| 1168 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1169 | "Unable to reset hardware; hal status %u\n", |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1170 | status); |
| 1171 | } |
| 1172 | spin_unlock_bh(&sc->sc_resetlock); |
| 1173 | } |
| 1174 | |
| 1175 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) { |
| 1176 | if (ATH_TXQ_SETUP(sc, i)) |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1177 | ath_tx_draintxq(sc, &sc->tx.txq[i], retry_tx); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1178 | } |
| 1179 | } |
| 1180 | |
| 1181 | /* Add a sub-frame to block ack window */ |
| 1182 | |
| 1183 | static void ath_tx_addto_baw(struct ath_softc *sc, |
| 1184 | struct ath_atx_tid *tid, |
| 1185 | struct ath_buf *bf) |
| 1186 | { |
| 1187 | int index, cindex; |
| 1188 | |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1189 | if (bf_isretried(bf)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1190 | return; |
| 1191 | |
| 1192 | index = ATH_BA_INDEX(tid->seq_start, bf->bf_seqno); |
| 1193 | cindex = (tid->baw_head + index) & (ATH_TID_MAX_BUFS - 1); |
| 1194 | |
| 1195 | ASSERT(tid->tx_buf[cindex] == NULL); |
| 1196 | tid->tx_buf[cindex] = bf; |
| 1197 | |
| 1198 | if (index >= ((tid->baw_tail - tid->baw_head) & |
| 1199 | (ATH_TID_MAX_BUFS - 1))) { |
| 1200 | tid->baw_tail = cindex; |
| 1201 | INCR(tid->baw_tail, ATH_TID_MAX_BUFS); |
| 1202 | } |
| 1203 | } |
| 1204 | |
| 1205 | /* |
| 1206 | * Function to send an A-MPDU |
| 1207 | * NB: must be called with txq lock held |
| 1208 | */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1209 | static int ath_tx_send_ampdu(struct ath_softc *sc, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1210 | struct ath_atx_tid *tid, |
| 1211 | struct list_head *bf_head, |
| 1212 | struct ath_tx_control *txctl) |
| 1213 | { |
| 1214 | struct ath_buf *bf; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1215 | |
| 1216 | BUG_ON(list_empty(bf_head)); |
| 1217 | |
| 1218 | bf = list_first_entry(bf_head, struct ath_buf, list); |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1219 | bf->bf_state.bf_type |= BUF_AMPDU; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1220 | |
| 1221 | /* |
| 1222 | * Do not queue to h/w when any of the following conditions is true: |
| 1223 | * - there are pending frames in software queue |
| 1224 | * - the TID is currently paused for ADDBA/BAR request |
| 1225 | * - seqno is not within block-ack window |
| 1226 | * - h/w queue depth exceeds low water mark |
| 1227 | */ |
| 1228 | if (!list_empty(&tid->buf_q) || tid->paused || |
| 1229 | !BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno) || |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1230 | txctl->txq->axq_depth >= ATH_AGGR_MIN_QDEPTH) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1231 | /* |
| 1232 | * Add this frame to software queue for scheduling later |
| 1233 | * for aggregation. |
| 1234 | */ |
| 1235 | list_splice_tail_init(bf_head, &tid->buf_q); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1236 | ath_tx_queue_tid(txctl->txq, tid); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1237 | return 0; |
| 1238 | } |
| 1239 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1240 | /* Add sub-frame to BAW */ |
| 1241 | ath_tx_addto_baw(sc, tid, bf); |
| 1242 | |
| 1243 | /* Queue to h/w without aggregation */ |
| 1244 | bf->bf_nframes = 1; |
| 1245 | bf->bf_lastbf = bf->bf_lastfrm; /* one single frame */ |
| 1246 | ath_buf_set_rate(sc, bf); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1247 | ath_tx_txqaddbuf(sc, txctl->txq, bf_head); |
Sujith | 102e057 | 2008-10-29 10:15:16 +0530 | [diff] [blame] | 1248 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1249 | return 0; |
| 1250 | } |
| 1251 | |
| 1252 | /* |
| 1253 | * looks up the rate |
| 1254 | * returns aggr limit based on lowest of the rates |
| 1255 | */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1256 | static u32 ath_lookup_rate(struct ath_softc *sc, |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1257 | struct ath_buf *bf, |
| 1258 | struct ath_atx_tid *tid) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1259 | { |
Sujith | 3706de6 | 2008-12-07 21:42:10 +0530 | [diff] [blame] | 1260 | struct ath_rate_table *rate_table = sc->cur_rate_table; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1261 | struct sk_buff *skb; |
| 1262 | struct ieee80211_tx_info *tx_info; |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 1263 | struct ieee80211_tx_rate *rates; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1264 | struct ath_tx_info_priv *tx_info_priv; |
| 1265 | u32 max_4ms_framelen, frame_length; |
| 1266 | u16 aggr_limit, legacy = 0, maxampdu; |
| 1267 | int i; |
| 1268 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1269 | skb = (struct sk_buff *)bf->bf_mpdu; |
| 1270 | tx_info = IEEE80211_SKB_CB(skb); |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 1271 | rates = tx_info->control.rates; |
| 1272 | tx_info_priv = |
| 1273 | (struct ath_tx_info_priv *)tx_info->rate_driver_data[0]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1274 | |
| 1275 | /* |
| 1276 | * Find the lowest frame length among the rate series that will have a |
| 1277 | * 4ms transmit duration. |
| 1278 | * TODO - TXOP limit needs to be considered. |
| 1279 | */ |
| 1280 | max_4ms_framelen = ATH_AMPDU_LIMIT_MAX; |
| 1281 | |
| 1282 | for (i = 0; i < 4; i++) { |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 1283 | if (rates[i].count) { |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 1284 | if (!WLAN_RC_PHY_HT(rate_table->info[rates[i].idx].phy)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1285 | legacy = 1; |
| 1286 | break; |
| 1287 | } |
| 1288 | |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 1289 | frame_length = |
| 1290 | rate_table->info[rates[i].idx].max_4ms_framelen; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1291 | max_4ms_framelen = min(max_4ms_framelen, frame_length); |
| 1292 | } |
| 1293 | } |
| 1294 | |
| 1295 | /* |
| 1296 | * limit aggregate size by the minimum rate if rate selected is |
| 1297 | * not a probe rate, if rate selected is a probe rate then |
| 1298 | * avoid aggregation of this packet. |
| 1299 | */ |
| 1300 | if (tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE || legacy) |
| 1301 | return 0; |
| 1302 | |
| 1303 | aggr_limit = min(max_4ms_framelen, |
| 1304 | (u32)ATH_AMPDU_LIMIT_DEFAULT); |
| 1305 | |
| 1306 | /* |
| 1307 | * h/w can accept aggregates upto 16 bit lengths (65535). |
| 1308 | * The IE, however can hold upto 65536, which shows up here |
| 1309 | * as zero. Ignore 65536 since we are constrained by hw. |
| 1310 | */ |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1311 | maxampdu = tid->an->maxampdu; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1312 | if (maxampdu) |
| 1313 | aggr_limit = min(aggr_limit, maxampdu); |
| 1314 | |
| 1315 | return aggr_limit; |
| 1316 | } |
| 1317 | |
| 1318 | /* |
| 1319 | * returns the number of delimiters to be added to |
| 1320 | * meet the minimum required mpdudensity. |
| 1321 | * caller should make sure that the rate is HT rate . |
| 1322 | */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1323 | static int ath_compute_num_delims(struct ath_softc *sc, |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1324 | struct ath_atx_tid *tid, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1325 | struct ath_buf *bf, |
| 1326 | u16 frmlen) |
| 1327 | { |
Sujith | 3706de6 | 2008-12-07 21:42:10 +0530 | [diff] [blame] | 1328 | struct ath_rate_table *rt = sc->cur_rate_table; |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 1329 | struct sk_buff *skb = bf->bf_mpdu; |
| 1330 | struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1331 | u32 nsymbits, nsymbols, mpdudensity; |
| 1332 | u16 minlen; |
| 1333 | u8 rc, flags, rix; |
| 1334 | int width, half_gi, ndelim, mindelim; |
| 1335 | |
| 1336 | /* Select standard number of delimiters based on frame length alone */ |
| 1337 | ndelim = ATH_AGGR_GET_NDELIM(frmlen); |
| 1338 | |
| 1339 | /* |
| 1340 | * If encryption enabled, hardware requires some more padding between |
| 1341 | * subframes. |
| 1342 | * TODO - this could be improved to be dependent on the rate. |
| 1343 | * The hardware can keep up at lower rates, but not higher rates |
| 1344 | */ |
| 1345 | if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR) |
| 1346 | ndelim += ATH_AGGR_ENCRYPTDELIM; |
| 1347 | |
| 1348 | /* |
| 1349 | * Convert desired mpdu density from microeconds to bytes based |
| 1350 | * on highest rate in rate series (i.e. first rate) to determine |
| 1351 | * required minimum length for subframe. Take into account |
| 1352 | * whether high rate is 20 or 40Mhz and half or full GI. |
| 1353 | */ |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1354 | mpdudensity = tid->an->mpdudensity; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1355 | |
| 1356 | /* |
| 1357 | * If there is no mpdu density restriction, no further calculation |
| 1358 | * is needed. |
| 1359 | */ |
| 1360 | if (mpdudensity == 0) |
| 1361 | return ndelim; |
| 1362 | |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 1363 | rix = tx_info->control.rates[0].idx; |
| 1364 | flags = tx_info->control.rates[0].flags; |
Sujith | e63835b | 2008-11-18 09:07:53 +0530 | [diff] [blame] | 1365 | rc = rt->info[rix].ratecode; |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 1366 | width = (flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ? 1 : 0; |
| 1367 | half_gi = (flags & IEEE80211_TX_RC_SHORT_GI) ? 1 : 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1368 | |
| 1369 | if (half_gi) |
| 1370 | nsymbols = NUM_SYMBOLS_PER_USEC_HALFGI(mpdudensity); |
| 1371 | else |
| 1372 | nsymbols = NUM_SYMBOLS_PER_USEC(mpdudensity); |
| 1373 | |
| 1374 | if (nsymbols == 0) |
| 1375 | nsymbols = 1; |
| 1376 | |
| 1377 | nsymbits = bits_per_symbol[HT_RC_2_MCS(rc)][width]; |
| 1378 | minlen = (nsymbols * nsymbits) / BITS_PER_BYTE; |
| 1379 | |
| 1380 | /* Is frame shorter than required minimum length? */ |
| 1381 | if (frmlen < minlen) { |
| 1382 | /* Get the minimum number of delimiters required. */ |
| 1383 | mindelim = (minlen - frmlen) / ATH_AGGR_DELIM_SZ; |
| 1384 | ndelim = max(mindelim, ndelim); |
| 1385 | } |
| 1386 | |
| 1387 | return ndelim; |
| 1388 | } |
| 1389 | |
| 1390 | /* |
| 1391 | * For aggregation from software buffer queue. |
| 1392 | * NB: must be called with txq lock held |
| 1393 | */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1394 | static enum ATH_AGGR_STATUS ath_tx_form_aggr(struct ath_softc *sc, |
| 1395 | struct ath_atx_tid *tid, |
| 1396 | struct list_head *bf_q, |
| 1397 | struct ath_buf **bf_last, |
| 1398 | struct aggr_rifs_param *param, |
| 1399 | int *prev_frames) |
| 1400 | { |
| 1401 | #define PADBYTES(_len) ((4 - ((_len) % 4)) % 4) |
| 1402 | struct ath_buf *bf, *tbf, *bf_first, *bf_prev = NULL; |
| 1403 | struct list_head bf_head; |
| 1404 | int rl = 0, nframes = 0, ndelim; |
| 1405 | u16 aggr_limit = 0, al = 0, bpad = 0, |
| 1406 | al_delta, h_baw = tid->baw_size / 2; |
| 1407 | enum ATH_AGGR_STATUS status = ATH_AGGR_DONE; |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 1408 | int prev_al = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1409 | INIT_LIST_HEAD(&bf_head); |
| 1410 | |
| 1411 | BUG_ON(list_empty(&tid->buf_q)); |
| 1412 | |
| 1413 | bf_first = list_first_entry(&tid->buf_q, struct ath_buf, list); |
| 1414 | |
| 1415 | do { |
| 1416 | bf = list_first_entry(&tid->buf_q, struct ath_buf, list); |
| 1417 | |
| 1418 | /* |
| 1419 | * do not step over block-ack window |
| 1420 | */ |
| 1421 | if (!BAW_WITHIN(tid->seq_start, tid->baw_size, bf->bf_seqno)) { |
| 1422 | status = ATH_AGGR_BAW_CLOSED; |
| 1423 | break; |
| 1424 | } |
| 1425 | |
| 1426 | if (!rl) { |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1427 | aggr_limit = ath_lookup_rate(sc, bf, tid); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1428 | rl = 1; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | /* |
| 1432 | * do not exceed aggregation limit |
| 1433 | */ |
| 1434 | al_delta = ATH_AGGR_DELIM_SZ + bf->bf_frmlen; |
| 1435 | |
| 1436 | if (nframes && (aggr_limit < |
| 1437 | (al + bpad + al_delta + prev_al))) { |
| 1438 | status = ATH_AGGR_LIMITED; |
| 1439 | break; |
| 1440 | } |
| 1441 | |
| 1442 | /* |
| 1443 | * do not exceed subframe limit |
| 1444 | */ |
| 1445 | if ((nframes + *prev_frames) >= |
| 1446 | min((int)h_baw, ATH_AMPDU_SUBFRAME_DEFAULT)) { |
| 1447 | status = ATH_AGGR_LIMITED; |
| 1448 | break; |
| 1449 | } |
| 1450 | |
| 1451 | /* |
| 1452 | * add padding for previous frame to aggregation length |
| 1453 | */ |
| 1454 | al += bpad + al_delta; |
| 1455 | |
| 1456 | /* |
| 1457 | * Get the delimiters needed to meet the MPDU |
| 1458 | * density for this node. |
| 1459 | */ |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1460 | ndelim = ath_compute_num_delims(sc, tid, bf_first, bf->bf_frmlen); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1461 | |
| 1462 | bpad = PADBYTES(al_delta) + (ndelim << 2); |
| 1463 | |
| 1464 | bf->bf_next = NULL; |
| 1465 | bf->bf_lastfrm->bf_desc->ds_link = 0; |
| 1466 | |
| 1467 | /* |
| 1468 | * this packet is part of an aggregate |
| 1469 | * - remove all descriptors belonging to this frame from |
| 1470 | * software queue |
| 1471 | * - add it to block ack window |
| 1472 | * - set up descriptors for aggregation |
| 1473 | */ |
| 1474 | list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list); |
| 1475 | ath_tx_addto_baw(sc, tid, bf); |
| 1476 | |
| 1477 | list_for_each_entry(tbf, &bf_head, list) { |
| 1478 | ath9k_hw_set11n_aggr_middle(sc->sc_ah, |
| 1479 | tbf->bf_desc, ndelim); |
| 1480 | } |
| 1481 | |
| 1482 | /* |
| 1483 | * link buffers of this frame to the aggregate |
| 1484 | */ |
| 1485 | list_splice_tail_init(&bf_head, bf_q); |
| 1486 | nframes++; |
| 1487 | |
| 1488 | if (bf_prev) { |
| 1489 | bf_prev->bf_next = bf; |
| 1490 | bf_prev->bf_lastfrm->bf_desc->ds_link = bf->bf_daddr; |
| 1491 | } |
| 1492 | bf_prev = bf; |
| 1493 | |
| 1494 | #ifdef AGGR_NOSHORT |
| 1495 | /* |
| 1496 | * terminate aggregation on a small packet boundary |
| 1497 | */ |
| 1498 | if (bf->bf_frmlen < ATH_AGGR_MINPLEN) { |
| 1499 | status = ATH_AGGR_SHORTPKT; |
| 1500 | break; |
| 1501 | } |
| 1502 | #endif |
| 1503 | } while (!list_empty(&tid->buf_q)); |
| 1504 | |
| 1505 | bf_first->bf_al = al; |
| 1506 | bf_first->bf_nframes = nframes; |
| 1507 | *bf_last = bf_prev; |
| 1508 | return status; |
| 1509 | #undef PADBYTES |
| 1510 | } |
| 1511 | |
| 1512 | /* |
| 1513 | * process pending frames possibly doing a-mpdu aggregation |
| 1514 | * NB: must be called with txq lock held |
| 1515 | */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1516 | static void ath_tx_sched_aggr(struct ath_softc *sc, |
| 1517 | struct ath_txq *txq, struct ath_atx_tid *tid) |
| 1518 | { |
| 1519 | struct ath_buf *bf, *tbf, *bf_last, *bf_lastaggr = NULL; |
| 1520 | enum ATH_AGGR_STATUS status; |
| 1521 | struct list_head bf_q; |
| 1522 | struct aggr_rifs_param param = {0, 0, 0, 0, NULL}; |
| 1523 | int prev_frames = 0; |
| 1524 | |
| 1525 | do { |
| 1526 | if (list_empty(&tid->buf_q)) |
| 1527 | return; |
| 1528 | |
| 1529 | INIT_LIST_HEAD(&bf_q); |
| 1530 | |
| 1531 | status = ath_tx_form_aggr(sc, tid, &bf_q, &bf_lastaggr, ¶m, |
| 1532 | &prev_frames); |
| 1533 | |
| 1534 | /* |
| 1535 | * no frames picked up to be aggregated; block-ack |
| 1536 | * window is not open |
| 1537 | */ |
| 1538 | if (list_empty(&bf_q)) |
| 1539 | break; |
| 1540 | |
| 1541 | bf = list_first_entry(&bf_q, struct ath_buf, list); |
| 1542 | bf_last = list_entry(bf_q.prev, struct ath_buf, list); |
| 1543 | bf->bf_lastbf = bf_last; |
| 1544 | |
| 1545 | /* |
| 1546 | * if only one frame, send as non-aggregate |
| 1547 | */ |
| 1548 | if (bf->bf_nframes == 1) { |
| 1549 | ASSERT(bf->bf_lastfrm == bf_last); |
| 1550 | |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1551 | bf->bf_state.bf_type &= ~BUF_AGGR; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1552 | /* |
| 1553 | * clear aggr bits for every descriptor |
| 1554 | * XXX TODO: is there a way to optimize it? |
| 1555 | */ |
| 1556 | list_for_each_entry(tbf, &bf_q, list) { |
| 1557 | ath9k_hw_clr11n_aggr(sc->sc_ah, tbf->bf_desc); |
| 1558 | } |
| 1559 | |
| 1560 | ath_buf_set_rate(sc, bf); |
| 1561 | ath_tx_txqaddbuf(sc, txq, &bf_q); |
| 1562 | continue; |
| 1563 | } |
| 1564 | |
| 1565 | /* |
| 1566 | * setup first desc with rate and aggr info |
| 1567 | */ |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1568 | bf->bf_state.bf_type |= BUF_AGGR; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1569 | ath_buf_set_rate(sc, bf); |
| 1570 | ath9k_hw_set11n_aggr_first(sc->sc_ah, bf->bf_desc, bf->bf_al); |
| 1571 | |
| 1572 | /* |
| 1573 | * anchor last frame of aggregate correctly |
| 1574 | */ |
| 1575 | ASSERT(bf_lastaggr); |
| 1576 | ASSERT(bf_lastaggr->bf_lastfrm == bf_last); |
| 1577 | tbf = bf_lastaggr; |
| 1578 | ath9k_hw_set11n_aggr_last(sc->sc_ah, tbf->bf_desc); |
| 1579 | |
| 1580 | /* XXX: We don't enter into this loop, consider removing this */ |
| 1581 | while (!list_empty(&bf_q) && !list_is_last(&tbf->list, &bf_q)) { |
| 1582 | tbf = list_entry(tbf->list.next, struct ath_buf, list); |
| 1583 | ath9k_hw_set11n_aggr_last(sc->sc_ah, tbf->bf_desc); |
| 1584 | } |
| 1585 | |
| 1586 | txq->axq_aggr_depth++; |
| 1587 | |
| 1588 | /* |
| 1589 | * Normal aggregate, queue to hardware |
| 1590 | */ |
| 1591 | ath_tx_txqaddbuf(sc, txq, &bf_q); |
| 1592 | |
| 1593 | } while (txq->axq_depth < ATH_AGGR_MIN_QDEPTH && |
| 1594 | status != ATH_AGGR_BAW_CLOSED); |
| 1595 | } |
| 1596 | |
| 1597 | /* Called with txq lock held */ |
| 1598 | |
| 1599 | static void ath_tid_drain(struct ath_softc *sc, |
| 1600 | struct ath_txq *txq, |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 1601 | struct ath_atx_tid *tid) |
| 1602 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1603 | { |
| 1604 | struct ath_buf *bf; |
| 1605 | struct list_head bf_head; |
| 1606 | INIT_LIST_HEAD(&bf_head); |
| 1607 | |
| 1608 | for (;;) { |
| 1609 | if (list_empty(&tid->buf_q)) |
| 1610 | break; |
| 1611 | bf = list_first_entry(&tid->buf_q, struct ath_buf, list); |
| 1612 | |
| 1613 | list_cut_position(&bf_head, &tid->buf_q, &bf->bf_lastfrm->list); |
| 1614 | |
| 1615 | /* update baw for software retried frame */ |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1616 | if (bf_isretried(bf)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1617 | ath_tx_update_baw(sc, tid, bf->bf_seqno); |
| 1618 | |
| 1619 | /* |
| 1620 | * do not indicate packets while holding txq spinlock. |
| 1621 | * unlock is intentional here |
| 1622 | */ |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 1623 | spin_unlock(&txq->axq_lock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1624 | |
| 1625 | /* complete this sub-frame */ |
| 1626 | ath_tx_complete_buf(sc, bf, &bf_head, 0, 0); |
| 1627 | |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 1628 | spin_lock(&txq->axq_lock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1629 | } |
| 1630 | |
| 1631 | /* |
| 1632 | * TODO: For frame(s) that are in the retry state, we will reuse the |
| 1633 | * sequence number(s) without setting the retry bit. The |
| 1634 | * alternative is to give up on these and BAR the receiver's window |
| 1635 | * forward. |
| 1636 | */ |
| 1637 | tid->seq_next = tid->seq_start; |
| 1638 | tid->baw_tail = tid->baw_head; |
| 1639 | } |
| 1640 | |
| 1641 | /* |
| 1642 | * Drain all pending buffers |
| 1643 | * NB: must be called with txq lock held |
| 1644 | */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1645 | static void ath_txq_drain_pending_buffers(struct ath_softc *sc, |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 1646 | struct ath_txq *txq) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1647 | { |
| 1648 | struct ath_atx_ac *ac, *ac_tmp; |
| 1649 | struct ath_atx_tid *tid, *tid_tmp; |
| 1650 | |
| 1651 | list_for_each_entry_safe(ac, ac_tmp, &txq->axq_acq, list) { |
| 1652 | list_del(&ac->list); |
| 1653 | ac->sched = false; |
| 1654 | list_for_each_entry_safe(tid, tid_tmp, &ac->tid_q, list) { |
| 1655 | list_del(&tid->list); |
| 1656 | tid->sched = false; |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 1657 | ath_tid_drain(sc, txq, tid); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1658 | } |
| 1659 | } |
| 1660 | } |
| 1661 | |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1662 | static int ath_tx_setup_buffer(struct ath_softc *sc, struct ath_buf *bf, |
Sujith | 8f93b8b | 2008-11-18 09:10:42 +0530 | [diff] [blame] | 1663 | struct sk_buff *skb, |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1664 | struct ath_tx_control *txctl) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1665 | { |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1666 | struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb); |
| 1667 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1668 | struct ath_tx_info_priv *tx_info_priv; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1669 | int hdrlen; |
| 1670 | __le16 fc; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1671 | |
Luis R. Rodriguez | c112d0c | 2008-12-03 03:35:30 -0800 | [diff] [blame] | 1672 | tx_info_priv = kzalloc(sizeof(*tx_info_priv), GFP_ATOMIC); |
| 1673 | if (unlikely(!tx_info_priv)) |
| 1674 | return -ENOMEM; |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 1675 | tx_info->rate_driver_data[0] = tx_info_priv; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1676 | hdrlen = ieee80211_get_hdrlen_from_skb(skb); |
| 1677 | fc = hdr->frame_control; |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 1678 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1679 | ATH_TXBUF_RESET(bf); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1680 | |
| 1681 | /* Frame type */ |
| 1682 | |
| 1683 | bf->bf_frmlen = skb->len + FCS_LEN - (hdrlen & 3); |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1684 | |
| 1685 | ieee80211_is_data(fc) ? |
| 1686 | (bf->bf_state.bf_type |= BUF_DATA) : |
| 1687 | (bf->bf_state.bf_type &= ~BUF_DATA); |
| 1688 | ieee80211_is_back_req(fc) ? |
| 1689 | (bf->bf_state.bf_type |= BUF_BAR) : |
| 1690 | (bf->bf_state.bf_type &= ~BUF_BAR); |
| 1691 | ieee80211_is_pspoll(fc) ? |
| 1692 | (bf->bf_state.bf_type |= BUF_PSPOLL) : |
| 1693 | (bf->bf_state.bf_type &= ~BUF_PSPOLL); |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 1694 | (sc->sc_flags & SC_OP_PREAMBLE_SHORT) ? |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1695 | (bf->bf_state.bf_type |= BUF_SHORT_PREAMBLE) : |
| 1696 | (bf->bf_state.bf_type &= ~BUF_SHORT_PREAMBLE); |
Sujith | a8efee4 | 2008-11-18 09:07:30 +0530 | [diff] [blame] | 1697 | (sc->hw->conf.ht.enabled && !is_pae(skb) && |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1698 | (tx_info->flags & IEEE80211_TX_CTL_AMPDU)) ? |
| 1699 | (bf->bf_state.bf_type |= BUF_HT) : |
| 1700 | (bf->bf_state.bf_type &= ~BUF_HT); |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 1701 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1702 | bf->bf_flags = setup_tx_flags(sc, skb, txctl->txq); |
| 1703 | |
| 1704 | /* Crypto */ |
| 1705 | |
| 1706 | bf->bf_keytype = get_hw_crypto_keytype(skb); |
| 1707 | |
| 1708 | if (bf->bf_keytype != ATH9K_KEY_TYPE_CLEAR) { |
| 1709 | bf->bf_frmlen += tx_info->control.hw_key->icv_len; |
| 1710 | bf->bf_keyix = tx_info->control.hw_key->hw_key_idx; |
| 1711 | } else { |
| 1712 | bf->bf_keyix = ATH9K_TXKEYIX_INVALID; |
| 1713 | } |
| 1714 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1715 | /* Assign seqno, tidno */ |
| 1716 | |
Senthil Balasubramanian | d3a1db1 | 2008-12-22 16:31:58 +0530 | [diff] [blame] | 1717 | if (ieee80211_is_data_qos(fc) && (sc->sc_flags & SC_OP_TXAGGR)) |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1718 | assign_aggr_tid_seqno(skb, bf); |
| 1719 | |
| 1720 | /* DMA setup */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1721 | bf->bf_mpdu = skb; |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1722 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1723 | bf->bf_dmacontext = pci_map_single(sc->pdev, skb->data, |
| 1724 | skb->len, PCI_DMA_TODEVICE); |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1725 | if (unlikely(pci_dma_mapping_error(sc->pdev, bf->bf_dmacontext))) { |
| 1726 | bf->bf_mpdu = NULL; |
| 1727 | DPRINTF(sc, ATH_DBG_CONFIG, |
| 1728 | "pci_dma_mapping_error() on TX\n"); |
| 1729 | return -ENOMEM; |
| 1730 | } |
| 1731 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1732 | bf->bf_buf_addr = bf->bf_dmacontext; |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1733 | return 0; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1734 | } |
| 1735 | |
| 1736 | /* FIXME: tx power */ |
| 1737 | static void ath_tx_start_dma(struct ath_softc *sc, struct ath_buf *bf, |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1738 | struct ath_tx_control *txctl) |
| 1739 | { |
| 1740 | struct sk_buff *skb = (struct sk_buff *)bf->bf_mpdu; |
| 1741 | struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb); |
| 1742 | struct ath_node *an = NULL; |
| 1743 | struct list_head bf_head; |
| 1744 | struct ath_desc *ds; |
| 1745 | struct ath_atx_tid *tid; |
| 1746 | struct ath_hal *ah = sc->sc_ah; |
| 1747 | int frm_type; |
| 1748 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1749 | frm_type = get_hw_packet_type(skb); |
| 1750 | |
| 1751 | INIT_LIST_HEAD(&bf_head); |
| 1752 | list_add_tail(&bf->list, &bf_head); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1753 | |
| 1754 | /* setup descriptor */ |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1755 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1756 | ds = bf->bf_desc; |
| 1757 | ds->ds_link = 0; |
| 1758 | ds->ds_data = bf->bf_buf_addr; |
| 1759 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1760 | /* Formulate first tx descriptor with tx controls */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1761 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1762 | ath9k_hw_set11n_txdesc(ah, ds, bf->bf_frmlen, frm_type, MAX_RATE_POWER, |
| 1763 | bf->bf_keyix, bf->bf_keytype, bf->bf_flags); |
| 1764 | |
| 1765 | ath9k_hw_filltxdesc(ah, ds, |
Sujith | 8f93b8b | 2008-11-18 09:10:42 +0530 | [diff] [blame] | 1766 | skb->len, /* segment length */ |
| 1767 | true, /* first segment */ |
| 1768 | true, /* last segment */ |
| 1769 | ds); /* first descriptor */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1770 | |
| 1771 | bf->bf_lastfrm = bf; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1772 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1773 | spin_lock_bh(&txctl->txq->axq_lock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1774 | |
John W. Linville | f161796 | 2008-10-31 16:45:15 -0400 | [diff] [blame] | 1775 | if (bf_isht(bf) && (sc->sc_flags & SC_OP_TXAGGR) && |
| 1776 | tx_info->control.sta) { |
| 1777 | an = (struct ath_node *)tx_info->control.sta->drv_priv; |
| 1778 | tid = ATH_AN_2_TID(an, bf->bf_tidno); |
| 1779 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1780 | if (ath_aggr_query(sc, an, bf->bf_tidno)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1781 | /* |
| 1782 | * Try aggregation if it's a unicast data frame |
| 1783 | * and the destination is HT capable. |
| 1784 | */ |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1785 | ath_tx_send_ampdu(sc, tid, &bf_head, txctl); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1786 | } else { |
| 1787 | /* |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1788 | * Send this frame as regular when ADDBA |
| 1789 | * exchange is neither complete nor pending. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1790 | */ |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1791 | ath_tx_send_normal(sc, txctl->txq, |
| 1792 | tid, &bf_head); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1793 | } |
| 1794 | } else { |
| 1795 | bf->bf_lastbf = bf; |
| 1796 | bf->bf_nframes = 1; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1797 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1798 | ath_buf_set_rate(sc, bf); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1799 | ath_tx_txqaddbuf(sc, txctl->txq, &bf_head); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1800 | } |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1801 | |
| 1802 | spin_unlock_bh(&txctl->txq->axq_lock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1803 | } |
| 1804 | |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1805 | /* Upon failure caller should free skb */ |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1806 | int ath_tx_start(struct ath_softc *sc, struct sk_buff *skb, |
| 1807 | struct ath_tx_control *txctl) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1808 | { |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1809 | struct ath_buf *bf; |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1810 | int r; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1811 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1812 | /* Check if a tx buffer is available */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1813 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1814 | bf = ath_tx_get_buffer(sc); |
| 1815 | if (!bf) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1816 | DPRINTF(sc, ATH_DBG_XMIT, "TX buffers are full\n"); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1817 | return -1; |
| 1818 | } |
| 1819 | |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1820 | r = ath_tx_setup_buffer(sc, bf, skb, txctl); |
| 1821 | if (unlikely(r)) { |
Luis R. Rodriguez | c112d0c | 2008-12-03 03:35:30 -0800 | [diff] [blame] | 1822 | struct ath_txq *txq = txctl->txq; |
| 1823 | |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1824 | DPRINTF(sc, ATH_DBG_FATAL, "TX mem alloc failure\n"); |
Luis R. Rodriguez | c112d0c | 2008-12-03 03:35:30 -0800 | [diff] [blame] | 1825 | |
| 1826 | /* upon ath_tx_processq() this TX queue will be resumed, we |
| 1827 | * guarantee this will happen by knowing beforehand that |
| 1828 | * we will at least have to run TX completionon one buffer |
| 1829 | * on the queue */ |
| 1830 | spin_lock_bh(&txq->axq_lock); |
| 1831 | if (ath_txq_depth(sc, txq->axq_qnum) > 1) { |
| 1832 | ieee80211_stop_queue(sc->hw, |
| 1833 | skb_get_queue_mapping(skb)); |
| 1834 | txq->stopped = 1; |
| 1835 | } |
| 1836 | spin_unlock_bh(&txq->axq_lock); |
| 1837 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1838 | spin_lock_bh(&sc->tx.txbuflock); |
| 1839 | list_add_tail(&bf->list, &sc->tx.txbuf); |
| 1840 | spin_unlock_bh(&sc->tx.txbuflock); |
Luis R. Rodriguez | c112d0c | 2008-12-03 03:35:30 -0800 | [diff] [blame] | 1841 | |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1842 | return r; |
| 1843 | } |
| 1844 | |
Sujith | 8f93b8b | 2008-11-18 09:10:42 +0530 | [diff] [blame] | 1845 | ath_tx_start_dma(sc, bf, txctl); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1846 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 1847 | return 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1848 | } |
| 1849 | |
| 1850 | /* Initialize TX queue and h/w */ |
| 1851 | |
| 1852 | int ath_tx_init(struct ath_softc *sc, int nbufs) |
| 1853 | { |
| 1854 | int error = 0; |
| 1855 | |
| 1856 | do { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1857 | spin_lock_init(&sc->tx.txbuflock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1858 | |
| 1859 | /* Setup tx descriptors */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1860 | error = ath_descdma_setup(sc, &sc->tx.txdma, &sc->tx.txbuf, |
Sujith | 556bb8f | 2008-08-11 14:03:53 +0530 | [diff] [blame] | 1861 | "tx", nbufs, 1); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1862 | if (error != 0) { |
| 1863 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1864 | "Failed to allocate tx descriptors: %d\n", |
| 1865 | error); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1866 | break; |
| 1867 | } |
| 1868 | |
| 1869 | /* XXX allocate beacon state together with vap */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1870 | error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1871 | "beacon", ATH_BCBUF, 1); |
| 1872 | if (error != 0) { |
| 1873 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1874 | "Failed to allocate beacon descriptors: %d\n", |
| 1875 | error); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1876 | break; |
| 1877 | } |
| 1878 | |
| 1879 | } while (0); |
| 1880 | |
| 1881 | if (error != 0) |
| 1882 | ath_tx_cleanup(sc); |
| 1883 | |
| 1884 | return error; |
| 1885 | } |
| 1886 | |
| 1887 | /* Reclaim all tx queue resources */ |
| 1888 | |
| 1889 | int ath_tx_cleanup(struct ath_softc *sc) |
| 1890 | { |
| 1891 | /* cleanup beacon descriptors */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1892 | if (sc->beacon.bdma.dd_desc_len != 0) |
| 1893 | ath_descdma_cleanup(sc, &sc->beacon.bdma, &sc->beacon.bbuf); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1894 | |
| 1895 | /* cleanup tx descriptors */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1896 | if (sc->tx.txdma.dd_desc_len != 0) |
| 1897 | ath_descdma_cleanup(sc, &sc->tx.txdma, &sc->tx.txbuf); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1898 | |
| 1899 | return 0; |
| 1900 | } |
| 1901 | |
| 1902 | /* Setup a h/w transmit queue */ |
| 1903 | |
| 1904 | struct ath_txq *ath_txq_setup(struct ath_softc *sc, int qtype, int subtype) |
| 1905 | { |
| 1906 | struct ath_hal *ah = sc->sc_ah; |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 1907 | struct ath9k_tx_queue_info qi; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1908 | int qnum; |
| 1909 | |
Luis R. Rodriguez | 0345f37 | 2008-10-03 15:45:25 -0700 | [diff] [blame] | 1910 | memset(&qi, 0, sizeof(qi)); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1911 | qi.tqi_subtype = subtype; |
| 1912 | qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT; |
| 1913 | qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT; |
| 1914 | qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT; |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 1915 | qi.tqi_physCompBuf = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1916 | |
| 1917 | /* |
| 1918 | * Enable interrupts only for EOL and DESC conditions. |
| 1919 | * We mark tx descriptors to receive a DESC interrupt |
| 1920 | * when a tx queue gets deep; otherwise waiting for the |
| 1921 | * EOL to reap descriptors. Note that this is done to |
| 1922 | * reduce interrupt load and this only defers reaping |
| 1923 | * descriptors, never transmitting frames. Aside from |
| 1924 | * reducing interrupts this also permits more concurrency. |
| 1925 | * The only potential downside is if the tx queue backs |
| 1926 | * up in which case the top half of the kernel may backup |
| 1927 | * due to a lack of tx descriptors. |
| 1928 | * |
| 1929 | * The UAPSD queue is an exception, since we take a desc- |
| 1930 | * based intr on the EOSP frames. |
| 1931 | */ |
| 1932 | if (qtype == ATH9K_TX_QUEUE_UAPSD) |
| 1933 | qi.tqi_qflags = TXQ_FLAG_TXDESCINT_ENABLE; |
| 1934 | else |
| 1935 | qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE | |
| 1936 | TXQ_FLAG_TXDESCINT_ENABLE; |
| 1937 | qnum = ath9k_hw_setuptxqueue(ah, qtype, &qi); |
| 1938 | if (qnum == -1) { |
| 1939 | /* |
| 1940 | * NB: don't print a message, this happens |
| 1941 | * normally on parts with too few tx queues |
| 1942 | */ |
| 1943 | return NULL; |
| 1944 | } |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1945 | if (qnum >= ARRAY_SIZE(sc->tx.txq)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1946 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1947 | "qnum %u out of range, max %u!\n", |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1948 | qnum, (unsigned int)ARRAY_SIZE(sc->tx.txq)); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1949 | ath9k_hw_releasetxqueue(ah, qnum); |
| 1950 | return NULL; |
| 1951 | } |
| 1952 | if (!ATH_TXQ_SETUP(sc, qnum)) { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1953 | struct ath_txq *txq = &sc->tx.txq[qnum]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1954 | |
| 1955 | txq->axq_qnum = qnum; |
| 1956 | txq->axq_link = NULL; |
| 1957 | INIT_LIST_HEAD(&txq->axq_q); |
| 1958 | INIT_LIST_HEAD(&txq->axq_acq); |
| 1959 | spin_lock_init(&txq->axq_lock); |
| 1960 | txq->axq_depth = 0; |
| 1961 | txq->axq_aggr_depth = 0; |
| 1962 | txq->axq_totalqueued = 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1963 | txq->axq_linkbuf = NULL; |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1964 | sc->tx.txqsetup |= 1<<qnum; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1965 | } |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1966 | return &sc->tx.txq[qnum]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1967 | } |
| 1968 | |
| 1969 | /* Reclaim resources for a setup queue */ |
| 1970 | |
| 1971 | void ath_tx_cleanupq(struct ath_softc *sc, struct ath_txq *txq) |
| 1972 | { |
| 1973 | ath9k_hw_releasetxqueue(sc->sc_ah, txq->axq_qnum); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1974 | sc->tx.txqsetup &= ~(1<<txq->axq_qnum); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1975 | } |
| 1976 | |
| 1977 | /* |
| 1978 | * Setup a hardware data transmit queue for the specified |
| 1979 | * access control. The hal may not support all requested |
| 1980 | * queues in which case it will return a reference to a |
| 1981 | * previously setup queue. We record the mapping from ac's |
| 1982 | * to h/w queues for use by ath_tx_start and also track |
| 1983 | * the set of h/w queues being used to optimize work in the |
| 1984 | * transmit interrupt handler and related routines. |
| 1985 | */ |
| 1986 | |
| 1987 | int ath_tx_setup(struct ath_softc *sc, int haltype) |
| 1988 | { |
| 1989 | struct ath_txq *txq; |
| 1990 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1991 | if (haltype >= ARRAY_SIZE(sc->tx.hwq_map)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1992 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 1993 | "HAL AC %u out of range, max %zu!\n", |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1994 | haltype, ARRAY_SIZE(sc->tx.hwq_map)); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1995 | return 0; |
| 1996 | } |
| 1997 | txq = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, haltype); |
| 1998 | if (txq != NULL) { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1999 | sc->tx.hwq_map[haltype] = txq->axq_qnum; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2000 | return 1; |
| 2001 | } else |
| 2002 | return 0; |
| 2003 | } |
| 2004 | |
| 2005 | int ath_tx_get_qnum(struct ath_softc *sc, int qtype, int haltype) |
| 2006 | { |
| 2007 | int qnum; |
| 2008 | |
| 2009 | switch (qtype) { |
| 2010 | case ATH9K_TX_QUEUE_DATA: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2011 | if (haltype >= ARRAY_SIZE(sc->tx.hwq_map)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2012 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2013 | "HAL AC %u out of range, max %zu!\n", |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2014 | haltype, ARRAY_SIZE(sc->tx.hwq_map)); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2015 | return -1; |
| 2016 | } |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2017 | qnum = sc->tx.hwq_map[haltype]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2018 | break; |
| 2019 | case ATH9K_TX_QUEUE_BEACON: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2020 | qnum = sc->beacon.beaconq; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2021 | break; |
| 2022 | case ATH9K_TX_QUEUE_CAB: |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2023 | qnum = sc->beacon.cabq->axq_qnum; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2024 | break; |
| 2025 | default: |
| 2026 | qnum = -1; |
| 2027 | } |
| 2028 | return qnum; |
| 2029 | } |
| 2030 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2031 | /* Get a transmit queue, if available */ |
| 2032 | |
| 2033 | struct ath_txq *ath_test_get_txq(struct ath_softc *sc, struct sk_buff *skb) |
| 2034 | { |
| 2035 | struct ath_txq *txq = NULL; |
| 2036 | int qnum; |
| 2037 | |
| 2038 | qnum = ath_get_hal_qnum(skb_get_queue_mapping(skb), sc); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2039 | txq = &sc->tx.txq[qnum]; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2040 | |
| 2041 | spin_lock_bh(&txq->axq_lock); |
| 2042 | |
| 2043 | /* Try to avoid running out of descriptors */ |
| 2044 | if (txq->axq_depth >= (ATH_TXBUF - 20)) { |
| 2045 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2046 | "TX queue: %d is full, depth: %d\n", |
| 2047 | qnum, txq->axq_depth); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2048 | ieee80211_stop_queue(sc->hw, skb_get_queue_mapping(skb)); |
| 2049 | txq->stopped = 1; |
| 2050 | spin_unlock_bh(&txq->axq_lock); |
| 2051 | return NULL; |
| 2052 | } |
| 2053 | |
| 2054 | spin_unlock_bh(&txq->axq_lock); |
| 2055 | |
| 2056 | return txq; |
| 2057 | } |
| 2058 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2059 | /* Update parameters for a transmit queue */ |
| 2060 | |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 2061 | int ath_txq_update(struct ath_softc *sc, int qnum, |
| 2062 | struct ath9k_tx_queue_info *qinfo) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2063 | { |
| 2064 | struct ath_hal *ah = sc->sc_ah; |
| 2065 | int error = 0; |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 2066 | struct ath9k_tx_queue_info qi; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2067 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2068 | if (qnum == sc->beacon.beaconq) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2069 | /* |
| 2070 | * XXX: for beacon queue, we just save the parameter. |
| 2071 | * It will be picked up by ath_beaconq_config when |
| 2072 | * it's necessary. |
| 2073 | */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2074 | sc->beacon.beacon_qi = *qinfo; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2075 | return 0; |
| 2076 | } |
| 2077 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2078 | ASSERT(sc->tx.txq[qnum].axq_qnum == qnum); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2079 | |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 2080 | ath9k_hw_get_txq_props(ah, qnum, &qi); |
| 2081 | qi.tqi_aifs = qinfo->tqi_aifs; |
| 2082 | qi.tqi_cwmin = qinfo->tqi_cwmin; |
| 2083 | qi.tqi_cwmax = qinfo->tqi_cwmax; |
| 2084 | qi.tqi_burstTime = qinfo->tqi_burstTime; |
| 2085 | qi.tqi_readyTime = qinfo->tqi_readyTime; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2086 | |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 2087 | if (!ath9k_hw_set_txq_props(ah, qnum, &qi)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2088 | DPRINTF(sc, ATH_DBG_FATAL, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2089 | "Unable to update hardware queue %u!\n", qnum); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2090 | error = -EIO; |
| 2091 | } else { |
| 2092 | ath9k_hw_resettxqueue(ah, qnum); /* push to h/w */ |
| 2093 | } |
| 2094 | |
| 2095 | return error; |
| 2096 | } |
| 2097 | |
| 2098 | int ath_cabq_update(struct ath_softc *sc) |
| 2099 | { |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 2100 | struct ath9k_tx_queue_info qi; |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2101 | int qnum = sc->beacon.cabq->axq_qnum; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2102 | struct ath_beacon_config conf; |
| 2103 | |
Sujith | ea9880f | 2008-08-07 10:53:10 +0530 | [diff] [blame] | 2104 | ath9k_hw_get_txq_props(sc->sc_ah, qnum, &qi); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2105 | /* |
| 2106 | * Ensure the readytime % is within the bounds. |
| 2107 | */ |
| 2108 | if (sc->sc_config.cabqReadytime < ATH9K_READY_TIME_LO_BOUND) |
| 2109 | sc->sc_config.cabqReadytime = ATH9K_READY_TIME_LO_BOUND; |
| 2110 | else if (sc->sc_config.cabqReadytime > ATH9K_READY_TIME_HI_BOUND) |
| 2111 | sc->sc_config.cabqReadytime = ATH9K_READY_TIME_HI_BOUND; |
| 2112 | |
| 2113 | ath_get_beaconconfig(sc, ATH_IF_ID_ANY, &conf); |
| 2114 | qi.tqi_readyTime = |
| 2115 | (conf.beacon_interval * sc->sc_config.cabqReadytime) / 100; |
| 2116 | ath_txq_update(sc, qnum, &qi); |
| 2117 | |
| 2118 | return 0; |
| 2119 | } |
| 2120 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2121 | /* Deferred processing of transmit interrupt */ |
| 2122 | |
| 2123 | void ath_tx_tasklet(struct ath_softc *sc) |
| 2124 | { |
Sujith | 1fe1132 | 2008-08-26 08:11:06 +0530 | [diff] [blame] | 2125 | int i; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2126 | u32 qcumask = ((1 << ATH9K_NUM_TX_QUEUES) - 1); |
| 2127 | |
| 2128 | ath9k_hw_gettxintrtxqs(sc->sc_ah, &qcumask); |
| 2129 | |
| 2130 | /* |
| 2131 | * Process each active queue. |
| 2132 | */ |
| 2133 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) { |
| 2134 | if (ATH_TXQ_SETUP(sc, i) && (qcumask & (1 << i))) |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2135 | ath_tx_processq(sc, &sc->tx.txq[i]); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2136 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2137 | } |
| 2138 | |
| 2139 | void ath_tx_draintxq(struct ath_softc *sc, |
| 2140 | struct ath_txq *txq, bool retry_tx) |
| 2141 | { |
| 2142 | struct ath_buf *bf, *lastbf; |
| 2143 | struct list_head bf_head; |
| 2144 | |
| 2145 | INIT_LIST_HEAD(&bf_head); |
| 2146 | |
| 2147 | /* |
| 2148 | * NB: this assumes output has been stopped and |
| 2149 | * we do not need to block ath_tx_tasklet |
| 2150 | */ |
| 2151 | for (;;) { |
| 2152 | spin_lock_bh(&txq->axq_lock); |
| 2153 | |
| 2154 | if (list_empty(&txq->axq_q)) { |
| 2155 | txq->axq_link = NULL; |
| 2156 | txq->axq_linkbuf = NULL; |
| 2157 | spin_unlock_bh(&txq->axq_lock); |
| 2158 | break; |
| 2159 | } |
| 2160 | |
| 2161 | bf = list_first_entry(&txq->axq_q, struct ath_buf, list); |
| 2162 | |
| 2163 | if (bf->bf_status & ATH_BUFSTATUS_STALE) { |
| 2164 | list_del(&bf->list); |
| 2165 | spin_unlock_bh(&txq->axq_lock); |
| 2166 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2167 | spin_lock_bh(&sc->tx.txbuflock); |
| 2168 | list_add_tail(&bf->list, &sc->tx.txbuf); |
| 2169 | spin_unlock_bh(&sc->tx.txbuflock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2170 | continue; |
| 2171 | } |
| 2172 | |
| 2173 | lastbf = bf->bf_lastbf; |
| 2174 | if (!retry_tx) |
| 2175 | lastbf->bf_desc->ds_txstat.ts_flags = |
| 2176 | ATH9K_TX_SW_ABORTED; |
| 2177 | |
| 2178 | /* remove ath_buf's of the same mpdu from txq */ |
| 2179 | list_cut_position(&bf_head, &txq->axq_q, &lastbf->list); |
| 2180 | txq->axq_depth--; |
| 2181 | |
| 2182 | spin_unlock_bh(&txq->axq_lock); |
| 2183 | |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 2184 | if (bf_isampdu(bf)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2185 | ath_tx_complete_aggr_rifs(sc, txq, bf, &bf_head, 0); |
| 2186 | else |
| 2187 | ath_tx_complete_buf(sc, bf, &bf_head, 0, 0); |
| 2188 | } |
| 2189 | |
| 2190 | /* flush any pending frames if aggregation is enabled */ |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2191 | if (sc->sc_flags & SC_OP_TXAGGR) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2192 | if (!retry_tx) { |
| 2193 | spin_lock_bh(&txq->axq_lock); |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2194 | ath_txq_drain_pending_buffers(sc, txq); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2195 | spin_unlock_bh(&txq->axq_lock); |
| 2196 | } |
| 2197 | } |
| 2198 | } |
| 2199 | |
| 2200 | /* Drain the transmit queues and reclaim resources */ |
| 2201 | |
| 2202 | void ath_draintxq(struct ath_softc *sc, bool retry_tx) |
| 2203 | { |
| 2204 | /* stop beacon queue. The beacon will be freed when |
| 2205 | * we go to INIT state */ |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2206 | if (!(sc->sc_flags & SC_OP_INVALID)) { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2207 | (void) ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq); |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2208 | DPRINTF(sc, ATH_DBG_XMIT, "beacon queue %x\n", |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2209 | ath9k_hw_gettxbuf(sc->sc_ah, sc->beacon.beaconq)); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2210 | } |
| 2211 | |
| 2212 | ath_drain_txdataq(sc, retry_tx); |
| 2213 | } |
| 2214 | |
| 2215 | u32 ath_txq_depth(struct ath_softc *sc, int qnum) |
| 2216 | { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2217 | return sc->tx.txq[qnum].axq_depth; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2218 | } |
| 2219 | |
| 2220 | u32 ath_txq_aggr_depth(struct ath_softc *sc, int qnum) |
| 2221 | { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2222 | return sc->tx.txq[qnum].axq_aggr_depth; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2223 | } |
| 2224 | |
Sujith | ccc75c5 | 2008-10-29 10:18:14 +0530 | [diff] [blame] | 2225 | bool ath_tx_aggr_check(struct ath_softc *sc, struct ath_node *an, u8 tidno) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2226 | { |
| 2227 | struct ath_atx_tid *txtid; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2228 | |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2229 | if (!(sc->sc_flags & SC_OP_TXAGGR)) |
Sujith | ccc75c5 | 2008-10-29 10:18:14 +0530 | [diff] [blame] | 2230 | return false; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2231 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2232 | txtid = ATH_AN_2_TID(an, tidno); |
| 2233 | |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 2234 | if (!(txtid->state & AGGR_ADDBA_COMPLETE)) { |
| 2235 | if (!(txtid->state & AGGR_ADDBA_PROGRESS) && |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2236 | (txtid->addba_exchangeattempts < ADDBA_EXCHANGE_ATTEMPTS)) { |
| 2237 | txtid->addba_exchangeattempts++; |
Sujith | ccc75c5 | 2008-10-29 10:18:14 +0530 | [diff] [blame] | 2238 | return true; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2239 | } |
| 2240 | } |
| 2241 | |
Sujith | ccc75c5 | 2008-10-29 10:18:14 +0530 | [diff] [blame] | 2242 | return false; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2243 | } |
| 2244 | |
| 2245 | /* Start TX aggregation */ |
| 2246 | |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2247 | int ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta, |
| 2248 | u16 tid, u16 *ssn) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2249 | { |
| 2250 | struct ath_atx_tid *txtid; |
| 2251 | struct ath_node *an; |
| 2252 | |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2253 | an = (struct ath_node *)sta->drv_priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2254 | |
Sujith | 672840a | 2008-08-11 14:05:08 +0530 | [diff] [blame] | 2255 | if (sc->sc_flags & SC_OP_TXAGGR) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2256 | txtid = ATH_AN_2_TID(an, tid); |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 2257 | txtid->state |= AGGR_ADDBA_PROGRESS; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2258 | ath_tx_pause_tid(sc, txtid); |
| 2259 | } |
| 2260 | |
| 2261 | return 0; |
| 2262 | } |
| 2263 | |
| 2264 | /* Stop tx aggregation */ |
| 2265 | |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2266 | int ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2267 | { |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2268 | struct ath_node *an = (struct ath_node *)sta->drv_priv; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2269 | |
| 2270 | ath_tx_aggr_teardown(sc, an, tid); |
| 2271 | return 0; |
| 2272 | } |
| 2273 | |
Sujith | 8469cde | 2008-10-29 10:19:28 +0530 | [diff] [blame] | 2274 | /* Resume tx aggregation */ |
| 2275 | |
| 2276 | void ath_tx_aggr_resume(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid) |
| 2277 | { |
| 2278 | struct ath_atx_tid *txtid; |
| 2279 | struct ath_node *an; |
| 2280 | |
| 2281 | an = (struct ath_node *)sta->drv_priv; |
| 2282 | |
| 2283 | if (sc->sc_flags & SC_OP_TXAGGR) { |
| 2284 | txtid = ATH_AN_2_TID(an, tid); |
| 2285 | txtid->baw_size = |
| 2286 | IEEE80211_MIN_AMPDU_BUF << sta->ht_cap.ampdu_factor; |
| 2287 | txtid->state |= AGGR_ADDBA_COMPLETE; |
| 2288 | txtid->state &= ~AGGR_ADDBA_PROGRESS; |
| 2289 | ath_tx_resume_tid(sc, txtid); |
| 2290 | } |
| 2291 | } |
| 2292 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2293 | /* |
| 2294 | * Performs transmit side cleanup when TID changes from aggregated to |
| 2295 | * unaggregated. |
| 2296 | * - Pause the TID and mark cleanup in progress |
| 2297 | * - Discard all retry frames from the s/w queue. |
| 2298 | */ |
| 2299 | |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2300 | void ath_tx_aggr_teardown(struct ath_softc *sc, struct ath_node *an, u8 tid) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2301 | { |
| 2302 | struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2303 | struct ath_txq *txq = &sc->tx.txq[txtid->ac->qnum]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2304 | struct ath_buf *bf; |
| 2305 | struct list_head bf_head; |
| 2306 | INIT_LIST_HEAD(&bf_head); |
| 2307 | |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 2308 | if (txtid->state & AGGR_CLEANUP) /* cleanup is in progress */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2309 | return; |
| 2310 | |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 2311 | if (!(txtid->state & AGGR_ADDBA_COMPLETE)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2312 | txtid->addba_exchangeattempts = 0; |
| 2313 | return; |
| 2314 | } |
| 2315 | |
| 2316 | /* TID must be paused first */ |
| 2317 | ath_tx_pause_tid(sc, txtid); |
| 2318 | |
| 2319 | /* drop all software retried frames and mark this TID */ |
| 2320 | spin_lock_bh(&txq->axq_lock); |
| 2321 | while (!list_empty(&txtid->buf_q)) { |
| 2322 | bf = list_first_entry(&txtid->buf_q, struct ath_buf, list); |
Sujith | cd3d39a | 2008-08-11 14:03:34 +0530 | [diff] [blame] | 2323 | if (!bf_isretried(bf)) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2324 | /* |
| 2325 | * NB: it's based on the assumption that |
| 2326 | * software retried frame will always stay |
| 2327 | * at the head of software queue. |
| 2328 | */ |
| 2329 | break; |
| 2330 | } |
| 2331 | list_cut_position(&bf_head, |
| 2332 | &txtid->buf_q, &bf->bf_lastfrm->list); |
| 2333 | ath_tx_update_baw(sc, txtid, bf->bf_seqno); |
| 2334 | |
| 2335 | /* complete this sub-frame */ |
| 2336 | ath_tx_complete_buf(sc, bf, &bf_head, 0, 0); |
| 2337 | } |
| 2338 | |
| 2339 | if (txtid->baw_head != txtid->baw_tail) { |
| 2340 | spin_unlock_bh(&txq->axq_lock); |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 2341 | txtid->state |= AGGR_CLEANUP; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2342 | } else { |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 2343 | txtid->state &= ~AGGR_ADDBA_COMPLETE; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2344 | txtid->addba_exchangeattempts = 0; |
| 2345 | spin_unlock_bh(&txq->axq_lock); |
| 2346 | ath_tx_flush_tid(sc, txtid); |
| 2347 | } |
| 2348 | } |
| 2349 | |
| 2350 | /* |
| 2351 | * Tx scheduling logic |
| 2352 | * NB: must be called with txq lock held |
| 2353 | */ |
| 2354 | |
| 2355 | void ath_txq_schedule(struct ath_softc *sc, struct ath_txq *txq) |
| 2356 | { |
| 2357 | struct ath_atx_ac *ac; |
| 2358 | struct ath_atx_tid *tid; |
| 2359 | |
| 2360 | /* nothing to schedule */ |
| 2361 | if (list_empty(&txq->axq_acq)) |
| 2362 | return; |
| 2363 | /* |
| 2364 | * get the first node/ac pair on the queue |
| 2365 | */ |
| 2366 | ac = list_first_entry(&txq->axq_acq, struct ath_atx_ac, list); |
| 2367 | list_del(&ac->list); |
| 2368 | ac->sched = false; |
| 2369 | |
| 2370 | /* |
| 2371 | * process a single tid per destination |
| 2372 | */ |
| 2373 | do { |
| 2374 | /* nothing to schedule */ |
| 2375 | if (list_empty(&ac->tid_q)) |
| 2376 | return; |
| 2377 | |
| 2378 | tid = list_first_entry(&ac->tid_q, struct ath_atx_tid, list); |
| 2379 | list_del(&tid->list); |
| 2380 | tid->sched = false; |
| 2381 | |
| 2382 | if (tid->paused) /* check next tid to keep h/w busy */ |
| 2383 | continue; |
| 2384 | |
Sujith | 43453b3 | 2008-10-29 10:14:52 +0530 | [diff] [blame] | 2385 | if ((txq->axq_depth % 2) == 0) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2386 | ath_tx_sched_aggr(sc, txq, tid); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2387 | |
| 2388 | /* |
| 2389 | * add tid to round-robin queue if more frames |
| 2390 | * are pending for the tid |
| 2391 | */ |
| 2392 | if (!list_empty(&tid->buf_q)) |
| 2393 | ath_tx_queue_tid(txq, tid); |
| 2394 | |
| 2395 | /* only schedule one TID at a time */ |
| 2396 | break; |
| 2397 | } while (!list_empty(&ac->tid_q)); |
| 2398 | |
| 2399 | /* |
| 2400 | * schedule AC if more TIDs need processing |
| 2401 | */ |
| 2402 | if (!list_empty(&ac->tid_q)) { |
| 2403 | /* |
| 2404 | * add dest ac to txq if not already added |
| 2405 | */ |
| 2406 | if (!ac->sched) { |
| 2407 | ac->sched = true; |
| 2408 | list_add_tail(&ac->list, &txq->axq_acq); |
| 2409 | } |
| 2410 | } |
| 2411 | } |
| 2412 | |
| 2413 | /* Initialize per-node transmit state */ |
| 2414 | |
| 2415 | void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an) |
| 2416 | { |
Sujith | c517016 | 2008-10-29 10:13:59 +0530 | [diff] [blame] | 2417 | struct ath_atx_tid *tid; |
| 2418 | struct ath_atx_ac *ac; |
| 2419 | int tidno, acno; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2420 | |
Sujith | c517016 | 2008-10-29 10:13:59 +0530 | [diff] [blame] | 2421 | /* |
| 2422 | * Init per tid tx state |
| 2423 | */ |
Sujith | 8ee5afb | 2008-12-07 21:43:36 +0530 | [diff] [blame] | 2424 | for (tidno = 0, tid = &an->tid[tidno]; |
Sujith | c517016 | 2008-10-29 10:13:59 +0530 | [diff] [blame] | 2425 | tidno < WME_NUM_TID; |
| 2426 | tidno++, tid++) { |
| 2427 | tid->an = an; |
| 2428 | tid->tidno = tidno; |
| 2429 | tid->seq_start = tid->seq_next = 0; |
| 2430 | tid->baw_size = WME_MAX_BA; |
| 2431 | tid->baw_head = tid->baw_tail = 0; |
| 2432 | tid->sched = false; |
| 2433 | tid->paused = false; |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 2434 | tid->state &= ~AGGR_CLEANUP; |
Sujith | c517016 | 2008-10-29 10:13:59 +0530 | [diff] [blame] | 2435 | INIT_LIST_HEAD(&tid->buf_q); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2436 | |
Sujith | c517016 | 2008-10-29 10:13:59 +0530 | [diff] [blame] | 2437 | acno = TID_TO_WME_AC(tidno); |
Sujith | 8ee5afb | 2008-12-07 21:43:36 +0530 | [diff] [blame] | 2438 | tid->ac = &an->ac[acno]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2439 | |
Sujith | c517016 | 2008-10-29 10:13:59 +0530 | [diff] [blame] | 2440 | /* ADDBA state */ |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 2441 | tid->state &= ~AGGR_ADDBA_COMPLETE; |
| 2442 | tid->state &= ~AGGR_ADDBA_PROGRESS; |
| 2443 | tid->addba_exchangeattempts = 0; |
Sujith | c517016 | 2008-10-29 10:13:59 +0530 | [diff] [blame] | 2444 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2445 | |
Sujith | c517016 | 2008-10-29 10:13:59 +0530 | [diff] [blame] | 2446 | /* |
| 2447 | * Init per ac tx state |
| 2448 | */ |
Sujith | 8ee5afb | 2008-12-07 21:43:36 +0530 | [diff] [blame] | 2449 | for (acno = 0, ac = &an->ac[acno]; |
Sujith | c517016 | 2008-10-29 10:13:59 +0530 | [diff] [blame] | 2450 | acno < WME_NUM_AC; acno++, ac++) { |
| 2451 | ac->sched = false; |
| 2452 | INIT_LIST_HEAD(&ac->tid_q); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2453 | |
Sujith | c517016 | 2008-10-29 10:13:59 +0530 | [diff] [blame] | 2454 | switch (acno) { |
| 2455 | case WME_AC_BE: |
| 2456 | ac->qnum = ath_tx_get_qnum(sc, |
| 2457 | ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE); |
| 2458 | break; |
| 2459 | case WME_AC_BK: |
| 2460 | ac->qnum = ath_tx_get_qnum(sc, |
| 2461 | ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BK); |
| 2462 | break; |
| 2463 | case WME_AC_VI: |
| 2464 | ac->qnum = ath_tx_get_qnum(sc, |
| 2465 | ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VI); |
| 2466 | break; |
| 2467 | case WME_AC_VO: |
| 2468 | ac->qnum = ath_tx_get_qnum(sc, |
| 2469 | ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_VO); |
| 2470 | break; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2471 | } |
| 2472 | } |
| 2473 | } |
| 2474 | |
| 2475 | /* Cleanupthe pending buffers for the node. */ |
| 2476 | |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2477 | void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2478 | { |
| 2479 | int i; |
| 2480 | struct ath_atx_ac *ac, *ac_tmp; |
| 2481 | struct ath_atx_tid *tid, *tid_tmp; |
| 2482 | struct ath_txq *txq; |
| 2483 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) { |
| 2484 | if (ATH_TXQ_SETUP(sc, i)) { |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2485 | txq = &sc->tx.txq[i]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2486 | |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2487 | spin_lock(&txq->axq_lock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2488 | |
| 2489 | list_for_each_entry_safe(ac, |
| 2490 | ac_tmp, &txq->axq_acq, list) { |
| 2491 | tid = list_first_entry(&ac->tid_q, |
| 2492 | struct ath_atx_tid, list); |
| 2493 | if (tid && tid->an != an) |
| 2494 | continue; |
| 2495 | list_del(&ac->list); |
| 2496 | ac->sched = false; |
| 2497 | |
| 2498 | list_for_each_entry_safe(tid, |
| 2499 | tid_tmp, &ac->tid_q, list) { |
| 2500 | list_del(&tid->list); |
| 2501 | tid->sched = false; |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2502 | ath_tid_drain(sc, txq, tid); |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 2503 | tid->state &= ~AGGR_ADDBA_COMPLETE; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2504 | tid->addba_exchangeattempts = 0; |
Sujith | a37c2c7 | 2008-10-29 10:15:40 +0530 | [diff] [blame] | 2505 | tid->state &= ~AGGR_CLEANUP; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2506 | } |
| 2507 | } |
| 2508 | |
Sujith | b5aa9bf | 2008-10-29 10:13:31 +0530 | [diff] [blame] | 2509 | spin_unlock(&txq->axq_lock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 2510 | } |
| 2511 | } |
| 2512 | } |
| 2513 | |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 2514 | void ath_tx_cabq(struct ath_softc *sc, struct sk_buff *skb) |
| 2515 | { |
| 2516 | int hdrlen, padsize; |
| 2517 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 2518 | struct ath_tx_control txctl; |
| 2519 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2520 | memset(&txctl, 0, sizeof(struct ath_tx_control)); |
| 2521 | |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 2522 | /* |
| 2523 | * As a temporary workaround, assign seq# here; this will likely need |
| 2524 | * to be cleaned up to work better with Beacon transmission and virtual |
| 2525 | * BSSes. |
| 2526 | */ |
| 2527 | if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) { |
| 2528 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 2529 | if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT) |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2530 | sc->tx.seq_no += 0x10; |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 2531 | hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2532 | hdr->seq_ctrl |= cpu_to_le16(sc->tx.seq_no); |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 2533 | } |
| 2534 | |
| 2535 | /* Add the padding after the header if this is not already done */ |
| 2536 | hdrlen = ieee80211_get_hdrlen_from_skb(skb); |
| 2537 | if (hdrlen & 3) { |
| 2538 | padsize = hdrlen % 4; |
| 2539 | if (skb_headroom(skb) < padsize) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2540 | DPRINTF(sc, ATH_DBG_XMIT, "TX CABQ padding failed\n"); |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 2541 | dev_kfree_skb_any(skb); |
| 2542 | return; |
| 2543 | } |
| 2544 | skb_push(skb, padsize); |
| 2545 | memmove(skb->data, skb->data + padsize, hdrlen); |
| 2546 | } |
| 2547 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 2548 | txctl.txq = sc->beacon.cabq; |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2549 | |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2550 | DPRINTF(sc, ATH_DBG_XMIT, "transmitting CABQ packet, skb: %p\n", skb); |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 2551 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2552 | if (ath_tx_start(sc, skb, &txctl) != 0) { |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 2553 | DPRINTF(sc, ATH_DBG_XMIT, "CABQ TX failed\n"); |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2554 | goto exit; |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 2555 | } |
Jouni Malinen | e022edb | 2008-08-22 17:31:33 +0300 | [diff] [blame] | 2556 | |
Sujith | 528f0c6 | 2008-10-29 10:14:26 +0530 | [diff] [blame] | 2557 | return; |
| 2558 | exit: |
| 2559 | dev_kfree_skb_any(skb); |
| 2560 | } |