iwlagn: remove code duplication
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / iwlwifi / iwl-agn-tx.c
blobdb3ec7aaf944f423bb6d8d4b3d627b07ad0400e1
1 /******************************************************************************
3 * GPL LICENSE SUMMARY
5 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
19 * USA
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28 *****************************************************************************/
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/sched.h>
35 #include "iwl-dev.h"
36 #include "iwl-core.h"
37 #include "iwl-sta.h"
38 #include "iwl-io.h"
39 #include "iwl-helpers.h"
40 #include "iwl-agn-hw.h"
41 #include "iwl-agn.h"
44 * mac80211 queues, ACs, hardware queues, FIFOs.
46 * Cf. http://wireless.kernel.org/en/developers/Documentation/mac80211/queues
48 * Mac80211 uses the following numbers, which we get as from it
49 * by way of skb_get_queue_mapping(skb):
51 * VO 0
52 * VI 1
53 * BE 2
54 * BK 3
57 * Regular (not A-MPDU) frames are put into hardware queues corresponding
58 * to the FIFOs, see comments in iwl-prph.h. Aggregated frames get their
59 * own queue per aggregation session (RA/TID combination), such queues are
60 * set up to map into FIFOs too, for which we need an AC->FIFO mapping. In
61 * order to map frames to the right queue, we also need an AC->hw queue
62 * mapping. This is implemented here.
64 * Due to the way hw queues are set up (by the hw specific modules like
65 * iwl-4965.c, iwl-5000.c etc.), the AC->hw queue mapping is the identity
66 * mapping.
69 static const u8 tid_to_ac[] = {
70 IEEE80211_AC_BE,
71 IEEE80211_AC_BK,
72 IEEE80211_AC_BK,
73 IEEE80211_AC_BE,
74 IEEE80211_AC_VI,
75 IEEE80211_AC_VI,
76 IEEE80211_AC_VO,
77 IEEE80211_AC_VO
80 static inline int get_ac_from_tid(u16 tid)
82 if (likely(tid < ARRAY_SIZE(tid_to_ac)))
83 return tid_to_ac[tid];
85 /* no support for TIDs 8-15 yet */
86 return -EINVAL;
89 static inline int get_fifo_from_tid(struct iwl_rxon_context *ctx, u16 tid)
91 if (likely(tid < ARRAY_SIZE(tid_to_ac)))
92 return ctx->ac_to_fifo[tid_to_ac[tid]];
94 /* no support for TIDs 8-15 yet */
95 return -EINVAL;
98 /**
99 * iwlagn_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
101 static void iwlagn_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
102 struct iwl_tx_queue *txq,
103 u16 byte_cnt)
105 struct iwlagn_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr;
106 int write_ptr = txq->q.write_ptr;
107 int txq_id = txq->q.id;
108 u8 sec_ctl = 0;
109 u8 sta_id = 0;
110 u16 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
111 __le16 bc_ent;
113 WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX);
115 sta_id = txq->cmd[txq->q.write_ptr]->cmd.tx.sta_id;
116 sec_ctl = txq->cmd[txq->q.write_ptr]->cmd.tx.sec_ctl;
118 switch (sec_ctl & TX_CMD_SEC_MSK) {
119 case TX_CMD_SEC_CCM:
120 len += CCMP_MIC_LEN;
121 break;
122 case TX_CMD_SEC_TKIP:
123 len += TKIP_ICV_LEN;
124 break;
125 case TX_CMD_SEC_WEP:
126 len += WEP_IV_LEN + WEP_ICV_LEN;
127 break;
130 bc_ent = cpu_to_le16((len & 0xFFF) | (sta_id << 12));
132 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
134 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
135 scd_bc_tbl[txq_id].
136 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
139 static void iwlagn_txq_inval_byte_cnt_tbl(struct iwl_priv *priv,
140 struct iwl_tx_queue *txq)
142 struct iwlagn_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr;
143 int txq_id = txq->q.id;
144 int read_ptr = txq->q.read_ptr;
145 u8 sta_id = 0;
146 __le16 bc_ent;
148 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
150 if (txq_id != priv->cmd_queue)
151 sta_id = txq->cmd[read_ptr]->cmd.tx.sta_id;
153 bc_ent = cpu_to_le16(1 | (sta_id << 12));
154 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
156 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
157 scd_bc_tbl[txq_id].
158 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
161 static int iwlagn_tx_queue_set_q2ratid(struct iwl_priv *priv, u16 ra_tid,
162 u16 txq_id)
164 u32 tbl_dw_addr;
165 u32 tbl_dw;
166 u16 scd_q2ratid;
168 scd_q2ratid = ra_tid & IWL_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
170 tbl_dw_addr = priv->scd_base_addr +
171 IWLAGN_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
173 tbl_dw = iwl_read_targ_mem(priv, tbl_dw_addr);
175 if (txq_id & 0x1)
176 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
177 else
178 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
180 iwl_write_targ_mem(priv, tbl_dw_addr, tbl_dw);
182 return 0;
185 static void iwlagn_tx_queue_stop_scheduler(struct iwl_priv *priv, u16 txq_id)
187 /* Simply stop the queue, but don't change any configuration;
188 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
189 iwl_write_prph(priv,
190 IWLAGN_SCD_QUEUE_STATUS_BITS(txq_id),
191 (0 << IWLAGN_SCD_QUEUE_STTS_REG_POS_ACTIVE)|
192 (1 << IWLAGN_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
195 void iwlagn_set_wr_ptrs(struct iwl_priv *priv,
196 int txq_id, u32 index)
198 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
199 (index & 0xff) | (txq_id << 8));
200 iwl_write_prph(priv, IWLAGN_SCD_QUEUE_RDPTR(txq_id), index);
203 void iwlagn_tx_queue_set_status(struct iwl_priv *priv,
204 struct iwl_tx_queue *txq,
205 int tx_fifo_id, int scd_retry)
207 int txq_id = txq->q.id;
208 int active = test_bit(txq_id, &priv->txq_ctx_active_msk) ? 1 : 0;
210 iwl_write_prph(priv, IWLAGN_SCD_QUEUE_STATUS_BITS(txq_id),
211 (active << IWLAGN_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
212 (tx_fifo_id << IWLAGN_SCD_QUEUE_STTS_REG_POS_TXF) |
213 (1 << IWLAGN_SCD_QUEUE_STTS_REG_POS_WSL) |
214 IWLAGN_SCD_QUEUE_STTS_REG_MSK);
216 txq->sched_retry = scd_retry;
218 IWL_DEBUG_INFO(priv, "%s %s Queue %d on FIFO %d\n",
219 active ? "Activate" : "Deactivate",
220 scd_retry ? "BA" : "AC/CMD", txq_id, tx_fifo_id);
223 static int iwlagn_txq_agg_enable(struct iwl_priv *priv, int txq_id, int sta_id, int tid)
225 if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) ||
226 (IWLAGN_FIRST_AMPDU_QUEUE +
227 priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
228 IWL_WARN(priv,
229 "queue number out of range: %d, must be %d to %d\n",
230 txq_id, IWLAGN_FIRST_AMPDU_QUEUE,
231 IWLAGN_FIRST_AMPDU_QUEUE +
232 priv->cfg->base_params->num_of_ampdu_queues - 1);
233 return -EINVAL;
236 /* Modify device's station table to Tx this TID */
237 return iwl_sta_tx_modify_enable_tid(priv, sta_id, tid);
240 void iwlagn_txq_agg_queue_setup(struct iwl_priv *priv,
241 struct ieee80211_sta *sta,
242 int tid, int frame_limit)
244 int sta_id, tx_fifo, txq_id, ssn_idx;
245 u16 ra_tid;
246 unsigned long flags;
247 struct iwl_tid_data *tid_data;
249 sta_id = iwl_sta_id(sta);
250 if (WARN_ON(sta_id == IWL_INVALID_STATION))
251 return;
252 if (WARN_ON(tid >= MAX_TID_COUNT))
253 return;
255 spin_lock_irqsave(&priv->sta_lock, flags);
256 tid_data = &priv->stations[sta_id].tid[tid];
257 ssn_idx = SEQ_TO_SN(tid_data->seq_number);
258 txq_id = tid_data->agg.txq_id;
259 tx_fifo = tid_data->agg.tx_fifo;
260 spin_unlock_irqrestore(&priv->sta_lock, flags);
262 ra_tid = BUILD_RAxTID(sta_id, tid);
264 spin_lock_irqsave(&priv->lock, flags);
266 /* Stop this Tx queue before configuring it */
267 iwlagn_tx_queue_stop_scheduler(priv, txq_id);
269 /* Map receiver-address / traffic-ID to this queue */
270 iwlagn_tx_queue_set_q2ratid(priv, ra_tid, txq_id);
272 /* Set this queue as a chain-building queue */
273 iwl_set_bits_prph(priv, IWLAGN_SCD_QUEUECHAIN_SEL, (1<<txq_id));
275 /* enable aggregations for the queue */
276 iwl_set_bits_prph(priv, IWLAGN_SCD_AGGR_SEL, (1<<txq_id));
278 /* Place first TFD at index corresponding to start sequence number.
279 * Assumes that ssn_idx is valid (!= 0xFFF) */
280 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
281 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
282 iwlagn_set_wr_ptrs(priv, txq_id, ssn_idx);
284 /* Set up Tx window size and frame limit for this queue */
285 iwl_write_targ_mem(priv, priv->scd_base_addr +
286 IWLAGN_SCD_CONTEXT_QUEUE_OFFSET(txq_id) +
287 sizeof(u32),
288 ((frame_limit <<
289 IWLAGN_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
290 IWLAGN_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
291 ((frame_limit <<
292 IWLAGN_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
293 IWLAGN_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
295 iwl_set_bits_prph(priv, IWLAGN_SCD_INTERRUPT_MASK, (1 << txq_id));
297 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
298 iwlagn_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 1);
300 spin_unlock_irqrestore(&priv->lock, flags);
303 static int iwlagn_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
304 u16 ssn_idx, u8 tx_fifo)
306 if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) ||
307 (IWLAGN_FIRST_AMPDU_QUEUE +
308 priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
309 IWL_ERR(priv,
310 "queue number out of range: %d, must be %d to %d\n",
311 txq_id, IWLAGN_FIRST_AMPDU_QUEUE,
312 IWLAGN_FIRST_AMPDU_QUEUE +
313 priv->cfg->base_params->num_of_ampdu_queues - 1);
314 return -EINVAL;
317 iwlagn_tx_queue_stop_scheduler(priv, txq_id);
319 iwl_clear_bits_prph(priv, IWLAGN_SCD_AGGR_SEL, (1 << txq_id));
321 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
322 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
323 /* supposes that ssn_idx is valid (!= 0xFFF) */
324 iwlagn_set_wr_ptrs(priv, txq_id, ssn_idx);
326 iwl_clear_bits_prph(priv, IWLAGN_SCD_INTERRUPT_MASK, (1 << txq_id));
327 iwl_txq_ctx_deactivate(priv, txq_id);
328 iwlagn_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 0);
330 return 0;
334 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
335 * must be called under priv->lock and mac access
337 void iwlagn_txq_set_sched(struct iwl_priv *priv, u32 mask)
339 iwl_write_prph(priv, IWLAGN_SCD_TXFACT, mask);
343 * handle build REPLY_TX command notification.
345 static void iwlagn_tx_cmd_build_basic(struct iwl_priv *priv,
346 struct sk_buff *skb,
347 struct iwl_tx_cmd *tx_cmd,
348 struct ieee80211_tx_info *info,
349 struct ieee80211_hdr *hdr,
350 u8 std_id)
352 __le16 fc = hdr->frame_control;
353 __le32 tx_flags = tx_cmd->tx_flags;
355 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
356 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
357 tx_flags |= TX_CMD_FLG_ACK_MSK;
358 if (ieee80211_is_mgmt(fc))
359 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
360 if (ieee80211_is_probe_resp(fc) &&
361 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
362 tx_flags |= TX_CMD_FLG_TSF_MSK;
363 } else {
364 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
365 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
368 if (ieee80211_is_back_req(fc))
369 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
370 else if (info->band == IEEE80211_BAND_2GHZ &&
371 priv->cfg->bt_params &&
372 priv->cfg->bt_params->advanced_bt_coexist &&
373 (ieee80211_is_auth(fc) || ieee80211_is_assoc_req(fc) ||
374 ieee80211_is_reassoc_req(fc) ||
375 skb->protocol == cpu_to_be16(ETH_P_PAE)))
376 tx_flags |= TX_CMD_FLG_IGNORE_BT;
379 tx_cmd->sta_id = std_id;
380 if (ieee80211_has_morefrags(fc))
381 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
383 if (ieee80211_is_data_qos(fc)) {
384 u8 *qc = ieee80211_get_qos_ctl(hdr);
385 tx_cmd->tid_tspec = qc[0] & 0xf;
386 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
387 } else {
388 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
391 priv->cfg->ops->utils->tx_cmd_protection(priv, info, fc, &tx_flags);
393 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
394 if (ieee80211_is_mgmt(fc)) {
395 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
396 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
397 else
398 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
399 } else {
400 tx_cmd->timeout.pm_frame_timeout = 0;
403 tx_cmd->driver_txop = 0;
404 tx_cmd->tx_flags = tx_flags;
405 tx_cmd->next_frame_len = 0;
408 #define RTS_DFAULT_RETRY_LIMIT 60
410 static void iwlagn_tx_cmd_build_rate(struct iwl_priv *priv,
411 struct iwl_tx_cmd *tx_cmd,
412 struct ieee80211_tx_info *info,
413 __le16 fc)
415 u32 rate_flags;
416 int rate_idx;
417 u8 rts_retry_limit;
418 u8 data_retry_limit;
419 u8 rate_plcp;
421 /* Set retry limit on DATA packets and Probe Responses*/
422 if (ieee80211_is_probe_resp(fc))
423 data_retry_limit = 3;
424 else
425 data_retry_limit = IWLAGN_DEFAULT_TX_RETRY;
426 tx_cmd->data_retry_limit = data_retry_limit;
428 /* Set retry limit on RTS packets */
429 rts_retry_limit = RTS_DFAULT_RETRY_LIMIT;
430 if (data_retry_limit < rts_retry_limit)
431 rts_retry_limit = data_retry_limit;
432 tx_cmd->rts_retry_limit = rts_retry_limit;
434 /* DATA packets will use the uCode station table for rate/antenna
435 * selection */
436 if (ieee80211_is_data(fc)) {
437 tx_cmd->initial_rate_index = 0;
438 tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
439 return;
443 * If the current TX rate stored in mac80211 has the MCS bit set, it's
444 * not really a TX rate. Thus, we use the lowest supported rate for
445 * this band. Also use the lowest supported rate if the stored rate
446 * index is invalid.
448 rate_idx = info->control.rates[0].idx;
449 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS ||
450 (rate_idx < 0) || (rate_idx > IWL_RATE_COUNT_LEGACY))
451 rate_idx = rate_lowest_index(&priv->bands[info->band],
452 info->control.sta);
453 /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
454 if (info->band == IEEE80211_BAND_5GHZ)
455 rate_idx += IWL_FIRST_OFDM_RATE;
456 /* Get PLCP rate for tx_cmd->rate_n_flags */
457 rate_plcp = iwl_rates[rate_idx].plcp;
458 /* Zero out flags for this packet */
459 rate_flags = 0;
461 /* Set CCK flag as needed */
462 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
463 rate_flags |= RATE_MCS_CCK_MSK;
465 /* Set up antennas */
466 if (priv->cfg->bt_params &&
467 priv->cfg->bt_params->advanced_bt_coexist &&
468 priv->bt_full_concurrent) {
469 /* operated as 1x1 in full concurrency mode */
470 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
471 first_antenna(priv->hw_params.valid_tx_ant));
472 } else
473 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
474 priv->hw_params.valid_tx_ant);
475 rate_flags |= iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
477 /* Set the rate in the TX cmd */
478 tx_cmd->rate_n_flags = iwl_hw_set_rate_n_flags(rate_plcp, rate_flags);
481 static void iwlagn_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
482 struct ieee80211_tx_info *info,
483 struct iwl_tx_cmd *tx_cmd,
484 struct sk_buff *skb_frag,
485 int sta_id)
487 struct ieee80211_key_conf *keyconf = info->control.hw_key;
489 switch (keyconf->cipher) {
490 case WLAN_CIPHER_SUITE_CCMP:
491 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
492 memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
493 if (info->flags & IEEE80211_TX_CTL_AMPDU)
494 tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
495 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
496 break;
498 case WLAN_CIPHER_SUITE_TKIP:
499 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
500 ieee80211_get_tkip_p2k(keyconf, skb_frag, tx_cmd->key);
501 IWL_DEBUG_TX(priv, "tx_cmd with tkip hwcrypto\n");
502 break;
504 case WLAN_CIPHER_SUITE_WEP104:
505 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
506 /* fall through */
507 case WLAN_CIPHER_SUITE_WEP40:
508 tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP |
509 (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
511 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
513 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
514 "with key %d\n", keyconf->keyidx);
515 break;
517 default:
518 IWL_ERR(priv, "Unknown encode cipher %x\n", keyconf->cipher);
519 break;
524 * start REPLY_TX command process
526 int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
528 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
529 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
530 struct ieee80211_sta *sta = info->control.sta;
531 struct iwl_station_priv *sta_priv = NULL;
532 struct iwl_tx_queue *txq;
533 struct iwl_queue *q;
534 struct iwl_device_cmd *out_cmd;
535 struct iwl_cmd_meta *out_meta;
536 struct iwl_tx_cmd *tx_cmd;
537 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
538 int txq_id;
539 dma_addr_t phys_addr = 0;
540 dma_addr_t txcmd_phys;
541 dma_addr_t scratch_phys;
542 u16 len, firstlen, secondlen;
543 u16 seq_number = 0;
544 __le16 fc;
545 u8 hdr_len;
546 u8 sta_id;
547 u8 wait_write_ptr = 0;
548 u8 tid = 0;
549 u8 *qc = NULL;
550 unsigned long flags;
551 bool is_agg = false;
554 * If the frame needs to go out off-channel, then
555 * we'll have put the PAN context to that channel,
556 * so make the frame go out there.
558 if (info->flags & IEEE80211_TX_CTL_TX_OFFCHAN)
559 ctx = &priv->contexts[IWL_RXON_CTX_PAN];
560 else if (info->control.vif)
561 ctx = iwl_rxon_ctx_from_vif(info->control.vif);
563 spin_lock_irqsave(&priv->lock, flags);
564 if (iwl_is_rfkill(priv)) {
565 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
566 goto drop_unlock_priv;
569 fc = hdr->frame_control;
571 #ifdef CONFIG_IWLWIFI_DEBUG
572 if (ieee80211_is_auth(fc))
573 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
574 else if (ieee80211_is_assoc_req(fc))
575 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
576 else if (ieee80211_is_reassoc_req(fc))
577 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
578 #endif
580 hdr_len = ieee80211_hdrlen(fc);
582 /* For management frames use broadcast id to do not break aggregation */
583 if (!ieee80211_is_data(fc))
584 sta_id = ctx->bcast_sta_id;
585 else {
586 /* Find index into station table for destination station */
587 sta_id = iwl_sta_id_or_broadcast(priv, ctx, info->control.sta);
588 if (sta_id == IWL_INVALID_STATION) {
589 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
590 hdr->addr1);
591 goto drop_unlock_priv;
595 IWL_DEBUG_TX(priv, "station Id %d\n", sta_id);
597 if (sta)
598 sta_priv = (void *)sta->drv_priv;
600 if (sta_priv && sta_priv->asleep &&
601 (info->flags & IEEE80211_TX_CTL_PSPOLL_RESPONSE)) {
603 * This sends an asynchronous command to the device,
604 * but we can rely on it being processed before the
605 * next frame is processed -- and the next frame to
606 * this station is the one that will consume this
607 * counter.
608 * For now set the counter to just 1 since we do not
609 * support uAPSD yet.
611 iwl_sta_modify_sleep_tx_count(priv, sta_id, 1);
615 * Send this frame after DTIM -- there's a special queue
616 * reserved for this for contexts that support AP mode.
618 if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
619 txq_id = ctx->mcast_queue;
621 * The microcode will clear the more data
622 * bit in the last frame it transmits.
624 hdr->frame_control |=
625 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
626 } else
627 txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)];
629 /* irqs already disabled/saved above when locking priv->lock */
630 spin_lock(&priv->sta_lock);
632 if (ieee80211_is_data_qos(fc)) {
633 qc = ieee80211_get_qos_ctl(hdr);
634 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
636 if (WARN_ON_ONCE(tid >= MAX_TID_COUNT))
637 goto drop_unlock_sta;
639 seq_number = priv->stations[sta_id].tid[tid].seq_number;
640 seq_number &= IEEE80211_SCTL_SEQ;
641 hdr->seq_ctrl = hdr->seq_ctrl &
642 cpu_to_le16(IEEE80211_SCTL_FRAG);
643 hdr->seq_ctrl |= cpu_to_le16(seq_number);
644 seq_number += 0x10;
645 /* aggregation is on for this <sta,tid> */
646 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
647 priv->stations[sta_id].tid[tid].agg.state == IWL_AGG_ON) {
648 txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
649 is_agg = true;
653 txq = &priv->txq[txq_id];
654 q = &txq->q;
656 if (unlikely(iwl_queue_space(q) < q->high_mark))
657 goto drop_unlock_sta;
659 /* Set up driver data for this TFD */
660 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
661 txq->txb[q->write_ptr].skb = skb;
662 txq->txb[q->write_ptr].ctx = ctx;
664 /* Set up first empty entry in queue's array of Tx/cmd buffers */
665 out_cmd = txq->cmd[q->write_ptr];
666 out_meta = &txq->meta[q->write_ptr];
667 tx_cmd = &out_cmd->cmd.tx;
668 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
669 memset(tx_cmd, 0, sizeof(struct iwl_tx_cmd));
672 * Set up the Tx-command (not MAC!) header.
673 * Store the chosen Tx queue and TFD index within the sequence field;
674 * after Tx, uCode's Tx response will return this value so driver can
675 * locate the frame within the tx queue and do post-tx processing.
677 out_cmd->hdr.cmd = REPLY_TX;
678 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
679 INDEX_TO_SEQ(q->write_ptr)));
681 /* Copy MAC header from skb into command buffer */
682 memcpy(tx_cmd->hdr, hdr, hdr_len);
685 /* Total # bytes to be transmitted */
686 len = (u16)skb->len;
687 tx_cmd->len = cpu_to_le16(len);
689 if (info->control.hw_key)
690 iwlagn_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id);
692 /* TODO need this for burst mode later on */
693 iwlagn_tx_cmd_build_basic(priv, skb, tx_cmd, info, hdr, sta_id);
694 iwl_dbg_log_tx_data_frame(priv, len, hdr);
696 iwlagn_tx_cmd_build_rate(priv, tx_cmd, info, fc);
698 iwl_update_stats(priv, true, fc, len);
700 * Use the first empty entry in this queue's command buffer array
701 * to contain the Tx command and MAC header concatenated together
702 * (payload data will be in another buffer).
703 * Size of this varies, due to varying MAC header length.
704 * If end is not dword aligned, we'll have 2 extra bytes at the end
705 * of the MAC header (device reads on dword boundaries).
706 * We'll tell device about this padding later.
708 len = sizeof(struct iwl_tx_cmd) +
709 sizeof(struct iwl_cmd_header) + hdr_len;
710 firstlen = (len + 3) & ~3;
712 /* Tell NIC about any 2-byte padding after MAC header */
713 if (firstlen != len)
714 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
716 /* Physical address of this Tx command's header (not MAC header!),
717 * within command buffer array. */
718 txcmd_phys = dma_map_single(priv->bus.dev,
719 &out_cmd->hdr, firstlen,
720 DMA_BIDIRECTIONAL);
721 if (unlikely(dma_mapping_error(priv->bus.dev, txcmd_phys)))
722 goto drop_unlock_sta;
723 dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
724 dma_unmap_len_set(out_meta, len, firstlen);
726 if (!ieee80211_has_morefrags(hdr->frame_control)) {
727 txq->need_update = 1;
728 } else {
729 wait_write_ptr = 1;
730 txq->need_update = 0;
733 /* Set up TFD's 2nd entry to point directly to remainder of skb,
734 * if any (802.11 null frames have no payload). */
735 secondlen = skb->len - hdr_len;
736 if (secondlen > 0) {
737 phys_addr = dma_map_single(priv->bus.dev, skb->data + hdr_len,
738 secondlen, DMA_TO_DEVICE);
739 if (unlikely(dma_mapping_error(priv->bus.dev, phys_addr))) {
740 dma_unmap_single(priv->bus.dev,
741 dma_unmap_addr(out_meta, mapping),
742 dma_unmap_len(out_meta, len),
743 DMA_BIDIRECTIONAL);
744 goto drop_unlock_sta;
748 if (ieee80211_is_data_qos(fc)) {
749 priv->stations[sta_id].tid[tid].tfds_in_queue++;
750 if (!ieee80211_has_morefrags(fc))
751 priv->stations[sta_id].tid[tid].seq_number = seq_number;
754 spin_unlock(&priv->sta_lock);
756 /* Attach buffers to TFD */
757 iwlagn_txq_attach_buf_to_tfd(priv, txq, txcmd_phys, firstlen, 1);
758 if (secondlen > 0)
759 iwlagn_txq_attach_buf_to_tfd(priv, txq, phys_addr,
760 secondlen, 0);
762 scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
763 offsetof(struct iwl_tx_cmd, scratch);
765 /* take back ownership of DMA buffer to enable update */
766 dma_sync_single_for_cpu(priv->bus.dev, txcmd_phys, firstlen,
767 DMA_BIDIRECTIONAL);
768 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
769 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
771 IWL_DEBUG_TX(priv, "sequence nr = 0X%x\n",
772 le16_to_cpu(out_cmd->hdr.sequence));
773 IWL_DEBUG_TX(priv, "tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
774 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
775 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
777 /* Set up entry for this TFD in Tx byte-count array */
778 if (info->flags & IEEE80211_TX_CTL_AMPDU)
779 iwlagn_txq_update_byte_cnt_tbl(priv, txq,
780 le16_to_cpu(tx_cmd->len));
782 dma_sync_single_for_device(priv->bus.dev, txcmd_phys, firstlen,
783 DMA_BIDIRECTIONAL);
785 trace_iwlwifi_dev_tx(priv,
786 &((struct iwl_tfd *)txq->tfds)[txq->q.write_ptr],
787 sizeof(struct iwl_tfd),
788 &out_cmd->hdr, firstlen,
789 skb->data + hdr_len, secondlen);
791 /* Tell device the write index *just past* this latest filled TFD */
792 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
793 iwl_txq_update_write_ptr(priv, txq);
794 spin_unlock_irqrestore(&priv->lock, flags);
797 * At this point the frame is "transmitted" successfully
798 * and we will get a TX status notification eventually,
799 * regardless of the value of ret. "ret" only indicates
800 * whether or not we should update the write pointer.
804 * Avoid atomic ops if it isn't an associated client.
805 * Also, if this is a packet for aggregation, don't
806 * increase the counter because the ucode will stop
807 * aggregation queues when their respective station
808 * goes to sleep.
810 if (sta_priv && sta_priv->client && !is_agg)
811 atomic_inc(&sta_priv->pending_frames);
813 if ((iwl_queue_space(q) < q->high_mark) && priv->mac80211_registered) {
814 if (wait_write_ptr) {
815 spin_lock_irqsave(&priv->lock, flags);
816 txq->need_update = 1;
817 iwl_txq_update_write_ptr(priv, txq);
818 spin_unlock_irqrestore(&priv->lock, flags);
819 } else {
820 iwl_stop_queue(priv, txq);
824 return 0;
826 drop_unlock_sta:
827 spin_unlock(&priv->sta_lock);
828 drop_unlock_priv:
829 spin_unlock_irqrestore(&priv->lock, flags);
830 return -1;
834 * Find first available (lowest unused) Tx Queue, mark it "active".
835 * Called only when finding queue for aggregation.
836 * Should never return anything < 7, because they should already
837 * be in use as EDCA AC (0-3), Command (4), reserved (5, 6)
839 static int iwlagn_txq_ctx_activate_free(struct iwl_priv *priv)
841 int txq_id;
843 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
844 if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk))
845 return txq_id;
846 return -1;
849 int iwlagn_tx_agg_start(struct iwl_priv *priv, struct ieee80211_vif *vif,
850 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
852 int sta_id;
853 int tx_fifo;
854 int txq_id;
855 int ret;
856 unsigned long flags;
857 struct iwl_tid_data *tid_data;
859 tx_fifo = get_fifo_from_tid(iwl_rxon_ctx_from_vif(vif), tid);
860 if (unlikely(tx_fifo < 0))
861 return tx_fifo;
863 IWL_DEBUG_HT(priv, "TX AGG request on ra = %pM tid = %d\n",
864 sta->addr, tid);
866 sta_id = iwl_sta_id(sta);
867 if (sta_id == IWL_INVALID_STATION) {
868 IWL_ERR(priv, "Start AGG on invalid station\n");
869 return -ENXIO;
871 if (unlikely(tid >= MAX_TID_COUNT))
872 return -EINVAL;
874 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) {
875 IWL_ERR(priv, "Start AGG when state is not IWL_AGG_OFF !\n");
876 return -ENXIO;
879 txq_id = iwlagn_txq_ctx_activate_free(priv);
880 if (txq_id == -1) {
881 IWL_ERR(priv, "No free aggregation queue available\n");
882 return -ENXIO;
885 spin_lock_irqsave(&priv->sta_lock, flags);
886 tid_data = &priv->stations[sta_id].tid[tid];
887 *ssn = SEQ_TO_SN(tid_data->seq_number);
888 tid_data->agg.txq_id = txq_id;
889 tid_data->agg.tx_fifo = tx_fifo;
890 iwl_set_swq_id(&priv->txq[txq_id], get_ac_from_tid(tid), txq_id);
891 spin_unlock_irqrestore(&priv->sta_lock, flags);
893 ret = iwlagn_txq_agg_enable(priv, txq_id, sta_id, tid);
894 if (ret)
895 return ret;
897 spin_lock_irqsave(&priv->sta_lock, flags);
898 tid_data = &priv->stations[sta_id].tid[tid];
899 if (tid_data->tfds_in_queue == 0) {
900 IWL_DEBUG_HT(priv, "HW queue is empty\n");
901 tid_data->agg.state = IWL_AGG_ON;
902 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
903 } else {
904 IWL_DEBUG_HT(priv, "HW queue is NOT empty: %d packets in HW queue\n",
905 tid_data->tfds_in_queue);
906 tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA;
908 spin_unlock_irqrestore(&priv->sta_lock, flags);
909 return ret;
912 int iwlagn_tx_agg_stop(struct iwl_priv *priv, struct ieee80211_vif *vif,
913 struct ieee80211_sta *sta, u16 tid)
915 int tx_fifo_id, txq_id, sta_id, ssn;
916 struct iwl_tid_data *tid_data;
917 int write_ptr, read_ptr;
918 unsigned long flags;
920 tx_fifo_id = get_fifo_from_tid(iwl_rxon_ctx_from_vif(vif), tid);
921 if (unlikely(tx_fifo_id < 0))
922 return tx_fifo_id;
924 sta_id = iwl_sta_id(sta);
926 if (sta_id == IWL_INVALID_STATION) {
927 IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid);
928 return -ENXIO;
931 spin_lock_irqsave(&priv->sta_lock, flags);
933 tid_data = &priv->stations[sta_id].tid[tid];
934 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
935 txq_id = tid_data->agg.txq_id;
937 switch (priv->stations[sta_id].tid[tid].agg.state) {
938 case IWL_EMPTYING_HW_QUEUE_ADDBA:
940 * This can happen if the peer stops aggregation
941 * again before we've had a chance to drain the
942 * queue we selected previously, i.e. before the
943 * session was really started completely.
945 IWL_DEBUG_HT(priv, "AGG stop before setup done\n");
946 goto turn_off;
947 case IWL_AGG_ON:
948 break;
949 default:
950 IWL_WARN(priv, "Stopping AGG while state not ON or starting\n");
953 write_ptr = priv->txq[txq_id].q.write_ptr;
954 read_ptr = priv->txq[txq_id].q.read_ptr;
956 /* The queue is not empty */
957 if (write_ptr != read_ptr) {
958 IWL_DEBUG_HT(priv, "Stopping a non empty AGG HW QUEUE\n");
959 priv->stations[sta_id].tid[tid].agg.state =
960 IWL_EMPTYING_HW_QUEUE_DELBA;
961 spin_unlock_irqrestore(&priv->sta_lock, flags);
962 return 0;
965 IWL_DEBUG_HT(priv, "HW queue is empty\n");
966 turn_off:
967 priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF;
969 /* do not restore/save irqs */
970 spin_unlock(&priv->sta_lock);
971 spin_lock(&priv->lock);
974 * the only reason this call can fail is queue number out of range,
975 * which can happen if uCode is reloaded and all the station
976 * information are lost. if it is outside the range, there is no need
977 * to deactivate the uCode queue, just return "success" to allow
978 * mac80211 to clean up it own data.
980 iwlagn_txq_agg_disable(priv, txq_id, ssn, tx_fifo_id);
981 spin_unlock_irqrestore(&priv->lock, flags);
983 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
985 return 0;
988 int iwlagn_txq_check_empty(struct iwl_priv *priv,
989 int sta_id, u8 tid, int txq_id)
991 struct iwl_queue *q = &priv->txq[txq_id].q;
992 u8 *addr = priv->stations[sta_id].sta.sta.addr;
993 struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid];
994 struct iwl_rxon_context *ctx;
996 ctx = &priv->contexts[priv->stations[sta_id].ctxid];
998 lockdep_assert_held(&priv->sta_lock);
1000 switch (priv->stations[sta_id].tid[tid].agg.state) {
1001 case IWL_EMPTYING_HW_QUEUE_DELBA:
1002 /* We are reclaiming the last packet of the */
1003 /* aggregated HW queue */
1004 if ((txq_id == tid_data->agg.txq_id) &&
1005 (q->read_ptr == q->write_ptr)) {
1006 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
1007 int tx_fifo = get_fifo_from_tid(ctx, tid);
1008 IWL_DEBUG_HT(priv, "HW queue empty: continue DELBA flow\n");
1009 iwlagn_txq_agg_disable(priv, txq_id, ssn, tx_fifo);
1010 tid_data->agg.state = IWL_AGG_OFF;
1011 ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
1013 break;
1014 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1015 /* We are reclaiming the last packet of the queue */
1016 if (tid_data->tfds_in_queue == 0) {
1017 IWL_DEBUG_HT(priv, "HW queue empty: continue ADDBA flow\n");
1018 tid_data->agg.state = IWL_AGG_ON;
1019 ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
1021 break;
1024 return 0;
1027 static void iwlagn_non_agg_tx_status(struct iwl_priv *priv,
1028 struct iwl_rxon_context *ctx,
1029 const u8 *addr1)
1031 struct ieee80211_sta *sta;
1032 struct iwl_station_priv *sta_priv;
1034 rcu_read_lock();
1035 sta = ieee80211_find_sta(ctx->vif, addr1);
1036 if (sta) {
1037 sta_priv = (void *)sta->drv_priv;
1038 /* avoid atomic ops if this isn't a client */
1039 if (sta_priv->client &&
1040 atomic_dec_return(&sta_priv->pending_frames) == 0)
1041 ieee80211_sta_block_awake(priv->hw, sta, false);
1043 rcu_read_unlock();
1046 static void iwlagn_tx_status(struct iwl_priv *priv, struct iwl_tx_info *tx_info,
1047 bool is_agg)
1049 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx_info->skb->data;
1051 if (!is_agg)
1052 iwlagn_non_agg_tx_status(priv, tx_info->ctx, hdr->addr1);
1054 ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb);
1057 int iwlagn_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
1059 struct iwl_tx_queue *txq = &priv->txq[txq_id];
1060 struct iwl_queue *q = &txq->q;
1061 struct iwl_tx_info *tx_info;
1062 int nfreed = 0;
1063 struct ieee80211_hdr *hdr;
1065 if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
1066 IWL_ERR(priv, "%s: Read index for DMA queue txq id (%d), "
1067 "index %d is out of range [0-%d] %d %d.\n", __func__,
1068 txq_id, index, q->n_bd, q->write_ptr, q->read_ptr);
1069 return 0;
1072 for (index = iwl_queue_inc_wrap(index, q->n_bd);
1073 q->read_ptr != index;
1074 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1076 tx_info = &txq->txb[txq->q.read_ptr];
1078 if (WARN_ON_ONCE(tx_info->skb == NULL))
1079 continue;
1081 hdr = (struct ieee80211_hdr *)tx_info->skb->data;
1082 if (ieee80211_is_data_qos(hdr->frame_control))
1083 nfreed++;
1085 iwlagn_tx_status(priv, tx_info,
1086 txq_id >= IWLAGN_FIRST_AMPDU_QUEUE);
1087 tx_info->skb = NULL;
1089 iwlagn_txq_inval_byte_cnt_tbl(priv, txq);
1091 iwlagn_txq_free_tfd(priv, txq, txq->q.read_ptr);
1093 return nfreed;
1097 * iwlagn_tx_status_reply_compressed_ba - Update tx status from block-ack
1099 * Go through block-ack's bitmap of ACK'd frames, update driver's record of
1100 * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
1102 static int iwlagn_tx_status_reply_compressed_ba(struct iwl_priv *priv,
1103 struct iwl_ht_agg *agg,
1104 struct iwl_compressed_ba_resp *ba_resp)
1107 int sh;
1108 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
1109 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1110 struct ieee80211_tx_info *info;
1111 u64 bitmap, sent_bitmap;
1113 if (unlikely(!agg->wait_for_ba)) {
1114 if (unlikely(ba_resp->bitmap))
1115 IWL_ERR(priv, "Received BA when not expected\n");
1116 return -EINVAL;
1119 /* Mark that the expected block-ack response arrived */
1120 agg->wait_for_ba = 0;
1121 IWL_DEBUG_TX_REPLY(priv, "BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
1123 /* Calculate shift to align block-ack bits with our Tx window bits */
1124 sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl >> 4);
1125 if (sh < 0)
1126 sh += 0x100;
1129 * Check for success or failure according to the
1130 * transmitted bitmap and block-ack bitmap
1132 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
1133 sent_bitmap = bitmap & agg->bitmap;
1135 /* Sanity check values reported by uCode */
1136 if (ba_resp->txed_2_done > ba_resp->txed) {
1137 IWL_DEBUG_TX_REPLY(priv,
1138 "bogus sent(%d) and ack(%d) count\n",
1139 ba_resp->txed, ba_resp->txed_2_done);
1141 * set txed_2_done = txed,
1142 * so it won't impact rate scale
1144 ba_resp->txed = ba_resp->txed_2_done;
1146 IWL_DEBUG_HT(priv, "agg frames sent:%d, acked:%d\n",
1147 ba_resp->txed, ba_resp->txed_2_done);
1149 /* Find the first ACKed frame to store the TX status */
1150 while (sent_bitmap && !(sent_bitmap & 1)) {
1151 agg->start_idx = (agg->start_idx + 1) & 0xff;
1152 sent_bitmap >>= 1;
1155 info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb);
1156 memset(&info->status, 0, sizeof(info->status));
1157 info->flags |= IEEE80211_TX_STAT_ACK;
1158 info->flags |= IEEE80211_TX_STAT_AMPDU;
1159 info->status.ampdu_ack_len = ba_resp->txed_2_done;
1160 info->status.ampdu_len = ba_resp->txed;
1161 iwlagn_hwrate_to_tx_control(priv, agg->rate_n_flags, info);
1163 return 0;
1167 * translate ucode response to mac80211 tx status control values
1169 void iwlagn_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags,
1170 struct ieee80211_tx_info *info)
1172 struct ieee80211_tx_rate *r = &info->control.rates[0];
1174 info->antenna_sel_tx =
1175 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
1176 if (rate_n_flags & RATE_MCS_HT_MSK)
1177 r->flags |= IEEE80211_TX_RC_MCS;
1178 if (rate_n_flags & RATE_MCS_GF_MSK)
1179 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
1180 if (rate_n_flags & RATE_MCS_HT40_MSK)
1181 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
1182 if (rate_n_flags & RATE_MCS_DUP_MSK)
1183 r->flags |= IEEE80211_TX_RC_DUP_DATA;
1184 if (rate_n_flags & RATE_MCS_SGI_MSK)
1185 r->flags |= IEEE80211_TX_RC_SHORT_GI;
1186 r->idx = iwlagn_hwrate_to_mac80211_idx(rate_n_flags, info->band);
1190 * iwlagn_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA
1192 * Handles block-acknowledge notification from device, which reports success
1193 * of frames sent via aggregation.
1195 void iwlagn_rx_reply_compressed_ba(struct iwl_priv *priv,
1196 struct iwl_rx_mem_buffer *rxb)
1198 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1199 struct iwl_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
1200 struct iwl_tx_queue *txq = NULL;
1201 struct iwl_ht_agg *agg;
1202 int index;
1203 int sta_id;
1204 int tid;
1205 unsigned long flags;
1207 /* "flow" corresponds to Tx queue */
1208 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1210 /* "ssn" is start of block-ack Tx window, corresponds to index
1211 * (in Tx queue's circular buffer) of first TFD/frame in window */
1212 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
1214 if (scd_flow >= priv->hw_params.max_txq_num) {
1215 IWL_ERR(priv,
1216 "BUG_ON scd_flow is bigger than number of queues\n");
1217 return;
1220 txq = &priv->txq[scd_flow];
1221 sta_id = ba_resp->sta_id;
1222 tid = ba_resp->tid;
1223 agg = &priv->stations[sta_id].tid[tid].agg;
1224 if (unlikely(agg->txq_id != scd_flow)) {
1226 * FIXME: this is a uCode bug which need to be addressed,
1227 * log the information and return for now!
1228 * since it is possible happen very often and in order
1229 * not to fill the syslog, don't enable the logging by default
1231 IWL_DEBUG_TX_REPLY(priv,
1232 "BA scd_flow %d does not match txq_id %d\n",
1233 scd_flow, agg->txq_id);
1234 return;
1237 /* Find index just before block-ack window */
1238 index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
1240 spin_lock_irqsave(&priv->sta_lock, flags);
1242 IWL_DEBUG_TX_REPLY(priv, "REPLY_COMPRESSED_BA [%d] Received from %pM, "
1243 "sta_id = %d\n",
1244 agg->wait_for_ba,
1245 (u8 *) &ba_resp->sta_addr_lo32,
1246 ba_resp->sta_id);
1247 IWL_DEBUG_TX_REPLY(priv, "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = "
1248 "%d, scd_ssn = %d\n",
1249 ba_resp->tid,
1250 ba_resp->seq_ctl,
1251 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
1252 ba_resp->scd_flow,
1253 ba_resp->scd_ssn);
1254 IWL_DEBUG_TX_REPLY(priv, "DAT start_idx = %d, bitmap = 0x%llx\n",
1255 agg->start_idx,
1256 (unsigned long long)agg->bitmap);
1258 /* Update driver's record of ACK vs. not for each frame in window */
1259 iwlagn_tx_status_reply_compressed_ba(priv, agg, ba_resp);
1261 /* Release all TFDs before the SSN, i.e. all TFDs in front of
1262 * block-ack window (we assume that they've been successfully
1263 * transmitted ... if not, it's too late anyway). */
1264 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
1265 /* calculate mac80211 ampdu sw queue to wake */
1266 int freed = iwlagn_tx_queue_reclaim(priv, scd_flow, index);
1267 iwl_free_tfds_in_queue(priv, sta_id, tid, freed);
1269 if ((iwl_queue_space(&txq->q) > txq->q.low_mark) &&
1270 priv->mac80211_registered &&
1271 (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA))
1272 iwl_wake_queue(priv, txq);
1274 iwlagn_txq_check_empty(priv, sta_id, tid, scd_flow);
1277 spin_unlock_irqrestore(&priv->sta_lock, flags);
1280 #ifdef CONFIG_IWLWIFI_DEBUG
1281 const char *iwl_get_tx_fail_reason(u32 status)
1283 #define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
1284 #define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
1286 switch (status & TX_STATUS_MSK) {
1287 case TX_STATUS_SUCCESS:
1288 return "SUCCESS";
1289 TX_STATUS_POSTPONE(DELAY);
1290 TX_STATUS_POSTPONE(FEW_BYTES);
1291 TX_STATUS_POSTPONE(BT_PRIO);
1292 TX_STATUS_POSTPONE(QUIET_PERIOD);
1293 TX_STATUS_POSTPONE(CALC_TTAK);
1294 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
1295 TX_STATUS_FAIL(SHORT_LIMIT);
1296 TX_STATUS_FAIL(LONG_LIMIT);
1297 TX_STATUS_FAIL(FIFO_UNDERRUN);
1298 TX_STATUS_FAIL(DRAIN_FLOW);
1299 TX_STATUS_FAIL(RFKILL_FLUSH);
1300 TX_STATUS_FAIL(LIFE_EXPIRE);
1301 TX_STATUS_FAIL(DEST_PS);
1302 TX_STATUS_FAIL(HOST_ABORTED);
1303 TX_STATUS_FAIL(BT_RETRY);
1304 TX_STATUS_FAIL(STA_INVALID);
1305 TX_STATUS_FAIL(FRAG_DROPPED);
1306 TX_STATUS_FAIL(TID_DISABLE);
1307 TX_STATUS_FAIL(FIFO_FLUSHED);
1308 TX_STATUS_FAIL(INSUFFICIENT_CF_POLL);
1309 TX_STATUS_FAIL(PASSIVE_NO_RX);
1310 TX_STATUS_FAIL(NO_BEACON_ON_RADAR);
1313 return "UNKNOWN";
1315 #undef TX_STATUS_FAIL
1316 #undef TX_STATUS_POSTPONE
1318 #endif /* CONFIG_IWLWIFI_DEBUG */