blob: 1ab1ef15c5a2b2ba4946a79951afa2749790d5a2 [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 */
Johannes Berg94b00652011-04-28 07:27:09 -0700101static void iwlagn_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
102 struct iwl_tx_queue *txq,
103 u16 byte_cnt)
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700104{
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 Bergccb6c1c2011-04-28 07:27:08 -0700115 sta_id = txq->cmd[txq->q.write_ptr]->cmd.tx.sta_id;
116 sec_ctl = txq->cmd[txq->q.write_ptr]->cmd.tx.sec_ctl;
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700117
Johannes Bergccb6c1c2011-04-28 07:27:08 -0700118 switch (sec_ctl & TX_CMD_SEC_MSK) {
119 case TX_CMD_SEC_CCM:
120 len += CCMP_MIC_LEN;
121 break;
122 case TX_CMD_SEC_TKIP:
123 len += TKIP_ICV_LEN;
124 break;
125 case TX_CMD_SEC_WEP:
126 len += WEP_IV_LEN + WEP_ICV_LEN;
127 break;
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700128 }
129
130 bc_ent = cpu_to_le16((len & 0xFFF) | (sta_id << 12));
131
132 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
133
134 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
135 scd_bc_tbl[txq_id].
136 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
137}
138
Johannes Berg94b00652011-04-28 07:27:09 -0700139static void iwlagn_txq_inval_byte_cnt_tbl(struct iwl_priv *priv,
140 struct iwl_tx_queue *txq)
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700141{
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700142 struct iwlagn_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr;
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700143 int txq_id = txq->q.id;
144 int read_ptr = txq->q.read_ptr;
145 u8 sta_id = 0;
146 __le16 bc_ent;
147
148 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
149
Johannes Berg13bb9482010-08-23 10:46:33 +0200150 if (txq_id != priv->cmd_queue)
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700151 sta_id = txq->cmd[read_ptr]->cmd.tx.sta_id;
152
153 bc_ent = cpu_to_le16(1 | (sta_id << 12));
154 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
155
156 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
157 scd_bc_tbl[txq_id].
158 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
159}
160
161static int iwlagn_tx_queue_set_q2ratid(struct iwl_priv *priv, u16 ra_tid,
162 u16 txq_id)
163{
164 u32 tbl_dw_addr;
165 u32 tbl_dw;
166 u16 scd_q2ratid;
167
168 scd_q2ratid = ra_tid & IWL_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
169
170 tbl_dw_addr = priv->scd_base_addr +
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700171 IWLAGN_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700172
173 tbl_dw = iwl_read_targ_mem(priv, tbl_dw_addr);
174
175 if (txq_id & 0x1)
176 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
177 else
178 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
179
180 iwl_write_targ_mem(priv, tbl_dw_addr, tbl_dw);
181
182 return 0;
183}
184
185static void iwlagn_tx_queue_stop_scheduler(struct iwl_priv *priv, u16 txq_id)
186{
187 /* Simply stop the queue, but don't change any configuration;
188 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
189 iwl_write_prph(priv,
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700190 IWLAGN_SCD_QUEUE_STATUS_BITS(txq_id),
191 (0 << IWLAGN_SCD_QUEUE_STTS_REG_POS_ACTIVE)|
192 (1 << IWLAGN_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700193}
194
195void iwlagn_set_wr_ptrs(struct iwl_priv *priv,
196 int txq_id, u32 index)
197{
198 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
199 (index & 0xff) | (txq_id << 8));
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700200 iwl_write_prph(priv, IWLAGN_SCD_QUEUE_RDPTR(txq_id), index);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700201}
202
203void iwlagn_tx_queue_set_status(struct iwl_priv *priv,
204 struct iwl_tx_queue *txq,
205 int tx_fifo_id, int scd_retry)
206{
207 int txq_id = txq->q.id;
208 int active = test_bit(txq_id, &priv->txq_ctx_active_msk) ? 1 : 0;
209
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700210 iwl_write_prph(priv, IWLAGN_SCD_QUEUE_STATUS_BITS(txq_id),
211 (active << IWLAGN_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
212 (tx_fifo_id << IWLAGN_SCD_QUEUE_STTS_REG_POS_TXF) |
213 (1 << IWLAGN_SCD_QUEUE_STTS_REG_POS_WSL) |
214 IWLAGN_SCD_QUEUE_STTS_REG_MSK);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700215
216 txq->sched_retry = scd_retry;
217
218 IWL_DEBUG_INFO(priv, "%s %s Queue %d on FIFO %d\n",
219 active ? "Activate" : "Deactivate",
220 scd_retry ? "BA" : "AC/CMD", txq_id, tx_fifo_id);
221}
222
Johannes Bergc8823ec2011-03-15 11:33:03 -0700223static 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 -0700224{
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700225 if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) ||
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700226 (IWLAGN_FIRST_AMPDU_QUEUE +
227 priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700228 IWL_WARN(priv,
229 "queue number out of range: %d, must be %d to %d\n",
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700230 txq_id, IWLAGN_FIRST_AMPDU_QUEUE,
231 IWLAGN_FIRST_AMPDU_QUEUE +
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700232 priv->cfg->base_params->num_of_ampdu_queues - 1);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700233 return -EINVAL;
234 }
235
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700236 /* Modify device's station table to Tx this TID */
Johannes Bergc8823ec2011-03-15 11:33:03 -0700237 return iwl_sta_tx_modify_enable_tid(priv, sta_id, tid);
238}
239
240void iwlagn_txq_agg_queue_setup(struct iwl_priv *priv,
241 struct ieee80211_sta *sta,
242 int tid, int frame_limit)
243{
244 int sta_id, tx_fifo, txq_id, ssn_idx;
245 u16 ra_tid;
246 unsigned long flags;
247 struct iwl_tid_data *tid_data;
248
249 sta_id = iwl_sta_id(sta);
250 if (WARN_ON(sta_id == IWL_INVALID_STATION))
251 return;
252 if (WARN_ON(tid >= MAX_TID_COUNT))
253 return;
254
255 spin_lock_irqsave(&priv->sta_lock, flags);
256 tid_data = &priv->stations[sta_id].tid[tid];
257 ssn_idx = SEQ_TO_SN(tid_data->seq_number);
258 txq_id = tid_data->agg.txq_id;
259 tx_fifo = tid_data->agg.tx_fifo;
260 spin_unlock_irqrestore(&priv->sta_lock, flags);
261
262 ra_tid = BUILD_RAxTID(sta_id, tid);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700263
264 spin_lock_irqsave(&priv->lock, flags);
265
266 /* Stop this Tx queue before configuring it */
267 iwlagn_tx_queue_stop_scheduler(priv, txq_id);
268
269 /* Map receiver-address / traffic-ID to this queue */
270 iwlagn_tx_queue_set_q2ratid(priv, ra_tid, txq_id);
271
272 /* Set this queue as a chain-building queue */
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700273 iwl_set_bits_prph(priv, IWLAGN_SCD_QUEUECHAIN_SEL, (1<<txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700274
275 /* enable aggregations for the queue */
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700276 iwl_set_bits_prph(priv, IWLAGN_SCD_AGGR_SEL, (1<<txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700277
278 /* Place first TFD at index corresponding to start sequence number.
279 * Assumes that ssn_idx is valid (!= 0xFFF) */
280 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
281 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
282 iwlagn_set_wr_ptrs(priv, txq_id, ssn_idx);
283
284 /* Set up Tx window size and frame limit for this queue */
285 iwl_write_targ_mem(priv, priv->scd_base_addr +
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700286 IWLAGN_SCD_CONTEXT_QUEUE_OFFSET(txq_id) +
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700287 sizeof(u32),
Johannes Bergc8823ec2011-03-15 11:33:03 -0700288 ((frame_limit <<
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700289 IWLAGN_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
290 IWLAGN_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
Johannes Bergc8823ec2011-03-15 11:33:03 -0700291 ((frame_limit <<
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700292 IWLAGN_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
293 IWLAGN_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700294
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700295 iwl_set_bits_prph(priv, IWLAGN_SCD_INTERRUPT_MASK, (1 << txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700296
297 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
298 iwlagn_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 1);
299
300 spin_unlock_irqrestore(&priv->lock, flags);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700301}
302
Johannes Berg7ffef132011-03-15 04:59:10 -0700303static int iwlagn_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
304 u16 ssn_idx, u8 tx_fifo)
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700305{
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700306 if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) ||
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700307 (IWLAGN_FIRST_AMPDU_QUEUE +
308 priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700309 IWL_ERR(priv,
310 "queue number out of range: %d, must be %d to %d\n",
Wey-Yi Guy19e6cda2010-03-16 17:41:23 -0700311 txq_id, IWLAGN_FIRST_AMPDU_QUEUE,
312 IWLAGN_FIRST_AMPDU_QUEUE +
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700313 priv->cfg->base_params->num_of_ampdu_queues - 1);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700314 return -EINVAL;
315 }
316
317 iwlagn_tx_queue_stop_scheduler(priv, txq_id);
318
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700319 iwl_clear_bits_prph(priv, IWLAGN_SCD_AGGR_SEL, (1 << txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700320
321 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
322 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
323 /* supposes that ssn_idx is valid (!= 0xFFF) */
324 iwlagn_set_wr_ptrs(priv, txq_id, ssn_idx);
325
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700326 iwl_clear_bits_prph(priv, IWLAGN_SCD_INTERRUPT_MASK, (1 << txq_id));
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700327 iwl_txq_ctx_deactivate(priv, txq_id);
328 iwlagn_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 0);
329
330 return 0;
331}
332
333/*
334 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
335 * must be called under priv->lock and mac access
336 */
337void iwlagn_txq_set_sched(struct iwl_priv *priv, u32 mask)
338{
Wey-Yi Guyf4388ad2010-04-12 18:32:11 -0700339 iwl_write_prph(priv, IWLAGN_SCD_TXFACT, mask);
Wey-Yi Guyb305a082010-03-16 17:41:22 -0700340}
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700341
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700342/*
343 * handle build REPLY_TX command notification.
344 */
345static void iwlagn_tx_cmd_build_basic(struct iwl_priv *priv,
Johannes Bergd44ae692010-08-23 07:56:56 -0700346 struct sk_buff *skb,
347 struct iwl_tx_cmd *tx_cmd,
348 struct ieee80211_tx_info *info,
349 struct ieee80211_hdr *hdr,
350 u8 std_id)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700351{
352 __le16 fc = hdr->frame_control;
353 __le32 tx_flags = tx_cmd->tx_flags;
354
355 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
356 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
357 tx_flags |= TX_CMD_FLG_ACK_MSK;
358 if (ieee80211_is_mgmt(fc))
359 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
360 if (ieee80211_is_probe_resp(fc) &&
361 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
362 tx_flags |= TX_CMD_FLG_TSF_MSK;
363 } else {
364 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
365 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
366 }
367
368 if (ieee80211_is_back_req(fc))
369 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
Johannes Bergd44ae692010-08-23 07:56:56 -0700370 else if (info->band == IEEE80211_BAND_2GHZ &&
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700371 priv->cfg->bt_params &&
372 priv->cfg->bt_params->advanced_bt_coexist &&
Johannes Bergd44ae692010-08-23 07:56:56 -0700373 (ieee80211_is_auth(fc) || ieee80211_is_assoc_req(fc) ||
374 ieee80211_is_reassoc_req(fc) ||
375 skb->protocol == cpu_to_be16(ETH_P_PAE)))
376 tx_flags |= TX_CMD_FLG_IGNORE_BT;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700377
378
379 tx_cmd->sta_id = std_id;
380 if (ieee80211_has_morefrags(fc))
381 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
382
383 if (ieee80211_is_data_qos(fc)) {
384 u8 *qc = ieee80211_get_qos_ctl(hdr);
385 tx_cmd->tid_tspec = qc[0] & 0xf;
386 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
387 } else {
Wey-Yi Guy3ed4fae2011-12-08 15:52:00 -0800388 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
389 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
390 else
391 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700392 }
393
Johannes Berg94597ab2010-08-09 10:57:02 -0700394 priv->cfg->ops->utils->tx_cmd_protection(priv, info, fc, &tx_flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700395
396 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
397 if (ieee80211_is_mgmt(fc)) {
398 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
399 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
400 else
401 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
402 } else {
403 tx_cmd->timeout.pm_frame_timeout = 0;
404 }
405
406 tx_cmd->driver_txop = 0;
407 tx_cmd->tx_flags = tx_flags;
408 tx_cmd->next_frame_len = 0;
409}
410
411#define RTS_DFAULT_RETRY_LIMIT 60
412
413static void iwlagn_tx_cmd_build_rate(struct iwl_priv *priv,
414 struct iwl_tx_cmd *tx_cmd,
415 struct ieee80211_tx_info *info,
416 __le16 fc)
417{
418 u32 rate_flags;
419 int rate_idx;
420 u8 rts_retry_limit;
421 u8 data_retry_limit;
422 u8 rate_plcp;
423
424 /* Set retry limit on DATA packets and Probe Responses*/
425 if (ieee80211_is_probe_resp(fc))
426 data_retry_limit = 3;
427 else
Wey-Yi Guyb744cb72010-03-23 11:37:59 -0700428 data_retry_limit = IWLAGN_DEFAULT_TX_RETRY;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700429 tx_cmd->data_retry_limit = data_retry_limit;
430
431 /* Set retry limit on RTS packets */
432 rts_retry_limit = RTS_DFAULT_RETRY_LIMIT;
433 if (data_retry_limit < rts_retry_limit)
434 rts_retry_limit = data_retry_limit;
435 tx_cmd->rts_retry_limit = rts_retry_limit;
436
437 /* DATA packets will use the uCode station table for rate/antenna
438 * selection */
439 if (ieee80211_is_data(fc)) {
440 tx_cmd->initial_rate_index = 0;
441 tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
442 return;
443 }
444
445 /**
446 * If the current TX rate stored in mac80211 has the MCS bit set, it's
447 * not really a TX rate. Thus, we use the lowest supported rate for
448 * this band. Also use the lowest supported rate if the stored rate
449 * index is invalid.
450 */
451 rate_idx = info->control.rates[0].idx;
452 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS ||
453 (rate_idx < 0) || (rate_idx > IWL_RATE_COUNT_LEGACY))
454 rate_idx = rate_lowest_index(&priv->bands[info->band],
455 info->control.sta);
456 /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
457 if (info->band == IEEE80211_BAND_5GHZ)
458 rate_idx += IWL_FIRST_OFDM_RATE;
459 /* Get PLCP rate for tx_cmd->rate_n_flags */
460 rate_plcp = iwl_rates[rate_idx].plcp;
461 /* Zero out flags for this packet */
462 rate_flags = 0;
463
464 /* Set CCK flag as needed */
465 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
466 rate_flags |= RATE_MCS_CCK_MSK;
467
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700468 /* Set up antennas */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700469 if (priv->cfg->bt_params &&
470 priv->cfg->bt_params->advanced_bt_coexist &&
471 priv->bt_full_concurrent) {
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700472 /* operated as 1x1 in full concurrency mode */
473 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
474 first_antenna(priv->hw_params.valid_tx_ant));
475 } else
476 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
Johannes Berg0e1654f2010-05-18 02:48:36 -0700477 priv->hw_params.valid_tx_ant);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700478 rate_flags |= iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
479
480 /* Set the rate in the TX cmd */
481 tx_cmd->rate_n_flags = iwl_hw_set_rate_n_flags(rate_plcp, rate_flags);
482}
483
484static void iwlagn_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
485 struct ieee80211_tx_info *info,
486 struct iwl_tx_cmd *tx_cmd,
487 struct sk_buff *skb_frag,
488 int sta_id)
489{
490 struct ieee80211_key_conf *keyconf = info->control.hw_key;
491
Johannes Berg97359d12010-08-10 09:46:38 +0200492 switch (keyconf->cipher) {
493 case WLAN_CIPHER_SUITE_CCMP:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700494 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
495 memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
496 if (info->flags & IEEE80211_TX_CTL_AMPDU)
497 tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
498 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
499 break;
500
Johannes Berg97359d12010-08-10 09:46:38 +0200501 case WLAN_CIPHER_SUITE_TKIP:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700502 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
503 ieee80211_get_tkip_key(keyconf, skb_frag,
504 IEEE80211_TKIP_P2_KEY, tx_cmd->key);
505 IWL_DEBUG_TX(priv, "tx_cmd with tkip hwcrypto\n");
506 break;
507
Johannes Berg97359d12010-08-10 09:46:38 +0200508 case WLAN_CIPHER_SUITE_WEP104:
509 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
510 /* fall through */
511 case WLAN_CIPHER_SUITE_WEP40:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700512 tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP |
513 (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
514
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700515 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
516
517 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
518 "with key %d\n", keyconf->keyidx);
519 break;
520
521 default:
Johannes Berg97359d12010-08-10 09:46:38 +0200522 IWL_ERR(priv, "Unknown encode cipher %x\n", keyconf->cipher);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700523 break;
524 }
525}
526
527/*
528 * start REPLY_TX command process
529 */
530int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
531{
532 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
533 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
534 struct ieee80211_sta *sta = info->control.sta;
535 struct iwl_station_priv *sta_priv = NULL;
536 struct iwl_tx_queue *txq;
537 struct iwl_queue *q;
538 struct iwl_device_cmd *out_cmd;
539 struct iwl_cmd_meta *out_meta;
540 struct iwl_tx_cmd *tx_cmd;
Johannes Berga194e322010-08-27 08:53:46 -0700541 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Johannes Berg8d563962010-11-10 18:25:42 -0800542 int txq_id;
Johannes Berg2c46f722011-04-28 07:27:10 -0700543 dma_addr_t phys_addr = 0;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700544 dma_addr_t txcmd_phys;
545 dma_addr_t scratch_phys;
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100546 u16 len, firstlen, secondlen;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700547 u16 seq_number = 0;
548 __le16 fc;
549 u8 hdr_len;
550 u8 sta_id;
551 u8 wait_write_ptr = 0;
552 u8 tid = 0;
553 u8 *qc = NULL;
554 unsigned long flags;
Johannes Berg2e340342010-11-16 11:51:38 -0800555 bool is_agg = false;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700556
Johannes Berg9b9190d2011-01-06 08:07:10 -0800557 /*
558 * If the frame needs to go out off-channel, then
559 * we'll have put the PAN context to that channel,
560 * so make the frame go out there.
561 */
562 if (info->flags & IEEE80211_TX_CTL_TX_OFFCHAN)
563 ctx = &priv->contexts[IWL_RXON_CTX_PAN];
564 else if (info->control.vif)
Johannes Berga194e322010-08-27 08:53:46 -0700565 ctx = iwl_rxon_ctx_from_vif(info->control.vif);
566
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700567 spin_lock_irqsave(&priv->lock, flags);
568 if (iwl_is_rfkill(priv)) {
569 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
Johannes Berg2c46f722011-04-28 07:27:10 -0700570 goto drop_unlock_priv;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700571 }
572
573 fc = hdr->frame_control;
574
575#ifdef CONFIG_IWLWIFI_DEBUG
576 if (ieee80211_is_auth(fc))
577 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
578 else if (ieee80211_is_assoc_req(fc))
579 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
580 else if (ieee80211_is_reassoc_req(fc))
581 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
582#endif
583
584 hdr_len = ieee80211_hdrlen(fc);
585
Stanislaw Gruszkabfd36102011-04-29 17:51:06 +0200586 /* For management frames use broadcast id to do not break aggregation */
587 if (!ieee80211_is_data(fc))
588 sta_id = ctx->bcast_sta_id;
589 else {
590 /* Find index into station table for destination station */
591 sta_id = iwl_sta_id_or_broadcast(priv, ctx, info->control.sta);
592 if (sta_id == IWL_INVALID_STATION) {
593 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
594 hdr->addr1);
John W. Linvillee00cf3b2011-05-16 14:55:42 -0400595 goto drop_unlock_priv;
Stanislaw Gruszkabfd36102011-04-29 17:51:06 +0200596 }
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700597 }
598
599 IWL_DEBUG_TX(priv, "station Id %d\n", sta_id);
600
601 if (sta)
602 sta_priv = (void *)sta->drv_priv;
603
Johannes Berg67158b62010-11-16 11:51:04 -0800604 if (sta_priv && sta_priv->asleep &&
605 (info->flags & IEEE80211_TX_CTL_PSPOLL_RESPONSE)) {
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700606 /*
607 * This sends an asynchronous command to the device,
608 * but we can rely on it being processed before the
609 * next frame is processed -- and the next frame to
610 * this station is the one that will consume this
611 * counter.
612 * For now set the counter to just 1 since we do not
613 * support uAPSD yet.
614 */
615 iwl_sta_modify_sleep_tx_count(priv, sta_id, 1);
616 }
617
Johannes Berge72f3682010-08-23 10:46:51 +0200618 /*
619 * Send this frame after DTIM -- there's a special queue
620 * reserved for this for contexts that support AP mode.
621 */
622 if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
623 txq_id = ctx->mcast_queue;
624 /*
625 * The microcode will clear the more data
626 * bit in the last frame it transmits.
627 */
628 hdr->frame_control |=
629 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
630 } else
631 txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)];
Reinette Chatre9c5ac092010-05-05 02:26:06 -0700632
633 /* irqs already disabled/saved above when locking priv->lock */
634 spin_lock(&priv->sta_lock);
635
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700636 if (ieee80211_is_data_qos(fc)) {
637 qc = ieee80211_get_qos_ctl(hdr);
638 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berg2c46f722011-04-28 07:27:10 -0700639
640 if (WARN_ON_ONCE(tid >= MAX_TID_COUNT))
641 goto drop_unlock_sta;
642
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700643 seq_number = priv->stations[sta_id].tid[tid].seq_number;
644 seq_number &= IEEE80211_SCTL_SEQ;
645 hdr->seq_ctrl = hdr->seq_ctrl &
646 cpu_to_le16(IEEE80211_SCTL_FRAG);
647 hdr->seq_ctrl |= cpu_to_le16(seq_number);
648 seq_number += 0x10;
649 /* aggregation is on for this <sta,tid> */
650 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
651 priv->stations[sta_id].tid[tid].agg.state == IWL_AGG_ON) {
652 txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
Johannes Berg2e340342010-11-16 11:51:38 -0800653 is_agg = true;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700654 }
655 }
656
657 txq = &priv->txq[txq_id];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700658 q = &txq->q;
659
Johannes Berg2c46f722011-04-28 07:27:10 -0700660 if (unlikely(iwl_queue_space(q) < q->high_mark))
661 goto drop_unlock_sta;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700662
663 /* Set up driver data for this TFD */
664 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
Johannes Bergff0d91c2010-05-17 02:37:34 -0700665 txq->txb[q->write_ptr].skb = skb;
Johannes Bergc90cbbb2010-08-23 10:46:39 +0200666 txq->txb[q->write_ptr].ctx = ctx;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700667
668 /* Set up first empty entry in queue's array of Tx/cmd buffers */
669 out_cmd = txq->cmd[q->write_ptr];
670 out_meta = &txq->meta[q->write_ptr];
671 tx_cmd = &out_cmd->cmd.tx;
672 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
673 memset(tx_cmd, 0, sizeof(struct iwl_tx_cmd));
674
675 /*
676 * Set up the Tx-command (not MAC!) header.
677 * Store the chosen Tx queue and TFD index within the sequence field;
678 * after Tx, uCode's Tx response will return this value so driver can
679 * locate the frame within the tx queue and do post-tx processing.
680 */
681 out_cmd->hdr.cmd = REPLY_TX;
682 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
683 INDEX_TO_SEQ(q->write_ptr)));
684
685 /* Copy MAC header from skb into command buffer */
686 memcpy(tx_cmd->hdr, hdr, hdr_len);
687
688
689 /* Total # bytes to be transmitted */
690 len = (u16)skb->len;
691 tx_cmd->len = cpu_to_le16(len);
692
693 if (info->control.hw_key)
694 iwlagn_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id);
695
696 /* TODO need this for burst mode later on */
Johannes Bergd44ae692010-08-23 07:56:56 -0700697 iwlagn_tx_cmd_build_basic(priv, skb, tx_cmd, info, hdr, sta_id);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700698 iwl_dbg_log_tx_data_frame(priv, len, hdr);
699
700 iwlagn_tx_cmd_build_rate(priv, tx_cmd, info, fc);
701
702 iwl_update_stats(priv, true, fc, len);
703 /*
704 * Use the first empty entry in this queue's command buffer array
705 * to contain the Tx command and MAC header concatenated together
706 * (payload data will be in another buffer).
707 * Size of this varies, due to varying MAC header length.
708 * If end is not dword aligned, we'll have 2 extra bytes at the end
709 * of the MAC header (device reads on dword boundaries).
710 * We'll tell device about this padding later.
711 */
712 len = sizeof(struct iwl_tx_cmd) +
713 sizeof(struct iwl_cmd_header) + hdr_len;
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100714 firstlen = (len + 3) & ~3;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700715
716 /* Tell NIC about any 2-byte padding after MAC header */
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100717 if (firstlen != len)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700718 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
719
720 /* Physical address of this Tx command's header (not MAC header!),
721 * within command buffer array. */
722 txcmd_phys = pci_map_single(priv->pci_dev,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100723 &out_cmd->hdr, firstlen,
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700724 PCI_DMA_BIDIRECTIONAL);
Johannes Berg2c46f722011-04-28 07:27:10 -0700725 if (unlikely(pci_dma_mapping_error(priv->pci_dev, txcmd_phys)))
726 goto drop_unlock_sta;
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900727 dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100728 dma_unmap_len_set(out_meta, len, firstlen);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700729
730 if (!ieee80211_has_morefrags(hdr->frame_control)) {
731 txq->need_update = 1;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700732 } else {
733 wait_write_ptr = 1;
734 txq->need_update = 0;
735 }
736
737 /* Set up TFD's 2nd entry to point directly to remainder of skb,
738 * if any (802.11 null frames have no payload). */
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100739 secondlen = skb->len - hdr_len;
740 if (secondlen > 0) {
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700741 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100742 secondlen, PCI_DMA_TODEVICE);
Johannes Berg2c46f722011-04-28 07:27:10 -0700743 if (unlikely(pci_dma_mapping_error(priv->pci_dev, phys_addr))) {
744 pci_unmap_single(priv->pci_dev,
745 dma_unmap_addr(out_meta, mapping),
746 dma_unmap_len(out_meta, len),
747 PCI_DMA_BIDIRECTIONAL);
748 goto drop_unlock_sta;
749 }
750 }
751
752 if (ieee80211_is_data_qos(fc)) {
753 priv->stations[sta_id].tid[tid].tfds_in_queue++;
754 if (!ieee80211_has_morefrags(fc))
755 priv->stations[sta_id].tid[tid].seq_number = seq_number;
756 }
757
758 spin_unlock(&priv->sta_lock);
759
760 /* Attach buffers to TFD */
Johannes Berg4c42db02011-05-04 07:50:48 -0700761 iwlagn_txq_attach_buf_to_tfd(priv, txq, txcmd_phys, firstlen, 1);
Johannes Berg2c46f722011-04-28 07:27:10 -0700762 if (secondlen > 0)
Johannes Berg214d14d2011-05-04 07:50:44 -0700763 iwlagn_txq_attach_buf_to_tfd(priv, txq, phys_addr,
Johannes Berg4c42db02011-05-04 07:50:48 -0700764 secondlen, 0);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700765
766 scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
767 offsetof(struct iwl_tx_cmd, scratch);
768
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700769 /* take back ownership of DMA buffer to enable update */
770 pci_dma_sync_single_for_cpu(priv->pci_dev, txcmd_phys,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100771 firstlen, PCI_DMA_BIDIRECTIONAL);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700772 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
773 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
774
Frans Pop91dd6c22010-03-24 14:19:58 -0700775 IWL_DEBUG_TX(priv, "sequence nr = 0X%x\n",
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700776 le16_to_cpu(out_cmd->hdr.sequence));
Frans Pop91dd6c22010-03-24 14:19:58 -0700777 IWL_DEBUG_TX(priv, "tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700778 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
779 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
780
781 /* Set up entry for this TFD in Tx byte-count array */
782 if (info->flags & IEEE80211_TX_CTL_AMPDU)
Johannes Berg94b00652011-04-28 07:27:09 -0700783 iwlagn_txq_update_byte_cnt_tbl(priv, txq,
784 le16_to_cpu(tx_cmd->len));
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700785
786 pci_dma_sync_single_for_device(priv->pci_dev, txcmd_phys,
Stanislaw Gruszka70f38762010-11-12 08:47:06 +0100787 firstlen, PCI_DMA_BIDIRECTIONAL);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700788
789 trace_iwlwifi_dev_tx(priv,
790 &((struct iwl_tfd *)txq->tfds)[txq->q.write_ptr],
791 sizeof(struct iwl_tfd),
792 &out_cmd->hdr, firstlen,
793 skb->data + hdr_len, secondlen);
794
795 /* Tell device the write index *just past* this latest filled TFD */
796 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
797 iwl_txq_update_write_ptr(priv, txq);
798 spin_unlock_irqrestore(&priv->lock, flags);
799
800 /*
801 * At this point the frame is "transmitted" successfully
802 * and we will get a TX status notification eventually,
803 * regardless of the value of ret. "ret" only indicates
804 * whether or not we should update the write pointer.
805 */
806
Johannes Berg2e340342010-11-16 11:51:38 -0800807 /*
808 * Avoid atomic ops if it isn't an associated client.
809 * Also, if this is a packet for aggregation, don't
810 * increase the counter because the ucode will stop
811 * aggregation queues when their respective station
812 * goes to sleep.
813 */
814 if (sta_priv && sta_priv->client && !is_agg)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700815 atomic_inc(&sta_priv->pending_frames);
816
817 if ((iwl_queue_space(q) < q->high_mark) && priv->mac80211_registered) {
818 if (wait_write_ptr) {
819 spin_lock_irqsave(&priv->lock, flags);
820 txq->need_update = 1;
821 iwl_txq_update_write_ptr(priv, txq);
822 spin_unlock_irqrestore(&priv->lock, flags);
823 } else {
Johannes Berg549a04e2010-11-10 18:25:44 -0800824 iwl_stop_queue(priv, txq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700825 }
826 }
827
828 return 0;
829
Johannes Berg2c46f722011-04-28 07:27:10 -0700830drop_unlock_sta:
831 spin_unlock(&priv->sta_lock);
832drop_unlock_priv:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700833 spin_unlock_irqrestore(&priv->lock, flags);
834 return -1;
835}
836
837static inline int iwlagn_alloc_dma_ptr(struct iwl_priv *priv,
838 struct iwl_dma_ptr *ptr, size_t size)
839{
840 ptr->addr = dma_alloc_coherent(&priv->pci_dev->dev, size, &ptr->dma,
841 GFP_KERNEL);
842 if (!ptr->addr)
843 return -ENOMEM;
844 ptr->size = size;
845 return 0;
846}
847
848static inline void iwlagn_free_dma_ptr(struct iwl_priv *priv,
849 struct iwl_dma_ptr *ptr)
850{
851 if (unlikely(!ptr->addr))
852 return;
853
854 dma_free_coherent(&priv->pci_dev->dev, ptr->size, ptr->addr, ptr->dma);
855 memset(ptr, 0, sizeof(*ptr));
856}
857
858/**
859 * iwlagn_hw_txq_ctx_free - Free TXQ Context
860 *
861 * Destroy all TX DMA queues and structures
862 */
863void iwlagn_hw_txq_ctx_free(struct iwl_priv *priv)
864{
865 int txq_id;
866
867 /* Tx queues */
868 if (priv->txq) {
Zhu Yi470058e2010-04-02 13:38:54 -0700869 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
Johannes Berg13bb9482010-08-23 10:46:33 +0200870 if (txq_id == priv->cmd_queue)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700871 iwl_cmd_queue_free(priv);
872 else
873 iwl_tx_queue_free(priv, txq_id);
874 }
875 iwlagn_free_dma_ptr(priv, &priv->kw);
876
877 iwlagn_free_dma_ptr(priv, &priv->scd_bc_tbls);
878
879 /* free tx queue structure */
880 iwl_free_txq_mem(priv);
881}
882
883/**
Zhu Yi470058e2010-04-02 13:38:54 -0700884 * iwlagn_txq_ctx_alloc - allocate TX queue context
885 * Allocate all Tx DMA structures and initialize them
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700886 *
887 * @param priv
888 * @return error code
889 */
Zhu Yi470058e2010-04-02 13:38:54 -0700890int iwlagn_txq_ctx_alloc(struct iwl_priv *priv)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700891{
Zhu Yi470058e2010-04-02 13:38:54 -0700892 int ret;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700893 int txq_id, slots_num;
894 unsigned long flags;
895
896 /* Free all tx/cmd queues and keep-warm buffer */
897 iwlagn_hw_txq_ctx_free(priv);
898
899 ret = iwlagn_alloc_dma_ptr(priv, &priv->scd_bc_tbls,
900 priv->hw_params.scd_bc_tbls_size);
901 if (ret) {
902 IWL_ERR(priv, "Scheduler BC Table allocation failed\n");
903 goto error_bc_tbls;
904 }
905 /* Alloc keep-warm buffer */
906 ret = iwlagn_alloc_dma_ptr(priv, &priv->kw, IWL_KW_SIZE);
907 if (ret) {
908 IWL_ERR(priv, "Keep Warm allocation failed\n");
909 goto error_kw;
910 }
911
912 /* allocate tx queue structure */
913 ret = iwl_alloc_txq_mem(priv);
914 if (ret)
915 goto error;
916
917 spin_lock_irqsave(&priv->lock, flags);
918
919 /* Turn off all Tx DMA fifos */
Johannes Berg214d14d2011-05-04 07:50:44 -0700920 iwlagn_txq_set_sched(priv, 0);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700921
922 /* Tell NIC where to find the "keep warm" buffer */
923 iwl_write_direct32(priv, FH_KW_MEM_ADDR_REG, priv->kw.dma >> 4);
924
925 spin_unlock_irqrestore(&priv->lock, flags);
926
Johannes Berg13bb9482010-08-23 10:46:33 +0200927 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700928 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
Johannes Berg13bb9482010-08-23 10:46:33 +0200929 slots_num = (txq_id == priv->cmd_queue) ?
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700930 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
931 ret = iwl_tx_queue_init(priv, &priv->txq[txq_id], slots_num,
932 txq_id);
933 if (ret) {
934 IWL_ERR(priv, "Tx %d queue init failed\n", txq_id);
935 goto error;
936 }
937 }
938
939 return ret;
940
941 error:
942 iwlagn_hw_txq_ctx_free(priv);
943 iwlagn_free_dma_ptr(priv, &priv->kw);
944 error_kw:
945 iwlagn_free_dma_ptr(priv, &priv->scd_bc_tbls);
946 error_bc_tbls:
947 return ret;
948}
949
Zhu Yi470058e2010-04-02 13:38:54 -0700950void iwlagn_txq_ctx_reset(struct iwl_priv *priv)
951{
952 int txq_id, slots_num;
953 unsigned long flags;
954
955 spin_lock_irqsave(&priv->lock, flags);
956
957 /* Turn off all Tx DMA fifos */
Johannes Berg214d14d2011-05-04 07:50:44 -0700958 iwlagn_txq_set_sched(priv, 0);
Zhu Yi470058e2010-04-02 13:38:54 -0700959
960 /* Tell NIC where to find the "keep warm" buffer */
961 iwl_write_direct32(priv, FH_KW_MEM_ADDR_REG, priv->kw.dma >> 4);
962
963 spin_unlock_irqrestore(&priv->lock, flags);
964
965 /* Alloc and init all Tx queues, including the command queue (#4) */
966 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
Johannes Berg13bb9482010-08-23 10:46:33 +0200967 slots_num = txq_id == priv->cmd_queue ?
Zhu Yi470058e2010-04-02 13:38:54 -0700968 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
969 iwl_tx_queue_reset(priv, &priv->txq[txq_id], slots_num, txq_id);
970 }
971}
972
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700973/**
Zhu Yi470058e2010-04-02 13:38:54 -0700974 * iwlagn_txq_ctx_stop - Stop all Tx DMA channels
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700975 */
976void iwlagn_txq_ctx_stop(struct iwl_priv *priv)
977{
Stanislaw Gruszka387f3382011-02-28 14:33:13 +0100978 int ch, txq_id;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700979 unsigned long flags;
980
981 /* Turn off all Tx DMA fifos */
982 spin_lock_irqsave(&priv->lock, flags);
983
Johannes Berg214d14d2011-05-04 07:50:44 -0700984 iwlagn_txq_set_sched(priv, 0);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700985
986 /* Stop each Tx DMA channel, and wait for it to be idle */
987 for (ch = 0; ch < priv->hw_params.dma_chnl_num; ch++) {
988 iwl_write_direct32(priv, FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
Emmanuel Grumbach9726f342010-06-29 11:29:49 -0700989 if (iwl_poll_direct_bit(priv, FH_TSSR_TX_STATUS_REG,
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700990 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch),
Emmanuel Grumbach9726f342010-06-29 11:29:49 -0700991 1000))
992 IWL_ERR(priv, "Failing on timeout while stopping"
993 " DMA channel %d [0x%08x]", ch,
994 iwl_read_direct32(priv, FH_TSSR_TX_STATUS_REG));
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700995 }
996 spin_unlock_irqrestore(&priv->lock, flags);
Stanislaw Gruszka387f3382011-02-28 14:33:13 +0100997
998 if (!priv->txq)
999 return;
1000
1001 /* Unmap DMA from host system and free skb's */
1002 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
1003 if (txq_id == priv->cmd_queue)
1004 iwl_cmd_queue_unmap(priv);
1005 else
1006 iwl_tx_queue_unmap(priv, txq_id);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001007}
1008
1009/*
1010 * Find first available (lowest unused) Tx Queue, mark it "active".
1011 * Called only when finding queue for aggregation.
1012 * Should never return anything < 7, because they should already
1013 * be in use as EDCA AC (0-3), Command (4), reserved (5, 6)
1014 */
1015static int iwlagn_txq_ctx_activate_free(struct iwl_priv *priv)
1016{
1017 int txq_id;
1018
1019 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
1020 if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk))
1021 return txq_id;
1022 return -1;
1023}
1024
Johannes Berg832f47e2010-04-29 04:43:07 -07001025int iwlagn_tx_agg_start(struct iwl_priv *priv, struct ieee80211_vif *vif,
Johannes Berg619753f2010-04-30 11:30:46 -07001026 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001027{
1028 int sta_id;
1029 int tx_fifo;
1030 int txq_id;
1031 int ret;
1032 unsigned long flags;
1033 struct iwl_tid_data *tid_data;
1034
Johannes Berge72f3682010-08-23 10:46:51 +02001035 tx_fifo = get_fifo_from_tid(iwl_rxon_ctx_from_vif(vif), tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001036 if (unlikely(tx_fifo < 0))
1037 return tx_fifo;
1038
1039 IWL_WARN(priv, "%s on ra = %pM tid = %d\n",
Johannes Berg619753f2010-04-30 11:30:46 -07001040 __func__, sta->addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001041
Johannes Berg619753f2010-04-30 11:30:46 -07001042 sta_id = iwl_sta_id(sta);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001043 if (sta_id == IWL_INVALID_STATION) {
1044 IWL_ERR(priv, "Start AGG on invalid station\n");
1045 return -ENXIO;
1046 }
1047 if (unlikely(tid >= MAX_TID_COUNT))
1048 return -EINVAL;
1049
1050 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) {
1051 IWL_ERR(priv, "Start AGG when state is not IWL_AGG_OFF !\n");
1052 return -ENXIO;
1053 }
1054
1055 txq_id = iwlagn_txq_ctx_activate_free(priv);
1056 if (txq_id == -1) {
1057 IWL_ERR(priv, "No free aggregation queue available\n");
1058 return -ENXIO;
1059 }
1060
1061 spin_lock_irqsave(&priv->sta_lock, flags);
1062 tid_data = &priv->stations[sta_id].tid[tid];
1063 *ssn = SEQ_TO_SN(tid_data->seq_number);
1064 tid_data->agg.txq_id = txq_id;
Johannes Bergc8823ec2011-03-15 11:33:03 -07001065 tid_data->agg.tx_fifo = tx_fifo;
Johannes Bergea9b3072010-11-10 18:25:45 -08001066 iwl_set_swq_id(&priv->txq[txq_id], get_ac_from_tid(tid), txq_id);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001067 spin_unlock_irqrestore(&priv->sta_lock, flags);
1068
Johannes Bergc8823ec2011-03-15 11:33:03 -07001069 ret = iwlagn_txq_agg_enable(priv, txq_id, sta_id, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001070 if (ret)
1071 return ret;
1072
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001073 spin_lock_irqsave(&priv->sta_lock, flags);
1074 tid_data = &priv->stations[sta_id].tid[tid];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001075 if (tid_data->tfds_in_queue == 0) {
1076 IWL_DEBUG_HT(priv, "HW queue is empty\n");
1077 tid_data->agg.state = IWL_AGG_ON;
Johannes Berg619753f2010-04-30 11:30:46 -07001078 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001079 } else {
1080 IWL_DEBUG_HT(priv, "HW queue is NOT empty: %d packets in HW queue\n",
1081 tid_data->tfds_in_queue);
1082 tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA;
1083 }
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001084 spin_unlock_irqrestore(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001085 return ret;
1086}
1087
Johannes Berg832f47e2010-04-29 04:43:07 -07001088int iwlagn_tx_agg_stop(struct iwl_priv *priv, struct ieee80211_vif *vif,
Johannes Berg619753f2010-04-30 11:30:46 -07001089 struct ieee80211_sta *sta, u16 tid)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001090{
Johannes Berg18c121d2010-08-23 07:57:17 -07001091 int tx_fifo_id, txq_id, sta_id, ssn;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001092 struct iwl_tid_data *tid_data;
1093 int write_ptr, read_ptr;
1094 unsigned long flags;
1095
Johannes Berge72f3682010-08-23 10:46:51 +02001096 tx_fifo_id = get_fifo_from_tid(iwl_rxon_ctx_from_vif(vif), tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001097 if (unlikely(tx_fifo_id < 0))
1098 return tx_fifo_id;
1099
Johannes Berg619753f2010-04-30 11:30:46 -07001100 sta_id = iwl_sta_id(sta);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001101
1102 if (sta_id == IWL_INVALID_STATION) {
1103 IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid);
1104 return -ENXIO;
1105 }
1106
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001107 spin_lock_irqsave(&priv->sta_lock, flags);
1108
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001109 tid_data = &priv->stations[sta_id].tid[tid];
1110 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
1111 txq_id = tid_data->agg.txq_id;
Johannes Berg18c121d2010-08-23 07:57:17 -07001112
1113 switch (priv->stations[sta_id].tid[tid].agg.state) {
1114 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1115 /*
1116 * This can happen if the peer stops aggregation
1117 * again before we've had a chance to drain the
1118 * queue we selected previously, i.e. before the
1119 * session was really started completely.
1120 */
1121 IWL_DEBUG_HT(priv, "AGG stop before setup done\n");
1122 goto turn_off;
1123 case IWL_AGG_ON:
1124 break;
1125 default:
1126 IWL_WARN(priv, "Stopping AGG while state not ON or starting\n");
1127 }
1128
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001129 write_ptr = priv->txq[txq_id].q.write_ptr;
1130 read_ptr = priv->txq[txq_id].q.read_ptr;
1131
1132 /* The queue is not empty */
1133 if (write_ptr != read_ptr) {
1134 IWL_DEBUG_HT(priv, "Stopping a non empty AGG HW QUEUE\n");
1135 priv->stations[sta_id].tid[tid].agg.state =
1136 IWL_EMPTYING_HW_QUEUE_DELBA;
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001137 spin_unlock_irqrestore(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001138 return 0;
1139 }
1140
1141 IWL_DEBUG_HT(priv, "HW queue is empty\n");
Johannes Berg18c121d2010-08-23 07:57:17 -07001142 turn_off:
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001143 priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF;
1144
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001145 /* do not restore/save irqs */
1146 spin_unlock(&priv->sta_lock);
1147 spin_lock(&priv->lock);
1148
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001149 /*
1150 * the only reason this call can fail is queue number out of range,
1151 * which can happen if uCode is reloaded and all the station
1152 * information are lost. if it is outside the range, there is no need
1153 * to deactivate the uCode queue, just return "success" to allow
1154 * mac80211 to clean up it own data.
1155 */
Johannes Berg7ffef132011-03-15 04:59:10 -07001156 iwlagn_txq_agg_disable(priv, txq_id, ssn, tx_fifo_id);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001157 spin_unlock_irqrestore(&priv->lock, flags);
1158
Johannes Berg619753f2010-04-30 11:30:46 -07001159 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001160
1161 return 0;
1162}
1163
1164int iwlagn_txq_check_empty(struct iwl_priv *priv,
1165 int sta_id, u8 tid, int txq_id)
1166{
1167 struct iwl_queue *q = &priv->txq[txq_id].q;
1168 u8 *addr = priv->stations[sta_id].sta.sta.addr;
1169 struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid];
Johannes Berg8bd413e2010-08-23 10:46:40 +02001170 struct iwl_rxon_context *ctx;
1171
1172 ctx = &priv->contexts[priv->stations[sta_id].ctxid];
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001173
Johannes Berga24d52f2010-08-06 16:17:53 +02001174 lockdep_assert_held(&priv->sta_lock);
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001175
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001176 switch (priv->stations[sta_id].tid[tid].agg.state) {
1177 case IWL_EMPTYING_HW_QUEUE_DELBA:
1178 /* We are reclaiming the last packet of the */
1179 /* aggregated HW queue */
1180 if ((txq_id == tid_data->agg.txq_id) &&
1181 (q->read_ptr == q->write_ptr)) {
1182 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
Johannes Berge72f3682010-08-23 10:46:51 +02001183 int tx_fifo = get_fifo_from_tid(ctx, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001184 IWL_DEBUG_HT(priv, "HW queue empty: continue DELBA flow\n");
Johannes Berg7ffef132011-03-15 04:59:10 -07001185 iwlagn_txq_agg_disable(priv, txq_id, ssn, tx_fifo);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001186 tid_data->agg.state = IWL_AGG_OFF;
Johannes Berg8bd413e2010-08-23 10:46:40 +02001187 ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001188 }
1189 break;
1190 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1191 /* We are reclaiming the last packet of the queue */
1192 if (tid_data->tfds_in_queue == 0) {
1193 IWL_DEBUG_HT(priv, "HW queue empty: continue ADDBA flow\n");
1194 tid_data->agg.state = IWL_AGG_ON;
Johannes Berg8bd413e2010-08-23 10:46:40 +02001195 ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001196 }
1197 break;
1198 }
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001199
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001200 return 0;
1201}
1202
Johannes Berg2e340342010-11-16 11:51:38 -08001203static void iwlagn_non_agg_tx_status(struct iwl_priv *priv,
1204 struct iwl_rxon_context *ctx,
1205 const u8 *addr1)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001206{
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001207 struct ieee80211_sta *sta;
1208 struct iwl_station_priv *sta_priv;
1209
Johannes Berg6db63402010-06-07 21:20:38 +02001210 rcu_read_lock();
Johannes Berg2e340342010-11-16 11:51:38 -08001211 sta = ieee80211_find_sta(ctx->vif, addr1);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001212 if (sta) {
1213 sta_priv = (void *)sta->drv_priv;
1214 /* avoid atomic ops if this isn't a client */
1215 if (sta_priv->client &&
1216 atomic_dec_return(&sta_priv->pending_frames) == 0)
1217 ieee80211_sta_block_awake(priv->hw, sta, false);
1218 }
Johannes Berg6db63402010-06-07 21:20:38 +02001219 rcu_read_unlock();
Johannes Berg2e340342010-11-16 11:51:38 -08001220}
1221
1222static void iwlagn_tx_status(struct iwl_priv *priv, struct iwl_tx_info *tx_info,
1223 bool is_agg)
1224{
1225 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx_info->skb->data;
1226
1227 if (!is_agg)
1228 iwlagn_non_agg_tx_status(priv, tx_info->ctx, hdr->addr1);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001229
Johannes Berg8bd413e2010-08-23 10:46:40 +02001230 ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001231}
1232
1233int iwlagn_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
1234{
1235 struct iwl_tx_queue *txq = &priv->txq[txq_id];
1236 struct iwl_queue *q = &txq->q;
1237 struct iwl_tx_info *tx_info;
1238 int nfreed = 0;
1239 struct ieee80211_hdr *hdr;
1240
1241 if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
1242 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
1243 "is out of range [0-%d] %d %d.\n", txq_id,
1244 index, q->n_bd, q->write_ptr, q->read_ptr);
1245 return 0;
1246 }
1247
1248 for (index = iwl_queue_inc_wrap(index, q->n_bd);
1249 q->read_ptr != index;
1250 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1251
1252 tx_info = &txq->txb[txq->q.read_ptr];
Stanislaw Gruszkab2502692011-04-20 15:57:14 +02001253
1254 if (WARN_ON_ONCE(tx_info->skb == NULL))
1255 continue;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001256
Johannes Bergff0d91c2010-05-17 02:37:34 -07001257 hdr = (struct ieee80211_hdr *)tx_info->skb->data;
Stanislaw Gruszkab2502692011-04-20 15:57:14 +02001258 if (ieee80211_is_data_qos(hdr->frame_control))
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001259 nfreed++;
Stanislaw Gruszkab2502692011-04-20 15:57:14 +02001260
1261 iwlagn_tx_status(priv, tx_info,
1262 txq_id >= IWLAGN_FIRST_AMPDU_QUEUE);
Johannes Bergff0d91c2010-05-17 02:37:34 -07001263 tx_info->skb = NULL;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001264
Johannes Berg94b00652011-04-28 07:27:09 -07001265 iwlagn_txq_inval_byte_cnt_tbl(priv, txq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001266
Johannes Berg214d14d2011-05-04 07:50:44 -07001267 iwlagn_txq_free_tfd(priv, txq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001268 }
1269 return nfreed;
1270}
1271
1272/**
1273 * iwlagn_tx_status_reply_compressed_ba - Update tx status from block-ack
1274 *
1275 * Go through block-ack's bitmap of ACK'd frames, update driver's record of
1276 * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
1277 */
1278static int iwlagn_tx_status_reply_compressed_ba(struct iwl_priv *priv,
1279 struct iwl_ht_agg *agg,
1280 struct iwl_compressed_ba_resp *ba_resp)
1281
1282{
Daniel Halperind0eb6332011-03-16 17:17:36 -07001283 int sh;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001284 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
1285 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001286 struct ieee80211_tx_info *info;
Daniel Halperind0eb6332011-03-16 17:17:36 -07001287 u64 bitmap, sent_bitmap;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001288
1289 if (unlikely(!agg->wait_for_ba)) {
Don Fry822395b2010-10-23 09:02:50 -07001290 if (unlikely(ba_resp->bitmap))
1291 IWL_ERR(priv, "Received BA when not expected\n");
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001292 return -EINVAL;
1293 }
1294
1295 /* Mark that the expected block-ack response arrived */
1296 agg->wait_for_ba = 0;
1297 IWL_DEBUG_TX_REPLY(priv, "BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
1298
1299 /* Calculate shift to align block-ack bits with our Tx window bits */
1300 sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl >> 4);
Daniel Halperind0eb6332011-03-16 17:17:36 -07001301 if (sh < 0)
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001302 sh += 0x100;
1303
Daniel Halperind0eb6332011-03-16 17:17:36 -07001304 /*
1305 * Check for success or failure according to the
1306 * transmitted bitmap and block-ack bitmap
1307 */
1308 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
1309 sent_bitmap = bitmap & agg->bitmap;
1310
1311 /* Sanity check values reported by uCode */
1312 if (ba_resp->txed_2_done > ba_resp->txed) {
1313 IWL_DEBUG_TX_REPLY(priv,
1314 "bogus sent(%d) and ack(%d) count\n",
1315 ba_resp->txed, ba_resp->txed_2_done);
Wey-Yi Guy8829c9e2010-11-10 11:05:38 -08001316 /*
Daniel Halperind0eb6332011-03-16 17:17:36 -07001317 * set txed_2_done = txed,
1318 * so it won't impact rate scale
Wey-Yi Guy8829c9e2010-11-10 11:05:38 -08001319 */
Daniel Halperind0eb6332011-03-16 17:17:36 -07001320 ba_resp->txed = ba_resp->txed_2_done;
1321 }
1322 IWL_DEBUG_HT(priv, "agg frames sent:%d, acked:%d\n",
1323 ba_resp->txed, ba_resp->txed_2_done);
Johannes Berg9decde92010-11-30 13:24:36 -08001324
Daniel Halperind0eb6332011-03-16 17:17:36 -07001325 /* Find the first ACKed frame to store the TX status */
1326 while (sent_bitmap && !(sent_bitmap & 1)) {
1327 agg->start_idx = (agg->start_idx + 1) & 0xff;
1328 sent_bitmap >>= 1;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001329 }
Johannes Berg9decde92010-11-30 13:24:36 -08001330
Johannes Bergff0d91c2010-05-17 02:37:34 -07001331 info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001332 memset(&info->status, 0, sizeof(info->status));
1333 info->flags |= IEEE80211_TX_STAT_ACK;
1334 info->flags |= IEEE80211_TX_STAT_AMPDU;
Daniel Halperind0eb6332011-03-16 17:17:36 -07001335 info->status.ampdu_ack_len = ba_resp->txed_2_done;
1336 info->status.ampdu_len = ba_resp->txed;
Wey-Yi Guy8d801082010-03-17 13:34:36 -07001337 iwlagn_hwrate_to_tx_control(priv, agg->rate_n_flags, info);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001338
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001339 return 0;
1340}
1341
1342/**
Wey-Yi Guy8d801082010-03-17 13:34:36 -07001343 * translate ucode response to mac80211 tx status control values
1344 */
1345void iwlagn_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags,
1346 struct ieee80211_tx_info *info)
1347{
1348 struct ieee80211_tx_rate *r = &info->control.rates[0];
1349
1350 info->antenna_sel_tx =
1351 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
1352 if (rate_n_flags & RATE_MCS_HT_MSK)
1353 r->flags |= IEEE80211_TX_RC_MCS;
1354 if (rate_n_flags & RATE_MCS_GF_MSK)
1355 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
1356 if (rate_n_flags & RATE_MCS_HT40_MSK)
1357 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
1358 if (rate_n_flags & RATE_MCS_DUP_MSK)
1359 r->flags |= IEEE80211_TX_RC_DUP_DATA;
1360 if (rate_n_flags & RATE_MCS_SGI_MSK)
1361 r->flags |= IEEE80211_TX_RC_SHORT_GI;
1362 r->idx = iwlagn_hwrate_to_mac80211_idx(rate_n_flags, info->band);
1363}
1364
1365/**
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001366 * iwlagn_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA
1367 *
1368 * Handles block-acknowledge notification from device, which reports success
1369 * of frames sent via aggregation.
1370 */
1371void iwlagn_rx_reply_compressed_ba(struct iwl_priv *priv,
1372 struct iwl_rx_mem_buffer *rxb)
1373{
1374 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1375 struct iwl_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
1376 struct iwl_tx_queue *txq = NULL;
1377 struct iwl_ht_agg *agg;
1378 int index;
1379 int sta_id;
1380 int tid;
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001381 unsigned long flags;
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001382
1383 /* "flow" corresponds to Tx queue */
1384 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1385
1386 /* "ssn" is start of block-ack Tx window, corresponds to index
1387 * (in Tx queue's circular buffer) of first TFD/frame in window */
1388 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
1389
1390 if (scd_flow >= priv->hw_params.max_txq_num) {
1391 IWL_ERR(priv,
1392 "BUG_ON scd_flow is bigger than number of queues\n");
1393 return;
1394 }
1395
1396 txq = &priv->txq[scd_flow];
1397 sta_id = ba_resp->sta_id;
1398 tid = ba_resp->tid;
1399 agg = &priv->stations[sta_id].tid[tid].agg;
Shanyu Zhaob561e822010-06-01 17:13:58 -07001400 if (unlikely(agg->txq_id != scd_flow)) {
Wey-Yi Guy735df292010-07-31 08:34:11 -07001401 /*
1402 * FIXME: this is a uCode bug which need to be addressed,
1403 * log the information and return for now!
1404 * since it is possible happen very often and in order
1405 * not to fill the syslog, don't enable the logging by default
1406 */
1407 IWL_DEBUG_TX_REPLY(priv,
1408 "BA scd_flow %d does not match txq_id %d\n",
Shanyu Zhaob561e822010-06-01 17:13:58 -07001409 scd_flow, agg->txq_id);
1410 return;
1411 }
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001412
1413 /* Find index just before block-ack window */
1414 index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
1415
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001416 spin_lock_irqsave(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001417
1418 IWL_DEBUG_TX_REPLY(priv, "REPLY_COMPRESSED_BA [%d] Received from %pM, "
1419 "sta_id = %d\n",
1420 agg->wait_for_ba,
1421 (u8 *) &ba_resp->sta_addr_lo32,
1422 ba_resp->sta_id);
1423 IWL_DEBUG_TX_REPLY(priv, "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = "
1424 "%d, scd_ssn = %d\n",
1425 ba_resp->tid,
1426 ba_resp->seq_ctl,
1427 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
1428 ba_resp->scd_flow,
1429 ba_resp->scd_ssn);
Frans Pop91dd6c22010-03-24 14:19:58 -07001430 IWL_DEBUG_TX_REPLY(priv, "DAT start_idx = %d, bitmap = 0x%llx\n",
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001431 agg->start_idx,
1432 (unsigned long long)agg->bitmap);
1433
1434 /* Update driver's record of ACK vs. not for each frame in window */
1435 iwlagn_tx_status_reply_compressed_ba(priv, agg, ba_resp);
1436
1437 /* Release all TFDs before the SSN, i.e. all TFDs in front of
1438 * block-ack window (we assume that they've been successfully
1439 * transmitted ... if not, it's too late anyway). */
1440 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
1441 /* calculate mac80211 ampdu sw queue to wake */
1442 int freed = iwlagn_tx_queue_reclaim(priv, scd_flow, index);
1443 iwl_free_tfds_in_queue(priv, sta_id, tid, freed);
1444
1445 if ((iwl_queue_space(&txq->q) > txq->q.low_mark) &&
1446 priv->mac80211_registered &&
1447 (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA))
Johannes Berg549a04e2010-11-10 18:25:44 -08001448 iwl_wake_queue(priv, txq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001449
1450 iwlagn_txq_check_empty(priv, sta_id, tid, scd_flow);
1451 }
Reinette Chatre9c5ac092010-05-05 02:26:06 -07001452
1453 spin_unlock_irqrestore(&priv->sta_lock, flags);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07001454}
Johannes Berg69fdb712010-09-22 18:02:02 +02001455
1456#ifdef CONFIG_IWLWIFI_DEBUG
1457const char *iwl_get_tx_fail_reason(u32 status)
1458{
1459#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
1460#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
1461
1462 switch (status & TX_STATUS_MSK) {
1463 case TX_STATUS_SUCCESS:
1464 return "SUCCESS";
1465 TX_STATUS_POSTPONE(DELAY);
1466 TX_STATUS_POSTPONE(FEW_BYTES);
1467 TX_STATUS_POSTPONE(BT_PRIO);
1468 TX_STATUS_POSTPONE(QUIET_PERIOD);
1469 TX_STATUS_POSTPONE(CALC_TTAK);
1470 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
1471 TX_STATUS_FAIL(SHORT_LIMIT);
1472 TX_STATUS_FAIL(LONG_LIMIT);
1473 TX_STATUS_FAIL(FIFO_UNDERRUN);
1474 TX_STATUS_FAIL(DRAIN_FLOW);
1475 TX_STATUS_FAIL(RFKILL_FLUSH);
1476 TX_STATUS_FAIL(LIFE_EXPIRE);
1477 TX_STATUS_FAIL(DEST_PS);
1478 TX_STATUS_FAIL(HOST_ABORTED);
1479 TX_STATUS_FAIL(BT_RETRY);
1480 TX_STATUS_FAIL(STA_INVALID);
1481 TX_STATUS_FAIL(FRAG_DROPPED);
1482 TX_STATUS_FAIL(TID_DISABLE);
1483 TX_STATUS_FAIL(FIFO_FLUSHED);
1484 TX_STATUS_FAIL(INSUFFICIENT_CF_POLL);
1485 TX_STATUS_FAIL(PASSIVE_NO_RX);
1486 TX_STATUS_FAIL(NO_BEACON_ON_RADAR);
1487 }
1488
1489 return "UNKNOWN";
1490
1491#undef TX_STATUS_FAIL
1492#undef TX_STATUS_POSTPONE
1493}
1494#endif /* CONFIG_IWLWIFI_DEBUG */