iwlwifi: mvm: move fw-dbg code to separate file
[deliverable/linux.git] / drivers / net / wireless / intel / iwlwifi / mvm / rx.c
CommitLineData
8ca151b5
JB
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 *
51368bf7 8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
777c9b6b 9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
8ca151b5
JB
10 *
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
410dc5aa 26 * in the file called COPYING.
8ca151b5
JB
27 *
28 * Contact Information:
29 * Intel Linux Wireless <ilw@linux.intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
51368bf7 34 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
777c9b6b 35 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
8ca151b5
JB
36 * 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 *****************************************************************************/
93190fb0 64#include <linux/skbuff.h>
8ca151b5 65#include "iwl-trans.h"
8ca151b5
JB
66#include "mvm.h"
67#include "fw-api.h"
2f89a5d7 68#include "fw-dbg.h"
8ca151b5
JB
69
70/*
71 * iwl_mvm_rx_rx_phy_cmd - REPLY_RX_PHY_CMD handler
72 *
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.
75 */
0416841d 76void iwl_mvm_rx_rx_phy_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
8ca151b5
JB
77{
78 struct iwl_rx_packet *pkt = rxb_addr(rxb);
79
80 memcpy(&mvm->last_phy_info, pkt->data, sizeof(mvm->last_phy_info));
81 mvm->ampdu_ref++;
5fc0f76c
ES
82
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);
88 }
89#endif
8ca151b5
JB
90}
91
92/*
93 * iwl_mvm_pass_packet_to_mac80211 - builds the packet for mac80211
94 *
95 * Adds the rxb to a new skb and give it to mac80211
96 */
97static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
1be5d8cc 98 struct napi_struct *napi,
d0963b5d 99 struct sk_buff *skb,
8ca151b5 100 struct ieee80211_hdr *hdr, u16 len,
eb96ccb1 101 u32 ampdu_status, u8 crypt_len,
d0963b5d 102 struct iwl_rx_cmd_buffer *rxb)
8ca151b5 103{
8ca151b5
JB
104 unsigned int hdrlen, fraglen;
105
8ca151b5 106 /* If frame is small enough to fit in skb->head, pull it completely.
3771a890
JB
107 * If not, only pull ieee80211_hdr (including crypto if present, and
108 * an additional 8 bytes for SNAP/ethertype, see below) so that
109 * splice() or TCP coalesce are more efficient.
110 *
111 * Since, in addition, ieee80211_data_to_8023() always pull in at
112 * least 8 bytes (possibly more for mesh) we can do the same here
113 * to save the cost of doing it later. That still doesn't pull in
114 * the actual IP header since the typical case has a SNAP header.
115 * If the latter changes (there are efforts in the standards group
116 * to do so) we should revisit this and ieee80211_data_to_8023().
8ca151b5 117 */
3771a890
JB
118 hdrlen = (len <= skb_tailroom(skb)) ? len :
119 sizeof(*hdr) + crypt_len + 8;
8ca151b5
JB
120
121 memcpy(skb_put(skb, hdrlen), hdr, hdrlen);
122 fraglen = len - hdrlen;
123
124 if (fraglen) {
125 int offset = (void *)hdr + hdrlen -
126 rxb_addr(rxb) + rxb_offset(rxb);
127
128 skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset,
129 fraglen, rxb->truesize);
130 }
131
1be5d8cc 132 ieee80211_rx_napi(mvm->hw, skb, napi);
8ca151b5
JB
133}
134
a2d7b870
AA
135/*
136 * iwl_mvm_get_signal_strength - use new rx PHY INFO API
17dbe564
AA
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.
a2d7b870 140 */
226eb8cd
JB
141static 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)
a2d7b870
AA
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]);
17dbe564
AA
150 energy_a = (val & IWL_RX_INFO_ENERGY_ANT_A_MSK) >>
151 IWL_RX_INFO_ENERGY_ANT_A_POS;
2cddddc5 152 energy_a = energy_a ? -energy_a : S8_MIN;
17dbe564
AA
153 energy_b = (val & IWL_RX_INFO_ENERGY_ANT_B_MSK) >>
154 IWL_RX_INFO_ENERGY_ANT_B_POS;
2cddddc5 155 energy_b = energy_b ? -energy_b : S8_MIN;
17dbe564
AA
156 energy_c = (val & IWL_RX_INFO_ENERGY_ANT_C_MSK) >>
157 IWL_RX_INFO_ENERGY_ANT_C_POS;
2cddddc5 158 energy_c = energy_c ? -energy_c : S8_MIN;
a2d7b870
AA
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
226eb8cd
JB
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;
a2d7b870
AA
172}
173
8ca151b5
JB
174/*
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 */
183static u32 iwl_mvm_set_mac80211_rx_flag(struct iwl_mvm *mvm,
184 struct ieee80211_hdr *hdr,
185 struct ieee80211_rx_status *stats,
eb96ccb1
JB
186 u32 rx_pkt_status,
187 u8 *crypt_len)
8ca151b5
JB
188{
189 if (!ieee80211_has_protected(hdr->frame_control) ||
190 (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
191 RX_MPDU_RES_STATUS_SEC_NO_ENC)
192 return 0;
193
194 /* packet was encrypted with unknown alg */
195 if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
196 RX_MPDU_RES_STATUS_SEC_ENC_ERR)
197 return 0;
198
199 switch (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) {
200 case RX_MPDU_RES_STATUS_SEC_CCM_ENC:
201 /* alg is CCM: check MIC only */
202 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
203 return -1;
204
205 stats->flag |= RX_FLAG_DECRYPTED;
eb96ccb1 206 *crypt_len = IEEE80211_CCMP_HDR_LEN;
8ca151b5
JB
207 return 0;
208
209 case RX_MPDU_RES_STATUS_SEC_TKIP_ENC:
210 /* Don't drop the frame and decrypt it in SW */
211 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_TTAK_OK))
212 return 0;
eb96ccb1 213 *crypt_len = IEEE80211_TKIP_IV_LEN;
8ca151b5
JB
214 /* fall through if TTAK OK */
215
216 case RX_MPDU_RES_STATUS_SEC_WEP_ENC:
217 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_ICV_OK))
218 return -1;
219
220 stats->flag |= RX_FLAG_DECRYPTED;
eb96ccb1
JB
221 if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
222 RX_MPDU_RES_STATUS_SEC_WEP_ENC)
223 *crypt_len = IEEE80211_WEP_IV_LEN;
8ca151b5
JB
224 return 0;
225
e36e5433
MS
226 case RX_MPDU_RES_STATUS_SEC_EXT_ENC:
227 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
228 return -1;
229 stats->flag |= RX_FLAG_DECRYPTED;
230 return 0;
231
8ca151b5
JB
232 default:
233 IWL_ERR(mvm, "Unhandled alg: 0x%x\n", rx_pkt_status);
234 }
235
236 return 0;
237}
238
93190fb0
AA
239static void iwl_mvm_rx_csum(struct ieee80211_sta *sta,
240 struct sk_buff *skb,
241 u32 status)
242{
243 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
244 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
245
246 if (mvmvif->features & NETIF_F_RXCSUM &&
247 status & RX_MPDU_RES_STATUS_CSUM_DONE &&
248 status & RX_MPDU_RES_STATUS_CSUM_OK)
249 skb->ip_summed = CHECKSUM_UNNECESSARY;
250}
251
8ca151b5
JB
252/*
253 * iwl_mvm_rx_rx_mpdu - REPLY_RX_MPDU_CMD handler
254 *
255 * Handles the actual data of the Rx packet from the fw
256 */
1be5d8cc
JB
257void iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct napi_struct *napi,
258 struct iwl_rx_cmd_buffer *rxb)
8ca151b5
JB
259{
260 struct ieee80211_hdr *hdr;
d0963b5d 261 struct ieee80211_rx_status *rx_status;
8ca151b5
JB
262 struct iwl_rx_packet *pkt = rxb_addr(rxb);
263 struct iwl_rx_phy_info *phy_info;
264 struct iwl_rx_mpdu_res_start *rx_res;
361dbec8 265 struct ieee80211_sta *sta;
d0963b5d 266 struct sk_buff *skb;
8ca151b5
JB
267 u32 len;
268 u32 ampdu_status;
269 u32 rate_n_flags;
270 u32 rx_pkt_status;
eb96ccb1 271 u8 crypt_len = 0;
8ca151b5
JB
272
273 phy_info = &mvm->last_phy_info;
274 rx_res = (struct iwl_rx_mpdu_res_start *)pkt->data;
275 hdr = (struct ieee80211_hdr *)(pkt->data + sizeof(*rx_res));
276 len = le16_to_cpu(rx_res->byte_count);
277 rx_pkt_status = le32_to_cpup((__le32 *)
278 (pkt->data + sizeof(*rx_res) + len));
279
d0963b5d
JB
280 /* Dont use dev_alloc_skb(), we'll have enough headroom once
281 * ieee80211_hdr pulled.
282 */
283 skb = alloc_skb(128, GFP_ATOMIC);
284 if (!skb) {
285 IWL_ERR(mvm, "alloc_skb failed\n");
0416841d 286 return;
d0963b5d
JB
287 }
288
289 rx_status = IEEE80211_SKB_RXCB(skb);
8ca151b5
JB
290
291 /*
292 * drop the packet if it has failed being decrypted by HW
293 */
eb96ccb1
JB
294 if (iwl_mvm_set_mac80211_rx_flag(mvm, hdr, rx_status, rx_pkt_status,
295 &crypt_len)) {
8ca151b5
JB
296 IWL_DEBUG_DROP(mvm, "Bad decryption results 0x%08x\n",
297 rx_pkt_status);
d0963b5d 298 kfree_skb(skb);
0416841d 299 return;
8ca151b5
JB
300 }
301
fb8b8ee1
JB
302 /*
303 * Keep packets with CRC errors (and with overrun) for monitor mode
304 * (otherwise the firmware discards them) but mark them as bad.
305 */
8ca151b5
JB
306 if (!(rx_pkt_status & RX_MPDU_RES_STATUS_CRC_OK) ||
307 !(rx_pkt_status & RX_MPDU_RES_STATUS_OVERRUN_OK)) {
308 IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n", rx_pkt_status);
d0963b5d 309 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
8ca151b5
JB
310 }
311
312 /* This will be used in several places later */
313 rate_n_flags = le32_to_cpu(phy_info->rate_n_flags);
314
315 /* rx_status carries information about the packet to mac80211 */
d0963b5d
JB
316 rx_status->mactime = le64_to_cpu(phy_info->timestamp);
317 rx_status->device_timestamp = le32_to_cpu(phy_info->system_timestamp);
318 rx_status->band =
8ca151b5
JB
319 (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ?
320 IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
d0963b5d 321 rx_status->freq =
8ca151b5 322 ieee80211_channel_to_frequency(le16_to_cpu(phy_info->channel),
d0963b5d 323 rx_status->band);
8ca151b5
JB
324 /*
325 * TSF as indicated by the fw is at INA time, but mac80211 expects the
326 * TSF at the beginning of the MPDU.
327 */
d0963b5d 328 /*rx_status->flag |= RX_FLAG_MACTIME_MPDU;*/
8ca151b5 329
d0963b5d 330 iwl_mvm_get_signal_strength(mvm, phy_info, rx_status);
8ca151b5 331
d0963b5d
JB
332 IWL_DEBUG_STATS_LIMIT(mvm, "Rssi %d, TSF %llu\n", rx_status->signal,
333 (unsigned long long)rx_status->mactime);
8ca151b5 334
361dbec8
ES
335 rcu_read_lock();
336 /*
337 * We have tx blocked stations (with CS bit). If we heard frames from
338 * a blocked station on a new channel we can TX to it again.
339 */
340 if (unlikely(mvm->csa_tx_block_bcn_timeout)) {
341 sta = ieee80211_find_sta(
342 rcu_dereference(mvm->csa_tx_blocked_vif), hdr->addr2);
343 if (sta)
344 iwl_mvm_sta_modify_disable_tx_ap(mvm, sta, false);
345 }
346
347 /* This is fine since we don't support multiple AP interfaces */
348 sta = ieee80211_find_sta_by_ifaddr(mvm->hw, hdr->addr2, NULL);
349 if (sta) {
7c0ebd78
JB
350 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
351
d0963b5d 352 rs_update_last_rssi(mvm, &mvmsta->lq_sta, rx_status);
3ec50b5e
EG
353
354 if (iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_RSSI) &&
355 ieee80211_is_beacon(hdr->frame_control)) {
356 struct iwl_fw_dbg_trigger_tlv *trig;
357 struct iwl_fw_dbg_trigger_low_rssi *rssi_trig;
358 bool trig_check;
359 s32 rssi;
360
361 trig = iwl_fw_dbg_get_trigger(mvm->fw,
362 FW_DBG_TRIGGER_RSSI);
363 rssi_trig = (void *)trig->data;
364 rssi = le32_to_cpu(rssi_trig->rssi);
365
366 trig_check =
367 iwl_fw_dbg_trigger_check_stop(mvm, mvmsta->vif,
368 trig);
369 if (trig_check && rx_status->signal < rssi)
5d4f929e 370 iwl_mvm_fw_dbg_collect_trig(mvm, trig, NULL);
3ec50b5e 371 }
361dbec8
ES
372 }
373
93190fb0
AA
374 if (sta && ieee80211_is_data(hdr->frame_control))
375 iwl_mvm_rx_csum(sta, skb, rx_pkt_status);
376
361dbec8
ES
377 rcu_read_unlock();
378
8ca151b5
JB
379 /* set the preamble flag if appropriate */
380 if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_SHORT_PREAMBLE))
d0963b5d 381 rx_status->flag |= RX_FLAG_SHORTPRE;
8ca151b5
JB
382
383 if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
384 /*
385 * We know which subframes of an A-MPDU belong
386 * together since we get a single PHY response
387 * from the firmware for all of them
388 */
d0963b5d
JB
389 rx_status->flag |= RX_FLAG_AMPDU_DETAILS;
390 rx_status->ampdu_reference = mvm->ampdu_ref;
8ca151b5
JB
391 }
392
393 /* Set up the HT phy flags */
394 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
395 case RATE_MCS_CHAN_WIDTH_20:
396 break;
397 case RATE_MCS_CHAN_WIDTH_40:
d0963b5d 398 rx_status->flag |= RX_FLAG_40MHZ;
8ca151b5
JB
399 break;
400 case RATE_MCS_CHAN_WIDTH_80:
d0963b5d 401 rx_status->vht_flag |= RX_VHT_FLAG_80MHZ;
8ca151b5
JB
402 break;
403 case RATE_MCS_CHAN_WIDTH_160:
d0963b5d 404 rx_status->vht_flag |= RX_VHT_FLAG_160MHZ;
8ca151b5
JB
405 break;
406 }
407 if (rate_n_flags & RATE_MCS_SGI_MSK)
d0963b5d 408 rx_status->flag |= RX_FLAG_SHORT_GI;
8ca151b5 409 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
d0963b5d 410 rx_status->flag |= RX_FLAG_HT_GF;
7b1dd048 411 if (rate_n_flags & RATE_MCS_LDPC_MSK)
d0963b5d 412 rx_status->flag |= RX_FLAG_LDPC;
8ca151b5 413 if (rate_n_flags & RATE_MCS_HT_MSK) {
7b1dd048
EG
414 u8 stbc = (rate_n_flags & RATE_MCS_HT_STBC_MSK) >>
415 RATE_MCS_STBC_POS;
d0963b5d
JB
416 rx_status->flag |= RX_FLAG_HT;
417 rx_status->rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
418 rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
8ca151b5 419 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
7b1dd048
EG
420 u8 stbc = (rate_n_flags & RATE_MCS_VHT_STBC_MSK) >>
421 RATE_MCS_STBC_POS;
d0963b5d 422 rx_status->vht_nss =
8ca151b5
JB
423 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
424 RATE_VHT_MCS_NSS_POS) + 1;
d0963b5d
JB
425 rx_status->rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
426 rx_status->flag |= RX_FLAG_VHT;
427 rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
95e05ab7 428 if (rate_n_flags & RATE_MCS_BF_MSK)
d0963b5d 429 rx_status->vht_flag |= RX_VHT_FLAG_BF;
8ca151b5 430 } else {
d0963b5d 431 rx_status->rate_idx =
8ca151b5 432 iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
d0963b5d 433 rx_status->band);
8ca151b5
JB
434 }
435
5fc0f76c 436#ifdef CONFIG_IWLWIFI_DEBUGFS
2f15a829 437 iwl_mvm_update_frame_stats(mvm, rate_n_flags,
d0963b5d 438 rx_status->flag & RX_FLAG_AMPDU_DETAILS);
5fc0f76c 439#endif
1be5d8cc 440 iwl_mvm_pass_packet_to_mac80211(mvm, napi, skb, hdr, len, ampdu_status,
eb96ccb1 441 crypt_len, rxb);
8ca151b5 442}
9ee718aa 443
3848ab66 444static void iwl_mvm_update_rx_statistics(struct iwl_mvm *mvm,
777c9b6b 445 struct mvm_statistics_rx *rx_stats)
3848ab66 446{
3848ab66 447 lockdep_assert_held(&mvm->mutex);
777c9b6b
JB
448
449 mvm->rx_stats = *rx_stats;
3848ab66
MG
450}
451
a20fd398 452struct iwl_mvm_stat_data {
a20fd398 453 struct iwl_mvm *mvm;
777c9b6b 454 __le32 mac_id;
62e004fe 455 u8 beacon_filter_average_energy;
33cef925 456 struct mvm_statistics_general_v8 *general;
a20fd398
AO
457};
458
459static void iwl_mvm_stat_iterator(void *_data, u8 *mac,
460 struct ieee80211_vif *vif)
461{
462 struct iwl_mvm_stat_data *data = _data;
a20fd398 463 struct iwl_mvm *mvm = data->mvm;
777c9b6b 464 int sig = -data->beacon_filter_average_energy;
a20fd398
AO
465 int last_event;
466 int thold = vif->bss_conf.cqm_rssi_thold;
467 int hyst = vif->bss_conf.cqm_rssi_hyst;
777c9b6b 468 u16 id = le32_to_cpu(data->mac_id);
a20fd398
AO
469 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
470
33cef925
JB
471 /* This doesn't need the MAC ID check since it's not taking the
472 * data copied into the "data" struct, but rather the data from
473 * the notification directly.
474 */
475 if (data->general) {
476 mvmvif->beacon_stats.num_beacons =
477 le32_to_cpu(data->general->beacon_counter[mvmvif->id]);
478 mvmvif->beacon_stats.avg_signal =
479 -data->general->beacon_average_energy[mvmvif->id];
480 }
481
a20fd398
AO
482 if (mvmvif->id != id)
483 return;
484
485 if (vif->type != NL80211_IFTYPE_STATION)
486 return;
487
8047cc0c
AB
488 if (sig == 0) {
489 IWL_DEBUG_RX(mvm, "RSSI is 0 - skip signal based decision\n");
490 return;
491 }
492
a20fd398
AO
493 mvmvif->bf_data.ave_beacon_signal = sig;
494
911222b5
AO
495 /* BT Coex */
496 if (mvmvif->bf_data.bt_coex_min_thold !=
497 mvmvif->bf_data.bt_coex_max_thold) {
498 last_event = mvmvif->bf_data.last_bt_coex_event;
499 if (sig > mvmvif->bf_data.bt_coex_max_thold &&
500 (last_event <= mvmvif->bf_data.bt_coex_min_thold ||
501 last_event == 0)) {
502 mvmvif->bf_data.last_bt_coex_event = sig;
503 IWL_DEBUG_RX(mvm, "cqm_iterator bt coex high %d\n",
504 sig);
505 iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_HIGH);
506 } else if (sig < mvmvif->bf_data.bt_coex_min_thold &&
507 (last_event >= mvmvif->bf_data.bt_coex_max_thold ||
508 last_event == 0)) {
509 mvmvif->bf_data.last_bt_coex_event = sig;
510 IWL_DEBUG_RX(mvm, "cqm_iterator bt coex low %d\n",
511 sig);
512 iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_LOW);
513 }
514 }
515
a20fd398
AO
516 if (!(vif->driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI))
517 return;
518
519 /* CQM Notification */
520 last_event = mvmvif->bf_data.last_cqm_event;
521 if (thold && sig < thold && (last_event == 0 ||
522 sig < last_event - hyst)) {
523 mvmvif->bf_data.last_cqm_event = sig;
524 IWL_DEBUG_RX(mvm, "cqm_iterator cqm low %d\n",
525 sig);
526 ieee80211_cqm_rssi_notify(
527 vif,
528 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
529 GFP_KERNEL);
530 } else if (sig > thold &&
531 (last_event == 0 || sig > last_event + hyst)) {
532 mvmvif->bf_data.last_cqm_event = sig;
533 IWL_DEBUG_RX(mvm, "cqm_iterator cqm high %d\n",
534 sig);
535 ieee80211_cqm_rssi_notify(
536 vif,
537 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
538 GFP_KERNEL);
539 }
540}
541
5a756c20
EG
542static inline void
543iwl_mvm_rx_stats_check_trigger(struct iwl_mvm *mvm, struct iwl_rx_packet *pkt)
544{
545 struct iwl_fw_dbg_trigger_tlv *trig;
546 struct iwl_fw_dbg_trigger_stats *trig_stats;
547 u32 trig_offset, trig_thold;
548
549 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_STATS))
550 return;
551
552 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_STATS);
553 trig_stats = (void *)trig->data;
554
555 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
556 return;
557
558 trig_offset = le32_to_cpu(trig_stats->stop_offset);
559 trig_thold = le32_to_cpu(trig_stats->stop_threshold);
560
561 if (WARN_ON_ONCE(trig_offset >= iwl_rx_packet_payload_len(pkt)))
562 return;
563
564 if (le32_to_cpup((__le32 *) (pkt->data + trig_offset)) < trig_thold)
565 return;
566
5d4f929e 567 iwl_mvm_fw_dbg_collect_trig(mvm, trig, NULL);
5a756c20
EG
568}
569
91a8bcde
JB
570void iwl_mvm_handle_rx_statistics(struct iwl_mvm *mvm,
571 struct iwl_rx_packet *pkt)
9ee718aa 572{
38d5f66f 573 struct iwl_notif_statistics_v10 *stats = (void *)&pkt->data;
a20fd398 574 struct iwl_mvm_stat_data data = {
a20fd398
AO
575 .mvm = mvm,
576 };
777c9b6b
JB
577 u32 temperature;
578
38d5f66f
EG
579 if (iwl_rx_packet_payload_len(pkt) != sizeof(*stats))
580 goto invalid;
777c9b6b 581
38d5f66f
EG
582 temperature = le32_to_cpu(stats->general.radio_temperature);
583 data.mac_id = stats->rx.general.mac_id;
584 data.beacon_filter_average_energy =
585 stats->general.beacon_filter_average_energy;
777c9b6b 586
38d5f66f 587 iwl_mvm_update_rx_statistics(mvm, &stats->rx);
777c9b6b 588
38d5f66f
EG
589 mvm->radio_stats.rx_time = le64_to_cpu(stats->general.rx_time);
590 mvm->radio_stats.tx_time = le64_to_cpu(stats->general.tx_time);
591 mvm->radio_stats.on_time_rf =
592 le64_to_cpu(stats->general.on_time_rf);
593 mvm->radio_stats.on_time_scan =
594 le64_to_cpu(stats->general.on_time_scan);
91a8bcde 595
38d5f66f 596 data.general = &stats->general;
9ee718aa 597
5a756c20
EG
598 iwl_mvm_rx_stats_check_trigger(mvm, pkt);
599
a20fd398
AO
600 ieee80211_iterate_active_interfaces(mvm->hw,
601 IEEE80211_IFACE_ITER_NORMAL,
602 iwl_mvm_stat_iterator,
603 &data);
91a8bcde 604 return;
777c9b6b
JB
605 invalid:
606 IWL_ERR(mvm, "received invalid statistics size (%d)!\n",
607 iwl_rx_packet_payload_len(pkt));
91a8bcde
JB
608}
609
0416841d 610void iwl_mvm_rx_statistics(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
91a8bcde
JB
611{
612 iwl_mvm_handle_rx_statistics(mvm, rxb_addr(rxb));
9ee718aa 613}
This page took 0.295872 seconds and 5 git commands to generate.