iwlwifi: pcie: add initial RTPM support for PCI
[deliverable/linux.git] / drivers / net / wireless / intel / iwlwifi / pcie / tx.c
CommitLineData
1053d35f
RR
1/******************************************************************************
2 *
51368bf7 3 * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
8b4139dc 4 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
1053d35f
RR
5 *
6 * Portions of this file are derived from the ipw3945 project, as well
7 * as portions of the ieee80211 subsystem header files.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
21 *
22 * The full GNU General Public License is included in this distribution in the
23 * file called LICENSE.
24 *
25 * Contact Information:
cb2f8277 26 * Intel Linux Wireless <linuxwifi@intel.com>
1053d35f
RR
27 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28 *
29 *****************************************************************************/
fd4abac5 30#include <linux/etherdevice.h>
6eb5e529 31#include <linux/ieee80211.h>
5a0e3ad6 32#include <linux/slab.h>
253a634c 33#include <linux/sched.h>
6eb5e529
EG
34#include <net/ip6_checksum.h>
35#include <net/tso.h>
36#include <net/ip6_checksum.h>
253a634c 37
522376d2
EG
38#include "iwl-debug.h"
39#include "iwl-csr.h"
40#include "iwl-prph.h"
1053d35f 41#include "iwl-io.h"
680073b7 42#include "iwl-scd.h"
ed277c93 43#include "iwl-op-mode.h"
6468a01a 44#include "internal.h"
6238b008 45/* FIXME: need to abstract out TX command (once we know what it looks like) */
1023fdc4 46#include "dvm/commands.h"
1053d35f 47
522376d2
EG
48#define IWL_TX_CRC_SIZE 4
49#define IWL_TX_DELIMITER_SIZE 4
50
f02831be
EG
51/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
52 * DMA services
53 *
54 * Theory of operation
55 *
56 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
57 * of buffer descriptors, each of which points to one or more data buffers for
58 * the device to read from or fill. Driver and device exchange status of each
59 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
60 * entries in each circular buffer, to protect against confusing empty and full
61 * queue states.
62 *
63 * The device reads or writes the data in the queues via the device's several
64 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
65 *
66 * For Tx queue, there are low mark and high mark limits. If, after queuing
67 * the packet for Tx, free space become < low mark, Tx queue stopped. When
68 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
69 * Tx queue resumed.
70 *
71 ***************************************************/
72static int iwl_queue_space(const struct iwl_queue *q)
73{
a9b29246
IY
74 unsigned int max;
75 unsigned int used;
f02831be 76
a9b29246
IY
77 /*
78 * To avoid ambiguity between empty and completely full queues, there
83f32a4b
JB
79 * should always be less than TFD_QUEUE_SIZE_MAX elements in the queue.
80 * If q->n_window is smaller than TFD_QUEUE_SIZE_MAX, there is no need
81 * to reserve any queue entries for this purpose.
a9b29246 82 */
83f32a4b 83 if (q->n_window < TFD_QUEUE_SIZE_MAX)
a9b29246
IY
84 max = q->n_window;
85 else
83f32a4b 86 max = TFD_QUEUE_SIZE_MAX - 1;
f02831be 87
a9b29246 88 /*
83f32a4b
JB
89 * TFD_QUEUE_SIZE_MAX is a power of 2, so the following is equivalent to
90 * modulo by TFD_QUEUE_SIZE_MAX and is well defined.
a9b29246 91 */
83f32a4b 92 used = (q->write_ptr - q->read_ptr) & (TFD_QUEUE_SIZE_MAX - 1);
a9b29246
IY
93
94 if (WARN_ON(used > max))
95 return 0;
96
97 return max - used;
f02831be
EG
98}
99
100/*
101 * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
102 */
83f32a4b 103static int iwl_queue_init(struct iwl_queue *q, int slots_num, u32 id)
f02831be 104{
f02831be
EG
105 q->n_window = slots_num;
106 q->id = id;
107
f02831be
EG
108 /* slots_num must be power-of-two size, otherwise
109 * get_cmd_index is broken. */
110 if (WARN_ON(!is_power_of_2(slots_num)))
111 return -EINVAL;
112
113 q->low_mark = q->n_window / 4;
114 if (q->low_mark < 4)
115 q->low_mark = 4;
116
117 q->high_mark = q->n_window / 8;
118 if (q->high_mark < 2)
119 q->high_mark = 2;
120
121 q->write_ptr = 0;
122 q->read_ptr = 0;
123
124 return 0;
125}
126
f02831be
EG
127static int iwl_pcie_alloc_dma_ptr(struct iwl_trans *trans,
128 struct iwl_dma_ptr *ptr, size_t size)
129{
130 if (WARN_ON(ptr->addr))
131 return -EINVAL;
132
133 ptr->addr = dma_alloc_coherent(trans->dev, size,
134 &ptr->dma, GFP_KERNEL);
135 if (!ptr->addr)
136 return -ENOMEM;
137 ptr->size = size;
138 return 0;
139}
140
141static void iwl_pcie_free_dma_ptr(struct iwl_trans *trans,
142 struct iwl_dma_ptr *ptr)
143{
144 if (unlikely(!ptr->addr))
145 return;
146
147 dma_free_coherent(trans->dev, ptr->size, ptr->addr, ptr->dma);
148 memset(ptr, 0, sizeof(*ptr));
149}
150
151static void iwl_pcie_txq_stuck_timer(unsigned long data)
152{
153 struct iwl_txq *txq = (void *)data;
f02831be
EG
154 struct iwl_trans_pcie *trans_pcie = txq->trans_pcie;
155 struct iwl_trans *trans = iwl_trans_pcie_get_trans(trans_pcie);
156 u32 scd_sram_addr = trans_pcie->scd_base_addr +
157 SCD_TX_STTS_QUEUE_OFFSET(txq->q.id);
158 u8 buf[16];
159 int i;
160
161 spin_lock(&txq->lock);
162 /* check if triggered erroneously */
163 if (txq->q.read_ptr == txq->q.write_ptr) {
164 spin_unlock(&txq->lock);
165 return;
166 }
167 spin_unlock(&txq->lock);
168
169 IWL_ERR(trans, "Queue %d stuck for %u ms.\n", txq->q.id,
4cf677fd 170 jiffies_to_msecs(txq->wd_timeout));
f02831be
EG
171 IWL_ERR(trans, "Current SW read_ptr %d write_ptr %d\n",
172 txq->q.read_ptr, txq->q.write_ptr);
173
4fd442db 174 iwl_trans_read_mem_bytes(trans, scd_sram_addr, buf, sizeof(buf));
f02831be
EG
175
176 iwl_print_hex_error(trans, buf, sizeof(buf));
177
178 for (i = 0; i < FH_TCSR_CHNL_NUM; i++)
179 IWL_ERR(trans, "FH TRBs(%d) = 0x%08x\n", i,
180 iwl_read_direct32(trans, FH_TX_TRB_REG(i)));
181
182 for (i = 0; i < trans->cfg->base_params->num_of_queues; i++) {
183 u32 status = iwl_read_prph(trans, SCD_QUEUE_STATUS_BITS(i));
184 u8 fifo = (status >> SCD_QUEUE_STTS_REG_POS_TXF) & 0x7;
185 bool active = !!(status & BIT(SCD_QUEUE_STTS_REG_POS_ACTIVE));
186 u32 tbl_dw =
4fd442db
EG
187 iwl_trans_read_mem32(trans,
188 trans_pcie->scd_base_addr +
189 SCD_TRANS_TBL_OFFSET_QUEUE(i));
f02831be
EG
190
191 if (i & 0x1)
192 tbl_dw = (tbl_dw & 0xFFFF0000) >> 16;
193 else
194 tbl_dw = tbl_dw & 0x0000FFFF;
195
196 IWL_ERR(trans,
197 "Q %d is %sactive and mapped to fifo %d ra_tid 0x%04x [%d,%d]\n",
198 i, active ? "" : "in", fifo, tbl_dw,
83f32a4b
JB
199 iwl_read_prph(trans, SCD_QUEUE_RDPTR(i)) &
200 (TFD_QUEUE_SIZE_MAX - 1),
f02831be
EG
201 iwl_read_prph(trans, SCD_QUEUE_WRPTR(i)));
202 }
203
4c9706dc 204 iwl_force_nmi(trans);
f02831be
EG
205}
206
990aa6d7
EG
207/*
208 * iwl_pcie_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
48d42c42 209 */
f02831be
EG
210static void iwl_pcie_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
211 struct iwl_txq *txq, u16 byte_cnt)
48d42c42 212{
105183b1 213 struct iwlagn_scd_bc_tbl *scd_bc_tbl;
20d3b647 214 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
48d42c42
EG
215 int write_ptr = txq->q.write_ptr;
216 int txq_id = txq->q.id;
217 u8 sec_ctl = 0;
218 u8 sta_id = 0;
219 u16 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
220 __le16 bc_ent;
132f98c2 221 struct iwl_tx_cmd *tx_cmd =
bf8440e6 222 (void *) txq->entries[txq->q.write_ptr].cmd->payload;
48d42c42 223
105183b1
EG
224 scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
225
132f98c2
EG
226 sta_id = tx_cmd->sta_id;
227 sec_ctl = tx_cmd->sec_ctl;
48d42c42
EG
228
229 switch (sec_ctl & TX_CMD_SEC_MSK) {
230 case TX_CMD_SEC_CCM:
4325f6ca 231 len += IEEE80211_CCMP_MIC_LEN;
48d42c42
EG
232 break;
233 case TX_CMD_SEC_TKIP:
4325f6ca 234 len += IEEE80211_TKIP_ICV_LEN;
48d42c42
EG
235 break;
236 case TX_CMD_SEC_WEP:
4325f6ca 237 len += IEEE80211_WEP_IV_LEN + IEEE80211_WEP_ICV_LEN;
48d42c42
EG
238 break;
239 }
240
046db346
EG
241 if (trans_pcie->bc_table_dword)
242 len = DIV_ROUND_UP(len, 4);
243
31f920b6
EG
244 if (WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX))
245 return;
246
046db346 247 bc_ent = cpu_to_le16(len | (sta_id << 12));
48d42c42
EG
248
249 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
250
251 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
252 scd_bc_tbl[txq_id].
253 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
254}
255
f02831be
EG
256static void iwl_pcie_txq_inval_byte_cnt_tbl(struct iwl_trans *trans,
257 struct iwl_txq *txq)
258{
259 struct iwl_trans_pcie *trans_pcie =
260 IWL_TRANS_GET_PCIE_TRANS(trans);
261 struct iwlagn_scd_bc_tbl *scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
262 int txq_id = txq->q.id;
263 int read_ptr = txq->q.read_ptr;
264 u8 sta_id = 0;
265 __le16 bc_ent;
266 struct iwl_tx_cmd *tx_cmd =
267 (void *)txq->entries[txq->q.read_ptr].cmd->payload;
268
269 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
270
271 if (txq_id != trans_pcie->cmd_queue)
272 sta_id = tx_cmd->sta_id;
273
274 bc_ent = cpu_to_le16(1 | (sta_id << 12));
275 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
276
277 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
278 scd_bc_tbl[txq_id].
279 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
280}
281
990aa6d7
EG
282/*
283 * iwl_pcie_txq_inc_wr_ptr - Send new write index to hardware
fd4abac5 284 */
ea68f460
JB
285static void iwl_pcie_txq_inc_wr_ptr(struct iwl_trans *trans,
286 struct iwl_txq *txq)
fd4abac5 287{
23e76d1a 288 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
fd4abac5 289 u32 reg = 0;
fd4abac5
TW
290 int txq_id = txq->q.id;
291
ea68f460 292 lockdep_assert_held(&txq->lock);
fd4abac5 293
5045388c
EP
294 /*
295 * explicitly wake up the NIC if:
296 * 1. shadow registers aren't enabled
297 * 2. NIC is woken up for CMD regardless of shadow outside this function
298 * 3. there is a chance that the NIC is asleep
299 */
300 if (!trans->cfg->base_params->shadow_reg_enable &&
301 txq_id != trans_pcie->cmd_queue &&
302 test_bit(STATUS_TPOWER_PMI, &trans->status)) {
f81c1f48 303 /*
5045388c
EP
304 * wake up nic if it's powered down ...
305 * uCode will wake up, and interrupt us again, so next
306 * time we'll skip this part.
f81c1f48 307 */
5045388c
EP
308 reg = iwl_read32(trans, CSR_UCODE_DRV_GP1);
309
310 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
311 IWL_DEBUG_INFO(trans, "Tx queue %d requesting wakeup, GP1 = 0x%x\n",
312 txq_id, reg);
313 iwl_set_bit(trans, CSR_GP_CNTRL,
314 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
ea68f460 315 txq->need_update = true;
5045388c
EP
316 return;
317 }
f81c1f48 318 }
5045388c
EP
319
320 /*
321 * if not in power-save mode, uCode will never sleep when we're
322 * trying to tx (during RFKILL, we're not trying to tx).
323 */
324 IWL_DEBUG_TX(trans, "Q:%d WR: 0x%x\n", txq_id, txq->q.write_ptr);
0cd58eaa
EG
325 if (!txq->block)
326 iwl_write32(trans, HBUS_TARG_WRPTR,
327 txq->q.write_ptr | (txq_id << 8));
ea68f460 328}
5045388c 329
ea68f460
JB
330void iwl_pcie_txq_check_wrptrs(struct iwl_trans *trans)
331{
332 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
333 int i;
334
335 for (i = 0; i < trans->cfg->base_params->num_of_queues; i++) {
336 struct iwl_txq *txq = &trans_pcie->txq[i];
337
d090f878 338 spin_lock_bh(&txq->lock);
ea68f460
JB
339 if (trans_pcie->txq[i].need_update) {
340 iwl_pcie_txq_inc_wr_ptr(trans, txq);
341 trans_pcie->txq[i].need_update = false;
342 }
d090f878 343 spin_unlock_bh(&txq->lock);
ea68f460 344 }
fd4abac5 345}
fd4abac5 346
f02831be 347static inline dma_addr_t iwl_pcie_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
214d14d4
JB
348{
349 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
350
351 dma_addr_t addr = get_unaligned_le32(&tb->lo);
352 if (sizeof(dma_addr_t) > sizeof(u32))
353 addr |=
354 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
355
356 return addr;
357}
358
f02831be
EG
359static inline void iwl_pcie_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
360 dma_addr_t addr, u16 len)
214d14d4
JB
361{
362 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
363 u16 hi_n_len = len << 4;
364
365 put_unaligned_le32(addr, &tb->lo);
366 if (sizeof(dma_addr_t) > sizeof(u32))
367 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
368
369 tb->hi_n_len = cpu_to_le16(hi_n_len);
370
371 tfd->num_tbs = idx + 1;
372}
373
f02831be 374static inline u8 iwl_pcie_tfd_get_num_tbs(struct iwl_tfd *tfd)
214d14d4
JB
375{
376 return tfd->num_tbs & 0x1f;
377}
378
f02831be 379static void iwl_pcie_tfd_unmap(struct iwl_trans *trans,
98891754
JB
380 struct iwl_cmd_meta *meta,
381 struct iwl_tfd *tfd)
214d14d4 382{
214d14d4
JB
383 int i;
384 int num_tbs;
385
214d14d4 386 /* Sanity check on number of chunks */
f02831be 387 num_tbs = iwl_pcie_tfd_get_num_tbs(tfd);
214d14d4
JB
388
389 if (num_tbs >= IWL_NUM_OF_TBS) {
6d8f6eeb 390 IWL_ERR(trans, "Too many chunks: %i\n", num_tbs);
214d14d4
JB
391 /* @todo issue fatal error, it is quite serious situation */
392 return;
393 }
394
38c0f334 395 /* first TB is never freed - it's the scratchbuf data */
214d14d4 396
206eea78
JB
397 for (i = 1; i < num_tbs; i++) {
398 if (meta->flags & BIT(i + CMD_TB_BITMAP_POS))
399 dma_unmap_page(trans->dev,
400 iwl_pcie_tfd_tb_get_addr(tfd, i),
401 iwl_pcie_tfd_tb_get_len(tfd, i),
402 DMA_TO_DEVICE);
403 else
404 dma_unmap_single(trans->dev,
405 iwl_pcie_tfd_tb_get_addr(tfd, i),
406 iwl_pcie_tfd_tb_get_len(tfd, i),
407 DMA_TO_DEVICE);
408 }
ebed633c 409 tfd->num_tbs = 0;
4ce7cc2b
JB
410}
411
990aa6d7
EG
412/*
413 * iwl_pcie_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
6d8f6eeb 414 * @trans - transport private data
4ce7cc2b 415 * @txq - tx queue
ebed633c 416 * @dma_dir - the direction of the DMA mapping
4ce7cc2b
JB
417 *
418 * Does NOT advance any TFD circular buffer read/write indexes
419 * Does NOT free the TFD itself (which is within circular buffer)
420 */
98891754 421static void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq)
4ce7cc2b
JB
422{
423 struct iwl_tfd *tfd_tmp = txq->tfds;
4ce7cc2b 424
83f32a4b
JB
425 /* rd_ptr is bounded by TFD_QUEUE_SIZE_MAX and
426 * idx is bounded by n_window
427 */
ebed633c
EG
428 int rd_ptr = txq->q.read_ptr;
429 int idx = get_cmd_index(&txq->q, rd_ptr);
430
015c15e1
JB
431 lockdep_assert_held(&txq->lock);
432
83f32a4b
JB
433 /* We have only q->n_window txq->entries, but we use
434 * TFD_QUEUE_SIZE_MAX tfds
435 */
98891754 436 iwl_pcie_tfd_unmap(trans, &txq->entries[idx].meta, &tfd_tmp[rd_ptr]);
214d14d4
JB
437
438 /* free SKB */
bf8440e6 439 if (txq->entries) {
214d14d4
JB
440 struct sk_buff *skb;
441
ebed633c 442 skb = txq->entries[idx].skb;
214d14d4 443
909e9b23
EG
444 /* Can be called from irqs-disabled context
445 * If skb is not NULL, it means that the whole queue is being
446 * freed and that the queue is not empty - free the skb
447 */
214d14d4 448 if (skb) {
ed277c93 449 iwl_op_mode_free_skb(trans->op_mode, skb);
ebed633c 450 txq->entries[idx].skb = NULL;
214d14d4
JB
451 }
452 }
453}
454
f02831be 455static int iwl_pcie_txq_build_tfd(struct iwl_trans *trans, struct iwl_txq *txq,
6d6e68f8 456 dma_addr_t addr, u16 len, bool reset)
214d14d4
JB
457{
458 struct iwl_queue *q;
459 struct iwl_tfd *tfd, *tfd_tmp;
460 u32 num_tbs;
461
462 q = &txq->q;
4ce7cc2b 463 tfd_tmp = txq->tfds;
214d14d4
JB
464 tfd = &tfd_tmp[q->write_ptr];
465
f02831be
EG
466 if (reset)
467 memset(tfd, 0, sizeof(*tfd));
468
469 num_tbs = iwl_pcie_tfd_get_num_tbs(tfd);
470
471 /* Each TFD can point to a maximum 20 Tx buffers */
472 if (num_tbs >= IWL_NUM_OF_TBS) {
473 IWL_ERR(trans, "Error can not send more than %d chunks\n",
474 IWL_NUM_OF_TBS);
475 return -EINVAL;
476 }
477
1092b9bc
EP
478 if (WARN(addr & ~IWL_TX_DMA_MASK,
479 "Unaligned address = %llx\n", (unsigned long long)addr))
f02831be
EG
480 return -EINVAL;
481
f02831be
EG
482 iwl_pcie_tfd_set_tb(tfd, num_tbs, addr, len);
483
206eea78 484 return num_tbs;
f02831be
EG
485}
486
487static int iwl_pcie_txq_alloc(struct iwl_trans *trans,
488 struct iwl_txq *txq, int slots_num,
489 u32 txq_id)
490{
491 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
492 size_t tfd_sz = sizeof(struct iwl_tfd) * TFD_QUEUE_SIZE_MAX;
38c0f334 493 size_t scratchbuf_sz;
f02831be
EG
494 int i;
495
496 if (WARN_ON(txq->entries || txq->tfds))
497 return -EINVAL;
498
499 setup_timer(&txq->stuck_timer, iwl_pcie_txq_stuck_timer,
500 (unsigned long)txq);
501 txq->trans_pcie = trans_pcie;
502
503 txq->q.n_window = slots_num;
504
505 txq->entries = kcalloc(slots_num,
506 sizeof(struct iwl_pcie_txq_entry),
507 GFP_KERNEL);
508
509 if (!txq->entries)
510 goto error;
511
512 if (txq_id == trans_pcie->cmd_queue)
513 for (i = 0; i < slots_num; i++) {
514 txq->entries[i].cmd =
515 kmalloc(sizeof(struct iwl_device_cmd),
516 GFP_KERNEL);
517 if (!txq->entries[i].cmd)
518 goto error;
519 }
520
521 /* Circular buffer of transmit frame descriptors (TFDs),
522 * shared with device */
523 txq->tfds = dma_alloc_coherent(trans->dev, tfd_sz,
524 &txq->q.dma_addr, GFP_KERNEL);
d0320f75 525 if (!txq->tfds)
f02831be 526 goto error;
38c0f334
JB
527
528 BUILD_BUG_ON(IWL_HCMD_SCRATCHBUF_SIZE != sizeof(*txq->scratchbufs));
529 BUILD_BUG_ON(offsetof(struct iwl_pcie_txq_scratch_buf, scratch) !=
530 sizeof(struct iwl_cmd_header) +
531 offsetof(struct iwl_tx_cmd, scratch));
532
533 scratchbuf_sz = sizeof(*txq->scratchbufs) * slots_num;
534
535 txq->scratchbufs = dma_alloc_coherent(trans->dev, scratchbuf_sz,
536 &txq->scratchbufs_dma,
537 GFP_KERNEL);
538 if (!txq->scratchbufs)
539 goto err_free_tfds;
540
f02831be
EG
541 txq->q.id = txq_id;
542
543 return 0;
38c0f334
JB
544err_free_tfds:
545 dma_free_coherent(trans->dev, tfd_sz, txq->tfds, txq->q.dma_addr);
f02831be
EG
546error:
547 if (txq->entries && txq_id == trans_pcie->cmd_queue)
548 for (i = 0; i < slots_num; i++)
549 kfree(txq->entries[i].cmd);
550 kfree(txq->entries);
551 txq->entries = NULL;
552
553 return -ENOMEM;
554
555}
556
557static int iwl_pcie_txq_init(struct iwl_trans *trans, struct iwl_txq *txq,
558 int slots_num, u32 txq_id)
559{
560 int ret;
561
43aa616f 562 txq->need_update = false;
f02831be
EG
563
564 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
565 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
566 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
567
568 /* Initialize queue's high/low-water marks, and head/tail indexes */
83f32a4b 569 ret = iwl_queue_init(&txq->q, slots_num, txq_id);
f02831be
EG
570 if (ret)
571 return ret;
572
573 spin_lock_init(&txq->lock);
3955525d 574 __skb_queue_head_init(&txq->overflow_q);
f02831be
EG
575
576 /*
577 * Tell nic where to find circular buffer of Tx Frame Descriptors for
578 * given Tx queue, and enable the DMA channel used for that queue.
579 * Circular buffer (TFD queue in DRAM) physical base address */
580 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(txq_id),
581 txq->q.dma_addr >> 8);
582
583 return 0;
584}
585
6eb5e529
EG
586static void iwl_pcie_free_tso_page(struct sk_buff *skb)
587{
588 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
589
590 if (info->driver_data[IWL_TRANS_FIRST_DRIVER_DATA]) {
591 struct page *page =
592 info->driver_data[IWL_TRANS_FIRST_DRIVER_DATA];
593
594 __free_page(page);
595 info->driver_data[IWL_TRANS_FIRST_DRIVER_DATA] = NULL;
596 }
597}
598
f02831be
EG
599/*
600 * iwl_pcie_txq_unmap - Unmap any remaining DMA mappings and free skb's
601 */
602static void iwl_pcie_txq_unmap(struct iwl_trans *trans, int txq_id)
603{
604 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
605 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
606 struct iwl_queue *q = &txq->q;
f02831be 607
f02831be
EG
608 spin_lock_bh(&txq->lock);
609 while (q->write_ptr != q->read_ptr) {
b967613d
EG
610 IWL_DEBUG_TX_REPLY(trans, "Q %d Free %d\n",
611 txq_id, q->read_ptr);
6eb5e529
EG
612
613 if (txq_id != trans_pcie->cmd_queue) {
614 struct sk_buff *skb = txq->entries[q->read_ptr].skb;
615
616 if (WARN_ON_ONCE(!skb))
617 continue;
618
619 iwl_pcie_free_tso_page(skb);
620 }
98891754 621 iwl_pcie_txq_free_tfd(trans, txq);
83f32a4b 622 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr);
f02831be 623 }
b967613d 624 txq->active = false;
3955525d
EG
625
626 while (!skb_queue_empty(&txq->overflow_q)) {
627 struct sk_buff *skb = __skb_dequeue(&txq->overflow_q);
628
629 iwl_op_mode_free_skb(trans->op_mode, skb);
630 }
631
f02831be 632 spin_unlock_bh(&txq->lock);
8a487b1a
EG
633
634 /* just in case - this queue may have been stopped */
635 iwl_wake_queue(trans, txq);
f02831be
EG
636}
637
638/*
639 * iwl_pcie_txq_free - Deallocate DMA queue.
640 * @txq: Transmit queue to deallocate.
641 *
642 * Empty queue by removing and destroying all BD's.
643 * Free all buffers.
644 * 0-fill, but do not free "txq" descriptor structure.
645 */
646static void iwl_pcie_txq_free(struct iwl_trans *trans, int txq_id)
647{
648 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
649 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
650 struct device *dev = trans->dev;
651 int i;
652
653 if (WARN_ON(!txq))
654 return;
655
656 iwl_pcie_txq_unmap(trans, txq_id);
657
658 /* De-alloc array of command/tx buffers */
659 if (txq_id == trans_pcie->cmd_queue)
660 for (i = 0; i < txq->q.n_window; i++) {
5d4185ae
JB
661 kzfree(txq->entries[i].cmd);
662 kzfree(txq->entries[i].free_buf);
f02831be
EG
663 }
664
665 /* De-alloc circular buffer of TFDs */
83f32a4b
JB
666 if (txq->tfds) {
667 dma_free_coherent(dev,
668 sizeof(struct iwl_tfd) * TFD_QUEUE_SIZE_MAX,
669 txq->tfds, txq->q.dma_addr);
d21fa2da 670 txq->q.dma_addr = 0;
83f32a4b 671 txq->tfds = NULL;
38c0f334
JB
672
673 dma_free_coherent(dev,
674 sizeof(*txq->scratchbufs) * txq->q.n_window,
675 txq->scratchbufs, txq->scratchbufs_dma);
f02831be
EG
676 }
677
678 kfree(txq->entries);
679 txq->entries = NULL;
680
681 del_timer_sync(&txq->stuck_timer);
682
683 /* 0-fill queue descriptor structure */
684 memset(txq, 0, sizeof(*txq));
685}
686
f02831be
EG
687void iwl_pcie_tx_start(struct iwl_trans *trans, u32 scd_base_addr)
688{
689 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
22dc3c95 690 int nq = trans->cfg->base_params->num_of_queues;
f02831be
EG
691 int chan;
692 u32 reg_val;
22dc3c95
JB
693 int clear_dwords = (SCD_TRANS_TBL_OFFSET_QUEUE(nq) -
694 SCD_CONTEXT_MEM_LOWER_BOUND) / sizeof(u32);
f02831be
EG
695
696 /* make sure all queue are not stopped/used */
697 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
698 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
699
700 trans_pcie->scd_base_addr =
701 iwl_read_prph(trans, SCD_SRAM_BASE_ADDR);
702
703 WARN_ON(scd_base_addr != 0 &&
704 scd_base_addr != trans_pcie->scd_base_addr);
705
22dc3c95
JB
706 /* reset context data, TX status and translation data */
707 iwl_trans_write_mem(trans, trans_pcie->scd_base_addr +
708 SCD_CONTEXT_MEM_LOWER_BOUND,
709 NULL, clear_dwords);
f02831be
EG
710
711 iwl_write_prph(trans, SCD_DRAM_BASE_ADDR,
712 trans_pcie->scd_bc_tbls.dma >> 10);
713
714 /* The chain extension of the SCD doesn't work well. This feature is
715 * enabled by default by the HW, so we need to disable it manually.
716 */
e03bbb62
EG
717 if (trans->cfg->base_params->scd_chain_ext_wa)
718 iwl_write_prph(trans, SCD_CHAINEXT_EN, 0);
f02831be
EG
719
720 iwl_trans_ac_txq_enable(trans, trans_pcie->cmd_queue,
4cf677fd
EG
721 trans_pcie->cmd_fifo,
722 trans_pcie->cmd_q_wdg_timeout);
f02831be
EG
723
724 /* Activate all Tx DMA/FIFO channels */
680073b7 725 iwl_scd_activate_fifos(trans);
f02831be
EG
726
727 /* Enable DMA channel */
728 for (chan = 0; chan < FH_TCSR_CHNL_NUM; chan++)
729 iwl_write_direct32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(chan),
730 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
731 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
732
733 /* Update FH chicken bits */
734 reg_val = iwl_read_direct32(trans, FH_TX_CHICKEN_BITS_REG);
735 iwl_write_direct32(trans, FH_TX_CHICKEN_BITS_REG,
736 reg_val | FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
737
738 /* Enable L1-Active */
3073d8c0
EH
739 if (trans->cfg->device_family != IWL_DEVICE_FAMILY_8000)
740 iwl_clear_bits_prph(trans, APMG_PCIDEV_STT_REG,
741 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
f02831be
EG
742}
743
ddaf5a5b
JB
744void iwl_trans_pcie_tx_reset(struct iwl_trans *trans)
745{
746 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
747 int txq_id;
748
749 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
750 txq_id++) {
751 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
752
753 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(txq_id),
754 txq->q.dma_addr >> 8);
755 iwl_pcie_txq_unmap(trans, txq_id);
756 txq->q.read_ptr = 0;
757 txq->q.write_ptr = 0;
758 }
759
760 /* Tell NIC where to find the "keep warm" buffer */
761 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
762 trans_pcie->kw.dma >> 4);
763
cd8f4384
EG
764 /*
765 * Send 0 as the scd_base_addr since the device may have be reset
766 * while we were in WoWLAN in which case SCD_SRAM_BASE_ADDR will
767 * contain garbage.
768 */
769 iwl_pcie_tx_start(trans, 0);
ddaf5a5b
JB
770}
771
36277234
EG
772static void iwl_pcie_tx_stop_fh(struct iwl_trans *trans)
773{
774 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
775 unsigned long flags;
776 int ch, ret;
777 u32 mask = 0;
778
779 spin_lock(&trans_pcie->irq_lock);
780
23ba9340 781 if (!iwl_trans_grab_nic_access(trans, &flags))
36277234
EG
782 goto out;
783
784 /* Stop each Tx DMA channel */
785 for (ch = 0; ch < FH_TCSR_CHNL_NUM; ch++) {
786 iwl_write32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
787 mask |= FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch);
788 }
789
790 /* Wait for DMA channels to be idle */
791 ret = iwl_poll_bit(trans, FH_TSSR_TX_STATUS_REG, mask, mask, 5000);
792 if (ret < 0)
793 IWL_ERR(trans,
794 "Failing on timeout while stopping DMA channel %d [0x%08x]\n",
795 ch, iwl_read32(trans, FH_TSSR_TX_STATUS_REG));
796
797 iwl_trans_release_nic_access(trans, &flags);
798
799out:
800 spin_unlock(&trans_pcie->irq_lock);
801}
802
f02831be
EG
803/*
804 * iwl_pcie_tx_stop - Stop all Tx DMA channels
805 */
806int iwl_pcie_tx_stop(struct iwl_trans *trans)
807{
808 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
36277234 809 int txq_id;
f02831be
EG
810
811 /* Turn off all Tx DMA fifos */
680073b7 812 iwl_scd_deactivate_fifos(trans);
f02831be 813
36277234
EG
814 /* Turn off all Tx DMA channels */
815 iwl_pcie_tx_stop_fh(trans);
f02831be 816
fba1c627
EG
817 /*
818 * This function can be called before the op_mode disabled the
819 * queues. This happens when we have an rfkill interrupt.
820 * Since we stop Tx altogether - mark the queues as stopped.
821 */
822 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
823 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
824
825 /* This can happen: start_hw, stop_device */
826 if (!trans_pcie->txq)
f02831be 827 return 0;
f02831be
EG
828
829 /* Unmap DMA from host system and free skb's */
830 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
831 txq_id++)
832 iwl_pcie_txq_unmap(trans, txq_id);
833
834 return 0;
835}
836
837/*
838 * iwl_trans_tx_free - Free TXQ Context
839 *
840 * Destroy all TX DMA queues and structures
841 */
842void iwl_pcie_tx_free(struct iwl_trans *trans)
843{
844 int txq_id;
845 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
846
847 /* Tx queues */
848 if (trans_pcie->txq) {
849 for (txq_id = 0;
850 txq_id < trans->cfg->base_params->num_of_queues; txq_id++)
851 iwl_pcie_txq_free(trans, txq_id);
852 }
853
854 kfree(trans_pcie->txq);
855 trans_pcie->txq = NULL;
856
857 iwl_pcie_free_dma_ptr(trans, &trans_pcie->kw);
858
859 iwl_pcie_free_dma_ptr(trans, &trans_pcie->scd_bc_tbls);
860}
861
862/*
863 * iwl_pcie_tx_alloc - allocate TX context
864 * Allocate all Tx DMA structures and initialize them
865 */
866static int iwl_pcie_tx_alloc(struct iwl_trans *trans)
867{
868 int ret;
869 int txq_id, slots_num;
870 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
871
872 u16 scd_bc_tbls_size = trans->cfg->base_params->num_of_queues *
873 sizeof(struct iwlagn_scd_bc_tbl);
874
875 /*It is not allowed to alloc twice, so warn when this happens.
876 * We cannot rely on the previous allocation, so free and fail */
877 if (WARN_ON(trans_pcie->txq)) {
878 ret = -EINVAL;
879 goto error;
880 }
881
882 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->scd_bc_tbls,
883 scd_bc_tbls_size);
884 if (ret) {
885 IWL_ERR(trans, "Scheduler BC Table allocation failed\n");
886 goto error;
887 }
888
889 /* Alloc keep-warm buffer */
890 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->kw, IWL_KW_SIZE);
891 if (ret) {
892 IWL_ERR(trans, "Keep Warm allocation failed\n");
893 goto error;
894 }
895
896 trans_pcie->txq = kcalloc(trans->cfg->base_params->num_of_queues,
897 sizeof(struct iwl_txq), GFP_KERNEL);
898 if (!trans_pcie->txq) {
899 IWL_ERR(trans, "Not enough memory for txq\n");
2ab9ba0f 900 ret = -ENOMEM;
f02831be
EG
901 goto error;
902 }
903
904 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
905 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
906 txq_id++) {
907 slots_num = (txq_id == trans_pcie->cmd_queue) ?
908 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
909 ret = iwl_pcie_txq_alloc(trans, &trans_pcie->txq[txq_id],
910 slots_num, txq_id);
911 if (ret) {
912 IWL_ERR(trans, "Tx %d queue alloc failed\n", txq_id);
913 goto error;
914 }
915 }
916
917 return 0;
918
919error:
920 iwl_pcie_tx_free(trans);
921
922 return ret;
923}
924int iwl_pcie_tx_init(struct iwl_trans *trans)
925{
926 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
927 int ret;
928 int txq_id, slots_num;
f02831be
EG
929 bool alloc = false;
930
931 if (!trans_pcie->txq) {
932 ret = iwl_pcie_tx_alloc(trans);
933 if (ret)
934 goto error;
935 alloc = true;
936 }
937
7b70bd63 938 spin_lock(&trans_pcie->irq_lock);
f02831be
EG
939
940 /* Turn off all Tx DMA fifos */
680073b7 941 iwl_scd_deactivate_fifos(trans);
f02831be
EG
942
943 /* Tell NIC where to find the "keep warm" buffer */
944 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
945 trans_pcie->kw.dma >> 4);
946
7b70bd63 947 spin_unlock(&trans_pcie->irq_lock);
f02831be
EG
948
949 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
950 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
951 txq_id++) {
952 slots_num = (txq_id == trans_pcie->cmd_queue) ?
953 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
954 ret = iwl_pcie_txq_init(trans, &trans_pcie->txq[txq_id],
955 slots_num, txq_id);
956 if (ret) {
957 IWL_ERR(trans, "Tx %d queue init failed\n", txq_id);
958 goto error;
959 }
960 }
961
94ce9e5e 962 iwl_set_bits_prph(trans, SCD_GP_CTRL, SCD_GP_CTRL_AUTO_ACTIVE_MODE);
cb6bb128
EG
963 if (trans->cfg->base_params->num_of_queues > 20)
964 iwl_set_bits_prph(trans, SCD_GP_CTRL,
965 SCD_GP_CTRL_ENABLE_31_QUEUES);
966
f02831be
EG
967 return 0;
968error:
969 /*Upon error, free only if we allocated something */
970 if (alloc)
971 iwl_pcie_tx_free(trans);
972 return ret;
973}
974
4cf677fd 975static inline void iwl_pcie_txq_progress(struct iwl_txq *txq)
f02831be 976{
e0b8d405
EG
977 lockdep_assert_held(&txq->lock);
978
4cf677fd 979 if (!txq->wd_timeout)
f02831be
EG
980 return;
981
e0b8d405
EG
982 /*
983 * station is asleep and we send data - that must
984 * be uAPSD or PS-Poll. Don't rearm the timer.
985 */
986 if (txq->frozen)
987 return;
988
f02831be
EG
989 /*
990 * if empty delete timer, otherwise move timer forward
991 * since we're making progress on this queue
992 */
993 if (txq->q.read_ptr == txq->q.write_ptr)
994 del_timer(&txq->stuck_timer);
995 else
4cf677fd 996 mod_timer(&txq->stuck_timer, jiffies + txq->wd_timeout);
f02831be
EG
997}
998
999/* Frees buffers until index _not_ inclusive */
f6d497cd
EG
1000void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,
1001 struct sk_buff_head *skbs)
f02831be
EG
1002{
1003 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1004 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
83f32a4b 1005 int tfd_num = ssn & (TFD_QUEUE_SIZE_MAX - 1);
f02831be
EG
1006 struct iwl_queue *q = &txq->q;
1007 int last_to_free;
f02831be
EG
1008
1009 /* This function is not meant to release cmd queue*/
1010 if (WARN_ON(txq_id == trans_pcie->cmd_queue))
f6d497cd 1011 return;
214d14d4 1012
2bfb5092 1013 spin_lock_bh(&txq->lock);
f6d497cd 1014
b967613d
EG
1015 if (!txq->active) {
1016 IWL_DEBUG_TX_QUEUES(trans, "Q %d inactive - ignoring idx %d\n",
1017 txq_id, ssn);
1018 goto out;
1019 }
1020
f6d497cd
EG
1021 if (txq->q.read_ptr == tfd_num)
1022 goto out;
1023
1024 IWL_DEBUG_TX_REPLY(trans, "[Q %d] %d -> %d (%d)\n",
1025 txq_id, txq->q.read_ptr, tfd_num, ssn);
214d14d4 1026
f02831be
EG
1027 /*Since we free until index _not_ inclusive, the one before index is
1028 * the last we will free. This one must be used */
83f32a4b 1029 last_to_free = iwl_queue_dec_wrap(tfd_num);
f02831be 1030
6ca6ebc1 1031 if (!iwl_queue_used(q, last_to_free)) {
f02831be
EG
1032 IWL_ERR(trans,
1033 "%s: Read index for DMA queue txq id (%d), last_to_free %d is out of range [0-%d] %d %d.\n",
83f32a4b 1034 __func__, txq_id, last_to_free, TFD_QUEUE_SIZE_MAX,
f02831be 1035 q->write_ptr, q->read_ptr);
f6d497cd 1036 goto out;
214d14d4
JB
1037 }
1038
f02831be 1039 if (WARN_ON(!skb_queue_empty(skbs)))
f6d497cd 1040 goto out;
214d14d4 1041
f02831be 1042 for (;
f6d497cd 1043 q->read_ptr != tfd_num;
83f32a4b 1044 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr)) {
6eb5e529 1045 struct sk_buff *skb = txq->entries[txq->q.read_ptr].skb;
214d14d4 1046
6eb5e529 1047 if (WARN_ON_ONCE(!skb))
f02831be 1048 continue;
214d14d4 1049
6eb5e529
EG
1050 iwl_pcie_free_tso_page(skb);
1051
1052 __skb_queue_tail(skbs, skb);
214d14d4 1053
f02831be 1054 txq->entries[txq->q.read_ptr].skb = NULL;
fd4abac5 1055
f02831be 1056 iwl_pcie_txq_inval_byte_cnt_tbl(trans, txq);
fd4abac5 1057
98891754 1058 iwl_pcie_txq_free_tfd(trans, txq);
f02831be 1059 }
fd4abac5 1060
4cf677fd 1061 iwl_pcie_txq_progress(txq);
f02831be 1062
3955525d
EG
1063 if (iwl_queue_space(&txq->q) > txq->q.low_mark &&
1064 test_bit(txq_id, trans_pcie->queue_stopped)) {
1065 struct sk_buff_head skbs;
1066
1067 __skb_queue_head_init(&skbs);
1068 skb_queue_splice_init(&txq->overflow_q, &skbs);
1069
1070 /*
1071 * This is tricky: we are in reclaim path which is non
1072 * re-entrant, so noone will try to take the access the
1073 * txq data from that path. We stopped tx, so we can't
1074 * have tx as well. Bottom line, we can unlock and re-lock
1075 * later.
1076 */
1077 spin_unlock_bh(&txq->lock);
1078
1079 while (!skb_queue_empty(&skbs)) {
1080 struct sk_buff *skb = __skb_dequeue(&skbs);
1081 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1082 u8 dev_cmd_idx = IWL_TRANS_FIRST_DRIVER_DATA + 1;
1083 struct iwl_device_cmd *dev_cmd =
1084 info->driver_data[dev_cmd_idx];
1085
1086 /*
1087 * Note that we can very well be overflowing again.
1088 * In that case, iwl_queue_space will be small again
1089 * and we won't wake mac80211's queue.
1090 */
1091 iwl_trans_pcie_tx(trans, skb, dev_cmd, txq_id);
1092 }
1093 spin_lock_bh(&txq->lock);
1094
1095 if (iwl_queue_space(&txq->q) > txq->q.low_mark)
1096 iwl_wake_queue(trans, txq);
1097 }
7616f334
EP
1098
1099 if (q->read_ptr == q->write_ptr) {
1100 IWL_DEBUG_RPM(trans, "Q %d - last tx reclaimed\n", q->id);
1101 iwl_trans_pcie_unref(trans);
1102 }
1103
f6d497cd 1104out:
2bfb5092 1105 spin_unlock_bh(&txq->lock);
1053d35f
RR
1106}
1107
7616f334
EP
1108static int iwl_pcie_set_cmd_in_flight(struct iwl_trans *trans,
1109 const struct iwl_host_cmd *cmd)
804d4c5a
EP
1110{
1111 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1112 int ret;
1113
1114 lockdep_assert_held(&trans_pcie->reg_lock);
1115
7616f334
EP
1116 if (!(cmd->flags & CMD_SEND_IN_IDLE) &&
1117 !trans_pcie->ref_cmd_in_flight) {
1118 trans_pcie->ref_cmd_in_flight = true;
1119 IWL_DEBUG_RPM(trans, "set ref_cmd_in_flight - ref\n");
1120 iwl_trans_pcie_ref(trans);
1121 }
1122
804d4c5a
EP
1123 /*
1124 * wake up the NIC to make sure that the firmware will see the host
1125 * command - we will let the NIC sleep once all the host commands
1126 * returned. This needs to be done only on NICs that have
1127 * apmg_wake_up_wa set.
1128 */
fc8a350d
IP
1129 if (trans->cfg->base_params->apmg_wake_up_wa &&
1130 !trans_pcie->cmd_hold_nic_awake) {
804d4c5a
EP
1131 __iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
1132 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
804d4c5a
EP
1133
1134 ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
1135 CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN,
1136 (CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY |
1137 CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP),
1138 15000);
1139 if (ret < 0) {
1140 __iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
1141 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
804d4c5a
EP
1142 IWL_ERR(trans, "Failed to wake NIC for hcmd\n");
1143 return -EIO;
1144 }
fc8a350d 1145 trans_pcie->cmd_hold_nic_awake = true;
804d4c5a
EP
1146 }
1147
1148 return 0;
1149}
1150
1151static int iwl_pcie_clear_cmd_in_flight(struct iwl_trans *trans)
1152{
1153 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1154
1155 lockdep_assert_held(&trans_pcie->reg_lock);
1156
7616f334
EP
1157 if (trans_pcie->ref_cmd_in_flight) {
1158 trans_pcie->ref_cmd_in_flight = false;
1159 IWL_DEBUG_RPM(trans, "clear ref_cmd_in_flight - unref\n");
1160 iwl_trans_pcie_unref(trans);
1161 }
1162
fc8a350d
IP
1163 if (trans->cfg->base_params->apmg_wake_up_wa) {
1164 if (WARN_ON(!trans_pcie->cmd_hold_nic_awake))
1165 return 0;
804d4c5a 1166
fc8a350d 1167 trans_pcie->cmd_hold_nic_awake = false;
804d4c5a 1168 __iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
fc8a350d
IP
1169 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1170 }
804d4c5a
EP
1171 return 0;
1172}
1173
f02831be
EG
1174/*
1175 * iwl_pcie_cmdq_reclaim - Reclaim TX command queue entries already Tx'd
1176 *
1177 * When FW advances 'R' index, all entries between old and new 'R' index
1178 * need to be reclaimed. As result, some free space forms. If there is
1179 * enough free space (> low mark), wake the stack that feeds us.
1180 */
1181static void iwl_pcie_cmdq_reclaim(struct iwl_trans *trans, int txq_id, int idx)
48d42c42 1182{
f02831be
EG
1183 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1184 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
1185 struct iwl_queue *q = &txq->q;
b9439491 1186 unsigned long flags;
f02831be 1187 int nfreed = 0;
48d42c42 1188
f02831be 1189 lockdep_assert_held(&txq->lock);
48d42c42 1190
83f32a4b 1191 if ((idx >= TFD_QUEUE_SIZE_MAX) || (!iwl_queue_used(q, idx))) {
f02831be
EG
1192 IWL_ERR(trans,
1193 "%s: Read index for DMA queue txq id (%d), index %d is out of range [0-%d] %d %d.\n",
83f32a4b 1194 __func__, txq_id, idx, TFD_QUEUE_SIZE_MAX,
f02831be
EG
1195 q->write_ptr, q->read_ptr);
1196 return;
1197 }
48d42c42 1198
83f32a4b
JB
1199 for (idx = iwl_queue_inc_wrap(idx); q->read_ptr != idx;
1200 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr)) {
48d42c42 1201
f02831be
EG
1202 if (nfreed++ > 0) {
1203 IWL_ERR(trans, "HCMD skipped: index (%d) %d %d\n",
1204 idx, q->write_ptr, q->read_ptr);
4c9706dc 1205 iwl_force_nmi(trans);
f02831be
EG
1206 }
1207 }
1208
804d4c5a 1209 if (q->read_ptr == q->write_ptr) {
b9439491 1210 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
804d4c5a 1211 iwl_pcie_clear_cmd_in_flight(trans);
b9439491
EG
1212 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1213 }
1214
4cf677fd 1215 iwl_pcie_txq_progress(txq);
48d42c42
EG
1216}
1217
f02831be 1218static int iwl_pcie_txq_set_ratid_map(struct iwl_trans *trans, u16 ra_tid,
1ce8658c 1219 u16 txq_id)
48d42c42 1220{
20d3b647 1221 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
48d42c42
EG
1222 u32 tbl_dw_addr;
1223 u32 tbl_dw;
1224 u16 scd_q2ratid;
1225
1226 scd_q2ratid = ra_tid & SCD_QUEUE_RA_TID_MAP_RATID_MSK;
1227
105183b1 1228 tbl_dw_addr = trans_pcie->scd_base_addr +
48d42c42
EG
1229 SCD_TRANS_TBL_OFFSET_QUEUE(txq_id);
1230
4fd442db 1231 tbl_dw = iwl_trans_read_mem32(trans, tbl_dw_addr);
48d42c42
EG
1232
1233 if (txq_id & 0x1)
1234 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
1235 else
1236 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
1237
4fd442db 1238 iwl_trans_write_mem32(trans, tbl_dw_addr, tbl_dw);
48d42c42
EG
1239
1240 return 0;
1241}
1242
bd5f6a34
EG
1243/* Receiver address (actually, Rx station's index into station table),
1244 * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */
1245#define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
1246
fea7795f 1247void iwl_trans_pcie_txq_enable(struct iwl_trans *trans, int txq_id, u16 ssn,
4cf677fd
EG
1248 const struct iwl_trans_txq_scd_cfg *cfg,
1249 unsigned int wdg_timeout)
48d42c42 1250{
9eae88fa 1251 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
4cf677fd 1252 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
d4578ea8 1253 int fifo = -1;
4beaf6c2 1254
9eae88fa
JB
1255 if (test_and_set_bit(txq_id, trans_pcie->queue_used))
1256 WARN_ONCE(1, "queue %d already used - expect issues", txq_id);
48d42c42 1257
4cf677fd
EG
1258 txq->wd_timeout = msecs_to_jiffies(wdg_timeout);
1259
d4578ea8
JB
1260 if (cfg) {
1261 fifo = cfg->fifo;
48d42c42 1262
002a9e26 1263 /* Disable the scheduler prior configuring the cmd queue */
3a736bcb
EG
1264 if (txq_id == trans_pcie->cmd_queue &&
1265 trans_pcie->scd_set_active)
002a9e26
AA
1266 iwl_scd_enable_set_active(trans, 0);
1267
d4578ea8
JB
1268 /* Stop this Tx queue before configuring it */
1269 iwl_scd_txq_set_inactive(trans, txq_id);
4beaf6c2 1270
d4578ea8
JB
1271 /* Set this queue as a chain-building queue unless it is CMD */
1272 if (txq_id != trans_pcie->cmd_queue)
1273 iwl_scd_txq_set_chain(trans, txq_id);
48d42c42 1274
64ba8930 1275 if (cfg->aggregate) {
d4578ea8 1276 u16 ra_tid = BUILD_RAxTID(cfg->sta_id, cfg->tid);
48d42c42 1277
d4578ea8
JB
1278 /* Map receiver-address / traffic-ID to this queue */
1279 iwl_pcie_txq_set_ratid_map(trans, ra_tid, txq_id);
f4772520 1280
d4578ea8
JB
1281 /* enable aggregations for the queue */
1282 iwl_scd_txq_enable_agg(trans, txq_id);
4cf677fd 1283 txq->ampdu = true;
d4578ea8
JB
1284 } else {
1285 /*
1286 * disable aggregations for the queue, this will also
1287 * make the ra_tid mapping configuration irrelevant
1288 * since it is now a non-AGG queue.
1289 */
1290 iwl_scd_txq_disable_agg(trans, txq_id);
1291
4cf677fd 1292 ssn = txq->q.read_ptr;
d4578ea8 1293 }
4beaf6c2 1294 }
48d42c42
EG
1295
1296 /* Place first TFD at index corresponding to start sequence number.
1297 * Assumes that ssn_idx is valid (!= 0xFFF) */
4cf677fd
EG
1298 txq->q.read_ptr = (ssn & 0xff);
1299 txq->q.write_ptr = (ssn & 0xff);
0294d9ee
EG
1300 iwl_write_direct32(trans, HBUS_TARG_WRPTR,
1301 (ssn & 0xff) | (txq_id << 8));
1ce8658c 1302
d4578ea8
JB
1303 if (cfg) {
1304 u8 frame_limit = cfg->frame_limit;
48d42c42 1305
d4578ea8
JB
1306 iwl_write_prph(trans, SCD_QUEUE_RDPTR(txq_id), ssn);
1307
1308 /* Set up Tx window size and frame limit for this queue */
1309 iwl_trans_write_mem32(trans, trans_pcie->scd_base_addr +
1310 SCD_CONTEXT_QUEUE_OFFSET(txq_id), 0);
1311 iwl_trans_write_mem32(trans,
1312 trans_pcie->scd_base_addr +
9eae88fa
JB
1313 SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
1314 ((frame_limit << SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
d4578ea8 1315 SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
9eae88fa 1316 ((frame_limit << SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
d4578ea8
JB
1317 SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
1318
1319 /* Set up status area in SRAM, map to Tx DMA/FIFO, activate */
1320 iwl_write_prph(trans, SCD_QUEUE_STATUS_BITS(txq_id),
1321 (1 << SCD_QUEUE_STTS_REG_POS_ACTIVE) |
1322 (cfg->fifo << SCD_QUEUE_STTS_REG_POS_TXF) |
1323 (1 << SCD_QUEUE_STTS_REG_POS_WSL) |
1324 SCD_QUEUE_STTS_REG_MSK);
002a9e26
AA
1325
1326 /* enable the scheduler for this queue (only) */
3a736bcb
EG
1327 if (txq_id == trans_pcie->cmd_queue &&
1328 trans_pcie->scd_set_active)
002a9e26 1329 iwl_scd_enable_set_active(trans, BIT(txq_id));
0294d9ee
EG
1330
1331 IWL_DEBUG_TX_QUEUES(trans,
1332 "Activate queue %d on FIFO %d WrPtr: %d\n",
1333 txq_id, fifo, ssn & 0xff);
1334 } else {
1335 IWL_DEBUG_TX_QUEUES(trans,
1336 "Activate queue %d WrPtr: %d\n",
1337 txq_id, ssn & 0xff);
d4578ea8
JB
1338 }
1339
4cf677fd 1340 txq->active = true;
4beaf6c2
EG
1341}
1342
d4578ea8
JB
1343void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int txq_id,
1344 bool configure_scd)
288712a6 1345{
8ad71bef 1346 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
986ea6c9
EG
1347 u32 stts_addr = trans_pcie->scd_base_addr +
1348 SCD_TX_STTS_QUEUE_OFFSET(txq_id);
1349 static const u32 zero_val[4] = {};
288712a6 1350
e0b8d405
EG
1351 trans_pcie->txq[txq_id].frozen_expiry_remainder = 0;
1352 trans_pcie->txq[txq_id].frozen = false;
1353
fba1c627
EG
1354 /*
1355 * Upon HW Rfkill - we stop the device, and then stop the queues
1356 * in the op_mode. Just for the sake of the simplicity of the op_mode,
1357 * allow the op_mode to call txq_disable after it already called
1358 * stop_device.
1359 */
9eae88fa 1360 if (!test_and_clear_bit(txq_id, trans_pcie->queue_used)) {
fba1c627
EG
1361 WARN_ONCE(test_bit(STATUS_DEVICE_ENABLED, &trans->status),
1362 "queue %d not used", txq_id);
9eae88fa 1363 return;
48d42c42
EG
1364 }
1365
d4578ea8
JB
1366 if (configure_scd) {
1367 iwl_scd_txq_set_inactive(trans, txq_id);
ac928f8d 1368
d4578ea8
JB
1369 iwl_trans_write_mem(trans, stts_addr, (void *)zero_val,
1370 ARRAY_SIZE(zero_val));
1371 }
986ea6c9 1372
990aa6d7 1373 iwl_pcie_txq_unmap(trans, txq_id);
68972c46 1374 trans_pcie->txq[txq_id].ampdu = false;
6c3fd3f0 1375
1ce8658c 1376 IWL_DEBUG_TX_QUEUES(trans, "Deactivate queue %d\n", txq_id);
48d42c42
EG
1377}
1378
fd4abac5
TW
1379/*************** HOST COMMAND QUEUE FUNCTIONS *****/
1380
990aa6d7 1381/*
f02831be 1382 * iwl_pcie_enqueue_hcmd - enqueue a uCode command
fd4abac5 1383 * @priv: device private data point
e89044d7 1384 * @cmd: a pointer to the ucode command structure
fd4abac5 1385 *
e89044d7
EP
1386 * The function returns < 0 values to indicate the operation
1387 * failed. On success, it returns the index (>= 0) of command in the
fd4abac5
TW
1388 * command queue.
1389 */
f02831be
EG
1390static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,
1391 struct iwl_host_cmd *cmd)
fd4abac5 1392{
8ad71bef 1393 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
990aa6d7 1394 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
fd4abac5 1395 struct iwl_queue *q = &txq->q;
c2acea8e
JB
1396 struct iwl_device_cmd *out_cmd;
1397 struct iwl_cmd_meta *out_meta;
b9439491 1398 unsigned long flags;
f4feb8ac 1399 void *dup_buf = NULL;
fd4abac5 1400 dma_addr_t phys_addr;
f4feb8ac 1401 int idx;
38c0f334 1402 u16 copy_size, cmd_size, scratch_size;
4ce7cc2b 1403 bool had_nocopy = false;
ab02165c 1404 u8 group_id = iwl_cmd_groupid(cmd->id);
b9439491 1405 int i, ret;
96791422 1406 u32 cmd_pos;
1afbfb60
JB
1407 const u8 *cmddata[IWL_MAX_CMD_TBS_PER_TFD];
1408 u16 cmdlen[IWL_MAX_CMD_TBS_PER_TFD];
fd4abac5 1409
88742c9e
JB
1410 if (WARN(!trans_pcie->wide_cmd_header &&
1411 group_id > IWL_ALWAYS_LONG_GROUP,
ab02165c
AE
1412 "unsupported wide command %#x\n", cmd->id))
1413 return -EINVAL;
1414
1415 if (group_id != 0) {
1416 copy_size = sizeof(struct iwl_cmd_header_wide);
1417 cmd_size = sizeof(struct iwl_cmd_header_wide);
1418 } else {
1419 copy_size = sizeof(struct iwl_cmd_header);
1420 cmd_size = sizeof(struct iwl_cmd_header);
1421 }
4ce7cc2b
JB
1422
1423 /* need one for the header if the first is NOCOPY */
1afbfb60 1424 BUILD_BUG_ON(IWL_MAX_CMD_TBS_PER_TFD > IWL_NUM_OF_TBS - 1);
4ce7cc2b 1425
1afbfb60 1426 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
8a964f44
JB
1427 cmddata[i] = cmd->data[i];
1428 cmdlen[i] = cmd->len[i];
1429
4ce7cc2b
JB
1430 if (!cmd->len[i])
1431 continue;
8a964f44 1432
38c0f334
JB
1433 /* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */
1434 if (copy_size < IWL_HCMD_SCRATCHBUF_SIZE) {
1435 int copy = IWL_HCMD_SCRATCHBUF_SIZE - copy_size;
8a964f44
JB
1436
1437 if (copy > cmdlen[i])
1438 copy = cmdlen[i];
1439 cmdlen[i] -= copy;
1440 cmddata[i] += copy;
1441 copy_size += copy;
1442 }
1443
4ce7cc2b
JB
1444 if (cmd->dataflags[i] & IWL_HCMD_DFL_NOCOPY) {
1445 had_nocopy = true;
f4feb8ac
JB
1446 if (WARN_ON(cmd->dataflags[i] & IWL_HCMD_DFL_DUP)) {
1447 idx = -EINVAL;
1448 goto free_dup_buf;
1449 }
1450 } else if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP) {
1451 /*
1452 * This is also a chunk that isn't copied
1453 * to the static buffer so set had_nocopy.
1454 */
1455 had_nocopy = true;
1456
1457 /* only allowed once */
1458 if (WARN_ON(dup_buf)) {
1459 idx = -EINVAL;
1460 goto free_dup_buf;
1461 }
1462
8a964f44 1463 dup_buf = kmemdup(cmddata[i], cmdlen[i],
f4feb8ac
JB
1464 GFP_ATOMIC);
1465 if (!dup_buf)
1466 return -ENOMEM;
4ce7cc2b
JB
1467 } else {
1468 /* NOCOPY must not be followed by normal! */
f4feb8ac
JB
1469 if (WARN_ON(had_nocopy)) {
1470 idx = -EINVAL;
1471 goto free_dup_buf;
1472 }
8a964f44 1473 copy_size += cmdlen[i];
4ce7cc2b
JB
1474 }
1475 cmd_size += cmd->len[i];
1476 }
fd4abac5 1477
3e41ace5
JB
1478 /*
1479 * If any of the command structures end up being larger than
4ce7cc2b
JB
1480 * the TFD_MAX_PAYLOAD_SIZE and they aren't dynamically
1481 * allocated into separate TFDs, then we will need to
1482 * increase the size of the buffers.
3e41ace5 1483 */
2a79e45e
JB
1484 if (WARN(copy_size > TFD_MAX_PAYLOAD_SIZE,
1485 "Command %s (%#x) is too large (%d bytes)\n",
39bdb17e
SD
1486 iwl_get_cmd_string(trans, cmd->id),
1487 cmd->id, copy_size)) {
f4feb8ac
JB
1488 idx = -EINVAL;
1489 goto free_dup_buf;
1490 }
fd4abac5 1491
015c15e1 1492 spin_lock_bh(&txq->lock);
3598e177 1493
c2acea8e 1494 if (iwl_queue_space(q) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
015c15e1 1495 spin_unlock_bh(&txq->lock);
3598e177 1496
6d8f6eeb 1497 IWL_ERR(trans, "No space in command queue\n");
0e781842 1498 iwl_op_mode_cmd_queue_full(trans->op_mode);
f4feb8ac
JB
1499 idx = -ENOSPC;
1500 goto free_dup_buf;
fd4abac5
TW
1501 }
1502
4ce7cc2b 1503 idx = get_cmd_index(q, q->write_ptr);
bf8440e6
JB
1504 out_cmd = txq->entries[idx].cmd;
1505 out_meta = &txq->entries[idx].meta;
c2acea8e 1506
8ce73f3a 1507 memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */
c2acea8e
JB
1508 if (cmd->flags & CMD_WANT_SKB)
1509 out_meta->source = cmd;
fd4abac5 1510
4ce7cc2b 1511 /* set up the header */
ab02165c
AE
1512 if (group_id != 0) {
1513 out_cmd->hdr_wide.cmd = iwl_cmd_opcode(cmd->id);
1514 out_cmd->hdr_wide.group_id = group_id;
1515 out_cmd->hdr_wide.version = iwl_cmd_version(cmd->id);
1516 out_cmd->hdr_wide.length =
1517 cpu_to_le16(cmd_size -
1518 sizeof(struct iwl_cmd_header_wide));
1519 out_cmd->hdr_wide.reserved = 0;
1520 out_cmd->hdr_wide.sequence =
1521 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
1522 INDEX_TO_SEQ(q->write_ptr));
1523
1524 cmd_pos = sizeof(struct iwl_cmd_header_wide);
1525 copy_size = sizeof(struct iwl_cmd_header_wide);
1526 } else {
1527 out_cmd->hdr.cmd = iwl_cmd_opcode(cmd->id);
1528 out_cmd->hdr.sequence =
1529 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
1530 INDEX_TO_SEQ(q->write_ptr));
1531 out_cmd->hdr.group_id = 0;
1532
1533 cmd_pos = sizeof(struct iwl_cmd_header);
1534 copy_size = sizeof(struct iwl_cmd_header);
1535 }
4ce7cc2b
JB
1536
1537 /* and copy the data that needs to be copied */
1afbfb60 1538 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
4d075007 1539 int copy;
8a964f44 1540
cc904c71 1541 if (!cmd->len[i])
4ce7cc2b 1542 continue;
8a964f44 1543
8a964f44
JB
1544 /* copy everything if not nocopy/dup */
1545 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
4d075007 1546 IWL_HCMD_DFL_DUP))) {
8a964f44
JB
1547 copy = cmd->len[i];
1548
8a964f44
JB
1549 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1550 cmd_pos += copy;
1551 copy_size += copy;
4d075007
JB
1552 continue;
1553 }
1554
1555 /*
1556 * Otherwise we need at least IWL_HCMD_SCRATCHBUF_SIZE copied
1557 * in total (for the scratchbuf handling), but copy up to what
1558 * we can fit into the payload for debug dump purposes.
1559 */
1560 copy = min_t(int, TFD_MAX_PAYLOAD_SIZE - cmd_pos, cmd->len[i]);
1561
1562 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1563 cmd_pos += copy;
1564
1565 /* However, treat copy_size the proper way, we need it below */
1566 if (copy_size < IWL_HCMD_SCRATCHBUF_SIZE) {
1567 copy = IWL_HCMD_SCRATCHBUF_SIZE - copy_size;
1568
1569 if (copy > cmd->len[i])
1570 copy = cmd->len[i];
1571 copy_size += copy;
8a964f44 1572 }
96791422
EG
1573 }
1574
d9fb6465 1575 IWL_DEBUG_HC(trans,
ab02165c 1576 "Sending command %s (%.2x.%.2x), seq: 0x%04X, %d bytes at %d[%d]:%d\n",
39bdb17e 1577 iwl_get_cmd_string(trans, cmd->id),
ab02165c
AE
1578 group_id, out_cmd->hdr.cmd,
1579 le16_to_cpu(out_cmd->hdr.sequence),
20d3b647 1580 cmd_size, q->write_ptr, idx, trans_pcie->cmd_queue);
4ce7cc2b 1581
38c0f334
JB
1582 /* start the TFD with the scratchbuf */
1583 scratch_size = min_t(int, copy_size, IWL_HCMD_SCRATCHBUF_SIZE);
1584 memcpy(&txq->scratchbufs[q->write_ptr], &out_cmd->hdr, scratch_size);
1585 iwl_pcie_txq_build_tfd(trans, txq,
1586 iwl_pcie_get_scratchbuf_dma(txq, q->write_ptr),
6d6e68f8 1587 scratch_size, true);
38c0f334
JB
1588
1589 /* map first command fragment, if any remains */
1590 if (copy_size > scratch_size) {
1591 phys_addr = dma_map_single(trans->dev,
1592 ((u8 *)&out_cmd->hdr) + scratch_size,
1593 copy_size - scratch_size,
1594 DMA_TO_DEVICE);
1595 if (dma_mapping_error(trans->dev, phys_addr)) {
1596 iwl_pcie_tfd_unmap(trans, out_meta,
1597 &txq->tfds[q->write_ptr]);
1598 idx = -ENOMEM;
1599 goto out;
1600 }
8a964f44 1601
38c0f334 1602 iwl_pcie_txq_build_tfd(trans, txq, phys_addr,
6d6e68f8 1603 copy_size - scratch_size, false);
2c46f72e
JB
1604 }
1605
8a964f44 1606 /* map the remaining (adjusted) nocopy/dup fragments */
1afbfb60 1607 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
8a964f44 1608 const void *data = cmddata[i];
f4feb8ac 1609
8a964f44 1610 if (!cmdlen[i])
4ce7cc2b 1611 continue;
f4feb8ac
JB
1612 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1613 IWL_HCMD_DFL_DUP)))
4ce7cc2b 1614 continue;
f4feb8ac
JB
1615 if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP)
1616 data = dup_buf;
1617 phys_addr = dma_map_single(trans->dev, (void *)data,
98891754 1618 cmdlen[i], DMA_TO_DEVICE);
1042db2a 1619 if (dma_mapping_error(trans->dev, phys_addr)) {
f02831be 1620 iwl_pcie_tfd_unmap(trans, out_meta,
98891754 1621 &txq->tfds[q->write_ptr]);
4ce7cc2b
JB
1622 idx = -ENOMEM;
1623 goto out;
1624 }
1625
6d6e68f8 1626 iwl_pcie_txq_build_tfd(trans, txq, phys_addr, cmdlen[i], false);
4ce7cc2b 1627 }
df833b1d 1628
206eea78
JB
1629 BUILD_BUG_ON(IWL_NUM_OF_TBS + CMD_TB_BITMAP_POS >
1630 sizeof(out_meta->flags) * BITS_PER_BYTE);
afaf6b57 1631 out_meta->flags = cmd->flags;
f4feb8ac 1632 if (WARN_ON_ONCE(txq->entries[idx].free_buf))
5d4185ae 1633 kzfree(txq->entries[idx].free_buf);
f4feb8ac 1634 txq->entries[idx].free_buf = dup_buf;
2c46f72e 1635
ab02165c 1636 trace_iwlwifi_dev_hcmd(trans->dev, cmd, cmd_size, &out_cmd->hdr_wide);
df833b1d 1637
7c5ba4a8 1638 /* start timer if queue currently empty */
4cf677fd
EG
1639 if (q->read_ptr == q->write_ptr && txq->wd_timeout)
1640 mod_timer(&txq->stuck_timer, jiffies + txq->wd_timeout);
7c5ba4a8 1641
b9439491 1642 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
7616f334 1643 ret = iwl_pcie_set_cmd_in_flight(trans, cmd);
804d4c5a
EP
1644 if (ret < 0) {
1645 idx = ret;
1646 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1647 goto out;
b9439491
EG
1648 }
1649
fd4abac5 1650 /* Increment and update queue's write index */
83f32a4b 1651 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr);
990aa6d7 1652 iwl_pcie_txq_inc_wr_ptr(trans, txq);
fd4abac5 1653
b9439491
EG
1654 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1655
2c46f72e 1656 out:
015c15e1 1657 spin_unlock_bh(&txq->lock);
f4feb8ac
JB
1658 free_dup_buf:
1659 if (idx < 0)
1660 kfree(dup_buf);
7bfedc59 1661 return idx;
fd4abac5
TW
1662}
1663
990aa6d7
EG
1664/*
1665 * iwl_pcie_hcmd_complete - Pull unused buffers off the queue and reclaim them
17b88929 1666 * @rxb: Rx buffer to reclaim
17b88929 1667 */
990aa6d7 1668void iwl_pcie_hcmd_complete(struct iwl_trans *trans,
f7e6469f 1669 struct iwl_rx_cmd_buffer *rxb)
17b88929 1670{
2f301227 1671 struct iwl_rx_packet *pkt = rxb_addr(rxb);
17b88929 1672 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
39bdb17e
SD
1673 u8 group_id = iwl_cmd_groupid(pkt->hdr.group_id);
1674 u32 cmd_id;
17b88929
TW
1675 int txq_id = SEQ_TO_QUEUE(sequence);
1676 int index = SEQ_TO_INDEX(sequence);
17b88929 1677 int cmd_index;
c2acea8e
JB
1678 struct iwl_device_cmd *cmd;
1679 struct iwl_cmd_meta *meta;
8ad71bef 1680 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
990aa6d7 1681 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
17b88929
TW
1682
1683 /* If a Tx command is being handled and it isn't in the actual
1684 * command queue then there a command routing bug has been introduced
1685 * in the queue management code. */
c6f600fc 1686 if (WARN(txq_id != trans_pcie->cmd_queue,
13bb9483 1687 "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n",
20d3b647
JB
1688 txq_id, trans_pcie->cmd_queue, sequence,
1689 trans_pcie->txq[trans_pcie->cmd_queue].q.read_ptr,
1690 trans_pcie->txq[trans_pcie->cmd_queue].q.write_ptr)) {
3e10caeb 1691 iwl_print_hex_error(trans, pkt, 32);
55d6a3cd 1692 return;
01ef9323 1693 }
17b88929 1694
2bfb5092 1695 spin_lock_bh(&txq->lock);
015c15e1 1696
4ce7cc2b 1697 cmd_index = get_cmd_index(&txq->q, index);
bf8440e6
JB
1698 cmd = txq->entries[cmd_index].cmd;
1699 meta = &txq->entries[cmd_index].meta;
39bdb17e 1700 cmd_id = iwl_cmd_id(cmd->hdr.cmd, group_id, 0);
17b88929 1701
98891754 1702 iwl_pcie_tfd_unmap(trans, meta, &txq->tfds[index]);
c33de625 1703
17b88929 1704 /* Input error checking is done when commands are added to queue. */
c2acea8e 1705 if (meta->flags & CMD_WANT_SKB) {
48a2d66f 1706 struct page *p = rxb_steal_page(rxb);
65b94a4a 1707
65b94a4a
JB
1708 meta->source->resp_pkt = pkt;
1709 meta->source->_rx_page_addr = (unsigned long)page_address(p);
b2cf410c 1710 meta->source->_rx_page_order = trans_pcie->rx_page_order;
247c61d6 1711 }
2624e96c 1712
dcbb4746
EG
1713 if (meta->flags & CMD_WANT_ASYNC_CALLBACK)
1714 iwl_op_mode_async_cb(trans->op_mode, cmd);
1715
f02831be 1716 iwl_pcie_cmdq_reclaim(trans, txq_id, index);
17b88929 1717
c2acea8e 1718 if (!(meta->flags & CMD_ASYNC)) {
eb7ff77e 1719 if (!test_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status)) {
05c89b91
WYG
1720 IWL_WARN(trans,
1721 "HCMD_ACTIVE already clear for command %s\n",
39bdb17e 1722 iwl_get_cmd_string(trans, cmd_id));
05c89b91 1723 }
eb7ff77e 1724 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
6d8f6eeb 1725 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
39bdb17e 1726 iwl_get_cmd_string(trans, cmd_id));
f946b529 1727 wake_up(&trans_pcie->wait_command_queue);
17b88929 1728 }
3598e177 1729
dd487449 1730 meta->flags = 0;
3598e177 1731
2bfb5092 1732 spin_unlock_bh(&txq->lock);
17b88929 1733}
253a634c 1734
9439eac7 1735#define HOST_COMPLETE_TIMEOUT (2 * HZ)
253a634c 1736
f02831be
EG
1737static int iwl_pcie_send_hcmd_async(struct iwl_trans *trans,
1738 struct iwl_host_cmd *cmd)
253a634c
EG
1739{
1740 int ret;
1741
1742 /* An asynchronous command can not expect an SKB to be set. */
1743 if (WARN_ON(cmd->flags & CMD_WANT_SKB))
1744 return -EINVAL;
1745
f02831be 1746 ret = iwl_pcie_enqueue_hcmd(trans, cmd);
253a634c 1747 if (ret < 0) {
721c32f7 1748 IWL_ERR(trans,
b36b110c 1749 "Error sending %s: enqueue_hcmd failed: %d\n",
39bdb17e 1750 iwl_get_cmd_string(trans, cmd->id), ret);
253a634c
EG
1751 return ret;
1752 }
1753 return 0;
1754}
1755
f02831be
EG
1756static int iwl_pcie_send_hcmd_sync(struct iwl_trans *trans,
1757 struct iwl_host_cmd *cmd)
253a634c 1758{
8ad71bef 1759 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
253a634c
EG
1760 int cmd_idx;
1761 int ret;
1762
6d8f6eeb 1763 IWL_DEBUG_INFO(trans, "Attempting to send sync command %s\n",
39bdb17e 1764 iwl_get_cmd_string(trans, cmd->id));
253a634c 1765
eb7ff77e
AN
1766 if (WARN(test_and_set_bit(STATUS_SYNC_HCMD_ACTIVE,
1767 &trans->status),
bcbb8c9c 1768 "Command %s: a command is already active!\n",
39bdb17e 1769 iwl_get_cmd_string(trans, cmd->id)))
2cc39c94 1770 return -EIO;
2cc39c94 1771
6d8f6eeb 1772 IWL_DEBUG_INFO(trans, "Setting HCMD_ACTIVE for command %s\n",
39bdb17e 1773 iwl_get_cmd_string(trans, cmd->id));
253a634c 1774
f02831be 1775 cmd_idx = iwl_pcie_enqueue_hcmd(trans, cmd);
253a634c
EG
1776 if (cmd_idx < 0) {
1777 ret = cmd_idx;
eb7ff77e 1778 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
721c32f7 1779 IWL_ERR(trans,
b36b110c 1780 "Error sending %s: enqueue_hcmd failed: %d\n",
39bdb17e 1781 iwl_get_cmd_string(trans, cmd->id), ret);
253a634c
EG
1782 return ret;
1783 }
1784
b9439491
EG
1785 ret = wait_event_timeout(trans_pcie->wait_command_queue,
1786 !test_bit(STATUS_SYNC_HCMD_ACTIVE,
1787 &trans->status),
1788 HOST_COMPLETE_TIMEOUT);
253a634c 1789 if (!ret) {
6dde8c48
JB
1790 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
1791 struct iwl_queue *q = &txq->q;
d10630af 1792
6dde8c48 1793 IWL_ERR(trans, "Error sending %s: time out after %dms.\n",
39bdb17e 1794 iwl_get_cmd_string(trans, cmd->id),
6dde8c48 1795 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
253a634c 1796
6dde8c48
JB
1797 IWL_ERR(trans, "Current CMD queue read_ptr %d write_ptr %d\n",
1798 q->read_ptr, q->write_ptr);
d10630af 1799
eb7ff77e 1800 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
6dde8c48 1801 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
39bdb17e 1802 iwl_get_cmd_string(trans, cmd->id));
6dde8c48 1803 ret = -ETIMEDOUT;
42550a53 1804
4c9706dc 1805 iwl_force_nmi(trans);
2a988e98 1806 iwl_trans_fw_error(trans);
42550a53 1807
6dde8c48 1808 goto cancel;
253a634c
EG
1809 }
1810
eb7ff77e 1811 if (test_bit(STATUS_FW_ERROR, &trans->status)) {
d18aa87f 1812 IWL_ERR(trans, "FW error in SYNC CMD %s\n",
39bdb17e 1813 iwl_get_cmd_string(trans, cmd->id));
b656fa33 1814 dump_stack();
d18aa87f
JB
1815 ret = -EIO;
1816 goto cancel;
1817 }
1818
1094fa26 1819 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
eb7ff77e 1820 test_bit(STATUS_RFKILL, &trans->status)) {
f946b529
EG
1821 IWL_DEBUG_RF_KILL(trans, "RFKILL in SYNC CMD... no rsp\n");
1822 ret = -ERFKILL;
1823 goto cancel;
1824 }
1825
65b94a4a 1826 if ((cmd->flags & CMD_WANT_SKB) && !cmd->resp_pkt) {
6d8f6eeb 1827 IWL_ERR(trans, "Error: Response NULL in '%s'\n",
39bdb17e 1828 iwl_get_cmd_string(trans, cmd->id));
253a634c
EG
1829 ret = -EIO;
1830 goto cancel;
1831 }
1832
1833 return 0;
1834
1835cancel:
1836 if (cmd->flags & CMD_WANT_SKB) {
1837 /*
1838 * Cancel the CMD_WANT_SKB flag for the cmd in the
1839 * TX cmd queue. Otherwise in case the cmd comes
1840 * in later, it will possibly set an invalid
1841 * address (cmd->meta.source).
1842 */
bf8440e6
JB
1843 trans_pcie->txq[trans_pcie->cmd_queue].
1844 entries[cmd_idx].meta.flags &= ~CMD_WANT_SKB;
253a634c 1845 }
9cac4943 1846
65b94a4a
JB
1847 if (cmd->resp_pkt) {
1848 iwl_free_resp(cmd);
1849 cmd->resp_pkt = NULL;
253a634c
EG
1850 }
1851
1852 return ret;
1853}
1854
f02831be 1855int iwl_trans_pcie_send_hcmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
253a634c 1856{
4f59334b 1857 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
eb7ff77e 1858 test_bit(STATUS_RFKILL, &trans->status)) {
754d7d9e
EG
1859 IWL_DEBUG_RF_KILL(trans, "Dropping CMD 0x%x: RF KILL\n",
1860 cmd->id);
f946b529 1861 return -ERFKILL;
754d7d9e 1862 }
f946b529 1863
253a634c 1864 if (cmd->flags & CMD_ASYNC)
f02831be 1865 return iwl_pcie_send_hcmd_async(trans, cmd);
253a634c 1866
f946b529 1867 /* We still can fail on RFKILL that can be asserted while we wait */
f02831be 1868 return iwl_pcie_send_hcmd_sync(trans, cmd);
253a634c
EG
1869}
1870
3a0b2a42
EG
1871static int iwl_fill_data_tbs(struct iwl_trans *trans, struct sk_buff *skb,
1872 struct iwl_txq *txq, u8 hdr_len,
1873 struct iwl_cmd_meta *out_meta,
1874 struct iwl_device_cmd *dev_cmd, u16 tb1_len)
1875{
1876 struct iwl_queue *q = &txq->q;
1877 u16 tb2_len;
1878 int i;
1879
1880 /*
1881 * Set up TFD's third entry to point directly to remainder
1882 * of skb's head, if any
1883 */
1884 tb2_len = skb_headlen(skb) - hdr_len;
1885
1886 if (tb2_len > 0) {
1887 dma_addr_t tb2_phys = dma_map_single(trans->dev,
1888 skb->data + hdr_len,
1889 tb2_len, DMA_TO_DEVICE);
1890 if (unlikely(dma_mapping_error(trans->dev, tb2_phys))) {
1891 iwl_pcie_tfd_unmap(trans, out_meta,
1892 &txq->tfds[q->write_ptr]);
1893 return -EINVAL;
1894 }
1895 iwl_pcie_txq_build_tfd(trans, txq, tb2_phys, tb2_len, false);
1896 }
1897
1898 /* set up the remaining entries to point to the data */
1899 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1900 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1901 dma_addr_t tb_phys;
1902 int tb_idx;
1903
1904 if (!skb_frag_size(frag))
1905 continue;
1906
1907 tb_phys = skb_frag_dma_map(trans->dev, frag, 0,
1908 skb_frag_size(frag), DMA_TO_DEVICE);
1909
1910 if (unlikely(dma_mapping_error(trans->dev, tb_phys))) {
1911 iwl_pcie_tfd_unmap(trans, out_meta,
1912 &txq->tfds[q->write_ptr]);
1913 return -EINVAL;
1914 }
1915 tb_idx = iwl_pcie_txq_build_tfd(trans, txq, tb_phys,
1916 skb_frag_size(frag), false);
1917
1918 out_meta->flags |= BIT(tb_idx + CMD_TB_BITMAP_POS);
1919 }
1920
1921 trace_iwlwifi_dev_tx(trans->dev, skb,
1922 &txq->tfds[txq->q.write_ptr],
1923 sizeof(struct iwl_tfd),
1924 &dev_cmd->hdr, IWL_HCMD_SCRATCHBUF_SIZE + tb1_len,
1925 skb->data + hdr_len, tb2_len);
1926 trace_iwlwifi_dev_tx_data(trans->dev, skb,
1927 hdr_len, skb->len - hdr_len);
1928 return 0;
1929}
1930
6eb5e529
EG
1931#ifdef CONFIG_INET
1932static struct iwl_tso_hdr_page *
1933get_page_hdr(struct iwl_trans *trans, size_t len)
1934{
1935 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1936 struct iwl_tso_hdr_page *p = this_cpu_ptr(trans_pcie->tso_hdr_page);
1937
1938 if (!p->page)
1939 goto alloc;
1940
1941 /* enough room on this page */
1942 if (p->pos + len < (u8 *)page_address(p->page) + PAGE_SIZE)
1943 return p;
1944
1945 /* We don't have enough room on this page, get a new one. */
1946 __free_page(p->page);
1947
1948alloc:
1949 p->page = alloc_page(GFP_ATOMIC);
1950 if (!p->page)
1951 return NULL;
1952 p->pos = page_address(p->page);
1953 return p;
1954}
1955
1956static void iwl_compute_pseudo_hdr_csum(void *iph, struct tcphdr *tcph,
1957 bool ipv6, unsigned int len)
1958{
1959 if (ipv6) {
1960 struct ipv6hdr *iphv6 = iph;
1961
1962 tcph->check = ~csum_ipv6_magic(&iphv6->saddr, &iphv6->daddr,
1963 len + tcph->doff * 4,
1964 IPPROTO_TCP, 0);
1965 } else {
1966 struct iphdr *iphv4 = iph;
1967
1968 ip_send_check(iphv4);
1969 tcph->check = ~csum_tcpudp_magic(iphv4->saddr, iphv4->daddr,
1970 len + tcph->doff * 4,
1971 IPPROTO_TCP, 0);
1972 }
1973}
1974
1975static int iwl_fill_data_tbs_amsdu(struct iwl_trans *trans, struct sk_buff *skb,
1976 struct iwl_txq *txq, u8 hdr_len,
1977 struct iwl_cmd_meta *out_meta,
1978 struct iwl_device_cmd *dev_cmd, u16 tb1_len)
1979{
1980 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1981 struct iwl_trans_pcie *trans_pcie = txq->trans_pcie;
1982 struct ieee80211_hdr *hdr = (void *)skb->data;
1983 unsigned int snap_ip_tcp_hdrlen, ip_hdrlen, total_len, hdr_room;
1984 unsigned int mss = skb_shinfo(skb)->gso_size;
1985 struct iwl_queue *q = &txq->q;
1986 u16 length, iv_len, amsdu_pad;
1987 u8 *start_hdr;
1988 struct iwl_tso_hdr_page *hdr_page;
1989 int ret;
1990 struct tso_t tso;
1991
1992 /* if the packet is protected, then it must be CCMP or GCMP */
1993 BUILD_BUG_ON(IEEE80211_CCMP_HDR_LEN != IEEE80211_GCMP_HDR_LEN);
1994 iv_len = ieee80211_has_protected(hdr->frame_control) ?
1995 IEEE80211_CCMP_HDR_LEN : 0;
1996
1997 trace_iwlwifi_dev_tx(trans->dev, skb,
1998 &txq->tfds[txq->q.write_ptr],
1999 sizeof(struct iwl_tfd),
2000 &dev_cmd->hdr, IWL_HCMD_SCRATCHBUF_SIZE + tb1_len,
2001 NULL, 0);
2002
2003 ip_hdrlen = skb_transport_header(skb) - skb_network_header(skb);
2004 snap_ip_tcp_hdrlen = 8 + ip_hdrlen + tcp_hdrlen(skb);
2005 total_len = skb->len - snap_ip_tcp_hdrlen - hdr_len - iv_len;
2006 amsdu_pad = 0;
2007
2008 /* total amount of header we may need for this A-MSDU */
2009 hdr_room = DIV_ROUND_UP(total_len, mss) *
2010 (3 + snap_ip_tcp_hdrlen + sizeof(struct ethhdr)) + iv_len;
2011
2012 /* Our device supports 9 segments at most, it will fit in 1 page */
2013 hdr_page = get_page_hdr(trans, hdr_room);
2014 if (!hdr_page)
2015 return -ENOMEM;
2016
2017 get_page(hdr_page->page);
2018 start_hdr = hdr_page->pos;
2019 info->driver_data[IWL_TRANS_FIRST_DRIVER_DATA] = hdr_page->page;
2020 memcpy(hdr_page->pos, skb->data + hdr_len, iv_len);
2021 hdr_page->pos += iv_len;
2022
2023 /*
2024 * Pull the ieee80211 header + IV to be able to use TSO core,
2025 * we will restore it for the tx_status flow.
2026 */
2027 skb_pull(skb, hdr_len + iv_len);
2028
2029 tso_start(skb, &tso);
2030
2031 while (total_len) {
2032 /* this is the data left for this subframe */
2033 unsigned int data_left =
2034 min_t(unsigned int, mss, total_len);
2035 struct sk_buff *csum_skb = NULL;
2036 unsigned int hdr_tb_len;
2037 dma_addr_t hdr_tb_phys;
2038 struct tcphdr *tcph;
2039 u8 *iph;
2040
2041 total_len -= data_left;
2042
2043 memset(hdr_page->pos, 0, amsdu_pad);
2044 hdr_page->pos += amsdu_pad;
2045 amsdu_pad = (4 - (sizeof(struct ethhdr) + snap_ip_tcp_hdrlen +
2046 data_left)) & 0x3;
2047 ether_addr_copy(hdr_page->pos, ieee80211_get_DA(hdr));
2048 hdr_page->pos += ETH_ALEN;
2049 ether_addr_copy(hdr_page->pos, ieee80211_get_SA(hdr));
2050 hdr_page->pos += ETH_ALEN;
2051
2052 length = snap_ip_tcp_hdrlen + data_left;
2053 *((__be16 *)hdr_page->pos) = cpu_to_be16(length);
2054 hdr_page->pos += sizeof(length);
2055
2056 /*
2057 * This will copy the SNAP as well which will be considered
2058 * as MAC header.
2059 */
2060 tso_build_hdr(skb, hdr_page->pos, &tso, data_left, !total_len);
2061 iph = hdr_page->pos + 8;
2062 tcph = (void *)(iph + ip_hdrlen);
2063
2064 /* For testing on current hardware only */
2065 if (trans_pcie->sw_csum_tx) {
2066 csum_skb = alloc_skb(data_left + tcp_hdrlen(skb),
2067 GFP_ATOMIC);
2068 if (!csum_skb) {
2069 ret = -ENOMEM;
2070 goto out_unmap;
2071 }
2072
2073 iwl_compute_pseudo_hdr_csum(iph, tcph,
2074 skb->protocol ==
2075 htons(ETH_P_IPV6),
2076 data_left);
2077
2078 memcpy(skb_put(csum_skb, tcp_hdrlen(skb)),
2079 tcph, tcp_hdrlen(skb));
2080 skb_set_transport_header(csum_skb, 0);
2081 csum_skb->csum_start =
2082 (unsigned char *)tcp_hdr(csum_skb) -
2083 csum_skb->head;
2084 }
2085
2086 hdr_page->pos += snap_ip_tcp_hdrlen;
2087
2088 hdr_tb_len = hdr_page->pos - start_hdr;
2089 hdr_tb_phys = dma_map_single(trans->dev, start_hdr,
2090 hdr_tb_len, DMA_TO_DEVICE);
2091 if (unlikely(dma_mapping_error(trans->dev, hdr_tb_phys))) {
2092 dev_kfree_skb(csum_skb);
2093 ret = -EINVAL;
2094 goto out_unmap;
2095 }
2096 iwl_pcie_txq_build_tfd(trans, txq, hdr_tb_phys,
2097 hdr_tb_len, false);
2098 trace_iwlwifi_dev_tx_tso_chunk(trans->dev, start_hdr,
2099 hdr_tb_len);
2100
2101 /* prepare the start_hdr for the next subframe */
2102 start_hdr = hdr_page->pos;
2103
2104 /* put the payload */
2105 while (data_left) {
2106 unsigned int size = min_t(unsigned int, tso.size,
2107 data_left);
2108 dma_addr_t tb_phys;
2109
2110 if (trans_pcie->sw_csum_tx)
2111 memcpy(skb_put(csum_skb, size), tso.data, size);
2112
2113 tb_phys = dma_map_single(trans->dev, tso.data,
2114 size, DMA_TO_DEVICE);
2115 if (unlikely(dma_mapping_error(trans->dev, tb_phys))) {
2116 dev_kfree_skb(csum_skb);
2117 ret = -EINVAL;
2118 goto out_unmap;
2119 }
2120
2121 iwl_pcie_txq_build_tfd(trans, txq, tb_phys,
2122 size, false);
2123 trace_iwlwifi_dev_tx_tso_chunk(trans->dev, tso.data,
2124 size);
2125
2126 data_left -= size;
2127 tso_build_data(skb, &tso, size);
2128 }
2129
2130 /* For testing on early hardware only */
2131 if (trans_pcie->sw_csum_tx) {
2132 __wsum csum;
2133
2134 csum = skb_checksum(csum_skb,
2135 skb_checksum_start_offset(csum_skb),
2136 csum_skb->len -
2137 skb_checksum_start_offset(csum_skb),
2138 0);
2139 dev_kfree_skb(csum_skb);
2140 dma_sync_single_for_cpu(trans->dev, hdr_tb_phys,
2141 hdr_tb_len, DMA_TO_DEVICE);
2142 tcph->check = csum_fold(csum);
2143 dma_sync_single_for_device(trans->dev, hdr_tb_phys,
2144 hdr_tb_len, DMA_TO_DEVICE);
2145 }
2146 }
2147
2148 /* re -add the WiFi header and IV */
2149 skb_push(skb, hdr_len + iv_len);
2150
2151 return 0;
2152
2153out_unmap:
2154 iwl_pcie_tfd_unmap(trans, out_meta, &txq->tfds[q->write_ptr]);
2155 return ret;
2156}
2157#else /* CONFIG_INET */
2158static int iwl_fill_data_tbs_amsdu(struct iwl_trans *trans, struct sk_buff *skb,
2159 struct iwl_txq *txq, u8 hdr_len,
2160 struct iwl_cmd_meta *out_meta,
2161 struct iwl_device_cmd *dev_cmd, u16 tb1_len)
2162{
2163 /* No A-MSDU without CONFIG_INET */
2164 WARN_ON(1);
2165
2166 return -1;
2167}
2168#endif /* CONFIG_INET */
2169
f02831be
EG
2170int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
2171 struct iwl_device_cmd *dev_cmd, int txq_id)
a0eaad71 2172{
8ad71bef 2173 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
206eea78 2174 struct ieee80211_hdr *hdr;
f02831be
EG
2175 struct iwl_tx_cmd *tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
2176 struct iwl_cmd_meta *out_meta;
2177 struct iwl_txq *txq;
2178 struct iwl_queue *q;
38c0f334
JB
2179 dma_addr_t tb0_phys, tb1_phys, scratch_phys;
2180 void *tb1_addr;
3a0b2a42 2181 u16 len, tb1_len;
ea68f460 2182 bool wait_write_ptr;
206eea78
JB
2183 __le16 fc;
2184 u8 hdr_len;
68972c46 2185 u16 wifi_seq;
f02831be
EG
2186
2187 txq = &trans_pcie->txq[txq_id];
2188 q = &txq->q;
a0eaad71 2189
961de6a5
JB
2190 if (WARN_ONCE(!test_bit(txq_id, trans_pcie->queue_used),
2191 "TX on unused queue %d\n", txq_id))
f02831be 2192 return -EINVAL;
39644e9a 2193
41837ca9
EG
2194 if (unlikely(trans_pcie->sw_csum_tx &&
2195 skb->ip_summed == CHECKSUM_PARTIAL)) {
2196 int offs = skb_checksum_start_offset(skb);
2197 int csum_offs = offs + skb->csum_offset;
2198 __wsum csum;
2199
2200 if (skb_ensure_writable(skb, csum_offs + sizeof(__sum16)))
2201 return -1;
2202
2203 csum = skb_checksum(skb, offs, skb->len - offs, 0);
2204 *(__sum16 *)(skb->data + csum_offs) = csum_fold(csum);
3955525d
EG
2205
2206 skb->ip_summed = CHECKSUM_UNNECESSARY;
41837ca9
EG
2207 }
2208
206eea78
JB
2209 if (skb_is_nonlinear(skb) &&
2210 skb_shinfo(skb)->nr_frags > IWL_PCIE_MAX_FRAGS &&
2211 __skb_linearize(skb))
2212 return -ENOMEM;
2213
2214 /* mac80211 always puts the full header into the SKB's head,
2215 * so there's no need to check if it's readable there
2216 */
2217 hdr = (struct ieee80211_hdr *)skb->data;
2218 fc = hdr->frame_control;
2219 hdr_len = ieee80211_hdrlen(fc);
2220
f02831be 2221 spin_lock(&txq->lock);
015c15e1 2222
3955525d
EG
2223 if (iwl_queue_space(q) < q->high_mark) {
2224 iwl_stop_queue(trans, txq);
2225
2226 /* don't put the packet on the ring, if there is no room */
2227 if (unlikely(iwl_queue_space(q) < 3)) {
2228 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2229
2230 info->driver_data[IWL_TRANS_FIRST_DRIVER_DATA + 1] =
2231 dev_cmd;
2232 __skb_queue_tail(&txq->overflow_q, skb);
2233
2234 spin_unlock(&txq->lock);
2235 return 0;
2236 }
2237 }
2238
f02831be
EG
2239 /* In AGG mode, the index in the ring must correspond to the WiFi
2240 * sequence number. This is a HW requirements to help the SCD to parse
2241 * the BA.
2242 * Check here that the packets are in the right place on the ring.
2243 */
9a886586 2244 wifi_seq = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
1092b9bc 2245 WARN_ONCE(txq->ampdu &&
68972c46 2246 (wifi_seq & 0xff) != q->write_ptr,
f02831be
EG
2247 "Q: %d WiFi Seq %d tfdNum %d",
2248 txq_id, wifi_seq, q->write_ptr);
f02831be
EG
2249
2250 /* Set up driver data for this TFD */
2251 txq->entries[q->write_ptr].skb = skb;
2252 txq->entries[q->write_ptr].cmd = dev_cmd;
2253
f02831be
EG
2254 dev_cmd->hdr.sequence =
2255 cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
2256 INDEX_TO_SEQ(q->write_ptr)));
2257
38c0f334
JB
2258 tb0_phys = iwl_pcie_get_scratchbuf_dma(txq, q->write_ptr);
2259 scratch_phys = tb0_phys + sizeof(struct iwl_cmd_header) +
2260 offsetof(struct iwl_tx_cmd, scratch);
2261
2262 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
2263 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
2264
f02831be
EG
2265 /* Set up first empty entry in queue's array of Tx/cmd buffers */
2266 out_meta = &txq->entries[q->write_ptr].meta;
206eea78 2267 out_meta->flags = 0;
a0eaad71 2268
f02831be 2269 /*
38c0f334
JB
2270 * The second TB (tb1) points to the remainder of the TX command
2271 * and the 802.11 header - dword aligned size
2272 * (This calculation modifies the TX command, so do it before the
2273 * setup of the first TB)
f02831be 2274 */
38c0f334
JB
2275 len = sizeof(struct iwl_tx_cmd) + sizeof(struct iwl_cmd_header) +
2276 hdr_len - IWL_HCMD_SCRATCHBUF_SIZE;
1092b9bc 2277 tb1_len = ALIGN(len, 4);
f02831be
EG
2278
2279 /* Tell NIC about any 2-byte padding after MAC header */
38c0f334 2280 if (tb1_len != len)
f02831be
EG
2281 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
2282
38c0f334
JB
2283 /* The first TB points to the scratchbuf data - min_copy bytes */
2284 memcpy(&txq->scratchbufs[q->write_ptr], &dev_cmd->hdr,
2285 IWL_HCMD_SCRATCHBUF_SIZE);
2286 iwl_pcie_txq_build_tfd(trans, txq, tb0_phys,
6d6e68f8 2287 IWL_HCMD_SCRATCHBUF_SIZE, true);
f02831be 2288
38c0f334
JB
2289 /* there must be data left over for TB1 or this code must be changed */
2290 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd) < IWL_HCMD_SCRATCHBUF_SIZE);
2291
2292 /* map the data for TB1 */
2293 tb1_addr = ((u8 *)&dev_cmd->hdr) + IWL_HCMD_SCRATCHBUF_SIZE;
2294 tb1_phys = dma_map_single(trans->dev, tb1_addr, tb1_len, DMA_TO_DEVICE);
2295 if (unlikely(dma_mapping_error(trans->dev, tb1_phys)))
2296 goto out_err;
6d6e68f8 2297 iwl_pcie_txq_build_tfd(trans, txq, tb1_phys, tb1_len, false);
a0eaad71 2298
6eb5e529
EG
2299 if (ieee80211_is_data_qos(fc) &&
2300 (*ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_A_MSDU_PRESENT)) {
2301 if (unlikely(iwl_fill_data_tbs_amsdu(trans, skb, txq, hdr_len,
2302 out_meta, dev_cmd,
2303 tb1_len)))
2304 goto out_err;
2305 } else if (unlikely(iwl_fill_data_tbs(trans, skb, txq, hdr_len,
2306 out_meta, dev_cmd, tb1_len))) {
3a0b2a42 2307 goto out_err;
6eb5e529 2308 }
206eea78 2309
f02831be
EG
2310 /* Set up entry for this TFD in Tx byte-count array */
2311 iwl_pcie_txq_update_byte_cnt_tbl(trans, txq, le16_to_cpu(tx_cmd->len));
a0eaad71 2312
ea68f460 2313 wait_write_ptr = ieee80211_has_morefrags(fc);
7c5ba4a8 2314
f02831be 2315 /* start timer if queue currently empty */
7616f334 2316 if (q->read_ptr == q->write_ptr) {
aecdc63d
EG
2317 if (txq->wd_timeout) {
2318 /*
2319 * If the TXQ is active, then set the timer, if not,
2320 * set the timer in remainder so that the timer will
2321 * be armed with the right value when the station will
2322 * wake up.
2323 */
2324 if (!txq->frozen)
2325 mod_timer(&txq->stuck_timer,
2326 jiffies + txq->wd_timeout);
2327 else
2328 txq->frozen_expiry_remainder = txq->wd_timeout;
2329 }
7616f334
EP
2330 IWL_DEBUG_RPM(trans, "Q: %d first tx - take ref\n", q->id);
2331 iwl_trans_pcie_ref(trans);
2332 }
f02831be
EG
2333
2334 /* Tell device the write index *just past* this latest filled TFD */
83f32a4b 2335 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr);
ea68f460
JB
2336 if (!wait_write_ptr)
2337 iwl_pcie_txq_inc_wr_ptr(trans, txq);
f02831be
EG
2338
2339 /*
2340 * At this point the frame is "transmitted" successfully
43aa616f 2341 * and we will get a TX status notification eventually.
f02831be 2342 */
f02831be
EG
2343 spin_unlock(&txq->lock);
2344 return 0;
2345out_err:
2346 spin_unlock(&txq->lock);
2347 return -1;
a0eaad71 2348}
This page took 1.220912 seconds and 5 git commands to generate.