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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64#include <linux/etherdevice.h>
65#include <linux/ieee80211.h>
66#include <linux/slab.h>
67#include <linux/sched.h>
68#include <net/ip6_checksum.h>
69#include <net/tso.h>
70
71#include "iwl-debug.h"
72#include "iwl-csr.h"
73#include "iwl-prph.h"
74#include "iwl-io.h"
75#include "iwl-scd.h"
76#include "iwl-op-mode.h"
77#include "internal.h"
78#include "fw/api/tx.h"
79
80#define IWL_TX_CRC_SIZE 4
81#define IWL_TX_DELIMITER_SIZE 4
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105int iwl_queue_space(struct iwl_trans *trans, const struct iwl_txq *q)
106{
107 unsigned int max;
108 unsigned int used;
109
110
111
112
113
114
115
116 if (q->n_window < trans->trans_cfg->base_params->max_tfd_queue_size)
117 max = q->n_window;
118 else
119 max = trans->trans_cfg->base_params->max_tfd_queue_size - 1;
120
121
122
123
124
125 used = (q->write_ptr - q->read_ptr) &
126 (trans->trans_cfg->base_params->max_tfd_queue_size - 1);
127
128 if (WARN_ON(used > max))
129 return 0;
130
131 return max - used;
132}
133
134
135
136
137static int iwl_queue_init(struct iwl_txq *q, int slots_num)
138{
139 q->n_window = slots_num;
140
141
142
143 if (WARN_ON(!is_power_of_2(slots_num)))
144 return -EINVAL;
145
146 q->low_mark = q->n_window / 4;
147 if (q->low_mark < 4)
148 q->low_mark = 4;
149
150 q->high_mark = q->n_window / 8;
151 if (q->high_mark < 2)
152 q->high_mark = 2;
153
154 q->write_ptr = 0;
155 q->read_ptr = 0;
156
157 return 0;
158}
159
160int iwl_pcie_alloc_dma_ptr(struct iwl_trans *trans,
161 struct iwl_dma_ptr *ptr, size_t size)
162{
163 if (WARN_ON(ptr->addr))
164 return -EINVAL;
165
166 ptr->addr = dma_alloc_coherent(trans->dev, size,
167 &ptr->dma, GFP_KERNEL);
168 if (!ptr->addr)
169 return -ENOMEM;
170 ptr->size = size;
171 return 0;
172}
173
174void iwl_pcie_free_dma_ptr(struct iwl_trans *trans, struct iwl_dma_ptr *ptr)
175{
176 if (unlikely(!ptr->addr))
177 return;
178
179 dma_free_coherent(trans->dev, ptr->size, ptr->addr, ptr->dma);
180 memset(ptr, 0, sizeof(*ptr));
181}
182
183static void iwl_pcie_txq_stuck_timer(struct timer_list *t)
184{
185 struct iwl_txq *txq = from_timer(txq, t, stuck_timer);
186 struct iwl_trans_pcie *trans_pcie = txq->trans_pcie;
187 struct iwl_trans *trans = iwl_trans_pcie_get_trans(trans_pcie);
188
189 spin_lock(&txq->lock);
190
191 if (txq->read_ptr == txq->write_ptr) {
192 spin_unlock(&txq->lock);
193 return;
194 }
195 spin_unlock(&txq->lock);
196
197 iwl_trans_pcie_log_scd_error(trans, txq);
198
199 iwl_force_nmi(trans);
200}
201
202
203
204
205static void iwl_pcie_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
206 struct iwl_txq *txq, u16 byte_cnt,
207 int num_tbs)
208{
209 struct iwlagn_scd_bc_tbl *scd_bc_tbl;
210 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
211 int write_ptr = txq->write_ptr;
212 int txq_id = txq->id;
213 u8 sec_ctl = 0;
214 u16 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
215 __le16 bc_ent;
216 struct iwl_device_tx_cmd *dev_cmd = txq->entries[txq->write_ptr].cmd;
217 struct iwl_tx_cmd *tx_cmd = (void *)dev_cmd->payload;
218 u8 sta_id = tx_cmd->sta_id;
219
220 scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
221
222 sec_ctl = tx_cmd->sec_ctl;
223
224 switch (sec_ctl & TX_CMD_SEC_MSK) {
225 case TX_CMD_SEC_CCM:
226 len += IEEE80211_CCMP_MIC_LEN;
227 break;
228 case TX_CMD_SEC_TKIP:
229 len += IEEE80211_TKIP_ICV_LEN;
230 break;
231 case TX_CMD_SEC_WEP:
232 len += IEEE80211_WEP_IV_LEN + IEEE80211_WEP_ICV_LEN;
233 break;
234 }
235 if (trans_pcie->bc_table_dword)
236 len = DIV_ROUND_UP(len, 4);
237
238 if (WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX))
239 return;
240
241 bc_ent = cpu_to_le16(len | (sta_id << 12));
242
243 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
244
245 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
246 scd_bc_tbl[txq_id].
247 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
248}
249
250static void iwl_pcie_txq_inval_byte_cnt_tbl(struct iwl_trans *trans,
251 struct iwl_txq *txq)
252{
253 struct iwl_trans_pcie *trans_pcie =
254 IWL_TRANS_GET_PCIE_TRANS(trans);
255 struct iwlagn_scd_bc_tbl *scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
256 int txq_id = txq->id;
257 int read_ptr = txq->read_ptr;
258 u8 sta_id = 0;
259 __le16 bc_ent;
260 struct iwl_device_tx_cmd *dev_cmd = txq->entries[read_ptr].cmd;
261 struct iwl_tx_cmd *tx_cmd = (void *)dev_cmd->payload;
262
263 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
264
265 if (txq_id != trans_pcie->cmd_queue)
266 sta_id = tx_cmd->sta_id;
267
268 bc_ent = cpu_to_le16(1 | (sta_id << 12));
269
270 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
271
272 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
273 scd_bc_tbl[txq_id].
274 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
275}
276
277
278
279
280static void iwl_pcie_txq_inc_wr_ptr(struct iwl_trans *trans,
281 struct iwl_txq *txq)
282{
283 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
284 u32 reg = 0;
285 int txq_id = txq->id;
286
287 lockdep_assert_held(&txq->lock);
288
289
290
291
292
293
294
295 if (!trans->trans_cfg->base_params->shadow_reg_enable &&
296 txq_id != trans_pcie->cmd_queue &&
297 test_bit(STATUS_TPOWER_PMI, &trans->status)) {
298
299
300
301
302
303 reg = iwl_read32(trans, CSR_UCODE_DRV_GP1);
304
305 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
306 IWL_DEBUG_INFO(trans, "Tx queue %d requesting wakeup, GP1 = 0x%x\n",
307 txq_id, reg);
308 iwl_set_bit(trans, CSR_GP_CNTRL,
309 BIT(trans->trans_cfg->csr->flag_mac_access_req));
310 txq->need_update = true;
311 return;
312 }
313 }
314
315
316
317
318
319 IWL_DEBUG_TX(trans, "Q:%d WR: 0x%x\n", txq_id, txq->write_ptr);
320 if (!txq->block)
321 iwl_write32(trans, HBUS_TARG_WRPTR,
322 txq->write_ptr | (txq_id << 8));
323}
324
325void iwl_pcie_txq_check_wrptrs(struct iwl_trans *trans)
326{
327 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
328 int i;
329
330 for (i = 0; i < trans->trans_cfg->base_params->num_of_queues; i++) {
331 struct iwl_txq *txq = trans_pcie->txq[i];
332
333 if (!test_bit(i, trans_pcie->queue_used))
334 continue;
335
336 spin_lock_bh(&txq->lock);
337 if (txq->need_update) {
338 iwl_pcie_txq_inc_wr_ptr(trans, txq);
339 txq->need_update = false;
340 }
341 spin_unlock_bh(&txq->lock);
342 }
343}
344
345static inline dma_addr_t iwl_pcie_tfd_tb_get_addr(struct iwl_trans *trans,
346 void *_tfd, u8 idx)
347{
348
349 if (trans->trans_cfg->use_tfh) {
350 struct iwl_tfh_tfd *tfd = _tfd;
351 struct iwl_tfh_tb *tb = &tfd->tbs[idx];
352
353 return (dma_addr_t)(le64_to_cpu(tb->addr));
354 } else {
355 struct iwl_tfd *tfd = _tfd;
356 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
357 dma_addr_t addr = get_unaligned_le32(&tb->lo);
358 dma_addr_t hi_len;
359
360 if (sizeof(dma_addr_t) <= sizeof(u32))
361 return addr;
362
363 hi_len = le16_to_cpu(tb->hi_n_len) & 0xF;
364
365
366
367
368
369
370 return addr | ((hi_len << 16) << 16);
371 }
372}
373
374static inline void iwl_pcie_tfd_set_tb(struct iwl_trans *trans, void *tfd,
375 u8 idx, dma_addr_t addr, u16 len)
376{
377 struct iwl_tfd *tfd_fh = (void *)tfd;
378 struct iwl_tfd_tb *tb = &tfd_fh->tbs[idx];
379
380 u16 hi_n_len = len << 4;
381
382 put_unaligned_le32(addr, &tb->lo);
383 hi_n_len |= iwl_get_dma_hi_addr(addr);
384
385 tb->hi_n_len = cpu_to_le16(hi_n_len);
386
387 tfd_fh->num_tbs = idx + 1;
388}
389
390static inline u8 iwl_pcie_tfd_get_num_tbs(struct iwl_trans *trans, void *_tfd)
391{
392 if (trans->trans_cfg->use_tfh) {
393 struct iwl_tfh_tfd *tfd = _tfd;
394
395 return le16_to_cpu(tfd->num_tbs) & 0x1f;
396 } else {
397 struct iwl_tfd *tfd = _tfd;
398
399 return tfd->num_tbs & 0x1f;
400 }
401}
402
403static void iwl_pcie_tfd_unmap(struct iwl_trans *trans,
404 struct iwl_cmd_meta *meta,
405 struct iwl_txq *txq, int index)
406{
407 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
408 int i, num_tbs;
409 void *tfd = iwl_pcie_get_tfd(trans, txq, index);
410
411
412 num_tbs = iwl_pcie_tfd_get_num_tbs(trans, tfd);
413
414 if (num_tbs > trans_pcie->max_tbs) {
415 IWL_ERR(trans, "Too many chunks: %i\n", num_tbs);
416
417 return;
418 }
419
420
421
422 for (i = 1; i < num_tbs; i++) {
423 if (meta->tbs & BIT(i))
424 dma_unmap_page(trans->dev,
425 iwl_pcie_tfd_tb_get_addr(trans, tfd, i),
426 iwl_pcie_tfd_tb_get_len(trans, tfd, i),
427 DMA_TO_DEVICE);
428 else
429 dma_unmap_single(trans->dev,
430 iwl_pcie_tfd_tb_get_addr(trans, tfd,
431 i),
432 iwl_pcie_tfd_tb_get_len(trans, tfd,
433 i),
434 DMA_TO_DEVICE);
435 }
436
437 meta->tbs = 0;
438
439 if (trans->trans_cfg->use_tfh) {
440 struct iwl_tfh_tfd *tfd_fh = (void *)tfd;
441
442 tfd_fh->num_tbs = 0;
443 } else {
444 struct iwl_tfd *tfd_fh = (void *)tfd;
445
446 tfd_fh->num_tbs = 0;
447 }
448
449}
450
451
452
453
454
455
456
457
458
459
460void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq)
461{
462
463
464
465 int rd_ptr = txq->read_ptr;
466 int idx = iwl_pcie_get_cmd_index(txq, rd_ptr);
467
468 lockdep_assert_held(&txq->lock);
469
470
471
472
473 iwl_pcie_tfd_unmap(trans, &txq->entries[idx].meta, txq, rd_ptr);
474
475
476 if (txq->entries) {
477 struct sk_buff *skb;
478
479 skb = txq->entries[idx].skb;
480
481
482
483
484
485 if (skb) {
486 iwl_op_mode_free_skb(trans->op_mode, skb);
487 txq->entries[idx].skb = NULL;
488 }
489 }
490}
491
492static int iwl_pcie_txq_build_tfd(struct iwl_trans *trans, struct iwl_txq *txq,
493 dma_addr_t addr, u16 len, bool reset)
494{
495 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
496 void *tfd;
497 u32 num_tbs;
498
499 tfd = txq->tfds + trans_pcie->tfd_size * txq->write_ptr;
500
501 if (reset)
502 memset(tfd, 0, trans_pcie->tfd_size);
503
504 num_tbs = iwl_pcie_tfd_get_num_tbs(trans, tfd);
505
506
507 if (num_tbs >= trans_pcie->max_tbs) {
508 IWL_ERR(trans, "Error can not send more than %d chunks\n",
509 trans_pcie->max_tbs);
510 return -EINVAL;
511 }
512
513 if (WARN(addr & ~IWL_TX_DMA_MASK,
514 "Unaligned address = %llx\n", (unsigned long long)addr))
515 return -EINVAL;
516
517 iwl_pcie_tfd_set_tb(trans, tfd, num_tbs, addr, len);
518
519 return num_tbs;
520}
521
522int iwl_pcie_txq_alloc(struct iwl_trans *trans, struct iwl_txq *txq,
523 int slots_num, bool cmd_queue)
524{
525 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
526 size_t tfd_sz = trans_pcie->tfd_size *
527 trans->trans_cfg->base_params->max_tfd_queue_size;
528 size_t tb0_buf_sz;
529 int i;
530
531 if (WARN_ON(txq->entries || txq->tfds))
532 return -EINVAL;
533
534 if (trans->trans_cfg->use_tfh)
535 tfd_sz = trans_pcie->tfd_size * slots_num;
536
537 timer_setup(&txq->stuck_timer, iwl_pcie_txq_stuck_timer, 0);
538 txq->trans_pcie = trans_pcie;
539
540 txq->n_window = slots_num;
541
542 txq->entries = kcalloc(slots_num,
543 sizeof(struct iwl_pcie_txq_entry),
544 GFP_KERNEL);
545
546 if (!txq->entries)
547 goto error;
548
549 if (cmd_queue)
550 for (i = 0; i < slots_num; i++) {
551 txq->entries[i].cmd =
552 kmalloc(sizeof(struct iwl_device_cmd),
553 GFP_KERNEL);
554 if (!txq->entries[i].cmd)
555 goto error;
556 }
557
558
559
560 txq->tfds = dma_alloc_coherent(trans->dev, tfd_sz,
561 &txq->dma_addr, GFP_KERNEL);
562 if (!txq->tfds)
563 goto error;
564
565 BUILD_BUG_ON(IWL_FIRST_TB_SIZE_ALIGN != sizeof(*txq->first_tb_bufs));
566
567 tb0_buf_sz = sizeof(*txq->first_tb_bufs) * slots_num;
568
569 txq->first_tb_bufs = dma_alloc_coherent(trans->dev, tb0_buf_sz,
570 &txq->first_tb_dma,
571 GFP_KERNEL);
572 if (!txq->first_tb_bufs)
573 goto err_free_tfds;
574
575 return 0;
576err_free_tfds:
577 dma_free_coherent(trans->dev, tfd_sz, txq->tfds, txq->dma_addr);
578error:
579 if (txq->entries && cmd_queue)
580 for (i = 0; i < slots_num; i++)
581 kfree(txq->entries[i].cmd);
582 kfree(txq->entries);
583 txq->entries = NULL;
584
585 return -ENOMEM;
586
587}
588
589int iwl_pcie_txq_init(struct iwl_trans *trans, struct iwl_txq *txq,
590 int slots_num, bool cmd_queue)
591{
592 int ret;
593 u32 tfd_queue_max_size =
594 trans->trans_cfg->base_params->max_tfd_queue_size;
595
596 txq->need_update = false;
597
598
599
600 if (WARN_ONCE(tfd_queue_max_size & (tfd_queue_max_size - 1),
601 "Max tfd queue size must be a power of two, but is %d",
602 tfd_queue_max_size))
603 return -EINVAL;
604
605
606 ret = iwl_queue_init(txq, slots_num);
607 if (ret)
608 return ret;
609
610 spin_lock_init(&txq->lock);
611
612 if (cmd_queue) {
613 static struct lock_class_key iwl_pcie_cmd_queue_lock_class;
614
615 lockdep_set_class(&txq->lock, &iwl_pcie_cmd_queue_lock_class);
616 }
617
618 __skb_queue_head_init(&txq->overflow_q);
619
620 return 0;
621}
622
623void iwl_pcie_free_tso_page(struct iwl_trans_pcie *trans_pcie,
624 struct sk_buff *skb)
625{
626 struct page **page_ptr;
627 struct page *next;
628
629 page_ptr = (void *)((u8 *)skb->cb + trans_pcie->page_offs);
630 next = *page_ptr;
631 *page_ptr = NULL;
632
633 while (next) {
634 struct page *tmp = next;
635
636 next = *(void **)(page_address(next) + PAGE_SIZE -
637 sizeof(void *));
638 __free_page(tmp);
639 }
640}
641
642static void iwl_pcie_clear_cmd_in_flight(struct iwl_trans *trans)
643{
644 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
645
646 lockdep_assert_held(&trans_pcie->reg_lock);
647
648 if (!trans->trans_cfg->base_params->apmg_wake_up_wa)
649 return;
650 if (WARN_ON(!trans_pcie->cmd_hold_nic_awake))
651 return;
652
653 trans_pcie->cmd_hold_nic_awake = false;
654 __iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
655 BIT(trans->trans_cfg->csr->flag_mac_access_req));
656}
657
658
659
660
661static void iwl_pcie_txq_unmap(struct iwl_trans *trans, int txq_id)
662{
663 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
664 struct iwl_txq *txq = trans_pcie->txq[txq_id];
665
666 spin_lock_bh(&txq->lock);
667 while (txq->write_ptr != txq->read_ptr) {
668 IWL_DEBUG_TX_REPLY(trans, "Q %d Free %d\n",
669 txq_id, txq->read_ptr);
670
671 if (txq_id != trans_pcie->cmd_queue) {
672 struct sk_buff *skb = txq->entries[txq->read_ptr].skb;
673
674 if (WARN_ON_ONCE(!skb))
675 continue;
676
677 iwl_pcie_free_tso_page(trans_pcie, skb);
678 }
679 iwl_pcie_txq_free_tfd(trans, txq);
680 txq->read_ptr = iwl_queue_inc_wrap(trans, txq->read_ptr);
681
682 if (txq->read_ptr == txq->write_ptr) {
683 unsigned long flags;
684
685 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
686 if (txq_id == trans_pcie->cmd_queue)
687 iwl_pcie_clear_cmd_in_flight(trans);
688 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
689 }
690 }
691
692 while (!skb_queue_empty(&txq->overflow_q)) {
693 struct sk_buff *skb = __skb_dequeue(&txq->overflow_q);
694
695 iwl_op_mode_free_skb(trans->op_mode, skb);
696 }
697
698 spin_unlock_bh(&txq->lock);
699
700
701 iwl_wake_queue(trans, txq);
702}
703
704
705
706
707
708
709
710
711
712static void iwl_pcie_txq_free(struct iwl_trans *trans, int txq_id)
713{
714 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
715 struct iwl_txq *txq = trans_pcie->txq[txq_id];
716 struct device *dev = trans->dev;
717 int i;
718
719 if (WARN_ON(!txq))
720 return;
721
722 iwl_pcie_txq_unmap(trans, txq_id);
723
724
725 if (txq_id == trans_pcie->cmd_queue)
726 for (i = 0; i < txq->n_window; i++) {
727 kzfree(txq->entries[i].cmd);
728 kzfree(txq->entries[i].free_buf);
729 }
730
731
732 if (txq->tfds) {
733 dma_free_coherent(dev,
734 trans_pcie->tfd_size *
735 trans->trans_cfg->base_params->max_tfd_queue_size,
736 txq->tfds, txq->dma_addr);
737 txq->dma_addr = 0;
738 txq->tfds = NULL;
739
740 dma_free_coherent(dev,
741 sizeof(*txq->first_tb_bufs) * txq->n_window,
742 txq->first_tb_bufs, txq->first_tb_dma);
743 }
744
745 kfree(txq->entries);
746 txq->entries = NULL;
747
748 del_timer_sync(&txq->stuck_timer);
749
750
751 memset(txq, 0, sizeof(*txq));
752}
753
754void iwl_pcie_tx_start(struct iwl_trans *trans, u32 scd_base_addr)
755{
756 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
757 int nq = trans->trans_cfg->base_params->num_of_queues;
758 int chan;
759 u32 reg_val;
760 int clear_dwords = (SCD_TRANS_TBL_OFFSET_QUEUE(nq) -
761 SCD_CONTEXT_MEM_LOWER_BOUND) / sizeof(u32);
762
763
764 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
765 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
766
767 trans_pcie->scd_base_addr =
768 iwl_read_prph(trans, SCD_SRAM_BASE_ADDR);
769
770 WARN_ON(scd_base_addr != 0 &&
771 scd_base_addr != trans_pcie->scd_base_addr);
772
773
774 iwl_trans_write_mem(trans, trans_pcie->scd_base_addr +
775 SCD_CONTEXT_MEM_LOWER_BOUND,
776 NULL, clear_dwords);
777
778 iwl_write_prph(trans, SCD_DRAM_BASE_ADDR,
779 trans_pcie->scd_bc_tbls.dma >> 10);
780
781
782
783
784 if (trans->trans_cfg->base_params->scd_chain_ext_wa)
785 iwl_write_prph(trans, SCD_CHAINEXT_EN, 0);
786
787 iwl_trans_ac_txq_enable(trans, trans_pcie->cmd_queue,
788 trans_pcie->cmd_fifo,
789 trans_pcie->cmd_q_wdg_timeout);
790
791
792 iwl_scd_activate_fifos(trans);
793
794
795 for (chan = 0; chan < FH_TCSR_CHNL_NUM; chan++)
796 iwl_write_direct32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(chan),
797 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
798 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
799
800
801 reg_val = iwl_read_direct32(trans, FH_TX_CHICKEN_BITS_REG);
802 iwl_write_direct32(trans, FH_TX_CHICKEN_BITS_REG,
803 reg_val | FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
804
805
806 if (trans->trans_cfg->device_family < IWL_DEVICE_FAMILY_8000)
807 iwl_clear_bits_prph(trans, APMG_PCIDEV_STT_REG,
808 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
809}
810
811void iwl_trans_pcie_tx_reset(struct iwl_trans *trans)
812{
813 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
814 int txq_id;
815
816
817
818
819
820 if (WARN_ON_ONCE(trans->trans_cfg->gen2))
821 return;
822
823 for (txq_id = 0; txq_id < trans->trans_cfg->base_params->num_of_queues;
824 txq_id++) {
825 struct iwl_txq *txq = trans_pcie->txq[txq_id];
826 if (trans->trans_cfg->use_tfh)
827 iwl_write_direct64(trans,
828 FH_MEM_CBBC_QUEUE(trans, txq_id),
829 txq->dma_addr);
830 else
831 iwl_write_direct32(trans,
832 FH_MEM_CBBC_QUEUE(trans, txq_id),
833 txq->dma_addr >> 8);
834 iwl_pcie_txq_unmap(trans, txq_id);
835 txq->read_ptr = 0;
836 txq->write_ptr = 0;
837 }
838
839
840 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
841 trans_pcie->kw.dma >> 4);
842
843
844
845
846
847
848 iwl_pcie_tx_start(trans, 0);
849}
850
851static void iwl_pcie_tx_stop_fh(struct iwl_trans *trans)
852{
853 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
854 unsigned long flags;
855 int ch, ret;
856 u32 mask = 0;
857
858 spin_lock(&trans_pcie->irq_lock);
859
860 if (!iwl_trans_grab_nic_access(trans, &flags))
861 goto out;
862
863
864 for (ch = 0; ch < FH_TCSR_CHNL_NUM; ch++) {
865 iwl_write32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
866 mask |= FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch);
867 }
868
869
870 ret = iwl_poll_bit(trans, FH_TSSR_TX_STATUS_REG, mask, mask, 5000);
871 if (ret < 0)
872 IWL_ERR(trans,
873 "Failing on timeout while stopping DMA channel %d [0x%08x]\n",
874 ch, iwl_read32(trans, FH_TSSR_TX_STATUS_REG));
875
876 iwl_trans_release_nic_access(trans, &flags);
877
878out:
879 spin_unlock(&trans_pcie->irq_lock);
880}
881
882
883
884
885int iwl_pcie_tx_stop(struct iwl_trans *trans)
886{
887 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
888 int txq_id;
889
890
891 iwl_scd_deactivate_fifos(trans);
892
893
894 iwl_pcie_tx_stop_fh(trans);
895
896
897
898
899
900
901 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
902 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
903
904
905 if (!trans_pcie->txq_memory)
906 return 0;
907
908
909 for (txq_id = 0; txq_id < trans->trans_cfg->base_params->num_of_queues;
910 txq_id++)
911 iwl_pcie_txq_unmap(trans, txq_id);
912
913 return 0;
914}
915
916
917
918
919
920
921void iwl_pcie_tx_free(struct iwl_trans *trans)
922{
923 int txq_id;
924 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
925
926 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
927
928
929 if (trans_pcie->txq_memory) {
930 for (txq_id = 0;
931 txq_id < trans->trans_cfg->base_params->num_of_queues;
932 txq_id++) {
933 iwl_pcie_txq_free(trans, txq_id);
934 trans_pcie->txq[txq_id] = NULL;
935 }
936 }
937
938 kfree(trans_pcie->txq_memory);
939 trans_pcie->txq_memory = NULL;
940
941 iwl_pcie_free_dma_ptr(trans, &trans_pcie->kw);
942
943 iwl_pcie_free_dma_ptr(trans, &trans_pcie->scd_bc_tbls);
944}
945
946
947
948
949
950static int iwl_pcie_tx_alloc(struct iwl_trans *trans)
951{
952 int ret;
953 int txq_id, slots_num;
954 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
955 u16 bc_tbls_size = trans->trans_cfg->base_params->num_of_queues;
956
957 bc_tbls_size *= (trans->trans_cfg->device_family >=
958 IWL_DEVICE_FAMILY_AX210) ?
959 sizeof(struct iwl_gen3_bc_tbl) :
960 sizeof(struct iwlagn_scd_bc_tbl);
961
962
963
964 if (WARN_ON(trans_pcie->txq_memory)) {
965 ret = -EINVAL;
966 goto error;
967 }
968
969 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->scd_bc_tbls,
970 bc_tbls_size);
971 if (ret) {
972 IWL_ERR(trans, "Scheduler BC Table allocation failed\n");
973 goto error;
974 }
975
976
977 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->kw, IWL_KW_SIZE);
978 if (ret) {
979 IWL_ERR(trans, "Keep Warm allocation failed\n");
980 goto error;
981 }
982
983 trans_pcie->txq_memory =
984 kcalloc(trans->trans_cfg->base_params->num_of_queues,
985 sizeof(struct iwl_txq), GFP_KERNEL);
986 if (!trans_pcie->txq_memory) {
987 IWL_ERR(trans, "Not enough memory for txq\n");
988 ret = -ENOMEM;
989 goto error;
990 }
991
992
993 for (txq_id = 0; txq_id < trans->trans_cfg->base_params->num_of_queues;
994 txq_id++) {
995 bool cmd_queue = (txq_id == trans_pcie->cmd_queue);
996
997 if (cmd_queue)
998 slots_num = max_t(u32, IWL_CMD_QUEUE_SIZE,
999 trans->cfg->min_txq_size);
1000 else
1001 slots_num = max_t(u32, IWL_DEFAULT_QUEUE_SIZE,
1002 trans->cfg->min_256_ba_txq_size);
1003 trans_pcie->txq[txq_id] = &trans_pcie->txq_memory[txq_id];
1004 ret = iwl_pcie_txq_alloc(trans, trans_pcie->txq[txq_id],
1005 slots_num, cmd_queue);
1006 if (ret) {
1007 IWL_ERR(trans, "Tx %d queue alloc failed\n", txq_id);
1008 goto error;
1009 }
1010 trans_pcie->txq[txq_id]->id = txq_id;
1011 }
1012
1013 return 0;
1014
1015error:
1016 iwl_pcie_tx_free(trans);
1017
1018 return ret;
1019}
1020
1021int iwl_pcie_tx_init(struct iwl_trans *trans)
1022{
1023 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1024 int ret;
1025 int txq_id, slots_num;
1026 bool alloc = false;
1027
1028 if (!trans_pcie->txq_memory) {
1029 ret = iwl_pcie_tx_alloc(trans);
1030 if (ret)
1031 goto error;
1032 alloc = true;
1033 }
1034
1035 spin_lock(&trans_pcie->irq_lock);
1036
1037
1038 iwl_scd_deactivate_fifos(trans);
1039
1040
1041 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
1042 trans_pcie->kw.dma >> 4);
1043
1044 spin_unlock(&trans_pcie->irq_lock);
1045
1046
1047 for (txq_id = 0; txq_id < trans->trans_cfg->base_params->num_of_queues;
1048 txq_id++) {
1049 bool cmd_queue = (txq_id == trans_pcie->cmd_queue);
1050
1051 if (cmd_queue)
1052 slots_num = max_t(u32, IWL_CMD_QUEUE_SIZE,
1053 trans->cfg->min_txq_size);
1054 else
1055 slots_num = max_t(u32, IWL_DEFAULT_QUEUE_SIZE,
1056 trans->cfg->min_256_ba_txq_size);
1057 ret = iwl_pcie_txq_init(trans, trans_pcie->txq[txq_id],
1058 slots_num, cmd_queue);
1059 if (ret) {
1060 IWL_ERR(trans, "Tx %d queue init failed\n", txq_id);
1061 goto error;
1062 }
1063
1064
1065
1066
1067
1068
1069
1070 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(trans, txq_id),
1071 trans_pcie->txq[txq_id]->dma_addr >> 8);
1072 }
1073
1074 iwl_set_bits_prph(trans, SCD_GP_CTRL, SCD_GP_CTRL_AUTO_ACTIVE_MODE);
1075 if (trans->trans_cfg->base_params->num_of_queues > 20)
1076 iwl_set_bits_prph(trans, SCD_GP_CTRL,
1077 SCD_GP_CTRL_ENABLE_31_QUEUES);
1078
1079 return 0;
1080error:
1081
1082 if (alloc)
1083 iwl_pcie_tx_free(trans);
1084 return ret;
1085}
1086
1087static inline void iwl_pcie_txq_progress(struct iwl_txq *txq)
1088{
1089 lockdep_assert_held(&txq->lock);
1090
1091 if (!txq->wd_timeout)
1092 return;
1093
1094
1095
1096
1097
1098 if (txq->frozen)
1099 return;
1100
1101
1102
1103
1104
1105 if (txq->read_ptr == txq->write_ptr)
1106 del_timer(&txq->stuck_timer);
1107 else
1108 mod_timer(&txq->stuck_timer, jiffies + txq->wd_timeout);
1109}
1110
1111
1112void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,
1113 struct sk_buff_head *skbs)
1114{
1115 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1116 struct iwl_txq *txq = trans_pcie->txq[txq_id];
1117 int tfd_num = iwl_pcie_get_cmd_index(txq, ssn);
1118 int read_ptr = iwl_pcie_get_cmd_index(txq, txq->read_ptr);
1119 int last_to_free;
1120
1121
1122 if (WARN_ON(txq_id == trans_pcie->cmd_queue))
1123 return;
1124
1125 spin_lock_bh(&txq->lock);
1126
1127 if (!test_bit(txq_id, trans_pcie->queue_used)) {
1128 IWL_DEBUG_TX_QUEUES(trans, "Q %d inactive - ignoring idx %d\n",
1129 txq_id, ssn);
1130 goto out;
1131 }
1132
1133 if (read_ptr == tfd_num)
1134 goto out;
1135
1136 IWL_DEBUG_TX_REPLY(trans, "[Q %d] %d -> %d (%d)\n",
1137 txq_id, txq->read_ptr, tfd_num, ssn);
1138
1139
1140
1141 last_to_free = iwl_queue_dec_wrap(trans, tfd_num);
1142
1143 if (!iwl_queue_used(txq, last_to_free)) {
1144 IWL_ERR(trans,
1145 "%s: Read index for txq id (%d), last_to_free %d is out of range [0-%d] %d %d.\n",
1146 __func__, txq_id, last_to_free,
1147 trans->trans_cfg->base_params->max_tfd_queue_size,
1148 txq->write_ptr, txq->read_ptr);
1149 goto out;
1150 }
1151
1152 if (WARN_ON(!skb_queue_empty(skbs)))
1153 goto out;
1154
1155 for (;
1156 read_ptr != tfd_num;
1157 txq->read_ptr = iwl_queue_inc_wrap(trans, txq->read_ptr),
1158 read_ptr = iwl_pcie_get_cmd_index(txq, txq->read_ptr)) {
1159 struct sk_buff *skb = txq->entries[read_ptr].skb;
1160
1161 if (WARN_ON_ONCE(!skb))
1162 continue;
1163
1164 iwl_pcie_free_tso_page(trans_pcie, skb);
1165
1166 __skb_queue_tail(skbs, skb);
1167
1168 txq->entries[read_ptr].skb = NULL;
1169
1170 if (!trans->trans_cfg->use_tfh)
1171 iwl_pcie_txq_inval_byte_cnt_tbl(trans, txq);
1172
1173 iwl_pcie_txq_free_tfd(trans, txq);
1174 }
1175
1176 iwl_pcie_txq_progress(txq);
1177
1178 if (iwl_queue_space(trans, txq) > txq->low_mark &&
1179 test_bit(txq_id, trans_pcie->queue_stopped)) {
1180 struct sk_buff_head overflow_skbs;
1181
1182 __skb_queue_head_init(&overflow_skbs);
1183 skb_queue_splice_init(&txq->overflow_q, &overflow_skbs);
1184
1185
1186
1187
1188
1189
1190
1191
1192 txq->overflow_tx = true;
1193
1194
1195
1196
1197
1198
1199
1200
1201 spin_unlock_bh(&txq->lock);
1202
1203 while (!skb_queue_empty(&overflow_skbs)) {
1204 struct sk_buff *skb = __skb_dequeue(&overflow_skbs);
1205 struct iwl_device_tx_cmd *dev_cmd_ptr;
1206
1207 dev_cmd_ptr = *(void **)((u8 *)skb->cb +
1208 trans_pcie->dev_cmd_offs);
1209
1210
1211
1212
1213
1214
1215 iwl_trans_tx(trans, skb, dev_cmd_ptr, txq_id);
1216 }
1217
1218 if (iwl_queue_space(trans, txq) > txq->low_mark)
1219 iwl_wake_queue(trans, txq);
1220
1221 spin_lock_bh(&txq->lock);
1222 txq->overflow_tx = false;
1223 }
1224
1225out:
1226 spin_unlock_bh(&txq->lock);
1227}
1228
1229
1230void iwl_trans_pcie_set_q_ptrs(struct iwl_trans *trans, int txq_id, int ptr)
1231{
1232 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1233 struct iwl_txq *txq = trans_pcie->txq[txq_id];
1234
1235 spin_lock_bh(&txq->lock);
1236
1237 txq->write_ptr = ptr;
1238 txq->read_ptr = txq->write_ptr;
1239
1240 spin_unlock_bh(&txq->lock);
1241}
1242
1243static int iwl_pcie_set_cmd_in_flight(struct iwl_trans *trans,
1244 const struct iwl_host_cmd *cmd)
1245{
1246 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1247 int ret;
1248
1249 lockdep_assert_held(&trans_pcie->reg_lock);
1250
1251
1252 if (test_bit(STATUS_TRANS_DEAD, &trans->status))
1253 return -ENODEV;
1254
1255
1256
1257
1258
1259
1260
1261 if (trans->trans_cfg->base_params->apmg_wake_up_wa &&
1262 !trans_pcie->cmd_hold_nic_awake) {
1263 __iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
1264 BIT(trans->trans_cfg->csr->flag_mac_access_req));
1265
1266 ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
1267 BIT(trans->trans_cfg->csr->flag_val_mac_access_en),
1268 (BIT(trans->trans_cfg->csr->flag_mac_clock_ready) |
1269 CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP),
1270 15000);
1271 if (ret < 0) {
1272 __iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
1273 BIT(trans->trans_cfg->csr->flag_mac_access_req));
1274 IWL_ERR(trans, "Failed to wake NIC for hcmd\n");
1275 return -EIO;
1276 }
1277 trans_pcie->cmd_hold_nic_awake = true;
1278 }
1279
1280 return 0;
1281}
1282
1283
1284
1285
1286
1287
1288
1289
1290void iwl_pcie_cmdq_reclaim(struct iwl_trans *trans, int txq_id, int idx)
1291{
1292 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1293 struct iwl_txq *txq = trans_pcie->txq[txq_id];
1294 unsigned long flags;
1295 int nfreed = 0;
1296 u16 r;
1297
1298 lockdep_assert_held(&txq->lock);
1299
1300 idx = iwl_pcie_get_cmd_index(txq, idx);
1301 r = iwl_pcie_get_cmd_index(txq, txq->read_ptr);
1302
1303 if (idx >= trans->trans_cfg->base_params->max_tfd_queue_size ||
1304 (!iwl_queue_used(txq, idx))) {
1305 WARN_ONCE(test_bit(txq_id, trans_pcie->queue_used),
1306 "%s: Read index for DMA queue txq id (%d), index %d is out of range [0-%d] %d %d.\n",
1307 __func__, txq_id, idx,
1308 trans->trans_cfg->base_params->max_tfd_queue_size,
1309 txq->write_ptr, txq->read_ptr);
1310 return;
1311 }
1312
1313 for (idx = iwl_queue_inc_wrap(trans, idx); r != idx;
1314 r = iwl_queue_inc_wrap(trans, r)) {
1315 txq->read_ptr = iwl_queue_inc_wrap(trans, txq->read_ptr);
1316
1317 if (nfreed++ > 0) {
1318 IWL_ERR(trans, "HCMD skipped: index (%d) %d %d\n",
1319 idx, txq->write_ptr, r);
1320 iwl_force_nmi(trans);
1321 }
1322 }
1323
1324 if (txq->read_ptr == txq->write_ptr) {
1325 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
1326 iwl_pcie_clear_cmd_in_flight(trans);
1327 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1328 }
1329
1330 iwl_pcie_txq_progress(txq);
1331}
1332
1333static int iwl_pcie_txq_set_ratid_map(struct iwl_trans *trans, u16 ra_tid,
1334 u16 txq_id)
1335{
1336 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1337 u32 tbl_dw_addr;
1338 u32 tbl_dw;
1339 u16 scd_q2ratid;
1340
1341 scd_q2ratid = ra_tid & SCD_QUEUE_RA_TID_MAP_RATID_MSK;
1342
1343 tbl_dw_addr = trans_pcie->scd_base_addr +
1344 SCD_TRANS_TBL_OFFSET_QUEUE(txq_id);
1345
1346 tbl_dw = iwl_trans_read_mem32(trans, tbl_dw_addr);
1347
1348 if (txq_id & 0x1)
1349 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
1350 else
1351 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
1352
1353 iwl_trans_write_mem32(trans, tbl_dw_addr, tbl_dw);
1354
1355 return 0;
1356}
1357
1358
1359
1360#define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
1361
1362bool iwl_trans_pcie_txq_enable(struct iwl_trans *trans, int txq_id, u16 ssn,
1363 const struct iwl_trans_txq_scd_cfg *cfg,
1364 unsigned int wdg_timeout)
1365{
1366 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1367 struct iwl_txq *txq = trans_pcie->txq[txq_id];
1368 int fifo = -1;
1369 bool scd_bug = false;
1370
1371 if (test_and_set_bit(txq_id, trans_pcie->queue_used))
1372 WARN_ONCE(1, "queue %d already used - expect issues", txq_id);
1373
1374 txq->wd_timeout = msecs_to_jiffies(wdg_timeout);
1375
1376 if (cfg) {
1377 fifo = cfg->fifo;
1378
1379
1380 if (txq_id == trans_pcie->cmd_queue &&
1381 trans_pcie->scd_set_active)
1382 iwl_scd_enable_set_active(trans, 0);
1383
1384
1385 iwl_scd_txq_set_inactive(trans, txq_id);
1386
1387
1388 if (txq_id != trans_pcie->cmd_queue)
1389 iwl_scd_txq_set_chain(trans, txq_id);
1390
1391 if (cfg->aggregate) {
1392 u16 ra_tid = BUILD_RAxTID(cfg->sta_id, cfg->tid);
1393
1394
1395 iwl_pcie_txq_set_ratid_map(trans, ra_tid, txq_id);
1396
1397
1398 iwl_scd_txq_enable_agg(trans, txq_id);
1399 txq->ampdu = true;
1400 } else {
1401
1402
1403
1404
1405
1406 iwl_scd_txq_disable_agg(trans, txq_id);
1407
1408 ssn = txq->read_ptr;
1409 }
1410 } else {
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422 scd_bug = !trans->trans_cfg->mq_rx_supported &&
1423 !((ssn - txq->write_ptr) & 0x3f) &&
1424 (ssn != txq->write_ptr);
1425 if (scd_bug)
1426 ssn++;
1427 }
1428
1429
1430
1431 txq->read_ptr = (ssn & 0xff);
1432 txq->write_ptr = (ssn & 0xff);
1433 iwl_write_direct32(trans, HBUS_TARG_WRPTR,
1434 (ssn & 0xff) | (txq_id << 8));
1435
1436 if (cfg) {
1437 u8 frame_limit = cfg->frame_limit;
1438
1439 iwl_write_prph(trans, SCD_QUEUE_RDPTR(txq_id), ssn);
1440
1441
1442 iwl_trans_write_mem32(trans, trans_pcie->scd_base_addr +
1443 SCD_CONTEXT_QUEUE_OFFSET(txq_id), 0);
1444 iwl_trans_write_mem32(trans,
1445 trans_pcie->scd_base_addr +
1446 SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
1447 SCD_QUEUE_CTX_REG2_VAL(WIN_SIZE, frame_limit) |
1448 SCD_QUEUE_CTX_REG2_VAL(FRAME_LIMIT, frame_limit));
1449
1450
1451 iwl_write_prph(trans, SCD_QUEUE_STATUS_BITS(txq_id),
1452 (1 << SCD_QUEUE_STTS_REG_POS_ACTIVE) |
1453 (cfg->fifo << SCD_QUEUE_STTS_REG_POS_TXF) |
1454 (1 << SCD_QUEUE_STTS_REG_POS_WSL) |
1455 SCD_QUEUE_STTS_REG_MSK);
1456
1457
1458 if (txq_id == trans_pcie->cmd_queue &&
1459 trans_pcie->scd_set_active)
1460 iwl_scd_enable_set_active(trans, BIT(txq_id));
1461
1462 IWL_DEBUG_TX_QUEUES(trans,
1463 "Activate queue %d on FIFO %d WrPtr: %d\n",
1464 txq_id, fifo, ssn & 0xff);
1465 } else {
1466 IWL_DEBUG_TX_QUEUES(trans,
1467 "Activate queue %d WrPtr: %d\n",
1468 txq_id, ssn & 0xff);
1469 }
1470
1471 return scd_bug;
1472}
1473
1474void iwl_trans_pcie_txq_set_shared_mode(struct iwl_trans *trans, u32 txq_id,
1475 bool shared_mode)
1476{
1477 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1478 struct iwl_txq *txq = trans_pcie->txq[txq_id];
1479
1480 txq->ampdu = !shared_mode;
1481}
1482
1483void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int txq_id,
1484 bool configure_scd)
1485{
1486 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1487 u32 stts_addr = trans_pcie->scd_base_addr +
1488 SCD_TX_STTS_QUEUE_OFFSET(txq_id);
1489 static const u32 zero_val[4] = {};
1490
1491 trans_pcie->txq[txq_id]->frozen_expiry_remainder = 0;
1492 trans_pcie->txq[txq_id]->frozen = false;
1493
1494
1495
1496
1497
1498
1499
1500 if (!test_and_clear_bit(txq_id, trans_pcie->queue_used)) {
1501 WARN_ONCE(test_bit(STATUS_DEVICE_ENABLED, &trans->status),
1502 "queue %d not used", txq_id);
1503 return;
1504 }
1505
1506 if (configure_scd) {
1507 iwl_scd_txq_set_inactive(trans, txq_id);
1508
1509 iwl_trans_write_mem(trans, stts_addr, (void *)zero_val,
1510 ARRAY_SIZE(zero_val));
1511 }
1512
1513 iwl_pcie_txq_unmap(trans, txq_id);
1514 trans_pcie->txq[txq_id]->ampdu = false;
1515
1516 IWL_DEBUG_TX_QUEUES(trans, "Deactivate queue %d\n", txq_id);
1517}
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,
1531 struct iwl_host_cmd *cmd)
1532{
1533 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1534 struct iwl_txq *txq = trans_pcie->txq[trans_pcie->cmd_queue];
1535 struct iwl_device_cmd *out_cmd;
1536 struct iwl_cmd_meta *out_meta;
1537 unsigned long flags;
1538 void *dup_buf = NULL;
1539 dma_addr_t phys_addr;
1540 int idx;
1541 u16 copy_size, cmd_size, tb0_size;
1542 bool had_nocopy = false;
1543 u8 group_id = iwl_cmd_groupid(cmd->id);
1544 int i, ret;
1545 u32 cmd_pos;
1546 const u8 *cmddata[IWL_MAX_CMD_TBS_PER_TFD];
1547 u16 cmdlen[IWL_MAX_CMD_TBS_PER_TFD];
1548
1549 if (WARN(!trans->wide_cmd_header &&
1550 group_id > IWL_ALWAYS_LONG_GROUP,
1551 "unsupported wide command %#x\n", cmd->id))
1552 return -EINVAL;
1553
1554 if (group_id != 0) {
1555 copy_size = sizeof(struct iwl_cmd_header_wide);
1556 cmd_size = sizeof(struct iwl_cmd_header_wide);
1557 } else {
1558 copy_size = sizeof(struct iwl_cmd_header);
1559 cmd_size = sizeof(struct iwl_cmd_header);
1560 }
1561
1562
1563 BUILD_BUG_ON(IWL_MAX_CMD_TBS_PER_TFD > IWL_NUM_OF_TBS - 1);
1564
1565 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
1566 cmddata[i] = cmd->data[i];
1567 cmdlen[i] = cmd->len[i];
1568
1569 if (!cmd->len[i])
1570 continue;
1571
1572
1573 if (copy_size < IWL_FIRST_TB_SIZE) {
1574 int copy = IWL_FIRST_TB_SIZE - copy_size;
1575
1576 if (copy > cmdlen[i])
1577 copy = cmdlen[i];
1578 cmdlen[i] -= copy;
1579 cmddata[i] += copy;
1580 copy_size += copy;
1581 }
1582
1583 if (cmd->dataflags[i] & IWL_HCMD_DFL_NOCOPY) {
1584 had_nocopy = true;
1585 if (WARN_ON(cmd->dataflags[i] & IWL_HCMD_DFL_DUP)) {
1586 idx = -EINVAL;
1587 goto free_dup_buf;
1588 }
1589 } else if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP) {
1590
1591
1592
1593
1594 had_nocopy = true;
1595
1596
1597 if (WARN_ON(dup_buf)) {
1598 idx = -EINVAL;
1599 goto free_dup_buf;
1600 }
1601
1602 dup_buf = kmemdup(cmddata[i], cmdlen[i],
1603 GFP_ATOMIC);
1604 if (!dup_buf)
1605 return -ENOMEM;
1606 } else {
1607
1608 if (WARN_ON(had_nocopy)) {
1609 idx = -EINVAL;
1610 goto free_dup_buf;
1611 }
1612 copy_size += cmdlen[i];
1613 }
1614 cmd_size += cmd->len[i];
1615 }
1616
1617
1618
1619
1620
1621
1622
1623 if (WARN(copy_size > TFD_MAX_PAYLOAD_SIZE,
1624 "Command %s (%#x) is too large (%d bytes)\n",
1625 iwl_get_cmd_string(trans, cmd->id),
1626 cmd->id, copy_size)) {
1627 idx = -EINVAL;
1628 goto free_dup_buf;
1629 }
1630
1631 spin_lock_bh(&txq->lock);
1632
1633 if (iwl_queue_space(trans, txq) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
1634 spin_unlock_bh(&txq->lock);
1635
1636 IWL_ERR(trans, "No space in command queue\n");
1637 iwl_op_mode_cmd_queue_full(trans->op_mode);
1638 idx = -ENOSPC;
1639 goto free_dup_buf;
1640 }
1641
1642 idx = iwl_pcie_get_cmd_index(txq, txq->write_ptr);
1643 out_cmd = txq->entries[idx].cmd;
1644 out_meta = &txq->entries[idx].meta;
1645
1646 memset(out_meta, 0, sizeof(*out_meta));
1647 if (cmd->flags & CMD_WANT_SKB)
1648 out_meta->source = cmd;
1649
1650
1651 if (group_id != 0) {
1652 out_cmd->hdr_wide.cmd = iwl_cmd_opcode(cmd->id);
1653 out_cmd->hdr_wide.group_id = group_id;
1654 out_cmd->hdr_wide.version = iwl_cmd_version(cmd->id);
1655 out_cmd->hdr_wide.length =
1656 cpu_to_le16(cmd_size -
1657 sizeof(struct iwl_cmd_header_wide));
1658 out_cmd->hdr_wide.reserved = 0;
1659 out_cmd->hdr_wide.sequence =
1660 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
1661 INDEX_TO_SEQ(txq->write_ptr));
1662
1663 cmd_pos = sizeof(struct iwl_cmd_header_wide);
1664 copy_size = sizeof(struct iwl_cmd_header_wide);
1665 } else {
1666 out_cmd->hdr.cmd = iwl_cmd_opcode(cmd->id);
1667 out_cmd->hdr.sequence =
1668 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
1669 INDEX_TO_SEQ(txq->write_ptr));
1670 out_cmd->hdr.group_id = 0;
1671
1672 cmd_pos = sizeof(struct iwl_cmd_header);
1673 copy_size = sizeof(struct iwl_cmd_header);
1674 }
1675
1676
1677 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
1678 int copy;
1679
1680 if (!cmd->len[i])
1681 continue;
1682
1683
1684 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1685 IWL_HCMD_DFL_DUP))) {
1686 copy = cmd->len[i];
1687
1688 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1689 cmd_pos += copy;
1690 copy_size += copy;
1691 continue;
1692 }
1693
1694
1695
1696
1697
1698
1699 copy = min_t(int, TFD_MAX_PAYLOAD_SIZE - cmd_pos, cmd->len[i]);
1700
1701 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1702 cmd_pos += copy;
1703
1704
1705 if (copy_size < IWL_FIRST_TB_SIZE) {
1706 copy = IWL_FIRST_TB_SIZE - copy_size;
1707
1708 if (copy > cmd->len[i])
1709 copy = cmd->len[i];
1710 copy_size += copy;
1711 }
1712 }
1713
1714 IWL_DEBUG_HC(trans,
1715 "Sending command %s (%.2x.%.2x), seq: 0x%04X, %d bytes at %d[%d]:%d\n",
1716 iwl_get_cmd_string(trans, cmd->id),
1717 group_id, out_cmd->hdr.cmd,
1718 le16_to_cpu(out_cmd->hdr.sequence),
1719 cmd_size, txq->write_ptr, idx, trans_pcie->cmd_queue);
1720
1721
1722 tb0_size = min_t(int, copy_size, IWL_FIRST_TB_SIZE);
1723 memcpy(&txq->first_tb_bufs[idx], &out_cmd->hdr, tb0_size);
1724 iwl_pcie_txq_build_tfd(trans, txq,
1725 iwl_pcie_get_first_tb_dma(txq, idx),
1726 tb0_size, true);
1727
1728
1729 if (copy_size > tb0_size) {
1730 phys_addr = dma_map_single(trans->dev,
1731 ((u8 *)&out_cmd->hdr) + tb0_size,
1732 copy_size - tb0_size,
1733 DMA_TO_DEVICE);
1734 if (dma_mapping_error(trans->dev, phys_addr)) {
1735 iwl_pcie_tfd_unmap(trans, out_meta, txq,
1736 txq->write_ptr);
1737 idx = -ENOMEM;
1738 goto out;
1739 }
1740
1741 iwl_pcie_txq_build_tfd(trans, txq, phys_addr,
1742 copy_size - tb0_size, false);
1743 }
1744
1745
1746 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
1747 const void *data = cmddata[i];
1748
1749 if (!cmdlen[i])
1750 continue;
1751 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1752 IWL_HCMD_DFL_DUP)))
1753 continue;
1754 if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP)
1755 data = dup_buf;
1756 phys_addr = dma_map_single(trans->dev, (void *)data,
1757 cmdlen[i], DMA_TO_DEVICE);
1758 if (dma_mapping_error(trans->dev, phys_addr)) {
1759 iwl_pcie_tfd_unmap(trans, out_meta, txq,
1760 txq->write_ptr);
1761 idx = -ENOMEM;
1762 goto out;
1763 }
1764
1765 iwl_pcie_txq_build_tfd(trans, txq, phys_addr, cmdlen[i], false);
1766 }
1767
1768 BUILD_BUG_ON(IWL_TFH_NUM_TBS > sizeof(out_meta->tbs) * BITS_PER_BYTE);
1769 out_meta->flags = cmd->flags;
1770 if (WARN_ON_ONCE(txq->entries[idx].free_buf))
1771 kzfree(txq->entries[idx].free_buf);
1772 txq->entries[idx].free_buf = dup_buf;
1773
1774 trace_iwlwifi_dev_hcmd(trans->dev, cmd, cmd_size, &out_cmd->hdr_wide);
1775
1776
1777 if (txq->read_ptr == txq->write_ptr && txq->wd_timeout)
1778 mod_timer(&txq->stuck_timer, jiffies + txq->wd_timeout);
1779
1780 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
1781 ret = iwl_pcie_set_cmd_in_flight(trans, cmd);
1782 if (ret < 0) {
1783 idx = ret;
1784 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1785 goto out;
1786 }
1787
1788
1789 txq->write_ptr = iwl_queue_inc_wrap(trans, txq->write_ptr);
1790 iwl_pcie_txq_inc_wr_ptr(trans, txq);
1791
1792 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1793
1794 out:
1795 spin_unlock_bh(&txq->lock);
1796 free_dup_buf:
1797 if (idx < 0)
1798 kfree(dup_buf);
1799 return idx;
1800}
1801
1802
1803
1804
1805
1806void iwl_pcie_hcmd_complete(struct iwl_trans *trans,
1807 struct iwl_rx_cmd_buffer *rxb)
1808{
1809 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1810 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1811 u8 group_id;
1812 u32 cmd_id;
1813 int txq_id = SEQ_TO_QUEUE(sequence);
1814 int index = SEQ_TO_INDEX(sequence);
1815 int cmd_index;
1816 struct iwl_device_cmd *cmd;
1817 struct iwl_cmd_meta *meta;
1818 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1819 struct iwl_txq *txq = trans_pcie->txq[trans_pcie->cmd_queue];
1820
1821
1822
1823
1824 if (WARN(txq_id != trans_pcie->cmd_queue,
1825 "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n",
1826 txq_id, trans_pcie->cmd_queue, sequence, txq->read_ptr,
1827 txq->write_ptr)) {
1828 iwl_print_hex_error(trans, pkt, 32);
1829 return;
1830 }
1831
1832 spin_lock_bh(&txq->lock);
1833
1834 cmd_index = iwl_pcie_get_cmd_index(txq, index);
1835 cmd = txq->entries[cmd_index].cmd;
1836 meta = &txq->entries[cmd_index].meta;
1837 group_id = cmd->hdr.group_id;
1838 cmd_id = iwl_cmd_id(cmd->hdr.cmd, group_id, 0);
1839
1840 iwl_pcie_tfd_unmap(trans, meta, txq, index);
1841
1842
1843 if (meta->flags & CMD_WANT_SKB) {
1844 struct page *p = rxb_steal_page(rxb);
1845
1846 meta->source->resp_pkt = pkt;
1847 meta->source->_rx_page_addr = (unsigned long)page_address(p);
1848 meta->source->_rx_page_order = trans_pcie->rx_page_order;
1849 }
1850
1851 if (meta->flags & CMD_WANT_ASYNC_CALLBACK)
1852 iwl_op_mode_async_cb(trans->op_mode, cmd);
1853
1854 iwl_pcie_cmdq_reclaim(trans, txq_id, index);
1855
1856 if (!(meta->flags & CMD_ASYNC)) {
1857 if (!test_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status)) {
1858 IWL_WARN(trans,
1859 "HCMD_ACTIVE already clear for command %s\n",
1860 iwl_get_cmd_string(trans, cmd_id));
1861 }
1862 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
1863 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
1864 iwl_get_cmd_string(trans, cmd_id));
1865 wake_up(&trans_pcie->wait_command_queue);
1866 }
1867
1868 meta->flags = 0;
1869
1870 spin_unlock_bh(&txq->lock);
1871}
1872
1873#define HOST_COMPLETE_TIMEOUT (2 * HZ)
1874
1875static int iwl_pcie_send_hcmd_async(struct iwl_trans *trans,
1876 struct iwl_host_cmd *cmd)
1877{
1878 int ret;
1879
1880
1881 if (WARN_ON(cmd->flags & CMD_WANT_SKB))
1882 return -EINVAL;
1883
1884 ret = iwl_pcie_enqueue_hcmd(trans, cmd);
1885 if (ret < 0) {
1886 IWL_ERR(trans,
1887 "Error sending %s: enqueue_hcmd failed: %d\n",
1888 iwl_get_cmd_string(trans, cmd->id), ret);
1889 return ret;
1890 }
1891 return 0;
1892}
1893
1894static int iwl_pcie_send_hcmd_sync(struct iwl_trans *trans,
1895 struct iwl_host_cmd *cmd)
1896{
1897 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1898 struct iwl_txq *txq = trans_pcie->txq[trans_pcie->cmd_queue];
1899 int cmd_idx;
1900 int ret;
1901
1902 IWL_DEBUG_INFO(trans, "Attempting to send sync command %s\n",
1903 iwl_get_cmd_string(trans, cmd->id));
1904
1905 if (WARN(test_and_set_bit(STATUS_SYNC_HCMD_ACTIVE,
1906 &trans->status),
1907 "Command %s: a command is already active!\n",
1908 iwl_get_cmd_string(trans, cmd->id)))
1909 return -EIO;
1910
1911 IWL_DEBUG_INFO(trans, "Setting HCMD_ACTIVE for command %s\n",
1912 iwl_get_cmd_string(trans, cmd->id));
1913
1914 cmd_idx = iwl_pcie_enqueue_hcmd(trans, cmd);
1915 if (cmd_idx < 0) {
1916 ret = cmd_idx;
1917 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
1918 IWL_ERR(trans,
1919 "Error sending %s: enqueue_hcmd failed: %d\n",
1920 iwl_get_cmd_string(trans, cmd->id), ret);
1921 return ret;
1922 }
1923
1924 ret = wait_event_timeout(trans_pcie->wait_command_queue,
1925 !test_bit(STATUS_SYNC_HCMD_ACTIVE,
1926 &trans->status),
1927 HOST_COMPLETE_TIMEOUT);
1928 if (!ret) {
1929 IWL_ERR(trans, "Error sending %s: time out after %dms.\n",
1930 iwl_get_cmd_string(trans, cmd->id),
1931 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
1932
1933 IWL_ERR(trans, "Current CMD queue read_ptr %d write_ptr %d\n",
1934 txq->read_ptr, txq->write_ptr);
1935
1936 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
1937 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
1938 iwl_get_cmd_string(trans, cmd->id));
1939 ret = -ETIMEDOUT;
1940
1941 iwl_trans_pcie_sync_nmi(trans);
1942 goto cancel;
1943 }
1944
1945 if (test_bit(STATUS_FW_ERROR, &trans->status)) {
1946 iwl_trans_pcie_dump_regs(trans);
1947 IWL_ERR(trans, "FW error in SYNC CMD %s\n",
1948 iwl_get_cmd_string(trans, cmd->id));
1949 dump_stack();
1950 ret = -EIO;
1951 goto cancel;
1952 }
1953
1954 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
1955 test_bit(STATUS_RFKILL_OPMODE, &trans->status)) {
1956 IWL_DEBUG_RF_KILL(trans, "RFKILL in SYNC CMD... no rsp\n");
1957 ret = -ERFKILL;
1958 goto cancel;
1959 }
1960
1961 if ((cmd->flags & CMD_WANT_SKB) && !cmd->resp_pkt) {
1962 IWL_ERR(trans, "Error: Response NULL in '%s'\n",
1963 iwl_get_cmd_string(trans, cmd->id));
1964 ret = -EIO;
1965 goto cancel;
1966 }
1967
1968 return 0;
1969
1970cancel:
1971 if (cmd->flags & CMD_WANT_SKB) {
1972
1973
1974
1975
1976
1977
1978 txq->entries[cmd_idx].meta.flags &= ~CMD_WANT_SKB;
1979 }
1980
1981 if (cmd->resp_pkt) {
1982 iwl_free_resp(cmd);
1983 cmd->resp_pkt = NULL;
1984 }
1985
1986 return ret;
1987}
1988
1989int iwl_trans_pcie_send_hcmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
1990{
1991
1992 if (test_bit(STATUS_TRANS_DEAD, &trans->status))
1993 return -ENODEV;
1994
1995 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
1996 test_bit(STATUS_RFKILL_OPMODE, &trans->status)) {
1997 IWL_DEBUG_RF_KILL(trans, "Dropping CMD 0x%x: RF KILL\n",
1998 cmd->id);
1999 return -ERFKILL;
2000 }
2001
2002 if (cmd->flags & CMD_ASYNC)
2003 return iwl_pcie_send_hcmd_async(trans, cmd);
2004
2005
2006 return iwl_pcie_send_hcmd_sync(trans, cmd);
2007}
2008
2009static int iwl_fill_data_tbs(struct iwl_trans *trans, struct sk_buff *skb,
2010 struct iwl_txq *txq, u8 hdr_len,
2011 struct iwl_cmd_meta *out_meta)
2012{
2013 u16 head_tb_len;
2014 int i;
2015
2016
2017
2018
2019
2020 head_tb_len = skb_headlen(skb) - hdr_len;
2021
2022 if (head_tb_len > 0) {
2023 dma_addr_t tb_phys = dma_map_single(trans->dev,
2024 skb->data + hdr_len,
2025 head_tb_len, DMA_TO_DEVICE);
2026 if (unlikely(dma_mapping_error(trans->dev, tb_phys)))
2027 return -EINVAL;
2028 trace_iwlwifi_dev_tx_tb(trans->dev, skb, skb->data + hdr_len,
2029 tb_phys, head_tb_len);
2030 iwl_pcie_txq_build_tfd(trans, txq, tb_phys, head_tb_len, false);
2031 }
2032
2033
2034 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2035 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2036 dma_addr_t tb_phys;
2037 int tb_idx;
2038
2039 if (!skb_frag_size(frag))
2040 continue;
2041
2042 tb_phys = skb_frag_dma_map(trans->dev, frag, 0,
2043 skb_frag_size(frag), DMA_TO_DEVICE);
2044
2045 if (unlikely(dma_mapping_error(trans->dev, tb_phys)))
2046 return -EINVAL;
2047 trace_iwlwifi_dev_tx_tb(trans->dev, skb, skb_frag_address(frag),
2048 tb_phys, skb_frag_size(frag));
2049 tb_idx = iwl_pcie_txq_build_tfd(trans, txq, tb_phys,
2050 skb_frag_size(frag), false);
2051 if (tb_idx < 0)
2052 return tb_idx;
2053
2054 out_meta->tbs |= BIT(tb_idx);
2055 }
2056
2057 return 0;
2058}
2059
2060#ifdef CONFIG_INET
2061struct iwl_tso_hdr_page *get_page_hdr(struct iwl_trans *trans, size_t len,
2062 struct sk_buff *skb)
2063{
2064 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2065 struct iwl_tso_hdr_page *p = this_cpu_ptr(trans_pcie->tso_hdr_page);
2066 struct page **page_ptr;
2067
2068 page_ptr = (void *)((u8 *)skb->cb + trans_pcie->page_offs);
2069
2070 if (WARN_ON(*page_ptr))
2071 return NULL;
2072
2073 if (!p->page)
2074 goto alloc;
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086 if (p->pos + len < (u8 *)page_address(p->page) + PAGE_SIZE -
2087 sizeof(void *))
2088 goto out;
2089
2090
2091 __free_page(p->page);
2092
2093alloc:
2094 p->page = alloc_page(GFP_ATOMIC);
2095 if (!p->page)
2096 return NULL;
2097 p->pos = page_address(p->page);
2098
2099 *(void **)(page_address(p->page) + PAGE_SIZE - sizeof(void *)) = NULL;
2100out:
2101 *page_ptr = p->page;
2102 get_page(p->page);
2103 return p;
2104}
2105
2106static void iwl_compute_pseudo_hdr_csum(void *iph, struct tcphdr *tcph,
2107 bool ipv6, unsigned int len)
2108{
2109 if (ipv6) {
2110 struct ipv6hdr *iphv6 = iph;
2111
2112 tcph->check = ~csum_ipv6_magic(&iphv6->saddr, &iphv6->daddr,
2113 len + tcph->doff * 4,
2114 IPPROTO_TCP, 0);
2115 } else {
2116 struct iphdr *iphv4 = iph;
2117
2118 ip_send_check(iphv4);
2119 tcph->check = ~csum_tcpudp_magic(iphv4->saddr, iphv4->daddr,
2120 len + tcph->doff * 4,
2121 IPPROTO_TCP, 0);
2122 }
2123}
2124
2125static int iwl_fill_data_tbs_amsdu(struct iwl_trans *trans, struct sk_buff *skb,
2126 struct iwl_txq *txq, u8 hdr_len,
2127 struct iwl_cmd_meta *out_meta,
2128 struct iwl_device_tx_cmd *dev_cmd,
2129 u16 tb1_len)
2130{
2131 struct iwl_tx_cmd *tx_cmd = (void *)dev_cmd->payload;
2132 struct iwl_trans_pcie *trans_pcie = txq->trans_pcie;
2133 struct ieee80211_hdr *hdr = (void *)skb->data;
2134 unsigned int snap_ip_tcp_hdrlen, ip_hdrlen, total_len, hdr_room;
2135 unsigned int mss = skb_shinfo(skb)->gso_size;
2136 u16 length, iv_len, amsdu_pad;
2137 u8 *start_hdr;
2138 struct iwl_tso_hdr_page *hdr_page;
2139 struct tso_t tso;
2140
2141
2142 BUILD_BUG_ON(IEEE80211_CCMP_HDR_LEN != IEEE80211_GCMP_HDR_LEN);
2143 iv_len = ieee80211_has_protected(hdr->frame_control) ?
2144 IEEE80211_CCMP_HDR_LEN : 0;
2145
2146 trace_iwlwifi_dev_tx(trans->dev, skb,
2147 iwl_pcie_get_tfd(trans, txq, txq->write_ptr),
2148 trans_pcie->tfd_size,
2149 &dev_cmd->hdr, IWL_FIRST_TB_SIZE + tb1_len, 0);
2150
2151 ip_hdrlen = skb_transport_header(skb) - skb_network_header(skb);
2152 snap_ip_tcp_hdrlen = 8 + ip_hdrlen + tcp_hdrlen(skb);
2153 total_len = skb->len - snap_ip_tcp_hdrlen - hdr_len - iv_len;
2154 amsdu_pad = 0;
2155
2156
2157 hdr_room = DIV_ROUND_UP(total_len, mss) *
2158 (3 + snap_ip_tcp_hdrlen + sizeof(struct ethhdr)) + iv_len;
2159
2160
2161 hdr_page = get_page_hdr(trans, hdr_room, skb);
2162 if (!hdr_page)
2163 return -ENOMEM;
2164
2165 start_hdr = hdr_page->pos;
2166 memcpy(hdr_page->pos, skb->data + hdr_len, iv_len);
2167 hdr_page->pos += iv_len;
2168
2169
2170
2171
2172
2173 skb_pull(skb, hdr_len + iv_len);
2174
2175
2176
2177
2178
2179
2180 le16_add_cpu(&tx_cmd->len, -snap_ip_tcp_hdrlen);
2181
2182 tso_start(skb, &tso);
2183
2184 while (total_len) {
2185
2186 unsigned int data_left =
2187 min_t(unsigned int, mss, total_len);
2188 struct sk_buff *csum_skb = NULL;
2189 unsigned int hdr_tb_len;
2190 dma_addr_t hdr_tb_phys;
2191 struct tcphdr *tcph;
2192 u8 *iph, *subf_hdrs_start = hdr_page->pos;
2193
2194 total_len -= data_left;
2195
2196 memset(hdr_page->pos, 0, amsdu_pad);
2197 hdr_page->pos += amsdu_pad;
2198 amsdu_pad = (4 - (sizeof(struct ethhdr) + snap_ip_tcp_hdrlen +
2199 data_left)) & 0x3;
2200 ether_addr_copy(hdr_page->pos, ieee80211_get_DA(hdr));
2201 hdr_page->pos += ETH_ALEN;
2202 ether_addr_copy(hdr_page->pos, ieee80211_get_SA(hdr));
2203 hdr_page->pos += ETH_ALEN;
2204
2205 length = snap_ip_tcp_hdrlen + data_left;
2206 *((__be16 *)hdr_page->pos) = cpu_to_be16(length);
2207 hdr_page->pos += sizeof(length);
2208
2209
2210
2211
2212
2213 tso_build_hdr(skb, hdr_page->pos, &tso, data_left, !total_len);
2214 iph = hdr_page->pos + 8;
2215 tcph = (void *)(iph + ip_hdrlen);
2216
2217
2218 if (trans_pcie->sw_csum_tx) {
2219 csum_skb = alloc_skb(data_left + tcp_hdrlen(skb),
2220 GFP_ATOMIC);
2221 if (!csum_skb)
2222 return -ENOMEM;
2223
2224 iwl_compute_pseudo_hdr_csum(iph, tcph,
2225 skb->protocol ==
2226 htons(ETH_P_IPV6),
2227 data_left);
2228
2229 skb_put_data(csum_skb, tcph, tcp_hdrlen(skb));
2230 skb_reset_transport_header(csum_skb);
2231 csum_skb->csum_start =
2232 (unsigned char *)tcp_hdr(csum_skb) -
2233 csum_skb->head;
2234 }
2235
2236 hdr_page->pos += snap_ip_tcp_hdrlen;
2237
2238 hdr_tb_len = hdr_page->pos - start_hdr;
2239 hdr_tb_phys = dma_map_single(trans->dev, start_hdr,
2240 hdr_tb_len, DMA_TO_DEVICE);
2241 if (unlikely(dma_mapping_error(trans->dev, hdr_tb_phys))) {
2242 dev_kfree_skb(csum_skb);
2243 return -EINVAL;
2244 }
2245 iwl_pcie_txq_build_tfd(trans, txq, hdr_tb_phys,
2246 hdr_tb_len, false);
2247 trace_iwlwifi_dev_tx_tb(trans->dev, skb, start_hdr,
2248 hdr_tb_phys, hdr_tb_len);
2249
2250 le16_add_cpu(&tx_cmd->len, hdr_page->pos - subf_hdrs_start);
2251
2252
2253 start_hdr = hdr_page->pos;
2254
2255
2256 while (data_left) {
2257 unsigned int size = min_t(unsigned int, tso.size,
2258 data_left);
2259 dma_addr_t tb_phys;
2260
2261 if (trans_pcie->sw_csum_tx)
2262 skb_put_data(csum_skb, tso.data, size);
2263
2264 tb_phys = dma_map_single(trans->dev, tso.data,
2265 size, DMA_TO_DEVICE);
2266 if (unlikely(dma_mapping_error(trans->dev, tb_phys))) {
2267 dev_kfree_skb(csum_skb);
2268 return -EINVAL;
2269 }
2270
2271 iwl_pcie_txq_build_tfd(trans, txq, tb_phys,
2272 size, false);
2273 trace_iwlwifi_dev_tx_tb(trans->dev, skb, tso.data,
2274 tb_phys, size);
2275
2276 data_left -= size;
2277 tso_build_data(skb, &tso, size);
2278 }
2279
2280
2281 if (trans_pcie->sw_csum_tx) {
2282 __wsum csum;
2283
2284 csum = skb_checksum(csum_skb,
2285 skb_checksum_start_offset(csum_skb),
2286 csum_skb->len -
2287 skb_checksum_start_offset(csum_skb),
2288 0);
2289 dev_kfree_skb(csum_skb);
2290 dma_sync_single_for_cpu(trans->dev, hdr_tb_phys,
2291 hdr_tb_len, DMA_TO_DEVICE);
2292 tcph->check = csum_fold(csum);
2293 dma_sync_single_for_device(trans->dev, hdr_tb_phys,
2294 hdr_tb_len, DMA_TO_DEVICE);
2295 }
2296 }
2297
2298
2299 skb_push(skb, hdr_len + iv_len);
2300
2301 return 0;
2302}
2303#else
2304static int iwl_fill_data_tbs_amsdu(struct iwl_trans *trans, struct sk_buff *skb,
2305 struct iwl_txq *txq, u8 hdr_len,
2306 struct iwl_cmd_meta *out_meta,
2307 struct iwl_device_tx_cmd *dev_cmd,
2308 u16 tb1_len)
2309{
2310
2311 WARN_ON(1);
2312
2313 return -1;
2314}
2315#endif
2316
2317int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
2318 struct iwl_device_tx_cmd *dev_cmd, int txq_id)
2319{
2320 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2321 struct ieee80211_hdr *hdr;
2322 struct iwl_tx_cmd *tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
2323 struct iwl_cmd_meta *out_meta;
2324 struct iwl_txq *txq;
2325 dma_addr_t tb0_phys, tb1_phys, scratch_phys;
2326 void *tb1_addr;
2327 void *tfd;
2328 u16 len, tb1_len;
2329 bool wait_write_ptr;
2330 __le16 fc;
2331 u8 hdr_len;
2332 u16 wifi_seq;
2333 bool amsdu;
2334
2335 txq = trans_pcie->txq[txq_id];
2336
2337 if (WARN_ONCE(!test_bit(txq_id, trans_pcie->queue_used),
2338 "TX on unused queue %d\n", txq_id))
2339 return -EINVAL;
2340
2341 if (unlikely(trans_pcie->sw_csum_tx &&
2342 skb->ip_summed == CHECKSUM_PARTIAL)) {
2343 int offs = skb_checksum_start_offset(skb);
2344 int csum_offs = offs + skb->csum_offset;
2345 __wsum csum;
2346
2347 if (skb_ensure_writable(skb, csum_offs + sizeof(__sum16)))
2348 return -1;
2349
2350 csum = skb_checksum(skb, offs, skb->len - offs, 0);
2351 *(__sum16 *)(skb->data + csum_offs) = csum_fold(csum);
2352
2353 skb->ip_summed = CHECKSUM_UNNECESSARY;
2354 }
2355
2356 if (skb_is_nonlinear(skb) &&
2357 skb_shinfo(skb)->nr_frags > IWL_PCIE_MAX_FRAGS(trans_pcie) &&
2358 __skb_linearize(skb))
2359 return -ENOMEM;
2360
2361
2362
2363
2364 hdr = (struct ieee80211_hdr *)skb->data;
2365 fc = hdr->frame_control;
2366 hdr_len = ieee80211_hdrlen(fc);
2367
2368 spin_lock(&txq->lock);
2369
2370 if (iwl_queue_space(trans, txq) < txq->high_mark) {
2371 iwl_stop_queue(trans, txq);
2372
2373
2374 if (unlikely(iwl_queue_space(trans, txq) < 3)) {
2375 struct iwl_device_tx_cmd **dev_cmd_ptr;
2376
2377 dev_cmd_ptr = (void *)((u8 *)skb->cb +
2378 trans_pcie->dev_cmd_offs);
2379
2380 *dev_cmd_ptr = dev_cmd;
2381 __skb_queue_tail(&txq->overflow_q, skb);
2382
2383 spin_unlock(&txq->lock);
2384 return 0;
2385 }
2386 }
2387
2388
2389
2390
2391
2392
2393 wifi_seq = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
2394 WARN_ONCE(txq->ampdu &&
2395 (wifi_seq & 0xff) != txq->write_ptr,
2396 "Q: %d WiFi Seq %d tfdNum %d",
2397 txq_id, wifi_seq, txq->write_ptr);
2398
2399
2400 txq->entries[txq->write_ptr].skb = skb;
2401 txq->entries[txq->write_ptr].cmd = dev_cmd;
2402
2403 dev_cmd->hdr.sequence =
2404 cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
2405 INDEX_TO_SEQ(txq->write_ptr)));
2406
2407 tb0_phys = iwl_pcie_get_first_tb_dma(txq, txq->write_ptr);
2408 scratch_phys = tb0_phys + sizeof(struct iwl_cmd_header) +
2409 offsetof(struct iwl_tx_cmd, scratch);
2410
2411 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
2412 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
2413
2414
2415 out_meta = &txq->entries[txq->write_ptr].meta;
2416 out_meta->flags = 0;
2417
2418
2419
2420
2421
2422
2423
2424 len = sizeof(struct iwl_tx_cmd) + sizeof(struct iwl_cmd_header) +
2425 hdr_len - IWL_FIRST_TB_SIZE;
2426
2427 amsdu = ieee80211_is_data_qos(fc) &&
2428 (*ieee80211_get_qos_ctl(hdr) &
2429 IEEE80211_QOS_CTL_A_MSDU_PRESENT);
2430 if (trans_pcie->sw_csum_tx || !amsdu) {
2431 tb1_len = ALIGN(len, 4);
2432
2433 if (tb1_len != len)
2434 tx_cmd->tx_flags |= cpu_to_le32(TX_CMD_FLG_MH_PAD);
2435 } else {
2436 tb1_len = len;
2437 }
2438
2439
2440
2441
2442
2443 iwl_pcie_txq_build_tfd(trans, txq, tb0_phys,
2444 IWL_FIRST_TB_SIZE, true);
2445
2446
2447 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd) < IWL_FIRST_TB_SIZE);
2448
2449
2450 tb1_addr = ((u8 *)&dev_cmd->hdr) + IWL_FIRST_TB_SIZE;
2451 tb1_phys = dma_map_single(trans->dev, tb1_addr, tb1_len, DMA_TO_DEVICE);
2452 if (unlikely(dma_mapping_error(trans->dev, tb1_phys)))
2453 goto out_err;
2454 iwl_pcie_txq_build_tfd(trans, txq, tb1_phys, tb1_len, false);
2455
2456 trace_iwlwifi_dev_tx(trans->dev, skb,
2457 iwl_pcie_get_tfd(trans, txq,
2458 txq->write_ptr),
2459 trans_pcie->tfd_size,
2460 &dev_cmd->hdr, IWL_FIRST_TB_SIZE + tb1_len,
2461 hdr_len);
2462
2463
2464
2465
2466
2467
2468
2469 if (amsdu && skb_shinfo(skb)->gso_size) {
2470 if (unlikely(iwl_fill_data_tbs_amsdu(trans, skb, txq, hdr_len,
2471 out_meta, dev_cmd,
2472 tb1_len)))
2473 goto out_err;
2474 } else {
2475 struct sk_buff *frag;
2476
2477 if (unlikely(iwl_fill_data_tbs(trans, skb, txq, hdr_len,
2478 out_meta)))
2479 goto out_err;
2480
2481 skb_walk_frags(skb, frag) {
2482 if (unlikely(iwl_fill_data_tbs(trans, frag, txq, 0,
2483 out_meta)))
2484 goto out_err;
2485 }
2486 }
2487
2488
2489 memcpy(&txq->first_tb_bufs[txq->write_ptr], dev_cmd, IWL_FIRST_TB_SIZE);
2490
2491 tfd = iwl_pcie_get_tfd(trans, txq, txq->write_ptr);
2492
2493 iwl_pcie_txq_update_byte_cnt_tbl(trans, txq, le16_to_cpu(tx_cmd->len),
2494 iwl_pcie_tfd_get_num_tbs(trans, tfd));
2495
2496 wait_write_ptr = ieee80211_has_morefrags(fc);
2497
2498
2499 if (txq->read_ptr == txq->write_ptr && txq->wd_timeout) {
2500
2501
2502
2503
2504
2505
2506 if (!txq->frozen)
2507 mod_timer(&txq->stuck_timer,
2508 jiffies + txq->wd_timeout);
2509 else
2510 txq->frozen_expiry_remainder = txq->wd_timeout;
2511 }
2512
2513
2514 txq->write_ptr = iwl_queue_inc_wrap(trans, txq->write_ptr);
2515 if (!wait_write_ptr)
2516 iwl_pcie_txq_inc_wr_ptr(trans, txq);
2517
2518
2519
2520
2521
2522 spin_unlock(&txq->lock);
2523 return 0;
2524out_err:
2525 iwl_pcie_tfd_unmap(trans, out_meta, txq, txq->write_ptr);
2526 spin_unlock(&txq->lock);
2527 return -1;
2528}
2529