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