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> |
Emmanuel Grumbach | a0eaad7 | 2011-08-25 23:11:00 -0700 | [diff] [blame] | 34 | #include <linux/ieee80211.h> |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 35 | |
| 36 | #include "iwl-dev.h" |
| 37 | #include "iwl-core.h" |
| 38 | #include "iwl-sta.h" |
| 39 | #include "iwl-io.h" |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 40 | #include "iwl-helpers.h" |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 41 | #include "iwl-agn-hw.h" |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 42 | #include "iwl-agn.h" |
Emmanuel Grumbach | 47c1b49 | 2011-07-03 11:22:15 +0300 | [diff] [blame] | 43 | #include "iwl-trans.h" |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 44 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 45 | /* |
| 46 | * mac80211 queues, ACs, hardware queues, FIFOs. |
| 47 | * |
| 48 | * Cf. http://wireless.kernel.org/en/developers/Documentation/mac80211/queues |
| 49 | * |
| 50 | * Mac80211 uses the following numbers, which we get as from it |
| 51 | * by way of skb_get_queue_mapping(skb): |
| 52 | * |
| 53 | * VO 0 |
| 54 | * VI 1 |
| 55 | * BE 2 |
| 56 | * BK 3 |
| 57 | * |
| 58 | * |
| 59 | * Regular (not A-MPDU) frames are put into hardware queues corresponding |
| 60 | * to the FIFOs, see comments in iwl-prph.h. Aggregated frames get their |
| 61 | * own queue per aggregation session (RA/TID combination), such queues are |
| 62 | * set up to map into FIFOs too, for which we need an AC->FIFO mapping. In |
| 63 | * order to map frames to the right queue, we also need an AC->hw queue |
| 64 | * mapping. This is implemented here. |
| 65 | * |
| 66 | * Due to the way hw queues are set up (by the hw specific modules like |
| 67 | * iwl-4965.c, iwl-5000.c etc.), the AC->hw queue mapping is the identity |
| 68 | * mapping. |
| 69 | */ |
| 70 | |
| 71 | static const u8 tid_to_ac[] = { |
Johannes Berg | 0c4ac34 | 2010-11-17 11:33:27 -0800 | [diff] [blame] | 72 | IEEE80211_AC_BE, |
| 73 | IEEE80211_AC_BK, |
| 74 | IEEE80211_AC_BK, |
| 75 | IEEE80211_AC_BE, |
| 76 | IEEE80211_AC_VI, |
| 77 | IEEE80211_AC_VI, |
| 78 | IEEE80211_AC_VO, |
| 79 | IEEE80211_AC_VO |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 80 | }; |
| 81 | |
Shanyu Zhao | c2845d0 | 2010-04-14 15:35:14 -0700 | [diff] [blame] | 82 | static inline int get_ac_from_tid(u16 tid) |
| 83 | { |
| 84 | if (likely(tid < ARRAY_SIZE(tid_to_ac))) |
| 85 | return tid_to_ac[tid]; |
| 86 | |
| 87 | /* no support for TIDs 8-15 yet */ |
| 88 | return -EINVAL; |
| 89 | } |
| 90 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 91 | 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] | 92 | { |
| 93 | if (likely(tid < ARRAY_SIZE(tid_to_ac))) |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 94 | return ctx->ac_to_fifo[tid_to_ac[tid]]; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 95 | |
| 96 | /* no support for TIDs 8-15 yet */ |
| 97 | return -EINVAL; |
| 98 | } |
| 99 | |
Emmanuel Grumbach | 48d42c4 | 2011-07-10 10:47:01 +0300 | [diff] [blame] | 100 | static int iwlagn_txq_agg_enable(struct iwl_priv *priv, int txq_id, int sta_id, |
| 101 | int tid) |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 102 | { |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 103 | if ((IWLAGN_FIRST_AMPDU_QUEUE > txq_id) || |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 104 | (IWLAGN_FIRST_AMPDU_QUEUE + |
| 105 | priv->cfg->base_params->num_of_ampdu_queues <= txq_id)) { |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 106 | IWL_WARN(priv, |
| 107 | "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] | 108 | txq_id, IWLAGN_FIRST_AMPDU_QUEUE, |
| 109 | IWLAGN_FIRST_AMPDU_QUEUE + |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 110 | priv->cfg->base_params->num_of_ampdu_queues - 1); |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 111 | return -EINVAL; |
| 112 | } |
| 113 | |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 114 | /* Modify device's station table to Tx this TID */ |
Johannes Berg | c8823ec | 2011-03-15 11:33:03 -0700 | [diff] [blame] | 115 | return iwl_sta_tx_modify_enable_tid(priv, sta_id, tid); |
| 116 | } |
| 117 | |
Don Fry | 5c3d29f | 2011-07-08 08:46:29 -0700 | [diff] [blame] | 118 | static void iwlagn_tx_cmd_protection(struct iwl_priv *priv, |
| 119 | struct ieee80211_tx_info *info, |
| 120 | __le16 fc, __le32 *tx_flags) |
| 121 | { |
| 122 | if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS || |
| 123 | info->control.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT || |
| 124 | info->flags & IEEE80211_TX_CTL_AMPDU) |
| 125 | *tx_flags |= TX_CMD_FLG_PROT_REQUIRE_MSK; |
| 126 | } |
| 127 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 128 | /* |
| 129 | * handle build REPLY_TX command notification. |
| 130 | */ |
| 131 | static void iwlagn_tx_cmd_build_basic(struct iwl_priv *priv, |
Johannes Berg | c6baf7f | 2011-07-23 10:24:47 -0700 | [diff] [blame] | 132 | struct sk_buff *skb, |
| 133 | struct iwl_tx_cmd *tx_cmd, |
| 134 | struct ieee80211_tx_info *info, |
| 135 | struct ieee80211_hdr *hdr, u8 sta_id) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 136 | { |
| 137 | __le16 fc = hdr->frame_control; |
| 138 | __le32 tx_flags = tx_cmd->tx_flags; |
| 139 | |
| 140 | tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 141 | |
Johannes Berg | 2c2def1 | 2011-07-07 05:11:51 -0700 | [diff] [blame] | 142 | if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) |
| 143 | tx_flags |= TX_CMD_FLG_ACK_MSK; |
| 144 | else |
| 145 | tx_flags &= ~TX_CMD_FLG_ACK_MSK; |
| 146 | |
| 147 | if (ieee80211_is_probe_resp(fc)) |
| 148 | tx_flags |= TX_CMD_FLG_TSF_MSK; |
| 149 | else if (ieee80211_is_back_req(fc)) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 150 | 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] | 151 | else if (info->band == IEEE80211_BAND_2GHZ && |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 152 | priv->cfg->bt_params && |
| 153 | priv->cfg->bt_params->advanced_bt_coexist && |
Johannes Berg | d44ae69 | 2010-08-23 07:56:56 -0700 | [diff] [blame] | 154 | (ieee80211_is_auth(fc) || ieee80211_is_assoc_req(fc) || |
| 155 | ieee80211_is_reassoc_req(fc) || |
| 156 | skb->protocol == cpu_to_be16(ETH_P_PAE))) |
| 157 | tx_flags |= TX_CMD_FLG_IGNORE_BT; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 158 | |
| 159 | |
Johannes Berg | c6baf7f | 2011-07-23 10:24:47 -0700 | [diff] [blame] | 160 | tx_cmd->sta_id = sta_id; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 161 | if (ieee80211_has_morefrags(fc)) |
| 162 | tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK; |
| 163 | |
| 164 | if (ieee80211_is_data_qos(fc)) { |
| 165 | u8 *qc = ieee80211_get_qos_ctl(hdr); |
| 166 | tx_cmd->tid_tspec = qc[0] & 0xf; |
| 167 | tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK; |
| 168 | } else { |
| 169 | tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK; |
| 170 | } |
| 171 | |
Don Fry | 5c3d29f | 2011-07-08 08:46:29 -0700 | [diff] [blame] | 172 | iwlagn_tx_cmd_protection(priv, info, fc, &tx_flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 173 | |
| 174 | tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK); |
| 175 | if (ieee80211_is_mgmt(fc)) { |
| 176 | if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc)) |
| 177 | tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3); |
| 178 | else |
| 179 | tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2); |
| 180 | } else { |
| 181 | tx_cmd->timeout.pm_frame_timeout = 0; |
| 182 | } |
| 183 | |
| 184 | tx_cmd->driver_txop = 0; |
| 185 | tx_cmd->tx_flags = tx_flags; |
| 186 | tx_cmd->next_frame_len = 0; |
| 187 | } |
| 188 | |
| 189 | #define RTS_DFAULT_RETRY_LIMIT 60 |
| 190 | |
| 191 | static void iwlagn_tx_cmd_build_rate(struct iwl_priv *priv, |
Johannes Berg | c6baf7f | 2011-07-23 10:24:47 -0700 | [diff] [blame] | 192 | struct iwl_tx_cmd *tx_cmd, |
| 193 | struct ieee80211_tx_info *info, |
| 194 | __le16 fc) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 195 | { |
| 196 | u32 rate_flags; |
| 197 | int rate_idx; |
| 198 | u8 rts_retry_limit; |
| 199 | u8 data_retry_limit; |
| 200 | u8 rate_plcp; |
| 201 | |
| 202 | /* Set retry limit on DATA packets and Probe Responses*/ |
| 203 | if (ieee80211_is_probe_resp(fc)) |
| 204 | data_retry_limit = 3; |
| 205 | else |
Wey-Yi Guy | b744cb7 | 2010-03-23 11:37:59 -0700 | [diff] [blame] | 206 | data_retry_limit = IWLAGN_DEFAULT_TX_RETRY; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 207 | tx_cmd->data_retry_limit = data_retry_limit; |
| 208 | |
| 209 | /* Set retry limit on RTS packets */ |
| 210 | rts_retry_limit = RTS_DFAULT_RETRY_LIMIT; |
| 211 | if (data_retry_limit < rts_retry_limit) |
| 212 | rts_retry_limit = data_retry_limit; |
| 213 | tx_cmd->rts_retry_limit = rts_retry_limit; |
| 214 | |
| 215 | /* DATA packets will use the uCode station table for rate/antenna |
| 216 | * selection */ |
| 217 | if (ieee80211_is_data(fc)) { |
| 218 | tx_cmd->initial_rate_index = 0; |
| 219 | tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK; |
Wey-Yi Guy | c10e2c1 | 2011-07-13 11:13:46 -0700 | [diff] [blame] | 220 | #ifdef CONFIG_IWLWIFI_DEVICE_SVTOOL |
Wey-Yi Guy | 4e30811 | 2011-07-08 08:46:28 -0700 | [diff] [blame] | 221 | if (priv->tm_fixed_rate) { |
| 222 | /* |
| 223 | * rate overwrite by testmode |
| 224 | * we not only send lq command to change rate |
| 225 | * we also re-enforce per data pkt base. |
| 226 | */ |
| 227 | tx_cmd->tx_flags &= ~TX_CMD_FLG_STA_RATE_MSK; |
| 228 | memcpy(&tx_cmd->rate_n_flags, &priv->tm_fixed_rate, |
| 229 | sizeof(tx_cmd->rate_n_flags)); |
| 230 | } |
Wey-Yi Guy | c10e2c1 | 2011-07-13 11:13:46 -0700 | [diff] [blame] | 231 | #endif |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 232 | return; |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * If the current TX rate stored in mac80211 has the MCS bit set, it's |
| 237 | * not really a TX rate. Thus, we use the lowest supported rate for |
| 238 | * this band. Also use the lowest supported rate if the stored rate |
| 239 | * index is invalid. |
| 240 | */ |
| 241 | rate_idx = info->control.rates[0].idx; |
| 242 | if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS || |
| 243 | (rate_idx < 0) || (rate_idx > IWL_RATE_COUNT_LEGACY)) |
| 244 | rate_idx = rate_lowest_index(&priv->bands[info->band], |
| 245 | info->control.sta); |
| 246 | /* For 5 GHZ band, remap mac80211 rate indices into driver indices */ |
| 247 | if (info->band == IEEE80211_BAND_5GHZ) |
| 248 | rate_idx += IWL_FIRST_OFDM_RATE; |
| 249 | /* Get PLCP rate for tx_cmd->rate_n_flags */ |
| 250 | rate_plcp = iwl_rates[rate_idx].plcp; |
| 251 | /* Zero out flags for this packet */ |
| 252 | rate_flags = 0; |
| 253 | |
| 254 | /* Set CCK flag as needed */ |
| 255 | if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE)) |
| 256 | rate_flags |= RATE_MCS_CCK_MSK; |
| 257 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 258 | /* Set up antennas */ |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 259 | if (priv->cfg->bt_params && |
| 260 | priv->cfg->bt_params->advanced_bt_coexist && |
| 261 | priv->bt_full_concurrent) { |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 262 | /* operated as 1x1 in full concurrency mode */ |
| 263 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 264 | first_antenna(hw_params(priv).valid_tx_ant)); |
Wey-Yi Guy | bee008b | 2010-08-23 07:57:04 -0700 | [diff] [blame] | 265 | } else |
| 266 | priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 267 | hw_params(priv).valid_tx_ant); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 268 | rate_flags |= iwl_ant_idx_to_flags(priv->mgmt_tx_ant); |
| 269 | |
| 270 | /* Set the rate in the TX cmd */ |
| 271 | tx_cmd->rate_n_flags = iwl_hw_set_rate_n_flags(rate_plcp, rate_flags); |
| 272 | } |
| 273 | |
| 274 | static void iwlagn_tx_cmd_build_hwcrypto(struct iwl_priv *priv, |
| 275 | struct ieee80211_tx_info *info, |
| 276 | struct iwl_tx_cmd *tx_cmd, |
| 277 | struct sk_buff *skb_frag, |
| 278 | int sta_id) |
| 279 | { |
| 280 | struct ieee80211_key_conf *keyconf = info->control.hw_key; |
| 281 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 282 | switch (keyconf->cipher) { |
| 283 | case WLAN_CIPHER_SUITE_CCMP: |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 284 | tx_cmd->sec_ctl = TX_CMD_SEC_CCM; |
| 285 | memcpy(tx_cmd->key, keyconf->key, keyconf->keylen); |
| 286 | if (info->flags & IEEE80211_TX_CTL_AMPDU) |
| 287 | tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK; |
| 288 | IWL_DEBUG_TX(priv, "tx_cmd with AES hwcrypto\n"); |
| 289 | break; |
| 290 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 291 | case WLAN_CIPHER_SUITE_TKIP: |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 292 | tx_cmd->sec_ctl = TX_CMD_SEC_TKIP; |
Johannes Berg | 523b02e | 2011-07-07 22:28:01 +0200 | [diff] [blame] | 293 | ieee80211_get_tkip_p2k(keyconf, skb_frag, tx_cmd->key); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 294 | IWL_DEBUG_TX(priv, "tx_cmd with tkip hwcrypto\n"); |
| 295 | break; |
| 296 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 297 | case WLAN_CIPHER_SUITE_WEP104: |
| 298 | tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128; |
| 299 | /* fall through */ |
| 300 | case WLAN_CIPHER_SUITE_WEP40: |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 301 | tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP | |
| 302 | (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT); |
| 303 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 304 | memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen); |
| 305 | |
| 306 | IWL_DEBUG_TX(priv, "Configuring packet for WEP encryption " |
| 307 | "with key %d\n", keyconf->keyidx); |
| 308 | break; |
| 309 | |
| 310 | default: |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 311 | IWL_ERR(priv, "Unknown encode cipher %x\n", keyconf->cipher); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 312 | break; |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | /* |
| 317 | * start REPLY_TX command process |
| 318 | */ |
| 319 | int iwlagn_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) |
| 320 | { |
| 321 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
| 322 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 323 | struct iwl_station_priv *sta_priv = NULL; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 324 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Emmanuel Grumbach | 47c1b49 | 2011-07-03 11:22:15 +0300 | [diff] [blame] | 325 | struct iwl_tx_cmd *tx_cmd; |
Johannes Berg | 8d56396 | 2010-11-10 18:25:42 -0800 | [diff] [blame] | 326 | int txq_id; |
Emmanuel Grumbach | 47c1b49 | 2011-07-03 11:22:15 +0300 | [diff] [blame] | 327 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 328 | u16 seq_number = 0; |
| 329 | __le16 fc; |
| 330 | u8 hdr_len; |
Emmanuel Grumbach | 47c1b49 | 2011-07-03 11:22:15 +0300 | [diff] [blame] | 331 | u16 len; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 332 | u8 sta_id; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 333 | u8 tid = 0; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 334 | unsigned long flags; |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 335 | bool is_agg = false; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 336 | |
Johannes Berg | c6baf7f | 2011-07-23 10:24:47 -0700 | [diff] [blame] | 337 | if (info->control.vif) |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 338 | ctx = iwl_rxon_ctx_from_vif(info->control.vif); |
| 339 | |
Emmanuel Grumbach | 10b15e6 | 2011-08-25 23:10:43 -0700 | [diff] [blame] | 340 | spin_lock_irqsave(&priv->shrd->lock, flags); |
Emmanuel Grumbach | 845a9c0 | 2011-08-25 23:11:04 -0700 | [diff] [blame^] | 341 | if (iwl_is_rfkill(priv->shrd)) { |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 342 | IWL_DEBUG_DROP(priv, "Dropping - RF KILL\n"); |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 343 | goto drop_unlock_priv; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | fc = hdr->frame_control; |
| 347 | |
| 348 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 349 | if (ieee80211_is_auth(fc)) |
| 350 | IWL_DEBUG_TX(priv, "Sending AUTH frame\n"); |
| 351 | else if (ieee80211_is_assoc_req(fc)) |
| 352 | IWL_DEBUG_TX(priv, "Sending ASSOC frame\n"); |
| 353 | else if (ieee80211_is_reassoc_req(fc)) |
| 354 | IWL_DEBUG_TX(priv, "Sending REASSOC frame\n"); |
| 355 | #endif |
| 356 | |
| 357 | hdr_len = ieee80211_hdrlen(fc); |
| 358 | |
Stanislaw Gruszka | bfd3610 | 2011-04-29 17:51:06 +0200 | [diff] [blame] | 359 | /* For management frames use broadcast id to do not break aggregation */ |
| 360 | if (!ieee80211_is_data(fc)) |
| 361 | sta_id = ctx->bcast_sta_id; |
| 362 | else { |
| 363 | /* Find index into station table for destination station */ |
| 364 | sta_id = iwl_sta_id_or_broadcast(priv, ctx, info->control.sta); |
| 365 | if (sta_id == IWL_INVALID_STATION) { |
| 366 | IWL_DEBUG_DROP(priv, "Dropping - INVALID STATION: %pM\n", |
| 367 | hdr->addr1); |
John W. Linville | e00cf3b | 2011-05-16 14:55:42 -0400 | [diff] [blame] | 368 | goto drop_unlock_priv; |
Stanislaw Gruszka | bfd3610 | 2011-04-29 17:51:06 +0200 | [diff] [blame] | 369 | } |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | IWL_DEBUG_TX(priv, "station Id %d\n", sta_id); |
| 373 | |
Emmanuel Grumbach | 47c1b49 | 2011-07-03 11:22:15 +0300 | [diff] [blame] | 374 | if (info->control.sta) |
| 375 | sta_priv = (void *)info->control.sta->drv_priv; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 376 | |
Johannes Berg | 67158b6 | 2010-11-16 11:51:04 -0800 | [diff] [blame] | 377 | if (sta_priv && sta_priv->asleep && |
| 378 | (info->flags & IEEE80211_TX_CTL_PSPOLL_RESPONSE)) { |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 379 | /* |
| 380 | * This sends an asynchronous command to the device, |
| 381 | * but we can rely on it being processed before the |
| 382 | * next frame is processed -- and the next frame to |
| 383 | * this station is the one that will consume this |
| 384 | * counter. |
| 385 | * For now set the counter to just 1 since we do not |
| 386 | * support uAPSD yet. |
| 387 | */ |
| 388 | iwl_sta_modify_sleep_tx_count(priv, sta_id, 1); |
| 389 | } |
| 390 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 391 | /* |
| 392 | * Send this frame after DTIM -- there's a special queue |
| 393 | * reserved for this for contexts that support AP mode. |
| 394 | */ |
| 395 | if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) { |
| 396 | txq_id = ctx->mcast_queue; |
| 397 | /* |
| 398 | * The microcode will clear the more data |
| 399 | * bit in the last frame it transmits. |
| 400 | */ |
| 401 | hdr->frame_control |= |
| 402 | cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
Johannes Berg | c6baf7f | 2011-07-23 10:24:47 -0700 | [diff] [blame] | 403 | } else if (info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) |
| 404 | txq_id = IWL_AUX_QUEUE; |
| 405 | else |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 406 | txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)]; |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 407 | |
Emmanuel Grumbach | 10b15e6 | 2011-08-25 23:10:43 -0700 | [diff] [blame] | 408 | /* irqs already disabled/saved above when locking priv->shrd->lock */ |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 409 | spin_lock(&priv->shrd->sta_lock); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 410 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 411 | if (ieee80211_is_data_qos(fc)) { |
Emmanuel Grumbach | 47c1b49 | 2011-07-03 11:22:15 +0300 | [diff] [blame] | 412 | u8 *qc = NULL; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 413 | qc = ieee80211_get_qos_ctl(hdr); |
| 414 | tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK; |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 415 | |
| 416 | if (WARN_ON_ONCE(tid >= MAX_TID_COUNT)) |
| 417 | goto drop_unlock_sta; |
| 418 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 419 | seq_number = priv->stations[sta_id].tid[tid].seq_number; |
| 420 | seq_number &= IEEE80211_SCTL_SEQ; |
| 421 | hdr->seq_ctrl = hdr->seq_ctrl & |
| 422 | cpu_to_le16(IEEE80211_SCTL_FRAG); |
| 423 | hdr->seq_ctrl |= cpu_to_le16(seq_number); |
| 424 | seq_number += 0x10; |
| 425 | /* aggregation is on for this <sta,tid> */ |
| 426 | if (info->flags & IEEE80211_TX_CTL_AMPDU && |
| 427 | priv->stations[sta_id].tid[tid].agg.state == IWL_AGG_ON) { |
| 428 | txq_id = priv->stations[sta_id].tid[tid].agg.txq_id; |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 429 | is_agg = true; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 430 | } |
| 431 | } |
| 432 | |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 433 | tx_cmd = iwl_trans_get_tx_cmd(trans(priv), txq_id); |
Emmanuel Grumbach | 47c1b49 | 2011-07-03 11:22:15 +0300 | [diff] [blame] | 434 | if (unlikely(!tx_cmd)) |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 435 | goto drop_unlock_sta; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 436 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 437 | /* Copy MAC header from skb into command buffer */ |
| 438 | memcpy(tx_cmd->hdr, hdr, hdr_len); |
| 439 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 440 | /* Total # bytes to be transmitted */ |
| 441 | len = (u16)skb->len; |
| 442 | tx_cmd->len = cpu_to_le16(len); |
| 443 | |
| 444 | if (info->control.hw_key) |
| 445 | iwlagn_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id); |
| 446 | |
| 447 | /* TODO need this for burst mode later on */ |
Johannes Berg | d44ae69 | 2010-08-23 07:56:56 -0700 | [diff] [blame] | 448 | 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] | 449 | iwl_dbg_log_tx_data_frame(priv, len, hdr); |
| 450 | |
| 451 | iwlagn_tx_cmd_build_rate(priv, tx_cmd, info, fc); |
| 452 | |
| 453 | iwl_update_stats(priv, true, fc, len); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 454 | |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 455 | if (iwl_trans_tx(trans(priv), skb, tx_cmd, txq_id, fc, is_agg, ctx)) |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 456 | goto drop_unlock_sta; |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 457 | |
| 458 | if (ieee80211_is_data_qos(fc)) { |
| 459 | priv->stations[sta_id].tid[tid].tfds_in_queue++; |
| 460 | if (!ieee80211_has_morefrags(fc)) |
| 461 | priv->stations[sta_id].tid[tid].seq_number = seq_number; |
| 462 | } |
| 463 | |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 464 | spin_unlock(&priv->shrd->sta_lock); |
Emmanuel Grumbach | 10b15e6 | 2011-08-25 23:10:43 -0700 | [diff] [blame] | 465 | spin_unlock_irqrestore(&priv->shrd->lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 466 | |
| 467 | /* |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 468 | * Avoid atomic ops if it isn't an associated client. |
| 469 | * Also, if this is a packet for aggregation, don't |
| 470 | * increase the counter because the ucode will stop |
| 471 | * aggregation queues when their respective station |
| 472 | * goes to sleep. |
| 473 | */ |
| 474 | if (sta_priv && sta_priv->client && !is_agg) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 475 | atomic_inc(&sta_priv->pending_frames); |
| 476 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 477 | return 0; |
| 478 | |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 479 | drop_unlock_sta: |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 480 | spin_unlock(&priv->shrd->sta_lock); |
Johannes Berg | 2c46f72 | 2011-04-28 07:27:10 -0700 | [diff] [blame] | 481 | drop_unlock_priv: |
Emmanuel Grumbach | 10b15e6 | 2011-08-25 23:10:43 -0700 | [diff] [blame] | 482 | spin_unlock_irqrestore(&priv->shrd->lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 483 | return -1; |
| 484 | } |
| 485 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 486 | /* |
| 487 | * Find first available (lowest unused) Tx Queue, mark it "active". |
| 488 | * Called only when finding queue for aggregation. |
| 489 | * Should never return anything < 7, because they should already |
| 490 | * be in use as EDCA AC (0-3), Command (4), reserved (5, 6) |
| 491 | */ |
| 492 | static int iwlagn_txq_ctx_activate_free(struct iwl_priv *priv) |
| 493 | { |
| 494 | int txq_id; |
| 495 | |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 496 | for (txq_id = 0; txq_id < hw_params(priv).max_txq_num; txq_id++) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 497 | if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk)) |
| 498 | return txq_id; |
| 499 | return -1; |
| 500 | } |
| 501 | |
Johannes Berg | 832f47e | 2010-04-29 04:43:07 -0700 | [diff] [blame] | 502 | 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] | 503 | struct ieee80211_sta *sta, u16 tid, u16 *ssn) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 504 | { |
| 505 | int sta_id; |
| 506 | int tx_fifo; |
| 507 | int txq_id; |
| 508 | int ret; |
| 509 | unsigned long flags; |
| 510 | struct iwl_tid_data *tid_data; |
| 511 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 512 | 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] | 513 | if (unlikely(tx_fifo < 0)) |
| 514 | return tx_fifo; |
| 515 | |
Wey-Yi Guy | 5bc9890 | 2011-05-27 08:40:32 -0700 | [diff] [blame] | 516 | IWL_DEBUG_HT(priv, "TX AGG request on ra = %pM tid = %d\n", |
| 517 | sta->addr, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 518 | |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 519 | sta_id = iwl_sta_id(sta); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 520 | if (sta_id == IWL_INVALID_STATION) { |
| 521 | IWL_ERR(priv, "Start AGG on invalid station\n"); |
| 522 | return -ENXIO; |
| 523 | } |
| 524 | if (unlikely(tid >= MAX_TID_COUNT)) |
| 525 | return -EINVAL; |
| 526 | |
| 527 | if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) { |
| 528 | IWL_ERR(priv, "Start AGG when state is not IWL_AGG_OFF !\n"); |
| 529 | return -ENXIO; |
| 530 | } |
| 531 | |
| 532 | txq_id = iwlagn_txq_ctx_activate_free(priv); |
| 533 | if (txq_id == -1) { |
| 534 | IWL_ERR(priv, "No free aggregation queue available\n"); |
| 535 | return -ENXIO; |
| 536 | } |
| 537 | |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 538 | spin_lock_irqsave(&priv->shrd->sta_lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 539 | tid_data = &priv->stations[sta_id].tid[tid]; |
| 540 | *ssn = SEQ_TO_SN(tid_data->seq_number); |
| 541 | tid_data->agg.txq_id = txq_id; |
Johannes Berg | c8823ec | 2011-03-15 11:33:03 -0700 | [diff] [blame] | 542 | tid_data->agg.tx_fifo = tx_fifo; |
Johannes Berg | ea9b307 | 2010-11-10 18:25:45 -0800 | [diff] [blame] | 543 | iwl_set_swq_id(&priv->txq[txq_id], get_ac_from_tid(tid), txq_id); |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 544 | spin_unlock_irqrestore(&priv->shrd->sta_lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 545 | |
Johannes Berg | c8823ec | 2011-03-15 11:33:03 -0700 | [diff] [blame] | 546 | ret = iwlagn_txq_agg_enable(priv, txq_id, sta_id, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 547 | if (ret) |
| 548 | return ret; |
| 549 | |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 550 | spin_lock_irqsave(&priv->shrd->sta_lock, flags); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 551 | tid_data = &priv->stations[sta_id].tid[tid]; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 552 | if (tid_data->tfds_in_queue == 0) { |
| 553 | IWL_DEBUG_HT(priv, "HW queue is empty\n"); |
| 554 | tid_data->agg.state = IWL_AGG_ON; |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 555 | ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 556 | } else { |
| 557 | IWL_DEBUG_HT(priv, "HW queue is NOT empty: %d packets in HW queue\n", |
| 558 | tid_data->tfds_in_queue); |
| 559 | tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA; |
| 560 | } |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 561 | spin_unlock_irqrestore(&priv->shrd->sta_lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 562 | return ret; |
| 563 | } |
| 564 | |
Johannes Berg | 832f47e | 2010-04-29 04:43:07 -0700 | [diff] [blame] | 565 | 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] | 566 | struct ieee80211_sta *sta, u16 tid) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 567 | { |
Johannes Berg | 18c121d | 2010-08-23 07:57:17 -0700 | [diff] [blame] | 568 | int tx_fifo_id, txq_id, sta_id, ssn; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 569 | struct iwl_tid_data *tid_data; |
| 570 | int write_ptr, read_ptr; |
| 571 | unsigned long flags; |
| 572 | |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 573 | 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] | 574 | if (unlikely(tx_fifo_id < 0)) |
| 575 | return tx_fifo_id; |
| 576 | |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 577 | sta_id = iwl_sta_id(sta); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 578 | |
| 579 | if (sta_id == IWL_INVALID_STATION) { |
| 580 | IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid); |
| 581 | return -ENXIO; |
| 582 | } |
| 583 | |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 584 | spin_lock_irqsave(&priv->shrd->sta_lock, flags); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 585 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 586 | tid_data = &priv->stations[sta_id].tid[tid]; |
| 587 | ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4; |
| 588 | txq_id = tid_data->agg.txq_id; |
Johannes Berg | 18c121d | 2010-08-23 07:57:17 -0700 | [diff] [blame] | 589 | |
| 590 | switch (priv->stations[sta_id].tid[tid].agg.state) { |
| 591 | case IWL_EMPTYING_HW_QUEUE_ADDBA: |
| 592 | /* |
| 593 | * This can happen if the peer stops aggregation |
| 594 | * again before we've had a chance to drain the |
| 595 | * queue we selected previously, i.e. before the |
| 596 | * session was really started completely. |
| 597 | */ |
| 598 | IWL_DEBUG_HT(priv, "AGG stop before setup done\n"); |
| 599 | goto turn_off; |
| 600 | case IWL_AGG_ON: |
| 601 | break; |
| 602 | default: |
| 603 | IWL_WARN(priv, "Stopping AGG while state not ON or starting\n"); |
| 604 | } |
| 605 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 606 | write_ptr = priv->txq[txq_id].q.write_ptr; |
| 607 | read_ptr = priv->txq[txq_id].q.read_ptr; |
| 608 | |
| 609 | /* The queue is not empty */ |
| 610 | if (write_ptr != read_ptr) { |
| 611 | IWL_DEBUG_HT(priv, "Stopping a non empty AGG HW QUEUE\n"); |
| 612 | priv->stations[sta_id].tid[tid].agg.state = |
| 613 | IWL_EMPTYING_HW_QUEUE_DELBA; |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 614 | spin_unlock_irqrestore(&priv->shrd->sta_lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 615 | return 0; |
| 616 | } |
| 617 | |
| 618 | IWL_DEBUG_HT(priv, "HW queue is empty\n"); |
Johannes Berg | 18c121d | 2010-08-23 07:57:17 -0700 | [diff] [blame] | 619 | turn_off: |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 620 | priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF; |
| 621 | |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 622 | /* do not restore/save irqs */ |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 623 | spin_unlock(&priv->shrd->sta_lock); |
Emmanuel Grumbach | 10b15e6 | 2011-08-25 23:10:43 -0700 | [diff] [blame] | 624 | spin_lock(&priv->shrd->lock); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 625 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 626 | /* |
| 627 | * the only reason this call can fail is queue number out of range, |
| 628 | * which can happen if uCode is reloaded and all the station |
| 629 | * information are lost. if it is outside the range, there is no need |
| 630 | * to deactivate the uCode queue, just return "success" to allow |
| 631 | * mac80211 to clean up it own data. |
| 632 | */ |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 633 | iwl_trans_txq_agg_disable(trans(priv), txq_id, ssn, tx_fifo_id); |
Emmanuel Grumbach | 10b15e6 | 2011-08-25 23:10:43 -0700 | [diff] [blame] | 634 | spin_unlock_irqrestore(&priv->shrd->lock, flags); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 635 | |
Johannes Berg | 619753f | 2010-04-30 11:30:46 -0700 | [diff] [blame] | 636 | ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 637 | |
| 638 | return 0; |
| 639 | } |
| 640 | |
Emmanuel Grumbach | 04e1cab | 2011-08-25 23:11:01 -0700 | [diff] [blame] | 641 | static int iwlagn_txq_check_empty(struct iwl_priv *priv, |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 642 | int sta_id, u8 tid, int txq_id) |
| 643 | { |
| 644 | struct iwl_queue *q = &priv->txq[txq_id].q; |
| 645 | u8 *addr = priv->stations[sta_id].sta.sta.addr; |
| 646 | struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid]; |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 647 | struct iwl_rxon_context *ctx; |
| 648 | |
| 649 | ctx = &priv->contexts[priv->stations[sta_id].ctxid]; |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 650 | |
Emmanuel Grumbach | f39c95e | 2011-08-25 23:10:47 -0700 | [diff] [blame] | 651 | lockdep_assert_held(&priv->shrd->sta_lock); |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 652 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 653 | switch (priv->stations[sta_id].tid[tid].agg.state) { |
| 654 | case IWL_EMPTYING_HW_QUEUE_DELBA: |
| 655 | /* We are reclaiming the last packet of the */ |
| 656 | /* aggregated HW queue */ |
| 657 | if ((txq_id == tid_data->agg.txq_id) && |
| 658 | (q->read_ptr == q->write_ptr)) { |
| 659 | u16 ssn = SEQ_TO_SN(tid_data->seq_number); |
Johannes Berg | e72f368 | 2010-08-23 10:46:51 +0200 | [diff] [blame] | 660 | int tx_fifo = get_fifo_from_tid(ctx, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 661 | IWL_DEBUG_HT(priv, "HW queue empty: continue DELBA flow\n"); |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 662 | iwl_trans_txq_agg_disable(trans(priv), txq_id, |
Emmanuel Grumbach | 41c5054 | 2011-07-11 08:51:04 +0300 | [diff] [blame] | 663 | ssn, tx_fifo); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 664 | tid_data->agg.state = IWL_AGG_OFF; |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 665 | ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 666 | } |
| 667 | break; |
| 668 | case IWL_EMPTYING_HW_QUEUE_ADDBA: |
| 669 | /* We are reclaiming the last packet of the queue */ |
| 670 | if (tid_data->tfds_in_queue == 0) { |
| 671 | IWL_DEBUG_HT(priv, "HW queue empty: continue ADDBA flow\n"); |
| 672 | tid_data->agg.state = IWL_AGG_ON; |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 673 | ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 674 | } |
| 675 | break; |
| 676 | } |
Reinette Chatre | 9c5ac09 | 2010-05-05 02:26:06 -0700 | [diff] [blame] | 677 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 678 | return 0; |
| 679 | } |
| 680 | |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 681 | static void iwlagn_non_agg_tx_status(struct iwl_priv *priv, |
| 682 | struct iwl_rxon_context *ctx, |
| 683 | const u8 *addr1) |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 684 | { |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 685 | struct ieee80211_sta *sta; |
| 686 | struct iwl_station_priv *sta_priv; |
| 687 | |
Johannes Berg | 6db6340 | 2010-06-07 21:20:38 +0200 | [diff] [blame] | 688 | rcu_read_lock(); |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 689 | sta = ieee80211_find_sta(ctx->vif, addr1); |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 690 | if (sta) { |
| 691 | sta_priv = (void *)sta->drv_priv; |
| 692 | /* avoid atomic ops if this isn't a client */ |
| 693 | if (sta_priv->client && |
| 694 | atomic_dec_return(&sta_priv->pending_frames) == 0) |
| 695 | ieee80211_sta_block_awake(priv->hw, sta, false); |
| 696 | } |
Johannes Berg | 6db6340 | 2010-06-07 21:20:38 +0200 | [diff] [blame] | 697 | rcu_read_unlock(); |
Johannes Berg | 2e34034 | 2010-11-16 11:51:38 -0800 | [diff] [blame] | 698 | } |
| 699 | |
Wey-Yi Guy | 74bcdb3 | 2010-03-17 13:34:34 -0700 | [diff] [blame] | 700 | /** |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 701 | * translate ucode response to mac80211 tx status control values |
| 702 | */ |
Emmanuel Grumbach | 04e1cab | 2011-08-25 23:11:01 -0700 | [diff] [blame] | 703 | static void iwlagn_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags, |
Wey-Yi Guy | 8d80108 | 2010-03-17 13:34:36 -0700 | [diff] [blame] | 704 | struct ieee80211_tx_info *info) |
| 705 | { |
| 706 | struct ieee80211_tx_rate *r = &info->control.rates[0]; |
| 707 | |
| 708 | info->antenna_sel_tx = |
| 709 | ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS); |
| 710 | if (rate_n_flags & RATE_MCS_HT_MSK) |
| 711 | r->flags |= IEEE80211_TX_RC_MCS; |
| 712 | if (rate_n_flags & RATE_MCS_GF_MSK) |
| 713 | r->flags |= IEEE80211_TX_RC_GREEN_FIELD; |
| 714 | if (rate_n_flags & RATE_MCS_HT40_MSK) |
| 715 | r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH; |
| 716 | if (rate_n_flags & RATE_MCS_DUP_MSK) |
| 717 | r->flags |= IEEE80211_TX_RC_DUP_DATA; |
| 718 | if (rate_n_flags & RATE_MCS_SGI_MSK) |
| 719 | r->flags |= IEEE80211_TX_RC_SHORT_GI; |
| 720 | r->idx = iwlagn_hwrate_to_mac80211_idx(rate_n_flags, info->band); |
| 721 | } |
| 722 | |
Johannes Berg | 69fdb71 | 2010-09-22 18:02:02 +0200 | [diff] [blame] | 723 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 724 | const char *iwl_get_tx_fail_reason(u32 status) |
| 725 | { |
| 726 | #define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x |
| 727 | #define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x |
| 728 | |
| 729 | switch (status & TX_STATUS_MSK) { |
| 730 | case TX_STATUS_SUCCESS: |
| 731 | return "SUCCESS"; |
| 732 | TX_STATUS_POSTPONE(DELAY); |
| 733 | TX_STATUS_POSTPONE(FEW_BYTES); |
| 734 | TX_STATUS_POSTPONE(BT_PRIO); |
| 735 | TX_STATUS_POSTPONE(QUIET_PERIOD); |
| 736 | TX_STATUS_POSTPONE(CALC_TTAK); |
| 737 | TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY); |
| 738 | TX_STATUS_FAIL(SHORT_LIMIT); |
| 739 | TX_STATUS_FAIL(LONG_LIMIT); |
| 740 | TX_STATUS_FAIL(FIFO_UNDERRUN); |
| 741 | TX_STATUS_FAIL(DRAIN_FLOW); |
| 742 | TX_STATUS_FAIL(RFKILL_FLUSH); |
| 743 | TX_STATUS_FAIL(LIFE_EXPIRE); |
| 744 | TX_STATUS_FAIL(DEST_PS); |
| 745 | TX_STATUS_FAIL(HOST_ABORTED); |
| 746 | TX_STATUS_FAIL(BT_RETRY); |
| 747 | TX_STATUS_FAIL(STA_INVALID); |
| 748 | TX_STATUS_FAIL(FRAG_DROPPED); |
| 749 | TX_STATUS_FAIL(TID_DISABLE); |
| 750 | TX_STATUS_FAIL(FIFO_FLUSHED); |
| 751 | TX_STATUS_FAIL(INSUFFICIENT_CF_POLL); |
| 752 | TX_STATUS_FAIL(PASSIVE_NO_RX); |
| 753 | TX_STATUS_FAIL(NO_BEACON_ON_RADAR); |
| 754 | } |
| 755 | |
| 756 | return "UNKNOWN"; |
| 757 | |
| 758 | #undef TX_STATUS_FAIL |
| 759 | #undef TX_STATUS_POSTPONE |
| 760 | } |
| 761 | #endif /* CONFIG_IWLWIFI_DEBUG */ |
Emmanuel Grumbach | a0eaad7 | 2011-08-25 23:11:00 -0700 | [diff] [blame] | 762 | |
Emmanuel Grumbach | 04e1cab | 2011-08-25 23:11:01 -0700 | [diff] [blame] | 763 | static void iwlagn_count_agg_tx_err_status(struct iwl_priv *priv, u16 status) |
| 764 | { |
| 765 | status &= AGG_TX_STATUS_MSK; |
| 766 | |
| 767 | switch (status) { |
| 768 | case AGG_TX_STATE_UNDERRUN_MSK: |
| 769 | priv->reply_agg_tx_stats.underrun++; |
| 770 | break; |
| 771 | case AGG_TX_STATE_BT_PRIO_MSK: |
| 772 | priv->reply_agg_tx_stats.bt_prio++; |
| 773 | break; |
| 774 | case AGG_TX_STATE_FEW_BYTES_MSK: |
| 775 | priv->reply_agg_tx_stats.few_bytes++; |
| 776 | break; |
| 777 | case AGG_TX_STATE_ABORT_MSK: |
| 778 | priv->reply_agg_tx_stats.abort++; |
| 779 | break; |
| 780 | case AGG_TX_STATE_LAST_SENT_TTL_MSK: |
| 781 | priv->reply_agg_tx_stats.last_sent_ttl++; |
| 782 | break; |
| 783 | case AGG_TX_STATE_LAST_SENT_TRY_CNT_MSK: |
| 784 | priv->reply_agg_tx_stats.last_sent_try++; |
| 785 | break; |
| 786 | case AGG_TX_STATE_LAST_SENT_BT_KILL_MSK: |
| 787 | priv->reply_agg_tx_stats.last_sent_bt_kill++; |
| 788 | break; |
| 789 | case AGG_TX_STATE_SCD_QUERY_MSK: |
| 790 | priv->reply_agg_tx_stats.scd_query++; |
| 791 | break; |
| 792 | case AGG_TX_STATE_TEST_BAD_CRC32_MSK: |
| 793 | priv->reply_agg_tx_stats.bad_crc32++; |
| 794 | break; |
| 795 | case AGG_TX_STATE_RESPONSE_MSK: |
| 796 | priv->reply_agg_tx_stats.response++; |
| 797 | break; |
| 798 | case AGG_TX_STATE_DUMP_TX_MSK: |
| 799 | priv->reply_agg_tx_stats.dump_tx++; |
| 800 | break; |
| 801 | case AGG_TX_STATE_DELAY_TX_MSK: |
| 802 | priv->reply_agg_tx_stats.delay_tx++; |
| 803 | break; |
| 804 | default: |
| 805 | priv->reply_agg_tx_stats.unknown++; |
| 806 | break; |
| 807 | } |
| 808 | } |
| 809 | |
Emmanuel Grumbach | a0eaad7 | 2011-08-25 23:11:00 -0700 | [diff] [blame] | 810 | static void iwl_rx_reply_tx_agg(struct iwl_priv *priv, |
| 811 | struct iwlagn_tx_resp *tx_resp) |
| 812 | { |
| 813 | struct agg_tx_status *frame_status = &tx_resp->status; |
| 814 | int tid = (tx_resp->ra_tid & IWLAGN_TX_RES_TID_MSK) >> |
| 815 | IWLAGN_TX_RES_TID_POS; |
| 816 | int sta_id = (tx_resp->ra_tid & IWLAGN_TX_RES_RA_MSK) >> |
| 817 | IWLAGN_TX_RES_RA_POS; |
| 818 | struct iwl_ht_agg *agg = &priv->stations[sta_id].tid[tid].agg; |
| 819 | u32 status = le16_to_cpu(tx_resp->status.status); |
| 820 | int i; |
| 821 | |
| 822 | if (agg->wait_for_ba) |
| 823 | IWL_DEBUG_TX_REPLY(priv, |
| 824 | "got tx response w/o block-ack\n"); |
| 825 | |
| 826 | agg->rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags); |
| 827 | agg->wait_for_ba = (tx_resp->frame_count > 1); |
| 828 | |
| 829 | /* |
| 830 | * If the BT kill count is non-zero, we'll get this |
| 831 | * notification again. |
| 832 | */ |
| 833 | if (tx_resp->bt_kill_count && tx_resp->frame_count == 1 && |
| 834 | priv->cfg->bt_params && |
| 835 | priv->cfg->bt_params->advanced_bt_coexist) { |
| 836 | IWL_DEBUG_COEX(priv, "receive reply tx w/ bt_kill\n"); |
| 837 | } |
| 838 | |
| 839 | /* Construct bit-map of pending frames within Tx window */ |
| 840 | for (i = 0; i < tx_resp->frame_count; i++) { |
| 841 | u16 fstatus = le16_to_cpu(frame_status[i].status); |
| 842 | |
| 843 | if (status & AGG_TX_STATUS_MSK) |
| 844 | iwlagn_count_agg_tx_err_status(priv, fstatus); |
| 845 | |
| 846 | if (status & (AGG_TX_STATE_FEW_BYTES_MSK | |
| 847 | AGG_TX_STATE_ABORT_MSK)) |
| 848 | continue; |
| 849 | |
| 850 | IWL_DEBUG_TX_REPLY(priv, "status %s (0x%08x), " |
| 851 | "try-count (0x%08x)\n", |
| 852 | iwl_get_agg_tx_fail_reason(fstatus), |
| 853 | fstatus & AGG_TX_STATUS_MSK, |
| 854 | fstatus & AGG_TX_TRY_MSK); |
| 855 | } |
| 856 | } |
| 857 | |
Emmanuel Grumbach | 04e1cab | 2011-08-25 23:11:01 -0700 | [diff] [blame] | 858 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 859 | #define AGG_TX_STATE_FAIL(x) case AGG_TX_STATE_ ## x: return #x |
| 860 | |
| 861 | const char *iwl_get_agg_tx_fail_reason(u16 status) |
| 862 | { |
| 863 | status &= AGG_TX_STATUS_MSK; |
| 864 | switch (status) { |
| 865 | case AGG_TX_STATE_TRANSMITTED: |
| 866 | return "SUCCESS"; |
| 867 | AGG_TX_STATE_FAIL(UNDERRUN_MSK); |
| 868 | AGG_TX_STATE_FAIL(BT_PRIO_MSK); |
| 869 | AGG_TX_STATE_FAIL(FEW_BYTES_MSK); |
| 870 | AGG_TX_STATE_FAIL(ABORT_MSK); |
| 871 | AGG_TX_STATE_FAIL(LAST_SENT_TTL_MSK); |
| 872 | AGG_TX_STATE_FAIL(LAST_SENT_TRY_CNT_MSK); |
| 873 | AGG_TX_STATE_FAIL(LAST_SENT_BT_KILL_MSK); |
| 874 | AGG_TX_STATE_FAIL(SCD_QUERY_MSK); |
| 875 | AGG_TX_STATE_FAIL(TEST_BAD_CRC32_MSK); |
| 876 | AGG_TX_STATE_FAIL(RESPONSE_MSK); |
| 877 | AGG_TX_STATE_FAIL(DUMP_TX_MSK); |
| 878 | AGG_TX_STATE_FAIL(DELAY_TX_MSK); |
| 879 | } |
| 880 | |
| 881 | return "UNKNOWN"; |
| 882 | } |
| 883 | #endif /* CONFIG_IWLWIFI_DEBUG */ |
| 884 | |
Emmanuel Grumbach | a0eaad7 | 2011-08-25 23:11:00 -0700 | [diff] [blame] | 885 | static inline u32 iwlagn_get_scd_ssn(struct iwlagn_tx_resp *tx_resp) |
| 886 | { |
| 887 | return le32_to_cpup((__le32 *)&tx_resp->status + |
| 888 | tx_resp->frame_count) & MAX_SN; |
| 889 | } |
| 890 | |
Emmanuel Grumbach | 04e1cab | 2011-08-25 23:11:01 -0700 | [diff] [blame] | 891 | static void iwl_free_tfds_in_queue(struct iwl_priv *priv, |
| 892 | int sta_id, int tid, int freed) |
| 893 | { |
| 894 | lockdep_assert_held(&priv->shrd->sta_lock); |
| 895 | |
| 896 | if (priv->stations[sta_id].tid[tid].tfds_in_queue >= freed) |
| 897 | priv->stations[sta_id].tid[tid].tfds_in_queue -= freed; |
| 898 | else { |
| 899 | IWL_DEBUG_TX(priv, "free more than tfds_in_queue (%u:%d)\n", |
| 900 | priv->stations[sta_id].tid[tid].tfds_in_queue, |
| 901 | freed); |
| 902 | priv->stations[sta_id].tid[tid].tfds_in_queue = 0; |
| 903 | } |
| 904 | } |
| 905 | |
| 906 | static void iwlagn_count_tx_err_status(struct iwl_priv *priv, u16 status) |
| 907 | { |
| 908 | status &= TX_STATUS_MSK; |
| 909 | |
| 910 | switch (status) { |
| 911 | case TX_STATUS_POSTPONE_DELAY: |
| 912 | priv->reply_tx_stats.pp_delay++; |
| 913 | break; |
| 914 | case TX_STATUS_POSTPONE_FEW_BYTES: |
| 915 | priv->reply_tx_stats.pp_few_bytes++; |
| 916 | break; |
| 917 | case TX_STATUS_POSTPONE_BT_PRIO: |
| 918 | priv->reply_tx_stats.pp_bt_prio++; |
| 919 | break; |
| 920 | case TX_STATUS_POSTPONE_QUIET_PERIOD: |
| 921 | priv->reply_tx_stats.pp_quiet_period++; |
| 922 | break; |
| 923 | case TX_STATUS_POSTPONE_CALC_TTAK: |
| 924 | priv->reply_tx_stats.pp_calc_ttak++; |
| 925 | break; |
| 926 | case TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY: |
| 927 | priv->reply_tx_stats.int_crossed_retry++; |
| 928 | break; |
| 929 | case TX_STATUS_FAIL_SHORT_LIMIT: |
| 930 | priv->reply_tx_stats.short_limit++; |
| 931 | break; |
| 932 | case TX_STATUS_FAIL_LONG_LIMIT: |
| 933 | priv->reply_tx_stats.long_limit++; |
| 934 | break; |
| 935 | case TX_STATUS_FAIL_FIFO_UNDERRUN: |
| 936 | priv->reply_tx_stats.fifo_underrun++; |
| 937 | break; |
| 938 | case TX_STATUS_FAIL_DRAIN_FLOW: |
| 939 | priv->reply_tx_stats.drain_flow++; |
| 940 | break; |
| 941 | case TX_STATUS_FAIL_RFKILL_FLUSH: |
| 942 | priv->reply_tx_stats.rfkill_flush++; |
| 943 | break; |
| 944 | case TX_STATUS_FAIL_LIFE_EXPIRE: |
| 945 | priv->reply_tx_stats.life_expire++; |
| 946 | break; |
| 947 | case TX_STATUS_FAIL_DEST_PS: |
| 948 | priv->reply_tx_stats.dest_ps++; |
| 949 | break; |
| 950 | case TX_STATUS_FAIL_HOST_ABORTED: |
| 951 | priv->reply_tx_stats.host_abort++; |
| 952 | break; |
| 953 | case TX_STATUS_FAIL_BT_RETRY: |
| 954 | priv->reply_tx_stats.bt_retry++; |
| 955 | break; |
| 956 | case TX_STATUS_FAIL_STA_INVALID: |
| 957 | priv->reply_tx_stats.sta_invalid++; |
| 958 | break; |
| 959 | case TX_STATUS_FAIL_FRAG_DROPPED: |
| 960 | priv->reply_tx_stats.frag_drop++; |
| 961 | break; |
| 962 | case TX_STATUS_FAIL_TID_DISABLE: |
| 963 | priv->reply_tx_stats.tid_disable++; |
| 964 | break; |
| 965 | case TX_STATUS_FAIL_FIFO_FLUSHED: |
| 966 | priv->reply_tx_stats.fifo_flush++; |
| 967 | break; |
| 968 | case TX_STATUS_FAIL_INSUFFICIENT_CF_POLL: |
| 969 | priv->reply_tx_stats.insuff_cf_poll++; |
| 970 | break; |
| 971 | case TX_STATUS_FAIL_PASSIVE_NO_RX: |
| 972 | priv->reply_tx_stats.fail_hw_drop++; |
| 973 | break; |
| 974 | case TX_STATUS_FAIL_NO_BEACON_ON_RADAR: |
| 975 | priv->reply_tx_stats.sta_color_mismatch++; |
| 976 | break; |
| 977 | default: |
| 978 | priv->reply_tx_stats.unknown++; |
| 979 | break; |
| 980 | } |
| 981 | } |
| 982 | |
| 983 | static void iwlagn_set_tx_status(struct iwl_priv *priv, |
| 984 | struct ieee80211_tx_info *info, |
| 985 | struct iwlagn_tx_resp *tx_resp, |
| 986 | bool is_agg) |
| 987 | { |
| 988 | u16 status = le16_to_cpu(tx_resp->status.status); |
| 989 | |
| 990 | info->status.rates[0].count = tx_resp->failure_frame + 1; |
| 991 | if (is_agg) |
| 992 | info->flags &= ~IEEE80211_TX_CTL_AMPDU; |
| 993 | info->flags |= iwl_tx_status_to_mac80211(status); |
| 994 | iwlagn_hwrate_to_tx_control(priv, le32_to_cpu(tx_resp->rate_n_flags), |
| 995 | info); |
| 996 | if (!iwl_is_tx_success(status)) |
| 997 | iwlagn_count_tx_err_status(priv, status); |
| 998 | } |
| 999 | |
| 1000 | static void iwl_check_abort_status(struct iwl_priv *priv, |
| 1001 | u8 frame_count, u32 status) |
| 1002 | { |
| 1003 | if (frame_count == 1 && status == TX_STATUS_FAIL_RFKILL_FLUSH) { |
| 1004 | IWL_ERR(priv, "Tx flush command to flush out all frames\n"); |
| 1005 | if (!test_bit(STATUS_EXIT_PENDING, &priv->shrd->status)) |
| 1006 | queue_work(priv->shrd->workqueue, &priv->tx_flush); |
| 1007 | } |
| 1008 | } |
| 1009 | |
Emmanuel Grumbach | a0eaad7 | 2011-08-25 23:11:00 -0700 | [diff] [blame] | 1010 | void iwlagn_rx_reply_tx(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb) |
| 1011 | { |
| 1012 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
| 1013 | u16 sequence = le16_to_cpu(pkt->hdr.sequence); |
| 1014 | int txq_id = SEQ_TO_QUEUE(sequence); |
| 1015 | int cmd_index = SEQ_TO_INDEX(sequence); |
| 1016 | struct iwl_tx_queue *txq = &priv->txq[txq_id]; |
| 1017 | struct iwlagn_tx_resp *tx_resp = (void *)&pkt->u.raw[0]; |
| 1018 | struct ieee80211_hdr *hdr; |
| 1019 | u32 status = le16_to_cpu(tx_resp->status.status); |
| 1020 | u32 ssn = iwlagn_get_scd_ssn(tx_resp); |
| 1021 | int tid; |
| 1022 | int sta_id; |
| 1023 | int freed; |
| 1024 | struct ieee80211_tx_info *info; |
| 1025 | unsigned long flags; |
| 1026 | struct sk_buff_head skbs; |
| 1027 | struct sk_buff *skb; |
| 1028 | struct iwl_rxon_context *ctx; |
| 1029 | |
| 1030 | if ((cmd_index >= txq->q.n_bd) || |
| 1031 | (iwl_queue_used(&txq->q, cmd_index) == 0)) { |
| 1032 | IWL_ERR(priv, "%s: Read index for DMA queue txq_id (%d) " |
| 1033 | "cmd_index %d is out of range [0-%d] %d %d\n", |
| 1034 | __func__, txq_id, cmd_index, txq->q.n_bd, |
| 1035 | txq->q.write_ptr, txq->q.read_ptr); |
| 1036 | return; |
| 1037 | } |
| 1038 | |
| 1039 | txq->time_stamp = jiffies; |
| 1040 | |
| 1041 | tid = (tx_resp->ra_tid & IWLAGN_TX_RES_TID_MSK) >> |
| 1042 | IWLAGN_TX_RES_TID_POS; |
| 1043 | sta_id = (tx_resp->ra_tid & IWLAGN_TX_RES_RA_MSK) >> |
| 1044 | IWLAGN_TX_RES_RA_POS; |
| 1045 | |
| 1046 | spin_lock_irqsave(&priv->shrd->sta_lock, flags); |
| 1047 | |
| 1048 | if (txq->sched_retry) |
| 1049 | iwl_rx_reply_tx_agg(priv, tx_resp); |
| 1050 | |
| 1051 | if (tx_resp->frame_count == 1) { |
| 1052 | bool is_agg = (txq_id >= IWLAGN_FIRST_AMPDU_QUEUE); |
| 1053 | |
| 1054 | __skb_queue_head_init(&skbs); |
| 1055 | /*we can free until ssn % q.n_bd not inclusive */ |
| 1056 | iwl_trans_reclaim(trans(priv), txq_id, ssn, status, &skbs); |
| 1057 | freed = 0; |
| 1058 | while (!skb_queue_empty(&skbs)) { |
| 1059 | skb = __skb_dequeue(&skbs); |
| 1060 | hdr = (struct ieee80211_hdr *)skb->data; |
| 1061 | |
| 1062 | if (!ieee80211_is_data_qos(hdr->frame_control)) |
| 1063 | priv->last_seq_ctl = tx_resp->seq_ctl; |
| 1064 | |
| 1065 | info = IEEE80211_SKB_CB(skb); |
| 1066 | ctx = info->driver_data[0]; |
| 1067 | |
| 1068 | memset(&info->status, 0, sizeof(info->status)); |
| 1069 | |
| 1070 | if (status == TX_STATUS_FAIL_PASSIVE_NO_RX && |
| 1071 | iwl_is_associated_ctx(ctx) && ctx->vif && |
| 1072 | ctx->vif->type == NL80211_IFTYPE_STATION) { |
| 1073 | ctx->last_tx_rejected = true; |
| 1074 | iwl_stop_queue(priv, &priv->txq[txq_id]); |
| 1075 | |
| 1076 | IWL_DEBUG_TX_REPLY(priv, |
| 1077 | "TXQ %d status %s (0x%08x) " |
| 1078 | "rate_n_flags 0x%x retries %d\n", |
| 1079 | txq_id, |
| 1080 | iwl_get_tx_fail_reason(status), |
| 1081 | status, |
| 1082 | le32_to_cpu(tx_resp->rate_n_flags), |
| 1083 | tx_resp->failure_frame); |
| 1084 | |
| 1085 | IWL_DEBUG_TX_REPLY(priv, |
| 1086 | "FrameCnt = %d, idx=%d\n", |
| 1087 | tx_resp->frame_count, cmd_index); |
| 1088 | } |
| 1089 | |
| 1090 | /* check if BAR is needed */ |
| 1091 | if (is_agg && !iwl_is_tx_success(status)) |
| 1092 | info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK; |
| 1093 | iwlagn_set_tx_status(priv, IEEE80211_SKB_CB(skb), |
| 1094 | tx_resp, is_agg); |
| 1095 | if (!is_agg) |
| 1096 | iwlagn_non_agg_tx_status(priv, ctx, hdr->addr1); |
| 1097 | |
| 1098 | ieee80211_tx_status_irqsafe(priv->hw, skb); |
| 1099 | |
| 1100 | freed++; |
| 1101 | } |
| 1102 | |
| 1103 | WARN_ON(!is_agg && freed != 1); |
| 1104 | |
| 1105 | iwl_free_tfds_in_queue(priv, sta_id, tid, freed); |
| 1106 | iwlagn_txq_check_empty(priv, sta_id, tid, txq_id); |
| 1107 | } |
| 1108 | |
| 1109 | iwl_check_abort_status(priv, tx_resp->frame_count, status); |
| 1110 | spin_unlock_irqrestore(&priv->shrd->sta_lock, flags); |
| 1111 | } |
| 1112 | |
| 1113 | /** |
| 1114 | * iwlagn_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA |
| 1115 | * |
| 1116 | * Handles block-acknowledge notification from device, which reports success |
| 1117 | * of frames sent via aggregation. |
| 1118 | */ |
| 1119 | void iwlagn_rx_reply_compressed_ba(struct iwl_priv *priv, |
| 1120 | struct iwl_rx_mem_buffer *rxb) |
| 1121 | { |
| 1122 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
| 1123 | struct iwl_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba; |
| 1124 | struct iwl_tx_queue *txq = NULL; |
| 1125 | struct iwl_ht_agg *agg; |
| 1126 | struct sk_buff_head reclaimed_skbs; |
| 1127 | struct ieee80211_tx_info *info; |
| 1128 | struct ieee80211_hdr *hdr; |
| 1129 | struct sk_buff *skb; |
| 1130 | unsigned long flags; |
| 1131 | int index; |
| 1132 | int sta_id; |
| 1133 | int tid; |
| 1134 | int freed; |
| 1135 | |
| 1136 | /* "flow" corresponds to Tx queue */ |
| 1137 | u16 scd_flow = le16_to_cpu(ba_resp->scd_flow); |
| 1138 | |
| 1139 | /* "ssn" is start of block-ack Tx window, corresponds to index |
| 1140 | * (in Tx queue's circular buffer) of first TFD/frame in window */ |
| 1141 | u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn); |
| 1142 | |
| 1143 | if (scd_flow >= hw_params(priv).max_txq_num) { |
| 1144 | IWL_ERR(priv, |
| 1145 | "BUG_ON scd_flow is bigger than number of queues\n"); |
| 1146 | return; |
| 1147 | } |
| 1148 | |
| 1149 | txq = &priv->txq[scd_flow]; |
| 1150 | sta_id = ba_resp->sta_id; |
| 1151 | tid = ba_resp->tid; |
| 1152 | agg = &priv->stations[sta_id].tid[tid].agg; |
| 1153 | |
| 1154 | /* Find index of block-ack window */ |
| 1155 | index = ba_resp_scd_ssn & (txq->q.n_bd - 1); |
| 1156 | |
| 1157 | spin_lock_irqsave(&priv->shrd->sta_lock, flags); |
| 1158 | |
| 1159 | if (unlikely(agg->txq_id != scd_flow)) { |
| 1160 | /* |
| 1161 | * FIXME: this is a uCode bug which need to be addressed, |
| 1162 | * log the information and return for now! |
| 1163 | * since it is possible happen very often and in order |
| 1164 | * not to fill the syslog, don't enable the logging by default |
| 1165 | */ |
| 1166 | IWL_DEBUG_TX_REPLY(priv, |
| 1167 | "BA scd_flow %d does not match txq_id %d\n", |
| 1168 | scd_flow, agg->txq_id); |
| 1169 | spin_unlock_irqrestore(&priv->shrd->sta_lock, flags); |
| 1170 | return; |
| 1171 | } |
| 1172 | |
| 1173 | if (unlikely(!agg->wait_for_ba)) { |
| 1174 | if (unlikely(ba_resp->bitmap)) |
| 1175 | IWL_ERR(priv, "Received BA when not expected\n"); |
| 1176 | spin_unlock_irqrestore(&priv->shrd->sta_lock, flags); |
| 1177 | return; |
| 1178 | } |
| 1179 | |
| 1180 | IWL_DEBUG_TX_REPLY(priv, "REPLY_COMPRESSED_BA [%d] Received from %pM, " |
| 1181 | "sta_id = %d\n", |
| 1182 | agg->wait_for_ba, |
| 1183 | (u8 *) &ba_resp->sta_addr_lo32, |
| 1184 | ba_resp->sta_id); |
| 1185 | IWL_DEBUG_TX_REPLY(priv, "TID = %d, SeqCtl = %d, bitmap = 0x%llx, " |
| 1186 | "scd_flow = %d, scd_ssn = %d\n", |
| 1187 | ba_resp->tid, |
| 1188 | ba_resp->seq_ctl, |
| 1189 | (unsigned long long)le64_to_cpu(ba_resp->bitmap), |
| 1190 | ba_resp->scd_flow, |
| 1191 | ba_resp->scd_ssn); |
| 1192 | |
| 1193 | /* Mark that the expected block-ack response arrived */ |
| 1194 | agg->wait_for_ba = 0; |
| 1195 | |
| 1196 | /* Sanity check values reported by uCode */ |
| 1197 | if (ba_resp->txed_2_done > ba_resp->txed) { |
| 1198 | IWL_DEBUG_TX_REPLY(priv, |
| 1199 | "bogus sent(%d) and ack(%d) count\n", |
| 1200 | ba_resp->txed, ba_resp->txed_2_done); |
| 1201 | /* |
| 1202 | * set txed_2_done = txed, |
| 1203 | * so it won't impact rate scale |
| 1204 | */ |
| 1205 | ba_resp->txed = ba_resp->txed_2_done; |
| 1206 | } |
| 1207 | IWL_DEBUG_HT(priv, "agg frames sent:%d, acked:%d\n", |
| 1208 | ba_resp->txed, ba_resp->txed_2_done); |
| 1209 | |
| 1210 | __skb_queue_head_init(&reclaimed_skbs); |
| 1211 | |
| 1212 | /* Release all TFDs before the SSN, i.e. all TFDs in front of |
| 1213 | * block-ack window (we assume that they've been successfully |
| 1214 | * transmitted ... if not, it's too late anyway). */ |
| 1215 | iwl_trans_reclaim(trans(priv), scd_flow, ba_resp_scd_ssn, 0, |
| 1216 | &reclaimed_skbs); |
| 1217 | freed = 0; |
| 1218 | while (!skb_queue_empty(&reclaimed_skbs)) { |
| 1219 | |
| 1220 | skb = __skb_dequeue(&reclaimed_skbs); |
| 1221 | hdr = (struct ieee80211_hdr *)skb->data; |
| 1222 | |
| 1223 | if (ieee80211_is_data_qos(hdr->frame_control)) |
| 1224 | freed++; |
| 1225 | else |
| 1226 | WARN_ON_ONCE(1); |
| 1227 | |
| 1228 | if (freed == 0) { |
| 1229 | /* this is the first skb we deliver in this batch */ |
| 1230 | /* put the rate scaling data there */ |
| 1231 | info = IEEE80211_SKB_CB(skb); |
| 1232 | memset(&info->status, 0, sizeof(info->status)); |
| 1233 | info->flags |= IEEE80211_TX_STAT_ACK; |
| 1234 | info->flags |= IEEE80211_TX_STAT_AMPDU; |
| 1235 | info->status.ampdu_ack_len = ba_resp->txed_2_done; |
| 1236 | info->status.ampdu_len = ba_resp->txed; |
| 1237 | iwlagn_hwrate_to_tx_control(priv, agg->rate_n_flags, |
| 1238 | info); |
| 1239 | } |
| 1240 | |
| 1241 | ieee80211_tx_status_irqsafe(priv->hw, skb); |
| 1242 | } |
| 1243 | |
| 1244 | iwl_free_tfds_in_queue(priv, sta_id, tid, freed); |
| 1245 | iwlagn_txq_check_empty(priv, sta_id, tid, scd_flow); |
| 1246 | |
| 1247 | spin_unlock_irqrestore(&priv->shrd->sta_lock, flags); |
| 1248 | } |