blob: c114c3a704f8cdb9e46e40f5e7ab123de6926951 [file] [log] [blame]
Wey-Yi Guyb305a082010-03-16 17:41:22 -07001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
5 * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved.
6 *
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.
10 *
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.
15 *
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
20 *
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
30#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/init.h>
33#include <linux/sched.h>
34
35#include "iwl-dev.h"
36#include "iwl-core.h"
37#include "iwl-sta.h"
38#include "iwl-io.h"
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -070039#include "iwl-helpers.h"
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -070040#include "iwl-agn-hw.h"
Wey-Yi Guy8d801082010-03-17 13:34:36 -070041#include "iwl-agn.h"
Wey-Yi Guyb305a082010-03-16 17:41:22 -070042
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -070043/*
44 * mac80211 queues, ACs, hardware queues, FIFOs.
45 *
46 * Cf. http://wireless.kernel.org/en/developers/Documentation/mac80211/queues
47 *
48 * Mac80211 uses the following numbers, which we get as from it
49 * by way of skb_get_queue_mapping(skb):
50 *
51 * VO 0
52 * VI 1
53 * BE 2
54 * BK 3
55 *
56 *
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.
63 *
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.
67 */
68
69static const u8 tid_to_ac[] = {
70 /* this matches the mac80211 numbers */
71 2, 3, 3, 2, 1, 1, 0, 0
72};
73
Shanyu Zhaoc2845d02010-04-14 15:35:14 -070074static inline int get_ac_from_tid(u16 tid)
75{
76 if (likely(tid < ARRAY_SIZE(tid_to_ac)))
77 return tid_to_ac[tid];
78
79 /* no support for TIDs 8-15 yet */
80 return -EINVAL;
81}
82
Johannes Berge72f3682010-08-23 10:46:51 +020083static inline int get_fifo_from_tid(struct iwl_rxon_context *ctx, u16 tid)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -070084{
85 if (likely(tid < ARRAY_SIZE(tid_to_ac)))
Johannes Berge72f3682010-08-23 10:46:51 +020086 return ctx->ac_to_fifo[tid_to_ac[tid]];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -070087
88 /* no support for TIDs 8-15 yet */
89 return -EINVAL;
90}
91
Wey-Yi Guyb305a082010-03-16 17:41:22 -070092/**
93 * iwlagn_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
94 */
95void iwlagn_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
96 struct iwl_tx_queue *txq,
97 u16 byte_cnt)
98{
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -070099 struct iwlagn_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr;
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700100 int write_ptr = txq->q.write_ptr;
101 int txq_id = txq->q.id;
102 u8 sec_ctl = 0;
103 u8 sta_id = 0;
104 u16 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
105 __le16 bc_ent;
106
107 WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX);
108
Johannes Berg13bb9482010-08-23 10:46:33 +0200109 if (txq_id != priv->cmd_queue) {
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700110 sta_id = txq->cmd[txq->q.write_ptr]->cmd.tx.sta_id;
111 sec_ctl = txq->cmd[txq->q.write_ptr]->cmd.tx.sec_ctl;
112
113 switch (sec_ctl & TX_CMD_SEC_MSK) {
114 case TX_CMD_SEC_CCM:
115 len += CCMP_MIC_LEN;
116 break;
117 case TX_CMD_SEC_TKIP:
118 len += TKIP_ICV_LEN;
119 break;
120 case TX_CMD_SEC_WEP:
121 len += WEP_IV_LEN + WEP_ICV_LEN;
122 break;
123 }
124 }
125
126 bc_ent = cpu_to_le16((len & 0xFFF) | (sta_id << 12));
127
128 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
129
130 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
131 scd_bc_tbl[txq_id].
132 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
133}
134
135void iwlagn_txq_inval_byte_cnt_tbl(struct iwl_priv *priv,
136 struct iwl_tx_queue *txq)
137{
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700138 struct iwlagn_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr;
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700139 int txq_id = txq->q.id;
140 int read_ptr = txq->q.read_ptr;
141 u8 sta_id = 0;
142 __le16 bc_ent;
143
144 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
145
Johannes Berg13bb9482010-08-23 10:46:33 +0200146 if (txq_id != priv->cmd_queue)
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700147 sta_id = txq->cmd[read_ptr]->cmd.tx.sta_id;
148
149 bc_ent = cpu_to_le16(1 | (sta_id << 12));
150 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
151
152 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
153 scd_bc_tbl[txq_id].
154 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
155}
156
157static int iwlagn_tx_queue_set_q2ratid(struct iwl_priv *priv, u16 ra_tid,
158 u16 txq_id)
159{
160 u32 tbl_dw_addr;
161 u32 tbl_dw;
162 u16 scd_q2ratid;
163
164 scd_q2ratid = ra_tid & IWL_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
165
166 tbl_dw_addr = priv->scd_base_addr +
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700167 IWLAGN_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700168
169 tbl_dw = iwl_read_targ_mem(priv, tbl_dw_addr);
170
171 if (txq_id & 0x1)
172 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
173 else
174 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
175
176 iwl_write_targ_mem(priv, tbl_dw_addr, tbl_dw);
177
178 return 0;
179}
180
181static void iwlagn_tx_queue_stop_scheduler(struct iwl_priv *priv, u16 txq_id)
182{
183 /* Simply stop the queue, but don't change any configuration;
184 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
185 iwl_write_prph(priv,
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700186 IWLAGN_SCD_QUEUE_STATUS_BITS(txq_id),
187 (0 << IWLAGN_SCD_QUEUE_STTS_REG_POS_ACTIVE)|
188 (1 << IWLAGN_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700189}
190
191void iwlagn_set_wr_ptrs(struct iwl_priv *priv,
192 int txq_id, u32 index)
193{
194 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
195 (index & 0xff) | (txq_id << 8));
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700196 iwl_write_prph(priv, IWLAGN_SCD_QUEUE_RDPTR(txq_id), index);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700197}
198
199void iwlagn_tx_queue_set_status(struct iwl_priv *priv,
200 struct iwl_tx_queue *txq,
201 int tx_fifo_id, int scd_retry)
202{
203 int txq_id = txq->q.id;
204 int active = test_bit(txq_id, &priv->txq_ctx_active_msk) ? 1 : 0;
205
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700206 iwl_write_prph(priv, IWLAGN_SCD_QUEUE_STATUS_BITS(txq_id),
207 (active << IWLAGN_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
208 (tx_fifo_id << IWLAGN_SCD_QUEUE_STTS_REG_POS_TXF) |
209 (1 << IWLAGN_SCD_QUEUE_STTS_REG_POS_WSL) |
210 IWLAGN_SCD_QUEUE_STTS_REG_MSK);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700211
212 txq->sched_retry = scd_retry;
213
214 IWL_DEBUG_INFO(priv, "%s %s Queue %d on FIFO %d\n",
215 active ? "Activate" : "Deactivate",
216 scd_retry ? "BA" : "AC/CMD", txq_id, tx_fifo_id);
217}
218
219int iwlagn_txq_agg_enable(struct iwl_priv *priv, int txq_id,
220 int tx_fifo, int sta_id, int tid, u16 ssn_idx)
221{
222 unsigned long flags;
223 u16 ra_tid;
Johannes Berg4620fef2010-06-16 03:30:27 -0700224 int ret;
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700225
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700226 if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) ||
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700227 (IWLAGN_FIRST_AMPDU_QUEUE +
228 priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700229 IWL_WARN(priv,
230 "queue number out of range: %d, must be %d to %d\n",
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700231 txq_id, IWLAGN_FIRST_AMPDU_QUEUE,
232 IWLAGN_FIRST_AMPDU_QUEUE +
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700233 priv->cfg->base_params->num_of_ampdu_queues - 1);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700234 return -EINVAL;
235 }
236
237 ra_tid = BUILD_RAxTID(sta_id, tid);
238
239 /* Modify device's station table to Tx this TID */
Johannes Berg4620fef2010-06-16 03:30:27 -0700240 ret = iwl_sta_tx_modify_enable_tid(priv, sta_id, tid);
241 if (ret)
242 return ret;
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700243
244 spin_lock_irqsave(&priv->lock, flags);
245
246 /* Stop this Tx queue before configuring it */
247 iwlagn_tx_queue_stop_scheduler(priv, txq_id);
248
249 /* Map receiver-address / traffic-ID to this queue */
250 iwlagn_tx_queue_set_q2ratid(priv, ra_tid, txq_id);
251
252 /* Set this queue as a chain-building queue */
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700253 iwl_set_bits_prph(priv, IWLAGN_SCD_QUEUECHAIN_SEL, (1<<txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700254
255 /* enable aggregations for the queue */
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700256 iwl_set_bits_prph(priv, IWLAGN_SCD_AGGR_SEL, (1<<txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700257
258 /* Place first TFD at index corresponding to start sequence number.
259 * Assumes that ssn_idx is valid (!= 0xFFF) */
260 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
261 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
262 iwlagn_set_wr_ptrs(priv, txq_id, ssn_idx);
263
264 /* Set up Tx window size and frame limit for this queue */
265 iwl_write_targ_mem(priv, priv->scd_base_addr +
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700266 IWLAGN_SCD_CONTEXT_QUEUE_OFFSET(txq_id) +
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700267 sizeof(u32),
268 ((SCD_WIN_SIZE <<
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700269 IWLAGN_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
270 IWLAGN_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700271 ((SCD_FRAME_LIMIT <<
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700272 IWLAGN_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
273 IWLAGN_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700274
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700275 iwl_set_bits_prph(priv, IWLAGN_SCD_INTERRUPT_MASK, (1 << txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700276
277 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
278 iwlagn_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 1);
279
280 spin_unlock_irqrestore(&priv->lock, flags);
281
282 return 0;
283}
284
285int iwlagn_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
286 u16 ssn_idx, u8 tx_fifo)
287{
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700288 if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) ||
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700289 (IWLAGN_FIRST_AMPDU_QUEUE +
290 priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700291 IWL_ERR(priv,
292 "queue number out of range: %d, must be %d to %d\n",
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700293 txq_id, IWLAGN_FIRST_AMPDU_QUEUE,
294 IWLAGN_FIRST_AMPDU_QUEUE +
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700295 priv->cfg->base_params->num_of_ampdu_queues - 1);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700296 return -EINVAL;
297 }
298
299 iwlagn_tx_queue_stop_scheduler(priv, txq_id);
300
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700301 iwl_clear_bits_prph(priv, IWLAGN_SCD_AGGR_SEL, (1 << txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700302
303 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
304 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
305 /* supposes that ssn_idx is valid (!= 0xFFF) */
306 iwlagn_set_wr_ptrs(priv, txq_id, ssn_idx);
307
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700308 iwl_clear_bits_prph(priv, IWLAGN_SCD_INTERRUPT_MASK, (1 << txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700309 iwl_txq_ctx_deactivate(priv, txq_id);
310 iwlagn_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 0);
311
312 return 0;
313}
314
315/*
316 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
317 * must be called under priv->lock and mac access
318 */
319void iwlagn_txq_set_sched(struct iwl_priv *priv, u32 mask)
320{
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700321 iwl_write_prph(priv, IWLAGN_SCD_TXFACT, mask);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700322}
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700323
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700324/*
325 * handle build REPLY_TX command notification.
326 */
327static void iwlagn_tx_cmd_build_basic(struct iwl_priv *priv,
Johannes Bergd44ae692010-08-23 07:56:56 -0700328 struct sk_buff *skb,
329 struct iwl_tx_cmd *tx_cmd,
330 struct ieee80211_tx_info *info,
331 struct ieee80211_hdr *hdr,
332 u8 std_id)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700333{
334 __le16 fc = hdr->frame_control;
335 __le32 tx_flags = tx_cmd->tx_flags;
336
337 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
338 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
339 tx_flags |= TX_CMD_FLG_ACK_MSK;
340 if (ieee80211_is_mgmt(fc))
341 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
342 if (ieee80211_is_probe_resp(fc) &&
343 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
344 tx_flags |= TX_CMD_FLG_TSF_MSK;
345 } else {
346 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
347 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
348 }
349
350 if (ieee80211_is_back_req(fc))
351 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
Johannes Bergd44ae692010-08-23 07:56:56 -0700352 else if (info->band == IEEE80211_BAND_2GHZ &&
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700353 priv->cfg->bt_params &&
354 priv->cfg->bt_params->advanced_bt_coexist &&
Johannes Bergd44ae692010-08-23 07:56:56 -0700355 (ieee80211_is_auth(fc) || ieee80211_is_assoc_req(fc) ||
356 ieee80211_is_reassoc_req(fc) ||
357 skb->protocol == cpu_to_be16(ETH_P_PAE)))
358 tx_flags |= TX_CMD_FLG_IGNORE_BT;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700359
360
361 tx_cmd->sta_id = std_id;
362 if (ieee80211_has_morefrags(fc))
363 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
364
365 if (ieee80211_is_data_qos(fc)) {
366 u8 *qc = ieee80211_get_qos_ctl(hdr);
367 tx_cmd->tid_tspec = qc[0] & 0xf;
368 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
369 } else {
370 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
371 }
372
Johannes Berg94597ab2010-08-09 10:57:02 -0700373 priv->cfg->ops->utils->tx_cmd_protection(priv, info, fc, &tx_flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700374
375 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
376 if (ieee80211_is_mgmt(fc)) {
377 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
378 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
379 else
380 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
381 } else {
382 tx_cmd->timeout.pm_frame_timeout = 0;
383 }
384
385 tx_cmd->driver_txop = 0;
386 tx_cmd->tx_flags = tx_flags;
387 tx_cmd->next_frame_len = 0;
388}
389
390#define RTS_DFAULT_RETRY_LIMIT 60
391
392static void iwlagn_tx_cmd_build_rate(struct iwl_priv *priv,
393 struct iwl_tx_cmd *tx_cmd,
394 struct ieee80211_tx_info *info,
395 __le16 fc)
396{
397 u32 rate_flags;
398 int rate_idx;
399 u8 rts_retry_limit;
400 u8 data_retry_limit;
401 u8 rate_plcp;
402
403 /* Set retry limit on DATA packets and Probe Responses*/
404 if (ieee80211_is_probe_resp(fc))
405 data_retry_limit = 3;
406 else
Wey-Yi Guyb744cb72010-03-23 11:37:59 -0700407 data_retry_limit = IWLAGN_DEFAULT_TX_RETRY;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700408 tx_cmd->data_retry_limit = data_retry_limit;
409
410 /* Set retry limit on RTS packets */
411 rts_retry_limit = RTS_DFAULT_RETRY_LIMIT;
412 if (data_retry_limit < rts_retry_limit)
413 rts_retry_limit = data_retry_limit;
414 tx_cmd->rts_retry_limit = rts_retry_limit;
415
416 /* DATA packets will use the uCode station table for rate/antenna
417 * selection */
418 if (ieee80211_is_data(fc)) {
419 tx_cmd->initial_rate_index = 0;
420 tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
421 return;
422 }
423
424 /**
425 * If the current TX rate stored in mac80211 has the MCS bit set, it's
426 * not really a TX rate. Thus, we use the lowest supported rate for
427 * this band. Also use the lowest supported rate if the stored rate
428 * index is invalid.
429 */
430 rate_idx = info->control.rates[0].idx;
431 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS ||
432 (rate_idx < 0) || (rate_idx > IWL_RATE_COUNT_LEGACY))
433 rate_idx = rate_lowest_index(&priv->bands[info->band],
434 info->control.sta);
435 /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
436 if (info->band == IEEE80211_BAND_5GHZ)
437 rate_idx += IWL_FIRST_OFDM_RATE;
438 /* Get PLCP rate for tx_cmd->rate_n_flags */
439 rate_plcp = iwl_rates[rate_idx].plcp;
440 /* Zero out flags for this packet */
441 rate_flags = 0;
442
443 /* Set CCK flag as needed */
444 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
445 rate_flags |= RATE_MCS_CCK_MSK;
446
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700447 /* Set up antennas */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700448 if (priv->cfg->bt_params &&
449 priv->cfg->bt_params->advanced_bt_coexist &&
450 priv->bt_full_concurrent) {
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700451 /* operated as 1x1 in full concurrency mode */
452 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
453 first_antenna(priv->hw_params.valid_tx_ant));
454 } else
455 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
Johannes Berg0e1654f2010-05-18 02:48:36 -0700456 priv->hw_params.valid_tx_ant);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700457 rate_flags |= iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
458
459 /* Set the rate in the TX cmd */
460 tx_cmd->rate_n_flags = iwl_hw_set_rate_n_flags(rate_plcp, rate_flags);
461}
462
463static void iwlagn_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
464 struct ieee80211_tx_info *info,
465 struct iwl_tx_cmd *tx_cmd,
466 struct sk_buff *skb_frag,
467 int sta_id)
468{
469 struct ieee80211_key_conf *keyconf = info->control.hw_key;
470
Johannes Berg97359d12010-08-10 09:46:38 +0200471 switch (keyconf->cipher) {
472 case WLAN_CIPHER_SUITE_CCMP:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700473 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
474 memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
475 if (info->flags & IEEE80211_TX_CTL_AMPDU)
476 tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
477 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
478 break;
479
Johannes Berg97359d12010-08-10 09:46:38 +0200480 case WLAN_CIPHER_SUITE_TKIP:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700481 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
482 ieee80211_get_tkip_key(keyconf, skb_frag,
483 IEEE80211_TKIP_P2_KEY, tx_cmd->key);
484 IWL_DEBUG_TX(priv, "tx_cmd with tkip hwcrypto\n");
485 break;
486
Johannes Berg97359d12010-08-10 09:46:38 +0200487 case WLAN_CIPHER_SUITE_WEP104:
488 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
489 /* fall through */
490 case WLAN_CIPHER_SUITE_WEP40:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700491 tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP |
492 (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
493
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700494 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
495
496 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
497 "with key %d\n", keyconf->keyidx);
498 break;
499
500 default:
Johannes Berg97359d12010-08-10 09:46:38 +0200501 IWL_ERR(priv, "Unknown encode cipher %x\n", keyconf->cipher);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700502 break;
503 }
504}
505
506/*
507 * start REPLY_TX command process
508 */
509int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
510{
511 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
512 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
513 struct ieee80211_sta *sta = info->control.sta;
514 struct iwl_station_priv *sta_priv = NULL;
515 struct iwl_tx_queue *txq;
516 struct iwl_queue *q;
517 struct iwl_device_cmd *out_cmd;
518 struct iwl_cmd_meta *out_meta;
519 struct iwl_tx_cmd *tx_cmd;
Johannes Berga194e322010-08-27 08:53:46 -0700520 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Johannes Berg8d563962010-11-10 18:25:42 -0800521 int txq_id;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700522 dma_addr_t phys_addr;
523 dma_addr_t txcmd_phys;
524 dma_addr_t scratch_phys;
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100525 u16 len, firstlen, secondlen;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700526 u16 seq_number = 0;
527 __le16 fc;
528 u8 hdr_len;
529 u8 sta_id;
530 u8 wait_write_ptr = 0;
531 u8 tid = 0;
532 u8 *qc = NULL;
533 unsigned long flags;
Johannes Berg2e340342010-11-16 11:51:38 -0800534 bool is_agg = false;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700535
Johannes Berga194e322010-08-27 08:53:46 -0700536 if (info->control.vif)
537 ctx = iwl_rxon_ctx_from_vif(info->control.vif);
538
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700539 spin_lock_irqsave(&priv->lock, flags);
540 if (iwl_is_rfkill(priv)) {
541 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
542 goto drop_unlock;
543 }
544
545 fc = hdr->frame_control;
546
547#ifdef CONFIG_IWLWIFI_DEBUG
548 if (ieee80211_is_auth(fc))
549 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
550 else if (ieee80211_is_assoc_req(fc))
551 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
552 else if (ieee80211_is_reassoc_req(fc))
553 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
554#endif
555
556 hdr_len = ieee80211_hdrlen(fc);
557
Johannes Berg2a87c262010-04-30 11:30:45 -0700558 /* Find index into station table for destination station */
Johannes Berga194e322010-08-27 08:53:46 -0700559 sta_id = iwl_sta_id_or_broadcast(priv, ctx, info->control.sta);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700560 if (sta_id == IWL_INVALID_STATION) {
561 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
562 hdr->addr1);
563 goto drop_unlock;
564 }
565
566 IWL_DEBUG_TX(priv, "station Id %d\n", sta_id);
567
568 if (sta)
569 sta_priv = (void *)sta->drv_priv;
570
Johannes Berg67158b62010-11-16 11:51:04 -0800571 if (sta_priv && sta_priv->asleep &&
572 (info->flags & IEEE80211_TX_CTL_PSPOLL_RESPONSE)) {
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700573 /*
574 * This sends an asynchronous command to the device,
575 * but we can rely on it being processed before the
576 * next frame is processed -- and the next frame to
577 * this station is the one that will consume this
578 * counter.
579 * For now set the counter to just 1 since we do not
580 * support uAPSD yet.
581 */
582 iwl_sta_modify_sleep_tx_count(priv, sta_id, 1);
583 }
584
Johannes Berge72f3682010-08-23 10:46:51 +0200585 /*
586 * Send this frame after DTIM -- there's a special queue
587 * reserved for this for contexts that support AP mode.
588 */
589 if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
590 txq_id = ctx->mcast_queue;
591 /*
592 * The microcode will clear the more data
593 * bit in the last frame it transmits.
594 */
595 hdr->frame_control |=
596 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
597 } else
598 txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)];
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700599
600 /* irqs already disabled/saved above when locking priv->lock */
601 spin_lock(&priv->sta_lock);
602
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700603 if (ieee80211_is_data_qos(fc)) {
604 qc = ieee80211_get_qos_ctl(hdr);
605 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700606 if (WARN_ON_ONCE(tid >= MAX_TID_COUNT)) {
607 spin_unlock(&priv->sta_lock);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700608 goto drop_unlock;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700609 }
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700610 seq_number = priv->stations[sta_id].tid[tid].seq_number;
611 seq_number &= IEEE80211_SCTL_SEQ;
612 hdr->seq_ctrl = hdr->seq_ctrl &
613 cpu_to_le16(IEEE80211_SCTL_FRAG);
614 hdr->seq_ctrl |= cpu_to_le16(seq_number);
615 seq_number += 0x10;
616 /* aggregation is on for this <sta,tid> */
617 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
618 priv->stations[sta_id].tid[tid].agg.state == IWL_AGG_ON) {
619 txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
Johannes Berg2e340342010-11-16 11:51:38 -0800620 is_agg = true;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700621 }
622 }
623
624 txq = &priv->txq[txq_id];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700625 q = &txq->q;
626
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700627 if (unlikely(iwl_queue_space(q) < q->high_mark)) {
628 spin_unlock(&priv->sta_lock);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700629 goto drop_unlock;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700630 }
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700631
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700632 if (ieee80211_is_data_qos(fc)) {
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700633 priv->stations[sta_id].tid[tid].tfds_in_queue++;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700634 if (!ieee80211_has_morefrags(fc))
635 priv->stations[sta_id].tid[tid].seq_number = seq_number;
636 }
637
638 spin_unlock(&priv->sta_lock);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700639
640 /* Set up driver data for this TFD */
641 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Johannes Bergff0d91c2010-05-17 02:37:34 -0700642 txq->txb[q->write_ptr].skb = skb;
Johannes Bergc90cbbb2010-08-23 10:46:39 +0200643 txq->txb[q->write_ptr].ctx = ctx;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700644
645 /* Set up first empty entry in queue's array of Tx/cmd buffers */
646 out_cmd = txq->cmd[q->write_ptr];
647 out_meta = &txq->meta[q->write_ptr];
648 tx_cmd = &out_cmd->cmd.tx;
649 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
650 memset(tx_cmd, 0, sizeof(struct iwl_tx_cmd));
651
652 /*
653 * Set up the Tx-command (not MAC!) header.
654 * Store the chosen Tx queue and TFD index within the sequence field;
655 * after Tx, uCode's Tx response will return this value so driver can
656 * locate the frame within the tx queue and do post-tx processing.
657 */
658 out_cmd->hdr.cmd = REPLY_TX;
659 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
660 INDEX_TO_SEQ(q->write_ptr)));
661
662 /* Copy MAC header from skb into command buffer */
663 memcpy(tx_cmd->hdr, hdr, hdr_len);
664
665
666 /* Total # bytes to be transmitted */
667 len = (u16)skb->len;
668 tx_cmd->len = cpu_to_le16(len);
669
670 if (info->control.hw_key)
671 iwlagn_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id);
672
673 /* TODO need this for burst mode later on */
Johannes Bergd44ae692010-08-23 07:56:56 -0700674 iwlagn_tx_cmd_build_basic(priv, skb, tx_cmd, info, hdr, sta_id);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700675 iwl_dbg_log_tx_data_frame(priv, len, hdr);
676
677 iwlagn_tx_cmd_build_rate(priv, tx_cmd, info, fc);
678
679 iwl_update_stats(priv, true, fc, len);
680 /*
681 * Use the first empty entry in this queue's command buffer array
682 * to contain the Tx command and MAC header concatenated together
683 * (payload data will be in another buffer).
684 * Size of this varies, due to varying MAC header length.
685 * If end is not dword aligned, we'll have 2 extra bytes at the end
686 * of the MAC header (device reads on dword boundaries).
687 * We'll tell device about this padding later.
688 */
689 len = sizeof(struct iwl_tx_cmd) +
690 sizeof(struct iwl_cmd_header) + hdr_len;
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100691 firstlen = (len + 3) & ~3;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700692
693 /* Tell NIC about any 2-byte padding after MAC header */
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100694 if (firstlen != len)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700695 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
696
697 /* Physical address of this Tx command's header (not MAC header!),
698 * within command buffer array. */
699 txcmd_phys = pci_map_single(priv->pci_dev,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100700 &out_cmd->hdr, firstlen,
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700701 PCI_DMA_BIDIRECTIONAL);
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900702 dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100703 dma_unmap_len_set(out_meta, len, firstlen);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700704 /* Add buffer containing Tx command and MAC(!) header to TFD's
705 * first entry */
706 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100707 txcmd_phys, firstlen, 1, 0);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700708
709 if (!ieee80211_has_morefrags(hdr->frame_control)) {
710 txq->need_update = 1;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700711 } else {
712 wait_write_ptr = 1;
713 txq->need_update = 0;
714 }
715
716 /* Set up TFD's 2nd entry to point directly to remainder of skb,
717 * if any (802.11 null frames have no payload). */
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100718 secondlen = skb->len - hdr_len;
719 if (secondlen > 0) {
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700720 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100721 secondlen, PCI_DMA_TODEVICE);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700722 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100723 phys_addr, secondlen,
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700724 0, 0);
725 }
726
727 scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
728 offsetof(struct iwl_tx_cmd, scratch);
729
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700730 /* take back ownership of DMA buffer to enable update */
731 pci_dma_sync_single_for_cpu(priv->pci_dev, txcmd_phys,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100732 firstlen, PCI_DMA_BIDIRECTIONAL);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700733 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
734 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
735
Frans Pop91dd6c22010-03-24 14:19:58 -0700736 IWL_DEBUG_TX(priv, "sequence nr = 0X%x\n",
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700737 le16_to_cpu(out_cmd->hdr.sequence));
Frans Pop91dd6c22010-03-24 14:19:58 -0700738 IWL_DEBUG_TX(priv, "tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700739 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
740 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
741
742 /* Set up entry for this TFD in Tx byte-count array */
743 if (info->flags & IEEE80211_TX_CTL_AMPDU)
744 priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq,
745 le16_to_cpu(tx_cmd->len));
746
747 pci_dma_sync_single_for_device(priv->pci_dev, txcmd_phys,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100748 firstlen, PCI_DMA_BIDIRECTIONAL);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700749
750 trace_iwlwifi_dev_tx(priv,
751 &((struct iwl_tfd *)txq->tfds)[txq->q.write_ptr],
752 sizeof(struct iwl_tfd),
753 &out_cmd->hdr, firstlen,
754 skb->data + hdr_len, secondlen);
755
756 /* Tell device the write index *just past* this latest filled TFD */
757 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
758 iwl_txq_update_write_ptr(priv, txq);
759 spin_unlock_irqrestore(&priv->lock, flags);
760
761 /*
762 * At this point the frame is "transmitted" successfully
763 * and we will get a TX status notification eventually,
764 * regardless of the value of ret. "ret" only indicates
765 * whether or not we should update the write pointer.
766 */
767
Johannes Berg2e340342010-11-16 11:51:38 -0800768 /*
769 * Avoid atomic ops if it isn't an associated client.
770 * Also, if this is a packet for aggregation, don't
771 * increase the counter because the ucode will stop
772 * aggregation queues when their respective station
773 * goes to sleep.
774 */
775 if (sta_priv && sta_priv->client && !is_agg)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700776 atomic_inc(&sta_priv->pending_frames);
777
778 if ((iwl_queue_space(q) < q->high_mark) && priv->mac80211_registered) {
779 if (wait_write_ptr) {
780 spin_lock_irqsave(&priv->lock, flags);
781 txq->need_update = 1;
782 iwl_txq_update_write_ptr(priv, txq);
783 spin_unlock_irqrestore(&priv->lock, flags);
784 } else {
Johannes Berg549a04e2010-11-10 18:25:44 -0800785 iwl_stop_queue(priv, txq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700786 }
787 }
788
789 return 0;
790
791drop_unlock:
792 spin_unlock_irqrestore(&priv->lock, flags);
793 return -1;
794}
795
796static inline int iwlagn_alloc_dma_ptr(struct iwl_priv *priv,
797 struct iwl_dma_ptr *ptr, size_t size)
798{
799 ptr->addr = dma_alloc_coherent(&priv->pci_dev->dev, size, &ptr->dma,
800 GFP_KERNEL);
801 if (!ptr->addr)
802 return -ENOMEM;
803 ptr->size = size;
804 return 0;
805}
806
807static inline void iwlagn_free_dma_ptr(struct iwl_priv *priv,
808 struct iwl_dma_ptr *ptr)
809{
810 if (unlikely(!ptr->addr))
811 return;
812
813 dma_free_coherent(&priv->pci_dev->dev, ptr->size, ptr->addr, ptr->dma);
814 memset(ptr, 0, sizeof(*ptr));
815}
816
817/**
818 * iwlagn_hw_txq_ctx_free - Free TXQ Context
819 *
820 * Destroy all TX DMA queues and structures
821 */
822void iwlagn_hw_txq_ctx_free(struct iwl_priv *priv)
823{
824 int txq_id;
825
826 /* Tx queues */
827 if (priv->txq) {
Zhu Yi470058e2010-04-02 13:38:54 -0700828 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
Johannes Berg13bb9482010-08-23 10:46:33 +0200829 if (txq_id == priv->cmd_queue)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700830 iwl_cmd_queue_free(priv);
831 else
832 iwl_tx_queue_free(priv, txq_id);
833 }
834 iwlagn_free_dma_ptr(priv, &priv->kw);
835
836 iwlagn_free_dma_ptr(priv, &priv->scd_bc_tbls);
837
838 /* free tx queue structure */
839 iwl_free_txq_mem(priv);
840}
841
842/**
Zhu Yi470058e2010-04-02 13:38:54 -0700843 * iwlagn_txq_ctx_alloc - allocate TX queue context
844 * Allocate all Tx DMA structures and initialize them
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700845 *
846 * @param priv
847 * @return error code
848 */
Zhu Yi470058e2010-04-02 13:38:54 -0700849int iwlagn_txq_ctx_alloc(struct iwl_priv *priv)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700850{
Zhu Yi470058e2010-04-02 13:38:54 -0700851 int ret;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700852 int txq_id, slots_num;
853 unsigned long flags;
854
855 /* Free all tx/cmd queues and keep-warm buffer */
856 iwlagn_hw_txq_ctx_free(priv);
857
858 ret = iwlagn_alloc_dma_ptr(priv, &priv->scd_bc_tbls,
859 priv->hw_params.scd_bc_tbls_size);
860 if (ret) {
861 IWL_ERR(priv, "Scheduler BC Table allocation failed\n");
862 goto error_bc_tbls;
863 }
864 /* Alloc keep-warm buffer */
865 ret = iwlagn_alloc_dma_ptr(priv, &priv->kw, IWL_KW_SIZE);
866 if (ret) {
867 IWL_ERR(priv, "Keep Warm allocation failed\n");
868 goto error_kw;
869 }
870
871 /* allocate tx queue structure */
872 ret = iwl_alloc_txq_mem(priv);
873 if (ret)
874 goto error;
875
876 spin_lock_irqsave(&priv->lock, flags);
877
878 /* Turn off all Tx DMA fifos */
879 priv->cfg->ops->lib->txq_set_sched(priv, 0);
880
881 /* Tell NIC where to find the "keep warm" buffer */
882 iwl_write_direct32(priv, FH_KW_MEM_ADDR_REG, priv->kw.dma >> 4);
883
884 spin_unlock_irqrestore(&priv->lock, flags);
885
Johannes Berg13bb9482010-08-23 10:46:33 +0200886 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700887 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
Johannes Berg13bb9482010-08-23 10:46:33 +0200888 slots_num = (txq_id == priv->cmd_queue) ?
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700889 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
890 ret = iwl_tx_queue_init(priv, &priv->txq[txq_id], slots_num,
891 txq_id);
892 if (ret) {
893 IWL_ERR(priv, "Tx %d queue init failed\n", txq_id);
894 goto error;
895 }
896 }
897
898 return ret;
899
900 error:
901 iwlagn_hw_txq_ctx_free(priv);
902 iwlagn_free_dma_ptr(priv, &priv->kw);
903 error_kw:
904 iwlagn_free_dma_ptr(priv, &priv->scd_bc_tbls);
905 error_bc_tbls:
906 return ret;
907}
908
Zhu Yi470058e2010-04-02 13:38:54 -0700909void iwlagn_txq_ctx_reset(struct iwl_priv *priv)
910{
911 int txq_id, slots_num;
912 unsigned long flags;
913
914 spin_lock_irqsave(&priv->lock, flags);
915
916 /* Turn off all Tx DMA fifos */
917 priv->cfg->ops->lib->txq_set_sched(priv, 0);
918
919 /* Tell NIC where to find the "keep warm" buffer */
920 iwl_write_direct32(priv, FH_KW_MEM_ADDR_REG, priv->kw.dma >> 4);
921
922 spin_unlock_irqrestore(&priv->lock, flags);
923
924 /* Alloc and init all Tx queues, including the command queue (#4) */
925 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
Johannes Berg13bb9482010-08-23 10:46:33 +0200926 slots_num = txq_id == priv->cmd_queue ?
Zhu Yi470058e2010-04-02 13:38:54 -0700927 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
928 iwl_tx_queue_reset(priv, &priv->txq[txq_id], slots_num, txq_id);
929 }
930}
931
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700932/**
Zhu Yi470058e2010-04-02 13:38:54 -0700933 * iwlagn_txq_ctx_stop - Stop all Tx DMA channels
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700934 */
935void iwlagn_txq_ctx_stop(struct iwl_priv *priv)
936{
937 int ch;
938 unsigned long flags;
939
940 /* Turn off all Tx DMA fifos */
941 spin_lock_irqsave(&priv->lock, flags);
942
943 priv->cfg->ops->lib->txq_set_sched(priv, 0);
944
945 /* Stop each Tx DMA channel, and wait for it to be idle */
946 for (ch = 0; ch < priv->hw_params.dma_chnl_num; ch++) {
947 iwl_write_direct32(priv, FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
Emmanuel Grumbach9726f342010-06-29 11:29:49 -0700948 if (iwl_poll_direct_bit(priv, FH_TSSR_TX_STATUS_REG,
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700949 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch),
Emmanuel Grumbach9726f342010-06-29 11:29:49 -0700950 1000))
951 IWL_ERR(priv, "Failing on timeout while stopping"
952 " DMA channel %d [0x%08x]", ch,
953 iwl_read_direct32(priv, FH_TSSR_TX_STATUS_REG));
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700954 }
955 spin_unlock_irqrestore(&priv->lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700956}
957
958/*
959 * Find first available (lowest unused) Tx Queue, mark it "active".
960 * Called only when finding queue for aggregation.
961 * Should never return anything < 7, because they should already
962 * be in use as EDCA AC (0-3), Command (4), reserved (5, 6)
963 */
964static int iwlagn_txq_ctx_activate_free(struct iwl_priv *priv)
965{
966 int txq_id;
967
968 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
969 if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk))
970 return txq_id;
971 return -1;
972}
973
Johannes Berg832f47e2010-04-29 04:43:07 -0700974int iwlagn_tx_agg_start(struct iwl_priv *priv, struct ieee80211_vif *vif,
Johannes Berg619753f2010-04-30 11:30:46 -0700975 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700976{
977 int sta_id;
978 int tx_fifo;
979 int txq_id;
980 int ret;
981 unsigned long flags;
982 struct iwl_tid_data *tid_data;
983
Johannes Berge72f3682010-08-23 10:46:51 +0200984 tx_fifo = get_fifo_from_tid(iwl_rxon_ctx_from_vif(vif), tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700985 if (unlikely(tx_fifo < 0))
986 return tx_fifo;
987
988 IWL_WARN(priv, "%s on ra = %pM tid = %d\n",
Johannes Berg619753f2010-04-30 11:30:46 -0700989 __func__, sta->addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700990
Johannes Berg619753f2010-04-30 11:30:46 -0700991 sta_id = iwl_sta_id(sta);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700992 if (sta_id == IWL_INVALID_STATION) {
993 IWL_ERR(priv, "Start AGG on invalid station\n");
994 return -ENXIO;
995 }
996 if (unlikely(tid >= MAX_TID_COUNT))
997 return -EINVAL;
998
999 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) {
1000 IWL_ERR(priv, "Start AGG when state is not IWL_AGG_OFF !\n");
1001 return -ENXIO;
1002 }
1003
1004 txq_id = iwlagn_txq_ctx_activate_free(priv);
1005 if (txq_id == -1) {
1006 IWL_ERR(priv, "No free aggregation queue available\n");
1007 return -ENXIO;
1008 }
1009
1010 spin_lock_irqsave(&priv->sta_lock, flags);
1011 tid_data = &priv->stations[sta_id].tid[tid];
1012 *ssn = SEQ_TO_SN(tid_data->seq_number);
1013 tid_data->agg.txq_id = txq_id;
Johannes Bergea9b3072010-11-10 18:25:45 -08001014 iwl_set_swq_id(&priv->txq[txq_id], get_ac_from_tid(tid), txq_id);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001015 spin_unlock_irqrestore(&priv->sta_lock, flags);
1016
1017 ret = priv->cfg->ops->lib->txq_agg_enable(priv, txq_id, tx_fifo,
1018 sta_id, tid, *ssn);
1019 if (ret)
1020 return ret;
1021
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001022 spin_lock_irqsave(&priv->sta_lock, flags);
1023 tid_data = &priv->stations[sta_id].tid[tid];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001024 if (tid_data->tfds_in_queue == 0) {
1025 IWL_DEBUG_HT(priv, "HW queue is empty\n");
1026 tid_data->agg.state = IWL_AGG_ON;
Johannes Berg619753f2010-04-30 11:30:46 -07001027 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001028 } else {
1029 IWL_DEBUG_HT(priv, "HW queue is NOT empty: %d packets in HW queue\n",
1030 tid_data->tfds_in_queue);
1031 tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA;
1032 }
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001033 spin_unlock_irqrestore(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001034 return ret;
1035}
1036
Johannes Berg832f47e2010-04-29 04:43:07 -07001037int iwlagn_tx_agg_stop(struct iwl_priv *priv, struct ieee80211_vif *vif,
Johannes Berg619753f2010-04-30 11:30:46 -07001038 struct ieee80211_sta *sta, u16 tid)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001039{
Johannes Berg18c121d2010-08-23 07:57:17 -07001040 int tx_fifo_id, txq_id, sta_id, ssn;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001041 struct iwl_tid_data *tid_data;
1042 int write_ptr, read_ptr;
1043 unsigned long flags;
1044
Johannes Berge72f3682010-08-23 10:46:51 +02001045 tx_fifo_id = get_fifo_from_tid(iwl_rxon_ctx_from_vif(vif), tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001046 if (unlikely(tx_fifo_id < 0))
1047 return tx_fifo_id;
1048
Johannes Berg619753f2010-04-30 11:30:46 -07001049 sta_id = iwl_sta_id(sta);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001050
1051 if (sta_id == IWL_INVALID_STATION) {
1052 IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid);
1053 return -ENXIO;
1054 }
1055
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001056 spin_lock_irqsave(&priv->sta_lock, flags);
1057
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001058 tid_data = &priv->stations[sta_id].tid[tid];
1059 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
1060 txq_id = tid_data->agg.txq_id;
Johannes Berg18c121d2010-08-23 07:57:17 -07001061
1062 switch (priv->stations[sta_id].tid[tid].agg.state) {
1063 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1064 /*
1065 * This can happen if the peer stops aggregation
1066 * again before we've had a chance to drain the
1067 * queue we selected previously, i.e. before the
1068 * session was really started completely.
1069 */
1070 IWL_DEBUG_HT(priv, "AGG stop before setup done\n");
1071 goto turn_off;
1072 case IWL_AGG_ON:
1073 break;
1074 default:
1075 IWL_WARN(priv, "Stopping AGG while state not ON or starting\n");
1076 }
1077
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001078 write_ptr = priv->txq[txq_id].q.write_ptr;
1079 read_ptr = priv->txq[txq_id].q.read_ptr;
1080
1081 /* The queue is not empty */
1082 if (write_ptr != read_ptr) {
1083 IWL_DEBUG_HT(priv, "Stopping a non empty AGG HW QUEUE\n");
1084 priv->stations[sta_id].tid[tid].agg.state =
1085 IWL_EMPTYING_HW_QUEUE_DELBA;
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001086 spin_unlock_irqrestore(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001087 return 0;
1088 }
1089
1090 IWL_DEBUG_HT(priv, "HW queue is empty\n");
Johannes Berg18c121d2010-08-23 07:57:17 -07001091 turn_off:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001092 priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF;
1093
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001094 /* do not restore/save irqs */
1095 spin_unlock(&priv->sta_lock);
1096 spin_lock(&priv->lock);
1097
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001098 /*
1099 * the only reason this call can fail is queue number out of range,
1100 * which can happen if uCode is reloaded and all the station
1101 * information are lost. if it is outside the range, there is no need
1102 * to deactivate the uCode queue, just return "success" to allow
1103 * mac80211 to clean up it own data.
1104 */
1105 priv->cfg->ops->lib->txq_agg_disable(priv, txq_id, ssn,
1106 tx_fifo_id);
1107 spin_unlock_irqrestore(&priv->lock, flags);
1108
Johannes Berg619753f2010-04-30 11:30:46 -07001109 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001110
1111 return 0;
1112}
1113
1114int iwlagn_txq_check_empty(struct iwl_priv *priv,
1115 int sta_id, u8 tid, int txq_id)
1116{
1117 struct iwl_queue *q = &priv->txq[txq_id].q;
1118 u8 *addr = priv->stations[sta_id].sta.sta.addr;
1119 struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid];
Johannes Berg8bd413e2010-08-23 10:46:40 +02001120 struct iwl_rxon_context *ctx;
1121
1122 ctx = &priv->contexts[priv->stations[sta_id].ctxid];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001123
Johannes Berga24d52f2010-08-06 16:17:53 +02001124 lockdep_assert_held(&priv->sta_lock);
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001125
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001126 switch (priv->stations[sta_id].tid[tid].agg.state) {
1127 case IWL_EMPTYING_HW_QUEUE_DELBA:
1128 /* We are reclaiming the last packet of the */
1129 /* aggregated HW queue */
1130 if ((txq_id == tid_data->agg.txq_id) &&
1131 (q->read_ptr == q->write_ptr)) {
1132 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
Johannes Berge72f3682010-08-23 10:46:51 +02001133 int tx_fifo = get_fifo_from_tid(ctx, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001134 IWL_DEBUG_HT(priv, "HW queue empty: continue DELBA flow\n");
1135 priv->cfg->ops->lib->txq_agg_disable(priv, txq_id,
1136 ssn, tx_fifo);
1137 tid_data->agg.state = IWL_AGG_OFF;
Johannes Berg8bd413e2010-08-23 10:46:40 +02001138 ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001139 }
1140 break;
1141 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1142 /* We are reclaiming the last packet of the queue */
1143 if (tid_data->tfds_in_queue == 0) {
1144 IWL_DEBUG_HT(priv, "HW queue empty: continue ADDBA flow\n");
1145 tid_data->agg.state = IWL_AGG_ON;
Johannes Berg8bd413e2010-08-23 10:46:40 +02001146 ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001147 }
1148 break;
1149 }
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001150
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001151 return 0;
1152}
1153
Johannes Berg2e340342010-11-16 11:51:38 -08001154static void iwlagn_non_agg_tx_status(struct iwl_priv *priv,
1155 struct iwl_rxon_context *ctx,
1156 const u8 *addr1)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001157{
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001158 struct ieee80211_sta *sta;
1159 struct iwl_station_priv *sta_priv;
1160
Johannes Berg6db63402010-06-07 21:20:38 +02001161 rcu_read_lock();
Johannes Berg2e340342010-11-16 11:51:38 -08001162 sta = ieee80211_find_sta(ctx->vif, addr1);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001163 if (sta) {
1164 sta_priv = (void *)sta->drv_priv;
1165 /* avoid atomic ops if this isn't a client */
1166 if (sta_priv->client &&
1167 atomic_dec_return(&sta_priv->pending_frames) == 0)
1168 ieee80211_sta_block_awake(priv->hw, sta, false);
1169 }
Johannes Berg6db63402010-06-07 21:20:38 +02001170 rcu_read_unlock();
Johannes Berg2e340342010-11-16 11:51:38 -08001171}
1172
1173static void iwlagn_tx_status(struct iwl_priv *priv, struct iwl_tx_info *tx_info,
1174 bool is_agg)
1175{
1176 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx_info->skb->data;
1177
1178 if (!is_agg)
1179 iwlagn_non_agg_tx_status(priv, tx_info->ctx, hdr->addr1);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001180
Johannes Berg8bd413e2010-08-23 10:46:40 +02001181 ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001182}
1183
1184int iwlagn_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
1185{
1186 struct iwl_tx_queue *txq = &priv->txq[txq_id];
1187 struct iwl_queue *q = &txq->q;
1188 struct iwl_tx_info *tx_info;
1189 int nfreed = 0;
1190 struct ieee80211_hdr *hdr;
1191
1192 if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
1193 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
1194 "is out of range [0-%d] %d %d.\n", txq_id,
1195 index, q->n_bd, q->write_ptr, q->read_ptr);
1196 return 0;
1197 }
1198
1199 for (index = iwl_queue_inc_wrap(index, q->n_bd);
1200 q->read_ptr != index;
1201 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1202
1203 tx_info = &txq->txb[txq->q.read_ptr];
Johannes Berg2e340342010-11-16 11:51:38 -08001204 iwlagn_tx_status(priv, tx_info,
1205 txq_id >= IWLAGN_FIRST_AMPDU_QUEUE);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001206
Johannes Bergff0d91c2010-05-17 02:37:34 -07001207 hdr = (struct ieee80211_hdr *)tx_info->skb->data;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001208 if (hdr && ieee80211_is_data_qos(hdr->frame_control))
1209 nfreed++;
Johannes Bergff0d91c2010-05-17 02:37:34 -07001210 tx_info->skb = NULL;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001211
1212 if (priv->cfg->ops->lib->txq_inval_byte_cnt_tbl)
1213 priv->cfg->ops->lib->txq_inval_byte_cnt_tbl(priv, txq);
1214
1215 priv->cfg->ops->lib->txq_free_tfd(priv, txq);
1216 }
1217 return nfreed;
1218}
1219
1220/**
1221 * iwlagn_tx_status_reply_compressed_ba - Update tx status from block-ack
1222 *
1223 * Go through block-ack's bitmap of ACK'd frames, update driver's record of
1224 * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
1225 */
1226static int iwlagn_tx_status_reply_compressed_ba(struct iwl_priv *priv,
1227 struct iwl_ht_agg *agg,
1228 struct iwl_compressed_ba_resp *ba_resp)
1229
1230{
1231 int i, sh, ack;
1232 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
1233 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
Daniel Halperin02cd8de2010-05-24 18:41:30 -07001234 u64 bitmap, sent_bitmap;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001235 int successes = 0;
1236 struct ieee80211_tx_info *info;
1237
1238 if (unlikely(!agg->wait_for_ba)) {
Don Fry822395b2010-10-23 09:02:50 -07001239 if (unlikely(ba_resp->bitmap))
1240 IWL_ERR(priv, "Received BA when not expected\n");
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001241 return -EINVAL;
1242 }
1243
1244 /* Mark that the expected block-ack response arrived */
1245 agg->wait_for_ba = 0;
1246 IWL_DEBUG_TX_REPLY(priv, "BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
1247
1248 /* Calculate shift to align block-ack bits with our Tx window bits */
1249 sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl >> 4);
1250 if (sh < 0) /* tbw something is wrong with indices */
1251 sh += 0x100;
1252
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001253 if (agg->frame_count > (64 - sh)) {
1254 IWL_DEBUG_TX_REPLY(priv, "more frames than bitmap size");
1255 return -1;
1256 }
Wey-Yi Guy8829c9e2010-11-10 11:05:38 -08001257 if (!priv->cfg->base_params->no_agg_framecnt_info && ba_resp->txed) {
1258 /*
1259 * sent and ack information provided by uCode
1260 * use it instead of figure out ourself
1261 */
1262 if (ba_resp->txed_2_done > ba_resp->txed) {
1263 IWL_DEBUG_TX_REPLY(priv,
1264 "bogus sent(%d) and ack(%d) count\n",
1265 ba_resp->txed, ba_resp->txed_2_done);
1266 /*
1267 * set txed_2_done = txed,
1268 * so it won't impact rate scale
1269 */
1270 ba_resp->txed = ba_resp->txed_2_done;
1271 }
1272 IWL_DEBUG_HT(priv, "agg frames sent:%d, acked:%d\n",
1273 ba_resp->txed, ba_resp->txed_2_done);
1274 } else {
1275 /* don't use 64-bit values for now */
1276 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001277
Wey-Yi Guy8829c9e2010-11-10 11:05:38 -08001278 /* check for success or failure according to the
1279 * transmitted bitmap and block-ack bitmap */
1280 sent_bitmap = bitmap & agg->bitmap;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001281
Wey-Yi Guy8829c9e2010-11-10 11:05:38 -08001282 /* For each frame attempted in aggregation,
1283 * update driver's record of tx frame's status. */
1284 i = 0;
1285 while (sent_bitmap) {
1286 ack = sent_bitmap & 1ULL;
1287 successes += ack;
1288 IWL_DEBUG_TX_REPLY(priv, "%s ON i=%d idx=%d raw=%d\n",
1289 ack ? "ACK" : "NACK", i,
1290 (agg->start_idx + i) & 0xff,
1291 agg->start_idx + i);
1292 sent_bitmap >>= 1;
1293 ++i;
1294 }
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001295 }
Johannes Bergff0d91c2010-05-17 02:37:34 -07001296 info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001297 memset(&info->status, 0, sizeof(info->status));
1298 info->flags |= IEEE80211_TX_STAT_ACK;
1299 info->flags |= IEEE80211_TX_STAT_AMPDU;
Wey-Yi Guy8829c9e2010-11-10 11:05:38 -08001300 if (!priv->cfg->base_params->no_agg_framecnt_info && ba_resp->txed) {
1301 info->status.ampdu_ack_len = ba_resp->txed_2_done;
1302 info->status.ampdu_len = ba_resp->txed;
1303
1304 } else {
1305 info->status.ampdu_ack_len = successes;
1306 info->status.ampdu_len = agg->frame_count;
1307 }
Wey-Yi Guy8d801082010-03-17 13:34:36 -07001308 iwlagn_hwrate_to_tx_control(priv, agg->rate_n_flags, info);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001309
1310 IWL_DEBUG_TX_REPLY(priv, "Bitmap %llx\n", (unsigned long long)bitmap);
1311
1312 return 0;
1313}
1314
1315/**
Wey-Yi Guy8d801082010-03-17 13:34:36 -07001316 * translate ucode response to mac80211 tx status control values
1317 */
1318void iwlagn_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags,
1319 struct ieee80211_tx_info *info)
1320{
1321 struct ieee80211_tx_rate *r = &info->control.rates[0];
1322
1323 info->antenna_sel_tx =
1324 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
1325 if (rate_n_flags & RATE_MCS_HT_MSK)
1326 r->flags |= IEEE80211_TX_RC_MCS;
1327 if (rate_n_flags & RATE_MCS_GF_MSK)
1328 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
1329 if (rate_n_flags & RATE_MCS_HT40_MSK)
1330 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
1331 if (rate_n_flags & RATE_MCS_DUP_MSK)
1332 r->flags |= IEEE80211_TX_RC_DUP_DATA;
1333 if (rate_n_flags & RATE_MCS_SGI_MSK)
1334 r->flags |= IEEE80211_TX_RC_SHORT_GI;
1335 r->idx = iwlagn_hwrate_to_mac80211_idx(rate_n_flags, info->band);
1336}
1337
1338/**
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001339 * iwlagn_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA
1340 *
1341 * Handles block-acknowledge notification from device, which reports success
1342 * of frames sent via aggregation.
1343 */
1344void iwlagn_rx_reply_compressed_ba(struct iwl_priv *priv,
1345 struct iwl_rx_mem_buffer *rxb)
1346{
1347 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1348 struct iwl_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
1349 struct iwl_tx_queue *txq = NULL;
1350 struct iwl_ht_agg *agg;
1351 int index;
1352 int sta_id;
1353 int tid;
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001354 unsigned long flags;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001355
1356 /* "flow" corresponds to Tx queue */
1357 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1358
1359 /* "ssn" is start of block-ack Tx window, corresponds to index
1360 * (in Tx queue's circular buffer) of first TFD/frame in window */
1361 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
1362
1363 if (scd_flow >= priv->hw_params.max_txq_num) {
1364 IWL_ERR(priv,
1365 "BUG_ON scd_flow is bigger than number of queues\n");
1366 return;
1367 }
1368
1369 txq = &priv->txq[scd_flow];
1370 sta_id = ba_resp->sta_id;
1371 tid = ba_resp->tid;
1372 agg = &priv->stations[sta_id].tid[tid].agg;
Shanyu Zhaob561e822010-06-01 17:13:58 -07001373 if (unlikely(agg->txq_id != scd_flow)) {
Wey-Yi Guy735df292010-07-31 08:34:11 -07001374 /*
1375 * FIXME: this is a uCode bug which need to be addressed,
1376 * log the information and return for now!
1377 * since it is possible happen very often and in order
1378 * not to fill the syslog, don't enable the logging by default
1379 */
1380 IWL_DEBUG_TX_REPLY(priv,
1381 "BA scd_flow %d does not match txq_id %d\n",
Shanyu Zhaob561e822010-06-01 17:13:58 -07001382 scd_flow, agg->txq_id);
1383 return;
1384 }
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001385
1386 /* Find index just before block-ack window */
1387 index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
1388
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001389 spin_lock_irqsave(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001390
1391 IWL_DEBUG_TX_REPLY(priv, "REPLY_COMPRESSED_BA [%d] Received from %pM, "
1392 "sta_id = %d\n",
1393 agg->wait_for_ba,
1394 (u8 *) &ba_resp->sta_addr_lo32,
1395 ba_resp->sta_id);
1396 IWL_DEBUG_TX_REPLY(priv, "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = "
1397 "%d, scd_ssn = %d\n",
1398 ba_resp->tid,
1399 ba_resp->seq_ctl,
1400 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
1401 ba_resp->scd_flow,
1402 ba_resp->scd_ssn);
Frans Pop91dd6c22010-03-24 14:19:58 -07001403 IWL_DEBUG_TX_REPLY(priv, "DAT start_idx = %d, bitmap = 0x%llx\n",
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001404 agg->start_idx,
1405 (unsigned long long)agg->bitmap);
1406
1407 /* Update driver's record of ACK vs. not for each frame in window */
1408 iwlagn_tx_status_reply_compressed_ba(priv, agg, ba_resp);
1409
1410 /* Release all TFDs before the SSN, i.e. all TFDs in front of
1411 * block-ack window (we assume that they've been successfully
1412 * transmitted ... if not, it's too late anyway). */
1413 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
1414 /* calculate mac80211 ampdu sw queue to wake */
1415 int freed = iwlagn_tx_queue_reclaim(priv, scd_flow, index);
1416 iwl_free_tfds_in_queue(priv, sta_id, tid, freed);
1417
1418 if ((iwl_queue_space(&txq->q) > txq->q.low_mark) &&
1419 priv->mac80211_registered &&
1420 (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA))
Johannes Berg549a04e2010-11-10 18:25:44 -08001421 iwl_wake_queue(priv, txq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001422
1423 iwlagn_txq_check_empty(priv, sta_id, tid, scd_flow);
1424 }
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001425
1426 spin_unlock_irqrestore(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001427}
Johannes Berg69fdb712010-09-22 18:02:02 +02001428
1429#ifdef CONFIG_IWLWIFI_DEBUG
1430const char *iwl_get_tx_fail_reason(u32 status)
1431{
1432#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
1433#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
1434
1435 switch (status & TX_STATUS_MSK) {
1436 case TX_STATUS_SUCCESS:
1437 return "SUCCESS";
1438 TX_STATUS_POSTPONE(DELAY);
1439 TX_STATUS_POSTPONE(FEW_BYTES);
1440 TX_STATUS_POSTPONE(BT_PRIO);
1441 TX_STATUS_POSTPONE(QUIET_PERIOD);
1442 TX_STATUS_POSTPONE(CALC_TTAK);
1443 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
1444 TX_STATUS_FAIL(SHORT_LIMIT);
1445 TX_STATUS_FAIL(LONG_LIMIT);
1446 TX_STATUS_FAIL(FIFO_UNDERRUN);
1447 TX_STATUS_FAIL(DRAIN_FLOW);
1448 TX_STATUS_FAIL(RFKILL_FLUSH);
1449 TX_STATUS_FAIL(LIFE_EXPIRE);
1450 TX_STATUS_FAIL(DEST_PS);
1451 TX_STATUS_FAIL(HOST_ABORTED);
1452 TX_STATUS_FAIL(BT_RETRY);
1453 TX_STATUS_FAIL(STA_INVALID);
1454 TX_STATUS_FAIL(FRAG_DROPPED);
1455 TX_STATUS_FAIL(TID_DISABLE);
1456 TX_STATUS_FAIL(FIFO_FLUSHED);
1457 TX_STATUS_FAIL(INSUFFICIENT_CF_POLL);
1458 TX_STATUS_FAIL(PASSIVE_NO_RX);
1459 TX_STATUS_FAIL(NO_BEACON_ON_RADAR);
1460 }
1461
1462 return "UNKNOWN";
1463
1464#undef TX_STATUS_FAIL
1465#undef TX_STATUS_POSTPONE
1466}
1467#endif /* CONFIG_IWLWIFI_DEBUG */