blob: c154ab42c80d8d74662541d8ad84634b7c6ef23e [file] [log] [blame]
Johannes Berg780e87c2015-09-03 14:56:10 +02001/******************************************************************************
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
Sara Sharone29cc6b2016-01-28 14:25:33 +020010 * Copyright(c) 2015 - 2016 Intel Deutschland GmbH
Johannes Berg780e87c2015-09-03 14:56:10 +020011 *
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 * The full GNU General Public License is included in this distribution
22 * in the file called COPYING.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 * BSD LICENSE
29 *
30 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
31 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharone29cc6b2016-01-28 14:25:33 +020032 * Copyright(c) 2015 - 2016 Intel Deutschland GmbH
Johannes Berg780e87c2015-09-03 14:56:10 +020033 * All rights reserved.
34 *
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
37 * are met:
38 *
39 * * Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * * Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in
43 * the documentation and/or other materials provided with the
44 * distribution.
45 * * Neither the name Intel Corporation nor the names of its
46 * contributors may be used to endorse or promote products derived
47 * from this software without specific prior written permission.
48 *
49 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
50 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
51 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
52 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
53 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
54 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
55 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
59 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60 *****************************************************************************/
61#include <linux/etherdevice.h>
62#include <linux/skbuff.h>
63#include "iwl-trans.h"
64#include "mvm.h"
65#include "fw-api.h"
66#include "fw-dbg.h"
67
Johannes Bergf5e28ea2015-12-06 14:58:08 +020068static inline int iwl_mvm_check_pn(struct iwl_mvm *mvm, struct sk_buff *skb,
69 int queue, struct ieee80211_sta *sta)
70{
71 struct iwl_mvm_sta *mvmsta;
72 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
73 struct ieee80211_rx_status *stats = IEEE80211_SKB_RXCB(skb);
74 struct iwl_mvm_key_pn *ptk_pn;
75 u8 tid, keyidx;
76 u8 pn[IEEE80211_CCMP_PN_LEN];
77 u8 *extiv;
78
79 /* do PN checking */
80
81 /* multicast and non-data only arrives on default queue */
82 if (!ieee80211_is_data(hdr->frame_control) ||
83 is_multicast_ether_addr(hdr->addr1))
84 return 0;
85
86 /* do not check PN for open AP */
87 if (!(stats->flag & RX_FLAG_DECRYPTED))
88 return 0;
89
90 /*
91 * avoid checking for default queue - we don't want to replicate
92 * all the logic that's necessary for checking the PN on fragmented
93 * frames, leave that to mac80211
94 */
95 if (queue == 0)
96 return 0;
97
98 /* if we are here - this for sure is either CCMP or GCMP */
99 if (IS_ERR_OR_NULL(sta)) {
100 IWL_ERR(mvm,
101 "expected hw-decrypted unicast frame for station\n");
102 return -1;
103 }
104
105 mvmsta = iwl_mvm_sta_from_mac80211(sta);
106
107 extiv = (u8 *)hdr + ieee80211_hdrlen(hdr->frame_control);
108 keyidx = extiv[3] >> 6;
109
110 ptk_pn = rcu_dereference(mvmsta->ptk_pn[keyidx]);
111 if (!ptk_pn)
112 return -1;
113
114 if (ieee80211_is_data_qos(hdr->frame_control))
115 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
116 else
117 tid = 0;
118
119 /* we don't use HCCA/802.11 QoS TSPECs, so drop such frames */
120 if (tid >= IWL_MAX_TID_COUNT)
121 return -1;
122
123 /* load pn */
124 pn[0] = extiv[7];
125 pn[1] = extiv[6];
126 pn[2] = extiv[5];
127 pn[3] = extiv[4];
128 pn[4] = extiv[1];
129 pn[5] = extiv[0];
130
131 if (memcmp(pn, ptk_pn->q[queue].pn[tid],
132 IEEE80211_CCMP_PN_LEN) <= 0)
133 return -1;
134
Sara Sharonf1ae02b2016-03-06 15:08:55 +0200135 if (!(stats->flag & RX_FLAG_AMSDU_MORE))
136 memcpy(ptk_pn->q[queue].pn[tid], pn, IEEE80211_CCMP_PN_LEN);
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200137 stats->flag |= RX_FLAG_PN_VALIDATED;
138
139 return 0;
140}
141
142/* iwl_mvm_create_skb Adds the rxb to a new skb */
143static void iwl_mvm_create_skb(struct sk_buff *skb, struct ieee80211_hdr *hdr,
144 u16 len, u8 crypt_len,
145 struct iwl_rx_cmd_buffer *rxb)
Johannes Berg780e87c2015-09-03 14:56:10 +0200146{
Sara Sharone29cc6b2016-01-28 14:25:33 +0200147 struct iwl_rx_packet *pkt = rxb_addr(rxb);
148 struct iwl_rx_mpdu_desc *desc = (void *)pkt->data;
149 unsigned int headlen, fraglen, pad_len = 0;
150 unsigned int hdrlen = ieee80211_hdrlen(hdr->frame_control);
151
Johannes Berg4b405712016-12-08 10:38:08 +0100152 if (desc->mac_flags2 & IWL_RX_MPDU_MFLG2_PAD) {
Sara Sharone29cc6b2016-01-28 14:25:33 +0200153 pad_len = 2;
Johannes Berg4b405712016-12-08 10:38:08 +0100154
155 /*
156 * If the device inserted padding it means that (it thought)
157 * the 802.11 header wasn't a multiple of 4 bytes long. In
158 * this case, reserve two bytes at the start of the SKB to
159 * align the payload properly in case we end up copying it.
160 */
161 skb_reserve(skb, pad_len);
162 }
Sara Sharone29cc6b2016-01-28 14:25:33 +0200163 len -= pad_len;
Johannes Berg780e87c2015-09-03 14:56:10 +0200164
165 /* If frame is small enough to fit in skb->head, pull it completely.
166 * If not, only pull ieee80211_hdr (including crypto if present, and
167 * an additional 8 bytes for SNAP/ethertype, see below) so that
168 * splice() or TCP coalesce are more efficient.
169 *
170 * Since, in addition, ieee80211_data_to_8023() always pull in at
171 * least 8 bytes (possibly more for mesh) we can do the same here
172 * to save the cost of doing it later. That still doesn't pull in
173 * the actual IP header since the typical case has a SNAP header.
174 * If the latter changes (there are efforts in the standards group
175 * to do so) we should revisit this and ieee80211_data_to_8023().
176 */
Sara Sharone29cc6b2016-01-28 14:25:33 +0200177 headlen = (len <= skb_tailroom(skb)) ? len :
178 hdrlen + crypt_len + 8;
Johannes Berg780e87c2015-09-03 14:56:10 +0200179
Sara Sharone29cc6b2016-01-28 14:25:33 +0200180 /* The firmware may align the packet to DWORD.
181 * The padding is inserted after the IV.
182 * After copying the header + IV skip the padding if
183 * present before copying packet data.
184 */
185 hdrlen += crypt_len;
Johannes Berg780e87c2015-09-03 14:56:10 +0200186 memcpy(skb_put(skb, hdrlen), hdr, hdrlen);
Sara Sharone29cc6b2016-01-28 14:25:33 +0200187 memcpy(skb_put(skb, headlen - hdrlen), (u8 *)hdr + hdrlen + pad_len,
188 headlen - hdrlen);
189
190 fraglen = len - headlen;
Johannes Berg780e87c2015-09-03 14:56:10 +0200191
192 if (fraglen) {
Sara Sharone29cc6b2016-01-28 14:25:33 +0200193 int offset = (void *)hdr + headlen + pad_len -
Johannes Berg780e87c2015-09-03 14:56:10 +0200194 rxb_addr(rxb) + rxb_offset(rxb);
195
196 skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset,
197 fraglen, rxb->truesize);
198 }
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200199}
Johannes Berg780e87c2015-09-03 14:56:10 +0200200
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200201/* iwl_mvm_pass_packet_to_mac80211 - passes the packet for mac80211 */
202static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
203 struct napi_struct *napi,
204 struct sk_buff *skb, int queue,
205 struct ieee80211_sta *sta)
206{
207 if (iwl_mvm_check_pn(mvm, skb, queue, sta))
208 kfree_skb(skb);
209 else
Johannes Berg43ec72b2016-03-10 11:55:44 +0100210 ieee80211_rx_napi(mvm->hw, sta, skb, napi);
Johannes Berg780e87c2015-09-03 14:56:10 +0200211}
212
213static void iwl_mvm_get_signal_strength(struct iwl_mvm *mvm,
214 struct iwl_rx_mpdu_desc *desc,
215 struct ieee80211_rx_status *rx_status)
216{
Sara Sharond56a7802016-01-26 12:35:13 +0200217 int energy_a, energy_b, max_energy;
Johannes Berg780e87c2015-09-03 14:56:10 +0200218
219 energy_a = desc->energy_a;
220 energy_a = energy_a ? -energy_a : S8_MIN;
221 energy_b = desc->energy_b;
222 energy_b = energy_b ? -energy_b : S8_MIN;
Johannes Berg780e87c2015-09-03 14:56:10 +0200223 max_energy = max(energy_a, energy_b);
Johannes Berg780e87c2015-09-03 14:56:10 +0200224
Sara Sharond56a7802016-01-26 12:35:13 +0200225 IWL_DEBUG_STATS(mvm, "energy In A %d B %d, and max %d\n",
226 energy_a, energy_b, max_energy);
Johannes Berg780e87c2015-09-03 14:56:10 +0200227
228 rx_status->signal = max_energy;
229 rx_status->chains = 0; /* TODO: phy info */
230 rx_status->chain_signal[0] = energy_a;
231 rx_status->chain_signal[1] = energy_b;
Sara Sharond56a7802016-01-26 12:35:13 +0200232 rx_status->chain_signal[2] = S8_MIN;
Johannes Berg780e87c2015-09-03 14:56:10 +0200233}
234
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200235static int iwl_mvm_rx_crypto(struct iwl_mvm *mvm, struct ieee80211_hdr *hdr,
Johannes Berg780e87c2015-09-03 14:56:10 +0200236 struct ieee80211_rx_status *stats,
237 struct iwl_rx_mpdu_desc *desc, int queue,
238 u8 *crypt_len)
239{
240 u16 status = le16_to_cpu(desc->status);
241
242 if (!ieee80211_has_protected(hdr->frame_control) ||
243 (status & IWL_RX_MPDU_STATUS_SEC_MASK) ==
244 IWL_RX_MPDU_STATUS_SEC_NONE)
245 return 0;
246
247 /* TODO: handle packets encrypted with unknown alg */
248
249 switch (status & IWL_RX_MPDU_STATUS_SEC_MASK) {
250 case IWL_RX_MPDU_STATUS_SEC_CCM:
251 case IWL_RX_MPDU_STATUS_SEC_GCM:
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200252 BUILD_BUG_ON(IEEE80211_CCMP_PN_LEN != IEEE80211_GCMP_PN_LEN);
Johannes Berg780e87c2015-09-03 14:56:10 +0200253 /* alg is CCM: check MIC only */
254 if (!(status & IWL_RX_MPDU_STATUS_MIC_OK))
255 return -1;
256
257 stats->flag |= RX_FLAG_DECRYPTED;
258 *crypt_len = IEEE80211_CCMP_HDR_LEN;
259 return 0;
260 case IWL_RX_MPDU_STATUS_SEC_TKIP:
261 /* Don't drop the frame and decrypt it in SW */
262 if (!(status & IWL_RX_MPDU_RES_STATUS_TTAK_OK))
263 return 0;
264
265 *crypt_len = IEEE80211_TKIP_IV_LEN;
266 /* fall through if TTAK OK */
267 case IWL_RX_MPDU_STATUS_SEC_WEP:
268 if (!(status & IWL_RX_MPDU_STATUS_ICV_OK))
269 return -1;
270
271 stats->flag |= RX_FLAG_DECRYPTED;
272 if ((status & IWL_RX_MPDU_STATUS_SEC_MASK) ==
273 IWL_RX_MPDU_STATUS_SEC_WEP)
274 *crypt_len = IEEE80211_WEP_IV_LEN;
275 return 0;
276 case IWL_RX_MPDU_STATUS_SEC_EXT_ENC:
277 if (!(status & IWL_RX_MPDU_STATUS_MIC_OK))
278 return -1;
279 stats->flag |= RX_FLAG_DECRYPTED;
280 return 0;
281 default:
282 IWL_ERR(mvm, "Unhandled alg: 0x%x\n", status);
283 }
284
285 return 0;
286}
287
288static void iwl_mvm_rx_csum(struct ieee80211_sta *sta,
289 struct sk_buff *skb,
290 struct iwl_rx_mpdu_desc *desc)
291{
292 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
293 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
Sara Sharonb238be02016-03-16 13:57:50 +0200294 u16 flags = le16_to_cpu(desc->l3l4_flags);
295 u8 l3_prot = (u8)((flags & IWL_RX_L3L4_L3_PROTO_MASK) >>
296 IWL_RX_L3_PROTO_POS);
Johannes Berg780e87c2015-09-03 14:56:10 +0200297
298 if (mvmvif->features & NETIF_F_RXCSUM &&
Sara Sharonb238be02016-03-16 13:57:50 +0200299 flags & IWL_RX_L3L4_TCP_UDP_CSUM_OK &&
300 (flags & IWL_RX_L3L4_IP_HDR_CSUM_OK ||
301 l3_prot == IWL_RX_L3_TYPE_IPV6 ||
302 l3_prot == IWL_RX_L3_TYPE_IPV6_FRAG))
Johannes Berg780e87c2015-09-03 14:56:10 +0200303 skb->ip_summed = CHECKSUM_UNNECESSARY;
304}
305
Sara Sharona571f5f2015-12-07 12:50:58 +0200306/*
307 * returns true if a packet outside BA session is a duplicate and
308 * should be dropped
309 */
310static bool iwl_mvm_is_nonagg_dup(struct ieee80211_sta *sta, int queue,
311 struct ieee80211_rx_status *rx_status,
312 struct ieee80211_hdr *hdr,
313 struct iwl_rx_mpdu_desc *desc)
314{
315 struct iwl_mvm_sta *mvm_sta;
316 struct iwl_mvm_rxq_dup_data *dup_data;
317 u8 baid, tid, sub_frame_idx;
318
319 if (WARN_ON(IS_ERR_OR_NULL(sta)))
320 return false;
321
322 baid = (le32_to_cpu(desc->reorder_data) &
323 IWL_RX_MPDU_REORDER_BAID_MASK) >>
324 IWL_RX_MPDU_REORDER_BAID_SHIFT;
325
326 if (baid != IWL_RX_REORDER_DATA_INVALID_BAID)
327 return false;
328
329 mvm_sta = iwl_mvm_sta_from_mac80211(sta);
330 dup_data = &mvm_sta->dup_data[queue];
331
332 /*
333 * Drop duplicate 802.11 retransmissions
334 * (IEEE 802.11-2012: 9.3.2.10 "Duplicate detection and recovery")
335 */
336 if (ieee80211_is_ctl(hdr->frame_control) ||
337 ieee80211_is_qos_nullfunc(hdr->frame_control) ||
338 is_multicast_ether_addr(hdr->addr1)) {
339 rx_status->flag |= RX_FLAG_DUP_VALIDATED;
340 return false;
341 }
342
343 if (ieee80211_is_data_qos(hdr->frame_control))
344 /* frame has qos control */
345 tid = *ieee80211_get_qos_ctl(hdr) &
346 IEEE80211_QOS_CTL_TID_MASK;
347 else
348 tid = IWL_MAX_TID_COUNT;
349
350 /* If this wasn't a part of an A-MSDU the sub-frame index will be 0 */
351 sub_frame_idx = desc->amsdu_info & IWL_RX_MPDU_AMSDU_SUBFRAME_IDX_MASK;
352
353 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
354 dup_data->last_seq[tid] == hdr->seq_ctrl &&
355 dup_data->last_sub_frame[tid] >= sub_frame_idx))
356 return true;
357
358 dup_data->last_seq[tid] = hdr->seq_ctrl;
359 dup_data->last_sub_frame[tid] = sub_frame_idx;
360
361 rx_status->flag |= RX_FLAG_DUP_VALIDATED;
362
363 return false;
364}
365
Sara Sharon94bb4482015-12-16 18:48:28 +0200366int iwl_mvm_notify_rx_queue(struct iwl_mvm *mvm, u32 rxq_mask,
367 const u8 *data, u32 count)
368{
369 struct iwl_rxq_sync_cmd *cmd;
370 u32 data_size = sizeof(*cmd) + count;
371 int ret;
372
373 /* should be DWORD aligned */
374 if (WARN_ON(count & 3 || count > IWL_MULTI_QUEUE_SYNC_MSG_MAX_SIZE))
375 return -EINVAL;
376
377 cmd = kzalloc(data_size, GFP_KERNEL);
378 if (!cmd)
379 return -ENOMEM;
380
381 cmd->rxq_mask = cpu_to_le32(rxq_mask);
382 cmd->count = cpu_to_le32(count);
383 cmd->flags = 0;
384 memcpy(cmd->payload, data, count);
385
386 ret = iwl_mvm_send_cmd_pdu(mvm,
387 WIDE_ID(DATA_PATH_GROUP,
388 TRIGGER_RX_QUEUES_NOTIF_CMD),
389 0, data_size, cmd);
390
391 kfree(cmd);
392 return ret;
393}
394
Sara Sharon74dd1762016-03-30 20:04:48 +0300395/*
396 * Returns true if sn2 - buffer_size < sn1 < sn2.
397 * To be used only in order to compare reorder buffer head with NSSN.
398 * We fully trust NSSN unless it is behind us due to reorder timeout.
399 * Reorder timeout can only bring us up to buffer_size SNs ahead of NSSN.
400 */
401static bool iwl_mvm_is_sn_less(u16 sn1, u16 sn2, u16 buffer_size)
402{
403 return ieee80211_sn_less(sn1, sn2) &&
404 !ieee80211_sn_less(sn1, sn2 - buffer_size);
405}
406
Sara Sharon06904052016-02-28 20:28:17 +0200407#define RX_REORDER_BUF_TIMEOUT_MQ (HZ / 10)
408
Sara Sharonb915c102016-03-23 16:32:02 +0200409static void iwl_mvm_release_frames(struct iwl_mvm *mvm,
410 struct ieee80211_sta *sta,
411 struct napi_struct *napi,
412 struct iwl_mvm_reorder_buffer *reorder_buf,
413 u16 nssn)
414{
415 u16 ssn = reorder_buf->head_sn;
416
Sara Sharon06904052016-02-28 20:28:17 +0200417 lockdep_assert_held(&reorder_buf->lock);
418
419 /* ignore nssn smaller than head sn - this can happen due to timeout */
Sara Sharon74dd1762016-03-30 20:04:48 +0300420 if (iwl_mvm_is_sn_less(nssn, ssn, reorder_buf->buf_size))
Sara Sharon06904052016-02-28 20:28:17 +0200421 return;
422
Sara Sharon74dd1762016-03-30 20:04:48 +0300423 while (iwl_mvm_is_sn_less(ssn, nssn, reorder_buf->buf_size)) {
Sara Sharonb915c102016-03-23 16:32:02 +0200424 int index = ssn % reorder_buf->buf_size;
425 struct sk_buff_head *skb_list = &reorder_buf->entries[index];
426 struct sk_buff *skb;
427
428 ssn = ieee80211_sn_inc(ssn);
429
Sara Sharon5a710b82016-08-03 14:08:00 +0300430 /*
431 * Empty the list. Will have more than one frame for A-MSDU.
432 * Empty list is valid as well since nssn indicates frames were
433 * received.
434 */
Sara Sharonb915c102016-03-23 16:32:02 +0200435 while ((skb = __skb_dequeue(skb_list))) {
436 iwl_mvm_pass_packet_to_mac80211(mvm, napi, skb,
437 reorder_buf->queue,
438 sta);
439 reorder_buf->num_stored--;
440 }
441 }
442 reorder_buf->head_sn = nssn;
Sara Sharon06904052016-02-28 20:28:17 +0200443
444 if (reorder_buf->num_stored && !reorder_buf->removed) {
445 u16 index = reorder_buf->head_sn % reorder_buf->buf_size;
446
Sara Sharon5a710b82016-08-03 14:08:00 +0300447 while (skb_queue_empty(&reorder_buf->entries[index]))
Sara Sharon06904052016-02-28 20:28:17 +0200448 index = (index + 1) % reorder_buf->buf_size;
449 /* modify timer to match next frame's expiration time */
450 mod_timer(&reorder_buf->reorder_timer,
451 reorder_buf->reorder_time[index] + 1 +
452 RX_REORDER_BUF_TIMEOUT_MQ);
453 } else {
454 del_timer(&reorder_buf->reorder_timer);
455 }
456}
457
458void iwl_mvm_reorder_timer_expired(unsigned long data)
459{
460 struct iwl_mvm_reorder_buffer *buf = (void *)data;
461 int i;
462 u16 sn = 0, index = 0;
463 bool expired = false;
464
Johannes Berg9b856832016-08-03 13:38:59 +0200465 spin_lock(&buf->lock);
Sara Sharon06904052016-02-28 20:28:17 +0200466
467 if (!buf->num_stored || buf->removed) {
Johannes Berg9b856832016-08-03 13:38:59 +0200468 spin_unlock(&buf->lock);
Sara Sharon06904052016-02-28 20:28:17 +0200469 return;
470 }
471
472 for (i = 0; i < buf->buf_size ; i++) {
473 index = (buf->head_sn + i) % buf->buf_size;
474
Sara Sharon5a710b82016-08-03 14:08:00 +0300475 if (skb_queue_empty(&buf->entries[index]))
Sara Sharon06904052016-02-28 20:28:17 +0200476 continue;
477 if (!time_after(jiffies, buf->reorder_time[index] +
478 RX_REORDER_BUF_TIMEOUT_MQ))
479 break;
480 expired = true;
481 sn = ieee80211_sn_add(buf->head_sn, i + 1);
482 }
483
484 if (expired) {
485 struct ieee80211_sta *sta;
486
487 rcu_read_lock();
488 sta = rcu_dereference(buf->mvm->fw_id_to_mac_id[buf->sta_id]);
489 /* SN is set to the last expired frame + 1 */
Sara Sharon35263a02016-06-21 12:12:10 +0300490 IWL_DEBUG_HT(buf->mvm,
491 "Releasing expired frames for sta %u, sn %d\n",
492 buf->sta_id, sn);
Sara Sharon06904052016-02-28 20:28:17 +0200493 iwl_mvm_release_frames(buf->mvm, sta, NULL, buf, sn);
494 rcu_read_unlock();
495 } else if (buf->num_stored) {
496 /*
497 * If no frame expired and there are stored frames, index is now
498 * pointing to the first unexpired frame - modify timer
499 * accordingly to this frame.
500 */
501 mod_timer(&buf->reorder_timer,
502 buf->reorder_time[index] +
503 1 + RX_REORDER_BUF_TIMEOUT_MQ);
504 }
Johannes Berg9b856832016-08-03 13:38:59 +0200505 spin_unlock(&buf->lock);
Sara Sharonb915c102016-03-23 16:32:02 +0200506}
507
508static void iwl_mvm_del_ba(struct iwl_mvm *mvm, int queue,
509 struct iwl_mvm_delba_data *data)
510{
511 struct iwl_mvm_baid_data *ba_data;
512 struct ieee80211_sta *sta;
513 struct iwl_mvm_reorder_buffer *reorder_buf;
514 u8 baid = data->baid;
515
Johannes Bergfd659f82016-08-03 13:52:56 +0200516 if (WARN_ONCE(baid >= IWL_MAX_BAID, "invalid BAID: %x\n", baid))
Sara Sharonb915c102016-03-23 16:32:02 +0200517 return;
518
519 rcu_read_lock();
520
521 ba_data = rcu_dereference(mvm->baid_map[baid]);
522 if (WARN_ON_ONCE(!ba_data))
523 goto out;
524
525 sta = rcu_dereference(mvm->fw_id_to_mac_id[ba_data->sta_id]);
526 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta)))
527 goto out;
528
529 reorder_buf = &ba_data->reorder_buf[queue];
530
531 /* release all frames that are in the reorder buffer to the stack */
Sara Sharon06904052016-02-28 20:28:17 +0200532 spin_lock_bh(&reorder_buf->lock);
Sara Sharonb915c102016-03-23 16:32:02 +0200533 iwl_mvm_release_frames(mvm, sta, NULL, reorder_buf,
534 ieee80211_sn_add(reorder_buf->head_sn,
535 reorder_buf->buf_size));
Sara Sharon06904052016-02-28 20:28:17 +0200536 spin_unlock_bh(&reorder_buf->lock);
537 del_timer_sync(&reorder_buf->reorder_timer);
Sara Sharonb915c102016-03-23 16:32:02 +0200538
539out:
540 rcu_read_unlock();
541}
542
Sara Sharon94bb4482015-12-16 18:48:28 +0200543void iwl_mvm_rx_queue_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
544 int queue)
545{
546 struct iwl_rx_packet *pkt = rxb_addr(rxb);
547 struct iwl_rxq_sync_notification *notif;
548 struct iwl_mvm_internal_rxq_notif *internal_notif;
549
550 notif = (void *)pkt->data;
551 internal_notif = (void *)notif->payload;
552
Sara Sharond0ff5d22016-03-23 16:31:43 +0200553 if (internal_notif->sync) {
554 if (mvm->queue_sync_cookie != internal_notif->cookie) {
Sara Sharon0636b932016-02-18 14:21:12 +0200555 WARN_ONCE(1,
556 "Received expired RX queue sync message\n");
Sara Sharond0ff5d22016-03-23 16:31:43 +0200557 return;
558 }
Sara Sharon3a732c62016-10-09 17:34:24 +0300559 if (!atomic_dec_return(&mvm->queue_sync_counter))
560 wake_up(&mvm->rx_sync_waitq);
Sara Sharond0ff5d22016-03-23 16:31:43 +0200561 }
562
563 switch (internal_notif->type) {
564 case IWL_MVM_RXQ_EMPTY:
Sara Sharon0636b932016-02-18 14:21:12 +0200565 break;
Sara Sharon94bb4482015-12-16 18:48:28 +0200566 case IWL_MVM_RXQ_NOTIF_DEL_BA:
Sara Sharonb915c102016-03-23 16:32:02 +0200567 iwl_mvm_del_ba(mvm, queue, (void *)internal_notif->data);
Sara Sharon94bb4482015-12-16 18:48:28 +0200568 break;
569 default:
570 WARN_ONCE(1, "Invalid identifier %d", internal_notif->type);
571 }
572}
573
Sara Sharonb915c102016-03-23 16:32:02 +0200574/*
575 * Returns true if the MPDU was buffered\dropped, false if it should be passed
576 * to upper layer.
577 */
578static bool iwl_mvm_reorder(struct iwl_mvm *mvm,
579 struct napi_struct *napi,
580 int queue,
581 struct ieee80211_sta *sta,
582 struct sk_buff *skb,
583 struct iwl_rx_mpdu_desc *desc)
584{
585 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Luca Coelho1f9788f2016-05-16 14:34:20 +0300586 struct iwl_mvm_sta *mvm_sta;
Sara Sharonb915c102016-03-23 16:32:02 +0200587 struct iwl_mvm_baid_data *baid_data;
588 struct iwl_mvm_reorder_buffer *buffer;
589 struct sk_buff *tail;
590 u32 reorder = le32_to_cpu(desc->reorder_data);
591 bool amsdu = desc->mac_flags2 & IWL_RX_MPDU_MFLG2_AMSDU;
Sara Sharone7e14082016-04-17 14:15:17 +0300592 bool last_subframe =
593 desc->amsdu_info & IWL_RX_MPDU_AMSDU_LAST_SUBFRAME;
Sara Sharonb915c102016-03-23 16:32:02 +0200594 u8 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
595 u8 sub_frame_idx = desc->amsdu_info &
596 IWL_RX_MPDU_AMSDU_SUBFRAME_IDX_MASK;
597 int index;
598 u16 nssn, sn;
599 u8 baid;
600
601 baid = (reorder & IWL_RX_MPDU_REORDER_BAID_MASK) >>
602 IWL_RX_MPDU_REORDER_BAID_SHIFT;
603
Johannes Berg8ec8ed42016-08-18 14:18:40 +0200604 /*
605 * This also covers the case of receiving a Block Ack Request
606 * outside a BA session; we'll pass it to mac80211 and that
607 * then sends a delBA action frame.
608 */
Sara Sharonb915c102016-03-23 16:32:02 +0200609 if (baid == IWL_RX_REORDER_DATA_INVALID_BAID)
610 return false;
611
612 /* no sta yet */
613 if (WARN_ON(IS_ERR_OR_NULL(sta)))
614 return false;
615
Luca Coelho1f9788f2016-05-16 14:34:20 +0300616 mvm_sta = iwl_mvm_sta_from_mac80211(sta);
617
Sara Sharon9a73a7d2016-08-08 13:07:01 +0300618 /* not a data packet or a bar */
619 if (!ieee80211_is_back_req(hdr->frame_control) &&
620 (!ieee80211_is_data_qos(hdr->frame_control) ||
621 is_multicast_ether_addr(hdr->addr1)))
Sara Sharonb915c102016-03-23 16:32:02 +0200622 return false;
623
624 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
625 return false;
626
627 baid_data = rcu_dereference(mvm->baid_map[baid]);
628 if (WARN(!baid_data,
629 "Received baid %d, but no data exists for this BAID\n", baid))
630 return false;
631 if (WARN(tid != baid_data->tid || mvm_sta->sta_id != baid_data->sta_id,
632 "baid 0x%x is mapped to sta:%d tid:%d, but was received for sta:%d tid:%d\n",
633 baid, baid_data->sta_id, baid_data->tid, mvm_sta->sta_id,
634 tid))
635 return false;
636
637 nssn = reorder & IWL_RX_MPDU_REORDER_NSSN_MASK;
638 sn = (reorder & IWL_RX_MPDU_REORDER_SN_MASK) >>
639 IWL_RX_MPDU_REORDER_SN_SHIFT;
640
641 buffer = &baid_data->reorder_buf[queue];
642
Sara Sharon06904052016-02-28 20:28:17 +0200643 spin_lock_bh(&buffer->lock);
644
Sara Sharon9a73a7d2016-08-08 13:07:01 +0300645 if (ieee80211_is_back_req(hdr->frame_control)) {
646 iwl_mvm_release_frames(mvm, sta, napi, buffer, nssn);
647 goto drop;
648 }
649
Sara Sharonb915c102016-03-23 16:32:02 +0200650 /*
651 * If there was a significant jump in the nssn - adjust.
652 * If the SN is smaller than the NSSN it might need to first go into
653 * the reorder buffer, in which case we just release up to it and the
654 * rest of the function will take of storing it and releasing up to the
655 * nssn
656 */
Sara Sharon74dd1762016-03-30 20:04:48 +0300657 if (!iwl_mvm_is_sn_less(nssn, buffer->head_sn + buffer->buf_size,
658 buffer->buf_size)) {
Sara Sharonb915c102016-03-23 16:32:02 +0200659 u16 min_sn = ieee80211_sn_less(sn, nssn) ? sn : nssn;
660
661 iwl_mvm_release_frames(mvm, sta, napi, buffer, min_sn);
662 }
663
664 /* drop any oudated packets */
665 if (ieee80211_sn_less(sn, buffer->head_sn))
666 goto drop;
667
668 /* release immediately if allowed by nssn and no stored frames */
669 if (!buffer->num_stored && ieee80211_sn_less(sn, nssn)) {
Sara Sharon74dd1762016-03-30 20:04:48 +0300670 if (iwl_mvm_is_sn_less(buffer->head_sn, nssn,
Sara Sharone7e14082016-04-17 14:15:17 +0300671 buffer->buf_size) &&
672 (!amsdu || last_subframe))
Sara Sharon06904052016-02-28 20:28:17 +0200673 buffer->head_sn = nssn;
Sara Sharonb915c102016-03-23 16:32:02 +0200674 /* No need to update AMSDU last SN - we are moving the head */
Sara Sharon06904052016-02-28 20:28:17 +0200675 spin_unlock_bh(&buffer->lock);
Sara Sharonb915c102016-03-23 16:32:02 +0200676 return false;
677 }
678
679 index = sn % buffer->buf_size;
680
681 /*
682 * Check if we already stored this frame
683 * As AMSDU is either received or not as whole, logic is simple:
684 * If we have frames in that position in the buffer and the last frame
685 * originated from AMSDU had a different SN then it is a retransmission.
686 * If it is the same SN then if the subframe index is incrementing it
687 * is the same AMSDU - otherwise it is a retransmission.
688 */
689 tail = skb_peek_tail(&buffer->entries[index]);
690 if (tail && !amsdu)
691 goto drop;
692 else if (tail && (sn != buffer->last_amsdu ||
693 buffer->last_sub_index >= sub_frame_idx))
694 goto drop;
695
696 /* put in reorder buffer */
697 __skb_queue_tail(&buffer->entries[index], skb);
698 buffer->num_stored++;
Sara Sharon06904052016-02-28 20:28:17 +0200699 buffer->reorder_time[index] = jiffies;
700
Sara Sharonb915c102016-03-23 16:32:02 +0200701 if (amsdu) {
702 buffer->last_amsdu = sn;
703 buffer->last_sub_index = sub_frame_idx;
704 }
705
Sara Sharone7e14082016-04-17 14:15:17 +0300706 /*
707 * We cannot trust NSSN for AMSDU sub-frames that are not the last.
708 * The reason is that NSSN advances on the first sub-frame, and may
709 * cause the reorder buffer to advance before all the sub-frames arrive.
710 * Example: reorder buffer contains SN 0 & 2, and we receive AMSDU with
711 * SN 1. NSSN for first sub frame will be 3 with the result of driver
712 * releasing SN 0,1, 2. When sub-frame 1 arrives - reorder buffer is
713 * already ahead and it will be dropped.
714 * If the last sub-frame is not on this queue - we will get frame
715 * release notification with up to date NSSN.
716 */
717 if (!amsdu || last_subframe)
718 iwl_mvm_release_frames(mvm, sta, napi, buffer, nssn);
719
Sara Sharon06904052016-02-28 20:28:17 +0200720 spin_unlock_bh(&buffer->lock);
Sara Sharonb915c102016-03-23 16:32:02 +0200721 return true;
722
723drop:
724 kfree_skb(skb);
Sara Sharon06904052016-02-28 20:28:17 +0200725 spin_unlock_bh(&buffer->lock);
Sara Sharonb915c102016-03-23 16:32:02 +0200726 return true;
727}
728
Sara Sharon10b2b202016-03-20 16:23:41 +0200729static void iwl_mvm_agg_rx_received(struct iwl_mvm *mvm, u8 baid)
730{
731 unsigned long now = jiffies;
732 unsigned long timeout;
733 struct iwl_mvm_baid_data *data;
734
735 rcu_read_lock();
736
737 data = rcu_dereference(mvm->baid_map[baid]);
738 if (WARN_ON(!data))
739 goto out;
740
741 if (!data->timeout)
742 goto out;
743
744 timeout = data->timeout;
745 /*
746 * Do not update last rx all the time to avoid cache bouncing
747 * between the rx queues.
748 * Update it every timeout. Worst case is the session will
749 * expire after ~ 2 * timeout, which doesn't matter that much.
750 */
751 if (time_before(data->last_rx + TU_TO_JIFFIES(timeout), now))
752 /* Update is atomic */
753 data->last_rx = now;
754
755out:
756 rcu_read_unlock();
757}
758
Johannes Berg780e87c2015-09-03 14:56:10 +0200759void iwl_mvm_rx_mpdu_mq(struct iwl_mvm *mvm, struct napi_struct *napi,
760 struct iwl_rx_cmd_buffer *rxb, int queue)
761{
762 struct ieee80211_rx_status *rx_status;
763 struct iwl_rx_packet *pkt = rxb_addr(rxb);
764 struct iwl_rx_mpdu_desc *desc = (void *)pkt->data;
Sara Sharon0c1c6e32015-12-16 21:17:06 +0200765 struct ieee80211_hdr *hdr = (void *)(pkt->data + sizeof(*desc));
Johannes Berg780e87c2015-09-03 14:56:10 +0200766 u32 len = le16_to_cpu(desc->mpdu_len);
767 u32 rate_n_flags = le32_to_cpu(desc->rate_n_flags);
Sara Sharonfbe41122016-04-04 19:28:45 +0300768 u16 phy_info = le16_to_cpu(desc->phy_info);
Johannes Berg780e87c2015-09-03 14:56:10 +0200769 struct ieee80211_sta *sta = NULL;
770 struct sk_buff *skb;
Johannes Berg780e87c2015-09-03 14:56:10 +0200771 u8 crypt_len = 0;
772
773 /* Dont use dev_alloc_skb(), we'll have enough headroom once
774 * ieee80211_hdr pulled.
775 */
776 skb = alloc_skb(128, GFP_ATOMIC);
777 if (!skb) {
778 IWL_ERR(mvm, "alloc_skb failed\n");
779 return;
780 }
781
782 rx_status = IEEE80211_SKB_RXCB(skb);
783
784 if (iwl_mvm_rx_crypto(mvm, hdr, rx_status, desc, queue, &crypt_len)) {
785 kfree_skb(skb);
786 return;
787 }
788
789 /*
790 * Keep packets with CRC errors (and with overrun) for monitor mode
791 * (otherwise the firmware discards them) but mark them as bad.
792 */
793 if (!(desc->status & cpu_to_le16(IWL_RX_MPDU_STATUS_CRC_OK)) ||
794 !(desc->status & cpu_to_le16(IWL_RX_MPDU_STATUS_OVERRUN_OK))) {
795 IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n",
796 le16_to_cpu(desc->status));
797 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
798 }
Sara Sharonfbe41122016-04-04 19:28:45 +0300799 /* set the preamble flag if appropriate */
800 if (phy_info & IWL_RX_MPDU_PHY_SHORT_PREAMBLE)
801 rx_status->flag |= RX_FLAG_SHORTPRE;
Johannes Berg780e87c2015-09-03 14:56:10 +0200802
Sara Sharonfbe41122016-04-04 19:28:45 +0300803 if (likely(!(phy_info & IWL_RX_MPDU_PHY_TSF_OVERLOAD))) {
804 rx_status->mactime = le64_to_cpu(desc->tsf_on_air_rise);
805 /* TSF as indicated by the firmware is at INA time */
806 rx_status->flag |= RX_FLAG_MACTIME_PLCP_START;
807 }
Johannes Berg780e87c2015-09-03 14:56:10 +0200808 rx_status->device_timestamp = le32_to_cpu(desc->gp2_on_air_rise);
Johannes Berg57fbcce2016-04-12 15:56:15 +0200809 rx_status->band = desc->channel > 14 ? NL80211_BAND_5GHZ :
810 NL80211_BAND_2GHZ;
Johannes Berg780e87c2015-09-03 14:56:10 +0200811 rx_status->freq = ieee80211_channel_to_frequency(desc->channel,
812 rx_status->band);
813 iwl_mvm_get_signal_strength(mvm, desc, rx_status);
Sara Sharonfbe41122016-04-04 19:28:45 +0300814
815 /* update aggregation data for monitor sake on default queue */
816 if (!queue && (phy_info & IWL_RX_MPDU_PHY_AMPDU)) {
817 bool toggle_bit = phy_info & IWL_RX_MPDU_PHY_AMPDU_TOGGLE;
818
819 rx_status->flag |= RX_FLAG_AMPDU_DETAILS;
820 rx_status->ampdu_reference = mvm->ampdu_ref;
821 /* toggle is switched whenever new aggregation starts */
822 if (toggle_bit != mvm->ampdu_toggle) {
823 mvm->ampdu_ref++;
824 mvm->ampdu_toggle = toggle_bit;
825 }
826 }
Johannes Berg780e87c2015-09-03 14:56:10 +0200827
828 rcu_read_lock();
829
830 if (le16_to_cpu(desc->status) & IWL_RX_MPDU_STATUS_SRC_STA_FOUND) {
831 u8 id = desc->sta_id_flags & IWL_RX_MPDU_SIF_STA_ID_MASK;
832
833 if (!WARN_ON_ONCE(id >= IWL_MVM_STATION_COUNT)) {
834 sta = rcu_dereference(mvm->fw_id_to_mac_id[id]);
835 if (IS_ERR(sta))
836 sta = NULL;
837 }
838 } else if (!is_multicast_ether_addr(hdr->addr2)) {
839 /*
840 * This is fine since we prevent two stations with the same
841 * address from being added.
842 */
843 sta = ieee80211_find_sta_by_ifaddr(mvm->hw, hdr->addr2, NULL);
844 }
845
846 if (sta) {
847 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +0200848 struct ieee80211_vif *tx_blocked_vif =
849 rcu_dereference(mvm->csa_tx_blocked_vif);
Sara Sharon10b2b202016-03-20 16:23:41 +0200850 u8 baid = (u8)((le32_to_cpu(desc->reorder_data) &
851 IWL_RX_MPDU_REORDER_BAID_MASK) >>
852 IWL_RX_MPDU_REORDER_BAID_SHIFT);
Johannes Berg780e87c2015-09-03 14:56:10 +0200853
854 /*
855 * We have tx blocked stations (with CS bit). If we heard
856 * frames from a blocked station on a new channel we can
857 * TX to it again.
858 */
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +0200859 if (unlikely(tx_blocked_vif) &&
860 tx_blocked_vif == mvmsta->vif) {
861 struct iwl_mvm_vif *mvmvif =
862 iwl_mvm_vif_from_mac80211(tx_blocked_vif);
863
864 if (mvmvif->csa_target_freq == rx_status->freq)
865 iwl_mvm_sta_modify_disable_tx_ap(mvm, sta,
866 false);
867 }
Johannes Berg780e87c2015-09-03 14:56:10 +0200868
869 rs_update_last_rssi(mvm, &mvmsta->lq_sta, rx_status);
870
871 if (iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_RSSI) &&
872 ieee80211_is_beacon(hdr->frame_control)) {
873 struct iwl_fw_dbg_trigger_tlv *trig;
874 struct iwl_fw_dbg_trigger_low_rssi *rssi_trig;
875 bool trig_check;
876 s32 rssi;
877
878 trig = iwl_fw_dbg_get_trigger(mvm->fw,
879 FW_DBG_TRIGGER_RSSI);
880 rssi_trig = (void *)trig->data;
881 rssi = le32_to_cpu(rssi_trig->rssi);
882
883 trig_check =
884 iwl_fw_dbg_trigger_check_stop(mvm, mvmsta->vif,
885 trig);
886 if (trig_check && rx_status->signal < rssi)
887 iwl_mvm_fw_dbg_collect_trig(mvm, trig, NULL);
888 }
889
Johannes Berg780e87c2015-09-03 14:56:10 +0200890 if (ieee80211_is_data(hdr->frame_control))
891 iwl_mvm_rx_csum(sta, skb, desc);
Sara Sharona571f5f2015-12-07 12:50:58 +0200892
893 if (iwl_mvm_is_nonagg_dup(sta, queue, rx_status, hdr, desc)) {
894 kfree_skb(skb);
895 rcu_read_unlock();
896 return;
897 }
Sara Sharon62d23402016-03-06 09:51:29 +0200898
899 /*
900 * Our hardware de-aggregates AMSDUs but copies the mac header
901 * as it to the de-aggregated MPDUs. We need to turn off the
902 * AMSDU bit in the QoS control ourselves.
903 */
904 if ((desc->mac_flags2 & IWL_RX_MPDU_MFLG2_AMSDU) &&
905 !WARN_ON(!ieee80211_is_data_qos(hdr->frame_control))) {
906 u8 *qc = ieee80211_get_qos_ctl(hdr);
907
908 *qc &= ~IEEE80211_QOS_CTL_A_MSDU_PRESENT;
Sara Sharonf1ae02b2016-03-06 15:08:55 +0200909 if (!(desc->amsdu_info &
910 IWL_RX_MPDU_AMSDU_LAST_SUBFRAME))
911 rx_status->flag |= RX_FLAG_AMSDU_MORE;
Sara Sharon62d23402016-03-06 09:51:29 +0200912 }
Sara Sharon10b2b202016-03-20 16:23:41 +0200913 if (baid != IWL_RX_REORDER_DATA_INVALID_BAID)
914 iwl_mvm_agg_rx_received(mvm, baid);
Johannes Berg780e87c2015-09-03 14:56:10 +0200915 }
916
Johannes Berg780e87c2015-09-03 14:56:10 +0200917 /* Set up the HT phy flags */
918 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
919 case RATE_MCS_CHAN_WIDTH_20:
920 break;
921 case RATE_MCS_CHAN_WIDTH_40:
922 rx_status->flag |= RX_FLAG_40MHZ;
923 break;
924 case RATE_MCS_CHAN_WIDTH_80:
925 rx_status->vht_flag |= RX_VHT_FLAG_80MHZ;
926 break;
927 case RATE_MCS_CHAN_WIDTH_160:
928 rx_status->vht_flag |= RX_VHT_FLAG_160MHZ;
929 break;
930 }
931 if (rate_n_flags & RATE_MCS_SGI_MSK)
932 rx_status->flag |= RX_FLAG_SHORT_GI;
933 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
934 rx_status->flag |= RX_FLAG_HT_GF;
935 if (rate_n_flags & RATE_MCS_LDPC_MSK)
936 rx_status->flag |= RX_FLAG_LDPC;
937 if (rate_n_flags & RATE_MCS_HT_MSK) {
938 u8 stbc = (rate_n_flags & RATE_MCS_HT_STBC_MSK) >>
939 RATE_MCS_STBC_POS;
940 rx_status->flag |= RX_FLAG_HT;
941 rx_status->rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
942 rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
943 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
944 u8 stbc = (rate_n_flags & RATE_MCS_VHT_STBC_MSK) >>
945 RATE_MCS_STBC_POS;
946 rx_status->vht_nss =
947 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
948 RATE_VHT_MCS_NSS_POS) + 1;
949 rx_status->rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
950 rx_status->flag |= RX_FLAG_VHT;
951 rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
952 if (rate_n_flags & RATE_MCS_BF_MSK)
953 rx_status->vht_flag |= RX_VHT_FLAG_BF;
954 } else {
955 rx_status->rate_idx =
956 iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
957 rx_status->band);
958 }
959
Sara Sharonfbe41122016-04-04 19:28:45 +0300960 /* management stuff on default queue */
961 if (!queue) {
962 if (unlikely((ieee80211_is_beacon(hdr->frame_control) ||
963 ieee80211_is_probe_resp(hdr->frame_control)) &&
964 mvm->sched_scan_pass_all ==
965 SCHED_SCAN_PASS_ALL_ENABLED))
966 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_FOUND;
967
968 if (unlikely(ieee80211_is_beacon(hdr->frame_control) ||
969 ieee80211_is_probe_resp(hdr->frame_control)))
970 rx_status->boottime_ns = ktime_get_boot_ns();
971 }
Johannes Berg780e87c2015-09-03 14:56:10 +0200972
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200973 iwl_mvm_create_skb(skb, hdr, len, crypt_len, rxb);
Sara Sharonb915c102016-03-23 16:32:02 +0200974 if (!iwl_mvm_reorder(mvm, napi, queue, sta, skb, desc))
975 iwl_mvm_pass_packet_to_mac80211(mvm, napi, skb, queue, sta);
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200976 rcu_read_unlock();
Johannes Berg780e87c2015-09-03 14:56:10 +0200977}
Sara Sharon585a6fc2015-12-01 13:48:18 +0200978
Sara Sharona3383842016-02-28 15:41:47 +0200979void iwl_mvm_rx_frame_release(struct iwl_mvm *mvm, struct napi_struct *napi,
Sara Sharon585a6fc2015-12-01 13:48:18 +0200980 struct iwl_rx_cmd_buffer *rxb, int queue)
981{
Sara Sharona3383842016-02-28 15:41:47 +0200982 struct iwl_rx_packet *pkt = rxb_addr(rxb);
983 struct iwl_frame_release *release = (void *)pkt->data;
984 struct ieee80211_sta *sta;
985 struct iwl_mvm_reorder_buffer *reorder_buf;
986 struct iwl_mvm_baid_data *ba_data;
987
988 int baid = release->baid;
989
Sara Sharon35263a02016-06-21 12:12:10 +0300990 IWL_DEBUG_HT(mvm, "Frame release notification for BAID %u, NSSN %d\n",
991 release->baid, le16_to_cpu(release->nssn));
992
Sara Sharona3383842016-02-28 15:41:47 +0200993 if (WARN_ON_ONCE(baid == IWL_RX_REORDER_DATA_INVALID_BAID))
994 return;
995
996 rcu_read_lock();
997
998 ba_data = rcu_dereference(mvm->baid_map[baid]);
999 if (WARN_ON_ONCE(!ba_data))
1000 goto out;
1001
1002 sta = rcu_dereference(mvm->fw_id_to_mac_id[ba_data->sta_id]);
1003 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta)))
1004 goto out;
1005
1006 reorder_buf = &ba_data->reorder_buf[queue];
1007
1008 spin_lock_bh(&reorder_buf->lock);
1009 iwl_mvm_release_frames(mvm, sta, napi, reorder_buf,
1010 le16_to_cpu(release->nssn));
1011 spin_unlock_bh(&reorder_buf->lock);
1012
1013out:
1014 rcu_read_unlock();
Sara Sharon585a6fc2015-12-01 13:48:18 +02001015}