blob: 2816b432c62fb23a906361ffd1de533eb9f09d2c [file] [log] [blame]
Wey-Yi Guyb305a082010-03-16 17:41:22 -07001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
Wey-Yi Guy901069c2011-04-05 09:42:00 -07005 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
Wey-Yi Guyb305a082010-03-16 17:41:22 -07006 *
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[] = {
Johannes Berg0c4ac342010-11-17 11:33:27 -080070 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
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -070078};
79
Shanyu Zhaoc2845d02010-04-14 15:35:14 -070080static inline int get_ac_from_tid(u16 tid)
81{
82 if (likely(tid < ARRAY_SIZE(tid_to_ac)))
83 return tid_to_ac[tid];
84
85 /* no support for TIDs 8-15 yet */
86 return -EINVAL;
87}
88
Johannes Berge72f3682010-08-23 10:46:51 +020089static inline int get_fifo_from_tid(struct iwl_rxon_context *ctx, u16 tid)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -070090{
91 if (likely(tid < ARRAY_SIZE(tid_to_ac)))
Johannes Berge72f3682010-08-23 10:46:51 +020092 return ctx->ac_to_fifo[tid_to_ac[tid]];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -070093
94 /* no support for TIDs 8-15 yet */
95 return -EINVAL;
96}
97
Wey-Yi Guyb305a082010-03-16 17:41:22 -070098/**
99 * iwlagn_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
100 */
101void iwlagn_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
102 struct iwl_tx_queue *txq,
103 u16 byte_cnt)
104{
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700105 struct iwlagn_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr;
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700106 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;
112
113 WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX);
114
Johannes Berg13bb9482010-08-23 10:46:33 +0200115 if (txq_id != priv->cmd_queue) {
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700116 sta_id = txq->cmd[txq->q.write_ptr]->cmd.tx.sta_id;
117 sec_ctl = txq->cmd[txq->q.write_ptr]->cmd.tx.sec_ctl;
118
119 switch (sec_ctl & TX_CMD_SEC_MSK) {
120 case TX_CMD_SEC_CCM:
121 len += CCMP_MIC_LEN;
122 break;
123 case TX_CMD_SEC_TKIP:
124 len += TKIP_ICV_LEN;
125 break;
126 case TX_CMD_SEC_WEP:
127 len += WEP_IV_LEN + WEP_ICV_LEN;
128 break;
129 }
130 }
131
132 bc_ent = cpu_to_le16((len & 0xFFF) | (sta_id << 12));
133
134 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
135
136 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
137 scd_bc_tbl[txq_id].
138 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
139}
140
141void iwlagn_txq_inval_byte_cnt_tbl(struct iwl_priv *priv,
142 struct iwl_tx_queue *txq)
143{
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700144 struct iwlagn_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr;
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700145 int txq_id = txq->q.id;
146 int read_ptr = txq->q.read_ptr;
147 u8 sta_id = 0;
148 __le16 bc_ent;
149
150 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
151
Johannes Berg13bb9482010-08-23 10:46:33 +0200152 if (txq_id != priv->cmd_queue)
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700153 sta_id = txq->cmd[read_ptr]->cmd.tx.sta_id;
154
155 bc_ent = cpu_to_le16(1 | (sta_id << 12));
156 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
157
158 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
159 scd_bc_tbl[txq_id].
160 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
161}
162
163static int iwlagn_tx_queue_set_q2ratid(struct iwl_priv *priv, u16 ra_tid,
164 u16 txq_id)
165{
166 u32 tbl_dw_addr;
167 u32 tbl_dw;
168 u16 scd_q2ratid;
169
170 scd_q2ratid = ra_tid & IWL_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
171
172 tbl_dw_addr = priv->scd_base_addr +
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700173 IWLAGN_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700174
175 tbl_dw = iwl_read_targ_mem(priv, tbl_dw_addr);
176
177 if (txq_id & 0x1)
178 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
179 else
180 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
181
182 iwl_write_targ_mem(priv, tbl_dw_addr, tbl_dw);
183
184 return 0;
185}
186
187static void iwlagn_tx_queue_stop_scheduler(struct iwl_priv *priv, u16 txq_id)
188{
189 /* Simply stop the queue, but don't change any configuration;
190 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
191 iwl_write_prph(priv,
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700192 IWLAGN_SCD_QUEUE_STATUS_BITS(txq_id),
193 (0 << IWLAGN_SCD_QUEUE_STTS_REG_POS_ACTIVE)|
194 (1 << IWLAGN_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700195}
196
197void iwlagn_set_wr_ptrs(struct iwl_priv *priv,
198 int txq_id, u32 index)
199{
200 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
201 (index & 0xff) | (txq_id << 8));
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700202 iwl_write_prph(priv, IWLAGN_SCD_QUEUE_RDPTR(txq_id), index);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700203}
204
205void iwlagn_tx_queue_set_status(struct iwl_priv *priv,
206 struct iwl_tx_queue *txq,
207 int tx_fifo_id, int scd_retry)
208{
209 int txq_id = txq->q.id;
210 int active = test_bit(txq_id, &priv->txq_ctx_active_msk) ? 1 : 0;
211
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700212 iwl_write_prph(priv, IWLAGN_SCD_QUEUE_STATUS_BITS(txq_id),
213 (active << IWLAGN_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
214 (tx_fifo_id << IWLAGN_SCD_QUEUE_STTS_REG_POS_TXF) |
215 (1 << IWLAGN_SCD_QUEUE_STTS_REG_POS_WSL) |
216 IWLAGN_SCD_QUEUE_STTS_REG_MSK);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700217
218 txq->sched_retry = scd_retry;
219
220 IWL_DEBUG_INFO(priv, "%s %s Queue %d on FIFO %d\n",
221 active ? "Activate" : "Deactivate",
222 scd_retry ? "BA" : "AC/CMD", txq_id, tx_fifo_id);
223}
224
Johannes Bergc8823ec2011-03-15 11:33:03 -0700225static int iwlagn_txq_agg_enable(struct iwl_priv *priv, int txq_id, int sta_id, int tid)
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700226{
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700227 if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) ||
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700228 (IWLAGN_FIRST_AMPDU_QUEUE +
229 priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700230 IWL_WARN(priv,
231 "queue number out of range: %d, must be %d to %d\n",
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700232 txq_id, IWLAGN_FIRST_AMPDU_QUEUE,
233 IWLAGN_FIRST_AMPDU_QUEUE +
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700234 priv->cfg->base_params->num_of_ampdu_queues - 1);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700235 return -EINVAL;
236 }
237
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700238 /* Modify device's station table to Tx this TID */
Johannes Bergc8823ec2011-03-15 11:33:03 -0700239 return iwl_sta_tx_modify_enable_tid(priv, sta_id, tid);
240}
241
242void iwlagn_txq_agg_queue_setup(struct iwl_priv *priv,
243 struct ieee80211_sta *sta,
244 int tid, int frame_limit)
245{
246 int sta_id, tx_fifo, txq_id, ssn_idx;
247 u16 ra_tid;
248 unsigned long flags;
249 struct iwl_tid_data *tid_data;
250
251 sta_id = iwl_sta_id(sta);
252 if (WARN_ON(sta_id == IWL_INVALID_STATION))
253 return;
254 if (WARN_ON(tid >= MAX_TID_COUNT))
255 return;
256
257 spin_lock_irqsave(&priv->sta_lock, flags);
258 tid_data = &priv->stations[sta_id].tid[tid];
259 ssn_idx = SEQ_TO_SN(tid_data->seq_number);
260 txq_id = tid_data->agg.txq_id;
261 tx_fifo = tid_data->agg.tx_fifo;
262 spin_unlock_irqrestore(&priv->sta_lock, flags);
263
264 ra_tid = BUILD_RAxTID(sta_id, tid);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700265
266 spin_lock_irqsave(&priv->lock, flags);
267
268 /* Stop this Tx queue before configuring it */
269 iwlagn_tx_queue_stop_scheduler(priv, txq_id);
270
271 /* Map receiver-address / traffic-ID to this queue */
272 iwlagn_tx_queue_set_q2ratid(priv, ra_tid, txq_id);
273
274 /* Set this queue as a chain-building queue */
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700275 iwl_set_bits_prph(priv, IWLAGN_SCD_QUEUECHAIN_SEL, (1<<txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700276
277 /* enable aggregations for the queue */
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700278 iwl_set_bits_prph(priv, IWLAGN_SCD_AGGR_SEL, (1<<txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700279
280 /* Place first TFD at index corresponding to start sequence number.
281 * Assumes that ssn_idx is valid (!= 0xFFF) */
282 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
283 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
284 iwlagn_set_wr_ptrs(priv, txq_id, ssn_idx);
285
286 /* Set up Tx window size and frame limit for this queue */
287 iwl_write_targ_mem(priv, priv->scd_base_addr +
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700288 IWLAGN_SCD_CONTEXT_QUEUE_OFFSET(txq_id) +
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700289 sizeof(u32),
Johannes Bergc8823ec2011-03-15 11:33:03 -0700290 ((frame_limit <<
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700291 IWLAGN_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
292 IWLAGN_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
Johannes Bergc8823ec2011-03-15 11:33:03 -0700293 ((frame_limit <<
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700294 IWLAGN_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
295 IWLAGN_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700296
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700297 iwl_set_bits_prph(priv, IWLAGN_SCD_INTERRUPT_MASK, (1 << txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700298
299 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
300 iwlagn_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 1);
301
302 spin_unlock_irqrestore(&priv->lock, flags);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700303}
304
Johannes Berg7ffef132011-03-15 04:59:10 -0700305static int iwlagn_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
306 u16 ssn_idx, u8 tx_fifo)
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700307{
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700308 if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) ||
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700309 (IWLAGN_FIRST_AMPDU_QUEUE +
310 priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700311 IWL_ERR(priv,
312 "queue number out of range: %d, must be %d to %d\n",
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700313 txq_id, IWLAGN_FIRST_AMPDU_QUEUE,
314 IWLAGN_FIRST_AMPDU_QUEUE +
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700315 priv->cfg->base_params->num_of_ampdu_queues - 1);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700316 return -EINVAL;
317 }
318
319 iwlagn_tx_queue_stop_scheduler(priv, txq_id);
320
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700321 iwl_clear_bits_prph(priv, IWLAGN_SCD_AGGR_SEL, (1 << txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700322
323 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
324 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
325 /* supposes that ssn_idx is valid (!= 0xFFF) */
326 iwlagn_set_wr_ptrs(priv, txq_id, ssn_idx);
327
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700328 iwl_clear_bits_prph(priv, IWLAGN_SCD_INTERRUPT_MASK, (1 << txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700329 iwl_txq_ctx_deactivate(priv, txq_id);
330 iwlagn_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 0);
331
332 return 0;
333}
334
335/*
336 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
337 * must be called under priv->lock and mac access
338 */
339void iwlagn_txq_set_sched(struct iwl_priv *priv, u32 mask)
340{
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700341 iwl_write_prph(priv, IWLAGN_SCD_TXFACT, mask);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700342}
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700343
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700344/*
345 * handle build REPLY_TX command notification.
346 */
347static void iwlagn_tx_cmd_build_basic(struct iwl_priv *priv,
Johannes Bergd44ae692010-08-23 07:56:56 -0700348 struct sk_buff *skb,
349 struct iwl_tx_cmd *tx_cmd,
350 struct ieee80211_tx_info *info,
351 struct ieee80211_hdr *hdr,
352 u8 std_id)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700353{
354 __le16 fc = hdr->frame_control;
355 __le32 tx_flags = tx_cmd->tx_flags;
356
357 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
358 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
359 tx_flags |= TX_CMD_FLG_ACK_MSK;
360 if (ieee80211_is_mgmt(fc))
361 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
362 if (ieee80211_is_probe_resp(fc) &&
363 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
364 tx_flags |= TX_CMD_FLG_TSF_MSK;
365 } else {
366 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
367 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
368 }
369
370 if (ieee80211_is_back_req(fc))
371 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
Johannes Bergd44ae692010-08-23 07:56:56 -0700372 else if (info->band == IEEE80211_BAND_2GHZ &&
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700373 priv->cfg->bt_params &&
374 priv->cfg->bt_params->advanced_bt_coexist &&
Johannes Bergd44ae692010-08-23 07:56:56 -0700375 (ieee80211_is_auth(fc) || ieee80211_is_assoc_req(fc) ||
376 ieee80211_is_reassoc_req(fc) ||
377 skb->protocol == cpu_to_be16(ETH_P_PAE)))
378 tx_flags |= TX_CMD_FLG_IGNORE_BT;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700379
380
381 tx_cmd->sta_id = std_id;
382 if (ieee80211_has_morefrags(fc))
383 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
384
385 if (ieee80211_is_data_qos(fc)) {
386 u8 *qc = ieee80211_get_qos_ctl(hdr);
387 tx_cmd->tid_tspec = qc[0] & 0xf;
388 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
389 } else {
390 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
391 }
392
Johannes Berg94597ab2010-08-09 10:57:02 -0700393 priv->cfg->ops->utils->tx_cmd_protection(priv, info, fc, &tx_flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700394
395 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
396 if (ieee80211_is_mgmt(fc)) {
397 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
398 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
399 else
400 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
401 } else {
402 tx_cmd->timeout.pm_frame_timeout = 0;
403 }
404
405 tx_cmd->driver_txop = 0;
406 tx_cmd->tx_flags = tx_flags;
407 tx_cmd->next_frame_len = 0;
408}
409
410#define RTS_DFAULT_RETRY_LIMIT 60
411
412static void iwlagn_tx_cmd_build_rate(struct iwl_priv *priv,
413 struct iwl_tx_cmd *tx_cmd,
414 struct ieee80211_tx_info *info,
415 __le16 fc)
416{
417 u32 rate_flags;
418 int rate_idx;
419 u8 rts_retry_limit;
420 u8 data_retry_limit;
421 u8 rate_plcp;
422
423 /* Set retry limit on DATA packets and Probe Responses*/
424 if (ieee80211_is_probe_resp(fc))
425 data_retry_limit = 3;
426 else
Wey-Yi Guyb744cb72010-03-23 11:37:59 -0700427 data_retry_limit = IWLAGN_DEFAULT_TX_RETRY;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700428 tx_cmd->data_retry_limit = data_retry_limit;
429
430 /* Set retry limit on RTS packets */
431 rts_retry_limit = RTS_DFAULT_RETRY_LIMIT;
432 if (data_retry_limit < rts_retry_limit)
433 rts_retry_limit = data_retry_limit;
434 tx_cmd->rts_retry_limit = rts_retry_limit;
435
436 /* DATA packets will use the uCode station table for rate/antenna
437 * selection */
438 if (ieee80211_is_data(fc)) {
439 tx_cmd->initial_rate_index = 0;
440 tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
441 return;
442 }
443
444 /**
445 * If the current TX rate stored in mac80211 has the MCS bit set, it's
446 * not really a TX rate. Thus, we use the lowest supported rate for
447 * this band. Also use the lowest supported rate if the stored rate
448 * index is invalid.
449 */
450 rate_idx = info->control.rates[0].idx;
451 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS ||
452 (rate_idx < 0) || (rate_idx > IWL_RATE_COUNT_LEGACY))
453 rate_idx = rate_lowest_index(&priv->bands[info->band],
454 info->control.sta);
455 /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
456 if (info->band == IEEE80211_BAND_5GHZ)
457 rate_idx += IWL_FIRST_OFDM_RATE;
458 /* Get PLCP rate for tx_cmd->rate_n_flags */
459 rate_plcp = iwl_rates[rate_idx].plcp;
460 /* Zero out flags for this packet */
461 rate_flags = 0;
462
463 /* Set CCK flag as needed */
464 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
465 rate_flags |= RATE_MCS_CCK_MSK;
466
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700467 /* Set up antennas */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700468 if (priv->cfg->bt_params &&
469 priv->cfg->bt_params->advanced_bt_coexist &&
470 priv->bt_full_concurrent) {
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700471 /* operated as 1x1 in full concurrency mode */
472 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
473 first_antenna(priv->hw_params.valid_tx_ant));
474 } else
475 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
Johannes Berg0e1654f2010-05-18 02:48:36 -0700476 priv->hw_params.valid_tx_ant);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700477 rate_flags |= iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
478
479 /* Set the rate in the TX cmd */
480 tx_cmd->rate_n_flags = iwl_hw_set_rate_n_flags(rate_plcp, rate_flags);
481}
482
483static void iwlagn_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
484 struct ieee80211_tx_info *info,
485 struct iwl_tx_cmd *tx_cmd,
486 struct sk_buff *skb_frag,
487 int sta_id)
488{
489 struct ieee80211_key_conf *keyconf = info->control.hw_key;
490
Johannes Berg97359d12010-08-10 09:46:38 +0200491 switch (keyconf->cipher) {
492 case WLAN_CIPHER_SUITE_CCMP:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700493 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
494 memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
495 if (info->flags & IEEE80211_TX_CTL_AMPDU)
496 tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
497 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
498 break;
499
Johannes Berg97359d12010-08-10 09:46:38 +0200500 case WLAN_CIPHER_SUITE_TKIP:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700501 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
502 ieee80211_get_tkip_key(keyconf, skb_frag,
503 IEEE80211_TKIP_P2_KEY, tx_cmd->key);
504 IWL_DEBUG_TX(priv, "tx_cmd with tkip hwcrypto\n");
505 break;
506
Johannes Berg97359d12010-08-10 09:46:38 +0200507 case WLAN_CIPHER_SUITE_WEP104:
508 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
509 /* fall through */
510 case WLAN_CIPHER_SUITE_WEP40:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700511 tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP |
512 (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
513
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700514 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
515
516 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
517 "with key %d\n", keyconf->keyidx);
518 break;
519
520 default:
Johannes Berg97359d12010-08-10 09:46:38 +0200521 IWL_ERR(priv, "Unknown encode cipher %x\n", keyconf->cipher);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700522 break;
523 }
524}
525
526/*
527 * start REPLY_TX command process
528 */
529int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
530{
531 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
532 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
533 struct ieee80211_sta *sta = info->control.sta;
534 struct iwl_station_priv *sta_priv = NULL;
535 struct iwl_tx_queue *txq;
536 struct iwl_queue *q;
537 struct iwl_device_cmd *out_cmd;
538 struct iwl_cmd_meta *out_meta;
539 struct iwl_tx_cmd *tx_cmd;
Johannes Berga194e322010-08-27 08:53:46 -0700540 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Johannes Berg8d563962010-11-10 18:25:42 -0800541 int txq_id;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700542 dma_addr_t phys_addr;
543 dma_addr_t txcmd_phys;
544 dma_addr_t scratch_phys;
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100545 u16 len, firstlen, secondlen;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700546 u16 seq_number = 0;
547 __le16 fc;
548 u8 hdr_len;
549 u8 sta_id;
550 u8 wait_write_ptr = 0;
551 u8 tid = 0;
552 u8 *qc = NULL;
553 unsigned long flags;
Johannes Berg2e340342010-11-16 11:51:38 -0800554 bool is_agg = false;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700555
Johannes Berg9b9190d2011-01-06 08:07:10 -0800556 /*
557 * If the frame needs to go out off-channel, then
558 * we'll have put the PAN context to that channel,
559 * so make the frame go out there.
560 */
561 if (info->flags & IEEE80211_TX_CTL_TX_OFFCHAN)
562 ctx = &priv->contexts[IWL_RXON_CTX_PAN];
563 else if (info->control.vif)
Johannes Berga194e322010-08-27 08:53:46 -0700564 ctx = iwl_rxon_ctx_from_vif(info->control.vif);
565
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700566 spin_lock_irqsave(&priv->lock, flags);
567 if (iwl_is_rfkill(priv)) {
568 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
569 goto drop_unlock;
570 }
571
572 fc = hdr->frame_control;
573
574#ifdef CONFIG_IWLWIFI_DEBUG
575 if (ieee80211_is_auth(fc))
576 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
577 else if (ieee80211_is_assoc_req(fc))
578 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
579 else if (ieee80211_is_reassoc_req(fc))
580 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
581#endif
582
583 hdr_len = ieee80211_hdrlen(fc);
584
Johannes Berg2a87c262010-04-30 11:30:45 -0700585 /* Find index into station table for destination station */
Johannes Berga194e322010-08-27 08:53:46 -0700586 sta_id = iwl_sta_id_or_broadcast(priv, ctx, info->control.sta);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700587 if (sta_id == IWL_INVALID_STATION) {
588 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
589 hdr->addr1);
590 goto drop_unlock;
591 }
592
593 IWL_DEBUG_TX(priv, "station Id %d\n", sta_id);
594
595 if (sta)
596 sta_priv = (void *)sta->drv_priv;
597
Johannes Berg67158b62010-11-16 11:51:04 -0800598 if (sta_priv && sta_priv->asleep &&
599 (info->flags & IEEE80211_TX_CTL_PSPOLL_RESPONSE)) {
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700600 /*
601 * This sends an asynchronous command to the device,
602 * but we can rely on it being processed before the
603 * next frame is processed -- and the next frame to
604 * this station is the one that will consume this
605 * counter.
606 * For now set the counter to just 1 since we do not
607 * support uAPSD yet.
608 */
609 iwl_sta_modify_sleep_tx_count(priv, sta_id, 1);
610 }
611
Johannes Berge72f3682010-08-23 10:46:51 +0200612 /*
613 * Send this frame after DTIM -- there's a special queue
614 * reserved for this for contexts that support AP mode.
615 */
616 if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
617 txq_id = ctx->mcast_queue;
618 /*
619 * The microcode will clear the more data
620 * bit in the last frame it transmits.
621 */
622 hdr->frame_control |=
623 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
624 } else
625 txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)];
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700626
627 /* irqs already disabled/saved above when locking priv->lock */
628 spin_lock(&priv->sta_lock);
629
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700630 if (ieee80211_is_data_qos(fc)) {
631 qc = ieee80211_get_qos_ctl(hdr);
632 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700633 if (WARN_ON_ONCE(tid >= MAX_TID_COUNT)) {
634 spin_unlock(&priv->sta_lock);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700635 goto drop_unlock;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700636 }
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700637 seq_number = priv->stations[sta_id].tid[tid].seq_number;
638 seq_number &= IEEE80211_SCTL_SEQ;
639 hdr->seq_ctrl = hdr->seq_ctrl &
640 cpu_to_le16(IEEE80211_SCTL_FRAG);
641 hdr->seq_ctrl |= cpu_to_le16(seq_number);
642 seq_number += 0x10;
643 /* aggregation is on for this <sta,tid> */
644 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
645 priv->stations[sta_id].tid[tid].agg.state == IWL_AGG_ON) {
646 txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
Johannes Berg2e340342010-11-16 11:51:38 -0800647 is_agg = true;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700648 }
649 }
650
651 txq = &priv->txq[txq_id];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700652 q = &txq->q;
653
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700654 if (unlikely(iwl_queue_space(q) < q->high_mark)) {
655 spin_unlock(&priv->sta_lock);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700656 goto drop_unlock;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700657 }
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700658
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700659 if (ieee80211_is_data_qos(fc)) {
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700660 priv->stations[sta_id].tid[tid].tfds_in_queue++;
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700661 if (!ieee80211_has_morefrags(fc))
662 priv->stations[sta_id].tid[tid].seq_number = seq_number;
663 }
664
665 spin_unlock(&priv->sta_lock);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700666
667 /* Set up driver data for this TFD */
668 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Johannes Bergff0d91c2010-05-17 02:37:34 -0700669 txq->txb[q->write_ptr].skb = skb;
Johannes Bergc90cbbb2010-08-23 10:46:39 +0200670 txq->txb[q->write_ptr].ctx = ctx;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700671
672 /* Set up first empty entry in queue's array of Tx/cmd buffers */
673 out_cmd = txq->cmd[q->write_ptr];
674 out_meta = &txq->meta[q->write_ptr];
675 tx_cmd = &out_cmd->cmd.tx;
676 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
677 memset(tx_cmd, 0, sizeof(struct iwl_tx_cmd));
678
679 /*
680 * Set up the Tx-command (not MAC!) header.
681 * Store the chosen Tx queue and TFD index within the sequence field;
682 * after Tx, uCode's Tx response will return this value so driver can
683 * locate the frame within the tx queue and do post-tx processing.
684 */
685 out_cmd->hdr.cmd = REPLY_TX;
686 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
687 INDEX_TO_SEQ(q->write_ptr)));
688
689 /* Copy MAC header from skb into command buffer */
690 memcpy(tx_cmd->hdr, hdr, hdr_len);
691
692
693 /* Total # bytes to be transmitted */
694 len = (u16)skb->len;
695 tx_cmd->len = cpu_to_le16(len);
696
697 if (info->control.hw_key)
698 iwlagn_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id);
699
700 /* TODO need this for burst mode later on */
Johannes Bergd44ae692010-08-23 07:56:56 -0700701 iwlagn_tx_cmd_build_basic(priv, skb, tx_cmd, info, hdr, sta_id);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700702 iwl_dbg_log_tx_data_frame(priv, len, hdr);
703
704 iwlagn_tx_cmd_build_rate(priv, tx_cmd, info, fc);
705
706 iwl_update_stats(priv, true, fc, len);
707 /*
708 * Use the first empty entry in this queue's command buffer array
709 * to contain the Tx command and MAC header concatenated together
710 * (payload data will be in another buffer).
711 * Size of this varies, due to varying MAC header length.
712 * If end is not dword aligned, we'll have 2 extra bytes at the end
713 * of the MAC header (device reads on dword boundaries).
714 * We'll tell device about this padding later.
715 */
716 len = sizeof(struct iwl_tx_cmd) +
717 sizeof(struct iwl_cmd_header) + hdr_len;
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100718 firstlen = (len + 3) & ~3;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700719
720 /* Tell NIC about any 2-byte padding after MAC header */
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100721 if (firstlen != len)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700722 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
723
724 /* Physical address of this Tx command's header (not MAC header!),
725 * within command buffer array. */
726 txcmd_phys = pci_map_single(priv->pci_dev,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100727 &out_cmd->hdr, firstlen,
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700728 PCI_DMA_BIDIRECTIONAL);
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900729 dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100730 dma_unmap_len_set(out_meta, len, firstlen);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700731 /* Add buffer containing Tx command and MAC(!) header to TFD's
732 * first entry */
733 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100734 txcmd_phys, firstlen, 1, 0);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700735
736 if (!ieee80211_has_morefrags(hdr->frame_control)) {
737 txq->need_update = 1;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700738 } else {
739 wait_write_ptr = 1;
740 txq->need_update = 0;
741 }
742
743 /* Set up TFD's 2nd entry to point directly to remainder of skb,
744 * if any (802.11 null frames have no payload). */
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100745 secondlen = skb->len - hdr_len;
746 if (secondlen > 0) {
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700747 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100748 secondlen, PCI_DMA_TODEVICE);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700749 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100750 phys_addr, secondlen,
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700751 0, 0);
752 }
753
754 scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
755 offsetof(struct iwl_tx_cmd, scratch);
756
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700757 /* take back ownership of DMA buffer to enable update */
758 pci_dma_sync_single_for_cpu(priv->pci_dev, txcmd_phys,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100759 firstlen, PCI_DMA_BIDIRECTIONAL);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700760 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
761 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
762
Frans Pop91dd6c22010-03-24 14:19:58 -0700763 IWL_DEBUG_TX(priv, "sequence nr = 0X%x\n",
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700764 le16_to_cpu(out_cmd->hdr.sequence));
Frans Pop91dd6c22010-03-24 14:19:58 -0700765 IWL_DEBUG_TX(priv, "tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700766 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
767 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
768
769 /* Set up entry for this TFD in Tx byte-count array */
770 if (info->flags & IEEE80211_TX_CTL_AMPDU)
771 priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq,
772 le16_to_cpu(tx_cmd->len));
773
774 pci_dma_sync_single_for_device(priv->pci_dev, txcmd_phys,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100775 firstlen, PCI_DMA_BIDIRECTIONAL);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700776
777 trace_iwlwifi_dev_tx(priv,
778 &((struct iwl_tfd *)txq->tfds)[txq->q.write_ptr],
779 sizeof(struct iwl_tfd),
780 &out_cmd->hdr, firstlen,
781 skb->data + hdr_len, secondlen);
782
783 /* Tell device the write index *just past* this latest filled TFD */
784 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
785 iwl_txq_update_write_ptr(priv, txq);
786 spin_unlock_irqrestore(&priv->lock, flags);
787
788 /*
789 * At this point the frame is "transmitted" successfully
790 * and we will get a TX status notification eventually,
791 * regardless of the value of ret. "ret" only indicates
792 * whether or not we should update the write pointer.
793 */
794
Johannes Berg2e340342010-11-16 11:51:38 -0800795 /*
796 * Avoid atomic ops if it isn't an associated client.
797 * Also, if this is a packet for aggregation, don't
798 * increase the counter because the ucode will stop
799 * aggregation queues when their respective station
800 * goes to sleep.
801 */
802 if (sta_priv && sta_priv->client && !is_agg)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700803 atomic_inc(&sta_priv->pending_frames);
804
805 if ((iwl_queue_space(q) < q->high_mark) && priv->mac80211_registered) {
806 if (wait_write_ptr) {
807 spin_lock_irqsave(&priv->lock, flags);
808 txq->need_update = 1;
809 iwl_txq_update_write_ptr(priv, txq);
810 spin_unlock_irqrestore(&priv->lock, flags);
811 } else {
Johannes Berg549a04e2010-11-10 18:25:44 -0800812 iwl_stop_queue(priv, txq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700813 }
814 }
815
816 return 0;
817
818drop_unlock:
819 spin_unlock_irqrestore(&priv->lock, flags);
820 return -1;
821}
822
823static inline int iwlagn_alloc_dma_ptr(struct iwl_priv *priv,
824 struct iwl_dma_ptr *ptr, size_t size)
825{
826 ptr->addr = dma_alloc_coherent(&priv->pci_dev->dev, size, &ptr->dma,
827 GFP_KERNEL);
828 if (!ptr->addr)
829 return -ENOMEM;
830 ptr->size = size;
831 return 0;
832}
833
834static inline void iwlagn_free_dma_ptr(struct iwl_priv *priv,
835 struct iwl_dma_ptr *ptr)
836{
837 if (unlikely(!ptr->addr))
838 return;
839
840 dma_free_coherent(&priv->pci_dev->dev, ptr->size, ptr->addr, ptr->dma);
841 memset(ptr, 0, sizeof(*ptr));
842}
843
844/**
845 * iwlagn_hw_txq_ctx_free - Free TXQ Context
846 *
847 * Destroy all TX DMA queues and structures
848 */
849void iwlagn_hw_txq_ctx_free(struct iwl_priv *priv)
850{
851 int txq_id;
852
853 /* Tx queues */
854 if (priv->txq) {
Zhu Yi470058e2010-04-02 13:38:54 -0700855 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
Johannes Berg13bb9482010-08-23 10:46:33 +0200856 if (txq_id == priv->cmd_queue)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700857 iwl_cmd_queue_free(priv);
858 else
859 iwl_tx_queue_free(priv, txq_id);
860 }
861 iwlagn_free_dma_ptr(priv, &priv->kw);
862
863 iwlagn_free_dma_ptr(priv, &priv->scd_bc_tbls);
864
865 /* free tx queue structure */
866 iwl_free_txq_mem(priv);
867}
868
869/**
Zhu Yi470058e2010-04-02 13:38:54 -0700870 * iwlagn_txq_ctx_alloc - allocate TX queue context
871 * Allocate all Tx DMA structures and initialize them
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700872 *
873 * @param priv
874 * @return error code
875 */
Zhu Yi470058e2010-04-02 13:38:54 -0700876int iwlagn_txq_ctx_alloc(struct iwl_priv *priv)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700877{
Zhu Yi470058e2010-04-02 13:38:54 -0700878 int ret;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700879 int txq_id, slots_num;
880 unsigned long flags;
881
882 /* Free all tx/cmd queues and keep-warm buffer */
883 iwlagn_hw_txq_ctx_free(priv);
884
885 ret = iwlagn_alloc_dma_ptr(priv, &priv->scd_bc_tbls,
886 priv->hw_params.scd_bc_tbls_size);
887 if (ret) {
888 IWL_ERR(priv, "Scheduler BC Table allocation failed\n");
889 goto error_bc_tbls;
890 }
891 /* Alloc keep-warm buffer */
892 ret = iwlagn_alloc_dma_ptr(priv, &priv->kw, IWL_KW_SIZE);
893 if (ret) {
894 IWL_ERR(priv, "Keep Warm allocation failed\n");
895 goto error_kw;
896 }
897
898 /* allocate tx queue structure */
899 ret = iwl_alloc_txq_mem(priv);
900 if (ret)
901 goto error;
902
903 spin_lock_irqsave(&priv->lock, flags);
904
905 /* Turn off all Tx DMA fifos */
906 priv->cfg->ops->lib->txq_set_sched(priv, 0);
907
908 /* Tell NIC where to find the "keep warm" buffer */
909 iwl_write_direct32(priv, FH_KW_MEM_ADDR_REG, priv->kw.dma >> 4);
910
911 spin_unlock_irqrestore(&priv->lock, flags);
912
Johannes Berg13bb9482010-08-23 10:46:33 +0200913 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700914 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
Johannes Berg13bb9482010-08-23 10:46:33 +0200915 slots_num = (txq_id == priv->cmd_queue) ?
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700916 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
917 ret = iwl_tx_queue_init(priv, &priv->txq[txq_id], slots_num,
918 txq_id);
919 if (ret) {
920 IWL_ERR(priv, "Tx %d queue init failed\n", txq_id);
921 goto error;
922 }
923 }
924
925 return ret;
926
927 error:
928 iwlagn_hw_txq_ctx_free(priv);
929 iwlagn_free_dma_ptr(priv, &priv->kw);
930 error_kw:
931 iwlagn_free_dma_ptr(priv, &priv->scd_bc_tbls);
932 error_bc_tbls:
933 return ret;
934}
935
Zhu Yi470058e2010-04-02 13:38:54 -0700936void iwlagn_txq_ctx_reset(struct iwl_priv *priv)
937{
938 int txq_id, slots_num;
939 unsigned long flags;
940
941 spin_lock_irqsave(&priv->lock, flags);
942
943 /* Turn off all Tx DMA fifos */
944 priv->cfg->ops->lib->txq_set_sched(priv, 0);
945
946 /* Tell NIC where to find the "keep warm" buffer */
947 iwl_write_direct32(priv, FH_KW_MEM_ADDR_REG, priv->kw.dma >> 4);
948
949 spin_unlock_irqrestore(&priv->lock, flags);
950
951 /* Alloc and init all Tx queues, including the command queue (#4) */
952 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
Johannes Berg13bb9482010-08-23 10:46:33 +0200953 slots_num = txq_id == priv->cmd_queue ?
Zhu Yi470058e2010-04-02 13:38:54 -0700954 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
955 iwl_tx_queue_reset(priv, &priv->txq[txq_id], slots_num, txq_id);
956 }
957}
958
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700959/**
Zhu Yi470058e2010-04-02 13:38:54 -0700960 * iwlagn_txq_ctx_stop - Stop all Tx DMA channels
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700961 */
962void iwlagn_txq_ctx_stop(struct iwl_priv *priv)
963{
Stanislaw Gruszka387f3382011-02-28 14:33:13 +0100964 int ch, txq_id;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700965 unsigned long flags;
966
967 /* Turn off all Tx DMA fifos */
968 spin_lock_irqsave(&priv->lock, flags);
969
970 priv->cfg->ops->lib->txq_set_sched(priv, 0);
971
972 /* Stop each Tx DMA channel, and wait for it to be idle */
973 for (ch = 0; ch < priv->hw_params.dma_chnl_num; ch++) {
974 iwl_write_direct32(priv, FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
Emmanuel Grumbach9726f342010-06-29 11:29:49 -0700975 if (iwl_poll_direct_bit(priv, FH_TSSR_TX_STATUS_REG,
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700976 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch),
Emmanuel Grumbach9726f342010-06-29 11:29:49 -0700977 1000))
978 IWL_ERR(priv, "Failing on timeout while stopping"
979 " DMA channel %d [0x%08x]", ch,
980 iwl_read_direct32(priv, FH_TSSR_TX_STATUS_REG));
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700981 }
982 spin_unlock_irqrestore(&priv->lock, flags);
Stanislaw Gruszka387f3382011-02-28 14:33:13 +0100983
984 if (!priv->txq)
985 return;
986
987 /* Unmap DMA from host system and free skb's */
988 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
989 if (txq_id == priv->cmd_queue)
990 iwl_cmd_queue_unmap(priv);
991 else
992 iwl_tx_queue_unmap(priv, txq_id);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700993}
994
995/*
996 * Find first available (lowest unused) Tx Queue, mark it "active".
997 * Called only when finding queue for aggregation.
998 * Should never return anything < 7, because they should already
999 * be in use as EDCA AC (0-3), Command (4), reserved (5, 6)
1000 */
1001static int iwlagn_txq_ctx_activate_free(struct iwl_priv *priv)
1002{
1003 int txq_id;
1004
1005 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
1006 if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk))
1007 return txq_id;
1008 return -1;
1009}
1010
Johannes Berg832f47e2010-04-29 04:43:07 -07001011int iwlagn_tx_agg_start(struct iwl_priv *priv, struct ieee80211_vif *vif,
Johannes Berg619753f2010-04-30 11:30:46 -07001012 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001013{
1014 int sta_id;
1015 int tx_fifo;
1016 int txq_id;
1017 int ret;
1018 unsigned long flags;
1019 struct iwl_tid_data *tid_data;
1020
Johannes Berge72f3682010-08-23 10:46:51 +02001021 tx_fifo = get_fifo_from_tid(iwl_rxon_ctx_from_vif(vif), tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001022 if (unlikely(tx_fifo < 0))
1023 return tx_fifo;
1024
1025 IWL_WARN(priv, "%s on ra = %pM tid = %d\n",
Johannes Berg619753f2010-04-30 11:30:46 -07001026 __func__, sta->addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001027
Johannes Berg619753f2010-04-30 11:30:46 -07001028 sta_id = iwl_sta_id(sta);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001029 if (sta_id == IWL_INVALID_STATION) {
1030 IWL_ERR(priv, "Start AGG on invalid station\n");
1031 return -ENXIO;
1032 }
1033 if (unlikely(tid >= MAX_TID_COUNT))
1034 return -EINVAL;
1035
1036 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) {
1037 IWL_ERR(priv, "Start AGG when state is not IWL_AGG_OFF !\n");
1038 return -ENXIO;
1039 }
1040
1041 txq_id = iwlagn_txq_ctx_activate_free(priv);
1042 if (txq_id == -1) {
1043 IWL_ERR(priv, "No free aggregation queue available\n");
1044 return -ENXIO;
1045 }
1046
1047 spin_lock_irqsave(&priv->sta_lock, flags);
1048 tid_data = &priv->stations[sta_id].tid[tid];
1049 *ssn = SEQ_TO_SN(tid_data->seq_number);
1050 tid_data->agg.txq_id = txq_id;
Johannes Bergc8823ec2011-03-15 11:33:03 -07001051 tid_data->agg.tx_fifo = tx_fifo;
Johannes Bergea9b3072010-11-10 18:25:45 -08001052 iwl_set_swq_id(&priv->txq[txq_id], get_ac_from_tid(tid), txq_id);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001053 spin_unlock_irqrestore(&priv->sta_lock, flags);
1054
Johannes Bergc8823ec2011-03-15 11:33:03 -07001055 ret = iwlagn_txq_agg_enable(priv, txq_id, sta_id, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001056 if (ret)
1057 return ret;
1058
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001059 spin_lock_irqsave(&priv->sta_lock, flags);
1060 tid_data = &priv->stations[sta_id].tid[tid];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001061 if (tid_data->tfds_in_queue == 0) {
1062 IWL_DEBUG_HT(priv, "HW queue is empty\n");
1063 tid_data->agg.state = IWL_AGG_ON;
Johannes Berg619753f2010-04-30 11:30:46 -07001064 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001065 } else {
1066 IWL_DEBUG_HT(priv, "HW queue is NOT empty: %d packets in HW queue\n",
1067 tid_data->tfds_in_queue);
1068 tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA;
1069 }
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001070 spin_unlock_irqrestore(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001071 return ret;
1072}
1073
Johannes Berg832f47e2010-04-29 04:43:07 -07001074int iwlagn_tx_agg_stop(struct iwl_priv *priv, struct ieee80211_vif *vif,
Johannes Berg619753f2010-04-30 11:30:46 -07001075 struct ieee80211_sta *sta, u16 tid)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001076{
Johannes Berg18c121d2010-08-23 07:57:17 -07001077 int tx_fifo_id, txq_id, sta_id, ssn;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001078 struct iwl_tid_data *tid_data;
1079 int write_ptr, read_ptr;
1080 unsigned long flags;
1081
Johannes Berge72f3682010-08-23 10:46:51 +02001082 tx_fifo_id = get_fifo_from_tid(iwl_rxon_ctx_from_vif(vif), tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001083 if (unlikely(tx_fifo_id < 0))
1084 return tx_fifo_id;
1085
Johannes Berg619753f2010-04-30 11:30:46 -07001086 sta_id = iwl_sta_id(sta);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001087
1088 if (sta_id == IWL_INVALID_STATION) {
1089 IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid);
1090 return -ENXIO;
1091 }
1092
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001093 spin_lock_irqsave(&priv->sta_lock, flags);
1094
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001095 tid_data = &priv->stations[sta_id].tid[tid];
1096 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
1097 txq_id = tid_data->agg.txq_id;
Johannes Berg18c121d2010-08-23 07:57:17 -07001098
1099 switch (priv->stations[sta_id].tid[tid].agg.state) {
1100 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1101 /*
1102 * This can happen if the peer stops aggregation
1103 * again before we've had a chance to drain the
1104 * queue we selected previously, i.e. before the
1105 * session was really started completely.
1106 */
1107 IWL_DEBUG_HT(priv, "AGG stop before setup done\n");
1108 goto turn_off;
1109 case IWL_AGG_ON:
1110 break;
1111 default:
1112 IWL_WARN(priv, "Stopping AGG while state not ON or starting\n");
1113 }
1114
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001115 write_ptr = priv->txq[txq_id].q.write_ptr;
1116 read_ptr = priv->txq[txq_id].q.read_ptr;
1117
1118 /* The queue is not empty */
1119 if (write_ptr != read_ptr) {
1120 IWL_DEBUG_HT(priv, "Stopping a non empty AGG HW QUEUE\n");
1121 priv->stations[sta_id].tid[tid].agg.state =
1122 IWL_EMPTYING_HW_QUEUE_DELBA;
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001123 spin_unlock_irqrestore(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001124 return 0;
1125 }
1126
1127 IWL_DEBUG_HT(priv, "HW queue is empty\n");
Johannes Berg18c121d2010-08-23 07:57:17 -07001128 turn_off:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001129 priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF;
1130
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001131 /* do not restore/save irqs */
1132 spin_unlock(&priv->sta_lock);
1133 spin_lock(&priv->lock);
1134
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001135 /*
1136 * the only reason this call can fail is queue number out of range,
1137 * which can happen if uCode is reloaded and all the station
1138 * information are lost. if it is outside the range, there is no need
1139 * to deactivate the uCode queue, just return "success" to allow
1140 * mac80211 to clean up it own data.
1141 */
Johannes Berg7ffef132011-03-15 04:59:10 -07001142 iwlagn_txq_agg_disable(priv, txq_id, ssn, tx_fifo_id);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001143 spin_unlock_irqrestore(&priv->lock, flags);
1144
Johannes Berg619753f2010-04-30 11:30:46 -07001145 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001146
1147 return 0;
1148}
1149
1150int iwlagn_txq_check_empty(struct iwl_priv *priv,
1151 int sta_id, u8 tid, int txq_id)
1152{
1153 struct iwl_queue *q = &priv->txq[txq_id].q;
1154 u8 *addr = priv->stations[sta_id].sta.sta.addr;
1155 struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid];
Johannes Berg8bd413e2010-08-23 10:46:40 +02001156 struct iwl_rxon_context *ctx;
1157
1158 ctx = &priv->contexts[priv->stations[sta_id].ctxid];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001159
Johannes Berga24d52f2010-08-06 16:17:53 +02001160 lockdep_assert_held(&priv->sta_lock);
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001161
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001162 switch (priv->stations[sta_id].tid[tid].agg.state) {
1163 case IWL_EMPTYING_HW_QUEUE_DELBA:
1164 /* We are reclaiming the last packet of the */
1165 /* aggregated HW queue */
1166 if ((txq_id == tid_data->agg.txq_id) &&
1167 (q->read_ptr == q->write_ptr)) {
1168 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
Johannes Berge72f3682010-08-23 10:46:51 +02001169 int tx_fifo = get_fifo_from_tid(ctx, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001170 IWL_DEBUG_HT(priv, "HW queue empty: continue DELBA flow\n");
Johannes Berg7ffef132011-03-15 04:59:10 -07001171 iwlagn_txq_agg_disable(priv, txq_id, ssn, tx_fifo);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001172 tid_data->agg.state = IWL_AGG_OFF;
Johannes Berg8bd413e2010-08-23 10:46:40 +02001173 ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001174 }
1175 break;
1176 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1177 /* We are reclaiming the last packet of the queue */
1178 if (tid_data->tfds_in_queue == 0) {
1179 IWL_DEBUG_HT(priv, "HW queue empty: continue ADDBA flow\n");
1180 tid_data->agg.state = IWL_AGG_ON;
Johannes Berg8bd413e2010-08-23 10:46:40 +02001181 ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001182 }
1183 break;
1184 }
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001185
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001186 return 0;
1187}
1188
Johannes Berg2e340342010-11-16 11:51:38 -08001189static void iwlagn_non_agg_tx_status(struct iwl_priv *priv,
1190 struct iwl_rxon_context *ctx,
1191 const u8 *addr1)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001192{
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001193 struct ieee80211_sta *sta;
1194 struct iwl_station_priv *sta_priv;
1195
Johannes Berg6db63402010-06-07 21:20:38 +02001196 rcu_read_lock();
Johannes Berg2e340342010-11-16 11:51:38 -08001197 sta = ieee80211_find_sta(ctx->vif, addr1);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001198 if (sta) {
1199 sta_priv = (void *)sta->drv_priv;
1200 /* avoid atomic ops if this isn't a client */
1201 if (sta_priv->client &&
1202 atomic_dec_return(&sta_priv->pending_frames) == 0)
1203 ieee80211_sta_block_awake(priv->hw, sta, false);
1204 }
Johannes Berg6db63402010-06-07 21:20:38 +02001205 rcu_read_unlock();
Johannes Berg2e340342010-11-16 11:51:38 -08001206}
1207
1208static void iwlagn_tx_status(struct iwl_priv *priv, struct iwl_tx_info *tx_info,
1209 bool is_agg)
1210{
1211 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx_info->skb->data;
1212
1213 if (!is_agg)
1214 iwlagn_non_agg_tx_status(priv, tx_info->ctx, hdr->addr1);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001215
Johannes Berg8bd413e2010-08-23 10:46:40 +02001216 ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001217}
1218
1219int iwlagn_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
1220{
1221 struct iwl_tx_queue *txq = &priv->txq[txq_id];
1222 struct iwl_queue *q = &txq->q;
1223 struct iwl_tx_info *tx_info;
1224 int nfreed = 0;
1225 struct ieee80211_hdr *hdr;
1226
1227 if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
1228 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
1229 "is out of range [0-%d] %d %d.\n", txq_id,
1230 index, q->n_bd, q->write_ptr, q->read_ptr);
1231 return 0;
1232 }
1233
1234 for (index = iwl_queue_inc_wrap(index, q->n_bd);
1235 q->read_ptr != index;
1236 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1237
1238 tx_info = &txq->txb[txq->q.read_ptr];
Johannes Berg2e340342010-11-16 11:51:38 -08001239 iwlagn_tx_status(priv, tx_info,
1240 txq_id >= IWLAGN_FIRST_AMPDU_QUEUE);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001241
Johannes Bergff0d91c2010-05-17 02:37:34 -07001242 hdr = (struct ieee80211_hdr *)tx_info->skb->data;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001243 if (hdr && ieee80211_is_data_qos(hdr->frame_control))
1244 nfreed++;
Johannes Bergff0d91c2010-05-17 02:37:34 -07001245 tx_info->skb = NULL;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001246
1247 if (priv->cfg->ops->lib->txq_inval_byte_cnt_tbl)
1248 priv->cfg->ops->lib->txq_inval_byte_cnt_tbl(priv, txq);
1249
1250 priv->cfg->ops->lib->txq_free_tfd(priv, txq);
1251 }
1252 return nfreed;
1253}
1254
1255/**
1256 * iwlagn_tx_status_reply_compressed_ba - Update tx status from block-ack
1257 *
1258 * Go through block-ack's bitmap of ACK'd frames, update driver's record of
1259 * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
1260 */
1261static int iwlagn_tx_status_reply_compressed_ba(struct iwl_priv *priv,
1262 struct iwl_ht_agg *agg,
1263 struct iwl_compressed_ba_resp *ba_resp)
1264
1265{
Daniel Halperind0eb6332011-03-16 17:17:36 -07001266 int sh;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001267 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
1268 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001269 struct ieee80211_tx_info *info;
Daniel Halperind0eb6332011-03-16 17:17:36 -07001270 u64 bitmap, sent_bitmap;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001271
1272 if (unlikely(!agg->wait_for_ba)) {
Don Fry822395b2010-10-23 09:02:50 -07001273 if (unlikely(ba_resp->bitmap))
1274 IWL_ERR(priv, "Received BA when not expected\n");
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001275 return -EINVAL;
1276 }
1277
1278 /* Mark that the expected block-ack response arrived */
1279 agg->wait_for_ba = 0;
1280 IWL_DEBUG_TX_REPLY(priv, "BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
1281
1282 /* Calculate shift to align block-ack bits with our Tx window bits */
1283 sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl >> 4);
Daniel Halperind0eb6332011-03-16 17:17:36 -07001284 if (sh < 0)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001285 sh += 0x100;
1286
Daniel Halperind0eb6332011-03-16 17:17:36 -07001287 /*
1288 * Check for success or failure according to the
1289 * transmitted bitmap and block-ack bitmap
1290 */
1291 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
1292 sent_bitmap = bitmap & agg->bitmap;
1293
1294 /* Sanity check values reported by uCode */
1295 if (ba_resp->txed_2_done > ba_resp->txed) {
1296 IWL_DEBUG_TX_REPLY(priv,
1297 "bogus sent(%d) and ack(%d) count\n",
1298 ba_resp->txed, ba_resp->txed_2_done);
Wey-Yi Guy8829c9e2010-11-10 11:05:38 -08001299 /*
Daniel Halperind0eb6332011-03-16 17:17:36 -07001300 * set txed_2_done = txed,
1301 * so it won't impact rate scale
Wey-Yi Guy8829c9e2010-11-10 11:05:38 -08001302 */
Daniel Halperind0eb6332011-03-16 17:17:36 -07001303 ba_resp->txed = ba_resp->txed_2_done;
1304 }
1305 IWL_DEBUG_HT(priv, "agg frames sent:%d, acked:%d\n",
1306 ba_resp->txed, ba_resp->txed_2_done);
Johannes Berg9decde92010-11-30 13:24:36 -08001307
Daniel Halperind0eb6332011-03-16 17:17:36 -07001308 /* Find the first ACKed frame to store the TX status */
1309 while (sent_bitmap && !(sent_bitmap & 1)) {
1310 agg->start_idx = (agg->start_idx + 1) & 0xff;
1311 sent_bitmap >>= 1;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001312 }
Johannes Berg9decde92010-11-30 13:24:36 -08001313
Johannes Bergff0d91c2010-05-17 02:37:34 -07001314 info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001315 memset(&info->status, 0, sizeof(info->status));
1316 info->flags |= IEEE80211_TX_STAT_ACK;
1317 info->flags |= IEEE80211_TX_STAT_AMPDU;
Daniel Halperind0eb6332011-03-16 17:17:36 -07001318 info->status.ampdu_ack_len = ba_resp->txed_2_done;
1319 info->status.ampdu_len = ba_resp->txed;
Wey-Yi Guy8d801082010-03-17 13:34:36 -07001320 iwlagn_hwrate_to_tx_control(priv, agg->rate_n_flags, info);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001321
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001322 return 0;
1323}
1324
1325/**
Wey-Yi Guy8d801082010-03-17 13:34:36 -07001326 * translate ucode response to mac80211 tx status control values
1327 */
1328void iwlagn_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags,
1329 struct ieee80211_tx_info *info)
1330{
1331 struct ieee80211_tx_rate *r = &info->control.rates[0];
1332
1333 info->antenna_sel_tx =
1334 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
1335 if (rate_n_flags & RATE_MCS_HT_MSK)
1336 r->flags |= IEEE80211_TX_RC_MCS;
1337 if (rate_n_flags & RATE_MCS_GF_MSK)
1338 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
1339 if (rate_n_flags & RATE_MCS_HT40_MSK)
1340 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
1341 if (rate_n_flags & RATE_MCS_DUP_MSK)
1342 r->flags |= IEEE80211_TX_RC_DUP_DATA;
1343 if (rate_n_flags & RATE_MCS_SGI_MSK)
1344 r->flags |= IEEE80211_TX_RC_SHORT_GI;
1345 r->idx = iwlagn_hwrate_to_mac80211_idx(rate_n_flags, info->band);
1346}
1347
1348/**
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001349 * iwlagn_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA
1350 *
1351 * Handles block-acknowledge notification from device, which reports success
1352 * of frames sent via aggregation.
1353 */
1354void iwlagn_rx_reply_compressed_ba(struct iwl_priv *priv,
1355 struct iwl_rx_mem_buffer *rxb)
1356{
1357 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1358 struct iwl_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
1359 struct iwl_tx_queue *txq = NULL;
1360 struct iwl_ht_agg *agg;
1361 int index;
1362 int sta_id;
1363 int tid;
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001364 unsigned long flags;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001365
1366 /* "flow" corresponds to Tx queue */
1367 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1368
1369 /* "ssn" is start of block-ack Tx window, corresponds to index
1370 * (in Tx queue's circular buffer) of first TFD/frame in window */
1371 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
1372
1373 if (scd_flow >= priv->hw_params.max_txq_num) {
1374 IWL_ERR(priv,
1375 "BUG_ON scd_flow is bigger than number of queues\n");
1376 return;
1377 }
1378
1379 txq = &priv->txq[scd_flow];
1380 sta_id = ba_resp->sta_id;
1381 tid = ba_resp->tid;
1382 agg = &priv->stations[sta_id].tid[tid].agg;
Shanyu Zhaob561e822010-06-01 17:13:58 -07001383 if (unlikely(agg->txq_id != scd_flow)) {
Wey-Yi Guy735df29a2010-07-31 08:34:11 -07001384 /*
1385 * FIXME: this is a uCode bug which need to be addressed,
1386 * log the information and return for now!
1387 * since it is possible happen very often and in order
1388 * not to fill the syslog, don't enable the logging by default
1389 */
1390 IWL_DEBUG_TX_REPLY(priv,
1391 "BA scd_flow %d does not match txq_id %d\n",
Shanyu Zhaob561e822010-06-01 17:13:58 -07001392 scd_flow, agg->txq_id);
1393 return;
1394 }
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001395
1396 /* Find index just before block-ack window */
1397 index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
1398
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001399 spin_lock_irqsave(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001400
1401 IWL_DEBUG_TX_REPLY(priv, "REPLY_COMPRESSED_BA [%d] Received from %pM, "
1402 "sta_id = %d\n",
1403 agg->wait_for_ba,
1404 (u8 *) &ba_resp->sta_addr_lo32,
1405 ba_resp->sta_id);
1406 IWL_DEBUG_TX_REPLY(priv, "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = "
1407 "%d, scd_ssn = %d\n",
1408 ba_resp->tid,
1409 ba_resp->seq_ctl,
1410 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
1411 ba_resp->scd_flow,
1412 ba_resp->scd_ssn);
Frans Pop91dd6c22010-03-24 14:19:58 -07001413 IWL_DEBUG_TX_REPLY(priv, "DAT start_idx = %d, bitmap = 0x%llx\n",
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001414 agg->start_idx,
1415 (unsigned long long)agg->bitmap);
1416
1417 /* Update driver's record of ACK vs. not for each frame in window */
1418 iwlagn_tx_status_reply_compressed_ba(priv, agg, ba_resp);
1419
1420 /* Release all TFDs before the SSN, i.e. all TFDs in front of
1421 * block-ack window (we assume that they've been successfully
1422 * transmitted ... if not, it's too late anyway). */
1423 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
1424 /* calculate mac80211 ampdu sw queue to wake */
1425 int freed = iwlagn_tx_queue_reclaim(priv, scd_flow, index);
1426 iwl_free_tfds_in_queue(priv, sta_id, tid, freed);
1427
1428 if ((iwl_queue_space(&txq->q) > txq->q.low_mark) &&
1429 priv->mac80211_registered &&
1430 (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA))
Johannes Berg549a04e2010-11-10 18:25:44 -08001431 iwl_wake_queue(priv, txq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001432
1433 iwlagn_txq_check_empty(priv, sta_id, tid, scd_flow);
1434 }
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001435
1436 spin_unlock_irqrestore(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001437}
Johannes Berg69fdb712010-09-22 18:02:02 +02001438
1439#ifdef CONFIG_IWLWIFI_DEBUG
1440const char *iwl_get_tx_fail_reason(u32 status)
1441{
1442#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
1443#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
1444
1445 switch (status & TX_STATUS_MSK) {
1446 case TX_STATUS_SUCCESS:
1447 return "SUCCESS";
1448 TX_STATUS_POSTPONE(DELAY);
1449 TX_STATUS_POSTPONE(FEW_BYTES);
1450 TX_STATUS_POSTPONE(BT_PRIO);
1451 TX_STATUS_POSTPONE(QUIET_PERIOD);
1452 TX_STATUS_POSTPONE(CALC_TTAK);
1453 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
1454 TX_STATUS_FAIL(SHORT_LIMIT);
1455 TX_STATUS_FAIL(LONG_LIMIT);
1456 TX_STATUS_FAIL(FIFO_UNDERRUN);
1457 TX_STATUS_FAIL(DRAIN_FLOW);
1458 TX_STATUS_FAIL(RFKILL_FLUSH);
1459 TX_STATUS_FAIL(LIFE_EXPIRE);
1460 TX_STATUS_FAIL(DEST_PS);
1461 TX_STATUS_FAIL(HOST_ABORTED);
1462 TX_STATUS_FAIL(BT_RETRY);
1463 TX_STATUS_FAIL(STA_INVALID);
1464 TX_STATUS_FAIL(FRAG_DROPPED);
1465 TX_STATUS_FAIL(TID_DISABLE);
1466 TX_STATUS_FAIL(FIFO_FLUSHED);
1467 TX_STATUS_FAIL(INSUFFICIENT_CF_POLL);
1468 TX_STATUS_FAIL(PASSIVE_NO_RX);
1469 TX_STATUS_FAIL(NO_BEACON_ON_RADAR);
1470 }
1471
1472 return "UNKNOWN";
1473
1474#undef TX_STATUS_FAIL
1475#undef TX_STATUS_POSTPONE
1476}
1477#endif /* CONFIG_IWLWIFI_DEBUG */