blob: 145ec68ce6f9a398c3bed94f3f4d4f5d2eb38e64 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
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 Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg777c9b62015-01-14 17:58:57 +01009 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
24 *
25 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020026 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010027 *
28 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020029 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010030 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020034 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg777c9b62015-01-14 17:58:57 +010035 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010036 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *****************************************************************************/
Johannes Berga399f982015-09-24 18:29:00 +020064#include <linux/etherdevice.h>
Avri Altman93190fb2014-12-27 09:09:47 +020065#include <linux/skbuff.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010066#include "iwl-trans.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010067#include "mvm.h"
68#include "fw-api.h"
Golan Ben-Ami2f89a5d2015-10-27 19:17:14 +020069#include "fw-dbg.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010070
71/*
72 * iwl_mvm_rx_rx_phy_cmd - REPLY_RX_PHY_CMD handler
73 *
74 * Copies the phy information in mvm->last_phy_info, it will be used when the
75 * actual data will come from the fw in the next packet.
76 */
Johannes Berg04168412015-06-23 21:22:09 +020077void iwl_mvm_rx_rx_phy_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +010078{
79 struct iwl_rx_packet *pkt = rxb_addr(rxb);
80
81 memcpy(&mvm->last_phy_info, pkt->data, sizeof(mvm->last_phy_info));
82 mvm->ampdu_ref++;
Eyal Shapira5fc0f762014-01-28 01:35:32 +020083
84#ifdef CONFIG_IWLWIFI_DEBUGFS
85 if (mvm->last_phy_info.phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
86 spin_lock(&mvm->drv_stats_lock);
87 mvm->drv_rx_stats.ampdu_count++;
88 spin_unlock(&mvm->drv_stats_lock);
89 }
90#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +010091}
92
93/*
94 * iwl_mvm_pass_packet_to_mac80211 - builds the packet for mac80211
95 *
96 * Adds the rxb to a new skb and give it to mac80211
97 */
98static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
Johannes Berg1be5d8c2015-06-11 16:51:24 +020099 struct napi_struct *napi,
Johannes Bergd0963b52014-11-12 16:45:12 +0100100 struct sk_buff *skb,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100101 struct ieee80211_hdr *hdr, u16 len,
Johannes Bergeb96ccb2014-11-12 17:12:05 +0100102 u32 ampdu_status, u8 crypt_len,
Johannes Bergd0963b52014-11-12 16:45:12 +0100103 struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100104{
Johannes Berg8ca151b2013-01-24 14:25:36 +0100105 unsigned int hdrlen, fraglen;
106
Johannes Berg8ca151b2013-01-24 14:25:36 +0100107 /* If frame is small enough to fit in skb->head, pull it completely.
Johannes Berg3771a892014-11-13 11:06:43 +0100108 * If not, only pull ieee80211_hdr (including crypto if present, and
109 * an additional 8 bytes for SNAP/ethertype, see below) so that
110 * splice() or TCP coalesce are more efficient.
111 *
112 * Since, in addition, ieee80211_data_to_8023() always pull in at
113 * least 8 bytes (possibly more for mesh) we can do the same here
114 * to save the cost of doing it later. That still doesn't pull in
115 * the actual IP header since the typical case has a SNAP header.
116 * If the latter changes (there are efforts in the standards group
117 * to do so) we should revisit this and ieee80211_data_to_8023().
Johannes Berg8ca151b2013-01-24 14:25:36 +0100118 */
Johannes Berg3771a892014-11-13 11:06:43 +0100119 hdrlen = (len <= skb_tailroom(skb)) ? len :
120 sizeof(*hdr) + crypt_len + 8;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100121
122 memcpy(skb_put(skb, hdrlen), hdr, hdrlen);
123 fraglen = len - hdrlen;
124
125 if (fraglen) {
126 int offset = (void *)hdr + hdrlen -
127 rxb_addr(rxb) + rxb_offset(rxb);
128
129 skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset,
130 fraglen, rxb->truesize);
131 }
132
Johannes Berg1be5d8c2015-06-11 16:51:24 +0200133 ieee80211_rx_napi(mvm->hw, skb, napi);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100134}
135
Johannes Berg8ca151b2013-01-24 14:25:36 +0100136/*
Avri Altmana2d7b872013-07-09 01:42:17 +0300137 * iwl_mvm_get_signal_strength - use new rx PHY INFO API
Avri Altman17dbe562013-08-01 07:19:27 +0300138 * values are reported by the fw as positive values - need to negate
139 * to obtain their dBM. Account for missing antennas by replacing 0
140 * values by -256dBm: practically 0 power and a non-feasible 8 bit value.
Avri Altmana2d7b872013-07-09 01:42:17 +0300141 */
Johannes Berg226eb8c2013-07-03 11:55:17 +0200142static void iwl_mvm_get_signal_strength(struct iwl_mvm *mvm,
143 struct iwl_rx_phy_info *phy_info,
144 struct ieee80211_rx_status *rx_status)
Avri Altmana2d7b872013-07-09 01:42:17 +0300145{
146 int energy_a, energy_b, energy_c, max_energy;
147 u32 val;
148
149 val =
150 le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_ENERGY_ANT_ABC_IDX]);
Avri Altman17dbe562013-08-01 07:19:27 +0300151 energy_a = (val & IWL_RX_INFO_ENERGY_ANT_A_MSK) >>
152 IWL_RX_INFO_ENERGY_ANT_A_POS;
Eyal Shapira2cddddc2014-08-13 00:26:17 +0300153 energy_a = energy_a ? -energy_a : S8_MIN;
Avri Altman17dbe562013-08-01 07:19:27 +0300154 energy_b = (val & IWL_RX_INFO_ENERGY_ANT_B_MSK) >>
155 IWL_RX_INFO_ENERGY_ANT_B_POS;
Eyal Shapira2cddddc2014-08-13 00:26:17 +0300156 energy_b = energy_b ? -energy_b : S8_MIN;
Avri Altman17dbe562013-08-01 07:19:27 +0300157 energy_c = (val & IWL_RX_INFO_ENERGY_ANT_C_MSK) >>
158 IWL_RX_INFO_ENERGY_ANT_C_POS;
Eyal Shapira2cddddc2014-08-13 00:26:17 +0300159 energy_c = energy_c ? -energy_c : S8_MIN;
Avri Altmana2d7b872013-07-09 01:42:17 +0300160 max_energy = max(energy_a, energy_b);
161 max_energy = max(max_energy, energy_c);
162
163 IWL_DEBUG_STATS(mvm, "energy In A %d B %d C %d , and max %d\n",
164 energy_a, energy_b, energy_c, max_energy);
165
Johannes Berg226eb8c2013-07-03 11:55:17 +0200166 rx_status->signal = max_energy;
167 rx_status->chains = (le16_to_cpu(phy_info->phy_flags) &
168 RX_RES_PHY_FLAGS_ANTENNA)
169 >> RX_RES_PHY_FLAGS_ANTENNA_POS;
170 rx_status->chain_signal[0] = energy_a;
171 rx_status->chain_signal[1] = energy_b;
172 rx_status->chain_signal[2] = energy_c;
Avri Altmana2d7b872013-07-09 01:42:17 +0300173}
174
175/*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100176 * iwl_mvm_set_mac80211_rx_flag - translate fw status to mac80211 format
177 * @mvm: the mvm object
178 * @hdr: 80211 header
179 * @stats: status in mac80211's format
180 * @rx_pkt_status: status coming from fw
181 *
182 * returns non 0 value if the packet should be dropped
183 */
184static u32 iwl_mvm_set_mac80211_rx_flag(struct iwl_mvm *mvm,
185 struct ieee80211_hdr *hdr,
186 struct ieee80211_rx_status *stats,
Johannes Bergeb96ccb2014-11-12 17:12:05 +0100187 u32 rx_pkt_status,
188 u8 *crypt_len)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100189{
190 if (!ieee80211_has_protected(hdr->frame_control) ||
191 (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
192 RX_MPDU_RES_STATUS_SEC_NO_ENC)
193 return 0;
194
195 /* packet was encrypted with unknown alg */
196 if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
197 RX_MPDU_RES_STATUS_SEC_ENC_ERR)
198 return 0;
199
200 switch (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) {
201 case RX_MPDU_RES_STATUS_SEC_CCM_ENC:
202 /* alg is CCM: check MIC only */
203 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
204 return -1;
205
206 stats->flag |= RX_FLAG_DECRYPTED;
Johannes Bergeb96ccb2014-11-12 17:12:05 +0100207 *crypt_len = IEEE80211_CCMP_HDR_LEN;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100208 return 0;
209
210 case RX_MPDU_RES_STATUS_SEC_TKIP_ENC:
211 /* Don't drop the frame and decrypt it in SW */
212 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_TTAK_OK))
213 return 0;
Johannes Bergeb96ccb2014-11-12 17:12:05 +0100214 *crypt_len = IEEE80211_TKIP_IV_LEN;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100215 /* fall through if TTAK OK */
216
217 case RX_MPDU_RES_STATUS_SEC_WEP_ENC:
218 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_ICV_OK))
219 return -1;
220
221 stats->flag |= RX_FLAG_DECRYPTED;
Johannes Bergeb96ccb2014-11-12 17:12:05 +0100222 if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
223 RX_MPDU_RES_STATUS_SEC_WEP_ENC)
224 *crypt_len = IEEE80211_WEP_IV_LEN;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100225 return 0;
226
Max Stepanove36e5432013-08-27 19:56:13 +0300227 case RX_MPDU_RES_STATUS_SEC_EXT_ENC:
228 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
229 return -1;
230 stats->flag |= RX_FLAG_DECRYPTED;
231 return 0;
232
Johannes Berg8ca151b2013-01-24 14:25:36 +0100233 default:
234 IWL_ERR(mvm, "Unhandled alg: 0x%x\n", rx_pkt_status);
235 }
236
237 return 0;
238}
239
Avri Altman93190fb2014-12-27 09:09:47 +0200240static void iwl_mvm_rx_csum(struct ieee80211_sta *sta,
241 struct sk_buff *skb,
242 u32 status)
243{
244 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
245 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
246
247 if (mvmvif->features & NETIF_F_RXCSUM &&
248 status & RX_MPDU_RES_STATUS_CSUM_DONE &&
249 status & RX_MPDU_RES_STATUS_CSUM_OK)
250 skb->ip_summed = CHECKSUM_UNNECESSARY;
251}
252
Johannes Berg8ca151b2013-01-24 14:25:36 +0100253/*
254 * iwl_mvm_rx_rx_mpdu - REPLY_RX_MPDU_CMD handler
255 *
256 * Handles the actual data of the Rx packet from the fw
257 */
Johannes Berg1be5d8c2015-06-11 16:51:24 +0200258void iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct napi_struct *napi,
259 struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100260{
261 struct ieee80211_hdr *hdr;
Johannes Bergd0963b52014-11-12 16:45:12 +0100262 struct ieee80211_rx_status *rx_status;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100263 struct iwl_rx_packet *pkt = rxb_addr(rxb);
264 struct iwl_rx_phy_info *phy_info;
265 struct iwl_rx_mpdu_res_start *rx_res;
Johannes Berga399f982015-09-24 18:29:00 +0200266 struct ieee80211_sta *sta = NULL;
Johannes Bergd0963b52014-11-12 16:45:12 +0100267 struct sk_buff *skb;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100268 u32 len;
269 u32 ampdu_status;
270 u32 rate_n_flags;
271 u32 rx_pkt_status;
Johannes Bergeb96ccb2014-11-12 17:12:05 +0100272 u8 crypt_len = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100273
274 phy_info = &mvm->last_phy_info;
275 rx_res = (struct iwl_rx_mpdu_res_start *)pkt->data;
276 hdr = (struct ieee80211_hdr *)(pkt->data + sizeof(*rx_res));
277 len = le16_to_cpu(rx_res->byte_count);
278 rx_pkt_status = le32_to_cpup((__le32 *)
279 (pkt->data + sizeof(*rx_res) + len));
280
Johannes Bergd0963b52014-11-12 16:45:12 +0100281 /* Dont use dev_alloc_skb(), we'll have enough headroom once
282 * ieee80211_hdr pulled.
283 */
284 skb = alloc_skb(128, GFP_ATOMIC);
285 if (!skb) {
286 IWL_ERR(mvm, "alloc_skb failed\n");
Johannes Berg04168412015-06-23 21:22:09 +0200287 return;
Johannes Bergd0963b52014-11-12 16:45:12 +0100288 }
289
290 rx_status = IEEE80211_SKB_RXCB(skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100291
292 /*
293 * drop the packet if it has failed being decrypted by HW
294 */
Johannes Bergeb96ccb2014-11-12 17:12:05 +0100295 if (iwl_mvm_set_mac80211_rx_flag(mvm, hdr, rx_status, rx_pkt_status,
296 &crypt_len)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100297 IWL_DEBUG_DROP(mvm, "Bad decryption results 0x%08x\n",
298 rx_pkt_status);
Johannes Bergd0963b52014-11-12 16:45:12 +0100299 kfree_skb(skb);
Johannes Berg04168412015-06-23 21:22:09 +0200300 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100301 }
302
Johannes Bergfb8b8ee2013-10-21 12:37:53 +0200303 /*
304 * Keep packets with CRC errors (and with overrun) for monitor mode
305 * (otherwise the firmware discards them) but mark them as bad.
306 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100307 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_CRC_OK) ||
308 !(rx_pkt_status & RX_MPDU_RES_STATUS_OVERRUN_OK)) {
309 IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n", rx_pkt_status);
Johannes Bergd0963b52014-11-12 16:45:12 +0100310 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100311 }
312
313 /* This will be used in several places later */
314 rate_n_flags = le32_to_cpu(phy_info->rate_n_flags);
315
316 /* rx_status carries information about the packet to mac80211 */
Johannes Bergd0963b52014-11-12 16:45:12 +0100317 rx_status->mactime = le64_to_cpu(phy_info->timestamp);
318 rx_status->device_timestamp = le32_to_cpu(phy_info->system_timestamp);
319 rx_status->band =
Johannes Berg8ca151b2013-01-24 14:25:36 +0100320 (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ?
321 IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
Johannes Bergd0963b52014-11-12 16:45:12 +0100322 rx_status->freq =
Johannes Berg8ca151b2013-01-24 14:25:36 +0100323 ieee80211_channel_to_frequency(le16_to_cpu(phy_info->channel),
Johannes Bergd0963b52014-11-12 16:45:12 +0100324 rx_status->band);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100325 /*
326 * TSF as indicated by the fw is at INA time, but mac80211 expects the
327 * TSF at the beginning of the MPDU.
328 */
Johannes Bergd0963b52014-11-12 16:45:12 +0100329 /*rx_status->flag |= RX_FLAG_MACTIME_MPDU;*/
Johannes Berg8ca151b2013-01-24 14:25:36 +0100330
Johannes Bergd0963b52014-11-12 16:45:12 +0100331 iwl_mvm_get_signal_strength(mvm, phy_info, rx_status);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100332
Johannes Bergd0963b52014-11-12 16:45:12 +0100333 IWL_DEBUG_STATS_LIMIT(mvm, "Rssi %d, TSF %llu\n", rx_status->signal,
334 (unsigned long long)rx_status->mactime);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100335
Eyal Shapira361dbec2014-08-13 00:31:13 +0300336 rcu_read_lock();
Johannes Berga399f982015-09-24 18:29:00 +0200337 if (rx_pkt_status & RX_MPDU_RES_STATUS_SRC_STA_FOUND) {
338 u32 id = rx_pkt_status & RX_MPDU_RES_STATUS_STA_ID_MSK;
339
340 id >>= RX_MDPU_RES_STATUS_STA_ID_SHIFT;
341
342 if (!WARN_ON_ONCE(id >= IWL_MVM_STATION_COUNT)) {
343 sta = rcu_dereference(mvm->fw_id_to_mac_id[id]);
344 if (IS_ERR(sta))
345 sta = NULL;
346 }
347 } else if (!is_multicast_ether_addr(hdr->addr2)) {
348 /* This is fine since we prevent two stations with the same
349 * address from being added.
350 */
351 sta = ieee80211_find_sta_by_ifaddr(mvm->hw, hdr->addr2, NULL);
Eyal Shapira361dbec2014-08-13 00:31:13 +0300352 }
353
Eyal Shapira361dbec2014-08-13 00:31:13 +0300354 if (sta) {
Johannes Berg7c0ebd72015-09-22 12:28:42 +0200355 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
356
Johannes Berga399f982015-09-24 18:29:00 +0200357 /* We have tx blocked stations (with CS bit). If we heard
358 * frames from a blocked station on a new channel we can
359 * TX to it again.
360 */
361 if (unlikely(mvm->csa_tx_block_bcn_timeout))
362 iwl_mvm_sta_modify_disable_tx_ap(mvm, sta, false);
363
Johannes Bergd0963b52014-11-12 16:45:12 +0100364 rs_update_last_rssi(mvm, &mvmsta->lq_sta, rx_status);
Emmanuel Grumbach3ec50b5e2015-02-03 14:29:36 +0200365
366 if (iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_RSSI) &&
367 ieee80211_is_beacon(hdr->frame_control)) {
368 struct iwl_fw_dbg_trigger_tlv *trig;
369 struct iwl_fw_dbg_trigger_low_rssi *rssi_trig;
370 bool trig_check;
371 s32 rssi;
372
373 trig = iwl_fw_dbg_get_trigger(mvm->fw,
374 FW_DBG_TRIGGER_RSSI);
375 rssi_trig = (void *)trig->data;
376 rssi = le32_to_cpu(rssi_trig->rssi);
377
378 trig_check =
379 iwl_fw_dbg_trigger_check_stop(mvm, mvmsta->vif,
380 trig);
381 if (trig_check && rx_status->signal < rssi)
Johannes Berg5d4f9292015-03-31 09:12:54 +0200382 iwl_mvm_fw_dbg_collect_trig(mvm, trig, NULL);
Emmanuel Grumbach3ec50b5e2015-02-03 14:29:36 +0200383 }
Johannes Berga399f982015-09-24 18:29:00 +0200384
385 if (ieee80211_is_data(hdr->frame_control))
386 iwl_mvm_rx_csum(sta, skb, rx_pkt_status);
Eyal Shapira361dbec2014-08-13 00:31:13 +0300387 }
Eyal Shapira361dbec2014-08-13 00:31:13 +0300388 rcu_read_unlock();
389
Johannes Berg8ca151b2013-01-24 14:25:36 +0100390 /* set the preamble flag if appropriate */
391 if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_SHORT_PREAMBLE))
Johannes Bergd0963b52014-11-12 16:45:12 +0100392 rx_status->flag |= RX_FLAG_SHORTPRE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100393
394 if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
395 /*
396 * We know which subframes of an A-MPDU belong
397 * together since we get a single PHY response
398 * from the firmware for all of them
399 */
Johannes Bergd0963b52014-11-12 16:45:12 +0100400 rx_status->flag |= RX_FLAG_AMPDU_DETAILS;
401 rx_status->ampdu_reference = mvm->ampdu_ref;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100402 }
403
404 /* Set up the HT phy flags */
405 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
406 case RATE_MCS_CHAN_WIDTH_20:
407 break;
408 case RATE_MCS_CHAN_WIDTH_40:
Johannes Bergd0963b52014-11-12 16:45:12 +0100409 rx_status->flag |= RX_FLAG_40MHZ;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100410 break;
411 case RATE_MCS_CHAN_WIDTH_80:
Johannes Bergd0963b52014-11-12 16:45:12 +0100412 rx_status->vht_flag |= RX_VHT_FLAG_80MHZ;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100413 break;
414 case RATE_MCS_CHAN_WIDTH_160:
Johannes Bergd0963b52014-11-12 16:45:12 +0100415 rx_status->vht_flag |= RX_VHT_FLAG_160MHZ;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100416 break;
417 }
418 if (rate_n_flags & RATE_MCS_SGI_MSK)
Johannes Bergd0963b52014-11-12 16:45:12 +0100419 rx_status->flag |= RX_FLAG_SHORT_GI;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100420 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
Johannes Bergd0963b52014-11-12 16:45:12 +0100421 rx_status->flag |= RX_FLAG_HT_GF;
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +0200422 if (rate_n_flags & RATE_MCS_LDPC_MSK)
Johannes Bergd0963b52014-11-12 16:45:12 +0100423 rx_status->flag |= RX_FLAG_LDPC;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100424 if (rate_n_flags & RATE_MCS_HT_MSK) {
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +0200425 u8 stbc = (rate_n_flags & RATE_MCS_HT_STBC_MSK) >>
426 RATE_MCS_STBC_POS;
Johannes Bergd0963b52014-11-12 16:45:12 +0100427 rx_status->flag |= RX_FLAG_HT;
428 rx_status->rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
429 rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100430 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +0200431 u8 stbc = (rate_n_flags & RATE_MCS_VHT_STBC_MSK) >>
432 RATE_MCS_STBC_POS;
Johannes Bergd0963b52014-11-12 16:45:12 +0100433 rx_status->vht_nss =
Johannes Berg8ca151b2013-01-24 14:25:36 +0100434 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
435 RATE_VHT_MCS_NSS_POS) + 1;
Johannes Bergd0963b52014-11-12 16:45:12 +0100436 rx_status->rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
437 rx_status->flag |= RX_FLAG_VHT;
438 rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
Emmanuel Grumbach95e05ab2014-03-04 09:38:43 +0200439 if (rate_n_flags & RATE_MCS_BF_MSK)
Johannes Bergd0963b52014-11-12 16:45:12 +0100440 rx_status->vht_flag |= RX_VHT_FLAG_BF;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100441 } else {
Johannes Bergd0963b52014-11-12 16:45:12 +0100442 rx_status->rate_idx =
Johannes Berg8ca151b2013-01-24 14:25:36 +0100443 iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
Johannes Bergd0963b52014-11-12 16:45:12 +0100444 rx_status->band);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100445 }
446
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200447#ifdef CONFIG_IWLWIFI_DEBUGFS
Johannes Berg2f15a822015-01-21 18:05:04 +0100448 iwl_mvm_update_frame_stats(mvm, rate_n_flags,
Johannes Bergd0963b52014-11-12 16:45:12 +0100449 rx_status->flag & RX_FLAG_AMPDU_DETAILS);
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200450#endif
Johannes Berg1be5d8c2015-06-11 16:51:24 +0200451 iwl_mvm_pass_packet_to_mac80211(mvm, napi, skb, hdr, len, ampdu_status,
Johannes Bergeb96ccb2014-11-12 17:12:05 +0100452 crypt_len, rxb);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100453}
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300454
Matti Gottlieb3848ab62013-07-30 15:29:37 +0300455static void iwl_mvm_update_rx_statistics(struct iwl_mvm *mvm,
Johannes Berg777c9b62015-01-14 17:58:57 +0100456 struct mvm_statistics_rx *rx_stats)
Matti Gottlieb3848ab62013-07-30 15:29:37 +0300457{
Matti Gottlieb3848ab62013-07-30 15:29:37 +0300458 lockdep_assert_held(&mvm->mutex);
Johannes Berg777c9b62015-01-14 17:58:57 +0100459
460 mvm->rx_stats = *rx_stats;
Matti Gottlieb3848ab62013-07-30 15:29:37 +0300461}
462
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300463struct iwl_mvm_stat_data {
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300464 struct iwl_mvm *mvm;
Johannes Berg777c9b62015-01-14 17:58:57 +0100465 __le32 mac_id;
Sara Sharon62e004f2015-08-20 14:12:58 +0300466 u8 beacon_filter_average_energy;
Johannes Berg33cef922015-01-21 21:41:29 +0100467 struct mvm_statistics_general_v8 *general;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300468};
469
470static void iwl_mvm_stat_iterator(void *_data, u8 *mac,
471 struct ieee80211_vif *vif)
472{
473 struct iwl_mvm_stat_data *data = _data;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300474 struct iwl_mvm *mvm = data->mvm;
Johannes Berg777c9b62015-01-14 17:58:57 +0100475 int sig = -data->beacon_filter_average_energy;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300476 int last_event;
477 int thold = vif->bss_conf.cqm_rssi_thold;
478 int hyst = vif->bss_conf.cqm_rssi_hyst;
Johannes Berg777c9b62015-01-14 17:58:57 +0100479 u16 id = le32_to_cpu(data->mac_id);
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300480 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
481
Johannes Berg33cef922015-01-21 21:41:29 +0100482 /* This doesn't need the MAC ID check since it's not taking the
483 * data copied into the "data" struct, but rather the data from
484 * the notification directly.
485 */
486 if (data->general) {
487 mvmvif->beacon_stats.num_beacons =
488 le32_to_cpu(data->general->beacon_counter[mvmvif->id]);
489 mvmvif->beacon_stats.avg_signal =
490 -data->general->beacon_average_energy[mvmvif->id];
491 }
492
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300493 if (mvmvif->id != id)
494 return;
495
496 if (vif->type != NL80211_IFTYPE_STATION)
497 return;
498
Alexander Bondar8047cc02015-03-26 13:15:03 +0200499 if (sig == 0) {
500 IWL_DEBUG_RX(mvm, "RSSI is 0 - skip signal based decision\n");
501 return;
502 }
503
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300504 mvmvif->bf_data.ave_beacon_signal = sig;
505
Andrei Otcheretianski911222b2013-07-21 17:37:19 +0300506 /* BT Coex */
507 if (mvmvif->bf_data.bt_coex_min_thold !=
508 mvmvif->bf_data.bt_coex_max_thold) {
509 last_event = mvmvif->bf_data.last_bt_coex_event;
510 if (sig > mvmvif->bf_data.bt_coex_max_thold &&
511 (last_event <= mvmvif->bf_data.bt_coex_min_thold ||
512 last_event == 0)) {
513 mvmvif->bf_data.last_bt_coex_event = sig;
514 IWL_DEBUG_RX(mvm, "cqm_iterator bt coex high %d\n",
515 sig);
516 iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_HIGH);
517 } else if (sig < mvmvif->bf_data.bt_coex_min_thold &&
518 (last_event >= mvmvif->bf_data.bt_coex_max_thold ||
519 last_event == 0)) {
520 mvmvif->bf_data.last_bt_coex_event = sig;
521 IWL_DEBUG_RX(mvm, "cqm_iterator bt coex low %d\n",
522 sig);
523 iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_LOW);
524 }
525 }
526
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300527 if (!(vif->driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI))
528 return;
529
530 /* CQM Notification */
531 last_event = mvmvif->bf_data.last_cqm_event;
532 if (thold && sig < thold && (last_event == 0 ||
533 sig < last_event - hyst)) {
534 mvmvif->bf_data.last_cqm_event = sig;
535 IWL_DEBUG_RX(mvm, "cqm_iterator cqm low %d\n",
536 sig);
537 ieee80211_cqm_rssi_notify(
538 vif,
539 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
540 GFP_KERNEL);
541 } else if (sig > thold &&
542 (last_event == 0 || sig > last_event + hyst)) {
543 mvmvif->bf_data.last_cqm_event = sig;
544 IWL_DEBUG_RX(mvm, "cqm_iterator cqm high %d\n",
545 sig);
546 ieee80211_cqm_rssi_notify(
547 vif,
548 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
549 GFP_KERNEL);
550 }
551}
552
Emmanuel Grumbach5a756c22015-02-10 15:26:57 +0200553static inline void
554iwl_mvm_rx_stats_check_trigger(struct iwl_mvm *mvm, struct iwl_rx_packet *pkt)
555{
556 struct iwl_fw_dbg_trigger_tlv *trig;
557 struct iwl_fw_dbg_trigger_stats *trig_stats;
558 u32 trig_offset, trig_thold;
559
560 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_STATS))
561 return;
562
563 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_STATS);
564 trig_stats = (void *)trig->data;
565
566 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
567 return;
568
569 trig_offset = le32_to_cpu(trig_stats->stop_offset);
570 trig_thold = le32_to_cpu(trig_stats->stop_threshold);
571
572 if (WARN_ON_ONCE(trig_offset >= iwl_rx_packet_payload_len(pkt)))
573 return;
574
575 if (le32_to_cpup((__le32 *) (pkt->data + trig_offset)) < trig_thold)
576 return;
577
Johannes Berg5d4f9292015-03-31 09:12:54 +0200578 iwl_mvm_fw_dbg_collect_trig(mvm, trig, NULL);
Emmanuel Grumbach5a756c22015-02-10 15:26:57 +0200579}
580
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100581void iwl_mvm_handle_rx_statistics(struct iwl_mvm *mvm,
582 struct iwl_rx_packet *pkt)
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300583{
Emmanuel Grumbach38d5f662015-08-26 14:03:02 +0300584 struct iwl_notif_statistics_v10 *stats = (void *)&pkt->data;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300585 struct iwl_mvm_stat_data data = {
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300586 .mvm = mvm,
587 };
Johannes Berg777c9b62015-01-14 17:58:57 +0100588 u32 temperature;
589
Emmanuel Grumbach38d5f662015-08-26 14:03:02 +0300590 if (iwl_rx_packet_payload_len(pkt) != sizeof(*stats))
591 goto invalid;
Johannes Berg777c9b62015-01-14 17:58:57 +0100592
Emmanuel Grumbach38d5f662015-08-26 14:03:02 +0300593 temperature = le32_to_cpu(stats->general.radio_temperature);
594 data.mac_id = stats->rx.general.mac_id;
595 data.beacon_filter_average_energy =
596 stats->general.beacon_filter_average_energy;
Johannes Berg777c9b62015-01-14 17:58:57 +0100597
Emmanuel Grumbach38d5f662015-08-26 14:03:02 +0300598 iwl_mvm_update_rx_statistics(mvm, &stats->rx);
Johannes Berg777c9b62015-01-14 17:58:57 +0100599
Emmanuel Grumbach38d5f662015-08-26 14:03:02 +0300600 mvm->radio_stats.rx_time = le64_to_cpu(stats->general.rx_time);
601 mvm->radio_stats.tx_time = le64_to_cpu(stats->general.tx_time);
602 mvm->radio_stats.on_time_rf =
603 le64_to_cpu(stats->general.on_time_rf);
604 mvm->radio_stats.on_time_scan =
605 le64_to_cpu(stats->general.on_time_scan);
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100606
Emmanuel Grumbach38d5f662015-08-26 14:03:02 +0300607 data.general = &stats->general;
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300608
Emmanuel Grumbach5a756c22015-02-10 15:26:57 +0200609 iwl_mvm_rx_stats_check_trigger(mvm, pkt);
610
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300611 ieee80211_iterate_active_interfaces(mvm->hw,
612 IEEE80211_IFACE_ITER_NORMAL,
613 iwl_mvm_stat_iterator,
614 &data);
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100615 return;
Johannes Berg777c9b62015-01-14 17:58:57 +0100616 invalid:
617 IWL_ERR(mvm, "received invalid statistics size (%d)!\n",
618 iwl_rx_packet_payload_len(pkt));
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100619}
620
Johannes Berg04168412015-06-23 21:22:09 +0200621void iwl_mvm_rx_statistics(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100622{
623 iwl_mvm_handle_rx_statistics(mvm, rxb_addr(rxb));
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300624}