Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * This file is provided under a dual BSD/GPLv2 license. When using or |
| 4 | * redistributing this file, you may do so under either license. |
| 5 | * |
| 6 | * GPL LICENSE SUMMARY |
| 7 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 8 | * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of version 2 of the GNU General Public License as |
| 12 | * published by the Free Software Foundation. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, |
| 22 | * USA |
| 23 | * |
| 24 | * The full GNU General Public License is included in this distribution |
Emmanuel Grumbach | 410dc5a | 2013-02-18 09:22:28 +0200 | [diff] [blame] | 25 | * in the file called COPYING. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 26 | * |
| 27 | * Contact Information: |
| 28 | * Intel Linux Wireless <ilw@linux.intel.com> |
| 29 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 30 | * |
| 31 | * BSD LICENSE |
| 32 | * |
Emmanuel Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 33 | * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 34 | * All rights reserved. |
| 35 | * |
| 36 | * Redistribution and use in source and binary forms, with or without |
| 37 | * modification, are permitted provided that the following conditions |
| 38 | * are met: |
| 39 | * |
| 40 | * * Redistributions of source code must retain the above copyright |
| 41 | * notice, this list of conditions and the following disclaimer. |
| 42 | * * Redistributions in binary form must reproduce the above copyright |
| 43 | * notice, this list of conditions and the following disclaimer in |
| 44 | * the documentation and/or other materials provided with the |
| 45 | * distribution. |
| 46 | * * Neither the name Intel Corporation nor the names of its |
| 47 | * contributors may be used to endorse or promote products derived |
| 48 | * from this software without specific prior written permission. |
| 49 | * |
| 50 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 51 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 52 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 53 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 54 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 55 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 56 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 57 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 58 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 59 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 60 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 61 | *****************************************************************************/ |
| 62 | #include "iwl-trans.h" |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 63 | #include "mvm.h" |
| 64 | #include "fw-api.h" |
| 65 | |
| 66 | /* |
| 67 | * iwl_mvm_rx_rx_phy_cmd - REPLY_RX_PHY_CMD handler |
| 68 | * |
| 69 | * Copies the phy information in mvm->last_phy_info, it will be used when the |
| 70 | * actual data will come from the fw in the next packet. |
| 71 | */ |
| 72 | int iwl_mvm_rx_rx_phy_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb, |
| 73 | struct iwl_device_cmd *cmd) |
| 74 | { |
| 75 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
| 76 | |
| 77 | memcpy(&mvm->last_phy_info, pkt->data, sizeof(mvm->last_phy_info)); |
| 78 | mvm->ampdu_ref++; |
Eyal Shapira | 5fc0f76 | 2014-01-28 01:35:32 +0200 | [diff] [blame] | 79 | |
| 80 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 81 | if (mvm->last_phy_info.phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) { |
| 82 | spin_lock(&mvm->drv_stats_lock); |
| 83 | mvm->drv_rx_stats.ampdu_count++; |
| 84 | spin_unlock(&mvm->drv_stats_lock); |
| 85 | } |
| 86 | #endif |
| 87 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | /* |
| 92 | * iwl_mvm_pass_packet_to_mac80211 - builds the packet for mac80211 |
| 93 | * |
| 94 | * Adds the rxb to a new skb and give it to mac80211 |
| 95 | */ |
| 96 | static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm, |
| 97 | struct ieee80211_hdr *hdr, u16 len, |
| 98 | u32 ampdu_status, |
| 99 | struct iwl_rx_cmd_buffer *rxb, |
| 100 | struct ieee80211_rx_status *stats) |
| 101 | { |
| 102 | struct sk_buff *skb; |
| 103 | unsigned int hdrlen, fraglen; |
| 104 | |
| 105 | /* Dont use dev_alloc_skb(), we'll have enough headroom once |
| 106 | * ieee80211_hdr pulled. |
| 107 | */ |
| 108 | skb = alloc_skb(128, GFP_ATOMIC); |
| 109 | if (!skb) { |
| 110 | IWL_ERR(mvm, "alloc_skb failed\n"); |
| 111 | return; |
| 112 | } |
| 113 | /* If frame is small enough to fit in skb->head, pull it completely. |
| 114 | * If not, only pull ieee80211_hdr so that splice() or TCP coalesce |
| 115 | * are more efficient. |
| 116 | */ |
| 117 | hdrlen = (len <= skb_tailroom(skb)) ? len : sizeof(*hdr); |
| 118 | |
| 119 | memcpy(skb_put(skb, hdrlen), hdr, hdrlen); |
| 120 | fraglen = len - hdrlen; |
| 121 | |
| 122 | if (fraglen) { |
| 123 | int offset = (void *)hdr + hdrlen - |
| 124 | rxb_addr(rxb) + rxb_offset(rxb); |
| 125 | |
| 126 | skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset, |
| 127 | fraglen, rxb->truesize); |
| 128 | } |
| 129 | |
| 130 | memcpy(IEEE80211_SKB_RXCB(skb), stats, sizeof(*stats)); |
| 131 | |
Johannes Berg | f14d6b3 | 2014-03-21 13:30:03 +0100 | [diff] [blame] | 132 | ieee80211_rx(mvm->hw, skb); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 133 | } |
| 134 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 135 | /* |
Avri Altman | a2d7b87 | 2013-07-09 01:42:17 +0300 | [diff] [blame] | 136 | * iwl_mvm_get_signal_strength - use new rx PHY INFO API |
Avri Altman | 17dbe56 | 2013-08-01 07:19:27 +0300 | [diff] [blame] | 137 | * values are reported by the fw as positive values - need to negate |
| 138 | * to obtain their dBM. Account for missing antennas by replacing 0 |
| 139 | * values by -256dBm: practically 0 power and a non-feasible 8 bit value. |
Avri Altman | a2d7b87 | 2013-07-09 01:42:17 +0300 | [diff] [blame] | 140 | */ |
Johannes Berg | 226eb8c | 2013-07-03 11:55:17 +0200 | [diff] [blame] | 141 | static void iwl_mvm_get_signal_strength(struct iwl_mvm *mvm, |
| 142 | struct iwl_rx_phy_info *phy_info, |
| 143 | struct ieee80211_rx_status *rx_status) |
Avri Altman | a2d7b87 | 2013-07-09 01:42:17 +0300 | [diff] [blame] | 144 | { |
| 145 | int energy_a, energy_b, energy_c, max_energy; |
| 146 | u32 val; |
| 147 | |
| 148 | val = |
| 149 | le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_ENERGY_ANT_ABC_IDX]); |
Avri Altman | 17dbe56 | 2013-08-01 07:19:27 +0300 | [diff] [blame] | 150 | energy_a = (val & IWL_RX_INFO_ENERGY_ANT_A_MSK) >> |
| 151 | IWL_RX_INFO_ENERGY_ANT_A_POS; |
Eyal Shapira | 2cddddc | 2014-08-13 00:26:17 +0300 | [diff] [blame] | 152 | energy_a = energy_a ? -energy_a : S8_MIN; |
Avri Altman | 17dbe56 | 2013-08-01 07:19:27 +0300 | [diff] [blame] | 153 | energy_b = (val & IWL_RX_INFO_ENERGY_ANT_B_MSK) >> |
| 154 | IWL_RX_INFO_ENERGY_ANT_B_POS; |
Eyal Shapira | 2cddddc | 2014-08-13 00:26:17 +0300 | [diff] [blame] | 155 | energy_b = energy_b ? -energy_b : S8_MIN; |
Avri Altman | 17dbe56 | 2013-08-01 07:19:27 +0300 | [diff] [blame] | 156 | energy_c = (val & IWL_RX_INFO_ENERGY_ANT_C_MSK) >> |
| 157 | IWL_RX_INFO_ENERGY_ANT_C_POS; |
Eyal Shapira | 2cddddc | 2014-08-13 00:26:17 +0300 | [diff] [blame] | 158 | energy_c = energy_c ? -energy_c : S8_MIN; |
Avri Altman | a2d7b87 | 2013-07-09 01:42:17 +0300 | [diff] [blame] | 159 | max_energy = max(energy_a, energy_b); |
| 160 | max_energy = max(max_energy, energy_c); |
| 161 | |
| 162 | IWL_DEBUG_STATS(mvm, "energy In A %d B %d C %d , and max %d\n", |
| 163 | energy_a, energy_b, energy_c, max_energy); |
| 164 | |
Johannes Berg | 226eb8c | 2013-07-03 11:55:17 +0200 | [diff] [blame] | 165 | rx_status->signal = max_energy; |
| 166 | rx_status->chains = (le16_to_cpu(phy_info->phy_flags) & |
| 167 | RX_RES_PHY_FLAGS_ANTENNA) |
| 168 | >> RX_RES_PHY_FLAGS_ANTENNA_POS; |
| 169 | rx_status->chain_signal[0] = energy_a; |
| 170 | rx_status->chain_signal[1] = energy_b; |
| 171 | rx_status->chain_signal[2] = energy_c; |
Avri Altman | a2d7b87 | 2013-07-09 01:42:17 +0300 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | /* |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 175 | * iwl_mvm_set_mac80211_rx_flag - translate fw status to mac80211 format |
| 176 | * @mvm: the mvm object |
| 177 | * @hdr: 80211 header |
| 178 | * @stats: status in mac80211's format |
| 179 | * @rx_pkt_status: status coming from fw |
| 180 | * |
| 181 | * returns non 0 value if the packet should be dropped |
| 182 | */ |
| 183 | static u32 iwl_mvm_set_mac80211_rx_flag(struct iwl_mvm *mvm, |
| 184 | struct ieee80211_hdr *hdr, |
| 185 | struct ieee80211_rx_status *stats, |
| 186 | u32 rx_pkt_status) |
| 187 | { |
| 188 | if (!ieee80211_has_protected(hdr->frame_control) || |
| 189 | (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) == |
| 190 | RX_MPDU_RES_STATUS_SEC_NO_ENC) |
| 191 | return 0; |
| 192 | |
| 193 | /* packet was encrypted with unknown alg */ |
| 194 | if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) == |
| 195 | RX_MPDU_RES_STATUS_SEC_ENC_ERR) |
| 196 | return 0; |
| 197 | |
| 198 | switch (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) { |
| 199 | case RX_MPDU_RES_STATUS_SEC_CCM_ENC: |
| 200 | /* alg is CCM: check MIC only */ |
| 201 | if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK)) |
| 202 | return -1; |
| 203 | |
| 204 | stats->flag |= RX_FLAG_DECRYPTED; |
| 205 | IWL_DEBUG_WEP(mvm, "hw decrypted CCMP successfully\n"); |
| 206 | return 0; |
| 207 | |
| 208 | case RX_MPDU_RES_STATUS_SEC_TKIP_ENC: |
| 209 | /* Don't drop the frame and decrypt it in SW */ |
| 210 | if (!(rx_pkt_status & RX_MPDU_RES_STATUS_TTAK_OK)) |
| 211 | return 0; |
| 212 | /* fall through if TTAK OK */ |
| 213 | |
| 214 | case RX_MPDU_RES_STATUS_SEC_WEP_ENC: |
| 215 | if (!(rx_pkt_status & RX_MPDU_RES_STATUS_ICV_OK)) |
| 216 | return -1; |
| 217 | |
| 218 | stats->flag |= RX_FLAG_DECRYPTED; |
| 219 | return 0; |
| 220 | |
Max Stepanov | e36e543 | 2013-08-27 19:56:13 +0300 | [diff] [blame] | 221 | case RX_MPDU_RES_STATUS_SEC_EXT_ENC: |
| 222 | if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK)) |
| 223 | return -1; |
| 224 | stats->flag |= RX_FLAG_DECRYPTED; |
| 225 | return 0; |
| 226 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 227 | default: |
| 228 | IWL_ERR(mvm, "Unhandled alg: 0x%x\n", rx_pkt_status); |
| 229 | } |
| 230 | |
| 231 | return 0; |
| 232 | } |
| 233 | |
| 234 | /* |
| 235 | * iwl_mvm_rx_rx_mpdu - REPLY_RX_MPDU_CMD handler |
| 236 | * |
| 237 | * Handles the actual data of the Rx packet from the fw |
| 238 | */ |
| 239 | int iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb, |
| 240 | struct iwl_device_cmd *cmd) |
| 241 | { |
| 242 | struct ieee80211_hdr *hdr; |
| 243 | struct ieee80211_rx_status rx_status = {}; |
| 244 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
| 245 | struct iwl_rx_phy_info *phy_info; |
| 246 | struct iwl_rx_mpdu_res_start *rx_res; |
| 247 | u32 len; |
| 248 | u32 ampdu_status; |
| 249 | u32 rate_n_flags; |
| 250 | u32 rx_pkt_status; |
| 251 | |
| 252 | phy_info = &mvm->last_phy_info; |
| 253 | rx_res = (struct iwl_rx_mpdu_res_start *)pkt->data; |
| 254 | hdr = (struct ieee80211_hdr *)(pkt->data + sizeof(*rx_res)); |
| 255 | len = le16_to_cpu(rx_res->byte_count); |
| 256 | rx_pkt_status = le32_to_cpup((__le32 *) |
| 257 | (pkt->data + sizeof(*rx_res) + len)); |
| 258 | |
| 259 | memset(&rx_status, 0, sizeof(rx_status)); |
| 260 | |
| 261 | /* |
Andrei Otcheretianski | 003e5236 | 2014-05-25 17:24:22 +0300 | [diff] [blame] | 262 | * We have tx blocked stations (with CS bit). If we heard frames from |
| 263 | * a blocked station on a new channel we can TX to it again. |
| 264 | */ |
| 265 | if (unlikely(mvm->csa_tx_block_bcn_timeout)) { |
| 266 | struct ieee80211_sta *sta; |
| 267 | |
| 268 | rcu_read_lock(); |
| 269 | |
| 270 | sta = ieee80211_find_sta( |
| 271 | rcu_dereference(mvm->csa_tx_blocked_vif), hdr->addr2); |
| 272 | if (sta) |
| 273 | iwl_mvm_sta_modify_disable_tx_ap(mvm, sta, false); |
| 274 | |
| 275 | rcu_read_unlock(); |
| 276 | } |
| 277 | |
| 278 | /* |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 279 | * drop the packet if it has failed being decrypted by HW |
| 280 | */ |
| 281 | if (iwl_mvm_set_mac80211_rx_flag(mvm, hdr, &rx_status, rx_pkt_status)) { |
| 282 | IWL_DEBUG_DROP(mvm, "Bad decryption results 0x%08x\n", |
| 283 | rx_pkt_status); |
| 284 | return 0; |
| 285 | } |
| 286 | |
| 287 | if ((unlikely(phy_info->cfg_phy_cnt > 20))) { |
| 288 | IWL_DEBUG_DROP(mvm, "dsp size out of range [0,20]: %d\n", |
| 289 | phy_info->cfg_phy_cnt); |
| 290 | return 0; |
| 291 | } |
| 292 | |
Johannes Berg | fb8b8ee | 2013-10-21 12:37:53 +0200 | [diff] [blame] | 293 | /* |
| 294 | * Keep packets with CRC errors (and with overrun) for monitor mode |
| 295 | * (otherwise the firmware discards them) but mark them as bad. |
| 296 | */ |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 297 | if (!(rx_pkt_status & RX_MPDU_RES_STATUS_CRC_OK) || |
| 298 | !(rx_pkt_status & RX_MPDU_RES_STATUS_OVERRUN_OK)) { |
| 299 | IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n", rx_pkt_status); |
Johannes Berg | fb8b8ee | 2013-10-21 12:37:53 +0200 | [diff] [blame] | 300 | rx_status.flag |= RX_FLAG_FAILED_FCS_CRC; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | /* This will be used in several places later */ |
| 304 | rate_n_flags = le32_to_cpu(phy_info->rate_n_flags); |
| 305 | |
| 306 | /* rx_status carries information about the packet to mac80211 */ |
| 307 | rx_status.mactime = le64_to_cpu(phy_info->timestamp); |
Johannes Berg | d2931bb | 2013-02-05 18:10:04 +0100 | [diff] [blame] | 308 | rx_status.device_timestamp = le32_to_cpu(phy_info->system_timestamp); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 309 | rx_status.band = |
| 310 | (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ? |
| 311 | IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ; |
| 312 | rx_status.freq = |
| 313 | ieee80211_channel_to_frequency(le16_to_cpu(phy_info->channel), |
| 314 | rx_status.band); |
| 315 | /* |
| 316 | * TSF as indicated by the fw is at INA time, but mac80211 expects the |
| 317 | * TSF at the beginning of the MPDU. |
| 318 | */ |
| 319 | /*rx_status.flag |= RX_FLAG_MACTIME_MPDU;*/ |
| 320 | |
Emmanuel Grumbach | 3fe47dc | 2014-03-30 08:40:46 +0300 | [diff] [blame] | 321 | iwl_mvm_get_signal_strength(mvm, phy_info, &rx_status); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 322 | |
| 323 | IWL_DEBUG_STATS_LIMIT(mvm, "Rssi %d, TSF %llu\n", rx_status.signal, |
| 324 | (unsigned long long)rx_status.mactime); |
| 325 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 326 | /* set the preamble flag if appropriate */ |
| 327 | if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_SHORT_PREAMBLE)) |
| 328 | rx_status.flag |= RX_FLAG_SHORTPRE; |
| 329 | |
| 330 | if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) { |
| 331 | /* |
| 332 | * We know which subframes of an A-MPDU belong |
| 333 | * together since we get a single PHY response |
| 334 | * from the firmware for all of them |
| 335 | */ |
| 336 | rx_status.flag |= RX_FLAG_AMPDU_DETAILS; |
| 337 | rx_status.ampdu_reference = mvm->ampdu_ref; |
| 338 | } |
| 339 | |
| 340 | /* Set up the HT phy flags */ |
| 341 | switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) { |
| 342 | case RATE_MCS_CHAN_WIDTH_20: |
| 343 | break; |
| 344 | case RATE_MCS_CHAN_WIDTH_40: |
| 345 | rx_status.flag |= RX_FLAG_40MHZ; |
| 346 | break; |
| 347 | case RATE_MCS_CHAN_WIDTH_80: |
Emmanuel Grumbach | 1b8d242 | 2014-02-05 16:37:11 +0200 | [diff] [blame] | 348 | rx_status.vht_flag |= RX_VHT_FLAG_80MHZ; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 349 | break; |
| 350 | case RATE_MCS_CHAN_WIDTH_160: |
Emmanuel Grumbach | 1b8d242 | 2014-02-05 16:37:11 +0200 | [diff] [blame] | 351 | rx_status.vht_flag |= RX_VHT_FLAG_160MHZ; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 352 | break; |
| 353 | } |
| 354 | if (rate_n_flags & RATE_MCS_SGI_MSK) |
| 355 | rx_status.flag |= RX_FLAG_SHORT_GI; |
| 356 | if (rate_n_flags & RATE_HT_MCS_GF_MSK) |
| 357 | rx_status.flag |= RX_FLAG_HT_GF; |
Emmanuel Grumbach | 7b1dd04 | 2014-02-04 15:32:43 +0200 | [diff] [blame] | 358 | if (rate_n_flags & RATE_MCS_LDPC_MSK) |
| 359 | rx_status.flag |= RX_FLAG_LDPC; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 360 | if (rate_n_flags & RATE_MCS_HT_MSK) { |
Emmanuel Grumbach | 7b1dd04 | 2014-02-04 15:32:43 +0200 | [diff] [blame] | 361 | u8 stbc = (rate_n_flags & RATE_MCS_HT_STBC_MSK) >> |
| 362 | RATE_MCS_STBC_POS; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 363 | rx_status.flag |= RX_FLAG_HT; |
| 364 | rx_status.rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK; |
Emmanuel Grumbach | 7b1dd04 | 2014-02-04 15:32:43 +0200 | [diff] [blame] | 365 | rx_status.flag |= stbc << RX_FLAG_STBC_SHIFT; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 366 | } else if (rate_n_flags & RATE_MCS_VHT_MSK) { |
Emmanuel Grumbach | 7b1dd04 | 2014-02-04 15:32:43 +0200 | [diff] [blame] | 367 | u8 stbc = (rate_n_flags & RATE_MCS_VHT_STBC_MSK) >> |
| 368 | RATE_MCS_STBC_POS; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 369 | rx_status.vht_nss = |
| 370 | ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >> |
| 371 | RATE_VHT_MCS_NSS_POS) + 1; |
| 372 | rx_status.rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK; |
| 373 | rx_status.flag |= RX_FLAG_VHT; |
Emmanuel Grumbach | 7b1dd04 | 2014-02-04 15:32:43 +0200 | [diff] [blame] | 374 | rx_status.flag |= stbc << RX_FLAG_STBC_SHIFT; |
Emmanuel Grumbach | 95e05ab | 2014-03-04 09:38:43 +0200 | [diff] [blame] | 375 | if (rate_n_flags & RATE_MCS_BF_MSK) |
| 376 | rx_status.vht_flag |= RX_VHT_FLAG_BF; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 377 | } else { |
| 378 | rx_status.rate_idx = |
| 379 | iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags, |
| 380 | rx_status.band); |
| 381 | } |
| 382 | |
Eyal Shapira | 5fc0f76 | 2014-01-28 01:35:32 +0200 | [diff] [blame] | 383 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 384 | iwl_mvm_update_frame_stats(mvm, &mvm->drv_rx_stats, rate_n_flags, |
| 385 | rx_status.flag & RX_FLAG_AMPDU_DETAILS); |
| 386 | #endif |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 387 | iwl_mvm_pass_packet_to_mac80211(mvm, hdr, len, ampdu_status, |
| 388 | rxb, &rx_status); |
| 389 | return 0; |
| 390 | } |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 391 | |
Matti Gottlieb | 3848ab6 | 2013-07-30 15:29:37 +0300 | [diff] [blame] | 392 | static void iwl_mvm_update_rx_statistics(struct iwl_mvm *mvm, |
| 393 | struct iwl_notif_statistics *stats) |
| 394 | { |
| 395 | /* |
| 396 | * NOTE FW aggregates the statistics - BUT the statistics are cleared |
| 397 | * when the driver issues REPLY_STATISTICS_CMD 0x9c with CLEAR_STATS |
| 398 | * bit set. |
| 399 | */ |
| 400 | lockdep_assert_held(&mvm->mutex); |
| 401 | memcpy(&mvm->rx_stats, &stats->rx, sizeof(struct mvm_statistics_rx)); |
| 402 | } |
| 403 | |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 404 | struct iwl_mvm_stat_data { |
| 405 | struct iwl_notif_statistics *stats; |
| 406 | struct iwl_mvm *mvm; |
| 407 | }; |
| 408 | |
| 409 | static void iwl_mvm_stat_iterator(void *_data, u8 *mac, |
| 410 | struct ieee80211_vif *vif) |
| 411 | { |
| 412 | struct iwl_mvm_stat_data *data = _data; |
| 413 | struct iwl_notif_statistics *stats = data->stats; |
| 414 | struct iwl_mvm *mvm = data->mvm; |
| 415 | int sig = -stats->general.beacon_filter_average_energy; |
| 416 | int last_event; |
| 417 | int thold = vif->bss_conf.cqm_rssi_thold; |
| 418 | int hyst = vif->bss_conf.cqm_rssi_hyst; |
| 419 | u16 id = le32_to_cpu(stats->rx.general.mac_id); |
| 420 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 421 | |
| 422 | if (mvmvif->id != id) |
| 423 | return; |
| 424 | |
| 425 | if (vif->type != NL80211_IFTYPE_STATION) |
| 426 | return; |
| 427 | |
| 428 | mvmvif->bf_data.ave_beacon_signal = sig; |
| 429 | |
Andrei Otcheretianski | 911222b | 2013-07-21 17:37:19 +0300 | [diff] [blame] | 430 | /* BT Coex */ |
| 431 | if (mvmvif->bf_data.bt_coex_min_thold != |
| 432 | mvmvif->bf_data.bt_coex_max_thold) { |
| 433 | last_event = mvmvif->bf_data.last_bt_coex_event; |
| 434 | if (sig > mvmvif->bf_data.bt_coex_max_thold && |
| 435 | (last_event <= mvmvif->bf_data.bt_coex_min_thold || |
| 436 | last_event == 0)) { |
| 437 | mvmvif->bf_data.last_bt_coex_event = sig; |
| 438 | IWL_DEBUG_RX(mvm, "cqm_iterator bt coex high %d\n", |
| 439 | sig); |
| 440 | iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_HIGH); |
| 441 | } else if (sig < mvmvif->bf_data.bt_coex_min_thold && |
| 442 | (last_event >= mvmvif->bf_data.bt_coex_max_thold || |
| 443 | last_event == 0)) { |
| 444 | mvmvif->bf_data.last_bt_coex_event = sig; |
| 445 | IWL_DEBUG_RX(mvm, "cqm_iterator bt coex low %d\n", |
| 446 | sig); |
| 447 | iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_LOW); |
| 448 | } |
| 449 | } |
| 450 | |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 451 | if (!(vif->driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) |
| 452 | return; |
| 453 | |
| 454 | /* CQM Notification */ |
| 455 | last_event = mvmvif->bf_data.last_cqm_event; |
| 456 | if (thold && sig < thold && (last_event == 0 || |
| 457 | sig < last_event - hyst)) { |
| 458 | mvmvif->bf_data.last_cqm_event = sig; |
| 459 | IWL_DEBUG_RX(mvm, "cqm_iterator cqm low %d\n", |
| 460 | sig); |
| 461 | ieee80211_cqm_rssi_notify( |
| 462 | vif, |
| 463 | NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW, |
| 464 | GFP_KERNEL); |
| 465 | } else if (sig > thold && |
| 466 | (last_event == 0 || sig > last_event + hyst)) { |
| 467 | mvmvif->bf_data.last_cqm_event = sig; |
| 468 | IWL_DEBUG_RX(mvm, "cqm_iterator cqm high %d\n", |
| 469 | sig); |
| 470 | ieee80211_cqm_rssi_notify( |
| 471 | vif, |
| 472 | NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH, |
| 473 | GFP_KERNEL); |
| 474 | } |
| 475 | } |
| 476 | |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 477 | /* |
| 478 | * iwl_mvm_rx_statistics - STATISTICS_NOTIFICATION handler |
| 479 | * |
| 480 | * TODO: This handler is implemented partially. |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 481 | */ |
| 482 | int iwl_mvm_rx_statistics(struct iwl_mvm *mvm, |
| 483 | struct iwl_rx_cmd_buffer *rxb, |
| 484 | struct iwl_device_cmd *cmd) |
| 485 | { |
| 486 | struct iwl_rx_packet *pkt = rxb_addr(rxb); |
| 487 | struct iwl_notif_statistics *stats = (void *)&pkt->data; |
| 488 | struct mvm_statistics_general_common *common = &stats->general.common; |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 489 | struct iwl_mvm_stat_data data = { |
| 490 | .stats = stats, |
| 491 | .mvm = mvm, |
| 492 | }; |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 493 | |
| 494 | if (mvm->temperature != le32_to_cpu(common->temperature)) { |
| 495 | mvm->temperature = le32_to_cpu(common->temperature); |
| 496 | iwl_mvm_tt_handler(mvm); |
| 497 | } |
Matti Gottlieb | 3848ab6 | 2013-07-30 15:29:37 +0300 | [diff] [blame] | 498 | iwl_mvm_update_rx_statistics(mvm, stats); |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 499 | |
Andrei Otcheretianski | a20fd39 | 2013-07-21 17:23:59 +0300 | [diff] [blame] | 500 | ieee80211_iterate_active_interfaces(mvm->hw, |
| 501 | IEEE80211_IFACE_ITER_NORMAL, |
| 502 | iwl_mvm_stat_iterator, |
| 503 | &data); |
Eytan Lifshitz | 9ee718a | 2013-05-19 19:14:41 +0300 | [diff] [blame] | 504 | return 0; |
| 505 | } |