8ae4c9b614e7b00cca2c457f4dd7a91637d63725
[safe/jmp/linux-2.6] / drivers / net / wireless / iwlwifi / iwl-tx.c
1 /******************************************************************************
2  *
3  * Copyright(c) 2003 - 2009 Intel Corporation. All rights reserved.
4  *
5  * Portions of this file are derived from the ipw3945 project, as well
6  * as portions of the ieee80211 subsystem header files.
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of version 2 of the GNU General Public License as
10  * published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
15  * more details.
16  *
17  * You should have received a copy of the GNU General Public License along with
18  * this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20  *
21  * The full GNU General Public License is included in this distribution in the
22  * file called LICENSE.
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/etherdevice.h>
31 #include <net/mac80211.h>
32 #include "iwl-eeprom.h"
33 #include "iwl-dev.h"
34 #include "iwl-core.h"
35 #include "iwl-sta.h"
36 #include "iwl-io.h"
37 #include "iwl-helpers.h"
38
39 static const u16 default_tid_to_tx_fifo[] = {
40         IWL_TX_FIFO_AC1,
41         IWL_TX_FIFO_AC0,
42         IWL_TX_FIFO_AC0,
43         IWL_TX_FIFO_AC1,
44         IWL_TX_FIFO_AC2,
45         IWL_TX_FIFO_AC2,
46         IWL_TX_FIFO_AC3,
47         IWL_TX_FIFO_AC3,
48         IWL_TX_FIFO_NONE,
49         IWL_TX_FIFO_NONE,
50         IWL_TX_FIFO_NONE,
51         IWL_TX_FIFO_NONE,
52         IWL_TX_FIFO_NONE,
53         IWL_TX_FIFO_NONE,
54         IWL_TX_FIFO_NONE,
55         IWL_TX_FIFO_NONE,
56         IWL_TX_FIFO_AC3
57 };
58
59 static inline int iwl_alloc_dma_ptr(struct iwl_priv *priv,
60                                     struct iwl_dma_ptr *ptr, size_t size)
61 {
62         ptr->addr = pci_alloc_consistent(priv->pci_dev, size, &ptr->dma);
63         if (!ptr->addr)
64                 return -ENOMEM;
65         ptr->size = size;
66         return 0;
67 }
68
69 static inline void iwl_free_dma_ptr(struct iwl_priv *priv,
70                                     struct iwl_dma_ptr *ptr)
71 {
72         if (unlikely(!ptr->addr))
73                 return;
74
75         pci_free_consistent(priv->pci_dev, ptr->size, ptr->addr, ptr->dma);
76         memset(ptr, 0, sizeof(*ptr));
77 }
78
79 /**
80  * iwl_txq_update_write_ptr - Send new write index to hardware
81  */
82 int iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq)
83 {
84         u32 reg = 0;
85         int ret = 0;
86         int txq_id = txq->q.id;
87
88         if (txq->need_update == 0)
89                 return ret;
90
91         /* if we're trying to save power */
92         if (test_bit(STATUS_POWER_PMI, &priv->status)) {
93                 /* wake up nic if it's powered down ...
94                  * uCode will wake up, and interrupt us again, so next
95                  * time we'll skip this part. */
96                 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
97
98                 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
99                         IWL_DEBUG_INFO(priv, "Requesting wakeup, GP1 = 0x%x\n", reg);
100                         iwl_set_bit(priv, CSR_GP_CNTRL,
101                                     CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
102                         return ret;
103                 }
104
105                 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
106                                      txq->q.write_ptr | (txq_id << 8));
107
108         /* else not in power-save mode, uCode will never sleep when we're
109          * trying to tx (during RFKILL, we're not trying to tx). */
110         } else
111                 iwl_write32(priv, HBUS_TARG_WRPTR,
112                             txq->q.write_ptr | (txq_id << 8));
113
114         txq->need_update = 0;
115
116         return ret;
117 }
118 EXPORT_SYMBOL(iwl_txq_update_write_ptr);
119
120
121 /**
122  * iwl_tx_queue_free - Deallocate DMA queue.
123  * @txq: Transmit queue to deallocate.
124  *
125  * Empty queue by removing and destroying all BD's.
126  * Free all buffers.
127  * 0-fill, but do not free "txq" descriptor structure.
128  */
129 void iwl_tx_queue_free(struct iwl_priv *priv, int txq_id)
130 {
131         struct iwl_tx_queue *txq = &priv->txq[txq_id];
132         struct iwl_queue *q = &txq->q;
133         struct pci_dev *dev = priv->pci_dev;
134         int i;
135
136         if (q->n_bd == 0)
137                 return;
138
139         /* first, empty all BD's */
140         for (; q->write_ptr != q->read_ptr;
141              q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
142                 priv->cfg->ops->lib->txq_free_tfd(priv, txq);
143
144         /* De-alloc array of command/tx buffers */
145         for (i = 0; i < TFD_TX_CMD_SLOTS; i++)
146                 kfree(txq->cmd[i]);
147
148         /* De-alloc circular buffer of TFDs */
149         if (txq->q.n_bd)
150                 pci_free_consistent(dev, priv->hw_params.tfd_size *
151                                     txq->q.n_bd, txq->tfds, txq->q.dma_addr);
152
153         /* De-alloc array of per-TFD driver data */
154         kfree(txq->txb);
155         txq->txb = NULL;
156
157         /* deallocate arrays */
158         kfree(txq->cmd);
159         kfree(txq->meta);
160         txq->cmd = NULL;
161         txq->meta = NULL;
162
163         /* 0-fill queue descriptor structure */
164         memset(txq, 0, sizeof(*txq));
165 }
166 EXPORT_SYMBOL(iwl_tx_queue_free);
167
168 /**
169  * iwl_cmd_queue_free - Deallocate DMA queue.
170  * @txq: Transmit queue to deallocate.
171  *
172  * Empty queue by removing and destroying all BD's.
173  * Free all buffers.
174  * 0-fill, but do not free "txq" descriptor structure.
175  */
176 void iwl_cmd_queue_free(struct iwl_priv *priv)
177 {
178         struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
179         struct iwl_queue *q = &txq->q;
180         struct pci_dev *dev = priv->pci_dev;
181         int i;
182
183         if (q->n_bd == 0)
184                 return;
185
186         /* De-alloc array of command/tx buffers */
187         for (i = 0; i <= TFD_CMD_SLOTS; i++)
188                 kfree(txq->cmd[i]);
189
190         /* De-alloc circular buffer of TFDs */
191         if (txq->q.n_bd)
192                 pci_free_consistent(dev, priv->hw_params.tfd_size *
193                                     txq->q.n_bd, txq->tfds, txq->q.dma_addr);
194
195         /* deallocate arrays */
196         kfree(txq->cmd);
197         kfree(txq->meta);
198         txq->cmd = NULL;
199         txq->meta = NULL;
200
201         /* 0-fill queue descriptor structure */
202         memset(txq, 0, sizeof(*txq));
203 }
204 EXPORT_SYMBOL(iwl_cmd_queue_free);
205
206 /*************** DMA-QUEUE-GENERAL-FUNCTIONS  *****
207  * DMA services
208  *
209  * Theory of operation
210  *
211  * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
212  * of buffer descriptors, each of which points to one or more data buffers for
213  * the device to read from or fill.  Driver and device exchange status of each
214  * queue via "read" and "write" pointers.  Driver keeps minimum of 2 empty
215  * entries in each circular buffer, to protect against confusing empty and full
216  * queue states.
217  *
218  * The device reads or writes the data in the queues via the device's several
219  * DMA/FIFO channels.  Each queue is mapped to a single DMA channel.
220  *
221  * For Tx queue, there are low mark and high mark limits. If, after queuing
222  * the packet for Tx, free space become < low mark, Tx queue stopped. When
223  * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
224  * Tx queue resumed.
225  *
226  * See more detailed info in iwl-4965-hw.h.
227  ***************************************************/
228
229 int iwl_queue_space(const struct iwl_queue *q)
230 {
231         int s = q->read_ptr - q->write_ptr;
232
233         if (q->read_ptr > q->write_ptr)
234                 s -= q->n_bd;
235
236         if (s <= 0)
237                 s += q->n_window;
238         /* keep some reserve to not confuse empty and full situations */
239         s -= 2;
240         if (s < 0)
241                 s = 0;
242         return s;
243 }
244 EXPORT_SYMBOL(iwl_queue_space);
245
246
247 /**
248  * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
249  */
250 static int iwl_queue_init(struct iwl_priv *priv, struct iwl_queue *q,
251                           int count, int slots_num, u32 id)
252 {
253         q->n_bd = count;
254         q->n_window = slots_num;
255         q->id = id;
256
257         /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
258          * and iwl_queue_dec_wrap are broken. */
259         BUG_ON(!is_power_of_2(count));
260
261         /* slots_num must be power-of-two size, otherwise
262          * get_cmd_index is broken. */
263         BUG_ON(!is_power_of_2(slots_num));
264
265         q->low_mark = q->n_window / 4;
266         if (q->low_mark < 4)
267                 q->low_mark = 4;
268
269         q->high_mark = q->n_window / 8;
270         if (q->high_mark < 2)
271                 q->high_mark = 2;
272
273         q->write_ptr = q->read_ptr = 0;
274
275         return 0;
276 }
277
278 /**
279  * iwl_tx_queue_alloc - Alloc driver data and TFD CB for one Tx/cmd queue
280  */
281 static int iwl_tx_queue_alloc(struct iwl_priv *priv,
282                               struct iwl_tx_queue *txq, u32 id)
283 {
284         struct pci_dev *dev = priv->pci_dev;
285         size_t tfd_sz = priv->hw_params.tfd_size * TFD_QUEUE_SIZE_MAX;
286
287         /* Driver private data, only for Tx (not command) queues,
288          * not shared with device. */
289         if (id != IWL_CMD_QUEUE_NUM) {
290                 txq->txb = kmalloc(sizeof(txq->txb[0]) *
291                                    TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
292                 if (!txq->txb) {
293                         IWL_ERR(priv, "kmalloc for auxiliary BD "
294                                   "structures failed\n");
295                         goto error;
296                 }
297         } else {
298                 txq->txb = NULL;
299         }
300
301         /* Circular buffer of transmit frame descriptors (TFDs),
302          * shared with device */
303         txq->tfds = pci_alloc_consistent(dev, tfd_sz, &txq->q.dma_addr);
304
305         if (!txq->tfds) {
306                 IWL_ERR(priv, "pci_alloc_consistent(%zd) failed\n", tfd_sz);
307                 goto error;
308         }
309         txq->q.id = id;
310
311         return 0;
312
313  error:
314         kfree(txq->txb);
315         txq->txb = NULL;
316
317         return -ENOMEM;
318 }
319
320 /**
321  * iwl_tx_queue_init - Allocate and initialize one tx/cmd queue
322  */
323 int iwl_tx_queue_init(struct iwl_priv *priv, struct iwl_tx_queue *txq,
324                       int slots_num, u32 txq_id)
325 {
326         int i, len;
327         int ret;
328         int actual_slots = slots_num;
329
330         /*
331          * Alloc buffer array for commands (Tx or other types of commands).
332          * For the command queue (#4), allocate command space + one big
333          * command for scan, since scan command is very huge; the system will
334          * not have two scans at the same time, so only one is needed.
335          * For normal Tx queues (all other queues), no super-size command
336          * space is needed.
337          */
338         if (txq_id == IWL_CMD_QUEUE_NUM)
339                 actual_slots++;
340
341         txq->meta = kzalloc(sizeof(struct iwl_cmd_meta) * actual_slots,
342                             GFP_KERNEL);
343         txq->cmd = kzalloc(sizeof(struct iwl_device_cmd *) * actual_slots,
344                            GFP_KERNEL);
345
346         if (!txq->meta || !txq->cmd)
347                 goto out_free_arrays;
348
349         len = sizeof(struct iwl_device_cmd);
350         for (i = 0; i < actual_slots; i++) {
351                 /* only happens for cmd queue */
352                 if (i == slots_num)
353                         len += IWL_MAX_SCAN_SIZE;
354
355                 txq->cmd[i] = kmalloc(len, GFP_KERNEL);
356                 if (!txq->cmd[i])
357                         goto err;
358         }
359
360         /* Alloc driver data array and TFD circular buffer */
361         ret = iwl_tx_queue_alloc(priv, txq, txq_id);
362         if (ret)
363                 goto err;
364
365         txq->need_update = 0;
366
367         /* aggregation TX queues will get their ID when aggregation begins */
368         if (txq_id <= IWL_TX_FIFO_AC3)
369                 txq->swq_id = txq_id;
370
371         /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
372          * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
373         BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
374
375         /* Initialize queue's high/low-water marks, and head/tail indexes */
376         iwl_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
377
378         /* Tell device where to find queue */
379         priv->cfg->ops->lib->txq_init(priv, txq);
380
381         return 0;
382 err:
383         for (i = 0; i < actual_slots; i++)
384                 kfree(txq->cmd[i]);
385 out_free_arrays:
386         kfree(txq->meta);
387         kfree(txq->cmd);
388
389         return -ENOMEM;
390 }
391 EXPORT_SYMBOL(iwl_tx_queue_init);
392
393 /**
394  * iwl_hw_txq_ctx_free - Free TXQ Context
395  *
396  * Destroy all TX DMA queues and structures
397  */
398 void iwl_hw_txq_ctx_free(struct iwl_priv *priv)
399 {
400         int txq_id;
401
402         /* Tx queues */
403         if (priv->txq)
404                 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num;
405                      txq_id++)
406                         if (txq_id == IWL_CMD_QUEUE_NUM)
407                                 iwl_cmd_queue_free(priv);
408                         else
409                                 iwl_tx_queue_free(priv, txq_id);
410         iwl_free_dma_ptr(priv, &priv->kw);
411
412         iwl_free_dma_ptr(priv, &priv->scd_bc_tbls);
413
414         /* free tx queue structure */
415         iwl_free_txq_mem(priv);
416 }
417 EXPORT_SYMBOL(iwl_hw_txq_ctx_free);
418
419 /**
420  * iwl_txq_ctx_reset - Reset TX queue context
421  * Destroys all DMA structures and initialize them again
422  *
423  * @param priv
424  * @return error code
425  */
426 int iwl_txq_ctx_reset(struct iwl_priv *priv)
427 {
428         int ret = 0;
429         int txq_id, slots_num;
430         unsigned long flags;
431
432         /* Free all tx/cmd queues and keep-warm buffer */
433         iwl_hw_txq_ctx_free(priv);
434
435         ret = iwl_alloc_dma_ptr(priv, &priv->scd_bc_tbls,
436                                 priv->hw_params.scd_bc_tbls_size);
437         if (ret) {
438                 IWL_ERR(priv, "Scheduler BC Table allocation failed\n");
439                 goto error_bc_tbls;
440         }
441         /* Alloc keep-warm buffer */
442         ret = iwl_alloc_dma_ptr(priv, &priv->kw, IWL_KW_SIZE);
443         if (ret) {
444                 IWL_ERR(priv, "Keep Warm allocation failed\n");
445                 goto error_kw;
446         }
447
448         /* allocate tx queue structure */
449         ret = iwl_alloc_txq_mem(priv);
450         if (ret)
451                 goto error;
452
453         spin_lock_irqsave(&priv->lock, flags);
454
455         /* Turn off all Tx DMA fifos */
456         priv->cfg->ops->lib->txq_set_sched(priv, 0);
457
458         /* Tell NIC where to find the "keep warm" buffer */
459         iwl_write_direct32(priv, FH_KW_MEM_ADDR_REG, priv->kw.dma >> 4);
460
461         spin_unlock_irqrestore(&priv->lock, flags);
462
463         /* Alloc and init all Tx queues, including the command queue (#4) */
464         for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
465                 slots_num = (txq_id == IWL_CMD_QUEUE_NUM) ?
466                                         TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
467                 ret = iwl_tx_queue_init(priv, &priv->txq[txq_id], slots_num,
468                                        txq_id);
469                 if (ret) {
470                         IWL_ERR(priv, "Tx %d queue init failed\n", txq_id);
471                         goto error;
472                 }
473         }
474
475         return ret;
476
477  error:
478         iwl_hw_txq_ctx_free(priv);
479         iwl_free_dma_ptr(priv, &priv->kw);
480  error_kw:
481         iwl_free_dma_ptr(priv, &priv->scd_bc_tbls);
482  error_bc_tbls:
483         return ret;
484 }
485
486 /**
487  * iwl_txq_ctx_stop - Stop all Tx DMA channels, free Tx queue memory
488  */
489 void iwl_txq_ctx_stop(struct iwl_priv *priv)
490 {
491         int ch;
492         unsigned long flags;
493
494         /* Turn off all Tx DMA fifos */
495         spin_lock_irqsave(&priv->lock, flags);
496
497         priv->cfg->ops->lib->txq_set_sched(priv, 0);
498
499         /* Stop each Tx DMA channel, and wait for it to be idle */
500         for (ch = 0; ch < priv->hw_params.dma_chnl_num; ch++) {
501                 iwl_write_direct32(priv, FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
502                 iwl_poll_direct_bit(priv, FH_TSSR_TX_STATUS_REG,
503                                     FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch),
504                                     1000);
505         }
506         spin_unlock_irqrestore(&priv->lock, flags);
507
508         /* Deallocate memory for all Tx queues */
509         iwl_hw_txq_ctx_free(priv);
510 }
511 EXPORT_SYMBOL(iwl_txq_ctx_stop);
512
513 /*
514  * handle build REPLY_TX command notification.
515  */
516 static void iwl_tx_cmd_build_basic(struct iwl_priv *priv,
517                                   struct iwl_tx_cmd *tx_cmd,
518                                   struct ieee80211_tx_info *info,
519                                   struct ieee80211_hdr *hdr,
520                                   u8 std_id)
521 {
522         __le16 fc = hdr->frame_control;
523         __le32 tx_flags = tx_cmd->tx_flags;
524
525         tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
526         if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
527                 tx_flags |= TX_CMD_FLG_ACK_MSK;
528                 if (ieee80211_is_mgmt(fc))
529                         tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
530                 if (ieee80211_is_probe_resp(fc) &&
531                     !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
532                         tx_flags |= TX_CMD_FLG_TSF_MSK;
533         } else {
534                 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
535                 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
536         }
537
538         if (ieee80211_is_back_req(fc))
539                 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
540
541
542         tx_cmd->sta_id = std_id;
543         if (ieee80211_has_morefrags(fc))
544                 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
545
546         if (ieee80211_is_data_qos(fc)) {
547                 u8 *qc = ieee80211_get_qos_ctl(hdr);
548                 tx_cmd->tid_tspec = qc[0] & 0xf;
549                 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
550         } else {
551                 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
552         }
553
554         priv->cfg->ops->utils->rts_tx_cmd_flag(info, &tx_flags);
555
556         if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
557                 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
558
559         tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
560         if (ieee80211_is_mgmt(fc)) {
561                 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
562                         tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
563                 else
564                         tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
565         } else {
566                 tx_cmd->timeout.pm_frame_timeout = 0;
567         }
568
569         tx_cmd->driver_txop = 0;
570         tx_cmd->tx_flags = tx_flags;
571         tx_cmd->next_frame_len = 0;
572 }
573
574 #define RTS_HCCA_RETRY_LIMIT            3
575 #define RTS_DFAULT_RETRY_LIMIT          60
576
577 static void iwl_tx_cmd_build_rate(struct iwl_priv *priv,
578                               struct iwl_tx_cmd *tx_cmd,
579                               struct ieee80211_tx_info *info,
580                               __le16 fc, int is_hcca)
581 {
582         u32 rate_flags;
583         int rate_idx;
584         u8 rts_retry_limit;
585         u8 data_retry_limit;
586         u8 rate_plcp;
587
588         /* Set retry limit on DATA packets and Probe Responses*/
589         if (ieee80211_is_probe_resp(fc))
590                 data_retry_limit = 3;
591         else
592                 data_retry_limit = IWL_DEFAULT_TX_RETRY;
593         tx_cmd->data_retry_limit = data_retry_limit;
594
595         /* Set retry limit on RTS packets */
596         rts_retry_limit = (is_hcca) ?  RTS_HCCA_RETRY_LIMIT :
597                 RTS_DFAULT_RETRY_LIMIT;
598         if (data_retry_limit < rts_retry_limit)
599                 rts_retry_limit = data_retry_limit;
600         tx_cmd->rts_retry_limit = rts_retry_limit;
601
602         /* DATA packets will use the uCode station table for rate/antenna
603          * selection */
604         if (ieee80211_is_data(fc)) {
605                 tx_cmd->initial_rate_index = 0;
606                 tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
607                 return;
608         }
609
610         /**
611          * If the current TX rate stored in mac80211 has the MCS bit set, it's
612          * not really a TX rate.  Thus, we use the lowest supported rate for
613          * this band.  Also use the lowest supported rate if the stored rate
614          * index is invalid.
615          */
616         rate_idx = info->control.rates[0].idx;
617         if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS ||
618                         (rate_idx < 0) || (rate_idx > IWL_RATE_COUNT_LEGACY))
619                 rate_idx = rate_lowest_index(&priv->bands[info->band],
620                                 info->control.sta);
621         /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
622         if (info->band == IEEE80211_BAND_5GHZ)
623                 rate_idx += IWL_FIRST_OFDM_RATE;
624         /* Get PLCP rate for tx_cmd->rate_n_flags */
625         rate_plcp = iwl_rates[rate_idx].plcp;
626         /* Zero out flags for this packet */
627         rate_flags = 0;
628
629         /* Set CCK flag as needed */
630         if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
631                 rate_flags |= RATE_MCS_CCK_MSK;
632
633         /* Set up RTS and CTS flags for certain packets */
634         switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
635         case cpu_to_le16(IEEE80211_STYPE_AUTH):
636         case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
637         case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
638         case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
639                 if (tx_cmd->tx_flags & TX_CMD_FLG_RTS_MSK) {
640                         tx_cmd->tx_flags &= ~TX_CMD_FLG_RTS_MSK;
641                         tx_cmd->tx_flags |= TX_CMD_FLG_CTS_MSK;
642                 }
643                 break;
644         default:
645                 break;
646         }
647
648         /* Set up antennas */
649         priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant);
650         rate_flags |= iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
651
652         /* Set the rate in the TX cmd */
653         tx_cmd->rate_n_flags = iwl_hw_set_rate_n_flags(rate_plcp, rate_flags);
654 }
655
656 static void iwl_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
657                                       struct ieee80211_tx_info *info,
658                                       struct iwl_tx_cmd *tx_cmd,
659                                       struct sk_buff *skb_frag,
660                                       int sta_id)
661 {
662         struct ieee80211_key_conf *keyconf = info->control.hw_key;
663
664         switch (keyconf->alg) {
665         case ALG_CCMP:
666                 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
667                 memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
668                 if (info->flags & IEEE80211_TX_CTL_AMPDU)
669                         tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
670                 IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n");
671                 break;
672
673         case ALG_TKIP:
674                 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
675                 ieee80211_get_tkip_key(keyconf, skb_frag,
676                         IEEE80211_TKIP_P2_KEY, tx_cmd->key);
677                 IWL_DEBUG_TX(priv, "tx_cmd with tkip hwcrypto\n");
678                 break;
679
680         case ALG_WEP:
681                 tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP |
682                         (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
683
684                 if (keyconf->keylen == WEP_KEY_LEN_128)
685                         tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
686
687                 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
688
689                 IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption "
690                              "with key %d\n", keyconf->keyidx);
691                 break;
692
693         default:
694                 IWL_ERR(priv, "Unknown encode alg %d\n", keyconf->alg);
695                 break;
696         }
697 }
698
699 /*
700  * start REPLY_TX command process
701  */
702 int iwl_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
703 {
704         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
705         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
706         struct iwl_tx_queue *txq;
707         struct iwl_queue *q;
708         struct iwl_device_cmd *out_cmd;
709         struct iwl_cmd_meta *out_meta;
710         struct iwl_tx_cmd *tx_cmd;
711         int swq_id, txq_id;
712         dma_addr_t phys_addr;
713         dma_addr_t txcmd_phys;
714         dma_addr_t scratch_phys;
715         u16 len, len_org, firstlen, secondlen;
716         u16 seq_number = 0;
717         __le16 fc;
718         u8 hdr_len;
719         u8 sta_id;
720         u8 wait_write_ptr = 0;
721         u8 tid = 0;
722         u8 *qc = NULL;
723         unsigned long flags;
724         int ret;
725
726         spin_lock_irqsave(&priv->lock, flags);
727         if (iwl_is_rfkill(priv)) {
728                 IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n");
729                 goto drop_unlock;
730         }
731
732         fc = hdr->frame_control;
733
734 #ifdef CONFIG_IWLWIFI_DEBUG
735         if (ieee80211_is_auth(fc))
736                 IWL_DEBUG_TX(priv, "Sending AUTH frame\n");
737         else if (ieee80211_is_assoc_req(fc))
738                 IWL_DEBUG_TX(priv, "Sending ASSOC frame\n");
739         else if (ieee80211_is_reassoc_req(fc))
740                 IWL_DEBUG_TX(priv, "Sending REASSOC frame\n");
741 #endif
742
743         /* drop all non-injected data frame if we are not associated */
744         if (ieee80211_is_data(fc) &&
745             !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
746             (!iwl_is_associated(priv) ||
747              ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id) ||
748              !priv->assoc_station_added)) {
749                 IWL_DEBUG_DROP(priv, "Dropping - !iwl_is_associated\n");
750                 goto drop_unlock;
751         }
752
753         hdr_len = ieee80211_hdrlen(fc);
754
755         /* Find (or create) index into station table for destination station */
756         if (info->flags & IEEE80211_TX_CTL_INJECTED)
757                 sta_id = priv->hw_params.bcast_sta_id;
758         else
759                 sta_id = iwl_get_sta_id(priv, hdr);
760         if (sta_id == IWL_INVALID_STATION) {
761                 IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n",
762                                hdr->addr1);
763                 goto drop_unlock;
764         }
765
766         IWL_DEBUG_TX(priv, "station Id %d\n", sta_id);
767
768         txq_id = skb_get_queue_mapping(skb);
769         if (ieee80211_is_data_qos(fc)) {
770                 qc = ieee80211_get_qos_ctl(hdr);
771                 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
772                 if (unlikely(tid >= MAX_TID_COUNT))
773                         goto drop_unlock;
774                 seq_number = priv->stations[sta_id].tid[tid].seq_number;
775                 seq_number &= IEEE80211_SCTL_SEQ;
776                 hdr->seq_ctrl = hdr->seq_ctrl &
777                                 cpu_to_le16(IEEE80211_SCTL_FRAG);
778                 hdr->seq_ctrl |= cpu_to_le16(seq_number);
779                 seq_number += 0x10;
780                 /* aggregation is on for this <sta,tid> */
781                 if (info->flags & IEEE80211_TX_CTL_AMPDU)
782                         txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
783         }
784
785         txq = &priv->txq[txq_id];
786         swq_id = txq->swq_id;
787         q = &txq->q;
788
789         if (unlikely(iwl_queue_space(q) < q->high_mark))
790                 goto drop_unlock;
791
792         if (ieee80211_is_data_qos(fc))
793                 priv->stations[sta_id].tid[tid].tfds_in_queue++;
794
795         /* Set up driver data for this TFD */
796         memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
797         txq->txb[q->write_ptr].skb[0] = skb;
798
799         /* Set up first empty entry in queue's array of Tx/cmd buffers */
800         out_cmd = txq->cmd[q->write_ptr];
801         out_meta = &txq->meta[q->write_ptr];
802         tx_cmd = &out_cmd->cmd.tx;
803         memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
804         memset(tx_cmd, 0, sizeof(struct iwl_tx_cmd));
805
806         /*
807          * Set up the Tx-command (not MAC!) header.
808          * Store the chosen Tx queue and TFD index within the sequence field;
809          * after Tx, uCode's Tx response will return this value so driver can
810          * locate the frame within the tx queue and do post-tx processing.
811          */
812         out_cmd->hdr.cmd = REPLY_TX;
813         out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
814                                 INDEX_TO_SEQ(q->write_ptr)));
815
816         /* Copy MAC header from skb into command buffer */
817         memcpy(tx_cmd->hdr, hdr, hdr_len);
818
819
820         /* Total # bytes to be transmitted */
821         len = (u16)skb->len;
822         tx_cmd->len = cpu_to_le16(len);
823
824         if (info->control.hw_key)
825                 iwl_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id);
826
827         /* TODO need this for burst mode later on */
828         iwl_tx_cmd_build_basic(priv, tx_cmd, info, hdr, sta_id);
829         iwl_dbg_log_tx_data_frame(priv, len, hdr);
830
831         /* set is_hcca to 0; it probably will never be implemented */
832         iwl_tx_cmd_build_rate(priv, tx_cmd, info, fc, 0);
833
834         iwl_update_stats(priv, true, fc, len);
835         /*
836          * Use the first empty entry in this queue's command buffer array
837          * to contain the Tx command and MAC header concatenated together
838          * (payload data will be in another buffer).
839          * Size of this varies, due to varying MAC header length.
840          * If end is not dword aligned, we'll have 2 extra bytes at the end
841          * of the MAC header (device reads on dword boundaries).
842          * We'll tell device about this padding later.
843          */
844         len = sizeof(struct iwl_tx_cmd) +
845                 sizeof(struct iwl_cmd_header) + hdr_len;
846
847         len_org = len;
848         firstlen = len = (len + 3) & ~3;
849
850         if (len_org != len)
851                 len_org = 1;
852         else
853                 len_org = 0;
854
855         /* Tell NIC about any 2-byte padding after MAC header */
856         if (len_org)
857                 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
858
859         /* Physical address of this Tx command's header (not MAC header!),
860          * within command buffer array. */
861         txcmd_phys = pci_map_single(priv->pci_dev,
862                                     &out_cmd->hdr, len,
863                                     PCI_DMA_BIDIRECTIONAL);
864         pci_unmap_addr_set(out_meta, mapping, txcmd_phys);
865         pci_unmap_len_set(out_meta, len, len);
866         /* Add buffer containing Tx command and MAC(!) header to TFD's
867          * first entry */
868         priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
869                                                    txcmd_phys, len, 1, 0);
870
871         if (!ieee80211_has_morefrags(hdr->frame_control)) {
872                 txq->need_update = 1;
873                 if (qc)
874                         priv->stations[sta_id].tid[tid].seq_number = seq_number;
875         } else {
876                 wait_write_ptr = 1;
877                 txq->need_update = 0;
878         }
879
880         /* Set up TFD's 2nd entry to point directly to remainder of skb,
881          * if any (802.11 null frames have no payload). */
882         secondlen = len = skb->len - hdr_len;
883         if (len) {
884                 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
885                                            len, PCI_DMA_TODEVICE);
886                 priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
887                                                            phys_addr, len,
888                                                            0, 0);
889         }
890
891         scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
892                                 offsetof(struct iwl_tx_cmd, scratch);
893
894         len = sizeof(struct iwl_tx_cmd) +
895                 sizeof(struct iwl_cmd_header) + hdr_len;
896         /* take back ownership of DMA buffer to enable update */
897         pci_dma_sync_single_for_cpu(priv->pci_dev, txcmd_phys,
898                                     len, PCI_DMA_BIDIRECTIONAL);
899         tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
900         tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
901
902         IWL_DEBUG_TX(priv, "sequence nr = 0X%x \n",
903                      le16_to_cpu(out_cmd->hdr.sequence));
904         IWL_DEBUG_TX(priv, "tx_flags = 0X%x \n", le32_to_cpu(tx_cmd->tx_flags));
905         iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
906         iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
907
908         /* Set up entry for this TFD in Tx byte-count array */
909         if (info->flags & IEEE80211_TX_CTL_AMPDU)
910                 priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq,
911                                                      le16_to_cpu(tx_cmd->len));
912
913         pci_dma_sync_single_for_device(priv->pci_dev, txcmd_phys,
914                                        len, PCI_DMA_BIDIRECTIONAL);
915
916         trace_iwlwifi_dev_tx(priv,
917                              &((struct iwl_tfd *)txq->tfds)[txq->q.write_ptr],
918                              sizeof(struct iwl_tfd),
919                              &out_cmd->hdr, firstlen,
920                              skb->data + hdr_len, secondlen);
921
922         /* Tell device the write index *just past* this latest filled TFD */
923         q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
924         ret = iwl_txq_update_write_ptr(priv, txq);
925         spin_unlock_irqrestore(&priv->lock, flags);
926
927         if (ret)
928                 return ret;
929
930         if ((iwl_queue_space(q) < q->high_mark) && priv->mac80211_registered) {
931                 if (wait_write_ptr) {
932                         spin_lock_irqsave(&priv->lock, flags);
933                         txq->need_update = 1;
934                         iwl_txq_update_write_ptr(priv, txq);
935                         spin_unlock_irqrestore(&priv->lock, flags);
936                 } else {
937                         iwl_stop_queue(priv, txq->swq_id);
938                 }
939         }
940
941         return 0;
942
943 drop_unlock:
944         spin_unlock_irqrestore(&priv->lock, flags);
945         return -1;
946 }
947 EXPORT_SYMBOL(iwl_tx_skb);
948
949 /*************** HOST COMMAND QUEUE FUNCTIONS   *****/
950
951 /**
952  * iwl_enqueue_hcmd - enqueue a uCode command
953  * @priv: device private data point
954  * @cmd: a point to the ucode command structure
955  *
956  * The function returns < 0 values to indicate the operation is
957  * failed. On success, it turns the index (> 0) of command in the
958  * command queue.
959  */
960 int iwl_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
961 {
962         struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
963         struct iwl_queue *q = &txq->q;
964         struct iwl_device_cmd *out_cmd;
965         struct iwl_cmd_meta *out_meta;
966         dma_addr_t phys_addr;
967         unsigned long flags;
968         int len, ret;
969         u32 idx;
970         u16 fix_size;
971
972         cmd->len = priv->cfg->ops->utils->get_hcmd_size(cmd->id, cmd->len);
973         fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
974
975         /* If any of the command structures end up being larger than
976          * the TFD_MAX_PAYLOAD_SIZE, and it sent as a 'small' command then
977          * we will need to increase the size of the TFD entries */
978         BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
979                !(cmd->flags & CMD_SIZE_HUGE));
980
981         if (iwl_is_rfkill(priv) || iwl_is_ctkill(priv)) {
982                 IWL_DEBUG_INFO(priv, "Not sending command - RF/CT KILL\n");
983                 return -EIO;
984         }
985
986         if (iwl_queue_space(q) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
987                 IWL_ERR(priv, "No space for Tx\n");
988                 if (iwl_within_ct_kill_margin(priv))
989                         iwl_tt_enter_ct_kill(priv);
990                 else {
991                         IWL_ERR(priv, "Restarting adapter due to queue full\n");
992                         queue_work(priv->workqueue, &priv->restart);
993                 }
994                 return -ENOSPC;
995         }
996
997         spin_lock_irqsave(&priv->hcmd_lock, flags);
998
999         idx = get_cmd_index(q, q->write_ptr, cmd->flags & CMD_SIZE_HUGE);
1000         out_cmd = txq->cmd[idx];
1001         out_meta = &txq->meta[idx];
1002
1003         memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */
1004         out_meta->flags = cmd->flags;
1005         if (cmd->flags & CMD_WANT_SKB)
1006                 out_meta->source = cmd;
1007         if (cmd->flags & CMD_ASYNC)
1008                 out_meta->callback = cmd->callback;
1009
1010         out_cmd->hdr.cmd = cmd->id;
1011         memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
1012
1013         /* At this point, the out_cmd now has all of the incoming cmd
1014          * information */
1015
1016         out_cmd->hdr.flags = 0;
1017         out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
1018                         INDEX_TO_SEQ(q->write_ptr));
1019         if (cmd->flags & CMD_SIZE_HUGE)
1020                 out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
1021         len = sizeof(struct iwl_device_cmd);
1022         len += (idx == TFD_CMD_SLOTS) ?  IWL_MAX_SCAN_SIZE : 0;
1023
1024
1025 #ifdef CONFIG_IWLWIFI_DEBUG
1026         switch (out_cmd->hdr.cmd) {
1027         case REPLY_TX_LINK_QUALITY_CMD:
1028         case SENSITIVITY_CMD:
1029                 IWL_DEBUG_HC_DUMP(priv, "Sending command %s (#%x), seq: 0x%04X, "
1030                                 "%d bytes at %d[%d]:%d\n",
1031                                 get_cmd_string(out_cmd->hdr.cmd),
1032                                 out_cmd->hdr.cmd,
1033                                 le16_to_cpu(out_cmd->hdr.sequence), fix_size,
1034                                 q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
1035                                 break;
1036         default:
1037                 IWL_DEBUG_HC(priv, "Sending command %s (#%x), seq: 0x%04X, "
1038                                 "%d bytes at %d[%d]:%d\n",
1039                                 get_cmd_string(out_cmd->hdr.cmd),
1040                                 out_cmd->hdr.cmd,
1041                                 le16_to_cpu(out_cmd->hdr.sequence), fix_size,
1042                                 q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
1043         }
1044 #endif
1045         txq->need_update = 1;
1046
1047         if (priv->cfg->ops->lib->txq_update_byte_cnt_tbl)
1048                 /* Set up entry in queue's byte count circular buffer */
1049                 priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, 0);
1050
1051         phys_addr = pci_map_single(priv->pci_dev, &out_cmd->hdr,
1052                                    fix_size, PCI_DMA_BIDIRECTIONAL);
1053         pci_unmap_addr_set(out_meta, mapping, phys_addr);
1054         pci_unmap_len_set(out_meta, len, fix_size);
1055
1056         trace_iwlwifi_dev_hcmd(priv, &out_cmd->hdr, fix_size, cmd->flags);
1057
1058         priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq,
1059                                                    phys_addr, fix_size, 1,
1060                                                    U32_PAD(cmd->len));
1061
1062         /* Increment and update queue's write index */
1063         q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
1064         ret = iwl_txq_update_write_ptr(priv, txq);
1065
1066         spin_unlock_irqrestore(&priv->hcmd_lock, flags);
1067         return ret ? ret : idx;
1068 }
1069
1070 int iwl_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
1071 {
1072         struct iwl_tx_queue *txq = &priv->txq[txq_id];
1073         struct iwl_queue *q = &txq->q;
1074         struct iwl_tx_info *tx_info;
1075         int nfreed = 0;
1076
1077         if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
1078                 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
1079                           "is out of range [0-%d] %d %d.\n", txq_id,
1080                           index, q->n_bd, q->write_ptr, q->read_ptr);
1081                 return 0;
1082         }
1083
1084         for (index = iwl_queue_inc_wrap(index, q->n_bd);
1085              q->read_ptr != index;
1086              q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1087
1088                 tx_info = &txq->txb[txq->q.read_ptr];
1089                 ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb[0]);
1090                 tx_info->skb[0] = NULL;
1091
1092                 if (priv->cfg->ops->lib->txq_inval_byte_cnt_tbl)
1093                         priv->cfg->ops->lib->txq_inval_byte_cnt_tbl(priv, txq);
1094
1095                 priv->cfg->ops->lib->txq_free_tfd(priv, txq);
1096                 nfreed++;
1097         }
1098         return nfreed;
1099 }
1100 EXPORT_SYMBOL(iwl_tx_queue_reclaim);
1101
1102
1103 /**
1104  * iwl_hcmd_queue_reclaim - Reclaim TX command queue entries already Tx'd
1105  *
1106  * When FW advances 'R' index, all entries between old and new 'R' index
1107  * need to be reclaimed. As result, some free space forms.  If there is
1108  * enough free space (> low mark), wake the stack that feeds us.
1109  */
1110 static void iwl_hcmd_queue_reclaim(struct iwl_priv *priv, int txq_id,
1111                                    int idx, int cmd_idx)
1112 {
1113         struct iwl_tx_queue *txq = &priv->txq[txq_id];
1114         struct iwl_queue *q = &txq->q;
1115         int nfreed = 0;
1116
1117         if ((idx >= q->n_bd) || (iwl_queue_used(q, idx) == 0)) {
1118                 IWL_ERR(priv, "Read index for DMA queue txq id (%d), index %d, "
1119                           "is out of range [0-%d] %d %d.\n", txq_id,
1120                           idx, q->n_bd, q->write_ptr, q->read_ptr);
1121                 return;
1122         }
1123
1124         pci_unmap_single(priv->pci_dev,
1125                 pci_unmap_addr(&txq->meta[cmd_idx], mapping),
1126                 pci_unmap_len(&txq->meta[cmd_idx], len),
1127                 PCI_DMA_BIDIRECTIONAL);
1128
1129         for (idx = iwl_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx;
1130              q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1131
1132                 if (nfreed++ > 0) {
1133                         IWL_ERR(priv, "HCMD skipped: index (%d) %d %d\n", idx,
1134                                         q->write_ptr, q->read_ptr);
1135                         queue_work(priv->workqueue, &priv->restart);
1136                 }
1137
1138         }
1139 }
1140
1141 /**
1142  * iwl_tx_cmd_complete - Pull unused buffers off the queue and reclaim them
1143  * @rxb: Rx buffer to reclaim
1144  *
1145  * If an Rx buffer has an async callback associated with it the callback
1146  * will be executed.  The attached skb (if present) will only be freed
1147  * if the callback returns 1
1148  */
1149 void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
1150 {
1151         struct iwl_rx_packet *pkt = rxb_addr(rxb);
1152         u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1153         int txq_id = SEQ_TO_QUEUE(sequence);
1154         int index = SEQ_TO_INDEX(sequence);
1155         int cmd_index;
1156         bool huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
1157         struct iwl_device_cmd *cmd;
1158         struct iwl_cmd_meta *meta;
1159
1160         /* If a Tx command is being handled and it isn't in the actual
1161          * command queue then there a command routing bug has been introduced
1162          * in the queue management code. */
1163         if (WARN(txq_id != IWL_CMD_QUEUE_NUM,
1164                  "wrong command queue %d, sequence 0x%X readp=%d writep=%d\n",
1165                   txq_id, sequence,
1166                   priv->txq[IWL_CMD_QUEUE_NUM].q.read_ptr,
1167                   priv->txq[IWL_CMD_QUEUE_NUM].q.write_ptr)) {
1168                 iwl_print_hex_error(priv, pkt, 32);
1169                 return;
1170         }
1171
1172         cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
1173         cmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
1174         meta = &priv->txq[IWL_CMD_QUEUE_NUM].meta[cmd_index];
1175
1176         /* Input error checking is done when commands are added to queue. */
1177         if (meta->flags & CMD_WANT_SKB) {
1178                 meta->source->reply_page = (unsigned long)rxb_addr(rxb);
1179                 rxb->page = NULL;
1180         } else if (meta->callback)
1181                 meta->callback(priv, cmd, pkt);
1182
1183         iwl_hcmd_queue_reclaim(priv, txq_id, index, cmd_index);
1184
1185         if (!(meta->flags & CMD_ASYNC)) {
1186                 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
1187                 wake_up_interruptible(&priv->wait_command_queue);
1188         }
1189 }
1190 EXPORT_SYMBOL(iwl_tx_cmd_complete);
1191
1192 /*
1193  * Find first available (lowest unused) Tx Queue, mark it "active".
1194  * Called only when finding queue for aggregation.
1195  * Should never return anything < 7, because they should already
1196  * be in use as EDCA AC (0-3), Command (4), HCCA (5, 6).
1197  */
1198 static int iwl_txq_ctx_activate_free(struct iwl_priv *priv)
1199 {
1200         int txq_id;
1201
1202         for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
1203                 if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk))
1204                         return txq_id;
1205         return -1;
1206 }
1207
1208 int iwl_tx_agg_start(struct iwl_priv *priv, const u8 *ra, u16 tid, u16 *ssn)
1209 {
1210         int sta_id;
1211         int tx_fifo;
1212         int txq_id;
1213         int ret;
1214         unsigned long flags;
1215         struct iwl_tid_data *tid_data;
1216
1217         if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
1218                 tx_fifo = default_tid_to_tx_fifo[tid];
1219         else
1220                 return -EINVAL;
1221
1222         IWL_WARN(priv, "%s on ra = %pM tid = %d\n",
1223                         __func__, ra, tid);
1224
1225         sta_id = iwl_find_station(priv, ra);
1226         if (sta_id == IWL_INVALID_STATION) {
1227                 IWL_ERR(priv, "Start AGG on invalid station\n");
1228                 return -ENXIO;
1229         }
1230         if (unlikely(tid >= MAX_TID_COUNT))
1231                 return -EINVAL;
1232
1233         if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) {
1234                 IWL_ERR(priv, "Start AGG when state is not IWL_AGG_OFF !\n");
1235                 return -ENXIO;
1236         }
1237
1238         txq_id = iwl_txq_ctx_activate_free(priv);
1239         if (txq_id == -1) {
1240                 IWL_ERR(priv, "No free aggregation queue available\n");
1241                 return -ENXIO;
1242         }
1243
1244         spin_lock_irqsave(&priv->sta_lock, flags);
1245         tid_data = &priv->stations[sta_id].tid[tid];
1246         *ssn = SEQ_TO_SN(tid_data->seq_number);
1247         tid_data->agg.txq_id = txq_id;
1248         priv->txq[txq_id].swq_id = iwl_virtual_agg_queue_num(tx_fifo, txq_id);
1249         spin_unlock_irqrestore(&priv->sta_lock, flags);
1250
1251         ret = priv->cfg->ops->lib->txq_agg_enable(priv, txq_id, tx_fifo,
1252                                                   sta_id, tid, *ssn);
1253         if (ret)
1254                 return ret;
1255
1256         if (tid_data->tfds_in_queue == 0) {
1257                 IWL_DEBUG_HT(priv, "HW queue is empty\n");
1258                 tid_data->agg.state = IWL_AGG_ON;
1259                 ieee80211_start_tx_ba_cb_irqsafe(priv->hw, ra, tid);
1260         } else {
1261                 IWL_DEBUG_HT(priv, "HW queue is NOT empty: %d packets in HW queue\n",
1262                              tid_data->tfds_in_queue);
1263                 tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA;
1264         }
1265         return ret;
1266 }
1267 EXPORT_SYMBOL(iwl_tx_agg_start);
1268
1269 int iwl_tx_agg_stop(struct iwl_priv *priv , const u8 *ra, u16 tid)
1270 {
1271         int tx_fifo_id, txq_id, sta_id, ssn = -1;
1272         struct iwl_tid_data *tid_data;
1273         int ret, write_ptr, read_ptr;
1274         unsigned long flags;
1275
1276         if (!ra) {
1277                 IWL_ERR(priv, "ra = NULL\n");
1278                 return -EINVAL;
1279         }
1280
1281         if (unlikely(tid >= MAX_TID_COUNT))
1282                 return -EINVAL;
1283
1284         if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
1285                 tx_fifo_id = default_tid_to_tx_fifo[tid];
1286         else
1287                 return -EINVAL;
1288
1289         sta_id = iwl_find_station(priv, ra);
1290
1291         if (sta_id == IWL_INVALID_STATION) {
1292                 IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid);
1293                 return -ENXIO;
1294         }
1295
1296         if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_ON)
1297                 IWL_WARN(priv, "Stopping AGG while state not IWL_AGG_ON\n");
1298
1299         tid_data = &priv->stations[sta_id].tid[tid];
1300         ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
1301         txq_id = tid_data->agg.txq_id;
1302         write_ptr = priv->txq[txq_id].q.write_ptr;
1303         read_ptr = priv->txq[txq_id].q.read_ptr;
1304
1305         /* The queue is not empty */
1306         if (write_ptr != read_ptr) {
1307                 IWL_DEBUG_HT(priv, "Stopping a non empty AGG HW QUEUE\n");
1308                 priv->stations[sta_id].tid[tid].agg.state =
1309                                 IWL_EMPTYING_HW_QUEUE_DELBA;
1310                 return 0;
1311         }
1312
1313         IWL_DEBUG_HT(priv, "HW queue is empty\n");
1314         priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF;
1315
1316         spin_lock_irqsave(&priv->lock, flags);
1317         ret = priv->cfg->ops->lib->txq_agg_disable(priv, txq_id, ssn,
1318                                                    tx_fifo_id);
1319         spin_unlock_irqrestore(&priv->lock, flags);
1320
1321         if (ret)
1322                 return ret;
1323
1324         ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, ra, tid);
1325
1326         return 0;
1327 }
1328 EXPORT_SYMBOL(iwl_tx_agg_stop);
1329
1330 int iwl_txq_check_empty(struct iwl_priv *priv, int sta_id, u8 tid, int txq_id)
1331 {
1332         struct iwl_queue *q = &priv->txq[txq_id].q;
1333         u8 *addr = priv->stations[sta_id].sta.sta.addr;
1334         struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid];
1335
1336         switch (priv->stations[sta_id].tid[tid].agg.state) {
1337         case IWL_EMPTYING_HW_QUEUE_DELBA:
1338                 /* We are reclaiming the last packet of the */
1339                 /* aggregated HW queue */
1340                 if ((txq_id  == tid_data->agg.txq_id) &&
1341                     (q->read_ptr == q->write_ptr)) {
1342                         u16 ssn = SEQ_TO_SN(tid_data->seq_number);
1343                         int tx_fifo = default_tid_to_tx_fifo[tid];
1344                         IWL_DEBUG_HT(priv, "HW queue empty: continue DELBA flow\n");
1345                         priv->cfg->ops->lib->txq_agg_disable(priv, txq_id,
1346                                                              ssn, tx_fifo);
1347                         tid_data->agg.state = IWL_AGG_OFF;
1348                         ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, addr, tid);
1349                 }
1350                 break;
1351         case IWL_EMPTYING_HW_QUEUE_ADDBA:
1352                 /* We are reclaiming the last packet of the queue */
1353                 if (tid_data->tfds_in_queue == 0) {
1354                         IWL_DEBUG_HT(priv, "HW queue empty: continue ADDBA flow\n");
1355                         tid_data->agg.state = IWL_AGG_ON;
1356                         ieee80211_start_tx_ba_cb_irqsafe(priv->hw, addr, tid);
1357                 }
1358                 break;
1359         }
1360         return 0;
1361 }
1362 EXPORT_SYMBOL(iwl_txq_check_empty);
1363
1364 /**
1365  * iwl_tx_status_reply_compressed_ba - Update tx status from block-ack
1366  *
1367  * Go through block-ack's bitmap of ACK'd frames, update driver's record of
1368  * ACK vs. not.  This gets sent to mac80211, then to rate scaling algo.
1369  */
1370 static int iwl_tx_status_reply_compressed_ba(struct iwl_priv *priv,
1371                                  struct iwl_ht_agg *agg,
1372                                  struct iwl_compressed_ba_resp *ba_resp)
1373
1374 {
1375         int i, sh, ack;
1376         u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
1377         u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1378         u64 bitmap;
1379         int successes = 0;
1380         struct ieee80211_tx_info *info;
1381
1382         if (unlikely(!agg->wait_for_ba))  {
1383                 IWL_ERR(priv, "Received BA when not expected\n");
1384                 return -EINVAL;
1385         }
1386
1387         /* Mark that the expected block-ack response arrived */
1388         agg->wait_for_ba = 0;
1389         IWL_DEBUG_TX_REPLY(priv, "BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
1390
1391         /* Calculate shift to align block-ack bits with our Tx window bits */
1392         sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl >> 4);
1393         if (sh < 0) /* tbw something is wrong with indices */
1394                 sh += 0x100;
1395
1396         /* don't use 64-bit values for now */
1397         bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
1398
1399         if (agg->frame_count > (64 - sh)) {
1400                 IWL_DEBUG_TX_REPLY(priv, "more frames than bitmap size");
1401                 return -1;
1402         }
1403
1404         /* check for success or failure according to the
1405          * transmitted bitmap and block-ack bitmap */
1406         bitmap &= agg->bitmap;
1407
1408         /* For each frame attempted in aggregation,
1409          * update driver's record of tx frame's status. */
1410         for (i = 0; i < agg->frame_count ; i++) {
1411                 ack = bitmap & (1ULL << i);
1412                 successes += !!ack;
1413                 IWL_DEBUG_TX_REPLY(priv, "%s ON i=%d idx=%d raw=%d\n",
1414                         ack ? "ACK" : "NACK", i, (agg->start_idx + i) & 0xff,
1415                         agg->start_idx + i);
1416         }
1417
1418         info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb[0]);
1419         memset(&info->status, 0, sizeof(info->status));
1420         info->flags |= IEEE80211_TX_STAT_ACK;
1421         info->flags |= IEEE80211_TX_STAT_AMPDU;
1422         info->status.ampdu_ack_map = successes;
1423         info->status.ampdu_ack_len = agg->frame_count;
1424         iwl_hwrate_to_tx_control(priv, agg->rate_n_flags, info);
1425
1426         IWL_DEBUG_TX_REPLY(priv, "Bitmap %llx\n", (unsigned long long)bitmap);
1427
1428         return 0;
1429 }
1430
1431 /**
1432  * iwl_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA
1433  *
1434  * Handles block-acknowledge notification from device, which reports success
1435  * of frames sent via aggregation.
1436  */
1437 void iwl_rx_reply_compressed_ba(struct iwl_priv *priv,
1438                                            struct iwl_rx_mem_buffer *rxb)
1439 {
1440         struct iwl_rx_packet *pkt = rxb_addr(rxb);
1441         struct iwl_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
1442         struct iwl_tx_queue *txq = NULL;
1443         struct iwl_ht_agg *agg;
1444         int index;
1445         int sta_id;
1446         int tid;
1447
1448         /* "flow" corresponds to Tx queue */
1449         u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1450
1451         /* "ssn" is start of block-ack Tx window, corresponds to index
1452          * (in Tx queue's circular buffer) of first TFD/frame in window */
1453         u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
1454
1455         if (scd_flow >= priv->hw_params.max_txq_num) {
1456                 IWL_ERR(priv,
1457                         "BUG_ON scd_flow is bigger than number of queues\n");
1458                 return;
1459         }
1460
1461         txq = &priv->txq[scd_flow];
1462         sta_id = ba_resp->sta_id;
1463         tid = ba_resp->tid;
1464         agg = &priv->stations[sta_id].tid[tid].agg;
1465
1466         /* Find index just before block-ack window */
1467         index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
1468
1469         /* TODO: Need to get this copy more safely - now good for debug */
1470
1471         IWL_DEBUG_TX_REPLY(priv, "REPLY_COMPRESSED_BA [%d] Received from %pM, "
1472                            "sta_id = %d\n",
1473                            agg->wait_for_ba,
1474                            (u8 *) &ba_resp->sta_addr_lo32,
1475                            ba_resp->sta_id);
1476         IWL_DEBUG_TX_REPLY(priv, "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = "
1477                            "%d, scd_ssn = %d\n",
1478                            ba_resp->tid,
1479                            ba_resp->seq_ctl,
1480                            (unsigned long long)le64_to_cpu(ba_resp->bitmap),
1481                            ba_resp->scd_flow,
1482                            ba_resp->scd_ssn);
1483         IWL_DEBUG_TX_REPLY(priv, "DAT start_idx = %d, bitmap = 0x%llx \n",
1484                            agg->start_idx,
1485                            (unsigned long long)agg->bitmap);
1486
1487         /* Update driver's record of ACK vs. not for each frame in window */
1488         iwl_tx_status_reply_compressed_ba(priv, agg, ba_resp);
1489
1490         /* Release all TFDs before the SSN, i.e. all TFDs in front of
1491          * block-ack window (we assume that they've been successfully
1492          * transmitted ... if not, it's too late anyway). */
1493         if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
1494                 /* calculate mac80211 ampdu sw queue to wake */
1495                 int freed = iwl_tx_queue_reclaim(priv, scd_flow, index);
1496                 priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
1497
1498                 if ((iwl_queue_space(&txq->q) > txq->q.low_mark) &&
1499                     priv->mac80211_registered &&
1500                     (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA))
1501                         iwl_wake_queue(priv, txq->swq_id);
1502
1503                 iwl_txq_check_empty(priv, sta_id, tid, scd_flow);
1504         }
1505 }
1506 EXPORT_SYMBOL(iwl_rx_reply_compressed_ba);
1507
1508 #ifdef CONFIG_IWLWIFI_DEBUG
1509 #define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
1510
1511 const char *iwl_get_tx_fail_reason(u32 status)
1512 {
1513         switch (status & TX_STATUS_MSK) {
1514         case TX_STATUS_SUCCESS:
1515                 return "SUCCESS";
1516                 TX_STATUS_ENTRY(SHORT_LIMIT);
1517                 TX_STATUS_ENTRY(LONG_LIMIT);
1518                 TX_STATUS_ENTRY(FIFO_UNDERRUN);
1519                 TX_STATUS_ENTRY(MGMNT_ABORT);
1520                 TX_STATUS_ENTRY(NEXT_FRAG);
1521                 TX_STATUS_ENTRY(LIFE_EXPIRE);
1522                 TX_STATUS_ENTRY(DEST_PS);
1523                 TX_STATUS_ENTRY(ABORTED);
1524                 TX_STATUS_ENTRY(BT_RETRY);
1525                 TX_STATUS_ENTRY(STA_INVALID);
1526                 TX_STATUS_ENTRY(FRAG_DROPPED);
1527                 TX_STATUS_ENTRY(TID_DISABLE);
1528                 TX_STATUS_ENTRY(FRAME_FLUSHED);
1529                 TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL);
1530                 TX_STATUS_ENTRY(TX_LOCKED);
1531                 TX_STATUS_ENTRY(NO_BEACON_ON_RADAR);
1532         }
1533
1534         return "UNKNOWN";
1535 }
1536 EXPORT_SYMBOL(iwl_get_tx_fail_reason);
1537 #endif /* CONFIG_IWLWIFI_DEBUG */