1 /******************************************************************************
3 * Copyright(c) 2003 - 2013 Intel Corporation. All rights reserved.
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
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.
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
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
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28 *****************************************************************************/
29 #include <linux/etherdevice.h>
30 #include <linux/slab.h>
31 #include <linux/sched.h>
33 #include "iwl-debug.h"
37 #include "iwl-op-mode.h"
39 /* FIXME: need to abstract out TX command (once we know what it looks like) */
40 #include "dvm/commands.h"
42 #define IWL_TX_CRC_SIZE 4
43 #define IWL_TX_DELIMITER_SIZE 4
45 /*************** DMA-QUEUE-GENERAL-FUNCTIONS *****
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
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.
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,
65 ***************************************************/
66 static int iwl_queue_space(const struct iwl_queue
*q
)
68 int s
= q
->read_ptr
- q
->write_ptr
;
70 if (q
->read_ptr
> q
->write_ptr
)
75 /* keep some reserve to not confuse empty and full situations */
83 * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
85 static int iwl_queue_init(struct iwl_queue
*q
, int count
, int slots_num
, u32 id
)
88 q
->n_window
= slots_num
;
91 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
92 * and iwl_queue_dec_wrap are broken. */
93 if (WARN_ON(!is_power_of_2(count
)))
96 /* slots_num must be power-of-two size, otherwise
97 * get_cmd_index is broken. */
98 if (WARN_ON(!is_power_of_2(slots_num
)))
101 q
->low_mark
= q
->n_window
/ 4;
105 q
->high_mark
= q
->n_window
/ 8;
106 if (q
->high_mark
< 2)
115 static int iwl_pcie_alloc_dma_ptr(struct iwl_trans
*trans
,
116 struct iwl_dma_ptr
*ptr
, size_t size
)
118 if (WARN_ON(ptr
->addr
))
121 ptr
->addr
= dma_alloc_coherent(trans
->dev
, size
,
122 &ptr
->dma
, GFP_KERNEL
);
129 static void iwl_pcie_free_dma_ptr(struct iwl_trans
*trans
,
130 struct iwl_dma_ptr
*ptr
)
132 if (unlikely(!ptr
->addr
))
135 dma_free_coherent(trans
->dev
, ptr
->size
, ptr
->addr
, ptr
->dma
);
136 memset(ptr
, 0, sizeof(*ptr
));
139 static void iwl_pcie_txq_stuck_timer(unsigned long data
)
141 struct iwl_txq
*txq
= (void *)data
;
142 struct iwl_queue
*q
= &txq
->q
;
143 struct iwl_trans_pcie
*trans_pcie
= txq
->trans_pcie
;
144 struct iwl_trans
*trans
= iwl_trans_pcie_get_trans(trans_pcie
);
145 u32 scd_sram_addr
= trans_pcie
->scd_base_addr
+
146 SCD_TX_STTS_QUEUE_OFFSET(txq
->q
.id
);
150 spin_lock(&txq
->lock
);
151 /* check if triggered erroneously */
152 if (txq
->q
.read_ptr
== txq
->q
.write_ptr
) {
153 spin_unlock(&txq
->lock
);
156 spin_unlock(&txq
->lock
);
158 IWL_ERR(trans
, "Queue %d stuck for %u ms.\n", txq
->q
.id
,
159 jiffies_to_msecs(trans_pcie
->wd_timeout
));
160 IWL_ERR(trans
, "Current SW read_ptr %d write_ptr %d\n",
161 txq
->q
.read_ptr
, txq
->q
.write_ptr
);
163 iwl_trans_read_mem_bytes(trans
, scd_sram_addr
, buf
, sizeof(buf
));
165 iwl_print_hex_error(trans
, buf
, sizeof(buf
));
167 for (i
= 0; i
< FH_TCSR_CHNL_NUM
; i
++)
168 IWL_ERR(trans
, "FH TRBs(%d) = 0x%08x\n", i
,
169 iwl_read_direct32(trans
, FH_TX_TRB_REG(i
)));
171 for (i
= 0; i
< trans
->cfg
->base_params
->num_of_queues
; i
++) {
172 u32 status
= iwl_read_prph(trans
, SCD_QUEUE_STATUS_BITS(i
));
173 u8 fifo
= (status
>> SCD_QUEUE_STTS_REG_POS_TXF
) & 0x7;
174 bool active
= !!(status
& BIT(SCD_QUEUE_STTS_REG_POS_ACTIVE
));
176 iwl_trans_read_mem32(trans
,
177 trans_pcie
->scd_base_addr
+
178 SCD_TRANS_TBL_OFFSET_QUEUE(i
));
181 tbl_dw
= (tbl_dw
& 0xFFFF0000) >> 16;
183 tbl_dw
= tbl_dw
& 0x0000FFFF;
186 "Q %d is %sactive and mapped to fifo %d ra_tid 0x%04x [%d,%d]\n",
187 i
, active
? "" : "in", fifo
, tbl_dw
,
189 SCD_QUEUE_RDPTR(i
)) & (txq
->q
.n_bd
- 1),
190 iwl_read_prph(trans
, SCD_QUEUE_WRPTR(i
)));
193 for (i
= q
->read_ptr
; i
!= q
->write_ptr
;
194 i
= iwl_queue_inc_wrap(i
, q
->n_bd
))
195 IWL_ERR(trans
, "scratch %d = 0x%08x\n", i
,
196 le32_to_cpu(txq
->scratchbufs
[i
].scratch
));
198 iwl_op_mode_nic_error(trans
->op_mode
);
202 * iwl_pcie_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
204 static void iwl_pcie_txq_update_byte_cnt_tbl(struct iwl_trans
*trans
,
205 struct iwl_txq
*txq
, u16 byte_cnt
)
207 struct iwlagn_scd_bc_tbl
*scd_bc_tbl
;
208 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
209 int write_ptr
= txq
->q
.write_ptr
;
210 int txq_id
= txq
->q
.id
;
213 u16 len
= byte_cnt
+ IWL_TX_CRC_SIZE
+ IWL_TX_DELIMITER_SIZE
;
215 struct iwl_tx_cmd
*tx_cmd
=
216 (void *) txq
->entries
[txq
->q
.write_ptr
].cmd
->payload
;
218 scd_bc_tbl
= trans_pcie
->scd_bc_tbls
.addr
;
220 WARN_ON(len
> 0xFFF || write_ptr
>= TFD_QUEUE_SIZE_MAX
);
222 sta_id
= tx_cmd
->sta_id
;
223 sec_ctl
= tx_cmd
->sec_ctl
;
225 switch (sec_ctl
& TX_CMD_SEC_MSK
) {
227 len
+= IEEE80211_CCMP_MIC_LEN
;
229 case TX_CMD_SEC_TKIP
:
230 len
+= IEEE80211_TKIP_ICV_LEN
;
233 len
+= IEEE80211_WEP_IV_LEN
+ IEEE80211_WEP_ICV_LEN
;
237 if (trans_pcie
->bc_table_dword
)
238 len
= DIV_ROUND_UP(len
, 4);
240 bc_ent
= cpu_to_le16(len
| (sta_id
<< 12));
242 scd_bc_tbl
[txq_id
].tfd_offset
[write_ptr
] = bc_ent
;
244 if (write_ptr
< TFD_QUEUE_SIZE_BC_DUP
)
246 tfd_offset
[TFD_QUEUE_SIZE_MAX
+ write_ptr
] = bc_ent
;
249 static void iwl_pcie_txq_inval_byte_cnt_tbl(struct iwl_trans
*trans
,
252 struct iwl_trans_pcie
*trans_pcie
=
253 IWL_TRANS_GET_PCIE_TRANS(trans
);
254 struct iwlagn_scd_bc_tbl
*scd_bc_tbl
= trans_pcie
->scd_bc_tbls
.addr
;
255 int txq_id
= txq
->q
.id
;
256 int read_ptr
= txq
->q
.read_ptr
;
259 struct iwl_tx_cmd
*tx_cmd
=
260 (void *)txq
->entries
[txq
->q
.read_ptr
].cmd
->payload
;
262 WARN_ON(read_ptr
>= TFD_QUEUE_SIZE_MAX
);
264 if (txq_id
!= trans_pcie
->cmd_queue
)
265 sta_id
= tx_cmd
->sta_id
;
267 bc_ent
= cpu_to_le16(1 | (sta_id
<< 12));
268 scd_bc_tbl
[txq_id
].tfd_offset
[read_ptr
] = bc_ent
;
270 if (read_ptr
< TFD_QUEUE_SIZE_BC_DUP
)
272 tfd_offset
[TFD_QUEUE_SIZE_MAX
+ read_ptr
] = bc_ent
;
276 * iwl_pcie_txq_inc_wr_ptr - Send new write index to hardware
278 void iwl_pcie_txq_inc_wr_ptr(struct iwl_trans
*trans
, struct iwl_txq
*txq
)
281 int txq_id
= txq
->q
.id
;
283 if (txq
->need_update
== 0)
286 if (trans
->cfg
->base_params
->shadow_reg_enable
) {
287 /* shadow register enabled */
288 iwl_write32(trans
, HBUS_TARG_WRPTR
,
289 txq
->q
.write_ptr
| (txq_id
<< 8));
291 struct iwl_trans_pcie
*trans_pcie
=
292 IWL_TRANS_GET_PCIE_TRANS(trans
);
293 /* if we're trying to save power */
294 if (test_bit(STATUS_TPOWER_PMI
, &trans_pcie
->status
)) {
295 /* wake up nic if it's powered down ...
296 * uCode will wake up, and interrupt us again, so next
297 * time we'll skip this part. */
298 reg
= iwl_read32(trans
, CSR_UCODE_DRV_GP1
);
300 if (reg
& CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP
) {
301 IWL_DEBUG_INFO(trans
,
302 "Tx queue %d requesting wakeup,"
303 " GP1 = 0x%x\n", txq_id
, reg
);
304 iwl_set_bit(trans
, CSR_GP_CNTRL
,
305 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ
);
309 IWL_DEBUG_TX(trans
, "Q:%d WR: 0x%x\n", txq_id
,
312 iwl_write_direct32(trans
, HBUS_TARG_WRPTR
,
313 txq
->q
.write_ptr
| (txq_id
<< 8));
316 * else not in power-save mode,
317 * uCode will never sleep when we're
318 * trying to tx (during RFKILL, we're not trying to tx).
321 iwl_write32(trans
, HBUS_TARG_WRPTR
,
322 txq
->q
.write_ptr
| (txq_id
<< 8));
324 txq
->need_update
= 0;
327 static inline dma_addr_t
iwl_pcie_tfd_tb_get_addr(struct iwl_tfd
*tfd
, u8 idx
)
329 struct iwl_tfd_tb
*tb
= &tfd
->tbs
[idx
];
331 dma_addr_t addr
= get_unaligned_le32(&tb
->lo
);
332 if (sizeof(dma_addr_t
) > sizeof(u32
))
334 ((dma_addr_t
)(le16_to_cpu(tb
->hi_n_len
) & 0xF) << 16) << 16;
339 static inline u16
iwl_pcie_tfd_tb_get_len(struct iwl_tfd
*tfd
, u8 idx
)
341 struct iwl_tfd_tb
*tb
= &tfd
->tbs
[idx
];
343 return le16_to_cpu(tb
->hi_n_len
) >> 4;
346 static inline void iwl_pcie_tfd_set_tb(struct iwl_tfd
*tfd
, u8 idx
,
347 dma_addr_t addr
, u16 len
)
349 struct iwl_tfd_tb
*tb
= &tfd
->tbs
[idx
];
350 u16 hi_n_len
= len
<< 4;
352 put_unaligned_le32(addr
, &tb
->lo
);
353 if (sizeof(dma_addr_t
) > sizeof(u32
))
354 hi_n_len
|= ((addr
>> 16) >> 16) & 0xF;
356 tb
->hi_n_len
= cpu_to_le16(hi_n_len
);
358 tfd
->num_tbs
= idx
+ 1;
361 static inline u8
iwl_pcie_tfd_get_num_tbs(struct iwl_tfd
*tfd
)
363 return tfd
->num_tbs
& 0x1f;
366 static void iwl_pcie_tfd_unmap(struct iwl_trans
*trans
,
367 struct iwl_cmd_meta
*meta
,
373 /* Sanity check on number of chunks */
374 num_tbs
= iwl_pcie_tfd_get_num_tbs(tfd
);
376 if (num_tbs
>= IWL_NUM_OF_TBS
) {
377 IWL_ERR(trans
, "Too many chunks: %i\n", num_tbs
);
378 /* @todo issue fatal error, it is quite serious situation */
382 /* first TB is never freed - it's the scratchbuf data */
384 for (i
= 1; i
< num_tbs
; i
++)
385 dma_unmap_single(trans
->dev
, iwl_pcie_tfd_tb_get_addr(tfd
, i
),
386 iwl_pcie_tfd_tb_get_len(tfd
, i
),
393 * iwl_pcie_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
394 * @trans - transport private data
396 * @dma_dir - the direction of the DMA mapping
398 * Does NOT advance any TFD circular buffer read/write indexes
399 * Does NOT free the TFD itself (which is within circular buffer)
401 static void iwl_pcie_txq_free_tfd(struct iwl_trans
*trans
, struct iwl_txq
*txq
)
403 struct iwl_tfd
*tfd_tmp
= txq
->tfds
;
405 /* rd_ptr is bounded by n_bd and idx is bounded by n_window */
406 int rd_ptr
= txq
->q
.read_ptr
;
407 int idx
= get_cmd_index(&txq
->q
, rd_ptr
);
409 lockdep_assert_held(&txq
->lock
);
411 /* We have only q->n_window txq->entries, but we use q->n_bd tfds */
412 iwl_pcie_tfd_unmap(trans
, &txq
->entries
[idx
].meta
, &tfd_tmp
[rd_ptr
]);
418 skb
= txq
->entries
[idx
].skb
;
420 /* Can be called from irqs-disabled context
421 * If skb is not NULL, it means that the whole queue is being
422 * freed and that the queue is not empty - free the skb
425 iwl_op_mode_free_skb(trans
->op_mode
, skb
);
426 txq
->entries
[idx
].skb
= NULL
;
431 static int iwl_pcie_txq_build_tfd(struct iwl_trans
*trans
, struct iwl_txq
*txq
,
432 dma_addr_t addr
, u16 len
, u8 reset
)
435 struct iwl_tfd
*tfd
, *tfd_tmp
;
440 tfd
= &tfd_tmp
[q
->write_ptr
];
443 memset(tfd
, 0, sizeof(*tfd
));
445 num_tbs
= iwl_pcie_tfd_get_num_tbs(tfd
);
447 /* Each TFD can point to a maximum 20 Tx buffers */
448 if (num_tbs
>= IWL_NUM_OF_TBS
) {
449 IWL_ERR(trans
, "Error can not send more than %d chunks\n",
454 if (WARN_ON(addr
& ~DMA_BIT_MASK(36)))
457 if (unlikely(addr
& ~IWL_TX_DMA_MASK
))
458 IWL_ERR(trans
, "Unaligned address = %llx\n",
459 (unsigned long long)addr
);
461 iwl_pcie_tfd_set_tb(tfd
, num_tbs
, addr
, len
);
466 static int iwl_pcie_txq_alloc(struct iwl_trans
*trans
,
467 struct iwl_txq
*txq
, int slots_num
,
470 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
471 size_t tfd_sz
= sizeof(struct iwl_tfd
) * TFD_QUEUE_SIZE_MAX
;
472 size_t scratchbuf_sz
;
475 if (WARN_ON(txq
->entries
|| txq
->tfds
))
478 setup_timer(&txq
->stuck_timer
, iwl_pcie_txq_stuck_timer
,
480 txq
->trans_pcie
= trans_pcie
;
482 txq
->q
.n_window
= slots_num
;
484 txq
->entries
= kcalloc(slots_num
,
485 sizeof(struct iwl_pcie_txq_entry
),
491 if (txq_id
== trans_pcie
->cmd_queue
)
492 for (i
= 0; i
< slots_num
; i
++) {
493 txq
->entries
[i
].cmd
=
494 kmalloc(sizeof(struct iwl_device_cmd
),
496 if (!txq
->entries
[i
].cmd
)
500 /* Circular buffer of transmit frame descriptors (TFDs),
501 * shared with device */
502 txq
->tfds
= dma_alloc_coherent(trans
->dev
, tfd_sz
,
503 &txq
->q
.dma_addr
, GFP_KERNEL
);
507 BUILD_BUG_ON(IWL_HCMD_SCRATCHBUF_SIZE
!= sizeof(*txq
->scratchbufs
));
508 BUILD_BUG_ON(offsetof(struct iwl_pcie_txq_scratch_buf
, scratch
) !=
509 sizeof(struct iwl_cmd_header
) +
510 offsetof(struct iwl_tx_cmd
, scratch
));
512 scratchbuf_sz
= sizeof(*txq
->scratchbufs
) * slots_num
;
514 txq
->scratchbufs
= dma_alloc_coherent(trans
->dev
, scratchbuf_sz
,
515 &txq
->scratchbufs_dma
,
517 if (!txq
->scratchbufs
)
524 dma_free_coherent(trans
->dev
, tfd_sz
, txq
->tfds
, txq
->q
.dma_addr
);
526 if (txq
->entries
&& txq_id
== trans_pcie
->cmd_queue
)
527 for (i
= 0; i
< slots_num
; i
++)
528 kfree(txq
->entries
[i
].cmd
);
536 static int iwl_pcie_txq_init(struct iwl_trans
*trans
, struct iwl_txq
*txq
,
537 int slots_num
, u32 txq_id
)
541 txq
->need_update
= 0;
543 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
544 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
545 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX
& (TFD_QUEUE_SIZE_MAX
- 1));
547 /* Initialize queue's high/low-water marks, and head/tail indexes */
548 ret
= iwl_queue_init(&txq
->q
, TFD_QUEUE_SIZE_MAX
, slots_num
,
553 spin_lock_init(&txq
->lock
);
556 * Tell nic where to find circular buffer of Tx Frame Descriptors for
557 * given Tx queue, and enable the DMA channel used for that queue.
558 * Circular buffer (TFD queue in DRAM) physical base address */
559 iwl_write_direct32(trans
, FH_MEM_CBBC_QUEUE(txq_id
),
560 txq
->q
.dma_addr
>> 8);
566 * iwl_pcie_txq_unmap - Unmap any remaining DMA mappings and free skb's
568 static void iwl_pcie_txq_unmap(struct iwl_trans
*trans
, int txq_id
)
570 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
571 struct iwl_txq
*txq
= &trans_pcie
->txq
[txq_id
];
572 struct iwl_queue
*q
= &txq
->q
;
577 spin_lock_bh(&txq
->lock
);
578 while (q
->write_ptr
!= q
->read_ptr
) {
579 IWL_DEBUG_TX_REPLY(trans
, "Q %d Free %d\n",
580 txq_id
, q
->read_ptr
);
581 iwl_pcie_txq_free_tfd(trans
, txq
);
582 q
->read_ptr
= iwl_queue_inc_wrap(q
->read_ptr
, q
->n_bd
);
585 spin_unlock_bh(&txq
->lock
);
587 /* just in case - this queue may have been stopped */
588 iwl_wake_queue(trans
, txq
);
592 * iwl_pcie_txq_free - Deallocate DMA queue.
593 * @txq: Transmit queue to deallocate.
595 * Empty queue by removing and destroying all BD's.
597 * 0-fill, but do not free "txq" descriptor structure.
599 static void iwl_pcie_txq_free(struct iwl_trans
*trans
, int txq_id
)
601 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
602 struct iwl_txq
*txq
= &trans_pcie
->txq
[txq_id
];
603 struct device
*dev
= trans
->dev
;
609 iwl_pcie_txq_unmap(trans
, txq_id
);
611 /* De-alloc array of command/tx buffers */
612 if (txq_id
== trans_pcie
->cmd_queue
)
613 for (i
= 0; i
< txq
->q
.n_window
; i
++) {
614 kfree(txq
->entries
[i
].cmd
);
615 kfree(txq
->entries
[i
].free_buf
);
618 /* De-alloc circular buffer of TFDs */
620 dma_free_coherent(dev
, sizeof(struct iwl_tfd
) *
621 txq
->q
.n_bd
, txq
->tfds
, txq
->q
.dma_addr
);
624 dma_free_coherent(dev
,
625 sizeof(*txq
->scratchbufs
) * txq
->q
.n_window
,
626 txq
->scratchbufs
, txq
->scratchbufs_dma
);
632 del_timer_sync(&txq
->stuck_timer
);
634 /* 0-fill queue descriptor structure */
635 memset(txq
, 0, sizeof(*txq
));
639 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
641 static void iwl_pcie_txq_set_sched(struct iwl_trans
*trans
, u32 mask
)
643 struct iwl_trans_pcie __maybe_unused
*trans_pcie
=
644 IWL_TRANS_GET_PCIE_TRANS(trans
);
646 iwl_write_prph(trans
, SCD_TXFACT
, mask
);
649 void iwl_pcie_tx_start(struct iwl_trans
*trans
, u32 scd_base_addr
)
651 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
652 int nq
= trans
->cfg
->base_params
->num_of_queues
;
655 int clear_dwords
= (SCD_TRANS_TBL_OFFSET_QUEUE(nq
) -
656 SCD_CONTEXT_MEM_LOWER_BOUND
) / sizeof(u32
);
658 /* make sure all queue are not stopped/used */
659 memset(trans_pcie
->queue_stopped
, 0, sizeof(trans_pcie
->queue_stopped
));
660 memset(trans_pcie
->queue_used
, 0, sizeof(trans_pcie
->queue_used
));
662 trans_pcie
->scd_base_addr
=
663 iwl_read_prph(trans
, SCD_SRAM_BASE_ADDR
);
665 WARN_ON(scd_base_addr
!= 0 &&
666 scd_base_addr
!= trans_pcie
->scd_base_addr
);
668 /* reset context data, TX status and translation data */
669 iwl_trans_write_mem(trans
, trans_pcie
->scd_base_addr
+
670 SCD_CONTEXT_MEM_LOWER_BOUND
,
673 iwl_write_prph(trans
, SCD_DRAM_BASE_ADDR
,
674 trans_pcie
->scd_bc_tbls
.dma
>> 10);
676 /* The chain extension of the SCD doesn't work well. This feature is
677 * enabled by default by the HW, so we need to disable it manually.
679 iwl_write_prph(trans
, SCD_CHAINEXT_EN
, 0);
681 iwl_trans_ac_txq_enable(trans
, trans_pcie
->cmd_queue
,
682 trans_pcie
->cmd_fifo
);
684 /* Activate all Tx DMA/FIFO channels */
685 iwl_pcie_txq_set_sched(trans
, IWL_MASK(0, 7));
687 /* Enable DMA channel */
688 for (chan
= 0; chan
< FH_TCSR_CHNL_NUM
; chan
++)
689 iwl_write_direct32(trans
, FH_TCSR_CHNL_TX_CONFIG_REG(chan
),
690 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE
|
691 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE
);
693 /* Update FH chicken bits */
694 reg_val
= iwl_read_direct32(trans
, FH_TX_CHICKEN_BITS_REG
);
695 iwl_write_direct32(trans
, FH_TX_CHICKEN_BITS_REG
,
696 reg_val
| FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN
);
698 /* Enable L1-Active */
699 iwl_clear_bits_prph(trans
, APMG_PCIDEV_STT_REG
,
700 APMG_PCIDEV_STT_VAL_L1_ACT_DIS
);
703 void iwl_trans_pcie_tx_reset(struct iwl_trans
*trans
)
705 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
708 for (txq_id
= 0; txq_id
< trans
->cfg
->base_params
->num_of_queues
;
710 struct iwl_txq
*txq
= &trans_pcie
->txq
[txq_id
];
712 iwl_write_direct32(trans
, FH_MEM_CBBC_QUEUE(txq_id
),
713 txq
->q
.dma_addr
>> 8);
714 iwl_pcie_txq_unmap(trans
, txq_id
);
716 txq
->q
.write_ptr
= 0;
719 /* Tell NIC where to find the "keep warm" buffer */
720 iwl_write_direct32(trans
, FH_KW_MEM_ADDR_REG
,
721 trans_pcie
->kw
.dma
>> 4);
723 iwl_pcie_tx_start(trans
, trans_pcie
->scd_base_addr
);
727 * iwl_pcie_tx_stop - Stop all Tx DMA channels
729 int iwl_pcie_tx_stop(struct iwl_trans
*trans
)
731 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
735 /* Turn off all Tx DMA fifos */
736 spin_lock_irqsave(&trans_pcie
->irq_lock
, flags
);
738 iwl_pcie_txq_set_sched(trans
, 0);
740 /* Stop each Tx DMA channel, and wait for it to be idle */
741 for (ch
= 0; ch
< FH_TCSR_CHNL_NUM
; ch
++) {
742 iwl_write_direct32(trans
,
743 FH_TCSR_CHNL_TX_CONFIG_REG(ch
), 0x0);
744 ret
= iwl_poll_direct_bit(trans
, FH_TSSR_TX_STATUS_REG
,
745 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch
), 1000);
748 "Failing on timeout while stopping DMA channel %d [0x%08x]\n",
750 iwl_read_direct32(trans
,
751 FH_TSSR_TX_STATUS_REG
));
753 spin_unlock_irqrestore(&trans_pcie
->irq_lock
, flags
);
755 if (!trans_pcie
->txq
) {
757 "Stopping tx queues that aren't allocated...\n");
761 /* Unmap DMA from host system and free skb's */
762 for (txq_id
= 0; txq_id
< trans
->cfg
->base_params
->num_of_queues
;
764 iwl_pcie_txq_unmap(trans
, txq_id
);
770 * iwl_trans_tx_free - Free TXQ Context
772 * Destroy all TX DMA queues and structures
774 void iwl_pcie_tx_free(struct iwl_trans
*trans
)
777 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
780 if (trans_pcie
->txq
) {
782 txq_id
< trans
->cfg
->base_params
->num_of_queues
; txq_id
++)
783 iwl_pcie_txq_free(trans
, txq_id
);
786 kfree(trans_pcie
->txq
);
787 trans_pcie
->txq
= NULL
;
789 iwl_pcie_free_dma_ptr(trans
, &trans_pcie
->kw
);
791 iwl_pcie_free_dma_ptr(trans
, &trans_pcie
->scd_bc_tbls
);
795 * iwl_pcie_tx_alloc - allocate TX context
796 * Allocate all Tx DMA structures and initialize them
798 static int iwl_pcie_tx_alloc(struct iwl_trans
*trans
)
801 int txq_id
, slots_num
;
802 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
804 u16 scd_bc_tbls_size
= trans
->cfg
->base_params
->num_of_queues
*
805 sizeof(struct iwlagn_scd_bc_tbl
);
807 /*It is not allowed to alloc twice, so warn when this happens.
808 * We cannot rely on the previous allocation, so free and fail */
809 if (WARN_ON(trans_pcie
->txq
)) {
814 ret
= iwl_pcie_alloc_dma_ptr(trans
, &trans_pcie
->scd_bc_tbls
,
817 IWL_ERR(trans
, "Scheduler BC Table allocation failed\n");
821 /* Alloc keep-warm buffer */
822 ret
= iwl_pcie_alloc_dma_ptr(trans
, &trans_pcie
->kw
, IWL_KW_SIZE
);
824 IWL_ERR(trans
, "Keep Warm allocation failed\n");
828 trans_pcie
->txq
= kcalloc(trans
->cfg
->base_params
->num_of_queues
,
829 sizeof(struct iwl_txq
), GFP_KERNEL
);
830 if (!trans_pcie
->txq
) {
831 IWL_ERR(trans
, "Not enough memory for txq\n");
836 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
837 for (txq_id
= 0; txq_id
< trans
->cfg
->base_params
->num_of_queues
;
839 slots_num
= (txq_id
== trans_pcie
->cmd_queue
) ?
840 TFD_CMD_SLOTS
: TFD_TX_CMD_SLOTS
;
841 ret
= iwl_pcie_txq_alloc(trans
, &trans_pcie
->txq
[txq_id
],
844 IWL_ERR(trans
, "Tx %d queue alloc failed\n", txq_id
);
852 iwl_pcie_tx_free(trans
);
856 int iwl_pcie_tx_init(struct iwl_trans
*trans
)
858 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
860 int txq_id
, slots_num
;
864 if (!trans_pcie
->txq
) {
865 ret
= iwl_pcie_tx_alloc(trans
);
871 spin_lock_irqsave(&trans_pcie
->irq_lock
, flags
);
873 /* Turn off all Tx DMA fifos */
874 iwl_write_prph(trans
, SCD_TXFACT
, 0);
876 /* Tell NIC where to find the "keep warm" buffer */
877 iwl_write_direct32(trans
, FH_KW_MEM_ADDR_REG
,
878 trans_pcie
->kw
.dma
>> 4);
880 spin_unlock_irqrestore(&trans_pcie
->irq_lock
, flags
);
882 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
883 for (txq_id
= 0; txq_id
< trans
->cfg
->base_params
->num_of_queues
;
885 slots_num
= (txq_id
== trans_pcie
->cmd_queue
) ?
886 TFD_CMD_SLOTS
: TFD_TX_CMD_SLOTS
;
887 ret
= iwl_pcie_txq_init(trans
, &trans_pcie
->txq
[txq_id
],
890 IWL_ERR(trans
, "Tx %d queue init failed\n", txq_id
);
897 /*Upon error, free only if we allocated something */
899 iwl_pcie_tx_free(trans
);
903 static inline void iwl_pcie_txq_progress(struct iwl_trans_pcie
*trans_pcie
,
906 if (!trans_pcie
->wd_timeout
)
910 * if empty delete timer, otherwise move timer forward
911 * since we're making progress on this queue
913 if (txq
->q
.read_ptr
== txq
->q
.write_ptr
)
914 del_timer(&txq
->stuck_timer
);
916 mod_timer(&txq
->stuck_timer
, jiffies
+ trans_pcie
->wd_timeout
);
919 /* Frees buffers until index _not_ inclusive */
920 void iwl_trans_pcie_reclaim(struct iwl_trans
*trans
, int txq_id
, int ssn
,
921 struct sk_buff_head
*skbs
)
923 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
924 struct iwl_txq
*txq
= &trans_pcie
->txq
[txq_id
];
925 /* n_bd is usually 256 => n_bd - 1 = 0xff */
926 int tfd_num
= ssn
& (txq
->q
.n_bd
- 1);
927 struct iwl_queue
*q
= &txq
->q
;
930 /* This function is not meant to release cmd queue*/
931 if (WARN_ON(txq_id
== trans_pcie
->cmd_queue
))
934 spin_lock_bh(&txq
->lock
);
937 IWL_DEBUG_TX_QUEUES(trans
, "Q %d inactive - ignoring idx %d\n",
942 if (txq
->q
.read_ptr
== tfd_num
)
945 IWL_DEBUG_TX_REPLY(trans
, "[Q %d] %d -> %d (%d)\n",
946 txq_id
, txq
->q
.read_ptr
, tfd_num
, ssn
);
948 /*Since we free until index _not_ inclusive, the one before index is
949 * the last we will free. This one must be used */
950 last_to_free
= iwl_queue_dec_wrap(tfd_num
, q
->n_bd
);
952 if (!iwl_queue_used(q
, last_to_free
)) {
954 "%s: Read index for DMA queue txq id (%d), last_to_free %d is out of range [0-%d] %d %d.\n",
955 __func__
, txq_id
, last_to_free
, q
->n_bd
,
956 q
->write_ptr
, q
->read_ptr
);
960 if (WARN_ON(!skb_queue_empty(skbs
)))
964 q
->read_ptr
!= tfd_num
;
965 q
->read_ptr
= iwl_queue_inc_wrap(q
->read_ptr
, q
->n_bd
)) {
967 if (WARN_ON_ONCE(txq
->entries
[txq
->q
.read_ptr
].skb
== NULL
))
970 __skb_queue_tail(skbs
, txq
->entries
[txq
->q
.read_ptr
].skb
);
972 txq
->entries
[txq
->q
.read_ptr
].skb
= NULL
;
974 iwl_pcie_txq_inval_byte_cnt_tbl(trans
, txq
);
976 iwl_pcie_txq_free_tfd(trans
, txq
);
979 iwl_pcie_txq_progress(trans_pcie
, txq
);
981 if (iwl_queue_space(&txq
->q
) > txq
->q
.low_mark
)
982 iwl_wake_queue(trans
, txq
);
984 spin_unlock_bh(&txq
->lock
);
988 * iwl_pcie_cmdq_reclaim - Reclaim TX command queue entries already Tx'd
990 * When FW advances 'R' index, all entries between old and new 'R' index
991 * need to be reclaimed. As result, some free space forms. If there is
992 * enough free space (> low mark), wake the stack that feeds us.
994 static void iwl_pcie_cmdq_reclaim(struct iwl_trans
*trans
, int txq_id
, int idx
)
996 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
997 struct iwl_txq
*txq
= &trans_pcie
->txq
[txq_id
];
998 struct iwl_queue
*q
= &txq
->q
;
1001 lockdep_assert_held(&txq
->lock
);
1003 if ((idx
>= q
->n_bd
) || (!iwl_queue_used(q
, idx
))) {
1005 "%s: Read index for DMA queue txq id (%d), index %d is out of range [0-%d] %d %d.\n",
1006 __func__
, txq_id
, idx
, q
->n_bd
,
1007 q
->write_ptr
, q
->read_ptr
);
1011 for (idx
= iwl_queue_inc_wrap(idx
, q
->n_bd
); q
->read_ptr
!= idx
;
1012 q
->read_ptr
= iwl_queue_inc_wrap(q
->read_ptr
, q
->n_bd
)) {
1015 IWL_ERR(trans
, "HCMD skipped: index (%d) %d %d\n",
1016 idx
, q
->write_ptr
, q
->read_ptr
);
1017 iwl_op_mode_nic_error(trans
->op_mode
);
1021 iwl_pcie_txq_progress(trans_pcie
, txq
);
1024 static int iwl_pcie_txq_set_ratid_map(struct iwl_trans
*trans
, u16 ra_tid
,
1027 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1032 scd_q2ratid
= ra_tid
& SCD_QUEUE_RA_TID_MAP_RATID_MSK
;
1034 tbl_dw_addr
= trans_pcie
->scd_base_addr
+
1035 SCD_TRANS_TBL_OFFSET_QUEUE(txq_id
);
1037 tbl_dw
= iwl_trans_read_mem32(trans
, tbl_dw_addr
);
1040 tbl_dw
= (scd_q2ratid
<< 16) | (tbl_dw
& 0x0000FFFF);
1042 tbl_dw
= scd_q2ratid
| (tbl_dw
& 0xFFFF0000);
1044 iwl_trans_write_mem32(trans
, tbl_dw_addr
, tbl_dw
);
1049 static inline void iwl_pcie_txq_set_inactive(struct iwl_trans
*trans
,
1052 /* Simply stop the queue, but don't change any configuration;
1053 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
1054 iwl_write_prph(trans
,
1055 SCD_QUEUE_STATUS_BITS(txq_id
),
1056 (0 << SCD_QUEUE_STTS_REG_POS_ACTIVE
)|
1057 (1 << SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN
));
1060 /* Receiver address (actually, Rx station's index into station table),
1061 * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */
1062 #define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
1064 void iwl_trans_pcie_txq_enable(struct iwl_trans
*trans
, int txq_id
, int fifo
,
1065 int sta_id
, int tid
, int frame_limit
, u16 ssn
)
1067 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1069 if (test_and_set_bit(txq_id
, trans_pcie
->queue_used
))
1070 WARN_ONCE(1, "queue %d already used - expect issues", txq_id
);
1072 /* Stop this Tx queue before configuring it */
1073 iwl_pcie_txq_set_inactive(trans
, txq_id
);
1075 /* Set this queue as a chain-building queue unless it is CMD queue */
1076 if (txq_id
!= trans_pcie
->cmd_queue
)
1077 iwl_set_bits_prph(trans
, SCD_QUEUECHAIN_SEL
, BIT(txq_id
));
1079 /* If this queue is mapped to a certain station: it is an AGG queue */
1081 u16 ra_tid
= BUILD_RAxTID(sta_id
, tid
);
1083 /* Map receiver-address / traffic-ID to this queue */
1084 iwl_pcie_txq_set_ratid_map(trans
, ra_tid
, txq_id
);
1086 /* enable aggregations for the queue */
1087 iwl_set_bits_prph(trans
, SCD_AGGR_SEL
, BIT(txq_id
));
1088 trans_pcie
->txq
[txq_id
].ampdu
= true;
1091 * disable aggregations for the queue, this will also make the
1092 * ra_tid mapping configuration irrelevant since it is now a
1095 iwl_clear_bits_prph(trans
, SCD_AGGR_SEL
, BIT(txq_id
));
1098 /* Place first TFD at index corresponding to start sequence number.
1099 * Assumes that ssn_idx is valid (!= 0xFFF) */
1100 trans_pcie
->txq
[txq_id
].q
.read_ptr
= (ssn
& 0xff);
1101 trans_pcie
->txq
[txq_id
].q
.write_ptr
= (ssn
& 0xff);
1103 iwl_write_direct32(trans
, HBUS_TARG_WRPTR
,
1104 (ssn
& 0xff) | (txq_id
<< 8));
1105 iwl_write_prph(trans
, SCD_QUEUE_RDPTR(txq_id
), ssn
);
1107 /* Set up Tx window size and frame limit for this queue */
1108 iwl_trans_write_mem32(trans
, trans_pcie
->scd_base_addr
+
1109 SCD_CONTEXT_QUEUE_OFFSET(txq_id
), 0);
1110 iwl_trans_write_mem32(trans
, trans_pcie
->scd_base_addr
+
1111 SCD_CONTEXT_QUEUE_OFFSET(txq_id
) + sizeof(u32
),
1112 ((frame_limit
<< SCD_QUEUE_CTX_REG2_WIN_SIZE_POS
) &
1113 SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK
) |
1114 ((frame_limit
<< SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS
) &
1115 SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK
));
1117 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
1118 iwl_write_prph(trans
, SCD_QUEUE_STATUS_BITS(txq_id
),
1119 (1 << SCD_QUEUE_STTS_REG_POS_ACTIVE
) |
1120 (fifo
<< SCD_QUEUE_STTS_REG_POS_TXF
) |
1121 (1 << SCD_QUEUE_STTS_REG_POS_WSL
) |
1122 SCD_QUEUE_STTS_REG_MSK
);
1123 trans_pcie
->txq
[txq_id
].active
= true;
1124 IWL_DEBUG_TX_QUEUES(trans
, "Activate queue %d on FIFO %d WrPtr: %d\n",
1125 txq_id
, fifo
, ssn
& 0xff);
1128 void iwl_trans_pcie_txq_disable(struct iwl_trans
*trans
, int txq_id
)
1130 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1131 u32 stts_addr
= trans_pcie
->scd_base_addr
+
1132 SCD_TX_STTS_QUEUE_OFFSET(txq_id
);
1133 static const u32 zero_val
[4] = {};
1135 if (!test_and_clear_bit(txq_id
, trans_pcie
->queue_used
)) {
1136 WARN_ONCE(1, "queue %d not used", txq_id
);
1140 iwl_pcie_txq_set_inactive(trans
, txq_id
);
1142 iwl_trans_write_mem(trans
, stts_addr
, (void *)zero_val
,
1143 ARRAY_SIZE(zero_val
));
1145 iwl_pcie_txq_unmap(trans
, txq_id
);
1146 trans_pcie
->txq
[txq_id
].ampdu
= false;
1148 IWL_DEBUG_TX_QUEUES(trans
, "Deactivate queue %d\n", txq_id
);
1151 /*************** HOST COMMAND QUEUE FUNCTIONS *****/
1154 * iwl_pcie_enqueue_hcmd - enqueue a uCode command
1155 * @priv: device private data point
1156 * @cmd: a point to the ucode command structure
1158 * The function returns < 0 values to indicate the operation is
1159 * failed. On success, it turns the index (> 0) of command in the
1162 static int iwl_pcie_enqueue_hcmd(struct iwl_trans
*trans
,
1163 struct iwl_host_cmd
*cmd
)
1165 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1166 struct iwl_txq
*txq
= &trans_pcie
->txq
[trans_pcie
->cmd_queue
];
1167 struct iwl_queue
*q
= &txq
->q
;
1168 struct iwl_device_cmd
*out_cmd
;
1169 struct iwl_cmd_meta
*out_meta
;
1170 void *dup_buf
= NULL
;
1171 dma_addr_t phys_addr
;
1173 u16 copy_size
, cmd_size
, scratch_size
;
1174 bool had_nocopy
= false;
1177 const u8
*cmddata
[IWL_MAX_CMD_TBS_PER_TFD
];
1178 u16 cmdlen
[IWL_MAX_CMD_TBS_PER_TFD
];
1180 copy_size
= sizeof(out_cmd
->hdr
);
1181 cmd_size
= sizeof(out_cmd
->hdr
);
1183 /* need one for the header if the first is NOCOPY */
1184 BUILD_BUG_ON(IWL_MAX_CMD_TBS_PER_TFD
> IWL_NUM_OF_TBS
- 1);
1186 for (i
= 0; i
< IWL_MAX_CMD_TBS_PER_TFD
; i
++) {
1187 cmddata
[i
] = cmd
->data
[i
];
1188 cmdlen
[i
] = cmd
->len
[i
];
1193 /* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */
1194 if (copy_size
< IWL_HCMD_SCRATCHBUF_SIZE
) {
1195 int copy
= IWL_HCMD_SCRATCHBUF_SIZE
- copy_size
;
1197 if (copy
> cmdlen
[i
])
1204 if (cmd
->dataflags
[i
] & IWL_HCMD_DFL_NOCOPY
) {
1206 if (WARN_ON(cmd
->dataflags
[i
] & IWL_HCMD_DFL_DUP
)) {
1210 } else if (cmd
->dataflags
[i
] & IWL_HCMD_DFL_DUP
) {
1212 * This is also a chunk that isn't copied
1213 * to the static buffer so set had_nocopy.
1217 /* only allowed once */
1218 if (WARN_ON(dup_buf
)) {
1223 dup_buf
= kmemdup(cmddata
[i
], cmdlen
[i
],
1228 /* NOCOPY must not be followed by normal! */
1229 if (WARN_ON(had_nocopy
)) {
1233 copy_size
+= cmdlen
[i
];
1235 cmd_size
+= cmd
->len
[i
];
1239 * If any of the command structures end up being larger than
1240 * the TFD_MAX_PAYLOAD_SIZE and they aren't dynamically
1241 * allocated into separate TFDs, then we will need to
1242 * increase the size of the buffers.
1244 if (WARN(copy_size
> TFD_MAX_PAYLOAD_SIZE
,
1245 "Command %s (%#x) is too large (%d bytes)\n",
1246 get_cmd_string(trans_pcie
, cmd
->id
), cmd
->id
, copy_size
)) {
1251 spin_lock_bh(&txq
->lock
);
1253 if (iwl_queue_space(q
) < ((cmd
->flags
& CMD_ASYNC
) ? 2 : 1)) {
1254 spin_unlock_bh(&txq
->lock
);
1256 IWL_ERR(trans
, "No space in command queue\n");
1257 iwl_op_mode_cmd_queue_full(trans
->op_mode
);
1262 idx
= get_cmd_index(q
, q
->write_ptr
);
1263 out_cmd
= txq
->entries
[idx
].cmd
;
1264 out_meta
= &txq
->entries
[idx
].meta
;
1266 memset(out_meta
, 0, sizeof(*out_meta
)); /* re-initialize to NULL */
1267 if (cmd
->flags
& CMD_WANT_SKB
)
1268 out_meta
->source
= cmd
;
1270 /* set up the header */
1272 out_cmd
->hdr
.cmd
= cmd
->id
;
1273 out_cmd
->hdr
.flags
= 0;
1274 out_cmd
->hdr
.sequence
=
1275 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie
->cmd_queue
) |
1276 INDEX_TO_SEQ(q
->write_ptr
));
1278 /* and copy the data that needs to be copied */
1279 cmd_pos
= offsetof(struct iwl_device_cmd
, payload
);
1280 copy_size
= sizeof(out_cmd
->hdr
);
1281 for (i
= 0; i
< IWL_MAX_CMD_TBS_PER_TFD
; i
++) {
1287 /* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */
1288 if (copy_size
< IWL_HCMD_SCRATCHBUF_SIZE
) {
1289 copy
= IWL_HCMD_SCRATCHBUF_SIZE
- copy_size
;
1291 if (copy
> cmd
->len
[i
])
1295 /* copy everything if not nocopy/dup */
1296 if (!(cmd
->dataflags
[i
] & (IWL_HCMD_DFL_NOCOPY
|
1301 memcpy((u8
*)out_cmd
+ cmd_pos
, cmd
->data
[i
], copy
);
1308 "Sending command %s (#%x), seq: 0x%04X, %d bytes at %d[%d]:%d\n",
1309 get_cmd_string(trans_pcie
, out_cmd
->hdr
.cmd
),
1310 out_cmd
->hdr
.cmd
, le16_to_cpu(out_cmd
->hdr
.sequence
),
1311 cmd_size
, q
->write_ptr
, idx
, trans_pcie
->cmd_queue
);
1313 /* start the TFD with the scratchbuf */
1314 scratch_size
= min_t(int, copy_size
, IWL_HCMD_SCRATCHBUF_SIZE
);
1315 memcpy(&txq
->scratchbufs
[q
->write_ptr
], &out_cmd
->hdr
, scratch_size
);
1316 iwl_pcie_txq_build_tfd(trans
, txq
,
1317 iwl_pcie_get_scratchbuf_dma(txq
, q
->write_ptr
),
1320 /* map first command fragment, if any remains */
1321 if (copy_size
> scratch_size
) {
1322 phys_addr
= dma_map_single(trans
->dev
,
1323 ((u8
*)&out_cmd
->hdr
) + scratch_size
,
1324 copy_size
- scratch_size
,
1326 if (dma_mapping_error(trans
->dev
, phys_addr
)) {
1327 iwl_pcie_tfd_unmap(trans
, out_meta
,
1328 &txq
->tfds
[q
->write_ptr
]);
1333 iwl_pcie_txq_build_tfd(trans
, txq
, phys_addr
,
1334 copy_size
- scratch_size
, 0);
1337 /* map the remaining (adjusted) nocopy/dup fragments */
1338 for (i
= 0; i
< IWL_MAX_CMD_TBS_PER_TFD
; i
++) {
1339 const void *data
= cmddata
[i
];
1343 if (!(cmd
->dataflags
[i
] & (IWL_HCMD_DFL_NOCOPY
|
1346 if (cmd
->dataflags
[i
] & IWL_HCMD_DFL_DUP
)
1348 phys_addr
= dma_map_single(trans
->dev
, (void *)data
,
1349 cmdlen
[i
], DMA_TO_DEVICE
);
1350 if (dma_mapping_error(trans
->dev
, phys_addr
)) {
1351 iwl_pcie_tfd_unmap(trans
, out_meta
,
1352 &txq
->tfds
[q
->write_ptr
]);
1357 iwl_pcie_txq_build_tfd(trans
, txq
, phys_addr
, cmdlen
[i
], 0);
1360 out_meta
->flags
= cmd
->flags
;
1361 if (WARN_ON_ONCE(txq
->entries
[idx
].free_buf
))
1362 kfree(txq
->entries
[idx
].free_buf
);
1363 txq
->entries
[idx
].free_buf
= dup_buf
;
1365 txq
->need_update
= 1;
1367 trace_iwlwifi_dev_hcmd(trans
->dev
, cmd
, cmd_size
, &out_cmd
->hdr
);
1369 /* start timer if queue currently empty */
1370 if (q
->read_ptr
== q
->write_ptr
&& trans_pcie
->wd_timeout
)
1371 mod_timer(&txq
->stuck_timer
, jiffies
+ trans_pcie
->wd_timeout
);
1373 /* Increment and update queue's write index */
1374 q
->write_ptr
= iwl_queue_inc_wrap(q
->write_ptr
, q
->n_bd
);
1375 iwl_pcie_txq_inc_wr_ptr(trans
, txq
);
1378 spin_unlock_bh(&txq
->lock
);
1386 * iwl_pcie_hcmd_complete - Pull unused buffers off the queue and reclaim them
1387 * @rxb: Rx buffer to reclaim
1388 * @handler_status: return value of the handler of the command
1389 * (put in setup_rx_handlers)
1391 * If an Rx buffer has an async callback associated with it the callback
1392 * will be executed. The attached skb (if present) will only be freed
1393 * if the callback returns 1
1395 void iwl_pcie_hcmd_complete(struct iwl_trans
*trans
,
1396 struct iwl_rx_cmd_buffer
*rxb
, int handler_status
)
1398 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
1399 u16 sequence
= le16_to_cpu(pkt
->hdr
.sequence
);
1400 int txq_id
= SEQ_TO_QUEUE(sequence
);
1401 int index
= SEQ_TO_INDEX(sequence
);
1403 struct iwl_device_cmd
*cmd
;
1404 struct iwl_cmd_meta
*meta
;
1405 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1406 struct iwl_txq
*txq
= &trans_pcie
->txq
[trans_pcie
->cmd_queue
];
1408 /* If a Tx command is being handled and it isn't in the actual
1409 * command queue then there a command routing bug has been introduced
1410 * in the queue management code. */
1411 if (WARN(txq_id
!= trans_pcie
->cmd_queue
,
1412 "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n",
1413 txq_id
, trans_pcie
->cmd_queue
, sequence
,
1414 trans_pcie
->txq
[trans_pcie
->cmd_queue
].q
.read_ptr
,
1415 trans_pcie
->txq
[trans_pcie
->cmd_queue
].q
.write_ptr
)) {
1416 iwl_print_hex_error(trans
, pkt
, 32);
1420 spin_lock_bh(&txq
->lock
);
1422 cmd_index
= get_cmd_index(&txq
->q
, index
);
1423 cmd
= txq
->entries
[cmd_index
].cmd
;
1424 meta
= &txq
->entries
[cmd_index
].meta
;
1426 iwl_pcie_tfd_unmap(trans
, meta
, &txq
->tfds
[index
]);
1428 /* Input error checking is done when commands are added to queue. */
1429 if (meta
->flags
& CMD_WANT_SKB
) {
1430 struct page
*p
= rxb_steal_page(rxb
);
1432 meta
->source
->resp_pkt
= pkt
;
1433 meta
->source
->_rx_page_addr
= (unsigned long)page_address(p
);
1434 meta
->source
->_rx_page_order
= trans_pcie
->rx_page_order
;
1435 meta
->source
->handler_status
= handler_status
;
1438 iwl_pcie_cmdq_reclaim(trans
, txq_id
, index
);
1440 if (!(meta
->flags
& CMD_ASYNC
)) {
1441 if (!test_bit(STATUS_HCMD_ACTIVE
, &trans_pcie
->status
)) {
1443 "HCMD_ACTIVE already clear for command %s\n",
1444 get_cmd_string(trans_pcie
, cmd
->hdr
.cmd
));
1446 clear_bit(STATUS_HCMD_ACTIVE
, &trans_pcie
->status
);
1447 IWL_DEBUG_INFO(trans
, "Clearing HCMD_ACTIVE for command %s\n",
1448 get_cmd_string(trans_pcie
, cmd
->hdr
.cmd
));
1449 wake_up(&trans_pcie
->wait_command_queue
);
1454 spin_unlock_bh(&txq
->lock
);
1457 #define HOST_COMPLETE_TIMEOUT (2 * HZ)
1459 static int iwl_pcie_send_hcmd_async(struct iwl_trans
*trans
,
1460 struct iwl_host_cmd
*cmd
)
1462 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1465 /* An asynchronous command can not expect an SKB to be set. */
1466 if (WARN_ON(cmd
->flags
& CMD_WANT_SKB
))
1469 ret
= iwl_pcie_enqueue_hcmd(trans
, cmd
);
1472 "Error sending %s: enqueue_hcmd failed: %d\n",
1473 get_cmd_string(trans_pcie
, cmd
->id
), ret
);
1479 static int iwl_pcie_send_hcmd_sync(struct iwl_trans
*trans
,
1480 struct iwl_host_cmd
*cmd
)
1482 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1486 IWL_DEBUG_INFO(trans
, "Attempting to send sync command %s\n",
1487 get_cmd_string(trans_pcie
, cmd
->id
));
1489 if (WARN_ON(test_and_set_bit(STATUS_HCMD_ACTIVE
,
1490 &trans_pcie
->status
))) {
1491 IWL_ERR(trans
, "Command %s: a command is already active!\n",
1492 get_cmd_string(trans_pcie
, cmd
->id
));
1496 IWL_DEBUG_INFO(trans
, "Setting HCMD_ACTIVE for command %s\n",
1497 get_cmd_string(trans_pcie
, cmd
->id
));
1499 cmd_idx
= iwl_pcie_enqueue_hcmd(trans
, cmd
);
1502 clear_bit(STATUS_HCMD_ACTIVE
, &trans_pcie
->status
);
1504 "Error sending %s: enqueue_hcmd failed: %d\n",
1505 get_cmd_string(trans_pcie
, cmd
->id
), ret
);
1509 ret
= wait_event_timeout(trans_pcie
->wait_command_queue
,
1510 !test_bit(STATUS_HCMD_ACTIVE
,
1511 &trans_pcie
->status
),
1512 HOST_COMPLETE_TIMEOUT
);
1514 if (test_bit(STATUS_HCMD_ACTIVE
, &trans_pcie
->status
)) {
1515 struct iwl_txq
*txq
=
1516 &trans_pcie
->txq
[trans_pcie
->cmd_queue
];
1517 struct iwl_queue
*q
= &txq
->q
;
1520 "Error sending %s: time out after %dms.\n",
1521 get_cmd_string(trans_pcie
, cmd
->id
),
1522 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT
));
1525 "Current CMD queue read_ptr %d write_ptr %d\n",
1526 q
->read_ptr
, q
->write_ptr
);
1528 clear_bit(STATUS_HCMD_ACTIVE
, &trans_pcie
->status
);
1529 IWL_DEBUG_INFO(trans
,
1530 "Clearing HCMD_ACTIVE for command %s\n",
1531 get_cmd_string(trans_pcie
, cmd
->id
));
1537 if (test_bit(STATUS_FW_ERROR
, &trans_pcie
->status
)) {
1538 IWL_ERR(trans
, "FW error in SYNC CMD %s\n",
1539 get_cmd_string(trans_pcie
, cmd
->id
));
1545 if (!(cmd
->flags
& CMD_SEND_IN_RFKILL
) &&
1546 test_bit(STATUS_RFKILL
, &trans_pcie
->status
)) {
1547 IWL_DEBUG_RF_KILL(trans
, "RFKILL in SYNC CMD... no rsp\n");
1552 if ((cmd
->flags
& CMD_WANT_SKB
) && !cmd
->resp_pkt
) {
1553 IWL_ERR(trans
, "Error: Response NULL in '%s'\n",
1554 get_cmd_string(trans_pcie
, cmd
->id
));
1562 if (cmd
->flags
& CMD_WANT_SKB
) {
1564 * Cancel the CMD_WANT_SKB flag for the cmd in the
1565 * TX cmd queue. Otherwise in case the cmd comes
1566 * in later, it will possibly set an invalid
1567 * address (cmd->meta.source).
1569 trans_pcie
->txq
[trans_pcie
->cmd_queue
].
1570 entries
[cmd_idx
].meta
.flags
&= ~CMD_WANT_SKB
;
1573 if (cmd
->resp_pkt
) {
1575 cmd
->resp_pkt
= NULL
;
1581 int iwl_trans_pcie_send_hcmd(struct iwl_trans
*trans
, struct iwl_host_cmd
*cmd
)
1583 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1585 if (test_bit(STATUS_FW_ERROR
, &trans_pcie
->status
))
1588 if (!(cmd
->flags
& CMD_SEND_IN_RFKILL
) &&
1589 test_bit(STATUS_RFKILL
, &trans_pcie
->status
)) {
1590 IWL_DEBUG_RF_KILL(trans
, "Dropping CMD 0x%x: RF KILL\n",
1595 if (cmd
->flags
& CMD_ASYNC
)
1596 return iwl_pcie_send_hcmd_async(trans
, cmd
);
1598 /* We still can fail on RFKILL that can be asserted while we wait */
1599 return iwl_pcie_send_hcmd_sync(trans
, cmd
);
1602 int iwl_trans_pcie_tx(struct iwl_trans
*trans
, struct sk_buff
*skb
,
1603 struct iwl_device_cmd
*dev_cmd
, int txq_id
)
1605 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1606 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
1607 struct iwl_tx_cmd
*tx_cmd
= (struct iwl_tx_cmd
*)dev_cmd
->payload
;
1608 struct iwl_cmd_meta
*out_meta
;
1609 struct iwl_txq
*txq
;
1610 struct iwl_queue
*q
;
1611 dma_addr_t tb0_phys
, tb1_phys
, scratch_phys
;
1613 u16 len
, tb1_len
, tb2_len
;
1614 u8 wait_write_ptr
= 0;
1615 __le16 fc
= hdr
->frame_control
;
1616 u8 hdr_len
= ieee80211_hdrlen(fc
);
1619 txq
= &trans_pcie
->txq
[txq_id
];
1622 if (unlikely(!test_bit(txq_id
, trans_pcie
->queue_used
))) {
1627 spin_lock(&txq
->lock
);
1629 /* In AGG mode, the index in the ring must correspond to the WiFi
1630 * sequence number. This is a HW requirements to help the SCD to parse
1632 * Check here that the packets are in the right place on the ring.
1634 wifi_seq
= IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr
->seq_ctrl
));
1635 WARN_ONCE(trans_pcie
->txq
[txq_id
].ampdu
&&
1636 (wifi_seq
& 0xff) != q
->write_ptr
,
1637 "Q: %d WiFi Seq %d tfdNum %d",
1638 txq_id
, wifi_seq
, q
->write_ptr
);
1640 /* Set up driver data for this TFD */
1641 txq
->entries
[q
->write_ptr
].skb
= skb
;
1642 txq
->entries
[q
->write_ptr
].cmd
= dev_cmd
;
1644 dev_cmd
->hdr
.cmd
= REPLY_TX
;
1645 dev_cmd
->hdr
.sequence
=
1646 cpu_to_le16((u16
)(QUEUE_TO_SEQ(txq_id
) |
1647 INDEX_TO_SEQ(q
->write_ptr
)));
1649 tb0_phys
= iwl_pcie_get_scratchbuf_dma(txq
, q
->write_ptr
);
1650 scratch_phys
= tb0_phys
+ sizeof(struct iwl_cmd_header
) +
1651 offsetof(struct iwl_tx_cmd
, scratch
);
1653 tx_cmd
->dram_lsb_ptr
= cpu_to_le32(scratch_phys
);
1654 tx_cmd
->dram_msb_ptr
= iwl_get_dma_hi_addr(scratch_phys
);
1656 /* Set up first empty entry in queue's array of Tx/cmd buffers */
1657 out_meta
= &txq
->entries
[q
->write_ptr
].meta
;
1660 * The second TB (tb1) points to the remainder of the TX command
1661 * and the 802.11 header - dword aligned size
1662 * (This calculation modifies the TX command, so do it before the
1663 * setup of the first TB)
1665 len
= sizeof(struct iwl_tx_cmd
) + sizeof(struct iwl_cmd_header
) +
1666 hdr_len
- IWL_HCMD_SCRATCHBUF_SIZE
;
1667 tb1_len
= (len
+ 3) & ~3;
1669 /* Tell NIC about any 2-byte padding after MAC header */
1671 tx_cmd
->tx_flags
|= TX_CMD_FLG_MH_PAD_MSK
;
1673 /* The first TB points to the scratchbuf data - min_copy bytes */
1674 memcpy(&txq
->scratchbufs
[q
->write_ptr
], &dev_cmd
->hdr
,
1675 IWL_HCMD_SCRATCHBUF_SIZE
);
1676 iwl_pcie_txq_build_tfd(trans
, txq
, tb0_phys
,
1677 IWL_HCMD_SCRATCHBUF_SIZE
, 1);
1679 /* there must be data left over for TB1 or this code must be changed */
1680 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd
) < IWL_HCMD_SCRATCHBUF_SIZE
);
1682 /* map the data for TB1 */
1683 tb1_addr
= ((u8
*)&dev_cmd
->hdr
) + IWL_HCMD_SCRATCHBUF_SIZE
;
1684 tb1_phys
= dma_map_single(trans
->dev
, tb1_addr
, tb1_len
, DMA_TO_DEVICE
);
1685 if (unlikely(dma_mapping_error(trans
->dev
, tb1_phys
)))
1687 iwl_pcie_txq_build_tfd(trans
, txq
, tb1_phys
, tb1_len
, 0);
1690 * Set up TFD's third entry to point directly to remainder
1691 * of skb, if any (802.11 null frames have no payload).
1693 tb2_len
= skb
->len
- hdr_len
;
1695 dma_addr_t tb2_phys
= dma_map_single(trans
->dev
,
1696 skb
->data
+ hdr_len
,
1697 tb2_len
, DMA_TO_DEVICE
);
1698 if (unlikely(dma_mapping_error(trans
->dev
, tb2_phys
))) {
1699 iwl_pcie_tfd_unmap(trans
, out_meta
,
1700 &txq
->tfds
[q
->write_ptr
]);
1703 iwl_pcie_txq_build_tfd(trans
, txq
, tb2_phys
, tb2_len
, 0);
1706 /* Set up entry for this TFD in Tx byte-count array */
1707 iwl_pcie_txq_update_byte_cnt_tbl(trans
, txq
, le16_to_cpu(tx_cmd
->len
));
1709 trace_iwlwifi_dev_tx(trans
->dev
, skb
,
1710 &txq
->tfds
[txq
->q
.write_ptr
],
1711 sizeof(struct iwl_tfd
),
1712 &dev_cmd
->hdr
, IWL_HCMD_SCRATCHBUF_SIZE
+ tb1_len
,
1713 skb
->data
+ hdr_len
, tb2_len
);
1714 trace_iwlwifi_dev_tx_data(trans
->dev
, skb
,
1715 skb
->data
+ hdr_len
, tb2_len
);
1717 if (!ieee80211_has_morefrags(fc
)) {
1718 txq
->need_update
= 1;
1721 txq
->need_update
= 0;
1724 /* start timer if queue currently empty */
1725 if (txq
->need_update
&& q
->read_ptr
== q
->write_ptr
&&
1726 trans_pcie
->wd_timeout
)
1727 mod_timer(&txq
->stuck_timer
, jiffies
+ trans_pcie
->wd_timeout
);
1729 /* Tell device the write index *just past* this latest filled TFD */
1730 q
->write_ptr
= iwl_queue_inc_wrap(q
->write_ptr
, q
->n_bd
);
1731 iwl_pcie_txq_inc_wr_ptr(trans
, txq
);
1734 * At this point the frame is "transmitted" successfully
1735 * and we will get a TX status notification eventually,
1736 * regardless of the value of ret. "ret" only indicates
1737 * whether or not we should update the write pointer.
1739 if (iwl_queue_space(q
) < q
->high_mark
) {
1740 if (wait_write_ptr
) {
1741 txq
->need_update
= 1;
1742 iwl_pcie_txq_inc_wr_ptr(trans
, txq
);
1744 iwl_stop_queue(trans
, txq
);
1747 spin_unlock(&txq
->lock
);
1750 spin_unlock(&txq
->lock
);