]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/net/wireless/intel/iwlwifi/mvm/tx.c
iwlwifi: mvm: quietly accept non-sta assoc response frames
[mirror_ubuntu-bionic-kernel.git] / drivers / net / wireless / intel / iwlwifi / mvm / tx.c
CommitLineData
8ca151b5
JB
1/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
51368bf7 8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
4203263d 9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
9a3fcf91 10 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
8ca151b5
JB
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
410dc5aa 27 * in the file called COPYING.
8ca151b5
JB
28 *
29 * Contact Information:
cb2f8277 30 * Intel Linux Wireless <linuxwifi@intel.com>
8ca151b5
JB
31 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
51368bf7 35 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
4203263d 36 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
9a3fcf91 37 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
8ca151b5
JB
38 * 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>
a3713f8b 69#include <linux/tcp.h>
a6d5e32f 70#include <net/ip.h>
5e6a98dc 71#include <net/ipv6.h>
8ca151b5
JB
72
73#include "iwl-trans.h"
74#include "iwl-eeprom-parse.h"
75#include "mvm.h"
76#include "sta.h"
2f89a5d7 77#include "fw-dbg.h"
8ca151b5 78
4203263d
EG
79static 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
5e6a98dc
SS
103#define OPT_HDR(type, skb, off) \
104 (type *)(skb_network_header(skb) + (off))
105
b86dd74f
SS
106static u16 iwl_mvm_tx_csum(struct iwl_mvm *mvm, struct sk_buff *skb,
107 struct ieee80211_hdr *hdr,
108 struct ieee80211_tx_info *info)
5e6a98dc 109{
b86dd74f 110 u16 offload_assist = 0;
5e6a98dc
SS
111#if IS_ENABLED(CONFIG_INET)
112 u16 mh_len = ieee80211_hdrlen(hdr->frame_control);
5e6a98dc
SS
113 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)
b86dd74f 120 goto out;
5e6a98dc
SS
121
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);
b86dd74f 128 goto out;
5e6a98dc
SS
129 }
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)) {
ecf51424
SS
141 struct ipv6_opt_hdr *hp;
142
5e6a98dc
SS
143 /* only supported extension headers */
144 if (protocol != NEXTHDR_ROUTING &&
145 protocol != NEXTHDR_HOP &&
ecf51424 146 protocol != NEXTHDR_DEST) {
5e6a98dc 147 skb_checksum_help(skb);
b86dd74f 148 goto out;
5e6a98dc
SS
149 }
150
ecf51424
SS
151 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
152 protocol = hp->nexthdr;
153 off += ipv6_optlen(hp);
5e6a98dc
SS
154 }
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);
b86dd74f 162 goto out;
5e6a98dc
SS
163 }
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
b86dd74f 194out:
5e6a98dc 195#endif
b86dd74f 196 return offload_assist;
5e6a98dc
SS
197}
198
8ca151b5
JB
199/*
200 * Sets most of the Tx cmd's fields
201 */
6ce73e65
AN
202void 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)
8ca151b5
JB
205{
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;
b797e3fb 210 u8 ac;
8ca151b5
JB
211
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;
8ca151b5 219
8ca151b5
JB
220 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;
d8fe4844
SS
227 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
228 tx_cmd->offload_assist |=
229 cpu_to_le16(BIT(TX_CMD_OFFLD_AMSDU));
9b3b43d8
ES
230 } else if (ieee80211_is_back_req(fc)) {
231 struct ieee80211_bar *bar = (void *)skb->data;
232 u16 control = le16_to_cpu(bar->control);
4203263d 233 u16 ssn = le16_to_cpu(bar->start_seq_num);
9b3b43d8
ES
234
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);
4203263d
EG
240 iwl_mvm_bar_check_trigger(mvm, bar->ra, tx_cmd->tid_tspec,
241 ssn);
8ca151b5
JB
242 } 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
a9dc5060
ES
250 /* 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
b797e3fb
EG
256 tx_flags |= iwl_mvm_bt_coex_tx_prio(mvm, hdr, info, ac) <<
257 TX_CMD_FLG_BT_PRIO_POS;
258
8ca151b5
JB
259 if (ieee80211_is_mgmt(fc)) {
260 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
b084a356
AA
261 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);
8ca151b5 264 else
b084a356 265 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
8ca151b5
JB
266
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);
63f7535d 271 } else if (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO) {
b084a356 272 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
8ca151b5 273 } else {
b084a356 274 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
8ca151b5
JB
275 }
276
8ca151b5
JB
277 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
859d914c
JB
281 if (fw_has_capa(&mvm->fw->ucode_capa,
282 IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT) &&
f1daa00e
AO
283 ieee80211_action_contains_tpc(skb))
284 tx_flags |= TX_CMD_FLG_WRITE_TX_POWER;
285
8ca151b5 286 tx_cmd->tx_flags = cpu_to_le32(tx_flags);
05e5a7e5
JB
287 /* Total # bytes to be transmitted - PCIe code will adjust for A-MSDU */
288 tx_cmd->len = cpu_to_le16((u16)skb->len);
8ca151b5
JB
289 tx_cmd->life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
290 tx_cmd->sta_id = sta_id;
d8fe4844
SS
291
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));
5e6a98dc 296
b86dd74f
SS
297 tx_cmd->offload_assist |=
298 cpu_to_le16(iwl_mvm_tx_csum(mvm, skb, hdr, info));
8ca151b5
JB
299}
300
5ec295db
SS
301static 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
8ca151b5
JB
345/*
346 * Sets the fields in the Tx cmd that are rate related
347 */
6ce73e65
AN
348void 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)
8ca151b5 351{
8ca151b5
JB
352 /* 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 /*
e89044d7 367 * for data packets, rate info comes from the table inside the fw. This
1ffde699 368 * table is controlled by LINK_QUALITY commands
8ca151b5
JB
369 */
370
1ffde699 371 if (ieee80211_is_data(fc) && sta) {
8ca151b5
JB
372 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)) {
2edc6ec6
EG
376 tx_cmd->tx_flags |=
377 cpu_to_le32(TX_CMD_FLG_ACK | TX_CMD_FLG_BAR);
8ca151b5
JB
378 }
379
8ca151b5 380 mvm->mgmt_last_antenna_idx =
a0544272 381 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
8ca151b5 382 mvm->mgmt_last_antenna_idx);
34c8b24f 383
8ca151b5 384 /* Set the rate in the TX cmd */
5ec295db 385 tx_cmd->rate_n_flags = cpu_to_le32(iwl_mvm_get_tx_rate(mvm, info, sta));
8ca151b5
JB
386}
387
2a53d166
AB
388static 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
8ca151b5
JB
405/*
406 * Sets the fields in the Tx cmd that are crypto related
407 */
ca8c0f4b
JB
408static 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)
8ca151b5
JB
413{
414 struct ieee80211_key_conf *keyconf = info->control.hw_key;
ca8c0f4b
JB
415 u8 *crypto_hdr = skb_frag->data + hdrlen;
416 u64 pn;
8ca151b5
JB
417
418 switch (keyconf->cipher) {
419 case WLAN_CIPHER_SUITE_CCMP:
ca8c0f4b
JB
420 case WLAN_CIPHER_SUITE_CCMP_256:
421 iwl_mvm_set_tx_cmd_ccmp(info, tx_cmd);
2a53d166 422 iwl_mvm_set_tx_cmd_pn(info, crypto_hdr);
8ca151b5
JB
423 break;
424
425 case WLAN_CIPHER_SUITE_TKIP:
426 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
1ad4f639
EP
427 pn = atomic64_inc_return(&keyconf->tx_pn);
428 ieee80211_tkip_add_iv(crypto_hdr, keyconf, pn);
8ca151b5
JB
429 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;
2a53d166
AB
442 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 */
4dc6511f 450 tx_cmd->sec_ctl |= TX_CMD_SEC_GCMP | TX_CMD_SEC_KEY_FROM_TABLE;
2a53d166
AB
451 tx_cmd->key[0] = keyconf->hw_key_idx;
452 iwl_mvm_set_tx_cmd_pn(info, crypto_hdr);
453 break;
8ca151b5 454 default:
e36e5433 455 tx_cmd->sec_ctl |= TX_CMD_SEC_EXT;
8ca151b5
JB
456 }
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,
5c08b0f5
EG
464 struct ieee80211_tx_info *info, int hdrlen,
465 struct ieee80211_sta *sta, u8 sta_id)
8ca151b5
JB
466{
467 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
8ca151b5
JB
468 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
6f2f0194
EG
476 /* 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));
3961a61a 480 dev_cmd->hdr.cmd = TX_CMD;
c47de665
SS
481
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
f5bd90b7
SS
486 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
c47de665 493 /* padding is inserted later in transport */
c47de665
SS
494 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
8ca151b5
JB
520 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
521
522 if (info->control.hw_key)
ca8c0f4b 523 iwl_mvm_set_tx_cmd_crypto(mvm, info, tx_cmd, skb, hdrlen);
8ca151b5
JB
524
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
c47de665
SS
529 /* Copy MAC header from skb into command buffer */
530 memcpy(tx_cmd->hdr, hdr, hdrlen);
531
532out:
bd05a5bd
JB
533 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
5c08b0f5
EG
541 memset(&skb_info->status, 0, sizeof(skb_info->status));
542 memset(skb_info->driver_data, 0, sizeof(skb_info->driver_data));
8ca151b5 543
bd05a5bd 544 skb_info->driver_data[1] = cmd;
8ca151b5
JB
545}
546
de24f638
LK
547static int iwl_mvm_get_ctrl_vif_queue(struct iwl_mvm *mvm,
548 struct ieee80211_tx_info *info, __le16 fc)
549{
3ee0f0e2
SS
550 if (!iwl_mvm_is_dqa_supported(mvm))
551 return info->hw_queue;
552
553 switch (info->control.vif->type) {
554 case NL80211_IFTYPE_AP:
4d339989 555 case NL80211_IFTYPE_ADHOC:
3ee0f0e2 556 /*
e6835942
JB
557 * Handle legacy hostapd as well, where station will be added
558 * only just before sending the association response.
559 * Also take care of the case where we send a deauth to a
560 * station that we don't have, or similarly an association
561 * response (with non-success status) for a station we can't
562 * accept.
3ee0f0e2 563 */
d45cb20e 564 if (ieee80211_is_probe_resp(fc) || ieee80211_is_auth(fc) ||
e6835942 565 ieee80211_is_deauth(fc) || ieee80211_is_assoc_resp(fc))
49f71713 566 return mvm->probe_queue;
3ee0f0e2
SS
567 if (info->hw_queue == info->control.vif->cab_queue)
568 return info->hw_queue;
569
4d339989
LK
570 WARN_ONCE(info->control.vif->type != NL80211_IFTYPE_ADHOC,
571 "fc=0x%02x", le16_to_cpu(fc));
49f71713 572 return mvm->probe_queue;
3ee0f0e2
SS
573 case NL80211_IFTYPE_P2P_DEVICE:
574 if (ieee80211_is_mgmt(fc))
49f71713 575 return mvm->p2p_dev_queue;
3ee0f0e2
SS
576 if (info->hw_queue == info->control.vif->cab_queue)
577 return info->hw_queue;
de24f638 578
3ee0f0e2 579 WARN_ON_ONCE(1);
49f71713 580 return mvm->p2p_dev_queue;
3ee0f0e2
SS
581 default:
582 WARN_ONCE(1, "Not a ctrl vif, no available queue\n");
583 return -1;
584 }
de24f638
LK
585}
586
8ca151b5
JB
587int iwl_mvm_tx_skb_non_sta(struct iwl_mvm *mvm, struct sk_buff *skb)
588{
589 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
5c08b0f5
EG
590 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
591 struct ieee80211_tx_info info;
8ca151b5 592 struct iwl_device_cmd *dev_cmd;
8ca151b5 593 u8 sta_id;
ca8c0f4b 594 int hdrlen = ieee80211_hdrlen(hdr->frame_control);
de24f638 595 int queue;
8ca151b5 596
54c5ef2e
BL
597 /* IWL_MVM_OFFCHANNEL_QUEUE is used for ROC packets that can be used
598 * in 2 different types of vifs, P2P & STATION. P2P uses the offchannel
599 * queue. STATION (HS2.0) uses the auxiliary context of the FW,
600 * and hence needs to be sent on the aux queue
601 */
45b957e3 602 if (skb_info->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
54c5ef2e 603 skb_info->control.vif->type == NL80211_IFTYPE_STATION)
45b957e3 604 skb_info->hw_queue = mvm->aux_queue;
54c5ef2e 605
5c08b0f5
EG
606 memcpy(&info, skb->cb, sizeof(info));
607
608 if (WARN_ON_ONCE(info.flags & IEEE80211_TX_CTL_AMPDU))
8ca151b5
JB
609 return -1;
610
5c08b0f5
EG
611 if (WARN_ON_ONCE(info.flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM &&
612 (!info.control.vif ||
613 info.hw_queue != info.control.vif->cab_queue)))
8ca151b5
JB
614 return -1;
615
de24f638
LK
616 queue = info.hw_queue;
617
8ca151b5 618 /*
d0ab08d0 619 * If the interface on which the frame is sent is the P2P_DEVICE
8ca151b5 620 * or an AP/GO interface use the broadcast station associated
d0ab08d0
IP
621 * with it; otherwise if the interface is a managed interface
622 * use the AP station associated with it for multicast traffic
623 * (this is not possible for unicast packets as a TLDS discovery
624 * response are sent without a station entry); otherwise use the
625 * AUX station.
6574dc94
BL
626 * In DQA mode, if vif is of type STATION and frames are not multicast
627 * or offchannel, they should be sent from the BSS queue.
628 * For example, TDLS setup frames should be sent on this queue,
629 * as they go through the AP.
8ca151b5 630 */
d0ab08d0 631 sta_id = mvm->aux_sta.sta_id;
5c08b0f5 632 if (info.control.vif) {
8ca151b5 633 struct iwl_mvm_vif *mvmvif =
5c08b0f5 634 iwl_mvm_vif_from_mac80211(info.control.vif);
d0ab08d0 635
5c08b0f5 636 if (info.control.vif->type == NL80211_IFTYPE_P2P_DEVICE ||
4d339989
LK
637 info.control.vif->type == NL80211_IFTYPE_AP ||
638 info.control.vif->type == NL80211_IFTYPE_ADHOC) {
d0ab08d0 639 sta_id = mvmvif->bcast_sta.sta_id;
de24f638
LK
640 queue = iwl_mvm_get_ctrl_vif_queue(mvm, &info,
641 hdr->frame_control);
3ee0f0e2
SS
642 if (queue < 0)
643 return -1;
644
e2af3fab
SS
645 if (queue == info.control.vif->cab_queue)
646 queue = mvmvif->cab_queue;
de24f638
LK
647 } else if (info.control.vif->type == NL80211_IFTYPE_STATION &&
648 is_multicast_ether_addr(hdr->addr1)) {
d0ab08d0
IP
649 u8 ap_sta_id = ACCESS_ONCE(mvmvif->ap_sta_id);
650
0ae98812 651 if (ap_sta_id != IWL_MVM_INVALID_STA)
d0ab08d0 652 sta_id = ap_sta_id;
e3118ad7 653 } else if (iwl_mvm_is_dqa_supported(mvm) &&
6574dc94
BL
654 info.control.vif->type == NL80211_IFTYPE_STATION &&
655 queue != mvm->aux_queue) {
e3118ad7 656 queue = IWL_MVM_DQA_BSS_CLIENT_QUEUE;
6d759b02
LK
657 } else if (iwl_mvm_is_dqa_supported(mvm) &&
658 info.control.vif->type == NL80211_IFTYPE_MONITOR) {
659 queue = mvm->aux_queue;
d0ab08d0 660 }
8ca151b5
JB
661 }
662
de24f638 663 IWL_DEBUG_TX(mvm, "station Id %d, queue=%d\n", sta_id, queue);
8ca151b5 664
5c08b0f5 665 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, &info, hdrlen, NULL, sta_id);
8ca151b5
JB
666 if (!dev_cmd)
667 return -1;
668
bd05a5bd
JB
669 /* From now on, we cannot access info->control */
670 iwl_mvm_skb_prepare_status(skb, dev_cmd);
671
de24f638 672 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, queue)) {
8ca151b5
JB
673 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
674 return -1;
675 }
676
fb896c44
LK
677 /*
678 * Increase the pending frames counter, so that later when a reply comes
679 * in and the counter is decreased - we don't start getting negative
680 * values.
681 * Note that we don't need to make sure it isn't agg'd, since we're
682 * TXing non-sta
9a3fcf91 683 * For DQA mode - we shouldn't increase it though
fb896c44 684 */
9a3fcf91
SS
685 if (!iwl_mvm_is_dqa_supported(mvm))
686 atomic_inc(&mvm->pending_frames[sta_id]);
fb896c44 687
8ca151b5
JB
688 return 0;
689}
690
a6d5e32f
EG
691#ifdef CONFIG_INET
692static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
5c08b0f5 693 struct ieee80211_tx_info *info,
a3713f8b
EG
694 struct ieee80211_sta *sta,
695 struct sk_buff_head *mpdus_skb)
696{
bb81bb68 697 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
a6d5e32f
EG
698 struct ieee80211_hdr *hdr = (void *)skb->data;
699 unsigned int mss = skb_shinfo(skb)->gso_size;
a3713f8b 700 struct sk_buff *tmp, *next;
a6d5e32f 701 char cb[sizeof(skb->cb)];
bb81bb68 702 unsigned int num_subframes, tcp_payload_len, subf_len, max_amsdu_len;
a6d5e32f
EG
703 bool ipv4 = (skb->protocol == htons(ETH_P_IP));
704 u16 ip_base_id = ipv4 ? ntohs(ip_hdr(skb)->id) : 0;
05e5a7e5 705 u16 snap_ip_tcp, pad, i = 0;
9e7dce28 706 unsigned int dbg_max_amsdu_len;
5e6a98dc 707 netdev_features_t netdev_features = NETIF_F_CSUM_MASK | NETIF_F_SG;
50b0213f 708 u8 *qc, tid, txf;
a6d5e32f
EG
709
710 snap_ip_tcp = 8 + skb_transport_header(skb) - skb_network_header(skb) +
711 tcp_hdrlen(skb);
712
bb81bb68
EG
713 qc = ieee80211_get_qos_ctl(hdr);
714 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
715 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
716 return -EINVAL;
717
fa820d69
EG
718 dbg_max_amsdu_len = ACCESS_ONCE(mvm->max_amsdu_len);
719
a6d5e32f 720 if (!sta->max_amsdu_len ||
04e3a5da 721 !ieee80211_is_data_qos(hdr->frame_control) ||
fa820d69 722 (!mvmsta->tlc_amsdu && !dbg_max_amsdu_len)) {
a6d5e32f
EG
723 num_subframes = 1;
724 pad = 0;
725 goto segment;
726 }
727
5e6a98dc
SS
728 /*
729 * Do not build AMSDU for IPv6 with extension headers.
730 * ask stack to segment and checkum the generated MPDUs for us.
731 */
732 if (skb->protocol == htons(ETH_P_IPV6) &&
733 ((struct ipv6hdr *)skb_network_header(skb))->nexthdr !=
734 IPPROTO_TCP) {
735 num_subframes = 1;
736 pad = 0;
737 netdev_features &= ~NETIF_F_CSUM_MASK;
738 goto segment;
739 }
740
bb81bb68
EG
741 /*
742 * No need to lock amsdu_in_ampdu_allowed since it can't be modified
743 * during an BA session.
744 */
745 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
746 !mvmsta->tid_data[tid].amsdu_in_ampdu_allowed) {
a6d5e32f
EG
747 num_subframes = 1;
748 pad = 0;
749 goto segment;
750 }
751
bb81bb68 752 max_amsdu_len = sta->max_amsdu_len;
50b0213f
EG
753
754 /* the Tx FIFO to which this A-MSDU will be routed */
755 txf = iwl_mvm_ac_to_tx_fifo[tid_to_mac80211_ac[tid]];
756
757 /*
758 * Don't send an AMSDU that will be longer than the TXF.
759 * Add a security margin of 256 for the TX command + headers.
760 * We also want to have the start of the next packet inside the
761 * fifo to be able to send bursts.
762 */
763 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
fa1f2b61 764 mvm->smem_cfg.lmac[0].txfifo_size[txf] - 256);
50b0213f 765
fa820d69 766 if (unlikely(dbg_max_amsdu_len))
9e7dce28
EG
767 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
768 dbg_max_amsdu_len);
bb81bb68
EG
769
770 /*
771 * Limit A-MSDU in A-MPDU to 4095 bytes when VHT is not
772 * supported. This is a spec requirement (IEEE 802.11-2015
773 * section 8.7.3 NOTE 3).
774 */
775 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
776 !sta->vht_cap.vht_supported)
777 max_amsdu_len = min_t(unsigned int, max_amsdu_len, 4095);
778
a6d5e32f
EG
779 /* Sub frame header + SNAP + IP header + TCP header + MSS */
780 subf_len = sizeof(struct ethhdr) + snap_ip_tcp + mss;
781 pad = (4 - subf_len) & 0x3;
782
783 /*
784 * If we have N subframes in the A-MSDU, then the A-MSDU's size is
785 * N * subf_len + (N - 1) * pad.
786 */
bb81bb68
EG
787 num_subframes = (max_amsdu_len + pad) / (subf_len + pad);
788 if (num_subframes > 1)
a6d5e32f 789 *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
a6d5e32f
EG
790
791 tcp_payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
792 tcp_hdrlen(skb) + skb->data_len;
793
794 /*
795 * Make sure we have enough TBs for the A-MSDU:
796 * 2 for each subframe
797 * 1 more for each fragment
798 * 1 more for the potential data in the header
799 */
800 num_subframes =
801 min_t(unsigned int, num_subframes,
802 (mvm->trans->max_skb_frags - 1 -
803 skb_shinfo(skb)->nr_frags) / 2);
804
805 /* This skb fits in one single A-MSDU */
806 if (num_subframes * mss >= tcp_payload_len) {
a6d5e32f
EG
807 __skb_queue_tail(mpdus_skb, skb);
808 return 0;
809 }
a3713f8b 810
a6d5e32f
EG
811 /*
812 * Trick the segmentation function to make it
813 * create SKBs that can fit into one A-MSDU.
814 */
815segment:
816 skb_shinfo(skb)->gso_size = num_subframes * mss;
817 memcpy(cb, skb->cb, sizeof(cb));
818
5e6a98dc 819 next = skb_gso_segment(skb, netdev_features);
a6d5e32f
EG
820 skb_shinfo(skb)->gso_size = mss;
821 if (WARN_ON_ONCE(IS_ERR(next)))
a3713f8b
EG
822 return -EINVAL;
823 else if (next)
a6d5e32f 824 consume_skb(skb);
a3713f8b
EG
825
826 while (next) {
827 tmp = next;
828 next = tmp->next;
a6d5e32f 829
a3713f8b 830 memcpy(tmp->cb, cb, sizeof(tmp->cb));
a6d5e32f
EG
831 /*
832 * Compute the length of all the data added for the A-MSDU.
833 * This will be used to compute the length to write in the TX
834 * command. We have: SNAP + IP + TCP for n -1 subframes and
835 * ETH header for n subframes.
836 */
837 tcp_payload_len = skb_tail_pointer(tmp) -
838 skb_transport_header(tmp) -
839 tcp_hdrlen(tmp) + tmp->data_len;
840
841 if (ipv4)
842 ip_hdr(tmp)->id = htons(ip_base_id + i * num_subframes);
843
844 if (tcp_payload_len > mss) {
a6d5e32f
EG
845 skb_shinfo(tmp)->gso_size = mss;
846 } else {
bb81bb68 847 qc = ieee80211_get_qos_ctl((void *)tmp->data);
a6d5e32f
EG
848
849 if (ipv4)
850 ip_send_check(ip_hdr(tmp));
851 *qc &= ~IEEE80211_QOS_CTL_A_MSDU_PRESENT;
852 skb_shinfo(tmp)->gso_size = 0;
853 }
a3713f8b
EG
854
855 tmp->prev = NULL;
856 tmp->next = NULL;
857
858 __skb_queue_tail(mpdus_skb, tmp);
a6d5e32f 859 i++;
a3713f8b
EG
860 }
861
862 return 0;
863}
a6d5e32f
EG
864#else /* CONFIG_INET */
865static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
5c08b0f5 866 struct ieee80211_tx_info *info,
a6d5e32f
EG
867 struct ieee80211_sta *sta,
868 struct sk_buff_head *mpdus_skb)
869{
870 /* Impossible to get TSO with CONFIG_INET */
871 WARN_ON(1);
872
873 return -1;
874}
875#endif
a3713f8b 876
24afba76
LK
877static void iwl_mvm_tx_add_stream(struct iwl_mvm *mvm,
878 struct iwl_mvm_sta *mvm_sta, u8 tid,
879 struct sk_buff *skb)
880{
881 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
882 u8 mac_queue = info->hw_queue;
883 struct sk_buff_head *deferred_tx_frames;
884
885 lockdep_assert_held(&mvm_sta->lock);
886
887 mvm_sta->deferred_traffic_tid_map |= BIT(tid);
888 set_bit(mvm_sta->sta_id, mvm->sta_deferred_frames);
889
890 deferred_tx_frames = &mvm_sta->tid_data[tid].deferred_tx_frames;
891
892 skb_queue_tail(deferred_tx_frames, skb);
893
894 /*
895 * The first deferred frame should've stopped the MAC queues, so we
896 * should never get a second deferred frame for the RA/TID.
897 */
898 if (!WARN(skb_queue_len(deferred_tx_frames) != 1,
899 "RATID %d/%d has %d deferred frames\n", mvm_sta->sta_id, tid,
900 skb_queue_len(deferred_tx_frames))) {
901 iwl_mvm_stop_mac_queues(mvm, BIT(mac_queue));
902 schedule_work(&mvm->add_stream_wk);
903 }
904}
905
9f9af3d7
LK
906/* Check if there are any timed-out TIDs on a given shared TXQ */
907static bool iwl_mvm_txq_should_update(struct iwl_mvm *mvm, int txq_id)
908{
909 unsigned long queue_tid_bitmap = mvm->queue_info[txq_id].tid_bitmap;
910 unsigned long now = jiffies;
911 int tid;
912
bb49701b
SS
913 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
914 return false;
915
9f9af3d7
LK
916 for_each_set_bit(tid, &queue_tid_bitmap, IWL_MAX_TID_COUNT + 1) {
917 if (time_before(mvm->queue_info[txq_id].last_frame_time[tid] +
918 IWL_MVM_DQA_QUEUE_TIMEOUT, now))
919 return true;
920 }
921
922 return false;
923}
924
8ca151b5
JB
925/*
926 * Sets the fields in the Tx cmd that are crypto related
927 */
a3713f8b 928static int iwl_mvm_tx_mpdu(struct iwl_mvm *mvm, struct sk_buff *skb,
5c08b0f5 929 struct ieee80211_tx_info *info,
a3713f8b 930 struct ieee80211_sta *sta)
8ca151b5
JB
931{
932 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
8ca151b5
JB
933 struct iwl_mvm_sta *mvmsta;
934 struct iwl_device_cmd *dev_cmd;
8ca151b5
JB
935 __le16 fc;
936 u16 seq_number = 0;
937 u8 tid = IWL_MAX_TID_COUNT;
6862fcee 938 u16 txq_id = info->hw_queue;
7ec54716 939 bool is_ampdu = false;
ca8c0f4b 940 int hdrlen;
8ca151b5 941
5b577a90 942 mvmsta = iwl_mvm_sta_from_mac80211(sta);
8ca151b5 943 fc = hdr->frame_control;
ca8c0f4b 944 hdrlen = ieee80211_hdrlen(fc);
8ca151b5
JB
945
946 if (WARN_ON_ONCE(!mvmsta))
947 return -1;
948
0ae98812 949 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_INVALID_STA))
8ca151b5
JB
950 return -1;
951
5c08b0f5
EG
952 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, info, hdrlen,
953 sta, mvmsta->sta_id);
8ca151b5
JB
954 if (!dev_cmd)
955 goto drop;
956
3e56eadf
JB
957 /*
958 * we handle that entirely ourselves -- for uAPSD the firmware
959 * will always send a notification, and for PS-Poll responses
960 * we'll notify mac80211 when getting frame status
961 */
962 info->flags &= ~IEEE80211_TX_STATUS_EOSP;
963
8ca151b5
JB
964 spin_lock(&mvmsta->lock);
965
0d7f1b99
SS
966 /* nullfunc frames should go to the MGMT queue regardless of QOS,
967 * the condition of !ieee80211_is_qos_nullfunc(fc) keeps the default
968 * assignment of MGMT TID
969 */
8ca151b5
JB
970 if (ieee80211_is_data_qos(fc) && !ieee80211_is_qos_nullfunc(fc)) {
971 u8 *qc = NULL;
972 qc = ieee80211_get_qos_ctl(hdr);
973 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
974 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
975 goto drop_unlock_sta;
976
8ca151b5 977 is_ampdu = info->flags & IEEE80211_TX_CTL_AMPDU;
0d7f1b99
SS
978 if (WARN_ON_ONCE(is_ampdu &&
979 mvmsta->tid_data[tid].state != IWL_AGG_ON))
980 goto drop_unlock_sta;
c47de665
SS
981
982 seq_number = mvmsta->tid_data[tid].seq_number;
983 seq_number &= IEEE80211_SCTL_SEQ;
984
985 if (!iwl_mvm_has_new_tx_api(mvm)) {
986 struct iwl_tx_cmd *tx_cmd = (void *)dev_cmd->payload;
987
988 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
989 hdr->seq_ctrl |= cpu_to_le16(seq_number);
990 /* update the tx_cmd hdr as it was already copied */
991 tx_cmd->hdr->seq_ctrl = hdr->seq_ctrl;
992 }
8ca151b5
JB
993 }
994
0d7f1b99 995 if (iwl_mvm_is_dqa_supported(mvm) || is_ampdu)
9794c64f 996 txq_id = mvmsta->tid_data[tid].txq_id;
c47de665 997
e3118ad7 998 if (sta->tdls && !iwl_mvm_is_dqa_supported(mvm)) {
a0f6bf2a
AN
999 /* default to TID 0 for non-QoS packets */
1000 u8 tdls_tid = tid == IWL_MAX_TID_COUNT ? 0 : tid;
1001
1002 txq_id = mvmsta->hw_queue[tid_to_mac80211_ac[tdls_tid]];
1003 }
1004
0d7f1b99 1005 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM);
8ca151b5 1006
9794c64f 1007 /* Check if TXQ needs to be allocated or re-activated */
6862fcee 1008 if (unlikely(txq_id == IWL_MVM_INVALID_QUEUE ||
9794c64f
LK
1009 !mvmsta->tid_data[tid].is_tid_active) &&
1010 iwl_mvm_is_dqa_supported(mvm)) {
1011 /* If TXQ needs to be allocated... */
6862fcee 1012 if (txq_id == IWL_MVM_INVALID_QUEUE) {
24afba76
LK
1013 iwl_mvm_tx_add_stream(mvm, mvmsta, tid, skb);
1014
1015 /*
1016 * The frame is now deferred, and the worker scheduled
1017 * will re-allocate it, so we can free it for now.
1018 */
1019 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
1020 spin_unlock(&mvmsta->lock);
1021 return 0;
1022 }
1023
34e10860
SS
1024 /* queue should always be active in new TX path */
1025 WARN_ON(iwl_mvm_has_new_tx_api(mvm));
1026
9794c64f
LK
1027 /* If we are here - TXQ exists and needs to be re-activated */
1028 spin_lock(&mvm->queue_info_lock);
1029 mvm->queue_info[txq_id].status = IWL_MVM_QUEUE_READY;
1030 mvmsta->tid_data[tid].is_tid_active = true;
1031 spin_unlock(&mvm->queue_info_lock);
1032
1033 IWL_DEBUG_TX_QUEUES(mvm, "Re-activating queue %d for TX\n",
1034 txq_id);
24afba76
LK
1035 }
1036
34e10860 1037 if (iwl_mvm_is_dqa_supported(mvm) && !iwl_mvm_has_new_tx_api(mvm)) {
9f9af3d7
LK
1038 /* Keep track of the time of the last frame for this RA/TID */
1039 mvm->queue_info[txq_id].last_frame_time[tid] = jiffies;
1040
1041 /*
1042 * If we have timed-out TIDs - schedule the worker that will
1043 * reconfig the queues and update them
1044 *
1045 * Note that the mvm->queue_info_lock isn't being taken here in
1046 * order to not serialize the TX flow. This isn't dangerous
1047 * because scheduling mvm->add_stream_wk can't ruin the state,
1048 * and if we DON'T schedule it due to some race condition then
1049 * next TX we get here we will.
1050 */
1051 if (unlikely(mvm->queue_info[txq_id].status ==
1052 IWL_MVM_QUEUE_SHARED &&
1053 iwl_mvm_txq_should_update(mvm, txq_id)))
1054 schedule_work(&mvm->add_stream_wk);
1055 }
9794c64f 1056
8ca151b5 1057 IWL_DEBUG_TX(mvm, "TX to [%d|%d] Q:%d - seq: 0x%x\n", mvmsta->sta_id,
cf9d1188 1058 tid, txq_id, IEEE80211_SEQ_TO_SN(seq_number));
8ca151b5 1059
bd05a5bd
JB
1060 /* From now on, we cannot access info->control */
1061 iwl_mvm_skb_prepare_status(skb, dev_cmd);
1062
8ca151b5
JB
1063 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, txq_id))
1064 goto drop_unlock_sta;
1065
7ec54716 1066 if (tid < IWL_MAX_TID_COUNT && !ieee80211_has_morefrags(fc))
cf9d1188 1067 mvmsta->tid_data[tid].seq_number = seq_number + 0x10;
8ca151b5
JB
1068
1069 spin_unlock(&mvmsta->lock);
1070
9a3fcf91
SS
1071 /* Increase pending frames count if this isn't AMPDU or DQA queue */
1072 if (!iwl_mvm_is_dqa_supported(mvm) && !is_ampdu)
e3d4bc8c 1073 atomic_inc(&mvm->pending_frames[mvmsta->sta_id]);
8ca151b5
JB
1074
1075 return 0;
1076
1077drop_unlock_sta:
1078 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
1079 spin_unlock(&mvmsta->lock);
1080drop:
1081 return -1;
1082}
1083
a3713f8b
EG
1084int iwl_mvm_tx_skb(struct iwl_mvm *mvm, struct sk_buff *skb,
1085 struct ieee80211_sta *sta)
1086{
1087 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
5c08b0f5 1088 struct ieee80211_tx_info info;
a3713f8b
EG
1089 struct sk_buff_head mpdus_skbs;
1090 unsigned int payload_len;
1091 int ret;
1092
1093 if (WARN_ON_ONCE(!mvmsta))
1094 return -1;
1095
0ae98812 1096 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_INVALID_STA))
a3713f8b
EG
1097 return -1;
1098
5c08b0f5
EG
1099 memcpy(&info, skb->cb, sizeof(info));
1100
a3713f8b 1101 if (!skb_is_gso(skb))
5c08b0f5 1102 return iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
a3713f8b
EG
1103
1104 payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
1105 tcp_hdrlen(skb) + skb->data_len;
1106
1107 if (payload_len <= skb_shinfo(skb)->gso_size)
5c08b0f5 1108 return iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
a3713f8b
EG
1109
1110 __skb_queue_head_init(&mpdus_skbs);
1111
5c08b0f5 1112 ret = iwl_mvm_tx_tso(mvm, skb, &info, sta, &mpdus_skbs);
a3713f8b
EG
1113 if (ret)
1114 return ret;
1115
1116 if (WARN_ON(skb_queue_empty(&mpdus_skbs)))
1117 return ret;
1118
1119 while (!skb_queue_empty(&mpdus_skbs)) {
a6d5e32f 1120 skb = __skb_dequeue(&mpdus_skbs);
a3713f8b 1121
5c08b0f5 1122 ret = iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
a3713f8b
EG
1123 if (ret) {
1124 __skb_queue_purge(&mpdus_skbs);
1125 return ret;
1126 }
1127 }
1128
1129 return 0;
1130}
1131
8ca151b5
JB
1132static void iwl_mvm_check_ratid_empty(struct iwl_mvm *mvm,
1133 struct ieee80211_sta *sta, u8 tid)
1134{
5b577a90 1135 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
8ca151b5
JB
1136 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
1137 struct ieee80211_vif *vif = mvmsta->vif;
dd32162d 1138 u16 normalized_ssn;
8ca151b5
JB
1139
1140 lockdep_assert_held(&mvmsta->lock);
1141
3e56eadf 1142 if ((tid_data->state == IWL_AGG_ON ||
9a3fcf91
SS
1143 tid_data->state == IWL_EMPTYING_HW_QUEUE_DELBA ||
1144 iwl_mvm_is_dqa_supported(mvm)) &&
dd32162d 1145 iwl_mvm_tid_queued(mvm, tid_data) == 0) {
3e56eadf 1146 /*
9a3fcf91
SS
1147 * Now that this aggregation or DQA queue is empty tell
1148 * mac80211 so it knows we no longer have frames buffered for
1149 * the station on this TID (for the TIM bitmap calculation.)
3e56eadf
JB
1150 */
1151 ieee80211_sta_set_buffered(sta, tid, false);
1152 }
1153
dd32162d
LK
1154 /*
1155 * In A000 HW, the next_reclaimed index is only 8 bit, so we'll need
1156 * to align the wrap around of ssn so we compare relevant values.
1157 */
1158 normalized_ssn = tid_data->ssn;
1159 if (mvm->trans->cfg->gen2)
1160 normalized_ssn &= 0xff;
1161
1162 if (normalized_ssn != tid_data->next_reclaimed)
8ca151b5
JB
1163 return;
1164
1165 switch (tid_data->state) {
1166 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1167 IWL_DEBUG_TX_QUEUES(mvm,
1168 "Can continue addBA flow ssn = next_recl = %d\n",
1169 tid_data->next_reclaimed);
1170 tid_data->state = IWL_AGG_STARTING;
1171 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1172 break;
1173
1174 case IWL_EMPTYING_HW_QUEUE_DELBA:
1175 IWL_DEBUG_TX_QUEUES(mvm,
1176 "Can continue DELBA flow ssn = next_recl = %d\n",
1177 tid_data->next_reclaimed);
15985fba
LK
1178 if (!iwl_mvm_is_dqa_supported(mvm)) {
1179 u8 mac80211_ac = tid_to_mac80211_ac[tid];
1180
1181 iwl_mvm_disable_txq(mvm, tid_data->txq_id,
1182 vif->hw_queue[mac80211_ac], tid,
1183 CMD_ASYNC);
1184 }
8ca151b5 1185 tid_data->state = IWL_AGG_OFF;
8ca151b5
JB
1186 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1187 break;
1188
1189 default:
1190 break;
1191 }
1192}
1193
1194#ifdef CONFIG_IWLWIFI_DEBUG
1195const char *iwl_mvm_get_tx_fail_reason(u32 status)
1196{
1197#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
1198#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
1199
1200 switch (status & TX_STATUS_MSK) {
1201 case TX_STATUS_SUCCESS:
1202 return "SUCCESS";
1203 TX_STATUS_POSTPONE(DELAY);
1204 TX_STATUS_POSTPONE(FEW_BYTES);
1205 TX_STATUS_POSTPONE(BT_PRIO);
1206 TX_STATUS_POSTPONE(QUIET_PERIOD);
1207 TX_STATUS_POSTPONE(CALC_TTAK);
1208 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
1209 TX_STATUS_FAIL(SHORT_LIMIT);
1210 TX_STATUS_FAIL(LONG_LIMIT);
1211 TX_STATUS_FAIL(UNDERRUN);
1212 TX_STATUS_FAIL(DRAIN_FLOW);
1213 TX_STATUS_FAIL(RFKILL_FLUSH);
1214 TX_STATUS_FAIL(LIFE_EXPIRE);
1215 TX_STATUS_FAIL(DEST_PS);
1216 TX_STATUS_FAIL(HOST_ABORTED);
1217 TX_STATUS_FAIL(BT_RETRY);
1218 TX_STATUS_FAIL(STA_INVALID);
1219 TX_STATUS_FAIL(FRAG_DROPPED);
1220 TX_STATUS_FAIL(TID_DISABLE);
1221 TX_STATUS_FAIL(FIFO_FLUSHED);
1222 TX_STATUS_FAIL(SMALL_CF_POLL);
1223 TX_STATUS_FAIL(FW_DROP);
1224 TX_STATUS_FAIL(STA_COLOR_MISMATCH);
1225 }
1226
1227 return "UNKNOWN";
1228
1229#undef TX_STATUS_FAIL
1230#undef TX_STATUS_POSTPONE
1231}
1232#endif /* CONFIG_IWLWIFI_DEBUG */
1233
d310e405 1234void iwl_mvm_hwrate_to_tx_rate(u32 rate_n_flags,
57fbcce3 1235 enum nl80211_band band,
d310e405 1236 struct ieee80211_tx_rate *r)
8ca151b5 1237{
8ca151b5
JB
1238 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
1239 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
1240 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
1241 case RATE_MCS_CHAN_WIDTH_20:
1242 break;
1243 case RATE_MCS_CHAN_WIDTH_40:
1244 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
1245 break;
1246 case RATE_MCS_CHAN_WIDTH_80:
1247 r->flags |= IEEE80211_TX_RC_80_MHZ_WIDTH;
1248 break;
1249 case RATE_MCS_CHAN_WIDTH_160:
1250 r->flags |= IEEE80211_TX_RC_160_MHZ_WIDTH;
1251 break;
1252 }
1253 if (rate_n_flags & RATE_MCS_SGI_MSK)
1254 r->flags |= IEEE80211_TX_RC_SHORT_GI;
1255 if (rate_n_flags & RATE_MCS_HT_MSK) {
1256 r->flags |= IEEE80211_TX_RC_MCS;
1257 r->idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
1258 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
1259 ieee80211_rate_set_vht(
1260 r, rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK,
1261 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
1262 RATE_VHT_MCS_NSS_POS) + 1);
1263 r->flags |= IEEE80211_TX_RC_VHT_MCS;
1264 } else {
1265 r->idx = iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
d310e405 1266 band);
8ca151b5
JB
1267 }
1268}
1269
d310e405
ES
1270/**
1271 * translate ucode response to mac80211 tx status control values
1272 */
1273static void iwl_mvm_hwrate_to_tx_status(u32 rate_n_flags,
1274 struct ieee80211_tx_info *info)
1275{
1276 struct ieee80211_tx_rate *r = &info->status.rates[0];
1277
1278 info->status.antenna =
1279 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
1280 iwl_mvm_hwrate_to_tx_rate(rate_n_flags, info->band, r);
1281}
1282
25657fec
GBA
1283static void iwl_mvm_tx_status_check_trigger(struct iwl_mvm *mvm,
1284 u32 status)
1285{
1286 struct iwl_fw_dbg_trigger_tlv *trig;
1287 struct iwl_fw_dbg_trigger_tx_status *status_trig;
1288 int i;
1289
1290 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TX_STATUS))
1291 return;
1292
1293 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TX_STATUS);
1294 status_trig = (void *)trig->data;
1295
1296 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
1297 return;
1298
1299 for (i = 0; i < ARRAY_SIZE(status_trig->statuses); i++) {
1300 /* don't collect on status 0 */
1301 if (!status_trig->statuses[i].status)
1302 break;
1303
1304 if (status_trig->statuses[i].status != (status & TX_STATUS_MSK))
1305 continue;
1306
1307 iwl_mvm_fw_dbg_collect_trig(mvm, trig,
1308 "Tx status %d was received",
1309 status & TX_STATUS_MSK);
1310 break;
1311 }
1312}
1313
12db294c
SS
1314/**
1315 * iwl_mvm_get_scd_ssn - returns the SSN of the SCD
1316 * @tx_resp: the Tx response from the fw (agg or non-agg)
1317 *
1318 * When the fw sends an AMPDU, it fetches the MPDUs one after the other. Since
1319 * it can't know that everything will go well until the end of the AMPDU, it
1320 * can't know in advance the number of MPDUs that will be sent in the current
1321 * batch. This is why it writes the agg Tx response while it fetches the MPDUs.
1322 * Hence, it can't know in advance what the SSN of the SCD will be at the end
1323 * of the batch. This is why the SSN of the SCD is written at the end of the
1324 * whole struct at a variable offset. This function knows how to cope with the
1325 * variable offset and returns the SSN of the SCD.
1326 */
1327static inline u32 iwl_mvm_get_scd_ssn(struct iwl_mvm *mvm,
1328 struct iwl_mvm_tx_resp *tx_resp)
1329{
1330 return le32_to_cpup((__le32 *)iwl_mvm_get_agg_status(mvm, tx_resp) +
1331 tx_resp->frame_count) & 0xfff;
1332}
1333
8ca151b5
JB
1334static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm,
1335 struct iwl_rx_packet *pkt)
1336{
1337 struct ieee80211_sta *sta;
1338 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1339 int txq_id = SEQ_TO_QUEUE(sequence);
a6a62193 1340 /* struct iwl_mvm_tx_resp_v3 is almost the same */
8ca151b5
JB
1341 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1342 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1343 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
12db294c
SS
1344 struct agg_tx_status *agg_status =
1345 iwl_mvm_get_agg_status(mvm, tx_resp);
1346 u32 status = le16_to_cpu(agg_status->status);
1347 u16 ssn = iwl_mvm_get_scd_ssn(mvm, tx_resp);
8ca151b5
JB
1348 struct iwl_mvm_sta *mvmsta;
1349 struct sk_buff_head skbs;
1350 u8 skb_freed = 0;
ea42d1cb 1351 u8 lq_color;
8ca151b5 1352 u16 next_reclaimed, seq_ctl;
532beba3 1353 bool is_ndp = false;
8ca151b5
JB
1354
1355 __skb_queue_head_init(&skbs);
1356
12db294c 1357 if (iwl_mvm_has_new_tx_api(mvm))
a6a62193 1358 txq_id = le16_to_cpu(tx_resp->tx_queue);
12db294c 1359
8ca151b5
JB
1360 seq_ctl = le16_to_cpu(tx_resp->seq_ctl);
1361
1362 /* we can free until ssn % q.n_bd not inclusive */
1363 iwl_trans_reclaim(mvm->trans, txq_id, ssn, &skbs);
1364
1365 while (!skb_queue_empty(&skbs)) {
1366 struct sk_buff *skb = __skb_dequeue(&skbs);
1367 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1368
1369 skb_freed++;
1370
1371 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1372
1373 memset(&info->status, 0, sizeof(info->status));
1374
8ca151b5
JB
1375 /* inform mac80211 about what happened with the frame */
1376 switch (status & TX_STATUS_MSK) {
1377 case TX_STATUS_SUCCESS:
1378 case TX_STATUS_DIRECT_DONE:
1379 info->flags |= IEEE80211_TX_STAT_ACK;
1380 break;
1381 case TX_STATUS_FAIL_DEST_PS:
9a3fcf91
SS
1382 /* In DQA, the FW should have stopped the queue and not
1383 * return this status
1384 */
1385 WARN_ON(iwl_mvm_is_dqa_supported(mvm));
8ca151b5
JB
1386 info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1387 break;
1388 default:
1389 break;
1390 }
1391
25657fec
GBA
1392 iwl_mvm_tx_status_check_trigger(mvm, status);
1393
8ca151b5 1394 info->status.rates[0].count = tx_resp->failure_frame + 1;
d310e405
ES
1395 iwl_mvm_hwrate_to_tx_status(le32_to_cpu(tx_resp->initial_rate),
1396 info);
929e6ede
ES
1397 info->status.status_driver_data[1] =
1398 (void *)(uintptr_t)le32_to_cpu(tx_resp->initial_rate);
8ca151b5
JB
1399
1400 /* Single frame failure in an AMPDU queue => send BAR */
c56108b5 1401 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
9ce578a5
ES
1402 !(info->flags & IEEE80211_TX_STAT_ACK) &&
1403 !(info->flags & IEEE80211_TX_STAT_TX_FILTERED))
8ca151b5 1404 info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
c56108b5 1405 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
8ca151b5 1406
ebea2f32
EG
1407 /* W/A FW bug: seq_ctl is wrong when the status isn't success */
1408 if (status != TX_STATUS_SUCCESS) {
8ca151b5
JB
1409 struct ieee80211_hdr *hdr = (void *)skb->data;
1410 seq_ctl = le16_to_cpu(hdr->seq_ctrl);
1411 }
1412
532beba3
EG
1413 if (unlikely(!seq_ctl)) {
1414 struct ieee80211_hdr *hdr = (void *)skb->data;
1415
1416 /*
1417 * If it is an NDP, we can't update next_reclaim since
1418 * its sequence control is 0. Note that for that same
1419 * reason, NDPs are never sent to A-MPDU'able queues
1420 * so that we can never have more than one freed frame
1421 * for a single Tx resonse (see WARN_ON below).
1422 */
1423 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
1424 is_ndp = true;
1425 }
1426
9b5452fd
EG
1427 /*
1428 * TODO: this is not accurate if we are freeing more than one
1429 * packet.
1430 */
1431 info->status.tx_time =
1432 le16_to_cpu(tx_resp->wireless_media_time);
3a84b69e 1433 BUILD_BUG_ON(ARRAY_SIZE(info->status.status_driver_data) < 1);
ea42d1cb 1434 lq_color = TX_RES_RATE_TABLE_COL_GET(tx_resp->tlc_info);
3a84b69e 1435 info->status.status_driver_data[0] =
ea42d1cb 1436 RS_DRV_DATA_PACK(lq_color, tx_resp->reduced_tpc);
3a84b69e 1437
f14d6b39 1438 ieee80211_tx_status(mvm->hw, skb);
8ca151b5
JB
1439 }
1440
c56108b5 1441 if (iwl_mvm_is_dqa_supported(mvm) || txq_id >= mvm->first_agg_queue) {
8ca151b5
JB
1442 /* If this is an aggregation queue, we use the ssn since:
1443 * ssn = wifi seq_num % 256.
1444 * The seq_ctl is the sequence control of the packet to which
1445 * this Tx response relates. But if there is a hole in the
1446 * bitmap of the BA we received, this Tx response may allow to
1447 * reclaim the hole and all the subsequent packets that were
1448 * already acked. In that case, seq_ctl != ssn, and the next
1449 * packet to be reclaimed will be ssn and not seq_ctl. In that
1450 * case, several packets will be reclaimed even if
1451 * frame_count = 1.
1452 *
1453 * The ssn is the index (% 256) of the latest packet that has
1454 * treated (acked / dropped) + 1.
1455 */
1456 next_reclaimed = ssn;
1457 } else {
1458 /* The next packet to be reclaimed is the one after this one */
9a886586 1459 next_reclaimed = IEEE80211_SEQ_TO_SN(seq_ctl + 0x10);
8ca151b5
JB
1460 }
1461
1462 IWL_DEBUG_TX_REPLY(mvm,
8c6e83d6
EG
1463 "TXQ %d status %s (0x%08x)\n",
1464 txq_id, iwl_mvm_get_tx_fail_reason(status), status);
1465
1466 IWL_DEBUG_TX_REPLY(mvm,
1467 "\t\t\t\tinitial_rate 0x%x retries %d, idx=%d ssn=%d next_reclaimed=0x%x seq_ctl=0x%x\n",
1468 le32_to_cpu(tx_resp->initial_rate),
8ca151b5
JB
1469 tx_resp->failure_frame, SEQ_TO_INDEX(sequence),
1470 ssn, next_reclaimed, seq_ctl);
1471
1472 rcu_read_lock();
1473
1474 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
9bb0c1ad
EG
1475 /*
1476 * sta can't be NULL otherwise it'd mean that the sta has been freed in
1477 * the firmware while we still have packets for it in the Tx queues.
1478 */
1479 if (WARN_ON_ONCE(!sta))
1480 goto out;
8ca151b5 1481
9bb0c1ad 1482 if (!IS_ERR(sta)) {
5b577a90 1483 mvmsta = iwl_mvm_sta_from_mac80211(sta);
8ca151b5 1484
c65f4e03 1485 if (tid != IWL_TID_NON_QOS && tid != IWL_MGMT_TID) {
8ca151b5
JB
1486 struct iwl_mvm_tid_data *tid_data =
1487 &mvmsta->tid_data[tid];
36be0eb6 1488 bool send_eosp_ndp = false;
8ca151b5 1489
2bfb5092 1490 spin_lock_bh(&mvmsta->lock);
cf961e16 1491
532beba3
EG
1492 if (!is_ndp) {
1493 tid_data->next_reclaimed = next_reclaimed;
1494 IWL_DEBUG_TX_REPLY(mvm,
1495 "Next reclaimed packet:%d\n",
1496 next_reclaimed);
1497 } else {
1498 IWL_DEBUG_TX_REPLY(mvm,
1499 "NDP - don't update next_reclaimed\n");
1500 }
1501
8ca151b5 1502 iwl_mvm_check_ratid_empty(mvm, sta, tid);
36be0eb6
EG
1503
1504 if (mvmsta->sleep_tx_count) {
1505 mvmsta->sleep_tx_count--;
1506 if (mvmsta->sleep_tx_count &&
dd32162d 1507 !iwl_mvm_tid_queued(mvm, tid_data)) {
36be0eb6
EG
1508 /*
1509 * The number of frames in the queue
1510 * dropped to 0 even if we sent less
1511 * frames than we thought we had on the
1512 * Tx queue.
1513 * This means we had holes in the BA
1514 * window that we just filled, ask
1515 * mac80211 to send EOSP since the
1516 * firmware won't know how to do that.
1517 * Send NDP and the firmware will send
1518 * EOSP notification that will trigger
1519 * a call to ieee80211_sta_eosp().
1520 */
1521 send_eosp_ndp = true;
1522 }
1523 }
1524
2bfb5092 1525 spin_unlock_bh(&mvmsta->lock);
36be0eb6
EG
1526 if (send_eosp_ndp) {
1527 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta,
1528 IEEE80211_FRAME_RELEASE_UAPSD,
1529 1, tid, false, false);
1530 mvmsta->sleep_tx_count = 0;
1531 ieee80211_send_eosp_nullfunc(sta, tid);
1532 }
8ca151b5 1533 }
3e56eadf
JB
1534
1535 if (mvmsta->next_status_eosp) {
1536 mvmsta->next_status_eosp = false;
1537 ieee80211_sta_eosp(sta);
1538 }
8ca151b5 1539 } else {
8ca151b5
JB
1540 mvmsta = NULL;
1541 }
1542
1543 /*
1544 * If the txq is not an AMPDU queue, there is no chance we freed
1545 * several skbs. Check that out...
8ca151b5 1546 */
9a3fcf91 1547 if (iwl_mvm_is_dqa_supported(mvm) || txq_id >= mvm->first_agg_queue)
9bb0c1ad
EG
1548 goto out;
1549
1550 /* We can't free more than one frame at once on a shared queue */
9a3fcf91 1551 WARN_ON(skb_freed > 1);
9bb0c1ad 1552
589a6ba4 1553 /* If we have still frames for this STA nothing to do here */
9bb0c1ad
EG
1554 if (!atomic_sub_and_test(skb_freed, &mvm->pending_frames[sta_id]))
1555 goto out;
1556
1557 if (mvmsta && mvmsta->vif->type == NL80211_IFTYPE_AP) {
003e5236 1558
9bb0c1ad 1559 /*
003e5236
AO
1560 * If there are no pending frames for this STA and
1561 * the tx to this station is not disabled, notify
1562 * mac80211 that this station can now wake up in its
9bb0c1ad
EG
1563 * STA table.
1564 * If mvmsta is not NULL, sta is valid.
1565 */
003e5236
AO
1566
1567 spin_lock_bh(&mvmsta->lock);
1568
1569 if (!mvmsta->disable_tx)
1570 ieee80211_sta_block_awake(mvm->hw, sta, false);
1571
1572 spin_unlock_bh(&mvmsta->lock);
9bb0c1ad
EG
1573 }
1574
1575 if (PTR_ERR(sta) == -EBUSY || PTR_ERR(sta) == -ENOENT) {
1576 /*
1577 * We are draining and this was the last packet - pre_rcu_remove
1578 * has been called already. We might be after the
1579 * synchronize_net already.
1580 * Don't rely on iwl_mvm_rm_sta to see the empty Tx queues.
1581 */
1582 set_bit(sta_id, mvm->sta_drained);
1583 schedule_work(&mvm->sta_drained_wk);
8ca151b5
JB
1584 }
1585
9bb0c1ad 1586out:
8ca151b5
JB
1587 rcu_read_unlock();
1588}
1589
1590#ifdef CONFIG_IWLWIFI_DEBUG
1591#define AGG_TX_STATE_(x) case AGG_TX_STATE_ ## x: return #x
1592static const char *iwl_get_agg_tx_status(u16 status)
1593{
1594 switch (status & AGG_TX_STATE_STATUS_MSK) {
1595 AGG_TX_STATE_(TRANSMITTED);
1596 AGG_TX_STATE_(UNDERRUN);
1597 AGG_TX_STATE_(BT_PRIO);
1598 AGG_TX_STATE_(FEW_BYTES);
1599 AGG_TX_STATE_(ABORT);
1600 AGG_TX_STATE_(LAST_SENT_TTL);
1601 AGG_TX_STATE_(LAST_SENT_TRY_CNT);
1602 AGG_TX_STATE_(LAST_SENT_BT_KILL);
1603 AGG_TX_STATE_(SCD_QUERY);
1604 AGG_TX_STATE_(TEST_BAD_CRC32);
1605 AGG_TX_STATE_(RESPONSE);
1606 AGG_TX_STATE_(DUMP_TX);
1607 AGG_TX_STATE_(DELAY_TX);
1608 }
1609
1610 return "UNKNOWN";
1611}
1612
1613static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1614 struct iwl_rx_packet *pkt)
1615{
1616 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
12db294c
SS
1617 struct agg_tx_status *frame_status =
1618 iwl_mvm_get_agg_status(mvm, tx_resp);
8ca151b5
JB
1619 int i;
1620
1621 for (i = 0; i < tx_resp->frame_count; i++) {
1622 u16 fstatus = le16_to_cpu(frame_status[i].status);
1623
1624 IWL_DEBUG_TX_REPLY(mvm,
1625 "status %s (0x%04x), try-count (%d) seq (0x%x)\n",
1626 iwl_get_agg_tx_status(fstatus),
1627 fstatus & AGG_TX_STATE_STATUS_MSK,
1628 (fstatus & AGG_TX_STATE_TRY_CNT_MSK) >>
1629 AGG_TX_STATE_TRY_CNT_POS,
1630 le16_to_cpu(frame_status[i].sequence));
1631 }
1632}
1633#else
1634static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1635 struct iwl_rx_packet *pkt)
1636{}
1637#endif /* CONFIG_IWLWIFI_DEBUG */
1638
1639static void iwl_mvm_rx_tx_cmd_agg(struct iwl_mvm *mvm,
1640 struct iwl_rx_packet *pkt)
1641{
1642 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1643 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1644 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
1645 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
13303c0f 1646 struct iwl_mvm_sta *mvmsta;
cf961e16 1647 int queue = SEQ_TO_QUEUE(sequence);
8ca151b5 1648
cf961e16
LK
1649 if (WARN_ON_ONCE(queue < mvm->first_agg_queue &&
1650 (!iwl_mvm_is_dqa_supported(mvm) ||
1651 (queue != IWL_MVM_DQA_BSS_CLIENT_QUEUE))))
8ca151b5
JB
1652 return;
1653
1654 if (WARN_ON_ONCE(tid == IWL_TID_NON_QOS))
1655 return;
1656
1657 iwl_mvm_rx_tx_cmd_agg_dbg(mvm, pkt);
1658
1659 rcu_read_lock();
1660
13303c0f 1661 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, sta_id);
8ca151b5 1662
13303c0f 1663 if (!WARN_ON_ONCE(!mvmsta)) {
8ca151b5
JB
1664 mvmsta->tid_data[tid].rate_n_flags =
1665 le32_to_cpu(tx_resp->initial_rate);
9b5452fd
EG
1666 mvmsta->tid_data[tid].tx_time =
1667 le16_to_cpu(tx_resp->wireless_media_time);
ea42d1cb
GG
1668 mvmsta->tid_data[tid].lq_color =
1669 (tx_resp->tlc_info & TX_RES_RATE_TABLE_COLOR_MSK) >>
1670 TX_RES_RATE_TABLE_COLOR_POS;
8ca151b5
JB
1671 }
1672
1673 rcu_read_unlock();
1674}
1675
0416841d 1676void iwl_mvm_rx_tx_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
8ca151b5
JB
1677{
1678 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1679 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1680
1681 if (tx_resp->frame_count == 1)
1682 iwl_mvm_rx_tx_cmd_single(mvm, pkt);
1683 else
1684 iwl_mvm_rx_tx_cmd_agg(mvm, pkt);
8ca151b5
JB
1685}
1686
c46e7724
SS
1687static void iwl_mvm_tx_reclaim(struct iwl_mvm *mvm, int sta_id, int tid,
1688 int txq, int index,
1689 struct ieee80211_tx_info *ba_info, u32 rate)
8ca151b5 1690{
8ca151b5
JB
1691 struct sk_buff_head reclaimed_skbs;
1692 struct iwl_mvm_tid_data *tid_data;
8ca151b5
JB
1693 struct ieee80211_sta *sta;
1694 struct iwl_mvm_sta *mvmsta;
8ca151b5 1695 struct sk_buff *skb;
c46e7724 1696 int freed;
8ca151b5 1697
2cee4762
ES
1698 if (WARN_ONCE(sta_id >= IWL_MVM_STATION_COUNT ||
1699 tid >= IWL_MAX_TID_COUNT,
1700 "sta_id %d tid %d", sta_id, tid))
0416841d 1701 return;
2cee4762 1702
8ca151b5
JB
1703 rcu_read_lock();
1704
1705 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
1706
1707 /* Reclaiming frames for a station that has been deleted ? */
1708 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta))) {
1709 rcu_read_unlock();
0416841d 1710 return;
8ca151b5
JB
1711 }
1712
5b577a90 1713 mvmsta = iwl_mvm_sta_from_mac80211(sta);
8ca151b5
JB
1714 tid_data = &mvmsta->tid_data[tid];
1715
c46e7724 1716 if (tid_data->txq_id != txq) {
1f16ea29 1717 IWL_ERR(mvm,
c46e7724
SS
1718 "invalid BA notification: Q %d, tid %d\n",
1719 tid_data->txq_id, tid);
8ca151b5 1720 rcu_read_unlock();
0416841d 1721 return;
8ca151b5
JB
1722 }
1723
2bfb5092 1724 spin_lock_bh(&mvmsta->lock);
8ca151b5
JB
1725
1726 __skb_queue_head_init(&reclaimed_skbs);
1727
1728 /*
1729 * Release all TFDs before the SSN, i.e. all TFDs in front of
1730 * block-ack window (we assume that they've been successfully
1731 * transmitted ... if not, it's too late anyway).
1732 */
c46e7724 1733 iwl_trans_reclaim(mvm->trans, txq, index, &reclaimed_skbs);
8ca151b5 1734
c46e7724 1735 tid_data->next_reclaimed = index;
8ca151b5
JB
1736
1737 iwl_mvm_check_ratid_empty(mvm, sta, tid);
1738
1739 freed = 0;
ea42d1cb
GG
1740
1741 /* pack lq color from tid_data along the reduced txp */
1742 ba_info->status.status_driver_data[0] =
1743 RS_DRV_DATA_PACK(tid_data->lq_color,
1744 ba_info->status.status_driver_data[0]);
c46e7724 1745 ba_info->status.status_driver_data[1] = (void *)(uintptr_t)rate;
8ca151b5
JB
1746
1747 skb_queue_walk(&reclaimed_skbs, skb) {
143582c6
JB
1748 struct ieee80211_hdr *hdr = (void *)skb->data;
1749 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
8ca151b5
JB
1750
1751 if (ieee80211_is_data_qos(hdr->frame_control))
1752 freed++;
1753 else
1754 WARN_ON_ONCE(1);
1755
8ca151b5
JB
1756 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1757
143582c6
JB
1758 memset(&info->status, 0, sizeof(info->status));
1759 /* Packet was transmitted successfully, failures come as single
1760 * frames because before failing a frame the firmware transmits
1761 * it without aggregation at least once.
1762 */
1763 info->flags |= IEEE80211_TX_STAT_ACK;
1764
a7130442
ES
1765 /* this is the first skb we deliver in this batch */
1766 /* put the rate scaling data there */
c46e7724
SS
1767 if (freed == 1) {
1768 info->flags |= IEEE80211_TX_STAT_AMPDU;
1769 memcpy(&info->status, &ba_info->status,
1770 sizeof(ba_info->status));
1771 iwl_mvm_hwrate_to_tx_status(rate, info);
1772 }
8ca151b5
JB
1773 }
1774
2bfb5092 1775 spin_unlock_bh(&mvmsta->lock);
8ca151b5 1776
a7130442
ES
1777 /* We got a BA notif with 0 acked or scd_ssn didn't progress which is
1778 * possible (i.e. first MPDU in the aggregation wasn't acked)
1779 * Still it's important to update RS about sent vs. acked.
1780 */
1781 if (skb_queue_empty(&reclaimed_skbs)) {
a7130442
ES
1782 struct ieee80211_chanctx_conf *chanctx_conf = NULL;
1783
1784 if (mvmsta->vif)
1785 chanctx_conf =
1786 rcu_dereference(mvmsta->vif->chanctx_conf);
1787
1788 if (WARN_ON_ONCE(!chanctx_conf))
1789 goto out;
1790
c46e7724
SS
1791 ba_info->band = chanctx_conf->def.chan->band;
1792 iwl_mvm_hwrate_to_tx_status(rate, ba_info);
a7130442
ES
1793
1794 IWL_DEBUG_TX_REPLY(mvm, "No reclaim. Update rs directly\n");
c46e7724 1795 iwl_mvm_rs_tx_status(mvm, sta, tid, ba_info, false);
a7130442
ES
1796 }
1797
1798out:
8ca151b5
JB
1799 rcu_read_unlock();
1800
1801 while (!skb_queue_empty(&reclaimed_skbs)) {
1802 skb = __skb_dequeue(&reclaimed_skbs);
f14d6b39 1803 ieee80211_tx_status(mvm->hw, skb);
8ca151b5 1804 }
8ca151b5
JB
1805}
1806
c46e7724
SS
1807void iwl_mvm_rx_ba_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
1808{
1809 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1810 int sta_id, tid, txq, index;
1811 struct ieee80211_tx_info ba_info = {};
1812 struct iwl_mvm_ba_notif *ba_notif;
1813 struct iwl_mvm_tid_data *tid_data;
1814 struct iwl_mvm_sta *mvmsta;
1815
1816 if (iwl_mvm_has_new_tx_api(mvm)) {
1817 struct iwl_mvm_compressed_ba_notif *ba_res =
1818 (void *)pkt->data;
cba46988 1819 int i;
c46e7724
SS
1820
1821 sta_id = ba_res->sta_id;
1822 ba_info.status.ampdu_ack_len = (u8)le16_to_cpu(ba_res->done);
1823 ba_info.status.ampdu_len = (u8)le16_to_cpu(ba_res->txed);
1824 ba_info.status.tx_time =
1825 (u16)le32_to_cpu(ba_res->wireless_time);
1826 ba_info.status.status_driver_data[0] =
1827 (void *)(uintptr_t)ba_res->reduced_txp;
1828
9b1ea167
SS
1829 if (!le16_to_cpu(ba_res->tfd_cnt))
1830 goto out;
1831
cba46988
LK
1832 /* Free per TID */
1833 for (i = 0; i < le16_to_cpu(ba_res->tfd_cnt); i++) {
1834 struct iwl_mvm_compressed_ba_tfd *ba_tfd =
1835 &ba_res->tfd[i];
1836
1837 iwl_mvm_tx_reclaim(mvm, sta_id, ba_tfd->tid,
1838 (int)(le16_to_cpu(ba_tfd->q_num)),
1839 le16_to_cpu(ba_tfd->tfd_index),
1840 &ba_info,
1841 le32_to_cpu(ba_res->tx_rate));
1842 }
c46e7724 1843
9b1ea167 1844out:
c46e7724
SS
1845 IWL_DEBUG_TX_REPLY(mvm,
1846 "BA_NOTIFICATION Received from sta_id = %d, flags %x, sent:%d, acked:%d\n",
1847 sta_id, le32_to_cpu(ba_res->flags),
1848 le16_to_cpu(ba_res->txed),
1849 le16_to_cpu(ba_res->done));
1850 return;
1851 }
1852
1853 ba_notif = (void *)pkt->data;
1854 sta_id = ba_notif->sta_id;
1855 tid = ba_notif->tid;
1856 /* "flow" corresponds to Tx queue */
1857 txq = le16_to_cpu(ba_notif->scd_flow);
1858 /* "ssn" is start of block-ack Tx window, corresponds to index
1859 * (in Tx queue's circular buffer) of first TFD/frame in window */
1860 index = le16_to_cpu(ba_notif->scd_ssn);
1861
1862 rcu_read_lock();
1863 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, sta_id);
1864 if (WARN_ON_ONCE(!mvmsta)) {
1865 rcu_read_unlock();
1866 return;
1867 }
1868
1869 tid_data = &mvmsta->tid_data[tid];
1870
1871 ba_info.status.ampdu_ack_len = ba_notif->txed_2_done;
1872 ba_info.status.ampdu_len = ba_notif->txed;
1873 ba_info.status.tx_time = tid_data->tx_time;
1874 ba_info.status.status_driver_data[0] =
1875 (void *)(uintptr_t)ba_notif->reduced_txp;
1876
1877 rcu_read_unlock();
1878
1879 iwl_mvm_tx_reclaim(mvm, sta_id, tid, txq, index, &ba_info,
1880 tid_data->rate_n_flags);
1881
1882 IWL_DEBUG_TX_REPLY(mvm,
1883 "BA_NOTIFICATION Received from %pM, sta_id = %d\n",
3dc6dd96 1884 ba_notif->sta_addr, ba_notif->sta_id);
c46e7724
SS
1885
1886 IWL_DEBUG_TX_REPLY(mvm,
1887 "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = %d, scd_ssn = %d sent:%d, acked:%d\n",
1888 ba_notif->tid, le16_to_cpu(ba_notif->seq_ctl),
1889 le64_to_cpu(ba_notif->bitmap), txq, index,
1890 ba_notif->txed, ba_notif->txed_2_done);
1891
1892 IWL_DEBUG_TX_REPLY(mvm, "reduced txp from ba notif %d\n",
1893 ba_notif->reduced_txp);
1894}
1895
fe92e32a
EG
1896/*
1897 * Note that there are transports that buffer frames before they reach
1898 * the firmware. This means that after flush_tx_path is called, the
1899 * queue might not be empty. The race-free way to handle this is to:
1900 * 1) set the station as draining
1901 * 2) flush the Tx path
1902 * 3) wait for the transport queues to be empty
1903 */
5888a40c 1904int iwl_mvm_flush_tx_path(struct iwl_mvm *mvm, u32 tfd_msk, u32 flags)
8ca151b5
JB
1905{
1906 int ret;
d167e81a 1907 struct iwl_tx_path_flush_cmd_v1 flush_cmd = {
8ca151b5
JB
1908 .queues_ctl = cpu_to_le32(tfd_msk),
1909 .flush_ctl = cpu_to_le16(DUMP_TX_FIFO_FLUSH),
1910 };
1911
d167e81a
MG
1912 WARN_ON(iwl_mvm_has_new_tx_api(mvm));
1913
8ca151b5
JB
1914 ret = iwl_mvm_send_cmd_pdu(mvm, TXPATH_FLUSH, flags,
1915 sizeof(flush_cmd), &flush_cmd);
1916 if (ret)
1917 IWL_ERR(mvm, "Failed to send flush command (%d)\n", ret);
1918 return ret;
1919}
d49394a1 1920
d167e81a
MG
1921int iwl_mvm_flush_sta_tids(struct iwl_mvm *mvm, u32 sta_id,
1922 u16 tids, u32 flags)
d49394a1 1923{
d167e81a
MG
1924 int ret;
1925 struct iwl_tx_path_flush_cmd flush_cmd = {
1926 .sta_id = cpu_to_le32(sta_id),
1927 .tid_mask = cpu_to_le16(tids),
1928 };
d49394a1 1929
d167e81a 1930 WARN_ON(!iwl_mvm_has_new_tx_api(mvm));
d49394a1 1931
d167e81a
MG
1932 ret = iwl_mvm_send_cmd_pdu(mvm, TXPATH_FLUSH, flags,
1933 sizeof(flush_cmd), &flush_cmd);
1934 if (ret)
1935 IWL_ERR(mvm, "Failed to send flush command (%d)\n", ret);
1936 return ret;
1937}
d49394a1 1938
d167e81a
MG
1939int iwl_mvm_flush_sta(struct iwl_mvm *mvm, void *sta, bool internal, u32 flags)
1940{
1941 struct iwl_mvm_int_sta *int_sta = sta;
1942 struct iwl_mvm_sta *mvm_sta = sta;
1943
1944 if (iwl_mvm_has_new_tx_api(mvm)) {
1945 if (internal)
1946 return iwl_mvm_flush_sta_tids(mvm, int_sta->sta_id,
1947 BIT(IWL_MGMT_TID), flags);
1948
1949 return iwl_mvm_flush_sta_tids(mvm, mvm_sta->sta_id,
1950 0xFF, flags);
d49394a1
SS
1951 }
1952
d167e81a
MG
1953 if (internal)
1954 return iwl_mvm_flush_tx_path(mvm, int_sta->tfd_queue_msk,
1955 flags);
1956
1957 return iwl_mvm_flush_tx_path(mvm, mvm_sta->tfd_queue_msk, flags);
d49394a1 1958}