blob: bf5f8246385eec1ef6cc4401600292d3bcb0bd9a [file] [log] [blame]
Ron Rindjunsky1053d352008-05-05 10:22:43 +08001/******************************************************************************
2 *
Johannes Berg128e63e2013-01-21 21:39:26 +01003 * Copyright(c) 2003 - 2013 Intel Corporation. All rights reserved.
Ron Rindjunsky1053d352008-05-05 10:22:43 +08004 *
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:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Ron Rindjunsky1053d352008-05-05 10:22:43 +080026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
Tomas Winklerfd4abac2008-05-15 13:54:07 +080029#include <linux/etherdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Emmanuel Grumbach253a6342011-07-11 07:39:46 -070031#include <linux/sched.h>
Emmanuel Grumbach253a6342011-07-11 07:39:46 -070032
Emmanuel Grumbach522376d2011-09-06 09:31:19 -070033#include "iwl-debug.h"
34#include "iwl-csr.h"
35#include "iwl-prph.h"
Ron Rindjunsky1053d352008-05-05 10:22:43 +080036#include "iwl-io.h"
Emmanuel Grumbached277c92012-02-09 16:08:15 +020037#include "iwl-op-mode.h"
Johannes Berg6468a012012-05-16 19:13:54 +020038#include "internal.h"
Johannes Berg6238b002012-04-02 15:04:33 +020039/* FIXME: need to abstract out TX command (once we know what it looks like) */
Johannes Berg1023fdc2012-05-15 12:16:34 +020040#include "dvm/commands.h"
Ron Rindjunsky1053d352008-05-05 10:22:43 +080041
Emmanuel Grumbach522376d2011-09-06 09:31:19 -070042#define IWL_TX_CRC_SIZE 4
43#define IWL_TX_DELIMITER_SIZE 4
44
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +020045/*************** 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{
68 int s = q->read_ptr - q->write_ptr;
69
70 if (q->read_ptr > q->write_ptr)
71 s -= q->n_bd;
72
73 if (s <= 0)
74 s += q->n_window;
75 /* keep some reserve to not confuse empty and full situations */
76 s -= 2;
77 if (s < 0)
78 s = 0;
79 return s;
80}
81
82/*
83 * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
84 */
85static int iwl_queue_init(struct iwl_queue *q, int count, int slots_num, u32 id)
86{
87 q->n_bd = count;
88 q->n_window = slots_num;
89 q->id = id;
90
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)))
94 return -EINVAL;
95
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)))
99 return -EINVAL;
100
101 q->low_mark = q->n_window / 4;
102 if (q->low_mark < 4)
103 q->low_mark = 4;
104
105 q->high_mark = q->n_window / 8;
106 if (q->high_mark < 2)
107 q->high_mark = 2;
108
109 q->write_ptr = 0;
110 q->read_ptr = 0;
111
112 return 0;
113}
114
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200115static int iwl_pcie_alloc_dma_ptr(struct iwl_trans *trans,
116 struct iwl_dma_ptr *ptr, size_t size)
117{
118 if (WARN_ON(ptr->addr))
119 return -EINVAL;
120
121 ptr->addr = dma_alloc_coherent(trans->dev, size,
122 &ptr->dma, GFP_KERNEL);
123 if (!ptr->addr)
124 return -ENOMEM;
125 ptr->size = size;
126 return 0;
127}
128
129static void iwl_pcie_free_dma_ptr(struct iwl_trans *trans,
130 struct iwl_dma_ptr *ptr)
131{
132 if (unlikely(!ptr->addr))
133 return;
134
135 dma_free_coherent(trans->dev, ptr->size, ptr->addr, ptr->dma);
136 memset(ptr, 0, sizeof(*ptr));
137}
138
139static void iwl_pcie_txq_stuck_timer(unsigned long data)
140{
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);
147 u8 buf[16];
148 int i;
149
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);
154 return;
155 }
156 spin_unlock(&txq->lock);
157
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);
162
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +0200163 iwl_trans_read_mem_bytes(trans, scd_sram_addr, buf, sizeof(buf));
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200164
165 iwl_print_hex_error(trans, buf, sizeof(buf));
166
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)));
170
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));
175 u32 tbl_dw =
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +0200176 iwl_trans_read_mem32(trans,
177 trans_pcie->scd_base_addr +
178 SCD_TRANS_TBL_OFFSET_QUEUE(i));
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200179
180 if (i & 0x1)
181 tbl_dw = (tbl_dw & 0xFFFF0000) >> 16;
182 else
183 tbl_dw = tbl_dw & 0x0000FFFF;
184
185 IWL_ERR(trans,
186 "Q %d is %sactive and mapped to fifo %d ra_tid 0x%04x [%d,%d]\n",
187 i, active ? "" : "in", fifo, tbl_dw,
188 iwl_read_prph(trans,
189 SCD_QUEUE_RDPTR(i)) & (txq->q.n_bd - 1),
190 iwl_read_prph(trans, SCD_QUEUE_WRPTR(i)));
191 }
192
193 for (i = q->read_ptr; i != q->write_ptr;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100194 i = iwl_queue_inc_wrap(i, q->n_bd))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200195 IWL_ERR(trans, "scratch %d = 0x%08x\n", i,
Johannes Berg38c0f3342013-02-27 13:18:50 +0100196 le32_to_cpu(txq->scratchbufs[i].scratch));
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200197
198 iwl_op_mode_nic_error(trans->op_mode);
199}
200
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200201/*
202 * iwl_pcie_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300203 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200204static void iwl_pcie_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
205 struct iwl_txq *txq, u16 byte_cnt)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300206{
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700207 struct iwlagn_scd_bc_tbl *scd_bc_tbl;
Johannes Berg20d3b642012-05-16 22:54:29 +0200208 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300209 int write_ptr = txq->q.write_ptr;
210 int txq_id = txq->q.id;
211 u8 sec_ctl = 0;
212 u8 sta_id = 0;
213 u16 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
214 __le16 bc_ent;
Emmanuel Grumbach132f98c2011-09-20 15:37:24 -0700215 struct iwl_tx_cmd *tx_cmd =
Johannes Bergbf8440e2012-03-19 17:12:06 +0100216 (void *) txq->entries[txq->q.write_ptr].cmd->payload;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300217
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700218 scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
219
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300220 WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX);
221
Emmanuel Grumbach132f98c2011-09-20 15:37:24 -0700222 sta_id = tx_cmd->sta_id;
223 sec_ctl = tx_cmd->sec_ctl;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300224
225 switch (sec_ctl & TX_CMD_SEC_MSK) {
226 case TX_CMD_SEC_CCM:
227 len += CCMP_MIC_LEN;
228 break;
229 case TX_CMD_SEC_TKIP:
230 len += TKIP_ICV_LEN;
231 break;
232 case TX_CMD_SEC_WEP:
233 len += WEP_IV_LEN + WEP_ICV_LEN;
234 break;
235 }
236
Emmanuel Grumbach046db342012-12-05 15:07:54 +0200237 if (trans_pcie->bc_table_dword)
238 len = DIV_ROUND_UP(len, 4);
239
240 bc_ent = cpu_to_le16(len | (sta_id << 12));
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300241
242 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
243
244 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
245 scd_bc_tbl[txq_id].
246 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
247}
248
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200249static void iwl_pcie_txq_inval_byte_cnt_tbl(struct iwl_trans *trans,
250 struct iwl_txq *txq)
251{
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;
257 u8 sta_id = 0;
258 __le16 bc_ent;
259 struct iwl_tx_cmd *tx_cmd =
260 (void *)txq->entries[txq->q.read_ptr].cmd->payload;
261
262 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
263
264 if (txq_id != trans_pcie->cmd_queue)
265 sta_id = tx_cmd->sta_id;
266
267 bc_ent = cpu_to_le16(1 | (sta_id << 12));
268 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
269
270 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
271 scd_bc_tbl[txq_id].
272 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
273}
274
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200275/*
276 * iwl_pcie_txq_inc_wr_ptr - Send new write index to hardware
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800277 */
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200278void iwl_pcie_txq_inc_wr_ptr(struct iwl_trans *trans, struct iwl_txq *txq)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800279{
280 u32 reg = 0;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800281 int txq_id = txq->q.id;
282
283 if (txq->need_update == 0)
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -0800284 return;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800285
Emmanuel Grumbach035f7ff2012-03-26 08:57:01 -0700286 if (trans->cfg->base_params->shadow_reg_enable) {
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800287 /* shadow register enabled */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200288 iwl_write32(trans, HBUS_TARG_WRPTR,
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800289 txq->q.write_ptr | (txq_id << 8));
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800290 } else {
Don Fry47107e82012-03-15 13:27:06 -0700291 struct iwl_trans_pcie *trans_pcie =
292 IWL_TRANS_GET_PCIE_TRANS(trans);
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800293 /* if we're trying to save power */
Don Fry01d651d2012-03-23 08:34:31 -0700294 if (test_bit(STATUS_TPOWER_PMI, &trans_pcie->status)) {
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800295 /* 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. */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200298 reg = iwl_read32(trans, CSR_UCODE_DRV_GP1);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800299
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800300 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700301 IWL_DEBUG_INFO(trans,
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800302 "Tx queue %d requesting wakeup,"
303 " GP1 = 0x%x\n", txq_id, reg);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200304 iwl_set_bit(trans, CSR_GP_CNTRL,
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800305 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
306 return;
307 }
308
Emmanuel Grumbach1c3fea82013-01-02 12:12:25 +0200309 IWL_DEBUG_TX(trans, "Q:%d WR: 0x%x\n", txq_id,
310 txq->q.write_ptr);
311
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200312 iwl_write_direct32(trans, HBUS_TARG_WRPTR,
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800313 txq->q.write_ptr | (txq_id << 8));
314
315 /*
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).
319 */
320 } else
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200321 iwl_write32(trans, HBUS_TARG_WRPTR,
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800322 txq->q.write_ptr | (txq_id << 8));
323 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800324 txq->need_update = 0;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800325}
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800326
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200327static inline dma_addr_t iwl_pcie_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
Johannes Berg214d14d2011-05-04 07:50:44 -0700328{
329 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
330
331 dma_addr_t addr = get_unaligned_le32(&tb->lo);
332 if (sizeof(dma_addr_t) > sizeof(u32))
333 addr |=
334 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
335
336 return addr;
337}
338
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200339static inline u16 iwl_pcie_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
Johannes Berg214d14d2011-05-04 07:50:44 -0700340{
341 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
342
343 return le16_to_cpu(tb->hi_n_len) >> 4;
344}
345
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200346static inline void iwl_pcie_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
347 dma_addr_t addr, u16 len)
Johannes Berg214d14d2011-05-04 07:50:44 -0700348{
349 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
350 u16 hi_n_len = len << 4;
351
352 put_unaligned_le32(addr, &tb->lo);
353 if (sizeof(dma_addr_t) > sizeof(u32))
354 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
355
356 tb->hi_n_len = cpu_to_le16(hi_n_len);
357
358 tfd->num_tbs = idx + 1;
359}
360
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200361static inline u8 iwl_pcie_tfd_get_num_tbs(struct iwl_tfd *tfd)
Johannes Berg214d14d2011-05-04 07:50:44 -0700362{
363 return tfd->num_tbs & 0x1f;
364}
365
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200366static void iwl_pcie_tfd_unmap(struct iwl_trans *trans,
Johannes Berg98891752013-02-26 11:28:19 +0100367 struct iwl_cmd_meta *meta,
368 struct iwl_tfd *tfd)
Johannes Berg214d14d2011-05-04 07:50:44 -0700369{
Johannes Berg214d14d2011-05-04 07:50:44 -0700370 int i;
371 int num_tbs;
372
Johannes Berg214d14d2011-05-04 07:50:44 -0700373 /* Sanity check on number of chunks */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200374 num_tbs = iwl_pcie_tfd_get_num_tbs(tfd);
Johannes Berg214d14d2011-05-04 07:50:44 -0700375
376 if (num_tbs >= IWL_NUM_OF_TBS) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700377 IWL_ERR(trans, "Too many chunks: %i\n", num_tbs);
Johannes Berg214d14d2011-05-04 07:50:44 -0700378 /* @todo issue fatal error, it is quite serious situation */
379 return;
380 }
381
Johannes Berg38c0f3342013-02-27 13:18:50 +0100382 /* first TB is never freed - it's the scratchbuf data */
Johannes Berg214d14d2011-05-04 07:50:44 -0700383
Johannes Berg214d14d2011-05-04 07:50:44 -0700384 for (i = 1; i < num_tbs; i++)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200385 dma_unmap_single(trans->dev, iwl_pcie_tfd_tb_get_addr(tfd, i),
Johannes Berg98891752013-02-26 11:28:19 +0100386 iwl_pcie_tfd_tb_get_len(tfd, i),
387 DMA_TO_DEVICE);
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200388
389 tfd->num_tbs = 0;
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700390}
391
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200392/*
393 * iwl_pcie_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700394 * @trans - transport private data
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700395 * @txq - tx queue
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200396 * @dma_dir - the direction of the DMA mapping
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700397 *
398 * Does NOT advance any TFD circular buffer read/write indexes
399 * Does NOT free the TFD itself (which is within circular buffer)
400 */
Johannes Berg98891752013-02-26 11:28:19 +0100401static void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq)
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700402{
403 struct iwl_tfd *tfd_tmp = txq->tfds;
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700404
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200405 /* 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);
408
Johannes Berg015c15e2012-03-05 11:24:24 -0800409 lockdep_assert_held(&txq->lock);
410
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200411 /* We have only q->n_window txq->entries, but we use q->n_bd tfds */
Johannes Berg98891752013-02-26 11:28:19 +0100412 iwl_pcie_tfd_unmap(trans, &txq->entries[idx].meta, &tfd_tmp[rd_ptr]);
Johannes Berg214d14d2011-05-04 07:50:44 -0700413
414 /* free SKB */
Johannes Bergbf8440e2012-03-19 17:12:06 +0100415 if (txq->entries) {
Johannes Berg214d14d2011-05-04 07:50:44 -0700416 struct sk_buff *skb;
417
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200418 skb = txq->entries[idx].skb;
Johannes Berg214d14d2011-05-04 07:50:44 -0700419
Emmanuel Grumbach909e9b22011-09-15 11:46:30 -0700420 /* 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
423 */
Johannes Berg214d14d2011-05-04 07:50:44 -0700424 if (skb) {
Emmanuel Grumbached277c92012-02-09 16:08:15 +0200425 iwl_op_mode_free_skb(trans->op_mode, skb);
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200426 txq->entries[idx].skb = NULL;
Johannes Berg214d14d2011-05-04 07:50:44 -0700427 }
428 }
429}
430
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200431static int iwl_pcie_txq_build_tfd(struct iwl_trans *trans, struct iwl_txq *txq,
432 dma_addr_t addr, u16 len, u8 reset)
Johannes Berg214d14d2011-05-04 07:50:44 -0700433{
434 struct iwl_queue *q;
435 struct iwl_tfd *tfd, *tfd_tmp;
436 u32 num_tbs;
437
438 q = &txq->q;
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700439 tfd_tmp = txq->tfds;
Johannes Berg214d14d2011-05-04 07:50:44 -0700440 tfd = &tfd_tmp[q->write_ptr];
441
442 if (reset)
443 memset(tfd, 0, sizeof(*tfd));
444
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200445 num_tbs = iwl_pcie_tfd_get_num_tbs(tfd);
Johannes Berg214d14d2011-05-04 07:50:44 -0700446
447 /* Each TFD can point to a maximum 20 Tx buffers */
448 if (num_tbs >= IWL_NUM_OF_TBS) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700449 IWL_ERR(trans, "Error can not send more than %d chunks\n",
Johannes Berg20d3b642012-05-16 22:54:29 +0200450 IWL_NUM_OF_TBS);
Johannes Berg214d14d2011-05-04 07:50:44 -0700451 return -EINVAL;
452 }
453
454 if (WARN_ON(addr & ~DMA_BIT_MASK(36)))
455 return -EINVAL;
456
457 if (unlikely(addr & ~IWL_TX_DMA_MASK))
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700458 IWL_ERR(trans, "Unaligned address = %llx\n",
Johannes Berg20d3b642012-05-16 22:54:29 +0200459 (unsigned long long)addr);
Johannes Berg214d14d2011-05-04 07:50:44 -0700460
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200461 iwl_pcie_tfd_set_tb(tfd, num_tbs, addr, len);
Johannes Berg214d14d2011-05-04 07:50:44 -0700462
463 return 0;
464}
465
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200466static int iwl_pcie_txq_alloc(struct iwl_trans *trans,
467 struct iwl_txq *txq, int slots_num,
468 u32 txq_id)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800469{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200470 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;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100472 size_t scratchbuf_sz;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200473 int i;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800474
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200475 if (WARN_ON(txq->entries || txq->tfds))
476 return -EINVAL;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800477
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200478 setup_timer(&txq->stuck_timer, iwl_pcie_txq_stuck_timer,
479 (unsigned long)txq);
480 txq->trans_pcie = trans_pcie;
481
482 txq->q.n_window = slots_num;
483
484 txq->entries = kcalloc(slots_num,
485 sizeof(struct iwl_pcie_txq_entry),
486 GFP_KERNEL);
487
488 if (!txq->entries)
489 goto error;
490
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),
495 GFP_KERNEL);
496 if (!txq->entries[i].cmd)
497 goto error;
498 }
499
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);
Joe Perchesd0320f72013-03-14 13:07:21 +0000504 if (!txq->tfds)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200505 goto error;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100506
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));
511
512 scratchbuf_sz = sizeof(*txq->scratchbufs) * slots_num;
513
514 txq->scratchbufs = dma_alloc_coherent(trans->dev, scratchbuf_sz,
515 &txq->scratchbufs_dma,
516 GFP_KERNEL);
517 if (!txq->scratchbufs)
518 goto err_free_tfds;
519
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200520 txq->q.id = txq_id;
521
522 return 0;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100523err_free_tfds:
524 dma_free_coherent(trans->dev, tfd_sz, txq->tfds, txq->q.dma_addr);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200525error:
526 if (txq->entries && txq_id == trans_pcie->cmd_queue)
527 for (i = 0; i < slots_num; i++)
528 kfree(txq->entries[i].cmd);
529 kfree(txq->entries);
530 txq->entries = NULL;
531
532 return -ENOMEM;
533
534}
535
536static int iwl_pcie_txq_init(struct iwl_trans *trans, struct iwl_txq *txq,
537 int slots_num, u32 txq_id)
538{
539 int ret;
540
541 txq->need_update = 0;
542
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));
546
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,
549 txq_id);
550 if (ret)
551 return ret;
552
553 spin_lock_init(&txq->lock);
554
555 /*
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);
561
562 return 0;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800563}
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800564
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200565/*
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200566 * iwl_pcie_txq_unmap - Unmap any remaining DMA mappings and free skb's
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800567 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200568static void iwl_pcie_txq_unmap(struct iwl_trans *trans, int txq_id)
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800569{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200570 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;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800573
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200574 if (!q->n_bd)
575 return;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800576
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200577 spin_lock_bh(&txq->lock);
578 while (q->write_ptr != q->read_ptr) {
Johannes Berg98891752013-02-26 11:28:19 +0100579 iwl_pcie_txq_free_tfd(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200580 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd);
581 }
582 spin_unlock_bh(&txq->lock);
583}
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800584
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200585/*
586 * iwl_pcie_txq_free - Deallocate DMA queue.
587 * @txq: Transmit queue to deallocate.
588 *
589 * Empty queue by removing and destroying all BD's.
590 * Free all buffers.
591 * 0-fill, but do not free "txq" descriptor structure.
592 */
593static void iwl_pcie_txq_free(struct iwl_trans *trans, int txq_id)
594{
595 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
596 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
597 struct device *dev = trans->dev;
598 int i;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800599
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200600 if (WARN_ON(!txq))
601 return;
602
603 iwl_pcie_txq_unmap(trans, txq_id);
604
605 /* De-alloc array of command/tx buffers */
606 if (txq_id == trans_pcie->cmd_queue)
607 for (i = 0; i < txq->q.n_window; i++) {
608 kfree(txq->entries[i].cmd);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200609 kfree(txq->entries[i].free_buf);
610 }
611
612 /* De-alloc circular buffer of TFDs */
613 if (txq->q.n_bd) {
614 dma_free_coherent(dev, sizeof(struct iwl_tfd) *
615 txq->q.n_bd, txq->tfds, txq->q.dma_addr);
Johannes Bergd21fa2d2013-01-08 00:25:21 +0100616 txq->q.dma_addr = 0;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100617
618 dma_free_coherent(dev,
619 sizeof(*txq->scratchbufs) * txq->q.n_window,
620 txq->scratchbufs, txq->scratchbufs_dma);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200621 }
622
623 kfree(txq->entries);
624 txq->entries = NULL;
625
626 del_timer_sync(&txq->stuck_timer);
627
628 /* 0-fill queue descriptor structure */
629 memset(txq, 0, sizeof(*txq));
630}
631
632/*
633 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
634 */
635static void iwl_pcie_txq_set_sched(struct iwl_trans *trans, u32 mask)
636{
637 struct iwl_trans_pcie __maybe_unused *trans_pcie =
638 IWL_TRANS_GET_PCIE_TRANS(trans);
639
640 iwl_write_prph(trans, SCD_TXFACT, mask);
641}
642
643void iwl_pcie_tx_start(struct iwl_trans *trans, u32 scd_base_addr)
644{
645 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Johannes Berg22dc3c92013-01-09 00:47:07 +0100646 int nq = trans->cfg->base_params->num_of_queues;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200647 int chan;
648 u32 reg_val;
Johannes Berg22dc3c92013-01-09 00:47:07 +0100649 int clear_dwords = (SCD_TRANS_TBL_OFFSET_QUEUE(nq) -
650 SCD_CONTEXT_MEM_LOWER_BOUND) / sizeof(u32);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200651
652 /* make sure all queue are not stopped/used */
653 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
654 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
655
656 trans_pcie->scd_base_addr =
657 iwl_read_prph(trans, SCD_SRAM_BASE_ADDR);
658
659 WARN_ON(scd_base_addr != 0 &&
660 scd_base_addr != trans_pcie->scd_base_addr);
661
Johannes Berg22dc3c92013-01-09 00:47:07 +0100662 /* reset context data, TX status and translation data */
663 iwl_trans_write_mem(trans, trans_pcie->scd_base_addr +
664 SCD_CONTEXT_MEM_LOWER_BOUND,
665 NULL, clear_dwords);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200666
667 iwl_write_prph(trans, SCD_DRAM_BASE_ADDR,
668 trans_pcie->scd_bc_tbls.dma >> 10);
669
670 /* The chain extension of the SCD doesn't work well. This feature is
671 * enabled by default by the HW, so we need to disable it manually.
672 */
673 iwl_write_prph(trans, SCD_CHAINEXT_EN, 0);
674
675 iwl_trans_ac_txq_enable(trans, trans_pcie->cmd_queue,
676 trans_pcie->cmd_fifo);
677
678 /* Activate all Tx DMA/FIFO channels */
679 iwl_pcie_txq_set_sched(trans, IWL_MASK(0, 7));
680
681 /* Enable DMA channel */
682 for (chan = 0; chan < FH_TCSR_CHNL_NUM; chan++)
683 iwl_write_direct32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(chan),
684 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
685 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
686
687 /* Update FH chicken bits */
688 reg_val = iwl_read_direct32(trans, FH_TX_CHICKEN_BITS_REG);
689 iwl_write_direct32(trans, FH_TX_CHICKEN_BITS_REG,
690 reg_val | FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
691
692 /* Enable L1-Active */
693 iwl_clear_bits_prph(trans, APMG_PCIDEV_STT_REG,
694 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
695}
696
Johannes Bergddaf5a52013-01-08 11:25:44 +0100697void iwl_trans_pcie_tx_reset(struct iwl_trans *trans)
698{
699 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
700 int txq_id;
701
702 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
703 txq_id++) {
704 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
705
706 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(txq_id),
707 txq->q.dma_addr >> 8);
708 iwl_pcie_txq_unmap(trans, txq_id);
709 txq->q.read_ptr = 0;
710 txq->q.write_ptr = 0;
711 }
712
713 /* Tell NIC where to find the "keep warm" buffer */
714 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
715 trans_pcie->kw.dma >> 4);
716
717 iwl_pcie_tx_start(trans, trans_pcie->scd_base_addr);
718}
719
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200720/*
721 * iwl_pcie_tx_stop - Stop all Tx DMA channels
722 */
723int iwl_pcie_tx_stop(struct iwl_trans *trans)
724{
725 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
726 int ch, txq_id, ret;
727 unsigned long flags;
728
729 /* Turn off all Tx DMA fifos */
730 spin_lock_irqsave(&trans_pcie->irq_lock, flags);
731
732 iwl_pcie_txq_set_sched(trans, 0);
733
734 /* Stop each Tx DMA channel, and wait for it to be idle */
735 for (ch = 0; ch < FH_TCSR_CHNL_NUM; ch++) {
736 iwl_write_direct32(trans,
737 FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
738 ret = iwl_poll_direct_bit(trans, FH_TSSR_TX_STATUS_REG,
739 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch), 1000);
740 if (ret < 0)
741 IWL_ERR(trans,
742 "Failing on timeout while stopping DMA channel %d [0x%08x]\n",
743 ch,
744 iwl_read_direct32(trans,
745 FH_TSSR_TX_STATUS_REG));
746 }
747 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
748
749 if (!trans_pcie->txq) {
750 IWL_WARN(trans,
751 "Stopping tx queues that aren't allocated...\n");
752 return 0;
753 }
754
755 /* Unmap DMA from host system and free skb's */
756 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
757 txq_id++)
758 iwl_pcie_txq_unmap(trans, txq_id);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800759
760 return 0;
761}
762
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200763/*
764 * iwl_trans_tx_free - Free TXQ Context
765 *
766 * Destroy all TX DMA queues and structures
767 */
768void iwl_pcie_tx_free(struct iwl_trans *trans)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300769{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200770 int txq_id;
771 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300772
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200773 /* Tx queues */
774 if (trans_pcie->txq) {
775 for (txq_id = 0;
776 txq_id < trans->cfg->base_params->num_of_queues; txq_id++)
777 iwl_pcie_txq_free(trans, txq_id);
778 }
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300779
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200780 kfree(trans_pcie->txq);
781 trans_pcie->txq = NULL;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300782
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200783 iwl_pcie_free_dma_ptr(trans, &trans_pcie->kw);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300784
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200785 iwl_pcie_free_dma_ptr(trans, &trans_pcie->scd_bc_tbls);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300786}
787
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200788/*
789 * iwl_pcie_tx_alloc - allocate TX context
790 * Allocate all Tx DMA structures and initialize them
791 */
792static int iwl_pcie_tx_alloc(struct iwl_trans *trans)
793{
794 int ret;
795 int txq_id, slots_num;
796 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
797
798 u16 scd_bc_tbls_size = trans->cfg->base_params->num_of_queues *
799 sizeof(struct iwlagn_scd_bc_tbl);
800
801 /*It is not allowed to alloc twice, so warn when this happens.
802 * We cannot rely on the previous allocation, so free and fail */
803 if (WARN_ON(trans_pcie->txq)) {
804 ret = -EINVAL;
805 goto error;
806 }
807
808 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->scd_bc_tbls,
809 scd_bc_tbls_size);
810 if (ret) {
811 IWL_ERR(trans, "Scheduler BC Table allocation failed\n");
812 goto error;
813 }
814
815 /* Alloc keep-warm buffer */
816 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->kw, IWL_KW_SIZE);
817 if (ret) {
818 IWL_ERR(trans, "Keep Warm allocation failed\n");
819 goto error;
820 }
821
822 trans_pcie->txq = kcalloc(trans->cfg->base_params->num_of_queues,
823 sizeof(struct iwl_txq), GFP_KERNEL);
824 if (!trans_pcie->txq) {
825 IWL_ERR(trans, "Not enough memory for txq\n");
826 ret = ENOMEM;
827 goto error;
828 }
829
830 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
831 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
832 txq_id++) {
833 slots_num = (txq_id == trans_pcie->cmd_queue) ?
834 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
835 ret = iwl_pcie_txq_alloc(trans, &trans_pcie->txq[txq_id],
836 slots_num, txq_id);
837 if (ret) {
838 IWL_ERR(trans, "Tx %d queue alloc failed\n", txq_id);
839 goto error;
840 }
841 }
842
843 return 0;
844
845error:
846 iwl_pcie_tx_free(trans);
847
848 return ret;
849}
850int iwl_pcie_tx_init(struct iwl_trans *trans)
851{
852 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
853 int ret;
854 int txq_id, slots_num;
855 unsigned long flags;
856 bool alloc = false;
857
858 if (!trans_pcie->txq) {
859 ret = iwl_pcie_tx_alloc(trans);
860 if (ret)
861 goto error;
862 alloc = true;
863 }
864
865 spin_lock_irqsave(&trans_pcie->irq_lock, flags);
866
867 /* Turn off all Tx DMA fifos */
868 iwl_write_prph(trans, SCD_TXFACT, 0);
869
870 /* Tell NIC where to find the "keep warm" buffer */
871 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
872 trans_pcie->kw.dma >> 4);
873
874 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
875
876 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
877 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
878 txq_id++) {
879 slots_num = (txq_id == trans_pcie->cmd_queue) ?
880 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
881 ret = iwl_pcie_txq_init(trans, &trans_pcie->txq[txq_id],
882 slots_num, txq_id);
883 if (ret) {
884 IWL_ERR(trans, "Tx %d queue init failed\n", txq_id);
885 goto error;
886 }
887 }
888
889 return 0;
890error:
891 /*Upon error, free only if we allocated something */
892 if (alloc)
893 iwl_pcie_tx_free(trans);
894 return ret;
895}
896
897static inline void iwl_pcie_txq_progress(struct iwl_trans_pcie *trans_pcie,
898 struct iwl_txq *txq)
899{
900 if (!trans_pcie->wd_timeout)
901 return;
902
903 /*
904 * if empty delete timer, otherwise move timer forward
905 * since we're making progress on this queue
906 */
907 if (txq->q.read_ptr == txq->q.write_ptr)
908 del_timer(&txq->stuck_timer);
909 else
910 mod_timer(&txq->stuck_timer, jiffies + trans_pcie->wd_timeout);
911}
912
913/* Frees buffers until index _not_ inclusive */
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200914void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,
915 struct sk_buff_head *skbs)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200916{
917 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
918 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200919 /* n_bd is usually 256 => n_bd - 1 = 0xff */
920 int tfd_num = ssn & (txq->q.n_bd - 1);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200921 struct iwl_queue *q = &txq->q;
922 int last_to_free;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200923
924 /* This function is not meant to release cmd queue*/
925 if (WARN_ON(txq_id == trans_pcie->cmd_queue))
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200926 return;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200927
Johannes Berg2bfb5092012-12-27 21:43:48 +0100928 spin_lock_bh(&txq->lock);
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200929
930 if (txq->q.read_ptr == tfd_num)
931 goto out;
932
933 IWL_DEBUG_TX_REPLY(trans, "[Q %d] %d -> %d (%d)\n",
934 txq_id, txq->q.read_ptr, tfd_num, ssn);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200935
936 /*Since we free until index _not_ inclusive, the one before index is
937 * the last we will free. This one must be used */
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200938 last_to_free = iwl_queue_dec_wrap(tfd_num, q->n_bd);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200939
Emmanuel Grumbach6ca6ebc2012-11-14 23:38:08 +0200940 if (!iwl_queue_used(q, last_to_free)) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200941 IWL_ERR(trans,
942 "%s: Read index for DMA queue txq id (%d), last_to_free %d is out of range [0-%d] %d %d.\n",
943 __func__, txq_id, last_to_free, q->n_bd,
944 q->write_ptr, q->read_ptr);
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200945 goto out;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200946 }
947
948 if (WARN_ON(!skb_queue_empty(skbs)))
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200949 goto out;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200950
951 for (;
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200952 q->read_ptr != tfd_num;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200953 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
954
955 if (WARN_ON_ONCE(txq->entries[txq->q.read_ptr].skb == NULL))
956 continue;
957
958 __skb_queue_tail(skbs, txq->entries[txq->q.read_ptr].skb);
959
960 txq->entries[txq->q.read_ptr].skb = NULL;
961
962 iwl_pcie_txq_inval_byte_cnt_tbl(trans, txq);
963
Johannes Berg98891752013-02-26 11:28:19 +0100964 iwl_pcie_txq_free_tfd(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200965 }
966
967 iwl_pcie_txq_progress(trans_pcie, txq);
968
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200969 if (iwl_queue_space(&txq->q) > txq->q.low_mark)
970 iwl_wake_queue(trans, txq);
971out:
Johannes Berg2bfb5092012-12-27 21:43:48 +0100972 spin_unlock_bh(&txq->lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200973}
974
975/*
976 * iwl_pcie_cmdq_reclaim - Reclaim TX command queue entries already Tx'd
977 *
978 * When FW advances 'R' index, all entries between old and new 'R' index
979 * need to be reclaimed. As result, some free space forms. If there is
980 * enough free space (> low mark), wake the stack that feeds us.
981 */
982static void iwl_pcie_cmdq_reclaim(struct iwl_trans *trans, int txq_id, int idx)
983{
984 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
985 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
986 struct iwl_queue *q = &txq->q;
987 int nfreed = 0;
988
989 lockdep_assert_held(&txq->lock);
990
Emmanuel Grumbach6ca6ebc2012-11-14 23:38:08 +0200991 if ((idx >= q->n_bd) || (!iwl_queue_used(q, idx))) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200992 IWL_ERR(trans,
993 "%s: Read index for DMA queue txq id (%d), index %d is out of range [0-%d] %d %d.\n",
994 __func__, txq_id, idx, q->n_bd,
995 q->write_ptr, q->read_ptr);
996 return;
997 }
998
999 for (idx = iwl_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx;
1000 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1001
1002 if (nfreed++ > 0) {
1003 IWL_ERR(trans, "HCMD skipped: index (%d) %d %d\n",
1004 idx, q->write_ptr, q->read_ptr);
1005 iwl_op_mode_nic_error(trans->op_mode);
1006 }
1007 }
1008
1009 iwl_pcie_txq_progress(trans_pcie, txq);
1010}
1011
1012static int iwl_pcie_txq_set_ratid_map(struct iwl_trans *trans, u16 ra_tid,
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001013 u16 txq_id)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001014{
Johannes Berg20d3b642012-05-16 22:54:29 +02001015 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001016 u32 tbl_dw_addr;
1017 u32 tbl_dw;
1018 u16 scd_q2ratid;
1019
1020 scd_q2ratid = ra_tid & SCD_QUEUE_RA_TID_MAP_RATID_MSK;
1021
Emmanuel Grumbach105183b2011-08-25 23:11:02 -07001022 tbl_dw_addr = trans_pcie->scd_base_addr +
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001023 SCD_TRANS_TBL_OFFSET_QUEUE(txq_id);
1024
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001025 tbl_dw = iwl_trans_read_mem32(trans, tbl_dw_addr);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001026
1027 if (txq_id & 0x1)
1028 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
1029 else
1030 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
1031
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001032 iwl_trans_write_mem32(trans, tbl_dw_addr, tbl_dw);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001033
1034 return 0;
1035}
1036
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001037static inline void iwl_pcie_txq_set_inactive(struct iwl_trans *trans,
1038 u16 txq_id)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001039{
1040 /* Simply stop the queue, but don't change any configuration;
1041 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001042 iwl_write_prph(trans,
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001043 SCD_QUEUE_STATUS_BITS(txq_id),
1044 (0 << SCD_QUEUE_STTS_REG_POS_ACTIVE)|
1045 (1 << SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
1046}
1047
Emmanuel Grumbachbd5f6a32013-04-28 14:05:22 +03001048/* Receiver address (actually, Rx station's index into station table),
1049 * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */
1050#define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
1051
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001052void iwl_trans_pcie_txq_enable(struct iwl_trans *trans, int txq_id, int fifo,
1053 int sta_id, int tid, int frame_limit, u16 ssn)
Johannes Berg70a18c52012-03-05 11:24:44 -08001054{
Johannes Berg9eae88f2012-03-15 13:26:52 -07001055 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001056
Johannes Berg9eae88f2012-03-15 13:26:52 -07001057 if (test_and_set_bit(txq_id, trans_pcie->queue_used))
1058 WARN_ONCE(1, "queue %d already used - expect issues", txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001059
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001060 /* Stop this Tx queue before configuring it */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001061 iwl_pcie_txq_set_inactive(trans, txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001062
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001063 /* Set this queue as a chain-building queue unless it is CMD queue */
1064 if (txq_id != trans_pcie->cmd_queue)
1065 iwl_set_bits_prph(trans, SCD_QUEUECHAIN_SEL, BIT(txq_id));
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001066
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001067 /* If this queue is mapped to a certain station: it is an AGG queue */
Emmanuel Grumbach881acd82013-03-19 16:16:00 +02001068 if (sta_id >= 0) {
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001069 u16 ra_tid = BUILD_RAxTID(sta_id, tid);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001070
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001071 /* Map receiver-address / traffic-ID to this queue */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001072 iwl_pcie_txq_set_ratid_map(trans, ra_tid, txq_id);
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001073
1074 /* enable aggregations for the queue */
1075 iwl_set_bits_prph(trans, SCD_AGGR_SEL, BIT(txq_id));
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001076 } else {
1077 /*
1078 * disable aggregations for the queue, this will also make the
1079 * ra_tid mapping configuration irrelevant since it is now a
1080 * non-AGG queue.
1081 */
1082 iwl_clear_bits_prph(trans, SCD_AGGR_SEL, BIT(txq_id));
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001083 }
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001084
1085 /* Place first TFD at index corresponding to start sequence number.
1086 * Assumes that ssn_idx is valid (!= 0xFFF) */
Emmanuel Grumbach822e8b22011-11-21 13:25:31 +02001087 trans_pcie->txq[txq_id].q.read_ptr = (ssn & 0xff);
1088 trans_pcie->txq[txq_id].q.write_ptr = (ssn & 0xff);
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001089
1090 iwl_write_direct32(trans, HBUS_TARG_WRPTR,
1091 (ssn & 0xff) | (txq_id << 8));
1092 iwl_write_prph(trans, SCD_QUEUE_RDPTR(txq_id), ssn);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001093
1094 /* Set up Tx window size and frame limit for this queue */
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001095 iwl_trans_write_mem32(trans, trans_pcie->scd_base_addr +
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001096 SCD_CONTEXT_QUEUE_OFFSET(txq_id), 0);
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001097 iwl_trans_write_mem32(trans, trans_pcie->scd_base_addr +
Johannes Berg9eae88f2012-03-15 13:26:52 -07001098 SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
1099 ((frame_limit << SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
1100 SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
1101 ((frame_limit << SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
1102 SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001103
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001104 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001105 iwl_write_prph(trans, SCD_QUEUE_STATUS_BITS(txq_id),
1106 (1 << SCD_QUEUE_STTS_REG_POS_ACTIVE) |
1107 (fifo << SCD_QUEUE_STTS_REG_POS_TXF) |
1108 (1 << SCD_QUEUE_STTS_REG_POS_WSL) |
1109 SCD_QUEUE_STTS_REG_MSK);
1110 IWL_DEBUG_TX_QUEUES(trans, "Activate queue %d on FIFO %d WrPtr: %d\n",
1111 txq_id, fifo, ssn & 0xff);
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001112}
1113
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001114void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int txq_id)
Emmanuel Grumbach288712a2011-08-25 23:11:25 -07001115{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001116 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach986ea6c2012-09-30 16:25:43 +02001117 u32 stts_addr = trans_pcie->scd_base_addr +
1118 SCD_TX_STTS_QUEUE_OFFSET(txq_id);
1119 static const u32 zero_val[4] = {};
Emmanuel Grumbach288712a2011-08-25 23:11:25 -07001120
Johannes Berg9eae88f2012-03-15 13:26:52 -07001121 if (!test_and_clear_bit(txq_id, trans_pcie->queue_used)) {
1122 WARN_ONCE(1, "queue %d not used", txq_id);
1123 return;
Emmanuel Grumbachbc237732011-11-21 13:25:31 +02001124 }
1125
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001126 iwl_pcie_txq_set_inactive(trans, txq_id);
Emmanuel Grumbachac928f82012-10-14 16:36:36 +02001127
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001128 iwl_trans_write_mem(trans, stts_addr, (void *)zero_val,
1129 ARRAY_SIZE(zero_val));
Emmanuel Grumbach986ea6c2012-09-30 16:25:43 +02001130
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001131 iwl_pcie_txq_unmap(trans, txq_id);
Emmanuel Grumbach6c3fd3f2012-10-18 12:38:37 +02001132
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001133 IWL_DEBUG_TX_QUEUES(trans, "Deactivate queue %d\n", txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001134}
1135
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001136/*************** HOST COMMAND QUEUE FUNCTIONS *****/
1137
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001138/*
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001139 * iwl_pcie_enqueue_hcmd - enqueue a uCode command
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001140 * @priv: device private data point
1141 * @cmd: a point to the ucode command structure
1142 *
1143 * The function returns < 0 values to indicate the operation is
1144 * failed. On success, it turns the index (> 0) of command in the
1145 * command queue.
1146 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001147static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,
1148 struct iwl_host_cmd *cmd)
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001149{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001150 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001151 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001152 struct iwl_queue *q = &txq->q;
Johannes Bergc2acea82009-07-24 11:13:05 -07001153 struct iwl_device_cmd *out_cmd;
1154 struct iwl_cmd_meta *out_meta;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001155 void *dup_buf = NULL;
Tomas Winklerf3674222008-08-04 16:00:44 +08001156 dma_addr_t phys_addr;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001157 int idx;
Johannes Berg38c0f3342013-02-27 13:18:50 +01001158 u16 copy_size, cmd_size, scratch_size;
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001159 bool had_nocopy = false;
1160 int i;
Emmanuel Grumbach96791422012-07-24 01:58:32 +03001161 u32 cmd_pos;
Johannes Berg1afbfb62013-02-26 11:32:26 +01001162 const u8 *cmddata[IWL_MAX_CMD_TBS_PER_TFD];
1163 u16 cmdlen[IWL_MAX_CMD_TBS_PER_TFD];
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001164
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001165 copy_size = sizeof(out_cmd->hdr);
1166 cmd_size = sizeof(out_cmd->hdr);
1167
1168 /* need one for the header if the first is NOCOPY */
Johannes Berg1afbfb62013-02-26 11:32:26 +01001169 BUILD_BUG_ON(IWL_MAX_CMD_TBS_PER_TFD > IWL_NUM_OF_TBS - 1);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001170
Johannes Berg1afbfb62013-02-26 11:32:26 +01001171 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg8a964f42013-02-25 16:01:34 +01001172 cmddata[i] = cmd->data[i];
1173 cmdlen[i] = cmd->len[i];
1174
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001175 if (!cmd->len[i])
1176 continue;
Johannes Berg8a964f42013-02-25 16:01:34 +01001177
Johannes Berg38c0f3342013-02-27 13:18:50 +01001178 /* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */
1179 if (copy_size < IWL_HCMD_SCRATCHBUF_SIZE) {
1180 int copy = IWL_HCMD_SCRATCHBUF_SIZE - copy_size;
Johannes Berg8a964f42013-02-25 16:01:34 +01001181
1182 if (copy > cmdlen[i])
1183 copy = cmdlen[i];
1184 cmdlen[i] -= copy;
1185 cmddata[i] += copy;
1186 copy_size += copy;
1187 }
1188
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001189 if (cmd->dataflags[i] & IWL_HCMD_DFL_NOCOPY) {
1190 had_nocopy = true;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001191 if (WARN_ON(cmd->dataflags[i] & IWL_HCMD_DFL_DUP)) {
1192 idx = -EINVAL;
1193 goto free_dup_buf;
1194 }
1195 } else if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP) {
1196 /*
1197 * This is also a chunk that isn't copied
1198 * to the static buffer so set had_nocopy.
1199 */
1200 had_nocopy = true;
1201
1202 /* only allowed once */
1203 if (WARN_ON(dup_buf)) {
1204 idx = -EINVAL;
1205 goto free_dup_buf;
1206 }
1207
Johannes Berg8a964f42013-02-25 16:01:34 +01001208 dup_buf = kmemdup(cmddata[i], cmdlen[i],
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001209 GFP_ATOMIC);
1210 if (!dup_buf)
1211 return -ENOMEM;
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001212 } else {
1213 /* NOCOPY must not be followed by normal! */
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001214 if (WARN_ON(had_nocopy)) {
1215 idx = -EINVAL;
1216 goto free_dup_buf;
1217 }
Johannes Berg8a964f42013-02-25 16:01:34 +01001218 copy_size += cmdlen[i];
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001219 }
1220 cmd_size += cmd->len[i];
1221 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001222
Johannes Berg3e41ace2011-04-18 09:12:37 -07001223 /*
1224 * If any of the command structures end up being larger than
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001225 * the TFD_MAX_PAYLOAD_SIZE and they aren't dynamically
1226 * allocated into separate TFDs, then we will need to
1227 * increase the size of the buffers.
Johannes Berg3e41ace2011-04-18 09:12:37 -07001228 */
Johannes Berg2a79e452012-09-26 13:32:13 +02001229 if (WARN(copy_size > TFD_MAX_PAYLOAD_SIZE,
1230 "Command %s (%#x) is too large (%d bytes)\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001231 get_cmd_string(trans_pcie, cmd->id), cmd->id, copy_size)) {
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001232 idx = -EINVAL;
1233 goto free_dup_buf;
1234 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001235
Johannes Berg015c15e2012-03-05 11:24:24 -08001236 spin_lock_bh(&txq->lock);
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001237
Johannes Bergc2acea82009-07-24 11:13:05 -07001238 if (iwl_queue_space(q) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
Johannes Berg015c15e2012-03-05 11:24:24 -08001239 spin_unlock_bh(&txq->lock);
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001240
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001241 IWL_ERR(trans, "No space in command queue\n");
Johannes Berg0e781842012-03-06 13:30:49 -08001242 iwl_op_mode_cmd_queue_full(trans->op_mode);
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001243 idx = -ENOSPC;
1244 goto free_dup_buf;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001245 }
1246
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001247 idx = get_cmd_index(q, q->write_ptr);
Johannes Bergbf8440e2012-03-19 17:12:06 +01001248 out_cmd = txq->entries[idx].cmd;
1249 out_meta = &txq->entries[idx].meta;
Johannes Bergc2acea82009-07-24 11:13:05 -07001250
Daniel C Halperin8ce73f32009-07-31 14:28:06 -07001251 memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */
Johannes Bergc2acea82009-07-24 11:13:05 -07001252 if (cmd->flags & CMD_WANT_SKB)
1253 out_meta->source = cmd;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001254
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001255 /* set up the header */
1256
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001257 out_cmd->hdr.cmd = cmd->id;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001258 out_cmd->hdr.flags = 0;
Emmanuel Grumbachcefeaa52011-08-25 23:10:40 -07001259 out_cmd->hdr.sequence =
Meenakshi Venkataramanc6f600f2012-03-08 11:29:12 -08001260 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
Emmanuel Grumbachcefeaa52011-08-25 23:10:40 -07001261 INDEX_TO_SEQ(q->write_ptr));
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001262
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001263 /* and copy the data that needs to be copied */
Emmanuel Grumbach96791422012-07-24 01:58:32 +03001264 cmd_pos = offsetof(struct iwl_device_cmd, payload);
Johannes Berg8a964f42013-02-25 16:01:34 +01001265 copy_size = sizeof(out_cmd->hdr);
Johannes Berg1afbfb62013-02-26 11:32:26 +01001266 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg8a964f42013-02-25 16:01:34 +01001267 int copy = 0;
1268
Emmanuel Grumbachcc904c72013-03-14 08:35:06 +02001269 if (!cmd->len[i])
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001270 continue;
Johannes Berg8a964f42013-02-25 16:01:34 +01001271
Johannes Berg38c0f3342013-02-27 13:18:50 +01001272 /* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */
1273 if (copy_size < IWL_HCMD_SCRATCHBUF_SIZE) {
1274 copy = IWL_HCMD_SCRATCHBUF_SIZE - copy_size;
Johannes Berg8a964f42013-02-25 16:01:34 +01001275
1276 if (copy > cmd->len[i])
1277 copy = cmd->len[i];
1278 }
1279
1280 /* copy everything if not nocopy/dup */
1281 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1282 IWL_HCMD_DFL_DUP)))
1283 copy = cmd->len[i];
1284
1285 if (copy) {
1286 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1287 cmd_pos += copy;
1288 copy_size += copy;
1289 }
Emmanuel Grumbach96791422012-07-24 01:58:32 +03001290 }
1291
Johannes Bergd9fb6462012-03-26 08:23:39 -07001292 IWL_DEBUG_HC(trans,
Johannes Berg20d3b642012-05-16 22:54:29 +02001293 "Sending command %s (#%x), seq: 0x%04X, %d bytes at %d[%d]:%d\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001294 get_cmd_string(trans_pcie, out_cmd->hdr.cmd),
Johannes Berg20d3b642012-05-16 22:54:29 +02001295 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
1296 cmd_size, q->write_ptr, idx, trans_pcie->cmd_queue);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001297
Johannes Berg38c0f3342013-02-27 13:18:50 +01001298 /* start the TFD with the scratchbuf */
1299 scratch_size = min_t(int, copy_size, IWL_HCMD_SCRATCHBUF_SIZE);
1300 memcpy(&txq->scratchbufs[q->write_ptr], &out_cmd->hdr, scratch_size);
1301 iwl_pcie_txq_build_tfd(trans, txq,
1302 iwl_pcie_get_scratchbuf_dma(txq, q->write_ptr),
1303 scratch_size, 1);
Johannes Berg8a964f42013-02-25 16:01:34 +01001304
Johannes Berg38c0f3342013-02-27 13:18:50 +01001305 /* map first command fragment, if any remains */
1306 if (copy_size > scratch_size) {
1307 phys_addr = dma_map_single(trans->dev,
1308 ((u8 *)&out_cmd->hdr) + scratch_size,
1309 copy_size - scratch_size,
1310 DMA_TO_DEVICE);
1311 if (dma_mapping_error(trans->dev, phys_addr)) {
1312 iwl_pcie_tfd_unmap(trans, out_meta,
1313 &txq->tfds[q->write_ptr]);
1314 idx = -ENOMEM;
1315 goto out;
1316 }
1317
1318 iwl_pcie_txq_build_tfd(trans, txq, phys_addr,
1319 copy_size - scratch_size, 0);
Johannes Berg2c46f722011-04-28 07:27:10 -07001320 }
1321
Johannes Berg8a964f42013-02-25 16:01:34 +01001322 /* map the remaining (adjusted) nocopy/dup fragments */
Johannes Berg1afbfb62013-02-26 11:32:26 +01001323 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg8a964f42013-02-25 16:01:34 +01001324 const void *data = cmddata[i];
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001325
Johannes Berg8a964f42013-02-25 16:01:34 +01001326 if (!cmdlen[i])
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001327 continue;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001328 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1329 IWL_HCMD_DFL_DUP)))
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001330 continue;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001331 if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP)
1332 data = dup_buf;
1333 phys_addr = dma_map_single(trans->dev, (void *)data,
Johannes Berg98891752013-02-26 11:28:19 +01001334 cmdlen[i], DMA_TO_DEVICE);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001335 if (dma_mapping_error(trans->dev, phys_addr)) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001336 iwl_pcie_tfd_unmap(trans, out_meta,
Johannes Berg98891752013-02-26 11:28:19 +01001337 &txq->tfds[q->write_ptr]);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001338 idx = -ENOMEM;
1339 goto out;
1340 }
1341
Johannes Berg8a964f42013-02-25 16:01:34 +01001342 iwl_pcie_txq_build_tfd(trans, txq, phys_addr, cmdlen[i], 0);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001343 }
Reinette Chatredf833b12009-04-21 10:55:48 -07001344
Emmanuel Grumbachafaf6b52011-07-08 08:46:09 -07001345 out_meta->flags = cmd->flags;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001346 if (WARN_ON_ONCE(txq->entries[idx].free_buf))
1347 kfree(txq->entries[idx].free_buf);
1348 txq->entries[idx].free_buf = dup_buf;
Johannes Berg2c46f722011-04-28 07:27:10 -07001349
1350 txq->need_update = 1;
1351
Johannes Berg8a964f42013-02-25 16:01:34 +01001352 trace_iwlwifi_dev_hcmd(trans->dev, cmd, cmd_size, &out_cmd->hdr);
Reinette Chatredf833b12009-04-21 10:55:48 -07001353
Johannes Berg7c5ba4a2012-04-09 17:46:54 -07001354 /* start timer if queue currently empty */
1355 if (q->read_ptr == q->write_ptr && trans_pcie->wd_timeout)
1356 mod_timer(&txq->stuck_timer, jiffies + trans_pcie->wd_timeout);
1357
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001358 /* Increment and update queue's write index */
1359 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001360 iwl_pcie_txq_inc_wr_ptr(trans, txq);
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001361
Johannes Berg2c46f722011-04-28 07:27:10 -07001362 out:
Johannes Berg015c15e2012-03-05 11:24:24 -08001363 spin_unlock_bh(&txq->lock);
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001364 free_dup_buf:
1365 if (idx < 0)
1366 kfree(dup_buf);
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001367 return idx;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001368}
1369
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001370/*
1371 * iwl_pcie_hcmd_complete - Pull unused buffers off the queue and reclaim them
Tomas Winkler17b88922008-05-29 16:35:12 +08001372 * @rxb: Rx buffer to reclaim
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -07001373 * @handler_status: return value of the handler of the command
1374 * (put in setup_rx_handlers)
Tomas Winkler17b88922008-05-29 16:35:12 +08001375 *
1376 * If an Rx buffer has an async callback associated with it the callback
1377 * will be executed. The attached skb (if present) will only be freed
1378 * if the callback returns 1
1379 */
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001380void iwl_pcie_hcmd_complete(struct iwl_trans *trans,
1381 struct iwl_rx_cmd_buffer *rxb, int handler_status)
Tomas Winkler17b88922008-05-29 16:35:12 +08001382{
Zhu Yi2f301222009-10-09 17:19:45 +08001383 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler17b88922008-05-29 16:35:12 +08001384 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1385 int txq_id = SEQ_TO_QUEUE(sequence);
1386 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler17b88922008-05-29 16:35:12 +08001387 int cmd_index;
Johannes Bergc2acea82009-07-24 11:13:05 -07001388 struct iwl_device_cmd *cmd;
1389 struct iwl_cmd_meta *meta;
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001390 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001391 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
Tomas Winkler17b88922008-05-29 16:35:12 +08001392
1393 /* If a Tx command is being handled and it isn't in the actual
1394 * command queue then there a command routing bug has been introduced
1395 * in the queue management code. */
Meenakshi Venkataramanc6f600f2012-03-08 11:29:12 -08001396 if (WARN(txq_id != trans_pcie->cmd_queue,
Johannes Berg13bb9482010-08-23 10:46:33 +02001397 "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n",
Johannes Berg20d3b642012-05-16 22:54:29 +02001398 txq_id, trans_pcie->cmd_queue, sequence,
1399 trans_pcie->txq[trans_pcie->cmd_queue].q.read_ptr,
1400 trans_pcie->txq[trans_pcie->cmd_queue].q.write_ptr)) {
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -07001401 iwl_print_hex_error(trans, pkt, 32);
Johannes Berg55d6a3c2008-09-23 19:18:43 +02001402 return;
Winkler, Tomas01ef93232008-11-07 09:58:45 -08001403 }
Tomas Winkler17b88922008-05-29 16:35:12 +08001404
Johannes Berg2bfb5092012-12-27 21:43:48 +01001405 spin_lock_bh(&txq->lock);
Johannes Berg015c15e2012-03-05 11:24:24 -08001406
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001407 cmd_index = get_cmd_index(&txq->q, index);
Johannes Bergbf8440e2012-03-19 17:12:06 +01001408 cmd = txq->entries[cmd_index].cmd;
1409 meta = &txq->entries[cmd_index].meta;
Tomas Winkler17b88922008-05-29 16:35:12 +08001410
Johannes Berg98891752013-02-26 11:28:19 +01001411 iwl_pcie_tfd_unmap(trans, meta, &txq->tfds[index]);
Reinette Chatrec33de622009-10-30 14:36:10 -07001412
Tomas Winkler17b88922008-05-29 16:35:12 +08001413 /* Input error checking is done when commands are added to queue. */
Johannes Bergc2acea82009-07-24 11:13:05 -07001414 if (meta->flags & CMD_WANT_SKB) {
Johannes Berg48a2d662012-03-05 11:24:39 -08001415 struct page *p = rxb_steal_page(rxb);
Stanislaw Gruszka2624e962011-04-20 16:02:58 +02001416
Johannes Berg65b94a42012-03-05 11:24:38 -08001417 meta->source->resp_pkt = pkt;
1418 meta->source->_rx_page_addr = (unsigned long)page_address(p);
Johannes Bergb2cf4102012-04-09 17:46:51 -07001419 meta->source->_rx_page_order = trans_pcie->rx_page_order;
Johannes Berg65b94a42012-03-05 11:24:38 -08001420 meta->source->handler_status = handler_status;
Stanislaw Gruszka2624e962011-04-20 16:02:58 +02001421 }
Tomas Winkler17b88922008-05-29 16:35:12 +08001422
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001423 iwl_pcie_cmdq_reclaim(trans, txq_id, index);
Tomas Winkler17b88922008-05-29 16:35:12 +08001424
Johannes Bergc2acea82009-07-24 11:13:05 -07001425 if (!(meta->flags & CMD_ASYNC)) {
Don Fry74fda972012-03-20 16:36:54 -07001426 if (!test_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status)) {
Wey-Yi Guy05c89b92011-10-10 07:26:48 -07001427 IWL_WARN(trans,
1428 "HCMD_ACTIVE already clear for command %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001429 get_cmd_string(trans_pcie, cmd->hdr.cmd));
Wey-Yi Guy05c89b92011-10-10 07:26:48 -07001430 }
Don Fry74fda972012-03-20 16:36:54 -07001431 clear_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001432 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001433 get_cmd_string(trans_pcie, cmd->hdr.cmd));
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001434 wake_up(&trans_pcie->wait_command_queue);
Tomas Winkler17b88922008-05-29 16:35:12 +08001435 }
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001436
Zhu Yidd487442010-03-22 02:28:41 -07001437 meta->flags = 0;
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001438
Johannes Berg2bfb5092012-12-27 21:43:48 +01001439 spin_unlock_bh(&txq->lock);
Tomas Winkler17b88922008-05-29 16:35:12 +08001440}
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001441
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001442#define HOST_COMPLETE_TIMEOUT (2 * HZ)
1443
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001444static int iwl_pcie_send_hcmd_async(struct iwl_trans *trans,
1445 struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001446{
Johannes Bergd9fb6462012-03-26 08:23:39 -07001447 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001448 int ret;
1449
1450 /* An asynchronous command can not expect an SKB to be set. */
1451 if (WARN_ON(cmd->flags & CMD_WANT_SKB))
1452 return -EINVAL;
1453
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001454 ret = iwl_pcie_enqueue_hcmd(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001455 if (ret < 0) {
Johannes Berg721c32f2012-03-06 13:30:40 -08001456 IWL_ERR(trans,
Todd Previteb36b1102011-11-10 06:55:02 -08001457 "Error sending %s: enqueue_hcmd failed: %d\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001458 get_cmd_string(trans_pcie, cmd->id), ret);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001459 return ret;
1460 }
1461 return 0;
1462}
1463
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001464static int iwl_pcie_send_hcmd_sync(struct iwl_trans *trans,
1465 struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001466{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001467 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001468 int cmd_idx;
1469 int ret;
1470
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001471 IWL_DEBUG_INFO(trans, "Attempting to send sync command %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001472 get_cmd_string(trans_pcie, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001473
Johannes Berg2cc39c92012-03-06 13:30:41 -08001474 if (WARN_ON(test_and_set_bit(STATUS_HCMD_ACTIVE,
Don Fry74fda972012-03-20 16:36:54 -07001475 &trans_pcie->status))) {
Johannes Berg2cc39c92012-03-06 13:30:41 -08001476 IWL_ERR(trans, "Command %s: a command is already active!\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001477 get_cmd_string(trans_pcie, cmd->id));
Johannes Berg2cc39c92012-03-06 13:30:41 -08001478 return -EIO;
1479 }
1480
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001481 IWL_DEBUG_INFO(trans, "Setting HCMD_ACTIVE for command %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001482 get_cmd_string(trans_pcie, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001483
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001484 cmd_idx = iwl_pcie_enqueue_hcmd(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001485 if (cmd_idx < 0) {
1486 ret = cmd_idx;
Don Fry74fda972012-03-20 16:36:54 -07001487 clear_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status);
Johannes Berg721c32f2012-03-06 13:30:40 -08001488 IWL_ERR(trans,
Todd Previteb36b1102011-11-10 06:55:02 -08001489 "Error sending %s: enqueue_hcmd failed: %d\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001490 get_cmd_string(trans_pcie, cmd->id), ret);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001491 return ret;
1492 }
1493
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001494 ret = wait_event_timeout(trans_pcie->wait_command_queue,
Johannes Berg20d3b642012-05-16 22:54:29 +02001495 !test_bit(STATUS_HCMD_ACTIVE,
1496 &trans_pcie->status),
1497 HOST_COMPLETE_TIMEOUT);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001498 if (!ret) {
Don Fry74fda972012-03-20 16:36:54 -07001499 if (test_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status)) {
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001500 struct iwl_txq *txq =
Meenakshi Venkataramanc6f600f2012-03-08 11:29:12 -08001501 &trans_pcie->txq[trans_pcie->cmd_queue];
Wey-Yi Guyd10630a2011-10-10 07:26:46 -07001502 struct iwl_queue *q = &txq->q;
1503
Johannes Berg721c32f2012-03-06 13:30:40 -08001504 IWL_ERR(trans,
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001505 "Error sending %s: time out after %dms.\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001506 get_cmd_string(trans_pcie, cmd->id),
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001507 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
1508
Johannes Berg721c32f2012-03-06 13:30:40 -08001509 IWL_ERR(trans,
Wey-Yi Guyd10630a2011-10-10 07:26:46 -07001510 "Current CMD queue read_ptr %d write_ptr %d\n",
1511 q->read_ptr, q->write_ptr);
1512
Don Fry74fda972012-03-20 16:36:54 -07001513 clear_bit(STATUS_HCMD_ACTIVE, &trans_pcie->status);
Johannes Bergd9fb6462012-03-26 08:23:39 -07001514 IWL_DEBUG_INFO(trans,
1515 "Clearing HCMD_ACTIVE for command %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001516 get_cmd_string(trans_pcie, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001517 ret = -ETIMEDOUT;
1518 goto cancel;
1519 }
1520 }
1521
Johannes Bergd18aa872012-11-06 16:36:21 +01001522 if (test_bit(STATUS_FW_ERROR, &trans_pcie->status)) {
1523 IWL_ERR(trans, "FW error in SYNC CMD %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001524 get_cmd_string(trans_pcie, cmd->id));
Johannes Bergb656fa32013-05-03 11:56:17 +02001525 dump_stack();
Johannes Bergd18aa872012-11-06 16:36:21 +01001526 ret = -EIO;
1527 goto cancel;
1528 }
1529
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001530 if (test_bit(STATUS_RFKILL, &trans_pcie->status)) {
1531 IWL_DEBUG_RF_KILL(trans, "RFKILL in SYNC CMD... no rsp\n");
1532 ret = -ERFKILL;
1533 goto cancel;
1534 }
1535
Johannes Berg65b94a42012-03-05 11:24:38 -08001536 if ((cmd->flags & CMD_WANT_SKB) && !cmd->resp_pkt) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001537 IWL_ERR(trans, "Error: Response NULL in '%s'\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001538 get_cmd_string(trans_pcie, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001539 ret = -EIO;
1540 goto cancel;
1541 }
1542
1543 return 0;
1544
1545cancel:
1546 if (cmd->flags & CMD_WANT_SKB) {
1547 /*
1548 * Cancel the CMD_WANT_SKB flag for the cmd in the
1549 * TX cmd queue. Otherwise in case the cmd comes
1550 * in later, it will possibly set an invalid
1551 * address (cmd->meta.source).
1552 */
Johannes Bergbf8440e2012-03-19 17:12:06 +01001553 trans_pcie->txq[trans_pcie->cmd_queue].
1554 entries[cmd_idx].meta.flags &= ~CMD_WANT_SKB;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001555 }
Emmanuel Grumbach9cac4942011-11-10 06:55:20 -08001556
Johannes Berg65b94a42012-03-05 11:24:38 -08001557 if (cmd->resp_pkt) {
1558 iwl_free_resp(cmd);
1559 cmd->resp_pkt = NULL;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001560 }
1561
1562 return ret;
1563}
1564
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001565int iwl_trans_pcie_send_hcmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001566{
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001567 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1568
Johannes Bergd18aa872012-11-06 16:36:21 +01001569 if (test_bit(STATUS_FW_ERROR, &trans_pcie->status))
1570 return -EIO;
1571
Eran Harary4f593342013-05-13 07:53:26 +03001572 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
1573 test_bit(STATUS_RFKILL, &trans_pcie->status)) {
Emmanuel Grumbach754d7d92013-03-13 22:16:20 +02001574 IWL_DEBUG_RF_KILL(trans, "Dropping CMD 0x%x: RF KILL\n",
1575 cmd->id);
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001576 return -ERFKILL;
Emmanuel Grumbach754d7d92013-03-13 22:16:20 +02001577 }
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001578
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001579 if (cmd->flags & CMD_ASYNC)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001580 return iwl_pcie_send_hcmd_async(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001581
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001582 /* We still can fail on RFKILL that can be asserted while we wait */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001583 return iwl_pcie_send_hcmd_sync(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001584}
1585
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001586int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
1587 struct iwl_device_cmd *dev_cmd, int txq_id)
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001588{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001589 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001590 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1591 struct iwl_tx_cmd *tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
1592 struct iwl_cmd_meta *out_meta;
1593 struct iwl_txq *txq;
1594 struct iwl_queue *q;
Johannes Berg38c0f3342013-02-27 13:18:50 +01001595 dma_addr_t tb0_phys, tb1_phys, scratch_phys;
1596 void *tb1_addr;
1597 u16 len, tb1_len, tb2_len;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001598 u8 wait_write_ptr = 0;
1599 __le16 fc = hdr->frame_control;
1600 u8 hdr_len = ieee80211_hdrlen(fc);
1601 u16 __maybe_unused wifi_seq;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001602
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001603 txq = &trans_pcie->txq[txq_id];
1604 q = &txq->q;
Emmanuel Grumbach39644e92011-09-15 11:46:29 -07001605
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001606 if (unlikely(!test_bit(txq_id, trans_pcie->queue_used))) {
1607 WARN_ON_ONCE(1);
1608 return -EINVAL;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001609 }
1610
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001611 spin_lock(&txq->lock);
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001612
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001613 /* In AGG mode, the index in the ring must correspond to the WiFi
1614 * sequence number. This is a HW requirements to help the SCD to parse
1615 * the BA.
1616 * Check here that the packets are in the right place on the ring.
1617 */
1618#ifdef CONFIG_IWLWIFI_DEBUG
Johannes Berg9a886582013-02-15 19:25:00 +01001619 wifi_seq = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001620 WARN_ONCE((iwl_read_prph(trans, SCD_AGGR_SEL) & BIT(txq_id)) &&
1621 ((wifi_seq & 0xff) != q->write_ptr),
1622 "Q: %d WiFi Seq %d tfdNum %d",
1623 txq_id, wifi_seq, q->write_ptr);
1624#endif
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001625
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001626 /* Set up driver data for this TFD */
1627 txq->entries[q->write_ptr].skb = skb;
1628 txq->entries[q->write_ptr].cmd = dev_cmd;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001629
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001630 dev_cmd->hdr.cmd = REPLY_TX;
1631 dev_cmd->hdr.sequence =
1632 cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
1633 INDEX_TO_SEQ(q->write_ptr)));
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001634
Johannes Berg38c0f3342013-02-27 13:18:50 +01001635 tb0_phys = iwl_pcie_get_scratchbuf_dma(txq, q->write_ptr);
1636 scratch_phys = tb0_phys + sizeof(struct iwl_cmd_header) +
1637 offsetof(struct iwl_tx_cmd, scratch);
1638
1639 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
1640 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
1641
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001642 /* Set up first empty entry in queue's array of Tx/cmd buffers */
1643 out_meta = &txq->entries[q->write_ptr].meta;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001644
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001645 /*
Johannes Berg38c0f3342013-02-27 13:18:50 +01001646 * The second TB (tb1) points to the remainder of the TX command
1647 * and the 802.11 header - dword aligned size
1648 * (This calculation modifies the TX command, so do it before the
1649 * setup of the first TB)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001650 */
Johannes Berg38c0f3342013-02-27 13:18:50 +01001651 len = sizeof(struct iwl_tx_cmd) + sizeof(struct iwl_cmd_header) +
1652 hdr_len - IWL_HCMD_SCRATCHBUF_SIZE;
1653 tb1_len = (len + 3) & ~3;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001654
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001655 /* Tell NIC about any 2-byte padding after MAC header */
Johannes Berg38c0f3342013-02-27 13:18:50 +01001656 if (tb1_len != len)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001657 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
1658
Johannes Berg38c0f3342013-02-27 13:18:50 +01001659 /* The first TB points to the scratchbuf data - min_copy bytes */
1660 memcpy(&txq->scratchbufs[q->write_ptr], &dev_cmd->hdr,
1661 IWL_HCMD_SCRATCHBUF_SIZE);
1662 iwl_pcie_txq_build_tfd(trans, txq, tb0_phys,
1663 IWL_HCMD_SCRATCHBUF_SIZE, 1);
1664
1665 /* there must be data left over for TB1 or this code must be changed */
1666 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd) < IWL_HCMD_SCRATCHBUF_SIZE);
1667
1668 /* map the data for TB1 */
1669 tb1_addr = ((u8 *)&dev_cmd->hdr) + IWL_HCMD_SCRATCHBUF_SIZE;
1670 tb1_phys = dma_map_single(trans->dev, tb1_addr, tb1_len, DMA_TO_DEVICE);
1671 if (unlikely(dma_mapping_error(trans->dev, tb1_phys)))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001672 goto out_err;
Johannes Berg38c0f3342013-02-27 13:18:50 +01001673 iwl_pcie_txq_build_tfd(trans, txq, tb1_phys, tb1_len, 0);
1674
1675 /*
1676 * Set up TFD's third entry to point directly to remainder
1677 * of skb, if any (802.11 null frames have no payload).
1678 */
1679 tb2_len = skb->len - hdr_len;
1680 if (tb2_len > 0) {
1681 dma_addr_t tb2_phys = dma_map_single(trans->dev,
1682 skb->data + hdr_len,
1683 tb2_len, DMA_TO_DEVICE);
1684 if (unlikely(dma_mapping_error(trans->dev, tb2_phys))) {
1685 iwl_pcie_tfd_unmap(trans, out_meta,
1686 &txq->tfds[q->write_ptr]);
1687 goto out_err;
1688 }
1689 iwl_pcie_txq_build_tfd(trans, txq, tb2_phys, tb2_len, 0);
1690 }
1691
1692 /* Set up entry for this TFD in Tx byte-count array */
1693 iwl_pcie_txq_update_byte_cnt_tbl(trans, txq, le16_to_cpu(tx_cmd->len));
1694
1695 trace_iwlwifi_dev_tx(trans->dev, skb,
1696 &txq->tfds[txq->q.write_ptr],
1697 sizeof(struct iwl_tfd),
1698 &dev_cmd->hdr, IWL_HCMD_SCRATCHBUF_SIZE + tb1_len,
1699 skb->data + hdr_len, tb2_len);
1700 trace_iwlwifi_dev_tx_data(trans->dev, skb,
1701 skb->data + hdr_len, tb2_len);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001702
1703 if (!ieee80211_has_morefrags(fc)) {
1704 txq->need_update = 1;
1705 } else {
1706 wait_write_ptr = 1;
1707 txq->need_update = 0;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001708 }
Johannes Berg7c5ba4a2012-04-09 17:46:54 -07001709
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001710 /* start timer if queue currently empty */
1711 if (txq->need_update && q->read_ptr == q->write_ptr &&
1712 trans_pcie->wd_timeout)
1713 mod_timer(&txq->stuck_timer, jiffies + trans_pcie->wd_timeout);
1714
1715 /* Tell device the write index *just past* this latest filled TFD */
1716 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
1717 iwl_pcie_txq_inc_wr_ptr(trans, txq);
1718
1719 /*
1720 * At this point the frame is "transmitted" successfully
1721 * and we will get a TX status notification eventually,
1722 * regardless of the value of ret. "ret" only indicates
1723 * whether or not we should update the write pointer.
1724 */
1725 if (iwl_queue_space(q) < q->high_mark) {
1726 if (wait_write_ptr) {
1727 txq->need_update = 1;
1728 iwl_pcie_txq_inc_wr_ptr(trans, txq);
1729 } else {
1730 iwl_stop_queue(trans, txq);
1731 }
1732 }
1733 spin_unlock(&txq->lock);
1734 return 0;
1735out_err:
1736 spin_unlock(&txq->lock);
1737 return -1;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001738}