treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / net / wireless / intel / iwlwifi / pcie / tx.c
blob2f69a6469fe7506387f555516b80dd2f75b28981
1 /******************************************************************************
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
6 * GPL LICENSE SUMMARY
8 * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
11 * Copyright(c) 2018 - 2019 Intel Corporation
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of version 2 of the GNU General Public License as
15 * published by the Free Software Foundation.
17 * This program is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
20 * more details.
22 * The full GNU General Public License is included in this distribution in the
23 * file called COPYING.
25 * Contact Information:
26 * Intel Linux Wireless <linuxwifi@intel.com>
27 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
29 * BSD LICENSE
31 * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
32 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
33 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
34 * Copyright(c) 2018 - 2019 Intel Corporation
35 * All rights reserved.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
39 * are met:
41 * * Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * * Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in
45 * the documentation and/or other materials provided with the
46 * distribution.
47 * * Neither the name Intel Corporation nor the names of its
48 * contributors may be used to endorse or promote products derived
49 * from this software without specific prior written permission.
51 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
52 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
53 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
54 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
55 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
56 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
57 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
59 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
60 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
61 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
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>
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"
80 #define IWL_TX_CRC_SIZE 4
81 #define IWL_TX_DELIMITER_SIZE 4
83 /*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
84 * DMA services
86 * Theory of operation
88 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
89 * of buffer descriptors, each of which points to one or more data buffers for
90 * the device to read from or fill. Driver and device exchange status of each
91 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
92 * entries in each circular buffer, to protect against confusing empty and full
93 * queue states.
95 * The device reads or writes the data in the queues via the device's several
96 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
98 * For Tx queue, there are low mark and high mark limits. If, after queuing
99 * the packet for Tx, free space become < low mark, Tx queue stopped. When
100 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
101 * Tx queue resumed.
103 ***************************************************/
105 int iwl_queue_space(struct iwl_trans *trans, const struct iwl_txq *q)
107 unsigned int max;
108 unsigned int used;
111 * To avoid ambiguity between empty and completely full queues, there
112 * should always be less than max_tfd_queue_size elements in the queue.
113 * If q->n_window is smaller than max_tfd_queue_size, there is no need
114 * to reserve any queue entries for this purpose.
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;
122 * max_tfd_queue_size is a power of 2, so the following is equivalent to
123 * modulo by max_tfd_queue_size and is well defined.
125 used = (q->write_ptr - q->read_ptr) &
126 (trans->trans_cfg->base_params->max_tfd_queue_size - 1);
128 if (WARN_ON(used > max))
129 return 0;
131 return max - used;
135 * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
137 static int iwl_queue_init(struct iwl_txq *q, int slots_num)
139 q->n_window = slots_num;
141 /* slots_num must be power-of-two size, otherwise
142 * iwl_pcie_get_cmd_index is broken. */
143 if (WARN_ON(!is_power_of_2(slots_num)))
144 return -EINVAL;
146 q->low_mark = q->n_window / 4;
147 if (q->low_mark < 4)
148 q->low_mark = 4;
150 q->high_mark = q->n_window / 8;
151 if (q->high_mark < 2)
152 q->high_mark = 2;
154 q->write_ptr = 0;
155 q->read_ptr = 0;
157 return 0;
160 int iwl_pcie_alloc_dma_ptr(struct iwl_trans *trans,
161 struct iwl_dma_ptr *ptr, size_t size)
163 if (WARN_ON(ptr->addr))
164 return -EINVAL;
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;
174 void iwl_pcie_free_dma_ptr(struct iwl_trans *trans, struct iwl_dma_ptr *ptr)
176 if (unlikely(!ptr->addr))
177 return;
179 dma_free_coherent(trans->dev, ptr->size, ptr->addr, ptr->dma);
180 memset(ptr, 0, sizeof(*ptr));
183 static void iwl_pcie_txq_stuck_timer(struct timer_list *t)
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);
189 spin_lock(&txq->lock);
190 /* check if triggered erroneously */
191 if (txq->read_ptr == txq->write_ptr) {
192 spin_unlock(&txq->lock);
193 return;
195 spin_unlock(&txq->lock);
197 iwl_trans_pcie_log_scd_error(trans, txq);
199 iwl_force_nmi(trans);
203 * iwl_pcie_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
205 static void iwl_pcie_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
206 struct iwl_txq *txq, u16 byte_cnt,
207 int num_tbs)
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;
220 scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
222 sec_ctl = tx_cmd->sec_ctl;
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;
235 if (trans_pcie->bc_table_dword)
236 len = DIV_ROUND_UP(len, 4);
238 if (WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX))
239 return;
241 bc_ent = cpu_to_le16(len | (sta_id << 12));
243 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
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;
250 static void iwl_pcie_txq_inval_byte_cnt_tbl(struct iwl_trans *trans,
251 struct iwl_txq *txq)
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;
263 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
265 if (txq_id != trans_pcie->cmd_queue)
266 sta_id = tx_cmd->sta_id;
268 bc_ent = cpu_to_le16(1 | (sta_id << 12));
270 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
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;
278 * iwl_pcie_txq_inc_wr_ptr - Send new write index to hardware
280 static void iwl_pcie_txq_inc_wr_ptr(struct iwl_trans *trans,
281 struct iwl_txq *txq)
283 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
284 u32 reg = 0;
285 int txq_id = txq->id;
287 lockdep_assert_held(&txq->lock);
290 * explicitly wake up the NIC if:
291 * 1. shadow registers aren't enabled
292 * 2. NIC is woken up for CMD regardless of shadow outside this function
293 * 3. there is a chance that the NIC is asleep
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)) {
299 * wake up nic if it's powered down ...
300 * uCode will wake up, and interrupt us again, so next
301 * time we'll skip this part.
303 reg = iwl_read32(trans, CSR_UCODE_DRV_GP1);
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 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
310 txq->need_update = true;
311 return;
316 * if not in power-save mode, uCode will never sleep when we're
317 * trying to tx (during RFKILL, we're not trying to tx).
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));
325 void iwl_pcie_txq_check_wrptrs(struct iwl_trans *trans)
327 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
328 int i;
330 for (i = 0; i < trans->trans_cfg->base_params->num_of_queues; i++) {
331 struct iwl_txq *txq = trans_pcie->txq[i];
333 if (!test_bit(i, trans_pcie->queue_used))
334 continue;
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;
341 spin_unlock_bh(&txq->lock);
345 static inline dma_addr_t iwl_pcie_tfd_tb_get_addr(struct iwl_trans *trans,
346 void *_tfd, u8 idx)
349 if (trans->trans_cfg->use_tfh) {
350 struct iwl_tfh_tfd *tfd = _tfd;
351 struct iwl_tfh_tb *tb = &tfd->tbs[idx];
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;
360 if (sizeof(dma_addr_t) <= sizeof(u32))
361 return addr;
363 hi_len = le16_to_cpu(tb->hi_n_len) & 0xF;
366 * shift by 16 twice to avoid warnings on 32-bit
367 * (where this code never runs anyway due to the
368 * if statement above)
370 return addr | ((hi_len << 16) << 16);
374 static inline void iwl_pcie_tfd_set_tb(struct iwl_trans *trans, void *tfd,
375 u8 idx, dma_addr_t addr, u16 len)
377 struct iwl_tfd *tfd_fh = (void *)tfd;
378 struct iwl_tfd_tb *tb = &tfd_fh->tbs[idx];
380 u16 hi_n_len = len << 4;
382 put_unaligned_le32(addr, &tb->lo);
383 hi_n_len |= iwl_get_dma_hi_addr(addr);
385 tb->hi_n_len = cpu_to_le16(hi_n_len);
387 tfd_fh->num_tbs = idx + 1;
390 static inline u8 iwl_pcie_tfd_get_num_tbs(struct iwl_trans *trans, void *_tfd)
392 if (trans->trans_cfg->use_tfh) {
393 struct iwl_tfh_tfd *tfd = _tfd;
395 return le16_to_cpu(tfd->num_tbs) & 0x1f;
396 } else {
397 struct iwl_tfd *tfd = _tfd;
399 return tfd->num_tbs & 0x1f;
403 static void iwl_pcie_tfd_unmap(struct iwl_trans *trans,
404 struct iwl_cmd_meta *meta,
405 struct iwl_txq *txq, int index)
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);
411 /* Sanity check on number of chunks */
412 num_tbs = iwl_pcie_tfd_get_num_tbs(trans, tfd);
414 if (num_tbs > trans_pcie->max_tbs) {
415 IWL_ERR(trans, "Too many chunks: %i\n", num_tbs);
416 /* @todo issue fatal error, it is quite serious situation */
417 return;
420 /* first TB is never freed - it's the bidirectional DMA data */
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,
432 iwl_pcie_tfd_tb_get_len(trans, tfd,
434 DMA_TO_DEVICE);
437 meta->tbs = 0;
439 if (trans->trans_cfg->use_tfh) {
440 struct iwl_tfh_tfd *tfd_fh = (void *)tfd;
442 tfd_fh->num_tbs = 0;
443 } else {
444 struct iwl_tfd *tfd_fh = (void *)tfd;
446 tfd_fh->num_tbs = 0;
452 * iwl_pcie_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
453 * @trans - transport private data
454 * @txq - tx queue
455 * @dma_dir - the direction of the DMA mapping
457 * Does NOT advance any TFD circular buffer read/write indexes
458 * Does NOT free the TFD itself (which is within circular buffer)
460 void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq)
462 /* rd_ptr is bounded by TFD_QUEUE_SIZE_MAX and
463 * idx is bounded by n_window
465 int rd_ptr = txq->read_ptr;
466 int idx = iwl_pcie_get_cmd_index(txq, rd_ptr);
468 lockdep_assert_held(&txq->lock);
470 /* We have only q->n_window txq->entries, but we use
471 * TFD_QUEUE_SIZE_MAX tfds
473 iwl_pcie_tfd_unmap(trans, &txq->entries[idx].meta, txq, rd_ptr);
475 /* free SKB */
476 if (txq->entries) {
477 struct sk_buff *skb;
479 skb = txq->entries[idx].skb;
481 /* Can be called from irqs-disabled context
482 * If skb is not NULL, it means that the whole queue is being
483 * freed and that the queue is not empty - free the skb
485 if (skb) {
486 iwl_op_mode_free_skb(trans->op_mode, skb);
487 txq->entries[idx].skb = NULL;
492 static int iwl_pcie_txq_build_tfd(struct iwl_trans *trans, struct iwl_txq *txq,
493 dma_addr_t addr, u16 len, bool reset)
495 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
496 void *tfd;
497 u32 num_tbs;
499 tfd = txq->tfds + trans_pcie->tfd_size * txq->write_ptr;
501 if (reset)
502 memset(tfd, 0, trans_pcie->tfd_size);
504 num_tbs = iwl_pcie_tfd_get_num_tbs(trans, tfd);
506 /* Each TFD can point to a maximum max_tbs Tx buffers */
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;
513 if (WARN(addr & ~IWL_TX_DMA_MASK,
514 "Unaligned address = %llx\n", (unsigned long long)addr))
515 return -EINVAL;
517 iwl_pcie_tfd_set_tb(trans, tfd, num_tbs, addr, len);
519 return num_tbs;
522 int iwl_pcie_txq_alloc(struct iwl_trans *trans, struct iwl_txq *txq,
523 int slots_num, bool cmd_queue)
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;
531 if (WARN_ON(txq->entries || txq->tfds))
532 return -EINVAL;
534 if (trans->trans_cfg->use_tfh)
535 tfd_sz = trans_pcie->tfd_size * slots_num;
537 timer_setup(&txq->stuck_timer, iwl_pcie_txq_stuck_timer, 0);
538 txq->trans_pcie = trans_pcie;
540 txq->n_window = slots_num;
542 txq->entries = kcalloc(slots_num,
543 sizeof(struct iwl_pcie_txq_entry),
544 GFP_KERNEL);
546 if (!txq->entries)
547 goto error;
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;
558 /* Circular buffer of transmit frame descriptors (TFDs),
559 * shared with device */
560 txq->tfds = dma_alloc_coherent(trans->dev, tfd_sz,
561 &txq->dma_addr, GFP_KERNEL);
562 if (!txq->tfds)
563 goto error;
565 BUILD_BUG_ON(IWL_FIRST_TB_SIZE_ALIGN != sizeof(*txq->first_tb_bufs));
567 tb0_buf_sz = sizeof(*txq->first_tb_bufs) * slots_num;
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;
575 return 0;
576 err_free_tfds:
577 dma_free_coherent(trans->dev, tfd_sz, txq->tfds, txq->dma_addr);
578 error:
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;
585 return -ENOMEM;
589 int iwl_pcie_txq_init(struct iwl_trans *trans, struct iwl_txq *txq,
590 int slots_num, bool cmd_queue)
592 int ret;
593 u32 tfd_queue_max_size =
594 trans->trans_cfg->base_params->max_tfd_queue_size;
596 txq->need_update = false;
598 /* max_tfd_queue_size must be power-of-two size, otherwise
599 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
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;
605 /* Initialize queue's high/low-water marks, and head/tail indexes */
606 ret = iwl_queue_init(txq, slots_num);
607 if (ret)
608 return ret;
610 spin_lock_init(&txq->lock);
612 if (cmd_queue) {
613 static struct lock_class_key iwl_pcie_cmd_queue_lock_class;
615 lockdep_set_class(&txq->lock, &iwl_pcie_cmd_queue_lock_class);
618 __skb_queue_head_init(&txq->overflow_q);
620 return 0;
623 void iwl_pcie_free_tso_page(struct iwl_trans_pcie *trans_pcie,
624 struct sk_buff *skb)
626 struct page **page_ptr;
627 struct page *next;
629 page_ptr = (void *)((u8 *)skb->cb + trans_pcie->page_offs);
630 next = *page_ptr;
631 *page_ptr = NULL;
633 while (next) {
634 struct page *tmp = next;
636 next = *(void **)(page_address(next) + PAGE_SIZE -
637 sizeof(void *));
638 __free_page(tmp);
642 static void iwl_pcie_clear_cmd_in_flight(struct iwl_trans *trans)
644 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
646 lockdep_assert_held(&trans_pcie->reg_lock);
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;
653 trans_pcie->cmd_hold_nic_awake = false;
654 __iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
655 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
659 * iwl_pcie_txq_unmap - Unmap any remaining DMA mappings and free skb's
661 static void iwl_pcie_txq_unmap(struct iwl_trans *trans, int txq_id)
663 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
664 struct iwl_txq *txq = trans_pcie->txq[txq_id];
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);
671 if (txq_id != trans_pcie->cmd_queue) {
672 struct sk_buff *skb = txq->entries[txq->read_ptr].skb;
674 if (WARN_ON_ONCE(!skb))
675 continue;
677 iwl_pcie_free_tso_page(trans_pcie, skb);
679 iwl_pcie_txq_free_tfd(trans, txq);
680 txq->read_ptr = iwl_queue_inc_wrap(trans, txq->read_ptr);
682 if (txq->read_ptr == txq->write_ptr) {
683 unsigned long flags;
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);
692 while (!skb_queue_empty(&txq->overflow_q)) {
693 struct sk_buff *skb = __skb_dequeue(&txq->overflow_q);
695 iwl_op_mode_free_skb(trans->op_mode, skb);
698 spin_unlock_bh(&txq->lock);
700 /* just in case - this queue may have been stopped */
701 iwl_wake_queue(trans, txq);
705 * iwl_pcie_txq_free - Deallocate DMA queue.
706 * @txq: Transmit queue to deallocate.
708 * Empty queue by removing and destroying all BD's.
709 * Free all buffers.
710 * 0-fill, but do not free "txq" descriptor structure.
712 static void iwl_pcie_txq_free(struct iwl_trans *trans, int txq_id)
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;
719 if (WARN_ON(!txq))
720 return;
722 iwl_pcie_txq_unmap(trans, txq_id);
724 /* De-alloc array of command/tx buffers */
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);
731 /* De-alloc circular buffer of TFDs */
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;
740 dma_free_coherent(dev,
741 sizeof(*txq->first_tb_bufs) * txq->n_window,
742 txq->first_tb_bufs, txq->first_tb_dma);
745 kfree(txq->entries);
746 txq->entries = NULL;
748 del_timer_sync(&txq->stuck_timer);
750 /* 0-fill queue descriptor structure */
751 memset(txq, 0, sizeof(*txq));
754 void iwl_pcie_tx_start(struct iwl_trans *trans, u32 scd_base_addr)
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);
763 /* make sure all queue are not stopped/used */
764 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
765 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
767 trans_pcie->scd_base_addr =
768 iwl_read_prph(trans, SCD_SRAM_BASE_ADDR);
770 WARN_ON(scd_base_addr != 0 &&
771 scd_base_addr != trans_pcie->scd_base_addr);
773 /* reset context data, TX status and translation data */
774 iwl_trans_write_mem(trans, trans_pcie->scd_base_addr +
775 SCD_CONTEXT_MEM_LOWER_BOUND,
776 NULL, clear_dwords);
778 iwl_write_prph(trans, SCD_DRAM_BASE_ADDR,
779 trans_pcie->scd_bc_tbls.dma >> 10);
781 /* The chain extension of the SCD doesn't work well. This feature is
782 * enabled by default by the HW, so we need to disable it manually.
784 if (trans->trans_cfg->base_params->scd_chain_ext_wa)
785 iwl_write_prph(trans, SCD_CHAINEXT_EN, 0);
787 iwl_trans_ac_txq_enable(trans, trans_pcie->cmd_queue,
788 trans_pcie->cmd_fifo,
789 trans_pcie->cmd_q_wdg_timeout);
791 /* Activate all Tx DMA/FIFO channels */
792 iwl_scd_activate_fifos(trans);
794 /* Enable DMA channel */
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);
800 /* Update FH chicken bits */
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);
805 /* Enable L1-Active */
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);
811 void iwl_trans_pcie_tx_reset(struct iwl_trans *trans)
813 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
814 int txq_id;
817 * we should never get here in gen2 trans mode return early to avoid
818 * having invalid accesses
820 if (WARN_ON_ONCE(trans->trans_cfg->gen2))
821 return;
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;
839 /* Tell NIC where to find the "keep warm" buffer */
840 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
841 trans_pcie->kw.dma >> 4);
844 * Send 0 as the scd_base_addr since the device may have be reset
845 * while we were in WoWLAN in which case SCD_SRAM_BASE_ADDR will
846 * contain garbage.
848 iwl_pcie_tx_start(trans, 0);
851 static void iwl_pcie_tx_stop_fh(struct iwl_trans *trans)
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;
858 spin_lock(&trans_pcie->irq_lock);
860 if (!iwl_trans_grab_nic_access(trans, &flags))
861 goto out;
863 /* Stop each Tx DMA channel */
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);
869 /* Wait for DMA channels to be idle */
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));
876 iwl_trans_release_nic_access(trans, &flags);
878 out:
879 spin_unlock(&trans_pcie->irq_lock);
883 * iwl_pcie_tx_stop - Stop all Tx DMA channels
885 int iwl_pcie_tx_stop(struct iwl_trans *trans)
887 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
888 int txq_id;
890 /* Turn off all Tx DMA fifos */
891 iwl_scd_deactivate_fifos(trans);
893 /* Turn off all Tx DMA channels */
894 iwl_pcie_tx_stop_fh(trans);
897 * This function can be called before the op_mode disabled the
898 * queues. This happens when we have an rfkill interrupt.
899 * Since we stop Tx altogether - mark the queues as stopped.
901 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
902 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
904 /* This can happen: start_hw, stop_device */
905 if (!trans_pcie->txq_memory)
906 return 0;
908 /* Unmap DMA from host system and free skb's */
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);
913 return 0;
917 * iwl_trans_tx_free - Free TXQ Context
919 * Destroy all TX DMA queues and structures
921 void iwl_pcie_tx_free(struct iwl_trans *trans)
923 int txq_id;
924 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
926 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
928 /* Tx queues */
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;
938 kfree(trans_pcie->txq_memory);
939 trans_pcie->txq_memory = NULL;
941 iwl_pcie_free_dma_ptr(trans, &trans_pcie->kw);
943 iwl_pcie_free_dma_ptr(trans, &trans_pcie->scd_bc_tbls);
947 * iwl_pcie_tx_alloc - allocate TX context
948 * Allocate all Tx DMA structures and initialize them
950 static int iwl_pcie_tx_alloc(struct iwl_trans *trans)
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;
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);
962 /*It is not allowed to alloc twice, so warn when this happens.
963 * We cannot rely on the previous allocation, so free and fail */
964 if (WARN_ON(trans_pcie->txq_memory)) {
965 ret = -EINVAL;
966 goto error;
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;
976 /* Alloc keep-warm buffer */
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;
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;
992 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
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);
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;
1010 trans_pcie->txq[txq_id]->id = txq_id;
1013 return 0;
1015 error:
1016 iwl_pcie_tx_free(trans);
1018 return ret;
1021 int iwl_pcie_tx_init(struct iwl_trans *trans)
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;
1028 if (!trans_pcie->txq_memory) {
1029 ret = iwl_pcie_tx_alloc(trans);
1030 if (ret)
1031 goto error;
1032 alloc = true;
1035 spin_lock(&trans_pcie->irq_lock);
1037 /* Turn off all Tx DMA fifos */
1038 iwl_scd_deactivate_fifos(trans);
1040 /* Tell NIC where to find the "keep warm" buffer */
1041 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
1042 trans_pcie->kw.dma >> 4);
1044 spin_unlock(&trans_pcie->irq_lock);
1046 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
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);
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;
1065 * Tell nic where to find circular buffer of TFDs for a
1066 * given Tx queue, and enable the DMA channel used for that
1067 * queue.
1068 * Circular buffer (TFD queue in DRAM) physical base address
1070 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(trans, txq_id),
1071 trans_pcie->txq[txq_id]->dma_addr >> 8);
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);
1079 return 0;
1080 error:
1081 /*Upon error, free only if we allocated something */
1082 if (alloc)
1083 iwl_pcie_tx_free(trans);
1084 return ret;
1087 static inline void iwl_pcie_txq_progress(struct iwl_txq *txq)
1089 lockdep_assert_held(&txq->lock);
1091 if (!txq->wd_timeout)
1092 return;
1095 * station is asleep and we send data - that must
1096 * be uAPSD or PS-Poll. Don't rearm the timer.
1098 if (txq->frozen)
1099 return;
1102 * if empty delete timer, otherwise move timer forward
1103 * since we're making progress on this queue
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);
1111 /* Frees buffers until index _not_ inclusive */
1112 void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,
1113 struct sk_buff_head *skbs)
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;
1121 /* This function is not meant to release cmd queue*/
1122 if (WARN_ON(txq_id == trans_pcie->cmd_queue))
1123 return;
1125 spin_lock_bh(&txq->lock);
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;
1133 if (read_ptr == tfd_num)
1134 goto out;
1136 IWL_DEBUG_TX_REPLY(trans, "[Q %d] %d -> %d (%d)\n",
1137 txq_id, txq->read_ptr, tfd_num, ssn);
1139 /*Since we free until index _not_ inclusive, the one before index is
1140 * the last we will free. This one must be used */
1141 last_to_free = iwl_queue_dec_wrap(trans, tfd_num);
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;
1152 if (WARN_ON(!skb_queue_empty(skbs)))
1153 goto out;
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;
1161 if (WARN_ON_ONCE(!skb))
1162 continue;
1164 iwl_pcie_free_tso_page(trans_pcie, skb);
1166 __skb_queue_tail(skbs, skb);
1168 txq->entries[read_ptr].skb = NULL;
1170 if (!trans->trans_cfg->use_tfh)
1171 iwl_pcie_txq_inval_byte_cnt_tbl(trans, txq);
1173 iwl_pcie_txq_free_tfd(trans, txq);
1176 iwl_pcie_txq_progress(txq);
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;
1182 __skb_queue_head_init(&overflow_skbs);
1183 skb_queue_splice_init(&txq->overflow_q, &overflow_skbs);
1186 * We are going to transmit from the overflow queue.
1187 * Remember this state so that wait_for_txq_empty will know we
1188 * are adding more packets to the TFD queue. It cannot rely on
1189 * the state of &txq->overflow_q, as we just emptied it, but
1190 * haven't TXed the content yet.
1192 txq->overflow_tx = true;
1195 * This is tricky: we are in reclaim path which is non
1196 * re-entrant, so noone will try to take the access the
1197 * txq data from that path. We stopped tx, so we can't
1198 * have tx as well. Bottom line, we can unlock and re-lock
1199 * later.
1201 spin_unlock_bh(&txq->lock);
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;
1207 dev_cmd_ptr = *(void **)((u8 *)skb->cb +
1208 trans_pcie->dev_cmd_offs);
1211 * Note that we can very well be overflowing again.
1212 * In that case, iwl_queue_space will be small again
1213 * and we won't wake mac80211's queue.
1215 iwl_trans_tx(trans, skb, dev_cmd_ptr, txq_id);
1218 if (iwl_queue_space(trans, txq) > txq->low_mark)
1219 iwl_wake_queue(trans, txq);
1221 spin_lock_bh(&txq->lock);
1222 txq->overflow_tx = false;
1225 out:
1226 spin_unlock_bh(&txq->lock);
1229 /* Set wr_ptr of specific device and txq */
1230 void iwl_trans_pcie_set_q_ptrs(struct iwl_trans *trans, int txq_id, int ptr)
1232 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1233 struct iwl_txq *txq = trans_pcie->txq[txq_id];
1235 spin_lock_bh(&txq->lock);
1237 txq->write_ptr = ptr;
1238 txq->read_ptr = txq->write_ptr;
1240 spin_unlock_bh(&txq->lock);
1243 static int iwl_pcie_set_cmd_in_flight(struct iwl_trans *trans,
1244 const struct iwl_host_cmd *cmd)
1246 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1247 int ret;
1249 lockdep_assert_held(&trans_pcie->reg_lock);
1251 /* Make sure the NIC is still alive in the bus */
1252 if (test_bit(STATUS_TRANS_DEAD, &trans->status))
1253 return -ENODEV;
1256 * wake up the NIC to make sure that the firmware will see the host
1257 * command - we will let the NIC sleep once all the host commands
1258 * returned. This needs to be done only on NICs that have
1259 * apmg_wake_up_wa set.
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 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1266 ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
1267 CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN,
1268 (CSR_GP_CNTRL_REG_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 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1274 IWL_ERR(trans, "Failed to wake NIC for hcmd\n");
1275 return -EIO;
1277 trans_pcie->cmd_hold_nic_awake = true;
1280 return 0;
1284 * iwl_pcie_cmdq_reclaim - Reclaim TX command queue entries already Tx'd
1286 * When FW advances 'R' index, all entries between old and new 'R' index
1287 * need to be reclaimed. As result, some free space forms. If there is
1288 * enough free space (> low mark), wake the stack that feeds us.
1290 void iwl_pcie_cmdq_reclaim(struct iwl_trans *trans, int txq_id, int idx)
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;
1298 lockdep_assert_held(&txq->lock);
1300 idx = iwl_pcie_get_cmd_index(txq, idx);
1301 r = iwl_pcie_get_cmd_index(txq, txq->read_ptr);
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;
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);
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);
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);
1330 iwl_pcie_txq_progress(txq);
1333 static int iwl_pcie_txq_set_ratid_map(struct iwl_trans *trans, u16 ra_tid,
1334 u16 txq_id)
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;
1341 scd_q2ratid = ra_tid & SCD_QUEUE_RA_TID_MAP_RATID_MSK;
1343 tbl_dw_addr = trans_pcie->scd_base_addr +
1344 SCD_TRANS_TBL_OFFSET_QUEUE(txq_id);
1346 tbl_dw = iwl_trans_read_mem32(trans, tbl_dw_addr);
1348 if (txq_id & 0x1)
1349 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
1350 else
1351 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
1353 iwl_trans_write_mem32(trans, tbl_dw_addr, tbl_dw);
1355 return 0;
1358 /* Receiver address (actually, Rx station's index into station table),
1359 * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */
1360 #define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
1362 bool 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)
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;
1371 if (test_and_set_bit(txq_id, trans_pcie->queue_used))
1372 WARN_ONCE(1, "queue %d already used - expect issues", txq_id);
1374 txq->wd_timeout = msecs_to_jiffies(wdg_timeout);
1376 if (cfg) {
1377 fifo = cfg->fifo;
1379 /* Disable the scheduler prior configuring the cmd queue */
1380 if (txq_id == trans_pcie->cmd_queue &&
1381 trans_pcie->scd_set_active)
1382 iwl_scd_enable_set_active(trans, 0);
1384 /* Stop this Tx queue before configuring it */
1385 iwl_scd_txq_set_inactive(trans, txq_id);
1387 /* Set this queue as a chain-building queue unless it is CMD */
1388 if (txq_id != trans_pcie->cmd_queue)
1389 iwl_scd_txq_set_chain(trans, txq_id);
1391 if (cfg->aggregate) {
1392 u16 ra_tid = BUILD_RAxTID(cfg->sta_id, cfg->tid);
1394 /* Map receiver-address / traffic-ID to this queue */
1395 iwl_pcie_txq_set_ratid_map(trans, ra_tid, txq_id);
1397 /* enable aggregations for the queue */
1398 iwl_scd_txq_enable_agg(trans, txq_id);
1399 txq->ampdu = true;
1400 } else {
1402 * disable aggregations for the queue, this will also
1403 * make the ra_tid mapping configuration irrelevant
1404 * since it is now a non-AGG queue.
1406 iwl_scd_txq_disable_agg(trans, txq_id);
1408 ssn = txq->read_ptr;
1410 } else {
1412 * If we need to move the SCD write pointer by steps of
1413 * 0x40, 0x80 or 0xc0, it gets stuck. Avoids this and let
1414 * the op_mode know by returning true later.
1415 * Do this only in case cfg is NULL since this trick can
1416 * be done only if we have DQA enabled which is true for mvm
1417 * only. And mvm never sets a cfg pointer.
1418 * This is really ugly, but this is the easiest way out for
1419 * this sad hardware issue.
1420 * This bug has been fixed on devices 9000 and up.
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++;
1429 /* Place first TFD at index corresponding to start sequence number.
1430 * Assumes that ssn_idx is valid (!= 0xFFF) */
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));
1436 if (cfg) {
1437 u8 frame_limit = cfg->frame_limit;
1439 iwl_write_prph(trans, SCD_QUEUE_RDPTR(txq_id), ssn);
1441 /* Set up Tx window size and frame limit for this queue */
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));
1450 /* Set up status area in SRAM, map to Tx DMA/FIFO, activate */
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);
1457 /* enable the scheduler for this queue (only) */
1458 if (txq_id == trans_pcie->cmd_queue &&
1459 trans_pcie->scd_set_active)
1460 iwl_scd_enable_set_active(trans, BIT(txq_id));
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);
1471 return scd_bug;
1474 void iwl_trans_pcie_txq_set_shared_mode(struct iwl_trans *trans, u32 txq_id,
1475 bool shared_mode)
1477 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1478 struct iwl_txq *txq = trans_pcie->txq[txq_id];
1480 txq->ampdu = !shared_mode;
1483 void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int txq_id,
1484 bool configure_scd)
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] = {};
1491 trans_pcie->txq[txq_id]->frozen_expiry_remainder = 0;
1492 trans_pcie->txq[txq_id]->frozen = false;
1495 * Upon HW Rfkill - we stop the device, and then stop the queues
1496 * in the op_mode. Just for the sake of the simplicity of the op_mode,
1497 * allow the op_mode to call txq_disable after it already called
1498 * stop_device.
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;
1506 if (configure_scd) {
1507 iwl_scd_txq_set_inactive(trans, txq_id);
1509 iwl_trans_write_mem(trans, stts_addr, (void *)zero_val,
1510 ARRAY_SIZE(zero_val));
1513 iwl_pcie_txq_unmap(trans, txq_id);
1514 trans_pcie->txq[txq_id]->ampdu = false;
1516 IWL_DEBUG_TX_QUEUES(trans, "Deactivate queue %d\n", txq_id);
1519 /*************** HOST COMMAND QUEUE FUNCTIONS *****/
1522 * iwl_pcie_enqueue_hcmd - enqueue a uCode command
1523 * @priv: device private data point
1524 * @cmd: a pointer to the ucode command structure
1526 * The function returns < 0 values to indicate the operation
1527 * failed. On success, it returns the index (>= 0) of command in the
1528 * command queue.
1530 static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,
1531 struct iwl_host_cmd *cmd)
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];
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;
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);
1562 /* need one for the header if the first is NOCOPY */
1563 BUILD_BUG_ON(IWL_MAX_CMD_TBS_PER_TFD > IWL_NUM_OF_TBS - 1);
1565 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
1566 cmddata[i] = cmd->data[i];
1567 cmdlen[i] = cmd->len[i];
1569 if (!cmd->len[i])
1570 continue;
1572 /* need at least IWL_FIRST_TB_SIZE copied */
1573 if (copy_size < IWL_FIRST_TB_SIZE) {
1574 int copy = IWL_FIRST_TB_SIZE - copy_size;
1576 if (copy > cmdlen[i])
1577 copy = cmdlen[i];
1578 cmdlen[i] -= copy;
1579 cmddata[i] += copy;
1580 copy_size += copy;
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;
1589 } else if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP) {
1591 * This is also a chunk that isn't copied
1592 * to the static buffer so set had_nocopy.
1594 had_nocopy = true;
1596 /* only allowed once */
1597 if (WARN_ON(dup_buf)) {
1598 idx = -EINVAL;
1599 goto free_dup_buf;
1602 dup_buf = kmemdup(cmddata[i], cmdlen[i],
1603 GFP_ATOMIC);
1604 if (!dup_buf)
1605 return -ENOMEM;
1606 } else {
1607 /* NOCOPY must not be followed by normal! */
1608 if (WARN_ON(had_nocopy)) {
1609 idx = -EINVAL;
1610 goto free_dup_buf;
1612 copy_size += cmdlen[i];
1614 cmd_size += cmd->len[i];
1618 * If any of the command structures end up being larger than
1619 * the TFD_MAX_PAYLOAD_SIZE and they aren't dynamically
1620 * allocated into separate TFDs, then we will need to
1621 * increase the size of the buffers.
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;
1631 spin_lock_bh(&txq->lock);
1633 if (iwl_queue_space(trans, txq) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
1634 spin_unlock_bh(&txq->lock);
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;
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;
1646 memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */
1647 if (cmd->flags & CMD_WANT_SKB)
1648 out_meta->source = cmd;
1650 /* set up the header */
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));
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;
1672 cmd_pos = sizeof(struct iwl_cmd_header);
1673 copy_size = sizeof(struct iwl_cmd_header);
1676 /* and copy the data that needs to be copied */
1677 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
1678 int copy;
1680 if (!cmd->len[i])
1681 continue;
1683 /* copy everything if not nocopy/dup */
1684 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1685 IWL_HCMD_DFL_DUP))) {
1686 copy = cmd->len[i];
1688 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1689 cmd_pos += copy;
1690 copy_size += copy;
1691 continue;
1695 * Otherwise we need at least IWL_FIRST_TB_SIZE copied
1696 * in total (for bi-directional DMA), but copy up to what
1697 * we can fit into the payload for debug dump purposes.
1699 copy = min_t(int, TFD_MAX_PAYLOAD_SIZE - cmd_pos, cmd->len[i]);
1701 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1702 cmd_pos += copy;
1704 /* However, treat copy_size the proper way, we need it below */
1705 if (copy_size < IWL_FIRST_TB_SIZE) {
1706 copy = IWL_FIRST_TB_SIZE - copy_size;
1708 if (copy > cmd->len[i])
1709 copy = cmd->len[i];
1710 copy_size += copy;
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);
1721 /* start the TFD with the minimum copy bytes */
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);
1728 /* map first command fragment, if any remains */
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;
1741 iwl_pcie_txq_build_tfd(trans, txq, phys_addr,
1742 copy_size - tb0_size, false);
1745 /* map the remaining (adjusted) nocopy/dup fragments */
1746 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
1747 const void *data = cmddata[i];
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;
1765 iwl_pcie_txq_build_tfd(trans, txq, phys_addr, cmdlen[i], false);
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;
1774 trace_iwlwifi_dev_hcmd(trans->dev, cmd, cmd_size, &out_cmd->hdr_wide);
1776 /* start timer if queue currently empty */
1777 if (txq->read_ptr == txq->write_ptr && txq->wd_timeout)
1778 mod_timer(&txq->stuck_timer, jiffies + txq->wd_timeout);
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;
1788 /* Increment and update queue's write index */
1789 txq->write_ptr = iwl_queue_inc_wrap(trans, txq->write_ptr);
1790 iwl_pcie_txq_inc_wr_ptr(trans, txq);
1792 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1794 out:
1795 spin_unlock_bh(&txq->lock);
1796 free_dup_buf:
1797 if (idx < 0)
1798 kfree(dup_buf);
1799 return idx;
1803 * iwl_pcie_hcmd_complete - Pull unused buffers off the queue and reclaim them
1804 * @rxb: Rx buffer to reclaim
1806 void iwl_pcie_hcmd_complete(struct iwl_trans *trans,
1807 struct iwl_rx_cmd_buffer *rxb)
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];
1821 /* If a Tx command is being handled and it isn't in the actual
1822 * command queue then there a command routing bug has been introduced
1823 * in the queue management code. */
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;
1832 spin_lock_bh(&txq->lock);
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);
1840 iwl_pcie_tfd_unmap(trans, meta, txq, index);
1842 /* Input error checking is done when commands are added to queue. */
1843 if (meta->flags & CMD_WANT_SKB) {
1844 struct page *p = rxb_steal_page(rxb);
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;
1851 if (meta->flags & CMD_WANT_ASYNC_CALLBACK)
1852 iwl_op_mode_async_cb(trans->op_mode, cmd);
1854 iwl_pcie_cmdq_reclaim(trans, txq_id, index);
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));
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);
1868 meta->flags = 0;
1870 spin_unlock_bh(&txq->lock);
1873 #define HOST_COMPLETE_TIMEOUT (2 * HZ)
1875 static int iwl_pcie_send_hcmd_async(struct iwl_trans *trans,
1876 struct iwl_host_cmd *cmd)
1878 int ret;
1880 /* An asynchronous command can not expect an SKB to be set. */
1881 if (WARN_ON(cmd->flags & CMD_WANT_SKB))
1882 return -EINVAL;
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;
1891 return 0;
1894 static int iwl_pcie_send_hcmd_sync(struct iwl_trans *trans,
1895 struct iwl_host_cmd *cmd)
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;
1902 IWL_DEBUG_INFO(trans, "Attempting to send sync command %s\n",
1903 iwl_get_cmd_string(trans, cmd->id));
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;
1911 IWL_DEBUG_INFO(trans, "Setting HCMD_ACTIVE for command %s\n",
1912 iwl_get_cmd_string(trans, cmd->id));
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;
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));
1933 IWL_ERR(trans, "Current CMD queue read_ptr %d write_ptr %d\n",
1934 txq->read_ptr, txq->write_ptr);
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;
1941 iwl_trans_pcie_sync_nmi(trans);
1942 goto cancel;
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;
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;
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;
1968 return 0;
1970 cancel:
1971 if (cmd->flags & CMD_WANT_SKB) {
1973 * Cancel the CMD_WANT_SKB flag for the cmd in the
1974 * TX cmd queue. Otherwise in case the cmd comes
1975 * in later, it will possibly set an invalid
1976 * address (cmd->meta.source).
1978 txq->entries[cmd_idx].meta.flags &= ~CMD_WANT_SKB;
1981 if (cmd->resp_pkt) {
1982 iwl_free_resp(cmd);
1983 cmd->resp_pkt = NULL;
1986 return ret;
1989 int iwl_trans_pcie_send_hcmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
1991 /* Make sure the NIC is still alive in the bus */
1992 if (test_bit(STATUS_TRANS_DEAD, &trans->status))
1993 return -ENODEV;
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;
2002 if (cmd->flags & CMD_ASYNC)
2003 return iwl_pcie_send_hcmd_async(trans, cmd);
2005 /* We still can fail on RFKILL that can be asserted while we wait */
2006 return iwl_pcie_send_hcmd_sync(trans, cmd);
2009 static 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)
2013 u16 head_tb_len;
2014 int i;
2017 * Set up TFD's third entry to point directly to remainder
2018 * of skb's head, if any
2020 head_tb_len = skb_headlen(skb) - hdr_len;
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);
2033 /* set up the remaining entries to point to the data */
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;
2039 if (!skb_frag_size(frag))
2040 continue;
2042 tb_phys = skb_frag_dma_map(trans->dev, frag, 0,
2043 skb_frag_size(frag), DMA_TO_DEVICE);
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;
2054 out_meta->tbs |= BIT(tb_idx);
2057 return 0;
2060 #ifdef CONFIG_INET
2061 struct iwl_tso_hdr_page *get_page_hdr(struct iwl_trans *trans, size_t len,
2062 struct sk_buff *skb)
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;
2068 page_ptr = (void *)((u8 *)skb->cb + trans_pcie->page_offs);
2070 if (WARN_ON(*page_ptr))
2071 return NULL;
2073 if (!p->page)
2074 goto alloc;
2077 * Check if there's enough room on this page
2079 * Note that we put a page chaining pointer *last* in the
2080 * page - we need it somewhere, and if it's there then we
2081 * avoid DMA mapping the last bits of the page which may
2082 * trigger the 32-bit boundary hardware bug.
2084 * (see also get_workaround_page() in tx-gen2.c)
2086 if (p->pos + len < (u8 *)page_address(p->page) + PAGE_SIZE -
2087 sizeof(void *))
2088 goto out;
2090 /* We don't have enough room on this page, get a new one. */
2091 __free_page(p->page);
2093 alloc:
2094 p->page = alloc_page(GFP_ATOMIC);
2095 if (!p->page)
2096 return NULL;
2097 p->pos = page_address(p->page);
2098 /* set the chaining pointer to NULL */
2099 *(void **)(page_address(p->page) + PAGE_SIZE - sizeof(void *)) = NULL;
2100 out:
2101 *page_ptr = p->page;
2102 get_page(p->page);
2103 return p;
2106 static void iwl_compute_pseudo_hdr_csum(void *iph, struct tcphdr *tcph,
2107 bool ipv6, unsigned int len)
2109 if (ipv6) {
2110 struct ipv6hdr *iphv6 = iph;
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;
2118 ip_send_check(iphv4);
2119 tcph->check = ~csum_tcpudp_magic(iphv4->saddr, iphv4->daddr,
2120 len + tcph->doff * 4,
2121 IPPROTO_TCP, 0);
2125 static 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)
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;
2141 /* if the packet is protected, then it must be CCMP or GCMP */
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;
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);
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;
2156 /* total amount of header we may need for this A-MSDU */
2157 hdr_room = DIV_ROUND_UP(total_len, mss) *
2158 (3 + snap_ip_tcp_hdrlen + sizeof(struct ethhdr)) + iv_len;
2160 /* Our device supports 9 segments at most, it will fit in 1 page */
2161 hdr_page = get_page_hdr(trans, hdr_room, skb);
2162 if (!hdr_page)
2163 return -ENOMEM;
2165 start_hdr = hdr_page->pos;
2166 memcpy(hdr_page->pos, skb->data + hdr_len, iv_len);
2167 hdr_page->pos += iv_len;
2170 * Pull the ieee80211 header + IV to be able to use TSO core,
2171 * we will restore it for the tx_status flow.
2173 skb_pull(skb, hdr_len + iv_len);
2176 * Remove the length of all the headers that we don't actually
2177 * have in the MPDU by themselves, but that we duplicate into
2178 * all the different MSDUs inside the A-MSDU.
2180 le16_add_cpu(&tx_cmd->len, -snap_ip_tcp_hdrlen);
2182 tso_start(skb, &tso);
2184 while (total_len) {
2185 /* this is the data left for this subframe */
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;
2194 total_len -= data_left;
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;
2205 length = snap_ip_tcp_hdrlen + data_left;
2206 *((__be16 *)hdr_page->pos) = cpu_to_be16(length);
2207 hdr_page->pos += sizeof(length);
2210 * This will copy the SNAP as well which will be considered
2211 * as MAC header.
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);
2217 /* For testing on current hardware only */
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;
2224 iwl_compute_pseudo_hdr_csum(iph, tcph,
2225 skb->protocol ==
2226 htons(ETH_P_IPV6),
2227 data_left);
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;
2236 hdr_page->pos += snap_ip_tcp_hdrlen;
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;
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 /* add this subframe's headers' length to the tx_cmd */
2250 le16_add_cpu(&tx_cmd->len, hdr_page->pos - subf_hdrs_start);
2252 /* prepare the start_hdr for the next subframe */
2253 start_hdr = hdr_page->pos;
2255 /* put the payload */
2256 while (data_left) {
2257 unsigned int size = min_t(unsigned int, tso.size,
2258 data_left);
2259 dma_addr_t tb_phys;
2261 if (trans_pcie->sw_csum_tx)
2262 skb_put_data(csum_skb, tso.data, size);
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;
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);
2276 data_left -= size;
2277 tso_build_data(skb, &tso, size);
2280 /* For testing on early hardware only */
2281 if (trans_pcie->sw_csum_tx) {
2282 __wsum csum;
2284 csum = skb_checksum(csum_skb,
2285 skb_checksum_start_offset(csum_skb),
2286 csum_skb->len -
2287 skb_checksum_start_offset(csum_skb),
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);
2298 /* re -add the WiFi header and IV */
2299 skb_push(skb, hdr_len + iv_len);
2301 return 0;
2303 #else /* CONFIG_INET */
2304 static 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)
2310 /* No A-MSDU without CONFIG_INET */
2311 WARN_ON(1);
2313 return -1;
2315 #endif /* CONFIG_INET */
2317 int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
2318 struct iwl_device_tx_cmd *dev_cmd, int txq_id)
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;
2335 txq = trans_pcie->txq[txq_id];
2337 if (WARN_ONCE(!test_bit(txq_id, trans_pcie->queue_used),
2338 "TX on unused queue %d\n", txq_id))
2339 return -EINVAL;
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;
2347 if (skb_ensure_writable(skb, csum_offs + sizeof(__sum16)))
2348 return -1;
2350 csum = skb_checksum(skb, offs, skb->len - offs, 0);
2351 *(__sum16 *)(skb->data + csum_offs) = csum_fold(csum);
2353 skb->ip_summed = CHECKSUM_UNNECESSARY;
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;
2361 /* mac80211 always puts the full header into the SKB's head,
2362 * so there's no need to check if it's readable there
2364 hdr = (struct ieee80211_hdr *)skb->data;
2365 fc = hdr->frame_control;
2366 hdr_len = ieee80211_hdrlen(fc);
2368 spin_lock(&txq->lock);
2370 if (iwl_queue_space(trans, txq) < txq->high_mark) {
2371 iwl_stop_queue(trans, txq);
2373 /* don't put the packet on the ring, if there is no room */
2374 if (unlikely(iwl_queue_space(trans, txq) < 3)) {
2375 struct iwl_device_tx_cmd **dev_cmd_ptr;
2377 dev_cmd_ptr = (void *)((u8 *)skb->cb +
2378 trans_pcie->dev_cmd_offs);
2380 *dev_cmd_ptr = dev_cmd;
2381 __skb_queue_tail(&txq->overflow_q, skb);
2383 spin_unlock(&txq->lock);
2384 return 0;
2388 /* In AGG mode, the index in the ring must correspond to the WiFi
2389 * sequence number. This is a HW requirements to help the SCD to parse
2390 * the BA.
2391 * Check here that the packets are in the right place on the ring.
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);
2399 /* Set up driver data for this TFD */
2400 txq->entries[txq->write_ptr].skb = skb;
2401 txq->entries[txq->write_ptr].cmd = dev_cmd;
2403 dev_cmd->hdr.sequence =
2404 cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
2405 INDEX_TO_SEQ(txq->write_ptr)));
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);
2411 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
2412 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
2414 /* Set up first empty entry in queue's array of Tx/cmd buffers */
2415 out_meta = &txq->entries[txq->write_ptr].meta;
2416 out_meta->flags = 0;
2419 * The second TB (tb1) points to the remainder of the TX command
2420 * and the 802.11 header - dword aligned size
2421 * (This calculation modifies the TX command, so do it before the
2422 * setup of the first TB)
2424 len = sizeof(struct iwl_tx_cmd) + sizeof(struct iwl_cmd_header) +
2425 hdr_len - IWL_FIRST_TB_SIZE;
2426 /* do not align A-MSDU to dword as the subframe header aligns it */
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 /* Tell NIC about any 2-byte padding after MAC header */
2433 if (tb1_len != len)
2434 tx_cmd->tx_flags |= cpu_to_le32(TX_CMD_FLG_MH_PAD);
2435 } else {
2436 tb1_len = len;
2440 * The first TB points to bi-directional DMA data, we'll
2441 * memcpy the data into it later.
2443 iwl_pcie_txq_build_tfd(trans, txq, tb0_phys,
2444 IWL_FIRST_TB_SIZE, true);
2446 /* there must be data left over for TB1 or this code must be changed */
2447 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd) < IWL_FIRST_TB_SIZE);
2449 /* map the data for TB1 */
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);
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);
2464 * If gso_size wasn't set, don't give the frame "amsdu treatment"
2465 * (adding subframes, etc.).
2466 * This can happen in some testing flows when the amsdu was already
2467 * pre-built, and we just need to send the resulting skb.
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;
2477 if (unlikely(iwl_fill_data_tbs(trans, skb, txq, hdr_len,
2478 out_meta)))
2479 goto out_err;
2481 skb_walk_frags(skb, frag) {
2482 if (unlikely(iwl_fill_data_tbs(trans, frag, txq, 0,
2483 out_meta)))
2484 goto out_err;
2488 /* building the A-MSDU might have changed this data, so memcpy it now */
2489 memcpy(&txq->first_tb_bufs[txq->write_ptr], dev_cmd, IWL_FIRST_TB_SIZE);
2491 tfd = iwl_pcie_get_tfd(trans, txq, txq->write_ptr);
2492 /* Set up entry for this TFD in Tx byte-count array */
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));
2496 wait_write_ptr = ieee80211_has_morefrags(fc);
2498 /* start timer if queue currently empty */
2499 if (txq->read_ptr == txq->write_ptr && txq->wd_timeout) {
2501 * If the TXQ is active, then set the timer, if not,
2502 * set the timer in remainder so that the timer will
2503 * be armed with the right value when the station will
2504 * wake up.
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;
2513 /* Tell device the write index *just past* this latest filled TFD */
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);
2519 * At this point the frame is "transmitted" successfully
2520 * and we will get a TX status notification eventually.
2522 spin_unlock(&txq->lock);
2523 return 0;
2524 out_err:
2525 iwl_pcie_tfd_unmap(trans, out_meta, txq, txq->write_ptr);
2526 spin_unlock(&txq->lock);
2527 return -1;