rx.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  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. * Copyright(c) 2016 Intel Deutschland GmbH
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of version 2 of the GNU General Public License as
  14. * published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
  24. * USA
  25. *
  26. * The full GNU General Public License is included in this distribution
  27. * in the file called COPYING.
  28. *
  29. * Contact Information:
  30. * Intel Linux Wireless <linuxwifi@intel.com>
  31. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  32. *
  33. * BSD LICENSE
  34. *
  35. * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
  36. * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
  37. * All rights reserved.
  38. *
  39. * Redistribution and use in source and binary forms, with or without
  40. * modification, are permitted provided that the following conditions
  41. * are met:
  42. *
  43. * * Redistributions of source code must retain the above copyright
  44. * notice, this list of conditions and the following disclaimer.
  45. * * Redistributions in binary form must reproduce the above copyright
  46. * notice, this list of conditions and the following disclaimer in
  47. * the documentation and/or other materials provided with the
  48. * distribution.
  49. * * Neither the name Intel Corporation nor the names of its
  50. * contributors may be used to endorse or promote products derived
  51. * from this software without specific prior written permission.
  52. *
  53. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  54. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  55. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  56. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  57. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  58. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  59. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  60. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  61. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  62. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  63. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  64. *****************************************************************************/
  65. #include <linux/etherdevice.h>
  66. #include <linux/skbuff.h>
  67. #include "iwl-trans.h"
  68. #include "mvm.h"
  69. #include "fw-api.h"
  70. #include "fw-dbg.h"
  71. /*
  72. * iwl_mvm_rx_rx_phy_cmd - REPLY_RX_PHY_CMD handler
  73. *
  74. * Copies the phy information in mvm->last_phy_info, it will be used when the
  75. * actual data will come from the fw in the next packet.
  76. */
  77. void iwl_mvm_rx_rx_phy_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
  78. {
  79. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  80. memcpy(&mvm->last_phy_info, pkt->data, sizeof(mvm->last_phy_info));
  81. mvm->ampdu_ref++;
  82. #ifdef CONFIG_IWLWIFI_DEBUGFS
  83. if (mvm->last_phy_info.phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
  84. spin_lock(&mvm->drv_stats_lock);
  85. mvm->drv_rx_stats.ampdu_count++;
  86. spin_unlock(&mvm->drv_stats_lock);
  87. }
  88. #endif
  89. }
  90. /*
  91. * iwl_mvm_pass_packet_to_mac80211 - builds the packet for mac80211
  92. *
  93. * Adds the rxb to a new skb and give it to mac80211
  94. */
  95. static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
  96. struct ieee80211_sta *sta,
  97. struct napi_struct *napi,
  98. struct sk_buff *skb,
  99. struct ieee80211_hdr *hdr, u16 len,
  100. u8 crypt_len,
  101. struct iwl_rx_cmd_buffer *rxb)
  102. {
  103. unsigned int hdrlen, fraglen;
  104. /* If frame is small enough to fit in skb->head, pull it completely.
  105. * If not, only pull ieee80211_hdr (including crypto if present, and
  106. * an additional 8 bytes for SNAP/ethertype, see below) so that
  107. * splice() or TCP coalesce are more efficient.
  108. *
  109. * Since, in addition, ieee80211_data_to_8023() always pull in at
  110. * least 8 bytes (possibly more for mesh) we can do the same here
  111. * to save the cost of doing it later. That still doesn't pull in
  112. * the actual IP header since the typical case has a SNAP header.
  113. * If the latter changes (there are efforts in the standards group
  114. * to do so) we should revisit this and ieee80211_data_to_8023().
  115. */
  116. hdrlen = (len <= skb_tailroom(skb)) ? len :
  117. sizeof(*hdr) + crypt_len + 8;
  118. memcpy(skb_put(skb, hdrlen), hdr, hdrlen);
  119. fraglen = len - hdrlen;
  120. if (fraglen) {
  121. int offset = (void *)hdr + hdrlen -
  122. rxb_addr(rxb) + rxb_offset(rxb);
  123. skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset,
  124. fraglen, rxb->truesize);
  125. }
  126. ieee80211_rx_napi(mvm->hw, sta, skb, napi);
  127. }
  128. /*
  129. * iwl_mvm_get_signal_strength - use new rx PHY INFO API
  130. * values are reported by the fw as positive values - need to negate
  131. * to obtain their dBM. Account for missing antennas by replacing 0
  132. * values by -256dBm: practically 0 power and a non-feasible 8 bit value.
  133. */
  134. static void iwl_mvm_get_signal_strength(struct iwl_mvm *mvm,
  135. struct iwl_rx_phy_info *phy_info,
  136. struct ieee80211_rx_status *rx_status)
  137. {
  138. int energy_a, energy_b, energy_c, max_energy;
  139. u32 val;
  140. val =
  141. le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_ENERGY_ANT_ABC_IDX]);
  142. energy_a = (val & IWL_RX_INFO_ENERGY_ANT_A_MSK) >>
  143. IWL_RX_INFO_ENERGY_ANT_A_POS;
  144. energy_a = energy_a ? -energy_a : S8_MIN;
  145. energy_b = (val & IWL_RX_INFO_ENERGY_ANT_B_MSK) >>
  146. IWL_RX_INFO_ENERGY_ANT_B_POS;
  147. energy_b = energy_b ? -energy_b : S8_MIN;
  148. energy_c = (val & IWL_RX_INFO_ENERGY_ANT_C_MSK) >>
  149. IWL_RX_INFO_ENERGY_ANT_C_POS;
  150. energy_c = energy_c ? -energy_c : S8_MIN;
  151. max_energy = max(energy_a, energy_b);
  152. max_energy = max(max_energy, energy_c);
  153. IWL_DEBUG_STATS(mvm, "energy In A %d B %d C %d , and max %d\n",
  154. energy_a, energy_b, energy_c, max_energy);
  155. rx_status->signal = max_energy;
  156. rx_status->chains = (le16_to_cpu(phy_info->phy_flags) &
  157. RX_RES_PHY_FLAGS_ANTENNA)
  158. >> RX_RES_PHY_FLAGS_ANTENNA_POS;
  159. rx_status->chain_signal[0] = energy_a;
  160. rx_status->chain_signal[1] = energy_b;
  161. rx_status->chain_signal[2] = energy_c;
  162. }
  163. /*
  164. * iwl_mvm_set_mac80211_rx_flag - translate fw status to mac80211 format
  165. * @mvm: the mvm object
  166. * @hdr: 80211 header
  167. * @stats: status in mac80211's format
  168. * @rx_pkt_status: status coming from fw
  169. *
  170. * returns non 0 value if the packet should be dropped
  171. */
  172. static u32 iwl_mvm_set_mac80211_rx_flag(struct iwl_mvm *mvm,
  173. struct ieee80211_hdr *hdr,
  174. struct ieee80211_rx_status *stats,
  175. u32 rx_pkt_status,
  176. u8 *crypt_len)
  177. {
  178. if (!ieee80211_has_protected(hdr->frame_control) ||
  179. (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
  180. RX_MPDU_RES_STATUS_SEC_NO_ENC)
  181. return 0;
  182. /* packet was encrypted with unknown alg */
  183. if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
  184. RX_MPDU_RES_STATUS_SEC_ENC_ERR)
  185. return 0;
  186. switch (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) {
  187. case RX_MPDU_RES_STATUS_SEC_CCM_ENC:
  188. /* alg is CCM: check MIC only */
  189. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
  190. return -1;
  191. stats->flag |= RX_FLAG_DECRYPTED;
  192. *crypt_len = IEEE80211_CCMP_HDR_LEN;
  193. return 0;
  194. case RX_MPDU_RES_STATUS_SEC_TKIP_ENC:
  195. /* Don't drop the frame and decrypt it in SW */
  196. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_TTAK_OK))
  197. return 0;
  198. *crypt_len = IEEE80211_TKIP_IV_LEN;
  199. /* fall through if TTAK OK */
  200. case RX_MPDU_RES_STATUS_SEC_WEP_ENC:
  201. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_ICV_OK))
  202. return -1;
  203. stats->flag |= RX_FLAG_DECRYPTED;
  204. if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
  205. RX_MPDU_RES_STATUS_SEC_WEP_ENC)
  206. *crypt_len = IEEE80211_WEP_IV_LEN;
  207. return 0;
  208. case RX_MPDU_RES_STATUS_SEC_EXT_ENC:
  209. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
  210. return -1;
  211. stats->flag |= RX_FLAG_DECRYPTED;
  212. return 0;
  213. default:
  214. IWL_ERR(mvm, "Unhandled alg: 0x%x\n", rx_pkt_status);
  215. }
  216. return 0;
  217. }
  218. static void iwl_mvm_rx_csum(struct ieee80211_sta *sta,
  219. struct sk_buff *skb,
  220. u32 status)
  221. {
  222. struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
  223. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
  224. if (mvmvif->features & NETIF_F_RXCSUM &&
  225. status & RX_MPDU_RES_STATUS_CSUM_DONE &&
  226. status & RX_MPDU_RES_STATUS_CSUM_OK)
  227. skb->ip_summed = CHECKSUM_UNNECESSARY;
  228. }
  229. /*
  230. * iwl_mvm_rx_rx_mpdu - REPLY_RX_MPDU_CMD handler
  231. *
  232. * Handles the actual data of the Rx packet from the fw
  233. */
  234. void iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct napi_struct *napi,
  235. struct iwl_rx_cmd_buffer *rxb)
  236. {
  237. struct ieee80211_hdr *hdr;
  238. struct ieee80211_rx_status *rx_status;
  239. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  240. struct iwl_rx_phy_info *phy_info;
  241. struct iwl_rx_mpdu_res_start *rx_res;
  242. struct ieee80211_sta *sta = NULL;
  243. struct sk_buff *skb;
  244. u32 len;
  245. u32 rate_n_flags;
  246. u32 rx_pkt_status;
  247. u8 crypt_len = 0;
  248. bool take_ref;
  249. phy_info = &mvm->last_phy_info;
  250. rx_res = (struct iwl_rx_mpdu_res_start *)pkt->data;
  251. hdr = (struct ieee80211_hdr *)(pkt->data + sizeof(*rx_res));
  252. len = le16_to_cpu(rx_res->byte_count);
  253. rx_pkt_status = le32_to_cpup((__le32 *)
  254. (pkt->data + sizeof(*rx_res) + len));
  255. /* Dont use dev_alloc_skb(), we'll have enough headroom once
  256. * ieee80211_hdr pulled.
  257. */
  258. skb = alloc_skb(128, GFP_ATOMIC);
  259. if (!skb) {
  260. IWL_ERR(mvm, "alloc_skb failed\n");
  261. return;
  262. }
  263. rx_status = IEEE80211_SKB_RXCB(skb);
  264. /*
  265. * drop the packet if it has failed being decrypted by HW
  266. */
  267. if (iwl_mvm_set_mac80211_rx_flag(mvm, hdr, rx_status, rx_pkt_status,
  268. &crypt_len)) {
  269. IWL_DEBUG_DROP(mvm, "Bad decryption results 0x%08x\n",
  270. rx_pkt_status);
  271. kfree_skb(skb);
  272. return;
  273. }
  274. /*
  275. * Keep packets with CRC errors (and with overrun) for monitor mode
  276. * (otherwise the firmware discards them) but mark them as bad.
  277. */
  278. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_CRC_OK) ||
  279. !(rx_pkt_status & RX_MPDU_RES_STATUS_OVERRUN_OK)) {
  280. IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n", rx_pkt_status);
  281. rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
  282. }
  283. /* This will be used in several places later */
  284. rate_n_flags = le32_to_cpu(phy_info->rate_n_flags);
  285. /* rx_status carries information about the packet to mac80211 */
  286. rx_status->mactime = le64_to_cpu(phy_info->timestamp);
  287. rx_status->device_timestamp = le32_to_cpu(phy_info->system_timestamp);
  288. rx_status->band =
  289. (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ?
  290. NL80211_BAND_2GHZ : NL80211_BAND_5GHZ;
  291. rx_status->freq =
  292. ieee80211_channel_to_frequency(le16_to_cpu(phy_info->channel),
  293. rx_status->band);
  294. /* TSF as indicated by the firmware is at INA time */
  295. rx_status->flag |= RX_FLAG_MACTIME_PLCP_START;
  296. iwl_mvm_get_signal_strength(mvm, phy_info, rx_status);
  297. IWL_DEBUG_STATS_LIMIT(mvm, "Rssi %d, TSF %llu\n", rx_status->signal,
  298. (unsigned long long)rx_status->mactime);
  299. rcu_read_lock();
  300. if (rx_pkt_status & RX_MPDU_RES_STATUS_SRC_STA_FOUND) {
  301. u32 id = rx_pkt_status & RX_MPDU_RES_STATUS_STA_ID_MSK;
  302. id >>= RX_MDPU_RES_STATUS_STA_ID_SHIFT;
  303. if (!WARN_ON_ONCE(id >= IWL_MVM_STATION_COUNT)) {
  304. sta = rcu_dereference(mvm->fw_id_to_mac_id[id]);
  305. if (IS_ERR(sta))
  306. sta = NULL;
  307. }
  308. } else if (!is_multicast_ether_addr(hdr->addr2)) {
  309. /* This is fine since we prevent two stations with the same
  310. * address from being added.
  311. */
  312. sta = ieee80211_find_sta_by_ifaddr(mvm->hw, hdr->addr2, NULL);
  313. }
  314. if (sta) {
  315. struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
  316. struct ieee80211_vif *tx_blocked_vif =
  317. rcu_dereference(mvm->csa_tx_blocked_vif);
  318. /* We have tx blocked stations (with CS bit). If we heard
  319. * frames from a blocked station on a new channel we can
  320. * TX to it again.
  321. */
  322. if (unlikely(tx_blocked_vif) &&
  323. mvmsta->vif == tx_blocked_vif) {
  324. struct iwl_mvm_vif *mvmvif =
  325. iwl_mvm_vif_from_mac80211(tx_blocked_vif);
  326. if (mvmvif->csa_target_freq == rx_status->freq)
  327. iwl_mvm_sta_modify_disable_tx_ap(mvm, sta,
  328. false);
  329. }
  330. rs_update_last_rssi(mvm, &mvmsta->lq_sta, rx_status);
  331. if (iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_RSSI) &&
  332. ieee80211_is_beacon(hdr->frame_control)) {
  333. struct iwl_fw_dbg_trigger_tlv *trig;
  334. struct iwl_fw_dbg_trigger_low_rssi *rssi_trig;
  335. bool trig_check;
  336. s32 rssi;
  337. trig = iwl_fw_dbg_get_trigger(mvm->fw,
  338. FW_DBG_TRIGGER_RSSI);
  339. rssi_trig = (void *)trig->data;
  340. rssi = le32_to_cpu(rssi_trig->rssi);
  341. trig_check =
  342. iwl_fw_dbg_trigger_check_stop(mvm, mvmsta->vif,
  343. trig);
  344. if (trig_check && rx_status->signal < rssi)
  345. iwl_mvm_fw_dbg_collect_trig(mvm, trig, NULL);
  346. }
  347. if (ieee80211_is_data(hdr->frame_control))
  348. iwl_mvm_rx_csum(sta, skb, rx_pkt_status);
  349. }
  350. rcu_read_unlock();
  351. /* set the preamble flag if appropriate */
  352. if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_SHORT_PREAMBLE))
  353. rx_status->flag |= RX_FLAG_SHORTPRE;
  354. if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
  355. /*
  356. * We know which subframes of an A-MPDU belong
  357. * together since we get a single PHY response
  358. * from the firmware for all of them
  359. */
  360. rx_status->flag |= RX_FLAG_AMPDU_DETAILS;
  361. rx_status->ampdu_reference = mvm->ampdu_ref;
  362. }
  363. /* Set up the HT phy flags */
  364. switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
  365. case RATE_MCS_CHAN_WIDTH_20:
  366. break;
  367. case RATE_MCS_CHAN_WIDTH_40:
  368. rx_status->flag |= RX_FLAG_40MHZ;
  369. break;
  370. case RATE_MCS_CHAN_WIDTH_80:
  371. rx_status->vht_flag |= RX_VHT_FLAG_80MHZ;
  372. break;
  373. case RATE_MCS_CHAN_WIDTH_160:
  374. rx_status->vht_flag |= RX_VHT_FLAG_160MHZ;
  375. break;
  376. }
  377. if (rate_n_flags & RATE_MCS_SGI_MSK)
  378. rx_status->flag |= RX_FLAG_SHORT_GI;
  379. if (rate_n_flags & RATE_HT_MCS_GF_MSK)
  380. rx_status->flag |= RX_FLAG_HT_GF;
  381. if (rate_n_flags & RATE_MCS_LDPC_MSK)
  382. rx_status->flag |= RX_FLAG_LDPC;
  383. if (rate_n_flags & RATE_MCS_HT_MSK) {
  384. u8 stbc = (rate_n_flags & RATE_MCS_HT_STBC_MSK) >>
  385. RATE_MCS_STBC_POS;
  386. rx_status->flag |= RX_FLAG_HT;
  387. rx_status->rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
  388. rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
  389. } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
  390. u8 stbc = (rate_n_flags & RATE_MCS_VHT_STBC_MSK) >>
  391. RATE_MCS_STBC_POS;
  392. rx_status->vht_nss =
  393. ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
  394. RATE_VHT_MCS_NSS_POS) + 1;
  395. rx_status->rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
  396. rx_status->flag |= RX_FLAG_VHT;
  397. rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
  398. if (rate_n_flags & RATE_MCS_BF_MSK)
  399. rx_status->vht_flag |= RX_VHT_FLAG_BF;
  400. } else {
  401. rx_status->rate_idx =
  402. iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
  403. rx_status->band);
  404. }
  405. #ifdef CONFIG_IWLWIFI_DEBUGFS
  406. iwl_mvm_update_frame_stats(mvm, rate_n_flags,
  407. rx_status->flag & RX_FLAG_AMPDU_DETAILS);
  408. #endif
  409. if (unlikely((ieee80211_is_beacon(hdr->frame_control) ||
  410. ieee80211_is_probe_resp(hdr->frame_control)) &&
  411. mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED))
  412. mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_FOUND;
  413. if (unlikely(ieee80211_is_beacon(hdr->frame_control) ||
  414. ieee80211_is_probe_resp(hdr->frame_control)))
  415. rx_status->boottime_ns = ktime_get_boot_ns();
  416. /* Take a reference briefly to kick off a d0i3 entry delay so
  417. * we can handle bursts of RX packets without toggling the
  418. * state too often. But don't do this for beacons if we are
  419. * going to idle because the beacon filtering changes we make
  420. * cause the firmware to send us collateral beacons. */
  421. take_ref = !(test_bit(STATUS_TRANS_GOING_IDLE, &mvm->trans->status) &&
  422. ieee80211_is_beacon(hdr->frame_control));
  423. if (take_ref)
  424. iwl_mvm_ref(mvm, IWL_MVM_REF_RX);
  425. iwl_mvm_pass_packet_to_mac80211(mvm, sta, napi, skb, hdr, len,
  426. crypt_len, rxb);
  427. if (take_ref)
  428. iwl_mvm_unref(mvm, IWL_MVM_REF_RX);
  429. }
  430. static void iwl_mvm_update_rx_statistics(struct iwl_mvm *mvm,
  431. struct mvm_statistics_rx *rx_stats)
  432. {
  433. lockdep_assert_held(&mvm->mutex);
  434. mvm->rx_stats = *rx_stats;
  435. }
  436. struct iwl_mvm_stat_data {
  437. struct iwl_mvm *mvm;
  438. __le32 mac_id;
  439. u8 beacon_filter_average_energy;
  440. struct mvm_statistics_general_v8 *general;
  441. struct mvm_statistics_load *load;
  442. };
  443. static void iwl_mvm_stat_iterator(void *_data, u8 *mac,
  444. struct ieee80211_vif *vif)
  445. {
  446. struct iwl_mvm_stat_data *data = _data;
  447. struct iwl_mvm *mvm = data->mvm;
  448. int sig = -data->beacon_filter_average_energy;
  449. int last_event;
  450. int thold = vif->bss_conf.cqm_rssi_thold;
  451. int hyst = vif->bss_conf.cqm_rssi_hyst;
  452. u16 id = le32_to_cpu(data->mac_id);
  453. struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
  454. /* This doesn't need the MAC ID check since it's not taking the
  455. * data copied into the "data" struct, but rather the data from
  456. * the notification directly.
  457. */
  458. if (data->general) {
  459. mvmvif->beacon_stats.num_beacons =
  460. le32_to_cpu(data->general->beacon_counter[mvmvif->id]);
  461. mvmvif->beacon_stats.avg_signal =
  462. -data->general->beacon_average_energy[mvmvif->id];
  463. }
  464. if (mvmvif->id != id)
  465. return;
  466. if (vif->type != NL80211_IFTYPE_STATION)
  467. return;
  468. if (sig == 0) {
  469. IWL_DEBUG_RX(mvm, "RSSI is 0 - skip signal based decision\n");
  470. return;
  471. }
  472. mvmvif->bf_data.ave_beacon_signal = sig;
  473. /* BT Coex */
  474. if (mvmvif->bf_data.bt_coex_min_thold !=
  475. mvmvif->bf_data.bt_coex_max_thold) {
  476. last_event = mvmvif->bf_data.last_bt_coex_event;
  477. if (sig > mvmvif->bf_data.bt_coex_max_thold &&
  478. (last_event <= mvmvif->bf_data.bt_coex_min_thold ||
  479. last_event == 0)) {
  480. mvmvif->bf_data.last_bt_coex_event = sig;
  481. IWL_DEBUG_RX(mvm, "cqm_iterator bt coex high %d\n",
  482. sig);
  483. iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_HIGH);
  484. } else if (sig < mvmvif->bf_data.bt_coex_min_thold &&
  485. (last_event >= mvmvif->bf_data.bt_coex_max_thold ||
  486. last_event == 0)) {
  487. mvmvif->bf_data.last_bt_coex_event = sig;
  488. IWL_DEBUG_RX(mvm, "cqm_iterator bt coex low %d\n",
  489. sig);
  490. iwl_mvm_bt_rssi_event(mvm, vif, RSSI_EVENT_LOW);
  491. }
  492. }
  493. if (!(vif->driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI))
  494. return;
  495. /* CQM Notification */
  496. last_event = mvmvif->bf_data.last_cqm_event;
  497. if (thold && sig < thold && (last_event == 0 ||
  498. sig < last_event - hyst)) {
  499. mvmvif->bf_data.last_cqm_event = sig;
  500. IWL_DEBUG_RX(mvm, "cqm_iterator cqm low %d\n",
  501. sig);
  502. ieee80211_cqm_rssi_notify(
  503. vif,
  504. NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
  505. GFP_KERNEL);
  506. } else if (sig > thold &&
  507. (last_event == 0 || sig > last_event + hyst)) {
  508. mvmvif->bf_data.last_cqm_event = sig;
  509. IWL_DEBUG_RX(mvm, "cqm_iterator cqm high %d\n",
  510. sig);
  511. ieee80211_cqm_rssi_notify(
  512. vif,
  513. NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
  514. GFP_KERNEL);
  515. }
  516. }
  517. static inline void
  518. iwl_mvm_rx_stats_check_trigger(struct iwl_mvm *mvm, struct iwl_rx_packet *pkt)
  519. {
  520. struct iwl_fw_dbg_trigger_tlv *trig;
  521. struct iwl_fw_dbg_trigger_stats *trig_stats;
  522. u32 trig_offset, trig_thold;
  523. if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_STATS))
  524. return;
  525. trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_STATS);
  526. trig_stats = (void *)trig->data;
  527. if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
  528. return;
  529. trig_offset = le32_to_cpu(trig_stats->stop_offset);
  530. trig_thold = le32_to_cpu(trig_stats->stop_threshold);
  531. if (WARN_ON_ONCE(trig_offset >= iwl_rx_packet_payload_len(pkt)))
  532. return;
  533. if (le32_to_cpup((__le32 *) (pkt->data + trig_offset)) < trig_thold)
  534. return;
  535. iwl_mvm_fw_dbg_collect_trig(mvm, trig, NULL);
  536. }
  537. void iwl_mvm_handle_rx_statistics(struct iwl_mvm *mvm,
  538. struct iwl_rx_packet *pkt)
  539. {
  540. struct iwl_notif_statistics_v11 *stats = (void *)&pkt->data;
  541. struct iwl_mvm_stat_data data = {
  542. .mvm = mvm,
  543. };
  544. int expected_size = iwl_mvm_has_new_rx_api(mvm) ? sizeof(*stats) :
  545. sizeof(struct iwl_notif_statistics_v10);
  546. u32 temperature;
  547. if (iwl_rx_packet_payload_len(pkt) != expected_size)
  548. goto invalid;
  549. temperature = le32_to_cpu(stats->general.radio_temperature);
  550. data.mac_id = stats->rx.general.mac_id;
  551. data.beacon_filter_average_energy =
  552. stats->general.beacon_filter_average_energy;
  553. iwl_mvm_update_rx_statistics(mvm, &stats->rx);
  554. mvm->radio_stats.rx_time = le64_to_cpu(stats->general.rx_time);
  555. mvm->radio_stats.tx_time = le64_to_cpu(stats->general.tx_time);
  556. mvm->radio_stats.on_time_rf =
  557. le64_to_cpu(stats->general.on_time_rf);
  558. mvm->radio_stats.on_time_scan =
  559. le64_to_cpu(stats->general.on_time_scan);
  560. data.general = &stats->general;
  561. if (iwl_mvm_has_new_rx_api(mvm)) {
  562. int i;
  563. data.load = &stats->load_stats;
  564. rcu_read_lock();
  565. for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
  566. struct iwl_mvm_sta *sta;
  567. if (!data.load->avg_energy[i])
  568. continue;
  569. sta = iwl_mvm_sta_from_staid_rcu(mvm, i);
  570. if (!sta)
  571. continue;
  572. sta->avg_energy = data.load->avg_energy[i];
  573. }
  574. rcu_read_unlock();
  575. }
  576. iwl_mvm_rx_stats_check_trigger(mvm, pkt);
  577. ieee80211_iterate_active_interfaces(mvm->hw,
  578. IEEE80211_IFACE_ITER_NORMAL,
  579. iwl_mvm_stat_iterator,
  580. &data);
  581. return;
  582. invalid:
  583. IWL_ERR(mvm, "received invalid statistics size (%d)!\n",
  584. iwl_rx_packet_payload_len(pkt));
  585. }
  586. void iwl_mvm_rx_statistics(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
  587. {
  588. iwl_mvm_handle_rx_statistics(mvm, rxb_addr(rxb));
  589. }
  590. void iwl_mvm_window_status_notif(struct iwl_mvm *mvm,
  591. struct iwl_rx_cmd_buffer *rxb)
  592. {
  593. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  594. struct iwl_ba_window_status_notif *notif = (void *)pkt->data;
  595. int i;
  596. u32 pkt_len = iwl_rx_packet_payload_len(pkt);
  597. if (WARN_ONCE(pkt_len != sizeof(*notif),
  598. "Received window status notification of wrong size (%u)\n",
  599. pkt_len))
  600. return;
  601. rcu_read_lock();
  602. for (i = 0; i < BA_WINDOW_STREAMS_MAX; i++) {
  603. struct ieee80211_sta *sta;
  604. u8 sta_id, tid;
  605. u64 bitmap;
  606. u32 ssn;
  607. u16 ratid;
  608. u16 received_mpdu;
  609. ratid = le16_to_cpu(notif->ra_tid[i]);
  610. /* check that this TID is valid */
  611. if (!(ratid & BA_WINDOW_STATUS_VALID_MSK))
  612. continue;
  613. received_mpdu = le16_to_cpu(notif->mpdu_rx_count[i]);
  614. if (received_mpdu == 0)
  615. continue;
  616. tid = ratid & BA_WINDOW_STATUS_TID_MSK;
  617. /* get the station */
  618. sta_id = (ratid & BA_WINDOW_STATUS_STA_ID_MSK)
  619. >> BA_WINDOW_STATUS_STA_ID_POS;
  620. sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
  621. if (IS_ERR_OR_NULL(sta))
  622. continue;
  623. bitmap = le64_to_cpu(notif->bitmap[i]);
  624. ssn = le32_to_cpu(notif->start_seq_num[i]);
  625. /* update mac80211 with the bitmap for the reordering buffer */
  626. ieee80211_mark_rx_ba_filtered_frames(sta, tid, ssn, bitmap,
  627. received_mpdu);
  628. }
  629. rcu_read_unlock();
  630. }