rx.c 15 KB

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