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