blob: bf5cd8c8b0f798d2a0cebf24236f0730304e6b4a [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 Berg8ca151b2013-01-24 14:25:36 +01009 *
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 Grumbach410dc5a2013-02-18 09:22:28 +020025 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010026 *
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 Grumbach51368bf2013-12-30 13:15:54 +020033 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8ca151b2013-01-24 14:25:36 +010034 * 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 Berg8ca151b2013-01-24 14:25:36 +010063#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 */
72int 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 Shapira5fc0f762014-01-28 01:35:32 +020079
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 Berg8ca151b2013-01-24 14:25:36 +010088 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 */
96static 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 Bergf14d6b32014-03-21 13:30:03 +0100132 ieee80211_rx(mvm->hw, skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100133}
134
Johannes Berg8ca151b2013-01-24 14:25:36 +0100135/*
Avri Altmana2d7b872013-07-09 01:42:17 +0300136 * iwl_mvm_get_signal_strength - use new rx PHY INFO API
Avri Altman17dbe562013-08-01 07:19:27 +0300137 * 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 Altmana2d7b872013-07-09 01:42:17 +0300140 */
Johannes Berg226eb8c2013-07-03 11:55:17 +0200141static 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 Altmana2d7b872013-07-09 01:42:17 +0300144{
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 Altman17dbe562013-08-01 07:19:27 +0300150 energy_a = (val & IWL_RX_INFO_ENERGY_ANT_A_MSK) >>
151 IWL_RX_INFO_ENERGY_ANT_A_POS;
Eyal Shapira2cddddc2014-08-13 00:26:17 +0300152 energy_a = energy_a ? -energy_a : S8_MIN;
Avri Altman17dbe562013-08-01 07:19:27 +0300153 energy_b = (val & IWL_RX_INFO_ENERGY_ANT_B_MSK) >>
154 IWL_RX_INFO_ENERGY_ANT_B_POS;
Eyal Shapira2cddddc2014-08-13 00:26:17 +0300155 energy_b = energy_b ? -energy_b : S8_MIN;
Avri Altman17dbe562013-08-01 07:19:27 +0300156 energy_c = (val & IWL_RX_INFO_ENERGY_ANT_C_MSK) >>
157 IWL_RX_INFO_ENERGY_ANT_C_POS;
Eyal Shapira2cddddc2014-08-13 00:26:17 +0300158 energy_c = energy_c ? -energy_c : S8_MIN;
Avri Altmana2d7b872013-07-09 01:42:17 +0300159 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 Berg226eb8c2013-07-03 11:55:17 +0200165 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 Altmana2d7b872013-07-09 01:42:17 +0300172}
173
174/*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100175 * 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,
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 Stepanove36e5432013-08-27 19:56:13 +0300221 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 Berg8ca151b2013-01-24 14:25:36 +0100227 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 */
239int 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 Otcheretianski003e52362014-05-25 17:24:22 +0300262 * 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 Berg8ca151b2013-01-24 14:25:36 +0100279 * 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 Bergfb8b8ee2013-10-21 12:37:53 +0200293 /*
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 Berg8ca151b2013-01-24 14:25:36 +0100297 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 Bergfb8b8ee2013-10-21 12:37:53 +0200300 rx_status.flag |= RX_FLAG_FAILED_FCS_CRC;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100301 }
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 Bergd2931bb2013-02-05 18:10:04 +0100308 rx_status.device_timestamp = le32_to_cpu(phy_info->system_timestamp);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100309 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 Grumbach3fe47dc2014-03-30 08:40:46 +0300321 iwl_mvm_get_signal_strength(mvm, phy_info, &rx_status);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100322
323 IWL_DEBUG_STATS_LIMIT(mvm, "Rssi %d, TSF %llu\n", rx_status.signal,
324 (unsigned long long)rx_status.mactime);
325
Johannes Berg8ca151b2013-01-24 14:25:36 +0100326 /* 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 Grumbach1b8d2422014-02-05 16:37:11 +0200348 rx_status.vht_flag |= RX_VHT_FLAG_80MHZ;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100349 break;
350 case RATE_MCS_CHAN_WIDTH_160:
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200351 rx_status.vht_flag |= RX_VHT_FLAG_160MHZ;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100352 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 Grumbach7b1dd042014-02-04 15:32:43 +0200358 if (rate_n_flags & RATE_MCS_LDPC_MSK)
359 rx_status.flag |= RX_FLAG_LDPC;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100360 if (rate_n_flags & RATE_MCS_HT_MSK) {
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +0200361 u8 stbc = (rate_n_flags & RATE_MCS_HT_STBC_MSK) >>
362 RATE_MCS_STBC_POS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100363 rx_status.flag |= RX_FLAG_HT;
364 rx_status.rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +0200365 rx_status.flag |= stbc << RX_FLAG_STBC_SHIFT;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100366 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +0200367 u8 stbc = (rate_n_flags & RATE_MCS_VHT_STBC_MSK) >>
368 RATE_MCS_STBC_POS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100369 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 Grumbach7b1dd042014-02-04 15:32:43 +0200374 rx_status.flag |= stbc << RX_FLAG_STBC_SHIFT;
Emmanuel Grumbach95e05ab2014-03-04 09:38:43 +0200375 if (rate_n_flags & RATE_MCS_BF_MSK)
376 rx_status.vht_flag |= RX_VHT_FLAG_BF;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100377 } else {
378 rx_status.rate_idx =
379 iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
380 rx_status.band);
381 }
382
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200383#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 Berg8ca151b2013-01-24 14:25:36 +0100387 iwl_mvm_pass_packet_to_mac80211(mvm, hdr, len, ampdu_status,
388 rxb, &rx_status);
389 return 0;
390}
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300391
Matti Gottlieb3848ab62013-07-30 15:29:37 +0300392static 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 Otcheretianskia20fd392013-07-21 17:23:59 +0300404struct iwl_mvm_stat_data {
405 struct iwl_notif_statistics *stats;
406 struct iwl_mvm *mvm;
407};
408
409static 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 Otcheretianski911222b2013-07-21 17:37:19 +0300430 /* 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 Otcheretianskia20fd392013-07-21 17:23:59 +0300451 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 Lifshitz9ee718a2013-05-19 19:14:41 +0300477/*
478 * iwl_mvm_rx_statistics - STATISTICS_NOTIFICATION handler
479 *
480 * TODO: This handler is implemented partially.
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300481 */
482int 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 Otcheretianskia20fd392013-07-21 17:23:59 +0300489 struct iwl_mvm_stat_data data = {
490 .stats = stats,
491 .mvm = mvm,
492 };
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300493
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 Gottlieb3848ab62013-07-30 15:29:37 +0300498 iwl_mvm_update_rx_statistics(mvm, stats);
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300499
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300500 ieee80211_iterate_active_interfaces(mvm->hw,
501 IEEE80211_IFACE_ITER_NORMAL,
502 iwl_mvm_stat_iterator,
503 &data);
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300504 return 0;
505}