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