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