1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
39static 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
60
61
62
63
64
65
66static int iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
67{
68 struct iwl_tfd_frame *bd_tmp = (struct iwl_tfd_frame *)&txq->bd[0];
69 struct iwl_tfd_frame *bd = &bd_tmp[txq->q.read_ptr];
70 struct pci_dev *dev = priv->pci_dev;
71 int i;
72 int counter = 0;
73 int index, is_odd;
74
75
76 if (txq->q.id == IWL_CMD_QUEUE_NUM)
77 return 0;
78
79
80 counter = IWL_GET_BITS(*bd, num_tbs);
81 if (counter > MAX_NUM_OF_TBS) {
82 IWL_ERROR("Too many chunks: %i\n", counter);
83
84 return 0;
85 }
86
87
88
89 for (i = 0; i < counter; i++) {
90 index = i / 2;
91 is_odd = i & 0x1;
92
93 if (is_odd)
94 pci_unmap_single(
95 dev,
96 IWL_GET_BITS(bd->pa[index], tb2_addr_lo16) |
97 (IWL_GET_BITS(bd->pa[index],
98 tb2_addr_hi20) << 16),
99 IWL_GET_BITS(bd->pa[index], tb2_len),
100 PCI_DMA_TODEVICE);
101
102 else if (i > 0)
103 pci_unmap_single(dev,
104 le32_to_cpu(bd->pa[index].tb1_addr),
105 IWL_GET_BITS(bd->pa[index], tb1_len),
106 PCI_DMA_TODEVICE);
107
108
109 if (txq->txb[txq->q.read_ptr].skb[i]) {
110 struct sk_buff *skb = txq->txb[txq->q.read_ptr].skb[i];
111
112 dev_kfree_skb(skb);
113 txq->txb[txq->q.read_ptr].skb[i] = NULL;
114 }
115 }
116 return 0;
117}
118
119static int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv, void *ptr,
120 dma_addr_t addr, u16 len)
121{
122 int index, is_odd;
123 struct iwl_tfd_frame *tfd = ptr;
124 u32 num_tbs = IWL_GET_BITS(*tfd, num_tbs);
125
126
127 if (num_tbs >= MAX_NUM_OF_TBS) {
128 IWL_ERROR("Error can not send more than %d chunks\n",
129 MAX_NUM_OF_TBS);
130 return -EINVAL;
131 }
132
133 index = num_tbs / 2;
134 is_odd = num_tbs & 0x1;
135
136 if (!is_odd) {
137 tfd->pa[index].tb1_addr = cpu_to_le32(addr);
138 IWL_SET_BITS(tfd->pa[index], tb1_addr_hi,
139 iwl_get_dma_hi_address(addr));
140 IWL_SET_BITS(tfd->pa[index], tb1_len, len);
141 } else {
142 IWL_SET_BITS(tfd->pa[index], tb2_addr_lo16,
143 (u32) (addr & 0xffff));
144 IWL_SET_BITS(tfd->pa[index], tb2_addr_hi20, addr >> 16);
145 IWL_SET_BITS(tfd->pa[index], tb2_len, len);
146 }
147
148 IWL_SET_BITS(*tfd, num_tbs, num_tbs + 1);
149
150 return 0;
151}
152
153
154
155
156int iwl_txq_update_write_ptr(struct iwl_priv *priv, struct iwl_tx_queue *txq)
157{
158 u32 reg = 0;
159 int ret = 0;
160 int txq_id = txq->q.id;
161
162 if (txq->need_update == 0)
163 return ret;
164
165
166 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
167
168
169
170 reg = iwl_read32(priv, CSR_UCODE_DRV_GP1);
171
172 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
173 IWL_DEBUG_INFO("Requesting wakeup, GP1 = 0x%x\n", reg);
174 iwl_set_bit(priv, CSR_GP_CNTRL,
175 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
176 return ret;
177 }
178
179
180 ret = iwl_grab_nic_access(priv);
181 if (ret)
182 return ret;
183 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
184 txq->q.write_ptr | (txq_id << 8));
185 iwl_release_nic_access(priv);
186
187
188
189 } else
190 iwl_write32(priv, HBUS_TARG_WRPTR,
191 txq->q.write_ptr | (txq_id << 8));
192
193 txq->need_update = 0;
194
195 return ret;
196}
197EXPORT_SYMBOL(iwl_txq_update_write_ptr);
198
199
200
201
202
203
204
205
206
207
208static void iwl_tx_queue_free(struct iwl_priv *priv, int txq_id)
209{
210 struct iwl_tx_queue *txq = &priv->txq[txq_id];
211 struct iwl_queue *q = &txq->q;
212 struct pci_dev *dev = priv->pci_dev;
213 int i, slots_num, len;
214
215 if (q->n_bd == 0)
216 return;
217
218
219 for (; q->write_ptr != q->read_ptr;
220 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd))
221 iwl_hw_txq_free_tfd(priv, txq);
222
223 len = sizeof(struct iwl_cmd) * q->n_window;
224 if (q->id == IWL_CMD_QUEUE_NUM)
225 len += IWL_MAX_SCAN_SIZE;
226
227
228 slots_num = (txq_id == IWL_CMD_QUEUE_NUM) ?
229 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
230 for (i = 0; i < slots_num; i++)
231 kfree(txq->cmd[i]);
232 if (txq_id == IWL_CMD_QUEUE_NUM)
233 kfree(txq->cmd[slots_num]);
234
235
236 if (txq->q.n_bd)
237 pci_free_consistent(dev, sizeof(struct iwl_tfd_frame) *
238 txq->q.n_bd, txq->bd, txq->q.dma_addr);
239
240
241 kfree(txq->txb);
242 txq->txb = NULL;
243
244
245 memset(txq, 0, sizeof(*txq));
246}
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271int iwl_queue_space(const struct iwl_queue *q)
272{
273 int s = q->read_ptr - q->write_ptr;
274
275 if (q->read_ptr > q->write_ptr)
276 s -= q->n_bd;
277
278 if (s <= 0)
279 s += q->n_window;
280
281 s -= 2;
282 if (s < 0)
283 s = 0;
284 return s;
285}
286EXPORT_SYMBOL(iwl_queue_space);
287
288
289
290
291
292static int iwl_queue_init(struct iwl_priv *priv, struct iwl_queue *q,
293 int count, int slots_num, u32 id)
294{
295 q->n_bd = count;
296 q->n_window = slots_num;
297 q->id = id;
298
299
300
301 BUG_ON(!is_power_of_2(count));
302
303
304
305 BUG_ON(!is_power_of_2(slots_num));
306
307 q->low_mark = q->n_window / 4;
308 if (q->low_mark < 4)
309 q->low_mark = 4;
310
311 q->high_mark = q->n_window / 8;
312 if (q->high_mark < 2)
313 q->high_mark = 2;
314
315 q->write_ptr = q->read_ptr = 0;
316
317 return 0;
318}
319
320
321
322
323static int iwl_tx_queue_alloc(struct iwl_priv *priv,
324 struct iwl_tx_queue *txq, u32 id)
325{
326 struct pci_dev *dev = priv->pci_dev;
327
328
329
330 if (id != IWL_CMD_QUEUE_NUM) {
331 txq->txb = kmalloc(sizeof(txq->txb[0]) *
332 TFD_QUEUE_SIZE_MAX, GFP_KERNEL);
333 if (!txq->txb) {
334 IWL_ERROR("kmalloc for auxiliary BD "
335 "structures failed\n");
336 goto error;
337 }
338 } else
339 txq->txb = NULL;
340
341
342
343 txq->bd = pci_alloc_consistent(dev,
344 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX,
345 &txq->q.dma_addr);
346
347 if (!txq->bd) {
348 IWL_ERROR("pci_alloc_consistent(%zd) failed\n",
349 sizeof(txq->bd[0]) * TFD_QUEUE_SIZE_MAX);
350 goto error;
351 }
352 txq->q.id = id;
353
354 return 0;
355
356 error:
357 kfree(txq->txb);
358 txq->txb = NULL;
359
360 return -ENOMEM;
361}
362
363
364
365
366
367
368
369
370static int iwl_hw_tx_queue_init(struct iwl_priv *priv,
371 struct iwl_tx_queue *txq)
372{
373 int rc;
374 unsigned long flags;
375 int txq_id = txq->q.id;
376
377 spin_lock_irqsave(&priv->lock, flags);
378 rc = iwl_grab_nic_access(priv);
379 if (rc) {
380 spin_unlock_irqrestore(&priv->lock, flags);
381 return rc;
382 }
383
384
385 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
386 txq->q.dma_addr >> 8);
387
388
389 iwl_write_direct32(
390 priv, FH_TCSR_CHNL_TX_CONFIG_REG(txq_id),
391 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
392 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE_VAL);
393 iwl_release_nic_access(priv);
394 spin_unlock_irqrestore(&priv->lock, flags);
395
396 return 0;
397}
398
399
400
401
402static int iwl_tx_queue_init(struct iwl_priv *priv, struct iwl_tx_queue *txq,
403 int slots_num, u32 txq_id)
404{
405 int i, len;
406 int ret;
407
408
409
410
411
412
413
414
415
416 len = sizeof(struct iwl_cmd);
417 for (i = 0; i <= slots_num; i++) {
418 if (i == slots_num) {
419 if (txq_id == IWL_CMD_QUEUE_NUM)
420 len += IWL_MAX_SCAN_SIZE;
421 else
422 continue;
423 }
424
425 txq->cmd[i] = kmalloc(len, GFP_KERNEL);
426 if (!txq->cmd[i])
427 goto err;
428 }
429
430
431 ret = iwl_tx_queue_alloc(priv, txq, txq_id);
432 if (ret)
433 goto err;
434
435 txq->need_update = 0;
436
437
438
439 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
440
441
442 iwl_queue_init(priv, &txq->q, TFD_QUEUE_SIZE_MAX, slots_num, txq_id);
443
444
445 iwl_hw_tx_queue_init(priv, txq);
446
447 return 0;
448err:
449 for (i = 0; i < slots_num; i++) {
450 kfree(txq->cmd[i]);
451 txq->cmd[i] = NULL;
452 }
453
454 if (txq_id == IWL_CMD_QUEUE_NUM) {
455 kfree(txq->cmd[slots_num]);
456 txq->cmd[slots_num] = NULL;
457 }
458 return -ENOMEM;
459}
460
461
462
463
464
465void iwl_hw_txq_ctx_free(struct iwl_priv *priv)
466{
467 int txq_id;
468
469
470 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
471 iwl_tx_queue_free(priv, txq_id);
472
473
474 iwl_kw_free(priv);
475}
476EXPORT_SYMBOL(iwl_hw_txq_ctx_free);
477
478
479
480
481
482
483
484
485int iwl_txq_ctx_reset(struct iwl_priv *priv)
486{
487 int ret = 0;
488 int txq_id, slots_num;
489 unsigned long flags;
490
491 iwl_kw_free(priv);
492
493
494 iwl_hw_txq_ctx_free(priv);
495
496
497 ret = iwl_kw_alloc(priv);
498 if (ret) {
499 IWL_ERROR("Keep Warm allocation failed\n");
500 goto error_kw;
501 }
502 spin_lock_irqsave(&priv->lock, flags);
503 ret = iwl_grab_nic_access(priv);
504 if (unlikely(ret)) {
505 spin_unlock_irqrestore(&priv->lock, flags);
506 goto error_reset;
507 }
508
509
510 priv->cfg->ops->lib->txq_set_sched(priv, 0);
511
512 iwl_release_nic_access(priv);
513 spin_unlock_irqrestore(&priv->lock, flags);
514
515
516
517 ret = iwl_kw_init(priv);
518 if (ret) {
519 IWL_ERROR("kw_init failed\n");
520 goto error_reset;
521 }
522
523
524 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
525 slots_num = (txq_id == IWL_CMD_QUEUE_NUM) ?
526 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
527 ret = iwl_tx_queue_init(priv, &priv->txq[txq_id], slots_num,
528 txq_id);
529 if (ret) {
530 IWL_ERROR("Tx %d queue init failed\n", txq_id);
531 goto error;
532 }
533 }
534
535 return ret;
536
537 error:
538 iwl_hw_txq_ctx_free(priv);
539 error_reset:
540 iwl_kw_free(priv);
541 error_kw:
542 return ret;
543}
544
545
546
547
548void iwl_txq_ctx_stop(struct iwl_priv *priv)
549{
550
551 int txq_id;
552 unsigned long flags;
553
554
555
556 spin_lock_irqsave(&priv->lock, flags);
557 if (iwl_grab_nic_access(priv)) {
558 spin_unlock_irqrestore(&priv->lock, flags);
559 return;
560 }
561
562 priv->cfg->ops->lib->txq_set_sched(priv, 0);
563
564
565 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
566 iwl_write_direct32(priv,
567 FH_TCSR_CHNL_TX_CONFIG_REG(txq_id), 0x0);
568 iwl_poll_direct_bit(priv, FH_TSSR_TX_STATUS_REG,
569 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE
570 (txq_id), 200);
571 }
572 iwl_release_nic_access(priv);
573 spin_unlock_irqrestore(&priv->lock, flags);
574
575
576 iwl_hw_txq_ctx_free(priv);
577}
578EXPORT_SYMBOL(iwl_txq_ctx_stop);
579
580
581
582
583static void iwl_tx_cmd_build_basic(struct iwl_priv *priv,
584 struct iwl_tx_cmd *tx_cmd,
585 struct ieee80211_tx_info *info,
586 struct ieee80211_hdr *hdr,
587 int is_unicast, u8 std_id)
588{
589 __le16 fc = hdr->frame_control;
590 __le32 tx_flags = tx_cmd->tx_flags;
591
592 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
593 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
594 tx_flags |= TX_CMD_FLG_ACK_MSK;
595 if (ieee80211_is_mgmt(fc))
596 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
597 if (ieee80211_is_probe_resp(fc) &&
598 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
599 tx_flags |= TX_CMD_FLG_TSF_MSK;
600 } else {
601 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
602 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
603 }
604
605 if (ieee80211_is_back_req(fc))
606 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
607
608
609 tx_cmd->sta_id = std_id;
610 if (ieee80211_has_morefrags(fc))
611 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
612
613 if (ieee80211_is_data_qos(fc)) {
614 u8 *qc = ieee80211_get_qos_ctl(hdr);
615 tx_cmd->tid_tspec = qc[0] & 0xf;
616 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
617 } else {
618 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
619 }
620
621 priv->cfg->ops->utils->rts_tx_cmd_flag(info, &tx_flags);
622
623 if ((tx_flags & TX_CMD_FLG_RTS_MSK) || (tx_flags & TX_CMD_FLG_CTS_MSK))
624 tx_flags |= TX_CMD_FLG_FULL_TXOP_PROT_MSK;
625
626 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
627 if (ieee80211_is_mgmt(fc)) {
628 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
629 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
630 else
631 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
632 } else {
633 tx_cmd->timeout.pm_frame_timeout = 0;
634 }
635
636 tx_cmd->driver_txop = 0;
637 tx_cmd->tx_flags = tx_flags;
638 tx_cmd->next_frame_len = 0;
639}
640
641#define RTS_HCCA_RETRY_LIMIT 3
642#define RTS_DFAULT_RETRY_LIMIT 60
643
644static void iwl_tx_cmd_build_rate(struct iwl_priv *priv,
645 struct iwl_tx_cmd *tx_cmd,
646 struct ieee80211_tx_info *info,
647 __le16 fc, int sta_id,
648 int is_hcca)
649{
650 u8 rts_retry_limit = 0;
651 u8 data_retry_limit = 0;
652 u8 rate_plcp;
653 u16 rate_flags = 0;
654 int rate_idx;
655
656 rate_idx = min(ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xffff,
657 IWL_RATE_COUNT - 1);
658
659 rate_plcp = iwl_rates[rate_idx].plcp;
660
661 rts_retry_limit = (is_hcca) ?
662 RTS_HCCA_RETRY_LIMIT : RTS_DFAULT_RETRY_LIMIT;
663
664 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
665 rate_flags |= RATE_MCS_CCK_MSK;
666
667
668 if (ieee80211_is_probe_resp(fc)) {
669 data_retry_limit = 3;
670 if (data_retry_limit < rts_retry_limit)
671 rts_retry_limit = data_retry_limit;
672 } else
673 data_retry_limit = IWL_DEFAULT_TX_RETRY;
674
675 if (priv->data_retry_limit != -1)
676 data_retry_limit = priv->data_retry_limit;
677
678
679 if (ieee80211_is_data(fc)) {
680 tx_cmd->initial_rate_index = 0;
681 tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
682 } else {
683 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
684 case cpu_to_le16(IEEE80211_STYPE_AUTH):
685 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
686 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
687 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
688 if (tx_cmd->tx_flags & TX_CMD_FLG_RTS_MSK) {
689 tx_cmd->tx_flags &= ~TX_CMD_FLG_RTS_MSK;
690 tx_cmd->tx_flags |= TX_CMD_FLG_CTS_MSK;
691 }
692 break;
693 default:
694 break;
695 }
696
697
698 if (priv->use_ant_b_for_management_frame) {
699 priv->use_ant_b_for_management_frame = 0;
700 rate_flags |= RATE_MCS_ANT_B_MSK;
701 } else {
702 priv->use_ant_b_for_management_frame = 1;
703 rate_flags |= RATE_MCS_ANT_A_MSK;
704 }
705 }
706
707 tx_cmd->rts_retry_limit = rts_retry_limit;
708 tx_cmd->data_retry_limit = data_retry_limit;
709 tx_cmd->rate_n_flags = iwl_hw_set_rate_n_flags(rate_plcp, rate_flags);
710}
711
712static void iwl_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
713 struct ieee80211_tx_info *info,
714 struct iwl_tx_cmd *tx_cmd,
715 struct sk_buff *skb_frag,
716 int sta_id)
717{
718 struct ieee80211_key_conf *keyconf = info->control.hw_key;
719
720 switch (keyconf->alg) {
721 case ALG_CCMP:
722 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
723 memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
724 if (info->flags & IEEE80211_TX_CTL_AMPDU)
725 tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
726 IWL_DEBUG_TX("tx_cmd with aes hwcrypto\n");
727 break;
728
729 case ALG_TKIP:
730 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
731 ieee80211_get_tkip_key(keyconf, skb_frag,
732 IEEE80211_TKIP_P2_KEY, tx_cmd->key);
733 IWL_DEBUG_TX("tx_cmd with tkip hwcrypto\n");
734 break;
735
736 case ALG_WEP:
737 tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP |
738 (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
739
740 if (keyconf->keylen == WEP_KEY_LEN_128)
741 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
742
743 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
744
745 IWL_DEBUG_TX("Configuring packet for WEP encryption "
746 "with key %d\n", keyconf->keyidx);
747 break;
748
749 default:
750 printk(KERN_ERR "Unknown encode alg %d\n", keyconf->alg);
751 break;
752 }
753}
754
755static void iwl_update_tx_stats(struct iwl_priv *priv, u16 fc, u16 len)
756{
757
758 int idx = (fc & IEEE80211_FCTL_FTYPE) >> 2;
759 priv->tx_stats[idx].cnt++;
760 priv->tx_stats[idx].bytes += len;
761}
762
763
764
765
766int iwl_tx_skb(struct iwl_priv *priv, struct sk_buff *skb)
767{
768 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
769 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
770 struct iwl_tfd_frame *tfd;
771 struct iwl_tx_queue *txq;
772 struct iwl_queue *q;
773 struct iwl_cmd *out_cmd;
774 struct iwl_tx_cmd *tx_cmd;
775 int swq_id, txq_id;
776 dma_addr_t phys_addr;
777 dma_addr_t txcmd_phys;
778 dma_addr_t scratch_phys;
779 u16 len, idx, len_org;
780 u16 seq_number = 0;
781 __le16 fc;
782 u8 hdr_len, unicast;
783 u8 sta_id;
784 u8 wait_write_ptr = 0;
785 u8 tid = 0;
786 u8 *qc = NULL;
787 unsigned long flags;
788 int ret;
789
790 spin_lock_irqsave(&priv->lock, flags);
791 if (iwl_is_rfkill(priv)) {
792 IWL_DEBUG_DROP("Dropping - RF KILL\n");
793 goto drop_unlock;
794 }
795
796 if ((ieee80211_get_tx_rate(priv->hw, info)->hw_value & 0xFF) ==
797 IWL_INVALID_RATE) {
798 IWL_ERROR("ERROR: No TX rate available.\n");
799 goto drop_unlock;
800 }
801
802 unicast = !is_multicast_ether_addr(hdr->addr1);
803
804 fc = hdr->frame_control;
805
806#ifdef CONFIG_IWLWIFI_DEBUG
807 if (ieee80211_is_auth(fc))
808 IWL_DEBUG_TX("Sending AUTH frame\n");
809 else if (ieee80211_is_assoc_req(fc))
810 IWL_DEBUG_TX("Sending ASSOC frame\n");
811 else if (ieee80211_is_reassoc_req(fc))
812 IWL_DEBUG_TX("Sending REASSOC frame\n");
813#endif
814
815
816 if (ieee80211_is_data(fc) &&
817 (priv->iw_mode != NL80211_IFTYPE_MONITOR ||
818 !(info->flags & IEEE80211_TX_CTL_INJECTED)) &&
819 (!iwl_is_associated(priv) ||
820 ((priv->iw_mode == NL80211_IFTYPE_STATION) && !priv->assoc_id) ||
821 !priv->assoc_station_added)) {
822 IWL_DEBUG_DROP("Dropping - !iwl_is_associated\n");
823 goto drop_unlock;
824 }
825
826 spin_unlock_irqrestore(&priv->lock, flags);
827
828 hdr_len = ieee80211_hdrlen(fc);
829
830
831 sta_id = iwl_get_sta_id(priv, hdr);
832 if (sta_id == IWL_INVALID_STATION) {
833 DECLARE_MAC_BUF(mac);
834
835 IWL_DEBUG_DROP("Dropping - INVALID STATION: %s\n",
836 print_mac(mac, hdr->addr1));
837 goto drop;
838 }
839
840 IWL_DEBUG_TX("station Id %d\n", sta_id);
841
842 swq_id = skb_get_queue_mapping(skb);
843 txq_id = swq_id;
844 if (ieee80211_is_data_qos(fc)) {
845 qc = ieee80211_get_qos_ctl(hdr);
846 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
847 seq_number = priv->stations[sta_id].tid[tid].seq_number;
848 seq_number &= IEEE80211_SCTL_SEQ;
849 hdr->seq_ctrl = hdr->seq_ctrl &
850 __constant_cpu_to_le16(IEEE80211_SCTL_FRAG);
851 hdr->seq_ctrl |= cpu_to_le16(seq_number);
852 seq_number += 0x10;
853
854 if (info->flags & IEEE80211_TX_CTL_AMPDU)
855 txq_id = priv->stations[sta_id].tid[tid].agg.txq_id;
856 priv->stations[sta_id].tid[tid].tfds_in_queue++;
857 }
858
859
860 txq = &priv->txq[txq_id];
861 q = &txq->q;
862
863 spin_lock_irqsave(&priv->lock, flags);
864
865
866 tfd = &txq->bd[q->write_ptr];
867 memset(tfd, 0, sizeof(*tfd));
868 idx = get_cmd_index(q, q->write_ptr, 0);
869
870
871 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info));
872 txq->txb[q->write_ptr].skb[0] = skb;
873
874
875 out_cmd = txq->cmd[idx];
876 tx_cmd = &out_cmd->cmd.tx;
877 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
878 memset(tx_cmd, 0, sizeof(struct iwl_tx_cmd));
879
880
881
882
883
884
885
886 out_cmd->hdr.cmd = REPLY_TX;
887 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
888 INDEX_TO_SEQ(q->write_ptr)));
889
890
891 memcpy(tx_cmd->hdr, hdr, hdr_len);
892
893
894
895
896
897
898
899
900
901
902 len = sizeof(struct iwl_tx_cmd) +
903 sizeof(struct iwl_cmd_header) + hdr_len;
904
905 len_org = len;
906 len = (len + 3) & ~3;
907
908 if (len_org != len)
909 len_org = 1;
910 else
911 len_org = 0;
912
913
914
915 txcmd_phys = pci_map_single(priv->pci_dev, out_cmd,
916 sizeof(struct iwl_cmd), PCI_DMA_TODEVICE);
917 txcmd_phys += offsetof(struct iwl_cmd, hdr);
918
919
920
921 iwl_hw_txq_attach_buf_to_tfd(priv, tfd, txcmd_phys, len);
922
923 if (info->control.hw_key)
924 iwl_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id);
925
926
927
928 len = skb->len - hdr_len;
929 if (len) {
930 phys_addr = pci_map_single(priv->pci_dev, skb->data + hdr_len,
931 len, PCI_DMA_TODEVICE);
932 iwl_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, len);
933 }
934
935
936 if (len_org)
937 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
938
939
940 len = (u16)skb->len;
941 tx_cmd->len = cpu_to_le16(len);
942
943 iwl_tx_cmd_build_basic(priv, tx_cmd, info, hdr, unicast, sta_id);
944
945
946 iwl_tx_cmd_build_rate(priv, tx_cmd, info, fc, sta_id, 0);
947
948 iwl_update_tx_stats(priv, le16_to_cpu(fc), len);
949
950 scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) +
951 offsetof(struct iwl_tx_cmd, scratch);
952 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
953 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_address(scratch_phys);
954
955 if (!ieee80211_has_morefrags(hdr->frame_control)) {
956 txq->need_update = 1;
957 if (qc)
958 priv->stations[sta_id].tid[tid].seq_number = seq_number;
959 } else {
960 wait_write_ptr = 1;
961 txq->need_update = 0;
962 }
963
964 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
965
966 iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
967
968
969 priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, len);
970
971
972 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
973 ret = iwl_txq_update_write_ptr(priv, txq);
974 spin_unlock_irqrestore(&priv->lock, flags);
975
976 if (ret)
977 return ret;
978
979 if ((iwl_queue_space(q) < q->high_mark) && priv->mac80211_registered) {
980 if (wait_write_ptr) {
981 spin_lock_irqsave(&priv->lock, flags);
982 txq->need_update = 1;
983 iwl_txq_update_write_ptr(priv, txq);
984 spin_unlock_irqrestore(&priv->lock, flags);
985 } else {
986 ieee80211_stop_queue(priv->hw, swq_id);
987 }
988 }
989
990 return 0;
991
992drop_unlock:
993 spin_unlock_irqrestore(&priv->lock, flags);
994drop:
995 return -1;
996}
997EXPORT_SYMBOL(iwl_tx_skb);
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010int iwl_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd)
1011{
1012 struct iwl_tx_queue *txq = &priv->txq[IWL_CMD_QUEUE_NUM];
1013 struct iwl_queue *q = &txq->q;
1014 struct iwl_tfd_frame *tfd;
1015 struct iwl_cmd *out_cmd;
1016 dma_addr_t phys_addr;
1017 unsigned long flags;
1018 int len, ret;
1019 u32 idx;
1020 u16 fix_size;
1021
1022 cmd->len = priv->cfg->ops->utils->get_hcmd_size(cmd->id, cmd->len);
1023 fix_size = (u16)(cmd->len + sizeof(out_cmd->hdr));
1024
1025
1026
1027
1028 BUG_ON((fix_size > TFD_MAX_PAYLOAD_SIZE) &&
1029 !(cmd->meta.flags & CMD_SIZE_HUGE));
1030
1031 if (iwl_is_rfkill(priv)) {
1032 IWL_DEBUG_INFO("Not sending command - RF KILL");
1033 return -EIO;
1034 }
1035
1036 if (iwl_queue_space(q) < ((cmd->meta.flags & CMD_ASYNC) ? 2 : 1)) {
1037 IWL_ERROR("No space for Tx\n");
1038 return -ENOSPC;
1039 }
1040
1041 spin_lock_irqsave(&priv->hcmd_lock, flags);
1042
1043 tfd = &txq->bd[q->write_ptr];
1044 memset(tfd, 0, sizeof(*tfd));
1045
1046
1047 idx = get_cmd_index(q, q->write_ptr, cmd->meta.flags & CMD_SIZE_HUGE);
1048 out_cmd = txq->cmd[idx];
1049
1050 out_cmd->hdr.cmd = cmd->id;
1051 memcpy(&out_cmd->meta, &cmd->meta, sizeof(cmd->meta));
1052 memcpy(&out_cmd->cmd.payload, cmd->data, cmd->len);
1053
1054
1055
1056
1057 out_cmd->hdr.flags = 0;
1058 out_cmd->hdr.sequence = cpu_to_le16(QUEUE_TO_SEQ(IWL_CMD_QUEUE_NUM) |
1059 INDEX_TO_SEQ(q->write_ptr));
1060 if (out_cmd->meta.flags & CMD_SIZE_HUGE)
1061 out_cmd->hdr.sequence |= SEQ_HUGE_FRAME;
1062 len = (idx == TFD_CMD_SLOTS) ?
1063 IWL_MAX_SCAN_SIZE : sizeof(struct iwl_cmd);
1064 phys_addr = pci_map_single(priv->pci_dev, out_cmd, len,
1065 PCI_DMA_TODEVICE);
1066 phys_addr += offsetof(struct iwl_cmd, hdr);
1067 iwl_hw_txq_attach_buf_to_tfd(priv, tfd, phys_addr, fix_size);
1068
1069#ifdef CONFIG_IWLWIFI_DEBUG
1070 switch (out_cmd->hdr.cmd) {
1071 case REPLY_TX_LINK_QUALITY_CMD:
1072 case SENSITIVITY_CMD:
1073 IWL_DEBUG_HC_DUMP("Sending command %s (#%x), seq: 0x%04X, "
1074 "%d bytes at %d[%d]:%d\n",
1075 get_cmd_string(out_cmd->hdr.cmd),
1076 out_cmd->hdr.cmd,
1077 le16_to_cpu(out_cmd->hdr.sequence), fix_size,
1078 q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
1079 break;
1080 default:
1081 IWL_DEBUG_HC("Sending command %s (#%x), seq: 0x%04X, "
1082 "%d bytes at %d[%d]:%d\n",
1083 get_cmd_string(out_cmd->hdr.cmd),
1084 out_cmd->hdr.cmd,
1085 le16_to_cpu(out_cmd->hdr.sequence), fix_size,
1086 q->write_ptr, idx, IWL_CMD_QUEUE_NUM);
1087 }
1088#endif
1089 txq->need_update = 1;
1090
1091
1092 priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, 0);
1093
1094
1095 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
1096 ret = iwl_txq_update_write_ptr(priv, txq);
1097
1098 spin_unlock_irqrestore(&priv->hcmd_lock, flags);
1099 return ret ? ret : idx;
1100}
1101
1102int iwl_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
1103{
1104 struct iwl_tx_queue *txq = &priv->txq[txq_id];
1105 struct iwl_queue *q = &txq->q;
1106 struct iwl_tx_info *tx_info;
1107 int nfreed = 0;
1108
1109 if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
1110 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
1111 "is out of range [0-%d] %d %d.\n", txq_id,
1112 index, q->n_bd, q->write_ptr, q->read_ptr);
1113 return 0;
1114 }
1115
1116 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
1117 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1118
1119 tx_info = &txq->txb[txq->q.read_ptr];
1120 ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb[0]);
1121 tx_info->skb[0] = NULL;
1122
1123 if (priv->cfg->ops->lib->txq_inval_byte_cnt_tbl)
1124 priv->cfg->ops->lib->txq_inval_byte_cnt_tbl(priv, txq);
1125
1126 iwl_hw_txq_free_tfd(priv, txq);
1127 nfreed++;
1128 }
1129 return nfreed;
1130}
1131EXPORT_SYMBOL(iwl_tx_queue_reclaim);
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141static void iwl_hcmd_queue_reclaim(struct iwl_priv *priv, int txq_id, int index)
1142{
1143 struct iwl_tx_queue *txq = &priv->txq[txq_id];
1144 struct iwl_queue *q = &txq->q;
1145 struct iwl_tfd_frame *bd = &txq->bd[index];
1146 dma_addr_t dma_addr;
1147 int is_odd, buf_len;
1148 int nfreed = 0;
1149
1150 if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) {
1151 IWL_ERROR("Read index for DMA queue txq id (%d), index %d, "
1152 "is out of range [0-%d] %d %d.\n", txq_id,
1153 index, q->n_bd, q->write_ptr, q->read_ptr);
1154 return;
1155 }
1156
1157 for (index = iwl_queue_inc_wrap(index, q->n_bd); q->read_ptr != index;
1158 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1159
1160 if (nfreed > 1) {
1161 IWL_ERROR("HCMD skipped: index (%d) %d %d\n", index,
1162 q->write_ptr, q->read_ptr);
1163 queue_work(priv->workqueue, &priv->restart);
1164 }
1165 is_odd = (index/2) & 0x1;
1166 if (is_odd) {
1167 dma_addr = IWL_GET_BITS(bd->pa[index], tb2_addr_lo16) |
1168 (IWL_GET_BITS(bd->pa[index],
1169 tb2_addr_hi20) << 16);
1170 buf_len = IWL_GET_BITS(bd->pa[index], tb2_len);
1171 } else {
1172 dma_addr = le32_to_cpu(bd->pa[index].tb1_addr);
1173 buf_len = IWL_GET_BITS(bd->pa[index], tb1_len);
1174 }
1175
1176 pci_unmap_single(priv->pci_dev, dma_addr, buf_len,
1177 PCI_DMA_TODEVICE);
1178 nfreed++;
1179 }
1180}
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190void iwl_tx_cmd_complete(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
1191{
1192 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
1193 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1194 int txq_id = SEQ_TO_QUEUE(sequence);
1195 int index = SEQ_TO_INDEX(sequence);
1196 int cmd_index;
1197 bool huge = !!(pkt->hdr.sequence & SEQ_HUGE_FRAME);
1198 struct iwl_cmd *cmd;
1199
1200
1201
1202
1203 if (WARN(txq_id != IWL_CMD_QUEUE_NUM,
1204 "wrong command queue %d, command id 0x%X\n", txq_id, pkt->hdr.cmd))
1205 return;
1206
1207 cmd_index = get_cmd_index(&priv->txq[IWL_CMD_QUEUE_NUM].q, index, huge);
1208 cmd = priv->txq[IWL_CMD_QUEUE_NUM].cmd[cmd_index];
1209
1210
1211 if (cmd->meta.flags & CMD_WANT_SKB) {
1212 cmd->meta.source->u.skb = rxb->skb;
1213 rxb->skb = NULL;
1214 } else if (cmd->meta.u.callback &&
1215 !cmd->meta.u.callback(priv, cmd, rxb->skb))
1216 rxb->skb = NULL;
1217
1218 iwl_hcmd_queue_reclaim(priv, txq_id, index);
1219
1220 if (!(cmd->meta.flags & CMD_ASYNC)) {
1221 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
1222 wake_up_interruptible(&priv->wait_command_queue);
1223 }
1224}
1225EXPORT_SYMBOL(iwl_tx_cmd_complete);
1226
1227
1228
1229
1230
1231
1232
1233static int iwl_txq_ctx_activate_free(struct iwl_priv *priv)
1234{
1235 int txq_id;
1236
1237 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
1238 if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk))
1239 return txq_id;
1240 return -1;
1241}
1242
1243int iwl_tx_agg_start(struct iwl_priv *priv, const u8 *ra, u16 tid, u16 *ssn)
1244{
1245 int sta_id;
1246 int tx_fifo;
1247 int txq_id;
1248 int ret;
1249 unsigned long flags;
1250 struct iwl_tid_data *tid_data;
1251 DECLARE_MAC_BUF(mac);
1252
1253 if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
1254 tx_fifo = default_tid_to_tx_fifo[tid];
1255 else
1256 return -EINVAL;
1257
1258 IWL_WARNING("%s on ra = %s tid = %d\n",
1259 __func__, print_mac(mac, ra), tid);
1260
1261 sta_id = iwl_find_station(priv, ra);
1262 if (sta_id == IWL_INVALID_STATION)
1263 return -ENXIO;
1264
1265 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) {
1266 IWL_ERROR("Start AGG when state is not IWL_AGG_OFF !\n");
1267 return -ENXIO;
1268 }
1269
1270 txq_id = iwl_txq_ctx_activate_free(priv);
1271 if (txq_id == -1)
1272 return -ENXIO;
1273
1274 spin_lock_irqsave(&priv->sta_lock, flags);
1275 tid_data = &priv->stations[sta_id].tid[tid];
1276 *ssn = SEQ_TO_SN(tid_data->seq_number);
1277 tid_data->agg.txq_id = txq_id;
1278 spin_unlock_irqrestore(&priv->sta_lock, flags);
1279
1280 ret = priv->cfg->ops->lib->txq_agg_enable(priv, txq_id, tx_fifo,
1281 sta_id, tid, *ssn);
1282 if (ret)
1283 return ret;
1284
1285 if (tid_data->tfds_in_queue == 0) {
1286 printk(KERN_ERR "HW queue is empty\n");
1287 tid_data->agg.state = IWL_AGG_ON;
1288 ieee80211_start_tx_ba_cb_irqsafe(priv->hw, ra, tid);
1289 } else {
1290 IWL_DEBUG_HT("HW queue is NOT empty: %d packets in HW queue\n",
1291 tid_data->tfds_in_queue);
1292 tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA;
1293 }
1294 return ret;
1295}
1296EXPORT_SYMBOL(iwl_tx_agg_start);
1297
1298int iwl_tx_agg_stop(struct iwl_priv *priv , const u8 *ra, u16 tid)
1299{
1300 int tx_fifo_id, txq_id, sta_id, ssn = -1;
1301 struct iwl_tid_data *tid_data;
1302 int ret, write_ptr, read_ptr;
1303 unsigned long flags;
1304 DECLARE_MAC_BUF(mac);
1305
1306 if (!ra) {
1307 IWL_ERROR("ra = NULL\n");
1308 return -EINVAL;
1309 }
1310
1311 if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
1312 tx_fifo_id = default_tid_to_tx_fifo[tid];
1313 else
1314 return -EINVAL;
1315
1316 sta_id = iwl_find_station(priv, ra);
1317
1318 if (sta_id == IWL_INVALID_STATION)
1319 return -ENXIO;
1320
1321 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_ON)
1322 IWL_WARNING("Stopping AGG while state not IWL_AGG_ON\n");
1323
1324 tid_data = &priv->stations[sta_id].tid[tid];
1325 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
1326 txq_id = tid_data->agg.txq_id;
1327 write_ptr = priv->txq[txq_id].q.write_ptr;
1328 read_ptr = priv->txq[txq_id].q.read_ptr;
1329
1330
1331 if (write_ptr != read_ptr) {
1332 IWL_DEBUG_HT("Stopping a non empty AGG HW QUEUE\n");
1333 priv->stations[sta_id].tid[tid].agg.state =
1334 IWL_EMPTYING_HW_QUEUE_DELBA;
1335 return 0;
1336 }
1337
1338 IWL_DEBUG_HT("HW queue is empty\n");
1339 priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF;
1340
1341 spin_lock_irqsave(&priv->lock, flags);
1342 ret = priv->cfg->ops->lib->txq_agg_disable(priv, txq_id, ssn,
1343 tx_fifo_id);
1344 spin_unlock_irqrestore(&priv->lock, flags);
1345
1346 if (ret)
1347 return ret;
1348
1349 ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, ra, tid);
1350
1351 return 0;
1352}
1353EXPORT_SYMBOL(iwl_tx_agg_stop);
1354
1355int iwl_txq_check_empty(struct iwl_priv *priv, int sta_id, u8 tid, int txq_id)
1356{
1357 struct iwl_queue *q = &priv->txq[txq_id].q;
1358 u8 *addr = priv->stations[sta_id].sta.sta.addr;
1359 struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid];
1360
1361 switch (priv->stations[sta_id].tid[tid].agg.state) {
1362 case IWL_EMPTYING_HW_QUEUE_DELBA:
1363
1364
1365 if (txq_id == tid_data->agg.txq_id &&
1366 q->read_ptr == q->write_ptr) {
1367 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
1368 int tx_fifo = default_tid_to_tx_fifo[tid];
1369 IWL_DEBUG_HT("HW queue empty: continue DELBA flow\n");
1370 priv->cfg->ops->lib->txq_agg_disable(priv, txq_id,
1371 ssn, tx_fifo);
1372 tid_data->agg.state = IWL_AGG_OFF;
1373 ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, addr, tid);
1374 }
1375 break;
1376 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1377
1378 if (tid_data->tfds_in_queue == 0) {
1379 IWL_DEBUG_HT("HW queue empty: continue ADDBA flow\n");
1380 tid_data->agg.state = IWL_AGG_ON;
1381 ieee80211_start_tx_ba_cb_irqsafe(priv->hw, addr, tid);
1382 }
1383 break;
1384 }
1385 return 0;
1386}
1387EXPORT_SYMBOL(iwl_txq_check_empty);
1388
1389
1390
1391
1392
1393
1394
1395static int iwl_tx_status_reply_compressed_ba(struct iwl_priv *priv,
1396 struct iwl_ht_agg *agg,
1397 struct iwl_compressed_ba_resp *ba_resp)
1398
1399{
1400 int i, sh, ack;
1401 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
1402 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1403 u64 bitmap;
1404 int successes = 0;
1405 struct ieee80211_tx_info *info;
1406
1407 if (unlikely(!agg->wait_for_ba)) {
1408 IWL_ERROR("Received BA when not expected\n");
1409 return -EINVAL;
1410 }
1411
1412
1413 agg->wait_for_ba = 0;
1414 IWL_DEBUG_TX_REPLY("BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
1415
1416
1417 sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl>>4);
1418 if (sh < 0)
1419 sh += 0x100;
1420
1421
1422 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
1423
1424 if (agg->frame_count > (64 - sh)) {
1425 IWL_DEBUG_TX_REPLY("more frames than bitmap size");
1426 return -1;
1427 }
1428
1429
1430
1431 bitmap &= agg->bitmap;
1432
1433
1434
1435 for (i = 0; i < agg->frame_count ; i++) {
1436 ack = bitmap & (1ULL << i);
1437 successes += !!ack;
1438 IWL_DEBUG_TX_REPLY("%s ON i=%d idx=%d raw=%d\n",
1439 ack? "ACK":"NACK", i, (agg->start_idx + i) & 0xff,
1440 agg->start_idx + i);
1441 }
1442
1443 info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb[0]);
1444 memset(&info->status, 0, sizeof(info->status));
1445 info->flags = IEEE80211_TX_STAT_ACK;
1446 info->flags |= IEEE80211_TX_STAT_AMPDU;
1447 info->status.ampdu_ack_map = successes;
1448 info->status.ampdu_ack_len = agg->frame_count;
1449 iwl_hwrate_to_tx_control(priv, agg->rate_n_flags, info);
1450
1451 IWL_DEBUG_TX_REPLY("Bitmap %llx\n", (unsigned long long)bitmap);
1452
1453 return 0;
1454}
1455
1456
1457
1458
1459
1460
1461
1462void iwl_rx_reply_compressed_ba(struct iwl_priv *priv,
1463 struct iwl_rx_mem_buffer *rxb)
1464{
1465 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
1466 struct iwl_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
1467 int index;
1468 struct iwl_tx_queue *txq = NULL;
1469 struct iwl_ht_agg *agg;
1470 DECLARE_MAC_BUF(mac);
1471
1472
1473 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
1474
1475
1476
1477 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
1478
1479 if (scd_flow >= priv->hw_params.max_txq_num) {
1480 IWL_ERROR("BUG_ON scd_flow is bigger than number of queues\n");
1481 return;
1482 }
1483
1484 txq = &priv->txq[scd_flow];
1485 agg = &priv->stations[ba_resp->sta_id].tid[ba_resp->tid].agg;
1486
1487
1488 index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
1489
1490
1491
1492 IWL_DEBUG_TX_REPLY("REPLY_COMPRESSED_BA [%d]Received from %s, "
1493 "sta_id = %d\n",
1494 agg->wait_for_ba,
1495 print_mac(mac, (u8 *) &ba_resp->sta_addr_lo32),
1496 ba_resp->sta_id);
1497 IWL_DEBUG_TX_REPLY("TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = "
1498 "%d, scd_ssn = %d\n",
1499 ba_resp->tid,
1500 ba_resp->seq_ctl,
1501 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
1502 ba_resp->scd_flow,
1503 ba_resp->scd_ssn);
1504 IWL_DEBUG_TX_REPLY("DAT start_idx = %d, bitmap = 0x%llx \n",
1505 agg->start_idx,
1506 (unsigned long long)agg->bitmap);
1507
1508
1509 iwl_tx_status_reply_compressed_ba(priv, agg, ba_resp);
1510
1511
1512
1513
1514 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
1515
1516 int ampdu_q =
1517 scd_flow - priv->hw_params.first_ampdu_q + priv->hw->queues;
1518 int freed = iwl_tx_queue_reclaim(priv, scd_flow, index);
1519 priv->stations[ba_resp->sta_id].
1520 tid[ba_resp->tid].tfds_in_queue -= freed;
1521 if (iwl_queue_space(&txq->q) > txq->q.low_mark &&
1522 priv->mac80211_registered &&
1523 agg->state != IWL_EMPTYING_HW_QUEUE_DELBA)
1524 ieee80211_wake_queue(priv->hw, ampdu_q);
1525
1526 iwl_txq_check_empty(priv, ba_resp->sta_id,
1527 ba_resp->tid, scd_flow);
1528 }
1529}
1530EXPORT_SYMBOL(iwl_rx_reply_compressed_ba);
1531
1532#ifdef CONFIG_IWLWIFI_DEBUG
1533#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
1534
1535const char *iwl_get_tx_fail_reason(u32 status)
1536{
1537 switch (status & TX_STATUS_MSK) {
1538 case TX_STATUS_SUCCESS:
1539 return "SUCCESS";
1540 TX_STATUS_ENTRY(SHORT_LIMIT);
1541 TX_STATUS_ENTRY(LONG_LIMIT);
1542 TX_STATUS_ENTRY(FIFO_UNDERRUN);
1543 TX_STATUS_ENTRY(MGMNT_ABORT);
1544 TX_STATUS_ENTRY(NEXT_FRAG);
1545 TX_STATUS_ENTRY(LIFE_EXPIRE);
1546 TX_STATUS_ENTRY(DEST_PS);
1547 TX_STATUS_ENTRY(ABORTED);
1548 TX_STATUS_ENTRY(BT_RETRY);
1549 TX_STATUS_ENTRY(STA_INVALID);
1550 TX_STATUS_ENTRY(FRAG_DROPPED);
1551 TX_STATUS_ENTRY(TID_DISABLE);
1552 TX_STATUS_ENTRY(FRAME_FLUSHED);
1553 TX_STATUS_ENTRY(INSUFFICIENT_CF_POLL);
1554 TX_STATUS_ENTRY(TX_LOCKED);
1555 TX_STATUS_ENTRY(NO_BEACON_ON_RADAR);
1556 }
1557
1558 return "UNKNOWN";
1559}
1560EXPORT_SYMBOL(iwl_get_tx_fail_reason);
1561#endif
1562