gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / net / wireless / intel / iwlwifi / mvm / rx.c
blob5ee33c8ae9d24cd55b38be4cf745a92fd19e85f3
1 /******************************************************************************
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.
6 * GPL LICENSE SUMMARY
8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
11 * Copyright(c) 2018 - 2019 Intel Corporation
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of version 2 of the GNU General Public License as
15 * published by the Free Software Foundation.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
22 * The full GNU General Public License is included in this distribution
23 * in the file called COPYING.
25 * Contact Information:
26 * Intel Linux Wireless <linuxwifi@intel.com>
27 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
29 * BSD LICENSE
31 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
32 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
33 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
34 * Copyright(c) 2018 - 2019 Intel Corporation
35 * All rights reserved.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
39 * are met:
41 * * Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * * Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in
45 * the documentation and/or other materials provided with the
46 * distribution.
47 * * Neither the name Intel Corporation nor the names of its
48 * contributors may be used to endorse or promote products derived
49 * from this software without specific prior written permission.
51 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
52 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
53 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
54 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
55 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
56 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
57 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
59 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
60 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
61 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62 *****************************************************************************/
63 #include <asm/unaligned.h>
64 #include <linux/etherdevice.h>
65 #include <linux/skbuff.h>
66 #include "iwl-trans.h"
67 #include "mvm.h"
68 #include "fw-api.h"
71 * iwl_mvm_rx_rx_phy_cmd - REPLY_RX_PHY_CMD handler
73 * Copies the phy information in mvm->last_phy_info, it will be used when the
74 * actual data will come from the fw in the next packet.
76 void iwl_mvm_rx_rx_phy_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
78 struct iwl_rx_packet *pkt = rxb_addr(rxb);
80 memcpy(&mvm->last_phy_info, pkt->data, sizeof(mvm->last_phy_info));
81 mvm->ampdu_ref++;
83 #ifdef CONFIG_IWLWIFI_DEBUGFS
84 if (mvm->last_phy_info.phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
85 spin_lock(&mvm->drv_stats_lock);
86 mvm->drv_rx_stats.ampdu_count++;
87 spin_unlock(&mvm->drv_stats_lock);
89 #endif
93 * iwl_mvm_pass_packet_to_mac80211 - builds the packet for mac80211
95 * Adds the rxb to a new skb and give it to mac80211
97 static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
98 struct ieee80211_sta *sta,
99 struct napi_struct *napi,
100 struct sk_buff *skb,
101 struct ieee80211_hdr *hdr, u16 len,
102 u8 crypt_len,
103 struct iwl_rx_cmd_buffer *rxb)
105 unsigned int hdrlen = ieee80211_hdrlen(hdr->frame_control);
106 unsigned int fraglen;
109 * The 'hdrlen' (plus the 8 bytes for the SNAP and the crypt_len,
110 * but those are all multiples of 4 long) all goes away, but we
111 * want the *end* of it, which is going to be the start of the IP
112 * header, to be aligned when it gets pulled in.
113 * The beginning of the skb->data is aligned on at least a 4-byte
114 * boundary after allocation. Everything here is aligned at least
115 * on a 2-byte boundary so we can just take hdrlen & 3 and pad by
116 * the result.
118 skb_reserve(skb, hdrlen & 3);
120 /* If frame is small enough to fit in skb->head, pull it completely.
121 * If not, only pull ieee80211_hdr (including crypto if present, and
122 * an additional 8 bytes for SNAP/ethertype, see below) so that
123 * splice() or TCP coalesce are more efficient.
125 * Since, in addition, ieee80211_data_to_8023() always pull in at
126 * least 8 bytes (possibly more for mesh) we can do the same here
127 * to save the cost of doing it later. That still doesn't pull in
128 * the actual IP header since the typical case has a SNAP header.
129 * If the latter changes (there are efforts in the standards group
130 * to do so) we should revisit this and ieee80211_data_to_8023().
132 hdrlen = (len <= skb_tailroom(skb)) ? len : hdrlen + crypt_len + 8;
134 skb_put_data(skb, hdr, hdrlen);
135 fraglen = len - hdrlen;
137 if (fraglen) {
138 int offset = (void *)hdr + hdrlen -
139 rxb_addr(rxb) + rxb_offset(rxb);
141 skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset,
142 fraglen, rxb->truesize);
145 ieee80211_rx_napi(mvm->hw, sta, skb, napi);
149 * iwl_mvm_get_signal_strength - use new rx PHY INFO API
150 * values are reported by the fw as positive values - need to negate
151 * to obtain their dBM. Account for missing antennas by replacing 0
152 * values by -256dBm: practically 0 power and a non-feasible 8 bit value.
154 static void iwl_mvm_get_signal_strength(struct iwl_mvm *mvm,
155 struct iwl_rx_phy_info *phy_info,
156 struct ieee80211_rx_status *rx_status)
158 int energy_a, energy_b, energy_c, max_energy;
159 u32 val;
161 val =
162 le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_ENERGY_ANT_ABC_IDX]);
163 energy_a = (val & IWL_RX_INFO_ENERGY_ANT_A_MSK) >>
164 IWL_RX_INFO_ENERGY_ANT_A_POS;
165 energy_a = energy_a ? -energy_a : S8_MIN;
166 energy_b = (val & IWL_RX_INFO_ENERGY_ANT_B_MSK) >>
167 IWL_RX_INFO_ENERGY_ANT_B_POS;
168 energy_b = energy_b ? -energy_b : S8_MIN;
169 energy_c = (val & IWL_RX_INFO_ENERGY_ANT_C_MSK) >>
170 IWL_RX_INFO_ENERGY_ANT_C_POS;
171 energy_c = energy_c ? -energy_c : S8_MIN;
172 max_energy = max(energy_a, energy_b);
173 max_energy = max(max_energy, energy_c);
175 IWL_DEBUG_STATS(mvm, "energy In A %d B %d C %d , and max %d\n",
176 energy_a, energy_b, energy_c, max_energy);
178 rx_status->signal = max_energy;
179 rx_status->chains = (le16_to_cpu(phy_info->phy_flags) &
180 RX_RES_PHY_FLAGS_ANTENNA)
181 >> RX_RES_PHY_FLAGS_ANTENNA_POS;
182 rx_status->chain_signal[0] = energy_a;
183 rx_status->chain_signal[1] = energy_b;
184 rx_status->chain_signal[2] = energy_c;
188 * iwl_mvm_set_mac80211_rx_flag - translate fw status to mac80211 format
189 * @mvm: the mvm object
190 * @hdr: 80211 header
191 * @stats: status in mac80211's format
192 * @rx_pkt_status: status coming from fw
194 * returns non 0 value if the packet should be dropped
196 static u32 iwl_mvm_set_mac80211_rx_flag(struct iwl_mvm *mvm,
197 struct ieee80211_hdr *hdr,
198 struct ieee80211_rx_status *stats,
199 u32 rx_pkt_status,
200 u8 *crypt_len)
202 if (!ieee80211_has_protected(hdr->frame_control) ||
203 (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
204 RX_MPDU_RES_STATUS_SEC_NO_ENC)
205 return 0;
207 /* packet was encrypted with unknown alg */
208 if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
209 RX_MPDU_RES_STATUS_SEC_ENC_ERR)
210 return 0;
212 switch (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) {
213 case RX_MPDU_RES_STATUS_SEC_CCM_ENC:
214 /* alg is CCM: check MIC only */
215 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
216 return -1;
218 stats->flag |= RX_FLAG_DECRYPTED;
219 *crypt_len = IEEE80211_CCMP_HDR_LEN;
220 return 0;
222 case RX_MPDU_RES_STATUS_SEC_TKIP_ENC:
223 /* Don't drop the frame and decrypt it in SW */
224 if (!fw_has_api(&mvm->fw->ucode_capa,
225 IWL_UCODE_TLV_API_DEPRECATE_TTAK) &&
226 !(rx_pkt_status & RX_MPDU_RES_STATUS_TTAK_OK))
227 return 0;
228 *crypt_len = IEEE80211_TKIP_IV_LEN;
229 /* fall through */
231 case RX_MPDU_RES_STATUS_SEC_WEP_ENC:
232 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_ICV_OK))
233 return -1;
235 stats->flag |= RX_FLAG_DECRYPTED;
236 if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
237 RX_MPDU_RES_STATUS_SEC_WEP_ENC)
238 *crypt_len = IEEE80211_WEP_IV_LEN;
239 return 0;
241 case RX_MPDU_RES_STATUS_SEC_EXT_ENC:
242 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
243 return -1;
244 stats->flag |= RX_FLAG_DECRYPTED;
245 return 0;
247 default:
248 /* Expected in monitor (not having the keys) */
249 if (!mvm->monitor_on)
250 IWL_ERR(mvm, "Unhandled alg: 0x%x\n", rx_pkt_status);
253 return 0;
256 static void iwl_mvm_rx_handle_tcm(struct iwl_mvm *mvm,
257 struct ieee80211_sta *sta,
258 struct ieee80211_hdr *hdr, u32 len,
259 struct iwl_rx_phy_info *phy_info,
260 u32 rate_n_flags)
262 struct iwl_mvm_sta *mvmsta;
263 struct iwl_mvm_tcm_mac *mdata;
264 int mac;
265 int ac = IEEE80211_AC_BE; /* treat non-QoS as BE */
266 struct iwl_mvm_vif *mvmvif;
267 /* expected throughput in 100Kbps, single stream, 20 MHz */
268 static const u8 thresh_tpt[] = {
269 9, 18, 30, 42, 60, 78, 90, 96, 120, 135,
271 u16 thr;
273 if (ieee80211_is_data_qos(hdr->frame_control))
274 ac = tid_to_mac80211_ac[ieee80211_get_tid(hdr)];
276 mvmsta = iwl_mvm_sta_from_mac80211(sta);
277 mac = mvmsta->mac_id_n_color & FW_CTXT_ID_MSK;
279 if (time_after(jiffies, mvm->tcm.ts + MVM_TCM_PERIOD))
280 schedule_delayed_work(&mvm->tcm.work, 0);
281 mdata = &mvm->tcm.data[mac];
282 mdata->rx.pkts[ac]++;
284 /* count the airtime only once for each ampdu */
285 if (mdata->rx.last_ampdu_ref != mvm->ampdu_ref) {
286 mdata->rx.last_ampdu_ref = mvm->ampdu_ref;
287 mdata->rx.airtime += le16_to_cpu(phy_info->frame_time);
290 if (!(rate_n_flags & (RATE_MCS_HT_MSK | RATE_MCS_VHT_MSK)))
291 return;
293 mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
295 if (mdata->opened_rx_ba_sessions ||
296 mdata->uapsd_nonagg_detect.detected ||
297 (!mvmvif->queue_params[IEEE80211_AC_VO].uapsd &&
298 !mvmvif->queue_params[IEEE80211_AC_VI].uapsd &&
299 !mvmvif->queue_params[IEEE80211_AC_BE].uapsd &&
300 !mvmvif->queue_params[IEEE80211_AC_BK].uapsd) ||
301 mvmsta->sta_id != mvmvif->ap_sta_id)
302 return;
304 if (rate_n_flags & RATE_MCS_HT_MSK) {
305 thr = thresh_tpt[rate_n_flags & RATE_HT_MCS_RATE_CODE_MSK];
306 thr *= 1 + ((rate_n_flags & RATE_HT_MCS_NSS_MSK) >>
307 RATE_HT_MCS_NSS_POS);
308 } else {
309 if (WARN_ON((rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK) >=
310 ARRAY_SIZE(thresh_tpt)))
311 return;
312 thr = thresh_tpt[rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK];
313 thr *= 1 + ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
314 RATE_VHT_MCS_NSS_POS);
317 thr <<= ((rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) >>
318 RATE_MCS_CHAN_WIDTH_POS);
320 mdata->uapsd_nonagg_detect.rx_bytes += len;
321 ewma_rate_add(&mdata->uapsd_nonagg_detect.rate, thr);
324 static void iwl_mvm_rx_csum(struct ieee80211_sta *sta,
325 struct sk_buff *skb,
326 u32 status)
328 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
329 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
331 if (mvmvif->features & NETIF_F_RXCSUM &&
332 status & RX_MPDU_RES_STATUS_CSUM_DONE &&
333 status & RX_MPDU_RES_STATUS_CSUM_OK)
334 skb->ip_summed = CHECKSUM_UNNECESSARY;
338 * iwl_mvm_rx_rx_mpdu - REPLY_RX_MPDU_CMD handler
340 * Handles the actual data of the Rx packet from the fw
342 void iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct napi_struct *napi,
343 struct iwl_rx_cmd_buffer *rxb)
345 struct ieee80211_hdr *hdr;
346 struct ieee80211_rx_status *rx_status;
347 struct iwl_rx_packet *pkt = rxb_addr(rxb);
348 struct iwl_rx_phy_info *phy_info;
349 struct iwl_rx_mpdu_res_start *rx_res;
350 struct ieee80211_sta *sta = NULL;
351 struct sk_buff *skb;
352 u32 len;
353 u32 rate_n_flags;
354 u32 rx_pkt_status;
355 u8 crypt_len = 0;
357 phy_info = &mvm->last_phy_info;
358 rx_res = (struct iwl_rx_mpdu_res_start *)pkt->data;
359 hdr = (struct ieee80211_hdr *)(pkt->data + sizeof(*rx_res));
360 len = le16_to_cpu(rx_res->byte_count);
361 rx_pkt_status = get_unaligned_le32((__le32 *)
362 (pkt->data + sizeof(*rx_res) + len));
364 /* Dont use dev_alloc_skb(), we'll have enough headroom once
365 * ieee80211_hdr pulled.
367 skb = alloc_skb(128, GFP_ATOMIC);
368 if (!skb) {
369 IWL_ERR(mvm, "alloc_skb failed\n");
370 return;
373 rx_status = IEEE80211_SKB_RXCB(skb);
376 * drop the packet if it has failed being decrypted by HW
378 if (iwl_mvm_set_mac80211_rx_flag(mvm, hdr, rx_status, rx_pkt_status,
379 &crypt_len)) {
380 IWL_DEBUG_DROP(mvm, "Bad decryption results 0x%08x\n",
381 rx_pkt_status);
382 kfree_skb(skb);
383 return;
387 * Keep packets with CRC errors (and with overrun) for monitor mode
388 * (otherwise the firmware discards them) but mark them as bad.
390 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_CRC_OK) ||
391 !(rx_pkt_status & RX_MPDU_RES_STATUS_OVERRUN_OK)) {
392 IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n", rx_pkt_status);
393 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
396 /* This will be used in several places later */
397 rate_n_flags = le32_to_cpu(phy_info->rate_n_flags);
399 /* rx_status carries information about the packet to mac80211 */
400 rx_status->mactime = le64_to_cpu(phy_info->timestamp);
401 rx_status->device_timestamp = le32_to_cpu(phy_info->system_timestamp);
402 rx_status->band =
403 (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ?
404 NL80211_BAND_2GHZ : NL80211_BAND_5GHZ;
405 rx_status->freq =
406 ieee80211_channel_to_frequency(le16_to_cpu(phy_info->channel),
407 rx_status->band);
409 /* TSF as indicated by the firmware is at INA time */
410 rx_status->flag |= RX_FLAG_MACTIME_PLCP_START;
412 iwl_mvm_get_signal_strength(mvm, phy_info, rx_status);
414 IWL_DEBUG_STATS_LIMIT(mvm, "Rssi %d, TSF %llu\n", rx_status->signal,
415 (unsigned long long)rx_status->mactime);
417 rcu_read_lock();
418 if (rx_pkt_status & RX_MPDU_RES_STATUS_SRC_STA_FOUND) {
419 u32 id = rx_pkt_status & RX_MPDU_RES_STATUS_STA_ID_MSK;
421 id >>= RX_MDPU_RES_STATUS_STA_ID_SHIFT;
423 if (!WARN_ON_ONCE(id >= ARRAY_SIZE(mvm->fw_id_to_mac_id))) {
424 sta = rcu_dereference(mvm->fw_id_to_mac_id[id]);
425 if (IS_ERR(sta))
426 sta = NULL;
428 } else if (!is_multicast_ether_addr(hdr->addr2)) {
429 /* This is fine since we prevent two stations with the same
430 * address from being added.
432 sta = ieee80211_find_sta_by_ifaddr(mvm->hw, hdr->addr2, NULL);
435 if (sta) {
436 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
437 struct ieee80211_vif *tx_blocked_vif =
438 rcu_dereference(mvm->csa_tx_blocked_vif);
439 struct iwl_fw_dbg_trigger_tlv *trig;
440 struct ieee80211_vif *vif = mvmsta->vif;
442 /* We have tx blocked stations (with CS bit). If we heard
443 * frames from a blocked station on a new channel we can
444 * TX to it again.
446 if (unlikely(tx_blocked_vif) && vif == tx_blocked_vif) {
447 struct iwl_mvm_vif *mvmvif =
448 iwl_mvm_vif_from_mac80211(tx_blocked_vif);
450 if (mvmvif->csa_target_freq == rx_status->freq)
451 iwl_mvm_sta_modify_disable_tx_ap(mvm, sta,
452 false);
455 rs_update_last_rssi(mvm, mvmsta, rx_status);
457 trig = iwl_fw_dbg_trigger_on(&mvm->fwrt,
458 ieee80211_vif_to_wdev(vif),
459 FW_DBG_TRIGGER_RSSI);
461 if (trig && ieee80211_is_beacon(hdr->frame_control)) {
462 struct iwl_fw_dbg_trigger_low_rssi *rssi_trig;
463 s32 rssi;
465 rssi_trig = (void *)trig->data;
466 rssi = le32_to_cpu(rssi_trig->rssi);
468 if (rx_status->signal < rssi)
469 iwl_fw_dbg_collect_trig(&mvm->fwrt, trig,
470 NULL);
473 if (!mvm->tcm.paused && len >= sizeof(*hdr) &&
474 !is_multicast_ether_addr(hdr->addr1) &&
475 ieee80211_is_data(hdr->frame_control))
476 iwl_mvm_rx_handle_tcm(mvm, sta, hdr, len, phy_info,
477 rate_n_flags);
479 if (ieee80211_is_data(hdr->frame_control))
480 iwl_mvm_rx_csum(sta, skb, rx_pkt_status);
482 rcu_read_unlock();
484 /* set the preamble flag if appropriate */
485 if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_SHORT_PREAMBLE))
486 rx_status->enc_flags |= RX_ENC_FLAG_SHORTPRE;
488 if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
490 * We know which subframes of an A-MPDU belong
491 * together since we get a single PHY response
492 * from the firmware for all of them
494 rx_status->flag |= RX_FLAG_AMPDU_DETAILS;
495 rx_status->ampdu_reference = mvm->ampdu_ref;
498 /* Set up the HT phy flags */
499 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
500 case RATE_MCS_CHAN_WIDTH_20:
501 break;
502 case RATE_MCS_CHAN_WIDTH_40:
503 rx_status->bw = RATE_INFO_BW_40;
504 break;
505 case RATE_MCS_CHAN_WIDTH_80:
506 rx_status->bw = RATE_INFO_BW_80;
507 break;
508 case RATE_MCS_CHAN_WIDTH_160:
509 rx_status->bw = RATE_INFO_BW_160;
510 break;
512 if (!(rate_n_flags & RATE_MCS_CCK_MSK) &&
513 rate_n_flags & RATE_MCS_SGI_MSK)
514 rx_status->enc_flags |= RX_ENC_FLAG_SHORT_GI;
515 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
516 rx_status->enc_flags |= RX_ENC_FLAG_HT_GF;
517 if (rate_n_flags & RATE_MCS_LDPC_MSK)
518 rx_status->enc_flags |= RX_ENC_FLAG_LDPC;
519 if (rate_n_flags & RATE_MCS_HT_MSK) {
520 u8 stbc = (rate_n_flags & RATE_MCS_STBC_MSK) >>
521 RATE_MCS_STBC_POS;
522 rx_status->encoding = RX_ENC_HT;
523 rx_status->rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
524 rx_status->enc_flags |= stbc << RX_ENC_FLAG_STBC_SHIFT;
525 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
526 u8 stbc = (rate_n_flags & RATE_MCS_STBC_MSK) >>
527 RATE_MCS_STBC_POS;
528 rx_status->nss =
529 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
530 RATE_VHT_MCS_NSS_POS) + 1;
531 rx_status->rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
532 rx_status->encoding = RX_ENC_VHT;
533 rx_status->enc_flags |= stbc << RX_ENC_FLAG_STBC_SHIFT;
534 if (rate_n_flags & RATE_MCS_BF_MSK)
535 rx_status->enc_flags |= RX_ENC_FLAG_BF;
536 } else {
537 int rate = iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
538 rx_status->band);
540 if (WARN(rate < 0 || rate > 0xFF,
541 "Invalid rate flags 0x%x, band %d,\n",
542 rate_n_flags, rx_status->band)) {
543 kfree_skb(skb);
544 return;
546 rx_status->rate_idx = rate;
549 #ifdef CONFIG_IWLWIFI_DEBUGFS
550 iwl_mvm_update_frame_stats(mvm, rate_n_flags,
551 rx_status->flag & RX_FLAG_AMPDU_DETAILS);
552 #endif
554 if (unlikely((ieee80211_is_beacon(hdr->frame_control) ||
555 ieee80211_is_probe_resp(hdr->frame_control)) &&
556 mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED))
557 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_FOUND;
559 if (unlikely(ieee80211_is_beacon(hdr->frame_control) ||
560 ieee80211_is_probe_resp(hdr->frame_control)))
561 rx_status->boottime_ns = ktime_get_boottime_ns();
563 iwl_mvm_pass_packet_to_mac80211(mvm, sta, napi, skb, hdr, len,
564 crypt_len, rxb);
567 struct iwl_mvm_stat_data {
568 struct iwl_mvm *mvm;
569 __le32 mac_id;
570 u8 beacon_filter_average_energy;
571 void *general;
574 static void iwl_mvm_stat_iterator(void *_data, u8 *mac,
575 struct ieee80211_vif *vif)
577 struct iwl_mvm_stat_data *data = _data;
578 struct iwl_mvm *mvm = data->mvm;
579 int sig = -data->beacon_filter_average_energy;
580 int last_event;
581 int thold = vif->bss_conf.cqm_rssi_thold;
582 int hyst = vif->bss_conf.cqm_rssi_hyst;
583 u16 id = le32_to_cpu(data->mac_id);
584 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
585 u16 vif_id = mvmvif->id;
587 /* This doesn't need the MAC ID check since it's not taking the
588 * data copied into the "data" struct, but rather the data from
589 * the notification directly.
591 if (iwl_mvm_has_new_rx_stats_api(mvm)) {
592 struct mvm_statistics_general *general =
593 data->general;
595 mvmvif->beacon_stats.num_beacons =
596 le32_to_cpu(general->beacon_counter[vif_id]);
597 mvmvif->beacon_stats.avg_signal =
598 -general->beacon_average_energy[vif_id];
599 } else {
600 struct mvm_statistics_general_v8 *general =
601 data->general;
603 mvmvif->beacon_stats.num_beacons =
604 le32_to_cpu(general->beacon_counter[vif_id]);
605 mvmvif->beacon_stats.avg_signal =
606 -general->beacon_average_energy[vif_id];
609 if (mvmvif->id != id)
610 return;
612 if (vif->type != NL80211_IFTYPE_STATION)
613 return;
615 if (sig == 0) {
616 IWL_DEBUG_RX(mvm, "RSSI is 0 - skip signal based decision\n");
617 return;
620 mvmvif->bf_data.ave_beacon_signal = sig;
622 /* BT Coex */
623 if (mvmvif->bf_data.bt_coex_min_thold !=
624 mvmvif->bf_data.bt_coex_max_thold) {
625 last_event = mvmvif->bf_data.last_bt_coex_event;
626 if (sig > mvmvif->bf_data.bt_coex_max_thold &&
627 (last_event <= mvmvif->bf_data.bt_coex_min_thold ||
628 last_event == 0)) {
629 mvmvif->bf_data.last_bt_coex_event = sig;
630 IWL_DEBUG_RX(mvm, "cqm_iterator bt coex high %d\n",
631 sig);
632 iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_HIGH);
633 } else if (sig < mvmvif->bf_data.bt_coex_min_thold &&
634 (last_event >= mvmvif->bf_data.bt_coex_max_thold ||
635 last_event == 0)) {
636 mvmvif->bf_data.last_bt_coex_event = sig;
637 IWL_DEBUG_RX(mvm, "cqm_iterator bt coex low %d\n",
638 sig);
639 iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_LOW);
643 if (!(vif->driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI))
644 return;
646 /* CQM Notification */
647 last_event = mvmvif->bf_data.last_cqm_event;
648 if (thold && sig < thold && (last_event == 0 ||
649 sig < last_event - hyst)) {
650 mvmvif->bf_data.last_cqm_event = sig;
651 IWL_DEBUG_RX(mvm, "cqm_iterator cqm low %d\n",
652 sig);
653 ieee80211_cqm_rssi_notify(
654 vif,
655 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
656 sig,
657 GFP_KERNEL);
658 } else if (sig > thold &&
659 (last_event == 0 || sig > last_event + hyst)) {
660 mvmvif->bf_data.last_cqm_event = sig;
661 IWL_DEBUG_RX(mvm, "cqm_iterator cqm high %d\n",
662 sig);
663 ieee80211_cqm_rssi_notify(
664 vif,
665 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
666 sig,
667 GFP_KERNEL);
671 static inline void
672 iwl_mvm_rx_stats_check_trigger(struct iwl_mvm *mvm, struct iwl_rx_packet *pkt)
674 struct iwl_fw_dbg_trigger_tlv *trig;
675 struct iwl_fw_dbg_trigger_stats *trig_stats;
676 u32 trig_offset, trig_thold;
678 trig = iwl_fw_dbg_trigger_on(&mvm->fwrt, NULL, FW_DBG_TRIGGER_STATS);
679 if (!trig)
680 return;
682 trig_stats = (void *)trig->data;
684 trig_offset = le32_to_cpu(trig_stats->stop_offset);
685 trig_thold = le32_to_cpu(trig_stats->stop_threshold);
687 if (WARN_ON_ONCE(trig_offset >= iwl_rx_packet_payload_len(pkt)))
688 return;
690 if (le32_to_cpup((__le32 *) (pkt->data + trig_offset)) < trig_thold)
691 return;
693 iwl_fw_dbg_collect_trig(&mvm->fwrt, trig, NULL);
696 void iwl_mvm_handle_rx_statistics(struct iwl_mvm *mvm,
697 struct iwl_rx_packet *pkt)
699 struct iwl_mvm_stat_data data = {
700 .mvm = mvm,
702 int expected_size;
703 int i;
704 u8 *energy;
705 __le32 *bytes;
706 __le32 *air_time;
707 __le32 flags;
709 if (!iwl_mvm_has_new_rx_stats_api(mvm)) {
710 if (iwl_mvm_has_new_rx_api(mvm))
711 expected_size = sizeof(struct iwl_notif_statistics_v11);
712 else
713 expected_size = sizeof(struct iwl_notif_statistics_v10);
714 } else {
715 expected_size = sizeof(struct iwl_notif_statistics);
718 if (WARN_ONCE(iwl_rx_packet_payload_len(pkt) != expected_size,
719 "received invalid statistics size (%d)!\n",
720 iwl_rx_packet_payload_len(pkt)))
721 return;
723 if (!iwl_mvm_has_new_rx_stats_api(mvm)) {
724 struct iwl_notif_statistics_v11 *stats = (void *)&pkt->data;
726 data.mac_id = stats->rx.general.mac_id;
727 data.beacon_filter_average_energy =
728 stats->general.common.beacon_filter_average_energy;
730 mvm->rx_stats_v3 = stats->rx;
732 mvm->radio_stats.rx_time =
733 le64_to_cpu(stats->general.common.rx_time);
734 mvm->radio_stats.tx_time =
735 le64_to_cpu(stats->general.common.tx_time);
736 mvm->radio_stats.on_time_rf =
737 le64_to_cpu(stats->general.common.on_time_rf);
738 mvm->radio_stats.on_time_scan =
739 le64_to_cpu(stats->general.common.on_time_scan);
741 data.general = &stats->general;
743 flags = stats->flag;
744 } else {
745 struct iwl_notif_statistics *stats = (void *)&pkt->data;
747 data.mac_id = stats->rx.general.mac_id;
748 data.beacon_filter_average_energy =
749 stats->general.common.beacon_filter_average_energy;
751 mvm->rx_stats = stats->rx;
753 mvm->radio_stats.rx_time =
754 le64_to_cpu(stats->general.common.rx_time);
755 mvm->radio_stats.tx_time =
756 le64_to_cpu(stats->general.common.tx_time);
757 mvm->radio_stats.on_time_rf =
758 le64_to_cpu(stats->general.common.on_time_rf);
759 mvm->radio_stats.on_time_scan =
760 le64_to_cpu(stats->general.common.on_time_scan);
762 data.general = &stats->general;
764 flags = stats->flag;
767 iwl_mvm_rx_stats_check_trigger(mvm, pkt);
769 ieee80211_iterate_active_interfaces(mvm->hw,
770 IEEE80211_IFACE_ITER_NORMAL,
771 iwl_mvm_stat_iterator,
772 &data);
774 if (!iwl_mvm_has_new_rx_api(mvm))
775 return;
777 if (!iwl_mvm_has_new_rx_stats_api(mvm)) {
778 struct iwl_notif_statistics_v11 *v11 = (void *)&pkt->data;
780 energy = (void *)&v11->load_stats.avg_energy;
781 bytes = (void *)&v11->load_stats.byte_count;
782 air_time = (void *)&v11->load_stats.air_time;
783 } else {
784 struct iwl_notif_statistics *stats = (void *)&pkt->data;
786 energy = (void *)&stats->load_stats.avg_energy;
787 bytes = (void *)&stats->load_stats.byte_count;
788 air_time = (void *)&stats->load_stats.air_time;
791 rcu_read_lock();
792 for (i = 0; i < ARRAY_SIZE(mvm->fw_id_to_mac_id); i++) {
793 struct iwl_mvm_sta *sta;
795 if (!energy[i])
796 continue;
798 sta = iwl_mvm_sta_from_staid_rcu(mvm, i);
799 if (!sta)
800 continue;
801 sta->avg_energy = energy[i];
803 rcu_read_unlock();
806 * Don't update in case the statistics are not cleared, since
807 * we will end up counting twice the same airtime, once in TCM
808 * request and once in statistics notification.
810 if (!(le32_to_cpu(flags) & IWL_STATISTICS_REPLY_FLG_CLEAR))
811 return;
813 spin_lock(&mvm->tcm.lock);
814 for (i = 0; i < NUM_MAC_INDEX_DRIVER; i++) {
815 struct iwl_mvm_tcm_mac *mdata = &mvm->tcm.data[i];
816 u32 airtime = le32_to_cpu(air_time[i]);
817 u32 rx_bytes = le32_to_cpu(bytes[i]);
819 mdata->uapsd_nonagg_detect.rx_bytes += rx_bytes;
820 if (airtime) {
821 /* re-init every time to store rate from FW */
822 ewma_rate_init(&mdata->uapsd_nonagg_detect.rate);
823 ewma_rate_add(&mdata->uapsd_nonagg_detect.rate,
824 rx_bytes * 8 / airtime);
827 mdata->rx.airtime += airtime;
829 spin_unlock(&mvm->tcm.lock);
832 void iwl_mvm_rx_statistics(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
834 iwl_mvm_handle_rx_statistics(mvm, rxb_addr(rxb));
837 void iwl_mvm_window_status_notif(struct iwl_mvm *mvm,
838 struct iwl_rx_cmd_buffer *rxb)
840 struct iwl_rx_packet *pkt = rxb_addr(rxb);
841 struct iwl_ba_window_status_notif *notif = (void *)pkt->data;
842 int i;
843 u32 pkt_len = iwl_rx_packet_payload_len(pkt);
845 if (WARN_ONCE(pkt_len != sizeof(*notif),
846 "Received window status notification of wrong size (%u)\n",
847 pkt_len))
848 return;
850 rcu_read_lock();
851 for (i = 0; i < BA_WINDOW_STREAMS_MAX; i++) {
852 struct ieee80211_sta *sta;
853 u8 sta_id, tid;
854 u64 bitmap;
855 u32 ssn;
856 u16 ratid;
857 u16 received_mpdu;
859 ratid = le16_to_cpu(notif->ra_tid[i]);
860 /* check that this TID is valid */
861 if (!(ratid & BA_WINDOW_STATUS_VALID_MSK))
862 continue;
864 received_mpdu = le16_to_cpu(notif->mpdu_rx_count[i]);
865 if (received_mpdu == 0)
866 continue;
868 tid = ratid & BA_WINDOW_STATUS_TID_MSK;
869 /* get the station */
870 sta_id = (ratid & BA_WINDOW_STATUS_STA_ID_MSK)
871 >> BA_WINDOW_STATUS_STA_ID_POS;
872 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
873 if (IS_ERR_OR_NULL(sta))
874 continue;
875 bitmap = le64_to_cpu(notif->bitmap[i]);
876 ssn = le32_to_cpu(notif->start_seq_num[i]);
878 /* update mac80211 with the bitmap for the reordering buffer */
879 ieee80211_mark_rx_ba_filtered_frames(sta, tid, ssn, bitmap,
880 received_mpdu);
882 rcu_read_unlock();