iwlwifi: mvm: align copy-break SKB payload for MQ RX
[linux-2.6-block.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
532beba3 10 * Copyright(c) 2016 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
8ca151b5
JB
37 * All rights reserved.
38 *
39 * Redistribution and use in source and binary forms, with or without
40 * modification, are permitted provided that the following conditions
41 * are met:
42 *
43 * * Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * * Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in
47 * the documentation and/or other materials provided with the
48 * distribution.
49 * * Neither the name Intel Corporation nor the names of its
50 * contributors may be used to endorse or promote products derived
51 * from this software without specific prior written permission.
52 *
53 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
54 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
55 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
56 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
57 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
58 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
59 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
60 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
61 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
62 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
63 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
64 *
65 *****************************************************************************/
66#include <linux/ieee80211.h>
67#include <linux/etherdevice.h>
a3713f8b 68#include <linux/tcp.h>
a6d5e32f 69#include <net/ip.h>
5e6a98dc 70#include <net/ipv6.h>
8ca151b5
JB
71
72#include "iwl-trans.h"
73#include "iwl-eeprom-parse.h"
74#include "mvm.h"
75#include "sta.h"
2f89a5d7 76#include "fw-dbg.h"
8ca151b5 77
4203263d
EG
78static void
79iwl_mvm_bar_check_trigger(struct iwl_mvm *mvm, const u8 *addr,
80 u16 tid, u16 ssn)
81{
82 struct iwl_fw_dbg_trigger_tlv *trig;
83 struct iwl_fw_dbg_trigger_ba *ba_trig;
84
85 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_BA))
86 return;
87
88 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_BA);
89 ba_trig = (void *)trig->data;
90
91 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
92 return;
93
94 if (!(le16_to_cpu(ba_trig->tx_bar) & BIT(tid)))
95 return;
96
97 iwl_mvm_fw_dbg_collect_trig(mvm, trig,
98 "BAR sent to %pM, tid %d, ssn %d",
99 addr, tid, ssn);
100}
101
5e6a98dc
SS
102#define OPT_HDR(type, skb, off) \
103 (type *)(skb_network_header(skb) + (off))
104
b86dd74f
SS
105static u16 iwl_mvm_tx_csum(struct iwl_mvm *mvm, struct sk_buff *skb,
106 struct ieee80211_hdr *hdr,
107 struct ieee80211_tx_info *info)
5e6a98dc 108{
b86dd74f 109 u16 offload_assist = 0;
5e6a98dc
SS
110#if IS_ENABLED(CONFIG_INET)
111 u16 mh_len = ieee80211_hdrlen(hdr->frame_control);
5e6a98dc
SS
112 u8 protocol = 0;
113
114 /*
115 * Do not compute checksum if already computed or if transport will
116 * compute it
117 */
118 if (skb->ip_summed != CHECKSUM_PARTIAL || IWL_MVM_SW_TX_CSUM_OFFLOAD)
b86dd74f 119 goto out;
5e6a98dc
SS
120
121 /* We do not expect to be requested to csum stuff we do not support */
122 if (WARN_ONCE(!(mvm->hw->netdev_features & IWL_TX_CSUM_NETIF_FLAGS) ||
123 (skb->protocol != htons(ETH_P_IP) &&
124 skb->protocol != htons(ETH_P_IPV6)),
125 "No support for requested checksum\n")) {
126 skb_checksum_help(skb);
b86dd74f 127 goto out;
5e6a98dc
SS
128 }
129
130 if (skb->protocol == htons(ETH_P_IP)) {
131 protocol = ip_hdr(skb)->protocol;
132 } else {
133#if IS_ENABLED(CONFIG_IPV6)
134 struct ipv6hdr *ipv6h =
135 (struct ipv6hdr *)skb_network_header(skb);
136 unsigned int off = sizeof(*ipv6h);
137
138 protocol = ipv6h->nexthdr;
139 while (protocol != NEXTHDR_NONE && ipv6_ext_hdr(protocol)) {
ecf51424
SS
140 struct ipv6_opt_hdr *hp;
141
5e6a98dc
SS
142 /* only supported extension headers */
143 if (protocol != NEXTHDR_ROUTING &&
144 protocol != NEXTHDR_HOP &&
ecf51424 145 protocol != NEXTHDR_DEST) {
5e6a98dc 146 skb_checksum_help(skb);
b86dd74f 147 goto out;
5e6a98dc
SS
148 }
149
ecf51424
SS
150 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
151 protocol = hp->nexthdr;
152 off += ipv6_optlen(hp);
5e6a98dc
SS
153 }
154 /* if we get here - protocol now should be TCP/UDP */
155#endif
156 }
157
158 if (protocol != IPPROTO_TCP && protocol != IPPROTO_UDP) {
159 WARN_ON_ONCE(1);
160 skb_checksum_help(skb);
b86dd74f 161 goto out;
5e6a98dc
SS
162 }
163
164 /* enable L4 csum */
165 offload_assist |= BIT(TX_CMD_OFFLD_L4_EN);
166
167 /*
168 * Set offset to IP header (snap).
169 * We don't support tunneling so no need to take care of inner header.
170 * Size is in words.
171 */
172 offload_assist |= (4 << TX_CMD_OFFLD_IP_HDR);
173
174 /* Do IPv4 csum for AMSDU only (no IP csum for Ipv6) */
175 if (skb->protocol == htons(ETH_P_IP) &&
176 (offload_assist & BIT(TX_CMD_OFFLD_AMSDU))) {
177 ip_hdr(skb)->check = 0;
178 offload_assist |= BIT(TX_CMD_OFFLD_L3_EN);
179 }
180
181 /* reset UDP/TCP header csum */
182 if (protocol == IPPROTO_TCP)
183 tcp_hdr(skb)->check = 0;
184 else
185 udp_hdr(skb)->check = 0;
186
187 /* mac header len should include IV, size is in words */
188 if (info->control.hw_key)
189 mh_len += info->control.hw_key->iv_len;
190 mh_len /= 2;
191 offload_assist |= mh_len << TX_CMD_OFFLD_MH_SIZE;
192
b86dd74f 193out:
5e6a98dc 194#endif
b86dd74f 195 return offload_assist;
5e6a98dc
SS
196}
197
8ca151b5
JB
198/*
199 * Sets most of the Tx cmd's fields
200 */
6ce73e65
AN
201void iwl_mvm_set_tx_cmd(struct iwl_mvm *mvm, struct sk_buff *skb,
202 struct iwl_tx_cmd *tx_cmd,
203 struct ieee80211_tx_info *info, u8 sta_id)
8ca151b5
JB
204{
205 struct ieee80211_hdr *hdr = (void *)skb->data;
206 __le16 fc = hdr->frame_control;
207 u32 tx_flags = le32_to_cpu(tx_cmd->tx_flags);
208 u32 len = skb->len + FCS_LEN;
b797e3fb 209 u8 ac;
8ca151b5
JB
210
211 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
212 tx_flags |= TX_CMD_FLG_ACK;
213 else
214 tx_flags &= ~TX_CMD_FLG_ACK;
215
216 if (ieee80211_is_probe_resp(fc))
217 tx_flags |= TX_CMD_FLG_TSF;
8ca151b5 218
8ca151b5
JB
219 if (ieee80211_has_morefrags(fc))
220 tx_flags |= TX_CMD_FLG_MORE_FRAG;
221
222 if (ieee80211_is_data_qos(fc)) {
223 u8 *qc = ieee80211_get_qos_ctl(hdr);
224 tx_cmd->tid_tspec = qc[0] & 0xf;
225 tx_flags &= ~TX_CMD_FLG_SEQ_CTL;
d8fe4844
SS
226 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
227 tx_cmd->offload_assist |=
228 cpu_to_le16(BIT(TX_CMD_OFFLD_AMSDU));
9b3b43d8
ES
229 } else if (ieee80211_is_back_req(fc)) {
230 struct ieee80211_bar *bar = (void *)skb->data;
231 u16 control = le16_to_cpu(bar->control);
4203263d 232 u16 ssn = le16_to_cpu(bar->start_seq_num);
9b3b43d8
ES
233
234 tx_flags |= TX_CMD_FLG_ACK | TX_CMD_FLG_BAR;
235 tx_cmd->tid_tspec = (control &
236 IEEE80211_BAR_CTRL_TID_INFO_MASK) >>
237 IEEE80211_BAR_CTRL_TID_INFO_SHIFT;
238 WARN_ON_ONCE(tx_cmd->tid_tspec >= IWL_MAX_TID_COUNT);
4203263d
EG
239 iwl_mvm_bar_check_trigger(mvm, bar->ra, tx_cmd->tid_tspec,
240 ssn);
8ca151b5
JB
241 } else {
242 tx_cmd->tid_tspec = IWL_TID_NON_QOS;
243 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
244 tx_flags |= TX_CMD_FLG_SEQ_CTL;
245 else
246 tx_flags &= ~TX_CMD_FLG_SEQ_CTL;
247 }
248
a9dc5060
ES
249 /* Default to 0 (BE) when tid_spec is set to IWL_TID_NON_QOS */
250 if (tx_cmd->tid_tspec < IWL_MAX_TID_COUNT)
251 ac = tid_to_mac80211_ac[tx_cmd->tid_tspec];
252 else
253 ac = tid_to_mac80211_ac[0];
254
b797e3fb
EG
255 tx_flags |= iwl_mvm_bt_coex_tx_prio(mvm, hdr, info, ac) <<
256 TX_CMD_FLG_BT_PRIO_POS;
257
8ca151b5
JB
258 if (ieee80211_is_mgmt(fc)) {
259 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
b084a356
AA
260 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_ASSOC);
261 else if (ieee80211_is_action(fc))
262 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
8ca151b5 263 else
b084a356 264 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
8ca151b5
JB
265
266 /* The spec allows Action frames in A-MPDU, we don't support
267 * it
268 */
269 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_AMPDU);
63f7535d 270 } else if (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO) {
b084a356 271 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
8ca151b5 272 } else {
b084a356 273 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
8ca151b5
JB
274 }
275
8ca151b5
JB
276 if (ieee80211_is_data(fc) && len > mvm->rts_threshold &&
277 !is_multicast_ether_addr(ieee80211_get_DA(hdr)))
278 tx_flags |= TX_CMD_FLG_PROT_REQUIRE;
279
859d914c
JB
280 if (fw_has_capa(&mvm->fw->ucode_capa,
281 IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT) &&
f1daa00e
AO
282 ieee80211_action_contains_tpc(skb))
283 tx_flags |= TX_CMD_FLG_WRITE_TX_POWER;
284
8ca151b5 285 tx_cmd->tx_flags = cpu_to_le32(tx_flags);
05e5a7e5
JB
286 /* Total # bytes to be transmitted - PCIe code will adjust for A-MSDU */
287 tx_cmd->len = cpu_to_le16((u16)skb->len);
8ca151b5
JB
288 tx_cmd->life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
289 tx_cmd->sta_id = sta_id;
d8fe4844
SS
290
291 /* padding is inserted later in transport */
292 if (ieee80211_hdrlen(fc) % 4 &&
293 !(tx_cmd->offload_assist & cpu_to_le16(BIT(TX_CMD_OFFLD_AMSDU))))
294 tx_cmd->offload_assist |= cpu_to_le16(BIT(TX_CMD_OFFLD_PAD));
5e6a98dc 295
b86dd74f
SS
296 tx_cmd->offload_assist |=
297 cpu_to_le16(iwl_mvm_tx_csum(mvm, skb, hdr, info));
8ca151b5
JB
298}
299
5ec295db
SS
300static u32 iwl_mvm_get_tx_rate(struct iwl_mvm *mvm,
301 struct ieee80211_tx_info *info,
302 struct ieee80211_sta *sta)
303{
304 int rate_idx;
305 u8 rate_plcp;
306 u32 rate_flags;
307
308 /* HT rate doesn't make sense for a non data frame */
309 WARN_ONCE(info->control.rates[0].flags & IEEE80211_TX_RC_MCS,
310 "Got an HT rate (flags:0x%x/mcs:%d) for a non data frame\n",
311 info->control.rates[0].flags,
312 info->control.rates[0].idx);
313
314 rate_idx = info->control.rates[0].idx;
315 /* if the rate isn't a well known legacy rate, take the lowest one */
316 if (rate_idx < 0 || rate_idx >= IWL_RATE_COUNT_LEGACY)
317 rate_idx = rate_lowest_index(
318 &mvm->nvm_data->bands[info->band], sta);
319
320 /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
321 if (info->band == NL80211_BAND_5GHZ)
322 rate_idx += IWL_FIRST_OFDM_RATE;
323
324 /* For 2.4 GHZ band, check that there is no need to remap */
325 BUILD_BUG_ON(IWL_FIRST_CCK_RATE != 0);
326
327 /* Get PLCP rate for tx_cmd->rate_n_flags */
328 rate_plcp = iwl_mvm_mac80211_idx_to_hwrate(rate_idx);
329
330 if (info->band == NL80211_BAND_2GHZ &&
331 !iwl_mvm_bt_coex_is_shared_ant_avail(mvm))
332 rate_flags = mvm->cfg->non_shared_ant << RATE_MCS_ANT_POS;
333 else
334 rate_flags =
335 BIT(mvm->mgmt_last_antenna_idx) << RATE_MCS_ANT_POS;
336
337 /* Set CCK flag as needed */
338 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
339 rate_flags |= RATE_MCS_CCK_MSK;
340
341 return (u32)rate_plcp | rate_flags;
342}
343
8ca151b5
JB
344/*
345 * Sets the fields in the Tx cmd that are rate related
346 */
6ce73e65
AN
347void iwl_mvm_set_tx_cmd_rate(struct iwl_mvm *mvm, struct iwl_tx_cmd *tx_cmd,
348 struct ieee80211_tx_info *info,
349 struct ieee80211_sta *sta, __le16 fc)
8ca151b5 350{
8ca151b5
JB
351 /* Set retry limit on RTS packets */
352 tx_cmd->rts_retry_limit = IWL_RTS_DFAULT_RETRY_LIMIT;
353
354 /* Set retry limit on DATA packets and Probe Responses*/
355 if (ieee80211_is_probe_resp(fc)) {
356 tx_cmd->data_retry_limit = IWL_MGMT_DFAULT_RETRY_LIMIT;
357 tx_cmd->rts_retry_limit =
358 min(tx_cmd->data_retry_limit, tx_cmd->rts_retry_limit);
359 } else if (ieee80211_is_back_req(fc)) {
360 tx_cmd->data_retry_limit = IWL_BAR_DFAULT_RETRY_LIMIT;
361 } else {
362 tx_cmd->data_retry_limit = IWL_DEFAULT_TX_RETRY;
363 }
364
365 /*
e89044d7 366 * for data packets, rate info comes from the table inside the fw. This
1ffde699 367 * table is controlled by LINK_QUALITY commands
8ca151b5
JB
368 */
369
1ffde699 370 if (ieee80211_is_data(fc) && sta) {
8ca151b5
JB
371 tx_cmd->initial_rate_index = 0;
372 tx_cmd->tx_flags |= cpu_to_le32(TX_CMD_FLG_STA_RATE);
373 return;
374 } else if (ieee80211_is_back_req(fc)) {
2edc6ec6
EG
375 tx_cmd->tx_flags |=
376 cpu_to_le32(TX_CMD_FLG_ACK | TX_CMD_FLG_BAR);
8ca151b5
JB
377 }
378
8ca151b5 379 mvm->mgmt_last_antenna_idx =
a0544272 380 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
8ca151b5 381 mvm->mgmt_last_antenna_idx);
34c8b24f 382
8ca151b5 383 /* Set the rate in the TX cmd */
5ec295db 384 tx_cmd->rate_n_flags = cpu_to_le32(iwl_mvm_get_tx_rate(mvm, info, sta));
8ca151b5
JB
385}
386
2a53d166
AB
387static inline void iwl_mvm_set_tx_cmd_pn(struct ieee80211_tx_info *info,
388 u8 *crypto_hdr)
389{
390 struct ieee80211_key_conf *keyconf = info->control.hw_key;
391 u64 pn;
392
393 pn = atomic64_inc_return(&keyconf->tx_pn);
394 crypto_hdr[0] = pn;
395 crypto_hdr[2] = 0;
396 crypto_hdr[3] = 0x20 | (keyconf->keyidx << 6);
397 crypto_hdr[1] = pn >> 8;
398 crypto_hdr[4] = pn >> 16;
399 crypto_hdr[5] = pn >> 24;
400 crypto_hdr[6] = pn >> 32;
401 crypto_hdr[7] = pn >> 40;
402}
403
8ca151b5
JB
404/*
405 * Sets the fields in the Tx cmd that are crypto related
406 */
ca8c0f4b
JB
407static void iwl_mvm_set_tx_cmd_crypto(struct iwl_mvm *mvm,
408 struct ieee80211_tx_info *info,
409 struct iwl_tx_cmd *tx_cmd,
410 struct sk_buff *skb_frag,
411 int hdrlen)
8ca151b5
JB
412{
413 struct ieee80211_key_conf *keyconf = info->control.hw_key;
ca8c0f4b
JB
414 u8 *crypto_hdr = skb_frag->data + hdrlen;
415 u64 pn;
8ca151b5
JB
416
417 switch (keyconf->cipher) {
418 case WLAN_CIPHER_SUITE_CCMP:
ca8c0f4b
JB
419 case WLAN_CIPHER_SUITE_CCMP_256:
420 iwl_mvm_set_tx_cmd_ccmp(info, tx_cmd);
2a53d166 421 iwl_mvm_set_tx_cmd_pn(info, crypto_hdr);
8ca151b5
JB
422 break;
423
424 case WLAN_CIPHER_SUITE_TKIP:
425 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
1ad4f639
EP
426 pn = atomic64_inc_return(&keyconf->tx_pn);
427 ieee80211_tkip_add_iv(crypto_hdr, keyconf, pn);
8ca151b5
JB
428 ieee80211_get_tkip_p2k(keyconf, skb_frag, tx_cmd->key);
429 break;
430
431 case WLAN_CIPHER_SUITE_WEP104:
432 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
433 /* fall through */
434 case WLAN_CIPHER_SUITE_WEP40:
435 tx_cmd->sec_ctl |= TX_CMD_SEC_WEP |
436 ((keyconf->keyidx << TX_CMD_SEC_WEP_KEY_IDX_POS) &
437 TX_CMD_SEC_WEP_KEY_IDX_MSK);
438
439 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
440 break;
2a53d166
AB
441 case WLAN_CIPHER_SUITE_GCMP:
442 case WLAN_CIPHER_SUITE_GCMP_256:
443 /* TODO: Taking the key from the table might introduce a race
444 * when PTK rekeying is done, having an old packets with a PN
445 * based on the old key but the message encrypted with a new
446 * one.
447 * Need to handle this.
448 */
4dc6511f 449 tx_cmd->sec_ctl |= TX_CMD_SEC_GCMP | TX_CMD_SEC_KEY_FROM_TABLE;
2a53d166
AB
450 tx_cmd->key[0] = keyconf->hw_key_idx;
451 iwl_mvm_set_tx_cmd_pn(info, crypto_hdr);
452 break;
8ca151b5 453 default:
e36e5433 454 tx_cmd->sec_ctl |= TX_CMD_SEC_EXT;
8ca151b5
JB
455 }
456}
457
458/*
459 * Allocates and sets the Tx cmd the driver data pointers in the skb
460 */
461static struct iwl_device_cmd *
462iwl_mvm_set_tx_params(struct iwl_mvm *mvm, struct sk_buff *skb,
5c08b0f5
EG
463 struct ieee80211_tx_info *info, int hdrlen,
464 struct ieee80211_sta *sta, u8 sta_id)
8ca151b5
JB
465{
466 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
8ca151b5
JB
467 struct iwl_device_cmd *dev_cmd;
468 struct iwl_tx_cmd *tx_cmd;
469
470 dev_cmd = iwl_trans_alloc_tx_cmd(mvm->trans);
471
472 if (unlikely(!dev_cmd))
473 return NULL;
474
475 memset(dev_cmd, 0, sizeof(*dev_cmd));
3961a61a 476 dev_cmd->hdr.cmd = TX_CMD;
8ca151b5
JB
477 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
478
479 if (info->control.hw_key)
ca8c0f4b 480 iwl_mvm_set_tx_cmd_crypto(mvm, info, tx_cmd, skb, hdrlen);
8ca151b5
JB
481
482 iwl_mvm_set_tx_cmd(mvm, skb, tx_cmd, info, sta_id);
483
484 iwl_mvm_set_tx_cmd_rate(mvm, tx_cmd, info, sta, hdr->frame_control);
485
bd05a5bd
JB
486 return dev_cmd;
487}
488
489static void iwl_mvm_skb_prepare_status(struct sk_buff *skb,
490 struct iwl_device_cmd *cmd)
491{
492 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
493
5c08b0f5
EG
494 memset(&skb_info->status, 0, sizeof(skb_info->status));
495 memset(skb_info->driver_data, 0, sizeof(skb_info->driver_data));
8ca151b5 496
bd05a5bd 497 skb_info->driver_data[1] = cmd;
8ca151b5
JB
498}
499
de24f638
LK
500static int iwl_mvm_get_ctrl_vif_queue(struct iwl_mvm *mvm,
501 struct ieee80211_tx_info *info, __le16 fc)
502{
3ee0f0e2
SS
503 if (!iwl_mvm_is_dqa_supported(mvm))
504 return info->hw_queue;
505
506 switch (info->control.vif->type) {
507 case NL80211_IFTYPE_AP:
508 /*
509 * handle legacy hostapd as well, where station may be added
510 * only after assoc.
511 */
512 if (ieee80211_is_probe_resp(fc) || ieee80211_is_auth(fc))
4c965139 513 return IWL_MVM_DQA_AP_PROBE_RESP_QUEUE;
3ee0f0e2
SS
514 if (info->hw_queue == info->control.vif->cab_queue)
515 return info->hw_queue;
516
517 WARN_ON_ONCE(1);
518 return IWL_MVM_DQA_AP_PROBE_RESP_QUEUE;
519 case NL80211_IFTYPE_P2P_DEVICE:
520 if (ieee80211_is_mgmt(fc))
4c965139 521 return IWL_MVM_DQA_P2P_DEVICE_QUEUE;
3ee0f0e2
SS
522 if (info->hw_queue == info->control.vif->cab_queue)
523 return info->hw_queue;
de24f638 524
3ee0f0e2
SS
525 WARN_ON_ONCE(1);
526 return IWL_MVM_DQA_P2P_DEVICE_QUEUE;
527 default:
528 WARN_ONCE(1, "Not a ctrl vif, no available queue\n");
529 return -1;
530 }
de24f638
LK
531}
532
8ca151b5
JB
533int iwl_mvm_tx_skb_non_sta(struct iwl_mvm *mvm, struct sk_buff *skb)
534{
535 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
5c08b0f5
EG
536 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
537 struct ieee80211_tx_info info;
8ca151b5
JB
538 struct iwl_device_cmd *dev_cmd;
539 struct iwl_tx_cmd *tx_cmd;
540 u8 sta_id;
ca8c0f4b 541 int hdrlen = ieee80211_hdrlen(hdr->frame_control);
de24f638 542 int queue;
8ca151b5 543
54c5ef2e
BL
544 /* IWL_MVM_OFFCHANNEL_QUEUE is used for ROC packets that can be used
545 * in 2 different types of vifs, P2P & STATION. P2P uses the offchannel
546 * queue. STATION (HS2.0) uses the auxiliary context of the FW,
547 * and hence needs to be sent on the aux queue
548 */
45b957e3 549 if (skb_info->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
54c5ef2e 550 skb_info->control.vif->type == NL80211_IFTYPE_STATION)
45b957e3 551 skb_info->hw_queue = mvm->aux_queue;
54c5ef2e 552
5c08b0f5
EG
553 memcpy(&info, skb->cb, sizeof(info));
554
555 if (WARN_ON_ONCE(info.flags & IEEE80211_TX_CTL_AMPDU))
8ca151b5
JB
556 return -1;
557
5c08b0f5
EG
558 if (WARN_ON_ONCE(info.flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM &&
559 (!info.control.vif ||
560 info.hw_queue != info.control.vif->cab_queue)))
8ca151b5
JB
561 return -1;
562
de24f638
LK
563 queue = info.hw_queue;
564
8ca151b5 565 /*
d0ab08d0 566 * If the interface on which the frame is sent is the P2P_DEVICE
8ca151b5 567 * or an AP/GO interface use the broadcast station associated
d0ab08d0
IP
568 * with it; otherwise if the interface is a managed interface
569 * use the AP station associated with it for multicast traffic
570 * (this is not possible for unicast packets as a TLDS discovery
571 * response are sent without a station entry); otherwise use the
572 * AUX station.
6574dc94
BL
573 * In DQA mode, if vif is of type STATION and frames are not multicast
574 * or offchannel, they should be sent from the BSS queue.
575 * For example, TDLS setup frames should be sent on this queue,
576 * as they go through the AP.
8ca151b5 577 */
d0ab08d0 578 sta_id = mvm->aux_sta.sta_id;
5c08b0f5 579 if (info.control.vif) {
8ca151b5 580 struct iwl_mvm_vif *mvmvif =
5c08b0f5 581 iwl_mvm_vif_from_mac80211(info.control.vif);
d0ab08d0 582
5c08b0f5 583 if (info.control.vif->type == NL80211_IFTYPE_P2P_DEVICE ||
de24f638 584 info.control.vif->type == NL80211_IFTYPE_AP) {
d0ab08d0 585 sta_id = mvmvif->bcast_sta.sta_id;
de24f638
LK
586 queue = iwl_mvm_get_ctrl_vif_queue(mvm, &info,
587 hdr->frame_control);
3ee0f0e2
SS
588 if (queue < 0)
589 return -1;
590
de24f638
LK
591 } else if (info.control.vif->type == NL80211_IFTYPE_STATION &&
592 is_multicast_ether_addr(hdr->addr1)) {
d0ab08d0
IP
593 u8 ap_sta_id = ACCESS_ONCE(mvmvif->ap_sta_id);
594
595 if (ap_sta_id != IWL_MVM_STATION_COUNT)
596 sta_id = ap_sta_id;
e3118ad7 597 } else if (iwl_mvm_is_dqa_supported(mvm) &&
6574dc94
BL
598 info.control.vif->type == NL80211_IFTYPE_STATION &&
599 queue != mvm->aux_queue) {
e3118ad7 600 queue = IWL_MVM_DQA_BSS_CLIENT_QUEUE;
d0ab08d0 601 }
8ca151b5
JB
602 }
603
de24f638 604 IWL_DEBUG_TX(mvm, "station Id %d, queue=%d\n", sta_id, queue);
8ca151b5 605
5c08b0f5 606 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, &info, hdrlen, NULL, sta_id);
8ca151b5
JB
607 if (!dev_cmd)
608 return -1;
609
bd05a5bd
JB
610 /* From now on, we cannot access info->control */
611 iwl_mvm_skb_prepare_status(skb, dev_cmd);
612
8ca151b5
JB
613 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
614
615 /* Copy MAC header from skb into command buffer */
ca8c0f4b 616 memcpy(tx_cmd->hdr, hdr, hdrlen);
8ca151b5 617
de24f638 618 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, queue)) {
8ca151b5
JB
619 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
620 return -1;
621 }
622
fb896c44
LK
623 /*
624 * Increase the pending frames counter, so that later when a reply comes
625 * in and the counter is decreased - we don't start getting negative
626 * values.
627 * Note that we don't need to make sure it isn't agg'd, since we're
628 * TXing non-sta
629 */
630 atomic_inc(&mvm->pending_frames[sta_id]);
631
8ca151b5
JB
632 return 0;
633}
634
a6d5e32f
EG
635#ifdef CONFIG_INET
636static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
5c08b0f5 637 struct ieee80211_tx_info *info,
a3713f8b
EG
638 struct ieee80211_sta *sta,
639 struct sk_buff_head *mpdus_skb)
640{
bb81bb68 641 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
a6d5e32f
EG
642 struct ieee80211_hdr *hdr = (void *)skb->data;
643 unsigned int mss = skb_shinfo(skb)->gso_size;
a3713f8b 644 struct sk_buff *tmp, *next;
a6d5e32f 645 char cb[sizeof(skb->cb)];
bb81bb68 646 unsigned int num_subframes, tcp_payload_len, subf_len, max_amsdu_len;
a6d5e32f
EG
647 bool ipv4 = (skb->protocol == htons(ETH_P_IP));
648 u16 ip_base_id = ipv4 ? ntohs(ip_hdr(skb)->id) : 0;
05e5a7e5 649 u16 snap_ip_tcp, pad, i = 0;
9e7dce28 650 unsigned int dbg_max_amsdu_len;
5e6a98dc 651 netdev_features_t netdev_features = NETIF_F_CSUM_MASK | NETIF_F_SG;
50b0213f 652 u8 *qc, tid, txf;
a6d5e32f
EG
653
654 snap_ip_tcp = 8 + skb_transport_header(skb) - skb_network_header(skb) +
655 tcp_hdrlen(skb);
656
bb81bb68
EG
657 qc = ieee80211_get_qos_ctl(hdr);
658 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
659 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
660 return -EINVAL;
661
fa820d69
EG
662 dbg_max_amsdu_len = ACCESS_ONCE(mvm->max_amsdu_len);
663
a6d5e32f 664 if (!sta->max_amsdu_len ||
04e3a5da 665 !ieee80211_is_data_qos(hdr->frame_control) ||
fa820d69 666 (!mvmsta->tlc_amsdu && !dbg_max_amsdu_len)) {
a6d5e32f
EG
667 num_subframes = 1;
668 pad = 0;
669 goto segment;
670 }
671
5e6a98dc
SS
672 /*
673 * Do not build AMSDU for IPv6 with extension headers.
674 * ask stack to segment and checkum the generated MPDUs for us.
675 */
676 if (skb->protocol == htons(ETH_P_IPV6) &&
677 ((struct ipv6hdr *)skb_network_header(skb))->nexthdr !=
678 IPPROTO_TCP) {
679 num_subframes = 1;
680 pad = 0;
681 netdev_features &= ~NETIF_F_CSUM_MASK;
682 goto segment;
683 }
684
bb81bb68
EG
685 /*
686 * No need to lock amsdu_in_ampdu_allowed since it can't be modified
687 * during an BA session.
688 */
689 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
690 !mvmsta->tid_data[tid].amsdu_in_ampdu_allowed) {
a6d5e32f
EG
691 num_subframes = 1;
692 pad = 0;
693 goto segment;
694 }
695
bb81bb68 696 max_amsdu_len = sta->max_amsdu_len;
50b0213f
EG
697
698 /* the Tx FIFO to which this A-MSDU will be routed */
699 txf = iwl_mvm_ac_to_tx_fifo[tid_to_mac80211_ac[tid]];
700
701 /*
702 * Don't send an AMSDU that will be longer than the TXF.
703 * Add a security margin of 256 for the TX command + headers.
704 * We also want to have the start of the next packet inside the
705 * fifo to be able to send bursts.
706 */
707 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
708 mvm->shared_mem_cfg.txfifo_size[txf] - 256);
709
fa820d69 710 if (unlikely(dbg_max_amsdu_len))
9e7dce28
EG
711 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
712 dbg_max_amsdu_len);
bb81bb68
EG
713
714 /*
715 * Limit A-MSDU in A-MPDU to 4095 bytes when VHT is not
716 * supported. This is a spec requirement (IEEE 802.11-2015
717 * section 8.7.3 NOTE 3).
718 */
719 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
720 !sta->vht_cap.vht_supported)
721 max_amsdu_len = min_t(unsigned int, max_amsdu_len, 4095);
722
a6d5e32f
EG
723 /* Sub frame header + SNAP + IP header + TCP header + MSS */
724 subf_len = sizeof(struct ethhdr) + snap_ip_tcp + mss;
725 pad = (4 - subf_len) & 0x3;
726
727 /*
728 * If we have N subframes in the A-MSDU, then the A-MSDU's size is
729 * N * subf_len + (N - 1) * pad.
730 */
bb81bb68
EG
731 num_subframes = (max_amsdu_len + pad) / (subf_len + pad);
732 if (num_subframes > 1)
a6d5e32f 733 *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
a6d5e32f
EG
734
735 tcp_payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
736 tcp_hdrlen(skb) + skb->data_len;
737
738 /*
739 * Make sure we have enough TBs for the A-MSDU:
740 * 2 for each subframe
741 * 1 more for each fragment
742 * 1 more for the potential data in the header
743 */
744 num_subframes =
745 min_t(unsigned int, num_subframes,
746 (mvm->trans->max_skb_frags - 1 -
747 skb_shinfo(skb)->nr_frags) / 2);
748
749 /* This skb fits in one single A-MSDU */
750 if (num_subframes * mss >= tcp_payload_len) {
a6d5e32f
EG
751 __skb_queue_tail(mpdus_skb, skb);
752 return 0;
753 }
a3713f8b 754
a6d5e32f
EG
755 /*
756 * Trick the segmentation function to make it
757 * create SKBs that can fit into one A-MSDU.
758 */
759segment:
760 skb_shinfo(skb)->gso_size = num_subframes * mss;
761 memcpy(cb, skb->cb, sizeof(cb));
762
5e6a98dc 763 next = skb_gso_segment(skb, netdev_features);
a6d5e32f
EG
764 skb_shinfo(skb)->gso_size = mss;
765 if (WARN_ON_ONCE(IS_ERR(next)))
a3713f8b
EG
766 return -EINVAL;
767 else if (next)
a6d5e32f 768 consume_skb(skb);
a3713f8b
EG
769
770 while (next) {
771 tmp = next;
772 next = tmp->next;
a6d5e32f 773
a3713f8b 774 memcpy(tmp->cb, cb, sizeof(tmp->cb));
a6d5e32f
EG
775 /*
776 * Compute the length of all the data added for the A-MSDU.
777 * This will be used to compute the length to write in the TX
778 * command. We have: SNAP + IP + TCP for n -1 subframes and
779 * ETH header for n subframes.
780 */
781 tcp_payload_len = skb_tail_pointer(tmp) -
782 skb_transport_header(tmp) -
783 tcp_hdrlen(tmp) + tmp->data_len;
784
785 if (ipv4)
786 ip_hdr(tmp)->id = htons(ip_base_id + i * num_subframes);
787
788 if (tcp_payload_len > mss) {
a6d5e32f
EG
789 skb_shinfo(tmp)->gso_size = mss;
790 } else {
bb81bb68 791 qc = ieee80211_get_qos_ctl((void *)tmp->data);
a6d5e32f
EG
792
793 if (ipv4)
794 ip_send_check(ip_hdr(tmp));
795 *qc &= ~IEEE80211_QOS_CTL_A_MSDU_PRESENT;
796 skb_shinfo(tmp)->gso_size = 0;
797 }
a3713f8b
EG
798
799 tmp->prev = NULL;
800 tmp->next = NULL;
801
802 __skb_queue_tail(mpdus_skb, tmp);
a6d5e32f 803 i++;
a3713f8b
EG
804 }
805
806 return 0;
807}
a6d5e32f
EG
808#else /* CONFIG_INET */
809static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
5c08b0f5 810 struct ieee80211_tx_info *info,
a6d5e32f
EG
811 struct ieee80211_sta *sta,
812 struct sk_buff_head *mpdus_skb)
813{
814 /* Impossible to get TSO with CONFIG_INET */
815 WARN_ON(1);
816
817 return -1;
818}
819#endif
a3713f8b 820
24afba76
LK
821static void iwl_mvm_tx_add_stream(struct iwl_mvm *mvm,
822 struct iwl_mvm_sta *mvm_sta, u8 tid,
823 struct sk_buff *skb)
824{
825 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
826 u8 mac_queue = info->hw_queue;
827 struct sk_buff_head *deferred_tx_frames;
828
829 lockdep_assert_held(&mvm_sta->lock);
830
831 mvm_sta->deferred_traffic_tid_map |= BIT(tid);
832 set_bit(mvm_sta->sta_id, mvm->sta_deferred_frames);
833
834 deferred_tx_frames = &mvm_sta->tid_data[tid].deferred_tx_frames;
835
836 skb_queue_tail(deferred_tx_frames, skb);
837
838 /*
839 * The first deferred frame should've stopped the MAC queues, so we
840 * should never get a second deferred frame for the RA/TID.
841 */
842 if (!WARN(skb_queue_len(deferred_tx_frames) != 1,
843 "RATID %d/%d has %d deferred frames\n", mvm_sta->sta_id, tid,
844 skb_queue_len(deferred_tx_frames))) {
845 iwl_mvm_stop_mac_queues(mvm, BIT(mac_queue));
846 schedule_work(&mvm->add_stream_wk);
847 }
848}
849
9f9af3d7
LK
850/* Check if there are any timed-out TIDs on a given shared TXQ */
851static bool iwl_mvm_txq_should_update(struct iwl_mvm *mvm, int txq_id)
852{
853 unsigned long queue_tid_bitmap = mvm->queue_info[txq_id].tid_bitmap;
854 unsigned long now = jiffies;
855 int tid;
856
857 for_each_set_bit(tid, &queue_tid_bitmap, IWL_MAX_TID_COUNT + 1) {
858 if (time_before(mvm->queue_info[txq_id].last_frame_time[tid] +
859 IWL_MVM_DQA_QUEUE_TIMEOUT, now))
860 return true;
861 }
862
863 return false;
864}
865
8ca151b5
JB
866/*
867 * Sets the fields in the Tx cmd that are crypto related
868 */
a3713f8b 869static int iwl_mvm_tx_mpdu(struct iwl_mvm *mvm, struct sk_buff *skb,
5c08b0f5 870 struct ieee80211_tx_info *info,
a3713f8b 871 struct ieee80211_sta *sta)
8ca151b5
JB
872{
873 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
8ca151b5
JB
874 struct iwl_mvm_sta *mvmsta;
875 struct iwl_device_cmd *dev_cmd;
876 struct iwl_tx_cmd *tx_cmd;
877 __le16 fc;
878 u16 seq_number = 0;
879 u8 tid = IWL_MAX_TID_COUNT;
880 u8 txq_id = info->hw_queue;
7ec54716 881 bool is_ampdu = false;
ca8c0f4b 882 int hdrlen;
8ca151b5 883
5b577a90 884 mvmsta = iwl_mvm_sta_from_mac80211(sta);
8ca151b5 885 fc = hdr->frame_control;
ca8c0f4b 886 hdrlen = ieee80211_hdrlen(fc);
8ca151b5
JB
887
888 if (WARN_ON_ONCE(!mvmsta))
889 return -1;
890
881acd89 891 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
8ca151b5
JB
892 return -1;
893
5c08b0f5
EG
894 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, info, hdrlen,
895 sta, mvmsta->sta_id);
8ca151b5
JB
896 if (!dev_cmd)
897 goto drop;
898
899 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
8ca151b5 900
3e56eadf
JB
901 /*
902 * we handle that entirely ourselves -- for uAPSD the firmware
903 * will always send a notification, and for PS-Poll responses
904 * we'll notify mac80211 when getting frame status
905 */
906 info->flags &= ~IEEE80211_TX_STATUS_EOSP;
907
8ca151b5
JB
908 spin_lock(&mvmsta->lock);
909
910 if (ieee80211_is_data_qos(fc) && !ieee80211_is_qos_nullfunc(fc)) {
911 u8 *qc = NULL;
912 qc = ieee80211_get_qos_ctl(hdr);
913 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
914 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
915 goto drop_unlock_sta;
916
917 seq_number = mvmsta->tid_data[tid].seq_number;
918 seq_number &= IEEE80211_SCTL_SEQ;
919 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
920 hdr->seq_ctrl |= cpu_to_le16(seq_number);
8ca151b5 921 is_ampdu = info->flags & IEEE80211_TX_CTL_AMPDU;
24afba76
LK
922 } else if (iwl_mvm_is_dqa_supported(mvm) &&
923 (ieee80211_is_qos_nullfunc(fc) ||
924 ieee80211_is_nullfunc(fc))) {
925 /*
926 * nullfunc frames should go to the MGMT queue regardless of QOS
927 */
928 tid = IWL_MAX_TID_COUNT;
8ca151b5
JB
929 }
930
7585c354 931 if (iwl_mvm_is_dqa_supported(mvm)) {
9794c64f
LK
932 txq_id = mvmsta->tid_data[tid].txq_id;
933
7585c354
LK
934 if (ieee80211_is_mgmt(fc))
935 tx_cmd->tid_tspec = IWL_TID_NON_QOS;
936 }
937
8ca151b5 938 /* Copy MAC header from skb into command buffer */
ca8c0f4b 939 memcpy(tx_cmd->hdr, hdr, hdrlen);
8ca151b5
JB
940
941 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM);
942
e3118ad7 943 if (sta->tdls && !iwl_mvm_is_dqa_supported(mvm)) {
a0f6bf2a
AN
944 /* default to TID 0 for non-QoS packets */
945 u8 tdls_tid = tid == IWL_MAX_TID_COUNT ? 0 : tid;
946
947 txq_id = mvmsta->hw_queue[tid_to_mac80211_ac[tdls_tid]];
948 }
949
8ca151b5
JB
950 if (is_ampdu) {
951 if (WARN_ON_ONCE(mvmsta->tid_data[tid].state != IWL_AGG_ON))
952 goto drop_unlock_sta;
953 txq_id = mvmsta->tid_data[tid].txq_id;
954 }
955
9794c64f
LK
956 /* Check if TXQ needs to be allocated or re-activated */
957 if (unlikely(txq_id == IEEE80211_INVAL_HW_QUEUE ||
958 !mvmsta->tid_data[tid].is_tid_active) &&
959 iwl_mvm_is_dqa_supported(mvm)) {
960 /* If TXQ needs to be allocated... */
961 if (txq_id == IEEE80211_INVAL_HW_QUEUE) {
24afba76
LK
962 iwl_mvm_tx_add_stream(mvm, mvmsta, tid, skb);
963
964 /*
965 * The frame is now deferred, and the worker scheduled
966 * will re-allocate it, so we can free it for now.
967 */
968 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
969 spin_unlock(&mvmsta->lock);
970 return 0;
971 }
972
9794c64f
LK
973 /* If we are here - TXQ exists and needs to be re-activated */
974 spin_lock(&mvm->queue_info_lock);
975 mvm->queue_info[txq_id].status = IWL_MVM_QUEUE_READY;
976 mvmsta->tid_data[tid].is_tid_active = true;
977 spin_unlock(&mvm->queue_info_lock);
978
979 IWL_DEBUG_TX_QUEUES(mvm, "Re-activating queue %d for TX\n",
980 txq_id);
24afba76
LK
981 }
982
9f9af3d7
LK
983 if (iwl_mvm_is_dqa_supported(mvm)) {
984 /* Keep track of the time of the last frame for this RA/TID */
985 mvm->queue_info[txq_id].last_frame_time[tid] = jiffies;
986
987 /*
988 * If we have timed-out TIDs - schedule the worker that will
989 * reconfig the queues and update them
990 *
991 * Note that the mvm->queue_info_lock isn't being taken here in
992 * order to not serialize the TX flow. This isn't dangerous
993 * because scheduling mvm->add_stream_wk can't ruin the state,
994 * and if we DON'T schedule it due to some race condition then
995 * next TX we get here we will.
996 */
997 if (unlikely(mvm->queue_info[txq_id].status ==
998 IWL_MVM_QUEUE_SHARED &&
999 iwl_mvm_txq_should_update(mvm, txq_id)))
1000 schedule_work(&mvm->add_stream_wk);
1001 }
9794c64f 1002
8ca151b5 1003 IWL_DEBUG_TX(mvm, "TX to [%d|%d] Q:%d - seq: 0x%x\n", mvmsta->sta_id,
cf9d1188 1004 tid, txq_id, IEEE80211_SEQ_TO_SN(seq_number));
8ca151b5 1005
bd05a5bd
JB
1006 /* From now on, we cannot access info->control */
1007 iwl_mvm_skb_prepare_status(skb, dev_cmd);
1008
8ca151b5
JB
1009 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, txq_id))
1010 goto drop_unlock_sta;
1011
7ec54716 1012 if (tid < IWL_MAX_TID_COUNT && !ieee80211_has_morefrags(fc))
cf9d1188 1013 mvmsta->tid_data[tid].seq_number = seq_number + 0x10;
8ca151b5
JB
1014
1015 spin_unlock(&mvmsta->lock);
1016
cf961e16 1017 /* Increase pending frames count if this isn't AMPDU */
94c3e614
SS
1018 if ((iwl_mvm_is_dqa_supported(mvm) &&
1019 mvmsta->tid_data[tx_cmd->tid_tspec].state != IWL_AGG_ON &&
1020 mvmsta->tid_data[tx_cmd->tid_tspec].state != IWL_AGG_STARTING) ||
1021 (!iwl_mvm_is_dqa_supported(mvm) && !is_ampdu))
e3d4bc8c 1022 atomic_inc(&mvm->pending_frames[mvmsta->sta_id]);
8ca151b5
JB
1023
1024 return 0;
1025
1026drop_unlock_sta:
1027 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
1028 spin_unlock(&mvmsta->lock);
1029drop:
1030 return -1;
1031}
1032
a3713f8b
EG
1033int iwl_mvm_tx_skb(struct iwl_mvm *mvm, struct sk_buff *skb,
1034 struct ieee80211_sta *sta)
1035{
1036 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
5c08b0f5 1037 struct ieee80211_tx_info info;
a3713f8b
EG
1038 struct sk_buff_head mpdus_skbs;
1039 unsigned int payload_len;
1040 int ret;
1041
1042 if (WARN_ON_ONCE(!mvmsta))
1043 return -1;
1044
1045 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
1046 return -1;
1047
5c08b0f5
EG
1048 memcpy(&info, skb->cb, sizeof(info));
1049
a3713f8b 1050 if (!skb_is_gso(skb))
5c08b0f5 1051 return iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
a3713f8b
EG
1052
1053 payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
1054 tcp_hdrlen(skb) + skb->data_len;
1055
1056 if (payload_len <= skb_shinfo(skb)->gso_size)
5c08b0f5 1057 return iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
a3713f8b
EG
1058
1059 __skb_queue_head_init(&mpdus_skbs);
1060
5c08b0f5 1061 ret = iwl_mvm_tx_tso(mvm, skb, &info, sta, &mpdus_skbs);
a3713f8b
EG
1062 if (ret)
1063 return ret;
1064
1065 if (WARN_ON(skb_queue_empty(&mpdus_skbs)))
1066 return ret;
1067
1068 while (!skb_queue_empty(&mpdus_skbs)) {
a6d5e32f 1069 skb = __skb_dequeue(&mpdus_skbs);
a3713f8b 1070
5c08b0f5 1071 ret = iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
a3713f8b
EG
1072 if (ret) {
1073 __skb_queue_purge(&mpdus_skbs);
1074 return ret;
1075 }
1076 }
1077
1078 return 0;
1079}
1080
8ca151b5
JB
1081static void iwl_mvm_check_ratid_empty(struct iwl_mvm *mvm,
1082 struct ieee80211_sta *sta, u8 tid)
1083{
5b577a90 1084 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
8ca151b5
JB
1085 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
1086 struct ieee80211_vif *vif = mvmsta->vif;
1087
1088 lockdep_assert_held(&mvmsta->lock);
1089
3e56eadf
JB
1090 if ((tid_data->state == IWL_AGG_ON ||
1091 tid_data->state == IWL_EMPTYING_HW_QUEUE_DELBA) &&
1092 iwl_mvm_tid_queued(tid_data) == 0) {
1093 /*
1094 * Now that this aggregation queue is empty tell mac80211 so it
1095 * knows we no longer have frames buffered for the station on
1096 * this TID (for the TIM bitmap calculation.)
1097 */
1098 ieee80211_sta_set_buffered(sta, tid, false);
1099 }
1100
8ca151b5
JB
1101 if (tid_data->ssn != tid_data->next_reclaimed)
1102 return;
1103
1104 switch (tid_data->state) {
1105 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1106 IWL_DEBUG_TX_QUEUES(mvm,
1107 "Can continue addBA flow ssn = next_recl = %d\n",
1108 tid_data->next_reclaimed);
1109 tid_data->state = IWL_AGG_STARTING;
1110 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1111 break;
1112
1113 case IWL_EMPTYING_HW_QUEUE_DELBA:
1114 IWL_DEBUG_TX_QUEUES(mvm,
1115 "Can continue DELBA flow ssn = next_recl = %d\n",
1116 tid_data->next_reclaimed);
15985fba
LK
1117 if (!iwl_mvm_is_dqa_supported(mvm)) {
1118 u8 mac80211_ac = tid_to_mac80211_ac[tid];
1119
1120 iwl_mvm_disable_txq(mvm, tid_data->txq_id,
1121 vif->hw_queue[mac80211_ac], tid,
1122 CMD_ASYNC);
1123 }
8ca151b5 1124 tid_data->state = IWL_AGG_OFF;
8ca151b5
JB
1125 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1126 break;
1127
1128 default:
1129 break;
1130 }
1131}
1132
1133#ifdef CONFIG_IWLWIFI_DEBUG
1134const char *iwl_mvm_get_tx_fail_reason(u32 status)
1135{
1136#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
1137#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
1138
1139 switch (status & TX_STATUS_MSK) {
1140 case TX_STATUS_SUCCESS:
1141 return "SUCCESS";
1142 TX_STATUS_POSTPONE(DELAY);
1143 TX_STATUS_POSTPONE(FEW_BYTES);
1144 TX_STATUS_POSTPONE(BT_PRIO);
1145 TX_STATUS_POSTPONE(QUIET_PERIOD);
1146 TX_STATUS_POSTPONE(CALC_TTAK);
1147 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
1148 TX_STATUS_FAIL(SHORT_LIMIT);
1149 TX_STATUS_FAIL(LONG_LIMIT);
1150 TX_STATUS_FAIL(UNDERRUN);
1151 TX_STATUS_FAIL(DRAIN_FLOW);
1152 TX_STATUS_FAIL(RFKILL_FLUSH);
1153 TX_STATUS_FAIL(LIFE_EXPIRE);
1154 TX_STATUS_FAIL(DEST_PS);
1155 TX_STATUS_FAIL(HOST_ABORTED);
1156 TX_STATUS_FAIL(BT_RETRY);
1157 TX_STATUS_FAIL(STA_INVALID);
1158 TX_STATUS_FAIL(FRAG_DROPPED);
1159 TX_STATUS_FAIL(TID_DISABLE);
1160 TX_STATUS_FAIL(FIFO_FLUSHED);
1161 TX_STATUS_FAIL(SMALL_CF_POLL);
1162 TX_STATUS_FAIL(FW_DROP);
1163 TX_STATUS_FAIL(STA_COLOR_MISMATCH);
1164 }
1165
1166 return "UNKNOWN";
1167
1168#undef TX_STATUS_FAIL
1169#undef TX_STATUS_POSTPONE
1170}
1171#endif /* CONFIG_IWLWIFI_DEBUG */
1172
d310e405 1173void iwl_mvm_hwrate_to_tx_rate(u32 rate_n_flags,
57fbcce3 1174 enum nl80211_band band,
d310e405 1175 struct ieee80211_tx_rate *r)
8ca151b5 1176{
8ca151b5
JB
1177 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
1178 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
1179 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
1180 case RATE_MCS_CHAN_WIDTH_20:
1181 break;
1182 case RATE_MCS_CHAN_WIDTH_40:
1183 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
1184 break;
1185 case RATE_MCS_CHAN_WIDTH_80:
1186 r->flags |= IEEE80211_TX_RC_80_MHZ_WIDTH;
1187 break;
1188 case RATE_MCS_CHAN_WIDTH_160:
1189 r->flags |= IEEE80211_TX_RC_160_MHZ_WIDTH;
1190 break;
1191 }
1192 if (rate_n_flags & RATE_MCS_SGI_MSK)
1193 r->flags |= IEEE80211_TX_RC_SHORT_GI;
1194 if (rate_n_flags & RATE_MCS_HT_MSK) {
1195 r->flags |= IEEE80211_TX_RC_MCS;
1196 r->idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
1197 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
1198 ieee80211_rate_set_vht(
1199 r, rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK,
1200 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
1201 RATE_VHT_MCS_NSS_POS) + 1);
1202 r->flags |= IEEE80211_TX_RC_VHT_MCS;
1203 } else {
1204 r->idx = iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
d310e405 1205 band);
8ca151b5
JB
1206 }
1207}
1208
d310e405
ES
1209/**
1210 * translate ucode response to mac80211 tx status control values
1211 */
1212static void iwl_mvm_hwrate_to_tx_status(u32 rate_n_flags,
1213 struct ieee80211_tx_info *info)
1214{
1215 struct ieee80211_tx_rate *r = &info->status.rates[0];
1216
1217 info->status.antenna =
1218 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
1219 iwl_mvm_hwrate_to_tx_rate(rate_n_flags, info->band, r);
1220}
1221
25657fec
GBA
1222static void iwl_mvm_tx_status_check_trigger(struct iwl_mvm *mvm,
1223 u32 status)
1224{
1225 struct iwl_fw_dbg_trigger_tlv *trig;
1226 struct iwl_fw_dbg_trigger_tx_status *status_trig;
1227 int i;
1228
1229 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TX_STATUS))
1230 return;
1231
1232 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TX_STATUS);
1233 status_trig = (void *)trig->data;
1234
1235 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
1236 return;
1237
1238 for (i = 0; i < ARRAY_SIZE(status_trig->statuses); i++) {
1239 /* don't collect on status 0 */
1240 if (!status_trig->statuses[i].status)
1241 break;
1242
1243 if (status_trig->statuses[i].status != (status & TX_STATUS_MSK))
1244 continue;
1245
1246 iwl_mvm_fw_dbg_collect_trig(mvm, trig,
1247 "Tx status %d was received",
1248 status & TX_STATUS_MSK);
1249 break;
1250 }
1251}
1252
8ca151b5
JB
1253static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm,
1254 struct iwl_rx_packet *pkt)
1255{
1256 struct ieee80211_sta *sta;
1257 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1258 int txq_id = SEQ_TO_QUEUE(sequence);
1259 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1260 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1261 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
1262 u32 status = le16_to_cpu(tx_resp->status.status);
1263 u16 ssn = iwl_mvm_get_scd_ssn(tx_resp);
1264 struct iwl_mvm_sta *mvmsta;
1265 struct sk_buff_head skbs;
1266 u8 skb_freed = 0;
1267 u16 next_reclaimed, seq_ctl;
532beba3 1268 bool is_ndp = false;
cf961e16 1269 bool txq_agg = false; /* Is this TXQ aggregated */
8ca151b5
JB
1270
1271 __skb_queue_head_init(&skbs);
1272
1273 seq_ctl = le16_to_cpu(tx_resp->seq_ctl);
1274
1275 /* we can free until ssn % q.n_bd not inclusive */
1276 iwl_trans_reclaim(mvm->trans, txq_id, ssn, &skbs);
1277
1278 while (!skb_queue_empty(&skbs)) {
1279 struct sk_buff *skb = __skb_dequeue(&skbs);
1280 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1281
1282 skb_freed++;
1283
1284 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1285
1286 memset(&info->status, 0, sizeof(info->status));
1287
1288 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
1289
1290 /* inform mac80211 about what happened with the frame */
1291 switch (status & TX_STATUS_MSK) {
1292 case TX_STATUS_SUCCESS:
1293 case TX_STATUS_DIRECT_DONE:
1294 info->flags |= IEEE80211_TX_STAT_ACK;
1295 break;
1296 case TX_STATUS_FAIL_DEST_PS:
1297 info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1298 break;
1299 default:
1300 break;
1301 }
1302
25657fec
GBA
1303 iwl_mvm_tx_status_check_trigger(mvm, status);
1304
8ca151b5 1305 info->status.rates[0].count = tx_resp->failure_frame + 1;
d310e405
ES
1306 iwl_mvm_hwrate_to_tx_status(le32_to_cpu(tx_resp->initial_rate),
1307 info);
929e6ede
ES
1308 info->status.status_driver_data[1] =
1309 (void *)(uintptr_t)le32_to_cpu(tx_resp->initial_rate);
8ca151b5
JB
1310
1311 /* Single frame failure in an AMPDU queue => send BAR */
19e737c9 1312 if (txq_id >= mvm->first_agg_queue &&
9ce578a5
ES
1313 !(info->flags & IEEE80211_TX_STAT_ACK) &&
1314 !(info->flags & IEEE80211_TX_STAT_TX_FILTERED))
8ca151b5 1315 info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
8ca151b5 1316
ebea2f32
EG
1317 /* W/A FW bug: seq_ctl is wrong when the status isn't success */
1318 if (status != TX_STATUS_SUCCESS) {
8ca151b5
JB
1319 struct ieee80211_hdr *hdr = (void *)skb->data;
1320 seq_ctl = le16_to_cpu(hdr->seq_ctrl);
1321 }
1322
532beba3
EG
1323 if (unlikely(!seq_ctl)) {
1324 struct ieee80211_hdr *hdr = (void *)skb->data;
1325
1326 /*
1327 * If it is an NDP, we can't update next_reclaim since
1328 * its sequence control is 0. Note that for that same
1329 * reason, NDPs are never sent to A-MPDU'able queues
1330 * so that we can never have more than one freed frame
1331 * for a single Tx resonse (see WARN_ON below).
1332 */
1333 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
1334 is_ndp = true;
1335 }
1336
9b5452fd
EG
1337 /*
1338 * TODO: this is not accurate if we are freeing more than one
1339 * packet.
1340 */
1341 info->status.tx_time =
1342 le16_to_cpu(tx_resp->wireless_media_time);
3a84b69e
EP
1343 BUILD_BUG_ON(ARRAY_SIZE(info->status.status_driver_data) < 1);
1344 info->status.status_driver_data[0] =
1345 (void *)(uintptr_t)tx_resp->reduced_tpc;
1346
f14d6b39 1347 ieee80211_tx_status(mvm->hw, skb);
8ca151b5
JB
1348 }
1349
19e737c9 1350 if (txq_id >= mvm->first_agg_queue) {
8ca151b5
JB
1351 /* If this is an aggregation queue, we use the ssn since:
1352 * ssn = wifi seq_num % 256.
1353 * The seq_ctl is the sequence control of the packet to which
1354 * this Tx response relates. But if there is a hole in the
1355 * bitmap of the BA we received, this Tx response may allow to
1356 * reclaim the hole and all the subsequent packets that were
1357 * already acked. In that case, seq_ctl != ssn, and the next
1358 * packet to be reclaimed will be ssn and not seq_ctl. In that
1359 * case, several packets will be reclaimed even if
1360 * frame_count = 1.
1361 *
1362 * The ssn is the index (% 256) of the latest packet that has
1363 * treated (acked / dropped) + 1.
1364 */
1365 next_reclaimed = ssn;
1366 } else {
1367 /* The next packet to be reclaimed is the one after this one */
9a886586 1368 next_reclaimed = IEEE80211_SEQ_TO_SN(seq_ctl + 0x10);
8ca151b5
JB
1369 }
1370
1371 IWL_DEBUG_TX_REPLY(mvm,
8c6e83d6
EG
1372 "TXQ %d status %s (0x%08x)\n",
1373 txq_id, iwl_mvm_get_tx_fail_reason(status), status);
1374
1375 IWL_DEBUG_TX_REPLY(mvm,
1376 "\t\t\t\tinitial_rate 0x%x retries %d, idx=%d ssn=%d next_reclaimed=0x%x seq_ctl=0x%x\n",
1377 le32_to_cpu(tx_resp->initial_rate),
8ca151b5
JB
1378 tx_resp->failure_frame, SEQ_TO_INDEX(sequence),
1379 ssn, next_reclaimed, seq_ctl);
1380
1381 rcu_read_lock();
1382
1383 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
9bb0c1ad
EG
1384 /*
1385 * sta can't be NULL otherwise it'd mean that the sta has been freed in
1386 * the firmware while we still have packets for it in the Tx queues.
1387 */
1388 if (WARN_ON_ONCE(!sta))
1389 goto out;
8ca151b5 1390
9bb0c1ad 1391 if (!IS_ERR(sta)) {
5b577a90 1392 mvmsta = iwl_mvm_sta_from_mac80211(sta);
8ca151b5
JB
1393
1394 if (tid != IWL_TID_NON_QOS) {
1395 struct iwl_mvm_tid_data *tid_data =
1396 &mvmsta->tid_data[tid];
36be0eb6 1397 bool send_eosp_ndp = false;
8ca151b5 1398
2bfb5092 1399 spin_lock_bh(&mvmsta->lock);
2c4a247e
OG
1400 if (iwl_mvm_is_dqa_supported(mvm)) {
1401 enum iwl_mvm_agg_state state;
1402
1403 state = mvmsta->tid_data[tid].state;
1404 txq_agg = (state == IWL_AGG_ON ||
1405 state == IWL_EMPTYING_HW_QUEUE_DELBA);
1406 } else {
1407 txq_agg = txq_id >= mvm->first_agg_queue;
1408 }
cf961e16 1409
532beba3
EG
1410 if (!is_ndp) {
1411 tid_data->next_reclaimed = next_reclaimed;
1412 IWL_DEBUG_TX_REPLY(mvm,
1413 "Next reclaimed packet:%d\n",
1414 next_reclaimed);
1415 } else {
1416 IWL_DEBUG_TX_REPLY(mvm,
1417 "NDP - don't update next_reclaimed\n");
1418 }
1419
8ca151b5 1420 iwl_mvm_check_ratid_empty(mvm, sta, tid);
36be0eb6
EG
1421
1422 if (mvmsta->sleep_tx_count) {
1423 mvmsta->sleep_tx_count--;
1424 if (mvmsta->sleep_tx_count &&
1425 !iwl_mvm_tid_queued(tid_data)) {
1426 /*
1427 * The number of frames in the queue
1428 * dropped to 0 even if we sent less
1429 * frames than we thought we had on the
1430 * Tx queue.
1431 * This means we had holes in the BA
1432 * window that we just filled, ask
1433 * mac80211 to send EOSP since the
1434 * firmware won't know how to do that.
1435 * Send NDP and the firmware will send
1436 * EOSP notification that will trigger
1437 * a call to ieee80211_sta_eosp().
1438 */
1439 send_eosp_ndp = true;
1440 }
1441 }
1442
2bfb5092 1443 spin_unlock_bh(&mvmsta->lock);
36be0eb6
EG
1444 if (send_eosp_ndp) {
1445 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta,
1446 IEEE80211_FRAME_RELEASE_UAPSD,
1447 1, tid, false, false);
1448 mvmsta->sleep_tx_count = 0;
1449 ieee80211_send_eosp_nullfunc(sta, tid);
1450 }
8ca151b5 1451 }
3e56eadf
JB
1452
1453 if (mvmsta->next_status_eosp) {
1454 mvmsta->next_status_eosp = false;
1455 ieee80211_sta_eosp(sta);
1456 }
8ca151b5 1457 } else {
8ca151b5
JB
1458 mvmsta = NULL;
1459 }
1460
1461 /*
1462 * If the txq is not an AMPDU queue, there is no chance we freed
1463 * several skbs. Check that out...
8ca151b5 1464 */
cf961e16 1465 if (txq_agg)
9bb0c1ad
EG
1466 goto out;
1467
1468 /* We can't free more than one frame at once on a shared queue */
cf961e16 1469 WARN_ON(!iwl_mvm_is_dqa_supported(mvm) && (skb_freed > 1));
9bb0c1ad 1470
589a6ba4 1471 /* If we have still frames for this STA nothing to do here */
9bb0c1ad
EG
1472 if (!atomic_sub_and_test(skb_freed, &mvm->pending_frames[sta_id]))
1473 goto out;
1474
1475 if (mvmsta && mvmsta->vif->type == NL80211_IFTYPE_AP) {
003e5236 1476
9bb0c1ad 1477 /*
003e5236
AO
1478 * If there are no pending frames for this STA and
1479 * the tx to this station is not disabled, notify
1480 * mac80211 that this station can now wake up in its
9bb0c1ad
EG
1481 * STA table.
1482 * If mvmsta is not NULL, sta is valid.
1483 */
003e5236
AO
1484
1485 spin_lock_bh(&mvmsta->lock);
1486
1487 if (!mvmsta->disable_tx)
1488 ieee80211_sta_block_awake(mvm->hw, sta, false);
1489
1490 spin_unlock_bh(&mvmsta->lock);
9bb0c1ad
EG
1491 }
1492
1493 if (PTR_ERR(sta) == -EBUSY || PTR_ERR(sta) == -ENOENT) {
1494 /*
1495 * We are draining and this was the last packet - pre_rcu_remove
1496 * has been called already. We might be after the
1497 * synchronize_net already.
1498 * Don't rely on iwl_mvm_rm_sta to see the empty Tx queues.
1499 */
1500 set_bit(sta_id, mvm->sta_drained);
1501 schedule_work(&mvm->sta_drained_wk);
8ca151b5
JB
1502 }
1503
9bb0c1ad 1504out:
8ca151b5
JB
1505 rcu_read_unlock();
1506}
1507
1508#ifdef CONFIG_IWLWIFI_DEBUG
1509#define AGG_TX_STATE_(x) case AGG_TX_STATE_ ## x: return #x
1510static const char *iwl_get_agg_tx_status(u16 status)
1511{
1512 switch (status & AGG_TX_STATE_STATUS_MSK) {
1513 AGG_TX_STATE_(TRANSMITTED);
1514 AGG_TX_STATE_(UNDERRUN);
1515 AGG_TX_STATE_(BT_PRIO);
1516 AGG_TX_STATE_(FEW_BYTES);
1517 AGG_TX_STATE_(ABORT);
1518 AGG_TX_STATE_(LAST_SENT_TTL);
1519 AGG_TX_STATE_(LAST_SENT_TRY_CNT);
1520 AGG_TX_STATE_(LAST_SENT_BT_KILL);
1521 AGG_TX_STATE_(SCD_QUERY);
1522 AGG_TX_STATE_(TEST_BAD_CRC32);
1523 AGG_TX_STATE_(RESPONSE);
1524 AGG_TX_STATE_(DUMP_TX);
1525 AGG_TX_STATE_(DELAY_TX);
1526 }
1527
1528 return "UNKNOWN";
1529}
1530
1531static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1532 struct iwl_rx_packet *pkt)
1533{
1534 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1535 struct agg_tx_status *frame_status = &tx_resp->status;
1536 int i;
1537
1538 for (i = 0; i < tx_resp->frame_count; i++) {
1539 u16 fstatus = le16_to_cpu(frame_status[i].status);
1540
1541 IWL_DEBUG_TX_REPLY(mvm,
1542 "status %s (0x%04x), try-count (%d) seq (0x%x)\n",
1543 iwl_get_agg_tx_status(fstatus),
1544 fstatus & AGG_TX_STATE_STATUS_MSK,
1545 (fstatus & AGG_TX_STATE_TRY_CNT_MSK) >>
1546 AGG_TX_STATE_TRY_CNT_POS,
1547 le16_to_cpu(frame_status[i].sequence));
1548 }
1549}
1550#else
1551static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1552 struct iwl_rx_packet *pkt)
1553{}
1554#endif /* CONFIG_IWLWIFI_DEBUG */
1555
1556static void iwl_mvm_rx_tx_cmd_agg(struct iwl_mvm *mvm,
1557 struct iwl_rx_packet *pkt)
1558{
1559 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1560 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1561 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
1562 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
13303c0f 1563 struct iwl_mvm_sta *mvmsta;
cf961e16 1564 int queue = SEQ_TO_QUEUE(sequence);
8ca151b5 1565
cf961e16
LK
1566 if (WARN_ON_ONCE(queue < mvm->first_agg_queue &&
1567 (!iwl_mvm_is_dqa_supported(mvm) ||
1568 (queue != IWL_MVM_DQA_BSS_CLIENT_QUEUE))))
8ca151b5
JB
1569 return;
1570
1571 if (WARN_ON_ONCE(tid == IWL_TID_NON_QOS))
1572 return;
1573
1574 iwl_mvm_rx_tx_cmd_agg_dbg(mvm, pkt);
1575
1576 rcu_read_lock();
1577
13303c0f 1578 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, sta_id);
8ca151b5 1579
13303c0f 1580 if (!WARN_ON_ONCE(!mvmsta)) {
8ca151b5
JB
1581 mvmsta->tid_data[tid].rate_n_flags =
1582 le32_to_cpu(tx_resp->initial_rate);
9b5452fd
EG
1583 mvmsta->tid_data[tid].tx_time =
1584 le16_to_cpu(tx_resp->wireless_media_time);
8ca151b5
JB
1585 }
1586
1587 rcu_read_unlock();
1588}
1589
0416841d 1590void iwl_mvm_rx_tx_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
8ca151b5
JB
1591{
1592 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1593 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1594
1595 if (tx_resp->frame_count == 1)
1596 iwl_mvm_rx_tx_cmd_single(mvm, pkt);
1597 else
1598 iwl_mvm_rx_tx_cmd_agg(mvm, pkt);
8ca151b5
JB
1599}
1600
c46e7724
SS
1601static void iwl_mvm_tx_reclaim(struct iwl_mvm *mvm, int sta_id, int tid,
1602 int txq, int index,
1603 struct ieee80211_tx_info *ba_info, u32 rate)
8ca151b5 1604{
8ca151b5
JB
1605 struct sk_buff_head reclaimed_skbs;
1606 struct iwl_mvm_tid_data *tid_data;
8ca151b5
JB
1607 struct ieee80211_sta *sta;
1608 struct iwl_mvm_sta *mvmsta;
8ca151b5 1609 struct sk_buff *skb;
c46e7724 1610 int freed;
8ca151b5 1611
2cee4762
ES
1612 if (WARN_ONCE(sta_id >= IWL_MVM_STATION_COUNT ||
1613 tid >= IWL_MAX_TID_COUNT,
1614 "sta_id %d tid %d", sta_id, tid))
0416841d 1615 return;
2cee4762 1616
8ca151b5
JB
1617 rcu_read_lock();
1618
1619 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
1620
1621 /* Reclaiming frames for a station that has been deleted ? */
1622 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta))) {
1623 rcu_read_unlock();
0416841d 1624 return;
8ca151b5
JB
1625 }
1626
5b577a90 1627 mvmsta = iwl_mvm_sta_from_mac80211(sta);
8ca151b5
JB
1628 tid_data = &mvmsta->tid_data[tid];
1629
c46e7724 1630 if (tid_data->txq_id != txq) {
1f16ea29 1631 IWL_ERR(mvm,
c46e7724
SS
1632 "invalid BA notification: Q %d, tid %d\n",
1633 tid_data->txq_id, tid);
8ca151b5 1634 rcu_read_unlock();
0416841d 1635 return;
8ca151b5
JB
1636 }
1637
2bfb5092 1638 spin_lock_bh(&mvmsta->lock);
8ca151b5
JB
1639
1640 __skb_queue_head_init(&reclaimed_skbs);
1641
1642 /*
1643 * Release all TFDs before the SSN, i.e. all TFDs in front of
1644 * block-ack window (we assume that they've been successfully
1645 * transmitted ... if not, it's too late anyway).
1646 */
c46e7724 1647 iwl_trans_reclaim(mvm->trans, txq, index, &reclaimed_skbs);
8ca151b5 1648
c46e7724 1649 tid_data->next_reclaimed = index;
8ca151b5
JB
1650
1651 iwl_mvm_check_ratid_empty(mvm, sta, tid);
1652
1653 freed = 0;
c46e7724 1654 ba_info->status.status_driver_data[1] = (void *)(uintptr_t)rate;
8ca151b5
JB
1655
1656 skb_queue_walk(&reclaimed_skbs, skb) {
143582c6
JB
1657 struct ieee80211_hdr *hdr = (void *)skb->data;
1658 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
8ca151b5
JB
1659
1660 if (ieee80211_is_data_qos(hdr->frame_control))
1661 freed++;
1662 else
1663 WARN_ON_ONCE(1);
1664
8ca151b5
JB
1665 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1666
143582c6
JB
1667 memset(&info->status, 0, sizeof(info->status));
1668 /* Packet was transmitted successfully, failures come as single
1669 * frames because before failing a frame the firmware transmits
1670 * it without aggregation at least once.
1671 */
1672 info->flags |= IEEE80211_TX_STAT_ACK;
1673
a7130442
ES
1674 /* this is the first skb we deliver in this batch */
1675 /* put the rate scaling data there */
c46e7724
SS
1676 if (freed == 1) {
1677 info->flags |= IEEE80211_TX_STAT_AMPDU;
1678 memcpy(&info->status, &ba_info->status,
1679 sizeof(ba_info->status));
1680 iwl_mvm_hwrate_to_tx_status(rate, info);
1681 }
8ca151b5
JB
1682 }
1683
2bfb5092 1684 spin_unlock_bh(&mvmsta->lock);
8ca151b5 1685
a7130442
ES
1686 /* We got a BA notif with 0 acked or scd_ssn didn't progress which is
1687 * possible (i.e. first MPDU in the aggregation wasn't acked)
1688 * Still it's important to update RS about sent vs. acked.
1689 */
1690 if (skb_queue_empty(&reclaimed_skbs)) {
a7130442
ES
1691 struct ieee80211_chanctx_conf *chanctx_conf = NULL;
1692
1693 if (mvmsta->vif)
1694 chanctx_conf =
1695 rcu_dereference(mvmsta->vif->chanctx_conf);
1696
1697 if (WARN_ON_ONCE(!chanctx_conf))
1698 goto out;
1699
c46e7724
SS
1700 ba_info->band = chanctx_conf->def.chan->band;
1701 iwl_mvm_hwrate_to_tx_status(rate, ba_info);
a7130442
ES
1702
1703 IWL_DEBUG_TX_REPLY(mvm, "No reclaim. Update rs directly\n");
c46e7724 1704 iwl_mvm_rs_tx_status(mvm, sta, tid, ba_info, false);
a7130442
ES
1705 }
1706
1707out:
8ca151b5
JB
1708 rcu_read_unlock();
1709
1710 while (!skb_queue_empty(&reclaimed_skbs)) {
1711 skb = __skb_dequeue(&reclaimed_skbs);
f14d6b39 1712 ieee80211_tx_status(mvm->hw, skb);
8ca151b5 1713 }
8ca151b5
JB
1714}
1715
c46e7724
SS
1716void iwl_mvm_rx_ba_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
1717{
1718 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1719 int sta_id, tid, txq, index;
1720 struct ieee80211_tx_info ba_info = {};
1721 struct iwl_mvm_ba_notif *ba_notif;
1722 struct iwl_mvm_tid_data *tid_data;
1723 struct iwl_mvm_sta *mvmsta;
1724
1725 if (iwl_mvm_has_new_tx_api(mvm)) {
1726 struct iwl_mvm_compressed_ba_notif *ba_res =
1727 (void *)pkt->data;
1728
1729 sta_id = ba_res->sta_id;
1730 ba_info.status.ampdu_ack_len = (u8)le16_to_cpu(ba_res->done);
1731 ba_info.status.ampdu_len = (u8)le16_to_cpu(ba_res->txed);
1732 ba_info.status.tx_time =
1733 (u16)le32_to_cpu(ba_res->wireless_time);
1734 ba_info.status.status_driver_data[0] =
1735 (void *)(uintptr_t)ba_res->reduced_txp;
1736
1737 /*
1738 * TODO:
1739 * When supporting multi TID aggregations - we need to move
1740 * next_reclaimed to be per TXQ and not per TID or handle it
1741 * in a different way.
1742 * This will go together with SN and AddBA offload and cannot
1743 * be handled properly for now.
1744 */
1745 WARN_ON(le16_to_cpu(ba_res->tfd_cnt) != 1);
1746 iwl_mvm_tx_reclaim(mvm, sta_id, ba_res->ra_tid[0].tid,
1747 (int)ba_res->tfd[0].q_num,
1748 le16_to_cpu(ba_res->tfd[0].tfd_index),
1749 &ba_info, le32_to_cpu(ba_res->tx_rate));
1750
1751 IWL_DEBUG_TX_REPLY(mvm,
1752 "BA_NOTIFICATION Received from sta_id = %d, flags %x, sent:%d, acked:%d\n",
1753 sta_id, le32_to_cpu(ba_res->flags),
1754 le16_to_cpu(ba_res->txed),
1755 le16_to_cpu(ba_res->done));
1756 return;
1757 }
1758
1759 ba_notif = (void *)pkt->data;
1760 sta_id = ba_notif->sta_id;
1761 tid = ba_notif->tid;
1762 /* "flow" corresponds to Tx queue */
1763 txq = le16_to_cpu(ba_notif->scd_flow);
1764 /* "ssn" is start of block-ack Tx window, corresponds to index
1765 * (in Tx queue's circular buffer) of first TFD/frame in window */
1766 index = le16_to_cpu(ba_notif->scd_ssn);
1767
1768 rcu_read_lock();
1769 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, sta_id);
1770 if (WARN_ON_ONCE(!mvmsta)) {
1771 rcu_read_unlock();
1772 return;
1773 }
1774
1775 tid_data = &mvmsta->tid_data[tid];
1776
1777 ba_info.status.ampdu_ack_len = ba_notif->txed_2_done;
1778 ba_info.status.ampdu_len = ba_notif->txed;
1779 ba_info.status.tx_time = tid_data->tx_time;
1780 ba_info.status.status_driver_data[0] =
1781 (void *)(uintptr_t)ba_notif->reduced_txp;
1782
1783 rcu_read_unlock();
1784
1785 iwl_mvm_tx_reclaim(mvm, sta_id, tid, txq, index, &ba_info,
1786 tid_data->rate_n_flags);
1787
1788 IWL_DEBUG_TX_REPLY(mvm,
1789 "BA_NOTIFICATION Received from %pM, sta_id = %d\n",
1790 (u8 *)&ba_notif->sta_addr_lo32, ba_notif->sta_id);
1791
1792 IWL_DEBUG_TX_REPLY(mvm,
1793 "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = %d, scd_ssn = %d sent:%d, acked:%d\n",
1794 ba_notif->tid, le16_to_cpu(ba_notif->seq_ctl),
1795 le64_to_cpu(ba_notif->bitmap), txq, index,
1796 ba_notif->txed, ba_notif->txed_2_done);
1797
1798 IWL_DEBUG_TX_REPLY(mvm, "reduced txp from ba notif %d\n",
1799 ba_notif->reduced_txp);
1800}
1801
fe92e32a
EG
1802/*
1803 * Note that there are transports that buffer frames before they reach
1804 * the firmware. This means that after flush_tx_path is called, the
1805 * queue might not be empty. The race-free way to handle this is to:
1806 * 1) set the station as draining
1807 * 2) flush the Tx path
1808 * 3) wait for the transport queues to be empty
1809 */
5888a40c 1810int iwl_mvm_flush_tx_path(struct iwl_mvm *mvm, u32 tfd_msk, u32 flags)
8ca151b5
JB
1811{
1812 int ret;
1813 struct iwl_tx_path_flush_cmd flush_cmd = {
1814 .queues_ctl = cpu_to_le32(tfd_msk),
1815 .flush_ctl = cpu_to_le16(DUMP_TX_FIFO_FLUSH),
1816 };
1817
8ca151b5
JB
1818 ret = iwl_mvm_send_cmd_pdu(mvm, TXPATH_FLUSH, flags,
1819 sizeof(flush_cmd), &flush_cmd);
1820 if (ret)
1821 IWL_ERR(mvm, "Failed to send flush command (%d)\n", ret);
1822 return ret;
1823}