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