]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/wireless/iwlwifi/pcie/tx.c
iwlwifi: mvm: remove rate_scale_data debugfs entry
[mirror_ubuntu-artful-kernel.git] / drivers / net / wireless / iwlwifi / pcie / tx.c
CommitLineData
1053d35f
RR
1/******************************************************************************
2 *
128e63ef 3 * Copyright(c) 2003 - 2013 Intel Corporation. All rights reserved.
1053d35f
RR
4 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
759ef89f 25 * Intel Linux Wireless <ilw@linux.intel.com>
1053d35f
RR
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
fd4abac5 29#include <linux/etherdevice.h>
5a0e3ad6 30#include <linux/slab.h>
253a634c 31#include <linux/sched.h>
253a634c 32
522376d2
EG
33#include "iwl-debug.h"
34#include "iwl-csr.h"
35#include "iwl-prph.h"
1053d35f 36#include "iwl-io.h"
ed277c93 37#include "iwl-op-mode.h"
6468a01a 38#include "internal.h"
6238b008 39/* FIXME: need to abstract out TX command (once we know what it looks like) */
1023fdc4 40#include "dvm/commands.h"
1053d35f 41
522376d2
EG
42#define IWL_TX_CRC_SIZE 4
43#define IWL_TX_DELIMITER_SIZE 4
44
f02831be
EG
45/*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
46 * DMA services
47 *
48 * Theory of operation
49 *
50 * A Tx or Rx queue resides in host DRAM, and is comprised of a circular buffer
51 * of buffer descriptors, each of which points to one or more data buffers for
52 * the device to read from or fill. Driver and device exchange status of each
53 * queue via "read" and "write" pointers. Driver keeps minimum of 2 empty
54 * entries in each circular buffer, to protect against confusing empty and full
55 * queue states.
56 *
57 * The device reads or writes the data in the queues via the device's several
58 * DMA/FIFO channels. Each queue is mapped to a single DMA channel.
59 *
60 * For Tx queue, there are low mark and high mark limits. If, after queuing
61 * the packet for Tx, free space become < low mark, Tx queue stopped. When
62 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
63 * Tx queue resumed.
64 *
65 ***************************************************/
66static int iwl_queue_space(const struct iwl_queue *q)
67{
a9b29246
IY
68 unsigned int max;
69 unsigned int used;
f02831be 70
a9b29246
IY
71 /*
72 * To avoid ambiguity between empty and completely full queues, there
73 * should always be less than q->n_bd elements in the queue.
74 * If q->n_window is smaller than q->n_bd, there is no need to reserve
75 * any queue entries for this purpose.
76 */
77 if (q->n_window < q->n_bd)
78 max = q->n_window;
79 else
80 max = q->n_bd - 1;
f02831be 81
a9b29246
IY
82 /*
83 * q->n_bd is a power of 2, so the following is equivalent to modulo by
84 * q->n_bd and is well defined for negative dividends.
85 */
86 used = (q->write_ptr - q->read_ptr) & (q->n_bd - 1);
87
88 if (WARN_ON(used > max))
89 return 0;
90
91 return max - used;
f02831be
EG
92}
93
94/*
95 * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
96 */
97static int iwl_queue_init(struct iwl_queue *q, int count, int slots_num, u32 id)
98{
99 q->n_bd = count;
100 q->n_window = slots_num;
101 q->id = id;
102
103 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
104 * and iwl_queue_dec_wrap are broken. */
105 if (WARN_ON(!is_power_of_2(count)))
106 return -EINVAL;
107
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;
154 struct iwl_queue *q = &txq->q;
155 struct iwl_trans_pcie *trans_pcie = txq->trans_pcie;
156 struct iwl_trans *trans = iwl_trans_pcie_get_trans(trans_pcie);
157 u32 scd_sram_addr = trans_pcie->scd_base_addr +
158 SCD_TX_STTS_QUEUE_OFFSET(txq->q.id);
159 u8 buf[16];
160 int i;
161
162 spin_lock(&txq->lock);
163 /* check if triggered erroneously */
164 if (txq->q.read_ptr == txq->q.write_ptr) {
165 spin_unlock(&txq->lock);
166 return;
167 }
168 spin_unlock(&txq->lock);
169
170 IWL_ERR(trans, "Queue %d stuck for %u ms.\n", txq->q.id,
171 jiffies_to_msecs(trans_pcie->wd_timeout));
172 IWL_ERR(trans, "Current SW read_ptr %d write_ptr %d\n",
173 txq->q.read_ptr, txq->q.write_ptr);
174
4fd442db 175 iwl_trans_read_mem_bytes(trans, scd_sram_addr, buf, sizeof(buf));
f02831be
EG
176
177 iwl_print_hex_error(trans, buf, sizeof(buf));
178
179 for (i = 0; i < FH_TCSR_CHNL_NUM; i++)
180 IWL_ERR(trans, "FH TRBs(%d) = 0x%08x\n", i,
181 iwl_read_direct32(trans, FH_TX_TRB_REG(i)));
182
183 for (i = 0; i < trans->cfg->base_params->num_of_queues; i++) {
184 u32 status = iwl_read_prph(trans, SCD_QUEUE_STATUS_BITS(i));
185 u8 fifo = (status >> SCD_QUEUE_STTS_REG_POS_TXF) & 0x7;
186 bool active = !!(status & BIT(SCD_QUEUE_STTS_REG_POS_ACTIVE));
187 u32 tbl_dw =
4fd442db
EG
188 iwl_trans_read_mem32(trans,
189 trans_pcie->scd_base_addr +
190 SCD_TRANS_TBL_OFFSET_QUEUE(i));
f02831be
EG
191
192 if (i & 0x1)
193 tbl_dw = (tbl_dw & 0xFFFF0000) >> 16;
194 else
195 tbl_dw = tbl_dw & 0x0000FFFF;
196
197 IWL_ERR(trans,
198 "Q %d is %sactive and mapped to fifo %d ra_tid 0x%04x [%d,%d]\n",
199 i, active ? "" : "in", fifo, tbl_dw,
200 iwl_read_prph(trans,
201 SCD_QUEUE_RDPTR(i)) & (txq->q.n_bd - 1),
202 iwl_read_prph(trans, SCD_QUEUE_WRPTR(i)));
203 }
204
205 for (i = q->read_ptr; i != q->write_ptr;
38c0f334 206 i = iwl_queue_inc_wrap(i, q->n_bd))
f02831be 207 IWL_ERR(trans, "scratch %d = 0x%08x\n", i,
38c0f334 208 le32_to_cpu(txq->scratchbufs[i].scratch));
f02831be
EG
209
210 iwl_op_mode_nic_error(trans->op_mode);
211}
212
990aa6d7
EG
213/*
214 * iwl_pcie_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
48d42c42 215 */
f02831be
EG
216static void iwl_pcie_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
217 struct iwl_txq *txq, u16 byte_cnt)
48d42c42 218{
105183b1 219 struct iwlagn_scd_bc_tbl *scd_bc_tbl;
20d3b647 220 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
48d42c42
EG
221 int write_ptr = txq->q.write_ptr;
222 int txq_id = txq->q.id;
223 u8 sec_ctl = 0;
224 u8 sta_id = 0;
225 u16 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
226 __le16 bc_ent;
132f98c2 227 struct iwl_tx_cmd *tx_cmd =
bf8440e6 228 (void *) txq->entries[txq->q.write_ptr].cmd->payload;
48d42c42 229
105183b1
EG
230 scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
231
48d42c42
EG
232 WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX);
233
132f98c2
EG
234 sta_id = tx_cmd->sta_id;
235 sec_ctl = tx_cmd->sec_ctl;
48d42c42
EG
236
237 switch (sec_ctl & TX_CMD_SEC_MSK) {
238 case TX_CMD_SEC_CCM:
4325f6ca 239 len += IEEE80211_CCMP_MIC_LEN;
48d42c42
EG
240 break;
241 case TX_CMD_SEC_TKIP:
4325f6ca 242 len += IEEE80211_TKIP_ICV_LEN;
48d42c42
EG
243 break;
244 case TX_CMD_SEC_WEP:
4325f6ca 245 len += IEEE80211_WEP_IV_LEN + IEEE80211_WEP_ICV_LEN;
48d42c42
EG
246 break;
247 }
248
046db346
EG
249 if (trans_pcie->bc_table_dword)
250 len = DIV_ROUND_UP(len, 4);
251
252 bc_ent = cpu_to_le16(len | (sta_id << 12));
48d42c42
EG
253
254 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
255
256 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
257 scd_bc_tbl[txq_id].
258 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
259}
260
f02831be
EG
261static void iwl_pcie_txq_inval_byte_cnt_tbl(struct iwl_trans *trans,
262 struct iwl_txq *txq)
263{
264 struct iwl_trans_pcie *trans_pcie =
265 IWL_TRANS_GET_PCIE_TRANS(trans);
266 struct iwlagn_scd_bc_tbl *scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
267 int txq_id = txq->q.id;
268 int read_ptr = txq->q.read_ptr;
269 u8 sta_id = 0;
270 __le16 bc_ent;
271 struct iwl_tx_cmd *tx_cmd =
272 (void *)txq->entries[txq->q.read_ptr].cmd->payload;
273
274 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
275
276 if (txq_id != trans_pcie->cmd_queue)
277 sta_id = tx_cmd->sta_id;
278
279 bc_ent = cpu_to_le16(1 | (sta_id << 12));
280 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
281
282 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
283 scd_bc_tbl[txq_id].
284 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
285}
286
990aa6d7
EG
287/*
288 * iwl_pcie_txq_inc_wr_ptr - Send new write index to hardware
fd4abac5 289 */
990aa6d7 290void iwl_pcie_txq_inc_wr_ptr(struct iwl_trans *trans, struct iwl_txq *txq)
fd4abac5
TW
291{
292 u32 reg = 0;
fd4abac5
TW
293 int txq_id = txq->q.id;
294
295 if (txq->need_update == 0)
7bfedc59 296 return;
fd4abac5 297
035f7ff2 298 if (trans->cfg->base_params->shadow_reg_enable) {
f81c1f48 299 /* shadow register enabled */
1042db2a 300 iwl_write32(trans, HBUS_TARG_WRPTR,
f81c1f48
WYG
301 txq->q.write_ptr | (txq_id << 8));
302 } else {
47107e84
DF
303 struct iwl_trans_pcie *trans_pcie =
304 IWL_TRANS_GET_PCIE_TRANS(trans);
f81c1f48 305 /* if we're trying to save power */
01d651d4 306 if (test_bit(STATUS_TPOWER_PMI, &trans_pcie->status)) {
f81c1f48
WYG
307 /* wake up nic if it's powered down ...
308 * uCode will wake up, and interrupt us again, so next
309 * time we'll skip this part. */
1042db2a 310 reg = iwl_read32(trans, CSR_UCODE_DRV_GP1);
fd4abac5 311
f81c1f48 312 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
fd656935 313 IWL_DEBUG_INFO(trans,
f81c1f48
WYG
314 "Tx queue %d requesting wakeup,"
315 " GP1 = 0x%x\n", txq_id, reg);
1042db2a 316 iwl_set_bit(trans, CSR_GP_CNTRL,
f81c1f48
WYG
317 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
318 return;
319 }
fd4abac5 320
1c3fea82
EG
321 IWL_DEBUG_TX(trans, "Q:%d WR: 0x%x\n", txq_id,
322 txq->q.write_ptr);
323
1042db2a 324 iwl_write_direct32(trans, HBUS_TARG_WRPTR,
fd4abac5 325 txq->q.write_ptr | (txq_id << 8));
fd4abac5 326
f81c1f48
WYG
327 /*
328 * else not in power-save mode,
329 * uCode will never sleep when we're
330 * trying to tx (during RFKILL, we're not trying to tx).
331 */
332 } else
1042db2a 333 iwl_write32(trans, HBUS_TARG_WRPTR,
f81c1f48
WYG
334 txq->q.write_ptr | (txq_id << 8));
335 }
fd4abac5 336 txq->need_update = 0;
fd4abac5 337}
fd4abac5 338
f02831be 339static inline dma_addr_t iwl_pcie_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
214d14d4
JB
340{
341 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
342
343 dma_addr_t addr = get_unaligned_le32(&tb->lo);
344 if (sizeof(dma_addr_t) > sizeof(u32))
345 addr |=
346 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
347
348 return addr;
349}
350
f02831be 351static inline u16 iwl_pcie_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
214d14d4
JB
352{
353 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
354
355 return le16_to_cpu(tb->hi_n_len) >> 4;
356}
357
f02831be
EG
358static inline void iwl_pcie_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
359 dma_addr_t addr, u16 len)
214d14d4
JB
360{
361 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
362 u16 hi_n_len = len << 4;
363
364 put_unaligned_le32(addr, &tb->lo);
365 if (sizeof(dma_addr_t) > sizeof(u32))
366 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
367
368 tb->hi_n_len = cpu_to_le16(hi_n_len);
369
370 tfd->num_tbs = idx + 1;
371}
372
f02831be 373static inline u8 iwl_pcie_tfd_get_num_tbs(struct iwl_tfd *tfd)
214d14d4
JB
374{
375 return tfd->num_tbs & 0x1f;
376}
377
f02831be 378static void iwl_pcie_tfd_unmap(struct iwl_trans *trans,
98891754
JB
379 struct iwl_cmd_meta *meta,
380 struct iwl_tfd *tfd)
214d14d4 381{
214d14d4
JB
382 int i;
383 int num_tbs;
384
214d14d4 385 /* Sanity check on number of chunks */
f02831be 386 num_tbs = iwl_pcie_tfd_get_num_tbs(tfd);
214d14d4
JB
387
388 if (num_tbs >= IWL_NUM_OF_TBS) {
6d8f6eeb 389 IWL_ERR(trans, "Too many chunks: %i\n", num_tbs);
214d14d4
JB
390 /* @todo issue fatal error, it is quite serious situation */
391 return;
392 }
393
38c0f334 394 /* first TB is never freed - it's the scratchbuf data */
214d14d4 395
214d14d4 396 for (i = 1; i < num_tbs; i++)
f02831be 397 dma_unmap_single(trans->dev, iwl_pcie_tfd_tb_get_addr(tfd, i),
98891754
JB
398 iwl_pcie_tfd_tb_get_len(tfd, i),
399 DMA_TO_DEVICE);
ebed633c
EG
400
401 tfd->num_tbs = 0;
4ce7cc2b
JB
402}
403
990aa6d7
EG
404/*
405 * iwl_pcie_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
6d8f6eeb 406 * @trans - transport private data
4ce7cc2b 407 * @txq - tx queue
ebed633c 408 * @dma_dir - the direction of the DMA mapping
4ce7cc2b
JB
409 *
410 * Does NOT advance any TFD circular buffer read/write indexes
411 * Does NOT free the TFD itself (which is within circular buffer)
412 */
98891754 413static void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq)
4ce7cc2b
JB
414{
415 struct iwl_tfd *tfd_tmp = txq->tfds;
4ce7cc2b 416
ebed633c
EG
417 /* rd_ptr is bounded by n_bd and idx is bounded by n_window */
418 int rd_ptr = txq->q.read_ptr;
419 int idx = get_cmd_index(&txq->q, rd_ptr);
420
015c15e1
JB
421 lockdep_assert_held(&txq->lock);
422
ebed633c 423 /* We have only q->n_window txq->entries, but we use q->n_bd tfds */
98891754 424 iwl_pcie_tfd_unmap(trans, &txq->entries[idx].meta, &tfd_tmp[rd_ptr]);
214d14d4
JB
425
426 /* free SKB */
bf8440e6 427 if (txq->entries) {
214d14d4
JB
428 struct sk_buff *skb;
429
ebed633c 430 skb = txq->entries[idx].skb;
214d14d4 431
909e9b23
EG
432 /* Can be called from irqs-disabled context
433 * If skb is not NULL, it means that the whole queue is being
434 * freed and that the queue is not empty - free the skb
435 */
214d14d4 436 if (skb) {
ed277c93 437 iwl_op_mode_free_skb(trans->op_mode, skb);
ebed633c 438 txq->entries[idx].skb = NULL;
214d14d4
JB
439 }
440 }
441}
442
f02831be
EG
443static int iwl_pcie_txq_build_tfd(struct iwl_trans *trans, struct iwl_txq *txq,
444 dma_addr_t addr, u16 len, u8 reset)
214d14d4
JB
445{
446 struct iwl_queue *q;
447 struct iwl_tfd *tfd, *tfd_tmp;
448 u32 num_tbs;
449
450 q = &txq->q;
4ce7cc2b 451 tfd_tmp = txq->tfds;
214d14d4
JB
452 tfd = &tfd_tmp[q->write_ptr];
453
f02831be
EG
454 if (reset)
455 memset(tfd, 0, sizeof(*tfd));
456
457 num_tbs = iwl_pcie_tfd_get_num_tbs(tfd);
458
459 /* Each TFD can point to a maximum 20 Tx buffers */
460 if (num_tbs >= IWL_NUM_OF_TBS) {
461 IWL_ERR(trans, "Error can not send more than %d chunks\n",
462 IWL_NUM_OF_TBS);
463 return -EINVAL;
464 }
465
1092b9bc
EP
466 if (WARN(addr & ~IWL_TX_DMA_MASK,
467 "Unaligned address = %llx\n", (unsigned long long)addr))
f02831be
EG
468 return -EINVAL;
469
f02831be
EG
470 iwl_pcie_tfd_set_tb(tfd, num_tbs, addr, len);
471
472 return 0;
473}
474
475static int iwl_pcie_txq_alloc(struct iwl_trans *trans,
476 struct iwl_txq *txq, int slots_num,
477 u32 txq_id)
478{
479 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
480 size_t tfd_sz = sizeof(struct iwl_tfd) * TFD_QUEUE_SIZE_MAX;
38c0f334 481 size_t scratchbuf_sz;
f02831be
EG
482 int i;
483
484 if (WARN_ON(txq->entries || txq->tfds))
485 return -EINVAL;
486
487 setup_timer(&txq->stuck_timer, iwl_pcie_txq_stuck_timer,
488 (unsigned long)txq);
489 txq->trans_pcie = trans_pcie;
490
491 txq->q.n_window = slots_num;
492
493 txq->entries = kcalloc(slots_num,
494 sizeof(struct iwl_pcie_txq_entry),
495 GFP_KERNEL);
496
497 if (!txq->entries)
498 goto error;
499
500 if (txq_id == trans_pcie->cmd_queue)
501 for (i = 0; i < slots_num; i++) {
502 txq->entries[i].cmd =
503 kmalloc(sizeof(struct iwl_device_cmd),
504 GFP_KERNEL);
505 if (!txq->entries[i].cmd)
506 goto error;
507 }
508
509 /* Circular buffer of transmit frame descriptors (TFDs),
510 * shared with device */
511 txq->tfds = dma_alloc_coherent(trans->dev, tfd_sz,
512 &txq->q.dma_addr, GFP_KERNEL);
d0320f75 513 if (!txq->tfds)
f02831be 514 goto error;
38c0f334
JB
515
516 BUILD_BUG_ON(IWL_HCMD_SCRATCHBUF_SIZE != sizeof(*txq->scratchbufs));
517 BUILD_BUG_ON(offsetof(struct iwl_pcie_txq_scratch_buf, scratch) !=
518 sizeof(struct iwl_cmd_header) +
519 offsetof(struct iwl_tx_cmd, scratch));
520
521 scratchbuf_sz = sizeof(*txq->scratchbufs) * slots_num;
522
523 txq->scratchbufs = dma_alloc_coherent(trans->dev, scratchbuf_sz,
524 &txq->scratchbufs_dma,
525 GFP_KERNEL);
526 if (!txq->scratchbufs)
527 goto err_free_tfds;
528
f02831be
EG
529 txq->q.id = txq_id;
530
531 return 0;
38c0f334
JB
532err_free_tfds:
533 dma_free_coherent(trans->dev, tfd_sz, txq->tfds, txq->q.dma_addr);
f02831be
EG
534error:
535 if (txq->entries && txq_id == trans_pcie->cmd_queue)
536 for (i = 0; i < slots_num; i++)
537 kfree(txq->entries[i].cmd);
538 kfree(txq->entries);
539 txq->entries = NULL;
540
541 return -ENOMEM;
542
543}
544
545static int iwl_pcie_txq_init(struct iwl_trans *trans, struct iwl_txq *txq,
546 int slots_num, u32 txq_id)
547{
548 int ret;
549
550 txq->need_update = 0;
551
552 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
553 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
554 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
555
556 /* Initialize queue's high/low-water marks, and head/tail indexes */
557 ret = iwl_queue_init(&txq->q, TFD_QUEUE_SIZE_MAX, slots_num,
558 txq_id);
559 if (ret)
560 return ret;
561
562 spin_lock_init(&txq->lock);
563
564 /*
565 * Tell nic where to find circular buffer of Tx Frame Descriptors for
566 * given Tx queue, and enable the DMA channel used for that queue.
567 * Circular buffer (TFD queue in DRAM) physical base address */
568 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(txq_id),
569 txq->q.dma_addr >> 8);
570
571 return 0;
572}
573
574/*
575 * iwl_pcie_txq_unmap - Unmap any remaining DMA mappings and free skb's
576 */
577static void iwl_pcie_txq_unmap(struct iwl_trans *trans, int txq_id)
578{
579 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
580 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
581 struct iwl_queue *q = &txq->q;
f02831be
EG
582
583 if (!q->n_bd)
584 return;
585
f02831be
EG
586 spin_lock_bh(&txq->lock);
587 while (q->write_ptr != q->read_ptr) {
b967613d
EG
588 IWL_DEBUG_TX_REPLY(trans, "Q %d Free %d\n",
589 txq_id, q->read_ptr);
98891754 590 iwl_pcie_txq_free_tfd(trans, txq);
f02831be
EG
591 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd);
592 }
b967613d 593 txq->active = false;
f02831be 594 spin_unlock_bh(&txq->lock);
8a487b1a
EG
595
596 /* just in case - this queue may have been stopped */
597 iwl_wake_queue(trans, txq);
f02831be
EG
598}
599
600/*
601 * iwl_pcie_txq_free - Deallocate DMA queue.
602 * @txq: Transmit queue to deallocate.
603 *
604 * Empty queue by removing and destroying all BD's.
605 * Free all buffers.
606 * 0-fill, but do not free "txq" descriptor structure.
607 */
608static void iwl_pcie_txq_free(struct iwl_trans *trans, int txq_id)
609{
610 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
611 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
612 struct device *dev = trans->dev;
613 int i;
614
615 if (WARN_ON(!txq))
616 return;
617
618 iwl_pcie_txq_unmap(trans, txq_id);
619
620 /* De-alloc array of command/tx buffers */
621 if (txq_id == trans_pcie->cmd_queue)
622 for (i = 0; i < txq->q.n_window; i++) {
623 kfree(txq->entries[i].cmd);
f02831be
EG
624 kfree(txq->entries[i].free_buf);
625 }
626
627 /* De-alloc circular buffer of TFDs */
628 if (txq->q.n_bd) {
629 dma_free_coherent(dev, sizeof(struct iwl_tfd) *
630 txq->q.n_bd, txq->tfds, txq->q.dma_addr);
d21fa2da 631 txq->q.dma_addr = 0;
38c0f334
JB
632
633 dma_free_coherent(dev,
634 sizeof(*txq->scratchbufs) * txq->q.n_window,
635 txq->scratchbufs, txq->scratchbufs_dma);
f02831be
EG
636 }
637
638 kfree(txq->entries);
639 txq->entries = NULL;
640
641 del_timer_sync(&txq->stuck_timer);
642
643 /* 0-fill queue descriptor structure */
644 memset(txq, 0, sizeof(*txq));
645}
646
647/*
648 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
649 */
650static void iwl_pcie_txq_set_sched(struct iwl_trans *trans, u32 mask)
651{
652 struct iwl_trans_pcie __maybe_unused *trans_pcie =
653 IWL_TRANS_GET_PCIE_TRANS(trans);
654
655 iwl_write_prph(trans, SCD_TXFACT, mask);
656}
657
658void iwl_pcie_tx_start(struct iwl_trans *trans, u32 scd_base_addr)
659{
660 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
22dc3c95 661 int nq = trans->cfg->base_params->num_of_queues;
f02831be
EG
662 int chan;
663 u32 reg_val;
22dc3c95
JB
664 int clear_dwords = (SCD_TRANS_TBL_OFFSET_QUEUE(nq) -
665 SCD_CONTEXT_MEM_LOWER_BOUND) / sizeof(u32);
f02831be
EG
666
667 /* make sure all queue are not stopped/used */
668 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
669 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
670
671 trans_pcie->scd_base_addr =
672 iwl_read_prph(trans, SCD_SRAM_BASE_ADDR);
673
674 WARN_ON(scd_base_addr != 0 &&
675 scd_base_addr != trans_pcie->scd_base_addr);
676
22dc3c95
JB
677 /* reset context data, TX status and translation data */
678 iwl_trans_write_mem(trans, trans_pcie->scd_base_addr +
679 SCD_CONTEXT_MEM_LOWER_BOUND,
680 NULL, clear_dwords);
f02831be
EG
681
682 iwl_write_prph(trans, SCD_DRAM_BASE_ADDR,
683 trans_pcie->scd_bc_tbls.dma >> 10);
684
685 /* The chain extension of the SCD doesn't work well. This feature is
686 * enabled by default by the HW, so we need to disable it manually.
687 */
688 iwl_write_prph(trans, SCD_CHAINEXT_EN, 0);
689
690 iwl_trans_ac_txq_enable(trans, trans_pcie->cmd_queue,
691 trans_pcie->cmd_fifo);
692
693 /* Activate all Tx DMA/FIFO channels */
694 iwl_pcie_txq_set_sched(trans, IWL_MASK(0, 7));
695
696 /* Enable DMA channel */
697 for (chan = 0; chan < FH_TCSR_CHNL_NUM; chan++)
698 iwl_write_direct32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(chan),
699 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
700 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
701
702 /* Update FH chicken bits */
703 reg_val = iwl_read_direct32(trans, FH_TX_CHICKEN_BITS_REG);
704 iwl_write_direct32(trans, FH_TX_CHICKEN_BITS_REG,
705 reg_val | FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
706
707 /* Enable L1-Active */
708 iwl_clear_bits_prph(trans, APMG_PCIDEV_STT_REG,
709 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
710}
711
ddaf5a5b
JB
712void iwl_trans_pcie_tx_reset(struct iwl_trans *trans)
713{
714 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
715 int txq_id;
716
717 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
718 txq_id++) {
719 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
720
721 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(txq_id),
722 txq->q.dma_addr >> 8);
723 iwl_pcie_txq_unmap(trans, txq_id);
724 txq->q.read_ptr = 0;
725 txq->q.write_ptr = 0;
726 }
727
728 /* Tell NIC where to find the "keep warm" buffer */
729 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
730 trans_pcie->kw.dma >> 4);
731
732 iwl_pcie_tx_start(trans, trans_pcie->scd_base_addr);
733}
734
f02831be
EG
735/*
736 * iwl_pcie_tx_stop - Stop all Tx DMA channels
737 */
738int iwl_pcie_tx_stop(struct iwl_trans *trans)
739{
740 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
741 int ch, txq_id, ret;
742 unsigned long flags;
743
744 /* Turn off all Tx DMA fifos */
745 spin_lock_irqsave(&trans_pcie->irq_lock, flags);
746
747 iwl_pcie_txq_set_sched(trans, 0);
748
749 /* Stop each Tx DMA channel, and wait for it to be idle */
750 for (ch = 0; ch < FH_TCSR_CHNL_NUM; ch++) {
751 iwl_write_direct32(trans,
752 FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
753 ret = iwl_poll_direct_bit(trans, FH_TSSR_TX_STATUS_REG,
754 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch), 1000);
755 if (ret < 0)
756 IWL_ERR(trans,
757 "Failing on timeout while stopping DMA channel %d [0x%08x]\n",
758 ch,
759 iwl_read_direct32(trans,
760 FH_TSSR_TX_STATUS_REG));
761 }
762 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
763
764 if (!trans_pcie->txq) {
765 IWL_WARN(trans,
766 "Stopping tx queues that aren't allocated...\n");
767 return 0;
768 }
769
770 /* Unmap DMA from host system and free skb's */
771 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
772 txq_id++)
773 iwl_pcie_txq_unmap(trans, txq_id);
774
775 return 0;
776}
777
778/*
779 * iwl_trans_tx_free - Free TXQ Context
780 *
781 * Destroy all TX DMA queues and structures
782 */
783void iwl_pcie_tx_free(struct iwl_trans *trans)
784{
785 int txq_id;
786 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
787
788 /* Tx queues */
789 if (trans_pcie->txq) {
790 for (txq_id = 0;
791 txq_id < trans->cfg->base_params->num_of_queues; txq_id++)
792 iwl_pcie_txq_free(trans, txq_id);
793 }
794
795 kfree(trans_pcie->txq);
796 trans_pcie->txq = NULL;
797
798 iwl_pcie_free_dma_ptr(trans, &trans_pcie->kw);
799
800 iwl_pcie_free_dma_ptr(trans, &trans_pcie->scd_bc_tbls);
801}
802
803/*
804 * iwl_pcie_tx_alloc - allocate TX context
805 * Allocate all Tx DMA structures and initialize them
806 */
807static int iwl_pcie_tx_alloc(struct iwl_trans *trans)
808{
809 int ret;
810 int txq_id, slots_num;
811 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
812
813 u16 scd_bc_tbls_size = trans->cfg->base_params->num_of_queues *
814 sizeof(struct iwlagn_scd_bc_tbl);
815
816 /*It is not allowed to alloc twice, so warn when this happens.
817 * We cannot rely on the previous allocation, so free and fail */
818 if (WARN_ON(trans_pcie->txq)) {
819 ret = -EINVAL;
820 goto error;
821 }
822
823 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->scd_bc_tbls,
824 scd_bc_tbls_size);
825 if (ret) {
826 IWL_ERR(trans, "Scheduler BC Table allocation failed\n");
827 goto error;
828 }
829
830 /* Alloc keep-warm buffer */
831 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->kw, IWL_KW_SIZE);
832 if (ret) {
833 IWL_ERR(trans, "Keep Warm allocation failed\n");
834 goto error;
835 }
836
837 trans_pcie->txq = kcalloc(trans->cfg->base_params->num_of_queues,
838 sizeof(struct iwl_txq), GFP_KERNEL);
839 if (!trans_pcie->txq) {
840 IWL_ERR(trans, "Not enough memory for txq\n");
841 ret = ENOMEM;
842 goto error;
843 }
844
845 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
846 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
847 txq_id++) {
848 slots_num = (txq_id == trans_pcie->cmd_queue) ?
849 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
850 ret = iwl_pcie_txq_alloc(trans, &trans_pcie->txq[txq_id],
851 slots_num, txq_id);
852 if (ret) {
853 IWL_ERR(trans, "Tx %d queue alloc failed\n", txq_id);
854 goto error;
855 }
856 }
857
858 return 0;
859
860error:
861 iwl_pcie_tx_free(trans);
862
863 return ret;
864}
865int iwl_pcie_tx_init(struct iwl_trans *trans)
866{
867 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
868 int ret;
869 int txq_id, slots_num;
870 unsigned long flags;
871 bool alloc = false;
872
873 if (!trans_pcie->txq) {
874 ret = iwl_pcie_tx_alloc(trans);
875 if (ret)
876 goto error;
877 alloc = true;
878 }
879
880 spin_lock_irqsave(&trans_pcie->irq_lock, flags);
881
882 /* Turn off all Tx DMA fifos */
883 iwl_write_prph(trans, SCD_TXFACT, 0);
884
885 /* Tell NIC where to find the "keep warm" buffer */
886 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
887 trans_pcie->kw.dma >> 4);
888
889 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
890
891 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
892 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
893 txq_id++) {
894 slots_num = (txq_id == trans_pcie->cmd_queue) ?
895 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
896 ret = iwl_pcie_txq_init(trans, &trans_pcie->txq[txq_id],
897 slots_num, txq_id);
898 if (ret) {
899 IWL_ERR(trans, "Tx %d queue init failed\n", txq_id);
900 goto error;
901 }
902 }
903
904 return 0;
905error:
906 /*Upon error, free only if we allocated something */
907 if (alloc)
908 iwl_pcie_tx_free(trans);
909 return ret;
910}
911
912static inline void iwl_pcie_txq_progress(struct iwl_trans_pcie *trans_pcie,
913 struct iwl_txq *txq)
914{
915 if (!trans_pcie->wd_timeout)
916 return;
917
918 /*
919 * if empty delete timer, otherwise move timer forward
920 * since we're making progress on this queue
921 */
922 if (txq->q.read_ptr == txq->q.write_ptr)
923 del_timer(&txq->stuck_timer);
924 else
925 mod_timer(&txq->stuck_timer, jiffies + trans_pcie->wd_timeout);
926}
927
928/* Frees buffers until index _not_ inclusive */
f6d497cd
EG
929void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,
930 struct sk_buff_head *skbs)
f02831be
EG
931{
932 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
933 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
f6d497cd
EG
934 /* n_bd is usually 256 => n_bd - 1 = 0xff */
935 int tfd_num = ssn & (txq->q.n_bd - 1);
f02831be
EG
936 struct iwl_queue *q = &txq->q;
937 int last_to_free;
f02831be
EG
938
939 /* This function is not meant to release cmd queue*/
940 if (WARN_ON(txq_id == trans_pcie->cmd_queue))
f6d497cd 941 return;
214d14d4 942
2bfb5092 943 spin_lock_bh(&txq->lock);
f6d497cd 944
b967613d
EG
945 if (!txq->active) {
946 IWL_DEBUG_TX_QUEUES(trans, "Q %d inactive - ignoring idx %d\n",
947 txq_id, ssn);
948 goto out;
949 }
950
f6d497cd
EG
951 if (txq->q.read_ptr == tfd_num)
952 goto out;
953
954 IWL_DEBUG_TX_REPLY(trans, "[Q %d] %d -> %d (%d)\n",
955 txq_id, txq->q.read_ptr, tfd_num, ssn);
214d14d4 956
f02831be
EG
957 /*Since we free until index _not_ inclusive, the one before index is
958 * the last we will free. This one must be used */
f6d497cd 959 last_to_free = iwl_queue_dec_wrap(tfd_num, q->n_bd);
f02831be 960
6ca6ebc1 961 if (!iwl_queue_used(q, last_to_free)) {
f02831be
EG
962 IWL_ERR(trans,
963 "%s: Read index for DMA queue txq id (%d), last_to_free %d is out of range [0-%d] %d %d.\n",
964 __func__, txq_id, last_to_free, q->n_bd,
965 q->write_ptr, q->read_ptr);
f6d497cd 966 goto out;
214d14d4
JB
967 }
968
f02831be 969 if (WARN_ON(!skb_queue_empty(skbs)))
f6d497cd 970 goto out;
214d14d4 971
f02831be 972 for (;
f6d497cd 973 q->read_ptr != tfd_num;
f02831be 974 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
214d14d4 975
f02831be
EG
976 if (WARN_ON_ONCE(txq->entries[txq->q.read_ptr].skb == NULL))
977 continue;
214d14d4 978
f02831be 979 __skb_queue_tail(skbs, txq->entries[txq->q.read_ptr].skb);
214d14d4 980
f02831be 981 txq->entries[txq->q.read_ptr].skb = NULL;
fd4abac5 982
f02831be 983 iwl_pcie_txq_inval_byte_cnt_tbl(trans, txq);
fd4abac5 984
98891754 985 iwl_pcie_txq_free_tfd(trans, txq);
f02831be 986 }
fd4abac5 987
f02831be
EG
988 iwl_pcie_txq_progress(trans_pcie, txq);
989
f6d497cd
EG
990 if (iwl_queue_space(&txq->q) > txq->q.low_mark)
991 iwl_wake_queue(trans, txq);
992out:
2bfb5092 993 spin_unlock_bh(&txq->lock);
1053d35f
RR
994}
995
f02831be
EG
996/*
997 * iwl_pcie_cmdq_reclaim - Reclaim TX command queue entries already Tx'd
998 *
999 * When FW advances 'R' index, all entries between old and new 'R' index
1000 * need to be reclaimed. As result, some free space forms. If there is
1001 * enough free space (> low mark), wake the stack that feeds us.
1002 */
1003static void iwl_pcie_cmdq_reclaim(struct iwl_trans *trans, int txq_id, int idx)
48d42c42 1004{
f02831be
EG
1005 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1006 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
1007 struct iwl_queue *q = &txq->q;
1008 int nfreed = 0;
48d42c42 1009
f02831be 1010 lockdep_assert_held(&txq->lock);
48d42c42 1011
6ca6ebc1 1012 if ((idx >= q->n_bd) || (!iwl_queue_used(q, idx))) {
f02831be
EG
1013 IWL_ERR(trans,
1014 "%s: Read index for DMA queue txq id (%d), index %d is out of range [0-%d] %d %d.\n",
1015 __func__, txq_id, idx, q->n_bd,
1016 q->write_ptr, q->read_ptr);
1017 return;
1018 }
48d42c42 1019
f02831be
EG
1020 for (idx = iwl_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx;
1021 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
48d42c42 1022
f02831be
EG
1023 if (nfreed++ > 0) {
1024 IWL_ERR(trans, "HCMD skipped: index (%d) %d %d\n",
1025 idx, q->write_ptr, q->read_ptr);
1026 iwl_op_mode_nic_error(trans->op_mode);
1027 }
1028 }
1029
1030 iwl_pcie_txq_progress(trans_pcie, txq);
48d42c42
EG
1031}
1032
f02831be 1033static int iwl_pcie_txq_set_ratid_map(struct iwl_trans *trans, u16 ra_tid,
1ce8658c 1034 u16 txq_id)
48d42c42 1035{
20d3b647 1036 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
48d42c42
EG
1037 u32 tbl_dw_addr;
1038 u32 tbl_dw;
1039 u16 scd_q2ratid;
1040
1041 scd_q2ratid = ra_tid & SCD_QUEUE_RA_TID_MAP_RATID_MSK;
1042
105183b1 1043 tbl_dw_addr = trans_pcie->scd_base_addr +
48d42c42
EG
1044 SCD_TRANS_TBL_OFFSET_QUEUE(txq_id);
1045
4fd442db 1046 tbl_dw = iwl_trans_read_mem32(trans, tbl_dw_addr);
48d42c42
EG
1047
1048 if (txq_id & 0x1)
1049 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
1050 else
1051 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
1052
4fd442db 1053 iwl_trans_write_mem32(trans, tbl_dw_addr, tbl_dw);
48d42c42
EG
1054
1055 return 0;
1056}
1057
f02831be
EG
1058static inline void iwl_pcie_txq_set_inactive(struct iwl_trans *trans,
1059 u16 txq_id)
48d42c42
EG
1060{
1061 /* Simply stop the queue, but don't change any configuration;
1062 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
1042db2a 1063 iwl_write_prph(trans,
48d42c42
EG
1064 SCD_QUEUE_STATUS_BITS(txq_id),
1065 (0 << SCD_QUEUE_STTS_REG_POS_ACTIVE)|
1066 (1 << SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
1067}
1068
bd5f6a34
EG
1069/* Receiver address (actually, Rx station's index into station table),
1070 * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */
1071#define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
1072
f02831be
EG
1073void iwl_trans_pcie_txq_enable(struct iwl_trans *trans, int txq_id, int fifo,
1074 int sta_id, int tid, int frame_limit, u16 ssn)
48d42c42 1075{
9eae88fa 1076 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
4beaf6c2 1077
9eae88fa
JB
1078 if (test_and_set_bit(txq_id, trans_pcie->queue_used))
1079 WARN_ONCE(1, "queue %d already used - expect issues", txq_id);
48d42c42 1080
48d42c42 1081 /* Stop this Tx queue before configuring it */
f02831be 1082 iwl_pcie_txq_set_inactive(trans, txq_id);
48d42c42 1083
4beaf6c2
EG
1084 /* Set this queue as a chain-building queue unless it is CMD queue */
1085 if (txq_id != trans_pcie->cmd_queue)
1086 iwl_set_bits_prph(trans, SCD_QUEUECHAIN_SEL, BIT(txq_id));
1087
1088 /* If this queue is mapped to a certain station: it is an AGG queue */
881acd89 1089 if (sta_id >= 0) {
4beaf6c2 1090 u16 ra_tid = BUILD_RAxTID(sta_id, tid);
48d42c42 1091
4beaf6c2 1092 /* Map receiver-address / traffic-ID to this queue */
f02831be 1093 iwl_pcie_txq_set_ratid_map(trans, ra_tid, txq_id);
48d42c42 1094
4beaf6c2
EG
1095 /* enable aggregations for the queue */
1096 iwl_set_bits_prph(trans, SCD_AGGR_SEL, BIT(txq_id));
68972c46 1097 trans_pcie->txq[txq_id].ampdu = true;
1ce8658c
EG
1098 } else {
1099 /*
1100 * disable aggregations for the queue, this will also make the
1101 * ra_tid mapping configuration irrelevant since it is now a
1102 * non-AGG queue.
1103 */
1104 iwl_clear_bits_prph(trans, SCD_AGGR_SEL, BIT(txq_id));
4beaf6c2 1105 }
48d42c42
EG
1106
1107 /* Place first TFD at index corresponding to start sequence number.
1108 * Assumes that ssn_idx is valid (!= 0xFFF) */
822e8b2a
EG
1109 trans_pcie->txq[txq_id].q.read_ptr = (ssn & 0xff);
1110 trans_pcie->txq[txq_id].q.write_ptr = (ssn & 0xff);
1ce8658c
EG
1111
1112 iwl_write_direct32(trans, HBUS_TARG_WRPTR,
1113 (ssn & 0xff) | (txq_id << 8));
1114 iwl_write_prph(trans, SCD_QUEUE_RDPTR(txq_id), ssn);
48d42c42
EG
1115
1116 /* Set up Tx window size and frame limit for this queue */
4fd442db 1117 iwl_trans_write_mem32(trans, trans_pcie->scd_base_addr +
4beaf6c2 1118 SCD_CONTEXT_QUEUE_OFFSET(txq_id), 0);
4fd442db 1119 iwl_trans_write_mem32(trans, trans_pcie->scd_base_addr +
9eae88fa
JB
1120 SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
1121 ((frame_limit << SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
1122 SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
1123 ((frame_limit << SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
1124 SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
48d42c42 1125
48d42c42 1126 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
1ce8658c
EG
1127 iwl_write_prph(trans, SCD_QUEUE_STATUS_BITS(txq_id),
1128 (1 << SCD_QUEUE_STTS_REG_POS_ACTIVE) |
1129 (fifo << SCD_QUEUE_STTS_REG_POS_TXF) |
1130 (1 << SCD_QUEUE_STTS_REG_POS_WSL) |
1131 SCD_QUEUE_STTS_REG_MSK);
b967613d 1132 trans_pcie->txq[txq_id].active = true;
1ce8658c
EG
1133 IWL_DEBUG_TX_QUEUES(trans, "Activate queue %d on FIFO %d WrPtr: %d\n",
1134 txq_id, fifo, ssn & 0xff);
4beaf6c2
EG
1135}
1136
f02831be 1137void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int txq_id)
288712a6 1138{
8ad71bef 1139 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
986ea6c9
EG
1140 u32 stts_addr = trans_pcie->scd_base_addr +
1141 SCD_TX_STTS_QUEUE_OFFSET(txq_id);
1142 static const u32 zero_val[4] = {};
288712a6 1143
9eae88fa
JB
1144 if (!test_and_clear_bit(txq_id, trans_pcie->queue_used)) {
1145 WARN_ONCE(1, "queue %d not used", txq_id);
1146 return;
48d42c42
EG
1147 }
1148
f02831be 1149 iwl_pcie_txq_set_inactive(trans, txq_id);
ac928f8d 1150
4fd442db
EG
1151 iwl_trans_write_mem(trans, stts_addr, (void *)zero_val,
1152 ARRAY_SIZE(zero_val));
986ea6c9 1153
990aa6d7 1154 iwl_pcie_txq_unmap(trans, txq_id);
68972c46 1155 trans_pcie->txq[txq_id].ampdu = false;
6c3fd3f0 1156
1ce8658c 1157 IWL_DEBUG_TX_QUEUES(trans, "Deactivate queue %d\n", txq_id);
48d42c42
EG
1158}
1159
fd4abac5
TW
1160/*************** HOST COMMAND QUEUE FUNCTIONS *****/
1161
990aa6d7 1162/*
f02831be 1163 * iwl_pcie_enqueue_hcmd - enqueue a uCode command
fd4abac5 1164 * @priv: device private data point
e89044d7 1165 * @cmd: a pointer to the ucode command structure
fd4abac5 1166 *
e89044d7
EP
1167 * The function returns < 0 values to indicate the operation
1168 * failed. On success, it returns the index (>= 0) of command in the
fd4abac5
TW
1169 * command queue.
1170 */
f02831be
EG
1171static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,
1172 struct iwl_host_cmd *cmd)
fd4abac5 1173{
8ad71bef 1174 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
990aa6d7 1175 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
fd4abac5 1176 struct iwl_queue *q = &txq->q;
c2acea8e
JB
1177 struct iwl_device_cmd *out_cmd;
1178 struct iwl_cmd_meta *out_meta;
f4feb8ac 1179 void *dup_buf = NULL;
fd4abac5 1180 dma_addr_t phys_addr;
f4feb8ac 1181 int idx;
38c0f334 1182 u16 copy_size, cmd_size, scratch_size;
4ce7cc2b
JB
1183 bool had_nocopy = false;
1184 int i;
96791422 1185 u32 cmd_pos;
1afbfb60
JB
1186 const u8 *cmddata[IWL_MAX_CMD_TBS_PER_TFD];
1187 u16 cmdlen[IWL_MAX_CMD_TBS_PER_TFD];
fd4abac5 1188
4ce7cc2b
JB
1189 copy_size = sizeof(out_cmd->hdr);
1190 cmd_size = sizeof(out_cmd->hdr);
1191
1192 /* need one for the header if the first is NOCOPY */
1afbfb60 1193 BUILD_BUG_ON(IWL_MAX_CMD_TBS_PER_TFD > IWL_NUM_OF_TBS - 1);
4ce7cc2b 1194
1afbfb60 1195 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
8a964f44
JB
1196 cmddata[i] = cmd->data[i];
1197 cmdlen[i] = cmd->len[i];
1198
4ce7cc2b
JB
1199 if (!cmd->len[i])
1200 continue;
8a964f44 1201
38c0f334
JB
1202 /* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */
1203 if (copy_size < IWL_HCMD_SCRATCHBUF_SIZE) {
1204 int copy = IWL_HCMD_SCRATCHBUF_SIZE - copy_size;
8a964f44
JB
1205
1206 if (copy > cmdlen[i])
1207 copy = cmdlen[i];
1208 cmdlen[i] -= copy;
1209 cmddata[i] += copy;
1210 copy_size += copy;
1211 }
1212
4ce7cc2b
JB
1213 if (cmd->dataflags[i] & IWL_HCMD_DFL_NOCOPY) {
1214 had_nocopy = true;
f4feb8ac
JB
1215 if (WARN_ON(cmd->dataflags[i] & IWL_HCMD_DFL_DUP)) {
1216 idx = -EINVAL;
1217 goto free_dup_buf;
1218 }
1219 } else if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP) {
1220 /*
1221 * This is also a chunk that isn't copied
1222 * to the static buffer so set had_nocopy.
1223 */
1224 had_nocopy = true;
1225
1226 /* only allowed once */
1227 if (WARN_ON(dup_buf)) {
1228 idx = -EINVAL;
1229 goto free_dup_buf;
1230 }
1231
8a964f44 1232 dup_buf = kmemdup(cmddata[i], cmdlen[i],
f4feb8ac
JB
1233 GFP_ATOMIC);
1234 if (!dup_buf)
1235 return -ENOMEM;
4ce7cc2b
JB
1236 } else {
1237 /* NOCOPY must not be followed by normal! */
f4feb8ac
JB
1238 if (WARN_ON(had_nocopy)) {
1239 idx = -EINVAL;
1240 goto free_dup_buf;
1241 }
8a964f44 1242 copy_size += cmdlen[i];
4ce7cc2b
JB
1243 }
1244 cmd_size += cmd->len[i];
1245 }
fd4abac5 1246
3e41ace5
JB
1247 /*
1248 * If any of the command structures end up being larger than
4ce7cc2b
JB
1249 * the TFD_MAX_PAYLOAD_SIZE and they aren't dynamically
1250 * allocated into separate TFDs, then we will need to
1251 * increase the size of the buffers.
3e41ace5 1252 */
2a79e45e
JB
1253 if (WARN(copy_size > TFD_MAX_PAYLOAD_SIZE,
1254 "Command %s (%#x) is too large (%d bytes)\n",
990aa6d7 1255 get_cmd_string(trans_pcie, cmd->id), cmd->id, copy_size)) {
f4feb8ac
JB
1256 idx = -EINVAL;
1257 goto free_dup_buf;
1258 }
fd4abac5 1259
015c15e1 1260 spin_lock_bh(&txq->lock);
3598e177 1261
c2acea8e 1262 if (iwl_queue_space(q) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
015c15e1 1263 spin_unlock_bh(&txq->lock);
3598e177 1264
6d8f6eeb 1265 IWL_ERR(trans, "No space in command queue\n");
0e781842 1266 iwl_op_mode_cmd_queue_full(trans->op_mode);
f4feb8ac
JB
1267 idx = -ENOSPC;
1268 goto free_dup_buf;
fd4abac5
TW
1269 }
1270
4ce7cc2b 1271 idx = get_cmd_index(q, q->write_ptr);
bf8440e6
JB
1272 out_cmd = txq->entries[idx].cmd;
1273 out_meta = &txq->entries[idx].meta;
c2acea8e 1274
8ce73f3a 1275 memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */
c2acea8e
JB
1276 if (cmd->flags & CMD_WANT_SKB)
1277 out_meta->source = cmd;
fd4abac5 1278
4ce7cc2b 1279 /* set up the header */
fd4abac5 1280
4ce7cc2b 1281 out_cmd->hdr.cmd = cmd->id;
fd4abac5 1282 out_cmd->hdr.flags = 0;
cefeaa5f 1283 out_cmd->hdr.sequence =
c6f600fc 1284 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
cefeaa5f 1285 INDEX_TO_SEQ(q->write_ptr));
4ce7cc2b
JB
1286
1287 /* and copy the data that needs to be copied */
96791422 1288 cmd_pos = offsetof(struct iwl_device_cmd, payload);
8a964f44 1289 copy_size = sizeof(out_cmd->hdr);
1afbfb60 1290 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
8a964f44
JB
1291 int copy = 0;
1292
cc904c71 1293 if (!cmd->len[i])
4ce7cc2b 1294 continue;
8a964f44 1295
38c0f334
JB
1296 /* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */
1297 if (copy_size < IWL_HCMD_SCRATCHBUF_SIZE) {
1298 copy = IWL_HCMD_SCRATCHBUF_SIZE - copy_size;
8a964f44
JB
1299
1300 if (copy > cmd->len[i])
1301 copy = cmd->len[i];
1302 }
1303
1304 /* copy everything if not nocopy/dup */
1305 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1306 IWL_HCMD_DFL_DUP)))
1307 copy = cmd->len[i];
1308
1309 if (copy) {
1310 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1311 cmd_pos += copy;
1312 copy_size += copy;
1313 }
96791422
EG
1314 }
1315
d9fb6465 1316 IWL_DEBUG_HC(trans,
20d3b647 1317 "Sending command %s (#%x), seq: 0x%04X, %d bytes at %d[%d]:%d\n",
990aa6d7 1318 get_cmd_string(trans_pcie, out_cmd->hdr.cmd),
20d3b647
JB
1319 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
1320 cmd_size, q->write_ptr, idx, trans_pcie->cmd_queue);
4ce7cc2b 1321
38c0f334
JB
1322 /* start the TFD with the scratchbuf */
1323 scratch_size = min_t(int, copy_size, IWL_HCMD_SCRATCHBUF_SIZE);
1324 memcpy(&txq->scratchbufs[q->write_ptr], &out_cmd->hdr, scratch_size);
1325 iwl_pcie_txq_build_tfd(trans, txq,
1326 iwl_pcie_get_scratchbuf_dma(txq, q->write_ptr),
1327 scratch_size, 1);
1328
1329 /* map first command fragment, if any remains */
1330 if (copy_size > scratch_size) {
1331 phys_addr = dma_map_single(trans->dev,
1332 ((u8 *)&out_cmd->hdr) + scratch_size,
1333 copy_size - scratch_size,
1334 DMA_TO_DEVICE);
1335 if (dma_mapping_error(trans->dev, phys_addr)) {
1336 iwl_pcie_tfd_unmap(trans, out_meta,
1337 &txq->tfds[q->write_ptr]);
1338 idx = -ENOMEM;
1339 goto out;
1340 }
8a964f44 1341
38c0f334
JB
1342 iwl_pcie_txq_build_tfd(trans, txq, phys_addr,
1343 copy_size - scratch_size, 0);
2c46f72e
JB
1344 }
1345
8a964f44 1346 /* map the remaining (adjusted) nocopy/dup fragments */
1afbfb60 1347 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
8a964f44 1348 const void *data = cmddata[i];
f4feb8ac 1349
8a964f44 1350 if (!cmdlen[i])
4ce7cc2b 1351 continue;
f4feb8ac
JB
1352 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1353 IWL_HCMD_DFL_DUP)))
4ce7cc2b 1354 continue;
f4feb8ac
JB
1355 if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP)
1356 data = dup_buf;
1357 phys_addr = dma_map_single(trans->dev, (void *)data,
98891754 1358 cmdlen[i], DMA_TO_DEVICE);
1042db2a 1359 if (dma_mapping_error(trans->dev, phys_addr)) {
f02831be 1360 iwl_pcie_tfd_unmap(trans, out_meta,
98891754 1361 &txq->tfds[q->write_ptr]);
4ce7cc2b
JB
1362 idx = -ENOMEM;
1363 goto out;
1364 }
1365
8a964f44 1366 iwl_pcie_txq_build_tfd(trans, txq, phys_addr, cmdlen[i], 0);
4ce7cc2b 1367 }
df833b1d 1368
afaf6b57 1369 out_meta->flags = cmd->flags;
f4feb8ac
JB
1370 if (WARN_ON_ONCE(txq->entries[idx].free_buf))
1371 kfree(txq->entries[idx].free_buf);
1372 txq->entries[idx].free_buf = dup_buf;
2c46f72e
JB
1373
1374 txq->need_update = 1;
1375
8a964f44 1376 trace_iwlwifi_dev_hcmd(trans->dev, cmd, cmd_size, &out_cmd->hdr);
df833b1d 1377
7c5ba4a8
JB
1378 /* start timer if queue currently empty */
1379 if (q->read_ptr == q->write_ptr && trans_pcie->wd_timeout)
1380 mod_timer(&txq->stuck_timer, jiffies + trans_pcie->wd_timeout);
1381
fd4abac5
TW
1382 /* Increment and update queue's write index */
1383 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
990aa6d7 1384 iwl_pcie_txq_inc_wr_ptr(trans, txq);
fd4abac5 1385
2c46f72e 1386 out:
015c15e1 1387 spin_unlock_bh(&txq->lock);
f4feb8ac
JB
1388 free_dup_buf:
1389 if (idx < 0)
1390 kfree(dup_buf);
7bfedc59 1391 return idx;
fd4abac5
TW
1392}
1393
990aa6d7
EG
1394/*
1395 * iwl_pcie_hcmd_complete - Pull unused buffers off the queue and reclaim them
17b88929 1396 * @rxb: Rx buffer to reclaim
247c61d6
EG
1397 * @handler_status: return value of the handler of the command
1398 * (put in setup_rx_handlers)
17b88929
TW
1399 *
1400 * If an Rx buffer has an async callback associated with it the callback
1401 * will be executed. The attached skb (if present) will only be freed
1402 * if the callback returns 1
1403 */
990aa6d7
EG
1404void iwl_pcie_hcmd_complete(struct iwl_trans *trans,
1405 struct iwl_rx_cmd_buffer *rxb, int handler_status)
17b88929 1406{
2f301227 1407 struct iwl_rx_packet *pkt = rxb_addr(rxb);
17b88929
TW
1408 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1409 int txq_id = SEQ_TO_QUEUE(sequence);
1410 int index = SEQ_TO_INDEX(sequence);
17b88929 1411 int cmd_index;
c2acea8e
JB
1412 struct iwl_device_cmd *cmd;
1413 struct iwl_cmd_meta *meta;
8ad71bef 1414 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
990aa6d7 1415 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
17b88929
TW
1416
1417 /* If a Tx command is being handled and it isn't in the actual
1418 * command queue then there a command routing bug has been introduced
1419 * in the queue management code. */
c6f600fc 1420 if (WARN(txq_id != trans_pcie->cmd_queue,
13bb9483 1421 "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n",
20d3b647
JB
1422 txq_id, trans_pcie->cmd_queue, sequence,
1423 trans_pcie->txq[trans_pcie->cmd_queue].q.read_ptr,
1424 trans_pcie->txq[trans_pcie->cmd_queue].q.write_ptr)) {
3e10caeb 1425 iwl_print_hex_error(trans, pkt, 32);
55d6a3cd 1426 return;
01ef9323 1427 }
17b88929 1428
2bfb5092 1429 spin_lock_bh(&txq->lock);
015c15e1 1430
4ce7cc2b 1431 cmd_index = get_cmd_index(&txq->q, index);
bf8440e6
JB
1432 cmd = txq->entries[cmd_index].cmd;
1433 meta = &txq->entries[cmd_index].meta;
17b88929 1434
98891754 1435 iwl_pcie_tfd_unmap(trans, meta, &txq->tfds[index]);
c33de625 1436
17b88929 1437 /* Input error checking is done when commands are added to queue. */
c2acea8e 1438 if (meta->flags & CMD_WANT_SKB) {
48a2d66f 1439 struct page *p = rxb_steal_page(rxb);
65b94a4a 1440
65b94a4a
JB
1441 meta->source->resp_pkt = pkt;
1442 meta->source->_rx_page_addr = (unsigned long)page_address(p);
b2cf410c 1443 meta->source->_rx_page_order = trans_pcie->rx_page_order;
247c61d6 1444 meta->source->handler_status = handler_status;
247c61d6 1445 }
2624e96c 1446
f02831be 1447 iwl_pcie_cmdq_reclaim(trans, txq_id, index);
17b88929 1448
c2acea8e 1449 if (!(meta->flags & CMD_ASYNC)) {
74fda971 1450 if (!test_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status)) {
05c89b91
WYG
1451 IWL_WARN(trans,
1452 "HCMD_ACTIVE already clear for command %s\n",
990aa6d7 1453 get_cmd_string(trans_pcie, cmd->hdr.cmd));
05c89b91 1454 }
74fda971 1455 clear_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status);
6d8f6eeb 1456 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
990aa6d7 1457 get_cmd_string(trans_pcie, cmd->hdr.cmd));
f946b529 1458 wake_up(&trans_pcie->wait_command_queue);
17b88929 1459 }
3598e177 1460
dd487449 1461 meta->flags = 0;
3598e177 1462
2bfb5092 1463 spin_unlock_bh(&txq->lock);
17b88929 1464}
253a634c 1465
253a634c
EG
1466#define HOST_COMPLETE_TIMEOUT (2 * HZ)
1467
f02831be
EG
1468static int iwl_pcie_send_hcmd_async(struct iwl_trans *trans,
1469 struct iwl_host_cmd *cmd)
253a634c 1470{
d9fb6465 1471 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
253a634c
EG
1472 int ret;
1473
1474 /* An asynchronous command can not expect an SKB to be set. */
1475 if (WARN_ON(cmd->flags & CMD_WANT_SKB))
1476 return -EINVAL;
1477
f02831be 1478 ret = iwl_pcie_enqueue_hcmd(trans, cmd);
253a634c 1479 if (ret < 0) {
721c32f7 1480 IWL_ERR(trans,
b36b110c 1481 "Error sending %s: enqueue_hcmd failed: %d\n",
990aa6d7 1482 get_cmd_string(trans_pcie, cmd->id), ret);
253a634c
EG
1483 return ret;
1484 }
1485 return 0;
1486}
1487
f02831be
EG
1488static int iwl_pcie_send_hcmd_sync(struct iwl_trans *trans,
1489 struct iwl_host_cmd *cmd)
253a634c 1490{
8ad71bef 1491 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
253a634c
EG
1492 int cmd_idx;
1493 int ret;
1494
6d8f6eeb 1495 IWL_DEBUG_INFO(trans, "Attempting to send sync command %s\n",
990aa6d7 1496 get_cmd_string(trans_pcie, cmd->id));
253a634c 1497
2cc39c94 1498 if (WARN_ON(test_and_set_bit(STATUS_HCMD_ACTIVE,
74fda971 1499 &trans_pcie->status))) {
2cc39c94 1500 IWL_ERR(trans, "Command %s: a command is already active!\n",
990aa6d7 1501 get_cmd_string(trans_pcie, cmd->id));
2cc39c94
JB
1502 return -EIO;
1503 }
1504
6d8f6eeb 1505 IWL_DEBUG_INFO(trans, "Setting HCMD_ACTIVE for command %s\n",
990aa6d7 1506 get_cmd_string(trans_pcie, cmd->id));
253a634c 1507
f02831be 1508 cmd_idx = iwl_pcie_enqueue_hcmd(trans, cmd);
253a634c
EG
1509 if (cmd_idx < 0) {
1510 ret = cmd_idx;
74fda971 1511 clear_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status);
721c32f7 1512 IWL_ERR(trans,
b36b110c 1513 "Error sending %s: enqueue_hcmd failed: %d\n",
990aa6d7 1514 get_cmd_string(trans_pcie, cmd->id), ret);
253a634c
EG
1515 return ret;
1516 }
1517
f946b529 1518 ret = wait_event_timeout(trans_pcie->wait_command_queue,
20d3b647
JB
1519 !test_bit(STATUS_HCMD_ACTIVE,
1520 &trans_pcie->status),
1521 HOST_COMPLETE_TIMEOUT);
253a634c 1522 if (!ret) {
74fda971 1523 if (test_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status)) {
990aa6d7 1524 struct iwl_txq *txq =
c6f600fc 1525 &trans_pcie->txq[trans_pcie->cmd_queue];
d10630af
WYG
1526 struct iwl_queue *q = &txq->q;
1527
721c32f7 1528 IWL_ERR(trans,
253a634c 1529 "Error sending %s: time out after %dms.\n",
990aa6d7 1530 get_cmd_string(trans_pcie, cmd->id),
253a634c
EG
1531 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
1532
721c32f7 1533 IWL_ERR(trans,
d10630af
WYG
1534 "Current CMD queue read_ptr %d write_ptr %d\n",
1535 q->read_ptr, q->write_ptr);
1536
74fda971 1537 clear_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status);
d9fb6465
JB
1538 IWL_DEBUG_INFO(trans,
1539 "Clearing HCMD_ACTIVE for command %s\n",
990aa6d7 1540 get_cmd_string(trans_pcie, cmd->id));
253a634c
EG
1541 ret = -ETIMEDOUT;
1542 goto cancel;
1543 }
1544 }
1545
d18aa87f
JB
1546 if (test_bit(STATUS_FW_ERROR, &trans_pcie->status)) {
1547 IWL_ERR(trans, "FW error in SYNC CMD %s\n",
990aa6d7 1548 get_cmd_string(trans_pcie, cmd->id));
b656fa33 1549 dump_stack();
d18aa87f
JB
1550 ret = -EIO;
1551 goto cancel;
1552 }
1553
1094fa26
EH
1554 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
1555 test_bit(STATUS_RFKILL, &trans_pcie->status)) {
f946b529
EG
1556 IWL_DEBUG_RF_KILL(trans, "RFKILL in SYNC CMD... no rsp\n");
1557 ret = -ERFKILL;
1558 goto cancel;
1559 }
1560
65b94a4a 1561 if ((cmd->flags & CMD_WANT_SKB) && !cmd->resp_pkt) {
6d8f6eeb 1562 IWL_ERR(trans, "Error: Response NULL in '%s'\n",
990aa6d7 1563 get_cmd_string(trans_pcie, cmd->id));
253a634c
EG
1564 ret = -EIO;
1565 goto cancel;
1566 }
1567
1568 return 0;
1569
1570cancel:
1571 if (cmd->flags & CMD_WANT_SKB) {
1572 /*
1573 * Cancel the CMD_WANT_SKB flag for the cmd in the
1574 * TX cmd queue. Otherwise in case the cmd comes
1575 * in later, it will possibly set an invalid
1576 * address (cmd->meta.source).
1577 */
bf8440e6
JB
1578 trans_pcie->txq[trans_pcie->cmd_queue].
1579 entries[cmd_idx].meta.flags &= ~CMD_WANT_SKB;
253a634c 1580 }
9cac4943 1581
65b94a4a
JB
1582 if (cmd->resp_pkt) {
1583 iwl_free_resp(cmd);
1584 cmd->resp_pkt = NULL;
253a634c
EG
1585 }
1586
1587 return ret;
1588}
1589
f02831be 1590int iwl_trans_pcie_send_hcmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
253a634c 1591{
f946b529
EG
1592 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1593
d18aa87f
JB
1594 if (test_bit(STATUS_FW_ERROR, &trans_pcie->status))
1595 return -EIO;
1596
4f59334b
EH
1597 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
1598 test_bit(STATUS_RFKILL, &trans_pcie->status)) {
754d7d9e
EG
1599 IWL_DEBUG_RF_KILL(trans, "Dropping CMD 0x%x: RF KILL\n",
1600 cmd->id);
f946b529 1601 return -ERFKILL;
754d7d9e 1602 }
f946b529 1603
253a634c 1604 if (cmd->flags & CMD_ASYNC)
f02831be 1605 return iwl_pcie_send_hcmd_async(trans, cmd);
253a634c 1606
f946b529 1607 /* We still can fail on RFKILL that can be asserted while we wait */
f02831be 1608 return iwl_pcie_send_hcmd_sync(trans, cmd);
253a634c
EG
1609}
1610
f02831be
EG
1611int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
1612 struct iwl_device_cmd *dev_cmd, int txq_id)
a0eaad71 1613{
8ad71bef 1614 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
f02831be
EG
1615 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1616 struct iwl_tx_cmd *tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
1617 struct iwl_cmd_meta *out_meta;
1618 struct iwl_txq *txq;
1619 struct iwl_queue *q;
38c0f334
JB
1620 dma_addr_t tb0_phys, tb1_phys, scratch_phys;
1621 void *tb1_addr;
1622 u16 len, tb1_len, tb2_len;
f02831be
EG
1623 u8 wait_write_ptr = 0;
1624 __le16 fc = hdr->frame_control;
1625 u8 hdr_len = ieee80211_hdrlen(fc);
68972c46 1626 u16 wifi_seq;
f02831be
EG
1627
1628 txq = &trans_pcie->txq[txq_id];
1629 q = &txq->q;
a0eaad71 1630
961de6a5
JB
1631 if (WARN_ONCE(!test_bit(txq_id, trans_pcie->queue_used),
1632 "TX on unused queue %d\n", txq_id))
f02831be 1633 return -EINVAL;
39644e9a 1634
f02831be 1635 spin_lock(&txq->lock);
015c15e1 1636
f02831be
EG
1637 /* In AGG mode, the index in the ring must correspond to the WiFi
1638 * sequence number. This is a HW requirements to help the SCD to parse
1639 * the BA.
1640 * Check here that the packets are in the right place on the ring.
1641 */
9a886586 1642 wifi_seq = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
1092b9bc 1643 WARN_ONCE(txq->ampdu &&
68972c46 1644 (wifi_seq & 0xff) != q->write_ptr,
f02831be
EG
1645 "Q: %d WiFi Seq %d tfdNum %d",
1646 txq_id, wifi_seq, q->write_ptr);
f02831be
EG
1647
1648 /* Set up driver data for this TFD */
1649 txq->entries[q->write_ptr].skb = skb;
1650 txq->entries[q->write_ptr].cmd = dev_cmd;
1651
1652 dev_cmd->hdr.cmd = REPLY_TX;
1653 dev_cmd->hdr.sequence =
1654 cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
1655 INDEX_TO_SEQ(q->write_ptr)));
1656
38c0f334
JB
1657 tb0_phys = iwl_pcie_get_scratchbuf_dma(txq, q->write_ptr);
1658 scratch_phys = tb0_phys + sizeof(struct iwl_cmd_header) +
1659 offsetof(struct iwl_tx_cmd, scratch);
1660
1661 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
1662 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
1663
f02831be
EG
1664 /* Set up first empty entry in queue's array of Tx/cmd buffers */
1665 out_meta = &txq->entries[q->write_ptr].meta;
a0eaad71 1666
f02831be 1667 /*
38c0f334
JB
1668 * The second TB (tb1) points to the remainder of the TX command
1669 * and the 802.11 header - dword aligned size
1670 * (This calculation modifies the TX command, so do it before the
1671 * setup of the first TB)
f02831be 1672 */
38c0f334
JB
1673 len = sizeof(struct iwl_tx_cmd) + sizeof(struct iwl_cmd_header) +
1674 hdr_len - IWL_HCMD_SCRATCHBUF_SIZE;
1092b9bc 1675 tb1_len = ALIGN(len, 4);
f02831be
EG
1676
1677 /* Tell NIC about any 2-byte padding after MAC header */
38c0f334 1678 if (tb1_len != len)
f02831be
EG
1679 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
1680
38c0f334
JB
1681 /* The first TB points to the scratchbuf data - min_copy bytes */
1682 memcpy(&txq->scratchbufs[q->write_ptr], &dev_cmd->hdr,
1683 IWL_HCMD_SCRATCHBUF_SIZE);
1684 iwl_pcie_txq_build_tfd(trans, txq, tb0_phys,
1685 IWL_HCMD_SCRATCHBUF_SIZE, 1);
f02831be 1686
38c0f334
JB
1687 /* there must be data left over for TB1 or this code must be changed */
1688 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd) < IWL_HCMD_SCRATCHBUF_SIZE);
1689
1690 /* map the data for TB1 */
1691 tb1_addr = ((u8 *)&dev_cmd->hdr) + IWL_HCMD_SCRATCHBUF_SIZE;
1692 tb1_phys = dma_map_single(trans->dev, tb1_addr, tb1_len, DMA_TO_DEVICE);
1693 if (unlikely(dma_mapping_error(trans->dev, tb1_phys)))
1694 goto out_err;
1695 iwl_pcie_txq_build_tfd(trans, txq, tb1_phys, tb1_len, 0);
a0eaad71 1696
38c0f334
JB
1697 /*
1698 * Set up TFD's third entry to point directly to remainder
1699 * of skb, if any (802.11 null frames have no payload).
1700 */
1701 tb2_len = skb->len - hdr_len;
1702 if (tb2_len > 0) {
1703 dma_addr_t tb2_phys = dma_map_single(trans->dev,
1704 skb->data + hdr_len,
1705 tb2_len, DMA_TO_DEVICE);
1706 if (unlikely(dma_mapping_error(trans->dev, tb2_phys))) {
1707 iwl_pcie_tfd_unmap(trans, out_meta,
1708 &txq->tfds[q->write_ptr]);
f02831be
EG
1709 goto out_err;
1710 }
38c0f334 1711 iwl_pcie_txq_build_tfd(trans, txq, tb2_phys, tb2_len, 0);
f02831be 1712 }
a0eaad71 1713
f02831be
EG
1714 /* Set up entry for this TFD in Tx byte-count array */
1715 iwl_pcie_txq_update_byte_cnt_tbl(trans, txq, le16_to_cpu(tx_cmd->len));
a0eaad71 1716
f02831be
EG
1717 trace_iwlwifi_dev_tx(trans->dev, skb,
1718 &txq->tfds[txq->q.write_ptr],
1719 sizeof(struct iwl_tfd),
38c0f334
JB
1720 &dev_cmd->hdr, IWL_HCMD_SCRATCHBUF_SIZE + tb1_len,
1721 skb->data + hdr_len, tb2_len);
f02831be 1722 trace_iwlwifi_dev_tx_data(trans->dev, skb,
38c0f334
JB
1723 skb->data + hdr_len, tb2_len);
1724
1725 if (!ieee80211_has_morefrags(fc)) {
1726 txq->need_update = 1;
1727 } else {
1728 wait_write_ptr = 1;
1729 txq->need_update = 0;
1730 }
7c5ba4a8 1731
f02831be
EG
1732 /* start timer if queue currently empty */
1733 if (txq->need_update && q->read_ptr == q->write_ptr &&
1734 trans_pcie->wd_timeout)
1735 mod_timer(&txq->stuck_timer, jiffies + trans_pcie->wd_timeout);
1736
1737 /* Tell device the write index *just past* this latest filled TFD */
1738 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
1739 iwl_pcie_txq_inc_wr_ptr(trans, txq);
1740
1741 /*
1742 * At this point the frame is "transmitted" successfully
1743 * and we will get a TX status notification eventually,
1744 * regardless of the value of ret. "ret" only indicates
1745 * whether or not we should update the write pointer.
1746 */
1747 if (iwl_queue_space(q) < q->high_mark) {
1748 if (wait_write_ptr) {
1749 txq->need_update = 1;
1750 iwl_pcie_txq_inc_wr_ptr(trans, txq);
1751 } else {
1752 iwl_stop_queue(trans, txq);
1753 }
1754 }
1755 spin_unlock(&txq->lock);
1756 return 0;
1757out_err:
1758 spin_unlock(&txq->lock);
1759 return -1;
a0eaad71 1760}