Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * GPL LICENSE SUMMARY |
| 4 | * |
Wey-Yi Guy | 901069c | 2011-04-05 09:42:00 -0700 | [diff] [blame] | 5 | * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved. |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of version 2 of the GNU General Public License as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, |
| 19 | * USA |
| 20 | * |
| 21 | * The full GNU General Public License is included in this distribution |
| 22 | * in the file called LICENSE.GPL. |
| 23 | * |
| 24 | * Contact Information: |
| 25 | * Intel Linux Wireless <ilw@linux.intel.com> |
| 26 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 27 | * |
| 28 | *****************************************************************************/ |
| 29 | |
| 30 | #include <linux/kernel.h> |
| 31 | #include <linux/module.h> |
| 32 | #include <linux/init.h> |
| 33 | #include <linux/sched.h> |
| 34 | |
| 35 | #include "iwl-dev.h" |
| 36 | #include "iwl-core.h" |
| 37 | #include "iwl-sta.h" |
| 38 | #include "iwl-io.h" |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 39 | #include "iwl-helpers.h" |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 40 | #include "iwl-agn-hw.h" |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 41 | #include "iwl-agn.h" |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 42 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 43 | /* |
| 44 | * mac80211 queues, ACs, hardware queues, FIFOs. |
| 45 | * |
| 46 | * Cf. http://wireless.kernel.org/en/developers/Documentation/mac80211/queues |
| 47 | * |
| 48 | * Mac80211 uses the following numbers, which we get as from it |
| 49 | * by way of skb_get_queue_mapping(skb): |
| 50 | * |
| 51 | * VO 0 |
| 52 | * VI 1 |
| 53 | * BE 2 |
| 54 | * BK 3 |
| 55 | * |
| 56 | * |
| 57 | * Regular (not A-MPDU) frames are put into hardware queues corresponding |
| 58 | * to the FIFOs, see comments in iwl-prph.h. Aggregated frames get their |
| 59 | * own queue per aggregation session (RA/TID combination), such queues are |
| 60 | * set up to map into FIFOs too, for which we need an AC->FIFO mapping. In |
| 61 | * order to map frames to the right queue, we also need an AC->hw queue |
| 62 | * mapping. This is implemented here. |
| 63 | * |
| 64 | * Due to the way hw queues are set up (by the hw specific modules like |
| 65 | * iwl-4965.c, iwl-5000.c etc.), the AC->hw queue mapping is the identity |
| 66 | * mapping. |
| 67 | */ |
| 68 | |
| 69 | static const u8 tid_to_ac[] = { |
Johannes Berg | 0c4ac34 | 2010-11-17 11:33:27 -0800 | [diff] [blame] | 70 | IEEE80211_AC_BE, |
| 71 | IEEE80211_AC_BK, |
| 72 | IEEE80211_AC_BK, |
| 73 | IEEE80211_AC_BE, |
| 74 | IEEE80211_AC_VI, |
| 75 | IEEE80211_AC_VI, |
| 76 | IEEE80211_AC_VO, |
| 77 | IEEE80211_AC_VO |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 78 | }; |
| 79 | |
Shanyu Zhao | c2845d0 | 2010-04-14 15:35:14 -0700 | [diff] [blame] | 80 | static inline int get_ac_from_tid(u16 tid) |
| 81 | { |
| 82 | if (likely(tid < ARRAY_SIZE(tid_to_ac))) |
| 83 | return tid_to_ac[tid]; |
| 84 | |
| 85 | /* no support for TIDs 8-15 yet */ |
| 86 | return -EINVAL; |
| 87 | } |
| 88 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 89 | static inline int get_fifo_from_tid(struct iwl_rxon_context *ctx, u16 tid) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 90 | { |
| 91 | if (likely(tid < ARRAY_SIZE(tid_to_ac))) |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 92 | return ctx->ac_to_fifo[tid_to_ac[tid]]; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 93 | |
| 94 | /* no support for TIDs 8-15 yet */ |
| 95 | return -EINVAL; |
| 96 | } |
| 97 | |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 98 | /** |
| 99 | * iwlagn_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array |
| 100 | */ |
Johannes Berg | 94b0065 | 2011-04-28 07:27:09 -0700 | [diff] [blame] | 101 | static void iwlagn_txq_update_byte_cnt_tbl(struct iwl_priv *priv, |
| 102 | struct iwl_tx_queue *txq, |
| 103 | u16 byte_cnt) |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 104 | { |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 105 | struct iwlagn_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr; |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 106 | int write_ptr = txq->q.write_ptr; |
| 107 | int txq_id = txq->q.id; |
| 108 | u8 sec_ctl = 0; |
| 109 | u8 sta_id = 0; |
| 110 | u16 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE; |
| 111 | __le16 bc_ent; |
| 112 | |
| 113 | WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX); |
| 114 | |
Johannes Berg | ccb6c1c | 2011-04-28 07:27:08 -0700 | [diff] [blame] | 115 | sta_id = txq->cmd[txq->q.write_ptr]->cmd.tx.sta_id; |
| 116 | sec_ctl = txq->cmd[txq->q.write_ptr]->cmd.tx.sec_ctl; |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 117 | |
Johannes Berg | ccb6c1c | 2011-04-28 07:27:08 -0700 | [diff] [blame] | 118 | switch (sec_ctl & TX_CMD_SEC_MSK) { |
| 119 | case TX_CMD_SEC_CCM: |
| 120 | len += CCMP_MIC_LEN; |
| 121 | break; |
| 122 | case TX_CMD_SEC_TKIP: |
| 123 | len += TKIP_ICV_LEN; |
| 124 | break; |
| 125 | case TX_CMD_SEC_WEP: |
| 126 | len += WEP_IV_LEN + WEP_ICV_LEN; |
| 127 | break; |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | bc_ent = cpu_to_le16((len & 0xFFF) | (sta_id << 12)); |
| 131 | |
| 132 | scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent; |
| 133 | |
| 134 | if (write_ptr < TFD_QUEUE_SIZE_BC_DUP) |
| 135 | scd_bc_tbl[txq_id]. |
| 136 | tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent; |
| 137 | } |
| 138 | |
Johannes Berg | 94b0065 | 2011-04-28 07:27:09 -0700 | [diff] [blame] | 139 | static void iwlagn_txq_inval_byte_cnt_tbl(struct iwl_priv *priv, |
| 140 | struct iwl_tx_queue *txq) |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 141 | { |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 142 | struct iwlagn_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr; |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 143 | int txq_id = txq->q.id; |
| 144 | int read_ptr = txq->q.read_ptr; |
| 145 | u8 sta_id = 0; |
| 146 | __le16 bc_ent; |
| 147 | |
| 148 | WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX); |
| 149 | |
Johannes Berg | 13bb948 | 2010-08-23 10:46:33 +0200 | [diff] [blame] | 150 | if (txq_id != priv->cmd_queue) |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 151 | sta_id = txq->cmd[read_ptr]->cmd.tx.sta_id; |
| 152 | |
| 153 | bc_ent = cpu_to_le16(1 | (sta_id << 12)); |
| 154 | scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent; |
| 155 | |
| 156 | if (read_ptr < TFD_QUEUE_SIZE_BC_DUP) |
| 157 | scd_bc_tbl[txq_id]. |
| 158 | tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent; |
| 159 | } |
| 160 | |
| 161 | static int iwlagn_tx_queue_set_q2ratid(struct iwl_priv *priv, u16 ra_tid, |
| 162 | u16 txq_id) |
| 163 | { |
| 164 | u32 tbl_dw_addr; |
| 165 | u32 tbl_dw; |
| 166 | u16 scd_q2ratid; |
| 167 | |
| 168 | scd_q2ratid = ra_tid & IWL_SCD_QUEUE_RA_TID_MAP_RATID_MSK; |
| 169 | |
| 170 | tbl_dw_addr = priv->scd_base_addr + |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 171 | IWLAGN_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 172 | |
| 173 | tbl_dw = iwl_read_targ_mem(priv, tbl_dw_addr); |
| 174 | |
| 175 | if (txq_id & 0x1) |
| 176 | tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF); |
| 177 | else |
| 178 | tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000); |
| 179 | |
| 180 | iwl_write_targ_mem(priv, tbl_dw_addr, tbl_dw); |
| 181 | |
| 182 | return 0; |
| 183 | } |
| 184 | |
| 185 | static void iwlagn_tx_queue_stop_scheduler(struct iwl_priv *priv, u16 txq_id) |
| 186 | { |
| 187 | /* Simply stop the queue, but don't change any configuration; |
| 188 | * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */ |
| 189 | iwl_write_prph(priv, |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 190 | IWLAGN_SCD_QUEUE_STATUS_BITS(txq_id), |
| 191 | (0 << IWLAGN_SCD_QUEUE_STTS_REG_POS_ACTIVE)| |
| 192 | (1 << IWLAGN_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN)); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | void iwlagn_set_wr_ptrs(struct iwl_priv *priv, |
| 196 | int txq_id, u32 index) |
| 197 | { |
| 198 | iwl_write_direct32(priv, HBUS_TARG_WRPTR, |
| 199 | (index & 0xff) | (txq_id << 8)); |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 200 | iwl_write_prph(priv, IWLAGN_SCD_QUEUE_RDPTR(txq_id), index); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | void iwlagn_tx_queue_set_status(struct iwl_priv *priv, |
| 204 | struct iwl_tx_queue *txq, |
| 205 | int tx_fifo_id, int scd_retry) |
| 206 | { |
| 207 | int txq_id = txq->q.id; |
| 208 | int active = test_bit(txq_id, &priv->txq_ctx_active_msk) ? 1 : 0; |
| 209 | |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 210 | iwl_write_prph(priv, IWLAGN_SCD_QUEUE_STATUS_BITS(txq_id), |
| 211 | (active << IWLAGN_SCD_QUEUE_STTS_REG_POS_ACTIVE) | |
| 212 | (tx_fifo_id << IWLAGN_SCD_QUEUE_STTS_REG_POS_TXF) | |
| 213 | (1 << IWLAGN_SCD_QUEUE_STTS_REG_POS_WSL) | |
| 214 | IWLAGN_SCD_QUEUE_STTS_REG_MSK); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 215 | |
| 216 | txq->sched_retry = scd_retry; |
| 217 | |
| 218 | IWL_DEBUG_INFO(priv, "%s %s Queue %d on FIFO %d\n", |
| 219 | active ? "Activate" : "Deactivate", |
| 220 | scd_retry ? "BA" : "AC/CMD", txq_id, tx_fifo_id); |
| 221 | } |
| 222 | |
Johannes Berg | c8823ec | 2011-03-15 11:33:03 -0700 | [diff] [blame] | 223 | static int iwlagn_txq_agg_enable(struct iwl_priv *priv, int txq_id, int sta_id, int tid) |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 224 | { |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 225 | if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) || |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 226 | (IWLAGN_FIRST_AMPDU_QUEUE + |
| 227 | priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) { |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 228 | IWL_WARN(priv, |
| 229 | "queue number out of range: %d, must be %d to %d\n", |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 230 | txq_id, IWLAGN_FIRST_AMPDU_QUEUE, |
| 231 | IWLAGN_FIRST_AMPDU_QUEUE + |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 232 | priv->cfg->base_params->num_of_ampdu_queues - 1); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 233 | return -EINVAL; |
| 234 | } |
| 235 | |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 236 | /* Modify device's station table to Tx this TID */ |
Johannes Berg | c8823ec | 2011-03-15 11:33:03 -0700 | [diff] [blame] | 237 | return iwl_sta_tx_modify_enable_tid(priv, sta_id, tid); |
| 238 | } |
| 239 | |
| 240 | void iwlagn_txq_agg_queue_setup(struct iwl_priv *priv, |
| 241 | struct ieee80211_sta *sta, |
| 242 | int tid, int frame_limit) |
| 243 | { |
| 244 | int sta_id, tx_fifo, txq_id, ssn_idx; |
| 245 | u16 ra_tid; |
| 246 | unsigned long flags; |
| 247 | struct iwl_tid_data *tid_data; |
| 248 | |
| 249 | sta_id = iwl_sta_id(sta); |
| 250 | if (WARN_ON(sta_id == IWL_INVALID_STATION)) |
| 251 | return; |
| 252 | if (WARN_ON(tid >= MAX_TID_COUNT)) |
| 253 | return; |
| 254 | |
| 255 | spin_lock_irqsave(&priv->sta_lock, flags); |
| 256 | tid_data = &priv->stations[sta_id].tid[tid]; |
| 257 | ssn_idx = SEQ_TO_SN(tid_data->seq_number); |
| 258 | txq_id = tid_data->agg.txq_id; |
| 259 | tx_fifo = tid_data->agg.tx_fifo; |
| 260 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
| 261 | |
| 262 | ra_tid = BUILD_RAxTID(sta_id, tid); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 263 | |
| 264 | spin_lock_irqsave(&priv->lock, flags); |
| 265 | |
| 266 | /* Stop this Tx queue before configuring it */ |
| 267 | iwlagn_tx_queue_stop_scheduler(priv, txq_id); |
| 268 | |
| 269 | /* Map receiver-address / traffic-ID to this queue */ |
| 270 | iwlagn_tx_queue_set_q2ratid(priv, ra_tid, txq_id); |
| 271 | |
| 272 | /* Set this queue as a chain-building queue */ |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 273 | iwl_set_bits_prph(priv, IWLAGN_SCD_QUEUECHAIN_SEL, (1<<txq_id)); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 274 | |
| 275 | /* enable aggregations for the queue */ |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 276 | iwl_set_bits_prph(priv, IWLAGN_SCD_AGGR_SEL, (1<<txq_id)); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 277 | |
| 278 | /* Place first TFD at index corresponding to start sequence number. |
| 279 | * Assumes that ssn_idx is valid (!= 0xFFF) */ |
| 280 | priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff); |
| 281 | priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff); |
| 282 | iwlagn_set_wr_ptrs(priv, txq_id, ssn_idx); |
| 283 | |
| 284 | /* Set up Tx window size and frame limit for this queue */ |
| 285 | iwl_write_targ_mem(priv, priv->scd_base_addr + |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 286 | IWLAGN_SCD_CONTEXT_QUEUE_OFFSET(txq_id) + |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 287 | sizeof(u32), |
Johannes Berg | c8823ec | 2011-03-15 11:33:03 -0700 | [diff] [blame] | 288 | ((frame_limit << |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 289 | IWLAGN_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) & |
| 290 | IWLAGN_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) | |
Johannes Berg | c8823ec | 2011-03-15 11:33:03 -0700 | [diff] [blame] | 291 | ((frame_limit << |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 292 | IWLAGN_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) & |
| 293 | IWLAGN_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK)); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 294 | |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 295 | iwl_set_bits_prph(priv, IWLAGN_SCD_INTERRUPT_MASK, (1 << txq_id)); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 296 | |
| 297 | /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */ |
| 298 | iwlagn_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 1); |
| 299 | |
| 300 | spin_unlock_irqrestore(&priv->lock, flags); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 301 | } |
| 302 | |
Johannes Berg | 7ffef13 | 2011-03-15 04:59:10 -0700 | [diff] [blame] | 303 | static int iwlagn_txq_agg_disable(struct iwl_priv *priv, u16 txq_id, |
| 304 | u16 ssn_idx, u8 tx_fifo) |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 305 | { |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 306 | if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) || |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 307 | (IWLAGN_FIRST_AMPDU_QUEUE + |
| 308 | priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) { |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 309 | IWL_ERR(priv, |
| 310 | "queue number out of range: %d, must be %d to %d\n", |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 311 | txq_id, IWLAGN_FIRST_AMPDU_QUEUE, |
| 312 | IWLAGN_FIRST_AMPDU_QUEUE + |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 313 | priv->cfg->base_params->num_of_ampdu_queues - 1); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 314 | return -EINVAL; |
| 315 | } |
| 316 | |
| 317 | iwlagn_tx_queue_stop_scheduler(priv, txq_id); |
| 318 | |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 319 | iwl_clear_bits_prph(priv, IWLAGN_SCD_AGGR_SEL, (1 << txq_id)); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 320 | |
| 321 | priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff); |
| 322 | priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff); |
| 323 | /* supposes that ssn_idx is valid (!= 0xFFF) */ |
| 324 | iwlagn_set_wr_ptrs(priv, txq_id, ssn_idx); |
| 325 | |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 326 | iwl_clear_bits_prph(priv, IWLAGN_SCD_INTERRUPT_MASK, (1 << txq_id)); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 327 | iwl_txq_ctx_deactivate(priv, txq_id); |
| 328 | iwlagn_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 0); |
| 329 | |
| 330 | return 0; |
| 331 | } |
| 332 | |
| 333 | /* |
| 334 | * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask |
| 335 | * must be called under priv->lock and mac access |
| 336 | */ |
| 337 | void iwlagn_txq_set_sched(struct iwl_priv *priv, u32 mask) |
| 338 | { |
Wey-Yi Guy | f4388ad | 2010-04-12 18:32:11 -0700 | [diff] [blame] | 339 | iwl_write_prph(priv, IWLAGN_SCD_TXFACT, mask); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 340 | } |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 341 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 342 | /* |
| 343 | * handle build REPLY_TX command notification. |
| 344 | */ |
| 345 | static void iwlagn_tx_cmd_build_basic(struct iwl_priv *priv, |
Johannes Berg | d44ae69 | 2010-08-23 07:56:56 -0700 | [diff] [blame] | 346 | struct sk_buff *skb, |
| 347 | struct iwl_tx_cmd *tx_cmd, |
| 348 | struct ieee80211_tx_info *info, |
| 349 | struct ieee80211_hdr *hdr, |
| 350 | u8 std_id) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 351 | { |
| 352 | __le16 fc = hdr->frame_control; |
| 353 | __le32 tx_flags = tx_cmd->tx_flags; |
| 354 | |
| 355 | tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
| 356 | if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) { |
| 357 | tx_flags |= TX_CMD_FLG_ACK_MSK; |
| 358 | if (ieee80211_is_mgmt(fc)) |
| 359 | tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK; |
| 360 | if (ieee80211_is_probe_resp(fc) && |
| 361 | !(le16_to_cpu(hdr->seq_ctrl) & 0xf)) |
| 362 | tx_flags |= TX_CMD_FLG_TSF_MSK; |
| 363 | } else { |
| 364 | tx_flags &= (~TX_CMD_FLG_ACK_MSK); |
| 365 | tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK; |
| 366 | } |
| 367 | |
| 368 | if (ieee80211_is_back_req(fc)) |
| 369 | tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK; |
Johannes Berg | d44ae69 | 2010-08-23 07:56:56 -0700 | [diff] [blame] | 370 | else if (info->band == IEEE80211_BAND_2GHZ && |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 371 | priv->cfg->bt_params && |
| 372 | priv->cfg->bt_params->advanced_bt_coexist && |
Johannes Berg | d44ae69 | 2010-08-23 07:56:56 -0700 | [diff] [blame] | 373 | (ieee80211_is_auth(fc) || ieee80211_is_assoc_req(fc) || |
| 374 | ieee80211_is_reassoc_req(fc) || |
| 375 | skb->protocol == cpu_to_be16(ETH_P_PAE))) |
| 376 | tx_flags |= TX_CMD_FLG_IGNORE_BT; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 377 | |
| 378 | |
| 379 | tx_cmd->sta_id = std_id; |
| 380 | if (ieee80211_has_morefrags(fc)) |
| 381 | tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK; |
| 382 | |
| 383 | if (ieee80211_is_data_qos(fc)) { |
| 384 | u8 *qc = ieee80211_get_qos_ctl(hdr); |
| 385 | tx_cmd->tid_tspec = qc[0] & 0xf; |
| 386 | tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK; |
| 387 | } else { |
| 388 | tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK; |
| 389 | } |
| 390 | |
Johannes Berg | 94597ab | 2010-08-09 10:57:02 -0700 | [diff] [blame] | 391 | priv->cfg->ops->utils->tx_cmd_protection(priv, info, fc, &tx_flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 392 | |
| 393 | tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK); |
| 394 | if (ieee80211_is_mgmt(fc)) { |
| 395 | if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc)) |
| 396 | tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3); |
| 397 | else |
| 398 | tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2); |
| 399 | } else { |
| 400 | tx_cmd->timeout.pm_frame_timeout = 0; |
| 401 | } |
| 402 | |
| 403 | tx_cmd->driver_txop = 0; |
| 404 | tx_cmd->tx_flags = tx_flags; |
| 405 | tx_cmd->next_frame_len = 0; |
| 406 | } |
| 407 | |
| 408 | #define RTS_DFAULT_RETRY_LIMIT 60 |
| 409 | |
| 410 | static void iwlagn_tx_cmd_build_rate(struct iwl_priv *priv, |
| 411 | struct iwl_tx_cmd *tx_cmd, |
| 412 | struct ieee80211_tx_info *info, |
| 413 | __le16 fc) |
| 414 | { |
| 415 | u32 rate_flags; |
| 416 | int rate_idx; |
| 417 | u8 rts_retry_limit; |
| 418 | u8 data_retry_limit; |
| 419 | u8 rate_plcp; |
| 420 | |
| 421 | /* Set retry limit on DATA packets and Probe Responses*/ |
| 422 | if (ieee80211_is_probe_resp(fc)) |
| 423 | data_retry_limit = 3; |
| 424 | else |
Wey-Yi Guy | b744cb7 | 2010-03-23 11:37:59 -0700 | [diff] [blame] | 425 | data_retry_limit = IWLAGN_DEFAULT_TX_RETRY; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 426 | tx_cmd->data_retry_limit = data_retry_limit; |
| 427 | |
| 428 | /* Set retry limit on RTS packets */ |
| 429 | rts_retry_limit = RTS_DFAULT_RETRY_LIMIT; |
| 430 | if (data_retry_limit < rts_retry_limit) |
| 431 | rts_retry_limit = data_retry_limit; |
| 432 | tx_cmd->rts_retry_limit = rts_retry_limit; |
| 433 | |
| 434 | /* DATA packets will use the uCode station table for rate/antenna |
| 435 | * selection */ |
| 436 | if (ieee80211_is_data(fc)) { |
| 437 | tx_cmd->initial_rate_index = 0; |
| 438 | tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK; |
| 439 | return; |
| 440 | } |
| 441 | |
| 442 | /** |
| 443 | * If the current TX rate stored in mac80211 has the MCS bit set, it's |
| 444 | * not really a TX rate. Thus, we use the lowest supported rate for |
| 445 | * this band. Also use the lowest supported rate if the stored rate |
| 446 | * index is invalid. |
| 447 | */ |
| 448 | rate_idx = info->control.rates[0].idx; |
| 449 | if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS || |
| 450 | (rate_idx < 0) || (rate_idx > IWL_RATE_COUNT_LEGACY)) |
| 451 | rate_idx = rate_lowest_index(&priv->bands[info->band], |
| 452 | info->control.sta); |
| 453 | /* For 5 GHZ band, remap mac80211 rate indices into driver indices */ |
| 454 | if (info->band == IEEE80211_BAND_5GHZ) |
| 455 | rate_idx += IWL_FIRST_OFDM_RATE; |
| 456 | /* Get PLCP rate for tx_cmd->rate_n_flags */ |
| 457 | rate_plcp = iwl_rates[rate_idx].plcp; |
| 458 | /* Zero out flags for this packet */ |
| 459 | rate_flags = 0; |
| 460 | |
| 461 | /* Set CCK flag as needed */ |
| 462 | if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE)) |
| 463 | rate_flags |= RATE_MCS_CCK_MSK; |
| 464 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 465 | /* Set up antennas */ |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 466 | if (priv->cfg->bt_params && |
| 467 | priv->cfg->bt_params->advanced_bt_coexist && |
| 468 | priv->bt_full_concurrent) { |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 469 | /* operated as 1x1 in full concurrency mode */ |
| 470 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, |
| 471 | first_antenna(priv->hw_params.valid_tx_ant)); |
| 472 | } else |
| 473 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, |
Johannes Berg | 0e1654f | 2010-05-18 02:48:36 -0700 | [diff] [blame] | 474 | priv->hw_params.valid_tx_ant); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 475 | rate_flags |= iwl_ant_idx_to_flags(priv->mgmt_tx_ant); |
| 476 | |
| 477 | /* Set the rate in the TX cmd */ |
| 478 | tx_cmd->rate_n_flags = iwl_hw_set_rate_n_flags(rate_plcp, rate_flags); |
| 479 | } |
| 480 | |
| 481 | static void iwlagn_tx_cmd_build_hwcrypto(struct iwl_priv *priv, |
| 482 | struct ieee80211_tx_info *info, |
| 483 | struct iwl_tx_cmd *tx_cmd, |
| 484 | struct sk_buff *skb_frag, |
| 485 | int sta_id) |
| 486 | { |
| 487 | struct ieee80211_key_conf *keyconf = info->control.hw_key; |
| 488 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 489 | switch (keyconf->cipher) { |
| 490 | case WLAN_CIPHER_SUITE_CCMP: |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 491 | tx_cmd->sec_ctl = TX_CMD_SEC_CCM; |
| 492 | memcpy(tx_cmd->key, keyconf->key, keyconf->keylen); |
| 493 | if (info->flags & IEEE80211_TX_CTL_AMPDU) |
| 494 | tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK; |
| 495 | IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n"); |
| 496 | break; |
| 497 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 498 | case WLAN_CIPHER_SUITE_TKIP: |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 499 | tx_cmd->sec_ctl = TX_CMD_SEC_TKIP; |
| 500 | ieee80211_get_tkip_key(keyconf, skb_frag, |
| 501 | IEEE80211_TKIP_P2_KEY, tx_cmd->key); |
| 502 | IWL_DEBUG_TX(priv, "tx_cmd with tkip hwcrypto\n"); |
| 503 | break; |
| 504 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 505 | case WLAN_CIPHER_SUITE_WEP104: |
| 506 | tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128; |
| 507 | /* fall through */ |
| 508 | case WLAN_CIPHER_SUITE_WEP40: |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 509 | tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP | |
| 510 | (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT); |
| 511 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 512 | memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen); |
| 513 | |
| 514 | IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption " |
| 515 | "with key %d\n", keyconf->keyidx); |
| 516 | break; |
| 517 | |
| 518 | default: |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 519 | IWL_ERR(priv, "Unknown encode cipher %x\n", keyconf->cipher); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 520 | break; |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | /* |
| 525 | * start REPLY_TX command process |
| 526 | */ |
| 527 | int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) |
| 528 | { |
| 529 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
| 530 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 531 | struct ieee80211_sta *sta = info->control.sta; |
| 532 | struct iwl_station_priv *sta_priv = NULL; |
| 533 | struct iwl_tx_queue *txq; |
| 534 | struct iwl_queue *q; |
| 535 | struct iwl_device_cmd *out_cmd; |
| 536 | struct iwl_cmd_meta *out_meta; |
| 537 | struct iwl_tx_cmd *tx_cmd; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 538 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Johannes Berg | 8d56396 | 2010-11-10 18:25:42 -0800 | [diff] [blame] | 539 | int txq_id; |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 540 | dma_addr_t phys_addr = 0; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 541 | dma_addr_t txcmd_phys; |
| 542 | dma_addr_t scratch_phys; |
Stanislaw Gruszka | 70f3876 | 2010-11-12 08:47:06 +0100 | [diff] [blame] | 543 | u16 len, firstlen, secondlen; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 544 | u16 seq_number = 0; |
| 545 | __le16 fc; |
| 546 | u8 hdr_len; |
| 547 | u8 sta_id; |
| 548 | u8 wait_write_ptr = 0; |
| 549 | u8 tid = 0; |
| 550 | u8 *qc = NULL; |
| 551 | unsigned long flags; |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 552 | bool is_agg = false; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 553 | |
Johannes Berg | 9b9190d | 2011-01-06 08:07:10 -0800 | [diff] [blame] | 554 | /* |
| 555 | * If the frame needs to go out off-channel, then |
| 556 | * we'll have put the PAN context to that channel, |
| 557 | * so make the frame go out there. |
| 558 | */ |
| 559 | if (info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) |
| 560 | ctx = &priv->contexts[IWL_RXON_CTX_PAN]; |
| 561 | else if (info->control.vif) |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 562 | ctx = iwl_rxon_ctx_from_vif(info->control.vif); |
| 563 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 564 | spin_lock_irqsave(&priv->lock, flags); |
| 565 | if (iwl_is_rfkill(priv)) { |
| 566 | IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n"); |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 567 | goto drop_unlock_priv; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | fc = hdr->frame_control; |
| 571 | |
| 572 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 573 | if (ieee80211_is_auth(fc)) |
| 574 | IWL_DEBUG_TX(priv, "Sending AUTH frame\n"); |
| 575 | else if (ieee80211_is_assoc_req(fc)) |
| 576 | IWL_DEBUG_TX(priv, "Sending ASSOC frame\n"); |
| 577 | else if (ieee80211_is_reassoc_req(fc)) |
| 578 | IWL_DEBUG_TX(priv, "Sending REASSOC frame\n"); |
| 579 | #endif |
| 580 | |
| 581 | hdr_len = ieee80211_hdrlen(fc); |
| 582 | |
Stanislaw Gruszka | bfd3610 | 2011-04-29 17:51:06 +0200 | [diff] [blame] | 583 | /* For management frames use broadcast id to do not break aggregation */ |
| 584 | if (!ieee80211_is_data(fc)) |
| 585 | sta_id = ctx->bcast_sta_id; |
| 586 | else { |
| 587 | /* Find index into station table for destination station */ |
| 588 | sta_id = iwl_sta_id_or_broadcast(priv, ctx, info->control.sta); |
| 589 | if (sta_id == IWL_INVALID_STATION) { |
| 590 | IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n", |
| 591 | hdr->addr1); |
John W. Linville | e00cf3b | 2011-05-16 14:55:42 -0400 | [diff] [blame] | 592 | goto drop_unlock_priv; |
Stanislaw Gruszka | bfd3610 | 2011-04-29 17:51:06 +0200 | [diff] [blame] | 593 | } |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | IWL_DEBUG_TX(priv, "station Id %d\n", sta_id); |
| 597 | |
| 598 | if (sta) |
| 599 | sta_priv = (void *)sta->drv_priv; |
| 600 | |
Johannes Berg | 67158b6 | 2010-11-16 11:51:04 -0800 | [diff] [blame] | 601 | if (sta_priv && sta_priv->asleep && |
| 602 | (info->flags & IEEE80211_TX_CTL_PSPOLL_RESPONSE)) { |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 603 | /* |
| 604 | * This sends an asynchronous command to the device, |
| 605 | * but we can rely on it being processed before the |
| 606 | * next frame is processed -- and the next frame to |
| 607 | * this station is the one that will consume this |
| 608 | * counter. |
| 609 | * For now set the counter to just 1 since we do not |
| 610 | * support uAPSD yet. |
| 611 | */ |
| 612 | iwl_sta_modify_sleep_tx_count(priv, sta_id, 1); |
| 613 | } |
| 614 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 615 | /* |
| 616 | * Send this frame after DTIM -- there's a special queue |
| 617 | * reserved for this for contexts that support AP mode. |
| 618 | */ |
| 619 | if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) { |
| 620 | txq_id = ctx->mcast_queue; |
| 621 | /* |
| 622 | * The microcode will clear the more data |
| 623 | * bit in the last frame it transmits. |
| 624 | */ |
| 625 | hdr->frame_control |= |
| 626 | cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
| 627 | } else |
| 628 | txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)]; |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 629 | |
| 630 | /* irqs already disabled/saved above when locking priv->lock */ |
| 631 | spin_lock(&priv->sta_lock); |
| 632 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 633 | if (ieee80211_is_data_qos(fc)) { |
| 634 | qc = ieee80211_get_qos_ctl(hdr); |
| 635 | tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK; |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 636 | |
| 637 | if (WARN_ON_ONCE(tid >= MAX_TID_COUNT)) |
| 638 | goto drop_unlock_sta; |
| 639 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 640 | seq_number = priv->stations[sta_id].tid[tid].seq_number; |
| 641 | seq_number &= IEEE80211_SCTL_SEQ; |
| 642 | hdr->seq_ctrl = hdr->seq_ctrl & |
| 643 | cpu_to_le16(IEEE80211_SCTL_FRAG); |
| 644 | hdr->seq_ctrl |= cpu_to_le16(seq_number); |
| 645 | seq_number += 0x10; |
| 646 | /* aggregation is on for this <sta,tid> */ |
| 647 | if (info->flags & IEEE80211_TX_CTL_AMPDU && |
| 648 | priv->stations[sta_id].tid[tid].agg.state == IWL_AGG_ON) { |
| 649 | txq_id = priv->stations[sta_id].tid[tid].agg.txq_id; |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 650 | is_agg = true; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 651 | } |
| 652 | } |
| 653 | |
| 654 | txq = &priv->txq[txq_id]; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 655 | q = &txq->q; |
| 656 | |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 657 | if (unlikely(iwl_queue_space(q) < q->high_mark)) |
| 658 | goto drop_unlock_sta; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 659 | |
| 660 | /* Set up driver data for this TFD */ |
| 661 | memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct iwl_tx_info)); |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 662 | txq->txb[q->write_ptr].skb = skb; |
Johannes Berg | c90cbbb | 2010-08-23 10:46:39 +0200 | [diff] [blame] | 663 | txq->txb[q->write_ptr].ctx = ctx; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 664 | |
| 665 | /* Set up first empty entry in queue's array of Tx/cmd buffers */ |
| 666 | out_cmd = txq->cmd[q->write_ptr]; |
| 667 | out_meta = &txq->meta[q->write_ptr]; |
| 668 | tx_cmd = &out_cmd->cmd.tx; |
| 669 | memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr)); |
| 670 | memset(tx_cmd, 0, sizeof(struct iwl_tx_cmd)); |
| 671 | |
| 672 | /* |
| 673 | * Set up the Tx-command (not MAC!) header. |
| 674 | * Store the chosen Tx queue and TFD index within the sequence field; |
| 675 | * after Tx, uCode's Tx response will return this value so driver can |
| 676 | * locate the frame within the tx queue and do post-tx processing. |
| 677 | */ |
| 678 | out_cmd->hdr.cmd = REPLY_TX; |
| 679 | out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) | |
| 680 | INDEX_TO_SEQ(q->write_ptr))); |
| 681 | |
| 682 | /* Copy MAC header from skb into command buffer */ |
| 683 | memcpy(tx_cmd->hdr, hdr, hdr_len); |
| 684 | |
| 685 | |
| 686 | /* Total # bytes to be transmitted */ |
| 687 | len = (u16)skb->len; |
| 688 | tx_cmd->len = cpu_to_le16(len); |
| 689 | |
| 690 | if (info->control.hw_key) |
| 691 | iwlagn_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id); |
| 692 | |
| 693 | /* TODO need this for burst mode later on */ |
Johannes Berg | d44ae69 | 2010-08-23 07:56:56 -0700 | [diff] [blame] | 694 | iwlagn_tx_cmd_build_basic(priv, skb, tx_cmd, info, hdr, sta_id); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 695 | iwl_dbg_log_tx_data_frame(priv, len, hdr); |
| 696 | |
| 697 | iwlagn_tx_cmd_build_rate(priv, tx_cmd, info, fc); |
| 698 | |
| 699 | iwl_update_stats(priv, true, fc, len); |
| 700 | /* |
| 701 | * Use the first empty entry in this queue's command buffer array |
| 702 | * to contain the Tx command and MAC header concatenated together |
| 703 | * (payload data will be in another buffer). |
| 704 | * Size of this varies, due to varying MAC header length. |
| 705 | * If end is not dword aligned, we'll have 2 extra bytes at the end |
| 706 | * of the MAC header (device reads on dword boundaries). |
| 707 | * We'll tell device about this padding later. |
| 708 | */ |
| 709 | len = sizeof(struct iwl_tx_cmd) + |
| 710 | sizeof(struct iwl_cmd_header) + hdr_len; |
Stanislaw Gruszka | 70f3876 | 2010-11-12 08:47:06 +0100 | [diff] [blame] | 711 | firstlen = (len + 3) & ~3; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 712 | |
| 713 | /* Tell NIC about any 2-byte padding after MAC header */ |
Stanislaw Gruszka | 70f3876 | 2010-11-12 08:47:06 +0100 | [diff] [blame] | 714 | if (firstlen != len) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 715 | tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK; |
| 716 | |
| 717 | /* Physical address of this Tx command's header (not MAC header!), |
| 718 | * within command buffer array. */ |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 719 | txcmd_phys = dma_map_single(priv->bus.dev, |
Stanislaw Gruszka | 70f3876 | 2010-11-12 08:47:06 +0100 | [diff] [blame] | 720 | &out_cmd->hdr, firstlen, |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 721 | DMA_BIDIRECTIONAL); |
| 722 | if (unlikely(dma_mapping_error(priv->bus.dev, txcmd_phys))) |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 723 | goto drop_unlock_sta; |
FUJITA Tomonori | 2e72444 | 2010-06-03 14:19:20 +0900 | [diff] [blame] | 724 | dma_unmap_addr_set(out_meta, mapping, txcmd_phys); |
Stanislaw Gruszka | 70f3876 | 2010-11-12 08:47:06 +0100 | [diff] [blame] | 725 | dma_unmap_len_set(out_meta, len, firstlen); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 726 | |
| 727 | if (!ieee80211_has_morefrags(hdr->frame_control)) { |
| 728 | txq->need_update = 1; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 729 | } else { |
| 730 | wait_write_ptr = 1; |
| 731 | txq->need_update = 0; |
| 732 | } |
| 733 | |
| 734 | /* Set up TFD's 2nd entry to point directly to remainder of skb, |
| 735 | * if any (802.11 null frames have no payload). */ |
Stanislaw Gruszka | 70f3876 | 2010-11-12 08:47:06 +0100 | [diff] [blame] | 736 | secondlen = skb->len - hdr_len; |
| 737 | if (secondlen > 0) { |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 738 | phys_addr = dma_map_single(priv->bus.dev, skb->data + hdr_len, |
| 739 | secondlen, DMA_TO_DEVICE); |
| 740 | if (unlikely(dma_mapping_error(priv->bus.dev, phys_addr))) { |
| 741 | dma_unmap_single(priv->bus.dev, |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 742 | dma_unmap_addr(out_meta, mapping), |
| 743 | dma_unmap_len(out_meta, len), |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 744 | DMA_BIDIRECTIONAL); |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 745 | goto drop_unlock_sta; |
| 746 | } |
| 747 | } |
| 748 | |
| 749 | if (ieee80211_is_data_qos(fc)) { |
| 750 | priv->stations[sta_id].tid[tid].tfds_in_queue++; |
| 751 | if (!ieee80211_has_morefrags(fc)) |
| 752 | priv->stations[sta_id].tid[tid].seq_number = seq_number; |
| 753 | } |
| 754 | |
| 755 | spin_unlock(&priv->sta_lock); |
| 756 | |
| 757 | /* Attach buffers to TFD */ |
Johannes Berg | 4c42db0 | 2011-05-04 07:50:48 -0700 | [diff] [blame] | 758 | iwlagn_txq_attach_buf_to_tfd(priv, txq, txcmd_phys, firstlen, 1); |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 759 | if (secondlen > 0) |
Johannes Berg | 214d14d | 2011-05-04 07:50:44 -0700 | [diff] [blame] | 760 | iwlagn_txq_attach_buf_to_tfd(priv, txq, phys_addr, |
Johannes Berg | 4c42db0 | 2011-05-04 07:50:48 -0700 | [diff] [blame] | 761 | secondlen, 0); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 762 | |
| 763 | scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) + |
| 764 | offsetof(struct iwl_tx_cmd, scratch); |
| 765 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 766 | /* take back ownership of DMA buffer to enable update */ |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 767 | dma_sync_single_for_cpu(priv->bus.dev, txcmd_phys, firstlen, |
| 768 | DMA_BIDIRECTIONAL); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 769 | tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys); |
| 770 | tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys); |
| 771 | |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 772 | IWL_DEBUG_TX(priv, "sequence nr = 0X%x\n", |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 773 | le16_to_cpu(out_cmd->hdr.sequence)); |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 774 | IWL_DEBUG_TX(priv, "tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags)); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 775 | iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd)); |
| 776 | iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len); |
| 777 | |
| 778 | /* Set up entry for this TFD in Tx byte-count array */ |
| 779 | if (info->flags & IEEE80211_TX_CTL_AMPDU) |
Johannes Berg | 94b0065 | 2011-04-28 07:27:09 -0700 | [diff] [blame] | 780 | iwlagn_txq_update_byte_cnt_tbl(priv, txq, |
| 781 | le16_to_cpu(tx_cmd->len)); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 782 | |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 783 | dma_sync_single_for_device(priv->bus.dev, txcmd_phys, firstlen, |
| 784 | DMA_BIDIRECTIONAL); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 785 | |
| 786 | trace_iwlwifi_dev_tx(priv, |
| 787 | &((struct iwl_tfd *)txq->tfds)[txq->q.write_ptr], |
| 788 | sizeof(struct iwl_tfd), |
| 789 | &out_cmd->hdr, firstlen, |
| 790 | skb->data + hdr_len, secondlen); |
| 791 | |
| 792 | /* Tell device the write index *just past* this latest filled TFD */ |
| 793 | q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd); |
| 794 | iwl_txq_update_write_ptr(priv, txq); |
| 795 | spin_unlock_irqrestore(&priv->lock, flags); |
| 796 | |
| 797 | /* |
| 798 | * At this point the frame is "transmitted" successfully |
| 799 | * and we will get a TX status notification eventually, |
| 800 | * regardless of the value of ret. "ret" only indicates |
| 801 | * whether or not we should update the write pointer. |
| 802 | */ |
| 803 | |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 804 | /* |
| 805 | * Avoid atomic ops if it isn't an associated client. |
| 806 | * Also, if this is a packet for aggregation, don't |
| 807 | * increase the counter because the ucode will stop |
| 808 | * aggregation queues when their respective station |
| 809 | * goes to sleep. |
| 810 | */ |
| 811 | if (sta_priv && sta_priv->client && !is_agg) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 812 | atomic_inc(&sta_priv->pending_frames); |
| 813 | |
| 814 | if ((iwl_queue_space(q) < q->high_mark) && priv->mac80211_registered) { |
| 815 | if (wait_write_ptr) { |
| 816 | spin_lock_irqsave(&priv->lock, flags); |
| 817 | txq->need_update = 1; |
| 818 | iwl_txq_update_write_ptr(priv, txq); |
| 819 | spin_unlock_irqrestore(&priv->lock, flags); |
| 820 | } else { |
Johannes Berg | 549a04e | 2010-11-10 18:25:44 -0800 | [diff] [blame] | 821 | iwl_stop_queue(priv, txq); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 822 | } |
| 823 | } |
| 824 | |
| 825 | return 0; |
| 826 | |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 827 | drop_unlock_sta: |
| 828 | spin_unlock(&priv->sta_lock); |
| 829 | drop_unlock_priv: |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 830 | spin_unlock_irqrestore(&priv->lock, flags); |
| 831 | return -1; |
| 832 | } |
| 833 | |
| 834 | static inline int iwlagn_alloc_dma_ptr(struct iwl_priv *priv, |
| 835 | struct iwl_dma_ptr *ptr, size_t size) |
| 836 | { |
Emmanuel Grumbach | 3599d39 | 2011-05-31 08:52:10 +0300 | [diff] [blame] | 837 | ptr->addr = dma_alloc_coherent(priv->bus.dev, size, |
| 838 | &ptr->dma, GFP_KERNEL); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 839 | if (!ptr->addr) |
| 840 | return -ENOMEM; |
| 841 | ptr->size = size; |
| 842 | return 0; |
| 843 | } |
| 844 | |
| 845 | static inline void iwlagn_free_dma_ptr(struct iwl_priv *priv, |
| 846 | struct iwl_dma_ptr *ptr) |
| 847 | { |
| 848 | if (unlikely(!ptr->addr)) |
| 849 | return; |
| 850 | |
Emmanuel Grumbach | 795414d | 2011-06-18 08:12:57 -0700 | [diff] [blame] | 851 | dma_free_coherent(priv->bus.dev, ptr->size, ptr->addr, ptr->dma); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 852 | memset(ptr, 0, sizeof(*ptr)); |
| 853 | } |
| 854 | |
| 855 | /** |
| 856 | * iwlagn_hw_txq_ctx_free - Free TXQ Context |
| 857 | * |
| 858 | * Destroy all TX DMA queues and structures |
| 859 | */ |
| 860 | void iwlagn_hw_txq_ctx_free(struct iwl_priv *priv) |
| 861 | { |
| 862 | int txq_id; |
| 863 | |
| 864 | /* Tx queues */ |
| 865 | if (priv->txq) { |
Zhu Yi | 470058e | 2010-04-02 13:38:54 -0700 | [diff] [blame] | 866 | for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) |
Johannes Berg | 13bb948 | 2010-08-23 10:46:33 +0200 | [diff] [blame] | 867 | if (txq_id == priv->cmd_queue) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 868 | iwl_cmd_queue_free(priv); |
| 869 | else |
| 870 | iwl_tx_queue_free(priv, txq_id); |
| 871 | } |
| 872 | iwlagn_free_dma_ptr(priv, &priv->kw); |
| 873 | |
| 874 | iwlagn_free_dma_ptr(priv, &priv->scd_bc_tbls); |
| 875 | |
| 876 | /* free tx queue structure */ |
| 877 | iwl_free_txq_mem(priv); |
| 878 | } |
| 879 | |
| 880 | /** |
Zhu Yi | 470058e | 2010-04-02 13:38:54 -0700 | [diff] [blame] | 881 | * iwlagn_txq_ctx_stop - Stop all Tx DMA channels |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 882 | */ |
| 883 | void iwlagn_txq_ctx_stop(struct iwl_priv *priv) |
| 884 | { |
Stanislaw Gruszka | 387f338 | 2011-02-28 14:33:13 +0100 | [diff] [blame] | 885 | int ch, txq_id; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 886 | unsigned long flags; |
| 887 | |
| 888 | /* Turn off all Tx DMA fifos */ |
| 889 | spin_lock_irqsave(&priv->lock, flags); |
| 890 | |
Johannes Berg | 214d14d | 2011-05-04 07:50:44 -0700 | [diff] [blame] | 891 | iwlagn_txq_set_sched(priv, 0); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 892 | |
| 893 | /* Stop each Tx DMA channel, and wait for it to be idle */ |
| 894 | for (ch = 0; ch < priv->hw_params.dma_chnl_num; ch++) { |
| 895 | iwl_write_direct32(priv, FH_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0); |
Emmanuel Grumbach | 9726f34 | 2010-06-29 11:29:49 -0700 | [diff] [blame] | 896 | if (iwl_poll_direct_bit(priv, FH_TSSR_TX_STATUS_REG, |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 897 | FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch), |
Emmanuel Grumbach | 9726f34 | 2010-06-29 11:29:49 -0700 | [diff] [blame] | 898 | 1000)) |
| 899 | IWL_ERR(priv, "Failing on timeout while stopping" |
| 900 | " DMA channel %d [0x%08x]", ch, |
| 901 | iwl_read_direct32(priv, FH_TSSR_TX_STATUS_REG)); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 902 | } |
| 903 | spin_unlock_irqrestore(&priv->lock, flags); |
Stanislaw Gruszka | 387f338 | 2011-02-28 14:33:13 +0100 | [diff] [blame] | 904 | |
| 905 | if (!priv->txq) |
| 906 | return; |
| 907 | |
| 908 | /* Unmap DMA from host system and free skb's */ |
| 909 | for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) |
| 910 | if (txq_id == priv->cmd_queue) |
| 911 | iwl_cmd_queue_unmap(priv); |
| 912 | else |
| 913 | iwl_tx_queue_unmap(priv, txq_id); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | /* |
| 917 | * Find first available (lowest unused) Tx Queue, mark it "active". |
| 918 | * Called only when finding queue for aggregation. |
| 919 | * Should never return anything < 7, because they should already |
| 920 | * be in use as EDCA AC (0-3), Command (4), reserved (5, 6) |
| 921 | */ |
| 922 | static int iwlagn_txq_ctx_activate_free(struct iwl_priv *priv) |
| 923 | { |
| 924 | int txq_id; |
| 925 | |
| 926 | for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) |
| 927 | if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk)) |
| 928 | return txq_id; |
| 929 | return -1; |
| 930 | } |
| 931 | |
Johannes Berg | 832f47e | 2010-04-29 04:43:07 -0700 | [diff] [blame] | 932 | int iwlagn_tx_agg_start(struct iwl_priv *priv, struct ieee80211_vif *vif, |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 933 | struct ieee80211_sta *sta, u16 tid, u16 *ssn) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 934 | { |
| 935 | int sta_id; |
| 936 | int tx_fifo; |
| 937 | int txq_id; |
| 938 | int ret; |
| 939 | unsigned long flags; |
| 940 | struct iwl_tid_data *tid_data; |
| 941 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 942 | tx_fifo = get_fifo_from_tid(iwl_rxon_ctx_from_vif(vif), tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 943 | if (unlikely(tx_fifo < 0)) |
| 944 | return tx_fifo; |
| 945 | |
Wey-Yi Guy | 5bc9890 | 2011-05-27 08:40:32 -0700 | [diff] [blame] | 946 | IWL_DEBUG_HT(priv, "TX AGG request on ra = %pM tid = %d\n", |
| 947 | sta->addr, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 948 | |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 949 | sta_id = iwl_sta_id(sta); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 950 | if (sta_id == IWL_INVALID_STATION) { |
| 951 | IWL_ERR(priv, "Start AGG on invalid station\n"); |
| 952 | return -ENXIO; |
| 953 | } |
| 954 | if (unlikely(tid >= MAX_TID_COUNT)) |
| 955 | return -EINVAL; |
| 956 | |
| 957 | if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) { |
| 958 | IWL_ERR(priv, "Start AGG when state is not IWL_AGG_OFF !\n"); |
| 959 | return -ENXIO; |
| 960 | } |
| 961 | |
| 962 | txq_id = iwlagn_txq_ctx_activate_free(priv); |
| 963 | if (txq_id == -1) { |
| 964 | IWL_ERR(priv, "No free aggregation queue available\n"); |
| 965 | return -ENXIO; |
| 966 | } |
| 967 | |
| 968 | spin_lock_irqsave(&priv->sta_lock, flags); |
| 969 | tid_data = &priv->stations[sta_id].tid[tid]; |
| 970 | *ssn = SEQ_TO_SN(tid_data->seq_number); |
| 971 | tid_data->agg.txq_id = txq_id; |
Johannes Berg | c8823ec | 2011-03-15 11:33:03 -0700 | [diff] [blame] | 972 | tid_data->agg.tx_fifo = tx_fifo; |
Johannes Berg | ea9b307 | 2010-11-10 18:25:45 -0800 | [diff] [blame] | 973 | iwl_set_swq_id(&priv->txq[txq_id], get_ac_from_tid(tid), txq_id); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 974 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
| 975 | |
Johannes Berg | c8823ec | 2011-03-15 11:33:03 -0700 | [diff] [blame] | 976 | ret = iwlagn_txq_agg_enable(priv, txq_id, sta_id, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 977 | if (ret) |
| 978 | return ret; |
| 979 | |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 980 | spin_lock_irqsave(&priv->sta_lock, flags); |
| 981 | tid_data = &priv->stations[sta_id].tid[tid]; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 982 | if (tid_data->tfds_in_queue == 0) { |
| 983 | IWL_DEBUG_HT(priv, "HW queue is empty\n"); |
| 984 | tid_data->agg.state = IWL_AGG_ON; |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 985 | ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 986 | } else { |
| 987 | IWL_DEBUG_HT(priv, "HW queue is NOT empty: %d packets in HW queue\n", |
| 988 | tid_data->tfds_in_queue); |
| 989 | tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA; |
| 990 | } |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 991 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 992 | return ret; |
| 993 | } |
| 994 | |
Johannes Berg | 832f47e | 2010-04-29 04:43:07 -0700 | [diff] [blame] | 995 | int iwlagn_tx_agg_stop(struct iwl_priv *priv, struct ieee80211_vif *vif, |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 996 | struct ieee80211_sta *sta, u16 tid) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 997 | { |
Johannes Berg | 18c121d | 2010-08-23 07:57:17 -0700 | [diff] [blame] | 998 | int tx_fifo_id, txq_id, sta_id, ssn; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 999 | struct iwl_tid_data *tid_data; |
| 1000 | int write_ptr, read_ptr; |
| 1001 | unsigned long flags; |
| 1002 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 1003 | tx_fifo_id = get_fifo_from_tid(iwl_rxon_ctx_from_vif(vif), tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1004 | if (unlikely(tx_fifo_id < 0)) |
| 1005 | return tx_fifo_id; |
| 1006 | |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 1007 | sta_id = iwl_sta_id(sta); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1008 | |
| 1009 | if (sta_id == IWL_INVALID_STATION) { |
| 1010 | IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid); |
| 1011 | return -ENXIO; |
| 1012 | } |
| 1013 | |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 1014 | spin_lock_irqsave(&priv->sta_lock, flags); |
| 1015 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1016 | tid_data = &priv->stations[sta_id].tid[tid]; |
| 1017 | ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4; |
| 1018 | txq_id = tid_data->agg.txq_id; |
Johannes Berg | 18c121d | 2010-08-23 07:57:17 -0700 | [diff] [blame] | 1019 | |
| 1020 | switch (priv->stations[sta_id].tid[tid].agg.state) { |
| 1021 | case IWL_EMPTYING_HW_QUEUE_ADDBA: |
| 1022 | /* |
| 1023 | * This can happen if the peer stops aggregation |
| 1024 | * again before we've had a chance to drain the |
| 1025 | * queue we selected previously, i.e. before the |
| 1026 | * session was really started completely. |
| 1027 | */ |
| 1028 | IWL_DEBUG_HT(priv, "AGG stop before setup done\n"); |
| 1029 | goto turn_off; |
| 1030 | case IWL_AGG_ON: |
| 1031 | break; |
| 1032 | default: |
| 1033 | IWL_WARN(priv, "Stopping AGG while state not ON or starting\n"); |
| 1034 | } |
| 1035 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1036 | write_ptr = priv->txq[txq_id].q.write_ptr; |
| 1037 | read_ptr = priv->txq[txq_id].q.read_ptr; |
| 1038 | |
| 1039 | /* The queue is not empty */ |
| 1040 | if (write_ptr != read_ptr) { |
| 1041 | IWL_DEBUG_HT(priv, "Stopping a non empty AGG HW QUEUE\n"); |
| 1042 | priv->stations[sta_id].tid[tid].agg.state = |
| 1043 | IWL_EMPTYING_HW_QUEUE_DELBA; |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 1044 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1045 | return 0; |
| 1046 | } |
| 1047 | |
| 1048 | IWL_DEBUG_HT(priv, "HW queue is empty\n"); |
Johannes Berg | 18c121d | 2010-08-23 07:57:17 -0700 | [diff] [blame] | 1049 | turn_off: |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1050 | priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF; |
| 1051 | |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 1052 | /* do not restore/save irqs */ |
| 1053 | spin_unlock(&priv->sta_lock); |
| 1054 | spin_lock(&priv->lock); |
| 1055 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1056 | /* |
| 1057 | * the only reason this call can fail is queue number out of range, |
| 1058 | * which can happen if uCode is reloaded and all the station |
| 1059 | * information are lost. if it is outside the range, there is no need |
| 1060 | * to deactivate the uCode queue, just return "success" to allow |
| 1061 | * mac80211 to clean up it own data. |
| 1062 | */ |
Johannes Berg | 7ffef13 | 2011-03-15 04:59:10 -0700 | [diff] [blame] | 1063 | iwlagn_txq_agg_disable(priv, txq_id, ssn, tx_fifo_id); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1064 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1065 | |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 1066 | ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1067 | |
| 1068 | return 0; |
| 1069 | } |
| 1070 | |
| 1071 | int iwlagn_txq_check_empty(struct iwl_priv *priv, |
| 1072 | int sta_id, u8 tid, int txq_id) |
| 1073 | { |
| 1074 | struct iwl_queue *q = &priv->txq[txq_id].q; |
| 1075 | u8 *addr = priv->stations[sta_id].sta.sta.addr; |
| 1076 | struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid]; |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 1077 | struct iwl_rxon_context *ctx; |
| 1078 | |
| 1079 | ctx = &priv->contexts[priv->stations[sta_id].ctxid]; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1080 | |
Johannes Berg | a24d52f | 2010-08-06 16:17:53 +0200 | [diff] [blame] | 1081 | lockdep_assert_held(&priv->sta_lock); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 1082 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1083 | switch (priv->stations[sta_id].tid[tid].agg.state) { |
| 1084 | case IWL_EMPTYING_HW_QUEUE_DELBA: |
| 1085 | /* We are reclaiming the last packet of the */ |
| 1086 | /* aggregated HW queue */ |
| 1087 | if ((txq_id == tid_data->agg.txq_id) && |
| 1088 | (q->read_ptr == q->write_ptr)) { |
| 1089 | u16 ssn = SEQ_TO_SN(tid_data->seq_number); |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 1090 | int tx_fifo = get_fifo_from_tid(ctx, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1091 | IWL_DEBUG_HT(priv, "HW queue empty: continue DELBA flow\n"); |
Johannes Berg | 7ffef13 | 2011-03-15 04:59:10 -0700 | [diff] [blame] | 1092 | iwlagn_txq_agg_disable(priv, txq_id, ssn, tx_fifo); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1093 | tid_data->agg.state = IWL_AGG_OFF; |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 1094 | ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1095 | } |
| 1096 | break; |
| 1097 | case IWL_EMPTYING_HW_QUEUE_ADDBA: |
| 1098 | /* We are reclaiming the last packet of the queue */ |
| 1099 | if (tid_data->tfds_in_queue == 0) { |
| 1100 | IWL_DEBUG_HT(priv, "HW queue empty: continue ADDBA flow\n"); |
| 1101 | tid_data->agg.state = IWL_AGG_ON; |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 1102 | ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1103 | } |
| 1104 | break; |
| 1105 | } |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 1106 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1107 | return 0; |
| 1108 | } |
| 1109 | |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 1110 | static void iwlagn_non_agg_tx_status(struct iwl_priv *priv, |
| 1111 | struct iwl_rxon_context *ctx, |
| 1112 | const u8 *addr1) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1113 | { |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1114 | struct ieee80211_sta *sta; |
| 1115 | struct iwl_station_priv *sta_priv; |
| 1116 | |
Johannes Berg | 6db6340 | 2010-06-07 21:20:38 +0200 | [diff] [blame] | 1117 | rcu_read_lock(); |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 1118 | sta = ieee80211_find_sta(ctx->vif, addr1); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1119 | if (sta) { |
| 1120 | sta_priv = (void *)sta->drv_priv; |
| 1121 | /* avoid atomic ops if this isn't a client */ |
| 1122 | if (sta_priv->client && |
| 1123 | atomic_dec_return(&sta_priv->pending_frames) == 0) |
| 1124 | ieee80211_sta_block_awake(priv->hw, sta, false); |
| 1125 | } |
Johannes Berg | 6db6340 | 2010-06-07 21:20:38 +0200 | [diff] [blame] | 1126 | rcu_read_unlock(); |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 1127 | } |
| 1128 | |
| 1129 | static void iwlagn_tx_status(struct iwl_priv *priv, struct iwl_tx_info *tx_info, |
| 1130 | bool is_agg) |
| 1131 | { |
| 1132 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx_info->skb->data; |
| 1133 | |
| 1134 | if (!is_agg) |
| 1135 | iwlagn_non_agg_tx_status(priv, tx_info->ctx, hdr->addr1); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1136 | |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 1137 | ieee80211_tx_status_irqsafe(priv->hw, tx_info->skb); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1138 | } |
| 1139 | |
| 1140 | int iwlagn_tx_queue_reclaim(struct iwl_priv *priv, int txq_id, int index) |
| 1141 | { |
| 1142 | struct iwl_tx_queue *txq = &priv->txq[txq_id]; |
| 1143 | struct iwl_queue *q = &txq->q; |
| 1144 | struct iwl_tx_info *tx_info; |
| 1145 | int nfreed = 0; |
| 1146 | struct ieee80211_hdr *hdr; |
| 1147 | |
| 1148 | if ((index >= q->n_bd) || (iwl_queue_used(q, index) == 0)) { |
Daniel Halperin | 2e5d04d | 2011-05-27 08:40:28 -0700 | [diff] [blame] | 1149 | IWL_ERR(priv, "%s: Read index for DMA queue txq id (%d), " |
| 1150 | "index %d is out of range [0-%d] %d %d.\n", __func__, |
| 1151 | txq_id, index, q->n_bd, q->write_ptr, q->read_ptr); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1152 | return 0; |
| 1153 | } |
| 1154 | |
| 1155 | for (index = iwl_queue_inc_wrap(index, q->n_bd); |
| 1156 | q->read_ptr != index; |
| 1157 | q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd)) { |
| 1158 | |
| 1159 | tx_info = &txq->txb[txq->q.read_ptr]; |
Stanislaw Gruszka | b250269 | 2011-04-20 15:57:14 +0200 | [diff] [blame] | 1160 | |
| 1161 | if (WARN_ON_ONCE(tx_info->skb == NULL)) |
| 1162 | continue; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1163 | |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 1164 | hdr = (struct ieee80211_hdr *)tx_info->skb->data; |
Stanislaw Gruszka | b250269 | 2011-04-20 15:57:14 +0200 | [diff] [blame] | 1165 | if (ieee80211_is_data_qos(hdr->frame_control)) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1166 | nfreed++; |
Stanislaw Gruszka | b250269 | 2011-04-20 15:57:14 +0200 | [diff] [blame] | 1167 | |
| 1168 | iwlagn_tx_status(priv, tx_info, |
| 1169 | txq_id >= IWLAGN_FIRST_AMPDU_QUEUE); |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 1170 | tx_info->skb = NULL; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1171 | |
Johannes Berg | 94b0065 | 2011-04-28 07:27:09 -0700 | [diff] [blame] | 1172 | iwlagn_txq_inval_byte_cnt_tbl(priv, txq); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1173 | |
Johannes Berg | 214d14d | 2011-05-04 07:50:44 -0700 | [diff] [blame] | 1174 | iwlagn_txq_free_tfd(priv, txq); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1175 | } |
| 1176 | return nfreed; |
| 1177 | } |
| 1178 | |
| 1179 | /** |
| 1180 | * iwlagn_tx_status_reply_compressed_ba - Update tx status from block-ack |
| 1181 | * |
| 1182 | * Go through block-ack's bitmap of ACK'd frames, update driver's record of |
| 1183 | * ACK vs. not. This gets sent to mac80211, then to rate scaling algo. |
| 1184 | */ |
| 1185 | static int iwlagn_tx_status_reply_compressed_ba(struct iwl_priv *priv, |
| 1186 | struct iwl_ht_agg *agg, |
| 1187 | struct iwl_compressed_ba_resp *ba_resp) |
| 1188 | |
| 1189 | { |
Daniel Halperin | d0eb633 | 2011-03-16 17:17:36 -0700 | [diff] [blame] | 1190 | int sh; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1191 | u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl); |
| 1192 | u16 scd_flow = le16_to_cpu(ba_resp->scd_flow); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1193 | struct ieee80211_tx_info *info; |
Daniel Halperin | d0eb633 | 2011-03-16 17:17:36 -0700 | [diff] [blame] | 1194 | u64 bitmap, sent_bitmap; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1195 | |
| 1196 | if (unlikely(!agg->wait_for_ba)) { |
Don Fry | 822395b | 2010-10-23 09:02:50 -0700 | [diff] [blame] | 1197 | if (unlikely(ba_resp->bitmap)) |
| 1198 | IWL_ERR(priv, "Received BA when not expected\n"); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1199 | return -EINVAL; |
| 1200 | } |
| 1201 | |
| 1202 | /* Mark that the expected block-ack response arrived */ |
| 1203 | agg->wait_for_ba = 0; |
| 1204 | IWL_DEBUG_TX_REPLY(priv, "BA %d %d\n", agg->start_idx, ba_resp->seq_ctl); |
| 1205 | |
| 1206 | /* Calculate shift to align block-ack bits with our Tx window bits */ |
| 1207 | sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl >> 4); |
Daniel Halperin | d0eb633 | 2011-03-16 17:17:36 -0700 | [diff] [blame] | 1208 | if (sh < 0) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1209 | sh += 0x100; |
| 1210 | |
Daniel Halperin | d0eb633 | 2011-03-16 17:17:36 -0700 | [diff] [blame] | 1211 | /* |
| 1212 | * Check for success or failure according to the |
| 1213 | * transmitted bitmap and block-ack bitmap |
| 1214 | */ |
| 1215 | bitmap = le64_to_cpu(ba_resp->bitmap) >> sh; |
| 1216 | sent_bitmap = bitmap & agg->bitmap; |
| 1217 | |
| 1218 | /* Sanity check values reported by uCode */ |
| 1219 | if (ba_resp->txed_2_done > ba_resp->txed) { |
| 1220 | IWL_DEBUG_TX_REPLY(priv, |
| 1221 | "bogus sent(%d) and ack(%d) count\n", |
| 1222 | ba_resp->txed, ba_resp->txed_2_done); |
Wey-Yi Guy | 8829c9e | 2010-11-10 11:05:38 -0800 | [diff] [blame] | 1223 | /* |
Daniel Halperin | d0eb633 | 2011-03-16 17:17:36 -0700 | [diff] [blame] | 1224 | * set txed_2_done = txed, |
| 1225 | * so it won't impact rate scale |
Wey-Yi Guy | 8829c9e | 2010-11-10 11:05:38 -0800 | [diff] [blame] | 1226 | */ |
Daniel Halperin | d0eb633 | 2011-03-16 17:17:36 -0700 | [diff] [blame] | 1227 | ba_resp->txed = ba_resp->txed_2_done; |
| 1228 | } |
| 1229 | IWL_DEBUG_HT(priv, "agg frames sent:%d, acked:%d\n", |
| 1230 | ba_resp->txed, ba_resp->txed_2_done); |
Johannes Berg | 9decde9 | 2010-11-30 13:24:36 -0800 | [diff] [blame] | 1231 | |
Daniel Halperin | d0eb633 | 2011-03-16 17:17:36 -0700 | [diff] [blame] | 1232 | /* Find the first ACKed frame to store the TX status */ |
| 1233 | while (sent_bitmap && !(sent_bitmap & 1)) { |
| 1234 | agg->start_idx = (agg->start_idx + 1) & 0xff; |
| 1235 | sent_bitmap >>= 1; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1236 | } |
Johannes Berg | 9decde9 | 2010-11-30 13:24:36 -0800 | [diff] [blame] | 1237 | |
Johannes Berg | ff0d91c | 2010-05-17 02:37:34 -0700 | [diff] [blame] | 1238 | info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1239 | memset(&info->status, 0, sizeof(info->status)); |
| 1240 | info->flags |= IEEE80211_TX_STAT_ACK; |
| 1241 | info->flags |= IEEE80211_TX_STAT_AMPDU; |
Daniel Halperin | d0eb633 | 2011-03-16 17:17:36 -0700 | [diff] [blame] | 1242 | info->status.ampdu_ack_len = ba_resp->txed_2_done; |
| 1243 | info->status.ampdu_len = ba_resp->txed; |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 1244 | iwlagn_hwrate_to_tx_control(priv, agg->rate_n_flags, info); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1245 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1246 | return 0; |
| 1247 | } |
| 1248 | |
| 1249 | /** |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 1250 | * translate ucode response to mac80211 tx status control values |
| 1251 | */ |
| 1252 | void iwlagn_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags, |
| 1253 | struct ieee80211_tx_info *info) |
| 1254 | { |
| 1255 | struct ieee80211_tx_rate *r = &info->control.rates[0]; |
| 1256 | |
| 1257 | info->antenna_sel_tx = |
| 1258 | ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS); |
| 1259 | if (rate_n_flags & RATE_MCS_HT_MSK) |
| 1260 | r->flags |= IEEE80211_TX_RC_MCS; |
| 1261 | if (rate_n_flags & RATE_MCS_GF_MSK) |
| 1262 | r->flags |= IEEE80211_TX_RC_GREEN_FIELD; |
| 1263 | if (rate_n_flags & RATE_MCS_HT40_MSK) |
| 1264 | r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH; |
| 1265 | if (rate_n_flags & RATE_MCS_DUP_MSK) |
| 1266 | r->flags |= IEEE80211_TX_RC_DUP_DATA; |
| 1267 | if (rate_n_flags & RATE_MCS_SGI_MSK) |
| 1268 | r->flags |= IEEE80211_TX_RC_SHORT_GI; |
| 1269 | r->idx = iwlagn_hwrate_to_mac80211_idx(rate_n_flags, info->band); |
| 1270 | } |
| 1271 | |
| 1272 | /** |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1273 | * iwlagn_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA |
| 1274 | * |
| 1275 | * Handles block-acknowledge notification from device, which reports success |
| 1276 | * of frames sent via aggregation. |
| 1277 | */ |
| 1278 | void iwlagn_rx_reply_compressed_ba(struct iwl_priv *priv, |
| 1279 | struct iwl_rx_mem_buffer *rxb) |
| 1280 | { |
| 1281 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
| 1282 | struct iwl_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba; |
| 1283 | struct iwl_tx_queue *txq = NULL; |
| 1284 | struct iwl_ht_agg *agg; |
| 1285 | int index; |
| 1286 | int sta_id; |
| 1287 | int tid; |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 1288 | unsigned long flags; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1289 | |
| 1290 | /* "flow" corresponds to Tx queue */ |
| 1291 | u16 scd_flow = le16_to_cpu(ba_resp->scd_flow); |
| 1292 | |
| 1293 | /* "ssn" is start of block-ack Tx window, corresponds to index |
| 1294 | * (in Tx queue's circular buffer) of first TFD/frame in window */ |
| 1295 | u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn); |
| 1296 | |
| 1297 | if (scd_flow >= priv->hw_params.max_txq_num) { |
| 1298 | IWL_ERR(priv, |
| 1299 | "BUG_ON scd_flow is bigger than number of queues\n"); |
| 1300 | return; |
| 1301 | } |
| 1302 | |
| 1303 | txq = &priv->txq[scd_flow]; |
| 1304 | sta_id = ba_resp->sta_id; |
| 1305 | tid = ba_resp->tid; |
| 1306 | agg = &priv->stations[sta_id].tid[tid].agg; |
Shanyu Zhao | b561e82 | 2010-06-01 17:13:58 -0700 | [diff] [blame] | 1307 | if (unlikely(agg->txq_id != scd_flow)) { |
Wey-Yi Guy | 735df29 | 2010-07-31 08:34:11 -0700 | [diff] [blame] | 1308 | /* |
| 1309 | * FIXME: this is a uCode bug which need to be addressed, |
| 1310 | * log the information and return for now! |
| 1311 | * since it is possible happen very often and in order |
| 1312 | * not to fill the syslog, don't enable the logging by default |
| 1313 | */ |
| 1314 | IWL_DEBUG_TX_REPLY(priv, |
| 1315 | "BA scd_flow %d does not match txq_id %d\n", |
Shanyu Zhao | b561e82 | 2010-06-01 17:13:58 -0700 | [diff] [blame] | 1316 | scd_flow, agg->txq_id); |
| 1317 | return; |
| 1318 | } |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1319 | |
| 1320 | /* Find index just before block-ack window */ |
| 1321 | index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd); |
| 1322 | |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 1323 | spin_lock_irqsave(&priv->sta_lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1324 | |
| 1325 | IWL_DEBUG_TX_REPLY(priv, "REPLY_COMPRESSED_BA [%d] Received from %pM, " |
| 1326 | "sta_id = %d\n", |
| 1327 | agg->wait_for_ba, |
| 1328 | (u8 *) &ba_resp->sta_addr_lo32, |
| 1329 | ba_resp->sta_id); |
| 1330 | IWL_DEBUG_TX_REPLY(priv, "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = " |
| 1331 | "%d, scd_ssn = %d\n", |
| 1332 | ba_resp->tid, |
| 1333 | ba_resp->seq_ctl, |
| 1334 | (unsigned long long)le64_to_cpu(ba_resp->bitmap), |
| 1335 | ba_resp->scd_flow, |
| 1336 | ba_resp->scd_ssn); |
Frans Pop | 91dd6c2 | 2010-03-24 14:19:58 -0700 | [diff] [blame] | 1337 | IWL_DEBUG_TX_REPLY(priv, "DAT start_idx = %d, bitmap = 0x%llx\n", |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1338 | agg->start_idx, |
| 1339 | (unsigned long long)agg->bitmap); |
| 1340 | |
| 1341 | /* Update driver's record of ACK vs. not for each frame in window */ |
| 1342 | iwlagn_tx_status_reply_compressed_ba(priv, agg, ba_resp); |
| 1343 | |
| 1344 | /* Release all TFDs before the SSN, i.e. all TFDs in front of |
| 1345 | * block-ack window (we assume that they've been successfully |
| 1346 | * transmitted ... if not, it's too late anyway). */ |
| 1347 | if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) { |
| 1348 | /* calculate mac80211 ampdu sw queue to wake */ |
| 1349 | int freed = iwlagn_tx_queue_reclaim(priv, scd_flow, index); |
| 1350 | iwl_free_tfds_in_queue(priv, sta_id, tid, freed); |
| 1351 | |
| 1352 | if ((iwl_queue_space(&txq->q) > txq->q.low_mark) && |
| 1353 | priv->mac80211_registered && |
| 1354 | (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA)) |
Johannes Berg | 549a04e | 2010-11-10 18:25:44 -0800 | [diff] [blame] | 1355 | iwl_wake_queue(priv, txq); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1356 | |
| 1357 | iwlagn_txq_check_empty(priv, sta_id, tid, scd_flow); |
| 1358 | } |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 1359 | |
| 1360 | spin_unlock_irqrestore(&priv->sta_lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 1361 | } |
Johannes Berg | 69fdb71 | 2010-09-22 18:02:02 +0200 | [diff] [blame] | 1362 | |
| 1363 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 1364 | const char *iwl_get_tx_fail_reason(u32 status) |
| 1365 | { |
| 1366 | #define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x |
| 1367 | #define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x |
| 1368 | |
| 1369 | switch (status & TX_STATUS_MSK) { |
| 1370 | case TX_STATUS_SUCCESS: |
| 1371 | return "SUCCESS"; |
| 1372 | TX_STATUS_POSTPONE(DELAY); |
| 1373 | TX_STATUS_POSTPONE(FEW_BYTES); |
| 1374 | TX_STATUS_POSTPONE(BT_PRIO); |
| 1375 | TX_STATUS_POSTPONE(QUIET_PERIOD); |
| 1376 | TX_STATUS_POSTPONE(CALC_TTAK); |
| 1377 | TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY); |
| 1378 | TX_STATUS_FAIL(SHORT_LIMIT); |
| 1379 | TX_STATUS_FAIL(LONG_LIMIT); |
| 1380 | TX_STATUS_FAIL(FIFO_UNDERRUN); |
| 1381 | TX_STATUS_FAIL(DRAIN_FLOW); |
| 1382 | TX_STATUS_FAIL(RFKILL_FLUSH); |
| 1383 | TX_STATUS_FAIL(LIFE_EXPIRE); |
| 1384 | TX_STATUS_FAIL(DEST_PS); |
| 1385 | TX_STATUS_FAIL(HOST_ABORTED); |
| 1386 | TX_STATUS_FAIL(BT_RETRY); |
| 1387 | TX_STATUS_FAIL(STA_INVALID); |
| 1388 | TX_STATUS_FAIL(FRAG_DROPPED); |
| 1389 | TX_STATUS_FAIL(TID_DISABLE); |
| 1390 | TX_STATUS_FAIL(FIFO_FLUSHED); |
| 1391 | TX_STATUS_FAIL(INSUFFICIENT_CF_POLL); |
| 1392 | TX_STATUS_FAIL(PASSIVE_NO_RX); |
| 1393 | TX_STATUS_FAIL(NO_BEACON_ON_RADAR); |
| 1394 | } |
| 1395 | |
| 1396 | return "UNKNOWN"; |
| 1397 | |
| 1398 | #undef TX_STATUS_FAIL |
| 1399 | #undef TX_STATUS_POSTPONE |
| 1400 | } |
| 1401 | #endif /* CONFIG_IWLWIFI_DEBUG */ |