rx.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  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. *
  8. * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
  9. * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
  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
  26. * in the file called COPYING.
  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. *
  34. * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
  35. * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
  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. *****************************************************************************/
  64. #include "iwl-trans.h"
  65. #include "mvm.h"
  66. #include "fw-api.h"
  67. /*
  68. * iwl_mvm_rx_rx_phy_cmd - REPLY_RX_PHY_CMD handler
  69. *
  70. * Copies the phy information in mvm->last_phy_info, it will be used when the
  71. * actual data will come from the fw in the next packet.
  72. */
  73. int iwl_mvm_rx_rx_phy_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  74. struct iwl_device_cmd *cmd)
  75. {
  76. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  77. memcpy(&mvm->last_phy_info, pkt->data, sizeof(mvm->last_phy_info));
  78. mvm->ampdu_ref++;
  79. #ifdef CONFIG_IWLWIFI_DEBUGFS
  80. if (mvm->last_phy_info.phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
  81. spin_lock(&mvm->drv_stats_lock);
  82. mvm->drv_rx_stats.ampdu_count++;
  83. spin_unlock(&mvm->drv_stats_lock);
  84. }
  85. #endif
  86. return 0;
  87. }
  88. /*
  89. * iwl_mvm_pass_packet_to_mac80211 - builds the packet for mac80211
  90. *
  91. * Adds the rxb to a new skb and give it to mac80211
  92. */
  93. static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
  94. struct ieee80211_hdr *hdr, u16 len,
  95. u32 ampdu_status,
  96. struct iwl_rx_cmd_buffer *rxb,
  97. struct ieee80211_rx_status *stats)
  98. {
  99. struct sk_buff *skb;
  100. unsigned int hdrlen, fraglen;
  101. /* Dont use dev_alloc_skb(), we'll have enough headroom once
  102. * ieee80211_hdr pulled.
  103. */
  104. skb = alloc_skb(128, GFP_ATOMIC);
  105. if (!skb) {
  106. IWL_ERR(mvm, "alloc_skb failed\n");
  107. return;
  108. }
  109. /* If frame is small enough to fit in skb->head, pull it completely.
  110. * If not, only pull ieee80211_hdr so that splice() or TCP coalesce
  111. * are more efficient.
  112. */
  113. hdrlen = (len <= skb_tailroom(skb)) ? len : sizeof(*hdr);
  114. memcpy(skb_put(skb, hdrlen), hdr, hdrlen);
  115. fraglen = len - hdrlen;
  116. if (fraglen) {
  117. int offset = (void *)hdr + hdrlen -
  118. rxb_addr(rxb) + rxb_offset(rxb);
  119. skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset,
  120. fraglen, rxb->truesize);
  121. }
  122. memcpy(IEEE80211_SKB_RXCB(skb), stats, sizeof(*stats));
  123. ieee80211_rx(mvm->hw, skb);
  124. }
  125. /*
  126. * iwl_mvm_get_signal_strength - use new rx PHY INFO API
  127. * values are reported by the fw as positive values - need to negate
  128. * to obtain their dBM. Account for missing antennas by replacing 0
  129. * values by -256dBm: practically 0 power and a non-feasible 8 bit value.
  130. */
  131. static void iwl_mvm_get_signal_strength(struct iwl_mvm *mvm,
  132. struct iwl_rx_phy_info *phy_info,
  133. struct ieee80211_rx_status *rx_status)
  134. {
  135. int energy_a, energy_b, energy_c, max_energy;
  136. u32 val;
  137. val =
  138. le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_ENERGY_ANT_ABC_IDX]);
  139. energy_a = (val & IWL_RX_INFO_ENERGY_ANT_A_MSK) >>
  140. IWL_RX_INFO_ENERGY_ANT_A_POS;
  141. energy_a = energy_a ? -energy_a : S8_MIN;
  142. energy_b = (val & IWL_RX_INFO_ENERGY_ANT_B_MSK) >>
  143. IWL_RX_INFO_ENERGY_ANT_B_POS;
  144. energy_b = energy_b ? -energy_b : S8_MIN;
  145. energy_c = (val & IWL_RX_INFO_ENERGY_ANT_C_MSK) >>
  146. IWL_RX_INFO_ENERGY_ANT_C_POS;
  147. energy_c = energy_c ? -energy_c : S8_MIN;
  148. max_energy = max(energy_a, energy_b);
  149. max_energy = max(max_energy, energy_c);
  150. IWL_DEBUG_STATS(mvm, "energy In A %d B %d C %d , and max %d\n",
  151. energy_a, energy_b, energy_c, max_energy);
  152. rx_status->signal = max_energy;
  153. rx_status->chains = (le16_to_cpu(phy_info->phy_flags) &
  154. RX_RES_PHY_FLAGS_ANTENNA)
  155. >> RX_RES_PHY_FLAGS_ANTENNA_POS;
  156. rx_status->chain_signal[0] = energy_a;
  157. rx_status->chain_signal[1] = energy_b;
  158. rx_status->chain_signal[2] = energy_c;
  159. }
  160. /*
  161. * iwl_mvm_set_mac80211_rx_flag - translate fw status to mac80211 format
  162. * @mvm: the mvm object
  163. * @hdr: 80211 header
  164. * @stats: status in mac80211's format
  165. * @rx_pkt_status: status coming from fw
  166. *
  167. * returns non 0 value if the packet should be dropped
  168. */
  169. static u32 iwl_mvm_set_mac80211_rx_flag(struct iwl_mvm *mvm,
  170. struct ieee80211_hdr *hdr,
  171. struct ieee80211_rx_status *stats,
  172. u32 rx_pkt_status)
  173. {
  174. if (!ieee80211_has_protected(hdr->frame_control) ||
  175. (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
  176. RX_MPDU_RES_STATUS_SEC_NO_ENC)
  177. return 0;
  178. /* packet was encrypted with unknown alg */
  179. if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
  180. RX_MPDU_RES_STATUS_SEC_ENC_ERR)
  181. return 0;
  182. switch (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) {
  183. case RX_MPDU_RES_STATUS_SEC_CCM_ENC:
  184. /* alg is CCM: check MIC only */
  185. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
  186. return -1;
  187. stats->flag |= RX_FLAG_DECRYPTED;
  188. IWL_DEBUG_WEP(mvm, "hw decrypted CCMP successfully\n");
  189. return 0;
  190. case RX_MPDU_RES_STATUS_SEC_TKIP_ENC:
  191. /* Don't drop the frame and decrypt it in SW */
  192. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_TTAK_OK))
  193. return 0;
  194. /* fall through if TTAK OK */
  195. case RX_MPDU_RES_STATUS_SEC_WEP_ENC:
  196. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_ICV_OK))
  197. return -1;
  198. stats->flag |= RX_FLAG_DECRYPTED;
  199. return 0;
  200. case RX_MPDU_RES_STATUS_SEC_EXT_ENC:
  201. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
  202. return -1;
  203. stats->flag |= RX_FLAG_DECRYPTED;
  204. return 0;
  205. default:
  206. IWL_ERR(mvm, "Unhandled alg: 0x%x\n", rx_pkt_status);
  207. }
  208. return 0;
  209. }
  210. /*
  211. * iwl_mvm_rx_rx_mpdu - REPLY_RX_MPDU_CMD handler
  212. *
  213. * Handles the actual data of the Rx packet from the fw
  214. */
  215. int iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  216. struct iwl_device_cmd *cmd)
  217. {
  218. struct ieee80211_hdr *hdr;
  219. struct ieee80211_rx_status rx_status = {};
  220. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  221. struct iwl_rx_phy_info *phy_info;
  222. struct iwl_rx_mpdu_res_start *rx_res;
  223. struct ieee80211_sta *sta;
  224. u32 len;
  225. u32 ampdu_status;
  226. u32 rate_n_flags;
  227. u32 rx_pkt_status;
  228. phy_info = &mvm->last_phy_info;
  229. rx_res = (struct iwl_rx_mpdu_res_start *)pkt->data;
  230. hdr = (struct ieee80211_hdr *)(pkt->data + sizeof(*rx_res));
  231. len = le16_to_cpu(rx_res->byte_count);
  232. rx_pkt_status = le32_to_cpup((__le32 *)
  233. (pkt->data + sizeof(*rx_res) + len));
  234. memset(&rx_status, 0, sizeof(rx_status));
  235. /*
  236. * drop the packet if it has failed being decrypted by HW
  237. */
  238. if (iwl_mvm_set_mac80211_rx_flag(mvm, hdr, &rx_status, rx_pkt_status)) {
  239. IWL_DEBUG_DROP(mvm, "Bad decryption results 0x%08x\n",
  240. rx_pkt_status);
  241. return 0;
  242. }
  243. if ((unlikely(phy_info->cfg_phy_cnt > 20))) {
  244. IWL_DEBUG_DROP(mvm, "dsp size out of range [0,20]: %d\n",
  245. phy_info->cfg_phy_cnt);
  246. return 0;
  247. }
  248. /*
  249. * Keep packets with CRC errors (and with overrun) for monitor mode
  250. * (otherwise the firmware discards them) but mark them as bad.
  251. */
  252. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_CRC_OK) ||
  253. !(rx_pkt_status & RX_MPDU_RES_STATUS_OVERRUN_OK)) {
  254. IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n", rx_pkt_status);
  255. rx_status.flag |= RX_FLAG_FAILED_FCS_CRC;
  256. }
  257. /* This will be used in several places later */
  258. rate_n_flags = le32_to_cpu(phy_info->rate_n_flags);
  259. /* rx_status carries information about the packet to mac80211 */
  260. rx_status.mactime = le64_to_cpu(phy_info->timestamp);
  261. rx_status.device_timestamp = le32_to_cpu(phy_info->system_timestamp);
  262. rx_status.band =
  263. (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ?
  264. IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
  265. rx_status.freq =
  266. ieee80211_channel_to_frequency(le16_to_cpu(phy_info->channel),
  267. rx_status.band);
  268. /*
  269. * TSF as indicated by the fw is at INA time, but mac80211 expects the
  270. * TSF at the beginning of the MPDU.
  271. */
  272. /*rx_status.flag |= RX_FLAG_MACTIME_MPDU;*/
  273. iwl_mvm_get_signal_strength(mvm, phy_info, &rx_status);
  274. IWL_DEBUG_STATS_LIMIT(mvm, "Rssi %d, TSF %llu\n", rx_status.signal,
  275. (unsigned long long)rx_status.mactime);
  276. rcu_read_lock();
  277. /*
  278. * We have tx blocked stations (with CS bit). If we heard frames from
  279. * a blocked station on a new channel we can TX to it again.
  280. */
  281. if (unlikely(mvm->csa_tx_block_bcn_timeout)) {
  282. sta = ieee80211_find_sta(
  283. rcu_dereference(mvm->csa_tx_blocked_vif), hdr->addr2);
  284. if (sta)
  285. iwl_mvm_sta_modify_disable_tx_ap(mvm, sta, false);
  286. }
  287. /* This is fine since we don't support multiple AP interfaces */
  288. sta = ieee80211_find_sta_by_ifaddr(mvm->hw, hdr->addr2, NULL);
  289. if (sta) {
  290. struct iwl_mvm_sta *mvmsta;
  291. mvmsta = iwl_mvm_sta_from_mac80211(sta);
  292. rs_update_last_rssi(mvm, &mvmsta->lq_sta,
  293. &rx_status);
  294. }
  295. rcu_read_unlock();
  296. /* set the preamble flag if appropriate */
  297. if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_SHORT_PREAMBLE))
  298. rx_status.flag |= RX_FLAG_SHORTPRE;
  299. if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
  300. /*
  301. * We know which subframes of an A-MPDU belong
  302. * together since we get a single PHY response
  303. * from the firmware for all of them
  304. */
  305. rx_status.flag |= RX_FLAG_AMPDU_DETAILS;
  306. rx_status.ampdu_reference = mvm->ampdu_ref;
  307. }
  308. /* Set up the HT phy flags */
  309. switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
  310. case RATE_MCS_CHAN_WIDTH_20:
  311. break;
  312. case RATE_MCS_CHAN_WIDTH_40:
  313. rx_status.flag |= RX_FLAG_40MHZ;
  314. break;
  315. case RATE_MCS_CHAN_WIDTH_80:
  316. rx_status.vht_flag |= RX_VHT_FLAG_80MHZ;
  317. break;
  318. case RATE_MCS_CHAN_WIDTH_160:
  319. rx_status.vht_flag |= RX_VHT_FLAG_160MHZ;
  320. break;
  321. }
  322. if (rate_n_flags & RATE_MCS_SGI_MSK)
  323. rx_status.flag |= RX_FLAG_SHORT_GI;
  324. if (rate_n_flags & RATE_HT_MCS_GF_MSK)
  325. rx_status.flag |= RX_FLAG_HT_GF;
  326. if (rate_n_flags & RATE_MCS_LDPC_MSK)
  327. rx_status.flag |= RX_FLAG_LDPC;
  328. if (rate_n_flags & RATE_MCS_HT_MSK) {
  329. u8 stbc = (rate_n_flags & RATE_MCS_HT_STBC_MSK) >>
  330. RATE_MCS_STBC_POS;
  331. rx_status.flag |= RX_FLAG_HT;
  332. rx_status.rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
  333. rx_status.flag |= stbc << RX_FLAG_STBC_SHIFT;
  334. } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
  335. u8 stbc = (rate_n_flags & RATE_MCS_VHT_STBC_MSK) >>
  336. RATE_MCS_STBC_POS;
  337. rx_status.vht_nss =
  338. ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
  339. RATE_VHT_MCS_NSS_POS) + 1;
  340. rx_status.rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
  341. rx_status.flag |= RX_FLAG_VHT;
  342. rx_status.flag |= stbc << RX_FLAG_STBC_SHIFT;
  343. if (rate_n_flags & RATE_MCS_BF_MSK)
  344. rx_status.vht_flag |= RX_VHT_FLAG_BF;
  345. } else {
  346. rx_status.rate_idx =
  347. iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
  348. rx_status.band);
  349. }
  350. #ifdef CONFIG_IWLWIFI_DEBUGFS
  351. iwl_mvm_update_frame_stats(mvm, &mvm->drv_rx_stats, rate_n_flags,
  352. rx_status.flag & RX_FLAG_AMPDU_DETAILS);
  353. #endif
  354. iwl_mvm_pass_packet_to_mac80211(mvm, hdr, len, ampdu_status,
  355. rxb, &rx_status);
  356. return 0;
  357. }
  358. static void iwl_mvm_update_rx_statistics(struct iwl_mvm *mvm,
  359. struct iwl_notif_statistics *stats)
  360. {
  361. /*
  362. * NOTE FW aggregates the statistics - BUT the statistics are cleared
  363. * when the driver issues REPLY_STATISTICS_CMD 0x9c with CLEAR_STATS
  364. * bit set.
  365. */
  366. lockdep_assert_held(&mvm->mutex);
  367. memcpy(&mvm->rx_stats, &stats->rx, sizeof(struct mvm_statistics_rx));
  368. }
  369. struct iwl_mvm_stat_data {
  370. struct iwl_notif_statistics *stats;
  371. struct iwl_mvm *mvm;
  372. };
  373. static void iwl_mvm_stat_iterator(void *_data, u8 *mac,
  374. struct ieee80211_vif *vif)
  375. {
  376. struct iwl_mvm_stat_data *data = _data;
  377. struct iwl_notif_statistics *stats = data->stats;
  378. struct iwl_mvm *mvm = data->mvm;
  379. int sig = -stats->general.beacon_filter_average_energy;
  380. int last_event;
  381. int thold = vif->bss_conf.cqm_rssi_thold;
  382. int hyst = vif->bss_conf.cqm_rssi_hyst;
  383. u16 id = le32_to_cpu(stats->rx.general.mac_id);
  384. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  385. if (mvmvif->id != id)
  386. return;
  387. if (vif->type != NL80211_IFTYPE_STATION)
  388. return;
  389. mvmvif->bf_data.ave_beacon_signal = sig;
  390. /* BT Coex */
  391. if (mvmvif->bf_data.bt_coex_min_thold !=
  392. mvmvif->bf_data.bt_coex_max_thold) {
  393. last_event = mvmvif->bf_data.last_bt_coex_event;
  394. if (sig > mvmvif->bf_data.bt_coex_max_thold &&
  395. (last_event <= mvmvif->bf_data.bt_coex_min_thold ||
  396. last_event == 0)) {
  397. mvmvif->bf_data.last_bt_coex_event = sig;
  398. IWL_DEBUG_RX(mvm, "cqm_iterator bt coex high %d\n",
  399. sig);
  400. iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_HIGH);
  401. } else if (sig < mvmvif->bf_data.bt_coex_min_thold &&
  402. (last_event >= mvmvif->bf_data.bt_coex_max_thold ||
  403. last_event == 0)) {
  404. mvmvif->bf_data.last_bt_coex_event = sig;
  405. IWL_DEBUG_RX(mvm, "cqm_iterator bt coex low %d\n",
  406. sig);
  407. iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_LOW);
  408. }
  409. }
  410. if (!(vif->driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI))
  411. return;
  412. /* CQM Notification */
  413. last_event = mvmvif->bf_data.last_cqm_event;
  414. if (thold && sig < thold && (last_event == 0 ||
  415. sig < last_event - hyst)) {
  416. mvmvif->bf_data.last_cqm_event = sig;
  417. IWL_DEBUG_RX(mvm, "cqm_iterator cqm low %d\n",
  418. sig);
  419. ieee80211_cqm_rssi_notify(
  420. vif,
  421. NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
  422. GFP_KERNEL);
  423. } else if (sig > thold &&
  424. (last_event == 0 || sig > last_event + hyst)) {
  425. mvmvif->bf_data.last_cqm_event = sig;
  426. IWL_DEBUG_RX(mvm, "cqm_iterator cqm high %d\n",
  427. sig);
  428. ieee80211_cqm_rssi_notify(
  429. vif,
  430. NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
  431. GFP_KERNEL);
  432. }
  433. }
  434. /*
  435. * iwl_mvm_rx_statistics - STATISTICS_NOTIFICATION handler
  436. *
  437. * TODO: This handler is implemented partially.
  438. */
  439. int iwl_mvm_rx_statistics(struct iwl_mvm *mvm,
  440. struct iwl_rx_cmd_buffer *rxb,
  441. struct iwl_device_cmd *cmd)
  442. {
  443. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  444. struct iwl_notif_statistics *stats = (void *)&pkt->data;
  445. struct mvm_statistics_general_common *common = &stats->general.common;
  446. struct iwl_mvm_stat_data data = {
  447. .stats = stats,
  448. .mvm = mvm,
  449. };
  450. /*
  451. * set temperature debug enabled - ignore FW temperature updates
  452. * and use the user set temperature.
  453. */
  454. if (mvm->temperature_test) {
  455. if (mvm->temperature < le32_to_cpu(common->temperature))
  456. IWL_DEBUG_TEMP(mvm,
  457. "Ignoring FW temperature update that is greater than the debug set temperature (debug temp = %d, fw temp = %d)\n",
  458. mvm->temperature,
  459. le32_to_cpu(common->temperature));
  460. /*
  461. * skip iwl_mvm_tt_handler since we are in
  462. * temperature debug mode and we are ignoring
  463. * the new temperature value
  464. */
  465. goto update;
  466. }
  467. if (mvm->temperature != le32_to_cpu(common->temperature)) {
  468. mvm->temperature = le32_to_cpu(common->temperature);
  469. iwl_mvm_tt_handler(mvm);
  470. }
  471. update:
  472. iwl_mvm_update_rx_statistics(mvm, stats);
  473. ieee80211_iterate_active_interfaces(mvm->hw,
  474. IEEE80211_IFACE_ITER_NORMAL,
  475. iwl_mvm_stat_iterator,
  476. &data);
  477. return 0;
  478. }