rx.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  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 - 2013 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 LICENSE.GPL.
  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 - 2013 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. return 0;
  78. }
  79. /*
  80. * iwl_mvm_pass_packet_to_mac80211 - builds the packet for mac80211
  81. *
  82. * Adds the rxb to a new skb and give it to mac80211
  83. */
  84. static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
  85. struct ieee80211_hdr *hdr, u16 len,
  86. u32 ampdu_status,
  87. struct iwl_rx_cmd_buffer *rxb,
  88. struct ieee80211_rx_status *stats)
  89. {
  90. struct sk_buff *skb;
  91. unsigned int hdrlen, fraglen;
  92. /* Dont use dev_alloc_skb(), we'll have enough headroom once
  93. * ieee80211_hdr pulled.
  94. */
  95. skb = alloc_skb(128, GFP_ATOMIC);
  96. if (!skb) {
  97. IWL_ERR(mvm, "alloc_skb failed\n");
  98. return;
  99. }
  100. /* If frame is small enough to fit in skb->head, pull it completely.
  101. * If not, only pull ieee80211_hdr so that splice() or TCP coalesce
  102. * are more efficient.
  103. */
  104. hdrlen = (len <= skb_tailroom(skb)) ? len : sizeof(*hdr);
  105. memcpy(skb_put(skb, hdrlen), hdr, hdrlen);
  106. fraglen = len - hdrlen;
  107. if (fraglen) {
  108. int offset = (void *)hdr + hdrlen -
  109. rxb_addr(rxb) + rxb_offset(rxb);
  110. skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset,
  111. fraglen, rxb->truesize);
  112. }
  113. memcpy(IEEE80211_SKB_RXCB(skb), stats, sizeof(*stats));
  114. ieee80211_rx_ni(mvm->hw, skb);
  115. }
  116. /*
  117. * iwl_mvm_calc_rssi - calculate the rssi in dBm
  118. * @phy_info: the phy information for the coming packet
  119. */
  120. static int iwl_mvm_calc_rssi(struct iwl_mvm *mvm,
  121. struct iwl_rx_phy_info *phy_info)
  122. {
  123. u32 rssi_a, rssi_b, rssi_c, max_rssi, agc_db;
  124. u32 val;
  125. /* Find max rssi among 3 possible receivers.
  126. * These values are measured by the Digital Signal Processor (DSP).
  127. * They should stay fairly constant even as the signal strength varies,
  128. * if the radio's Automatic Gain Control (AGC) is working right.
  129. * AGC value (see below) will provide the "interesting" info.
  130. */
  131. val = le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_RSSI_AB_IDX]);
  132. rssi_a = (val & IWL_OFDM_RSSI_INBAND_A_MSK) >> IWL_OFDM_RSSI_A_POS;
  133. rssi_b = (val & IWL_OFDM_RSSI_INBAND_B_MSK) >> IWL_OFDM_RSSI_B_POS;
  134. val = le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_RSSI_C_IDX]);
  135. rssi_c = (val & IWL_OFDM_RSSI_INBAND_C_MSK) >> IWL_OFDM_RSSI_C_POS;
  136. val = le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_AGC_IDX]);
  137. agc_db = (val & IWL_OFDM_AGC_DB_MSK) >> IWL_OFDM_AGC_DB_POS;
  138. max_rssi = max_t(u32, rssi_a, rssi_b);
  139. max_rssi = max_t(u32, max_rssi, rssi_c);
  140. IWL_DEBUG_STATS(mvm, "Rssi In A %d B %d C %d Max %d AGC dB %d\n",
  141. rssi_a, rssi_b, rssi_c, max_rssi, agc_db);
  142. /* dBm = max_rssi dB - agc dB - constant.
  143. * Higher AGC (higher radio gain) means lower signal. */
  144. return max_rssi - agc_db - IWL_RSSI_OFFSET;
  145. }
  146. /*
  147. * iwl_mvm_set_mac80211_rx_flag - translate fw status to mac80211 format
  148. * @mvm: the mvm object
  149. * @hdr: 80211 header
  150. * @stats: status in mac80211's format
  151. * @rx_pkt_status: status coming from fw
  152. *
  153. * returns non 0 value if the packet should be dropped
  154. */
  155. static u32 iwl_mvm_set_mac80211_rx_flag(struct iwl_mvm *mvm,
  156. struct ieee80211_hdr *hdr,
  157. struct ieee80211_rx_status *stats,
  158. u32 rx_pkt_status)
  159. {
  160. if (!ieee80211_has_protected(hdr->frame_control) ||
  161. (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
  162. RX_MPDU_RES_STATUS_SEC_NO_ENC)
  163. return 0;
  164. /* packet was encrypted with unknown alg */
  165. if ((rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) ==
  166. RX_MPDU_RES_STATUS_SEC_ENC_ERR)
  167. return 0;
  168. switch (rx_pkt_status & RX_MPDU_RES_STATUS_SEC_ENC_MSK) {
  169. case RX_MPDU_RES_STATUS_SEC_CCM_ENC:
  170. /* alg is CCM: check MIC only */
  171. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_MIC_OK))
  172. return -1;
  173. stats->flag |= RX_FLAG_DECRYPTED;
  174. IWL_DEBUG_WEP(mvm, "hw decrypted CCMP successfully\n");
  175. return 0;
  176. case RX_MPDU_RES_STATUS_SEC_TKIP_ENC:
  177. /* Don't drop the frame and decrypt it in SW */
  178. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_TTAK_OK))
  179. return 0;
  180. /* fall through if TTAK OK */
  181. case RX_MPDU_RES_STATUS_SEC_WEP_ENC:
  182. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_ICV_OK))
  183. return -1;
  184. stats->flag |= RX_FLAG_DECRYPTED;
  185. return 0;
  186. default:
  187. IWL_ERR(mvm, "Unhandled alg: 0x%x\n", rx_pkt_status);
  188. }
  189. return 0;
  190. }
  191. /*
  192. * iwl_mvm_rx_rx_mpdu - REPLY_RX_MPDU_CMD handler
  193. *
  194. * Handles the actual data of the Rx packet from the fw
  195. */
  196. int iwl_mvm_rx_rx_mpdu(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
  197. struct iwl_device_cmd *cmd)
  198. {
  199. struct ieee80211_hdr *hdr;
  200. struct ieee80211_rx_status rx_status = {};
  201. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  202. struct iwl_rx_phy_info *phy_info;
  203. struct iwl_rx_mpdu_res_start *rx_res;
  204. u32 len;
  205. u32 ampdu_status;
  206. u32 rate_n_flags;
  207. u32 rx_pkt_status;
  208. phy_info = &mvm->last_phy_info;
  209. rx_res = (struct iwl_rx_mpdu_res_start *)pkt->data;
  210. hdr = (struct ieee80211_hdr *)(pkt->data + sizeof(*rx_res));
  211. len = le16_to_cpu(rx_res->byte_count);
  212. rx_pkt_status = le32_to_cpup((__le32 *)
  213. (pkt->data + sizeof(*rx_res) + len));
  214. memset(&rx_status, 0, sizeof(rx_status));
  215. /*
  216. * drop the packet if it has failed being decrypted by HW
  217. */
  218. if (iwl_mvm_set_mac80211_rx_flag(mvm, hdr, &rx_status, rx_pkt_status)) {
  219. IWL_DEBUG_DROP(mvm, "Bad decryption results 0x%08x\n",
  220. rx_pkt_status);
  221. return 0;
  222. }
  223. if ((unlikely(phy_info->cfg_phy_cnt > 20))) {
  224. IWL_DEBUG_DROP(mvm, "dsp size out of range [0,20]: %d\n",
  225. phy_info->cfg_phy_cnt);
  226. return 0;
  227. }
  228. if (!(rx_pkt_status & RX_MPDU_RES_STATUS_CRC_OK) ||
  229. !(rx_pkt_status & RX_MPDU_RES_STATUS_OVERRUN_OK)) {
  230. IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n", rx_pkt_status);
  231. return 0;
  232. }
  233. /* This will be used in several places later */
  234. rate_n_flags = le32_to_cpu(phy_info->rate_n_flags);
  235. /* rx_status carries information about the packet to mac80211 */
  236. rx_status.mactime = le64_to_cpu(phy_info->timestamp);
  237. rx_status.band =
  238. (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ?
  239. IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
  240. rx_status.freq =
  241. ieee80211_channel_to_frequency(le16_to_cpu(phy_info->channel),
  242. rx_status.band);
  243. /*
  244. * TSF as indicated by the fw is at INA time, but mac80211 expects the
  245. * TSF at the beginning of the MPDU.
  246. */
  247. /*rx_status.flag |= RX_FLAG_MACTIME_MPDU;*/
  248. /* Find max signal strength (dBm) among 3 antenna/receiver chains */
  249. rx_status.signal = iwl_mvm_calc_rssi(mvm, phy_info);
  250. IWL_DEBUG_STATS_LIMIT(mvm, "Rssi %d, TSF %llu\n", rx_status.signal,
  251. (unsigned long long)rx_status.mactime);
  252. /*
  253. * "antenna number"
  254. *
  255. * It seems that the antenna field in the phy flags value
  256. * is actually a bit field. This is undefined by radiotap,
  257. * it wants an actual antenna number but I always get "7"
  258. * for most legacy frames I receive indicating that the
  259. * same frame was received on all three RX chains.
  260. *
  261. * I think this field should be removed in favor of a
  262. * new 802.11n radiotap field "RX chains" that is defined
  263. * as a bitmask.
  264. */
  265. rx_status.antenna = (le16_to_cpu(phy_info->phy_flags) &
  266. RX_RES_PHY_FLAGS_ANTENNA)
  267. >> RX_RES_PHY_FLAGS_ANTENNA_POS;
  268. /* set the preamble flag if appropriate */
  269. if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_SHORT_PREAMBLE))
  270. rx_status.flag |= RX_FLAG_SHORTPRE;
  271. if (phy_info->phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
  272. /*
  273. * We know which subframes of an A-MPDU belong
  274. * together since we get a single PHY response
  275. * from the firmware for all of them
  276. */
  277. rx_status.flag |= RX_FLAG_AMPDU_DETAILS;
  278. rx_status.ampdu_reference = mvm->ampdu_ref;
  279. }
  280. /* Set up the HT phy flags */
  281. switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
  282. case RATE_MCS_CHAN_WIDTH_20:
  283. break;
  284. case RATE_MCS_CHAN_WIDTH_40:
  285. rx_status.flag |= RX_FLAG_40MHZ;
  286. break;
  287. case RATE_MCS_CHAN_WIDTH_80:
  288. rx_status.flag |= RX_FLAG_80MHZ;
  289. break;
  290. case RATE_MCS_CHAN_WIDTH_160:
  291. rx_status.flag |= RX_FLAG_160MHZ;
  292. break;
  293. }
  294. if (rate_n_flags & RATE_MCS_SGI_MSK)
  295. rx_status.flag |= RX_FLAG_SHORT_GI;
  296. if (rate_n_flags & RATE_HT_MCS_GF_MSK)
  297. rx_status.flag |= RX_FLAG_HT_GF;
  298. if (rate_n_flags & RATE_MCS_HT_MSK) {
  299. rx_status.flag |= RX_FLAG_HT;
  300. rx_status.rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
  301. } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
  302. rx_status.vht_nss =
  303. ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
  304. RATE_VHT_MCS_NSS_POS) + 1;
  305. rx_status.rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
  306. rx_status.flag |= RX_FLAG_VHT;
  307. } else {
  308. rx_status.rate_idx =
  309. iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
  310. rx_status.band);
  311. }
  312. iwl_mvm_pass_packet_to_mac80211(mvm, hdr, len, ampdu_status,
  313. rxb, &rx_status);
  314. return 0;
  315. }