blob: 6e9d3289b9d0ef68ccb40603f8601b3552abeab9 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Emmanuel Grumbach42032632015-04-15 12:43:46 +03009 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharon9a3fcf92017-03-14 09:50:35 +020010 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010028 *
29 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020035 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Emmanuel Grumbach42032632015-04-15 12:43:46 +030036 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharon9a3fcf92017-03-14 09:50:35 +020037 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010038 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 *
44 * * Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * * Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in
48 * the documentation and/or other materials provided with the
49 * distribution.
50 * * Neither the name Intel Corporation nor the names of its
51 * contributors may be used to endorse or promote products derived
52 * from this software without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 *****************************************************************************/
67#include <linux/ieee80211.h>
68#include <linux/etherdevice.h>
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +030069#include <linux/tcp.h>
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +030070#include <net/ip.h>
Sara Sharon5e6a98d2016-03-10 17:40:56 +020071#include <net/ipv6.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010072
73#include "iwl-trans.h"
74#include "iwl-eeprom-parse.h"
75#include "mvm.h"
76#include "sta.h"
77
Emmanuel Grumbach42032632015-04-15 12:43:46 +030078static 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
Johannes Berg7174beb2017-06-01 16:03:19 +020091 if (!iwl_fw_dbg_trigger_check_stop(&mvm->fwrt, NULL, trig))
Emmanuel Grumbach42032632015-04-15 12:43:46 +030092 return;
93
94 if (!(le16_to_cpu(ba_trig->tx_bar) & BIT(tid)))
95 return;
96
Johannes Berg7174beb2017-06-01 16:03:19 +020097 iwl_fw_dbg_collect_trig(&mvm->fwrt, trig,
98 "BAR sent to %pM, tid %d, ssn %d",
99 addr, tid, ssn);
Emmanuel Grumbach42032632015-04-15 12:43:46 +0300100}
101
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200102#define OPT_HDR(type, skb, off) \
103 (type *)(skb_network_header(skb) + (off))
104
Sara Sharonb86dd742016-09-29 15:16:03 +0300105static u16 iwl_mvm_tx_csum(struct iwl_mvm *mvm, struct sk_buff *skb,
106 struct ieee80211_hdr *hdr,
Johannes Berg275896a2017-06-19 13:24:49 +0200107 struct ieee80211_tx_info *info,
108 u16 offload_assist)
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200109{
110#if IS_ENABLED(CONFIG_INET)
111 u16 mh_len = ieee80211_hdrlen(hdr->frame_control);
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200112 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)
Sara Sharonb86dd742016-09-29 15:16:03 +0300119 goto out;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200120
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);
Sara Sharonb86dd742016-09-29 15:16:03 +0300127 goto out;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200128 }
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)) {
Sara Sharonecf51422016-06-08 15:15:41 +0300140 struct ipv6_opt_hdr *hp;
141
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200142 /* only supported extension headers */
143 if (protocol != NEXTHDR_ROUTING &&
144 protocol != NEXTHDR_HOP &&
Sara Sharonecf51422016-06-08 15:15:41 +0300145 protocol != NEXTHDR_DEST) {
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200146 skb_checksum_help(skb);
Sara Sharonb86dd742016-09-29 15:16:03 +0300147 goto out;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200148 }
149
Sara Sharonecf51422016-06-08 15:15:41 +0300150 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
151 protocol = hp->nexthdr;
152 off += ipv6_optlen(hp);
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200153 }
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);
Sara Sharonb86dd742016-09-29 15:16:03 +0300161 goto out;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200162 }
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
Emmanuel Grumbach3f25bb42017-06-21 10:35:09 +0300187 /*
188 * mac header len should include IV, size is in words unless
189 * the IV is added by the firmware like in WEP.
190 * In new Tx API, the IV is always added by the firmware.
191 */
192 if (!iwl_mvm_has_new_tx_api(mvm) && info->control.hw_key &&
193 info->control.hw_key->cipher != WLAN_CIPHER_SUITE_WEP40 &&
194 info->control.hw_key->cipher != WLAN_CIPHER_SUITE_WEP104)
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200195 mh_len += info->control.hw_key->iv_len;
196 mh_len /= 2;
197 offload_assist |= mh_len << TX_CMD_OFFLD_MH_SIZE;
198
Sara Sharonb86dd742016-09-29 15:16:03 +0300199out:
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200200#endif
Sara Sharonb86dd742016-09-29 15:16:03 +0300201 return offload_assist;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200202}
203
Johannes Berg8ca151b2013-01-24 14:25:36 +0100204/*
205 * Sets most of the Tx cmd's fields
206 */
Arik Nemtsov6ce73e62014-09-11 13:00:19 +0300207void iwl_mvm_set_tx_cmd(struct iwl_mvm *mvm, struct sk_buff *skb,
208 struct iwl_tx_cmd *tx_cmd,
209 struct ieee80211_tx_info *info, u8 sta_id)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100210{
211 struct ieee80211_hdr *hdr = (void *)skb->data;
212 __le16 fc = hdr->frame_control;
213 u32 tx_flags = le32_to_cpu(tx_cmd->tx_flags);
214 u32 len = skb->len + FCS_LEN;
Johannes Berg275896a2017-06-19 13:24:49 +0200215 u16 offload_assist = 0;
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +0200216 u8 ac;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100217
218 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
219 tx_flags |= TX_CMD_FLG_ACK;
220 else
221 tx_flags &= ~TX_CMD_FLG_ACK;
222
223 if (ieee80211_is_probe_resp(fc))
224 tx_flags |= TX_CMD_FLG_TSF;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100225
Johannes Berg8ca151b2013-01-24 14:25:36 +0100226 if (ieee80211_has_morefrags(fc))
227 tx_flags |= TX_CMD_FLG_MORE_FRAG;
228
229 if (ieee80211_is_data_qos(fc)) {
230 u8 *qc = ieee80211_get_qos_ctl(hdr);
231 tx_cmd->tid_tspec = qc[0] & 0xf;
232 tx_flags &= ~TX_CMD_FLG_SEQ_CTL;
Sara Sharond8fe4842016-03-09 10:12:45 +0200233 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
Johannes Berg275896a2017-06-19 13:24:49 +0200234 offload_assist |= BIT(TX_CMD_OFFLD_AMSDU);
Eyal Shapira9b3b43d2014-12-31 18:34:56 +0200235 } else if (ieee80211_is_back_req(fc)) {
236 struct ieee80211_bar *bar = (void *)skb->data;
237 u16 control = le16_to_cpu(bar->control);
Emmanuel Grumbach42032632015-04-15 12:43:46 +0300238 u16 ssn = le16_to_cpu(bar->start_seq_num);
Eyal Shapira9b3b43d2014-12-31 18:34:56 +0200239
240 tx_flags |= TX_CMD_FLG_ACK | TX_CMD_FLG_BAR;
241 tx_cmd->tid_tspec = (control &
242 IEEE80211_BAR_CTRL_TID_INFO_MASK) >>
243 IEEE80211_BAR_CTRL_TID_INFO_SHIFT;
244 WARN_ON_ONCE(tx_cmd->tid_tspec >= IWL_MAX_TID_COUNT);
Emmanuel Grumbach42032632015-04-15 12:43:46 +0300245 iwl_mvm_bar_check_trigger(mvm, bar->ra, tx_cmd->tid_tspec,
246 ssn);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100247 } else {
248 tx_cmd->tid_tspec = IWL_TID_NON_QOS;
249 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
250 tx_flags |= TX_CMD_FLG_SEQ_CTL;
251 else
252 tx_flags &= ~TX_CMD_FLG_SEQ_CTL;
253 }
254
Eyal Shapiraa9dc5062014-12-31 17:58:23 +0200255 /* Default to 0 (BE) when tid_spec is set to IWL_TID_NON_QOS */
256 if (tx_cmd->tid_tspec < IWL_MAX_TID_COUNT)
257 ac = tid_to_mac80211_ac[tx_cmd->tid_tspec];
258 else
259 ac = tid_to_mac80211_ac[0];
260
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +0200261 tx_flags |= iwl_mvm_bt_coex_tx_prio(mvm, hdr, info, ac) <<
262 TX_CMD_FLG_BT_PRIO_POS;
263
Johannes Berg8ca151b2013-01-24 14:25:36 +0100264 if (ieee80211_is_mgmt(fc)) {
265 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Avri Altmanb084a352015-07-12 09:10:05 +0300266 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_ASSOC);
267 else if (ieee80211_is_action(fc))
268 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100269 else
Avri Altmanb084a352015-07-12 09:10:05 +0300270 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100271
272 /* The spec allows Action frames in A-MPDU, we don't support
273 * it
274 */
275 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_AMPDU);
Johannes Berg63f75352014-01-31 14:56:18 +0100276 } else if (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO) {
Avri Altmanb084a352015-07-12 09:10:05 +0300277 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100278 } else {
Avri Altmanb084a352015-07-12 09:10:05 +0300279 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100280 }
281
Johannes Berg8ca151b2013-01-24 14:25:36 +0100282 if (ieee80211_is_data(fc) && len > mvm->rts_threshold &&
283 !is_multicast_ether_addr(ieee80211_get_DA(hdr)))
284 tx_flags |= TX_CMD_FLG_PROT_REQUIRE;
285
Johannes Berg859d9142015-06-01 17:11:11 +0200286 if (fw_has_capa(&mvm->fw->ucode_capa,
287 IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT) &&
Andrei Otcheretianskif1daa002014-07-01 12:54:25 +0300288 ieee80211_action_contains_tpc(skb))
289 tx_flags |= TX_CMD_FLG_WRITE_TX_POWER;
290
Johannes Berg8ca151b2013-01-24 14:25:36 +0100291 tx_cmd->tx_flags = cpu_to_le32(tx_flags);
Johannes Berg05e5a7e2016-12-02 10:04:49 +0100292 /* Total # bytes to be transmitted - PCIe code will adjust for A-MSDU */
293 tx_cmd->len = cpu_to_le16((u16)skb->len);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100294 tx_cmd->life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
295 tx_cmd->sta_id = sta_id;
Sara Sharond8fe4842016-03-09 10:12:45 +0200296
297 /* padding is inserted later in transport */
298 if (ieee80211_hdrlen(fc) % 4 &&
Johannes Berg275896a2017-06-19 13:24:49 +0200299 !(offload_assist & BIT(TX_CMD_OFFLD_AMSDU)))
300 offload_assist |= BIT(TX_CMD_OFFLD_PAD);
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200301
Sara Sharonb86dd742016-09-29 15:16:03 +0300302 tx_cmd->offload_assist |=
Johannes Berg275896a2017-06-19 13:24:49 +0200303 cpu_to_le16(iwl_mvm_tx_csum(mvm, skb, hdr, info,
304 offload_assist));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100305}
306
Sara Sharon5ec295d2016-11-01 10:52:11 +0200307static u32 iwl_mvm_get_tx_rate(struct iwl_mvm *mvm,
308 struct ieee80211_tx_info *info,
309 struct ieee80211_sta *sta)
310{
311 int rate_idx;
312 u8 rate_plcp;
313 u32 rate_flags;
314
315 /* HT rate doesn't make sense for a non data frame */
316 WARN_ONCE(info->control.rates[0].flags & IEEE80211_TX_RC_MCS,
317 "Got an HT rate (flags:0x%x/mcs:%d) for a non data frame\n",
318 info->control.rates[0].flags,
319 info->control.rates[0].idx);
320
321 rate_idx = info->control.rates[0].idx;
322 /* if the rate isn't a well known legacy rate, take the lowest one */
323 if (rate_idx < 0 || rate_idx >= IWL_RATE_COUNT_LEGACY)
324 rate_idx = rate_lowest_index(
325 &mvm->nvm_data->bands[info->band], sta);
326
327 /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
328 if (info->band == NL80211_BAND_5GHZ)
329 rate_idx += IWL_FIRST_OFDM_RATE;
330
331 /* For 2.4 GHZ band, check that there is no need to remap */
332 BUILD_BUG_ON(IWL_FIRST_CCK_RATE != 0);
333
334 /* Get PLCP rate for tx_cmd->rate_n_flags */
335 rate_plcp = iwl_mvm_mac80211_idx_to_hwrate(rate_idx);
336
337 if (info->band == NL80211_BAND_2GHZ &&
338 !iwl_mvm_bt_coex_is_shared_ant_avail(mvm))
339 rate_flags = mvm->cfg->non_shared_ant << RATE_MCS_ANT_POS;
340 else
341 rate_flags =
342 BIT(mvm->mgmt_last_antenna_idx) << RATE_MCS_ANT_POS;
343
344 /* Set CCK flag as needed */
345 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
346 rate_flags |= RATE_MCS_CCK_MSK;
347
348 return (u32)rate_plcp | rate_flags;
349}
350
Johannes Berg8ca151b2013-01-24 14:25:36 +0100351/*
352 * Sets the fields in the Tx cmd that are rate related
353 */
Arik Nemtsov6ce73e62014-09-11 13:00:19 +0300354void iwl_mvm_set_tx_cmd_rate(struct iwl_mvm *mvm, struct iwl_tx_cmd *tx_cmd,
355 struct ieee80211_tx_info *info,
356 struct ieee80211_sta *sta, __le16 fc)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100357{
Johannes Berg8ca151b2013-01-24 14:25:36 +0100358 /* Set retry limit on RTS packets */
359 tx_cmd->rts_retry_limit = IWL_RTS_DFAULT_RETRY_LIMIT;
360
361 /* Set retry limit on DATA packets and Probe Responses*/
362 if (ieee80211_is_probe_resp(fc)) {
363 tx_cmd->data_retry_limit = IWL_MGMT_DFAULT_RETRY_LIMIT;
364 tx_cmd->rts_retry_limit =
365 min(tx_cmd->data_retry_limit, tx_cmd->rts_retry_limit);
366 } else if (ieee80211_is_back_req(fc)) {
367 tx_cmd->data_retry_limit = IWL_BAR_DFAULT_RETRY_LIMIT;
368 } else {
369 tx_cmd->data_retry_limit = IWL_DEFAULT_TX_RETRY;
370 }
371
372 /*
Eliad Pellere89044d2013-07-16 17:33:26 +0300373 * for data packets, rate info comes from the table inside the fw. This
Emmanuel Grumbach1ffde692014-10-20 08:29:55 +0300374 * table is controlled by LINK_QUALITY commands
Johannes Berg8ca151b2013-01-24 14:25:36 +0100375 */
376
Emmanuel Grumbach1ffde692014-10-20 08:29:55 +0300377 if (ieee80211_is_data(fc) && sta) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100378 tx_cmd->initial_rate_index = 0;
379 tx_cmd->tx_flags |= cpu_to_le32(TX_CMD_FLG_STA_RATE);
380 return;
381 } else if (ieee80211_is_back_req(fc)) {
Emmanuel Grumbach2edc6ec2013-06-02 19:49:15 +0300382 tx_cmd->tx_flags |=
383 cpu_to_le32(TX_CMD_FLG_ACK | TX_CMD_FLG_BAR);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100384 }
385
Johannes Berg8ca151b2013-01-24 14:25:36 +0100386 mvm->mgmt_last_antenna_idx =
Moshe Harela0544272014-12-08 21:13:14 +0200387 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100388 mvm->mgmt_last_antenna_idx);
Emmanuel Grumbach34c8b242014-05-28 21:53:39 +0300389
Johannes Berg8ca151b2013-01-24 14:25:36 +0100390 /* Set the rate in the TX cmd */
Sara Sharon5ec295d2016-11-01 10:52:11 +0200391 tx_cmd->rate_n_flags = cpu_to_le32(iwl_mvm_get_tx_rate(mvm, info, sta));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100392}
393
Ayala Beker2a53d162016-04-07 16:21:57 +0300394static inline void iwl_mvm_set_tx_cmd_pn(struct ieee80211_tx_info *info,
395 u8 *crypto_hdr)
396{
397 struct ieee80211_key_conf *keyconf = info->control.hw_key;
398 u64 pn;
399
400 pn = atomic64_inc_return(&keyconf->tx_pn);
401 crypto_hdr[0] = pn;
402 crypto_hdr[2] = 0;
403 crypto_hdr[3] = 0x20 | (keyconf->keyidx << 6);
404 crypto_hdr[1] = pn >> 8;
405 crypto_hdr[4] = pn >> 16;
406 crypto_hdr[5] = pn >> 24;
407 crypto_hdr[6] = pn >> 32;
408 crypto_hdr[7] = pn >> 40;
409}
410
Johannes Berg8ca151b2013-01-24 14:25:36 +0100411/*
412 * Sets the fields in the Tx cmd that are crypto related
413 */
Johannes Bergca8c0f42015-04-20 17:54:54 +0200414static void iwl_mvm_set_tx_cmd_crypto(struct iwl_mvm *mvm,
415 struct ieee80211_tx_info *info,
416 struct iwl_tx_cmd *tx_cmd,
417 struct sk_buff *skb_frag,
418 int hdrlen)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100419{
420 struct ieee80211_key_conf *keyconf = info->control.hw_key;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200421 u8 *crypto_hdr = skb_frag->data + hdrlen;
422 u64 pn;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100423
424 switch (keyconf->cipher) {
425 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergca8c0f42015-04-20 17:54:54 +0200426 case WLAN_CIPHER_SUITE_CCMP_256:
427 iwl_mvm_set_tx_cmd_ccmp(info, tx_cmd);
Ayala Beker2a53d162016-04-07 16:21:57 +0300428 iwl_mvm_set_tx_cmd_pn(info, crypto_hdr);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100429 break;
430
431 case WLAN_CIPHER_SUITE_TKIP:
432 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
Eliad Peller1ad4f632016-02-14 13:56:36 +0200433 pn = atomic64_inc_return(&keyconf->tx_pn);
434 ieee80211_tkip_add_iv(crypto_hdr, keyconf, pn);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100435 ieee80211_get_tkip_p2k(keyconf, skb_frag, tx_cmd->key);
436 break;
437
438 case WLAN_CIPHER_SUITE_WEP104:
439 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
440 /* fall through */
441 case WLAN_CIPHER_SUITE_WEP40:
442 tx_cmd->sec_ctl |= TX_CMD_SEC_WEP |
443 ((keyconf->keyidx << TX_CMD_SEC_WEP_KEY_IDX_POS) &
444 TX_CMD_SEC_WEP_KEY_IDX_MSK);
445
446 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
447 break;
Ayala Beker2a53d162016-04-07 16:21:57 +0300448 case WLAN_CIPHER_SUITE_GCMP:
449 case WLAN_CIPHER_SUITE_GCMP_256:
450 /* TODO: Taking the key from the table might introduce a race
451 * when PTK rekeying is done, having an old packets with a PN
452 * based on the old key but the message encrypted with a new
453 * one.
454 * Need to handle this.
455 */
Emmanuel Grumbach4dc65112016-09-13 22:59:27 +0300456 tx_cmd->sec_ctl |= TX_CMD_SEC_GCMP | TX_CMD_SEC_KEY_FROM_TABLE;
Ayala Beker2a53d162016-04-07 16:21:57 +0300457 tx_cmd->key[0] = keyconf->hw_key_idx;
458 iwl_mvm_set_tx_cmd_pn(info, crypto_hdr);
459 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100460 default:
Max Stepanove36e5432013-08-27 19:56:13 +0300461 tx_cmd->sec_ctl |= TX_CMD_SEC_EXT;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100462 }
463}
464
465/*
466 * Allocates and sets the Tx cmd the driver data pointers in the skb
467 */
468static struct iwl_device_cmd *
469iwl_mvm_set_tx_params(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300470 struct ieee80211_tx_info *info, int hdrlen,
471 struct ieee80211_sta *sta, u8 sta_id)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100472{
473 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100474 struct iwl_device_cmd *dev_cmd;
475 struct iwl_tx_cmd *tx_cmd;
476
477 dev_cmd = iwl_trans_alloc_tx_cmd(mvm->trans);
478
479 if (unlikely(!dev_cmd))
480 return NULL;
481
Emmanuel Grumbach6f2f0192017-03-30 23:08:03 +0300482 /* Make sure we zero enough of dev_cmd */
483 BUILD_BUG_ON(sizeof(struct iwl_tx_cmd_gen2) > sizeof(*tx_cmd));
484
485 memset(dev_cmd, 0, sizeof(dev_cmd->hdr) + sizeof(*tx_cmd));
Emmanuel Grumbach3961a612013-10-22 11:27:55 +0300486 dev_cmd->hdr.cmd = TX_CMD;
Sara Sharonc47de662016-09-29 17:28:33 +0300487
488 if (iwl_mvm_has_new_tx_api(mvm)) {
489 struct iwl_tx_cmd_gen2 *cmd = (void *)dev_cmd->payload;
Johannes Berg275896a2017-06-19 13:24:49 +0200490 u16 offload_assist = 0;
Sara Sharonc47de662016-09-29 17:28:33 +0300491
Sara Sharonf5bd90b2017-03-16 10:44:31 +0200492 if (ieee80211_is_data_qos(hdr->frame_control)) {
493 u8 *qc = ieee80211_get_qos_ctl(hdr);
494
495 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
496 offload_assist |= BIT(TX_CMD_OFFLD_AMSDU);
497 }
498
Johannes Berg275896a2017-06-19 13:24:49 +0200499 offload_assist = iwl_mvm_tx_csum(mvm, skb, hdr, info,
500 offload_assist);
501
Sara Sharonc47de662016-09-29 17:28:33 +0300502 /* padding is inserted later in transport */
Sara Sharonc47de662016-09-29 17:28:33 +0300503 if (ieee80211_hdrlen(hdr->frame_control) % 4 &&
504 !(offload_assist & BIT(TX_CMD_OFFLD_AMSDU)))
505 offload_assist |= BIT(TX_CMD_OFFLD_PAD);
506
507 cmd->offload_assist |= cpu_to_le16(offload_assist);
508
509 /* Total # bytes to be transmitted */
510 cmd->len = cpu_to_le16((u16)skb->len);
511
512 /* Copy MAC header from skb into command buffer */
513 memcpy(cmd->hdr, hdr, hdrlen);
514
515 if (!info->control.hw_key)
516 cmd->flags |= cpu_to_le32(IWL_TX_FLAGS_ENCRYPT_DIS);
517
518 /* For data packets rate info comes from the fw */
519 if (ieee80211_is_data(hdr->frame_control) && sta)
520 goto out;
521
522 cmd->flags |= cpu_to_le32(IWL_TX_FLAGS_CMD_RATE);
523 cmd->rate_n_flags =
524 cpu_to_le32(iwl_mvm_get_tx_rate(mvm, info, sta));
525
526 goto out;
527 }
528
Johannes Berg8ca151b2013-01-24 14:25:36 +0100529 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
530
531 if (info->control.hw_key)
Johannes Bergca8c0f42015-04-20 17:54:54 +0200532 iwl_mvm_set_tx_cmd_crypto(mvm, info, tx_cmd, skb, hdrlen);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100533
534 iwl_mvm_set_tx_cmd(mvm, skb, tx_cmd, info, sta_id);
535
536 iwl_mvm_set_tx_cmd_rate(mvm, tx_cmd, info, sta, hdr->frame_control);
537
Sara Sharonc47de662016-09-29 17:28:33 +0300538 /* Copy MAC header from skb into command buffer */
539 memcpy(tx_cmd->hdr, hdr, hdrlen);
540
541out:
Johannes Bergbd05a5b2016-12-02 09:57:40 +0100542 return dev_cmd;
543}
544
545static void iwl_mvm_skb_prepare_status(struct sk_buff *skb,
546 struct iwl_device_cmd *cmd)
547{
548 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
549
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300550 memset(&skb_info->status, 0, sizeof(skb_info->status));
551 memset(skb_info->driver_data, 0, sizeof(skb_info->driver_data));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100552
Johannes Bergbd05a5b2016-12-02 09:57:40 +0100553 skb_info->driver_data[1] = cmd;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100554}
555
Liad Kaufmande24f632015-08-04 15:19:18 +0300556static int iwl_mvm_get_ctrl_vif_queue(struct iwl_mvm *mvm,
557 struct ieee80211_tx_info *info, __le16 fc)
558{
Johannes Bergb0129db2017-06-19 22:48:32 +0200559 struct iwl_mvm_vif *mvmvif;
560
Johannes Bergb0129db2017-06-19 22:48:32 +0200561 mvmvif = iwl_mvm_vif_from_mac80211(info->control.vif);
562
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300563 switch (info->control.vif->type) {
564 case NL80211_IFTYPE_AP:
Liad Kaufman4d339982017-03-21 17:13:16 +0200565 case NL80211_IFTYPE_ADHOC:
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300566 /*
Avraham Stern0fe8bed2017-08-31 16:27:06 +0300567 * Non-bufferable frames use the broadcast station, thus they
568 * use the probe queue.
Johannes Berge6835942017-06-12 11:24:06 +0200569 * Also take care of the case where we send a deauth to a
570 * station that we don't have, or similarly an association
571 * response (with non-success status) for a station we can't
572 * accept.
Johannes Berg51da3d82017-06-12 11:24:06 +0200573 * Also, disassociate frames might happen, particular with
574 * reason 7 ("Class 3 frame received from nonassociated STA").
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300575 */
Avraham Stern0fe8bed2017-08-31 16:27:06 +0300576 if (ieee80211_is_mgmt(fc) &&
577 (!ieee80211_is_bufferable_mmpdu(fc) ||
578 ieee80211_is_deauth(fc) || ieee80211_is_disassoc(fc)))
Sara Sharon49f71712017-01-09 12:07:16 +0200579 return mvm->probe_queue;
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300580 if (info->hw_queue == info->control.vif->cab_queue)
Johannes Bergb0129db2017-06-19 22:48:32 +0200581 return mvmvif->cab_queue;
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300582
Liad Kaufman4d339982017-03-21 17:13:16 +0200583 WARN_ONCE(info->control.vif->type != NL80211_IFTYPE_ADHOC,
584 "fc=0x%02x", le16_to_cpu(fc));
Sara Sharon49f71712017-01-09 12:07:16 +0200585 return mvm->probe_queue;
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300586 case NL80211_IFTYPE_P2P_DEVICE:
587 if (ieee80211_is_mgmt(fc))
Sara Sharon49f71712017-01-09 12:07:16 +0200588 return mvm->p2p_dev_queue;
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300589 if (info->hw_queue == info->control.vif->cab_queue)
Johannes Bergb0129db2017-06-19 22:48:32 +0200590 return mvmvif->cab_queue;
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300591
592 WARN_ON_ONCE(1);
Sara Sharon49f71712017-01-09 12:07:16 +0200593 return mvm->p2p_dev_queue;
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300594 default:
595 WARN_ONCE(1, "Not a ctrl vif, no available queue\n");
596 return -1;
597 }
Liad Kaufmande24f632015-08-04 15:19:18 +0300598}
599
Johannes Berg8ca151b2013-01-24 14:25:36 +0100600int iwl_mvm_tx_skb_non_sta(struct iwl_mvm *mvm, struct sk_buff *skb)
601{
602 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300603 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
604 struct ieee80211_tx_info info;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100605 struct iwl_device_cmd *dev_cmd;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100606 u8 sta_id;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200607 int hdrlen = ieee80211_hdrlen(hdr->frame_control);
Liad Kaufmande24f632015-08-04 15:19:18 +0300608 int queue;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100609
Beni Lev54c5ef22016-08-10 17:03:43 +0300610 /* IWL_MVM_OFFCHANNEL_QUEUE is used for ROC packets that can be used
611 * in 2 different types of vifs, P2P & STATION. P2P uses the offchannel
612 * queue. STATION (HS2.0) uses the auxiliary context of the FW,
613 * and hence needs to be sent on the aux queue
614 */
Johannes Berg45b957e2016-12-02 13:33:40 +0100615 if (skb_info->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
Beni Lev54c5ef22016-08-10 17:03:43 +0300616 skb_info->control.vif->type == NL80211_IFTYPE_STATION)
Johannes Berg45b957e2016-12-02 13:33:40 +0100617 skb_info->hw_queue = mvm->aux_queue;
Beni Lev54c5ef22016-08-10 17:03:43 +0300618
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300619 memcpy(&info, skb->cb, sizeof(info));
620
621 if (WARN_ON_ONCE(info.flags & IEEE80211_TX_CTL_AMPDU))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100622 return -1;
623
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300624 if (WARN_ON_ONCE(info.flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM &&
625 (!info.control.vif ||
626 info.hw_queue != info.control.vif->cab_queue)))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100627 return -1;
628
Liad Kaufmande24f632015-08-04 15:19:18 +0300629 queue = info.hw_queue;
630
Ariej Marjieh7da91b02014-07-07 12:09:40 +0300631 /*
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300632 * If the interface on which the frame is sent is the P2P_DEVICE
Johannes Berg8ca151b2013-01-24 14:25:36 +0100633 * or an AP/GO interface use the broadcast station associated
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300634 * with it; otherwise if the interface is a managed interface
635 * use the AP station associated with it for multicast traffic
636 * (this is not possible for unicast packets as a TLDS discovery
637 * response are sent without a station entry); otherwise use the
638 * AUX station.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100639 */
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300640 sta_id = mvm->aux_sta.sta_id;
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300641 if (info.control.vif) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100642 struct iwl_mvm_vif *mvmvif =
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300643 iwl_mvm_vif_from_mac80211(info.control.vif);
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300644
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300645 if (info.control.vif->type == NL80211_IFTYPE_P2P_DEVICE ||
Liad Kaufman4d339982017-03-21 17:13:16 +0200646 info.control.vif->type == NL80211_IFTYPE_AP ||
647 info.control.vif->type == NL80211_IFTYPE_ADHOC) {
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300648 sta_id = mvmvif->bcast_sta.sta_id;
Liad Kaufmande24f632015-08-04 15:19:18 +0300649 queue = iwl_mvm_get_ctrl_vif_queue(mvm, &info,
650 hdr->frame_control);
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300651 if (queue < 0)
652 return -1;
Liad Kaufmande24f632015-08-04 15:19:18 +0300653 } else if (info.control.vif->type == NL80211_IFTYPE_STATION &&
654 is_multicast_ether_addr(hdr->addr1)) {
Mark Rutland6aa7de02017-10-23 14:07:29 -0700655 u8 ap_sta_id = READ_ONCE(mvmvif->ap_sta_id);
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300656
Sara Sharon0ae98812017-01-04 14:53:58 +0200657 if (ap_sta_id != IWL_MVM_INVALID_STA)
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300658 sta_id = ap_sta_id;
Johannes Bergc8f54702017-06-19 23:50:31 +0200659 } else if (info.control.vif->type == NL80211_IFTYPE_MONITOR) {
Liad Kaufman6d759b02017-05-15 18:26:33 +0300660 queue = mvm->aux_queue;
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300661 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100662 }
663
Liad Kaufmande24f632015-08-04 15:19:18 +0300664 IWL_DEBUG_TX(mvm, "station Id %d, queue=%d\n", sta_id, queue);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100665
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300666 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, &info, hdrlen, NULL, sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100667 if (!dev_cmd)
668 return -1;
669
Johannes Bergbd05a5b2016-12-02 09:57:40 +0100670 /* From now on, we cannot access info->control */
671 iwl_mvm_skb_prepare_status(skb, dev_cmd);
672
Liad Kaufmande24f632015-08-04 15:19:18 +0300673 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, queue)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100674 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
675 return -1;
676 }
677
678 return 0;
679}
680
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300681#ifdef CONFIG_INET
682static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300683 struct ieee80211_tx_info *info,
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300684 struct ieee80211_sta *sta,
685 struct sk_buff_head *mpdus_skb)
686{
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200687 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300688 struct ieee80211_hdr *hdr = (void *)skb->data;
689 unsigned int mss = skb_shinfo(skb)->gso_size;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300690 struct sk_buff *tmp, *next;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300691 char cb[sizeof(skb->cb)];
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200692 unsigned int num_subframes, tcp_payload_len, subf_len, max_amsdu_len;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300693 bool ipv4 = (skb->protocol == htons(ETH_P_IP));
694 u16 ip_base_id = ipv4 ? ntohs(ip_hdr(skb)->id) : 0;
Johannes Berg05e5a7e2016-12-02 10:04:49 +0100695 u16 snap_ip_tcp, pad, i = 0;
Emmanuel Grumbach9e7dce22015-10-26 16:14:06 +0200696 unsigned int dbg_max_amsdu_len;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200697 netdev_features_t netdev_features = NETIF_F_CSUM_MASK | NETIF_F_SG;
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200698 u8 *qc, tid, txf;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300699
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300700 snap_ip_tcp = 8 + skb_transport_header(skb) - skb_network_header(skb) +
701 tcp_hdrlen(skb);
702
Mark Rutland6aa7de02017-10-23 14:07:29 -0700703 dbg_max_amsdu_len = READ_ONCE(mvm->max_amsdu_len);
Emmanuel Grumbachfa820d62016-04-03 10:15:59 +0300704
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300705 if (!sta->max_amsdu_len ||
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +0200706 !ieee80211_is_data_qos(hdr->frame_control) ||
Emmanuel Grumbachfa820d62016-04-03 10:15:59 +0300707 (!mvmsta->tlc_amsdu && !dbg_max_amsdu_len)) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300708 num_subframes = 1;
709 pad = 0;
710 goto segment;
711 }
712
Emmanuel Grumbach4f555e62017-06-20 16:05:30 +0300713 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
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200718 /*
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200719 * Do not build AMSDU for IPv6 with extension headers.
720 * ask stack to segment and checkum the generated MPDUs for us.
721 */
722 if (skb->protocol == htons(ETH_P_IPV6) &&
723 ((struct ipv6hdr *)skb_network_header(skb))->nexthdr !=
724 IPPROTO_TCP) {
725 num_subframes = 1;
726 pad = 0;
727 netdev_features &= ~NETIF_F_CSUM_MASK;
728 goto segment;
729 }
730
731 /*
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200732 * No need to lock amsdu_in_ampdu_allowed since it can't be modified
733 * during an BA session.
734 */
735 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
736 !mvmsta->tid_data[tid].amsdu_in_ampdu_allowed) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300737 num_subframes = 1;
738 pad = 0;
739 goto segment;
740 }
741
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200742 max_amsdu_len = sta->max_amsdu_len;
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200743
744 /* the Tx FIFO to which this A-MSDU will be routed */
Emmanuel Grumbachcf6c6ea2017-06-13 13:18:48 +0300745 txf = iwl_mvm_mac_ac_to_tx_fifo(mvm, tid_to_mac80211_ac[tid]);
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200746
747 /*
748 * Don't send an AMSDU that will be longer than the TXF.
749 * Add a security margin of 256 for the TX command + headers.
750 * We also want to have the start of the next packet inside the
751 * fifo to be able to send bursts.
752 */
753 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
Johannes Bergd0b813f2017-06-01 14:44:40 +0200754 mvm->fwrt.smem_cfg.lmac[0].txfifo_size[txf] -
755 256);
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200756
Emmanuel Grumbachfa820d62016-04-03 10:15:59 +0300757 if (unlikely(dbg_max_amsdu_len))
Emmanuel Grumbach9e7dce22015-10-26 16:14:06 +0200758 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
759 dbg_max_amsdu_len);
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200760
761 /*
762 * Limit A-MSDU in A-MPDU to 4095 bytes when VHT is not
763 * supported. This is a spec requirement (IEEE 802.11-2015
764 * section 8.7.3 NOTE 3).
765 */
766 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
767 !sta->vht_cap.vht_supported)
768 max_amsdu_len = min_t(unsigned int, max_amsdu_len, 4095);
769
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300770 /* Sub frame header + SNAP + IP header + TCP header + MSS */
771 subf_len = sizeof(struct ethhdr) + snap_ip_tcp + mss;
772 pad = (4 - subf_len) & 0x3;
773
774 /*
775 * If we have N subframes in the A-MSDU, then the A-MSDU's size is
776 * N * subf_len + (N - 1) * pad.
777 */
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200778 num_subframes = (max_amsdu_len + pad) / (subf_len + pad);
779 if (num_subframes > 1)
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300780 *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300781
782 tcp_payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
783 tcp_hdrlen(skb) + skb->data_len;
784
785 /*
786 * Make sure we have enough TBs for the A-MSDU:
787 * 2 for each subframe
788 * 1 more for each fragment
789 * 1 more for the potential data in the header
790 */
791 num_subframes =
792 min_t(unsigned int, num_subframes,
793 (mvm->trans->max_skb_frags - 1 -
794 skb_shinfo(skb)->nr_frags) / 2);
795
796 /* This skb fits in one single A-MSDU */
797 if (num_subframes * mss >= tcp_payload_len) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300798 __skb_queue_tail(mpdus_skb, skb);
799 return 0;
800 }
801
802 /*
803 * Trick the segmentation function to make it
804 * create SKBs that can fit into one A-MSDU.
805 */
806segment:
807 skb_shinfo(skb)->gso_size = num_subframes * mss;
808 memcpy(cb, skb->cb, sizeof(cb));
809
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200810 next = skb_gso_segment(skb, netdev_features);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300811 skb_shinfo(skb)->gso_size = mss;
812 if (WARN_ON_ONCE(IS_ERR(next)))
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300813 return -EINVAL;
814 else if (next)
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300815 consume_skb(skb);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300816
817 while (next) {
818 tmp = next;
819 next = tmp->next;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300820
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300821 memcpy(tmp->cb, cb, sizeof(tmp->cb));
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300822 /*
823 * Compute the length of all the data added for the A-MSDU.
824 * This will be used to compute the length to write in the TX
825 * command. We have: SNAP + IP + TCP for n -1 subframes and
826 * ETH header for n subframes.
827 */
828 tcp_payload_len = skb_tail_pointer(tmp) -
829 skb_transport_header(tmp) -
830 tcp_hdrlen(tmp) + tmp->data_len;
831
832 if (ipv4)
833 ip_hdr(tmp)->id = htons(ip_base_id + i * num_subframes);
834
835 if (tcp_payload_len > mss) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300836 skb_shinfo(tmp)->gso_size = mss;
837 } else {
Emmanuel Grumbach63444362017-06-21 09:40:15 +0300838 if (ieee80211_is_data_qos(hdr->frame_control)) {
839 qc = ieee80211_get_qos_ctl((void *)tmp->data);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300840
Emmanuel Grumbach63444362017-06-21 09:40:15 +0300841 if (ipv4)
842 ip_send_check(ip_hdr(tmp));
843 *qc &= ~IEEE80211_QOS_CTL_A_MSDU_PRESENT;
844 }
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300845 skb_shinfo(tmp)->gso_size = 0;
846 }
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300847
848 tmp->prev = NULL;
849 tmp->next = NULL;
850
851 __skb_queue_tail(mpdus_skb, tmp);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300852 i++;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300853 }
854
855 return 0;
856}
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300857#else /* CONFIG_INET */
858static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300859 struct ieee80211_tx_info *info,
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300860 struct ieee80211_sta *sta,
861 struct sk_buff_head *mpdus_skb)
862{
863 /* Impossible to get TSO with CONFIG_INET */
864 WARN_ON(1);
865
866 return -1;
867}
868#endif
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300869
Liad Kaufman24afba72015-07-28 18:56:08 +0300870static void iwl_mvm_tx_add_stream(struct iwl_mvm *mvm,
871 struct iwl_mvm_sta *mvm_sta, u8 tid,
872 struct sk_buff *skb)
873{
874 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
875 u8 mac_queue = info->hw_queue;
876 struct sk_buff_head *deferred_tx_frames;
877
878 lockdep_assert_held(&mvm_sta->lock);
879
880 mvm_sta->deferred_traffic_tid_map |= BIT(tid);
881 set_bit(mvm_sta->sta_id, mvm->sta_deferred_frames);
882
883 deferred_tx_frames = &mvm_sta->tid_data[tid].deferred_tx_frames;
884
885 skb_queue_tail(deferred_tx_frames, skb);
886
887 /*
888 * The first deferred frame should've stopped the MAC queues, so we
889 * should never get a second deferred frame for the RA/TID.
890 */
891 if (!WARN(skb_queue_len(deferred_tx_frames) != 1,
892 "RATID %d/%d has %d deferred frames\n", mvm_sta->sta_id, tid,
893 skb_queue_len(deferred_tx_frames))) {
894 iwl_mvm_stop_mac_queues(mvm, BIT(mac_queue));
895 schedule_work(&mvm->add_stream_wk);
896 }
897}
898
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200899/* Check if there are any timed-out TIDs on a given shared TXQ */
900static bool iwl_mvm_txq_should_update(struct iwl_mvm *mvm, int txq_id)
901{
902 unsigned long queue_tid_bitmap = mvm->queue_info[txq_id].tid_bitmap;
903 unsigned long now = jiffies;
904 int tid;
905
Sara Sharonbb497012016-09-29 14:52:40 +0300906 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
907 return false;
908
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200909 for_each_set_bit(tid, &queue_tid_bitmap, IWL_MAX_TID_COUNT + 1) {
910 if (time_before(mvm->queue_info[txq_id].last_frame_time[tid] +
911 IWL_MVM_DQA_QUEUE_TIMEOUT, now))
912 return true;
913 }
914
915 return false;
916}
917
Johannes Berg8ca151b2013-01-24 14:25:36 +0100918/*
919 * Sets the fields in the Tx cmd that are crypto related
920 */
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300921static int iwl_mvm_tx_mpdu(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300922 struct ieee80211_tx_info *info,
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300923 struct ieee80211_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100924{
925 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100926 struct iwl_mvm_sta *mvmsta;
927 struct iwl_device_cmd *dev_cmd;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100928 __le16 fc;
929 u16 seq_number = 0;
930 u8 tid = IWL_MAX_TID_COUNT;
Sara Sharon6862fce2017-02-22 19:34:17 +0200931 u16 txq_id = info->hw_queue;
Johannes Berg7ec54712016-03-16 09:29:48 +0100932 bool is_ampdu = false;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200933 int hdrlen;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100934
Johannes Berg5b577a92013-11-14 18:20:04 +0100935 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100936 fc = hdr->frame_control;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200937 hdrlen = ieee80211_hdrlen(fc);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100938
939 if (WARN_ON_ONCE(!mvmsta))
940 return -1;
941
Sara Sharon0ae98812017-01-04 14:53:58 +0200942 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_INVALID_STA))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100943 return -1;
944
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300945 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, info, hdrlen,
946 sta, mvmsta->sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100947 if (!dev_cmd)
948 goto drop;
949
Johannes Berg3e56ead2013-02-15 22:23:18 +0100950 /*
951 * we handle that entirely ourselves -- for uAPSD the firmware
952 * will always send a notification, and for PS-Poll responses
953 * we'll notify mac80211 when getting frame status
954 */
955 info->flags &= ~IEEE80211_TX_STATUS_EOSP;
956
Johannes Berg8ca151b2013-01-24 14:25:36 +0100957 spin_lock(&mvmsta->lock);
958
Sara Sharon0d7f1b92016-12-08 10:43:40 +0200959 /* nullfunc frames should go to the MGMT queue regardless of QOS,
960 * the condition of !ieee80211_is_qos_nullfunc(fc) keeps the default
961 * assignment of MGMT TID
962 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100963 if (ieee80211_is_data_qos(fc) && !ieee80211_is_qos_nullfunc(fc)) {
964 u8 *qc = NULL;
965 qc = ieee80211_get_qos_ctl(hdr);
966 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
967 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
968 goto drop_unlock_sta;
969
Johannes Berg8ca151b2013-01-24 14:25:36 +0100970 is_ampdu = info->flags & IEEE80211_TX_CTL_AMPDU;
Sara Sharon0d7f1b92016-12-08 10:43:40 +0200971 if (WARN_ON_ONCE(is_ampdu &&
972 mvmsta->tid_data[tid].state != IWL_AGG_ON))
973 goto drop_unlock_sta;
Sara Sharonc47de662016-09-29 17:28:33 +0300974
975 seq_number = mvmsta->tid_data[tid].seq_number;
976 seq_number &= IEEE80211_SCTL_SEQ;
977
978 if (!iwl_mvm_has_new_tx_api(mvm)) {
979 struct iwl_tx_cmd *tx_cmd = (void *)dev_cmd->payload;
980
981 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
982 hdr->seq_ctrl |= cpu_to_le16(seq_number);
983 /* update the tx_cmd hdr as it was already copied */
984 tx_cmd->hdr->seq_ctrl = hdr->seq_ctrl;
985 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100986 }
987
Johannes Bergc8f54702017-06-19 23:50:31 +0200988 txq_id = mvmsta->tid_data[tid].txq_id;
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300989
Sara Sharon0d7f1b92016-12-08 10:43:40 +0200990 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100991
Liad Kaufman9794c642015-08-19 17:34:28 +0300992 /* Check if TXQ needs to be allocated or re-activated */
Sara Sharon6862fce2017-02-22 19:34:17 +0200993 if (unlikely(txq_id == IWL_MVM_INVALID_QUEUE ||
Johannes Bergc8f54702017-06-19 23:50:31 +0200994 !mvmsta->tid_data[tid].is_tid_active)) {
Liad Kaufman9794c642015-08-19 17:34:28 +0300995 /* If TXQ needs to be allocated... */
Sara Sharon6862fce2017-02-22 19:34:17 +0200996 if (txq_id == IWL_MVM_INVALID_QUEUE) {
Liad Kaufman24afba72015-07-28 18:56:08 +0300997 iwl_mvm_tx_add_stream(mvm, mvmsta, tid, skb);
998
999 /*
1000 * The frame is now deferred, and the worker scheduled
1001 * will re-allocate it, so we can free it for now.
1002 */
1003 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
1004 spin_unlock(&mvmsta->lock);
1005 return 0;
1006 }
1007
Sara Sharon34e10862017-02-23 13:15:07 +02001008 /* queue should always be active in new TX path */
1009 WARN_ON(iwl_mvm_has_new_tx_api(mvm));
1010
Liad Kaufman9794c642015-08-19 17:34:28 +03001011 /* If we are here - TXQ exists and needs to be re-activated */
1012 spin_lock(&mvm->queue_info_lock);
1013 mvm->queue_info[txq_id].status = IWL_MVM_QUEUE_READY;
1014 mvmsta->tid_data[tid].is_tid_active = true;
1015 spin_unlock(&mvm->queue_info_lock);
1016
1017 IWL_DEBUG_TX_QUEUES(mvm, "Re-activating queue %d for TX\n",
1018 txq_id);
Liad Kaufman24afba72015-07-28 18:56:08 +03001019 }
1020
Johannes Bergc8f54702017-06-19 23:50:31 +02001021 if (!iwl_mvm_has_new_tx_api(mvm)) {
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001022 /* Keep track of the time of the last frame for this RA/TID */
1023 mvm->queue_info[txq_id].last_frame_time[tid] = jiffies;
1024
1025 /*
1026 * If we have timed-out TIDs - schedule the worker that will
1027 * reconfig the queues and update them
1028 *
1029 * Note that the mvm->queue_info_lock isn't being taken here in
1030 * order to not serialize the TX flow. This isn't dangerous
1031 * because scheduling mvm->add_stream_wk can't ruin the state,
1032 * and if we DON'T schedule it due to some race condition then
1033 * next TX we get here we will.
1034 */
1035 if (unlikely(mvm->queue_info[txq_id].status ==
1036 IWL_MVM_QUEUE_SHARED &&
1037 iwl_mvm_txq_should_update(mvm, txq_id)))
1038 schedule_work(&mvm->add_stream_wk);
1039 }
Liad Kaufman9794c642015-08-19 17:34:28 +03001040
Johannes Berg8ca151b2013-01-24 14:25:36 +01001041 IWL_DEBUG_TX(mvm, "TX to [%d|%d] Q:%d - seq: 0x%x\n", mvmsta->sta_id,
Eliad Pellercf9d1182013-12-31 18:54:06 +02001042 tid, txq_id, IEEE80211_SEQ_TO_SN(seq_number));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001043
Johannes Bergbd05a5b2016-12-02 09:57:40 +01001044 /* From now on, we cannot access info->control */
1045 iwl_mvm_skb_prepare_status(skb, dev_cmd);
1046
Johannes Berg8ca151b2013-01-24 14:25:36 +01001047 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, txq_id))
1048 goto drop_unlock_sta;
1049
Johannes Berg7ec54712016-03-16 09:29:48 +01001050 if (tid < IWL_MAX_TID_COUNT && !ieee80211_has_morefrags(fc))
Eliad Pellercf9d1182013-12-31 18:54:06 +02001051 mvmsta->tid_data[tid].seq_number = seq_number + 0x10;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001052
1053 spin_unlock(&mvmsta->lock);
1054
Johannes Berg8ca151b2013-01-24 14:25:36 +01001055 return 0;
1056
1057drop_unlock_sta:
1058 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
1059 spin_unlock(&mvmsta->lock);
1060drop:
1061 return -1;
1062}
1063
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001064int iwl_mvm_tx_skb(struct iwl_mvm *mvm, struct sk_buff *skb,
1065 struct ieee80211_sta *sta)
1066{
1067 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001068 struct ieee80211_tx_info info;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001069 struct sk_buff_head mpdus_skbs;
1070 unsigned int payload_len;
1071 int ret;
1072
1073 if (WARN_ON_ONCE(!mvmsta))
1074 return -1;
1075
Sara Sharon0ae98812017-01-04 14:53:58 +02001076 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_INVALID_STA))
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001077 return -1;
1078
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001079 memcpy(&info, skb->cb, sizeof(info));
1080
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001081 if (!skb_is_gso(skb))
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001082 return iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001083
1084 payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
1085 tcp_hdrlen(skb) + skb->data_len;
1086
1087 if (payload_len <= skb_shinfo(skb)->gso_size)
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001088 return iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001089
1090 __skb_queue_head_init(&mpdus_skbs);
1091
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001092 ret = iwl_mvm_tx_tso(mvm, skb, &info, sta, &mpdus_skbs);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001093 if (ret)
1094 return ret;
1095
1096 if (WARN_ON(skb_queue_empty(&mpdus_skbs)))
1097 return ret;
1098
1099 while (!skb_queue_empty(&mpdus_skbs)) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +03001100 skb = __skb_dequeue(&mpdus_skbs);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001101
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001102 ret = iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001103 if (ret) {
1104 __skb_queue_purge(&mpdus_skbs);
1105 return ret;
1106 }
1107 }
1108
1109 return 0;
1110}
1111
Johannes Berg8ca151b2013-01-24 14:25:36 +01001112static void iwl_mvm_check_ratid_empty(struct iwl_mvm *mvm,
1113 struct ieee80211_sta *sta, u8 tid)
1114{
Johannes Berg5b577a92013-11-14 18:20:04 +01001115 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001116 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
1117 struct ieee80211_vif *vif = mvmsta->vif;
Liad Kaufmandd321622017-04-05 16:25:11 +03001118 u16 normalized_ssn;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001119
1120 lockdep_assert_held(&mvmsta->lock);
1121
Johannes Berg3e56ead2013-02-15 22:23:18 +01001122 if ((tid_data->state == IWL_AGG_ON ||
Johannes Bergc8f54702017-06-19 23:50:31 +02001123 tid_data->state == IWL_EMPTYING_HW_QUEUE_DELBA) &&
Liad Kaufmandd321622017-04-05 16:25:11 +03001124 iwl_mvm_tid_queued(mvm, tid_data) == 0) {
Johannes Berg3e56ead2013-02-15 22:23:18 +01001125 /*
Sara Sharon9a3fcf92017-03-14 09:50:35 +02001126 * Now that this aggregation or DQA queue is empty tell
1127 * mac80211 so it knows we no longer have frames buffered for
1128 * the station on this TID (for the TIM bitmap calculation.)
Johannes Berg3e56ead2013-02-15 22:23:18 +01001129 */
1130 ieee80211_sta_set_buffered(sta, tid, false);
1131 }
1132
Liad Kaufmandd321622017-04-05 16:25:11 +03001133 /*
1134 * In A000 HW, the next_reclaimed index is only 8 bit, so we'll need
1135 * to align the wrap around of ssn so we compare relevant values.
1136 */
1137 normalized_ssn = tid_data->ssn;
1138 if (mvm->trans->cfg->gen2)
1139 normalized_ssn &= 0xff;
1140
1141 if (normalized_ssn != tid_data->next_reclaimed)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001142 return;
1143
1144 switch (tid_data->state) {
1145 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1146 IWL_DEBUG_TX_QUEUES(mvm,
1147 "Can continue addBA flow ssn = next_recl = %d\n",
1148 tid_data->next_reclaimed);
1149 tid_data->state = IWL_AGG_STARTING;
1150 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1151 break;
1152
1153 case IWL_EMPTYING_HW_QUEUE_DELBA:
1154 IWL_DEBUG_TX_QUEUES(mvm,
1155 "Can continue DELBA flow ssn = next_recl = %d\n",
1156 tid_data->next_reclaimed);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001157 tid_data->state = IWL_AGG_OFF;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001158 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1159 break;
1160
1161 default:
1162 break;
1163 }
1164}
1165
1166#ifdef CONFIG_IWLWIFI_DEBUG
1167const char *iwl_mvm_get_tx_fail_reason(u32 status)
1168{
1169#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
1170#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
1171
1172 switch (status & TX_STATUS_MSK) {
1173 case TX_STATUS_SUCCESS:
1174 return "SUCCESS";
1175 TX_STATUS_POSTPONE(DELAY);
1176 TX_STATUS_POSTPONE(FEW_BYTES);
1177 TX_STATUS_POSTPONE(BT_PRIO);
1178 TX_STATUS_POSTPONE(QUIET_PERIOD);
1179 TX_STATUS_POSTPONE(CALC_TTAK);
1180 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
1181 TX_STATUS_FAIL(SHORT_LIMIT);
1182 TX_STATUS_FAIL(LONG_LIMIT);
1183 TX_STATUS_FAIL(UNDERRUN);
1184 TX_STATUS_FAIL(DRAIN_FLOW);
1185 TX_STATUS_FAIL(RFKILL_FLUSH);
1186 TX_STATUS_FAIL(LIFE_EXPIRE);
1187 TX_STATUS_FAIL(DEST_PS);
1188 TX_STATUS_FAIL(HOST_ABORTED);
1189 TX_STATUS_FAIL(BT_RETRY);
1190 TX_STATUS_FAIL(STA_INVALID);
1191 TX_STATUS_FAIL(FRAG_DROPPED);
1192 TX_STATUS_FAIL(TID_DISABLE);
1193 TX_STATUS_FAIL(FIFO_FLUSHED);
1194 TX_STATUS_FAIL(SMALL_CF_POLL);
1195 TX_STATUS_FAIL(FW_DROP);
1196 TX_STATUS_FAIL(STA_COLOR_MISMATCH);
1197 }
1198
1199 return "UNKNOWN";
1200
1201#undef TX_STATUS_FAIL
1202#undef TX_STATUS_POSTPONE
1203}
1204#endif /* CONFIG_IWLWIFI_DEBUG */
1205
Eyal Shapirad310e402013-08-11 18:43:47 +03001206void iwl_mvm_hwrate_to_tx_rate(u32 rate_n_flags,
Johannes Berg57fbcce2016-04-12 15:56:15 +02001207 enum nl80211_band band,
Eyal Shapirad310e402013-08-11 18:43:47 +03001208 struct ieee80211_tx_rate *r)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001209{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001210 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
1211 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
1212 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
1213 case RATE_MCS_CHAN_WIDTH_20:
1214 break;
1215 case RATE_MCS_CHAN_WIDTH_40:
1216 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
1217 break;
1218 case RATE_MCS_CHAN_WIDTH_80:
1219 r->flags |= IEEE80211_TX_RC_80_MHZ_WIDTH;
1220 break;
1221 case RATE_MCS_CHAN_WIDTH_160:
1222 r->flags |= IEEE80211_TX_RC_160_MHZ_WIDTH;
1223 break;
1224 }
1225 if (rate_n_flags & RATE_MCS_SGI_MSK)
1226 r->flags |= IEEE80211_TX_RC_SHORT_GI;
1227 if (rate_n_flags & RATE_MCS_HT_MSK) {
1228 r->flags |= IEEE80211_TX_RC_MCS;
1229 r->idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
1230 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
1231 ieee80211_rate_set_vht(
1232 r, rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK,
1233 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
1234 RATE_VHT_MCS_NSS_POS) + 1);
1235 r->flags |= IEEE80211_TX_RC_VHT_MCS;
1236 } else {
1237 r->idx = iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
Eyal Shapirad310e402013-08-11 18:43:47 +03001238 band);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001239 }
1240}
1241
Eyal Shapirad310e402013-08-11 18:43:47 +03001242/**
1243 * translate ucode response to mac80211 tx status control values
1244 */
1245static void iwl_mvm_hwrate_to_tx_status(u32 rate_n_flags,
1246 struct ieee80211_tx_info *info)
1247{
1248 struct ieee80211_tx_rate *r = &info->status.rates[0];
1249
1250 info->status.antenna =
1251 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
1252 iwl_mvm_hwrate_to_tx_rate(rate_n_flags, info->band, r);
1253}
1254
Golan Ben-Ami25657fe2015-09-02 12:34:23 +03001255static void iwl_mvm_tx_status_check_trigger(struct iwl_mvm *mvm,
1256 u32 status)
1257{
1258 struct iwl_fw_dbg_trigger_tlv *trig;
1259 struct iwl_fw_dbg_trigger_tx_status *status_trig;
1260 int i;
1261
1262 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TX_STATUS))
1263 return;
1264
1265 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TX_STATUS);
1266 status_trig = (void *)trig->data;
1267
Johannes Berg7174beb2017-06-01 16:03:19 +02001268 if (!iwl_fw_dbg_trigger_check_stop(&mvm->fwrt, NULL, trig))
Golan Ben-Ami25657fe2015-09-02 12:34:23 +03001269 return;
1270
1271 for (i = 0; i < ARRAY_SIZE(status_trig->statuses); i++) {
1272 /* don't collect on status 0 */
1273 if (!status_trig->statuses[i].status)
1274 break;
1275
1276 if (status_trig->statuses[i].status != (status & TX_STATUS_MSK))
1277 continue;
1278
Johannes Berg7174beb2017-06-01 16:03:19 +02001279 iwl_fw_dbg_collect_trig(&mvm->fwrt, trig,
1280 "Tx status %d was received",
1281 status & TX_STATUS_MSK);
Golan Ben-Ami25657fe2015-09-02 12:34:23 +03001282 break;
1283 }
1284}
1285
Sara Sharon12db2942017-01-17 14:28:21 +02001286/**
1287 * iwl_mvm_get_scd_ssn - returns the SSN of the SCD
1288 * @tx_resp: the Tx response from the fw (agg or non-agg)
1289 *
1290 * When the fw sends an AMPDU, it fetches the MPDUs one after the other. Since
1291 * it can't know that everything will go well until the end of the AMPDU, it
1292 * can't know in advance the number of MPDUs that will be sent in the current
1293 * batch. This is why it writes the agg Tx response while it fetches the MPDUs.
1294 * Hence, it can't know in advance what the SSN of the SCD will be at the end
1295 * of the batch. This is why the SSN of the SCD is written at the end of the
1296 * whole struct at a variable offset. This function knows how to cope with the
1297 * variable offset and returns the SSN of the SCD.
1298 */
1299static inline u32 iwl_mvm_get_scd_ssn(struct iwl_mvm *mvm,
1300 struct iwl_mvm_tx_resp *tx_resp)
1301{
1302 return le32_to_cpup((__le32 *)iwl_mvm_get_agg_status(mvm, tx_resp) +
1303 tx_resp->frame_count) & 0xfff;
1304}
1305
Johannes Berg8ca151b2013-01-24 14:25:36 +01001306static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm,
1307 struct iwl_rx_packet *pkt)
1308{
1309 struct ieee80211_sta *sta;
1310 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1311 int txq_id = SEQ_TO_QUEUE(sequence);
Johannes Berga6a62192017-05-03 21:56:04 +02001312 /* struct iwl_mvm_tx_resp_v3 is almost the same */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001313 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1314 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1315 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
Sara Sharon12db2942017-01-17 14:28:21 +02001316 struct agg_tx_status *agg_status =
1317 iwl_mvm_get_agg_status(mvm, tx_resp);
1318 u32 status = le16_to_cpu(agg_status->status);
1319 u16 ssn = iwl_mvm_get_scd_ssn(mvm, tx_resp);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001320 struct iwl_mvm_sta *mvmsta;
1321 struct sk_buff_head skbs;
1322 u8 skb_freed = 0;
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001323 u8 lq_color;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001324 u16 next_reclaimed, seq_ctl;
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001325 bool is_ndp = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001326
1327 __skb_queue_head_init(&skbs);
1328
Sara Sharon12db2942017-01-17 14:28:21 +02001329 if (iwl_mvm_has_new_tx_api(mvm))
Johannes Berga6a62192017-05-03 21:56:04 +02001330 txq_id = le16_to_cpu(tx_resp->tx_queue);
Sara Sharon12db2942017-01-17 14:28:21 +02001331
Johannes Berg8ca151b2013-01-24 14:25:36 +01001332 seq_ctl = le16_to_cpu(tx_resp->seq_ctl);
1333
1334 /* we can free until ssn % q.n_bd not inclusive */
1335 iwl_trans_reclaim(mvm->trans, txq_id, ssn, &skbs);
1336
1337 while (!skb_queue_empty(&skbs)) {
1338 struct sk_buff *skb = __skb_dequeue(&skbs);
1339 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Emmanuel Grumbach114db232017-08-06 13:19:05 +03001340 bool flushed = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001341
1342 skb_freed++;
1343
1344 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1345
1346 memset(&info->status, 0, sizeof(info->status));
1347
Johannes Berg8ca151b2013-01-24 14:25:36 +01001348 /* inform mac80211 about what happened with the frame */
1349 switch (status & TX_STATUS_MSK) {
1350 case TX_STATUS_SUCCESS:
1351 case TX_STATUS_DIRECT_DONE:
1352 info->flags |= IEEE80211_TX_STAT_ACK;
1353 break;
Emmanuel Grumbach114db232017-08-06 13:19:05 +03001354 case TX_STATUS_FAIL_FIFO_FLUSHED:
1355 case TX_STATUS_FAIL_DRAIN_FLOW:
1356 flushed = true;
1357 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001358 case TX_STATUS_FAIL_DEST_PS:
Johannes Bergc8f54702017-06-19 23:50:31 +02001359 /* the FW should have stopped the queue and not
Sara Sharon9a3fcf92017-03-14 09:50:35 +02001360 * return this status
1361 */
Johannes Bergc8f54702017-06-19 23:50:31 +02001362 WARN_ON(1);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001363 info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1364 break;
1365 default:
1366 break;
1367 }
1368
Golan Ben-Ami25657fe2015-09-02 12:34:23 +03001369 iwl_mvm_tx_status_check_trigger(mvm, status);
1370
Johannes Berg8ca151b2013-01-24 14:25:36 +01001371 info->status.rates[0].count = tx_resp->failure_frame + 1;
Eyal Shapirad310e402013-08-11 18:43:47 +03001372 iwl_mvm_hwrate_to_tx_status(le32_to_cpu(tx_resp->initial_rate),
1373 info);
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001374 info->status.status_driver_data[1] =
1375 (void *)(uintptr_t)le32_to_cpu(tx_resp->initial_rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001376
1377 /* Single frame failure in an AMPDU queue => send BAR */
Sara Sharonc56108b2017-01-01 18:42:23 +02001378 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
Eyal Shapira9ce578a2014-12-31 15:22:38 +02001379 !(info->flags & IEEE80211_TX_STAT_ACK) &&
Emmanuel Grumbach114db232017-08-06 13:19:05 +03001380 !(info->flags & IEEE80211_TX_STAT_TX_FILTERED) && !flushed)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001381 info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
Sara Sharonc56108b2017-01-01 18:42:23 +02001382 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001383
Emmanuel Grumbachebea2f32013-06-13 10:07:47 +03001384 /* W/A FW bug: seq_ctl is wrong when the status isn't success */
1385 if (status != TX_STATUS_SUCCESS) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001386 struct ieee80211_hdr *hdr = (void *)skb->data;
1387 seq_ctl = le16_to_cpu(hdr->seq_ctrl);
1388 }
1389
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001390 if (unlikely(!seq_ctl)) {
1391 struct ieee80211_hdr *hdr = (void *)skb->data;
1392
1393 /*
1394 * If it is an NDP, we can't update next_reclaim since
1395 * its sequence control is 0. Note that for that same
1396 * reason, NDPs are never sent to A-MPDU'able queues
1397 * so that we can never have more than one freed frame
1398 * for a single Tx resonse (see WARN_ON below).
1399 */
1400 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
1401 is_ndp = true;
1402 }
1403
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +03001404 /*
1405 * TODO: this is not accurate if we are freeing more than one
1406 * packet.
1407 */
1408 info->status.tx_time =
1409 le16_to_cpu(tx_resp->wireless_media_time);
Eliad Peller3a84b692014-03-12 15:05:06 +02001410 BUILD_BUG_ON(ARRAY_SIZE(info->status.status_driver_data) < 1);
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001411 lq_color = TX_RES_RATE_TABLE_COL_GET(tx_resp->tlc_info);
Eliad Peller3a84b692014-03-12 15:05:06 +02001412 info->status.status_driver_data[0] =
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001413 RS_DRV_DATA_PACK(lq_color, tx_resp->reduced_tpc);
Eliad Peller3a84b692014-03-12 15:05:06 +02001414
Johannes Bergf14d6b32014-03-21 13:30:03 +01001415 ieee80211_tx_status(mvm->hw, skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001416 }
1417
Johannes Bergc8f54702017-06-19 23:50:31 +02001418 /* This is an aggregation queue or might become one, so we use
1419 * the ssn since: ssn = wifi seq_num % 256.
1420 * The seq_ctl is the sequence control of the packet to which
1421 * this Tx response relates. But if there is a hole in the
1422 * bitmap of the BA we received, this Tx response may allow to
1423 * reclaim the hole and all the subsequent packets that were
1424 * already acked. In that case, seq_ctl != ssn, and the next
1425 * packet to be reclaimed will be ssn and not seq_ctl. In that
1426 * case, several packets will be reclaimed even if
1427 * frame_count = 1.
1428 *
1429 * The ssn is the index (% 256) of the latest packet that has
1430 * treated (acked / dropped) + 1.
1431 */
1432 next_reclaimed = ssn;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001433
1434 IWL_DEBUG_TX_REPLY(mvm,
Emmanuel Grumbach8c6e83d2013-03-20 17:12:46 +02001435 "TXQ %d status %s (0x%08x)\n",
1436 txq_id, iwl_mvm_get_tx_fail_reason(status), status);
1437
1438 IWL_DEBUG_TX_REPLY(mvm,
1439 "\t\t\t\tinitial_rate 0x%x retries %d, idx=%d ssn=%d next_reclaimed=0x%x seq_ctl=0x%x\n",
1440 le32_to_cpu(tx_resp->initial_rate),
Johannes Berg8ca151b2013-01-24 14:25:36 +01001441 tx_resp->failure_frame, SEQ_TO_INDEX(sequence),
1442 ssn, next_reclaimed, seq_ctl);
1443
1444 rcu_read_lock();
1445
1446 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001447 /*
1448 * sta can't be NULL otherwise it'd mean that the sta has been freed in
1449 * the firmware while we still have packets for it in the Tx queues.
1450 */
1451 if (WARN_ON_ONCE(!sta))
1452 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001453
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001454 if (!IS_ERR(sta)) {
Johannes Berg5b577a92013-11-14 18:20:04 +01001455 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001456
Sara Sharonc65f4e02016-12-13 16:10:28 +02001457 if (tid != IWL_TID_NON_QOS && tid != IWL_MGMT_TID) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001458 struct iwl_mvm_tid_data *tid_data =
1459 &mvmsta->tid_data[tid];
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001460 bool send_eosp_ndp = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001461
Johannes Berg2bfb5092012-12-27 21:43:48 +01001462 spin_lock_bh(&mvmsta->lock);
Liad Kaufmancf961e12015-08-13 19:16:08 +03001463
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001464 if (!is_ndp) {
1465 tid_data->next_reclaimed = next_reclaimed;
1466 IWL_DEBUG_TX_REPLY(mvm,
1467 "Next reclaimed packet:%d\n",
1468 next_reclaimed);
1469 } else {
1470 IWL_DEBUG_TX_REPLY(mvm,
1471 "NDP - don't update next_reclaimed\n");
1472 }
1473
Johannes Berg8ca151b2013-01-24 14:25:36 +01001474 iwl_mvm_check_ratid_empty(mvm, sta, tid);
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001475
1476 if (mvmsta->sleep_tx_count) {
1477 mvmsta->sleep_tx_count--;
1478 if (mvmsta->sleep_tx_count &&
Liad Kaufmandd321622017-04-05 16:25:11 +03001479 !iwl_mvm_tid_queued(mvm, tid_data)) {
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001480 /*
1481 * The number of frames in the queue
1482 * dropped to 0 even if we sent less
1483 * frames than we thought we had on the
1484 * Tx queue.
1485 * This means we had holes in the BA
1486 * window that we just filled, ask
1487 * mac80211 to send EOSP since the
1488 * firmware won't know how to do that.
1489 * Send NDP and the firmware will send
1490 * EOSP notification that will trigger
1491 * a call to ieee80211_sta_eosp().
1492 */
1493 send_eosp_ndp = true;
1494 }
1495 }
1496
Johannes Berg2bfb5092012-12-27 21:43:48 +01001497 spin_unlock_bh(&mvmsta->lock);
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001498 if (send_eosp_ndp) {
1499 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta,
1500 IEEE80211_FRAME_RELEASE_UAPSD,
1501 1, tid, false, false);
1502 mvmsta->sleep_tx_count = 0;
1503 ieee80211_send_eosp_nullfunc(sta, tid);
1504 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001505 }
Johannes Berg3e56ead2013-02-15 22:23:18 +01001506
1507 if (mvmsta->next_status_eosp) {
1508 mvmsta->next_status_eosp = false;
1509 ieee80211_sta_eosp(sta);
1510 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001511 } else {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001512 mvmsta = NULL;
1513 }
1514
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001515out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001516 rcu_read_unlock();
1517}
1518
1519#ifdef CONFIG_IWLWIFI_DEBUG
1520#define AGG_TX_STATE_(x) case AGG_TX_STATE_ ## x: return #x
1521static const char *iwl_get_agg_tx_status(u16 status)
1522{
1523 switch (status & AGG_TX_STATE_STATUS_MSK) {
1524 AGG_TX_STATE_(TRANSMITTED);
1525 AGG_TX_STATE_(UNDERRUN);
1526 AGG_TX_STATE_(BT_PRIO);
1527 AGG_TX_STATE_(FEW_BYTES);
1528 AGG_TX_STATE_(ABORT);
Emmanuel Grumbachf9cd3e02017-08-02 09:29:33 +03001529 AGG_TX_STATE_(TX_ON_AIR_DROP);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001530 AGG_TX_STATE_(LAST_SENT_TRY_CNT);
1531 AGG_TX_STATE_(LAST_SENT_BT_KILL);
1532 AGG_TX_STATE_(SCD_QUERY);
1533 AGG_TX_STATE_(TEST_BAD_CRC32);
1534 AGG_TX_STATE_(RESPONSE);
1535 AGG_TX_STATE_(DUMP_TX);
1536 AGG_TX_STATE_(DELAY_TX);
1537 }
1538
1539 return "UNKNOWN";
1540}
1541
1542static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1543 struct iwl_rx_packet *pkt)
1544{
1545 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
Sara Sharon12db2942017-01-17 14:28:21 +02001546 struct agg_tx_status *frame_status =
1547 iwl_mvm_get_agg_status(mvm, tx_resp);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001548 int i;
1549
1550 for (i = 0; i < tx_resp->frame_count; i++) {
1551 u16 fstatus = le16_to_cpu(frame_status[i].status);
1552
1553 IWL_DEBUG_TX_REPLY(mvm,
1554 "status %s (0x%04x), try-count (%d) seq (0x%x)\n",
1555 iwl_get_agg_tx_status(fstatus),
1556 fstatus & AGG_TX_STATE_STATUS_MSK,
1557 (fstatus & AGG_TX_STATE_TRY_CNT_MSK) >>
1558 AGG_TX_STATE_TRY_CNT_POS,
1559 le16_to_cpu(frame_status[i].sequence));
1560 }
1561}
1562#else
1563static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1564 struct iwl_rx_packet *pkt)
1565{}
1566#endif /* CONFIG_IWLWIFI_DEBUG */
1567
1568static void iwl_mvm_rx_tx_cmd_agg(struct iwl_mvm *mvm,
1569 struct iwl_rx_packet *pkt)
1570{
1571 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1572 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1573 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
1574 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
Sara Sharon13303c02016-04-10 15:51:54 +03001575 struct iwl_mvm_sta *mvmsta;
Liad Kaufmancf961e12015-08-13 19:16:08 +03001576 int queue = SEQ_TO_QUEUE(sequence);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001577
Johannes Bergc8f54702017-06-19 23:50:31 +02001578 if (WARN_ON_ONCE(queue < IWL_MVM_DQA_MIN_DATA_QUEUE &&
1579 (queue != IWL_MVM_DQA_BSS_CLIENT_QUEUE)))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001580 return;
1581
1582 if (WARN_ON_ONCE(tid == IWL_TID_NON_QOS))
1583 return;
1584
1585 iwl_mvm_rx_tx_cmd_agg_dbg(mvm, pkt);
1586
1587 rcu_read_lock();
1588
Sara Sharon13303c02016-04-10 15:51:54 +03001589 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001590
Sara Sharon13303c02016-04-10 15:51:54 +03001591 if (!WARN_ON_ONCE(!mvmsta)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001592 mvmsta->tid_data[tid].rate_n_flags =
1593 le32_to_cpu(tx_resp->initial_rate);
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +03001594 mvmsta->tid_data[tid].tx_time =
1595 le16_to_cpu(tx_resp->wireless_media_time);
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001596 mvmsta->tid_data[tid].lq_color =
1597 (tx_resp->tlc_info & TX_RES_RATE_TABLE_COLOR_MSK) >>
1598 TX_RES_RATE_TABLE_COLOR_POS;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001599 }
1600
1601 rcu_read_unlock();
1602}
1603
Johannes Berg04168412015-06-23 21:22:09 +02001604void iwl_mvm_rx_tx_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001605{
1606 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1607 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1608
1609 if (tx_resp->frame_count == 1)
1610 iwl_mvm_rx_tx_cmd_single(mvm, pkt);
1611 else
1612 iwl_mvm_rx_tx_cmd_agg(mvm, pkt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001613}
1614
Sara Sharonc46e7722016-07-17 14:24:55 +03001615static void iwl_mvm_tx_reclaim(struct iwl_mvm *mvm, int sta_id, int tid,
1616 int txq, int index,
1617 struct ieee80211_tx_info *ba_info, u32 rate)
Eyal Shapiraa7130442014-09-14 15:28:09 +03001618{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001619 struct sk_buff_head reclaimed_skbs;
1620 struct iwl_mvm_tid_data *tid_data;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001621 struct ieee80211_sta *sta;
1622 struct iwl_mvm_sta *mvmsta;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001623 struct sk_buff *skb;
Sara Sharonc46e7722016-07-17 14:24:55 +03001624 int freed;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001625
Eyal Shapira2cee4762015-01-16 11:09:30 +02001626 if (WARN_ONCE(sta_id >= IWL_MVM_STATION_COUNT ||
1627 tid >= IWL_MAX_TID_COUNT,
1628 "sta_id %d tid %d", sta_id, tid))
Johannes Berg04168412015-06-23 21:22:09 +02001629 return;
Eyal Shapira2cee4762015-01-16 11:09:30 +02001630
Johannes Berg8ca151b2013-01-24 14:25:36 +01001631 rcu_read_lock();
1632
1633 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
1634
1635 /* Reclaiming frames for a station that has been deleted ? */
1636 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta))) {
1637 rcu_read_unlock();
Johannes Berg04168412015-06-23 21:22:09 +02001638 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001639 }
1640
Johannes Berg5b577a92013-11-14 18:20:04 +01001641 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001642 tid_data = &mvmsta->tid_data[tid];
1643
Sara Sharonc46e7722016-07-17 14:24:55 +03001644 if (tid_data->txq_id != txq) {
Johannes Berg1f16ea22015-03-06 09:17:37 +01001645 IWL_ERR(mvm,
Sara Sharonc46e7722016-07-17 14:24:55 +03001646 "invalid BA notification: Q %d, tid %d\n",
1647 tid_data->txq_id, tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001648 rcu_read_unlock();
Johannes Berg04168412015-06-23 21:22:09 +02001649 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001650 }
1651
Johannes Berg2bfb5092012-12-27 21:43:48 +01001652 spin_lock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001653
1654 __skb_queue_head_init(&reclaimed_skbs);
1655
1656 /*
1657 * Release all TFDs before the SSN, i.e. all TFDs in front of
1658 * block-ack window (we assume that they've been successfully
1659 * transmitted ... if not, it's too late anyway).
1660 */
Sara Sharonc46e7722016-07-17 14:24:55 +03001661 iwl_trans_reclaim(mvm->trans, txq, index, &reclaimed_skbs);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001662
Sara Sharonc46e7722016-07-17 14:24:55 +03001663 tid_data->next_reclaimed = index;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001664
1665 iwl_mvm_check_ratid_empty(mvm, sta, tid);
1666
1667 freed = 0;
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02001668
1669 /* pack lq color from tid_data along the reduced txp */
1670 ba_info->status.status_driver_data[0] =
1671 RS_DRV_DATA_PACK(tid_data->lq_color,
1672 ba_info->status.status_driver_data[0]);
Sara Sharonc46e7722016-07-17 14:24:55 +03001673 ba_info->status.status_driver_data[1] = (void *)(uintptr_t)rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001674
1675 skb_queue_walk(&reclaimed_skbs, skb) {
Johannes Berg143582c2014-02-25 10:37:15 +01001676 struct ieee80211_hdr *hdr = (void *)skb->data;
1677 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001678
1679 if (ieee80211_is_data_qos(hdr->frame_control))
1680 freed++;
1681 else
1682 WARN_ON_ONCE(1);
1683
Johannes Berg8ca151b2013-01-24 14:25:36 +01001684 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1685
Johannes Berg143582c2014-02-25 10:37:15 +01001686 memset(&info->status, 0, sizeof(info->status));
1687 /* Packet was transmitted successfully, failures come as single
1688 * frames because before failing a frame the firmware transmits
1689 * it without aggregation at least once.
1690 */
1691 info->flags |= IEEE80211_TX_STAT_ACK;
1692
Eyal Shapiraa7130442014-09-14 15:28:09 +03001693 /* this is the first skb we deliver in this batch */
1694 /* put the rate scaling data there */
Sara Sharonc46e7722016-07-17 14:24:55 +03001695 if (freed == 1) {
1696 info->flags |= IEEE80211_TX_STAT_AMPDU;
1697 memcpy(&info->status, &ba_info->status,
1698 sizeof(ba_info->status));
1699 iwl_mvm_hwrate_to_tx_status(rate, info);
1700 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001701 }
1702
Johannes Berg2bfb5092012-12-27 21:43:48 +01001703 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001704
Eyal Shapiraa7130442014-09-14 15:28:09 +03001705 /* We got a BA notif with 0 acked or scd_ssn didn't progress which is
1706 * possible (i.e. first MPDU in the aggregation wasn't acked)
1707 * Still it's important to update RS about sent vs. acked.
1708 */
1709 if (skb_queue_empty(&reclaimed_skbs)) {
Eyal Shapiraa7130442014-09-14 15:28:09 +03001710 struct ieee80211_chanctx_conf *chanctx_conf = NULL;
1711
1712 if (mvmsta->vif)
1713 chanctx_conf =
1714 rcu_dereference(mvmsta->vif->chanctx_conf);
1715
1716 if (WARN_ON_ONCE(!chanctx_conf))
1717 goto out;
1718
Sara Sharonc46e7722016-07-17 14:24:55 +03001719 ba_info->band = chanctx_conf->def.chan->band;
1720 iwl_mvm_hwrate_to_tx_status(rate, ba_info);
Eyal Shapiraa7130442014-09-14 15:28:09 +03001721
1722 IWL_DEBUG_TX_REPLY(mvm, "No reclaim. Update rs directly\n");
Sara Sharonc46e7722016-07-17 14:24:55 +03001723 iwl_mvm_rs_tx_status(mvm, sta, tid, ba_info, false);
Eyal Shapiraa7130442014-09-14 15:28:09 +03001724 }
1725
1726out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001727 rcu_read_unlock();
1728
1729 while (!skb_queue_empty(&reclaimed_skbs)) {
1730 skb = __skb_dequeue(&reclaimed_skbs);
Johannes Bergf14d6b32014-03-21 13:30:03 +01001731 ieee80211_tx_status(mvm->hw, skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001732 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001733}
1734
Sara Sharonc46e7722016-07-17 14:24:55 +03001735void iwl_mvm_rx_ba_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
1736{
1737 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1738 int sta_id, tid, txq, index;
1739 struct ieee80211_tx_info ba_info = {};
1740 struct iwl_mvm_ba_notif *ba_notif;
1741 struct iwl_mvm_tid_data *tid_data;
1742 struct iwl_mvm_sta *mvmsta;
1743
Gregory Greenman9465c3f2017-07-06 05:07:33 +03001744 ba_info.flags = IEEE80211_TX_STAT_AMPDU;
1745
Sara Sharonc46e7722016-07-17 14:24:55 +03001746 if (iwl_mvm_has_new_tx_api(mvm)) {
1747 struct iwl_mvm_compressed_ba_notif *ba_res =
1748 (void *)pkt->data;
Liad Kaufmancba46982017-04-13 17:10:33 +03001749 int i;
Sara Sharonc46e7722016-07-17 14:24:55 +03001750
1751 sta_id = ba_res->sta_id;
1752 ba_info.status.ampdu_ack_len = (u8)le16_to_cpu(ba_res->done);
1753 ba_info.status.ampdu_len = (u8)le16_to_cpu(ba_res->txed);
1754 ba_info.status.tx_time =
1755 (u16)le32_to_cpu(ba_res->wireless_time);
1756 ba_info.status.status_driver_data[0] =
1757 (void *)(uintptr_t)ba_res->reduced_txp;
1758
Sara Sharon9b1ea162017-02-19 17:00:58 +02001759 if (!le16_to_cpu(ba_res->tfd_cnt))
1760 goto out;
1761
Liad Kaufmancba46982017-04-13 17:10:33 +03001762 /* Free per TID */
1763 for (i = 0; i < le16_to_cpu(ba_res->tfd_cnt); i++) {
1764 struct iwl_mvm_compressed_ba_tfd *ba_tfd =
1765 &ba_res->tfd[i];
1766
1767 iwl_mvm_tx_reclaim(mvm, sta_id, ba_tfd->tid,
1768 (int)(le16_to_cpu(ba_tfd->q_num)),
1769 le16_to_cpu(ba_tfd->tfd_index),
1770 &ba_info,
1771 le32_to_cpu(ba_res->tx_rate));
1772 }
Sara Sharonc46e7722016-07-17 14:24:55 +03001773
Sara Sharon9b1ea162017-02-19 17:00:58 +02001774out:
Sara Sharonc46e7722016-07-17 14:24:55 +03001775 IWL_DEBUG_TX_REPLY(mvm,
1776 "BA_NOTIFICATION Received from sta_id = %d, flags %x, sent:%d, acked:%d\n",
1777 sta_id, le32_to_cpu(ba_res->flags),
1778 le16_to_cpu(ba_res->txed),
1779 le16_to_cpu(ba_res->done));
1780 return;
1781 }
1782
1783 ba_notif = (void *)pkt->data;
1784 sta_id = ba_notif->sta_id;
1785 tid = ba_notif->tid;
1786 /* "flow" corresponds to Tx queue */
1787 txq = le16_to_cpu(ba_notif->scd_flow);
1788 /* "ssn" is start of block-ack Tx window, corresponds to index
1789 * (in Tx queue's circular buffer) of first TFD/frame in window */
1790 index = le16_to_cpu(ba_notif->scd_ssn);
1791
1792 rcu_read_lock();
1793 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, sta_id);
1794 if (WARN_ON_ONCE(!mvmsta)) {
1795 rcu_read_unlock();
1796 return;
1797 }
1798
1799 tid_data = &mvmsta->tid_data[tid];
1800
1801 ba_info.status.ampdu_ack_len = ba_notif->txed_2_done;
1802 ba_info.status.ampdu_len = ba_notif->txed;
1803 ba_info.status.tx_time = tid_data->tx_time;
1804 ba_info.status.status_driver_data[0] =
1805 (void *)(uintptr_t)ba_notif->reduced_txp;
1806
1807 rcu_read_unlock();
1808
1809 iwl_mvm_tx_reclaim(mvm, sta_id, tid, txq, index, &ba_info,
1810 tid_data->rate_n_flags);
1811
1812 IWL_DEBUG_TX_REPLY(mvm,
1813 "BA_NOTIFICATION Received from %pM, sta_id = %d\n",
Johannes Berg3dc6dd92017-03-09 14:08:51 +01001814 ba_notif->sta_addr, ba_notif->sta_id);
Sara Sharonc46e7722016-07-17 14:24:55 +03001815
1816 IWL_DEBUG_TX_REPLY(mvm,
1817 "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = %d, scd_ssn = %d sent:%d, acked:%d\n",
1818 ba_notif->tid, le16_to_cpu(ba_notif->seq_ctl),
1819 le64_to_cpu(ba_notif->bitmap), txq, index,
1820 ba_notif->txed, ba_notif->txed_2_done);
1821
1822 IWL_DEBUG_TX_REPLY(mvm, "reduced txp from ba notif %d\n",
1823 ba_notif->reduced_txp);
1824}
1825
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02001826/*
1827 * Note that there are transports that buffer frames before they reach
1828 * the firmware. This means that after flush_tx_path is called, the
1829 * queue might not be empty. The race-free way to handle this is to:
1830 * 1) set the station as draining
1831 * 2) flush the Tx path
1832 * 3) wait for the transport queues to be empty
1833 */
Luca Coelho5888a402015-10-06 09:54:57 +03001834int iwl_mvm_flush_tx_path(struct iwl_mvm *mvm, u32 tfd_msk, u32 flags)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001835{
1836 int ret;
Mordechai Goodsteind167e812017-05-10 16:42:53 +03001837 struct iwl_tx_path_flush_cmd_v1 flush_cmd = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001838 .queues_ctl = cpu_to_le32(tfd_msk),
1839 .flush_ctl = cpu_to_le16(DUMP_TX_FIFO_FLUSH),
1840 };
1841
Mordechai Goodsteind167e812017-05-10 16:42:53 +03001842 WARN_ON(iwl_mvm_has_new_tx_api(mvm));
1843
1844 ret = iwl_mvm_send_cmd_pdu(mvm, TXPATH_FLUSH, flags,
1845 sizeof(flush_cmd), &flush_cmd);
1846 if (ret)
1847 IWL_ERR(mvm, "Failed to send flush command (%d)\n", ret);
1848 return ret;
1849}
1850
1851int iwl_mvm_flush_sta_tids(struct iwl_mvm *mvm, u32 sta_id,
1852 u16 tids, u32 flags)
1853{
1854 int ret;
1855 struct iwl_tx_path_flush_cmd flush_cmd = {
1856 .sta_id = cpu_to_le32(sta_id),
1857 .tid_mask = cpu_to_le16(tids),
1858 };
1859
1860 WARN_ON(!iwl_mvm_has_new_tx_api(mvm));
1861
Johannes Berg8ca151b2013-01-24 14:25:36 +01001862 ret = iwl_mvm_send_cmd_pdu(mvm, TXPATH_FLUSH, flags,
1863 sizeof(flush_cmd), &flush_cmd);
1864 if (ret)
1865 IWL_ERR(mvm, "Failed to send flush command (%d)\n", ret);
1866 return ret;
1867}
Sara Sharond49394a2017-03-05 13:01:08 +02001868
Johannes Berga9c50722017-04-19 11:14:28 +02001869int iwl_mvm_flush_sta(struct iwl_mvm *mvm, void *sta, bool internal, u32 flags)
Sara Sharond49394a2017-03-05 13:01:08 +02001870{
Mordechai Goodsteind167e812017-05-10 16:42:53 +03001871 struct iwl_mvm_int_sta *int_sta = sta;
1872 struct iwl_mvm_sta *mvm_sta = sta;
Sara Sharond49394a2017-03-05 13:01:08 +02001873
Mordechai Goodsteind167e812017-05-10 16:42:53 +03001874 if (iwl_mvm_has_new_tx_api(mvm)) {
1875 if (internal)
1876 return iwl_mvm_flush_sta_tids(mvm, int_sta->sta_id,
1877 BIT(IWL_MGMT_TID), flags);
Sara Sharond49394a2017-03-05 13:01:08 +02001878
Mordechai Goodsteind167e812017-05-10 16:42:53 +03001879 return iwl_mvm_flush_sta_tids(mvm, mvm_sta->sta_id,
1880 0xFF, flags);
Sara Sharond49394a2017-03-05 13:01:08 +02001881 }
1882
Mordechai Goodsteind167e812017-05-10 16:42:53 +03001883 if (internal)
1884 return iwl_mvm_flush_tx_path(mvm, int_sta->tfd_queue_msk,
1885 flags);
1886
1887 return iwl_mvm_flush_tx_path(mvm, mvm_sta->tfd_queue_msk, flags);
Sara Sharond49394a2017-03-05 13:01:08 +02001888}