blob: 9636dc89f6bd2c1ea083cda69b6ec36766e36063 [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
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +020074static int iwl_queue_space(const struct iwl_queue *q)
75{
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 */
Johannes Berg83f32a42014-04-24 09:57:40 +0200105static int iwl_queue_init(struct iwl_queue *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 */
161 if (txq->q.read_ptr == txq->q.write_ptr) {
162 spin_unlock(&txq->lock);
163 return;
164 }
165 spin_unlock(&txq->lock);
166
167 IWL_ERR(trans, "Queue %d stuck for %u ms.\n", txq->q.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,
179 struct iwl_txq *txq, u16 byte_cnt)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300180{
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700181 struct iwlagn_scd_bc_tbl *scd_bc_tbl;
Johannes Berg20d3b642012-05-16 22:54:29 +0200182 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300183 int write_ptr = txq->q.write_ptr;
184 int txq_id = txq->q.id;
185 u8 sec_ctl = 0;
186 u8 sta_id = 0;
187 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 =
Johannes Bergbf8440e2012-03-19 17:12:06 +0100190 (void *) txq->entries[txq->q.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 sta_id = tx_cmd->sta_id;
195 sec_ctl = tx_cmd->sec_ctl;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300196
197 switch (sec_ctl & TX_CMD_SEC_MSK) {
198 case TX_CMD_SEC_CCM:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200199 len += IEEE80211_CCMP_MIC_LEN;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300200 break;
201 case TX_CMD_SEC_TKIP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200202 len += IEEE80211_TKIP_ICV_LEN;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300203 break;
204 case TX_CMD_SEC_WEP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200205 len += IEEE80211_WEP_IV_LEN + IEEE80211_WEP_ICV_LEN;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300206 break;
207 }
208
Emmanuel Grumbach046db342012-12-05 15:07:54 +0200209 if (trans_pcie->bc_table_dword)
210 len = DIV_ROUND_UP(len, 4);
211
Emmanuel Grumbach31f920b2015-07-02 14:53:02 +0300212 if (WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX))
213 return;
214
Emmanuel Grumbach046db342012-12-05 15:07:54 +0200215 bc_ent = cpu_to_le16(len | (sta_id << 12));
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300216
217 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
218
219 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
220 scd_bc_tbl[txq_id].
221 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
222}
223
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200224static void iwl_pcie_txq_inval_byte_cnt_tbl(struct iwl_trans *trans,
225 struct iwl_txq *txq)
226{
227 struct iwl_trans_pcie *trans_pcie =
228 IWL_TRANS_GET_PCIE_TRANS(trans);
229 struct iwlagn_scd_bc_tbl *scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
230 int txq_id = txq->q.id;
231 int read_ptr = txq->q.read_ptr;
232 u8 sta_id = 0;
233 __le16 bc_ent;
234 struct iwl_tx_cmd *tx_cmd =
235 (void *)txq->entries[txq->q.read_ptr].cmd->payload;
236
237 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
238
239 if (txq_id != trans_pcie->cmd_queue)
240 sta_id = tx_cmd->sta_id;
241
242 bc_ent = cpu_to_le16(1 | (sta_id << 12));
243 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
244
245 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
246 scd_bc_tbl[txq_id].
247 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
248}
249
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200250/*
251 * iwl_pcie_txq_inc_wr_ptr - Send new write index to hardware
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800252 */
Johannes Bergea68f462014-02-27 14:36:55 +0100253static void iwl_pcie_txq_inc_wr_ptr(struct iwl_trans *trans,
254 struct iwl_txq *txq)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800255{
Emmanuel Grumbach23e76d12014-01-20 09:50:29 +0200256 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800257 u32 reg = 0;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800258 int txq_id = txq->q.id;
259
Johannes Bergea68f462014-02-27 14:36:55 +0100260 lockdep_assert_held(&txq->lock);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800261
Eliad Peller50453882014-02-05 19:12:24 +0200262 /*
263 * explicitly wake up the NIC if:
264 * 1. shadow registers aren't enabled
265 * 2. NIC is woken up for CMD regardless of shadow outside this function
266 * 3. there is a chance that the NIC is asleep
267 */
268 if (!trans->cfg->base_params->shadow_reg_enable &&
269 txq_id != trans_pcie->cmd_queue &&
270 test_bit(STATUS_TPOWER_PMI, &trans->status)) {
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800271 /*
Eliad Peller50453882014-02-05 19:12:24 +0200272 * wake up nic if it's powered down ...
273 * uCode will wake up, and interrupt us again, so next
274 * time we'll skip this part.
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800275 */
Eliad Peller50453882014-02-05 19:12:24 +0200276 reg = iwl_read32(trans, CSR_UCODE_DRV_GP1);
277
278 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
279 IWL_DEBUG_INFO(trans, "Tx queue %d requesting wakeup, GP1 = 0x%x\n",
280 txq_id, reg);
281 iwl_set_bit(trans, CSR_GP_CNTRL,
282 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Johannes Bergea68f462014-02-27 14:36:55 +0100283 txq->need_update = true;
Eliad Peller50453882014-02-05 19:12:24 +0200284 return;
285 }
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800286 }
Eliad Peller50453882014-02-05 19:12:24 +0200287
288 /*
289 * if not in power-save mode, uCode will never sleep when we're
290 * trying to tx (during RFKILL, we're not trying to tx).
291 */
292 IWL_DEBUG_TX(trans, "Q:%d WR: 0x%x\n", txq_id, txq->q.write_ptr);
Emmanuel Grumbach0cd58ea2015-11-24 13:24:24 +0200293 if (!txq->block)
294 iwl_write32(trans, HBUS_TARG_WRPTR,
295 txq->q.write_ptr | (txq_id << 8));
Johannes Bergea68f462014-02-27 14:36:55 +0100296}
Eliad Peller50453882014-02-05 19:12:24 +0200297
Johannes Bergea68f462014-02-27 14:36:55 +0100298void iwl_pcie_txq_check_wrptrs(struct iwl_trans *trans)
299{
300 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
301 int i;
302
303 for (i = 0; i < trans->cfg->base_params->num_of_queues; i++) {
304 struct iwl_txq *txq = &trans_pcie->txq[i];
305
Emmanuel Grumbachd090f872014-05-13 08:10:51 +0300306 spin_lock_bh(&txq->lock);
Johannes Bergea68f462014-02-27 14:36:55 +0100307 if (trans_pcie->txq[i].need_update) {
308 iwl_pcie_txq_inc_wr_ptr(trans, txq);
309 trans_pcie->txq[i].need_update = false;
310 }
Emmanuel Grumbachd090f872014-05-13 08:10:51 +0300311 spin_unlock_bh(&txq->lock);
Johannes Bergea68f462014-02-27 14:36:55 +0100312 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800313}
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800314
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200315static inline dma_addr_t iwl_pcie_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
Johannes Berg214d14d2011-05-04 07:50:44 -0700316{
317 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
318
319 dma_addr_t addr = get_unaligned_le32(&tb->lo);
320 if (sizeof(dma_addr_t) > sizeof(u32))
321 addr |=
322 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
323
324 return addr;
325}
326
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200327static inline void iwl_pcie_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
328 dma_addr_t addr, u16 len)
Johannes Berg214d14d2011-05-04 07:50:44 -0700329{
330 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
331 u16 hi_n_len = len << 4;
332
333 put_unaligned_le32(addr, &tb->lo);
334 if (sizeof(dma_addr_t) > sizeof(u32))
335 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
336
337 tb->hi_n_len = cpu_to_le16(hi_n_len);
338
339 tfd->num_tbs = idx + 1;
340}
341
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200342static inline u8 iwl_pcie_tfd_get_num_tbs(struct iwl_tfd *tfd)
Johannes Berg214d14d2011-05-04 07:50:44 -0700343{
344 return tfd->num_tbs & 0x1f;
345}
346
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200347static void iwl_pcie_tfd_unmap(struct iwl_trans *trans,
Johannes Berg98891752013-02-26 11:28:19 +0100348 struct iwl_cmd_meta *meta,
349 struct iwl_tfd *tfd)
Johannes Berg214d14d2011-05-04 07:50:44 -0700350{
Johannes Berg214d14d2011-05-04 07:50:44 -0700351 int i;
352 int num_tbs;
353
Johannes Berg214d14d2011-05-04 07:50:44 -0700354 /* Sanity check on number of chunks */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200355 num_tbs = iwl_pcie_tfd_get_num_tbs(tfd);
Johannes Berg214d14d2011-05-04 07:50:44 -0700356
357 if (num_tbs >= IWL_NUM_OF_TBS) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700358 IWL_ERR(trans, "Too many chunks: %i\n", num_tbs);
Johannes Berg214d14d2011-05-04 07:50:44 -0700359 /* @todo issue fatal error, it is quite serious situation */
360 return;
361 }
362
Sara Sharon8de437c2016-06-09 17:56:38 +0300363 /* first TB is never freed - it's the bidirectional DMA data */
Johannes Berg214d14d2011-05-04 07:50:44 -0700364
Johannes Berg206eea72015-04-17 16:38:31 +0200365 for (i = 1; i < num_tbs; i++) {
366 if (meta->flags & BIT(i + CMD_TB_BITMAP_POS))
367 dma_unmap_page(trans->dev,
368 iwl_pcie_tfd_tb_get_addr(tfd, i),
369 iwl_pcie_tfd_tb_get_len(tfd, i),
370 DMA_TO_DEVICE);
371 else
372 dma_unmap_single(trans->dev,
373 iwl_pcie_tfd_tb_get_addr(tfd, i),
374 iwl_pcie_tfd_tb_get_len(tfd, i),
375 DMA_TO_DEVICE);
376 }
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200377 tfd->num_tbs = 0;
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700378}
379
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200380/*
381 * iwl_pcie_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700382 * @trans - transport private data
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700383 * @txq - tx queue
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200384 * @dma_dir - the direction of the DMA mapping
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700385 *
386 * Does NOT advance any TFD circular buffer read/write indexes
387 * Does NOT free the TFD itself (which is within circular buffer)
388 */
Johannes Berg98891752013-02-26 11:28:19 +0100389static void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq)
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700390{
391 struct iwl_tfd *tfd_tmp = txq->tfds;
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700392
Johannes Berg83f32a42014-04-24 09:57:40 +0200393 /* rd_ptr is bounded by TFD_QUEUE_SIZE_MAX and
394 * idx is bounded by n_window
395 */
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200396 int rd_ptr = txq->q.read_ptr;
397 int idx = get_cmd_index(&txq->q, rd_ptr);
398
Johannes Berg015c15e2012-03-05 11:24:24 -0800399 lockdep_assert_held(&txq->lock);
400
Johannes Berg83f32a42014-04-24 09:57:40 +0200401 /* We have only q->n_window txq->entries, but we use
402 * TFD_QUEUE_SIZE_MAX tfds
403 */
Johannes Berg98891752013-02-26 11:28:19 +0100404 iwl_pcie_tfd_unmap(trans, &txq->entries[idx].meta, &tfd_tmp[rd_ptr]);
Johannes Berg214d14d2011-05-04 07:50:44 -0700405
406 /* free SKB */
Johannes Bergbf8440e2012-03-19 17:12:06 +0100407 if (txq->entries) {
Johannes Berg214d14d2011-05-04 07:50:44 -0700408 struct sk_buff *skb;
409
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200410 skb = txq->entries[idx].skb;
Johannes Berg214d14d2011-05-04 07:50:44 -0700411
Emmanuel Grumbach909e9b22011-09-15 11:46:30 -0700412 /* Can be called from irqs-disabled context
413 * If skb is not NULL, it means that the whole queue is being
414 * freed and that the queue is not empty - free the skb
415 */
Johannes Berg214d14d2011-05-04 07:50:44 -0700416 if (skb) {
Emmanuel Grumbached277c92012-02-09 16:08:15 +0200417 iwl_op_mode_free_skb(trans->op_mode, skb);
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200418 txq->entries[idx].skb = NULL;
Johannes Berg214d14d2011-05-04 07:50:44 -0700419 }
420 }
421}
422
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200423static int iwl_pcie_txq_build_tfd(struct iwl_trans *trans, struct iwl_txq *txq,
Johannes Berg6d6e68f2014-04-23 19:00:56 +0200424 dma_addr_t addr, u16 len, bool reset)
Johannes Berg214d14d2011-05-04 07:50:44 -0700425{
426 struct iwl_queue *q;
427 struct iwl_tfd *tfd, *tfd_tmp;
428 u32 num_tbs;
429
430 q = &txq->q;
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700431 tfd_tmp = txq->tfds;
Johannes Berg214d14d2011-05-04 07:50:44 -0700432 tfd = &tfd_tmp[q->write_ptr];
433
434 if (reset)
435 memset(tfd, 0, sizeof(*tfd));
436
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200437 num_tbs = iwl_pcie_tfd_get_num_tbs(tfd);
Johannes Berg214d14d2011-05-04 07:50:44 -0700438
439 /* Each TFD can point to a maximum 20 Tx buffers */
440 if (num_tbs >= IWL_NUM_OF_TBS) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700441 IWL_ERR(trans, "Error can not send more than %d chunks\n",
Johannes Berg20d3b642012-05-16 22:54:29 +0200442 IWL_NUM_OF_TBS);
Johannes Berg214d14d2011-05-04 07:50:44 -0700443 return -EINVAL;
444 }
445
Eliad Peller1092b9b2013-07-16 17:53:43 +0300446 if (WARN(addr & ~IWL_TX_DMA_MASK,
447 "Unaligned address = %llx\n", (unsigned long long)addr))
Johannes Berg214d14d2011-05-04 07:50:44 -0700448 return -EINVAL;
449
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200450 iwl_pcie_tfd_set_tb(tfd, num_tbs, addr, len);
Johannes Berg214d14d2011-05-04 07:50:44 -0700451
Johannes Berg206eea72015-04-17 16:38:31 +0200452 return num_tbs;
Johannes Berg214d14d2011-05-04 07:50:44 -0700453}
454
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200455static int iwl_pcie_txq_alloc(struct iwl_trans *trans,
456 struct iwl_txq *txq, int slots_num,
457 u32 txq_id)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800458{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200459 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
460 size_t tfd_sz = sizeof(struct iwl_tfd) * TFD_QUEUE_SIZE_MAX;
Sara Sharon8de437c2016-06-09 17:56:38 +0300461 size_t tb0_buf_sz;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200462 int i;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800463
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200464 if (WARN_ON(txq->entries || txq->tfds))
465 return -EINVAL;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800466
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200467 setup_timer(&txq->stuck_timer, iwl_pcie_txq_stuck_timer,
468 (unsigned long)txq);
469 txq->trans_pcie = trans_pcie;
470
471 txq->q.n_window = slots_num;
472
473 txq->entries = kcalloc(slots_num,
474 sizeof(struct iwl_pcie_txq_entry),
475 GFP_KERNEL);
476
477 if (!txq->entries)
478 goto error;
479
480 if (txq_id == trans_pcie->cmd_queue)
481 for (i = 0; i < slots_num; i++) {
482 txq->entries[i].cmd =
483 kmalloc(sizeof(struct iwl_device_cmd),
484 GFP_KERNEL);
485 if (!txq->entries[i].cmd)
486 goto error;
487 }
488
489 /* Circular buffer of transmit frame descriptors (TFDs),
490 * shared with device */
491 txq->tfds = dma_alloc_coherent(trans->dev, tfd_sz,
492 &txq->q.dma_addr, GFP_KERNEL);
Joe Perchesd0320f72013-03-14 13:07:21 +0000493 if (!txq->tfds)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200494 goto error;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100495
Sara Sharon8de437c2016-06-09 17:56:38 +0300496 BUILD_BUG_ON(IWL_FIRST_TB_SIZE_ALIGN != sizeof(*txq->first_tb_bufs));
Johannes Berg38c0f3342013-02-27 13:18:50 +0100497
Sara Sharon8de437c2016-06-09 17:56:38 +0300498 tb0_buf_sz = sizeof(*txq->first_tb_bufs) * slots_num;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100499
Sara Sharon8de437c2016-06-09 17:56:38 +0300500 txq->first_tb_bufs = dma_alloc_coherent(trans->dev, tb0_buf_sz,
501 &txq->first_tb_dma,
Johannes Berg38c0f3342013-02-27 13:18:50 +0100502 GFP_KERNEL);
Sara Sharon8de437c2016-06-09 17:56:38 +0300503 if (!txq->first_tb_bufs)
Johannes Berg38c0f3342013-02-27 13:18:50 +0100504 goto err_free_tfds;
505
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200506 txq->q.id = txq_id;
507
508 return 0;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100509err_free_tfds:
510 dma_free_coherent(trans->dev, tfd_sz, txq->tfds, txq->q.dma_addr);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200511error:
512 if (txq->entries && txq_id == trans_pcie->cmd_queue)
513 for (i = 0; i < slots_num; i++)
514 kfree(txq->entries[i].cmd);
515 kfree(txq->entries);
516 txq->entries = NULL;
517
518 return -ENOMEM;
519
520}
521
522static int iwl_pcie_txq_init(struct iwl_trans *trans, struct iwl_txq *txq,
523 int slots_num, u32 txq_id)
524{
525 int ret;
526
Johannes Berg43aa6162014-02-27 14:24:36 +0100527 txq->need_update = false;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200528
529 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
530 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
531 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
532
533 /* Initialize queue's high/low-water marks, and head/tail indexes */
Johannes Berg83f32a42014-04-24 09:57:40 +0200534 ret = iwl_queue_init(&txq->q, slots_num, txq_id);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200535 if (ret)
536 return ret;
537
538 spin_lock_init(&txq->lock);
Emmanuel Grumbach39555252016-01-14 09:39:21 +0200539 __skb_queue_head_init(&txq->overflow_q);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200540
541 /*
542 * Tell nic where to find circular buffer of Tx Frame Descriptors for
543 * given Tx queue, and enable the DMA channel used for that queue.
544 * Circular buffer (TFD queue in DRAM) physical base address */
Sara Sharone22744a2016-06-22 17:23:34 +0300545 if (trans->cfg->use_tfh)
546 iwl_write_direct64(trans,
547 FH_MEM_CBBC_QUEUE(trans, txq_id),
548 txq->q.dma_addr);
549 else
550 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(trans, txq_id),
551 txq->q.dma_addr >> 8);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200552
553 return 0;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800554}
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800555
Johannes Berg21cb3222016-06-21 13:11:48 +0200556static void iwl_pcie_free_tso_page(struct iwl_trans_pcie *trans_pcie,
557 struct sk_buff *skb)
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300558{
Johannes Berg21cb3222016-06-21 13:11:48 +0200559 struct page **page_ptr;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300560
Johannes Berg21cb3222016-06-21 13:11:48 +0200561 page_ptr = (void *)((u8 *)skb->cb + trans_pcie->page_offs);
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300562
Johannes Berg21cb3222016-06-21 13:11:48 +0200563 if (*page_ptr) {
564 __free_page(*page_ptr);
565 *page_ptr = NULL;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300566 }
567}
568
Sara Sharon01d11cd2016-03-09 17:38:47 +0200569static void iwl_pcie_clear_cmd_in_flight(struct iwl_trans *trans)
570{
571 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
572
573 lockdep_assert_held(&trans_pcie->reg_lock);
574
575 if (trans_pcie->ref_cmd_in_flight) {
576 trans_pcie->ref_cmd_in_flight = false;
577 IWL_DEBUG_RPM(trans, "clear ref_cmd_in_flight - unref\n");
Luca Coelhoc24c7f52016-03-30 20:59:27 +0300578 iwl_trans_unref(trans);
Sara Sharon01d11cd2016-03-09 17:38:47 +0200579 }
580
581 if (!trans->cfg->base_params->apmg_wake_up_wa)
582 return;
583 if (WARN_ON(!trans_pcie->cmd_hold_nic_awake))
584 return;
585
586 trans_pcie->cmd_hold_nic_awake = false;
587 __iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
588 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
589}
590
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200591/*
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200592 * iwl_pcie_txq_unmap - Unmap any remaining DMA mappings and free skb's
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800593 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200594static void iwl_pcie_txq_unmap(struct iwl_trans *trans, int txq_id)
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800595{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200596 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
597 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
598 struct iwl_queue *q = &txq->q;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800599
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200600 spin_lock_bh(&txq->lock);
601 while (q->write_ptr != q->read_ptr) {
Emmanuel Grumbachb9676132013-06-13 11:45:59 +0300602 IWL_DEBUG_TX_REPLY(trans, "Q %d Free %d\n",
603 txq_id, q->read_ptr);
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300604
605 if (txq_id != trans_pcie->cmd_queue) {
606 struct sk_buff *skb = txq->entries[q->read_ptr].skb;
607
608 if (WARN_ON_ONCE(!skb))
609 continue;
610
Johannes Berg21cb3222016-06-21 13:11:48 +0200611 iwl_pcie_free_tso_page(trans_pcie, skb);
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +0300612 }
Johannes Berg98891752013-02-26 11:28:19 +0100613 iwl_pcie_txq_free_tfd(trans, txq);
Johannes Berg83f32a42014-04-24 09:57:40 +0200614 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr);
Sara Sharon01d11cd2016-03-09 17:38:47 +0200615
616 if (q->read_ptr == q->write_ptr) {
617 unsigned long flags;
618
619 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
620 if (txq_id != trans_pcie->cmd_queue) {
621 IWL_DEBUG_RPM(trans, "Q %d - last tx freed\n",
622 q->id);
Luca Coelhoc24c7f52016-03-30 20:59:27 +0300623 iwl_trans_unref(trans);
Sara Sharon01d11cd2016-03-09 17:38:47 +0200624 } else {
625 iwl_pcie_clear_cmd_in_flight(trans);
626 }
627 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
628 }
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200629 }
Emmanuel Grumbachb9676132013-06-13 11:45:59 +0300630 txq->active = false;
Emmanuel Grumbach39555252016-01-14 09:39:21 +0200631
632 while (!skb_queue_empty(&txq->overflow_q)) {
633 struct sk_buff *skb = __skb_dequeue(&txq->overflow_q);
634
635 iwl_op_mode_free_skb(trans->op_mode, skb);
636 }
637
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200638 spin_unlock_bh(&txq->lock);
Emmanuel Grumbach8a487b12013-06-13 13:10:00 +0300639
640 /* just in case - this queue may have been stopped */
641 iwl_wake_queue(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200642}
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800643
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200644/*
645 * iwl_pcie_txq_free - Deallocate DMA queue.
646 * @txq: Transmit queue to deallocate.
647 *
648 * Empty queue by removing and destroying all BD's.
649 * Free all buffers.
650 * 0-fill, but do not free "txq" descriptor structure.
651 */
652static void iwl_pcie_txq_free(struct iwl_trans *trans, int txq_id)
653{
654 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
655 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
656 struct device *dev = trans->dev;
657 int i;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800658
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200659 if (WARN_ON(!txq))
660 return;
661
662 iwl_pcie_txq_unmap(trans, txq_id);
663
664 /* De-alloc array of command/tx buffers */
665 if (txq_id == trans_pcie->cmd_queue)
666 for (i = 0; i < txq->q.n_window; i++) {
Johannes Berg5d4185a2014-09-09 21:16:06 +0200667 kzfree(txq->entries[i].cmd);
668 kzfree(txq->entries[i].free_buf);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200669 }
670
671 /* De-alloc circular buffer of TFDs */
Johannes Berg83f32a42014-04-24 09:57:40 +0200672 if (txq->tfds) {
673 dma_free_coherent(dev,
674 sizeof(struct iwl_tfd) * TFD_QUEUE_SIZE_MAX,
675 txq->tfds, txq->q.dma_addr);
Johannes Bergd21fa2d2013-01-08 00:25:21 +0100676 txq->q.dma_addr = 0;
Johannes Berg83f32a42014-04-24 09:57:40 +0200677 txq->tfds = NULL;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100678
679 dma_free_coherent(dev,
Sara Sharon8de437c2016-06-09 17:56:38 +0300680 sizeof(*txq->first_tb_bufs) * txq->q.n_window,
681 txq->first_tb_bufs, txq->first_tb_dma);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200682 }
683
684 kfree(txq->entries);
685 txq->entries = NULL;
686
687 del_timer_sync(&txq->stuck_timer);
688
689 /* 0-fill queue descriptor structure */
690 memset(txq, 0, sizeof(*txq));
691}
692
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200693void iwl_pcie_tx_start(struct iwl_trans *trans, u32 scd_base_addr)
694{
695 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Johannes Berg22dc3c92013-01-09 00:47:07 +0100696 int nq = trans->cfg->base_params->num_of_queues;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200697 int chan;
698 u32 reg_val;
Johannes Berg22dc3c92013-01-09 00:47:07 +0100699 int clear_dwords = (SCD_TRANS_TBL_OFFSET_QUEUE(nq) -
700 SCD_CONTEXT_MEM_LOWER_BOUND) / sizeof(u32);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200701
702 /* make sure all queue are not stopped/used */
703 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
704 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
705
Sara Sharonae797852016-06-30 16:36:24 +0300706 if (trans->cfg->use_tfh)
707 return;
708
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200709 trans_pcie->scd_base_addr =
710 iwl_read_prph(trans, SCD_SRAM_BASE_ADDR);
711
712 WARN_ON(scd_base_addr != 0 &&
713 scd_base_addr != trans_pcie->scd_base_addr);
714
Johannes Berg22dc3c92013-01-09 00:47:07 +0100715 /* reset context data, TX status and translation data */
716 iwl_trans_write_mem(trans, trans_pcie->scd_base_addr +
717 SCD_CONTEXT_MEM_LOWER_BOUND,
718 NULL, clear_dwords);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200719
720 iwl_write_prph(trans, SCD_DRAM_BASE_ADDR,
721 trans_pcie->scd_bc_tbls.dma >> 10);
722
723 /* The chain extension of the SCD doesn't work well. This feature is
724 * enabled by default by the HW, so we need to disable it manually.
725 */
Emmanuel Grumbache03bbb62014-04-13 10:49:16 +0300726 if (trans->cfg->base_params->scd_chain_ext_wa)
727 iwl_write_prph(trans, SCD_CHAINEXT_EN, 0);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200728
729 iwl_trans_ac_txq_enable(trans, trans_pcie->cmd_queue,
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200730 trans_pcie->cmd_fifo,
731 trans_pcie->cmd_q_wdg_timeout);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200732
733 /* Activate all Tx DMA/FIFO channels */
Avri Altman680073b2014-07-14 09:40:27 +0300734 iwl_scd_activate_fifos(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200735
736 /* Enable DMA channel */
737 for (chan = 0; chan < FH_TCSR_CHNL_NUM; chan++)
738 iwl_write_direct32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(chan),
739 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
740 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
741
742 /* Update FH chicken bits */
743 reg_val = iwl_read_direct32(trans, FH_TX_CHICKEN_BITS_REG);
744 iwl_write_direct32(trans, FH_TX_CHICKEN_BITS_REG,
745 reg_val | FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
746
747 /* Enable L1-Active */
Eran Harary3073d8c2013-12-29 14:09:59 +0200748 if (trans->cfg->device_family != IWL_DEVICE_FAMILY_8000)
749 iwl_clear_bits_prph(trans, APMG_PCIDEV_STT_REG,
750 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200751}
752
Johannes Bergddaf5a52013-01-08 11:25:44 +0100753void iwl_trans_pcie_tx_reset(struct iwl_trans *trans)
754{
755 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
756 int txq_id;
757
758 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
759 txq_id++) {
760 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
Sara Sharone22744a2016-06-22 17:23:34 +0300761 if (trans->cfg->use_tfh)
762 iwl_write_direct64(trans,
763 FH_MEM_CBBC_QUEUE(trans, txq_id),
764 txq->q.dma_addr);
765 else
766 iwl_write_direct32(trans,
767 FH_MEM_CBBC_QUEUE(trans, txq_id),
768 txq->q.dma_addr >> 8);
Johannes Bergddaf5a52013-01-08 11:25:44 +0100769 iwl_pcie_txq_unmap(trans, txq_id);
770 txq->q.read_ptr = 0;
771 txq->q.write_ptr = 0;
772 }
773
774 /* Tell NIC where to find the "keep warm" buffer */
775 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
776 trans_pcie->kw.dma >> 4);
777
Emmanuel Grumbachcd8f4382015-01-29 21:34:00 +0200778 /*
779 * Send 0 as the scd_base_addr since the device may have be reset
780 * while we were in WoWLAN in which case SCD_SRAM_BASE_ADDR will
781 * contain garbage.
782 */
783 iwl_pcie_tx_start(trans, 0);
Johannes Bergddaf5a52013-01-08 11:25:44 +0100784}
785
Emmanuel Grumbach36277232015-02-25 15:49:39 +0200786static void iwl_pcie_tx_stop_fh(struct iwl_trans *trans)
787{
788 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
789 unsigned long flags;
790 int ch, ret;
791 u32 mask = 0;
792
793 spin_lock(&trans_pcie->irq_lock);
794
Emmanuel Grumbach23ba9342015-12-17 11:55:13 +0200795 if (!iwl_trans_grab_nic_access(trans, &flags))
Emmanuel Grumbach36277232015-02-25 15:49:39 +0200796 goto out;
797
798 /* Stop each Tx DMA channel */
799 for (ch = 0; ch < FH_TCSR_CHNL_NUM; ch++) {
800 iwl_write32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
801 mask |= FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch);
802 }
803
804 /* Wait for DMA channels to be idle */
805 ret = iwl_poll_bit(trans, FH_TSSR_TX_STATUS_REG, mask, mask, 5000);
806 if (ret < 0)
807 IWL_ERR(trans,
808 "Failing on timeout while stopping DMA channel %d [0x%08x]\n",
809 ch, iwl_read32(trans, FH_TSSR_TX_STATUS_REG));
810
811 iwl_trans_release_nic_access(trans, &flags);
812
813out:
814 spin_unlock(&trans_pcie->irq_lock);
815}
816
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200817/*
818 * iwl_pcie_tx_stop - Stop all Tx DMA channels
819 */
820int iwl_pcie_tx_stop(struct iwl_trans *trans)
821{
822 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach36277232015-02-25 15:49:39 +0200823 int txq_id;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200824
825 /* Turn off all Tx DMA fifos */
Avri Altman680073b2014-07-14 09:40:27 +0300826 iwl_scd_deactivate_fifos(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200827
Emmanuel Grumbach36277232015-02-25 15:49:39 +0200828 /* Turn off all Tx DMA channels */
829 iwl_pcie_tx_stop_fh(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200830
Emmanuel Grumbachfba1c622013-12-19 22:19:17 +0200831 /*
832 * This function can be called before the op_mode disabled the
833 * queues. This happens when we have an rfkill interrupt.
834 * Since we stop Tx altogether - mark the queues as stopped.
835 */
836 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
837 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
838
839 /* This can happen: start_hw, stop_device */
840 if (!trans_pcie->txq)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200841 return 0;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200842
843 /* Unmap DMA from host system and free skb's */
844 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
845 txq_id++)
846 iwl_pcie_txq_unmap(trans, txq_id);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800847
848 return 0;
849}
850
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200851/*
852 * iwl_trans_tx_free - Free TXQ Context
853 *
854 * Destroy all TX DMA queues and structures
855 */
856void iwl_pcie_tx_free(struct iwl_trans *trans)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300857{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200858 int txq_id;
859 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300860
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200861 /* Tx queues */
862 if (trans_pcie->txq) {
863 for (txq_id = 0;
864 txq_id < trans->cfg->base_params->num_of_queues; txq_id++)
865 iwl_pcie_txq_free(trans, txq_id);
866 }
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300867
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200868 kfree(trans_pcie->txq);
869 trans_pcie->txq = NULL;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300870
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200871 iwl_pcie_free_dma_ptr(trans, &trans_pcie->kw);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300872
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200873 iwl_pcie_free_dma_ptr(trans, &trans_pcie->scd_bc_tbls);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300874}
875
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200876/*
877 * iwl_pcie_tx_alloc - allocate TX context
878 * Allocate all Tx DMA structures and initialize them
879 */
880static int iwl_pcie_tx_alloc(struct iwl_trans *trans)
881{
882 int ret;
883 int txq_id, slots_num;
884 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
885
886 u16 scd_bc_tbls_size = trans->cfg->base_params->num_of_queues *
887 sizeof(struct iwlagn_scd_bc_tbl);
888
889 /*It is not allowed to alloc twice, so warn when this happens.
890 * We cannot rely on the previous allocation, so free and fail */
891 if (WARN_ON(trans_pcie->txq)) {
892 ret = -EINVAL;
893 goto error;
894 }
895
896 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->scd_bc_tbls,
897 scd_bc_tbls_size);
898 if (ret) {
899 IWL_ERR(trans, "Scheduler BC Table allocation failed\n");
900 goto error;
901 }
902
903 /* Alloc keep-warm buffer */
904 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->kw, IWL_KW_SIZE);
905 if (ret) {
906 IWL_ERR(trans, "Keep Warm allocation failed\n");
907 goto error;
908 }
909
910 trans_pcie->txq = kcalloc(trans->cfg->base_params->num_of_queues,
911 sizeof(struct iwl_txq), GFP_KERNEL);
912 if (!trans_pcie->txq) {
913 IWL_ERR(trans, "Not enough memory for txq\n");
Dan Carpenter2ab9ba02013-08-11 02:03:21 +0300914 ret = -ENOMEM;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200915 goto error;
916 }
917
918 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
919 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
920 txq_id++) {
921 slots_num = (txq_id == trans_pcie->cmd_queue) ?
922 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
923 ret = iwl_pcie_txq_alloc(trans, &trans_pcie->txq[txq_id],
924 slots_num, txq_id);
925 if (ret) {
926 IWL_ERR(trans, "Tx %d queue alloc failed\n", txq_id);
927 goto error;
928 }
929 }
930
931 return 0;
932
933error:
934 iwl_pcie_tx_free(trans);
935
936 return ret;
937}
938int iwl_pcie_tx_init(struct iwl_trans *trans)
939{
940 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
941 int ret;
942 int txq_id, slots_num;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200943 bool alloc = false;
944
945 if (!trans_pcie->txq) {
946 ret = iwl_pcie_tx_alloc(trans);
947 if (ret)
948 goto error;
949 alloc = true;
950 }
951
Emmanuel Grumbach7b70bd62013-12-11 10:22:28 +0200952 spin_lock(&trans_pcie->irq_lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200953
954 /* Turn off all Tx DMA fifos */
Avri Altman680073b2014-07-14 09:40:27 +0300955 iwl_scd_deactivate_fifos(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200956
957 /* Tell NIC where to find the "keep warm" buffer */
958 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
959 trans_pcie->kw.dma >> 4);
960
Emmanuel Grumbach7b70bd62013-12-11 10:22:28 +0200961 spin_unlock(&trans_pcie->irq_lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200962
963 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
964 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
965 txq_id++) {
966 slots_num = (txq_id == trans_pcie->cmd_queue) ?
967 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
968 ret = iwl_pcie_txq_init(trans, &trans_pcie->txq[txq_id],
969 slots_num, txq_id);
970 if (ret) {
971 IWL_ERR(trans, "Tx %d queue init failed\n", txq_id);
972 goto error;
973 }
974 }
975
Sara Sharonae797852016-06-30 16:36:24 +0300976 if (trans->cfg->use_tfh) {
Sara Sharone22744a2016-06-22 17:23:34 +0300977 iwl_write_direct32(trans, TFH_TRANSFER_MODE,
978 TFH_TRANSFER_MAX_PENDING_REQ |
979 TFH_CHUNK_SIZE_128 |
980 TFH_CHUNK_SPLIT_MODE);
Sara Sharonae797852016-06-30 16:36:24 +0300981 return 0;
982 }
Sara Sharone22744a2016-06-22 17:23:34 +0300983
Haim Dreyfuss94ce9e52015-06-14 11:17:07 +0300984 iwl_set_bits_prph(trans, SCD_GP_CTRL, SCD_GP_CTRL_AUTO_ACTIVE_MODE);
Emmanuel Grumbachcb6bb122015-01-25 10:36:31 +0200985 if (trans->cfg->base_params->num_of_queues > 20)
986 iwl_set_bits_prph(trans, SCD_GP_CTRL,
987 SCD_GP_CTRL_ENABLE_31_QUEUES);
988
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200989 return 0;
990error:
991 /*Upon error, free only if we allocated something */
992 if (alloc)
993 iwl_pcie_tx_free(trans);
994 return ret;
995}
996
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200997static inline void iwl_pcie_txq_progress(struct iwl_txq *txq)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200998{
Emmanuel Grumbache0b8d4052015-01-20 17:02:40 +0200999 lockdep_assert_held(&txq->lock);
1000
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001001 if (!txq->wd_timeout)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001002 return;
1003
1004 /*
Emmanuel Grumbache0b8d4052015-01-20 17:02:40 +02001005 * station is asleep and we send data - that must
1006 * be uAPSD or PS-Poll. Don't rearm the timer.
1007 */
1008 if (txq->frozen)
1009 return;
1010
1011 /*
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001012 * if empty delete timer, otherwise move timer forward
1013 * since we're making progress on this queue
1014 */
1015 if (txq->q.read_ptr == txq->q.write_ptr)
1016 del_timer(&txq->stuck_timer);
1017 else
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001018 mod_timer(&txq->stuck_timer, jiffies + txq->wd_timeout);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001019}
1020
1021/* Frees buffers until index _not_ inclusive */
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001022void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,
1023 struct sk_buff_head *skbs)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001024{
1025 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1026 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
Johannes Berg83f32a42014-04-24 09:57:40 +02001027 int tfd_num = ssn & (TFD_QUEUE_SIZE_MAX - 1);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001028 struct iwl_queue *q = &txq->q;
1029 int last_to_free;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001030
1031 /* This function is not meant to release cmd queue*/
1032 if (WARN_ON(txq_id == trans_pcie->cmd_queue))
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001033 return;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001034
Johannes Berg2bfb5092012-12-27 21:43:48 +01001035 spin_lock_bh(&txq->lock);
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001036
Emmanuel Grumbachb9676132013-06-13 11:45:59 +03001037 if (!txq->active) {
1038 IWL_DEBUG_TX_QUEUES(trans, "Q %d inactive - ignoring idx %d\n",
1039 txq_id, ssn);
1040 goto out;
1041 }
1042
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001043 if (txq->q.read_ptr == tfd_num)
1044 goto out;
1045
1046 IWL_DEBUG_TX_REPLY(trans, "[Q %d] %d -> %d (%d)\n",
1047 txq_id, txq->q.read_ptr, tfd_num, ssn);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001048
1049 /*Since we free until index _not_ inclusive, the one before index is
1050 * the last we will free. This one must be used */
Johannes Berg83f32a42014-04-24 09:57:40 +02001051 last_to_free = iwl_queue_dec_wrap(tfd_num);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001052
Emmanuel Grumbach6ca6ebc2012-11-14 23:38:08 +02001053 if (!iwl_queue_used(q, last_to_free)) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001054 IWL_ERR(trans,
1055 "%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 +02001056 __func__, txq_id, last_to_free, TFD_QUEUE_SIZE_MAX,
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001057 q->write_ptr, q->read_ptr);
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001058 goto out;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001059 }
1060
1061 if (WARN_ON(!skb_queue_empty(skbs)))
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001062 goto out;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001063
1064 for (;
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001065 q->read_ptr != tfd_num;
Johannes Berg83f32a42014-04-24 09:57:40 +02001066 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr)) {
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03001067 struct sk_buff *skb = txq->entries[txq->q.read_ptr].skb;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001068
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03001069 if (WARN_ON_ONCE(!skb))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001070 continue;
1071
Johannes Berg21cb3222016-06-21 13:11:48 +02001072 iwl_pcie_free_tso_page(trans_pcie, skb);
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03001073
1074 __skb_queue_tail(skbs, skb);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001075
1076 txq->entries[txq->q.read_ptr].skb = NULL;
1077
1078 iwl_pcie_txq_inval_byte_cnt_tbl(trans, txq);
1079
Johannes Berg98891752013-02-26 11:28:19 +01001080 iwl_pcie_txq_free_tfd(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001081 }
1082
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001083 iwl_pcie_txq_progress(txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001084
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001085 if (iwl_queue_space(&txq->q) > txq->q.low_mark &&
1086 test_bit(txq_id, trans_pcie->queue_stopped)) {
Emmanuel Grumbach685b3462016-02-23 11:34:17 +02001087 struct sk_buff_head overflow_skbs;
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001088
Emmanuel Grumbach685b3462016-02-23 11:34:17 +02001089 __skb_queue_head_init(&overflow_skbs);
1090 skb_queue_splice_init(&txq->overflow_q, &overflow_skbs);
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001091
1092 /*
1093 * This is tricky: we are in reclaim path which is non
1094 * re-entrant, so noone will try to take the access the
1095 * txq data from that path. We stopped tx, so we can't
1096 * have tx as well. Bottom line, we can unlock and re-lock
1097 * later.
1098 */
1099 spin_unlock_bh(&txq->lock);
1100
Emmanuel Grumbach685b3462016-02-23 11:34:17 +02001101 while (!skb_queue_empty(&overflow_skbs)) {
1102 struct sk_buff *skb = __skb_dequeue(&overflow_skbs);
Johannes Berg21cb3222016-06-21 13:11:48 +02001103 struct iwl_device_cmd *dev_cmd_ptr;
1104
1105 dev_cmd_ptr = *(void **)((u8 *)skb->cb +
1106 trans_pcie->dev_cmd_offs);
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001107
1108 /*
1109 * Note that we can very well be overflowing again.
1110 * In that case, iwl_queue_space will be small again
1111 * and we won't wake mac80211's queue.
1112 */
Johannes Berg21cb3222016-06-21 13:11:48 +02001113 iwl_trans_pcie_tx(trans, skb, dev_cmd_ptr, txq_id);
Emmanuel Grumbach39555252016-01-14 09:39:21 +02001114 }
1115 spin_lock_bh(&txq->lock);
1116
1117 if (iwl_queue_space(&txq->q) > txq->q.low_mark)
1118 iwl_wake_queue(trans, txq);
1119 }
Eliad Peller7616f332014-11-20 17:33:43 +02001120
1121 if (q->read_ptr == q->write_ptr) {
1122 IWL_DEBUG_RPM(trans, "Q %d - last tx reclaimed\n", q->id);
Luca Coelhoc24c7f52016-03-30 20:59:27 +03001123 iwl_trans_unref(trans);
Eliad Peller7616f332014-11-20 17:33:43 +02001124 }
1125
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +02001126out:
Johannes Berg2bfb5092012-12-27 21:43:48 +01001127 spin_unlock_bh(&txq->lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001128}
1129
Eliad Peller7616f332014-11-20 17:33:43 +02001130static int iwl_pcie_set_cmd_in_flight(struct iwl_trans *trans,
1131 const struct iwl_host_cmd *cmd)
Eliad Peller804d4c52014-11-20 14:36:26 +02001132{
1133 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1134 int ret;
1135
1136 lockdep_assert_held(&trans_pcie->reg_lock);
1137
Eliad Peller7616f332014-11-20 17:33:43 +02001138 if (!(cmd->flags & CMD_SEND_IN_IDLE) &&
1139 !trans_pcie->ref_cmd_in_flight) {
1140 trans_pcie->ref_cmd_in_flight = true;
1141 IWL_DEBUG_RPM(trans, "set ref_cmd_in_flight - ref\n");
Luca Coelhoc24c7f52016-03-30 20:59:27 +03001142 iwl_trans_ref(trans);
Eliad Peller7616f332014-11-20 17:33:43 +02001143 }
1144
Eliad Peller804d4c52014-11-20 14:36:26 +02001145 /*
1146 * wake up the NIC to make sure that the firmware will see the host
1147 * command - we will let the NIC sleep once all the host commands
1148 * returned. This needs to be done only on NICs that have
1149 * apmg_wake_up_wa set.
1150 */
Ilan Peerfc8a3502015-05-13 14:34:07 +03001151 if (trans->cfg->base_params->apmg_wake_up_wa &&
1152 !trans_pcie->cmd_hold_nic_awake) {
Eliad Peller804d4c52014-11-20 14:36:26 +02001153 __iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
1154 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Eliad Peller804d4c52014-11-20 14:36:26 +02001155
1156 ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
1157 CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN,
1158 (CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY |
1159 CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP),
1160 15000);
1161 if (ret < 0) {
1162 __iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
1163 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Eliad Peller804d4c52014-11-20 14:36:26 +02001164 IWL_ERR(trans, "Failed to wake NIC for hcmd\n");
1165 return -EIO;
1166 }
Ilan Peerfc8a3502015-05-13 14:34:07 +03001167 trans_pcie->cmd_hold_nic_awake = true;
Eliad Peller804d4c52014-11-20 14:36:26 +02001168 }
1169
1170 return 0;
1171}
1172
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001173/*
1174 * iwl_pcie_cmdq_reclaim - Reclaim TX command queue entries already Tx'd
1175 *
1176 * When FW advances 'R' index, all entries between old and new 'R' index
1177 * need to be reclaimed. As result, some free space forms. If there is
1178 * enough free space (> low mark), wake the stack that feeds us.
1179 */
1180static void iwl_pcie_cmdq_reclaim(struct iwl_trans *trans, int txq_id, int idx)
1181{
1182 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1183 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
1184 struct iwl_queue *q = &txq->q;
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001185 unsigned long flags;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001186 int nfreed = 0;
1187
1188 lockdep_assert_held(&txq->lock);
1189
Johannes Berg83f32a42014-04-24 09:57:40 +02001190 if ((idx >= TFD_QUEUE_SIZE_MAX) || (!iwl_queue_used(q, idx))) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001191 IWL_ERR(trans,
1192 "%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 +02001193 __func__, txq_id, idx, TFD_QUEUE_SIZE_MAX,
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001194 q->write_ptr, q->read_ptr);
1195 return;
1196 }
1197
Johannes Berg83f32a42014-04-24 09:57:40 +02001198 for (idx = iwl_queue_inc_wrap(idx); q->read_ptr != idx;
1199 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr)) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001200
1201 if (nfreed++ > 0) {
1202 IWL_ERR(trans, "HCMD skipped: index (%d) %d %d\n",
1203 idx, q->write_ptr, q->read_ptr);
Liad Kaufman4c9706d2014-04-27 16:46:09 +03001204 iwl_force_nmi(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001205 }
1206 }
1207
Eliad Peller804d4c52014-11-20 14:36:26 +02001208 if (q->read_ptr == q->write_ptr) {
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001209 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
Eliad Peller804d4c52014-11-20 14:36:26 +02001210 iwl_pcie_clear_cmd_in_flight(trans);
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001211 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1212 }
1213
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001214 iwl_pcie_txq_progress(txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001215}
1216
1217static int iwl_pcie_txq_set_ratid_map(struct iwl_trans *trans, u16 ra_tid,
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001218 u16 txq_id)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001219{
Johannes Berg20d3b642012-05-16 22:54:29 +02001220 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001221 u32 tbl_dw_addr;
1222 u32 tbl_dw;
1223 u16 scd_q2ratid;
1224
1225 scd_q2ratid = ra_tid & SCD_QUEUE_RA_TID_MAP_RATID_MSK;
1226
Emmanuel Grumbach105183b2011-08-25 23:11:02 -07001227 tbl_dw_addr = trans_pcie->scd_base_addr +
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001228 SCD_TRANS_TBL_OFFSET_QUEUE(txq_id);
1229
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001230 tbl_dw = iwl_trans_read_mem32(trans, tbl_dw_addr);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001231
1232 if (txq_id & 0x1)
1233 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
1234 else
1235 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
1236
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001237 iwl_trans_write_mem32(trans, tbl_dw_addr, tbl_dw);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001238
1239 return 0;
1240}
1241
Emmanuel Grumbachbd5f6a32013-04-28 14:05:22 +03001242/* Receiver address (actually, Rx station's index into station table),
1243 * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */
1244#define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
1245
Johannes Bergfea77952014-08-01 11:58:47 +02001246void iwl_trans_pcie_txq_enable(struct iwl_trans *trans, int txq_id, u16 ssn,
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001247 const struct iwl_trans_txq_scd_cfg *cfg,
1248 unsigned int wdg_timeout)
Johannes Berg70a18c52012-03-05 11:24:44 -08001249{
Johannes Berg9eae88f2012-03-15 13:26:52 -07001250 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001251 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
Johannes Bergd4578ea2014-08-01 12:17:40 +02001252 int fifo = -1;
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001253
Johannes Berg9eae88f2012-03-15 13:26:52 -07001254 if (test_and_set_bit(txq_id, trans_pcie->queue_used))
1255 WARN_ONCE(1, "queue %d already used - expect issues", txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001256
Sara Sharonae797852016-06-30 16:36:24 +03001257 if (cfg && trans->cfg->use_tfh)
1258 WARN_ONCE(1, "Expected no calls to SCD configuration");
1259
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001260 txq->wd_timeout = msecs_to_jiffies(wdg_timeout);
1261
Johannes Bergd4578ea2014-08-01 12:17:40 +02001262 if (cfg) {
1263 fifo = cfg->fifo;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001264
Avri Altman002a9e22014-07-24 19:25:10 +03001265 /* Disable the scheduler prior configuring the cmd queue */
Emmanuel Grumbach3a736bc2014-09-10 11:16:41 +03001266 if (txq_id == trans_pcie->cmd_queue &&
1267 trans_pcie->scd_set_active)
Avri Altman002a9e22014-07-24 19:25:10 +03001268 iwl_scd_enable_set_active(trans, 0);
1269
Johannes Bergd4578ea2014-08-01 12:17:40 +02001270 /* Stop this Tx queue before configuring it */
1271 iwl_scd_txq_set_inactive(trans, txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001272
Johannes Bergd4578ea2014-08-01 12:17:40 +02001273 /* Set this queue as a chain-building queue unless it is CMD */
1274 if (txq_id != trans_pcie->cmd_queue)
1275 iwl_scd_txq_set_chain(trans, txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001276
Johannes Berg64ba8932014-08-01 13:33:46 +02001277 if (cfg->aggregate) {
Johannes Bergd4578ea2014-08-01 12:17:40 +02001278 u16 ra_tid = BUILD_RAxTID(cfg->sta_id, cfg->tid);
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001279
Johannes Bergd4578ea2014-08-01 12:17:40 +02001280 /* Map receiver-address / traffic-ID to this queue */
1281 iwl_pcie_txq_set_ratid_map(trans, ra_tid, txq_id);
Emmanuel Grumbachf4772522013-07-24 14:15:21 +03001282
Johannes Bergd4578ea2014-08-01 12:17:40 +02001283 /* enable aggregations for the queue */
1284 iwl_scd_txq_enable_agg(trans, txq_id);
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001285 txq->ampdu = true;
Johannes Bergd4578ea2014-08-01 12:17:40 +02001286 } else {
1287 /*
1288 * disable aggregations for the queue, this will also
1289 * make the ra_tid mapping configuration irrelevant
1290 * since it is now a non-AGG queue.
1291 */
1292 iwl_scd_txq_disable_agg(trans, txq_id);
1293
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001294 ssn = txq->q.read_ptr;
Johannes Bergd4578ea2014-08-01 12:17:40 +02001295 }
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001296 }
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001297
1298 /* Place first TFD at index corresponding to start sequence number.
1299 * Assumes that ssn_idx is valid (!= 0xFFF) */
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001300 txq->q.read_ptr = (ssn & 0xff);
1301 txq->q.write_ptr = (ssn & 0xff);
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +02001302 iwl_write_direct32(trans, HBUS_TARG_WRPTR,
1303 (ssn & 0xff) | (txq_id << 8));
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001304
Johannes Bergd4578ea2014-08-01 12:17:40 +02001305 if (cfg) {
1306 u8 frame_limit = cfg->frame_limit;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001307
Johannes Bergd4578ea2014-08-01 12:17:40 +02001308 iwl_write_prph(trans, SCD_QUEUE_RDPTR(txq_id), ssn);
1309
1310 /* Set up Tx window size and frame limit for this queue */
1311 iwl_trans_write_mem32(trans, trans_pcie->scd_base_addr +
1312 SCD_CONTEXT_QUEUE_OFFSET(txq_id), 0);
1313 iwl_trans_write_mem32(trans,
1314 trans_pcie->scd_base_addr +
Johannes Berg9eae88f2012-03-15 13:26:52 -07001315 SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
1316 ((frame_limit << SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
Johannes Bergd4578ea2014-08-01 12:17:40 +02001317 SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
Johannes Berg9eae88f2012-03-15 13:26:52 -07001318 ((frame_limit << SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
Johannes Bergd4578ea2014-08-01 12:17:40 +02001319 SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001320
Johannes Bergd4578ea2014-08-01 12:17:40 +02001321 /* Set up status area in SRAM, map to Tx DMA/FIFO, activate */
1322 iwl_write_prph(trans, SCD_QUEUE_STATUS_BITS(txq_id),
1323 (1 << SCD_QUEUE_STTS_REG_POS_ACTIVE) |
1324 (cfg->fifo << SCD_QUEUE_STTS_REG_POS_TXF) |
1325 (1 << SCD_QUEUE_STTS_REG_POS_WSL) |
1326 SCD_QUEUE_STTS_REG_MSK);
Avri Altman002a9e22014-07-24 19:25:10 +03001327
1328 /* enable the scheduler for this queue (only) */
Emmanuel Grumbach3a736bc2014-09-10 11:16:41 +03001329 if (txq_id == trans_pcie->cmd_queue &&
1330 trans_pcie->scd_set_active)
Avri Altman002a9e22014-07-24 19:25:10 +03001331 iwl_scd_enable_set_active(trans, BIT(txq_id));
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +02001332
1333 IWL_DEBUG_TX_QUEUES(trans,
1334 "Activate queue %d on FIFO %d WrPtr: %d\n",
1335 txq_id, fifo, ssn & 0xff);
1336 } else {
1337 IWL_DEBUG_TX_QUEUES(trans,
1338 "Activate queue %d WrPtr: %d\n",
1339 txq_id, ssn & 0xff);
Johannes Bergd4578ea2014-08-01 12:17:40 +02001340 }
1341
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001342 txq->active = true;
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001343}
1344
Liad Kaufman42db09c2016-05-02 14:01:14 +03001345void iwl_trans_pcie_txq_set_shared_mode(struct iwl_trans *trans, u32 txq_id,
1346 bool shared_mode)
1347{
1348 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1349 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
1350
1351 txq->ampdu = !shared_mode;
1352}
1353
Johannes Bergd4578ea2014-08-01 12:17:40 +02001354void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int txq_id,
1355 bool configure_scd)
Emmanuel Grumbach288712a2011-08-25 23:11:25 -07001356{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001357 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach986ea6c2012-09-30 16:25:43 +02001358 u32 stts_addr = trans_pcie->scd_base_addr +
1359 SCD_TX_STTS_QUEUE_OFFSET(txq_id);
1360 static const u32 zero_val[4] = {};
Emmanuel Grumbach288712a2011-08-25 23:11:25 -07001361
Emmanuel Grumbache0b8d4052015-01-20 17:02:40 +02001362 trans_pcie->txq[txq_id].frozen_expiry_remainder = 0;
1363 trans_pcie->txq[txq_id].frozen = false;
1364
Emmanuel Grumbachfba1c622013-12-19 22:19:17 +02001365 /*
1366 * Upon HW Rfkill - we stop the device, and then stop the queues
1367 * in the op_mode. Just for the sake of the simplicity of the op_mode,
1368 * allow the op_mode to call txq_disable after it already called
1369 * stop_device.
1370 */
Johannes Berg9eae88f2012-03-15 13:26:52 -07001371 if (!test_and_clear_bit(txq_id, trans_pcie->queue_used)) {
Emmanuel Grumbachfba1c622013-12-19 22:19:17 +02001372 WARN_ONCE(test_bit(STATUS_DEVICE_ENABLED, &trans->status),
1373 "queue %d not used", txq_id);
Johannes Berg9eae88f2012-03-15 13:26:52 -07001374 return;
Emmanuel Grumbachbc237732011-11-21 13:25:31 +02001375 }
1376
Sara Sharonae797852016-06-30 16:36:24 +03001377 if (configure_scd && trans->cfg->use_tfh)
1378 WARN_ONCE(1, "Expected no calls to SCD configuration");
1379
Johannes Bergd4578ea2014-08-01 12:17:40 +02001380 if (configure_scd) {
1381 iwl_scd_txq_set_inactive(trans, txq_id);
Emmanuel Grumbachac928f82012-10-14 16:36:36 +02001382
Johannes Bergd4578ea2014-08-01 12:17:40 +02001383 iwl_trans_write_mem(trans, stts_addr, (void *)zero_val,
1384 ARRAY_SIZE(zero_val));
1385 }
Emmanuel Grumbach986ea6c2012-09-30 16:25:43 +02001386
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001387 iwl_pcie_txq_unmap(trans, txq_id);
Johannes Berg68972c42013-06-11 19:05:27 +02001388 trans_pcie->txq[txq_id].ampdu = false;
Emmanuel Grumbach6c3fd3f2012-10-18 12:38:37 +02001389
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001390 IWL_DEBUG_TX_QUEUES(trans, "Deactivate queue %d\n", txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001391}
1392
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001393/*************** HOST COMMAND QUEUE FUNCTIONS *****/
1394
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001395/*
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001396 * iwl_pcie_enqueue_hcmd - enqueue a uCode command
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001397 * @priv: device private data point
Eliad Pellere89044d2013-07-16 17:33:26 +03001398 * @cmd: a pointer to the ucode command structure
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001399 *
Eliad Pellere89044d2013-07-16 17:33:26 +03001400 * The function returns < 0 values to indicate the operation
1401 * failed. On success, it returns the index (>= 0) of command in the
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001402 * command queue.
1403 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001404static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,
1405 struct iwl_host_cmd *cmd)
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001406{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001407 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001408 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001409 struct iwl_queue *q = &txq->q;
Johannes Bergc2acea82009-07-24 11:13:05 -07001410 struct iwl_device_cmd *out_cmd;
1411 struct iwl_cmd_meta *out_meta;
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001412 unsigned long flags;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001413 void *dup_buf = NULL;
Tomas Winklerf3674222008-08-04 16:00:44 +08001414 dma_addr_t phys_addr;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001415 int idx;
Sara Sharon8de437c2016-06-09 17:56:38 +03001416 u16 copy_size, cmd_size, tb0_size;
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001417 bool had_nocopy = false;
Aviya Erenfeldab021652015-06-09 16:45:52 +03001418 u8 group_id = iwl_cmd_groupid(cmd->id);
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001419 int i, ret;
Emmanuel Grumbach96791422012-07-24 01:58:32 +03001420 u32 cmd_pos;
Johannes Berg1afbfb62013-02-26 11:32:26 +01001421 const u8 *cmddata[IWL_MAX_CMD_TBS_PER_TFD];
1422 u16 cmdlen[IWL_MAX_CMD_TBS_PER_TFD];
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001423
Johannes Berg88742c92015-06-30 15:31:22 +02001424 if (WARN(!trans_pcie->wide_cmd_header &&
1425 group_id > IWL_ALWAYS_LONG_GROUP,
Aviya Erenfeldab021652015-06-09 16:45:52 +03001426 "unsupported wide command %#x\n", cmd->id))
1427 return -EINVAL;
1428
1429 if (group_id != 0) {
1430 copy_size = sizeof(struct iwl_cmd_header_wide);
1431 cmd_size = sizeof(struct iwl_cmd_header_wide);
1432 } else {
1433 copy_size = sizeof(struct iwl_cmd_header);
1434 cmd_size = sizeof(struct iwl_cmd_header);
1435 }
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001436
1437 /* need one for the header if the first is NOCOPY */
Johannes Berg1afbfb62013-02-26 11:32:26 +01001438 BUILD_BUG_ON(IWL_MAX_CMD_TBS_PER_TFD > IWL_NUM_OF_TBS - 1);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001439
Johannes Berg1afbfb62013-02-26 11:32:26 +01001440 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg8a964f42013-02-25 16:01:34 +01001441 cmddata[i] = cmd->data[i];
1442 cmdlen[i] = cmd->len[i];
1443
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001444 if (!cmd->len[i])
1445 continue;
Johannes Berg8a964f42013-02-25 16:01:34 +01001446
Sara Sharon8de437c2016-06-09 17:56:38 +03001447 /* need at least IWL_FIRST_TB_SIZE copied */
1448 if (copy_size < IWL_FIRST_TB_SIZE) {
1449 int copy = IWL_FIRST_TB_SIZE - copy_size;
Johannes Berg8a964f42013-02-25 16:01:34 +01001450
1451 if (copy > cmdlen[i])
1452 copy = cmdlen[i];
1453 cmdlen[i] -= copy;
1454 cmddata[i] += copy;
1455 copy_size += copy;
1456 }
1457
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001458 if (cmd->dataflags[i] & IWL_HCMD_DFL_NOCOPY) {
1459 had_nocopy = true;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001460 if (WARN_ON(cmd->dataflags[i] & IWL_HCMD_DFL_DUP)) {
1461 idx = -EINVAL;
1462 goto free_dup_buf;
1463 }
1464 } else if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP) {
1465 /*
1466 * This is also a chunk that isn't copied
1467 * to the static buffer so set had_nocopy.
1468 */
1469 had_nocopy = true;
1470
1471 /* only allowed once */
1472 if (WARN_ON(dup_buf)) {
1473 idx = -EINVAL;
1474 goto free_dup_buf;
1475 }
1476
Johannes Berg8a964f42013-02-25 16:01:34 +01001477 dup_buf = kmemdup(cmddata[i], cmdlen[i],
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001478 GFP_ATOMIC);
1479 if (!dup_buf)
1480 return -ENOMEM;
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001481 } else {
1482 /* NOCOPY must not be followed by normal! */
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001483 if (WARN_ON(had_nocopy)) {
1484 idx = -EINVAL;
1485 goto free_dup_buf;
1486 }
Johannes Berg8a964f42013-02-25 16:01:34 +01001487 copy_size += cmdlen[i];
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001488 }
1489 cmd_size += cmd->len[i];
1490 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001491
Johannes Berg3e41ace2011-04-18 09:12:37 -07001492 /*
1493 * If any of the command structures end up being larger than
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001494 * the TFD_MAX_PAYLOAD_SIZE and they aren't dynamically
1495 * allocated into separate TFDs, then we will need to
1496 * increase the size of the buffers.
Johannes Berg3e41ace2011-04-18 09:12:37 -07001497 */
Johannes Berg2a79e452012-09-26 13:32:13 +02001498 if (WARN(copy_size > TFD_MAX_PAYLOAD_SIZE,
1499 "Command %s (%#x) is too large (%d bytes)\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001500 iwl_get_cmd_string(trans, cmd->id),
1501 cmd->id, copy_size)) {
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001502 idx = -EINVAL;
1503 goto free_dup_buf;
1504 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001505
Johannes Berg015c15e2012-03-05 11:24:24 -08001506 spin_lock_bh(&txq->lock);
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001507
Johannes Bergc2acea82009-07-24 11:13:05 -07001508 if (iwl_queue_space(q) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
Johannes Berg015c15e2012-03-05 11:24:24 -08001509 spin_unlock_bh(&txq->lock);
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001510
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001511 IWL_ERR(trans, "No space in command queue\n");
Johannes Berg0e781842012-03-06 13:30:49 -08001512 iwl_op_mode_cmd_queue_full(trans->op_mode);
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001513 idx = -ENOSPC;
1514 goto free_dup_buf;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001515 }
1516
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001517 idx = get_cmd_index(q, q->write_ptr);
Johannes Bergbf8440e2012-03-19 17:12:06 +01001518 out_cmd = txq->entries[idx].cmd;
1519 out_meta = &txq->entries[idx].meta;
Johannes Bergc2acea82009-07-24 11:13:05 -07001520
Daniel C Halperin8ce73f32009-07-31 14:28:06 -07001521 memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */
Johannes Bergc2acea82009-07-24 11:13:05 -07001522 if (cmd->flags & CMD_WANT_SKB)
1523 out_meta->source = cmd;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001524
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001525 /* set up the header */
Aviya Erenfeldab021652015-06-09 16:45:52 +03001526 if (group_id != 0) {
1527 out_cmd->hdr_wide.cmd = iwl_cmd_opcode(cmd->id);
1528 out_cmd->hdr_wide.group_id = group_id;
1529 out_cmd->hdr_wide.version = iwl_cmd_version(cmd->id);
1530 out_cmd->hdr_wide.length =
1531 cpu_to_le16(cmd_size -
1532 sizeof(struct iwl_cmd_header_wide));
1533 out_cmd->hdr_wide.reserved = 0;
1534 out_cmd->hdr_wide.sequence =
1535 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
1536 INDEX_TO_SEQ(q->write_ptr));
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001537
Aviya Erenfeldab021652015-06-09 16:45:52 +03001538 cmd_pos = sizeof(struct iwl_cmd_header_wide);
1539 copy_size = sizeof(struct iwl_cmd_header_wide);
1540 } else {
1541 out_cmd->hdr.cmd = iwl_cmd_opcode(cmd->id);
1542 out_cmd->hdr.sequence =
1543 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
1544 INDEX_TO_SEQ(q->write_ptr));
1545 out_cmd->hdr.group_id = 0;
1546
1547 cmd_pos = sizeof(struct iwl_cmd_header);
1548 copy_size = sizeof(struct iwl_cmd_header);
1549 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001550
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001551 /* and copy the data that needs to be copied */
Johannes Berg1afbfb62013-02-26 11:32:26 +01001552 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg4d075002014-04-24 10:41:31 +02001553 int copy;
Johannes Berg8a964f42013-02-25 16:01:34 +01001554
Emmanuel Grumbachcc904c72013-03-14 08:35:06 +02001555 if (!cmd->len[i])
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001556 continue;
Johannes Berg8a964f42013-02-25 16:01:34 +01001557
Johannes Berg4d075002014-04-24 10:41:31 +02001558 /* copy everything if not nocopy/dup */
1559 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1560 IWL_HCMD_DFL_DUP))) {
1561 copy = cmd->len[i];
1562
1563 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1564 cmd_pos += copy;
1565 copy_size += copy;
1566 continue;
1567 }
1568
1569 /*
Sara Sharon8de437c2016-06-09 17:56:38 +03001570 * Otherwise we need at least IWL_FIRST_TB_SIZE copied
1571 * in total (for bi-directional DMA), but copy up to what
Johannes Berg4d075002014-04-24 10:41:31 +02001572 * we can fit into the payload for debug dump purposes.
1573 */
1574 copy = min_t(int, TFD_MAX_PAYLOAD_SIZE - cmd_pos, cmd->len[i]);
1575
1576 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1577 cmd_pos += copy;
1578
1579 /* However, treat copy_size the proper way, we need it below */
Sara Sharon8de437c2016-06-09 17:56:38 +03001580 if (copy_size < IWL_FIRST_TB_SIZE) {
1581 copy = IWL_FIRST_TB_SIZE - copy_size;
Johannes Berg8a964f42013-02-25 16:01:34 +01001582
1583 if (copy > cmd->len[i])
1584 copy = cmd->len[i];
Johannes Berg8a964f42013-02-25 16:01:34 +01001585 copy_size += copy;
1586 }
Emmanuel Grumbach96791422012-07-24 01:58:32 +03001587 }
1588
Johannes Bergd9fb6462012-03-26 08:23:39 -07001589 IWL_DEBUG_HC(trans,
Aviya Erenfeldab021652015-06-09 16:45:52 +03001590 "Sending command %s (%.2x.%.2x), seq: 0x%04X, %d bytes at %d[%d]:%d\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001591 iwl_get_cmd_string(trans, cmd->id),
Aviya Erenfeldab021652015-06-09 16:45:52 +03001592 group_id, out_cmd->hdr.cmd,
1593 le16_to_cpu(out_cmd->hdr.sequence),
Johannes Berg20d3b642012-05-16 22:54:29 +02001594 cmd_size, q->write_ptr, idx, trans_pcie->cmd_queue);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001595
Sara Sharon8de437c2016-06-09 17:56:38 +03001596 /* start the TFD with the minimum copy bytes */
1597 tb0_size = min_t(int, copy_size, IWL_FIRST_TB_SIZE);
1598 memcpy(&txq->first_tb_bufs[idx], &out_cmd->hdr, tb0_size);
Johannes Berg38c0f3342013-02-27 13:18:50 +01001599 iwl_pcie_txq_build_tfd(trans, txq,
Sara Sharon8de437c2016-06-09 17:56:38 +03001600 iwl_pcie_get_first_tb_dma(txq, idx),
1601 tb0_size, true);
Johannes Berg8a964f42013-02-25 16:01:34 +01001602
Johannes Berg38c0f3342013-02-27 13:18:50 +01001603 /* map first command fragment, if any remains */
Sara Sharon8de437c2016-06-09 17:56:38 +03001604 if (copy_size > tb0_size) {
Johannes Berg38c0f3342013-02-27 13:18:50 +01001605 phys_addr = dma_map_single(trans->dev,
Sara Sharon8de437c2016-06-09 17:56:38 +03001606 ((u8 *)&out_cmd->hdr) + tb0_size,
1607 copy_size - tb0_size,
Johannes Berg38c0f3342013-02-27 13:18:50 +01001608 DMA_TO_DEVICE);
1609 if (dma_mapping_error(trans->dev, phys_addr)) {
1610 iwl_pcie_tfd_unmap(trans, out_meta,
1611 &txq->tfds[q->write_ptr]);
1612 idx = -ENOMEM;
1613 goto out;
1614 }
1615
1616 iwl_pcie_txq_build_tfd(trans, txq, phys_addr,
Sara Sharon8de437c2016-06-09 17:56:38 +03001617 copy_size - tb0_size, false);
Johannes Berg2c46f722011-04-28 07:27:10 -07001618 }
1619
Johannes Berg8a964f42013-02-25 16:01:34 +01001620 /* map the remaining (adjusted) nocopy/dup fragments */
Johannes Berg1afbfb62013-02-26 11:32:26 +01001621 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg8a964f42013-02-25 16:01:34 +01001622 const void *data = cmddata[i];
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001623
Johannes Berg8a964f42013-02-25 16:01:34 +01001624 if (!cmdlen[i])
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001625 continue;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001626 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1627 IWL_HCMD_DFL_DUP)))
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001628 continue;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001629 if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP)
1630 data = dup_buf;
1631 phys_addr = dma_map_single(trans->dev, (void *)data,
Johannes Berg98891752013-02-26 11:28:19 +01001632 cmdlen[i], DMA_TO_DEVICE);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001633 if (dma_mapping_error(trans->dev, phys_addr)) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001634 iwl_pcie_tfd_unmap(trans, out_meta,
Johannes Berg98891752013-02-26 11:28:19 +01001635 &txq->tfds[q->write_ptr]);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001636 idx = -ENOMEM;
1637 goto out;
1638 }
1639
Johannes Berg6d6e68f2014-04-23 19:00:56 +02001640 iwl_pcie_txq_build_tfd(trans, txq, phys_addr, cmdlen[i], false);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001641 }
Reinette Chatredf833b12009-04-21 10:55:48 -07001642
Johannes Berg206eea72015-04-17 16:38:31 +02001643 BUILD_BUG_ON(IWL_NUM_OF_TBS + CMD_TB_BITMAP_POS >
1644 sizeof(out_meta->flags) * BITS_PER_BYTE);
Emmanuel Grumbachafaf6b52011-07-08 08:46:09 -07001645 out_meta->flags = cmd->flags;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001646 if (WARN_ON_ONCE(txq->entries[idx].free_buf))
Johannes Berg5d4185a2014-09-09 21:16:06 +02001647 kzfree(txq->entries[idx].free_buf);
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001648 txq->entries[idx].free_buf = dup_buf;
Johannes Berg2c46f722011-04-28 07:27:10 -07001649
Aviya Erenfeldab021652015-06-09 16:45:52 +03001650 trace_iwlwifi_dev_hcmd(trans->dev, cmd, cmd_size, &out_cmd->hdr_wide);
Reinette Chatredf833b12009-04-21 10:55:48 -07001651
Johannes Berg7c5ba4a2012-04-09 17:46:54 -07001652 /* start timer if queue currently empty */
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001653 if (q->read_ptr == q->write_ptr && txq->wd_timeout)
1654 mod_timer(&txq->stuck_timer, jiffies + txq->wd_timeout);
Johannes Berg7c5ba4a2012-04-09 17:46:54 -07001655
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001656 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
Eliad Peller7616f332014-11-20 17:33:43 +02001657 ret = iwl_pcie_set_cmd_in_flight(trans, cmd);
Eliad Peller804d4c52014-11-20 14:36:26 +02001658 if (ret < 0) {
1659 idx = ret;
1660 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1661 goto out;
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001662 }
1663
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001664 /* Increment and update queue's write index */
Johannes Berg83f32a42014-04-24 09:57:40 +02001665 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001666 iwl_pcie_txq_inc_wr_ptr(trans, txq);
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001667
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001668 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1669
Johannes Berg2c46f722011-04-28 07:27:10 -07001670 out:
Johannes Berg015c15e2012-03-05 11:24:24 -08001671 spin_unlock_bh(&txq->lock);
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001672 free_dup_buf:
1673 if (idx < 0)
1674 kfree(dup_buf);
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001675 return idx;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001676}
1677
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001678/*
1679 * iwl_pcie_hcmd_complete - Pull unused buffers off the queue and reclaim them
Tomas Winkler17b88922008-05-29 16:35:12 +08001680 * @rxb: Rx buffer to reclaim
Tomas Winkler17b88922008-05-29 16:35:12 +08001681 */
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001682void iwl_pcie_hcmd_complete(struct iwl_trans *trans,
Johannes Bergf7e64692015-06-23 21:58:17 +02001683 struct iwl_rx_cmd_buffer *rxb)
Tomas Winkler17b88922008-05-29 16:35:12 +08001684{
Zhu Yi2f301222009-10-09 17:19:45 +08001685 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler17b88922008-05-29 16:35:12 +08001686 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
Sharon Dvir39bdb172015-10-15 18:18:09 +03001687 u8 group_id = iwl_cmd_groupid(pkt->hdr.group_id);
1688 u32 cmd_id;
Tomas Winkler17b88922008-05-29 16:35:12 +08001689 int txq_id = SEQ_TO_QUEUE(sequence);
1690 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler17b88922008-05-29 16:35:12 +08001691 int cmd_index;
Johannes Bergc2acea82009-07-24 11:13:05 -07001692 struct iwl_device_cmd *cmd;
1693 struct iwl_cmd_meta *meta;
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001694 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001695 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
Tomas Winkler17b88922008-05-29 16:35:12 +08001696
1697 /* If a Tx command is being handled and it isn't in the actual
1698 * command queue then there a command routing bug has been introduced
1699 * in the queue management code. */
Meenakshi Venkataramanc6f600f2012-03-08 11:29:12 -08001700 if (WARN(txq_id != trans_pcie->cmd_queue,
Johannes Berg13bb9482010-08-23 10:46:33 +02001701 "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n",
Johannes Berg20d3b642012-05-16 22:54:29 +02001702 txq_id, trans_pcie->cmd_queue, sequence,
1703 trans_pcie->txq[trans_pcie->cmd_queue].q.read_ptr,
1704 trans_pcie->txq[trans_pcie->cmd_queue].q.write_ptr)) {
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -07001705 iwl_print_hex_error(trans, pkt, 32);
Johannes Berg55d6a3c2008-09-23 19:18:43 +02001706 return;
Winkler, Tomas01ef93232008-11-07 09:58:45 -08001707 }
Tomas Winkler17b88922008-05-29 16:35:12 +08001708
Johannes Berg2bfb5092012-12-27 21:43:48 +01001709 spin_lock_bh(&txq->lock);
Johannes Berg015c15e2012-03-05 11:24:24 -08001710
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001711 cmd_index = get_cmd_index(&txq->q, index);
Johannes Bergbf8440e2012-03-19 17:12:06 +01001712 cmd = txq->entries[cmd_index].cmd;
1713 meta = &txq->entries[cmd_index].meta;
Sharon Dvir39bdb172015-10-15 18:18:09 +03001714 cmd_id = iwl_cmd_id(cmd->hdr.cmd, group_id, 0);
Tomas Winkler17b88922008-05-29 16:35:12 +08001715
Johannes Berg98891752013-02-26 11:28:19 +01001716 iwl_pcie_tfd_unmap(trans, meta, &txq->tfds[index]);
Reinette Chatrec33de622009-10-30 14:36:10 -07001717
Tomas Winkler17b88922008-05-29 16:35:12 +08001718 /* Input error checking is done when commands are added to queue. */
Johannes Bergc2acea82009-07-24 11:13:05 -07001719 if (meta->flags & CMD_WANT_SKB) {
Johannes Berg48a2d662012-03-05 11:24:39 -08001720 struct page *p = rxb_steal_page(rxb);
Stanislaw Gruszka2624e962011-04-20 16:02:58 +02001721
Johannes Berg65b94a42012-03-05 11:24:38 -08001722 meta->source->resp_pkt = pkt;
1723 meta->source->_rx_page_addr = (unsigned long)page_address(p);
Johannes Bergb2cf4102012-04-09 17:46:51 -07001724 meta->source->_rx_page_order = trans_pcie->rx_page_order;
Stanislaw Gruszka2624e962011-04-20 16:02:58 +02001725 }
Tomas Winkler17b88922008-05-29 16:35:12 +08001726
Emmanuel Grumbachdcbb4742015-11-24 15:17:37 +02001727 if (meta->flags & CMD_WANT_ASYNC_CALLBACK)
1728 iwl_op_mode_async_cb(trans->op_mode, cmd);
1729
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001730 iwl_pcie_cmdq_reclaim(trans, txq_id, index);
Tomas Winkler17b88922008-05-29 16:35:12 +08001731
Johannes Bergc2acea82009-07-24 11:13:05 -07001732 if (!(meta->flags & CMD_ASYNC)) {
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001733 if (!test_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status)) {
Wey-Yi Guy05c89b92011-10-10 07:26:48 -07001734 IWL_WARN(trans,
1735 "HCMD_ACTIVE already clear for command %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001736 iwl_get_cmd_string(trans, cmd_id));
Wey-Yi Guy05c89b92011-10-10 07:26:48 -07001737 }
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001738 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001739 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001740 iwl_get_cmd_string(trans, cmd_id));
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001741 wake_up(&trans_pcie->wait_command_queue);
Tomas Winkler17b88922008-05-29 16:35:12 +08001742 }
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001743
Luciano Coelho4cbb8e502015-08-18 16:02:38 +03001744 if (meta->flags & CMD_MAKE_TRANS_IDLE) {
1745 IWL_DEBUG_INFO(trans, "complete %s - mark trans as idle\n",
1746 iwl_get_cmd_string(trans, cmd->hdr.cmd));
1747 set_bit(STATUS_TRANS_IDLE, &trans->status);
1748 wake_up(&trans_pcie->d0i3_waitq);
1749 }
1750
1751 if (meta->flags & CMD_WAKE_UP_TRANS) {
1752 IWL_DEBUG_INFO(trans, "complete %s - clear trans idle flag\n",
1753 iwl_get_cmd_string(trans, cmd->hdr.cmd));
1754 clear_bit(STATUS_TRANS_IDLE, &trans->status);
1755 wake_up(&trans_pcie->d0i3_waitq);
1756 }
1757
Zhu Yidd487442010-03-22 02:28:41 -07001758 meta->flags = 0;
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001759
Johannes Berg2bfb5092012-12-27 21:43:48 +01001760 spin_unlock_bh(&txq->lock);
Tomas Winkler17b88922008-05-29 16:35:12 +08001761}
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001762
Johannes Berg9439eac2013-10-09 09:59:25 +02001763#define HOST_COMPLETE_TIMEOUT (2 * HZ)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001764
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001765static int iwl_pcie_send_hcmd_async(struct iwl_trans *trans,
1766 struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001767{
1768 int ret;
1769
1770 /* An asynchronous command can not expect an SKB to be set. */
1771 if (WARN_ON(cmd->flags & CMD_WANT_SKB))
1772 return -EINVAL;
1773
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001774 ret = iwl_pcie_enqueue_hcmd(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001775 if (ret < 0) {
Johannes Berg721c32f2012-03-06 13:30:40 -08001776 IWL_ERR(trans,
Todd Previteb36b1102011-11-10 06:55:02 -08001777 "Error sending %s: enqueue_hcmd failed: %d\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001778 iwl_get_cmd_string(trans, cmd->id), ret);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001779 return ret;
1780 }
1781 return 0;
1782}
1783
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001784static int iwl_pcie_send_hcmd_sync(struct iwl_trans *trans,
1785 struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001786{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001787 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001788 int cmd_idx;
1789 int ret;
1790
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001791 IWL_DEBUG_INFO(trans, "Attempting to send sync command %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001792 iwl_get_cmd_string(trans, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001793
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001794 if (WARN(test_and_set_bit(STATUS_SYNC_HCMD_ACTIVE,
1795 &trans->status),
Johannes Bergbcbb8c92013-10-28 15:50:55 +01001796 "Command %s: a command is already active!\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001797 iwl_get_cmd_string(trans, cmd->id)))
Johannes Berg2cc39c92012-03-06 13:30:41 -08001798 return -EIO;
Johannes Berg2cc39c92012-03-06 13:30:41 -08001799
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001800 IWL_DEBUG_INFO(trans, "Setting HCMD_ACTIVE for command %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001801 iwl_get_cmd_string(trans, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001802
Luca Coelho71b12302016-03-11 12:12:16 +02001803 if (pm_runtime_suspended(&trans_pcie->pci_dev->dev)) {
1804 ret = wait_event_timeout(trans_pcie->d0i3_waitq,
1805 pm_runtime_active(&trans_pcie->pci_dev->dev),
1806 msecs_to_jiffies(IWL_TRANS_IDLE_TIMEOUT));
1807 if (!ret) {
1808 IWL_ERR(trans, "Timeout exiting D0i3 before hcmd\n");
1809 return -ETIMEDOUT;
1810 }
1811 }
1812
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001813 cmd_idx = iwl_pcie_enqueue_hcmd(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001814 if (cmd_idx < 0) {
1815 ret = cmd_idx;
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001816 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
Johannes Berg721c32f2012-03-06 13:30:40 -08001817 IWL_ERR(trans,
Todd Previteb36b1102011-11-10 06:55:02 -08001818 "Error sending %s: enqueue_hcmd failed: %d\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001819 iwl_get_cmd_string(trans, cmd->id), ret);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001820 return ret;
1821 }
1822
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001823 ret = wait_event_timeout(trans_pcie->wait_command_queue,
1824 !test_bit(STATUS_SYNC_HCMD_ACTIVE,
1825 &trans->status),
1826 HOST_COMPLETE_TIMEOUT);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001827 if (!ret) {
Johannes Berg6dde8c42013-10-31 18:30:38 +01001828 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
1829 struct iwl_queue *q = &txq->q;
Wey-Yi Guyd10630a2011-10-10 07:26:46 -07001830
Johannes Berg6dde8c42013-10-31 18:30:38 +01001831 IWL_ERR(trans, "Error sending %s: time out after %dms.\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001832 iwl_get_cmd_string(trans, cmd->id),
Johannes Berg6dde8c42013-10-31 18:30:38 +01001833 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001834
Johannes Berg6dde8c42013-10-31 18:30:38 +01001835 IWL_ERR(trans, "Current CMD queue read_ptr %d write_ptr %d\n",
1836 q->read_ptr, q->write_ptr);
Wey-Yi Guyd10630a2011-10-10 07:26:46 -07001837
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001838 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
Johannes Berg6dde8c42013-10-31 18:30:38 +01001839 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001840 iwl_get_cmd_string(trans, cmd->id));
Johannes Berg6dde8c42013-10-31 18:30:38 +01001841 ret = -ETIMEDOUT;
Emmanuel Grumbach42550a52013-09-11 14:16:20 +03001842
Liad Kaufman4c9706d2014-04-27 16:46:09 +03001843 iwl_force_nmi(trans);
Arik Nemtsov2a988e92013-12-01 13:50:40 +02001844 iwl_trans_fw_error(trans);
Emmanuel Grumbach42550a52013-09-11 14:16:20 +03001845
Johannes Berg6dde8c42013-10-31 18:30:38 +01001846 goto cancel;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001847 }
1848
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001849 if (test_bit(STATUS_FW_ERROR, &trans->status)) {
Johannes Bergd18aa872012-11-06 16:36:21 +01001850 IWL_ERR(trans, "FW error in SYNC CMD %s\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001851 iwl_get_cmd_string(trans, cmd->id));
Johannes Bergb656fa32013-05-03 11:56:17 +02001852 dump_stack();
Johannes Bergd18aa872012-11-06 16:36:21 +01001853 ret = -EIO;
1854 goto cancel;
1855 }
1856
Eran Harary1094fa22013-06-02 12:40:34 +03001857 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001858 test_bit(STATUS_RFKILL, &trans->status)) {
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001859 IWL_DEBUG_RF_KILL(trans, "RFKILL in SYNC CMD... no rsp\n");
1860 ret = -ERFKILL;
1861 goto cancel;
1862 }
1863
Johannes Berg65b94a42012-03-05 11:24:38 -08001864 if ((cmd->flags & CMD_WANT_SKB) && !cmd->resp_pkt) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001865 IWL_ERR(trans, "Error: Response NULL in '%s'\n",
Sharon Dvir39bdb172015-10-15 18:18:09 +03001866 iwl_get_cmd_string(trans, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001867 ret = -EIO;
1868 goto cancel;
1869 }
1870
1871 return 0;
1872
1873cancel:
1874 if (cmd->flags & CMD_WANT_SKB) {
1875 /*
1876 * Cancel the CMD_WANT_SKB flag for the cmd in the
1877 * TX cmd queue. Otherwise in case the cmd comes
1878 * in later, it will possibly set an invalid
1879 * address (cmd->meta.source).
1880 */
Johannes Bergbf8440e2012-03-19 17:12:06 +01001881 trans_pcie->txq[trans_pcie->cmd_queue].
1882 entries[cmd_idx].meta.flags &= ~CMD_WANT_SKB;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001883 }
Emmanuel Grumbach9cac4942011-11-10 06:55:20 -08001884
Johannes Berg65b94a42012-03-05 11:24:38 -08001885 if (cmd->resp_pkt) {
1886 iwl_free_resp(cmd);
1887 cmd->resp_pkt = NULL;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001888 }
1889
1890 return ret;
1891}
1892
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001893int iwl_trans_pcie_send_hcmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001894{
Eran Harary4f593342013-05-13 07:53:26 +03001895 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001896 test_bit(STATUS_RFKILL, &trans->status)) {
Emmanuel Grumbach754d7d92013-03-13 22:16:20 +02001897 IWL_DEBUG_RF_KILL(trans, "Dropping CMD 0x%x: RF KILL\n",
1898 cmd->id);
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001899 return -ERFKILL;
Emmanuel Grumbach754d7d92013-03-13 22:16:20 +02001900 }
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001901
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001902 if (cmd->flags & CMD_ASYNC)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001903 return iwl_pcie_send_hcmd_async(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001904
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001905 /* We still can fail on RFKILL that can be asserted while we wait */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001906 return iwl_pcie_send_hcmd_sync(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001907}
1908
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03001909static int iwl_fill_data_tbs(struct iwl_trans *trans, struct sk_buff *skb,
1910 struct iwl_txq *txq, u8 hdr_len,
1911 struct iwl_cmd_meta *out_meta,
1912 struct iwl_device_cmd *dev_cmd, u16 tb1_len)
1913{
1914 struct iwl_queue *q = &txq->q;
1915 u16 tb2_len;
1916 int i;
1917
1918 /*
1919 * Set up TFD's third entry to point directly to remainder
1920 * of skb's head, if any
1921 */
1922 tb2_len = skb_headlen(skb) - hdr_len;
1923
1924 if (tb2_len > 0) {
1925 dma_addr_t tb2_phys = dma_map_single(trans->dev,
1926 skb->data + hdr_len,
1927 tb2_len, DMA_TO_DEVICE);
1928 if (unlikely(dma_mapping_error(trans->dev, tb2_phys))) {
1929 iwl_pcie_tfd_unmap(trans, out_meta,
1930 &txq->tfds[q->write_ptr]);
1931 return -EINVAL;
1932 }
1933 iwl_pcie_txq_build_tfd(trans, txq, tb2_phys, tb2_len, false);
1934 }
1935
1936 /* set up the remaining entries to point to the data */
1937 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1938 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1939 dma_addr_t tb_phys;
1940 int tb_idx;
1941
1942 if (!skb_frag_size(frag))
1943 continue;
1944
1945 tb_phys = skb_frag_dma_map(trans->dev, frag, 0,
1946 skb_frag_size(frag), DMA_TO_DEVICE);
1947
1948 if (unlikely(dma_mapping_error(trans->dev, tb_phys))) {
1949 iwl_pcie_tfd_unmap(trans, out_meta,
1950 &txq->tfds[q->write_ptr]);
1951 return -EINVAL;
1952 }
1953 tb_idx = iwl_pcie_txq_build_tfd(trans, txq, tb_phys,
1954 skb_frag_size(frag), false);
1955
1956 out_meta->flags |= BIT(tb_idx + CMD_TB_BITMAP_POS);
1957 }
1958
1959 trace_iwlwifi_dev_tx(trans->dev, skb,
1960 &txq->tfds[txq->q.write_ptr],
1961 sizeof(struct iwl_tfd),
Sara Sharon8de437c2016-06-09 17:56:38 +03001962 &dev_cmd->hdr, IWL_FIRST_TB_SIZE + tb1_len,
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03001963 skb->data + hdr_len, tb2_len);
1964 trace_iwlwifi_dev_tx_data(trans->dev, skb,
1965 hdr_len, skb->len - hdr_len);
1966 return 0;
1967}
1968
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03001969#ifdef CONFIG_INET
1970static struct iwl_tso_hdr_page *
1971get_page_hdr(struct iwl_trans *trans, size_t len)
1972{
1973 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1974 struct iwl_tso_hdr_page *p = this_cpu_ptr(trans_pcie->tso_hdr_page);
1975
1976 if (!p->page)
1977 goto alloc;
1978
1979 /* enough room on this page */
1980 if (p->pos + len < (u8 *)page_address(p->page) + PAGE_SIZE)
1981 return p;
1982
1983 /* We don't have enough room on this page, get a new one. */
1984 __free_page(p->page);
1985
1986alloc:
1987 p->page = alloc_page(GFP_ATOMIC);
1988 if (!p->page)
1989 return NULL;
1990 p->pos = page_address(p->page);
1991 return p;
1992}
1993
1994static void iwl_compute_pseudo_hdr_csum(void *iph, struct tcphdr *tcph,
1995 bool ipv6, unsigned int len)
1996{
1997 if (ipv6) {
1998 struct ipv6hdr *iphv6 = iph;
1999
2000 tcph->check = ~csum_ipv6_magic(&iphv6->saddr, &iphv6->daddr,
2001 len + tcph->doff * 4,
2002 IPPROTO_TCP, 0);
2003 } else {
2004 struct iphdr *iphv4 = iph;
2005
2006 ip_send_check(iphv4);
2007 tcph->check = ~csum_tcpudp_magic(iphv4->saddr, iphv4->daddr,
2008 len + tcph->doff * 4,
2009 IPPROTO_TCP, 0);
2010 }
2011}
2012
2013static int iwl_fill_data_tbs_amsdu(struct iwl_trans *trans, struct sk_buff *skb,
2014 struct iwl_txq *txq, u8 hdr_len,
2015 struct iwl_cmd_meta *out_meta,
2016 struct iwl_device_cmd *dev_cmd, u16 tb1_len)
2017{
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002018 struct iwl_trans_pcie *trans_pcie = txq->trans_pcie;
2019 struct ieee80211_hdr *hdr = (void *)skb->data;
2020 unsigned int snap_ip_tcp_hdrlen, ip_hdrlen, total_len, hdr_room;
2021 unsigned int mss = skb_shinfo(skb)->gso_size;
2022 struct iwl_queue *q = &txq->q;
2023 u16 length, iv_len, amsdu_pad;
2024 u8 *start_hdr;
2025 struct iwl_tso_hdr_page *hdr_page;
Johannes Berg21cb3222016-06-21 13:11:48 +02002026 struct page **page_ptr;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002027 int ret;
2028 struct tso_t tso;
2029
2030 /* if the packet is protected, then it must be CCMP or GCMP */
2031 BUILD_BUG_ON(IEEE80211_CCMP_HDR_LEN != IEEE80211_GCMP_HDR_LEN);
2032 iv_len = ieee80211_has_protected(hdr->frame_control) ?
2033 IEEE80211_CCMP_HDR_LEN : 0;
2034
2035 trace_iwlwifi_dev_tx(trans->dev, skb,
2036 &txq->tfds[txq->q.write_ptr],
2037 sizeof(struct iwl_tfd),
Sara Sharon8de437c2016-06-09 17:56:38 +03002038 &dev_cmd->hdr, IWL_FIRST_TB_SIZE + tb1_len,
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002039 NULL, 0);
2040
2041 ip_hdrlen = skb_transport_header(skb) - skb_network_header(skb);
2042 snap_ip_tcp_hdrlen = 8 + ip_hdrlen + tcp_hdrlen(skb);
2043 total_len = skb->len - snap_ip_tcp_hdrlen - hdr_len - iv_len;
2044 amsdu_pad = 0;
2045
2046 /* total amount of header we may need for this A-MSDU */
2047 hdr_room = DIV_ROUND_UP(total_len, mss) *
2048 (3 + snap_ip_tcp_hdrlen + sizeof(struct ethhdr)) + iv_len;
2049
2050 /* Our device supports 9 segments at most, it will fit in 1 page */
2051 hdr_page = get_page_hdr(trans, hdr_room);
2052 if (!hdr_page)
2053 return -ENOMEM;
2054
2055 get_page(hdr_page->page);
2056 start_hdr = hdr_page->pos;
Johannes Berg21cb3222016-06-21 13:11:48 +02002057 page_ptr = (void *)((u8 *)skb->cb + trans_pcie->page_offs);
2058 *page_ptr = hdr_page->page;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002059 memcpy(hdr_page->pos, skb->data + hdr_len, iv_len);
2060 hdr_page->pos += iv_len;
2061
2062 /*
2063 * Pull the ieee80211 header + IV to be able to use TSO core,
2064 * we will restore it for the tx_status flow.
2065 */
2066 skb_pull(skb, hdr_len + iv_len);
2067
2068 tso_start(skb, &tso);
2069
2070 while (total_len) {
2071 /* this is the data left for this subframe */
2072 unsigned int data_left =
2073 min_t(unsigned int, mss, total_len);
2074 struct sk_buff *csum_skb = NULL;
2075 unsigned int hdr_tb_len;
2076 dma_addr_t hdr_tb_phys;
2077 struct tcphdr *tcph;
2078 u8 *iph;
2079
2080 total_len -= data_left;
2081
2082 memset(hdr_page->pos, 0, amsdu_pad);
2083 hdr_page->pos += amsdu_pad;
2084 amsdu_pad = (4 - (sizeof(struct ethhdr) + snap_ip_tcp_hdrlen +
2085 data_left)) & 0x3;
2086 ether_addr_copy(hdr_page->pos, ieee80211_get_DA(hdr));
2087 hdr_page->pos += ETH_ALEN;
2088 ether_addr_copy(hdr_page->pos, ieee80211_get_SA(hdr));
2089 hdr_page->pos += ETH_ALEN;
2090
2091 length = snap_ip_tcp_hdrlen + data_left;
2092 *((__be16 *)hdr_page->pos) = cpu_to_be16(length);
2093 hdr_page->pos += sizeof(length);
2094
2095 /*
2096 * This will copy the SNAP as well which will be considered
2097 * as MAC header.
2098 */
2099 tso_build_hdr(skb, hdr_page->pos, &tso, data_left, !total_len);
2100 iph = hdr_page->pos + 8;
2101 tcph = (void *)(iph + ip_hdrlen);
2102
2103 /* For testing on current hardware only */
2104 if (trans_pcie->sw_csum_tx) {
2105 csum_skb = alloc_skb(data_left + tcp_hdrlen(skb),
2106 GFP_ATOMIC);
2107 if (!csum_skb) {
2108 ret = -ENOMEM;
2109 goto out_unmap;
2110 }
2111
2112 iwl_compute_pseudo_hdr_csum(iph, tcph,
2113 skb->protocol ==
2114 htons(ETH_P_IPV6),
2115 data_left);
2116
2117 memcpy(skb_put(csum_skb, tcp_hdrlen(skb)),
2118 tcph, tcp_hdrlen(skb));
2119 skb_set_transport_header(csum_skb, 0);
2120 csum_skb->csum_start =
2121 (unsigned char *)tcp_hdr(csum_skb) -
2122 csum_skb->head;
2123 }
2124
2125 hdr_page->pos += snap_ip_tcp_hdrlen;
2126
2127 hdr_tb_len = hdr_page->pos - start_hdr;
2128 hdr_tb_phys = dma_map_single(trans->dev, start_hdr,
2129 hdr_tb_len, DMA_TO_DEVICE);
2130 if (unlikely(dma_mapping_error(trans->dev, hdr_tb_phys))) {
2131 dev_kfree_skb(csum_skb);
2132 ret = -EINVAL;
2133 goto out_unmap;
2134 }
2135 iwl_pcie_txq_build_tfd(trans, txq, hdr_tb_phys,
2136 hdr_tb_len, false);
2137 trace_iwlwifi_dev_tx_tso_chunk(trans->dev, start_hdr,
2138 hdr_tb_len);
2139
2140 /* prepare the start_hdr for the next subframe */
2141 start_hdr = hdr_page->pos;
2142
2143 /* put the payload */
2144 while (data_left) {
2145 unsigned int size = min_t(unsigned int, tso.size,
2146 data_left);
2147 dma_addr_t tb_phys;
2148
2149 if (trans_pcie->sw_csum_tx)
2150 memcpy(skb_put(csum_skb, size), tso.data, size);
2151
2152 tb_phys = dma_map_single(trans->dev, tso.data,
2153 size, DMA_TO_DEVICE);
2154 if (unlikely(dma_mapping_error(trans->dev, tb_phys))) {
2155 dev_kfree_skb(csum_skb);
2156 ret = -EINVAL;
2157 goto out_unmap;
2158 }
2159
2160 iwl_pcie_txq_build_tfd(trans, txq, tb_phys,
2161 size, false);
2162 trace_iwlwifi_dev_tx_tso_chunk(trans->dev, tso.data,
2163 size);
2164
2165 data_left -= size;
2166 tso_build_data(skb, &tso, size);
2167 }
2168
2169 /* For testing on early hardware only */
2170 if (trans_pcie->sw_csum_tx) {
2171 __wsum csum;
2172
2173 csum = skb_checksum(csum_skb,
2174 skb_checksum_start_offset(csum_skb),
2175 csum_skb->len -
2176 skb_checksum_start_offset(csum_skb),
2177 0);
2178 dev_kfree_skb(csum_skb);
2179 dma_sync_single_for_cpu(trans->dev, hdr_tb_phys,
2180 hdr_tb_len, DMA_TO_DEVICE);
2181 tcph->check = csum_fold(csum);
2182 dma_sync_single_for_device(trans->dev, hdr_tb_phys,
2183 hdr_tb_len, DMA_TO_DEVICE);
2184 }
2185 }
2186
2187 /* re -add the WiFi header and IV */
2188 skb_push(skb, hdr_len + iv_len);
2189
2190 return 0;
2191
2192out_unmap:
2193 iwl_pcie_tfd_unmap(trans, out_meta, &txq->tfds[q->write_ptr]);
2194 return ret;
2195}
2196#else /* CONFIG_INET */
2197static int iwl_fill_data_tbs_amsdu(struct iwl_trans *trans, struct sk_buff *skb,
2198 struct iwl_txq *txq, u8 hdr_len,
2199 struct iwl_cmd_meta *out_meta,
2200 struct iwl_device_cmd *dev_cmd, u16 tb1_len)
2201{
2202 /* No A-MSDU without CONFIG_INET */
2203 WARN_ON(1);
2204
2205 return -1;
2206}
2207#endif /* CONFIG_INET */
2208
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002209int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
2210 struct iwl_device_cmd *dev_cmd, int txq_id)
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002211{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07002212 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Johannes Berg206eea72015-04-17 16:38:31 +02002213 struct ieee80211_hdr *hdr;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002214 struct iwl_tx_cmd *tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
2215 struct iwl_cmd_meta *out_meta;
2216 struct iwl_txq *txq;
2217 struct iwl_queue *q;
Johannes Berg38c0f3342013-02-27 13:18:50 +01002218 dma_addr_t tb0_phys, tb1_phys, scratch_phys;
2219 void *tb1_addr;
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03002220 u16 len, tb1_len;
Johannes Bergea68f462014-02-27 14:36:55 +01002221 bool wait_write_ptr;
Johannes Berg206eea72015-04-17 16:38:31 +02002222 __le16 fc;
2223 u8 hdr_len;
Johannes Berg68972c42013-06-11 19:05:27 +02002224 u16 wifi_seq;
Sara Sharonc772a3d32016-03-13 17:19:38 +02002225 bool amsdu;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002226
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002227 txq = &trans_pcie->txq[txq_id];
2228 q = &txq->q;
Emmanuel Grumbach39644e92011-09-15 11:46:29 -07002229
Johannes Berg961de6a2013-07-04 18:00:08 +02002230 if (WARN_ONCE(!test_bit(txq_id, trans_pcie->queue_used),
2231 "TX on unused queue %d\n", txq_id))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002232 return -EINVAL;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002233
Emmanuel Grumbach41837ca92015-10-21 09:00:07 +03002234 if (unlikely(trans_pcie->sw_csum_tx &&
2235 skb->ip_summed == CHECKSUM_PARTIAL)) {
2236 int offs = skb_checksum_start_offset(skb);
2237 int csum_offs = offs + skb->csum_offset;
2238 __wsum csum;
2239
2240 if (skb_ensure_writable(skb, csum_offs + sizeof(__sum16)))
2241 return -1;
2242
2243 csum = skb_checksum(skb, offs, skb->len - offs, 0);
2244 *(__sum16 *)(skb->data + csum_offs) = csum_fold(csum);
Emmanuel Grumbach39555252016-01-14 09:39:21 +02002245
2246 skb->ip_summed = CHECKSUM_UNNECESSARY;
Emmanuel Grumbach41837ca92015-10-21 09:00:07 +03002247 }
2248
Johannes Berg206eea72015-04-17 16:38:31 +02002249 if (skb_is_nonlinear(skb) &&
2250 skb_shinfo(skb)->nr_frags > IWL_PCIE_MAX_FRAGS &&
2251 __skb_linearize(skb))
2252 return -ENOMEM;
2253
2254 /* mac80211 always puts the full header into the SKB's head,
2255 * so there's no need to check if it's readable there
2256 */
2257 hdr = (struct ieee80211_hdr *)skb->data;
2258 fc = hdr->frame_control;
2259 hdr_len = ieee80211_hdrlen(fc);
2260
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002261 spin_lock(&txq->lock);
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002262
Emmanuel Grumbach39555252016-01-14 09:39:21 +02002263 if (iwl_queue_space(q) < q->high_mark) {
2264 iwl_stop_queue(trans, txq);
2265
2266 /* don't put the packet on the ring, if there is no room */
2267 if (unlikely(iwl_queue_space(q) < 3)) {
Johannes Berg21cb3222016-06-21 13:11:48 +02002268 struct iwl_device_cmd **dev_cmd_ptr;
Emmanuel Grumbach39555252016-01-14 09:39:21 +02002269
Johannes Berg21cb3222016-06-21 13:11:48 +02002270 dev_cmd_ptr = (void *)((u8 *)skb->cb +
2271 trans_pcie->dev_cmd_offs);
2272
2273 *dev_cmd_ptr = dev_cmd;
Emmanuel Grumbach39555252016-01-14 09:39:21 +02002274 __skb_queue_tail(&txq->overflow_q, skb);
2275
2276 spin_unlock(&txq->lock);
2277 return 0;
2278 }
2279 }
2280
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002281 /* In AGG mode, the index in the ring must correspond to the WiFi
2282 * sequence number. This is a HW requirements to help the SCD to parse
2283 * the BA.
2284 * Check here that the packets are in the right place on the ring.
2285 */
Johannes Berg9a886582013-02-15 19:25:00 +01002286 wifi_seq = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
Eliad Peller1092b9b2013-07-16 17:53:43 +03002287 WARN_ONCE(txq->ampdu &&
Johannes Berg68972c42013-06-11 19:05:27 +02002288 (wifi_seq & 0xff) != q->write_ptr,
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002289 "Q: %d WiFi Seq %d tfdNum %d",
2290 txq_id, wifi_seq, q->write_ptr);
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002291
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002292 /* Set up driver data for this TFD */
2293 txq->entries[q->write_ptr].skb = skb;
2294 txq->entries[q->write_ptr].cmd = dev_cmd;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002295
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002296 dev_cmd->hdr.sequence =
2297 cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
2298 INDEX_TO_SEQ(q->write_ptr)));
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002299
Sara Sharon8de437c2016-06-09 17:56:38 +03002300 tb0_phys = iwl_pcie_get_first_tb_dma(txq, q->write_ptr);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002301 scratch_phys = tb0_phys + sizeof(struct iwl_cmd_header) +
2302 offsetof(struct iwl_tx_cmd, scratch);
2303
2304 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
2305 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
2306
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002307 /* Set up first empty entry in queue's array of Tx/cmd buffers */
2308 out_meta = &txq->entries[q->write_ptr].meta;
Johannes Berg206eea72015-04-17 16:38:31 +02002309 out_meta->flags = 0;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002310
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002311 /*
Johannes Berg38c0f3342013-02-27 13:18:50 +01002312 * The second TB (tb1) points to the remainder of the TX command
2313 * and the 802.11 header - dword aligned size
2314 * (This calculation modifies the TX command, so do it before the
2315 * setup of the first TB)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002316 */
Johannes Berg38c0f3342013-02-27 13:18:50 +01002317 len = sizeof(struct iwl_tx_cmd) + sizeof(struct iwl_cmd_header) +
Sara Sharon8de437c2016-06-09 17:56:38 +03002318 hdr_len - IWL_FIRST_TB_SIZE;
Sara Sharonc772a3d32016-03-13 17:19:38 +02002319 /* do not align A-MSDU to dword as the subframe header aligns it */
2320 amsdu = ieee80211_is_data_qos(fc) &&
2321 (*ieee80211_get_qos_ctl(hdr) &
2322 IEEE80211_QOS_CTL_A_MSDU_PRESENT);
2323 if (trans_pcie->sw_csum_tx || !amsdu) {
2324 tb1_len = ALIGN(len, 4);
2325 /* Tell NIC about any 2-byte padding after MAC header */
2326 if (tb1_len != len)
2327 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
2328 } else {
2329 tb1_len = len;
2330 }
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002331
Sara Sharon8de437c2016-06-09 17:56:38 +03002332 /* The first TB points to bi-directional DMA data */
2333 memcpy(&txq->first_tb_bufs[q->write_ptr], &dev_cmd->hdr,
2334 IWL_FIRST_TB_SIZE);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002335 iwl_pcie_txq_build_tfd(trans, txq, tb0_phys,
Sara Sharon8de437c2016-06-09 17:56:38 +03002336 IWL_FIRST_TB_SIZE, true);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002337
2338 /* there must be data left over for TB1 or this code must be changed */
Sara Sharon8de437c2016-06-09 17:56:38 +03002339 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd) < IWL_FIRST_TB_SIZE);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002340
2341 /* map the data for TB1 */
Sara Sharon8de437c2016-06-09 17:56:38 +03002342 tb1_addr = ((u8 *)&dev_cmd->hdr) + IWL_FIRST_TB_SIZE;
Johannes Berg38c0f3342013-02-27 13:18:50 +01002343 tb1_phys = dma_map_single(trans->dev, tb1_addr, tb1_len, DMA_TO_DEVICE);
2344 if (unlikely(dma_mapping_error(trans->dev, tb1_phys)))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002345 goto out_err;
Johannes Berg6d6e68f2014-04-23 19:00:56 +02002346 iwl_pcie_txq_build_tfd(trans, txq, tb1_phys, tb1_len, false);
Johannes Berg38c0f3342013-02-27 13:18:50 +01002347
Sara Sharonc772a3d32016-03-13 17:19:38 +02002348 if (amsdu) {
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002349 if (unlikely(iwl_fill_data_tbs_amsdu(trans, skb, txq, hdr_len,
2350 out_meta, dev_cmd,
2351 tb1_len)))
2352 goto out_err;
2353 } else if (unlikely(iwl_fill_data_tbs(trans, skb, txq, hdr_len,
2354 out_meta, dev_cmd, tb1_len))) {
Emmanuel Grumbach3a0b2a42015-10-14 22:10:50 +03002355 goto out_err;
Emmanuel Grumbach6eb5e5292015-10-18 09:31:24 +03002356 }
Johannes Berg206eea72015-04-17 16:38:31 +02002357
Johannes Berg38c0f3342013-02-27 13:18:50 +01002358 /* Set up entry for this TFD in Tx byte-count array */
2359 iwl_pcie_txq_update_byte_cnt_tbl(trans, txq, le16_to_cpu(tx_cmd->len));
2360
Johannes Bergea68f462014-02-27 14:36:55 +01002361 wait_write_ptr = ieee80211_has_morefrags(fc);
Johannes Berg7c5ba4a2012-04-09 17:46:54 -07002362
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002363 /* start timer if queue currently empty */
Eliad Peller7616f332014-11-20 17:33:43 +02002364 if (q->read_ptr == q->write_ptr) {
Emmanuel Grumbachaecdc632015-07-29 23:06:41 +03002365 if (txq->wd_timeout) {
2366 /*
2367 * If the TXQ is active, then set the timer, if not,
2368 * set the timer in remainder so that the timer will
2369 * be armed with the right value when the station will
2370 * wake up.
2371 */
2372 if (!txq->frozen)
2373 mod_timer(&txq->stuck_timer,
2374 jiffies + txq->wd_timeout);
2375 else
2376 txq->frozen_expiry_remainder = txq->wd_timeout;
2377 }
Eliad Peller7616f332014-11-20 17:33:43 +02002378 IWL_DEBUG_RPM(trans, "Q: %d first tx - take ref\n", q->id);
Luca Coelhoc24c7f52016-03-30 20:59:27 +03002379 iwl_trans_ref(trans);
Eliad Peller7616f332014-11-20 17:33:43 +02002380 }
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002381
2382 /* Tell device the write index *just past* this latest filled TFD */
Johannes Berg83f32a42014-04-24 09:57:40 +02002383 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr);
Johannes Bergea68f462014-02-27 14:36:55 +01002384 if (!wait_write_ptr)
2385 iwl_pcie_txq_inc_wr_ptr(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002386
2387 /*
2388 * At this point the frame is "transmitted" successfully
Johannes Berg43aa6162014-02-27 14:24:36 +01002389 * and we will get a TX status notification eventually.
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002390 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02002391 spin_unlock(&txq->lock);
2392 return 0;
2393out_err:
2394 spin_unlock(&txq->lock);
2395 return -1;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07002396}