rx.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  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 - 2015 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 - 2015 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 <linux/skbuff.h>
  65. #include "iwl-trans.h"
  66. #include "mvm.h"
  67. #include "fw-api.h"
  68. /*
  69. * iwl_mvm_rx_rx_phy_cmd - REPLY_RX_PHY_CMD handler
  70. *
  71. * Copies the phy information in mvm->last_phy_info, it will be used when the
  72. * actual data will come from the fw in the next packet.
  73. */
  74. void iwl_mvm_rx_rx_phy_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
  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. }
  87. /*
  88. * iwl_mvm_pass_packet_to_mac80211 - builds the packet for mac80211
  89. *
  90. * Adds the rxb to a new skb and give it to mac80211
  91. */
  92. static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
  93. struct napi_struct *napi,
  94. struct sk_buff *skb,
  95. struct ieee80211_hdr *hdr, u16 len,
  96. u32 ampdu_status, u8 crypt_len,
  97. struct iwl_rx_cmd_buffer *rxb)
  98. {
  99. unsigned int hdrlen, fraglen;
  100. /* If frame is small enough to fit in skb->head, pull it completely.
  101. * If not, only pull ieee80211_hdr (including crypto if present, and
  102. * an additional 8 bytes for SNAP/ethertype, see below) so that
  103. * splice() or TCP coalesce are more efficient.
  104. *
  105. * Since, in addition, ieee80211_data_to_8023() always pull in at
  106. * least 8 bytes (possibly more for mesh) we can do the same here
  107. * to save the cost of doing it later. That still doesn't pull in
  108. * the actual IP header since the typical case has a SNAP header.
  109. * If the latter changes (there are efforts in the standards group
  110. * to do so) we should revisit this and ieee80211_data_to_8023().
  111. */
  112. hdrlen = (len <= skb_tailroom(skb)) ? len :
  113. sizeof(*hdr) + crypt_len + 8;
  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. ieee80211_rx_napi(mvm->hw, skb, napi);
  123. }
  124. /*
  125. * iwl_mvm_get_signal_strength - use new rx PHY INFO API
  126. * values are reported by the fw as positive values - need to negate
  127. * to obtain their dBM. Account for missing antennas by replacing 0
  128. * values by -256dBm: practically 0 power and a non-feasible 8 bit value.
  129. */
  130. static void iwl_mvm_get_signal_strength(struct iwl_mvm *mvm,
  131. struct iwl_rx_phy_info *phy_info,
  132. struct ieee80211_rx_status *rx_status)
  133. {
  134. int energy_a, energy_b, energy_c, max_energy;
  135. u32 val;
  136. val =
  137. le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_ENERGY_ANT_ABC_IDX]);
  138. energy_a = (val & IWL_RX_INFO_ENERGY_ANT_A_MSK) >>
  139. IWL_RX_INFO_ENERGY_ANT_A_POS;
  140. energy_a = energy_a ? -energy_a : S8_MIN;
  141. energy_b = (val & IWL_RX_INFO_ENERGY_ANT_B_MSK) >>
  142. IWL_RX_INFO_ENERGY_ANT_B_POS;
  143. energy_b = energy_b ? -energy_b : S8_MIN;
  144. energy_c = (val & IWL_RX_INFO_ENERGY_ANT_C_MSK) >>
  145. IWL_RX_INFO_ENERGY_ANT_C_POS;
  146. energy_c = energy_c ? -energy_c : S8_MIN;
  147. max_energy = max(energy_a, energy_b);
  148. max_energy = max(max_energy, energy_c);
  149. IWL_DEBUG_STATS(mvm, "energy In A %d B %d C %d , and max %d\n",
  150. energy_a, energy_b, energy_c, max_energy);
  151. rx_status->signal = max_energy;
  152. rx_status->chains = (le16_to_cpu(phy_info->phy_flags) &
  153. RX_RES_PHY_FLAGS_ANTENNA)
  154. >> RX_RES_PHY_FLAGS_ANTENNA_POS;
  155. rx_status->chain_signal[0] = energy_a;
  156. rx_status->chain_signal[1] = energy_b;
  157. rx_status->chain_signal[2] = energy_c;
  158. }
  159. /*
  160. * iwl_mvm_set_mac80211_rx_flag - translate fw status to mac80211 format
  161. * @mvm: the mvm object
  162. * @hdr: 80211 header
  163. * @stats: status in mac80211's format
  164. * @rx_pkt_status: status coming from fw
  165. *
  166. * returns non 0 value if the packet should be dropped
  167. */
  168. static u32 iwl_mvm_set_mac80211_rx_flag(struct iwl_mvm *mvm,
  169. struct ieee80211_hdr *hdr,
  170. struct ieee80211_rx_status *stats,
  171. u32 rx_pkt_status,
  172. u8 *crypt_len)
  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. *crypt_len = IEEE80211_CCMP_HDR_LEN;
  190. return 0;
  191. case RX_MPDU_RES_STATUS_SEC_TKIP_ENC:
  192. /* Don't drop the frame and decrypt it in SW */
  193. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_TTAK_OK))
  194. return 0;
  195. *crypt_len = IEEE80211_TKIP_IV_LEN;
  196. /* fall through if TTAK OK */
  197. case RX_MPDU_RES_STATUS_SEC_WEP_ENC:
  198. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_ICV_OK))
  199. return -1;
  200. stats->flag |= RX_FLAG_DECRYPTED;
  201. if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
  202. RX_MPDU_RES_STATUS_SEC_WEP_ENC)
  203. *crypt_len = IEEE80211_WEP_IV_LEN;
  204. return 0;
  205. case RX_MPDU_RES_STATUS_SEC_EXT_ENC:
  206. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
  207. return -1;
  208. stats->flag |= RX_FLAG_DECRYPTED;
  209. return 0;
  210. default:
  211. IWL_ERR(mvm, "Unhandled alg: 0x%x\n", rx_pkt_status);
  212. }
  213. return 0;
  214. }
  215. static void iwl_mvm_rx_csum(struct ieee80211_sta *sta,
  216. struct sk_buff *skb,
  217. u32 status)
  218. {
  219. struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
  220. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
  221. if (mvmvif->features & NETIF_F_RXCSUM &&
  222. status & RX_MPDU_RES_STATUS_CSUM_DONE &&
  223. status & RX_MPDU_RES_STATUS_CSUM_OK)
  224. skb->ip_summed = CHECKSUM_UNNECESSARY;
  225. }
  226. /*
  227. * iwl_mvm_rx_rx_mpdu - REPLY_RX_MPDU_CMD handler
  228. *
  229. * Handles the actual data of the Rx packet from the fw
  230. */
  231. void iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct napi_struct *napi,
  232. struct iwl_rx_cmd_buffer *rxb)
  233. {
  234. struct ieee80211_hdr *hdr;
  235. struct ieee80211_rx_status *rx_status;
  236. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  237. struct iwl_rx_phy_info *phy_info;
  238. struct iwl_rx_mpdu_res_start *rx_res;
  239. struct ieee80211_sta *sta;
  240. struct sk_buff *skb;
  241. u32 len;
  242. u32 ampdu_status;
  243. u32 rate_n_flags;
  244. u32 rx_pkt_status;
  245. u8 crypt_len = 0;
  246. phy_info = &mvm->last_phy_info;
  247. rx_res = (struct iwl_rx_mpdu_res_start *)pkt->data;
  248. hdr = (struct ieee80211_hdr *)(pkt->data + sizeof(*rx_res));
  249. len = le16_to_cpu(rx_res->byte_count);
  250. rx_pkt_status = le32_to_cpup((__le32 *)
  251. (pkt->data + sizeof(*rx_res) + len));
  252. /* Dont use dev_alloc_skb(), we'll have enough headroom once
  253. * ieee80211_hdr pulled.
  254. */
  255. skb = alloc_skb(128, GFP_ATOMIC);
  256. if (!skb) {
  257. IWL_ERR(mvm, "alloc_skb failed\n");
  258. return;
  259. }
  260. rx_status = IEEE80211_SKB_RXCB(skb);
  261. /*
  262. * drop the packet if it has failed being decrypted by HW
  263. */
  264. if (iwl_mvm_set_mac80211_rx_flag(mvm, hdr, rx_status, rx_pkt_status,
  265. &crypt_len)) {
  266. IWL_DEBUG_DROP(mvm, "Bad decryption results 0x%08x\n",
  267. rx_pkt_status);
  268. kfree_skb(skb);
  269. return;
  270. }
  271. if ((unlikely(phy_info->cfg_phy_cnt > 20))) {
  272. IWL_DEBUG_DROP(mvm, "dsp size out of range [0,20]: %d\n",
  273. phy_info->cfg_phy_cnt);
  274. kfree_skb(skb);
  275. return;
  276. }
  277. /*
  278. * Keep packets with CRC errors (and with overrun) for monitor mode
  279. * (otherwise the firmware discards them) but mark them as bad.
  280. */
  281. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_CRC_OK) ||
  282. !(rx_pkt_status & RX_MPDU_RES_STATUS_OVERRUN_OK)) {
  283. IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n", rx_pkt_status);
  284. rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
  285. }
  286. /* This will be used in several places later */
  287. rate_n_flags = le32_to_cpu(phy_info->rate_n_flags);
  288. /* rx_status carries information about the packet to mac80211 */
  289. rx_status->mactime = le64_to_cpu(phy_info->timestamp);
  290. rx_status->device_timestamp = le32_to_cpu(phy_info->system_timestamp);
  291. rx_status->band =
  292. (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ?
  293. IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
  294. rx_status->freq =
  295. ieee80211_channel_to_frequency(le16_to_cpu(phy_info->channel),
  296. rx_status->band);
  297. /*
  298. * TSF as indicated by the fw is at INA time, but mac80211 expects the
  299. * TSF at the beginning of the MPDU.
  300. */
  301. /*rx_status->flag |= RX_FLAG_MACTIME_MPDU;*/
  302. iwl_mvm_get_signal_strength(mvm, phy_info, rx_status);
  303. IWL_DEBUG_STATS_LIMIT(mvm, "Rssi %d, TSF %llu\n", rx_status->signal,
  304. (unsigned long long)rx_status->mactime);
  305. rcu_read_lock();
  306. /*
  307. * We have tx blocked stations (with CS bit). If we heard frames from
  308. * a blocked station on a new channel we can TX to it again.
  309. */
  310. if (unlikely(mvm->csa_tx_block_bcn_timeout)) {
  311. sta = ieee80211_find_sta(
  312. rcu_dereference(mvm->csa_tx_blocked_vif), hdr->addr2);
  313. if (sta)
  314. iwl_mvm_sta_modify_disable_tx_ap(mvm, sta, false);
  315. }
  316. /* This is fine since we don't support multiple AP interfaces */
  317. sta = ieee80211_find_sta_by_ifaddr(mvm->hw, hdr->addr2, NULL);
  318. if (sta) {
  319. struct iwl_mvm_sta *mvmsta;
  320. mvmsta = iwl_mvm_sta_from_mac80211(sta);
  321. rs_update_last_rssi(mvm, &mvmsta->lq_sta, rx_status);
  322. if (iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_RSSI) &&
  323. ieee80211_is_beacon(hdr->frame_control)) {
  324. struct iwl_fw_dbg_trigger_tlv *trig;
  325. struct iwl_fw_dbg_trigger_low_rssi *rssi_trig;
  326. bool trig_check;
  327. s32 rssi;
  328. trig = iwl_fw_dbg_get_trigger(mvm->fw,
  329. FW_DBG_TRIGGER_RSSI);
  330. rssi_trig = (void *)trig->data;
  331. rssi = le32_to_cpu(rssi_trig->rssi);
  332. trig_check =
  333. iwl_fw_dbg_trigger_check_stop(mvm, mvmsta->vif,
  334. trig);
  335. if (trig_check && rx_status->signal < rssi)
  336. iwl_mvm_fw_dbg_collect_trig(mvm, trig, NULL);
  337. }
  338. }
  339. if (sta && ieee80211_is_data(hdr->frame_control))
  340. iwl_mvm_rx_csum(sta, skb, rx_pkt_status);
  341. rcu_read_unlock();
  342. /* set the preamble flag if appropriate */
  343. if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_SHORT_PREAMBLE))
  344. rx_status->flag |= RX_FLAG_SHORTPRE;
  345. if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
  346. /*
  347. * We know which subframes of an A-MPDU belong
  348. * together since we get a single PHY response
  349. * from the firmware for all of them
  350. */
  351. rx_status->flag |= RX_FLAG_AMPDU_DETAILS;
  352. rx_status->ampdu_reference = mvm->ampdu_ref;
  353. }
  354. /* Set up the HT phy flags */
  355. switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
  356. case RATE_MCS_CHAN_WIDTH_20:
  357. break;
  358. case RATE_MCS_CHAN_WIDTH_40:
  359. rx_status->flag |= RX_FLAG_40MHZ;
  360. break;
  361. case RATE_MCS_CHAN_WIDTH_80:
  362. rx_status->vht_flag |= RX_VHT_FLAG_80MHZ;
  363. break;
  364. case RATE_MCS_CHAN_WIDTH_160:
  365. rx_status->vht_flag |= RX_VHT_FLAG_160MHZ;
  366. break;
  367. }
  368. if (rate_n_flags & RATE_MCS_SGI_MSK)
  369. rx_status->flag |= RX_FLAG_SHORT_GI;
  370. if (rate_n_flags & RATE_HT_MCS_GF_MSK)
  371. rx_status->flag |= RX_FLAG_HT_GF;
  372. if (rate_n_flags & RATE_MCS_LDPC_MSK)
  373. rx_status->flag |= RX_FLAG_LDPC;
  374. if (rate_n_flags & RATE_MCS_HT_MSK) {
  375. u8 stbc = (rate_n_flags & RATE_MCS_HT_STBC_MSK) >>
  376. RATE_MCS_STBC_POS;
  377. rx_status->flag |= RX_FLAG_HT;
  378. rx_status->rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
  379. rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
  380. } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
  381. u8 stbc = (rate_n_flags & RATE_MCS_VHT_STBC_MSK) >>
  382. RATE_MCS_STBC_POS;
  383. rx_status->vht_nss =
  384. ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
  385. RATE_VHT_MCS_NSS_POS) + 1;
  386. rx_status->rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
  387. rx_status->flag |= RX_FLAG_VHT;
  388. rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
  389. if (rate_n_flags & RATE_MCS_BF_MSK)
  390. rx_status->vht_flag |= RX_VHT_FLAG_BF;
  391. } else {
  392. rx_status->rate_idx =
  393. iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
  394. rx_status->band);
  395. }
  396. #ifdef CONFIG_IWLWIFI_DEBUGFS
  397. iwl_mvm_update_frame_stats(mvm, rate_n_flags,
  398. rx_status->flag & RX_FLAG_AMPDU_DETAILS);
  399. #endif
  400. iwl_mvm_pass_packet_to_mac80211(mvm, napi, skb, hdr, len, ampdu_status,
  401. crypt_len, rxb);
  402. }
  403. static void iwl_mvm_update_rx_statistics(struct iwl_mvm *mvm,
  404. struct mvm_statistics_rx *rx_stats)
  405. {
  406. lockdep_assert_held(&mvm->mutex);
  407. mvm->rx_stats = *rx_stats;
  408. }
  409. struct iwl_mvm_stat_data {
  410. struct iwl_mvm *mvm;
  411. __le32 mac_id;
  412. __s8 beacon_filter_average_energy;
  413. struct mvm_statistics_general_v8 *general;
  414. };
  415. static void iwl_mvm_stat_iterator(void *_data, u8 *mac,
  416. struct ieee80211_vif *vif)
  417. {
  418. struct iwl_mvm_stat_data *data = _data;
  419. struct iwl_mvm *mvm = data->mvm;
  420. int sig = -data->beacon_filter_average_energy;
  421. int last_event;
  422. int thold = vif->bss_conf.cqm_rssi_thold;
  423. int hyst = vif->bss_conf.cqm_rssi_hyst;
  424. u16 id = le32_to_cpu(data->mac_id);
  425. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  426. /* This doesn't need the MAC ID check since it's not taking the
  427. * data copied into the "data" struct, but rather the data from
  428. * the notification directly.
  429. */
  430. if (data->general) {
  431. mvmvif->beacon_stats.num_beacons =
  432. le32_to_cpu(data->general->beacon_counter[mvmvif->id]);
  433. mvmvif->beacon_stats.avg_signal =
  434. -data->general->beacon_average_energy[mvmvif->id];
  435. }
  436. if (mvmvif->id != id)
  437. return;
  438. if (vif->type != NL80211_IFTYPE_STATION)
  439. return;
  440. if (sig == 0) {
  441. IWL_DEBUG_RX(mvm, "RSSI is 0 - skip signal based decision\n");
  442. return;
  443. }
  444. mvmvif->bf_data.ave_beacon_signal = sig;
  445. /* BT Coex */
  446. if (mvmvif->bf_data.bt_coex_min_thold !=
  447. mvmvif->bf_data.bt_coex_max_thold) {
  448. last_event = mvmvif->bf_data.last_bt_coex_event;
  449. if (sig > mvmvif->bf_data.bt_coex_max_thold &&
  450. (last_event <= mvmvif->bf_data.bt_coex_min_thold ||
  451. last_event == 0)) {
  452. mvmvif->bf_data.last_bt_coex_event = sig;
  453. IWL_DEBUG_RX(mvm, "cqm_iterator bt coex high %d\n",
  454. sig);
  455. iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_HIGH);
  456. } else if (sig < mvmvif->bf_data.bt_coex_min_thold &&
  457. (last_event >= mvmvif->bf_data.bt_coex_max_thold ||
  458. last_event == 0)) {
  459. mvmvif->bf_data.last_bt_coex_event = sig;
  460. IWL_DEBUG_RX(mvm, "cqm_iterator bt coex low %d\n",
  461. sig);
  462. iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_LOW);
  463. }
  464. }
  465. if (!(vif->driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI))
  466. return;
  467. /* CQM Notification */
  468. last_event = mvmvif->bf_data.last_cqm_event;
  469. if (thold && sig < thold && (last_event == 0 ||
  470. sig < last_event - hyst)) {
  471. mvmvif->bf_data.last_cqm_event = sig;
  472. IWL_DEBUG_RX(mvm, "cqm_iterator cqm low %d\n",
  473. sig);
  474. ieee80211_cqm_rssi_notify(
  475. vif,
  476. NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
  477. GFP_KERNEL);
  478. } else if (sig > thold &&
  479. (last_event == 0 || sig > last_event + hyst)) {
  480. mvmvif->bf_data.last_cqm_event = sig;
  481. IWL_DEBUG_RX(mvm, "cqm_iterator cqm high %d\n",
  482. sig);
  483. ieee80211_cqm_rssi_notify(
  484. vif,
  485. NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
  486. GFP_KERNEL);
  487. }
  488. }
  489. static inline void
  490. iwl_mvm_rx_stats_check_trigger(struct iwl_mvm *mvm, struct iwl_rx_packet *pkt)
  491. {
  492. struct iwl_fw_dbg_trigger_tlv *trig;
  493. struct iwl_fw_dbg_trigger_stats *trig_stats;
  494. u32 trig_offset, trig_thold;
  495. if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_STATS))
  496. return;
  497. trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_STATS);
  498. trig_stats = (void *)trig->data;
  499. if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
  500. return;
  501. trig_offset = le32_to_cpu(trig_stats->stop_offset);
  502. trig_thold = le32_to_cpu(trig_stats->stop_threshold);
  503. if (WARN_ON_ONCE(trig_offset >= iwl_rx_packet_payload_len(pkt)))
  504. return;
  505. if (le32_to_cpup((__le32 *) (pkt->data + trig_offset)) < trig_thold)
  506. return;
  507. iwl_mvm_fw_dbg_collect_trig(mvm, trig, NULL);
  508. }
  509. void iwl_mvm_handle_rx_statistics(struct iwl_mvm *mvm,
  510. struct iwl_rx_packet *pkt)
  511. {
  512. size_t v8_len = sizeof(struct iwl_notif_statistics_v8);
  513. size_t v10_len = sizeof(struct iwl_notif_statistics_v10);
  514. struct iwl_mvm_stat_data data = {
  515. .mvm = mvm,
  516. };
  517. u32 temperature;
  518. if (fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_STATS_V10)) {
  519. struct iwl_notif_statistics_v10 *stats = (void *)&pkt->data;
  520. if (iwl_rx_packet_payload_len(pkt) != v10_len)
  521. goto invalid;
  522. temperature = le32_to_cpu(stats->general.radio_temperature);
  523. data.mac_id = stats->rx.general.mac_id;
  524. data.beacon_filter_average_energy =
  525. stats->general.beacon_filter_average_energy;
  526. iwl_mvm_update_rx_statistics(mvm, &stats->rx);
  527. mvm->radio_stats.rx_time = le64_to_cpu(stats->general.rx_time);
  528. mvm->radio_stats.tx_time = le64_to_cpu(stats->general.tx_time);
  529. mvm->radio_stats.on_time_rf =
  530. le64_to_cpu(stats->general.on_time_rf);
  531. mvm->radio_stats.on_time_scan =
  532. le64_to_cpu(stats->general.on_time_scan);
  533. data.general = &stats->general;
  534. } else {
  535. struct iwl_notif_statistics_v8 *stats = (void *)&pkt->data;
  536. if (iwl_rx_packet_payload_len(pkt) != v8_len)
  537. goto invalid;
  538. temperature = le32_to_cpu(stats->general.radio_temperature);
  539. data.mac_id = stats->rx.general.mac_id;
  540. data.beacon_filter_average_energy =
  541. stats->general.beacon_filter_average_energy;
  542. iwl_mvm_update_rx_statistics(mvm, &stats->rx);
  543. }
  544. iwl_mvm_rx_stats_check_trigger(mvm, pkt);
  545. /* Only handle rx statistics temperature changes if async temp
  546. * notifications are not supported
  547. */
  548. if (!fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_ASYNC_DTM))
  549. iwl_mvm_tt_temp_changed(mvm, temperature);
  550. ieee80211_iterate_active_interfaces(mvm->hw,
  551. IEEE80211_IFACE_ITER_NORMAL,
  552. iwl_mvm_stat_iterator,
  553. &data);
  554. return;
  555. invalid:
  556. IWL_ERR(mvm, "received invalid statistics size (%d)!\n",
  557. iwl_rx_packet_payload_len(pkt));
  558. }
  559. void iwl_mvm_rx_statistics(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
  560. {
  561. iwl_mvm_handle_rx_statistics(mvm, rxb_addr(rxb));
  562. }