blob: 5f840f16f40bd955478196397f8dcff481e88077 [file] [log] [blame]
Ron Rindjunsky1053d352008-05-05 10:22:43 +08001/******************************************************************************
2 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02003 * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
Luciano Coelho4cbb8e502015-08-18 16:02:38 +03004 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
5 * Copyright(c) 2016 Intel Deutschland GmbH
Ron Rindjunsky1053d352008-05-05 10:22:43 +08006 *
7 * Portions of this file are derived from the ipw3945 project, as well
8 * as portions of the ieee80211 subsystem header files.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18 *
19 * You should have received a copy of the GNU General Public License along with
20 * this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
22 *
23 * The full GNU General Public License is included in this distribution in the
24 * file called LICENSE.
25 *
26 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020027 * Intel Linux Wireless <linuxwifi@intel.com>
Ron Rindjunsky1053d352008-05-05 10:22:43 +080028 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
29 *
30 *****************************************************************************/
Tomas Winklerfd4abac2008-05-15 13:54:07 +080031#include <linux/etherdevice.h>
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +030032#include <linux/ieee80211.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Emmanuel Grumbach253a6342011-07-11 07:39:46 -070034#include <linux/sched.h>
Luca Coelho71b12302016-03-11 12:12:16 +020035#include <linux/pm_runtime.h>
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +030036#include <net/ip6_checksum.h>
37#include <net/tso.h>
Emmanuel Grumbach253a6342011-07-11 07:39:46 -070038
Emmanuel Grumbach522376d2011-09-06 09:31:19 -070039#include "iwl-debug.h"
40#include "iwl-csr.h"
41#include "iwl-prph.h"
Ron Rindjunsky1053d352008-05-05 10:22:43 +080042#include "iwl-io.h"
Avri Altman680073b2014-07-14 09:40:27 +030043#include "iwl-scd.h"
Emmanuel Grumbached277c92012-02-09 16:08:15 +020044#include "iwl-op-mode.h"
Johannes Berg6468a012012-05-16 19:13:54 +020045#include "internal.h"
Johannes Berg6238b002012-04-02 15:04:33 +020046/* FIXME: need to abstract out TX command (once we know what it looks like) */
Johannes Berg1023fdc2012-05-15 12:16:34 +020047#include "dvm/commands.h"
Ron Rindjunsky1053d352008-05-05 10:22:43 +080048
Emmanuel Grumbach522376d2011-09-06 09:31:19 -070049#define IWL_TX_CRC_SIZE 4
50#define IWL_TX_DELIMITER_SIZE 4
51
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +020052/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
53 * DMA services
54 *
55 * Theory of operation
56 *
57 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
58 * of buffer descriptors, each of which points to one or more data buffers for
59 * the device to read from or fill. Driver and device exchange status of each
60 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
61 * entries in each circular buffer, to protect against confusing empty and full
62 * queue states.
63 *
64 * The device reads or writes the data in the queues via the device's several
65 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
66 *
67 * For Tx queue, there are low mark and high mark limits. If, after queuing
68 * the packet for Tx, free space become < low mark, Tx queue stopped. When
69 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
70 * Tx queue resumed.
71 *
72 ***************************************************/
Sara Sharone22744a2016-06-22 17:23:34 +030073
Sara Sharonbb98ecd2016-07-07 18:17:45 +030074static int iwl_queue_space(const struct iwl_txq *q)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +020075{
Ido Yariva9b29242013-07-15 11:51:48 -040076 unsigned int max;
77 unsigned int used;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +020078
Ido Yariva9b29242013-07-15 11:51:48 -040079 /*
80 * To avoid ambiguity between empty and completely full queues, there
Johannes Berg83f32a42014-04-24 09:57:40 +020081 * should always be less than TFD_QUEUE_SIZE_MAX elements in the queue.
82 * If q->n_window is smaller than TFD_QUEUE_SIZE_MAX, there is no need
83 * to reserve any queue entries for this purpose.
Ido Yariva9b29242013-07-15 11:51:48 -040084 */
Johannes Berg83f32a42014-04-24 09:57:40 +020085 if (q->n_window < TFD_QUEUE_SIZE_MAX)
Ido Yariva9b29242013-07-15 11:51:48 -040086 max = q->n_window;
87 else
Johannes Berg83f32a42014-04-24 09:57:40 +020088 max = TFD_QUEUE_SIZE_MAX - 1;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +020089
Ido Yariva9b29242013-07-15 11:51:48 -040090 /*
Johannes Berg83f32a42014-04-24 09:57:40 +020091 * TFD_QUEUE_SIZE_MAX is a power of 2, so the following is equivalent to
92 * modulo by TFD_QUEUE_SIZE_MAX and is well defined.
Ido Yariva9b29242013-07-15 11:51:48 -040093 */
Johannes Berg83f32a42014-04-24 09:57:40 +020094 used = (q->write_ptr - q->read_ptr) & (TFD_QUEUE_SIZE_MAX - 1);
Ido Yariva9b29242013-07-15 11:51:48 -040095
96 if (WARN_ON(used > max))
97 return 0;
98
99 return max - used;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200100}
101
102/*
103 * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
104 */
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300105static int iwl_queue_init(struct iwl_txq *q, int slots_num, u32 id)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200106{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200107 q->n_window = slots_num;
108 q->id = id;
109
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200110 /* slots_num must be power-of-two size, otherwise
111 * get_cmd_index is broken. */
112 if (WARN_ON(!is_power_of_2(slots_num)))
113 return -EINVAL;
114
115 q->low_mark = q->n_window / 4;
116 if (q->low_mark < 4)
117 q->low_mark = 4;
118
119 q->high_mark = q->n_window / 8;
120 if (q->high_mark < 2)
121 q->high_mark = 2;
122
123 q->write_ptr = 0;
124 q->read_ptr = 0;
125
126 return 0;
127}
128
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200129static int iwl_pcie_alloc_dma_ptr(struct iwl_trans *trans,
130 struct iwl_dma_ptr *ptr, size_t size)
131{
132 if (WARN_ON(ptr->addr))
133 return -EINVAL;
134
135 ptr->addr = dma_alloc_coherent(trans->dev, size,
136 &ptr->dma, GFP_KERNEL);
137 if (!ptr->addr)
138 return -ENOMEM;
139 ptr->size = size;
140 return 0;
141}
142
143static void iwl_pcie_free_dma_ptr(struct iwl_trans *trans,
144 struct iwl_dma_ptr *ptr)
145{
146 if (unlikely(!ptr->addr))
147 return;
148
149 dma_free_coherent(trans->dev, ptr->size, ptr->addr, ptr->dma);
150 memset(ptr, 0, sizeof(*ptr));
151}
152
153static void iwl_pcie_txq_stuck_timer(unsigned long data)
154{
155 struct iwl_txq *txq = (void *)data;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200156 struct iwl_trans_pcie *trans_pcie = txq->trans_pcie;
157 struct iwl_trans *trans = iwl_trans_pcie_get_trans(trans_pcie);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200158
159 spin_lock(&txq->lock);
160 /* check if triggered erroneously */
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300161 if (txq->read_ptr == txq->write_ptr) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200162 spin_unlock(&txq->lock);
163 return;
164 }
165 spin_unlock(&txq->lock);
166
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300167 IWL_ERR(trans, "Queue %d stuck for %u ms.\n", txq->id,
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200168 jiffies_to_msecs(txq->wd_timeout));
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200169
Sara Sharon38398ef2016-06-30 11:48:30 +0300170 iwl_trans_pcie_log_scd_error(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200171
Liad Kaufman4c9706d2014-04-27 16:46:09 +0300172 iwl_force_nmi(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200173}
174
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200175/*
176 * iwl_pcie_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300177 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200178static void iwl_pcie_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
Sara Sharon4fe10bc2016-07-04 14:34:26 +0300179 struct iwl_txq *txq, u16 byte_cnt,
180 int num_tbs)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300181{
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700182 struct iwlagn_scd_bc_tbl *scd_bc_tbl;
Johannes Berg20d3b642012-05-16 22:54:29 +0200183 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300184 int write_ptr = txq->write_ptr;
185 int txq_id = txq->id;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300186 u8 sec_ctl = 0;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300187 u16 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
188 __le16 bc_ent;
Emmanuel Grumbach132f98c2011-09-20 15:37:24 -0700189 struct iwl_tx_cmd *tx_cmd =
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300190 (void *)txq->entries[txq->write_ptr].cmd->payload;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300191
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700192 scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
193
Emmanuel Grumbach132f98c2011-09-20 15:37:24 -0700194 sec_ctl = tx_cmd->sec_ctl;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300195
196 switch (sec_ctl & TX_CMD_SEC_MSK) {
197 case TX_CMD_SEC_CCM:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200198 len += IEEE80211_CCMP_MIC_LEN;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300199 break;
200 case TX_CMD_SEC_TKIP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200201 len += IEEE80211_TKIP_ICV_LEN;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300202 break;
203 case TX_CMD_SEC_WEP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200204 len += IEEE80211_WEP_IV_LEN + IEEE80211_WEP_ICV_LEN;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300205 break;
206 }
Emmanuel Grumbach046db342012-12-05 15:07:54 +0200207 if (trans_pcie->bc_table_dword)
208 len = DIV_ROUND_UP(len, 4);
209
Emmanuel Grumbach31f920b2015-07-02 14:53:02 +0300210 if (WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX))
211 return;
212
Sara Sharon4fe10bc2016-07-04 14:34:26 +0300213 if (trans->cfg->use_tfh) {
214 u8 filled_tfd_size = offsetof(struct iwl_tfh_tfd, tbs) +
215 num_tbs * sizeof(struct iwl_tfh_tb);
216 /*
217 * filled_tfd_size contains the number of filled bytes in the
218 * TFD.
219 * Dividing it by 64 will give the number of chunks to fetch
220 * to SRAM- 0 for one chunk, 1 for 2 and so on.
221 * If, for example, TFD contains only 3 TBs then 32 bytes
222 * of the TFD are used, and only one chunk of 64 bytes should
223 * be fetched
224 */
225 u8 num_fetch_chunks = DIV_ROUND_UP(filled_tfd_size, 64) - 1;
226
227 bc_ent = cpu_to_le16(len | (num_fetch_chunks << 12));
228 } else {
229 u8 sta_id = tx_cmd->sta_id;
230
231 bc_ent = cpu_to_le16(len | (sta_id << 12));
232 }
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300233
234 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
235
236 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
237 scd_bc_tbl[txq_id].
238 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
239}
240
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200241static void iwl_pcie_txq_inval_byte_cnt_tbl(struct iwl_trans *trans,
242 struct iwl_txq *txq)
243{
244 struct iwl_trans_pcie *trans_pcie =
245 IWL_TRANS_GET_PCIE_TRANS(trans);
246 struct iwlagn_scd_bc_tbl *scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300247 int txq_id = txq->id;
248 int read_ptr = txq->read_ptr;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200249 u8 sta_id = 0;
250 __le16 bc_ent;
251 struct iwl_tx_cmd *tx_cmd =
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300252 (void *)txq->entries[read_ptr].cmd->payload;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200253
254 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
255
256 if (txq_id != trans_pcie->cmd_queue)
257 sta_id = tx_cmd->sta_id;
258
259 bc_ent = cpu_to_le16(1 | (sta_id << 12));
Sara Sharon4fe10bc2016-07-04 14:34:26 +0300260
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200261 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
262
263 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
264 scd_bc_tbl[txq_id].
265 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
266}
267
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200268/*
269 * iwl_pcie_txq_inc_wr_ptr - Send new write index to hardware
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800270 */
Johannes Bergea68f462014-02-27 14:36:55 +0100271static void iwl_pcie_txq_inc_wr_ptr(struct iwl_trans *trans,
272 struct iwl_txq *txq)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800273{
Emmanuel Grumbach23e76d12014-01-20 09:50:29 +0200274 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800275 u32 reg = 0;
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300276 int txq_id = txq->id;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800277
Johannes Bergea68f462014-02-27 14:36:55 +0100278 lockdep_assert_held(&txq->lock);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800279
Eliad Peller50453882014-02-05 19:12:24 +0200280 /*
281 * explicitly wake up the NIC if:
282 * 1. shadow registers aren't enabled
283 * 2. NIC is woken up for CMD regardless of shadow outside this function
284 * 3. there is a chance that the NIC is asleep
285 */
286 if (!trans->cfg->base_params->shadow_reg_enable &&
287 txq_id != trans_pcie->cmd_queue &&
288 test_bit(STATUS_TPOWER_PMI, &trans->status)) {
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800289 /*
Eliad Peller50453882014-02-05 19:12:24 +0200290 * wake up nic if it's powered down ...
291 * uCode will wake up, and interrupt us again, so next
292 * time we'll skip this part.
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800293 */
Eliad Peller50453882014-02-05 19:12:24 +0200294 reg = iwl_read32(trans, CSR_UCODE_DRV_GP1);
295
296 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
297 IWL_DEBUG_INFO(trans, "Tx queue %d requesting wakeup, GP1 = 0x%x\n",
298 txq_id, reg);
299 iwl_set_bit(trans, CSR_GP_CNTRL,
300 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Johannes Bergea68f462014-02-27 14:36:55 +0100301 txq->need_update = true;
Eliad Peller50453882014-02-05 19:12:24 +0200302 return;
303 }
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800304 }
Eliad Peller50453882014-02-05 19:12:24 +0200305
306 /*
307 * if not in power-save mode, uCode will never sleep when we're
308 * trying to tx (during RFKILL, we're not trying to tx).
309 */
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300310 IWL_DEBUG_TX(trans, "Q:%d WR: 0x%x\n", txq_id, txq->write_ptr);
Emmanuel Grumbach0cd58ea2015-11-24 13:24:24 +0200311 if (!txq->block)
312 iwl_write32(trans, HBUS_TARG_WRPTR,
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300313 txq->write_ptr | (txq_id << 8));
Johannes Bergea68f462014-02-27 14:36:55 +0100314}
Eliad Peller50453882014-02-05 19:12:24 +0200315
Johannes Bergea68f462014-02-27 14:36:55 +0100316void iwl_pcie_txq_check_wrptrs(struct iwl_trans *trans)
317{
318 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
319 int i;
320
321 for (i = 0; i < trans->cfg->base_params->num_of_queues; i++) {
322 struct iwl_txq *txq = &trans_pcie->txq[i];
323
Emmanuel Grumbachd090f872014-05-13 08:10:51 +0300324 spin_lock_bh(&txq->lock);
Johannes Bergea68f462014-02-27 14:36:55 +0100325 if (trans_pcie->txq[i].need_update) {
326 iwl_pcie_txq_inc_wr_ptr(trans, txq);
327 trans_pcie->txq[i].need_update = false;
328 }
Emmanuel Grumbachd090f872014-05-13 08:10:51 +0300329 spin_unlock_bh(&txq->lock);
Johannes Bergea68f462014-02-27 14:36:55 +0100330 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800331}
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800332
Sara Sharon6983ba62016-06-26 13:17:56 +0300333static inline void *iwl_pcie_get_tfd(struct iwl_trans_pcie *trans_pcie,
334 struct iwl_txq *txq, int idx)
Johannes Berg214d14d2011-05-04 07:50:44 -0700335{
Sara Sharon6983ba62016-06-26 13:17:56 +0300336 return txq->tfds + trans_pcie->tfd_size * idx;
337}
Johannes Berg214d14d2011-05-04 07:50:44 -0700338
Sara Sharon6983ba62016-06-26 13:17:56 +0300339static inline dma_addr_t iwl_pcie_tfd_tb_get_addr(struct iwl_trans *trans,
Johannes Bergcc2f41f2016-09-09 09:34:46 +0200340 void *_tfd, u8 idx)
Sara Sharon6983ba62016-06-26 13:17:56 +0300341{
Sara Sharon6983ba62016-06-26 13:17:56 +0300342
343 if (trans->cfg->use_tfh) {
Johannes Bergcc2f41f2016-09-09 09:34:46 +0200344 struct iwl_tfh_tfd *tfd = _tfd;
345 struct iwl_tfh_tb *tb = &tfd->tbs[idx];
Sara Sharon6983ba62016-06-26 13:17:56 +0300346
347 return (dma_addr_t)(le64_to_cpu(tb->addr));
Johannes Bergcc2f41f2016-09-09 09:34:46 +0200348 } else {
349 struct iwl_tfd *tfd = _tfd;
350 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
351 dma_addr_t addr = get_unaligned_le32(&tb->lo);
352 dma_addr_t hi_len;
353
354 if (sizeof(dma_addr_t) <= sizeof(u32))
355 return addr;
356
357 hi_len = le16_to_cpu(tb->hi_n_len) & 0xF;
358
359 /*
360 * shift by 16 twice to avoid warnings on 32-bit
361 * (where this code never runs anyway due to the
362 * if statement above)
363 */
364 return addr | ((hi_len << 16) << 16);
Sara Sharon6983ba62016-06-26 13:17:56 +0300365 }
Johannes Berg214d14d2011-05-04 07:50:44 -0700366}
367
Sara Sharon6983ba62016-06-26 13:17:56 +0300368static inline void iwl_pcie_tfd_set_tb(struct iwl_trans *trans, void *tfd,
369 u8 idx, dma_addr_t addr, u16 len)
Johannes Berg214d14d2011-05-04 07:50:44 -0700370{
Sara Sharon6983ba62016-06-26 13:17:56 +0300371 if (trans->cfg->use_tfh) {
372 struct iwl_tfh_tfd *tfd_fh = (void *)tfd;
373 struct iwl_tfh_tb *tb = &tfd_fh->tbs[idx];
Johannes Berg214d14d2011-05-04 07:50:44 -0700374
Sara Sharon6983ba62016-06-26 13:17:56 +0300375 put_unaligned_le64(addr, &tb->addr);
376 tb->tb_len = cpu_to_le16(len);
Johannes Berg214d14d2011-05-04 07:50:44 -0700377
Sara Sharon6983ba62016-06-26 13:17:56 +0300378 tfd_fh->num_tbs = cpu_to_le16(idx + 1);
379 } else {
380 struct iwl_tfd *tfd_fh = (void *)tfd;
381 struct iwl_tfd_tb *tb = &tfd_fh->tbs[idx];
Johannes Berg214d14d2011-05-04 07:50:44 -0700382
Sara Sharon6983ba62016-06-26 13:17:56 +0300383 u16 hi_n_len = len << 4;
384
385 put_unaligned_le32(addr, &tb->lo);
386 if (sizeof(dma_addr_t) > sizeof(u32))
387 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
388
389 tb->hi_n_len = cpu_to_le16(hi_n_len);
390
391 tfd_fh->num_tbs = idx + 1;
392 }
Johannes Berg214d14d2011-05-04 07:50:44 -0700393}
394
Johannes Bergcc2f41f2016-09-09 09:34:46 +0200395static inline u8 iwl_pcie_tfd_get_num_tbs(struct iwl_trans *trans, void *_tfd)
Johannes Berg214d14d2011-05-04 07:50:44 -0700396{
Sara Sharon6983ba62016-06-26 13:17:56 +0300397 if (trans->cfg->use_tfh) {
Johannes Bergcc2f41f2016-09-09 09:34:46 +0200398 struct iwl_tfh_tfd *tfd = _tfd;
Sara Sharon6983ba62016-06-26 13:17:56 +0300399
Johannes Bergcc2f41f2016-09-09 09:34:46 +0200400 return le16_to_cpu(tfd->num_tbs) & 0x1f;
401 } else {
402 struct iwl_tfd *tfd = _tfd;
403
404 return tfd->num_tbs & 0x1f;
Sara Sharon6983ba62016-06-26 13:17:56 +0300405 }
Johannes Berg214d14d2011-05-04 07:50:44 -0700406}
407
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200408static void iwl_pcie_tfd_unmap(struct iwl_trans *trans,
Johannes Berg98891752013-02-26 11:28:19 +0100409 struct iwl_cmd_meta *meta,
Sara Sharon6983ba62016-06-26 13:17:56 +0300410 struct iwl_txq *txq, int index)
Johannes Berg214d14d2011-05-04 07:50:44 -0700411{
Sara Sharon3cd19802016-06-23 16:31:40 +0300412 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
413 int i, num_tbs;
Sara Sharon6983ba62016-06-26 13:17:56 +0300414 void *tfd = iwl_pcie_get_tfd(trans_pcie, txq, index);
Johannes Berg214d14d2011-05-04 07:50:44 -0700415
Johannes Berg214d14d2011-05-04 07:50:44 -0700416 /* Sanity check on number of chunks */
Sara Sharon6983ba62016-06-26 13:17:56 +0300417 num_tbs = iwl_pcie_tfd_get_num_tbs(trans, tfd);
Johannes Berg214d14d2011-05-04 07:50:44 -0700418
Sara Sharon3cd19802016-06-23 16:31:40 +0300419 if (num_tbs >= trans_pcie->max_tbs) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700420 IWL_ERR(trans, "Too many chunks: %i\n", num_tbs);
Johannes Berg214d14d2011-05-04 07:50:44 -0700421 /* @todo issue fatal error, it is quite serious situation */
422 return;
423 }
424
Sara Sharon8de437c2016-06-09 17:56:38 +0300425 /* first TB is never freed - it's the bidirectional DMA data */
Johannes Berg214d14d2011-05-04 07:50:44 -0700426
Johannes Berg206eea72015-04-17 16:38:31 +0200427 for (i = 1; i < num_tbs; i++) {
Sara Sharon3cd19802016-06-23 16:31:40 +0300428 if (meta->tbs & BIT(i))
Johannes Berg206eea72015-04-17 16:38:31 +0200429 dma_unmap_page(trans->dev,
Sara Sharon6983ba62016-06-26 13:17:56 +0300430 iwl_pcie_tfd_tb_get_addr(trans, tfd, i),
431 iwl_pcie_tfd_tb_get_len(trans, tfd, i),
Johannes Berg206eea72015-04-17 16:38:31 +0200432 DMA_TO_DEVICE);
433 else
434 dma_unmap_single(trans->dev,
Sara Sharon6983ba62016-06-26 13:17:56 +0300435 iwl_pcie_tfd_tb_get_addr(trans, tfd,
436 i),
437 iwl_pcie_tfd_tb_get_len(trans, tfd,
438 i),
Johannes Berg206eea72015-04-17 16:38:31 +0200439 DMA_TO_DEVICE);
440 }
Sara Sharon6983ba62016-06-26 13:17:56 +0300441
442 if (trans->cfg->use_tfh) {
443 struct iwl_tfh_tfd *tfd_fh = (void *)tfd;
444
445 tfd_fh->num_tbs = 0;
446 } else {
447 struct iwl_tfd *tfd_fh = (void *)tfd;
448
449 tfd_fh->num_tbs = 0;
450 }
451
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700452}
453
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200454/*
455 * iwl_pcie_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700456 * @trans - transport private data
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700457 * @txq - tx queue
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200458 * @dma_dir - the direction of the DMA mapping
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700459 *
460 * Does NOT advance any TFD circular buffer read/write indexes
461 * Does NOT free the TFD itself (which is within circular buffer)
462 */
Johannes Berg98891752013-02-26 11:28:19 +0100463static void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq)
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700464{
Johannes Berg83f32a42014-04-24 09:57:40 +0200465 /* rd_ptr is bounded by TFD_QUEUE_SIZE_MAX and
466 * idx is bounded by n_window
467 */
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300468 int rd_ptr = txq->read_ptr;
469 int idx = get_cmd_index(txq, rd_ptr);
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200470
Johannes Berg015c15e2012-03-05 11:24:24 -0800471 lockdep_assert_held(&txq->lock);
472
Johannes Berg83f32a42014-04-24 09:57:40 +0200473 /* We have only q->n_window txq->entries, but we use
474 * TFD_QUEUE_SIZE_MAX tfds
475 */
Sara Sharon6983ba62016-06-26 13:17:56 +0300476 iwl_pcie_tfd_unmap(trans, &txq->entries[idx].meta, txq, rd_ptr);
Johannes Berg214d14d2011-05-04 07:50:44 -0700477
478 /* free SKB */
Johannes Bergbf8440e2012-03-19 17:12:06 +0100479 if (txq->entries) {
Johannes Berg214d14d2011-05-04 07:50:44 -0700480 struct sk_buff *skb;
481
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200482 skb = txq->entries[idx].skb;
Johannes Berg214d14d2011-05-04 07:50:44 -0700483
Emmanuel Grumbach909e9b22011-09-15 11:46:30 -0700484 /* Can be called from irqs-disabled context
485 * If skb is not NULL, it means that the whole queue is being
486 * freed and that the queue is not empty - free the skb
487 */
Johannes Berg214d14d2011-05-04 07:50:44 -0700488 if (skb) {
Emmanuel Grumbached277c92012-02-09 16:08:15 +0200489 iwl_op_mode_free_skb(trans->op_mode, skb);
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200490 txq->entries[idx].skb = NULL;
Johannes Berg214d14d2011-05-04 07:50:44 -0700491 }
492 }
493}
494
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200495static int iwl_pcie_txq_build_tfd(struct iwl_trans *trans, struct iwl_txq *txq,
Johannes Berg6d6e68f2014-04-23 19:00:56 +0200496 dma_addr_t addr, u16 len, bool reset)
Johannes Berg214d14d2011-05-04 07:50:44 -0700497{
Sara Sharon3cd19802016-06-23 16:31:40 +0300498 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Sara Sharon6983ba62016-06-26 13:17:56 +0300499 void *tfd;
Johannes Berg214d14d2011-05-04 07:50:44 -0700500 u32 num_tbs;
501
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300502 tfd = txq->tfds + trans_pcie->tfd_size * txq->write_ptr;
Johannes Berg214d14d2011-05-04 07:50:44 -0700503
504 if (reset)
Sara Sharon6983ba62016-06-26 13:17:56 +0300505 memset(tfd, 0, trans_pcie->tfd_size);
Johannes Berg214d14d2011-05-04 07:50:44 -0700506
Sara Sharon6983ba62016-06-26 13:17:56 +0300507 num_tbs = iwl_pcie_tfd_get_num_tbs(trans, tfd);
Johannes Berg214d14d2011-05-04 07:50:44 -0700508
Sara Sharon6983ba62016-06-26 13:17:56 +0300509 /* Each TFD can point to a maximum max_tbs Tx buffers */
Sara Sharon3cd19802016-06-23 16:31:40 +0300510 if (num_tbs >= trans_pcie->max_tbs) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700511 IWL_ERR(trans, "Error can not send more than %d chunks\n",
Sara Sharon3cd19802016-06-23 16:31:40 +0300512 trans_pcie->max_tbs);
Johannes Berg214d14d2011-05-04 07:50:44 -0700513 return -EINVAL;
514 }
515
Eliad Peller1092b9b2013-07-16 17:53:43 +0300516 if (WARN(addr & ~IWL_TX_DMA_MASK,
517 "Unaligned address = %llx\n", (unsigned long long)addr))
Johannes Berg214d14d2011-05-04 07:50:44 -0700518 return -EINVAL;
519
Sara Sharon6983ba62016-06-26 13:17:56 +0300520 iwl_pcie_tfd_set_tb(trans, tfd, num_tbs, addr, len);
Johannes Berg214d14d2011-05-04 07:50:44 -0700521
Johannes Berg206eea72015-04-17 16:38:31 +0200522 return num_tbs;
Johannes Berg214d14d2011-05-04 07:50:44 -0700523}
524
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200525static int iwl_pcie_txq_alloc(struct iwl_trans *trans,
526 struct iwl_txq *txq, int slots_num,
527 u32 txq_id)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800528{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200529 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Sara Sharon6983ba62016-06-26 13:17:56 +0300530 size_t tfd_sz = trans_pcie->tfd_size * TFD_QUEUE_SIZE_MAX;
Sara Sharon8de437c2016-06-09 17:56:38 +0300531 size_t tb0_buf_sz;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200532 int i;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800533
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200534 if (WARN_ON(txq->entries || txq->tfds))
535 return -EINVAL;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800536
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200537 setup_timer(&txq->stuck_timer, iwl_pcie_txq_stuck_timer,
538 (unsigned long)txq);
539 txq->trans_pcie = trans_pcie;
540
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300541 txq->n_window = slots_num;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200542
543 txq->entries = kcalloc(slots_num,
544 sizeof(struct iwl_pcie_txq_entry),
545 GFP_KERNEL);
546
547 if (!txq->entries)
548 goto error;
549
550 if (txq_id == trans_pcie->cmd_queue)
551 for (i = 0; i < slots_num; i++) {
552 txq->entries[i].cmd =
553 kmalloc(sizeof(struct iwl_device_cmd),
554 GFP_KERNEL);
555 if (!txq->entries[i].cmd)
556 goto error;
557 }
558
559 /* Circular buffer of transmit frame descriptors (TFDs),
560 * shared with device */
561 txq->tfds = dma_alloc_coherent(trans->dev, tfd_sz,
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300562 &txq->dma_addr, GFP_KERNEL);
Joe Perchesd0320f72013-03-14 13:07:21 +0000563 if (!txq->tfds)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200564 goto error;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100565
Sara Sharon8de437c2016-06-09 17:56:38 +0300566 BUILD_BUG_ON(IWL_FIRST_TB_SIZE_ALIGN != sizeof(*txq->first_tb_bufs));
Johannes Berg38c0f3342013-02-27 13:18:50 +0100567
Sara Sharon8de437c2016-06-09 17:56:38 +0300568 tb0_buf_sz = sizeof(*txq->first_tb_bufs) * slots_num;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100569
Sara Sharon8de437c2016-06-09 17:56:38 +0300570 txq->first_tb_bufs = dma_alloc_coherent(trans->dev, tb0_buf_sz,
571 &txq->first_tb_dma,
Johannes Berg38c0f3342013-02-27 13:18:50 +0100572 GFP_KERNEL);
Sara Sharon8de437c2016-06-09 17:56:38 +0300573 if (!txq->first_tb_bufs)
Johannes Berg38c0f3342013-02-27 13:18:50 +0100574 goto err_free_tfds;
575
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300576 txq->id = txq_id;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200577
578 return 0;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100579err_free_tfds:
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300580 dma_free_coherent(trans->dev, tfd_sz, txq->tfds, txq->dma_addr);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200581error:
582 if (txq->entries && txq_id == trans_pcie->cmd_queue)
583 for (i = 0; i < slots_num; i++)
584 kfree(txq->entries[i].cmd);
585 kfree(txq->entries);
586 txq->entries = NULL;
587
588 return -ENOMEM;
589
590}
591
592static int iwl_pcie_txq_init(struct iwl_trans *trans, struct iwl_txq *txq,
593 int slots_num, u32 txq_id)
594{
Johannes Bergfaead412016-09-22 10:31:41 +0200595 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200596 int ret;
597
Johannes Berg43aa6162014-02-27 14:24:36 +0100598 txq->need_update = false;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200599
600 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
601 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
602 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
603
604 /* Initialize queue's high/low-water marks, and head/tail indexes */
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300605 ret = iwl_queue_init(txq, slots_num, txq_id);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200606 if (ret)
607 return ret;
608
609 spin_lock_init(&txq->lock);
Johannes Bergfaead412016-09-22 10:31:41 +0200610
611 if (txq_id == trans_pcie->cmd_queue) {
612 static struct lock_class_key iwl_pcie_cmd_queue_lock_class;
613
614 lockdep_set_class(&txq->lock, &iwl_pcie_cmd_queue_lock_class);
615 }
616
Emmanuel Grumbach39555252016-01-14 09:39:21 +0200617 __skb_queue_head_init(&txq->overflow_q);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200618
619 /*
620 * Tell nic where to find circular buffer of Tx Frame Descriptors for
621 * given Tx queue, and enable the DMA channel used for that queue.
622 * Circular buffer (TFD queue in DRAM) physical base address */
Sara Sharone22744a2016-06-22 17:23:34 +0300623 if (trans->cfg->use_tfh)
624 iwl_write_direct64(trans,
625 FH_MEM_CBBC_QUEUE(trans, txq_id),
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300626 txq->dma_addr);
Sara Sharone22744a2016-06-22 17:23:34 +0300627 else
628 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(trans, txq_id),
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300629 txq->dma_addr >> 8);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200630
631 return 0;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800632}
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800633
Johannes Berg21cb3222016-06-21 13:11:48 +0200634static void iwl_pcie_free_tso_page(struct iwl_trans_pcie *trans_pcie,
635 struct sk_buff *skb)
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300636{
Johannes Berg21cb3222016-06-21 13:11:48 +0200637 struct page **page_ptr;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300638
Johannes Berg21cb3222016-06-21 13:11:48 +0200639 page_ptr = (void *)((u8 *)skb->cb + trans_pcie->page_offs);
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300640
Johannes Berg21cb3222016-06-21 13:11:48 +0200641 if (*page_ptr) {
642 __free_page(*page_ptr);
643 *page_ptr = NULL;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300644 }
645}
646
Sara Sharon01d11cd2016-03-09 17:38:47 +0200647static void iwl_pcie_clear_cmd_in_flight(struct iwl_trans *trans)
648{
649 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
650
651 lockdep_assert_held(&trans_pcie->reg_lock);
652
653 if (trans_pcie->ref_cmd_in_flight) {
654 trans_pcie->ref_cmd_in_flight = false;
655 IWL_DEBUG_RPM(trans, "clear ref_cmd_in_flight - unref\n");
Luca Coelhoc24c7f52016-03-30 20:59:27 +0300656 iwl_trans_unref(trans);
Sara Sharon01d11cd2016-03-09 17:38:47 +0200657 }
658
659 if (!trans->cfg->base_params->apmg_wake_up_wa)
660 return;
661 if (WARN_ON(!trans_pcie->cmd_hold_nic_awake))
662 return;
663
664 trans_pcie->cmd_hold_nic_awake = false;
665 __iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
666 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
667}
668
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200669/*
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200670 * iwl_pcie_txq_unmap - Unmap any remaining DMA mappings and free skb's
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800671 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200672static void iwl_pcie_txq_unmap(struct iwl_trans *trans, int txq_id)
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800673{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200674 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
675 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800676
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200677 spin_lock_bh(&txq->lock);
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300678 while (txq->write_ptr != txq->read_ptr) {
Emmanuel Grumbachb9676132013-06-13 11:45:59 +0300679 IWL_DEBUG_TX_REPLY(trans, "Q %d Free %d\n",
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300680 txq_id, txq->read_ptr);
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300681
682 if (txq_id != trans_pcie->cmd_queue) {
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300683 struct sk_buff *skb = txq->entries[txq->read_ptr].skb;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300684
685 if (WARN_ON_ONCE(!skb))
686 continue;
687
Johannes Berg21cb3222016-06-21 13:11:48 +0200688 iwl_pcie_free_tso_page(trans_pcie, skb);
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300689 }
Johannes Berg98891752013-02-26 11:28:19 +0100690 iwl_pcie_txq_free_tfd(trans, txq);
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300691 txq->read_ptr = iwl_queue_inc_wrap(txq->read_ptr);
Sara Sharon01d11cd2016-03-09 17:38:47 +0200692
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300693 if (txq->read_ptr == txq->write_ptr) {
Sara Sharon01d11cd2016-03-09 17:38:47 +0200694 unsigned long flags;
695
696 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
697 if (txq_id != trans_pcie->cmd_queue) {
698 IWL_DEBUG_RPM(trans, "Q %d - last tx freed\n",
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300699 txq->id);
Luca Coelhoc24c7f52016-03-30 20:59:27 +0300700 iwl_trans_unref(trans);
Sara Sharon01d11cd2016-03-09 17:38:47 +0200701 } else {
702 iwl_pcie_clear_cmd_in_flight(trans);
703 }
704 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
705 }
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200706 }
Emmanuel Grumbachb9676132013-06-13 11:45:59 +0300707 txq->active = false;
Emmanuel Grumbach39555252016-01-14 09:39:21 +0200708
709 while (!skb_queue_empty(&txq->overflow_q)) {
710 struct sk_buff *skb = __skb_dequeue(&txq->overflow_q);
711
712 iwl_op_mode_free_skb(trans->op_mode, skb);
713 }
714
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200715 spin_unlock_bh(&txq->lock);
Emmanuel Grumbach8a487b12013-06-13 13:10:00 +0300716
717 /* just in case - this queue may have been stopped */
718 iwl_wake_queue(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200719}
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800720
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200721/*
722 * iwl_pcie_txq_free - Deallocate DMA queue.
723 * @txq: Transmit queue to deallocate.
724 *
725 * Empty queue by removing and destroying all BD's.
726 * Free all buffers.
727 * 0-fill, but do not free "txq" descriptor structure.
728 */
729static void iwl_pcie_txq_free(struct iwl_trans *trans, int txq_id)
730{
731 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
732 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
733 struct device *dev = trans->dev;
734 int i;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800735
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200736 if (WARN_ON(!txq))
737 return;
738
739 iwl_pcie_txq_unmap(trans, txq_id);
740
741 /* De-alloc array of command/tx buffers */
742 if (txq_id == trans_pcie->cmd_queue)
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300743 for (i = 0; i < txq->n_window; i++) {
Johannes Berg5d4185a2014-09-09 21:16:06 +0200744 kzfree(txq->entries[i].cmd);
745 kzfree(txq->entries[i].free_buf);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200746 }
747
748 /* De-alloc circular buffer of TFDs */
Johannes Berg83f32a42014-04-24 09:57:40 +0200749 if (txq->tfds) {
750 dma_free_coherent(dev,
Sara Sharon6983ba62016-06-26 13:17:56 +0300751 trans_pcie->tfd_size * TFD_QUEUE_SIZE_MAX,
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300752 txq->tfds, txq->dma_addr);
753 txq->dma_addr = 0;
Johannes Berg83f32a42014-04-24 09:57:40 +0200754 txq->tfds = NULL;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100755
756 dma_free_coherent(dev,
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300757 sizeof(*txq->first_tb_bufs) * txq->n_window,
Sara Sharon8de437c2016-06-09 17:56:38 +0300758 txq->first_tb_bufs, txq->first_tb_dma);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200759 }
760
761 kfree(txq->entries);
762 txq->entries = NULL;
763
764 del_timer_sync(&txq->stuck_timer);
765
766 /* 0-fill queue descriptor structure */
767 memset(txq, 0, sizeof(*txq));
768}
769
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200770void iwl_pcie_tx_start(struct iwl_trans *trans, u32 scd_base_addr)
771{
772 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Johannes Berg22dc3c92013-01-09 00:47:07 +0100773 int nq = trans->cfg->base_params->num_of_queues;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200774 int chan;
775 u32 reg_val;
Johannes Berg22dc3c92013-01-09 00:47:07 +0100776 int clear_dwords = (SCD_TRANS_TBL_OFFSET_QUEUE(nq) -
777 SCD_CONTEXT_MEM_LOWER_BOUND) / sizeof(u32);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200778
779 /* make sure all queue are not stopped/used */
780 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
781 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
782
Sara Sharonae797852016-06-30 16:36:24 +0300783 if (trans->cfg->use_tfh)
784 return;
785
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200786 trans_pcie->scd_base_addr =
787 iwl_read_prph(trans, SCD_SRAM_BASE_ADDR);
788
789 WARN_ON(scd_base_addr != 0 &&
790 scd_base_addr != trans_pcie->scd_base_addr);
791
Johannes Berg22dc3c92013-01-09 00:47:07 +0100792 /* reset context data, TX status and translation data */
793 iwl_trans_write_mem(trans, trans_pcie->scd_base_addr +
794 SCD_CONTEXT_MEM_LOWER_BOUND,
795 NULL, clear_dwords);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200796
797 iwl_write_prph(trans, SCD_DRAM_BASE_ADDR,
798 trans_pcie->scd_bc_tbls.dma >> 10);
799
800 /* The chain extension of the SCD doesn't work well. This feature is
801 * enabled by default by the HW, so we need to disable it manually.
802 */
Emmanuel Grumbache03bbb62014-04-13 10:49:16 +0300803 if (trans->cfg->base_params->scd_chain_ext_wa)
804 iwl_write_prph(trans, SCD_CHAINEXT_EN, 0);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200805
806 iwl_trans_ac_txq_enable(trans, trans_pcie->cmd_queue,
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200807 trans_pcie->cmd_fifo,
808 trans_pcie->cmd_q_wdg_timeout);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200809
810 /* Activate all Tx DMA/FIFO channels */
Avri Altman680073b2014-07-14 09:40:27 +0300811 iwl_scd_activate_fifos(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200812
813 /* Enable DMA channel */
814 for (chan = 0; chan < FH_TCSR_CHNL_NUM; chan++)
815 iwl_write_direct32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(chan),
816 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
817 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
818
819 /* Update FH chicken bits */
820 reg_val = iwl_read_direct32(trans, FH_TX_CHICKEN_BITS_REG);
821 iwl_write_direct32(trans, FH_TX_CHICKEN_BITS_REG,
822 reg_val | FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
823
824 /* Enable L1-Active */
Eran Harary3073d8c2013-12-29 14:09:59 +0200825 if (trans->cfg->device_family != IWL_DEVICE_FAMILY_8000)
826 iwl_clear_bits_prph(trans, APMG_PCIDEV_STT_REG,
827 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200828}
829
Johannes Bergddaf5a52013-01-08 11:25:44 +0100830void iwl_trans_pcie_tx_reset(struct iwl_trans *trans)
831{
832 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
833 int txq_id;
834
835 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
836 txq_id++) {
837 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
Sara Sharone22744a2016-06-22 17:23:34 +0300838 if (trans->cfg->use_tfh)
839 iwl_write_direct64(trans,
840 FH_MEM_CBBC_QUEUE(trans, txq_id),
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300841 txq->dma_addr);
Sara Sharone22744a2016-06-22 17:23:34 +0300842 else
843 iwl_write_direct32(trans,
844 FH_MEM_CBBC_QUEUE(trans, txq_id),
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300845 txq->dma_addr >> 8);
Johannes Bergddaf5a52013-01-08 11:25:44 +0100846 iwl_pcie_txq_unmap(trans, txq_id);
Sara Sharonbb98ecd2016-07-07 18:17:45 +0300847 txq->read_ptr = 0;
848 txq->write_ptr = 0;
Johannes Bergddaf5a52013-01-08 11:25:44 +0100849 }
850
851 /* Tell NIC where to find the "keep warm" buffer */
852 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
853 trans_pcie->kw.dma >> 4);
854
Emmanuel Grumbachcd8f4382015-01-29 21:34:00 +0200855 /*
856 * Send 0 as the scd_base_addr since the device may have be reset
857 * while we were in WoWLAN in which case SCD_SRAM_BASE_ADDR will
858 * contain garbage.
859 */
860 iwl_pcie_tx_start(trans, 0);
Johannes Bergddaf5a52013-01-08 11:25:44 +0100861}
862
Emmanuel Grumbach36277232015-02-25 15:49:39 +0200863static void iwl_pcie_tx_stop_fh(struct iwl_trans *trans)
864{
865 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
866 unsigned long flags;
867 int ch, ret;
868 u32 mask = 0;
869
870 spin_lock(&trans_pcie->irq_lock);
871
Emmanuel Grumbach23ba9342015-12-17 11:55:13 +0200872 if (!iwl_trans_grab_nic_access(trans, &flags))
Emmanuel Grumbach36277232015-02-25 15:49:39 +0200873 goto out;
874
875 /* Stop each Tx DMA channel */
876 for (ch = 0; ch < FH_TCSR_CHNL_NUM; ch++) {
877 iwl_write32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
878 mask |= FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch);
879 }
880
881 /* Wait for DMA channels to be idle */
882 ret = iwl_poll_bit(trans, FH_TSSR_TX_STATUS_REG, mask, mask, 5000);
883 if (ret < 0)
884 IWL_ERR(trans,
885 "Failing on timeout while stopping DMA channel %d [0x%08x]\n",
886 ch, iwl_read32(trans, FH_TSSR_TX_STATUS_REG));
887
888 iwl_trans_release_nic_access(trans, &flags);
889
890out:
891 spin_unlock(&trans_pcie->irq_lock);
892}
893
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200894/*
895 * iwl_pcie_tx_stop - Stop all Tx DMA channels
896 */
897int iwl_pcie_tx_stop(struct iwl_trans *trans)
898{
899 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach36277232015-02-25 15:49:39 +0200900 int txq_id;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200901
902 /* Turn off all Tx DMA fifos */
Avri Altman680073b2014-07-14 09:40:27 +0300903 iwl_scd_deactivate_fifos(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200904
Emmanuel Grumbach36277232015-02-25 15:49:39 +0200905 /* Turn off all Tx DMA channels */
906 iwl_pcie_tx_stop_fh(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200907
Emmanuel Grumbachfba1c622013-12-19 22:19:17 +0200908 /*
909 * This function can be called before the op_mode disabled the
910 * queues. This happens when we have an rfkill interrupt.
911 * Since we stop Tx altogether - mark the queues as stopped.
912 */
913 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
914 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
915
916 /* This can happen: start_hw, stop_device */
917 if (!trans_pcie->txq)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200918 return 0;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200919
920 /* Unmap DMA from host system and free skb's */
921 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
922 txq_id++)
923 iwl_pcie_txq_unmap(trans, txq_id);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800924
925 return 0;
926}
927
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200928/*
929 * iwl_trans_tx_free - Free TXQ Context
930 *
931 * Destroy all TX DMA queues and structures
932 */
933void iwl_pcie_tx_free(struct iwl_trans *trans)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300934{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200935 int txq_id;
936 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300937
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200938 /* Tx queues */
939 if (trans_pcie->txq) {
940 for (txq_id = 0;
941 txq_id < trans->cfg->base_params->num_of_queues; txq_id++)
942 iwl_pcie_txq_free(trans, txq_id);
943 }
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300944
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200945 kfree(trans_pcie->txq);
946 trans_pcie->txq = NULL;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300947
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200948 iwl_pcie_free_dma_ptr(trans, &trans_pcie->kw);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300949
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200950 iwl_pcie_free_dma_ptr(trans, &trans_pcie->scd_bc_tbls);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300951}
952
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200953/*
954 * iwl_pcie_tx_alloc - allocate TX context
955 * Allocate all Tx DMA structures and initialize them
956 */
957static int iwl_pcie_tx_alloc(struct iwl_trans *trans)
958{
959 int ret;
960 int txq_id, slots_num;
961 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
962
963 u16 scd_bc_tbls_size = trans->cfg->base_params->num_of_queues *
964 sizeof(struct iwlagn_scd_bc_tbl);
965
966 /*It is not allowed to alloc twice, so warn when this happens.
967 * We cannot rely on the previous allocation, so free and fail */
968 if (WARN_ON(trans_pcie->txq)) {
969 ret = -EINVAL;
970 goto error;
971 }
972
973 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->scd_bc_tbls,
974 scd_bc_tbls_size);
975 if (ret) {
976 IWL_ERR(trans, "Scheduler BC Table allocation failed\n");
977 goto error;
978 }
979
980 /* Alloc keep-warm buffer */
981 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->kw, IWL_KW_SIZE);
982 if (ret) {
983 IWL_ERR(trans, "Keep Warm allocation failed\n");
984 goto error;
985 }
986
987 trans_pcie->txq = kcalloc(trans->cfg->base_params->num_of_queues,
988 sizeof(struct iwl_txq), GFP_KERNEL);
989 if (!trans_pcie->txq) {
990 IWL_ERR(trans, "Not enough memory for txq\n");
Dan Carpenter2ab9ba02013-08-11 02:03:21 +0300991 ret = -ENOMEM;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200992 goto error;
993 }
994
995 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
996 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
997 txq_id++) {
998 slots_num = (txq_id == trans_pcie->cmd_queue) ?
999 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
1000 ret = iwl_pcie_txq_alloc(trans, &trans_pcie->txq[txq_id],
1001 slots_num, txq_id);
1002 if (ret) {
1003 IWL_ERR(trans, "Tx %d queue alloc failed\n", txq_id);
1004 goto error;
1005 }
1006 }
1007
1008 return 0;
1009
1010error:
1011 iwl_pcie_tx_free(trans);
1012
1013 return ret;
1014}
1015int iwl_pcie_tx_init(struct iwl_trans *trans)
1016{
1017 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1018 int ret;
1019 int txq_id, slots_num;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001020 bool alloc = false;
1021
1022 if (!trans_pcie->txq) {
1023 ret = iwl_pcie_tx_alloc(trans);
1024 if (ret)
1025 goto error;
1026 alloc = true;
1027 }
1028
Emmanuel Grumbach7b70bd62013-12-11 10:22:28 +02001029 spin_lock(&trans_pcie->irq_lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001030
1031 /* Turn off all Tx DMA fifos */
Avri Altman680073b2014-07-14 09:40:27 +03001032 iwl_scd_deactivate_fifos(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001033
1034 /* Tell NIC where to find the "keep warm" buffer */
1035 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
1036 trans_pcie->kw.dma >> 4);
1037
Emmanuel Grumbach7b70bd62013-12-11 10:22:28 +02001038 spin_unlock(&trans_pcie->irq_lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001039
1040 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
1041 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
1042 txq_id++) {
1043 slots_num = (txq_id == trans_pcie->cmd_queue) ?
1044 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
1045 ret = iwl_pcie_txq_init(trans, &trans_pcie->txq[txq_id],
1046 slots_num, txq_id);
1047 if (ret) {
1048 IWL_ERR(trans, "Tx %d queue init failed\n", txq_id);
1049 goto error;
1050 }
1051 }
1052
Sara Sharonae797852016-06-30 16:36:24 +03001053 if (trans->cfg->use_tfh) {
Sara Sharone22744a2016-06-22 17:23:34 +03001054 iwl_write_direct32(trans, TFH_TRANSFER_MODE,
1055 TFH_TRANSFER_MAX_PENDING_REQ |
1056 TFH_CHUNK_SIZE_128 |
1057 TFH_CHUNK_SPLIT_MODE);
Sara Sharonae797852016-06-30 16:36:24 +03001058 return 0;
1059 }
Sara Sharone22744a2016-06-22 17:23:34 +03001060
Haim Dreyfuss94ce9e52015-06-14 11:17:07 +03001061 iwl_set_bits_prph(trans, SCD_GP_CTRL, SCD_GP_CTRL_AUTO_ACTIVE_MODE);
Emmanuel Grumbachcb6bb122015-01-25 10:36:31 +02001062 if (trans->cfg->base_params->num_of_queues > 20)
1063 iwl_set_bits_prph(trans, SCD_GP_CTRL,
1064 SCD_GP_CTRL_ENABLE_31_QUEUES);
1065
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001066 return 0;
1067error:
1068 /*Upon error, free only if we allocated something */
1069 if (alloc)
1070 iwl_pcie_tx_free(trans);
1071 return ret;
1072}
1073
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001074static inline void iwl_pcie_txq_progress(struct iwl_txq *txq)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001075{
Emmanuel Grumbache0b8d4052015-01-20 17:02:40 +02001076 lockdep_assert_held(&txq->lock);
1077
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001078 if (!txq->wd_timeout)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001079 return;
1080
1081 /*
Emmanuel Grumbache0b8d4052015-01-20 17:02:40 +02001082 * station is asleep and we send data - that must
1083 * be uAPSD or PS-Poll. Don't rearm the timer.
1084 */
1085 if (txq->frozen)
1086 return;
1087
1088 /*
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001089 * if empty delete timer, otherwise move timer forward
1090 * since we're making progress on this queue
1091 */
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001092 if (txq->read_ptr == txq->write_ptr)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001093 del_timer(&txq->stuck_timer);
1094 else
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001095 mod_timer(&txq->stuck_timer, jiffies + txq->wd_timeout);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001096}
1097
1098/* Frees buffers until index _not_ inclusive */
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001099void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,
1100 struct sk_buff_head *skbs)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001101{
1102 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1103 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
Johannes Berg83f32a42014-04-24 09:57:40 +02001104 int tfd_num = ssn & (TFD_QUEUE_SIZE_MAX - 1);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001105 int last_to_free;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001106
1107 /* This function is not meant to release cmd queue*/
1108 if (WARN_ON(txq_id == trans_pcie->cmd_queue))
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001109 return;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001110
Johannes Berg2bfb5092012-12-27 21:43:48 +01001111 spin_lock_bh(&txq->lock);
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001112
Emmanuel Grumbachb9676132013-06-13 11:45:59 +03001113 if (!txq->active) {
1114 IWL_DEBUG_TX_QUEUES(trans, "Q %d inactive - ignoring idx %d\n",
1115 txq_id, ssn);
1116 goto out;
1117 }
1118
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001119 if (txq->read_ptr == tfd_num)
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001120 goto out;
1121
1122 IWL_DEBUG_TX_REPLY(trans, "[Q %d] %d -> %d (%d)\n",
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001123 txq_id, txq->read_ptr, tfd_num, ssn);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001124
1125 /*Since we free until index _not_ inclusive, the one before index is
1126 * the last we will free. This one must be used */
Johannes Berg83f32a42014-04-24 09:57:40 +02001127 last_to_free = iwl_queue_dec_wrap(tfd_num);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001128
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001129 if (!iwl_queue_used(txq, last_to_free)) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001130 IWL_ERR(trans,
1131 "%s: Read index for DMA queue txq id (%d), last_to_free %d is out of range [0-%d] %d %d.\n",
Johannes Berg83f32a42014-04-24 09:57:40 +02001132 __func__, txq_id, last_to_free, TFD_QUEUE_SIZE_MAX,
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001133 txq->write_ptr, txq->read_ptr);
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001134 goto out;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001135 }
1136
1137 if (WARN_ON(!skb_queue_empty(skbs)))
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001138 goto out;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001139
1140 for (;
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001141 txq->read_ptr != tfd_num;
1142 txq->read_ptr = iwl_queue_inc_wrap(txq->read_ptr)) {
1143 struct sk_buff *skb = txq->entries[txq->read_ptr].skb;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001144
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03001145 if (WARN_ON_ONCE(!skb))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001146 continue;
1147
Johannes Berg21cb3222016-06-21 13:11:48 +02001148 iwl_pcie_free_tso_page(trans_pcie, skb);
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03001149
1150 __skb_queue_tail(skbs, skb);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001151
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001152 txq->entries[txq->read_ptr].skb = NULL;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001153
Sara Sharon4fe10bc2016-07-04 14:34:26 +03001154 if (!trans->cfg->use_tfh)
1155 iwl_pcie_txq_inval_byte_cnt_tbl(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001156
Johannes Berg98891752013-02-26 11:28:19 +01001157 iwl_pcie_txq_free_tfd(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001158 }
1159
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001160 iwl_pcie_txq_progress(txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001161
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001162 if (iwl_queue_space(txq) > txq->low_mark &&
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001163 test_bit(txq_id, trans_pcie->queue_stopped)) {
Emmanuel Grumbach685b3462016-02-23 11:34:17 +02001164 struct sk_buff_head overflow_skbs;
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001165
Emmanuel Grumbach685b3462016-02-23 11:34:17 +02001166 __skb_queue_head_init(&overflow_skbs);
1167 skb_queue_splice_init(&txq->overflow_q, &overflow_skbs);
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001168
1169 /*
1170 * This is tricky: we are in reclaim path which is non
1171 * re-entrant, so noone will try to take the access the
1172 * txq data from that path. We stopped tx, so we can't
1173 * have tx as well. Bottom line, we can unlock and re-lock
1174 * later.
1175 */
1176 spin_unlock_bh(&txq->lock);
1177
Emmanuel Grumbach685b3462016-02-23 11:34:17 +02001178 while (!skb_queue_empty(&overflow_skbs)) {
1179 struct sk_buff *skb = __skb_dequeue(&overflow_skbs);
Johannes Berg21cb3222016-06-21 13:11:48 +02001180 struct iwl_device_cmd *dev_cmd_ptr;
1181
1182 dev_cmd_ptr = *(void **)((u8 *)skb->cb +
1183 trans_pcie->dev_cmd_offs);
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001184
1185 /*
1186 * Note that we can very well be overflowing again.
1187 * In that case, iwl_queue_space will be small again
1188 * and we won't wake mac80211's queue.
1189 */
Johannes Berg21cb3222016-06-21 13:11:48 +02001190 iwl_trans_pcie_tx(trans, skb, dev_cmd_ptr, txq_id);
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001191 }
1192 spin_lock_bh(&txq->lock);
1193
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001194 if (iwl_queue_space(txq) > txq->low_mark)
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001195 iwl_wake_queue(trans, txq);
1196 }
Eliad Peller7616f332014-11-20 17:33:43 +02001197
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001198 if (txq->read_ptr == txq->write_ptr) {
1199 IWL_DEBUG_RPM(trans, "Q %d - last tx reclaimed\n", txq->id);
Luca Coelhoc24c7f52016-03-30 20:59:27 +03001200 iwl_trans_unref(trans);
Eliad Peller7616f332014-11-20 17:33:43 +02001201 }
1202
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001203out:
Johannes Berg2bfb5092012-12-27 21:43:48 +01001204 spin_unlock_bh(&txq->lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001205}
1206
Eliad Peller7616f332014-11-20 17:33:43 +02001207static int iwl_pcie_set_cmd_in_flight(struct iwl_trans *trans,
1208 const struct iwl_host_cmd *cmd)
Eliad Peller804d4c52014-11-20 14:36:26 +02001209{
1210 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1211 int ret;
1212
1213 lockdep_assert_held(&trans_pcie->reg_lock);
1214
Eliad Peller7616f332014-11-20 17:33:43 +02001215 if (!(cmd->flags & CMD_SEND_IN_IDLE) &&
1216 !trans_pcie->ref_cmd_in_flight) {
1217 trans_pcie->ref_cmd_in_flight = true;
1218 IWL_DEBUG_RPM(trans, "set ref_cmd_in_flight - ref\n");
Luca Coelhoc24c7f52016-03-30 20:59:27 +03001219 iwl_trans_ref(trans);
Eliad Peller7616f332014-11-20 17:33:43 +02001220 }
1221
Eliad Peller804d4c52014-11-20 14:36:26 +02001222 /*
1223 * wake up the NIC to make sure that the firmware will see the host
1224 * command - we will let the NIC sleep once all the host commands
1225 * returned. This needs to be done only on NICs that have
1226 * apmg_wake_up_wa set.
1227 */
Ilan Peerfc8a3502015-05-13 14:34:07 +03001228 if (trans->cfg->base_params->apmg_wake_up_wa &&
1229 !trans_pcie->cmd_hold_nic_awake) {
Eliad Peller804d4c52014-11-20 14:36:26 +02001230 __iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
1231 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Eliad Peller804d4c52014-11-20 14:36:26 +02001232
1233 ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
1234 CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN,
1235 (CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY |
1236 CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP),
1237 15000);
1238 if (ret < 0) {
1239 __iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
1240 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Eliad Peller804d4c52014-11-20 14:36:26 +02001241 IWL_ERR(trans, "Failed to wake NIC for hcmd\n");
1242 return -EIO;
1243 }
Ilan Peerfc8a3502015-05-13 14:34:07 +03001244 trans_pcie->cmd_hold_nic_awake = true;
Eliad Peller804d4c52014-11-20 14:36:26 +02001245 }
1246
1247 return 0;
1248}
1249
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001250/*
1251 * iwl_pcie_cmdq_reclaim - Reclaim TX command queue entries already Tx'd
1252 *
1253 * When FW advances 'R' index, all entries between old and new 'R' index
1254 * need to be reclaimed. As result, some free space forms. If there is
1255 * enough free space (> low mark), wake the stack that feeds us.
1256 */
1257static void iwl_pcie_cmdq_reclaim(struct iwl_trans *trans, int txq_id, int idx)
1258{
1259 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1260 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001261 unsigned long flags;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001262 int nfreed = 0;
1263
1264 lockdep_assert_held(&txq->lock);
1265
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001266 if ((idx >= TFD_QUEUE_SIZE_MAX) || (!iwl_queue_used(txq, idx))) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001267 IWL_ERR(trans,
1268 "%s: Read index for DMA queue txq id (%d), index %d is out of range [0-%d] %d %d.\n",
Johannes Berg83f32a42014-04-24 09:57:40 +02001269 __func__, txq_id, idx, TFD_QUEUE_SIZE_MAX,
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001270 txq->write_ptr, txq->read_ptr);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001271 return;
1272 }
1273
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001274 for (idx = iwl_queue_inc_wrap(idx); txq->read_ptr != idx;
1275 txq->read_ptr = iwl_queue_inc_wrap(txq->read_ptr)) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001276
1277 if (nfreed++ > 0) {
1278 IWL_ERR(trans, "HCMD skipped: index (%d) %d %d\n",
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001279 idx, txq->write_ptr, txq->read_ptr);
Liad Kaufman4c9706d2014-04-27 16:46:09 +03001280 iwl_force_nmi(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001281 }
1282 }
1283
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001284 if (txq->read_ptr == txq->write_ptr) {
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001285 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
Eliad Peller804d4c52014-11-20 14:36:26 +02001286 iwl_pcie_clear_cmd_in_flight(trans);
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001287 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1288 }
1289
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001290 iwl_pcie_txq_progress(txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001291}
1292
1293static int iwl_pcie_txq_set_ratid_map(struct iwl_trans *trans, u16 ra_tid,
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001294 u16 txq_id)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001295{
Johannes Berg20d3b642012-05-16 22:54:29 +02001296 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001297 u32 tbl_dw_addr;
1298 u32 tbl_dw;
1299 u16 scd_q2ratid;
1300
1301 scd_q2ratid = ra_tid & SCD_QUEUE_RA_TID_MAP_RATID_MSK;
1302
Emmanuel Grumbach105183b2011-08-25 23:11:02 -07001303 tbl_dw_addr = trans_pcie->scd_base_addr +
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001304 SCD_TRANS_TBL_OFFSET_QUEUE(txq_id);
1305
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001306 tbl_dw = iwl_trans_read_mem32(trans, tbl_dw_addr);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001307
1308 if (txq_id & 0x1)
1309 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
1310 else
1311 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
1312
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001313 iwl_trans_write_mem32(trans, tbl_dw_addr, tbl_dw);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001314
1315 return 0;
1316}
1317
Emmanuel Grumbachbd5f6a32013-04-28 14:05:22 +03001318/* Receiver address (actually, Rx station's index into station table),
1319 * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */
1320#define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
1321
Johannes Bergfea77952014-08-01 11:58:47 +02001322void iwl_trans_pcie_txq_enable(struct iwl_trans *trans, int txq_id, u16 ssn,
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001323 const struct iwl_trans_txq_scd_cfg *cfg,
1324 unsigned int wdg_timeout)
Johannes Berg70a18c52012-03-05 11:24:44 -08001325{
Johannes Berg9eae88f2012-03-15 13:26:52 -07001326 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001327 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
Johannes Bergd4578ea2014-08-01 12:17:40 +02001328 int fifo = -1;
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001329
Johannes Berg9eae88f2012-03-15 13:26:52 -07001330 if (test_and_set_bit(txq_id, trans_pcie->queue_used))
1331 WARN_ONCE(1, "queue %d already used - expect issues", txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001332
Sara Sharonae797852016-06-30 16:36:24 +03001333 if (cfg && trans->cfg->use_tfh)
1334 WARN_ONCE(1, "Expected no calls to SCD configuration");
1335
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001336 txq->wd_timeout = msecs_to_jiffies(wdg_timeout);
1337
Johannes Bergd4578ea2014-08-01 12:17:40 +02001338 if (cfg) {
1339 fifo = cfg->fifo;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001340
Avri Altman002a9e22014-07-24 19:25:10 +03001341 /* Disable the scheduler prior configuring the cmd queue */
Emmanuel Grumbach3a736bc2014-09-10 11:16:41 +03001342 if (txq_id == trans_pcie->cmd_queue &&
1343 trans_pcie->scd_set_active)
Avri Altman002a9e22014-07-24 19:25:10 +03001344 iwl_scd_enable_set_active(trans, 0);
1345
Johannes Bergd4578ea2014-08-01 12:17:40 +02001346 /* Stop this Tx queue before configuring it */
1347 iwl_scd_txq_set_inactive(trans, txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001348
Johannes Bergd4578ea2014-08-01 12:17:40 +02001349 /* Set this queue as a chain-building queue unless it is CMD */
1350 if (txq_id != trans_pcie->cmd_queue)
1351 iwl_scd_txq_set_chain(trans, txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001352
Johannes Berg64ba8932014-08-01 13:33:46 +02001353 if (cfg->aggregate) {
Johannes Bergd4578ea2014-08-01 12:17:40 +02001354 u16 ra_tid = BUILD_RAxTID(cfg->sta_id, cfg->tid);
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001355
Johannes Bergd4578ea2014-08-01 12:17:40 +02001356 /* Map receiver-address / traffic-ID to this queue */
1357 iwl_pcie_txq_set_ratid_map(trans, ra_tid, txq_id);
Emmanuel Grumbachf4772522013-07-24 14:15:21 +03001358
Johannes Bergd4578ea2014-08-01 12:17:40 +02001359 /* enable aggregations for the queue */
1360 iwl_scd_txq_enable_agg(trans, txq_id);
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001361 txq->ampdu = true;
Johannes Bergd4578ea2014-08-01 12:17:40 +02001362 } else {
1363 /*
1364 * disable aggregations for the queue, this will also
1365 * make the ra_tid mapping configuration irrelevant
1366 * since it is now a non-AGG queue.
1367 */
1368 iwl_scd_txq_disable_agg(trans, txq_id);
1369
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001370 ssn = txq->read_ptr;
Johannes Bergd4578ea2014-08-01 12:17:40 +02001371 }
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001372 }
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001373
1374 /* Place first TFD at index corresponding to start sequence number.
1375 * Assumes that ssn_idx is valid (!= 0xFFF) */
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001376 txq->read_ptr = (ssn & 0xff);
1377 txq->write_ptr = (ssn & 0xff);
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +02001378 iwl_write_direct32(trans, HBUS_TARG_WRPTR,
1379 (ssn & 0xff) | (txq_id << 8));
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001380
Johannes Bergd4578ea2014-08-01 12:17:40 +02001381 if (cfg) {
1382 u8 frame_limit = cfg->frame_limit;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001383
Johannes Bergd4578ea2014-08-01 12:17:40 +02001384 iwl_write_prph(trans, SCD_QUEUE_RDPTR(txq_id), ssn);
1385
1386 /* Set up Tx window size and frame limit for this queue */
1387 iwl_trans_write_mem32(trans, trans_pcie->scd_base_addr +
1388 SCD_CONTEXT_QUEUE_OFFSET(txq_id), 0);
1389 iwl_trans_write_mem32(trans,
1390 trans_pcie->scd_base_addr +
Johannes Berg9eae88f2012-03-15 13:26:52 -07001391 SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
1392 ((frame_limit << SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
Johannes Bergd4578ea2014-08-01 12:17:40 +02001393 SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
Johannes Berg9eae88f2012-03-15 13:26:52 -07001394 ((frame_limit << SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
Johannes Bergd4578ea2014-08-01 12:17:40 +02001395 SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001396
Johannes Bergd4578ea2014-08-01 12:17:40 +02001397 /* Set up status area in SRAM, map to Tx DMA/FIFO, activate */
1398 iwl_write_prph(trans, SCD_QUEUE_STATUS_BITS(txq_id),
1399 (1 << SCD_QUEUE_STTS_REG_POS_ACTIVE) |
1400 (cfg->fifo << SCD_QUEUE_STTS_REG_POS_TXF) |
1401 (1 << SCD_QUEUE_STTS_REG_POS_WSL) |
1402 SCD_QUEUE_STTS_REG_MSK);
Avri Altman002a9e22014-07-24 19:25:10 +03001403
1404 /* enable the scheduler for this queue (only) */
Emmanuel Grumbach3a736bc2014-09-10 11:16:41 +03001405 if (txq_id == trans_pcie->cmd_queue &&
1406 trans_pcie->scd_set_active)
Avri Altman002a9e22014-07-24 19:25:10 +03001407 iwl_scd_enable_set_active(trans, BIT(txq_id));
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +02001408
1409 IWL_DEBUG_TX_QUEUES(trans,
1410 "Activate queue %d on FIFO %d WrPtr: %d\n",
1411 txq_id, fifo, ssn & 0xff);
1412 } else {
1413 IWL_DEBUG_TX_QUEUES(trans,
1414 "Activate queue %d WrPtr: %d\n",
1415 txq_id, ssn & 0xff);
Johannes Bergd4578ea2014-08-01 12:17:40 +02001416 }
1417
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001418 txq->active = true;
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001419}
1420
Liad Kaufman42db09c2016-05-02 14:01:14 +03001421void iwl_trans_pcie_txq_set_shared_mode(struct iwl_trans *trans, u32 txq_id,
1422 bool shared_mode)
1423{
1424 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1425 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
1426
1427 txq->ampdu = !shared_mode;
1428}
1429
Sara Sharon8aacf4b2016-07-04 15:40:11 +03001430dma_addr_t iwl_trans_pcie_get_txq_byte_table(struct iwl_trans *trans, int txq)
1431{
1432 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1433
1434 return trans_pcie->scd_bc_tbls.dma +
1435 txq * sizeof(struct iwlagn_scd_bc_tbl);
1436}
1437
Johannes Bergd4578ea2014-08-01 12:17:40 +02001438void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int txq_id,
1439 bool configure_scd)
Emmanuel Grumbach288712a2011-08-25 23:11:25 -07001440{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001441 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach986ea6c2012-09-30 16:25:43 +02001442 u32 stts_addr = trans_pcie->scd_base_addr +
1443 SCD_TX_STTS_QUEUE_OFFSET(txq_id);
1444 static const u32 zero_val[4] = {};
Emmanuel Grumbach288712a2011-08-25 23:11:25 -07001445
Emmanuel Grumbache0b8d4052015-01-20 17:02:40 +02001446 trans_pcie->txq[txq_id].frozen_expiry_remainder = 0;
1447 trans_pcie->txq[txq_id].frozen = false;
1448
Emmanuel Grumbachfba1c622013-12-19 22:19:17 +02001449 /*
1450 * Upon HW Rfkill - we stop the device, and then stop the queues
1451 * in the op_mode. Just for the sake of the simplicity of the op_mode,
1452 * allow the op_mode to call txq_disable after it already called
1453 * stop_device.
1454 */
Johannes Berg9eae88f2012-03-15 13:26:52 -07001455 if (!test_and_clear_bit(txq_id, trans_pcie->queue_used)) {
Emmanuel Grumbachfba1c622013-12-19 22:19:17 +02001456 WARN_ONCE(test_bit(STATUS_DEVICE_ENABLED, &trans->status),
1457 "queue %d not used", txq_id);
Johannes Berg9eae88f2012-03-15 13:26:52 -07001458 return;
Emmanuel Grumbachbc237732011-11-21 13:25:31 +02001459 }
1460
Sara Sharonae797852016-06-30 16:36:24 +03001461 if (configure_scd && trans->cfg->use_tfh)
1462 WARN_ONCE(1, "Expected no calls to SCD configuration");
1463
Johannes Bergd4578ea2014-08-01 12:17:40 +02001464 if (configure_scd) {
1465 iwl_scd_txq_set_inactive(trans, txq_id);
Emmanuel Grumbachac928f82012-10-14 16:36:36 +02001466
Johannes Bergd4578ea2014-08-01 12:17:40 +02001467 iwl_trans_write_mem(trans, stts_addr, (void *)zero_val,
1468 ARRAY_SIZE(zero_val));
1469 }
Emmanuel Grumbach986ea6c2012-09-30 16:25:43 +02001470
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001471 iwl_pcie_txq_unmap(trans, txq_id);
Johannes Berg68972c42013-06-11 19:05:27 +02001472 trans_pcie->txq[txq_id].ampdu = false;
Emmanuel Grumbach6c3fd3f2012-10-18 12:38:37 +02001473
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001474 IWL_DEBUG_TX_QUEUES(trans, "Deactivate queue %d\n", txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001475}
1476
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001477/*************** HOST COMMAND QUEUE FUNCTIONS *****/
1478
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001479/*
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001480 * iwl_pcie_enqueue_hcmd - enqueue a uCode command
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001481 * @priv: device private data point
Eliad Pellere89044d2013-07-16 17:33:26 +03001482 * @cmd: a pointer to the ucode command structure
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001483 *
Eliad Pellere89044d2013-07-16 17:33:26 +03001484 * The function returns < 0 values to indicate the operation
1485 * failed. On success, it returns the index (>= 0) of command in the
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001486 * command queue.
1487 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001488static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,
1489 struct iwl_host_cmd *cmd)
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001490{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001491 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001492 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
Johannes Bergc2acea82009-07-24 11:13:05 -07001493 struct iwl_device_cmd *out_cmd;
1494 struct iwl_cmd_meta *out_meta;
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001495 unsigned long flags;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001496 void *dup_buf = NULL;
Tomas Winklerf3674222008-08-04 16:00:44 +08001497 dma_addr_t phys_addr;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001498 int idx;
Sara Sharon8de437c2016-06-09 17:56:38 +03001499 u16 copy_size, cmd_size, tb0_size;
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001500 bool had_nocopy = false;
Aviya Erenfeldab021652015-06-09 16:45:52 +03001501 u8 group_id = iwl_cmd_groupid(cmd->id);
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001502 int i, ret;
Emmanuel Grumbach96791422012-07-24 01:58:32 +03001503 u32 cmd_pos;
Johannes Berg1afbfb62013-02-26 11:32:26 +01001504 const u8 *cmddata[IWL_MAX_CMD_TBS_PER_TFD];
1505 u16 cmdlen[IWL_MAX_CMD_TBS_PER_TFD];
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001506
Sara Sharon5b887922016-08-15 17:36:47 +03001507 if (WARN(!trans->wide_cmd_header &&
Johannes Berg88742c92015-06-30 15:31:22 +02001508 group_id > IWL_ALWAYS_LONG_GROUP,
Aviya Erenfeldab021652015-06-09 16:45:52 +03001509 "unsupported wide command %#x\n", cmd->id))
1510 return -EINVAL;
1511
1512 if (group_id != 0) {
1513 copy_size = sizeof(struct iwl_cmd_header_wide);
1514 cmd_size = sizeof(struct iwl_cmd_header_wide);
1515 } else {
1516 copy_size = sizeof(struct iwl_cmd_header);
1517 cmd_size = sizeof(struct iwl_cmd_header);
1518 }
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001519
1520 /* need one for the header if the first is NOCOPY */
Johannes Berg1afbfb62013-02-26 11:32:26 +01001521 BUILD_BUG_ON(IWL_MAX_CMD_TBS_PER_TFD > IWL_NUM_OF_TBS - 1);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001522
Johannes Berg1afbfb62013-02-26 11:32:26 +01001523 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg8a964f42013-02-25 16:01:34 +01001524 cmddata[i] = cmd->data[i];
1525 cmdlen[i] = cmd->len[i];
1526
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001527 if (!cmd->len[i])
1528 continue;
Johannes Berg8a964f42013-02-25 16:01:34 +01001529
Sara Sharon8de437c2016-06-09 17:56:38 +03001530 /* need at least IWL_FIRST_TB_SIZE copied */
1531 if (copy_size < IWL_FIRST_TB_SIZE) {
1532 int copy = IWL_FIRST_TB_SIZE - copy_size;
Johannes Berg8a964f42013-02-25 16:01:34 +01001533
1534 if (copy > cmdlen[i])
1535 copy = cmdlen[i];
1536 cmdlen[i] -= copy;
1537 cmddata[i] += copy;
1538 copy_size += copy;
1539 }
1540
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001541 if (cmd->dataflags[i] & IWL_HCMD_DFL_NOCOPY) {
1542 had_nocopy = true;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001543 if (WARN_ON(cmd->dataflags[i] & IWL_HCMD_DFL_DUP)) {
1544 idx = -EINVAL;
1545 goto free_dup_buf;
1546 }
1547 } else if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP) {
1548 /*
1549 * This is also a chunk that isn't copied
1550 * to the static buffer so set had_nocopy.
1551 */
1552 had_nocopy = true;
1553
1554 /* only allowed once */
1555 if (WARN_ON(dup_buf)) {
1556 idx = -EINVAL;
1557 goto free_dup_buf;
1558 }
1559
Johannes Berg8a964f42013-02-25 16:01:34 +01001560 dup_buf = kmemdup(cmddata[i], cmdlen[i],
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001561 GFP_ATOMIC);
1562 if (!dup_buf)
1563 return -ENOMEM;
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001564 } else {
1565 /* NOCOPY must not be followed by normal! */
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001566 if (WARN_ON(had_nocopy)) {
1567 idx = -EINVAL;
1568 goto free_dup_buf;
1569 }
Johannes Berg8a964f42013-02-25 16:01:34 +01001570 copy_size += cmdlen[i];
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001571 }
1572 cmd_size += cmd->len[i];
1573 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001574
Johannes Berg3e41ace2011-04-18 09:12:37 -07001575 /*
1576 * If any of the command structures end up being larger than
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001577 * the TFD_MAX_PAYLOAD_SIZE and they aren't dynamically
1578 * allocated into separate TFDs, then we will need to
1579 * increase the size of the buffers.
Johannes Berg3e41ace2011-04-18 09:12:37 -07001580 */
Johannes Berg2a79e452012-09-26 13:32:13 +02001581 if (WARN(copy_size > TFD_MAX_PAYLOAD_SIZE,
1582 "Command %s (%#x) is too large (%d bytes)\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001583 iwl_get_cmd_string(trans, cmd->id),
1584 cmd->id, copy_size)) {
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001585 idx = -EINVAL;
1586 goto free_dup_buf;
1587 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001588
Johannes Berg015c15e2012-03-05 11:24:24 -08001589 spin_lock_bh(&txq->lock);
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001590
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001591 if (iwl_queue_space(txq) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
Johannes Berg015c15e2012-03-05 11:24:24 -08001592 spin_unlock_bh(&txq->lock);
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001593
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001594 IWL_ERR(trans, "No space in command queue\n");
Johannes Berg0e781842012-03-06 13:30:49 -08001595 iwl_op_mode_cmd_queue_full(trans->op_mode);
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001596 idx = -ENOSPC;
1597 goto free_dup_buf;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001598 }
1599
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001600 idx = get_cmd_index(txq, txq->write_ptr);
Johannes Bergbf8440e2012-03-19 17:12:06 +01001601 out_cmd = txq->entries[idx].cmd;
1602 out_meta = &txq->entries[idx].meta;
Johannes Bergc2acea82009-07-24 11:13:05 -07001603
Daniel C Halperin8ce73f32009-07-31 14:28:06 -07001604 memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */
Johannes Bergc2acea82009-07-24 11:13:05 -07001605 if (cmd->flags & CMD_WANT_SKB)
1606 out_meta->source = cmd;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001607
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001608 /* set up the header */
Aviya Erenfeldab021652015-06-09 16:45:52 +03001609 if (group_id != 0) {
1610 out_cmd->hdr_wide.cmd = iwl_cmd_opcode(cmd->id);
1611 out_cmd->hdr_wide.group_id = group_id;
1612 out_cmd->hdr_wide.version = iwl_cmd_version(cmd->id);
1613 out_cmd->hdr_wide.length =
1614 cpu_to_le16(cmd_size -
1615 sizeof(struct iwl_cmd_header_wide));
1616 out_cmd->hdr_wide.reserved = 0;
1617 out_cmd->hdr_wide.sequence =
1618 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001619 INDEX_TO_SEQ(txq->write_ptr));
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001620
Aviya Erenfeldab021652015-06-09 16:45:52 +03001621 cmd_pos = sizeof(struct iwl_cmd_header_wide);
1622 copy_size = sizeof(struct iwl_cmd_header_wide);
1623 } else {
1624 out_cmd->hdr.cmd = iwl_cmd_opcode(cmd->id);
1625 out_cmd->hdr.sequence =
1626 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001627 INDEX_TO_SEQ(txq->write_ptr));
Aviya Erenfeldab021652015-06-09 16:45:52 +03001628 out_cmd->hdr.group_id = 0;
1629
1630 cmd_pos = sizeof(struct iwl_cmd_header);
1631 copy_size = sizeof(struct iwl_cmd_header);
1632 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001633
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001634 /* and copy the data that needs to be copied */
Johannes Berg1afbfb62013-02-26 11:32:26 +01001635 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg4d075002014-04-24 10:41:31 +02001636 int copy;
Johannes Berg8a964f42013-02-25 16:01:34 +01001637
Emmanuel Grumbachcc904c72013-03-14 08:35:06 +02001638 if (!cmd->len[i])
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001639 continue;
Johannes Berg8a964f42013-02-25 16:01:34 +01001640
Johannes Berg4d075002014-04-24 10:41:31 +02001641 /* copy everything if not nocopy/dup */
1642 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1643 IWL_HCMD_DFL_DUP))) {
1644 copy = cmd->len[i];
1645
1646 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1647 cmd_pos += copy;
1648 copy_size += copy;
1649 continue;
1650 }
1651
1652 /*
Sara Sharon8de437c2016-06-09 17:56:38 +03001653 * Otherwise we need at least IWL_FIRST_TB_SIZE copied
1654 * in total (for bi-directional DMA), but copy up to what
Johannes Berg4d075002014-04-24 10:41:31 +02001655 * we can fit into the payload for debug dump purposes.
1656 */
1657 copy = min_t(int, TFD_MAX_PAYLOAD_SIZE - cmd_pos, cmd->len[i]);
1658
1659 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1660 cmd_pos += copy;
1661
1662 /* However, treat copy_size the proper way, we need it below */
Sara Sharon8de437c2016-06-09 17:56:38 +03001663 if (copy_size < IWL_FIRST_TB_SIZE) {
1664 copy = IWL_FIRST_TB_SIZE - copy_size;
Johannes Berg8a964f42013-02-25 16:01:34 +01001665
1666 if (copy > cmd->len[i])
1667 copy = cmd->len[i];
Johannes Berg8a964f42013-02-25 16:01:34 +01001668 copy_size += copy;
1669 }
Emmanuel Grumbach96791422012-07-24 01:58:32 +03001670 }
1671
Johannes Bergd9fb6462012-03-26 08:23:39 -07001672 IWL_DEBUG_HC(trans,
Aviya Erenfeldab021652015-06-09 16:45:52 +03001673 "Sending command %s (%.2x.%.2x), seq: 0x%04X, %d bytes at %d[%d]:%d\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001674 iwl_get_cmd_string(trans, cmd->id),
Aviya Erenfeldab021652015-06-09 16:45:52 +03001675 group_id, out_cmd->hdr.cmd,
1676 le16_to_cpu(out_cmd->hdr.sequence),
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001677 cmd_size, txq->write_ptr, idx, trans_pcie->cmd_queue);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001678
Sara Sharon8de437c2016-06-09 17:56:38 +03001679 /* start the TFD with the minimum copy bytes */
1680 tb0_size = min_t(int, copy_size, IWL_FIRST_TB_SIZE);
1681 memcpy(&txq->first_tb_bufs[idx], &out_cmd->hdr, tb0_size);
Johannes Berg38c0f3342013-02-27 13:18:50 +01001682 iwl_pcie_txq_build_tfd(trans, txq,
Sara Sharon8de437c2016-06-09 17:56:38 +03001683 iwl_pcie_get_first_tb_dma(txq, idx),
1684 tb0_size, true);
Johannes Berg8a964f42013-02-25 16:01:34 +01001685
Johannes Berg38c0f3342013-02-27 13:18:50 +01001686 /* map first command fragment, if any remains */
Sara Sharon8de437c2016-06-09 17:56:38 +03001687 if (copy_size > tb0_size) {
Johannes Berg38c0f3342013-02-27 13:18:50 +01001688 phys_addr = dma_map_single(trans->dev,
Sara Sharon8de437c2016-06-09 17:56:38 +03001689 ((u8 *)&out_cmd->hdr) + tb0_size,
1690 copy_size - tb0_size,
Johannes Berg38c0f3342013-02-27 13:18:50 +01001691 DMA_TO_DEVICE);
1692 if (dma_mapping_error(trans->dev, phys_addr)) {
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001693 iwl_pcie_tfd_unmap(trans, out_meta, txq,
1694 txq->write_ptr);
Johannes Berg38c0f3342013-02-27 13:18:50 +01001695 idx = -ENOMEM;
1696 goto out;
1697 }
1698
1699 iwl_pcie_txq_build_tfd(trans, txq, phys_addr,
Sara Sharon8de437c2016-06-09 17:56:38 +03001700 copy_size - tb0_size, false);
Johannes Berg2c46f722011-04-28 07:27:10 -07001701 }
1702
Johannes Berg8a964f42013-02-25 16:01:34 +01001703 /* map the remaining (adjusted) nocopy/dup fragments */
Johannes Berg1afbfb62013-02-26 11:32:26 +01001704 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg8a964f42013-02-25 16:01:34 +01001705 const void *data = cmddata[i];
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001706
Johannes Berg8a964f42013-02-25 16:01:34 +01001707 if (!cmdlen[i])
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001708 continue;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001709 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1710 IWL_HCMD_DFL_DUP)))
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001711 continue;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001712 if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP)
1713 data = dup_buf;
1714 phys_addr = dma_map_single(trans->dev, (void *)data,
Johannes Berg98891752013-02-26 11:28:19 +01001715 cmdlen[i], DMA_TO_DEVICE);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001716 if (dma_mapping_error(trans->dev, phys_addr)) {
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001717 iwl_pcie_tfd_unmap(trans, out_meta, txq,
1718 txq->write_ptr);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001719 idx = -ENOMEM;
1720 goto out;
1721 }
1722
Johannes Berg6d6e68f2014-04-23 19:00:56 +02001723 iwl_pcie_txq_build_tfd(trans, txq, phys_addr, cmdlen[i], false);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001724 }
Reinette Chatredf833b12009-04-21 10:55:48 -07001725
Sara Sharon3cd19802016-06-23 16:31:40 +03001726 BUILD_BUG_ON(IWL_TFH_NUM_TBS > sizeof(out_meta->tbs) * BITS_PER_BYTE);
Emmanuel Grumbachafaf6b52011-07-08 08:46:09 -07001727 out_meta->flags = cmd->flags;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001728 if (WARN_ON_ONCE(txq->entries[idx].free_buf))
Johannes Berg5d4185a2014-09-09 21:16:06 +02001729 kzfree(txq->entries[idx].free_buf);
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001730 txq->entries[idx].free_buf = dup_buf;
Johannes Berg2c46f722011-04-28 07:27:10 -07001731
Aviya Erenfeldab021652015-06-09 16:45:52 +03001732 trace_iwlwifi_dev_hcmd(trans->dev, cmd, cmd_size, &out_cmd->hdr_wide);
Reinette Chatredf833b12009-04-21 10:55:48 -07001733
Johannes Berg7c5ba4a2012-04-09 17:46:54 -07001734 /* start timer if queue currently empty */
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001735 if (txq->read_ptr == txq->write_ptr && txq->wd_timeout)
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001736 mod_timer(&txq->stuck_timer, jiffies + txq->wd_timeout);
Johannes Berg7c5ba4a2012-04-09 17:46:54 -07001737
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001738 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
Eliad Peller7616f332014-11-20 17:33:43 +02001739 ret = iwl_pcie_set_cmd_in_flight(trans, cmd);
Eliad Peller804d4c52014-11-20 14:36:26 +02001740 if (ret < 0) {
1741 idx = ret;
1742 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1743 goto out;
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001744 }
1745
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001746 /* Increment and update queue's write index */
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001747 txq->write_ptr = iwl_queue_inc_wrap(txq->write_ptr);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001748 iwl_pcie_txq_inc_wr_ptr(trans, txq);
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001749
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001750 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1751
Johannes Berg2c46f722011-04-28 07:27:10 -07001752 out:
Johannes Berg015c15e2012-03-05 11:24:24 -08001753 spin_unlock_bh(&txq->lock);
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001754 free_dup_buf:
1755 if (idx < 0)
1756 kfree(dup_buf);
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001757 return idx;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001758}
1759
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001760/*
1761 * iwl_pcie_hcmd_complete - Pull unused buffers off the queue and reclaim them
Tomas Winkler17b88922008-05-29 16:35:12 +08001762 * @rxb: Rx buffer to reclaim
Tomas Winkler17b88922008-05-29 16:35:12 +08001763 */
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001764void iwl_pcie_hcmd_complete(struct iwl_trans *trans,
Johannes Bergf7e64692015-06-23 21:58:17 +02001765 struct iwl_rx_cmd_buffer *rxb)
Tomas Winkler17b88922008-05-29 16:35:12 +08001766{
Zhu Yi2f301222009-10-09 17:19:45 +08001767 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler17b88922008-05-29 16:35:12 +08001768 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
Sharon Dvir39bdb172015-10-15 18:18:09 +03001769 u8 group_id = iwl_cmd_groupid(pkt->hdr.group_id);
1770 u32 cmd_id;
Tomas Winkler17b88922008-05-29 16:35:12 +08001771 int txq_id = SEQ_TO_QUEUE(sequence);
1772 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler17b88922008-05-29 16:35:12 +08001773 int cmd_index;
Johannes Bergc2acea82009-07-24 11:13:05 -07001774 struct iwl_device_cmd *cmd;
1775 struct iwl_cmd_meta *meta;
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001776 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001777 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
Tomas Winkler17b88922008-05-29 16:35:12 +08001778
1779 /* If a Tx command is being handled and it isn't in the actual
1780 * command queue then there a command routing bug has been introduced
1781 * in the queue management code. */
Meenakshi Venkataramanc6f600f2012-03-08 11:29:12 -08001782 if (WARN(txq_id != trans_pcie->cmd_queue,
Johannes Berg13bb9482010-08-23 10:46:33 +02001783 "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n",
Johannes Berg20d3b642012-05-16 22:54:29 +02001784 txq_id, trans_pcie->cmd_queue, sequence,
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001785 trans_pcie->txq[trans_pcie->cmd_queue].read_ptr,
1786 trans_pcie->txq[trans_pcie->cmd_queue].write_ptr)) {
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -07001787 iwl_print_hex_error(trans, pkt, 32);
Johannes Berg55d6a3c2008-09-23 19:18:43 +02001788 return;
Winkler, Tomas01ef93232008-11-07 09:58:45 -08001789 }
Tomas Winkler17b88922008-05-29 16:35:12 +08001790
Johannes Berg2bfb5092012-12-27 21:43:48 +01001791 spin_lock_bh(&txq->lock);
Johannes Berg015c15e2012-03-05 11:24:24 -08001792
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001793 cmd_index = get_cmd_index(txq, index);
Johannes Bergbf8440e2012-03-19 17:12:06 +01001794 cmd = txq->entries[cmd_index].cmd;
1795 meta = &txq->entries[cmd_index].meta;
Sharon Dvir39bdb172015-10-15 18:18:09 +03001796 cmd_id = iwl_cmd_id(cmd->hdr.cmd, group_id, 0);
Tomas Winkler17b88922008-05-29 16:35:12 +08001797
Sara Sharon6983ba62016-06-26 13:17:56 +03001798 iwl_pcie_tfd_unmap(trans, meta, txq, index);
Reinette Chatrec33de622009-10-30 14:36:10 -07001799
Tomas Winkler17b88922008-05-29 16:35:12 +08001800 /* Input error checking is done when commands are added to queue. */
Johannes Bergc2acea82009-07-24 11:13:05 -07001801 if (meta->flags & CMD_WANT_SKB) {
Johannes Berg48a2d662012-03-05 11:24:39 -08001802 struct page *p = rxb_steal_page(rxb);
Stanislaw Gruszka2624e962011-04-20 16:02:58 +02001803
Johannes Berg65b94a42012-03-05 11:24:38 -08001804 meta->source->resp_pkt = pkt;
1805 meta->source->_rx_page_addr = (unsigned long)page_address(p);
Johannes Bergb2cf4102012-04-09 17:46:51 -07001806 meta->source->_rx_page_order = trans_pcie->rx_page_order;
Stanislaw Gruszka2624e962011-04-20 16:02:58 +02001807 }
Tomas Winkler17b88922008-05-29 16:35:12 +08001808
Emmanuel Grumbachdcbb4742015-11-24 15:17:37 +02001809 if (meta->flags & CMD_WANT_ASYNC_CALLBACK)
1810 iwl_op_mode_async_cb(trans->op_mode, cmd);
1811
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001812 iwl_pcie_cmdq_reclaim(trans, txq_id, index);
Tomas Winkler17b88922008-05-29 16:35:12 +08001813
Johannes Bergc2acea82009-07-24 11:13:05 -07001814 if (!(meta->flags & CMD_ASYNC)) {
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001815 if (!test_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status)) {
Wey-Yi Guy05c89b92011-10-10 07:26:48 -07001816 IWL_WARN(trans,
1817 "HCMD_ACTIVE already clear for command %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001818 iwl_get_cmd_string(trans, cmd_id));
Wey-Yi Guy05c89b92011-10-10 07:26:48 -07001819 }
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001820 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001821 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001822 iwl_get_cmd_string(trans, cmd_id));
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001823 wake_up(&trans_pcie->wait_command_queue);
Tomas Winkler17b88922008-05-29 16:35:12 +08001824 }
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001825
Luciano Coelho4cbb8e502015-08-18 16:02:38 +03001826 if (meta->flags & CMD_MAKE_TRANS_IDLE) {
1827 IWL_DEBUG_INFO(trans, "complete %s - mark trans as idle\n",
1828 iwl_get_cmd_string(trans, cmd->hdr.cmd));
1829 set_bit(STATUS_TRANS_IDLE, &trans->status);
1830 wake_up(&trans_pcie->d0i3_waitq);
1831 }
1832
1833 if (meta->flags & CMD_WAKE_UP_TRANS) {
1834 IWL_DEBUG_INFO(trans, "complete %s - clear trans idle flag\n",
1835 iwl_get_cmd_string(trans, cmd->hdr.cmd));
1836 clear_bit(STATUS_TRANS_IDLE, &trans->status);
1837 wake_up(&trans_pcie->d0i3_waitq);
1838 }
1839
Zhu Yidd487442010-03-22 02:28:41 -07001840 meta->flags = 0;
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001841
Johannes Berg2bfb5092012-12-27 21:43:48 +01001842 spin_unlock_bh(&txq->lock);
Tomas Winkler17b88922008-05-29 16:35:12 +08001843}
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001844
Johannes Berg9439eac2013-10-09 09:59:25 +02001845#define HOST_COMPLETE_TIMEOUT (2 * HZ)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001846
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001847static int iwl_pcie_send_hcmd_async(struct iwl_trans *trans,
1848 struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001849{
1850 int ret;
1851
1852 /* An asynchronous command can not expect an SKB to be set. */
1853 if (WARN_ON(cmd->flags & CMD_WANT_SKB))
1854 return -EINVAL;
1855
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001856 ret = iwl_pcie_enqueue_hcmd(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001857 if (ret < 0) {
Johannes Berg721c32f2012-03-06 13:30:40 -08001858 IWL_ERR(trans,
Todd Previteb36b1102011-11-10 06:55:02 -08001859 "Error sending %s: enqueue_hcmd failed: %d\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001860 iwl_get_cmd_string(trans, cmd->id), ret);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001861 return ret;
1862 }
1863 return 0;
1864}
1865
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001866static int iwl_pcie_send_hcmd_sync(struct iwl_trans *trans,
1867 struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001868{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001869 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001870 int cmd_idx;
1871 int ret;
1872
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001873 IWL_DEBUG_INFO(trans, "Attempting to send sync command %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001874 iwl_get_cmd_string(trans, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001875
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001876 if (WARN(test_and_set_bit(STATUS_SYNC_HCMD_ACTIVE,
1877 &trans->status),
Johannes Bergbcbb8c92013-10-28 15:50:55 +01001878 "Command %s: a command is already active!\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001879 iwl_get_cmd_string(trans, cmd->id)))
Johannes Berg2cc39c92012-03-06 13:30:41 -08001880 return -EIO;
Johannes Berg2cc39c92012-03-06 13:30:41 -08001881
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001882 IWL_DEBUG_INFO(trans, "Setting HCMD_ACTIVE for command %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001883 iwl_get_cmd_string(trans, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001884
Luca Coelho71b12302016-03-11 12:12:16 +02001885 if (pm_runtime_suspended(&trans_pcie->pci_dev->dev)) {
1886 ret = wait_event_timeout(trans_pcie->d0i3_waitq,
1887 pm_runtime_active(&trans_pcie->pci_dev->dev),
1888 msecs_to_jiffies(IWL_TRANS_IDLE_TIMEOUT));
1889 if (!ret) {
1890 IWL_ERR(trans, "Timeout exiting D0i3 before hcmd\n");
1891 return -ETIMEDOUT;
1892 }
1893 }
1894
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001895 cmd_idx = iwl_pcie_enqueue_hcmd(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001896 if (cmd_idx < 0) {
1897 ret = cmd_idx;
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001898 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
Johannes Berg721c32f2012-03-06 13:30:40 -08001899 IWL_ERR(trans,
Todd Previteb36b1102011-11-10 06:55:02 -08001900 "Error sending %s: enqueue_hcmd failed: %d\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001901 iwl_get_cmd_string(trans, cmd->id), ret);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001902 return ret;
1903 }
1904
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001905 ret = wait_event_timeout(trans_pcie->wait_command_queue,
1906 !test_bit(STATUS_SYNC_HCMD_ACTIVE,
1907 &trans->status),
1908 HOST_COMPLETE_TIMEOUT);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001909 if (!ret) {
Johannes Berg6dde8c42013-10-31 18:30:38 +01001910 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
Wey-Yi Guyd10630a2011-10-10 07:26:46 -07001911
Johannes Berg6dde8c42013-10-31 18:30:38 +01001912 IWL_ERR(trans, "Error sending %s: time out after %dms.\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001913 iwl_get_cmd_string(trans, cmd->id),
Johannes Berg6dde8c42013-10-31 18:30:38 +01001914 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001915
Johannes Berg6dde8c42013-10-31 18:30:38 +01001916 IWL_ERR(trans, "Current CMD queue read_ptr %d write_ptr %d\n",
Sara Sharonbb98ecd2016-07-07 18:17:45 +03001917 txq->read_ptr, txq->write_ptr);
Wey-Yi Guyd10630a2011-10-10 07:26:46 -07001918
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001919 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
Johannes Berg6dde8c42013-10-31 18:30:38 +01001920 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001921 iwl_get_cmd_string(trans, cmd->id));
Johannes Berg6dde8c42013-10-31 18:30:38 +01001922 ret = -ETIMEDOUT;
Emmanuel Grumbach42550a52013-09-11 14:16:20 +03001923
Liad Kaufman4c9706d2014-04-27 16:46:09 +03001924 iwl_force_nmi(trans);
Arik Nemtsov2a988e92013-12-01 13:50:40 +02001925 iwl_trans_fw_error(trans);
Emmanuel Grumbach42550a52013-09-11 14:16:20 +03001926
Johannes Berg6dde8c42013-10-31 18:30:38 +01001927 goto cancel;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001928 }
1929
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001930 if (test_bit(STATUS_FW_ERROR, &trans->status)) {
Johannes Bergd18aa872012-11-06 16:36:21 +01001931 IWL_ERR(trans, "FW error in SYNC CMD %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001932 iwl_get_cmd_string(trans, cmd->id));
Johannes Bergb656fa32013-05-03 11:56:17 +02001933 dump_stack();
Johannes Bergd18aa872012-11-06 16:36:21 +01001934 ret = -EIO;
1935 goto cancel;
1936 }
1937
Eran Harary1094fa22013-06-02 12:40:34 +03001938 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001939 test_bit(STATUS_RFKILL, &trans->status)) {
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001940 IWL_DEBUG_RF_KILL(trans, "RFKILL in SYNC CMD... no rsp\n");
1941 ret = -ERFKILL;
1942 goto cancel;
1943 }
1944
Johannes Berg65b94a42012-03-05 11:24:38 -08001945 if ((cmd->flags & CMD_WANT_SKB) && !cmd->resp_pkt) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001946 IWL_ERR(trans, "Error: Response NULL in '%s'\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001947 iwl_get_cmd_string(trans, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001948 ret = -EIO;
1949 goto cancel;
1950 }
1951
1952 return 0;
1953
1954cancel:
1955 if (cmd->flags & CMD_WANT_SKB) {
1956 /*
1957 * Cancel the CMD_WANT_SKB flag for the cmd in the
1958 * TX cmd queue. Otherwise in case the cmd comes
1959 * in later, it will possibly set an invalid
1960 * address (cmd->meta.source).
1961 */
Johannes Bergbf8440e2012-03-19 17:12:06 +01001962 trans_pcie->txq[trans_pcie->cmd_queue].
1963 entries[cmd_idx].meta.flags &= ~CMD_WANT_SKB;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001964 }
Emmanuel Grumbach9cac4942011-11-10 06:55:20 -08001965
Johannes Berg65b94a42012-03-05 11:24:38 -08001966 if (cmd->resp_pkt) {
1967 iwl_free_resp(cmd);
1968 cmd->resp_pkt = NULL;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001969 }
1970
1971 return ret;
1972}
1973
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001974int iwl_trans_pcie_send_hcmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001975{
Eran Harary4f593342013-05-13 07:53:26 +03001976 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001977 test_bit(STATUS_RFKILL, &trans->status)) {
Emmanuel Grumbach754d7d92013-03-13 22:16:20 +02001978 IWL_DEBUG_RF_KILL(trans, "Dropping CMD 0x%x: RF KILL\n",
1979 cmd->id);
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001980 return -ERFKILL;
Emmanuel Grumbach754d7d92013-03-13 22:16:20 +02001981 }
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001982
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001983 if (cmd->flags & CMD_ASYNC)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001984 return iwl_pcie_send_hcmd_async(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001985
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001986 /* We still can fail on RFKILL that can be asserted while we wait */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001987 return iwl_pcie_send_hcmd_sync(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001988}
1989
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03001990static int iwl_fill_data_tbs(struct iwl_trans *trans, struct sk_buff *skb,
1991 struct iwl_txq *txq, u8 hdr_len,
1992 struct iwl_cmd_meta *out_meta,
1993 struct iwl_device_cmd *dev_cmd, u16 tb1_len)
1994{
Sara Sharon6983ba62016-06-26 13:17:56 +03001995 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03001996 u16 tb2_len;
1997 int i;
1998
1999 /*
2000 * Set up TFD's third entry to point directly to remainder
2001 * of skb's head, if any
2002 */
2003 tb2_len = skb_headlen(skb) - hdr_len;
2004
2005 if (tb2_len > 0) {
2006 dma_addr_t tb2_phys = dma_map_single(trans->dev,
2007 skb->data + hdr_len,
2008 tb2_len, DMA_TO_DEVICE);
2009 if (unlikely(dma_mapping_error(trans->dev, tb2_phys))) {
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002010 iwl_pcie_tfd_unmap(trans, out_meta, txq,
2011 txq->write_ptr);
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03002012 return -EINVAL;
2013 }
2014 iwl_pcie_txq_build_tfd(trans, txq, tb2_phys, tb2_len, false);
2015 }
2016
2017 /* set up the remaining entries to point to the data */
2018 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2019 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2020 dma_addr_t tb_phys;
2021 int tb_idx;
2022
2023 if (!skb_frag_size(frag))
2024 continue;
2025
2026 tb_phys = skb_frag_dma_map(trans->dev, frag, 0,
2027 skb_frag_size(frag), DMA_TO_DEVICE);
2028
2029 if (unlikely(dma_mapping_error(trans->dev, tb_phys))) {
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002030 iwl_pcie_tfd_unmap(trans, out_meta, txq,
2031 txq->write_ptr);
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03002032 return -EINVAL;
2033 }
2034 tb_idx = iwl_pcie_txq_build_tfd(trans, txq, tb_phys,
2035 skb_frag_size(frag), false);
2036
Sara Sharon3cd19802016-06-23 16:31:40 +03002037 out_meta->tbs |= BIT(tb_idx);
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03002038 }
2039
2040 trace_iwlwifi_dev_tx(trans->dev, skb,
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002041 iwl_pcie_get_tfd(trans_pcie, txq, txq->write_ptr),
Sara Sharon6983ba62016-06-26 13:17:56 +03002042 trans_pcie->tfd_size,
Sara Sharon8de437c2016-06-09 17:56:38 +03002043 &dev_cmd->hdr, IWL_FIRST_TB_SIZE + tb1_len,
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03002044 skb->data + hdr_len, tb2_len);
2045 trace_iwlwifi_dev_tx_data(trans->dev, skb,
2046 hdr_len, skb->len - hdr_len);
2047 return 0;
2048}
2049
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002050#ifdef CONFIG_INET
2051static struct iwl_tso_hdr_page *
2052get_page_hdr(struct iwl_trans *trans, size_t len)
2053{
2054 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
2055 struct iwl_tso_hdr_page *p = this_cpu_ptr(trans_pcie->tso_hdr_page);
2056
2057 if (!p->page)
2058 goto alloc;
2059
2060 /* enough room on this page */
2061 if (p->pos + len < (u8 *)page_address(p->page) + PAGE_SIZE)
2062 return p;
2063
2064 /* We don't have enough room on this page, get a new one. */
2065 __free_page(p->page);
2066
2067alloc:
2068 p->page = alloc_page(GFP_ATOMIC);
2069 if (!p->page)
2070 return NULL;
2071 p->pos = page_address(p->page);
2072 return p;
2073}
2074
2075static void iwl_compute_pseudo_hdr_csum(void *iph, struct tcphdr *tcph,
2076 bool ipv6, unsigned int len)
2077{
2078 if (ipv6) {
2079 struct ipv6hdr *iphv6 = iph;
2080
2081 tcph->check = ~csum_ipv6_magic(&iphv6->saddr, &iphv6->daddr,
2082 len + tcph->doff * 4,
2083 IPPROTO_TCP, 0);
2084 } else {
2085 struct iphdr *iphv4 = iph;
2086
2087 ip_send_check(iphv4);
2088 tcph->check = ~csum_tcpudp_magic(iphv4->saddr, iphv4->daddr,
2089 len + tcph->doff * 4,
2090 IPPROTO_TCP, 0);
2091 }
2092}
2093
2094static int iwl_fill_data_tbs_amsdu(struct iwl_trans *trans, struct sk_buff *skb,
2095 struct iwl_txq *txq, u8 hdr_len,
2096 struct iwl_cmd_meta *out_meta,
2097 struct iwl_device_cmd *dev_cmd, u16 tb1_len)
2098{
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002099 struct iwl_trans_pcie *trans_pcie = txq->trans_pcie;
2100 struct ieee80211_hdr *hdr = (void *)skb->data;
2101 unsigned int snap_ip_tcp_hdrlen, ip_hdrlen, total_len, hdr_room;
2102 unsigned int mss = skb_shinfo(skb)->gso_size;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002103 u16 length, iv_len, amsdu_pad;
2104 u8 *start_hdr;
2105 struct iwl_tso_hdr_page *hdr_page;
Johannes Berg21cb3222016-06-21 13:11:48 +02002106 struct page **page_ptr;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002107 int ret;
2108 struct tso_t tso;
2109
2110 /* if the packet is protected, then it must be CCMP or GCMP */
2111 BUILD_BUG_ON(IEEE80211_CCMP_HDR_LEN != IEEE80211_GCMP_HDR_LEN);
2112 iv_len = ieee80211_has_protected(hdr->frame_control) ?
2113 IEEE80211_CCMP_HDR_LEN : 0;
2114
2115 trace_iwlwifi_dev_tx(trans->dev, skb,
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002116 iwl_pcie_get_tfd(trans_pcie, txq, txq->write_ptr),
Sara Sharon6983ba62016-06-26 13:17:56 +03002117 trans_pcie->tfd_size,
Sara Sharon8de437c2016-06-09 17:56:38 +03002118 &dev_cmd->hdr, IWL_FIRST_TB_SIZE + tb1_len,
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002119 NULL, 0);
2120
2121 ip_hdrlen = skb_transport_header(skb) - skb_network_header(skb);
2122 snap_ip_tcp_hdrlen = 8 + ip_hdrlen + tcp_hdrlen(skb);
2123 total_len = skb->len - snap_ip_tcp_hdrlen - hdr_len - iv_len;
2124 amsdu_pad = 0;
2125
2126 /* total amount of header we may need for this A-MSDU */
2127 hdr_room = DIV_ROUND_UP(total_len, mss) *
2128 (3 + snap_ip_tcp_hdrlen + sizeof(struct ethhdr)) + iv_len;
2129
2130 /* Our device supports 9 segments at most, it will fit in 1 page */
2131 hdr_page = get_page_hdr(trans, hdr_room);
2132 if (!hdr_page)
2133 return -ENOMEM;
2134
2135 get_page(hdr_page->page);
2136 start_hdr = hdr_page->pos;
Johannes Berg21cb3222016-06-21 13:11:48 +02002137 page_ptr = (void *)((u8 *)skb->cb + trans_pcie->page_offs);
2138 *page_ptr = hdr_page->page;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002139 memcpy(hdr_page->pos, skb->data + hdr_len, iv_len);
2140 hdr_page->pos += iv_len;
2141
2142 /*
2143 * Pull the ieee80211 header + IV to be able to use TSO core,
2144 * we will restore it for the tx_status flow.
2145 */
2146 skb_pull(skb, hdr_len + iv_len);
2147
2148 tso_start(skb, &tso);
2149
2150 while (total_len) {
2151 /* this is the data left for this subframe */
2152 unsigned int data_left =
2153 min_t(unsigned int, mss, total_len);
2154 struct sk_buff *csum_skb = NULL;
2155 unsigned int hdr_tb_len;
2156 dma_addr_t hdr_tb_phys;
2157 struct tcphdr *tcph;
2158 u8 *iph;
2159
2160 total_len -= data_left;
2161
2162 memset(hdr_page->pos, 0, amsdu_pad);
2163 hdr_page->pos += amsdu_pad;
2164 amsdu_pad = (4 - (sizeof(struct ethhdr) + snap_ip_tcp_hdrlen +
2165 data_left)) & 0x3;
2166 ether_addr_copy(hdr_page->pos, ieee80211_get_DA(hdr));
2167 hdr_page->pos += ETH_ALEN;
2168 ether_addr_copy(hdr_page->pos, ieee80211_get_SA(hdr));
2169 hdr_page->pos += ETH_ALEN;
2170
2171 length = snap_ip_tcp_hdrlen + data_left;
2172 *((__be16 *)hdr_page->pos) = cpu_to_be16(length);
2173 hdr_page->pos += sizeof(length);
2174
2175 /*
2176 * This will copy the SNAP as well which will be considered
2177 * as MAC header.
2178 */
2179 tso_build_hdr(skb, hdr_page->pos, &tso, data_left, !total_len);
2180 iph = hdr_page->pos + 8;
2181 tcph = (void *)(iph + ip_hdrlen);
2182
2183 /* For testing on current hardware only */
2184 if (trans_pcie->sw_csum_tx) {
2185 csum_skb = alloc_skb(data_left + tcp_hdrlen(skb),
2186 GFP_ATOMIC);
2187 if (!csum_skb) {
2188 ret = -ENOMEM;
2189 goto out_unmap;
2190 }
2191
2192 iwl_compute_pseudo_hdr_csum(iph, tcph,
2193 skb->protocol ==
2194 htons(ETH_P_IPV6),
2195 data_left);
2196
2197 memcpy(skb_put(csum_skb, tcp_hdrlen(skb)),
2198 tcph, tcp_hdrlen(skb));
2199 skb_set_transport_header(csum_skb, 0);
2200 csum_skb->csum_start =
2201 (unsigned char *)tcp_hdr(csum_skb) -
2202 csum_skb->head;
2203 }
2204
2205 hdr_page->pos += snap_ip_tcp_hdrlen;
2206
2207 hdr_tb_len = hdr_page->pos - start_hdr;
2208 hdr_tb_phys = dma_map_single(trans->dev, start_hdr,
2209 hdr_tb_len, DMA_TO_DEVICE);
2210 if (unlikely(dma_mapping_error(trans->dev, hdr_tb_phys))) {
2211 dev_kfree_skb(csum_skb);
2212 ret = -EINVAL;
2213 goto out_unmap;
2214 }
2215 iwl_pcie_txq_build_tfd(trans, txq, hdr_tb_phys,
2216 hdr_tb_len, false);
2217 trace_iwlwifi_dev_tx_tso_chunk(trans->dev, start_hdr,
2218 hdr_tb_len);
2219
2220 /* prepare the start_hdr for the next subframe */
2221 start_hdr = hdr_page->pos;
2222
2223 /* put the payload */
2224 while (data_left) {
2225 unsigned int size = min_t(unsigned int, tso.size,
2226 data_left);
2227 dma_addr_t tb_phys;
2228
2229 if (trans_pcie->sw_csum_tx)
2230 memcpy(skb_put(csum_skb, size), tso.data, size);
2231
2232 tb_phys = dma_map_single(trans->dev, tso.data,
2233 size, DMA_TO_DEVICE);
2234 if (unlikely(dma_mapping_error(trans->dev, tb_phys))) {
2235 dev_kfree_skb(csum_skb);
2236 ret = -EINVAL;
2237 goto out_unmap;
2238 }
2239
2240 iwl_pcie_txq_build_tfd(trans, txq, tb_phys,
2241 size, false);
2242 trace_iwlwifi_dev_tx_tso_chunk(trans->dev, tso.data,
2243 size);
2244
2245 data_left -= size;
2246 tso_build_data(skb, &tso, size);
2247 }
2248
2249 /* For testing on early hardware only */
2250 if (trans_pcie->sw_csum_tx) {
2251 __wsum csum;
2252
2253 csum = skb_checksum(csum_skb,
2254 skb_checksum_start_offset(csum_skb),
2255 csum_skb->len -
2256 skb_checksum_start_offset(csum_skb),
2257 0);
2258 dev_kfree_skb(csum_skb);
2259 dma_sync_single_for_cpu(trans->dev, hdr_tb_phys,
2260 hdr_tb_len, DMA_TO_DEVICE);
2261 tcph->check = csum_fold(csum);
2262 dma_sync_single_for_device(trans->dev, hdr_tb_phys,
2263 hdr_tb_len, DMA_TO_DEVICE);
2264 }
2265 }
2266
2267 /* re -add the WiFi header and IV */
2268 skb_push(skb, hdr_len + iv_len);
2269
2270 return 0;
2271
2272out_unmap:
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002273 iwl_pcie_tfd_unmap(trans, out_meta, txq, txq->write_ptr);
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002274 return ret;
2275}
2276#else /* CONFIG_INET */
2277static int iwl_fill_data_tbs_amsdu(struct iwl_trans *trans, struct sk_buff *skb,
2278 struct iwl_txq *txq, u8 hdr_len,
2279 struct iwl_cmd_meta *out_meta,
2280 struct iwl_device_cmd *dev_cmd, u16 tb1_len)
2281{
2282 /* No A-MSDU without CONFIG_INET */
2283 WARN_ON(1);
2284
2285 return -1;
2286}
2287#endif /* CONFIG_INET */
2288
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002289int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
2290 struct iwl_device_cmd *dev_cmd, int txq_id)
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002291{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07002292 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Johannes Berg206eea72015-04-17 16:38:31 +02002293 struct ieee80211_hdr *hdr;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002294 struct iwl_tx_cmd *tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
2295 struct iwl_cmd_meta *out_meta;
2296 struct iwl_txq *txq;
Johannes Berg38c0f3342013-02-27 13:18:50 +01002297 dma_addr_t tb0_phys, tb1_phys, scratch_phys;
2298 void *tb1_addr;
Sara Sharon4fe10bc2016-07-04 14:34:26 +03002299 void *tfd;
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03002300 u16 len, tb1_len;
Johannes Bergea68f462014-02-27 14:36:55 +01002301 bool wait_write_ptr;
Johannes Berg206eea72015-04-17 16:38:31 +02002302 __le16 fc;
2303 u8 hdr_len;
Johannes Berg68972c42013-06-11 19:05:27 +02002304 u16 wifi_seq;
Sara Sharonc772a3d32016-03-13 17:19:38 +02002305 bool amsdu;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002306
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002307 txq = &trans_pcie->txq[txq_id];
Emmanuel Grumbach39644e92011-09-15 11:46:29 -07002308
Johannes Berg961de6a2013-07-04 18:00:08 +02002309 if (WARN_ONCE(!test_bit(txq_id, trans_pcie->queue_used),
2310 "TX on unused queue %d\n", txq_id))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002311 return -EINVAL;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002312
Emmanuel Grumbach41837ca92015-10-21 09:00:07 +03002313 if (unlikely(trans_pcie->sw_csum_tx &&
2314 skb->ip_summed == CHECKSUM_PARTIAL)) {
2315 int offs = skb_checksum_start_offset(skb);
2316 int csum_offs = offs + skb->csum_offset;
2317 __wsum csum;
2318
2319 if (skb_ensure_writable(skb, csum_offs + sizeof(__sum16)))
2320 return -1;
2321
2322 csum = skb_checksum(skb, offs, skb->len - offs, 0);
2323 *(__sum16 *)(skb->data + csum_offs) = csum_fold(csum);
Emmanuel Grumbach39555252016-01-14 09:39:21 +02002324
2325 skb->ip_summed = CHECKSUM_UNNECESSARY;
Emmanuel Grumbach41837ca92015-10-21 09:00:07 +03002326 }
2327
Johannes Berg206eea72015-04-17 16:38:31 +02002328 if (skb_is_nonlinear(skb) &&
Sara Sharon3cd19802016-06-23 16:31:40 +03002329 skb_shinfo(skb)->nr_frags > IWL_PCIE_MAX_FRAGS(trans_pcie) &&
Johannes Berg206eea72015-04-17 16:38:31 +02002330 __skb_linearize(skb))
2331 return -ENOMEM;
2332
2333 /* mac80211 always puts the full header into the SKB's head,
2334 * so there's no need to check if it's readable there
2335 */
2336 hdr = (struct ieee80211_hdr *)skb->data;
2337 fc = hdr->frame_control;
2338 hdr_len = ieee80211_hdrlen(fc);
2339
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002340 spin_lock(&txq->lock);
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002341
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002342 if (iwl_queue_space(txq) < txq->high_mark) {
Emmanuel Grumbach39555252016-01-14 09:39:21 +02002343 iwl_stop_queue(trans, txq);
2344
2345 /* don't put the packet on the ring, if there is no room */
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002346 if (unlikely(iwl_queue_space(txq) < 3)) {
Johannes Berg21cb3222016-06-21 13:11:48 +02002347 struct iwl_device_cmd **dev_cmd_ptr;
Emmanuel Grumbach39555252016-01-14 09:39:21 +02002348
Johannes Berg21cb3222016-06-21 13:11:48 +02002349 dev_cmd_ptr = (void *)((u8 *)skb->cb +
2350 trans_pcie->dev_cmd_offs);
2351
2352 *dev_cmd_ptr = dev_cmd;
Emmanuel Grumbach39555252016-01-14 09:39:21 +02002353 __skb_queue_tail(&txq->overflow_q, skb);
2354
2355 spin_unlock(&txq->lock);
2356 return 0;
2357 }
2358 }
2359
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002360 /* In AGG mode, the index in the ring must correspond to the WiFi
2361 * sequence number. This is a HW requirements to help the SCD to parse
2362 * the BA.
2363 * Check here that the packets are in the right place on the ring.
2364 */
Johannes Berg9a886582013-02-15 19:25:00 +01002365 wifi_seq = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
Eliad Peller1092b9b2013-07-16 17:53:43 +03002366 WARN_ONCE(txq->ampdu &&
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002367 (wifi_seq & 0xff) != txq->write_ptr,
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002368 "Q: %d WiFi Seq %d tfdNum %d",
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002369 txq_id, wifi_seq, txq->write_ptr);
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002370
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002371 /* Set up driver data for this TFD */
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002372 txq->entries[txq->write_ptr].skb = skb;
2373 txq->entries[txq->write_ptr].cmd = dev_cmd;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002374
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002375 dev_cmd->hdr.sequence =
2376 cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002377 INDEX_TO_SEQ(txq->write_ptr)));
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002378
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002379 tb0_phys = iwl_pcie_get_first_tb_dma(txq, txq->write_ptr);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002380 scratch_phys = tb0_phys + sizeof(struct iwl_cmd_header) +
2381 offsetof(struct iwl_tx_cmd, scratch);
2382
2383 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
2384 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
2385
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002386 /* Set up first empty entry in queue's array of Tx/cmd buffers */
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002387 out_meta = &txq->entries[txq->write_ptr].meta;
Johannes Berg206eea72015-04-17 16:38:31 +02002388 out_meta->flags = 0;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002389
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002390 /*
Johannes Berg38c0f3342013-02-27 13:18:50 +01002391 * The second TB (tb1) points to the remainder of the TX command
2392 * and the 802.11 header - dword aligned size
2393 * (This calculation modifies the TX command, so do it before the
2394 * setup of the first TB)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002395 */
Johannes Berg38c0f3342013-02-27 13:18:50 +01002396 len = sizeof(struct iwl_tx_cmd) + sizeof(struct iwl_cmd_header) +
Sara Sharon8de437c2016-06-09 17:56:38 +03002397 hdr_len - IWL_FIRST_TB_SIZE;
Sara Sharonc772a3d32016-03-13 17:19:38 +02002398 /* do not align A-MSDU to dword as the subframe header aligns it */
2399 amsdu = ieee80211_is_data_qos(fc) &&
2400 (*ieee80211_get_qos_ctl(hdr) &
2401 IEEE80211_QOS_CTL_A_MSDU_PRESENT);
2402 if (trans_pcie->sw_csum_tx || !amsdu) {
2403 tb1_len = ALIGN(len, 4);
2404 /* Tell NIC about any 2-byte padding after MAC header */
2405 if (tb1_len != len)
2406 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
2407 } else {
2408 tb1_len = len;
2409 }
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002410
Sara Sharon8de437c2016-06-09 17:56:38 +03002411 /* The first TB points to bi-directional DMA data */
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002412 memcpy(&txq->first_tb_bufs[txq->write_ptr], &dev_cmd->hdr,
Sara Sharon8de437c2016-06-09 17:56:38 +03002413 IWL_FIRST_TB_SIZE);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002414 iwl_pcie_txq_build_tfd(trans, txq, tb0_phys,
Sara Sharon8de437c2016-06-09 17:56:38 +03002415 IWL_FIRST_TB_SIZE, true);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002416
2417 /* there must be data left over for TB1 or this code must be changed */
Sara Sharon8de437c2016-06-09 17:56:38 +03002418 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd) < IWL_FIRST_TB_SIZE);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002419
2420 /* map the data for TB1 */
Sara Sharon8de437c2016-06-09 17:56:38 +03002421 tb1_addr = ((u8 *)&dev_cmd->hdr) + IWL_FIRST_TB_SIZE;
Johannes Berg38c0f3342013-02-27 13:18:50 +01002422 tb1_phys = dma_map_single(trans->dev, tb1_addr, tb1_len, DMA_TO_DEVICE);
2423 if (unlikely(dma_mapping_error(trans->dev, tb1_phys)))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002424 goto out_err;
Johannes Berg6d6e68f2014-04-23 19:00:56 +02002425 iwl_pcie_txq_build_tfd(trans, txq, tb1_phys, tb1_len, false);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002426
Sara Sharonc772a3d32016-03-13 17:19:38 +02002427 if (amsdu) {
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002428 if (unlikely(iwl_fill_data_tbs_amsdu(trans, skb, txq, hdr_len,
2429 out_meta, dev_cmd,
2430 tb1_len)))
2431 goto out_err;
2432 } else if (unlikely(iwl_fill_data_tbs(trans, skb, txq, hdr_len,
2433 out_meta, dev_cmd, tb1_len))) {
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03002434 goto out_err;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002435 }
Johannes Berg206eea72015-04-17 16:38:31 +02002436
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002437 tfd = iwl_pcie_get_tfd(trans_pcie, txq, txq->write_ptr);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002438 /* Set up entry for this TFD in Tx byte-count array */
Sara Sharon4fe10bc2016-07-04 14:34:26 +03002439 iwl_pcie_txq_update_byte_cnt_tbl(trans, txq, le16_to_cpu(tx_cmd->len),
2440 iwl_pcie_tfd_get_num_tbs(trans, tfd));
Johannes Berg38c0f3342013-02-27 13:18:50 +01002441
Johannes Bergea68f462014-02-27 14:36:55 +01002442 wait_write_ptr = ieee80211_has_morefrags(fc);
Johannes Berg7c5ba4a2012-04-09 17:46:54 -07002443
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002444 /* start timer if queue currently empty */
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002445 if (txq->read_ptr == txq->write_ptr) {
Emmanuel Grumbachaecdc632015-07-29 23:06:41 +03002446 if (txq->wd_timeout) {
2447 /*
2448 * If the TXQ is active, then set the timer, if not,
2449 * set the timer in remainder so that the timer will
2450 * be armed with the right value when the station will
2451 * wake up.
2452 */
2453 if (!txq->frozen)
2454 mod_timer(&txq->stuck_timer,
2455 jiffies + txq->wd_timeout);
2456 else
2457 txq->frozen_expiry_remainder = txq->wd_timeout;
2458 }
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002459 IWL_DEBUG_RPM(trans, "Q: %d first tx - take ref\n", txq->id);
Luca Coelhoc24c7f52016-03-30 20:59:27 +03002460 iwl_trans_ref(trans);
Eliad Peller7616f332014-11-20 17:33:43 +02002461 }
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002462
2463 /* Tell device the write index *just past* this latest filled TFD */
Sara Sharonbb98ecd2016-07-07 18:17:45 +03002464 txq->write_ptr = iwl_queue_inc_wrap(txq->write_ptr);
Johannes Bergea68f462014-02-27 14:36:55 +01002465 if (!wait_write_ptr)
2466 iwl_pcie_txq_inc_wr_ptr(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002467
2468 /*
2469 * At this point the frame is "transmitted" successfully
Johannes Berg43aa6162014-02-27 14:24:36 +01002470 * and we will get a TX status notification eventually.
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002471 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002472 spin_unlock(&txq->lock);
2473 return 0;
2474out_err:
2475 spin_unlock(&txq->lock);
2476 return -1;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002477}