blob: aec9d9f966a53d741a853e4daebe0ba59e805006 [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{
Ido Yariva9b29242013-07-15 11:51:48 -040068 unsigned int max;
69 unsigned int used;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +020070
Ido Yariva9b29242013-07-15 11:51:48 -040071 /*
72 * To avoid ambiguity between empty and completely full queues, there
73 * should always be less than q->n_bd elements in the queue.
74 * If q->n_window is smaller than q->n_bd, there is no need to reserve
75 * any queue entries for this purpose.
76 */
77 if (q->n_window < q->n_bd)
78 max = q->n_window;
79 else
80 max = q->n_bd - 1;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +020081
Ido Yariva9b29242013-07-15 11:51:48 -040082 /*
83 * q->n_bd is a power of 2, so the following is equivalent to modulo by
84 * q->n_bd and is well defined for negative dividends.
85 */
86 used = (q->write_ptr - q->read_ptr) & (q->n_bd - 1);
87
88 if (WARN_ON(used > max))
89 return 0;
90
91 return max - used;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +020092}
93
94/*
95 * iwl_queue_init - Initialize queue's high/low-water and read/write indexes
96 */
97static int iwl_queue_init(struct iwl_queue *q, int count, int slots_num, u32 id)
98{
99 q->n_bd = count;
100 q->n_window = slots_num;
101 q->id = id;
102
103 /* count must be power-of-two size, otherwise iwl_queue_inc_wrap
104 * and iwl_queue_dec_wrap are broken. */
105 if (WARN_ON(!is_power_of_2(count)))
106 return -EINVAL;
107
108 /* slots_num must be power-of-two size, otherwise
109 * get_cmd_index is broken. */
110 if (WARN_ON(!is_power_of_2(slots_num)))
111 return -EINVAL;
112
113 q->low_mark = q->n_window / 4;
114 if (q->low_mark < 4)
115 q->low_mark = 4;
116
117 q->high_mark = q->n_window / 8;
118 if (q->high_mark < 2)
119 q->high_mark = 2;
120
121 q->write_ptr = 0;
122 q->read_ptr = 0;
123
124 return 0;
125}
126
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200127static int iwl_pcie_alloc_dma_ptr(struct iwl_trans *trans,
128 struct iwl_dma_ptr *ptr, size_t size)
129{
130 if (WARN_ON(ptr->addr))
131 return -EINVAL;
132
133 ptr->addr = dma_alloc_coherent(trans->dev, size,
134 &ptr->dma, GFP_KERNEL);
135 if (!ptr->addr)
136 return -ENOMEM;
137 ptr->size = size;
138 return 0;
139}
140
141static void iwl_pcie_free_dma_ptr(struct iwl_trans *trans,
142 struct iwl_dma_ptr *ptr)
143{
144 if (unlikely(!ptr->addr))
145 return;
146
147 dma_free_coherent(trans->dev, ptr->size, ptr->addr, ptr->dma);
148 memset(ptr, 0, sizeof(*ptr));
149}
150
151static void iwl_pcie_txq_stuck_timer(unsigned long data)
152{
153 struct iwl_txq *txq = (void *)data;
154 struct iwl_queue *q = &txq->q;
155 struct iwl_trans_pcie *trans_pcie = txq->trans_pcie;
156 struct iwl_trans *trans = iwl_trans_pcie_get_trans(trans_pcie);
157 u32 scd_sram_addr = trans_pcie->scd_base_addr +
158 SCD_TX_STTS_QUEUE_OFFSET(txq->q.id);
159 u8 buf[16];
160 int i;
161
162 spin_lock(&txq->lock);
163 /* check if triggered erroneously */
164 if (txq->q.read_ptr == txq->q.write_ptr) {
165 spin_unlock(&txq->lock);
166 return;
167 }
168 spin_unlock(&txq->lock);
169
170 IWL_ERR(trans, "Queue %d stuck for %u ms.\n", txq->q.id,
171 jiffies_to_msecs(trans_pcie->wd_timeout));
172 IWL_ERR(trans, "Current SW read_ptr %d write_ptr %d\n",
173 txq->q.read_ptr, txq->q.write_ptr);
174
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +0200175 iwl_trans_read_mem_bytes(trans, scd_sram_addr, buf, sizeof(buf));
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200176
177 iwl_print_hex_error(trans, buf, sizeof(buf));
178
179 for (i = 0; i < FH_TCSR_CHNL_NUM; i++)
180 IWL_ERR(trans, "FH TRBs(%d) = 0x%08x\n", i,
181 iwl_read_direct32(trans, FH_TX_TRB_REG(i)));
182
183 for (i = 0; i < trans->cfg->base_params->num_of_queues; i++) {
184 u32 status = iwl_read_prph(trans, SCD_QUEUE_STATUS_BITS(i));
185 u8 fifo = (status >> SCD_QUEUE_STTS_REG_POS_TXF) & 0x7;
186 bool active = !!(status & BIT(SCD_QUEUE_STTS_REG_POS_ACTIVE));
187 u32 tbl_dw =
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +0200188 iwl_trans_read_mem32(trans,
189 trans_pcie->scd_base_addr +
190 SCD_TRANS_TBL_OFFSET_QUEUE(i));
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200191
192 if (i & 0x1)
193 tbl_dw = (tbl_dw & 0xFFFF0000) >> 16;
194 else
195 tbl_dw = tbl_dw & 0x0000FFFF;
196
197 IWL_ERR(trans,
198 "Q %d is %sactive and mapped to fifo %d ra_tid 0x%04x [%d,%d]\n",
199 i, active ? "" : "in", fifo, tbl_dw,
200 iwl_read_prph(trans,
201 SCD_QUEUE_RDPTR(i)) & (txq->q.n_bd - 1),
202 iwl_read_prph(trans, SCD_QUEUE_WRPTR(i)));
203 }
204
205 for (i = q->read_ptr; i != q->write_ptr;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100206 i = iwl_queue_inc_wrap(i, q->n_bd))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200207 IWL_ERR(trans, "scratch %d = 0x%08x\n", i,
Johannes Berg38c0f3342013-02-27 13:18:50 +0100208 le32_to_cpu(txq->scratchbufs[i].scratch));
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200209
Arik Nemtsov2a988e92013-12-01 13:50:40 +0200210 iwl_trans_fw_error(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200211}
212
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200213/*
214 * iwl_pcie_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300215 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200216static void iwl_pcie_txq_update_byte_cnt_tbl(struct iwl_trans *trans,
217 struct iwl_txq *txq, u16 byte_cnt)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300218{
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700219 struct iwlagn_scd_bc_tbl *scd_bc_tbl;
Johannes Berg20d3b642012-05-16 22:54:29 +0200220 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300221 int write_ptr = txq->q.write_ptr;
222 int txq_id = txq->q.id;
223 u8 sec_ctl = 0;
224 u8 sta_id = 0;
225 u16 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
226 __le16 bc_ent;
Emmanuel Grumbach132f98c2011-09-20 15:37:24 -0700227 struct iwl_tx_cmd *tx_cmd =
Johannes Bergbf8440e2012-03-19 17:12:06 +0100228 (void *) txq->entries[txq->q.write_ptr].cmd->payload;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300229
Emmanuel Grumbach105183b2011-08-25 23:11:02 -0700230 scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
231
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300232 WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX);
233
Emmanuel Grumbach132f98c2011-09-20 15:37:24 -0700234 sta_id = tx_cmd->sta_id;
235 sec_ctl = tx_cmd->sec_ctl;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300236
237 switch (sec_ctl & TX_CMD_SEC_MSK) {
238 case TX_CMD_SEC_CCM:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200239 len += IEEE80211_CCMP_MIC_LEN;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300240 break;
241 case TX_CMD_SEC_TKIP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200242 len += IEEE80211_TKIP_ICV_LEN;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300243 break;
244 case TX_CMD_SEC_WEP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200245 len += IEEE80211_WEP_IV_LEN + IEEE80211_WEP_ICV_LEN;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300246 break;
247 }
248
Emmanuel Grumbach046db342012-12-05 15:07:54 +0200249 if (trans_pcie->bc_table_dword)
250 len = DIV_ROUND_UP(len, 4);
251
252 bc_ent = cpu_to_le16(len | (sta_id << 12));
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300253
254 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
255
256 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
257 scd_bc_tbl[txq_id].
258 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
259}
260
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200261static void iwl_pcie_txq_inval_byte_cnt_tbl(struct iwl_trans *trans,
262 struct iwl_txq *txq)
263{
264 struct iwl_trans_pcie *trans_pcie =
265 IWL_TRANS_GET_PCIE_TRANS(trans);
266 struct iwlagn_scd_bc_tbl *scd_bc_tbl = trans_pcie->scd_bc_tbls.addr;
267 int txq_id = txq->q.id;
268 int read_ptr = txq->q.read_ptr;
269 u8 sta_id = 0;
270 __le16 bc_ent;
271 struct iwl_tx_cmd *tx_cmd =
272 (void *)txq->entries[txq->q.read_ptr].cmd->payload;
273
274 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
275
276 if (txq_id != trans_pcie->cmd_queue)
277 sta_id = tx_cmd->sta_id;
278
279 bc_ent = cpu_to_le16(1 | (sta_id << 12));
280 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
281
282 if (read_ptr < TFD_QUEUE_SIZE_BC_DUP)
283 scd_bc_tbl[txq_id].
284 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
285}
286
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200287/*
288 * iwl_pcie_txq_inc_wr_ptr - Send new write index to hardware
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800289 */
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200290void iwl_pcie_txq_inc_wr_ptr(struct iwl_trans *trans, struct iwl_txq *txq)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800291{
292 u32 reg = 0;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800293 int txq_id = txq->q.id;
294
295 if (txq->need_update == 0)
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -0800296 return;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800297
Emmanuel Grumbach035f7ff2012-03-26 08:57:01 -0700298 if (trans->cfg->base_params->shadow_reg_enable) {
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800299 /* shadow register enabled */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200300 iwl_write32(trans, HBUS_TARG_WRPTR,
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800301 txq->q.write_ptr | (txq_id << 8));
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800302 } else {
303 /* if we're trying to save power */
Arik Nemtsoveb7ff772013-12-01 12:30:38 +0200304 if (test_bit(STATUS_TPOWER_PMI, &trans->status)) {
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800305 /* wake up nic if it's powered down ...
306 * uCode will wake up, and interrupt us again, so next
307 * time we'll skip this part. */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200308 reg = iwl_read32(trans, CSR_UCODE_DRV_GP1);
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800309
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800310 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700311 IWL_DEBUG_INFO(trans,
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800312 "Tx queue %d requesting wakeup,"
313 " GP1 = 0x%x\n", txq_id, reg);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200314 iwl_set_bit(trans, CSR_GP_CNTRL,
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800315 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
316 return;
317 }
318
Emmanuel Grumbach1c3fea82013-01-02 12:12:25 +0200319 IWL_DEBUG_TX(trans, "Q:%d WR: 0x%x\n", txq_id,
320 txq->q.write_ptr);
321
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200322 iwl_write_direct32(trans, HBUS_TARG_WRPTR,
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800323 txq->q.write_ptr | (txq_id << 8));
324
325 /*
326 * else not in power-save mode,
327 * uCode will never sleep when we're
328 * trying to tx (during RFKILL, we're not trying to tx).
329 */
330 } else
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200331 iwl_write32(trans, HBUS_TARG_WRPTR,
Wey-Yi Guyf81c1f42010-11-10 09:56:50 -0800332 txq->q.write_ptr | (txq_id << 8));
333 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800334 txq->need_update = 0;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800335}
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800336
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200337static inline dma_addr_t iwl_pcie_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
Johannes Berg214d14d2011-05-04 07:50:44 -0700338{
339 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
340
341 dma_addr_t addr = get_unaligned_le32(&tb->lo);
342 if (sizeof(dma_addr_t) > sizeof(u32))
343 addr |=
344 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
345
346 return addr;
347}
348
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200349static inline u16 iwl_pcie_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
Johannes Berg214d14d2011-05-04 07:50:44 -0700350{
351 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
352
353 return le16_to_cpu(tb->hi_n_len) >> 4;
354}
355
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200356static inline void iwl_pcie_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
357 dma_addr_t addr, u16 len)
Johannes Berg214d14d2011-05-04 07:50:44 -0700358{
359 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
360 u16 hi_n_len = len << 4;
361
362 put_unaligned_le32(addr, &tb->lo);
363 if (sizeof(dma_addr_t) > sizeof(u32))
364 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
365
366 tb->hi_n_len = cpu_to_le16(hi_n_len);
367
368 tfd->num_tbs = idx + 1;
369}
370
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200371static inline u8 iwl_pcie_tfd_get_num_tbs(struct iwl_tfd *tfd)
Johannes Berg214d14d2011-05-04 07:50:44 -0700372{
373 return tfd->num_tbs & 0x1f;
374}
375
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200376static void iwl_pcie_tfd_unmap(struct iwl_trans *trans,
Johannes Berg98891752013-02-26 11:28:19 +0100377 struct iwl_cmd_meta *meta,
378 struct iwl_tfd *tfd)
Johannes Berg214d14d2011-05-04 07:50:44 -0700379{
Johannes Berg214d14d2011-05-04 07:50:44 -0700380 int i;
381 int num_tbs;
382
Johannes Berg214d14d2011-05-04 07:50:44 -0700383 /* Sanity check on number of chunks */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200384 num_tbs = iwl_pcie_tfd_get_num_tbs(tfd);
Johannes Berg214d14d2011-05-04 07:50:44 -0700385
386 if (num_tbs >= IWL_NUM_OF_TBS) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700387 IWL_ERR(trans, "Too many chunks: %i\n", num_tbs);
Johannes Berg214d14d2011-05-04 07:50:44 -0700388 /* @todo issue fatal error, it is quite serious situation */
389 return;
390 }
391
Johannes Berg38c0f3342013-02-27 13:18:50 +0100392 /* first TB is never freed - it's the scratchbuf data */
Johannes Berg214d14d2011-05-04 07:50:44 -0700393
Johannes Berg214d14d2011-05-04 07:50:44 -0700394 for (i = 1; i < num_tbs; i++)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200395 dma_unmap_single(trans->dev, iwl_pcie_tfd_tb_get_addr(tfd, i),
Johannes Berg98891752013-02-26 11:28:19 +0100396 iwl_pcie_tfd_tb_get_len(tfd, i),
397 DMA_TO_DEVICE);
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200398
399 tfd->num_tbs = 0;
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700400}
401
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200402/*
403 * iwl_pcie_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700404 * @trans - transport private data
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700405 * @txq - tx queue
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200406 * @dma_dir - the direction of the DMA mapping
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700407 *
408 * Does NOT advance any TFD circular buffer read/write indexes
409 * Does NOT free the TFD itself (which is within circular buffer)
410 */
Johannes Berg98891752013-02-26 11:28:19 +0100411static void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq)
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700412{
413 struct iwl_tfd *tfd_tmp = txq->tfds;
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700414
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200415 /* rd_ptr is bounded by n_bd and idx is bounded by n_window */
416 int rd_ptr = txq->q.read_ptr;
417 int idx = get_cmd_index(&txq->q, rd_ptr);
418
Johannes Berg015c15e2012-03-05 11:24:24 -0800419 lockdep_assert_held(&txq->lock);
420
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200421 /* We have only q->n_window txq->entries, but we use q->n_bd tfds */
Johannes Berg98891752013-02-26 11:28:19 +0100422 iwl_pcie_tfd_unmap(trans, &txq->entries[idx].meta, &tfd_tmp[rd_ptr]);
Johannes Berg214d14d2011-05-04 07:50:44 -0700423
424 /* free SKB */
Johannes Bergbf8440e2012-03-19 17:12:06 +0100425 if (txq->entries) {
Johannes Berg214d14d2011-05-04 07:50:44 -0700426 struct sk_buff *skb;
427
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200428 skb = txq->entries[idx].skb;
Johannes Berg214d14d2011-05-04 07:50:44 -0700429
Emmanuel Grumbach909e9b22011-09-15 11:46:30 -0700430 /* Can be called from irqs-disabled context
431 * If skb is not NULL, it means that the whole queue is being
432 * freed and that the queue is not empty - free the skb
433 */
Johannes Berg214d14d2011-05-04 07:50:44 -0700434 if (skb) {
Emmanuel Grumbached277c92012-02-09 16:08:15 +0200435 iwl_op_mode_free_skb(trans->op_mode, skb);
Emmanuel Grumbachebed6332012-05-16 22:35:58 +0200436 txq->entries[idx].skb = NULL;
Johannes Berg214d14d2011-05-04 07:50:44 -0700437 }
438 }
439}
440
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200441static int iwl_pcie_txq_build_tfd(struct iwl_trans *trans, struct iwl_txq *txq,
442 dma_addr_t addr, u16 len, u8 reset)
Johannes Berg214d14d2011-05-04 07:50:44 -0700443{
444 struct iwl_queue *q;
445 struct iwl_tfd *tfd, *tfd_tmp;
446 u32 num_tbs;
447
448 q = &txq->q;
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700449 tfd_tmp = txq->tfds;
Johannes Berg214d14d2011-05-04 07:50:44 -0700450 tfd = &tfd_tmp[q->write_ptr];
451
452 if (reset)
453 memset(tfd, 0, sizeof(*tfd));
454
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200455 num_tbs = iwl_pcie_tfd_get_num_tbs(tfd);
Johannes Berg214d14d2011-05-04 07:50:44 -0700456
457 /* Each TFD can point to a maximum 20 Tx buffers */
458 if (num_tbs >= IWL_NUM_OF_TBS) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -0700459 IWL_ERR(trans, "Error can not send more than %d chunks\n",
Johannes Berg20d3b642012-05-16 22:54:29 +0200460 IWL_NUM_OF_TBS);
Johannes Berg214d14d2011-05-04 07:50:44 -0700461 return -EINVAL;
462 }
463
Eliad Peller1092b9b2013-07-16 17:53:43 +0300464 if (WARN(addr & ~IWL_TX_DMA_MASK,
465 "Unaligned address = %llx\n", (unsigned long long)addr))
Johannes Berg214d14d2011-05-04 07:50:44 -0700466 return -EINVAL;
467
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200468 iwl_pcie_tfd_set_tb(tfd, num_tbs, addr, len);
Johannes Berg214d14d2011-05-04 07:50:44 -0700469
470 return 0;
471}
472
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200473static int iwl_pcie_txq_alloc(struct iwl_trans *trans,
474 struct iwl_txq *txq, int slots_num,
475 u32 txq_id)
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800476{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200477 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
478 size_t tfd_sz = sizeof(struct iwl_tfd) * TFD_QUEUE_SIZE_MAX;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100479 size_t scratchbuf_sz;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200480 int i;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800481
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200482 if (WARN_ON(txq->entries || txq->tfds))
483 return -EINVAL;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800484
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200485 setup_timer(&txq->stuck_timer, iwl_pcie_txq_stuck_timer,
486 (unsigned long)txq);
487 txq->trans_pcie = trans_pcie;
488
489 txq->q.n_window = slots_num;
490
491 txq->entries = kcalloc(slots_num,
492 sizeof(struct iwl_pcie_txq_entry),
493 GFP_KERNEL);
494
495 if (!txq->entries)
496 goto error;
497
498 if (txq_id == trans_pcie->cmd_queue)
499 for (i = 0; i < slots_num; i++) {
500 txq->entries[i].cmd =
501 kmalloc(sizeof(struct iwl_device_cmd),
502 GFP_KERNEL);
503 if (!txq->entries[i].cmd)
504 goto error;
505 }
506
507 /* Circular buffer of transmit frame descriptors (TFDs),
508 * shared with device */
509 txq->tfds = dma_alloc_coherent(trans->dev, tfd_sz,
510 &txq->q.dma_addr, GFP_KERNEL);
Joe Perchesd0320f72013-03-14 13:07:21 +0000511 if (!txq->tfds)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200512 goto error;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100513
514 BUILD_BUG_ON(IWL_HCMD_SCRATCHBUF_SIZE != sizeof(*txq->scratchbufs));
515 BUILD_BUG_ON(offsetof(struct iwl_pcie_txq_scratch_buf, scratch) !=
516 sizeof(struct iwl_cmd_header) +
517 offsetof(struct iwl_tx_cmd, scratch));
518
519 scratchbuf_sz = sizeof(*txq->scratchbufs) * slots_num;
520
521 txq->scratchbufs = dma_alloc_coherent(trans->dev, scratchbuf_sz,
522 &txq->scratchbufs_dma,
523 GFP_KERNEL);
524 if (!txq->scratchbufs)
525 goto err_free_tfds;
526
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200527 txq->q.id = txq_id;
528
529 return 0;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100530err_free_tfds:
531 dma_free_coherent(trans->dev, tfd_sz, txq->tfds, txq->q.dma_addr);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200532error:
533 if (txq->entries && txq_id == trans_pcie->cmd_queue)
534 for (i = 0; i < slots_num; i++)
535 kfree(txq->entries[i].cmd);
536 kfree(txq->entries);
537 txq->entries = NULL;
538
539 return -ENOMEM;
540
541}
542
543static int iwl_pcie_txq_init(struct iwl_trans *trans, struct iwl_txq *txq,
544 int slots_num, u32 txq_id)
545{
546 int ret;
547
548 txq->need_update = 0;
549
550 /* TFD_QUEUE_SIZE_MAX must be power-of-two size, otherwise
551 * iwl_queue_inc_wrap and iwl_queue_dec_wrap are broken. */
552 BUILD_BUG_ON(TFD_QUEUE_SIZE_MAX & (TFD_QUEUE_SIZE_MAX - 1));
553
554 /* Initialize queue's high/low-water marks, and head/tail indexes */
555 ret = iwl_queue_init(&txq->q, TFD_QUEUE_SIZE_MAX, slots_num,
556 txq_id);
557 if (ret)
558 return ret;
559
560 spin_lock_init(&txq->lock);
561
562 /*
563 * Tell nic where to find circular buffer of Tx Frame Descriptors for
564 * given Tx queue, and enable the DMA channel used for that queue.
565 * Circular buffer (TFD queue in DRAM) physical base address */
566 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(txq_id),
567 txq->q.dma_addr >> 8);
568
569 return 0;
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800570}
Tomas Winklerfd4abac2008-05-15 13:54:07 +0800571
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +0200572/*
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200573 * iwl_pcie_txq_unmap - Unmap any remaining DMA mappings and free skb's
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800574 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200575static void iwl_pcie_txq_unmap(struct iwl_trans *trans, int txq_id)
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800576{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200577 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
578 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
579 struct iwl_queue *q = &txq->q;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800580
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200581 if (!q->n_bd)
582 return;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800583
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200584 spin_lock_bh(&txq->lock);
585 while (q->write_ptr != q->read_ptr) {
Emmanuel Grumbachb9676132013-06-13 11:45:59 +0300586 IWL_DEBUG_TX_REPLY(trans, "Q %d Free %d\n",
587 txq_id, q->read_ptr);
Johannes Berg98891752013-02-26 11:28:19 +0100588 iwl_pcie_txq_free_tfd(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200589 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd);
590 }
Emmanuel Grumbachb9676132013-06-13 11:45:59 +0300591 txq->active = false;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200592 spin_unlock_bh(&txq->lock);
Emmanuel Grumbach8a487b12013-06-13 13:10:00 +0300593
594 /* just in case - this queue may have been stopped */
595 iwl_wake_queue(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200596}
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800597
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200598/*
599 * iwl_pcie_txq_free - Deallocate DMA queue.
600 * @txq: Transmit queue to deallocate.
601 *
602 * Empty queue by removing and destroying all BD's.
603 * Free all buffers.
604 * 0-fill, but do not free "txq" descriptor structure.
605 */
606static void iwl_pcie_txq_free(struct iwl_trans *trans, int txq_id)
607{
608 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
609 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
610 struct device *dev = trans->dev;
611 int i;
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800612
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200613 if (WARN_ON(!txq))
614 return;
615
616 iwl_pcie_txq_unmap(trans, txq_id);
617
618 /* De-alloc array of command/tx buffers */
619 if (txq_id == trans_pcie->cmd_queue)
620 for (i = 0; i < txq->q.n_window; i++) {
621 kfree(txq->entries[i].cmd);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200622 kfree(txq->entries[i].free_buf);
623 }
624
625 /* De-alloc circular buffer of TFDs */
626 if (txq->q.n_bd) {
627 dma_free_coherent(dev, sizeof(struct iwl_tfd) *
628 txq->q.n_bd, txq->tfds, txq->q.dma_addr);
Johannes Bergd21fa2d2013-01-08 00:25:21 +0100629 txq->q.dma_addr = 0;
Johannes Berg38c0f3342013-02-27 13:18:50 +0100630
631 dma_free_coherent(dev,
632 sizeof(*txq->scratchbufs) * txq->q.n_window,
633 txq->scratchbufs, txq->scratchbufs_dma);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200634 }
635
636 kfree(txq->entries);
637 txq->entries = NULL;
638
639 del_timer_sync(&txq->stuck_timer);
640
641 /* 0-fill queue descriptor structure */
642 memset(txq, 0, sizeof(*txq));
643}
644
645/*
646 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
647 */
648static void iwl_pcie_txq_set_sched(struct iwl_trans *trans, u32 mask)
649{
650 struct iwl_trans_pcie __maybe_unused *trans_pcie =
651 IWL_TRANS_GET_PCIE_TRANS(trans);
652
653 iwl_write_prph(trans, SCD_TXFACT, mask);
654}
655
656void iwl_pcie_tx_start(struct iwl_trans *trans, u32 scd_base_addr)
657{
658 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Johannes Berg22dc3c92013-01-09 00:47:07 +0100659 int nq = trans->cfg->base_params->num_of_queues;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200660 int chan;
661 u32 reg_val;
Johannes Berg22dc3c92013-01-09 00:47:07 +0100662 int clear_dwords = (SCD_TRANS_TBL_OFFSET_QUEUE(nq) -
663 SCD_CONTEXT_MEM_LOWER_BOUND) / sizeof(u32);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200664
665 /* make sure all queue are not stopped/used */
666 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
667 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
668
669 trans_pcie->scd_base_addr =
670 iwl_read_prph(trans, SCD_SRAM_BASE_ADDR);
671
672 WARN_ON(scd_base_addr != 0 &&
673 scd_base_addr != trans_pcie->scd_base_addr);
674
Johannes Berg22dc3c92013-01-09 00:47:07 +0100675 /* reset context data, TX status and translation data */
676 iwl_trans_write_mem(trans, trans_pcie->scd_base_addr +
677 SCD_CONTEXT_MEM_LOWER_BOUND,
678 NULL, clear_dwords);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200679
680 iwl_write_prph(trans, SCD_DRAM_BASE_ADDR,
681 trans_pcie->scd_bc_tbls.dma >> 10);
682
683 /* The chain extension of the SCD doesn't work well. This feature is
684 * enabled by default by the HW, so we need to disable it manually.
685 */
686 iwl_write_prph(trans, SCD_CHAINEXT_EN, 0);
687
688 iwl_trans_ac_txq_enable(trans, trans_pcie->cmd_queue,
689 trans_pcie->cmd_fifo);
690
691 /* Activate all Tx DMA/FIFO channels */
692 iwl_pcie_txq_set_sched(trans, IWL_MASK(0, 7));
693
694 /* Enable DMA channel */
695 for (chan = 0; chan < FH_TCSR_CHNL_NUM; chan++)
696 iwl_write_direct32(trans, FH_TCSR_CHNL_TX_CONFIG_REG(chan),
697 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
698 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
699
700 /* Update FH chicken bits */
701 reg_val = iwl_read_direct32(trans, FH_TX_CHICKEN_BITS_REG);
702 iwl_write_direct32(trans, FH_TX_CHICKEN_BITS_REG,
703 reg_val | FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
704
705 /* Enable L1-Active */
706 iwl_clear_bits_prph(trans, APMG_PCIDEV_STT_REG,
707 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
708}
709
Johannes Bergddaf5a52013-01-08 11:25:44 +0100710void iwl_trans_pcie_tx_reset(struct iwl_trans *trans)
711{
712 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
713 int txq_id;
714
715 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
716 txq_id++) {
717 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
718
719 iwl_write_direct32(trans, FH_MEM_CBBC_QUEUE(txq_id),
720 txq->q.dma_addr >> 8);
721 iwl_pcie_txq_unmap(trans, txq_id);
722 txq->q.read_ptr = 0;
723 txq->q.write_ptr = 0;
724 }
725
726 /* Tell NIC where to find the "keep warm" buffer */
727 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
728 trans_pcie->kw.dma >> 4);
729
730 iwl_pcie_tx_start(trans, trans_pcie->scd_base_addr);
731}
732
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200733/*
734 * iwl_pcie_tx_stop - Stop all Tx DMA channels
735 */
736int iwl_pcie_tx_stop(struct iwl_trans *trans)
737{
738 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
739 int ch, txq_id, ret;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200740
741 /* Turn off all Tx DMA fifos */
Emmanuel Grumbach7b70bd62013-12-11 10:22:28 +0200742 spin_lock(&trans_pcie->irq_lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200743
744 iwl_pcie_txq_set_sched(trans, 0);
745
746 /* Stop each Tx DMA channel, and wait for it to be idle */
747 for (ch = 0; ch < FH_TCSR_CHNL_NUM; ch++) {
748 iwl_write_direct32(trans,
749 FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
750 ret = iwl_poll_direct_bit(trans, FH_TSSR_TX_STATUS_REG,
751 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch), 1000);
752 if (ret < 0)
753 IWL_ERR(trans,
754 "Failing on timeout while stopping DMA channel %d [0x%08x]\n",
755 ch,
756 iwl_read_direct32(trans,
757 FH_TSSR_TX_STATUS_REG));
758 }
Emmanuel Grumbach7b70bd62013-12-11 10:22:28 +0200759 spin_unlock(&trans_pcie->irq_lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200760
Emmanuel Grumbachfba1c622013-12-19 22:19:17 +0200761 /*
762 * This function can be called before the op_mode disabled the
763 * queues. This happens when we have an rfkill interrupt.
764 * Since we stop Tx altogether - mark the queues as stopped.
765 */
766 memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
767 memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
768
769 /* This can happen: start_hw, stop_device */
770 if (!trans_pcie->txq)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200771 return 0;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200772
773 /* Unmap DMA from host system and free skb's */
774 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
775 txq_id++)
776 iwl_pcie_txq_unmap(trans, txq_id);
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800777
778 return 0;
779}
780
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200781/*
782 * iwl_trans_tx_free - Free TXQ Context
783 *
784 * Destroy all TX DMA queues and structures
785 */
786void iwl_pcie_tx_free(struct iwl_trans *trans)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300787{
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200788 int txq_id;
789 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300790
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200791 /* Tx queues */
792 if (trans_pcie->txq) {
793 for (txq_id = 0;
794 txq_id < trans->cfg->base_params->num_of_queues; txq_id++)
795 iwl_pcie_txq_free(trans, txq_id);
796 }
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300797
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200798 kfree(trans_pcie->txq);
799 trans_pcie->txq = NULL;
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300800
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200801 iwl_pcie_free_dma_ptr(trans, &trans_pcie->kw);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300802
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200803 iwl_pcie_free_dma_ptr(trans, &trans_pcie->scd_bc_tbls);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +0300804}
805
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200806/*
807 * iwl_pcie_tx_alloc - allocate TX context
808 * Allocate all Tx DMA structures and initialize them
809 */
810static int iwl_pcie_tx_alloc(struct iwl_trans *trans)
811{
812 int ret;
813 int txq_id, slots_num;
814 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
815
816 u16 scd_bc_tbls_size = trans->cfg->base_params->num_of_queues *
817 sizeof(struct iwlagn_scd_bc_tbl);
818
819 /*It is not allowed to alloc twice, so warn when this happens.
820 * We cannot rely on the previous allocation, so free and fail */
821 if (WARN_ON(trans_pcie->txq)) {
822 ret = -EINVAL;
823 goto error;
824 }
825
826 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->scd_bc_tbls,
827 scd_bc_tbls_size);
828 if (ret) {
829 IWL_ERR(trans, "Scheduler BC Table allocation failed\n");
830 goto error;
831 }
832
833 /* Alloc keep-warm buffer */
834 ret = iwl_pcie_alloc_dma_ptr(trans, &trans_pcie->kw, IWL_KW_SIZE);
835 if (ret) {
836 IWL_ERR(trans, "Keep Warm allocation failed\n");
837 goto error;
838 }
839
840 trans_pcie->txq = kcalloc(trans->cfg->base_params->num_of_queues,
841 sizeof(struct iwl_txq), GFP_KERNEL);
842 if (!trans_pcie->txq) {
843 IWL_ERR(trans, "Not enough memory for txq\n");
Dan Carpenter2ab9ba02013-08-11 02:03:21 +0300844 ret = -ENOMEM;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200845 goto error;
846 }
847
848 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
849 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
850 txq_id++) {
851 slots_num = (txq_id == trans_pcie->cmd_queue) ?
852 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
853 ret = iwl_pcie_txq_alloc(trans, &trans_pcie->txq[txq_id],
854 slots_num, txq_id);
855 if (ret) {
856 IWL_ERR(trans, "Tx %d queue alloc failed\n", txq_id);
857 goto error;
858 }
859 }
860
861 return 0;
862
863error:
864 iwl_pcie_tx_free(trans);
865
866 return ret;
867}
868int iwl_pcie_tx_init(struct iwl_trans *trans)
869{
870 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
871 int ret;
872 int txq_id, slots_num;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200873 bool alloc = false;
874
875 if (!trans_pcie->txq) {
876 ret = iwl_pcie_tx_alloc(trans);
877 if (ret)
878 goto error;
879 alloc = true;
880 }
881
Emmanuel Grumbach7b70bd62013-12-11 10:22:28 +0200882 spin_lock(&trans_pcie->irq_lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200883
884 /* Turn off all Tx DMA fifos */
885 iwl_write_prph(trans, SCD_TXFACT, 0);
886
887 /* Tell NIC where to find the "keep warm" buffer */
888 iwl_write_direct32(trans, FH_KW_MEM_ADDR_REG,
889 trans_pcie->kw.dma >> 4);
890
Emmanuel Grumbach7b70bd62013-12-11 10:22:28 +0200891 spin_unlock(&trans_pcie->irq_lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200892
893 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
894 for (txq_id = 0; txq_id < trans->cfg->base_params->num_of_queues;
895 txq_id++) {
896 slots_num = (txq_id == trans_pcie->cmd_queue) ?
897 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
898 ret = iwl_pcie_txq_init(trans, &trans_pcie->txq[txq_id],
899 slots_num, txq_id);
900 if (ret) {
901 IWL_ERR(trans, "Tx %d queue init failed\n", txq_id);
902 goto error;
903 }
904 }
905
906 return 0;
907error:
908 /*Upon error, free only if we allocated something */
909 if (alloc)
910 iwl_pcie_tx_free(trans);
911 return ret;
912}
913
914static inline void iwl_pcie_txq_progress(struct iwl_trans_pcie *trans_pcie,
915 struct iwl_txq *txq)
916{
917 if (!trans_pcie->wd_timeout)
918 return;
919
920 /*
921 * if empty delete timer, otherwise move timer forward
922 * since we're making progress on this queue
923 */
924 if (txq->q.read_ptr == txq->q.write_ptr)
925 del_timer(&txq->stuck_timer);
926 else
927 mod_timer(&txq->stuck_timer, jiffies + trans_pcie->wd_timeout);
928}
929
930/* Frees buffers until index _not_ inclusive */
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200931void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,
932 struct sk_buff_head *skbs)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200933{
934 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
935 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200936 /* n_bd is usually 256 => n_bd - 1 = 0xff */
937 int tfd_num = ssn & (txq->q.n_bd - 1);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200938 struct iwl_queue *q = &txq->q;
939 int last_to_free;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200940
941 /* This function is not meant to release cmd queue*/
942 if (WARN_ON(txq_id == trans_pcie->cmd_queue))
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200943 return;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200944
Johannes Berg2bfb5092012-12-27 21:43:48 +0100945 spin_lock_bh(&txq->lock);
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200946
Emmanuel Grumbachb9676132013-06-13 11:45:59 +0300947 if (!txq->active) {
948 IWL_DEBUG_TX_QUEUES(trans, "Q %d inactive - ignoring idx %d\n",
949 txq_id, ssn);
950 goto out;
951 }
952
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200953 if (txq->q.read_ptr == tfd_num)
954 goto out;
955
956 IWL_DEBUG_TX_REPLY(trans, "[Q %d] %d -> %d (%d)\n",
957 txq_id, txq->q.read_ptr, tfd_num, ssn);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200958
959 /*Since we free until index _not_ inclusive, the one before index is
960 * the last we will free. This one must be used */
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200961 last_to_free = iwl_queue_dec_wrap(tfd_num, q->n_bd);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200962
Emmanuel Grumbach6ca6ebc2012-11-14 23:38:08 +0200963 if (!iwl_queue_used(q, last_to_free)) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200964 IWL_ERR(trans,
965 "%s: Read index for DMA queue txq id (%d), last_to_free %d is out of range [0-%d] %d %d.\n",
966 __func__, txq_id, last_to_free, q->n_bd,
967 q->write_ptr, q->read_ptr);
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200968 goto out;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200969 }
970
971 if (WARN_ON(!skb_queue_empty(skbs)))
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200972 goto out;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200973
974 for (;
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200975 q->read_ptr != tfd_num;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200976 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
977
978 if (WARN_ON_ONCE(txq->entries[txq->q.read_ptr].skb == NULL))
979 continue;
980
981 __skb_queue_tail(skbs, txq->entries[txq->q.read_ptr].skb);
982
983 txq->entries[txq->q.read_ptr].skb = NULL;
984
985 iwl_pcie_txq_inval_byte_cnt_tbl(trans, txq);
986
Johannes Berg98891752013-02-26 11:28:19 +0100987 iwl_pcie_txq_free_tfd(trans, txq);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200988 }
989
990 iwl_pcie_txq_progress(trans_pcie, txq);
991
Emmanuel Grumbachf6d497c2012-11-14 23:32:57 +0200992 if (iwl_queue_space(&txq->q) > txq->q.low_mark)
993 iwl_wake_queue(trans, txq);
994out:
Johannes Berg2bfb5092012-12-27 21:43:48 +0100995 spin_unlock_bh(&txq->lock);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +0200996}
997
998/*
999 * iwl_pcie_cmdq_reclaim - Reclaim TX command queue entries already Tx'd
1000 *
1001 * When FW advances 'R' index, all entries between old and new 'R' index
1002 * need to be reclaimed. As result, some free space forms. If there is
1003 * enough free space (> low mark), wake the stack that feeds us.
1004 */
1005static void iwl_pcie_cmdq_reclaim(struct iwl_trans *trans, int txq_id, int idx)
1006{
1007 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1008 struct iwl_txq *txq = &trans_pcie->txq[txq_id];
1009 struct iwl_queue *q = &txq->q;
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001010 unsigned long flags;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001011 int nfreed = 0;
1012
1013 lockdep_assert_held(&txq->lock);
1014
Emmanuel Grumbach6ca6ebc2012-11-14 23:38:08 +02001015 if ((idx >= q->n_bd) || (!iwl_queue_used(q, idx))) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001016 IWL_ERR(trans,
1017 "%s: Read index for DMA queue txq id (%d), index %d is out of range [0-%d] %d %d.\n",
1018 __func__, txq_id, idx, q->n_bd,
1019 q->write_ptr, q->read_ptr);
1020 return;
1021 }
1022
1023 for (idx = iwl_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx;
1024 q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) {
1025
1026 if (nfreed++ > 0) {
1027 IWL_ERR(trans, "HCMD skipped: index (%d) %d %d\n",
1028 idx, q->write_ptr, q->read_ptr);
Arik Nemtsov2a988e92013-12-01 13:50:40 +02001029 iwl_trans_fw_error(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001030 }
1031 }
1032
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001033 if (q->read_ptr == q->write_ptr) {
1034 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
1035 WARN_ON(!trans_pcie->cmd_in_flight);
1036 trans_pcie->cmd_in_flight = false;
1037 __iwl_trans_pcie_clear_bit(trans,
1038 CSR_GP_CNTRL,
1039 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1040 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1041 }
1042
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001043 iwl_pcie_txq_progress(trans_pcie, txq);
1044}
1045
1046static int iwl_pcie_txq_set_ratid_map(struct iwl_trans *trans, u16 ra_tid,
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001047 u16 txq_id)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001048{
Johannes Berg20d3b642012-05-16 22:54:29 +02001049 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001050 u32 tbl_dw_addr;
1051 u32 tbl_dw;
1052 u16 scd_q2ratid;
1053
1054 scd_q2ratid = ra_tid & SCD_QUEUE_RA_TID_MAP_RATID_MSK;
1055
Emmanuel Grumbach105183b2011-08-25 23:11:02 -07001056 tbl_dw_addr = trans_pcie->scd_base_addr +
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001057 SCD_TRANS_TBL_OFFSET_QUEUE(txq_id);
1058
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001059 tbl_dw = iwl_trans_read_mem32(trans, tbl_dw_addr);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001060
1061 if (txq_id & 0x1)
1062 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
1063 else
1064 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
1065
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001066 iwl_trans_write_mem32(trans, tbl_dw_addr, tbl_dw);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001067
1068 return 0;
1069}
1070
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001071static inline void iwl_pcie_txq_set_inactive(struct iwl_trans *trans,
1072 u16 txq_id)
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001073{
1074 /* Simply stop the queue, but don't change any configuration;
1075 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001076 iwl_write_prph(trans,
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001077 SCD_QUEUE_STATUS_BITS(txq_id),
1078 (0 << SCD_QUEUE_STTS_REG_POS_ACTIVE)|
1079 (1 << SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
1080}
1081
Emmanuel Grumbachbd5f6a32013-04-28 14:05:22 +03001082/* Receiver address (actually, Rx station's index into station table),
1083 * combined with Traffic ID (QOS priority), in format used by Tx Scheduler */
1084#define BUILD_RAxTID(sta_id, tid) (((sta_id) << 4) + (tid))
1085
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001086void iwl_trans_pcie_txq_enable(struct iwl_trans *trans, int txq_id, int fifo,
1087 int sta_id, int tid, int frame_limit, u16 ssn)
Johannes Berg70a18c52012-03-05 11:24:44 -08001088{
Johannes Berg9eae88f2012-03-15 13:26:52 -07001089 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001090
Johannes Berg9eae88f2012-03-15 13:26:52 -07001091 if (test_and_set_bit(txq_id, trans_pcie->queue_used))
1092 WARN_ONCE(1, "queue %d already used - expect issues", txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001093
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001094 /* Stop this Tx queue before configuring it */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001095 iwl_pcie_txq_set_inactive(trans, txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001096
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001097 /* Set this queue as a chain-building queue unless it is CMD queue */
1098 if (txq_id != trans_pcie->cmd_queue)
1099 iwl_set_bits_prph(trans, SCD_QUEUECHAIN_SEL, BIT(txq_id));
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001100
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001101 /* If this queue is mapped to a certain station: it is an AGG queue */
Emmanuel Grumbach881acd82013-03-19 16:16:00 +02001102 if (sta_id >= 0) {
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001103 u16 ra_tid = BUILD_RAxTID(sta_id, tid);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001104
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001105 /* Map receiver-address / traffic-ID to this queue */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001106 iwl_pcie_txq_set_ratid_map(trans, ra_tid, txq_id);
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001107
1108 /* enable aggregations for the queue */
1109 iwl_set_bits_prph(trans, SCD_AGGR_SEL, BIT(txq_id));
Johannes Berg68972c42013-06-11 19:05:27 +02001110 trans_pcie->txq[txq_id].ampdu = true;
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001111 } else {
1112 /*
1113 * disable aggregations for the queue, this will also make the
1114 * ra_tid mapping configuration irrelevant since it is now a
1115 * non-AGG queue.
1116 */
1117 iwl_clear_bits_prph(trans, SCD_AGGR_SEL, BIT(txq_id));
Emmanuel Grumbachf4772522013-07-24 14:15:21 +03001118
1119 ssn = trans_pcie->txq[txq_id].q.read_ptr;
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001120 }
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001121
1122 /* Place first TFD at index corresponding to start sequence number.
1123 * Assumes that ssn_idx is valid (!= 0xFFF) */
Emmanuel Grumbach822e8b22011-11-21 13:25:31 +02001124 trans_pcie->txq[txq_id].q.read_ptr = (ssn & 0xff);
1125 trans_pcie->txq[txq_id].q.write_ptr = (ssn & 0xff);
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001126
1127 iwl_write_direct32(trans, HBUS_TARG_WRPTR,
1128 (ssn & 0xff) | (txq_id << 8));
1129 iwl_write_prph(trans, SCD_QUEUE_RDPTR(txq_id), ssn);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001130
1131 /* Set up Tx window size and frame limit for this queue */
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001132 iwl_trans_write_mem32(trans, trans_pcie->scd_base_addr +
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001133 SCD_CONTEXT_QUEUE_OFFSET(txq_id), 0);
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001134 iwl_trans_write_mem32(trans, trans_pcie->scd_base_addr +
Johannes Berg9eae88f2012-03-15 13:26:52 -07001135 SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
1136 ((frame_limit << SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
1137 SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
1138 ((frame_limit << SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
1139 SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001140
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001141 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001142 iwl_write_prph(trans, SCD_QUEUE_STATUS_BITS(txq_id),
1143 (1 << SCD_QUEUE_STTS_REG_POS_ACTIVE) |
1144 (fifo << SCD_QUEUE_STTS_REG_POS_TXF) |
1145 (1 << SCD_QUEUE_STTS_REG_POS_WSL) |
1146 SCD_QUEUE_STTS_REG_MSK);
Emmanuel Grumbachb9676132013-06-13 11:45:59 +03001147 trans_pcie->txq[txq_id].active = true;
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001148 IWL_DEBUG_TX_QUEUES(trans, "Activate queue %d on FIFO %d WrPtr: %d\n",
1149 txq_id, fifo, ssn & 0xff);
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +03001150}
1151
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001152void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int txq_id)
Emmanuel Grumbach288712a2011-08-25 23:11:25 -07001153{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001154 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach986ea6c2012-09-30 16:25:43 +02001155 u32 stts_addr = trans_pcie->scd_base_addr +
1156 SCD_TX_STTS_QUEUE_OFFSET(txq_id);
1157 static const u32 zero_val[4] = {};
Emmanuel Grumbach288712a2011-08-25 23:11:25 -07001158
Emmanuel Grumbachfba1c622013-12-19 22:19:17 +02001159 /*
1160 * Upon HW Rfkill - we stop the device, and then stop the queues
1161 * in the op_mode. Just for the sake of the simplicity of the op_mode,
1162 * allow the op_mode to call txq_disable after it already called
1163 * stop_device.
1164 */
Johannes Berg9eae88f2012-03-15 13:26:52 -07001165 if (!test_and_clear_bit(txq_id, trans_pcie->queue_used)) {
Emmanuel Grumbachfba1c622013-12-19 22:19:17 +02001166 WARN_ONCE(test_bit(STATUS_DEVICE_ENABLED, &trans->status),
1167 "queue %d not used", txq_id);
Johannes Berg9eae88f2012-03-15 13:26:52 -07001168 return;
Emmanuel Grumbachbc237732011-11-21 13:25:31 +02001169 }
1170
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001171 iwl_pcie_txq_set_inactive(trans, txq_id);
Emmanuel Grumbachac928f82012-10-14 16:36:36 +02001172
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +02001173 iwl_trans_write_mem(trans, stts_addr, (void *)zero_val,
1174 ARRAY_SIZE(zero_val));
Emmanuel Grumbach986ea6c2012-09-30 16:25:43 +02001175
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001176 iwl_pcie_txq_unmap(trans, txq_id);
Johannes Berg68972c42013-06-11 19:05:27 +02001177 trans_pcie->txq[txq_id].ampdu = false;
Emmanuel Grumbach6c3fd3f2012-10-18 12:38:37 +02001178
Emmanuel Grumbach1ce86582012-06-04 16:48:17 +03001179 IWL_DEBUG_TX_QUEUES(trans, "Deactivate queue %d\n", txq_id);
Emmanuel Grumbach48d42c42011-07-10 10:47:01 +03001180}
1181
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001182/*************** HOST COMMAND QUEUE FUNCTIONS *****/
1183
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001184/*
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001185 * iwl_pcie_enqueue_hcmd - enqueue a uCode command
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001186 * @priv: device private data point
Eliad Pellere89044d2013-07-16 17:33:26 +03001187 * @cmd: a pointer to the ucode command structure
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001188 *
Eliad Pellere89044d2013-07-16 17:33:26 +03001189 * The function returns < 0 values to indicate the operation
1190 * failed. On success, it returns the index (>= 0) of command in the
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001191 * command queue.
1192 */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001193static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,
1194 struct iwl_host_cmd *cmd)
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001195{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001196 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001197 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001198 struct iwl_queue *q = &txq->q;
Johannes Bergc2acea82009-07-24 11:13:05 -07001199 struct iwl_device_cmd *out_cmd;
1200 struct iwl_cmd_meta *out_meta;
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001201 unsigned long flags;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001202 void *dup_buf = NULL;
Tomas Winklerf3674222008-08-04 16:00:44 +08001203 dma_addr_t phys_addr;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001204 int idx;
Johannes Berg38c0f3342013-02-27 13:18:50 +01001205 u16 copy_size, cmd_size, scratch_size;
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001206 bool had_nocopy = false;
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001207 int i, ret;
Emmanuel Grumbach96791422012-07-24 01:58:32 +03001208 u32 cmd_pos;
Johannes Berg1afbfb62013-02-26 11:32:26 +01001209 const u8 *cmddata[IWL_MAX_CMD_TBS_PER_TFD];
1210 u16 cmdlen[IWL_MAX_CMD_TBS_PER_TFD];
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001211
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001212 copy_size = sizeof(out_cmd->hdr);
1213 cmd_size = sizeof(out_cmd->hdr);
1214
1215 /* need one for the header if the first is NOCOPY */
Johannes Berg1afbfb62013-02-26 11:32:26 +01001216 BUILD_BUG_ON(IWL_MAX_CMD_TBS_PER_TFD > IWL_NUM_OF_TBS - 1);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001217
Johannes Berg1afbfb62013-02-26 11:32:26 +01001218 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg8a964f42013-02-25 16:01:34 +01001219 cmddata[i] = cmd->data[i];
1220 cmdlen[i] = cmd->len[i];
1221
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001222 if (!cmd->len[i])
1223 continue;
Johannes Berg8a964f42013-02-25 16:01:34 +01001224
Johannes Berg38c0f3342013-02-27 13:18:50 +01001225 /* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */
1226 if (copy_size < IWL_HCMD_SCRATCHBUF_SIZE) {
1227 int copy = IWL_HCMD_SCRATCHBUF_SIZE - copy_size;
Johannes Berg8a964f42013-02-25 16:01:34 +01001228
1229 if (copy > cmdlen[i])
1230 copy = cmdlen[i];
1231 cmdlen[i] -= copy;
1232 cmddata[i] += copy;
1233 copy_size += copy;
1234 }
1235
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001236 if (cmd->dataflags[i] & IWL_HCMD_DFL_NOCOPY) {
1237 had_nocopy = true;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001238 if (WARN_ON(cmd->dataflags[i] & IWL_HCMD_DFL_DUP)) {
1239 idx = -EINVAL;
1240 goto free_dup_buf;
1241 }
1242 } else if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP) {
1243 /*
1244 * This is also a chunk that isn't copied
1245 * to the static buffer so set had_nocopy.
1246 */
1247 had_nocopy = true;
1248
1249 /* only allowed once */
1250 if (WARN_ON(dup_buf)) {
1251 idx = -EINVAL;
1252 goto free_dup_buf;
1253 }
1254
Johannes Berg8a964f42013-02-25 16:01:34 +01001255 dup_buf = kmemdup(cmddata[i], cmdlen[i],
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001256 GFP_ATOMIC);
1257 if (!dup_buf)
1258 return -ENOMEM;
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001259 } else {
1260 /* NOCOPY must not be followed by normal! */
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001261 if (WARN_ON(had_nocopy)) {
1262 idx = -EINVAL;
1263 goto free_dup_buf;
1264 }
Johannes Berg8a964f42013-02-25 16:01:34 +01001265 copy_size += cmdlen[i];
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001266 }
1267 cmd_size += cmd->len[i];
1268 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001269
Johannes Berg3e41ace2011-04-18 09:12:37 -07001270 /*
1271 * If any of the command structures end up being larger than
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001272 * the TFD_MAX_PAYLOAD_SIZE and they aren't dynamically
1273 * allocated into separate TFDs, then we will need to
1274 * increase the size of the buffers.
Johannes Berg3e41ace2011-04-18 09:12:37 -07001275 */
Johannes Berg2a79e452012-09-26 13:32:13 +02001276 if (WARN(copy_size > TFD_MAX_PAYLOAD_SIZE,
1277 "Command %s (%#x) is too large (%d bytes)\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001278 get_cmd_string(trans_pcie, cmd->id), cmd->id, copy_size)) {
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001279 idx = -EINVAL;
1280 goto free_dup_buf;
1281 }
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001282
Johannes Berg015c15e2012-03-05 11:24:24 -08001283 spin_lock_bh(&txq->lock);
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001284
Johannes Bergc2acea82009-07-24 11:13:05 -07001285 if (iwl_queue_space(q) < ((cmd->flags & CMD_ASYNC) ? 2 : 1)) {
Johannes Berg015c15e2012-03-05 11:24:24 -08001286 spin_unlock_bh(&txq->lock);
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001287
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001288 IWL_ERR(trans, "No space in command queue\n");
Johannes Berg0e781842012-03-06 13:30:49 -08001289 iwl_op_mode_cmd_queue_full(trans->op_mode);
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001290 idx = -ENOSPC;
1291 goto free_dup_buf;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001292 }
1293
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001294 idx = get_cmd_index(q, q->write_ptr);
Johannes Bergbf8440e2012-03-19 17:12:06 +01001295 out_cmd = txq->entries[idx].cmd;
1296 out_meta = &txq->entries[idx].meta;
Johannes Bergc2acea82009-07-24 11:13:05 -07001297
Daniel C Halperin8ce73f32009-07-31 14:28:06 -07001298 memset(out_meta, 0, sizeof(*out_meta)); /* re-initialize to NULL */
Johannes Bergc2acea82009-07-24 11:13:05 -07001299 if (cmd->flags & CMD_WANT_SKB)
1300 out_meta->source = cmd;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001301
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001302 /* set up the header */
1303
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001304 out_cmd->hdr.cmd = cmd->id;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001305 out_cmd->hdr.flags = 0;
Emmanuel Grumbachcefeaa52011-08-25 23:10:40 -07001306 out_cmd->hdr.sequence =
Meenakshi Venkataramanc6f600f2012-03-08 11:29:12 -08001307 cpu_to_le16(QUEUE_TO_SEQ(trans_pcie->cmd_queue) |
Emmanuel Grumbachcefeaa52011-08-25 23:10:40 -07001308 INDEX_TO_SEQ(q->write_ptr));
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001309
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001310 /* and copy the data that needs to be copied */
Emmanuel Grumbach96791422012-07-24 01:58:32 +03001311 cmd_pos = offsetof(struct iwl_device_cmd, payload);
Johannes Berg8a964f42013-02-25 16:01:34 +01001312 copy_size = sizeof(out_cmd->hdr);
Johannes Berg1afbfb62013-02-26 11:32:26 +01001313 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg8a964f42013-02-25 16:01:34 +01001314 int copy = 0;
1315
Emmanuel Grumbachcc904c72013-03-14 08:35:06 +02001316 if (!cmd->len[i])
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001317 continue;
Johannes Berg8a964f42013-02-25 16:01:34 +01001318
Johannes Berg38c0f3342013-02-27 13:18:50 +01001319 /* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */
1320 if (copy_size < IWL_HCMD_SCRATCHBUF_SIZE) {
1321 copy = IWL_HCMD_SCRATCHBUF_SIZE - copy_size;
Johannes Berg8a964f42013-02-25 16:01:34 +01001322
1323 if (copy > cmd->len[i])
1324 copy = cmd->len[i];
1325 }
1326
1327 /* copy everything if not nocopy/dup */
1328 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1329 IWL_HCMD_DFL_DUP)))
1330 copy = cmd->len[i];
1331
1332 if (copy) {
1333 memcpy((u8 *)out_cmd + cmd_pos, cmd->data[i], copy);
1334 cmd_pos += copy;
1335 copy_size += copy;
1336 }
Emmanuel Grumbach96791422012-07-24 01:58:32 +03001337 }
1338
Johannes Bergd9fb6462012-03-26 08:23:39 -07001339 IWL_DEBUG_HC(trans,
Johannes Berg20d3b642012-05-16 22:54:29 +02001340 "Sending command %s (#%x), seq: 0x%04X, %d bytes at %d[%d]:%d\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001341 get_cmd_string(trans_pcie, out_cmd->hdr.cmd),
Johannes Berg20d3b642012-05-16 22:54:29 +02001342 out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),
1343 cmd_size, q->write_ptr, idx, trans_pcie->cmd_queue);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001344
Johannes Berg38c0f3342013-02-27 13:18:50 +01001345 /* start the TFD with the scratchbuf */
1346 scratch_size = min_t(int, copy_size, IWL_HCMD_SCRATCHBUF_SIZE);
1347 memcpy(&txq->scratchbufs[q->write_ptr], &out_cmd->hdr, scratch_size);
1348 iwl_pcie_txq_build_tfd(trans, txq,
1349 iwl_pcie_get_scratchbuf_dma(txq, q->write_ptr),
1350 scratch_size, 1);
Johannes Berg8a964f42013-02-25 16:01:34 +01001351
Johannes Berg38c0f3342013-02-27 13:18:50 +01001352 /* map first command fragment, if any remains */
1353 if (copy_size > scratch_size) {
1354 phys_addr = dma_map_single(trans->dev,
1355 ((u8 *)&out_cmd->hdr) + scratch_size,
1356 copy_size - scratch_size,
1357 DMA_TO_DEVICE);
1358 if (dma_mapping_error(trans->dev, phys_addr)) {
1359 iwl_pcie_tfd_unmap(trans, out_meta,
1360 &txq->tfds[q->write_ptr]);
1361 idx = -ENOMEM;
1362 goto out;
1363 }
1364
1365 iwl_pcie_txq_build_tfd(trans, txq, phys_addr,
1366 copy_size - scratch_size, 0);
Johannes Berg2c46f722011-04-28 07:27:10 -07001367 }
1368
Johannes Berg8a964f42013-02-25 16:01:34 +01001369 /* map the remaining (adjusted) nocopy/dup fragments */
Johannes Berg1afbfb62013-02-26 11:32:26 +01001370 for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {
Johannes Berg8a964f42013-02-25 16:01:34 +01001371 const void *data = cmddata[i];
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001372
Johannes Berg8a964f42013-02-25 16:01:34 +01001373 if (!cmdlen[i])
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001374 continue;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001375 if (!(cmd->dataflags[i] & (IWL_HCMD_DFL_NOCOPY |
1376 IWL_HCMD_DFL_DUP)))
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001377 continue;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001378 if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP)
1379 data = dup_buf;
1380 phys_addr = dma_map_single(trans->dev, (void *)data,
Johannes Berg98891752013-02-26 11:28:19 +01001381 cmdlen[i], DMA_TO_DEVICE);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001382 if (dma_mapping_error(trans->dev, phys_addr)) {
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001383 iwl_pcie_tfd_unmap(trans, out_meta,
Johannes Berg98891752013-02-26 11:28:19 +01001384 &txq->tfds[q->write_ptr]);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001385 idx = -ENOMEM;
1386 goto out;
1387 }
1388
Johannes Berg8a964f42013-02-25 16:01:34 +01001389 iwl_pcie_txq_build_tfd(trans, txq, phys_addr, cmdlen[i], 0);
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001390 }
Reinette Chatredf833b12009-04-21 10:55:48 -07001391
Emmanuel Grumbachafaf6b52011-07-08 08:46:09 -07001392 out_meta->flags = cmd->flags;
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001393 if (WARN_ON_ONCE(txq->entries[idx].free_buf))
1394 kfree(txq->entries[idx].free_buf);
1395 txq->entries[idx].free_buf = dup_buf;
Johannes Berg2c46f722011-04-28 07:27:10 -07001396
1397 txq->need_update = 1;
1398
Johannes Berg8a964f42013-02-25 16:01:34 +01001399 trace_iwlwifi_dev_hcmd(trans->dev, cmd, cmd_size, &out_cmd->hdr);
Reinette Chatredf833b12009-04-21 10:55:48 -07001400
Johannes Berg7c5ba4a2012-04-09 17:46:54 -07001401 /* start timer if queue currently empty */
1402 if (q->read_ptr == q->write_ptr && trans_pcie->wd_timeout)
1403 mod_timer(&txq->stuck_timer, jiffies + trans_pcie->wd_timeout);
1404
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001405 spin_lock_irqsave(&trans_pcie->reg_lock, flags);
1406
1407 /*
1408 * wake up the NIC to make sure that the firmware will see the host
1409 * command - we will let the NIC sleep once all the host commands
1410 * returned.
1411 */
1412 if (!trans_pcie->cmd_in_flight) {
1413 trans_pcie->cmd_in_flight = true;
1414 __iwl_trans_pcie_set_bit(trans, CSR_GP_CNTRL,
1415 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1416 ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
1417 CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN,
1418 (CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY |
1419 CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP),
1420 15000);
1421 if (ret < 0) {
1422 __iwl_trans_pcie_clear_bit(trans, CSR_GP_CNTRL,
1423 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
1424 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1425 trans_pcie->cmd_in_flight = false;
1426 idx = -EIO;
1427 goto out;
1428 }
1429 }
1430
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001431 /* Increment and update queue's write index */
1432 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001433 iwl_pcie_txq_inc_wr_ptr(trans, txq);
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001434
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001435 spin_unlock_irqrestore(&trans_pcie->reg_lock, flags);
1436
Johannes Berg2c46f722011-04-28 07:27:10 -07001437 out:
Johannes Berg015c15e2012-03-05 11:24:24 -08001438 spin_unlock_bh(&txq->lock);
Johannes Bergf4feb8a2012-10-19 14:24:43 +02001439 free_dup_buf:
1440 if (idx < 0)
1441 kfree(dup_buf);
Abhijeet Kolekar7bfedc52010-02-03 13:47:56 -08001442 return idx;
Tomas Winklerfd4abac2008-05-15 13:54:07 +08001443}
1444
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001445/*
1446 * iwl_pcie_hcmd_complete - Pull unused buffers off the queue and reclaim them
Tomas Winkler17b88922008-05-29 16:35:12 +08001447 * @rxb: Rx buffer to reclaim
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -07001448 * @handler_status: return value of the handler of the command
1449 * (put in setup_rx_handlers)
Tomas Winkler17b88922008-05-29 16:35:12 +08001450 *
1451 * If an Rx buffer has an async callback associated with it the callback
1452 * will be executed. The attached skb (if present) will only be freed
1453 * if the callback returns 1
1454 */
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001455void iwl_pcie_hcmd_complete(struct iwl_trans *trans,
1456 struct iwl_rx_cmd_buffer *rxb, int handler_status)
Tomas Winkler17b88922008-05-29 16:35:12 +08001457{
Zhu Yi2f301222009-10-09 17:19:45 +08001458 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler17b88922008-05-29 16:35:12 +08001459 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1460 int txq_id = SEQ_TO_QUEUE(sequence);
1461 int index = SEQ_TO_INDEX(sequence);
Tomas Winkler17b88922008-05-29 16:35:12 +08001462 int cmd_index;
Johannes Bergc2acea82009-07-24 11:13:05 -07001463 struct iwl_device_cmd *cmd;
1464 struct iwl_cmd_meta *meta;
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001465 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001466 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
Tomas Winkler17b88922008-05-29 16:35:12 +08001467
1468 /* If a Tx command is being handled and it isn't in the actual
1469 * command queue then there a command routing bug has been introduced
1470 * in the queue management code. */
Meenakshi Venkataramanc6f600f2012-03-08 11:29:12 -08001471 if (WARN(txq_id != trans_pcie->cmd_queue,
Johannes Berg13bb9482010-08-23 10:46:33 +02001472 "wrong command queue %d (should be %d), sequence 0x%X readp=%d writep=%d\n",
Johannes Berg20d3b642012-05-16 22:54:29 +02001473 txq_id, trans_pcie->cmd_queue, sequence,
1474 trans_pcie->txq[trans_pcie->cmd_queue].q.read_ptr,
1475 trans_pcie->txq[trans_pcie->cmd_queue].q.write_ptr)) {
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -07001476 iwl_print_hex_error(trans, pkt, 32);
Johannes Berg55d6a3c2008-09-23 19:18:43 +02001477 return;
Winkler, Tomas01ef93232008-11-07 09:58:45 -08001478 }
Tomas Winkler17b88922008-05-29 16:35:12 +08001479
Johannes Berg2bfb5092012-12-27 21:43:48 +01001480 spin_lock_bh(&txq->lock);
Johannes Berg015c15e2012-03-05 11:24:24 -08001481
Johannes Berg4ce7cc22011-05-13 11:57:40 -07001482 cmd_index = get_cmd_index(&txq->q, index);
Johannes Bergbf8440e2012-03-19 17:12:06 +01001483 cmd = txq->entries[cmd_index].cmd;
1484 meta = &txq->entries[cmd_index].meta;
Tomas Winkler17b88922008-05-29 16:35:12 +08001485
Johannes Berg98891752013-02-26 11:28:19 +01001486 iwl_pcie_tfd_unmap(trans, meta, &txq->tfds[index]);
Reinette Chatrec33de622009-10-30 14:36:10 -07001487
Tomas Winkler17b88922008-05-29 16:35:12 +08001488 /* Input error checking is done when commands are added to queue. */
Johannes Bergc2acea82009-07-24 11:13:05 -07001489 if (meta->flags & CMD_WANT_SKB) {
Johannes Berg48a2d662012-03-05 11:24:39 -08001490 struct page *p = rxb_steal_page(rxb);
Stanislaw Gruszka2624e962011-04-20 16:02:58 +02001491
Johannes Berg65b94a42012-03-05 11:24:38 -08001492 meta->source->resp_pkt = pkt;
1493 meta->source->_rx_page_addr = (unsigned long)page_address(p);
Johannes Bergb2cf4102012-04-09 17:46:51 -07001494 meta->source->_rx_page_order = trans_pcie->rx_page_order;
Johannes Berg65b94a42012-03-05 11:24:38 -08001495 meta->source->handler_status = handler_status;
Stanislaw Gruszka2624e962011-04-20 16:02:58 +02001496 }
Tomas Winkler17b88922008-05-29 16:35:12 +08001497
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001498 iwl_pcie_cmdq_reclaim(trans, txq_id, index);
Tomas Winkler17b88922008-05-29 16:35:12 +08001499
Johannes Bergc2acea82009-07-24 11:13:05 -07001500 if (!(meta->flags & CMD_ASYNC)) {
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001501 if (!test_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status)) {
Wey-Yi Guy05c89b92011-10-10 07:26:48 -07001502 IWL_WARN(trans,
1503 "HCMD_ACTIVE already clear for command %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001504 get_cmd_string(trans_pcie, cmd->hdr.cmd));
Wey-Yi Guy05c89b92011-10-10 07:26:48 -07001505 }
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001506 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001507 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001508 get_cmd_string(trans_pcie, cmd->hdr.cmd));
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001509 wake_up(&trans_pcie->wait_command_queue);
Tomas Winkler17b88922008-05-29 16:35:12 +08001510 }
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001511
Zhu Yidd487442010-03-22 02:28:41 -07001512 meta->flags = 0;
Stanislaw Gruszka3598e172011-03-31 17:36:26 +02001513
Johannes Berg2bfb5092012-12-27 21:43:48 +01001514 spin_unlock_bh(&txq->lock);
Tomas Winkler17b88922008-05-29 16:35:12 +08001515}
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001516
Johannes Berg9439eac2013-10-09 09:59:25 +02001517#define HOST_COMPLETE_TIMEOUT (2 * HZ)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001518
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001519static int iwl_pcie_send_hcmd_async(struct iwl_trans *trans,
1520 struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001521{
Johannes Bergd9fb6462012-03-26 08:23:39 -07001522 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001523 int ret;
1524
1525 /* An asynchronous command can not expect an SKB to be set. */
1526 if (WARN_ON(cmd->flags & CMD_WANT_SKB))
1527 return -EINVAL;
1528
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001529 ret = iwl_pcie_enqueue_hcmd(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001530 if (ret < 0) {
Johannes Berg721c32f2012-03-06 13:30:40 -08001531 IWL_ERR(trans,
Todd Previteb36b1102011-11-10 06:55:02 -08001532 "Error sending %s: enqueue_hcmd failed: %d\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001533 get_cmd_string(trans_pcie, cmd->id), ret);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001534 return ret;
1535 }
1536 return 0;
1537}
1538
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001539static int iwl_pcie_send_hcmd_sync(struct iwl_trans *trans,
1540 struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001541{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001542 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001543 int cmd_idx;
1544 int ret;
1545
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001546 IWL_DEBUG_INFO(trans, "Attempting to send sync command %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001547 get_cmd_string(trans_pcie, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001548
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001549 if (WARN(test_and_set_bit(STATUS_SYNC_HCMD_ACTIVE,
1550 &trans->status),
Johannes Bergbcbb8c92013-10-28 15:50:55 +01001551 "Command %s: a command is already active!\n",
1552 get_cmd_string(trans_pcie, cmd->id)))
Johannes Berg2cc39c92012-03-06 13:30:41 -08001553 return -EIO;
Johannes Berg2cc39c92012-03-06 13:30:41 -08001554
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001555 IWL_DEBUG_INFO(trans, "Setting HCMD_ACTIVE for command %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001556 get_cmd_string(trans_pcie, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001557
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001558 cmd_idx = iwl_pcie_enqueue_hcmd(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001559 if (cmd_idx < 0) {
1560 ret = cmd_idx;
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001561 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
Johannes Berg721c32f2012-03-06 13:30:40 -08001562 IWL_ERR(trans,
Todd Previteb36b1102011-11-10 06:55:02 -08001563 "Error sending %s: enqueue_hcmd failed: %d\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001564 get_cmd_string(trans_pcie, cmd->id), ret);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001565 return ret;
1566 }
1567
Emmanuel Grumbachb9439492013-12-22 15:09:40 +02001568 ret = wait_event_timeout(trans_pcie->wait_command_queue,
1569 !test_bit(STATUS_SYNC_HCMD_ACTIVE,
1570 &trans->status),
1571 HOST_COMPLETE_TIMEOUT);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001572 if (!ret) {
Johannes Berg6dde8c42013-10-31 18:30:38 +01001573 struct iwl_txq *txq = &trans_pcie->txq[trans_pcie->cmd_queue];
1574 struct iwl_queue *q = &txq->q;
Wey-Yi Guyd10630a2011-10-10 07:26:46 -07001575
Johannes Berg6dde8c42013-10-31 18:30:38 +01001576 IWL_ERR(trans, "Error sending %s: time out after %dms.\n",
1577 get_cmd_string(trans_pcie, cmd->id),
1578 jiffies_to_msecs(HOST_COMPLETE_TIMEOUT));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001579
Johannes Berg6dde8c42013-10-31 18:30:38 +01001580 IWL_ERR(trans, "Current CMD queue read_ptr %d write_ptr %d\n",
1581 q->read_ptr, q->write_ptr);
Wey-Yi Guyd10630a2011-10-10 07:26:46 -07001582
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001583 clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
Johannes Berg6dde8c42013-10-31 18:30:38 +01001584 IWL_DEBUG_INFO(trans, "Clearing HCMD_ACTIVE for command %s\n",
1585 get_cmd_string(trans_pcie, cmd->id));
1586 ret = -ETIMEDOUT;
Emmanuel Grumbach42550a52013-09-11 14:16:20 +03001587
Arik Nemtsov2a988e92013-12-01 13:50:40 +02001588 iwl_trans_fw_error(trans);
Emmanuel Grumbach42550a52013-09-11 14:16:20 +03001589
Johannes Berg6dde8c42013-10-31 18:30:38 +01001590 goto cancel;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001591 }
1592
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001593 if (test_bit(STATUS_FW_ERROR, &trans->status)) {
Johannes Bergd18aa872012-11-06 16:36:21 +01001594 IWL_ERR(trans, "FW error in SYNC CMD %s\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001595 get_cmd_string(trans_pcie, cmd->id));
Johannes Bergb656fa32013-05-03 11:56:17 +02001596 dump_stack();
Johannes Bergd18aa872012-11-06 16:36:21 +01001597 ret = -EIO;
1598 goto cancel;
1599 }
1600
Eran Harary1094fa22013-06-02 12:40:34 +03001601 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001602 test_bit(STATUS_RFKILL, &trans->status)) {
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001603 IWL_DEBUG_RF_KILL(trans, "RFKILL in SYNC CMD... no rsp\n");
1604 ret = -ERFKILL;
1605 goto cancel;
1606 }
1607
Johannes Berg65b94a42012-03-05 11:24:38 -08001608 if ((cmd->flags & CMD_WANT_SKB) && !cmd->resp_pkt) {
Emmanuel Grumbach6d8f6ee2011-08-25 23:11:06 -07001609 IWL_ERR(trans, "Error: Response NULL in '%s'\n",
Emmanuel Grumbach990aa6d2012-11-14 12:39:52 +02001610 get_cmd_string(trans_pcie, cmd->id));
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001611 ret = -EIO;
1612 goto cancel;
1613 }
1614
1615 return 0;
1616
1617cancel:
1618 if (cmd->flags & CMD_WANT_SKB) {
1619 /*
1620 * Cancel the CMD_WANT_SKB flag for the cmd in the
1621 * TX cmd queue. Otherwise in case the cmd comes
1622 * in later, it will possibly set an invalid
1623 * address (cmd->meta.source).
1624 */
Johannes Bergbf8440e2012-03-19 17:12:06 +01001625 trans_pcie->txq[trans_pcie->cmd_queue].
1626 entries[cmd_idx].meta.flags &= ~CMD_WANT_SKB;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001627 }
Emmanuel Grumbach9cac4942011-11-10 06:55:20 -08001628
Johannes Berg65b94a42012-03-05 11:24:38 -08001629 if (cmd->resp_pkt) {
1630 iwl_free_resp(cmd);
1631 cmd->resp_pkt = NULL;
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001632 }
1633
1634 return ret;
1635}
1636
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001637int iwl_trans_pcie_send_hcmd(struct iwl_trans *trans, struct iwl_host_cmd *cmd)
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001638{
Eran Harary4f593342013-05-13 07:53:26 +03001639 if (!(cmd->flags & CMD_SEND_IN_RFKILL) &&
Arik Nemtsoveb7ff772013-12-01 12:30:38 +02001640 test_bit(STATUS_RFKILL, &trans->status)) {
Emmanuel Grumbach754d7d92013-03-13 22:16:20 +02001641 IWL_DEBUG_RF_KILL(trans, "Dropping CMD 0x%x: RF KILL\n",
1642 cmd->id);
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001643 return -ERFKILL;
Emmanuel Grumbach754d7d92013-03-13 22:16:20 +02001644 }
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001645
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001646 if (cmd->flags & CMD_ASYNC)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001647 return iwl_pcie_send_hcmd_async(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001648
Emmanuel Grumbachf946b522012-10-25 17:25:52 +02001649 /* We still can fail on RFKILL that can be asserted while we wait */
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001650 return iwl_pcie_send_hcmd_sync(trans, cmd);
Emmanuel Grumbach253a6342011-07-11 07:39:46 -07001651}
1652
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001653int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,
1654 struct iwl_device_cmd *dev_cmd, int txq_id)
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001655{
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001656 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001657 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1658 struct iwl_tx_cmd *tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
1659 struct iwl_cmd_meta *out_meta;
1660 struct iwl_txq *txq;
1661 struct iwl_queue *q;
Johannes Berg38c0f3342013-02-27 13:18:50 +01001662 dma_addr_t tb0_phys, tb1_phys, scratch_phys;
1663 void *tb1_addr;
1664 u16 len, tb1_len, tb2_len;
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001665 u8 wait_write_ptr = 0;
1666 __le16 fc = hdr->frame_control;
1667 u8 hdr_len = ieee80211_hdrlen(fc);
Johannes Berg68972c42013-06-11 19:05:27 +02001668 u16 wifi_seq;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001669
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001670 txq = &trans_pcie->txq[txq_id];
1671 q = &txq->q;
Emmanuel Grumbach39644e92011-09-15 11:46:29 -07001672
Johannes Berg961de6a2013-07-04 18:00:08 +02001673 if (WARN_ONCE(!test_bit(txq_id, trans_pcie->queue_used),
1674 "TX on unused queue %d\n", txq_id))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001675 return -EINVAL;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001676
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001677 spin_lock(&txq->lock);
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001678
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001679 /* In AGG mode, the index in the ring must correspond to the WiFi
1680 * sequence number. This is a HW requirements to help the SCD to parse
1681 * the BA.
1682 * Check here that the packets are in the right place on the ring.
1683 */
Johannes Berg9a886582013-02-15 19:25:00 +01001684 wifi_seq = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
Eliad Peller1092b9b2013-07-16 17:53:43 +03001685 WARN_ONCE(txq->ampdu &&
Johannes Berg68972c42013-06-11 19:05:27 +02001686 (wifi_seq & 0xff) != q->write_ptr,
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001687 "Q: %d WiFi Seq %d tfdNum %d",
1688 txq_id, wifi_seq, q->write_ptr);
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001689
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001690 /* Set up driver data for this TFD */
1691 txq->entries[q->write_ptr].skb = skb;
1692 txq->entries[q->write_ptr].cmd = dev_cmd;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001693
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001694 dev_cmd->hdr.sequence =
1695 cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
1696 INDEX_TO_SEQ(q->write_ptr)));
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001697
Johannes Berg38c0f3342013-02-27 13:18:50 +01001698 tb0_phys = iwl_pcie_get_scratchbuf_dma(txq, q->write_ptr);
1699 scratch_phys = tb0_phys + sizeof(struct iwl_cmd_header) +
1700 offsetof(struct iwl_tx_cmd, scratch);
1701
1702 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
1703 tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys);
1704
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001705 /* Set up first empty entry in queue's array of Tx/cmd buffers */
1706 out_meta = &txq->entries[q->write_ptr].meta;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001707
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001708 /*
Johannes Berg38c0f3342013-02-27 13:18:50 +01001709 * The second TB (tb1) points to the remainder of the TX command
1710 * and the 802.11 header - dword aligned size
1711 * (This calculation modifies the TX command, so do it before the
1712 * setup of the first TB)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001713 */
Johannes Berg38c0f3342013-02-27 13:18:50 +01001714 len = sizeof(struct iwl_tx_cmd) + sizeof(struct iwl_cmd_header) +
1715 hdr_len - IWL_HCMD_SCRATCHBUF_SIZE;
Eliad Peller1092b9b2013-07-16 17:53:43 +03001716 tb1_len = ALIGN(len, 4);
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001717
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001718 /* Tell NIC about any 2-byte padding after MAC header */
Johannes Berg38c0f3342013-02-27 13:18:50 +01001719 if (tb1_len != len)
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001720 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
1721
Johannes Berg38c0f3342013-02-27 13:18:50 +01001722 /* The first TB points to the scratchbuf data - min_copy bytes */
1723 memcpy(&txq->scratchbufs[q->write_ptr], &dev_cmd->hdr,
1724 IWL_HCMD_SCRATCHBUF_SIZE);
1725 iwl_pcie_txq_build_tfd(trans, txq, tb0_phys,
1726 IWL_HCMD_SCRATCHBUF_SIZE, 1);
1727
1728 /* there must be data left over for TB1 or this code must be changed */
1729 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd) < IWL_HCMD_SCRATCHBUF_SIZE);
1730
1731 /* map the data for TB1 */
1732 tb1_addr = ((u8 *)&dev_cmd->hdr) + IWL_HCMD_SCRATCHBUF_SIZE;
1733 tb1_phys = dma_map_single(trans->dev, tb1_addr, tb1_len, DMA_TO_DEVICE);
1734 if (unlikely(dma_mapping_error(trans->dev, tb1_phys)))
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001735 goto out_err;
Johannes Berg38c0f3342013-02-27 13:18:50 +01001736 iwl_pcie_txq_build_tfd(trans, txq, tb1_phys, tb1_len, 0);
1737
1738 /*
1739 * Set up TFD's third entry to point directly to remainder
1740 * of skb, if any (802.11 null frames have no payload).
1741 */
1742 tb2_len = skb->len - hdr_len;
1743 if (tb2_len > 0) {
1744 dma_addr_t tb2_phys = dma_map_single(trans->dev,
1745 skb->data + hdr_len,
1746 tb2_len, DMA_TO_DEVICE);
1747 if (unlikely(dma_mapping_error(trans->dev, tb2_phys))) {
1748 iwl_pcie_tfd_unmap(trans, out_meta,
1749 &txq->tfds[q->write_ptr]);
1750 goto out_err;
1751 }
1752 iwl_pcie_txq_build_tfd(trans, txq, tb2_phys, tb2_len, 0);
1753 }
1754
1755 /* Set up entry for this TFD in Tx byte-count array */
1756 iwl_pcie_txq_update_byte_cnt_tbl(trans, txq, le16_to_cpu(tx_cmd->len));
1757
1758 trace_iwlwifi_dev_tx(trans->dev, skb,
1759 &txq->tfds[txq->q.write_ptr],
1760 sizeof(struct iwl_tfd),
1761 &dev_cmd->hdr, IWL_HCMD_SCRATCHBUF_SIZE + tb1_len,
1762 skb->data + hdr_len, tb2_len);
1763 trace_iwlwifi_dev_tx_data(trans->dev, skb,
1764 skb->data + hdr_len, tb2_len);
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001765
1766 if (!ieee80211_has_morefrags(fc)) {
1767 txq->need_update = 1;
1768 } else {
1769 wait_write_ptr = 1;
1770 txq->need_update = 0;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001771 }
Johannes Berg7c5ba4a2012-04-09 17:46:54 -07001772
Emmanuel Grumbachf02831b2012-11-14 14:44:18 +02001773 /* start timer if queue currently empty */
1774 if (txq->need_update && q->read_ptr == q->write_ptr &&
1775 trans_pcie->wd_timeout)
1776 mod_timer(&txq->stuck_timer, jiffies + trans_pcie->wd_timeout);
1777
1778 /* Tell device the write index *just past* this latest filled TFD */
1779 q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd);
1780 iwl_pcie_txq_inc_wr_ptr(trans, txq);
1781
1782 /*
1783 * At this point the frame is "transmitted" successfully
1784 * and we will get a TX status notification eventually,
1785 * regardless of the value of ret. "ret" only indicates
1786 * whether or not we should update the write pointer.
1787 */
1788 if (iwl_queue_space(q) < q->high_mark) {
1789 if (wait_write_ptr) {
1790 txq->need_update = 1;
1791 iwl_pcie_txq_inc_wr_ptr(trans, txq);
1792 } else {
1793 iwl_stop_queue(trans, txq);
1794 }
1795 }
1796 spin_unlock(&txq->lock);
1797 return 0;
1798out_err:
1799 spin_unlock(&txq->lock);
1800 return -1;
Emmanuel Grumbacha0eaad72011-08-25 23:11:00 -07001801}