blob: 02f293b711fdce9b4afb1f1308bbb5ca8817f2f6 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
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 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Emmanuel Grumbach42032632015-04-15 12:43:46 +03009 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharon9a3fcf92017-03-14 09:50:35 +020010 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010011 *
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
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010028 *
29 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020035 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Emmanuel Grumbach42032632015-04-15 12:43:46 +030036 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharon9a3fcf92017-03-14 09:50:35 +020037 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010038 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 *
44 * * Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * * Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in
48 * the documentation and/or other materials provided with the
49 * distribution.
50 * * Neither the name Intel Corporation nor the names of its
51 * contributors may be used to endorse or promote products derived
52 * from this software without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 *****************************************************************************/
67#include <linux/ieee80211.h>
68#include <linux/etherdevice.h>
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +030069#include <linux/tcp.h>
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +030070#include <net/ip.h>
Sara Sharon5e6a98d2016-03-10 17:40:56 +020071#include <net/ipv6.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010072
73#include "iwl-trans.h"
74#include "iwl-eeprom-parse.h"
75#include "mvm.h"
76#include "sta.h"
Golan Ben-Ami2f89a5d2015-10-27 19:17:14 +020077#include "fw-dbg.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010078
Emmanuel Grumbach42032632015-04-15 12:43:46 +030079static void
80iwl_mvm_bar_check_trigger(struct iwl_mvm *mvm, const u8 *addr,
81 u16 tid, u16 ssn)
82{
83 struct iwl_fw_dbg_trigger_tlv *trig;
84 struct iwl_fw_dbg_trigger_ba *ba_trig;
85
86 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_BA))
87 return;
88
89 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_BA);
90 ba_trig = (void *)trig->data;
91
92 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
93 return;
94
95 if (!(le16_to_cpu(ba_trig->tx_bar) & BIT(tid)))
96 return;
97
98 iwl_mvm_fw_dbg_collect_trig(mvm, trig,
99 "BAR sent to %pM, tid %d, ssn %d",
100 addr, tid, ssn);
101}
102
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200103#define OPT_HDR(type, skb, off) \
104 (type *)(skb_network_header(skb) + (off))
105
Sara Sharonb86dd742016-09-29 15:16:03 +0300106static u16 iwl_mvm_tx_csum(struct iwl_mvm *mvm, struct sk_buff *skb,
107 struct ieee80211_hdr *hdr,
108 struct ieee80211_tx_info *info)
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200109{
Sara Sharonb86dd742016-09-29 15:16:03 +0300110 u16 offload_assist = 0;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200111#if IS_ENABLED(CONFIG_INET)
112 u16 mh_len = ieee80211_hdrlen(hdr->frame_control);
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200113 u8 protocol = 0;
114
115 /*
116 * Do not compute checksum if already computed or if transport will
117 * compute it
118 */
119 if (skb->ip_summed != CHECKSUM_PARTIAL || IWL_MVM_SW_TX_CSUM_OFFLOAD)
Sara Sharonb86dd742016-09-29 15:16:03 +0300120 goto out;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200121
122 /* We do not expect to be requested to csum stuff we do not support */
123 if (WARN_ONCE(!(mvm->hw->netdev_features & IWL_TX_CSUM_NETIF_FLAGS) ||
124 (skb->protocol != htons(ETH_P_IP) &&
125 skb->protocol != htons(ETH_P_IPV6)),
126 "No support for requested checksum\n")) {
127 skb_checksum_help(skb);
Sara Sharonb86dd742016-09-29 15:16:03 +0300128 goto out;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200129 }
130
131 if (skb->protocol == htons(ETH_P_IP)) {
132 protocol = ip_hdr(skb)->protocol;
133 } else {
134#if IS_ENABLED(CONFIG_IPV6)
135 struct ipv6hdr *ipv6h =
136 (struct ipv6hdr *)skb_network_header(skb);
137 unsigned int off = sizeof(*ipv6h);
138
139 protocol = ipv6h->nexthdr;
140 while (protocol != NEXTHDR_NONE && ipv6_ext_hdr(protocol)) {
Sara Sharonecf51422016-06-08 15:15:41 +0300141 struct ipv6_opt_hdr *hp;
142
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200143 /* only supported extension headers */
144 if (protocol != NEXTHDR_ROUTING &&
145 protocol != NEXTHDR_HOP &&
Sara Sharonecf51422016-06-08 15:15:41 +0300146 protocol != NEXTHDR_DEST) {
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200147 skb_checksum_help(skb);
Sara Sharonb86dd742016-09-29 15:16:03 +0300148 goto out;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200149 }
150
Sara Sharonecf51422016-06-08 15:15:41 +0300151 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
152 protocol = hp->nexthdr;
153 off += ipv6_optlen(hp);
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200154 }
155 /* if we get here - protocol now should be TCP/UDP */
156#endif
157 }
158
159 if (protocol != IPPROTO_TCP && protocol != IPPROTO_UDP) {
160 WARN_ON_ONCE(1);
161 skb_checksum_help(skb);
Sara Sharonb86dd742016-09-29 15:16:03 +0300162 goto out;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200163 }
164
165 /* enable L4 csum */
166 offload_assist |= BIT(TX_CMD_OFFLD_L4_EN);
167
168 /*
169 * Set offset to IP header (snap).
170 * We don't support tunneling so no need to take care of inner header.
171 * Size is in words.
172 */
173 offload_assist |= (4 << TX_CMD_OFFLD_IP_HDR);
174
175 /* Do IPv4 csum for AMSDU only (no IP csum for Ipv6) */
176 if (skb->protocol == htons(ETH_P_IP) &&
177 (offload_assist & BIT(TX_CMD_OFFLD_AMSDU))) {
178 ip_hdr(skb)->check = 0;
179 offload_assist |= BIT(TX_CMD_OFFLD_L3_EN);
180 }
181
182 /* reset UDP/TCP header csum */
183 if (protocol == IPPROTO_TCP)
184 tcp_hdr(skb)->check = 0;
185 else
186 udp_hdr(skb)->check = 0;
187
188 /* mac header len should include IV, size is in words */
189 if (info->control.hw_key)
190 mh_len += info->control.hw_key->iv_len;
191 mh_len /= 2;
192 offload_assist |= mh_len << TX_CMD_OFFLD_MH_SIZE;
193
Sara Sharonb86dd742016-09-29 15:16:03 +0300194out:
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200195#endif
Sara Sharonb86dd742016-09-29 15:16:03 +0300196 return offload_assist;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200197}
198
Johannes Berg8ca151b2013-01-24 14:25:36 +0100199/*
200 * Sets most of the Tx cmd's fields
201 */
Arik Nemtsov6ce73e62014-09-11 13:00:19 +0300202void iwl_mvm_set_tx_cmd(struct iwl_mvm *mvm, struct sk_buff *skb,
203 struct iwl_tx_cmd *tx_cmd,
204 struct ieee80211_tx_info *info, u8 sta_id)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100205{
206 struct ieee80211_hdr *hdr = (void *)skb->data;
207 __le16 fc = hdr->frame_control;
208 u32 tx_flags = le32_to_cpu(tx_cmd->tx_flags);
209 u32 len = skb->len + FCS_LEN;
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +0200210 u8 ac;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100211
212 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
213 tx_flags |= TX_CMD_FLG_ACK;
214 else
215 tx_flags &= ~TX_CMD_FLG_ACK;
216
217 if (ieee80211_is_probe_resp(fc))
218 tx_flags |= TX_CMD_FLG_TSF;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100219
Johannes Berg8ca151b2013-01-24 14:25:36 +0100220 if (ieee80211_has_morefrags(fc))
221 tx_flags |= TX_CMD_FLG_MORE_FRAG;
222
223 if (ieee80211_is_data_qos(fc)) {
224 u8 *qc = ieee80211_get_qos_ctl(hdr);
225 tx_cmd->tid_tspec = qc[0] & 0xf;
226 tx_flags &= ~TX_CMD_FLG_SEQ_CTL;
Sara Sharond8fe4842016-03-09 10:12:45 +0200227 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
228 tx_cmd->offload_assist |=
229 cpu_to_le16(BIT(TX_CMD_OFFLD_AMSDU));
Eyal Shapira9b3b43d2014-12-31 18:34:56 +0200230 } else if (ieee80211_is_back_req(fc)) {
231 struct ieee80211_bar *bar = (void *)skb->data;
232 u16 control = le16_to_cpu(bar->control);
Emmanuel Grumbach42032632015-04-15 12:43:46 +0300233 u16 ssn = le16_to_cpu(bar->start_seq_num);
Eyal Shapira9b3b43d2014-12-31 18:34:56 +0200234
235 tx_flags |= TX_CMD_FLG_ACK | TX_CMD_FLG_BAR;
236 tx_cmd->tid_tspec = (control &
237 IEEE80211_BAR_CTRL_TID_INFO_MASK) >>
238 IEEE80211_BAR_CTRL_TID_INFO_SHIFT;
239 WARN_ON_ONCE(tx_cmd->tid_tspec >= IWL_MAX_TID_COUNT);
Emmanuel Grumbach42032632015-04-15 12:43:46 +0300240 iwl_mvm_bar_check_trigger(mvm, bar->ra, tx_cmd->tid_tspec,
241 ssn);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100242 } else {
243 tx_cmd->tid_tspec = IWL_TID_NON_QOS;
244 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
245 tx_flags |= TX_CMD_FLG_SEQ_CTL;
246 else
247 tx_flags &= ~TX_CMD_FLG_SEQ_CTL;
248 }
249
Eyal Shapiraa9dc5062014-12-31 17:58:23 +0200250 /* Default to 0 (BE) when tid_spec is set to IWL_TID_NON_QOS */
251 if (tx_cmd->tid_tspec < IWL_MAX_TID_COUNT)
252 ac = tid_to_mac80211_ac[tx_cmd->tid_tspec];
253 else
254 ac = tid_to_mac80211_ac[0];
255
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +0200256 tx_flags |= iwl_mvm_bt_coex_tx_prio(mvm, hdr, info, ac) <<
257 TX_CMD_FLG_BT_PRIO_POS;
258
Johannes Berg8ca151b2013-01-24 14:25:36 +0100259 if (ieee80211_is_mgmt(fc)) {
260 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Avri Altmanb084a352015-07-12 09:10:05 +0300261 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_ASSOC);
262 else if (ieee80211_is_action(fc))
263 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100264 else
Avri Altmanb084a352015-07-12 09:10:05 +0300265 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100266
267 /* The spec allows Action frames in A-MPDU, we don't support
268 * it
269 */
270 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_AMPDU);
Johannes Berg63f75352014-01-31 14:56:18 +0100271 } else if (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO) {
Avri Altmanb084a352015-07-12 09:10:05 +0300272 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100273 } else {
Avri Altmanb084a352015-07-12 09:10:05 +0300274 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100275 }
276
Johannes Berg8ca151b2013-01-24 14:25:36 +0100277 if (ieee80211_is_data(fc) && len > mvm->rts_threshold &&
278 !is_multicast_ether_addr(ieee80211_get_DA(hdr)))
279 tx_flags |= TX_CMD_FLG_PROT_REQUIRE;
280
Johannes Berg859d9142015-06-01 17:11:11 +0200281 if (fw_has_capa(&mvm->fw->ucode_capa,
282 IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT) &&
Andrei Otcheretianskif1daa002014-07-01 12:54:25 +0300283 ieee80211_action_contains_tpc(skb))
284 tx_flags |= TX_CMD_FLG_WRITE_TX_POWER;
285
Johannes Berg8ca151b2013-01-24 14:25:36 +0100286 tx_cmd->tx_flags = cpu_to_le32(tx_flags);
Johannes Berg05e5a7e2016-12-02 10:04:49 +0100287 /* Total # bytes to be transmitted - PCIe code will adjust for A-MSDU */
288 tx_cmd->len = cpu_to_le16((u16)skb->len);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100289 tx_cmd->life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
290 tx_cmd->sta_id = sta_id;
Sara Sharond8fe4842016-03-09 10:12:45 +0200291
292 /* padding is inserted later in transport */
293 if (ieee80211_hdrlen(fc) % 4 &&
294 !(tx_cmd->offload_assist & cpu_to_le16(BIT(TX_CMD_OFFLD_AMSDU))))
295 tx_cmd->offload_assist |= cpu_to_le16(BIT(TX_CMD_OFFLD_PAD));
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200296
Sara Sharonb86dd742016-09-29 15:16:03 +0300297 tx_cmd->offload_assist |=
298 cpu_to_le16(iwl_mvm_tx_csum(mvm, skb, hdr, info));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100299}
300
Sara Sharon5ec295d2016-11-01 10:52:11 +0200301static u32 iwl_mvm_get_tx_rate(struct iwl_mvm *mvm,
302 struct ieee80211_tx_info *info,
303 struct ieee80211_sta *sta)
304{
305 int rate_idx;
306 u8 rate_plcp;
307 u32 rate_flags;
308
309 /* HT rate doesn't make sense for a non data frame */
310 WARN_ONCE(info->control.rates[0].flags & IEEE80211_TX_RC_MCS,
311 "Got an HT rate (flags:0x%x/mcs:%d) for a non data frame\n",
312 info->control.rates[0].flags,
313 info->control.rates[0].idx);
314
315 rate_idx = info->control.rates[0].idx;
316 /* if the rate isn't a well known legacy rate, take the lowest one */
317 if (rate_idx < 0 || rate_idx >= IWL_RATE_COUNT_LEGACY)
318 rate_idx = rate_lowest_index(
319 &mvm->nvm_data->bands[info->band], sta);
320
321 /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
322 if (info->band == NL80211_BAND_5GHZ)
323 rate_idx += IWL_FIRST_OFDM_RATE;
324
325 /* For 2.4 GHZ band, check that there is no need to remap */
326 BUILD_BUG_ON(IWL_FIRST_CCK_RATE != 0);
327
328 /* Get PLCP rate for tx_cmd->rate_n_flags */
329 rate_plcp = iwl_mvm_mac80211_idx_to_hwrate(rate_idx);
330
331 if (info->band == NL80211_BAND_2GHZ &&
332 !iwl_mvm_bt_coex_is_shared_ant_avail(mvm))
333 rate_flags = mvm->cfg->non_shared_ant << RATE_MCS_ANT_POS;
334 else
335 rate_flags =
336 BIT(mvm->mgmt_last_antenna_idx) << RATE_MCS_ANT_POS;
337
338 /* Set CCK flag as needed */
339 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
340 rate_flags |= RATE_MCS_CCK_MSK;
341
342 return (u32)rate_plcp | rate_flags;
343}
344
Johannes Berg8ca151b2013-01-24 14:25:36 +0100345/*
346 * Sets the fields in the Tx cmd that are rate related
347 */
Arik Nemtsov6ce73e62014-09-11 13:00:19 +0300348void iwl_mvm_set_tx_cmd_rate(struct iwl_mvm *mvm, struct iwl_tx_cmd *tx_cmd,
349 struct ieee80211_tx_info *info,
350 struct ieee80211_sta *sta, __le16 fc)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100351{
Johannes Berg8ca151b2013-01-24 14:25:36 +0100352 /* Set retry limit on RTS packets */
353 tx_cmd->rts_retry_limit = IWL_RTS_DFAULT_RETRY_LIMIT;
354
355 /* Set retry limit on DATA packets and Probe Responses*/
356 if (ieee80211_is_probe_resp(fc)) {
357 tx_cmd->data_retry_limit = IWL_MGMT_DFAULT_RETRY_LIMIT;
358 tx_cmd->rts_retry_limit =
359 min(tx_cmd->data_retry_limit, tx_cmd->rts_retry_limit);
360 } else if (ieee80211_is_back_req(fc)) {
361 tx_cmd->data_retry_limit = IWL_BAR_DFAULT_RETRY_LIMIT;
362 } else {
363 tx_cmd->data_retry_limit = IWL_DEFAULT_TX_RETRY;
364 }
365
366 /*
Eliad Pellere89044d2013-07-16 17:33:26 +0300367 * for data packets, rate info comes from the table inside the fw. This
Emmanuel Grumbach1ffde692014-10-20 08:29:55 +0300368 * table is controlled by LINK_QUALITY commands
Johannes Berg8ca151b2013-01-24 14:25:36 +0100369 */
370
Emmanuel Grumbach1ffde692014-10-20 08:29:55 +0300371 if (ieee80211_is_data(fc) && sta) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100372 tx_cmd->initial_rate_index = 0;
373 tx_cmd->tx_flags |= cpu_to_le32(TX_CMD_FLG_STA_RATE);
374 return;
375 } else if (ieee80211_is_back_req(fc)) {
Emmanuel Grumbach2edc6ec2013-06-02 19:49:15 +0300376 tx_cmd->tx_flags |=
377 cpu_to_le32(TX_CMD_FLG_ACK | TX_CMD_FLG_BAR);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100378 }
379
Johannes Berg8ca151b2013-01-24 14:25:36 +0100380 mvm->mgmt_last_antenna_idx =
Moshe Harela0544272014-12-08 21:13:14 +0200381 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100382 mvm->mgmt_last_antenna_idx);
Emmanuel Grumbach34c8b242014-05-28 21:53:39 +0300383
Johannes Berg8ca151b2013-01-24 14:25:36 +0100384 /* Set the rate in the TX cmd */
Sara Sharon5ec295d2016-11-01 10:52:11 +0200385 tx_cmd->rate_n_flags = cpu_to_le32(iwl_mvm_get_tx_rate(mvm, info, sta));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100386}
387
Ayala Beker2a53d162016-04-07 16:21:57 +0300388static inline void iwl_mvm_set_tx_cmd_pn(struct ieee80211_tx_info *info,
389 u8 *crypto_hdr)
390{
391 struct ieee80211_key_conf *keyconf = info->control.hw_key;
392 u64 pn;
393
394 pn = atomic64_inc_return(&keyconf->tx_pn);
395 crypto_hdr[0] = pn;
396 crypto_hdr[2] = 0;
397 crypto_hdr[3] = 0x20 | (keyconf->keyidx << 6);
398 crypto_hdr[1] = pn >> 8;
399 crypto_hdr[4] = pn >> 16;
400 crypto_hdr[5] = pn >> 24;
401 crypto_hdr[6] = pn >> 32;
402 crypto_hdr[7] = pn >> 40;
403}
404
Johannes Berg8ca151b2013-01-24 14:25:36 +0100405/*
406 * Sets the fields in the Tx cmd that are crypto related
407 */
Johannes Bergca8c0f42015-04-20 17:54:54 +0200408static void iwl_mvm_set_tx_cmd_crypto(struct iwl_mvm *mvm,
409 struct ieee80211_tx_info *info,
410 struct iwl_tx_cmd *tx_cmd,
411 struct sk_buff *skb_frag,
412 int hdrlen)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100413{
414 struct ieee80211_key_conf *keyconf = info->control.hw_key;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200415 u8 *crypto_hdr = skb_frag->data + hdrlen;
416 u64 pn;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100417
418 switch (keyconf->cipher) {
419 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergca8c0f42015-04-20 17:54:54 +0200420 case WLAN_CIPHER_SUITE_CCMP_256:
421 iwl_mvm_set_tx_cmd_ccmp(info, tx_cmd);
Ayala Beker2a53d162016-04-07 16:21:57 +0300422 iwl_mvm_set_tx_cmd_pn(info, crypto_hdr);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100423 break;
424
425 case WLAN_CIPHER_SUITE_TKIP:
426 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
Eliad Peller1ad4f632016-02-14 13:56:36 +0200427 pn = atomic64_inc_return(&keyconf->tx_pn);
428 ieee80211_tkip_add_iv(crypto_hdr, keyconf, pn);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100429 ieee80211_get_tkip_p2k(keyconf, skb_frag, tx_cmd->key);
430 break;
431
432 case WLAN_CIPHER_SUITE_WEP104:
433 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
434 /* fall through */
435 case WLAN_CIPHER_SUITE_WEP40:
436 tx_cmd->sec_ctl |= TX_CMD_SEC_WEP |
437 ((keyconf->keyidx << TX_CMD_SEC_WEP_KEY_IDX_POS) &
438 TX_CMD_SEC_WEP_KEY_IDX_MSK);
439
440 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
441 break;
Ayala Beker2a53d162016-04-07 16:21:57 +0300442 case WLAN_CIPHER_SUITE_GCMP:
443 case WLAN_CIPHER_SUITE_GCMP_256:
444 /* TODO: Taking the key from the table might introduce a race
445 * when PTK rekeying is done, having an old packets with a PN
446 * based on the old key but the message encrypted with a new
447 * one.
448 * Need to handle this.
449 */
Emmanuel Grumbach4dc65112016-09-13 22:59:27 +0300450 tx_cmd->sec_ctl |= TX_CMD_SEC_GCMP | TX_CMD_SEC_KEY_FROM_TABLE;
Ayala Beker2a53d162016-04-07 16:21:57 +0300451 tx_cmd->key[0] = keyconf->hw_key_idx;
452 iwl_mvm_set_tx_cmd_pn(info, crypto_hdr);
453 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100454 default:
Max Stepanove36e5432013-08-27 19:56:13 +0300455 tx_cmd->sec_ctl |= TX_CMD_SEC_EXT;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100456 }
457}
458
459/*
460 * Allocates and sets the Tx cmd the driver data pointers in the skb
461 */
462static struct iwl_device_cmd *
463iwl_mvm_set_tx_params(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300464 struct ieee80211_tx_info *info, int hdrlen,
465 struct ieee80211_sta *sta, u8 sta_id)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100466{
467 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100468 struct iwl_device_cmd *dev_cmd;
469 struct iwl_tx_cmd *tx_cmd;
470
471 dev_cmd = iwl_trans_alloc_tx_cmd(mvm->trans);
472
473 if (unlikely(!dev_cmd))
474 return NULL;
475
Emmanuel Grumbach6f2f0192017-03-30 23:08:03 +0300476 /* Make sure we zero enough of dev_cmd */
477 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd_gen2) > sizeof(*tx_cmd));
478
479 memset(dev_cmd, 0, sizeof(dev_cmd->hdr) + sizeof(*tx_cmd));
Emmanuel Grumbach3961a612013-10-22 11:27:55 +0300480 dev_cmd->hdr.cmd = TX_CMD;
Sara Sharonc47de662016-09-29 17:28:33 +0300481
482 if (iwl_mvm_has_new_tx_api(mvm)) {
483 struct iwl_tx_cmd_gen2 *cmd = (void *)dev_cmd->payload;
484 u16 offload_assist = iwl_mvm_tx_csum(mvm, skb, hdr, info);
485
Sara Sharonf5bd90b2017-03-16 10:44:31 +0200486 if (ieee80211_is_data_qos(hdr->frame_control)) {
487 u8 *qc = ieee80211_get_qos_ctl(hdr);
488
489 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
490 offload_assist |= BIT(TX_CMD_OFFLD_AMSDU);
491 }
492
Sara Sharonc47de662016-09-29 17:28:33 +0300493 /* padding is inserted later in transport */
Sara Sharonc47de662016-09-29 17:28:33 +0300494 if (ieee80211_hdrlen(hdr->frame_control) % 4 &&
495 !(offload_assist & BIT(TX_CMD_OFFLD_AMSDU)))
496 offload_assist |= BIT(TX_CMD_OFFLD_PAD);
497
498 cmd->offload_assist |= cpu_to_le16(offload_assist);
499
500 /* Total # bytes to be transmitted */
501 cmd->len = cpu_to_le16((u16)skb->len);
502
503 /* Copy MAC header from skb into command buffer */
504 memcpy(cmd->hdr, hdr, hdrlen);
505
506 if (!info->control.hw_key)
507 cmd->flags |= cpu_to_le32(IWL_TX_FLAGS_ENCRYPT_DIS);
508
509 /* For data packets rate info comes from the fw */
510 if (ieee80211_is_data(hdr->frame_control) && sta)
511 goto out;
512
513 cmd->flags |= cpu_to_le32(IWL_TX_FLAGS_CMD_RATE);
514 cmd->rate_n_flags =
515 cpu_to_le32(iwl_mvm_get_tx_rate(mvm, info, sta));
516
517 goto out;
518 }
519
Johannes Berg8ca151b2013-01-24 14:25:36 +0100520 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
521
522 if (info->control.hw_key)
Johannes Bergca8c0f42015-04-20 17:54:54 +0200523 iwl_mvm_set_tx_cmd_crypto(mvm, info, tx_cmd, skb, hdrlen);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100524
525 iwl_mvm_set_tx_cmd(mvm, skb, tx_cmd, info, sta_id);
526
527 iwl_mvm_set_tx_cmd_rate(mvm, tx_cmd, info, sta, hdr->frame_control);
528
Sara Sharonc47de662016-09-29 17:28:33 +0300529 /* Copy MAC header from skb into command buffer */
530 memcpy(tx_cmd->hdr, hdr, hdrlen);
531
532out:
Johannes Bergbd05a5b2016-12-02 09:57:40 +0100533 return dev_cmd;
534}
535
536static void iwl_mvm_skb_prepare_status(struct sk_buff *skb,
537 struct iwl_device_cmd *cmd)
538{
539 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
540
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300541 memset(&skb_info->status, 0, sizeof(skb_info->status));
542 memset(skb_info->driver_data, 0, sizeof(skb_info->driver_data));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100543
Johannes Bergbd05a5b2016-12-02 09:57:40 +0100544 skb_info->driver_data[1] = cmd;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100545}
546
Liad Kaufmande24f632015-08-04 15:19:18 +0300547static int iwl_mvm_get_ctrl_vif_queue(struct iwl_mvm *mvm,
548 struct ieee80211_tx_info *info, __le16 fc)
549{
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300550 if (!iwl_mvm_is_dqa_supported(mvm))
551 return info->hw_queue;
Liad Kaufmande24f632015-08-04 15:19:18 +0300552
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300553 switch (info->control.vif->type) {
554 case NL80211_IFTYPE_AP:
Liad Kaufman4d339982017-03-21 17:13:16 +0200555 case NL80211_IFTYPE_ADHOC:
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300556 /*
Emmanuel Grumbachd45cb202016-12-28 10:43:02 +0200557 * Handle legacy hostapd as well, where station may be added
558 * only after assoc. Take care of the case where we send a
559 * deauth to a station that we don't have.
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300560 */
Emmanuel Grumbachd45cb202016-12-28 10:43:02 +0200561 if (ieee80211_is_probe_resp(fc) || ieee80211_is_auth(fc) ||
562 ieee80211_is_deauth(fc))
Sara Sharon49f71712017-01-09 12:07:16 +0200563 return mvm->probe_queue;
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300564 if (info->hw_queue == info->control.vif->cab_queue)
565 return info->hw_queue;
566
Liad Kaufman4d339982017-03-21 17:13:16 +0200567 WARN_ONCE(info->control.vif->type != NL80211_IFTYPE_ADHOC,
568 "fc=0x%02x", le16_to_cpu(fc));
Sara Sharon49f71712017-01-09 12:07:16 +0200569 return mvm->probe_queue;
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300570 case NL80211_IFTYPE_P2P_DEVICE:
571 if (ieee80211_is_mgmt(fc))
Sara Sharon49f71712017-01-09 12:07:16 +0200572 return mvm->p2p_dev_queue;
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300573 if (info->hw_queue == info->control.vif->cab_queue)
574 return info->hw_queue;
575
576 WARN_ON_ONCE(1);
Sara Sharon49f71712017-01-09 12:07:16 +0200577 return mvm->p2p_dev_queue;
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300578 default:
579 WARN_ONCE(1, "Not a ctrl vif, no available queue\n");
580 return -1;
581 }
Liad Kaufmande24f632015-08-04 15:19:18 +0300582}
583
Johannes Berg8ca151b2013-01-24 14:25:36 +0100584int iwl_mvm_tx_skb_non_sta(struct iwl_mvm *mvm, struct sk_buff *skb)
585{
586 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300587 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
588 struct ieee80211_tx_info info;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100589 struct iwl_device_cmd *dev_cmd;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100590 u8 sta_id;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200591 int hdrlen = ieee80211_hdrlen(hdr->frame_control);
Liad Kaufmande24f632015-08-04 15:19:18 +0300592 int queue;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100593
Beni Lev54c5ef22016-08-10 17:03:43 +0300594 /* IWL_MVM_OFFCHANNEL_QUEUE is used for ROC packets that can be used
595 * in 2 different types of vifs, P2P & STATION. P2P uses the offchannel
596 * queue. STATION (HS2.0) uses the auxiliary context of the FW,
597 * and hence needs to be sent on the aux queue
598 */
Johannes Berg45b957e2016-12-02 13:33:40 +0100599 if (skb_info->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
Beni Lev54c5ef22016-08-10 17:03:43 +0300600 skb_info->control.vif->type == NL80211_IFTYPE_STATION)
Johannes Berg45b957e2016-12-02 13:33:40 +0100601 skb_info->hw_queue = mvm->aux_queue;
Beni Lev54c5ef22016-08-10 17:03:43 +0300602
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300603 memcpy(&info, skb->cb, sizeof(info));
604
605 if (WARN_ON_ONCE(info.flags & IEEE80211_TX_CTL_AMPDU))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100606 return -1;
607
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300608 if (WARN_ON_ONCE(info.flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM &&
609 (!info.control.vif ||
610 info.hw_queue != info.control.vif->cab_queue)))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100611 return -1;
612
Liad Kaufmande24f632015-08-04 15:19:18 +0300613 queue = info.hw_queue;
614
Ariej Marjieh7da91b02014-07-07 12:09:40 +0300615 /*
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300616 * If the interface on which the frame is sent is the P2P_DEVICE
Johannes Berg8ca151b2013-01-24 14:25:36 +0100617 * or an AP/GO interface use the broadcast station associated
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300618 * with it; otherwise if the interface is a managed interface
619 * use the AP station associated with it for multicast traffic
620 * (this is not possible for unicast packets as a TLDS discovery
621 * response are sent without a station entry); otherwise use the
622 * AUX station.
Beni Lev6574dc92016-11-17 14:03:17 +0200623 * In DQA mode, if vif is of type STATION and frames are not multicast
624 * or offchannel, they should be sent from the BSS queue.
625 * For example, TDLS setup frames should be sent on this queue,
626 * as they go through the AP.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100627 */
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300628 sta_id = mvm->aux_sta.sta_id;
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300629 if (info.control.vif) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100630 struct iwl_mvm_vif *mvmvif =
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300631 iwl_mvm_vif_from_mac80211(info.control.vif);
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300632
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300633 if (info.control.vif->type == NL80211_IFTYPE_P2P_DEVICE ||
Liad Kaufman4d339982017-03-21 17:13:16 +0200634 info.control.vif->type == NL80211_IFTYPE_AP ||
635 info.control.vif->type == NL80211_IFTYPE_ADHOC) {
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300636 sta_id = mvmvif->bcast_sta.sta_id;
Liad Kaufmande24f632015-08-04 15:19:18 +0300637 queue = iwl_mvm_get_ctrl_vif_queue(mvm, &info,
638 hdr->frame_control);
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300639 if (queue < 0)
640 return -1;
641
Sara Sharone2af3fa2017-02-22 19:35:10 +0200642 if (queue == info.control.vif->cab_queue)
643 queue = mvmvif->cab_queue;
Liad Kaufmande24f632015-08-04 15:19:18 +0300644 } else if (info.control.vif->type == NL80211_IFTYPE_STATION &&
645 is_multicast_ether_addr(hdr->addr1)) {
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300646 u8 ap_sta_id = ACCESS_ONCE(mvmvif->ap_sta_id);
647
Sara Sharon0ae98812017-01-04 14:53:58 +0200648 if (ap_sta_id != IWL_MVM_INVALID_STA)
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300649 sta_id = ap_sta_id;
Liad Kaufmane3118ad2016-06-05 10:49:02 +0300650 } else if (iwl_mvm_is_dqa_supported(mvm) &&
Beni Lev6574dc92016-11-17 14:03:17 +0200651 info.control.vif->type == NL80211_IFTYPE_STATION &&
652 queue != mvm->aux_queue) {
Liad Kaufmane3118ad2016-06-05 10:49:02 +0300653 queue = IWL_MVM_DQA_BSS_CLIENT_QUEUE;
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300654 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100655 }
656
Liad Kaufmande24f632015-08-04 15:19:18 +0300657 IWL_DEBUG_TX(mvm, "station Id %d, queue=%d\n", sta_id, queue);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100658
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300659 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, &info, hdrlen, NULL, sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100660 if (!dev_cmd)
661 return -1;
662
Johannes Bergbd05a5b2016-12-02 09:57:40 +0100663 /* From now on, we cannot access info->control */
664 iwl_mvm_skb_prepare_status(skb, dev_cmd);
665
Liad Kaufmande24f632015-08-04 15:19:18 +0300666 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, queue)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100667 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
668 return -1;
669 }
670
Liad Kaufmanfb896c42016-02-14 15:32:58 +0200671 /*
672 * Increase the pending frames counter, so that later when a reply comes
673 * in and the counter is decreased - we don't start getting negative
674 * values.
675 * Note that we don't need to make sure it isn't agg'd, since we're
676 * TXing non-sta
Sara Sharon9a3fcf92017-03-14 09:50:35 +0200677 * For DQA mode - we shouldn't increase it though
Liad Kaufmanfb896c42016-02-14 15:32:58 +0200678 */
Sara Sharon9a3fcf92017-03-14 09:50:35 +0200679 if (!iwl_mvm_is_dqa_supported(mvm))
680 atomic_inc(&mvm->pending_frames[sta_id]);
Liad Kaufmanfb896c42016-02-14 15:32:58 +0200681
Johannes Berg8ca151b2013-01-24 14:25:36 +0100682 return 0;
683}
684
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300685#ifdef CONFIG_INET
686static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300687 struct ieee80211_tx_info *info,
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300688 struct ieee80211_sta *sta,
689 struct sk_buff_head *mpdus_skb)
690{
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200691 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300692 struct ieee80211_hdr *hdr = (void *)skb->data;
693 unsigned int mss = skb_shinfo(skb)->gso_size;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300694 struct sk_buff *tmp, *next;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300695 char cb[sizeof(skb->cb)];
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200696 unsigned int num_subframes, tcp_payload_len, subf_len, max_amsdu_len;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300697 bool ipv4 = (skb->protocol == htons(ETH_P_IP));
698 u16 ip_base_id = ipv4 ? ntohs(ip_hdr(skb)->id) : 0;
Johannes Berg05e5a7e2016-12-02 10:04:49 +0100699 u16 snap_ip_tcp, pad, i = 0;
Emmanuel Grumbach9e7dce22015-10-26 16:14:06 +0200700 unsigned int dbg_max_amsdu_len;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200701 netdev_features_t netdev_features = NETIF_F_CSUM_MASK | NETIF_F_SG;
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200702 u8 *qc, tid, txf;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300703
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300704 snap_ip_tcp = 8 + skb_transport_header(skb) - skb_network_header(skb) +
705 tcp_hdrlen(skb);
706
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200707 qc = ieee80211_get_qos_ctl(hdr);
708 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
709 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
710 return -EINVAL;
711
Emmanuel Grumbachfa820d62016-04-03 10:15:59 +0300712 dbg_max_amsdu_len = ACCESS_ONCE(mvm->max_amsdu_len);
713
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300714 if (!sta->max_amsdu_len ||
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +0200715 !ieee80211_is_data_qos(hdr->frame_control) ||
Emmanuel Grumbachfa820d62016-04-03 10:15:59 +0300716 (!mvmsta->tlc_amsdu && !dbg_max_amsdu_len)) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300717 num_subframes = 1;
718 pad = 0;
719 goto segment;
720 }
721
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200722 /*
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200723 * Do not build AMSDU for IPv6 with extension headers.
724 * ask stack to segment and checkum the generated MPDUs for us.
725 */
726 if (skb->protocol == htons(ETH_P_IPV6) &&
727 ((struct ipv6hdr *)skb_network_header(skb))->nexthdr !=
728 IPPROTO_TCP) {
729 num_subframes = 1;
730 pad = 0;
731 netdev_features &= ~NETIF_F_CSUM_MASK;
732 goto segment;
733 }
734
735 /*
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200736 * No need to lock amsdu_in_ampdu_allowed since it can't be modified
737 * during an BA session.
738 */
739 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
740 !mvmsta->tid_data[tid].amsdu_in_ampdu_allowed) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300741 num_subframes = 1;
742 pad = 0;
743 goto segment;
744 }
745
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200746 max_amsdu_len = sta->max_amsdu_len;
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200747
748 /* the Tx FIFO to which this A-MSDU will be routed */
749 txf = iwl_mvm_ac_to_tx_fifo[tid_to_mac80211_ac[tid]];
750
751 /*
752 * Don't send an AMSDU that will be longer than the TXF.
753 * Add a security margin of 256 for the TX command + headers.
754 * We also want to have the start of the next packet inside the
755 * fifo to be able to send bursts.
756 */
757 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200758 mvm->smem_cfg.lmac[0].txfifo_size[txf] - 256);
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200759
Emmanuel Grumbachfa820d62016-04-03 10:15:59 +0300760 if (unlikely(dbg_max_amsdu_len))
Emmanuel Grumbach9e7dce22015-10-26 16:14:06 +0200761 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
762 dbg_max_amsdu_len);
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200763
764 /*
765 * Limit A-MSDU in A-MPDU to 4095 bytes when VHT is not
766 * supported. This is a spec requirement (IEEE 802.11-2015
767 * section 8.7.3 NOTE 3).
768 */
769 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
770 !sta->vht_cap.vht_supported)
771 max_amsdu_len = min_t(unsigned int, max_amsdu_len, 4095);
772
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300773 /* Sub frame header + SNAP + IP header + TCP header + MSS */
774 subf_len = sizeof(struct ethhdr) + snap_ip_tcp + mss;
775 pad = (4 - subf_len) & 0x3;
776
777 /*
778 * If we have N subframes in the A-MSDU, then the A-MSDU's size is
779 * N * subf_len + (N - 1) * pad.
780 */
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200781 num_subframes = (max_amsdu_len + pad) / (subf_len + pad);
782 if (num_subframes > 1)
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300783 *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300784
785 tcp_payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
786 tcp_hdrlen(skb) + skb->data_len;
787
788 /*
789 * Make sure we have enough TBs for the A-MSDU:
790 * 2 for each subframe
791 * 1 more for each fragment
792 * 1 more for the potential data in the header
793 */
794 num_subframes =
795 min_t(unsigned int, num_subframes,
796 (mvm->trans->max_skb_frags - 1 -
797 skb_shinfo(skb)->nr_frags) / 2);
798
799 /* This skb fits in one single A-MSDU */
800 if (num_subframes * mss >= tcp_payload_len) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300801 __skb_queue_tail(mpdus_skb, skb);
802 return 0;
803 }
804
805 /*
806 * Trick the segmentation function to make it
807 * create SKBs that can fit into one A-MSDU.
808 */
809segment:
810 skb_shinfo(skb)->gso_size = num_subframes * mss;
811 memcpy(cb, skb->cb, sizeof(cb));
812
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200813 next = skb_gso_segment(skb, netdev_features);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300814 skb_shinfo(skb)->gso_size = mss;
815 if (WARN_ON_ONCE(IS_ERR(next)))
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300816 return -EINVAL;
817 else if (next)
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300818 consume_skb(skb);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300819
820 while (next) {
821 tmp = next;
822 next = tmp->next;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300823
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300824 memcpy(tmp->cb, cb, sizeof(tmp->cb));
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300825 /*
826 * Compute the length of all the data added for the A-MSDU.
827 * This will be used to compute the length to write in the TX
828 * command. We have: SNAP + IP + TCP for n -1 subframes and
829 * ETH header for n subframes.
830 */
831 tcp_payload_len = skb_tail_pointer(tmp) -
832 skb_transport_header(tmp) -
833 tcp_hdrlen(tmp) + tmp->data_len;
834
835 if (ipv4)
836 ip_hdr(tmp)->id = htons(ip_base_id + i * num_subframes);
837
838 if (tcp_payload_len > mss) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300839 skb_shinfo(tmp)->gso_size = mss;
840 } else {
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200841 qc = ieee80211_get_qos_ctl((void *)tmp->data);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300842
843 if (ipv4)
844 ip_send_check(ip_hdr(tmp));
845 *qc &= ~IEEE80211_QOS_CTL_A_MSDU_PRESENT;
846 skb_shinfo(tmp)->gso_size = 0;
847 }
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300848
849 tmp->prev = NULL;
850 tmp->next = NULL;
851
852 __skb_queue_tail(mpdus_skb, tmp);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300853 i++;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300854 }
855
856 return 0;
857}
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300858#else /* CONFIG_INET */
859static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300860 struct ieee80211_tx_info *info,
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300861 struct ieee80211_sta *sta,
862 struct sk_buff_head *mpdus_skb)
863{
864 /* Impossible to get TSO with CONFIG_INET */
865 WARN_ON(1);
866
867 return -1;
868}
869#endif
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300870
Liad Kaufman24afba72015-07-28 18:56:08 +0300871static void iwl_mvm_tx_add_stream(struct iwl_mvm *mvm,
872 struct iwl_mvm_sta *mvm_sta, u8 tid,
873 struct sk_buff *skb)
874{
875 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
876 u8 mac_queue = info->hw_queue;
877 struct sk_buff_head *deferred_tx_frames;
878
879 lockdep_assert_held(&mvm_sta->lock);
880
881 mvm_sta->deferred_traffic_tid_map |= BIT(tid);
882 set_bit(mvm_sta->sta_id, mvm->sta_deferred_frames);
883
884 deferred_tx_frames = &mvm_sta->tid_data[tid].deferred_tx_frames;
885
886 skb_queue_tail(deferred_tx_frames, skb);
887
888 /*
889 * The first deferred frame should've stopped the MAC queues, so we
890 * should never get a second deferred frame for the RA/TID.
891 */
892 if (!WARN(skb_queue_len(deferred_tx_frames) != 1,
893 "RATID %d/%d has %d deferred frames\n", mvm_sta->sta_id, tid,
894 skb_queue_len(deferred_tx_frames))) {
895 iwl_mvm_stop_mac_queues(mvm, BIT(mac_queue));
896 schedule_work(&mvm->add_stream_wk);
897 }
898}
899
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200900/* Check if there are any timed-out TIDs on a given shared TXQ */
901static bool iwl_mvm_txq_should_update(struct iwl_mvm *mvm, int txq_id)
902{
903 unsigned long queue_tid_bitmap = mvm->queue_info[txq_id].tid_bitmap;
904 unsigned long now = jiffies;
905 int tid;
906
Sara Sharonbb497012016-09-29 14:52:40 +0300907 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
908 return false;
909
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200910 for_each_set_bit(tid, &queue_tid_bitmap, IWL_MAX_TID_COUNT + 1) {
911 if (time_before(mvm->queue_info[txq_id].last_frame_time[tid] +
912 IWL_MVM_DQA_QUEUE_TIMEOUT, now))
913 return true;
914 }
915
916 return false;
917}
918
Johannes Berg8ca151b2013-01-24 14:25:36 +0100919/*
920 * Sets the fields in the Tx cmd that are crypto related
921 */
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300922static int iwl_mvm_tx_mpdu(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300923 struct ieee80211_tx_info *info,
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300924 struct ieee80211_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100925{
926 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100927 struct iwl_mvm_sta *mvmsta;
928 struct iwl_device_cmd *dev_cmd;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100929 __le16 fc;
930 u16 seq_number = 0;
931 u8 tid = IWL_MAX_TID_COUNT;
Sara Sharon6862fce2017-02-22 19:34:17 +0200932 u16 txq_id = info->hw_queue;
Johannes Berg7ec54712016-03-16 09:29:48 +0100933 bool is_ampdu = false;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200934 int hdrlen;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100935
Johannes Berg5b577a92013-11-14 18:20:04 +0100936 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100937 fc = hdr->frame_control;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200938 hdrlen = ieee80211_hdrlen(fc);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100939
940 if (WARN_ON_ONCE(!mvmsta))
941 return -1;
942
Sara Sharon0ae98812017-01-04 14:53:58 +0200943 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_INVALID_STA))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100944 return -1;
945
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300946 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, info, hdrlen,
947 sta, mvmsta->sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100948 if (!dev_cmd)
949 goto drop;
950
Johannes Berg3e56ead2013-02-15 22:23:18 +0100951 /*
952 * we handle that entirely ourselves -- for uAPSD the firmware
953 * will always send a notification, and for PS-Poll responses
954 * we'll notify mac80211 when getting frame status
955 */
956 info->flags &= ~IEEE80211_TX_STATUS_EOSP;
957
Johannes Berg8ca151b2013-01-24 14:25:36 +0100958 spin_lock(&mvmsta->lock);
959
Sara Sharon0d7f1b92016-12-08 10:43:40 +0200960 /* nullfunc frames should go to the MGMT queue regardless of QOS,
961 * the condition of !ieee80211_is_qos_nullfunc(fc) keeps the default
962 * assignment of MGMT TID
963 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100964 if (ieee80211_is_data_qos(fc) && !ieee80211_is_qos_nullfunc(fc)) {
965 u8 *qc = NULL;
966 qc = ieee80211_get_qos_ctl(hdr);
967 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
968 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
969 goto drop_unlock_sta;
970
Johannes Berg8ca151b2013-01-24 14:25:36 +0100971 is_ampdu = info->flags & IEEE80211_TX_CTL_AMPDU;
Sara Sharon0d7f1b92016-12-08 10:43:40 +0200972 if (WARN_ON_ONCE(is_ampdu &&
973 mvmsta->tid_data[tid].state != IWL_AGG_ON))
974 goto drop_unlock_sta;
Sara Sharonc47de662016-09-29 17:28:33 +0300975
976 seq_number = mvmsta->tid_data[tid].seq_number;
977 seq_number &= IEEE80211_SCTL_SEQ;
978
979 if (!iwl_mvm_has_new_tx_api(mvm)) {
980 struct iwl_tx_cmd *tx_cmd = (void *)dev_cmd->payload;
981
982 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
983 hdr->seq_ctrl |= cpu_to_le16(seq_number);
984 /* update the tx_cmd hdr as it was already copied */
985 tx_cmd->hdr->seq_ctrl = hdr->seq_ctrl;
986 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100987 }
988
Sara Sharon0d7f1b92016-12-08 10:43:40 +0200989 if (iwl_mvm_is_dqa_supported(mvm) || is_ampdu)
Liad Kaufman9794c642015-08-19 17:34:28 +0300990 txq_id = mvmsta->tid_data[tid].txq_id;
Sara Sharonc47de662016-09-29 17:28:33 +0300991
Liad Kaufmane3118ad2016-06-05 10:49:02 +0300992 if (sta->tdls && !iwl_mvm_is_dqa_supported(mvm)) {
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300993 /* default to TID 0 for non-QoS packets */
994 u8 tdls_tid = tid == IWL_MAX_TID_COUNT ? 0 : tid;
995
996 txq_id = mvmsta->hw_queue[tid_to_mac80211_ac[tdls_tid]];
997 }
998
Sara Sharon0d7f1b92016-12-08 10:43:40 +0200999 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001000
Liad Kaufman9794c642015-08-19 17:34:28 +03001001 /* Check if TXQ needs to be allocated or re-activated */
Sara Sharon6862fce2017-02-22 19:34:17 +02001002 if (unlikely(txq_id == IWL_MVM_INVALID_QUEUE ||
Liad Kaufman9794c642015-08-19 17:34:28 +03001003 !mvmsta->tid_data[tid].is_tid_active) &&
1004 iwl_mvm_is_dqa_supported(mvm)) {
1005 /* If TXQ needs to be allocated... */
Sara Sharon6862fce2017-02-22 19:34:17 +02001006 if (txq_id == IWL_MVM_INVALID_QUEUE) {
Liad Kaufman24afba72015-07-28 18:56:08 +03001007 iwl_mvm_tx_add_stream(mvm, mvmsta, tid, skb);
1008
1009 /*
1010 * The frame is now deferred, and the worker scheduled
1011 * will re-allocate it, so we can free it for now.
1012 */
1013 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
1014 spin_unlock(&mvmsta->lock);
1015 return 0;
1016 }
1017
Sara Sharon34e10862017-02-23 13:15:07 +02001018 /* queue should always be active in new TX path */
1019 WARN_ON(iwl_mvm_has_new_tx_api(mvm));
1020
Liad Kaufman9794c642015-08-19 17:34:28 +03001021 /* If we are here - TXQ exists and needs to be re-activated */
1022 spin_lock(&mvm->queue_info_lock);
1023 mvm->queue_info[txq_id].status = IWL_MVM_QUEUE_READY;
1024 mvmsta->tid_data[tid].is_tid_active = true;
1025 spin_unlock(&mvm->queue_info_lock);
1026
1027 IWL_DEBUG_TX_QUEUES(mvm, "Re-activating queue %d for TX\n",
1028 txq_id);
Liad Kaufman24afba72015-07-28 18:56:08 +03001029 }
1030
Sara Sharon34e10862017-02-23 13:15:07 +02001031 if (iwl_mvm_is_dqa_supported(mvm) && !iwl_mvm_has_new_tx_api(mvm)) {
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001032 /* Keep track of the time of the last frame for this RA/TID */
1033 mvm->queue_info[txq_id].last_frame_time[tid] = jiffies;
1034
1035 /*
1036 * If we have timed-out TIDs - schedule the worker that will
1037 * reconfig the queues and update them
1038 *
1039 * Note that the mvm->queue_info_lock isn't being taken here in
1040 * order to not serialize the TX flow. This isn't dangerous
1041 * because scheduling mvm->add_stream_wk can't ruin the state,
1042 * and if we DON'T schedule it due to some race condition then
1043 * next TX we get here we will.
1044 */
1045 if (unlikely(mvm->queue_info[txq_id].status ==
1046 IWL_MVM_QUEUE_SHARED &&
1047 iwl_mvm_txq_should_update(mvm, txq_id)))
1048 schedule_work(&mvm->add_stream_wk);
1049 }
Liad Kaufman9794c642015-08-19 17:34:28 +03001050
Johannes Berg8ca151b2013-01-24 14:25:36 +01001051 IWL_DEBUG_TX(mvm, "TX to [%d|%d] Q:%d - seq: 0x%x\n", mvmsta->sta_id,
Eliad Pellercf9d1182013-12-31 18:54:06 +02001052 tid, txq_id, IEEE80211_SEQ_TO_SN(seq_number));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001053
Johannes Bergbd05a5b2016-12-02 09:57:40 +01001054 /* From now on, we cannot access info->control */
1055 iwl_mvm_skb_prepare_status(skb, dev_cmd);
1056
Johannes Berg8ca151b2013-01-24 14:25:36 +01001057 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, txq_id))
1058 goto drop_unlock_sta;
1059
Johannes Berg7ec54712016-03-16 09:29:48 +01001060 if (tid < IWL_MAX_TID_COUNT && !ieee80211_has_morefrags(fc))
Eliad Pellercf9d1182013-12-31 18:54:06 +02001061 mvmsta->tid_data[tid].seq_number = seq_number + 0x10;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001062
1063 spin_unlock(&mvmsta->lock);
1064
Sara Sharon9a3fcf92017-03-14 09:50:35 +02001065 /* Increase pending frames count if this isn't AMPDU or DQA queue */
1066 if (!iwl_mvm_is_dqa_supported(mvm) && !is_ampdu)
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001067 atomic_inc(&mvm->pending_frames[mvmsta->sta_id]);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001068
1069 return 0;
1070
1071drop_unlock_sta:
1072 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
1073 spin_unlock(&mvmsta->lock);
1074drop:
1075 return -1;
1076}
1077
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001078int iwl_mvm_tx_skb(struct iwl_mvm *mvm, struct sk_buff *skb,
1079 struct ieee80211_sta *sta)
1080{
1081 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001082 struct ieee80211_tx_info info;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001083 struct sk_buff_head mpdus_skbs;
1084 unsigned int payload_len;
1085 int ret;
1086
1087 if (WARN_ON_ONCE(!mvmsta))
1088 return -1;
1089
Sara Sharon0ae98812017-01-04 14:53:58 +02001090 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_INVALID_STA))
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001091 return -1;
1092
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001093 memcpy(&info, skb->cb, sizeof(info));
1094
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001095 if (!skb_is_gso(skb))
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001096 return iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001097
1098 payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
1099 tcp_hdrlen(skb) + skb->data_len;
1100
1101 if (payload_len <= skb_shinfo(skb)->gso_size)
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001102 return iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001103
1104 __skb_queue_head_init(&mpdus_skbs);
1105
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001106 ret = iwl_mvm_tx_tso(mvm, skb, &info, sta, &mpdus_skbs);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001107 if (ret)
1108 return ret;
1109
1110 if (WARN_ON(skb_queue_empty(&mpdus_skbs)))
1111 return ret;
1112
1113 while (!skb_queue_empty(&mpdus_skbs)) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +03001114 skb = __skb_dequeue(&mpdus_skbs);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001115
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001116 ret = iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001117 if (ret) {
1118 __skb_queue_purge(&mpdus_skbs);
1119 return ret;
1120 }
1121 }
1122
1123 return 0;
1124}
1125
Johannes Berg8ca151b2013-01-24 14:25:36 +01001126static void iwl_mvm_check_ratid_empty(struct iwl_mvm *mvm,
1127 struct ieee80211_sta *sta, u8 tid)
1128{
Johannes Berg5b577a92013-11-14 18:20:04 +01001129 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001130 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
1131 struct ieee80211_vif *vif = mvmsta->vif;
Liad Kaufmandd321622017-04-05 16:25:11 +03001132 u16 normalized_ssn;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001133
1134 lockdep_assert_held(&mvmsta->lock);
1135
Johannes Berg3e56ead2013-02-15 22:23:18 +01001136 if ((tid_data->state == IWL_AGG_ON ||
Sara Sharon9a3fcf92017-03-14 09:50:35 +02001137 tid_data->state == IWL_EMPTYING_HW_QUEUE_DELBA ||
1138 iwl_mvm_is_dqa_supported(mvm)) &&
Liad Kaufmandd321622017-04-05 16:25:11 +03001139 iwl_mvm_tid_queued(mvm, tid_data) == 0) {
Johannes Berg3e56ead2013-02-15 22:23:18 +01001140 /*
Sara Sharon9a3fcf92017-03-14 09:50:35 +02001141 * Now that this aggregation or DQA queue is empty tell
1142 * mac80211 so it knows we no longer have frames buffered for
1143 * the station on this TID (for the TIM bitmap calculation.)
Johannes Berg3e56ead2013-02-15 22:23:18 +01001144 */
1145 ieee80211_sta_set_buffered(sta, tid, false);
1146 }
1147
Liad Kaufmandd321622017-04-05 16:25:11 +03001148 /*
1149 * In A000 HW, the next_reclaimed index is only 8 bit, so we'll need
1150 * to align the wrap around of ssn so we compare relevant values.
1151 */
1152 normalized_ssn = tid_data->ssn;
1153 if (mvm->trans->cfg->gen2)
1154 normalized_ssn &= 0xff;
1155
1156 if (normalized_ssn != tid_data->next_reclaimed)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001157 return;
1158
1159 switch (tid_data->state) {
1160 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1161 IWL_DEBUG_TX_QUEUES(mvm,
1162 "Can continue addBA flow ssn = next_recl = %d\n",
1163 tid_data->next_reclaimed);
1164 tid_data->state = IWL_AGG_STARTING;
1165 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1166 break;
1167
1168 case IWL_EMPTYING_HW_QUEUE_DELBA:
1169 IWL_DEBUG_TX_QUEUES(mvm,
1170 "Can continue DELBA flow ssn = next_recl = %d\n",
1171 tid_data->next_reclaimed);
Liad Kaufman15985fb2016-06-26 14:45:12 +03001172 if (!iwl_mvm_is_dqa_supported(mvm)) {
1173 u8 mac80211_ac = tid_to_mac80211_ac[tid];
1174
1175 iwl_mvm_disable_txq(mvm, tid_data->txq_id,
1176 vif->hw_queue[mac80211_ac], tid,
1177 CMD_ASYNC);
1178 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001179 tid_data->state = IWL_AGG_OFF;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001180 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1181 break;
1182
1183 default:
1184 break;
1185 }
1186}
1187
1188#ifdef CONFIG_IWLWIFI_DEBUG
1189const char *iwl_mvm_get_tx_fail_reason(u32 status)
1190{
1191#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
1192#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
1193
1194 switch (status & TX_STATUS_MSK) {
1195 case TX_STATUS_SUCCESS:
1196 return "SUCCESS";
1197 TX_STATUS_POSTPONE(DELAY);
1198 TX_STATUS_POSTPONE(FEW_BYTES);
1199 TX_STATUS_POSTPONE(BT_PRIO);
1200 TX_STATUS_POSTPONE(QUIET_PERIOD);
1201 TX_STATUS_POSTPONE(CALC_TTAK);
1202 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
1203 TX_STATUS_FAIL(SHORT_LIMIT);
1204 TX_STATUS_FAIL(LONG_LIMIT);
1205 TX_STATUS_FAIL(UNDERRUN);
1206 TX_STATUS_FAIL(DRAIN_FLOW);
1207 TX_STATUS_FAIL(RFKILL_FLUSH);
1208 TX_STATUS_FAIL(LIFE_EXPIRE);
1209 TX_STATUS_FAIL(DEST_PS);
1210 TX_STATUS_FAIL(HOST_ABORTED);
1211 TX_STATUS_FAIL(BT_RETRY);
1212 TX_STATUS_FAIL(STA_INVALID);
1213 TX_STATUS_FAIL(FRAG_DROPPED);
1214 TX_STATUS_FAIL(TID_DISABLE);
1215 TX_STATUS_FAIL(FIFO_FLUSHED);
1216 TX_STATUS_FAIL(SMALL_CF_POLL);
1217 TX_STATUS_FAIL(FW_DROP);
1218 TX_STATUS_FAIL(STA_COLOR_MISMATCH);
1219 }
1220
1221 return "UNKNOWN";
1222
1223#undef TX_STATUS_FAIL
1224#undef TX_STATUS_POSTPONE
1225}
1226#endif /* CONFIG_IWLWIFI_DEBUG */
1227
Eyal Shapirad310e402013-08-11 18:43:47 +03001228void iwl_mvm_hwrate_to_tx_rate(u32 rate_n_flags,
Johannes Berg57fbcce2016-04-12 15:56:15 +02001229 enum nl80211_band band,
Eyal Shapirad310e402013-08-11 18:43:47 +03001230 struct ieee80211_tx_rate *r)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001231{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001232 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
1233 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
1234 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
1235 case RATE_MCS_CHAN_WIDTH_20:
1236 break;
1237 case RATE_MCS_CHAN_WIDTH_40:
1238 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
1239 break;
1240 case RATE_MCS_CHAN_WIDTH_80:
1241 r->flags |= IEEE80211_TX_RC_80_MHZ_WIDTH;
1242 break;
1243 case RATE_MCS_CHAN_WIDTH_160:
1244 r->flags |= IEEE80211_TX_RC_160_MHZ_WIDTH;
1245 break;
1246 }
1247 if (rate_n_flags & RATE_MCS_SGI_MSK)
1248 r->flags |= IEEE80211_TX_RC_SHORT_GI;
1249 if (rate_n_flags & RATE_MCS_HT_MSK) {
1250 r->flags |= IEEE80211_TX_RC_MCS;
1251 r->idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
1252 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
1253 ieee80211_rate_set_vht(
1254 r, rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK,
1255 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
1256 RATE_VHT_MCS_NSS_POS) + 1);
1257 r->flags |= IEEE80211_TX_RC_VHT_MCS;
1258 } else {
1259 r->idx = iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
Eyal Shapirad310e402013-08-11 18:43:47 +03001260 band);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001261 }
1262}
1263
Eyal Shapirad310e402013-08-11 18:43:47 +03001264/**
1265 * translate ucode response to mac80211 tx status control values
1266 */
1267static void iwl_mvm_hwrate_to_tx_status(u32 rate_n_flags,
1268 struct ieee80211_tx_info *info)
1269{
1270 struct ieee80211_tx_rate *r = &info->status.rates[0];
1271
1272 info->status.antenna =
1273 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
1274 iwl_mvm_hwrate_to_tx_rate(rate_n_flags, info->band, r);
1275}
1276
Golan Ben-Ami25657fe2015-09-02 12:34:23 +03001277static void iwl_mvm_tx_status_check_trigger(struct iwl_mvm *mvm,
1278 u32 status)
1279{
1280 struct iwl_fw_dbg_trigger_tlv *trig;
1281 struct iwl_fw_dbg_trigger_tx_status *status_trig;
1282 int i;
1283
1284 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TX_STATUS))
1285 return;
1286
1287 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TX_STATUS);
1288 status_trig = (void *)trig->data;
1289
1290 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
1291 return;
1292
1293 for (i = 0; i < ARRAY_SIZE(status_trig->statuses); i++) {
1294 /* don't collect on status 0 */
1295 if (!status_trig->statuses[i].status)
1296 break;
1297
1298 if (status_trig->statuses[i].status != (status & TX_STATUS_MSK))
1299 continue;
1300
1301 iwl_mvm_fw_dbg_collect_trig(mvm, trig,
1302 "Tx status %d was received",
1303 status & TX_STATUS_MSK);
1304 break;
1305 }
1306}
1307
Sara Sharon12db2942017-01-17 14:28:21 +02001308/**
1309 * iwl_mvm_get_scd_ssn - returns the SSN of the SCD
1310 * @tx_resp: the Tx response from the fw (agg or non-agg)
1311 *
1312 * When the fw sends an AMPDU, it fetches the MPDUs one after the other. Since
1313 * it can't know that everything will go well until the end of the AMPDU, it
1314 * can't know in advance the number of MPDUs that will be sent in the current
1315 * batch. This is why it writes the agg Tx response while it fetches the MPDUs.
1316 * Hence, it can't know in advance what the SSN of the SCD will be at the end
1317 * of the batch. This is why the SSN of the SCD is written at the end of the
1318 * whole struct at a variable offset. This function knows how to cope with the
1319 * variable offset and returns the SSN of the SCD.
1320 */
1321static inline u32 iwl_mvm_get_scd_ssn(struct iwl_mvm *mvm,
1322 struct iwl_mvm_tx_resp *tx_resp)
1323{
1324 return le32_to_cpup((__le32 *)iwl_mvm_get_agg_status(mvm, tx_resp) +
1325 tx_resp->frame_count) & 0xfff;
1326}
1327
Johannes Berg8ca151b2013-01-24 14:25:36 +01001328static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm,
1329 struct iwl_rx_packet *pkt)
1330{
1331 struct ieee80211_sta *sta;
1332 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1333 int txq_id = SEQ_TO_QUEUE(sequence);
Johannes Berga6a62192017-05-03 21:56:04 +02001334 /* struct iwl_mvm_tx_resp_v3 is almost the same */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001335 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1336 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1337 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
Sara Sharon12db2942017-01-17 14:28:21 +02001338 struct agg_tx_status *agg_status =
1339 iwl_mvm_get_agg_status(mvm, tx_resp);
1340 u32 status = le16_to_cpu(agg_status->status);
1341 u16 ssn = iwl_mvm_get_scd_ssn(mvm, tx_resp);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001342 struct iwl_mvm_sta *mvmsta;
1343 struct sk_buff_head skbs;
1344 u8 skb_freed = 0;
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001345 u8 lq_color;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001346 u16 next_reclaimed, seq_ctl;
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001347 bool is_ndp = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001348
1349 __skb_queue_head_init(&skbs);
1350
Sara Sharon12db2942017-01-17 14:28:21 +02001351 if (iwl_mvm_has_new_tx_api(mvm))
Johannes Berga6a62192017-05-03 21:56:04 +02001352 txq_id = le16_to_cpu(tx_resp->tx_queue);
Sara Sharon12db2942017-01-17 14:28:21 +02001353
Johannes Berg8ca151b2013-01-24 14:25:36 +01001354 seq_ctl = le16_to_cpu(tx_resp->seq_ctl);
1355
1356 /* we can free until ssn % q.n_bd not inclusive */
1357 iwl_trans_reclaim(mvm->trans, txq_id, ssn, &skbs);
1358
1359 while (!skb_queue_empty(&skbs)) {
1360 struct sk_buff *skb = __skb_dequeue(&skbs);
1361 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1362
1363 skb_freed++;
1364
1365 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1366
1367 memset(&info->status, 0, sizeof(info->status));
1368
Johannes Berg8ca151b2013-01-24 14:25:36 +01001369 /* inform mac80211 about what happened with the frame */
1370 switch (status & TX_STATUS_MSK) {
1371 case TX_STATUS_SUCCESS:
1372 case TX_STATUS_DIRECT_DONE:
1373 info->flags |= IEEE80211_TX_STAT_ACK;
1374 break;
1375 case TX_STATUS_FAIL_DEST_PS:
Sara Sharon9a3fcf92017-03-14 09:50:35 +02001376 /* In DQA, the FW should have stopped the queue and not
1377 * return this status
1378 */
1379 WARN_ON(iwl_mvm_is_dqa_supported(mvm));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001380 info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1381 break;
1382 default:
1383 break;
1384 }
1385
Golan Ben-Ami25657fe2015-09-02 12:34:23 +03001386 iwl_mvm_tx_status_check_trigger(mvm, status);
1387
Johannes Berg8ca151b2013-01-24 14:25:36 +01001388 info->status.rates[0].count = tx_resp->failure_frame + 1;
Eyal Shapirad310e402013-08-11 18:43:47 +03001389 iwl_mvm_hwrate_to_tx_status(le32_to_cpu(tx_resp->initial_rate),
1390 info);
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001391 info->status.status_driver_data[1] =
1392 (void *)(uintptr_t)le32_to_cpu(tx_resp->initial_rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001393
1394 /* Single frame failure in an AMPDU queue => send BAR */
Sara Sharonc56108b2017-01-01 18:42:23 +02001395 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
Eyal Shapira9ce578a2014-12-31 15:22:38 +02001396 !(info->flags & IEEE80211_TX_STAT_ACK) &&
1397 !(info->flags & IEEE80211_TX_STAT_TX_FILTERED))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001398 info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
Sara Sharonc56108b2017-01-01 18:42:23 +02001399 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001400
Emmanuel Grumbachebea2f32013-06-13 10:07:47 +03001401 /* W/A FW bug: seq_ctl is wrong when the status isn't success */
1402 if (status != TX_STATUS_SUCCESS) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001403 struct ieee80211_hdr *hdr = (void *)skb->data;
1404 seq_ctl = le16_to_cpu(hdr->seq_ctrl);
1405 }
1406
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001407 if (unlikely(!seq_ctl)) {
1408 struct ieee80211_hdr *hdr = (void *)skb->data;
1409
1410 /*
1411 * If it is an NDP, we can't update next_reclaim since
1412 * its sequence control is 0. Note that for that same
1413 * reason, NDPs are never sent to A-MPDU'able queues
1414 * so that we can never have more than one freed frame
1415 * for a single Tx resonse (see WARN_ON below).
1416 */
1417 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
1418 is_ndp = true;
1419 }
1420
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +03001421 /*
1422 * TODO: this is not accurate if we are freeing more than one
1423 * packet.
1424 */
1425 info->status.tx_time =
1426 le16_to_cpu(tx_resp->wireless_media_time);
Eliad Peller3a84b692014-03-12 15:05:06 +02001427 BUILD_BUG_ON(ARRAY_SIZE(info->status.status_driver_data) < 1);
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001428 lq_color = TX_RES_RATE_TABLE_COL_GET(tx_resp->tlc_info);
Eliad Peller3a84b692014-03-12 15:05:06 +02001429 info->status.status_driver_data[0] =
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001430 RS_DRV_DATA_PACK(lq_color, tx_resp->reduced_tpc);
Eliad Peller3a84b692014-03-12 15:05:06 +02001431
Johannes Bergf14d6b32014-03-21 13:30:03 +01001432 ieee80211_tx_status(mvm->hw, skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001433 }
1434
Sara Sharonc56108b2017-01-01 18:42:23 +02001435 if (iwl_mvm_is_dqa_supported(mvm) || txq_id >= mvm->first_agg_queue) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001436 /* If this is an aggregation queue, we use the ssn since:
1437 * ssn = wifi seq_num % 256.
1438 * The seq_ctl is the sequence control of the packet to which
1439 * this Tx response relates. But if there is a hole in the
1440 * bitmap of the BA we received, this Tx response may allow to
1441 * reclaim the hole and all the subsequent packets that were
1442 * already acked. In that case, seq_ctl != ssn, and the next
1443 * packet to be reclaimed will be ssn and not seq_ctl. In that
1444 * case, several packets will be reclaimed even if
1445 * frame_count = 1.
1446 *
1447 * The ssn is the index (% 256) of the latest packet that has
1448 * treated (acked / dropped) + 1.
1449 */
1450 next_reclaimed = ssn;
1451 } else {
1452 /* The next packet to be reclaimed is the one after this one */
Johannes Berg9a886582013-02-15 19:25:00 +01001453 next_reclaimed = IEEE80211_SEQ_TO_SN(seq_ctl + 0x10);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001454 }
1455
1456 IWL_DEBUG_TX_REPLY(mvm,
Emmanuel Grumbach8c6e83d2013-03-20 17:12:46 +02001457 "TXQ %d status %s (0x%08x)\n",
1458 txq_id, iwl_mvm_get_tx_fail_reason(status), status);
1459
1460 IWL_DEBUG_TX_REPLY(mvm,
1461 "\t\t\t\tinitial_rate 0x%x retries %d, idx=%d ssn=%d next_reclaimed=0x%x seq_ctl=0x%x\n",
1462 le32_to_cpu(tx_resp->initial_rate),
Johannes Berg8ca151b2013-01-24 14:25:36 +01001463 tx_resp->failure_frame, SEQ_TO_INDEX(sequence),
1464 ssn, next_reclaimed, seq_ctl);
1465
1466 rcu_read_lock();
1467
1468 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001469 /*
1470 * sta can't be NULL otherwise it'd mean that the sta has been freed in
1471 * the firmware while we still have packets for it in the Tx queues.
1472 */
1473 if (WARN_ON_ONCE(!sta))
1474 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001475
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001476 if (!IS_ERR(sta)) {
Johannes Berg5b577a92013-11-14 18:20:04 +01001477 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001478
Sara Sharonc65f4e02016-12-13 16:10:28 +02001479 if (tid != IWL_TID_NON_QOS && tid != IWL_MGMT_TID) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001480 struct iwl_mvm_tid_data *tid_data =
1481 &mvmsta->tid_data[tid];
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001482 bool send_eosp_ndp = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001483
Johannes Berg2bfb5092012-12-27 21:43:48 +01001484 spin_lock_bh(&mvmsta->lock);
Liad Kaufmancf961e12015-08-13 19:16:08 +03001485
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001486 if (!is_ndp) {
1487 tid_data->next_reclaimed = next_reclaimed;
1488 IWL_DEBUG_TX_REPLY(mvm,
1489 "Next reclaimed packet:%d\n",
1490 next_reclaimed);
1491 } else {
1492 IWL_DEBUG_TX_REPLY(mvm,
1493 "NDP - don't update next_reclaimed\n");
1494 }
1495
Johannes Berg8ca151b2013-01-24 14:25:36 +01001496 iwl_mvm_check_ratid_empty(mvm, sta, tid);
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001497
1498 if (mvmsta->sleep_tx_count) {
1499 mvmsta->sleep_tx_count--;
1500 if (mvmsta->sleep_tx_count &&
Liad Kaufmandd321622017-04-05 16:25:11 +03001501 !iwl_mvm_tid_queued(mvm, tid_data)) {
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001502 /*
1503 * The number of frames in the queue
1504 * dropped to 0 even if we sent less
1505 * frames than we thought we had on the
1506 * Tx queue.
1507 * This means we had holes in the BA
1508 * window that we just filled, ask
1509 * mac80211 to send EOSP since the
1510 * firmware won't know how to do that.
1511 * Send NDP and the firmware will send
1512 * EOSP notification that will trigger
1513 * a call to ieee80211_sta_eosp().
1514 */
1515 send_eosp_ndp = true;
1516 }
1517 }
1518
Johannes Berg2bfb5092012-12-27 21:43:48 +01001519 spin_unlock_bh(&mvmsta->lock);
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001520 if (send_eosp_ndp) {
1521 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta,
1522 IEEE80211_FRAME_RELEASE_UAPSD,
1523 1, tid, false, false);
1524 mvmsta->sleep_tx_count = 0;
1525 ieee80211_send_eosp_nullfunc(sta, tid);
1526 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001527 }
Johannes Berg3e56ead2013-02-15 22:23:18 +01001528
1529 if (mvmsta->next_status_eosp) {
1530 mvmsta->next_status_eosp = false;
1531 ieee80211_sta_eosp(sta);
1532 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001533 } else {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001534 mvmsta = NULL;
1535 }
1536
1537 /*
1538 * If the txq is not an AMPDU queue, there is no chance we freed
1539 * several skbs. Check that out...
Johannes Berg8ca151b2013-01-24 14:25:36 +01001540 */
Sara Sharon9a3fcf92017-03-14 09:50:35 +02001541 if (iwl_mvm_is_dqa_supported(mvm) || txq_id >= mvm->first_agg_queue)
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001542 goto out;
1543
1544 /* We can't free more than one frame at once on a shared queue */
Sara Sharon9a3fcf92017-03-14 09:50:35 +02001545 WARN_ON(skb_freed > 1);
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001546
Emmanuel Grumbach589a6ba2014-06-05 11:32:41 +03001547 /* If we have still frames for this STA nothing to do here */
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001548 if (!atomic_sub_and_test(skb_freed, &mvm->pending_frames[sta_id]))
1549 goto out;
1550
1551 if (mvmsta && mvmsta->vif->type == NL80211_IFTYPE_AP) {
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001552
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001553 /*
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001554 * If there are no pending frames for this STA and
1555 * the tx to this station is not disabled, notify
1556 * mac80211 that this station can now wake up in its
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001557 * STA table.
1558 * If mvmsta is not NULL, sta is valid.
1559 */
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001560
1561 spin_lock_bh(&mvmsta->lock);
1562
1563 if (!mvmsta->disable_tx)
1564 ieee80211_sta_block_awake(mvm->hw, sta, false);
1565
1566 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001567 }
1568
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001569 if (PTR_ERR(sta) == -EBUSY || PTR_ERR(sta) == -ENOENT) {
1570 /*
1571 * We are draining and this was the last packet - pre_rcu_remove
1572 * has been called already. We might be after the
1573 * synchronize_net already.
1574 * Don't rely on iwl_mvm_rm_sta to see the empty Tx queues.
1575 */
1576 set_bit(sta_id, mvm->sta_drained);
1577 schedule_work(&mvm->sta_drained_wk);
1578 }
1579
1580out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001581 rcu_read_unlock();
1582}
1583
1584#ifdef CONFIG_IWLWIFI_DEBUG
1585#define AGG_TX_STATE_(x) case AGG_TX_STATE_ ## x: return #x
1586static const char *iwl_get_agg_tx_status(u16 status)
1587{
1588 switch (status & AGG_TX_STATE_STATUS_MSK) {
1589 AGG_TX_STATE_(TRANSMITTED);
1590 AGG_TX_STATE_(UNDERRUN);
1591 AGG_TX_STATE_(BT_PRIO);
1592 AGG_TX_STATE_(FEW_BYTES);
1593 AGG_TX_STATE_(ABORT);
1594 AGG_TX_STATE_(LAST_SENT_TTL);
1595 AGG_TX_STATE_(LAST_SENT_TRY_CNT);
1596 AGG_TX_STATE_(LAST_SENT_BT_KILL);
1597 AGG_TX_STATE_(SCD_QUERY);
1598 AGG_TX_STATE_(TEST_BAD_CRC32);
1599 AGG_TX_STATE_(RESPONSE);
1600 AGG_TX_STATE_(DUMP_TX);
1601 AGG_TX_STATE_(DELAY_TX);
1602 }
1603
1604 return "UNKNOWN";
1605}
1606
1607static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1608 struct iwl_rx_packet *pkt)
1609{
1610 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
Sara Sharon12db2942017-01-17 14:28:21 +02001611 struct agg_tx_status *frame_status =
1612 iwl_mvm_get_agg_status(mvm, tx_resp);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001613 int i;
1614
1615 for (i = 0; i < tx_resp->frame_count; i++) {
1616 u16 fstatus = le16_to_cpu(frame_status[i].status);
1617
1618 IWL_DEBUG_TX_REPLY(mvm,
1619 "status %s (0x%04x), try-count (%d) seq (0x%x)\n",
1620 iwl_get_agg_tx_status(fstatus),
1621 fstatus & AGG_TX_STATE_STATUS_MSK,
1622 (fstatus & AGG_TX_STATE_TRY_CNT_MSK) >>
1623 AGG_TX_STATE_TRY_CNT_POS,
1624 le16_to_cpu(frame_status[i].sequence));
1625 }
1626}
1627#else
1628static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1629 struct iwl_rx_packet *pkt)
1630{}
1631#endif /* CONFIG_IWLWIFI_DEBUG */
1632
1633static void iwl_mvm_rx_tx_cmd_agg(struct iwl_mvm *mvm,
1634 struct iwl_rx_packet *pkt)
1635{
1636 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1637 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1638 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
1639 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
Sara Sharon13303c02016-04-10 15:51:54 +03001640 struct iwl_mvm_sta *mvmsta;
Liad Kaufmancf961e12015-08-13 19:16:08 +03001641 int queue = SEQ_TO_QUEUE(sequence);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001642
Liad Kaufmancf961e12015-08-13 19:16:08 +03001643 if (WARN_ON_ONCE(queue < mvm->first_agg_queue &&
1644 (!iwl_mvm_is_dqa_supported(mvm) ||
1645 (queue != IWL_MVM_DQA_BSS_CLIENT_QUEUE))))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001646 return;
1647
1648 if (WARN_ON_ONCE(tid == IWL_TID_NON_QOS))
1649 return;
1650
1651 iwl_mvm_rx_tx_cmd_agg_dbg(mvm, pkt);
1652
1653 rcu_read_lock();
1654
Sara Sharon13303c02016-04-10 15:51:54 +03001655 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001656
Sara Sharon13303c02016-04-10 15:51:54 +03001657 if (!WARN_ON_ONCE(!mvmsta)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001658 mvmsta->tid_data[tid].rate_n_flags =
1659 le32_to_cpu(tx_resp->initial_rate);
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +03001660 mvmsta->tid_data[tid].tx_time =
1661 le16_to_cpu(tx_resp->wireless_media_time);
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001662 mvmsta->tid_data[tid].lq_color =
1663 (tx_resp->tlc_info & TX_RES_RATE_TABLE_COLOR_MSK) >>
1664 TX_RES_RATE_TABLE_COLOR_POS;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001665 }
1666
1667 rcu_read_unlock();
1668}
1669
Johannes Berg04168412015-06-23 21:22:09 +02001670void iwl_mvm_rx_tx_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001671{
1672 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1673 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1674
1675 if (tx_resp->frame_count == 1)
1676 iwl_mvm_rx_tx_cmd_single(mvm, pkt);
1677 else
1678 iwl_mvm_rx_tx_cmd_agg(mvm, pkt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001679}
1680
Sara Sharonc46e7722016-07-17 14:24:55 +03001681static void iwl_mvm_tx_reclaim(struct iwl_mvm *mvm, int sta_id, int tid,
1682 int txq, int index,
1683 struct ieee80211_tx_info *ba_info, u32 rate)
Eyal Shapiraa7130442014-09-14 15:28:09 +03001684{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001685 struct sk_buff_head reclaimed_skbs;
1686 struct iwl_mvm_tid_data *tid_data;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001687 struct ieee80211_sta *sta;
1688 struct iwl_mvm_sta *mvmsta;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001689 struct sk_buff *skb;
Sara Sharonc46e7722016-07-17 14:24:55 +03001690 int freed;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001691
Eyal Shapira2cee4762015-01-16 11:09:30 +02001692 if (WARN_ONCE(sta_id >= IWL_MVM_STATION_COUNT ||
1693 tid >= IWL_MAX_TID_COUNT,
1694 "sta_id %d tid %d", sta_id, tid))
Johannes Berg04168412015-06-23 21:22:09 +02001695 return;
Eyal Shapira2cee4762015-01-16 11:09:30 +02001696
Johannes Berg8ca151b2013-01-24 14:25:36 +01001697 rcu_read_lock();
1698
1699 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
1700
1701 /* Reclaiming frames for a station that has been deleted ? */
1702 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta))) {
1703 rcu_read_unlock();
Johannes Berg04168412015-06-23 21:22:09 +02001704 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001705 }
1706
Johannes Berg5b577a92013-11-14 18:20:04 +01001707 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001708 tid_data = &mvmsta->tid_data[tid];
1709
Sara Sharonc46e7722016-07-17 14:24:55 +03001710 if (tid_data->txq_id != txq) {
Johannes Berg1f16ea22015-03-06 09:17:37 +01001711 IWL_ERR(mvm,
Sara Sharonc46e7722016-07-17 14:24:55 +03001712 "invalid BA notification: Q %d, tid %d\n",
1713 tid_data->txq_id, tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001714 rcu_read_unlock();
Johannes Berg04168412015-06-23 21:22:09 +02001715 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001716 }
1717
Johannes Berg2bfb5092012-12-27 21:43:48 +01001718 spin_lock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001719
1720 __skb_queue_head_init(&reclaimed_skbs);
1721
1722 /*
1723 * Release all TFDs before the SSN, i.e. all TFDs in front of
1724 * block-ack window (we assume that they've been successfully
1725 * transmitted ... if not, it's too late anyway).
1726 */
Sara Sharonc46e7722016-07-17 14:24:55 +03001727 iwl_trans_reclaim(mvm->trans, txq, index, &reclaimed_skbs);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001728
Sara Sharonc46e7722016-07-17 14:24:55 +03001729 tid_data->next_reclaimed = index;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001730
1731 iwl_mvm_check_ratid_empty(mvm, sta, tid);
1732
1733 freed = 0;
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001734
1735 /* pack lq color from tid_data along the reduced txp */
1736 ba_info->status.status_driver_data[0] =
1737 RS_DRV_DATA_PACK(tid_data->lq_color,
1738 ba_info->status.status_driver_data[0]);
Sara Sharonc46e7722016-07-17 14:24:55 +03001739 ba_info->status.status_driver_data[1] = (void *)(uintptr_t)rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001740
1741 skb_queue_walk(&reclaimed_skbs, skb) {
Johannes Berg143582c2014-02-25 10:37:15 +01001742 struct ieee80211_hdr *hdr = (void *)skb->data;
1743 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001744
1745 if (ieee80211_is_data_qos(hdr->frame_control))
1746 freed++;
1747 else
1748 WARN_ON_ONCE(1);
1749
Johannes Berg8ca151b2013-01-24 14:25:36 +01001750 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1751
Johannes Berg143582c2014-02-25 10:37:15 +01001752 memset(&info->status, 0, sizeof(info->status));
1753 /* Packet was transmitted successfully, failures come as single
1754 * frames because before failing a frame the firmware transmits
1755 * it without aggregation at least once.
1756 */
1757 info->flags |= IEEE80211_TX_STAT_ACK;
1758
Eyal Shapiraa7130442014-09-14 15:28:09 +03001759 /* this is the first skb we deliver in this batch */
1760 /* put the rate scaling data there */
Sara Sharonc46e7722016-07-17 14:24:55 +03001761 if (freed == 1) {
1762 info->flags |= IEEE80211_TX_STAT_AMPDU;
1763 memcpy(&info->status, &ba_info->status,
1764 sizeof(ba_info->status));
1765 iwl_mvm_hwrate_to_tx_status(rate, info);
1766 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001767 }
1768
Johannes Berg2bfb5092012-12-27 21:43:48 +01001769 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001770
Eyal Shapiraa7130442014-09-14 15:28:09 +03001771 /* We got a BA notif with 0 acked or scd_ssn didn't progress which is
1772 * possible (i.e. first MPDU in the aggregation wasn't acked)
1773 * Still it's important to update RS about sent vs. acked.
1774 */
1775 if (skb_queue_empty(&reclaimed_skbs)) {
Eyal Shapiraa7130442014-09-14 15:28:09 +03001776 struct ieee80211_chanctx_conf *chanctx_conf = NULL;
1777
1778 if (mvmsta->vif)
1779 chanctx_conf =
1780 rcu_dereference(mvmsta->vif->chanctx_conf);
1781
1782 if (WARN_ON_ONCE(!chanctx_conf))
1783 goto out;
1784
Sara Sharonc46e7722016-07-17 14:24:55 +03001785 ba_info->band = chanctx_conf->def.chan->band;
1786 iwl_mvm_hwrate_to_tx_status(rate, ba_info);
Eyal Shapiraa7130442014-09-14 15:28:09 +03001787
1788 IWL_DEBUG_TX_REPLY(mvm, "No reclaim. Update rs directly\n");
Sara Sharonc46e7722016-07-17 14:24:55 +03001789 iwl_mvm_rs_tx_status(mvm, sta, tid, ba_info, false);
Eyal Shapiraa7130442014-09-14 15:28:09 +03001790 }
1791
1792out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001793 rcu_read_unlock();
1794
1795 while (!skb_queue_empty(&reclaimed_skbs)) {
1796 skb = __skb_dequeue(&reclaimed_skbs);
Johannes Bergf14d6b32014-03-21 13:30:03 +01001797 ieee80211_tx_status(mvm->hw, skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001798 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001799}
1800
Sara Sharonc46e7722016-07-17 14:24:55 +03001801void iwl_mvm_rx_ba_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
1802{
1803 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1804 int sta_id, tid, txq, index;
1805 struct ieee80211_tx_info ba_info = {};
1806 struct iwl_mvm_ba_notif *ba_notif;
1807 struct iwl_mvm_tid_data *tid_data;
1808 struct iwl_mvm_sta *mvmsta;
1809
1810 if (iwl_mvm_has_new_tx_api(mvm)) {
1811 struct iwl_mvm_compressed_ba_notif *ba_res =
1812 (void *)pkt->data;
1813
1814 sta_id = ba_res->sta_id;
1815 ba_info.status.ampdu_ack_len = (u8)le16_to_cpu(ba_res->done);
1816 ba_info.status.ampdu_len = (u8)le16_to_cpu(ba_res->txed);
1817 ba_info.status.tx_time =
1818 (u16)le32_to_cpu(ba_res->wireless_time);
1819 ba_info.status.status_driver_data[0] =
1820 (void *)(uintptr_t)ba_res->reduced_txp;
1821
Sara Sharon9b1ea162017-02-19 17:00:58 +02001822 if (!le16_to_cpu(ba_res->tfd_cnt))
1823 goto out;
1824
Sara Sharonc46e7722016-07-17 14:24:55 +03001825 /*
1826 * TODO:
1827 * When supporting multi TID aggregations - we need to move
1828 * next_reclaimed to be per TXQ and not per TID or handle it
1829 * in a different way.
1830 * This will go together with SN and AddBA offload and cannot
1831 * be handled properly for now.
1832 */
Sara Sharonc65f4e02016-12-13 16:10:28 +02001833 WARN_ON(le16_to_cpu(ba_res->ra_tid_cnt) != 1);
1834 tid = ba_res->ra_tid[0].tid;
1835 if (tid == IWL_MGMT_TID)
1836 tid = IWL_MAX_TID_COUNT;
1837 iwl_mvm_tx_reclaim(mvm, sta_id, tid,
Sara Sharon12db2942017-01-17 14:28:21 +02001838 (int)(le16_to_cpu(ba_res->tfd[0].q_num)),
Sara Sharonc46e7722016-07-17 14:24:55 +03001839 le16_to_cpu(ba_res->tfd[0].tfd_index),
1840 &ba_info, le32_to_cpu(ba_res->tx_rate));
1841
Sara Sharon9b1ea162017-02-19 17:00:58 +02001842out:
Sara Sharonc46e7722016-07-17 14:24:55 +03001843 IWL_DEBUG_TX_REPLY(mvm,
1844 "BA_NOTIFICATION Received from sta_id = %d, flags %x, sent:%d, acked:%d\n",
1845 sta_id, le32_to_cpu(ba_res->flags),
1846 le16_to_cpu(ba_res->txed),
1847 le16_to_cpu(ba_res->done));
1848 return;
1849 }
1850
1851 ba_notif = (void *)pkt->data;
1852 sta_id = ba_notif->sta_id;
1853 tid = ba_notif->tid;
1854 /* "flow" corresponds to Tx queue */
1855 txq = le16_to_cpu(ba_notif->scd_flow);
1856 /* "ssn" is start of block-ack Tx window, corresponds to index
1857 * (in Tx queue's circular buffer) of first TFD/frame in window */
1858 index = le16_to_cpu(ba_notif->scd_ssn);
1859
1860 rcu_read_lock();
1861 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, sta_id);
1862 if (WARN_ON_ONCE(!mvmsta)) {
1863 rcu_read_unlock();
1864 return;
1865 }
1866
1867 tid_data = &mvmsta->tid_data[tid];
1868
1869 ba_info.status.ampdu_ack_len = ba_notif->txed_2_done;
1870 ba_info.status.ampdu_len = ba_notif->txed;
1871 ba_info.status.tx_time = tid_data->tx_time;
1872 ba_info.status.status_driver_data[0] =
1873 (void *)(uintptr_t)ba_notif->reduced_txp;
1874
1875 rcu_read_unlock();
1876
1877 iwl_mvm_tx_reclaim(mvm, sta_id, tid, txq, index, &ba_info,
1878 tid_data->rate_n_flags);
1879
1880 IWL_DEBUG_TX_REPLY(mvm,
1881 "BA_NOTIFICATION Received from %pM, sta_id = %d\n",
Johannes Berg3dc6dd92017-03-09 14:08:51 +01001882 ba_notif->sta_addr, ba_notif->sta_id);
Sara Sharonc46e7722016-07-17 14:24:55 +03001883
1884 IWL_DEBUG_TX_REPLY(mvm,
1885 "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = %d, scd_ssn = %d sent:%d, acked:%d\n",
1886 ba_notif->tid, le16_to_cpu(ba_notif->seq_ctl),
1887 le64_to_cpu(ba_notif->bitmap), txq, index,
1888 ba_notif->txed, ba_notif->txed_2_done);
1889
1890 IWL_DEBUG_TX_REPLY(mvm, "reduced txp from ba notif %d\n",
1891 ba_notif->reduced_txp);
1892}
1893
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02001894/*
1895 * Note that there are transports that buffer frames before they reach
1896 * the firmware. This means that after flush_tx_path is called, the
1897 * queue might not be empty. The race-free way to handle this is to:
1898 * 1) set the station as draining
1899 * 2) flush the Tx path
1900 * 3) wait for the transport queues to be empty
1901 */
Luca Coelho5888a402015-10-06 09:54:57 +03001902int iwl_mvm_flush_tx_path(struct iwl_mvm *mvm, u32 tfd_msk, u32 flags)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001903{
1904 int ret;
1905 struct iwl_tx_path_flush_cmd flush_cmd = {
1906 .queues_ctl = cpu_to_le32(tfd_msk),
1907 .flush_ctl = cpu_to_le16(DUMP_TX_FIFO_FLUSH),
1908 };
1909
Johannes Berg8ca151b2013-01-24 14:25:36 +01001910 ret = iwl_mvm_send_cmd_pdu(mvm, TXPATH_FLUSH, flags,
1911 sizeof(flush_cmd), &flush_cmd);
1912 if (ret)
1913 IWL_ERR(mvm, "Failed to send flush command (%d)\n", ret);
1914 return ret;
1915}
Sara Sharond49394a2017-03-05 13:01:08 +02001916
Johannes Berga9c50722017-04-19 11:14:28 +02001917int iwl_mvm_flush_sta(struct iwl_mvm *mvm, void *sta, bool internal, u32 flags)
Sara Sharond49394a2017-03-05 13:01:08 +02001918{
1919 u32 mask;
1920
Johannes Berga9c50722017-04-19 11:14:28 +02001921 if (internal) {
Sara Sharond49394a2017-03-05 13:01:08 +02001922 struct iwl_mvm_int_sta *int_sta = sta;
1923
1924 mask = int_sta->tfd_queue_msk;
1925 } else {
1926 struct iwl_mvm_sta *mvm_sta = sta;
1927
1928 mask = mvm_sta->tfd_queue_msk;
1929 }
1930
1931 return iwl_mvm_flush_tx_path(mvm, mask, flags);
1932}