blob: 0dcf0ebab45dfdfc33e34873670e9d0dc8f48eb5 [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
Emmanuel Grumbach532beba2016-03-07 22:23:52 +020010 * Copyright(c) 2016 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
Johannes Berg8ca151b2013-01-24 14:25:36 +010037 * 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>
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +030068#include <linux/tcp.h>
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +030069#include <net/ip.h>
Sara Sharon5e6a98d2016-03-10 17:40:56 +020070#include <net/ipv6.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010071
72#include "iwl-trans.h"
73#include "iwl-eeprom-parse.h"
74#include "mvm.h"
75#include "sta.h"
Golan Ben-Ami2f89a5d2015-10-27 19:17:14 +020076#include "fw-dbg.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010077
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
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
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,
107 struct ieee80211_tx_info *info)
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200108{
Sara Sharonb86dd742016-09-29 15:16:03 +0300109 u16 offload_assist = 0;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200110#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
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
Sara Sharonb86dd742016-09-29 15:16:03 +0300193out:
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200194#endif
Sara Sharonb86dd742016-09-29 15:16:03 +0300195 return offload_assist;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200196}
197
Johannes Berg8ca151b2013-01-24 14:25:36 +0100198/*
199 * Sets most of the Tx cmd's fields
200 */
Arik Nemtsov6ce73e62014-09-11 13:00:19 +0300201void 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)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100204{
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300205 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100206 struct ieee80211_hdr *hdr = (void *)skb->data;
207 __le16 fc = hdr->frame_control;
208 u32 tx_flags = le32_to_cpu(tx_cmd->tx_flags);
209 u32 len = skb->len + FCS_LEN;
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +0200210 u8 ac;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100211
212 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
213 tx_flags |= TX_CMD_FLG_ACK;
214 else
215 tx_flags &= ~TX_CMD_FLG_ACK;
216
217 if (ieee80211_is_probe_resp(fc))
218 tx_flags |= TX_CMD_FLG_TSF;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100219
Johannes Berg8ca151b2013-01-24 14:25:36 +0100220 if (ieee80211_has_morefrags(fc))
221 tx_flags |= TX_CMD_FLG_MORE_FRAG;
222
223 if (ieee80211_is_data_qos(fc)) {
224 u8 *qc = ieee80211_get_qos_ctl(hdr);
225 tx_cmd->tid_tspec = qc[0] & 0xf;
226 tx_flags &= ~TX_CMD_FLG_SEQ_CTL;
Sara Sharond8fe4842016-03-09 10:12:45 +0200227 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
228 tx_cmd->offload_assist |=
229 cpu_to_le16(BIT(TX_CMD_OFFLD_AMSDU));
Eyal Shapira9b3b43d2014-12-31 18:34:56 +0200230 } else if (ieee80211_is_back_req(fc)) {
231 struct ieee80211_bar *bar = (void *)skb->data;
232 u16 control = le16_to_cpu(bar->control);
Emmanuel Grumbach42032632015-04-15 12:43:46 +0300233 u16 ssn = le16_to_cpu(bar->start_seq_num);
Eyal Shapira9b3b43d2014-12-31 18:34:56 +0200234
235 tx_flags |= TX_CMD_FLG_ACK | TX_CMD_FLG_BAR;
236 tx_cmd->tid_tspec = (control &
237 IEEE80211_BAR_CTRL_TID_INFO_MASK) >>
238 IEEE80211_BAR_CTRL_TID_INFO_SHIFT;
239 WARN_ON_ONCE(tx_cmd->tid_tspec >= IWL_MAX_TID_COUNT);
Emmanuel Grumbach42032632015-04-15 12:43:46 +0300240 iwl_mvm_bar_check_trigger(mvm, bar->ra, tx_cmd->tid_tspec,
241 ssn);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100242 } else {
243 tx_cmd->tid_tspec = IWL_TID_NON_QOS;
244 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
245 tx_flags |= TX_CMD_FLG_SEQ_CTL;
246 else
247 tx_flags &= ~TX_CMD_FLG_SEQ_CTL;
248 }
249
Eyal Shapiraa9dc5062014-12-31 17:58:23 +0200250 /* Default to 0 (BE) when tid_spec is set to IWL_TID_NON_QOS */
251 if (tx_cmd->tid_tspec < IWL_MAX_TID_COUNT)
252 ac = tid_to_mac80211_ac[tx_cmd->tid_tspec];
253 else
254 ac = tid_to_mac80211_ac[0];
255
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +0200256 tx_flags |= iwl_mvm_bt_coex_tx_prio(mvm, hdr, info, ac) <<
257 TX_CMD_FLG_BT_PRIO_POS;
258
Johannes Berg8ca151b2013-01-24 14:25:36 +0100259 if (ieee80211_is_mgmt(fc)) {
260 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Avri Altmanb084a352015-07-12 09:10:05 +0300261 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_ASSOC);
262 else if (ieee80211_is_action(fc))
263 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100264 else
Avri Altmanb084a352015-07-12 09:10:05 +0300265 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100266
267 /* The spec allows Action frames in A-MPDU, we don't support
268 * it
269 */
270 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_AMPDU);
Johannes Berg63f75352014-01-31 14:56:18 +0100271 } else if (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO) {
Avri Altmanb084a352015-07-12 09:10:05 +0300272 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100273 } else {
Avri Altmanb084a352015-07-12 09:10:05 +0300274 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100275 }
276
Johannes Berg8ca151b2013-01-24 14:25:36 +0100277 if (ieee80211_is_data(fc) && len > mvm->rts_threshold &&
278 !is_multicast_ether_addr(ieee80211_get_DA(hdr)))
279 tx_flags |= TX_CMD_FLG_PROT_REQUIRE;
280
Johannes Berg859d9142015-06-01 17:11:11 +0200281 if (fw_has_capa(&mvm->fw->ucode_capa,
282 IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT) &&
Andrei Otcheretianskif1daa002014-07-01 12:54:25 +0300283 ieee80211_action_contains_tpc(skb))
284 tx_flags |= TX_CMD_FLG_WRITE_TX_POWER;
285
Johannes Berg8ca151b2013-01-24 14:25:36 +0100286 tx_cmd->tx_flags = cpu_to_le32(tx_flags);
287 /* Total # bytes to be transmitted */
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300288 tx_cmd->len = cpu_to_le16((u16)skb->len +
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300289 (uintptr_t)skb_info->driver_data[0]);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100290 tx_cmd->life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
291 tx_cmd->sta_id = sta_id;
Sara Sharond8fe4842016-03-09 10:12:45 +0200292
293 /* padding is inserted later in transport */
294 if (ieee80211_hdrlen(fc) % 4 &&
295 !(tx_cmd->offload_assist & cpu_to_le16(BIT(TX_CMD_OFFLD_AMSDU))))
296 tx_cmd->offload_assist |= cpu_to_le16(BIT(TX_CMD_OFFLD_PAD));
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200297
Sara Sharonb86dd742016-09-29 15:16:03 +0300298 tx_cmd->offload_assist |=
299 cpu_to_le16(iwl_mvm_tx_csum(mvm, skb, hdr, info));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100300}
301
Sara Sharon5ec295d2016-11-01 10:52:11 +0200302static u32 iwl_mvm_get_tx_rate(struct iwl_mvm *mvm,
303 struct ieee80211_tx_info *info,
304 struct ieee80211_sta *sta)
305{
306 int rate_idx;
307 u8 rate_plcp;
308 u32 rate_flags;
309
310 /* HT rate doesn't make sense for a non data frame */
311 WARN_ONCE(info->control.rates[0].flags & IEEE80211_TX_RC_MCS,
312 "Got an HT rate (flags:0x%x/mcs:%d) for a non data frame\n",
313 info->control.rates[0].flags,
314 info->control.rates[0].idx);
315
316 rate_idx = info->control.rates[0].idx;
317 /* if the rate isn't a well known legacy rate, take the lowest one */
318 if (rate_idx < 0 || rate_idx >= IWL_RATE_COUNT_LEGACY)
319 rate_idx = rate_lowest_index(
320 &mvm->nvm_data->bands[info->band], sta);
321
322 /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
323 if (info->band == NL80211_BAND_5GHZ)
324 rate_idx += IWL_FIRST_OFDM_RATE;
325
326 /* For 2.4 GHZ band, check that there is no need to remap */
327 BUILD_BUG_ON(IWL_FIRST_CCK_RATE != 0);
328
329 /* Get PLCP rate for tx_cmd->rate_n_flags */
330 rate_plcp = iwl_mvm_mac80211_idx_to_hwrate(rate_idx);
331
332 if (info->band == NL80211_BAND_2GHZ &&
333 !iwl_mvm_bt_coex_is_shared_ant_avail(mvm))
334 rate_flags = mvm->cfg->non_shared_ant << RATE_MCS_ANT_POS;
335 else
336 rate_flags =
337 BIT(mvm->mgmt_last_antenna_idx) << RATE_MCS_ANT_POS;
338
339 /* Set CCK flag as needed */
340 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
341 rate_flags |= RATE_MCS_CCK_MSK;
342
343 return (u32)rate_plcp | rate_flags;
344}
345
Johannes Berg8ca151b2013-01-24 14:25:36 +0100346/*
347 * Sets the fields in the Tx cmd that are rate related
348 */
Arik Nemtsov6ce73e62014-09-11 13:00:19 +0300349void iwl_mvm_set_tx_cmd_rate(struct iwl_mvm *mvm, struct iwl_tx_cmd *tx_cmd,
350 struct ieee80211_tx_info *info,
351 struct ieee80211_sta *sta, __le16 fc)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100352{
Johannes Berg8ca151b2013-01-24 14:25:36 +0100353 /* Set retry limit on RTS packets */
354 tx_cmd->rts_retry_limit = IWL_RTS_DFAULT_RETRY_LIMIT;
355
356 /* Set retry limit on DATA packets and Probe Responses*/
357 if (ieee80211_is_probe_resp(fc)) {
358 tx_cmd->data_retry_limit = IWL_MGMT_DFAULT_RETRY_LIMIT;
359 tx_cmd->rts_retry_limit =
360 min(tx_cmd->data_retry_limit, tx_cmd->rts_retry_limit);
361 } else if (ieee80211_is_back_req(fc)) {
362 tx_cmd->data_retry_limit = IWL_BAR_DFAULT_RETRY_LIMIT;
363 } else {
364 tx_cmd->data_retry_limit = IWL_DEFAULT_TX_RETRY;
365 }
366
367 /*
Eliad Pellere89044d2013-07-16 17:33:26 +0300368 * for data packets, rate info comes from the table inside the fw. This
Emmanuel Grumbach1ffde692014-10-20 08:29:55 +0300369 * table is controlled by LINK_QUALITY commands
Johannes Berg8ca151b2013-01-24 14:25:36 +0100370 */
371
Emmanuel Grumbach1ffde692014-10-20 08:29:55 +0300372 if (ieee80211_is_data(fc) && sta) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100373 tx_cmd->initial_rate_index = 0;
374 tx_cmd->tx_flags |= cpu_to_le32(TX_CMD_FLG_STA_RATE);
375 return;
376 } else if (ieee80211_is_back_req(fc)) {
Emmanuel Grumbach2edc6ec2013-06-02 19:49:15 +0300377 tx_cmd->tx_flags |=
378 cpu_to_le32(TX_CMD_FLG_ACK | TX_CMD_FLG_BAR);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100379 }
380
Johannes Berg8ca151b2013-01-24 14:25:36 +0100381 mvm->mgmt_last_antenna_idx =
Moshe Harela0544272014-12-08 21:13:14 +0200382 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100383 mvm->mgmt_last_antenna_idx);
Emmanuel Grumbach34c8b242014-05-28 21:53:39 +0300384
Johannes Berg8ca151b2013-01-24 14:25:36 +0100385 /* Set the rate in the TX cmd */
Sara Sharon5ec295d2016-11-01 10:52:11 +0200386 tx_cmd->rate_n_flags = cpu_to_le32(iwl_mvm_get_tx_rate(mvm, info, sta));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100387}
388
Ayala Beker2a53d162016-04-07 16:21:57 +0300389static inline void iwl_mvm_set_tx_cmd_pn(struct ieee80211_tx_info *info,
390 u8 *crypto_hdr)
391{
392 struct ieee80211_key_conf *keyconf = info->control.hw_key;
393 u64 pn;
394
395 pn = atomic64_inc_return(&keyconf->tx_pn);
396 crypto_hdr[0] = pn;
397 crypto_hdr[2] = 0;
398 crypto_hdr[3] = 0x20 | (keyconf->keyidx << 6);
399 crypto_hdr[1] = pn >> 8;
400 crypto_hdr[4] = pn >> 16;
401 crypto_hdr[5] = pn >> 24;
402 crypto_hdr[6] = pn >> 32;
403 crypto_hdr[7] = pn >> 40;
404}
405
Johannes Berg8ca151b2013-01-24 14:25:36 +0100406/*
407 * Sets the fields in the Tx cmd that are crypto related
408 */
Johannes Bergca8c0f42015-04-20 17:54:54 +0200409static void iwl_mvm_set_tx_cmd_crypto(struct iwl_mvm *mvm,
410 struct ieee80211_tx_info *info,
411 struct iwl_tx_cmd *tx_cmd,
412 struct sk_buff *skb_frag,
413 int hdrlen)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100414{
415 struct ieee80211_key_conf *keyconf = info->control.hw_key;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200416 u8 *crypto_hdr = skb_frag->data + hdrlen;
417 u64 pn;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100418
419 switch (keyconf->cipher) {
420 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergca8c0f42015-04-20 17:54:54 +0200421 case WLAN_CIPHER_SUITE_CCMP_256:
422 iwl_mvm_set_tx_cmd_ccmp(info, tx_cmd);
Ayala Beker2a53d162016-04-07 16:21:57 +0300423 iwl_mvm_set_tx_cmd_pn(info, crypto_hdr);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100424 break;
425
426 case WLAN_CIPHER_SUITE_TKIP:
427 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
Eliad Peller1ad4f632016-02-14 13:56:36 +0200428 pn = atomic64_inc_return(&keyconf->tx_pn);
429 ieee80211_tkip_add_iv(crypto_hdr, keyconf, pn);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100430 ieee80211_get_tkip_p2k(keyconf, skb_frag, tx_cmd->key);
431 break;
432
433 case WLAN_CIPHER_SUITE_WEP104:
434 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
435 /* fall through */
436 case WLAN_CIPHER_SUITE_WEP40:
437 tx_cmd->sec_ctl |= TX_CMD_SEC_WEP |
438 ((keyconf->keyidx << TX_CMD_SEC_WEP_KEY_IDX_POS) &
439 TX_CMD_SEC_WEP_KEY_IDX_MSK);
440
441 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
442 break;
Ayala Beker2a53d162016-04-07 16:21:57 +0300443 case WLAN_CIPHER_SUITE_GCMP:
444 case WLAN_CIPHER_SUITE_GCMP_256:
445 /* TODO: Taking the key from the table might introduce a race
446 * when PTK rekeying is done, having an old packets with a PN
447 * based on the old key but the message encrypted with a new
448 * one.
449 * Need to handle this.
450 */
Emmanuel Grumbach4dc65112016-09-13 22:59:27 +0300451 tx_cmd->sec_ctl |= TX_CMD_SEC_GCMP | TX_CMD_SEC_KEY_FROM_TABLE;
Ayala Beker2a53d162016-04-07 16:21:57 +0300452 tx_cmd->key[0] = keyconf->hw_key_idx;
453 iwl_mvm_set_tx_cmd_pn(info, crypto_hdr);
454 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100455 default:
Max Stepanove36e5432013-08-27 19:56:13 +0300456 tx_cmd->sec_ctl |= TX_CMD_SEC_EXT;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100457 }
458}
459
460/*
461 * Allocates and sets the Tx cmd the driver data pointers in the skb
462 */
463static struct iwl_device_cmd *
464iwl_mvm_set_tx_params(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300465 struct ieee80211_tx_info *info, int hdrlen,
466 struct ieee80211_sta *sta, u8 sta_id)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100467{
468 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100469 struct iwl_device_cmd *dev_cmd;
470 struct iwl_tx_cmd *tx_cmd;
471
472 dev_cmd = iwl_trans_alloc_tx_cmd(mvm->trans);
473
474 if (unlikely(!dev_cmd))
475 return NULL;
476
477 memset(dev_cmd, 0, sizeof(*dev_cmd));
Emmanuel Grumbach3961a612013-10-22 11:27:55 +0300478 dev_cmd->hdr.cmd = TX_CMD;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100479 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
480
481 if (info->control.hw_key)
Johannes Bergca8c0f42015-04-20 17:54:54 +0200482 iwl_mvm_set_tx_cmd_crypto(mvm, info, tx_cmd, skb, hdrlen);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100483
484 iwl_mvm_set_tx_cmd(mvm, skb, tx_cmd, info, sta_id);
485
486 iwl_mvm_set_tx_cmd_rate(mvm, tx_cmd, info, sta, hdr->frame_control);
487
Johannes Bergbd05a5b2016-12-02 09:57:40 +0100488 return dev_cmd;
489}
490
491static void iwl_mvm_skb_prepare_status(struct sk_buff *skb,
492 struct iwl_device_cmd *cmd)
493{
494 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
495
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300496 memset(&skb_info->status, 0, sizeof(skb_info->status));
497 memset(skb_info->driver_data, 0, sizeof(skb_info->driver_data));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100498
Johannes Bergbd05a5b2016-12-02 09:57:40 +0100499 skb_info->driver_data[1] = cmd;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100500}
501
Liad Kaufmande24f632015-08-04 15:19:18 +0300502static int iwl_mvm_get_ctrl_vif_queue(struct iwl_mvm *mvm,
503 struct ieee80211_tx_info *info, __le16 fc)
504{
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300505 if (!iwl_mvm_is_dqa_supported(mvm))
506 return info->hw_queue;
Liad Kaufmande24f632015-08-04 15:19:18 +0300507
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300508 switch (info->control.vif->type) {
509 case NL80211_IFTYPE_AP:
510 /*
511 * handle legacy hostapd as well, where station may be added
512 * only after assoc.
513 */
514 if (ieee80211_is_probe_resp(fc) || ieee80211_is_auth(fc))
515 return IWL_MVM_DQA_AP_PROBE_RESP_QUEUE;
516 if (info->hw_queue == info->control.vif->cab_queue)
517 return info->hw_queue;
518
519 WARN_ON_ONCE(1);
520 return IWL_MVM_DQA_AP_PROBE_RESP_QUEUE;
521 case NL80211_IFTYPE_P2P_DEVICE:
522 if (ieee80211_is_mgmt(fc))
523 return IWL_MVM_DQA_P2P_DEVICE_QUEUE;
524 if (info->hw_queue == info->control.vif->cab_queue)
525 return info->hw_queue;
526
527 WARN_ON_ONCE(1);
528 return IWL_MVM_DQA_P2P_DEVICE_QUEUE;
529 default:
530 WARN_ONCE(1, "Not a ctrl vif, no available queue\n");
531 return -1;
532 }
Liad Kaufmande24f632015-08-04 15:19:18 +0300533}
534
Johannes Berg8ca151b2013-01-24 14:25:36 +0100535int iwl_mvm_tx_skb_non_sta(struct iwl_mvm *mvm, struct sk_buff *skb)
536{
537 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300538 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
539 struct ieee80211_tx_info info;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100540 struct iwl_device_cmd *dev_cmd;
541 struct iwl_tx_cmd *tx_cmd;
542 u8 sta_id;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200543 int hdrlen = ieee80211_hdrlen(hdr->frame_control);
Liad Kaufmande24f632015-08-04 15:19:18 +0300544 int queue;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100545
Beni Lev54c5ef22016-08-10 17:03:43 +0300546 /* IWL_MVM_OFFCHANNEL_QUEUE is used for ROC packets that can be used
547 * in 2 different types of vifs, P2P & STATION. P2P uses the offchannel
548 * queue. STATION (HS2.0) uses the auxiliary context of the FW,
549 * and hence needs to be sent on the aux queue
550 */
Johannes Berg45b957e2016-12-02 13:33:40 +0100551 if (skb_info->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
Beni Lev54c5ef22016-08-10 17:03:43 +0300552 skb_info->control.vif->type == NL80211_IFTYPE_STATION)
Johannes Berg45b957e2016-12-02 13:33:40 +0100553 skb_info->hw_queue = mvm->aux_queue;
Beni Lev54c5ef22016-08-10 17:03:43 +0300554
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300555 memcpy(&info, skb->cb, sizeof(info));
556
557 if (WARN_ON_ONCE(info.flags & IEEE80211_TX_CTL_AMPDU))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100558 return -1;
559
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300560 if (WARN_ON_ONCE(info.flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM &&
561 (!info.control.vif ||
562 info.hw_queue != info.control.vif->cab_queue)))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100563 return -1;
564
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300565 /* This holds the amsdu headers length */
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300566 skb_info->driver_data[0] = (void *)(uintptr_t)0;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300567
Liad Kaufmande24f632015-08-04 15:19:18 +0300568 queue = info.hw_queue;
569
Ariej Marjieh7da91b02014-07-07 12:09:40 +0300570 /*
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300571 * If the interface on which the frame is sent is the P2P_DEVICE
Johannes Berg8ca151b2013-01-24 14:25:36 +0100572 * or an AP/GO interface use the broadcast station associated
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300573 * with it; otherwise if the interface is a managed interface
574 * use the AP station associated with it for multicast traffic
575 * (this is not possible for unicast packets as a TLDS discovery
576 * response are sent without a station entry); otherwise use the
577 * AUX station.
Beni Lev6574dc92016-11-17 14:03:17 +0200578 * In DQA mode, if vif is of type STATION and frames are not multicast
579 * or offchannel, they should be sent from the BSS queue.
580 * For example, TDLS setup frames should be sent on this queue,
581 * as they go through the AP.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100582 */
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300583 sta_id = mvm->aux_sta.sta_id;
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300584 if (info.control.vif) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100585 struct iwl_mvm_vif *mvmvif =
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300586 iwl_mvm_vif_from_mac80211(info.control.vif);
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300587
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300588 if (info.control.vif->type == NL80211_IFTYPE_P2P_DEVICE ||
Liad Kaufmande24f632015-08-04 15:19:18 +0300589 info.control.vif->type == NL80211_IFTYPE_AP) {
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300590 sta_id = mvmvif->bcast_sta.sta_id;
Liad Kaufmande24f632015-08-04 15:19:18 +0300591 queue = iwl_mvm_get_ctrl_vif_queue(mvm, &info,
592 hdr->frame_control);
Sara Sharon3ee0f0e2016-08-08 11:51:24 +0300593 if (queue < 0)
594 return -1;
595
Liad Kaufmande24f632015-08-04 15:19:18 +0300596 } else if (info.control.vif->type == NL80211_IFTYPE_STATION &&
597 is_multicast_ether_addr(hdr->addr1)) {
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300598 u8 ap_sta_id = ACCESS_ONCE(mvmvif->ap_sta_id);
599
600 if (ap_sta_id != IWL_MVM_STATION_COUNT)
601 sta_id = ap_sta_id;
Liad Kaufmane3118ad2016-06-05 10:49:02 +0300602 } else if (iwl_mvm_is_dqa_supported(mvm) &&
Beni Lev6574dc92016-11-17 14:03:17 +0200603 info.control.vif->type == NL80211_IFTYPE_STATION &&
604 queue != mvm->aux_queue) {
Liad Kaufmane3118ad2016-06-05 10:49:02 +0300605 queue = IWL_MVM_DQA_BSS_CLIENT_QUEUE;
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300606 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100607 }
608
Liad Kaufmande24f632015-08-04 15:19:18 +0300609 IWL_DEBUG_TX(mvm, "station Id %d, queue=%d\n", sta_id, queue);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100610
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300611 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, &info, hdrlen, NULL, sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100612 if (!dev_cmd)
613 return -1;
614
Johannes Bergbd05a5b2016-12-02 09:57:40 +0100615 /* From now on, we cannot access info->control */
616 iwl_mvm_skb_prepare_status(skb, dev_cmd);
617
Johannes Berg8ca151b2013-01-24 14:25:36 +0100618 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
619
620 /* Copy MAC header from skb into command buffer */
Johannes Bergca8c0f42015-04-20 17:54:54 +0200621 memcpy(tx_cmd->hdr, hdr, hdrlen);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100622
Liad Kaufmande24f632015-08-04 15:19:18 +0300623 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, queue)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100624 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
625 return -1;
626 }
627
Liad Kaufmanfb896c42016-02-14 15:32:58 +0200628 /*
629 * Increase the pending frames counter, so that later when a reply comes
630 * in and the counter is decreased - we don't start getting negative
631 * values.
632 * Note that we don't need to make sure it isn't agg'd, since we're
633 * TXing non-sta
634 */
635 atomic_inc(&mvm->pending_frames[sta_id]);
636
Johannes Berg8ca151b2013-01-24 14:25:36 +0100637 return 0;
638}
639
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300640#ifdef CONFIG_INET
641static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300642 struct ieee80211_tx_info *info,
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300643 struct ieee80211_sta *sta,
644 struct sk_buff_head *mpdus_skb)
645{
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200646 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300647 struct ieee80211_hdr *hdr = (void *)skb->data;
648 unsigned int mss = skb_shinfo(skb)->gso_size;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300649 struct sk_buff *tmp, *next;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300650 char cb[sizeof(skb->cb)];
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200651 unsigned int num_subframes, tcp_payload_len, subf_len, max_amsdu_len;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300652 bool ipv4 = (skb->protocol == htons(ETH_P_IP));
653 u16 ip_base_id = ipv4 ? ntohs(ip_hdr(skb)->id) : 0;
654 u16 amsdu_add, snap_ip_tcp, pad, i = 0;
Emmanuel Grumbach9e7dce22015-10-26 16:14:06 +0200655 unsigned int dbg_max_amsdu_len;
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200656 netdev_features_t netdev_features = NETIF_F_CSUM_MASK | NETIF_F_SG;
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200657 u8 *qc, tid, txf;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300658
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300659 snap_ip_tcp = 8 + skb_transport_header(skb) - skb_network_header(skb) +
660 tcp_hdrlen(skb);
661
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200662 qc = ieee80211_get_qos_ctl(hdr);
663 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
664 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
665 return -EINVAL;
666
Emmanuel Grumbachfa820d62016-04-03 10:15:59 +0300667 dbg_max_amsdu_len = ACCESS_ONCE(mvm->max_amsdu_len);
668
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300669 if (!sta->max_amsdu_len ||
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +0200670 !ieee80211_is_data_qos(hdr->frame_control) ||
Emmanuel Grumbachfa820d62016-04-03 10:15:59 +0300671 (!mvmsta->tlc_amsdu && !dbg_max_amsdu_len)) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300672 num_subframes = 1;
673 pad = 0;
674 goto segment;
675 }
676
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200677 /*
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200678 * Do not build AMSDU for IPv6 with extension headers.
679 * ask stack to segment and checkum the generated MPDUs for us.
680 */
681 if (skb->protocol == htons(ETH_P_IPV6) &&
682 ((struct ipv6hdr *)skb_network_header(skb))->nexthdr !=
683 IPPROTO_TCP) {
684 num_subframes = 1;
685 pad = 0;
686 netdev_features &= ~NETIF_F_CSUM_MASK;
687 goto segment;
688 }
689
690 /*
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200691 * No need to lock amsdu_in_ampdu_allowed since it can't be modified
692 * during an BA session.
693 */
694 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
695 !mvmsta->tid_data[tid].amsdu_in_ampdu_allowed) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300696 num_subframes = 1;
697 pad = 0;
698 goto segment;
699 }
700
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200701 max_amsdu_len = sta->max_amsdu_len;
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200702
703 /* the Tx FIFO to which this A-MSDU will be routed */
704 txf = iwl_mvm_ac_to_tx_fifo[tid_to_mac80211_ac[tid]];
705
706 /*
707 * Don't send an AMSDU that will be longer than the TXF.
708 * Add a security margin of 256 for the TX command + headers.
709 * We also want to have the start of the next packet inside the
710 * fifo to be able to send bursts.
711 */
712 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
713 mvm->shared_mem_cfg.txfifo_size[txf] - 256);
714
Emmanuel Grumbachfa820d62016-04-03 10:15:59 +0300715 if (unlikely(dbg_max_amsdu_len))
Emmanuel Grumbach9e7dce22015-10-26 16:14:06 +0200716 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
717 dbg_max_amsdu_len);
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200718
719 /*
720 * Limit A-MSDU in A-MPDU to 4095 bytes when VHT is not
721 * supported. This is a spec requirement (IEEE 802.11-2015
722 * section 8.7.3 NOTE 3).
723 */
724 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
725 !sta->vht_cap.vht_supported)
726 max_amsdu_len = min_t(unsigned int, max_amsdu_len, 4095);
727
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300728 /* Sub frame header + SNAP + IP header + TCP header + MSS */
729 subf_len = sizeof(struct ethhdr) + snap_ip_tcp + mss;
730 pad = (4 - subf_len) & 0x3;
731
732 /*
733 * If we have N subframes in the A-MSDU, then the A-MSDU's size is
734 * N * subf_len + (N - 1) * pad.
735 */
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200736 num_subframes = (max_amsdu_len + pad) / (subf_len + pad);
737 if (num_subframes > 1)
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300738 *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300739
740 tcp_payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
741 tcp_hdrlen(skb) + skb->data_len;
742
743 /*
744 * Make sure we have enough TBs for the A-MSDU:
745 * 2 for each subframe
746 * 1 more for each fragment
747 * 1 more for the potential data in the header
748 */
749 num_subframes =
750 min_t(unsigned int, num_subframes,
751 (mvm->trans->max_skb_frags - 1 -
752 skb_shinfo(skb)->nr_frags) / 2);
753
754 /* This skb fits in one single A-MSDU */
755 if (num_subframes * mss >= tcp_payload_len) {
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300756 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
757
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300758 /*
759 * Compute the length of all the data added for the A-MSDU.
760 * This will be used to compute the length to write in the TX
761 * command. We have: SNAP + IP + TCP for n -1 subframes and
762 * ETH header for n subframes. Note that the original skb
763 * already had one set of SNAP / IP / TCP headers.
764 */
765 num_subframes = DIV_ROUND_UP(tcp_payload_len, mss);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300766 amsdu_add = num_subframes * sizeof(struct ethhdr) +
767 (num_subframes - 1) * (snap_ip_tcp + pad);
768 /* This holds the amsdu headers length */
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300769 skb_info->driver_data[0] = (void *)(uintptr_t)amsdu_add;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300770
771 __skb_queue_tail(mpdus_skb, skb);
772 return 0;
773 }
774
775 /*
776 * Trick the segmentation function to make it
777 * create SKBs that can fit into one A-MSDU.
778 */
779segment:
780 skb_shinfo(skb)->gso_size = num_subframes * mss;
781 memcpy(cb, skb->cb, sizeof(cb));
782
Sara Sharon5e6a98d2016-03-10 17:40:56 +0200783 next = skb_gso_segment(skb, netdev_features);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300784 skb_shinfo(skb)->gso_size = mss;
785 if (WARN_ON_ONCE(IS_ERR(next)))
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300786 return -EINVAL;
787 else if (next)
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300788 consume_skb(skb);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300789
790 while (next) {
791 tmp = next;
792 next = tmp->next;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300793
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300794 memcpy(tmp->cb, cb, sizeof(tmp->cb));
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300795 /*
796 * Compute the length of all the data added for the A-MSDU.
797 * This will be used to compute the length to write in the TX
798 * command. We have: SNAP + IP + TCP for n -1 subframes and
799 * ETH header for n subframes.
800 */
801 tcp_payload_len = skb_tail_pointer(tmp) -
802 skb_transport_header(tmp) -
803 tcp_hdrlen(tmp) + tmp->data_len;
804
805 if (ipv4)
806 ip_hdr(tmp)->id = htons(ip_base_id + i * num_subframes);
807
808 if (tcp_payload_len > mss) {
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300809 struct ieee80211_tx_info *skb_info =
810 IEEE80211_SKB_CB(tmp);
811
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300812 num_subframes = DIV_ROUND_UP(tcp_payload_len, mss);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300813 amsdu_add = num_subframes * sizeof(struct ethhdr) +
814 (num_subframes - 1) * (snap_ip_tcp + pad);
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300815 skb_info->driver_data[0] =
816 (void *)(uintptr_t)amsdu_add;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300817 skb_shinfo(tmp)->gso_size = mss;
818 } else {
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200819 qc = ieee80211_get_qos_ctl((void *)tmp->data);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300820
821 if (ipv4)
822 ip_send_check(ip_hdr(tmp));
823 *qc &= ~IEEE80211_QOS_CTL_A_MSDU_PRESENT;
824 skb_shinfo(tmp)->gso_size = 0;
825 }
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300826
827 tmp->prev = NULL;
828 tmp->next = NULL;
829
830 __skb_queue_tail(mpdus_skb, tmp);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300831 i++;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300832 }
833
834 return 0;
835}
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300836#else /* CONFIG_INET */
837static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300838 struct ieee80211_tx_info *info,
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300839 struct ieee80211_sta *sta,
840 struct sk_buff_head *mpdus_skb)
841{
842 /* Impossible to get TSO with CONFIG_INET */
843 WARN_ON(1);
844
845 return -1;
846}
847#endif
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300848
Liad Kaufman24afba72015-07-28 18:56:08 +0300849static void iwl_mvm_tx_add_stream(struct iwl_mvm *mvm,
850 struct iwl_mvm_sta *mvm_sta, u8 tid,
851 struct sk_buff *skb)
852{
853 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
854 u8 mac_queue = info->hw_queue;
855 struct sk_buff_head *deferred_tx_frames;
856
857 lockdep_assert_held(&mvm_sta->lock);
858
859 mvm_sta->deferred_traffic_tid_map |= BIT(tid);
860 set_bit(mvm_sta->sta_id, mvm->sta_deferred_frames);
861
862 deferred_tx_frames = &mvm_sta->tid_data[tid].deferred_tx_frames;
863
864 skb_queue_tail(deferred_tx_frames, skb);
865
866 /*
867 * The first deferred frame should've stopped the MAC queues, so we
868 * should never get a second deferred frame for the RA/TID.
869 */
870 if (!WARN(skb_queue_len(deferred_tx_frames) != 1,
871 "RATID %d/%d has %d deferred frames\n", mvm_sta->sta_id, tid,
872 skb_queue_len(deferred_tx_frames))) {
873 iwl_mvm_stop_mac_queues(mvm, BIT(mac_queue));
874 schedule_work(&mvm->add_stream_wk);
875 }
876}
877
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200878/* Check if there are any timed-out TIDs on a given shared TXQ */
879static bool iwl_mvm_txq_should_update(struct iwl_mvm *mvm, int txq_id)
880{
881 unsigned long queue_tid_bitmap = mvm->queue_info[txq_id].tid_bitmap;
882 unsigned long now = jiffies;
883 int tid;
884
885 for_each_set_bit(tid, &queue_tid_bitmap, IWL_MAX_TID_COUNT + 1) {
886 if (time_before(mvm->queue_info[txq_id].last_frame_time[tid] +
887 IWL_MVM_DQA_QUEUE_TIMEOUT, now))
888 return true;
889 }
890
891 return false;
892}
893
Johannes Berg8ca151b2013-01-24 14:25:36 +0100894/*
895 * Sets the fields in the Tx cmd that are crypto related
896 */
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300897static int iwl_mvm_tx_mpdu(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300898 struct ieee80211_tx_info *info,
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300899 struct ieee80211_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100900{
901 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100902 struct iwl_mvm_sta *mvmsta;
903 struct iwl_device_cmd *dev_cmd;
904 struct iwl_tx_cmd *tx_cmd;
905 __le16 fc;
906 u16 seq_number = 0;
907 u8 tid = IWL_MAX_TID_COUNT;
908 u8 txq_id = info->hw_queue;
Johannes Berg7ec54712016-03-16 09:29:48 +0100909 bool is_ampdu = false;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200910 int hdrlen;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100911
Johannes Berg5b577a92013-11-14 18:20:04 +0100912 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100913 fc = hdr->frame_control;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200914 hdrlen = ieee80211_hdrlen(fc);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100915
916 if (WARN_ON_ONCE(!mvmsta))
917 return -1;
918
Emmanuel Grumbach881acd82013-03-19 16:16:00 +0200919 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100920 return -1;
921
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +0300922 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, info, hdrlen,
923 sta, mvmsta->sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100924 if (!dev_cmd)
925 goto drop;
926
927 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100928
Johannes Berg3e56ead2013-02-15 22:23:18 +0100929 /*
930 * we handle that entirely ourselves -- for uAPSD the firmware
931 * will always send a notification, and for PS-Poll responses
932 * we'll notify mac80211 when getting frame status
933 */
934 info->flags &= ~IEEE80211_TX_STATUS_EOSP;
935
Johannes Berg8ca151b2013-01-24 14:25:36 +0100936 spin_lock(&mvmsta->lock);
937
938 if (ieee80211_is_data_qos(fc) && !ieee80211_is_qos_nullfunc(fc)) {
939 u8 *qc = NULL;
940 qc = ieee80211_get_qos_ctl(hdr);
941 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
942 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
943 goto drop_unlock_sta;
944
945 seq_number = mvmsta->tid_data[tid].seq_number;
946 seq_number &= IEEE80211_SCTL_SEQ;
947 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
948 hdr->seq_ctrl |= cpu_to_le16(seq_number);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100949 is_ampdu = info->flags & IEEE80211_TX_CTL_AMPDU;
Liad Kaufman24afba72015-07-28 18:56:08 +0300950 } else if (iwl_mvm_is_dqa_supported(mvm) &&
951 (ieee80211_is_qos_nullfunc(fc) ||
952 ieee80211_is_nullfunc(fc))) {
953 /*
954 * nullfunc frames should go to the MGMT queue regardless of QOS
955 */
956 tid = IWL_MAX_TID_COUNT;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100957 }
958
Liad Kaufman7585c352016-07-07 11:00:26 +0300959 if (iwl_mvm_is_dqa_supported(mvm)) {
Liad Kaufman9794c642015-08-19 17:34:28 +0300960 txq_id = mvmsta->tid_data[tid].txq_id;
961
Liad Kaufman7585c352016-07-07 11:00:26 +0300962 if (ieee80211_is_mgmt(fc))
963 tx_cmd->tid_tspec = IWL_TID_NON_QOS;
964 }
965
Johannes Berg8ca151b2013-01-24 14:25:36 +0100966 /* Copy MAC header from skb into command buffer */
Johannes Bergca8c0f42015-04-20 17:54:54 +0200967 memcpy(tx_cmd->hdr, hdr, hdrlen);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100968
969 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM);
970
Liad Kaufmane3118ad2016-06-05 10:49:02 +0300971 if (sta->tdls && !iwl_mvm_is_dqa_supported(mvm)) {
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300972 /* default to TID 0 for non-QoS packets */
973 u8 tdls_tid = tid == IWL_MAX_TID_COUNT ? 0 : tid;
974
975 txq_id = mvmsta->hw_queue[tid_to_mac80211_ac[tdls_tid]];
976 }
977
Johannes Berg8ca151b2013-01-24 14:25:36 +0100978 if (is_ampdu) {
979 if (WARN_ON_ONCE(mvmsta->tid_data[tid].state != IWL_AGG_ON))
980 goto drop_unlock_sta;
981 txq_id = mvmsta->tid_data[tid].txq_id;
982 }
983
Liad Kaufman9794c642015-08-19 17:34:28 +0300984 /* Check if TXQ needs to be allocated or re-activated */
985 if (unlikely(txq_id == IEEE80211_INVAL_HW_QUEUE ||
986 !mvmsta->tid_data[tid].is_tid_active) &&
987 iwl_mvm_is_dqa_supported(mvm)) {
988 /* If TXQ needs to be allocated... */
989 if (txq_id == IEEE80211_INVAL_HW_QUEUE) {
Liad Kaufman24afba72015-07-28 18:56:08 +0300990 iwl_mvm_tx_add_stream(mvm, mvmsta, tid, skb);
991
992 /*
993 * The frame is now deferred, and the worker scheduled
994 * will re-allocate it, so we can free it for now.
995 */
996 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
997 spin_unlock(&mvmsta->lock);
998 return 0;
999 }
1000
Liad Kaufman9794c642015-08-19 17:34:28 +03001001 /* If we are here - TXQ exists and needs to be re-activated */
1002 spin_lock(&mvm->queue_info_lock);
1003 mvm->queue_info[txq_id].status = IWL_MVM_QUEUE_READY;
1004 mvmsta->tid_data[tid].is_tid_active = true;
1005 spin_unlock(&mvm->queue_info_lock);
1006
1007 IWL_DEBUG_TX_QUEUES(mvm, "Re-activating queue %d for TX\n",
1008 txq_id);
Liad Kaufman24afba72015-07-28 18:56:08 +03001009 }
1010
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001011 if (iwl_mvm_is_dqa_supported(mvm)) {
1012 /* Keep track of the time of the last frame for this RA/TID */
1013 mvm->queue_info[txq_id].last_frame_time[tid] = jiffies;
1014
1015 /*
1016 * If we have timed-out TIDs - schedule the worker that will
1017 * reconfig the queues and update them
1018 *
1019 * Note that the mvm->queue_info_lock isn't being taken here in
1020 * order to not serialize the TX flow. This isn't dangerous
1021 * because scheduling mvm->add_stream_wk can't ruin the state,
1022 * and if we DON'T schedule it due to some race condition then
1023 * next TX we get here we will.
1024 */
1025 if (unlikely(mvm->queue_info[txq_id].status ==
1026 IWL_MVM_QUEUE_SHARED &&
1027 iwl_mvm_txq_should_update(mvm, txq_id)))
1028 schedule_work(&mvm->add_stream_wk);
1029 }
Liad Kaufman9794c642015-08-19 17:34:28 +03001030
Johannes Berg8ca151b2013-01-24 14:25:36 +01001031 IWL_DEBUG_TX(mvm, "TX to [%d|%d] Q:%d - seq: 0x%x\n", mvmsta->sta_id,
Eliad Pellercf9d1182013-12-31 18:54:06 +02001032 tid, txq_id, IEEE80211_SEQ_TO_SN(seq_number));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001033
Johannes Bergbd05a5b2016-12-02 09:57:40 +01001034 /* From now on, we cannot access info->control */
1035 iwl_mvm_skb_prepare_status(skb, dev_cmd);
1036
Johannes Berg8ca151b2013-01-24 14:25:36 +01001037 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, txq_id))
1038 goto drop_unlock_sta;
1039
Johannes Berg7ec54712016-03-16 09:29:48 +01001040 if (tid < IWL_MAX_TID_COUNT && !ieee80211_has_morefrags(fc))
Eliad Pellercf9d1182013-12-31 18:54:06 +02001041 mvmsta->tid_data[tid].seq_number = seq_number + 0x10;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001042
1043 spin_unlock(&mvmsta->lock);
1044
Liad Kaufmancf961e12015-08-13 19:16:08 +03001045 /* Increase pending frames count if this isn't AMPDU */
1046 if (!is_ampdu)
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001047 atomic_inc(&mvm->pending_frames[mvmsta->sta_id]);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001048
1049 return 0;
1050
1051drop_unlock_sta:
1052 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
1053 spin_unlock(&mvmsta->lock);
1054drop:
1055 return -1;
1056}
1057
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001058int iwl_mvm_tx_skb(struct iwl_mvm *mvm, struct sk_buff *skb,
1059 struct ieee80211_sta *sta)
1060{
1061 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001062 struct ieee80211_tx_info *skb_info = IEEE80211_SKB_CB(skb);
1063 struct ieee80211_tx_info info;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001064 struct sk_buff_head mpdus_skbs;
1065 unsigned int payload_len;
1066 int ret;
1067
1068 if (WARN_ON_ONCE(!mvmsta))
1069 return -1;
1070
1071 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
1072 return -1;
1073
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001074 memcpy(&info, skb->cb, sizeof(info));
1075
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +03001076 /* This holds the amsdu headers length */
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001077 skb_info->driver_data[0] = (void *)(uintptr_t)0;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +03001078
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001079 if (!skb_is_gso(skb))
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001080 return iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001081
1082 payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
1083 tcp_hdrlen(skb) + skb->data_len;
1084
1085 if (payload_len <= skb_shinfo(skb)->gso_size)
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001086 return iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001087
1088 __skb_queue_head_init(&mpdus_skbs);
1089
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001090 ret = iwl_mvm_tx_tso(mvm, skb, &info, sta, &mpdus_skbs);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001091 if (ret)
1092 return ret;
1093
1094 if (WARN_ON(skb_queue_empty(&mpdus_skbs)))
1095 return ret;
1096
1097 while (!skb_queue_empty(&mpdus_skbs)) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +03001098 skb = __skb_dequeue(&mpdus_skbs);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001099
Emmanuel Grumbach5c08b0f2016-05-03 12:08:43 +03001100 ret = iwl_mvm_tx_mpdu(mvm, skb, &info, sta);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +03001101 if (ret) {
1102 __skb_queue_purge(&mpdus_skbs);
1103 return ret;
1104 }
1105 }
1106
1107 return 0;
1108}
1109
Johannes Berg8ca151b2013-01-24 14:25:36 +01001110static void iwl_mvm_check_ratid_empty(struct iwl_mvm *mvm,
1111 struct ieee80211_sta *sta, u8 tid)
1112{
Johannes Berg5b577a92013-11-14 18:20:04 +01001113 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001114 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
1115 struct ieee80211_vif *vif = mvmsta->vif;
1116
1117 lockdep_assert_held(&mvmsta->lock);
1118
Johannes Berg3e56ead2013-02-15 22:23:18 +01001119 if ((tid_data->state == IWL_AGG_ON ||
1120 tid_data->state == IWL_EMPTYING_HW_QUEUE_DELBA) &&
1121 iwl_mvm_tid_queued(tid_data) == 0) {
1122 /*
1123 * Now that this aggregation queue is empty tell mac80211 so it
1124 * knows we no longer have frames buffered for the station on
1125 * this TID (for the TIM bitmap calculation.)
1126 */
1127 ieee80211_sta_set_buffered(sta, tid, false);
1128 }
1129
Johannes Berg8ca151b2013-01-24 14:25:36 +01001130 if (tid_data->ssn != tid_data->next_reclaimed)
1131 return;
1132
1133 switch (tid_data->state) {
1134 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1135 IWL_DEBUG_TX_QUEUES(mvm,
1136 "Can continue addBA flow ssn = next_recl = %d\n",
1137 tid_data->next_reclaimed);
1138 tid_data->state = IWL_AGG_STARTING;
1139 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1140 break;
1141
1142 case IWL_EMPTYING_HW_QUEUE_DELBA:
1143 IWL_DEBUG_TX_QUEUES(mvm,
1144 "Can continue DELBA flow ssn = next_recl = %d\n",
1145 tid_data->next_reclaimed);
Liad Kaufman15985fb2016-06-26 14:45:12 +03001146 if (!iwl_mvm_is_dqa_supported(mvm)) {
1147 u8 mac80211_ac = tid_to_mac80211_ac[tid];
1148
1149 iwl_mvm_disable_txq(mvm, tid_data->txq_id,
1150 vif->hw_queue[mac80211_ac], tid,
1151 CMD_ASYNC);
1152 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001153 tid_data->state = IWL_AGG_OFF;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001154 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1155 break;
1156
1157 default:
1158 break;
1159 }
1160}
1161
1162#ifdef CONFIG_IWLWIFI_DEBUG
1163const char *iwl_mvm_get_tx_fail_reason(u32 status)
1164{
1165#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
1166#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
1167
1168 switch (status & TX_STATUS_MSK) {
1169 case TX_STATUS_SUCCESS:
1170 return "SUCCESS";
1171 TX_STATUS_POSTPONE(DELAY);
1172 TX_STATUS_POSTPONE(FEW_BYTES);
1173 TX_STATUS_POSTPONE(BT_PRIO);
1174 TX_STATUS_POSTPONE(QUIET_PERIOD);
1175 TX_STATUS_POSTPONE(CALC_TTAK);
1176 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
1177 TX_STATUS_FAIL(SHORT_LIMIT);
1178 TX_STATUS_FAIL(LONG_LIMIT);
1179 TX_STATUS_FAIL(UNDERRUN);
1180 TX_STATUS_FAIL(DRAIN_FLOW);
1181 TX_STATUS_FAIL(RFKILL_FLUSH);
1182 TX_STATUS_FAIL(LIFE_EXPIRE);
1183 TX_STATUS_FAIL(DEST_PS);
1184 TX_STATUS_FAIL(HOST_ABORTED);
1185 TX_STATUS_FAIL(BT_RETRY);
1186 TX_STATUS_FAIL(STA_INVALID);
1187 TX_STATUS_FAIL(FRAG_DROPPED);
1188 TX_STATUS_FAIL(TID_DISABLE);
1189 TX_STATUS_FAIL(FIFO_FLUSHED);
1190 TX_STATUS_FAIL(SMALL_CF_POLL);
1191 TX_STATUS_FAIL(FW_DROP);
1192 TX_STATUS_FAIL(STA_COLOR_MISMATCH);
1193 }
1194
1195 return "UNKNOWN";
1196
1197#undef TX_STATUS_FAIL
1198#undef TX_STATUS_POSTPONE
1199}
1200#endif /* CONFIG_IWLWIFI_DEBUG */
1201
Eyal Shapirad310e402013-08-11 18:43:47 +03001202void iwl_mvm_hwrate_to_tx_rate(u32 rate_n_flags,
Johannes Berg57fbcce2016-04-12 15:56:15 +02001203 enum nl80211_band band,
Eyal Shapirad310e402013-08-11 18:43:47 +03001204 struct ieee80211_tx_rate *r)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001205{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001206 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
1207 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
1208 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
1209 case RATE_MCS_CHAN_WIDTH_20:
1210 break;
1211 case RATE_MCS_CHAN_WIDTH_40:
1212 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
1213 break;
1214 case RATE_MCS_CHAN_WIDTH_80:
1215 r->flags |= IEEE80211_TX_RC_80_MHZ_WIDTH;
1216 break;
1217 case RATE_MCS_CHAN_WIDTH_160:
1218 r->flags |= IEEE80211_TX_RC_160_MHZ_WIDTH;
1219 break;
1220 }
1221 if (rate_n_flags & RATE_MCS_SGI_MSK)
1222 r->flags |= IEEE80211_TX_RC_SHORT_GI;
1223 if (rate_n_flags & RATE_MCS_HT_MSK) {
1224 r->flags |= IEEE80211_TX_RC_MCS;
1225 r->idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
1226 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
1227 ieee80211_rate_set_vht(
1228 r, rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK,
1229 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
1230 RATE_VHT_MCS_NSS_POS) + 1);
1231 r->flags |= IEEE80211_TX_RC_VHT_MCS;
1232 } else {
1233 r->idx = iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
Eyal Shapirad310e402013-08-11 18:43:47 +03001234 band);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001235 }
1236}
1237
Eyal Shapirad310e402013-08-11 18:43:47 +03001238/**
1239 * translate ucode response to mac80211 tx status control values
1240 */
1241static void iwl_mvm_hwrate_to_tx_status(u32 rate_n_flags,
1242 struct ieee80211_tx_info *info)
1243{
1244 struct ieee80211_tx_rate *r = &info->status.rates[0];
1245
1246 info->status.antenna =
1247 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
1248 iwl_mvm_hwrate_to_tx_rate(rate_n_flags, info->band, r);
1249}
1250
Golan Ben-Ami25657fe2015-09-02 12:34:23 +03001251static void iwl_mvm_tx_status_check_trigger(struct iwl_mvm *mvm,
1252 u32 status)
1253{
1254 struct iwl_fw_dbg_trigger_tlv *trig;
1255 struct iwl_fw_dbg_trigger_tx_status *status_trig;
1256 int i;
1257
1258 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TX_STATUS))
1259 return;
1260
1261 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TX_STATUS);
1262 status_trig = (void *)trig->data;
1263
1264 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
1265 return;
1266
1267 for (i = 0; i < ARRAY_SIZE(status_trig->statuses); i++) {
1268 /* don't collect on status 0 */
1269 if (!status_trig->statuses[i].status)
1270 break;
1271
1272 if (status_trig->statuses[i].status != (status & TX_STATUS_MSK))
1273 continue;
1274
1275 iwl_mvm_fw_dbg_collect_trig(mvm, trig,
1276 "Tx status %d was received",
1277 status & TX_STATUS_MSK);
1278 break;
1279 }
1280}
1281
Johannes Berg8ca151b2013-01-24 14:25:36 +01001282static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm,
1283 struct iwl_rx_packet *pkt)
1284{
1285 struct ieee80211_sta *sta;
1286 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1287 int txq_id = SEQ_TO_QUEUE(sequence);
1288 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1289 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1290 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
1291 u32 status = le16_to_cpu(tx_resp->status.status);
1292 u16 ssn = iwl_mvm_get_scd_ssn(tx_resp);
1293 struct iwl_mvm_sta *mvmsta;
1294 struct sk_buff_head skbs;
1295 u8 skb_freed = 0;
1296 u16 next_reclaimed, seq_ctl;
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001297 bool is_ndp = false;
Liad Kaufmancf961e12015-08-13 19:16:08 +03001298 bool txq_agg = false; /* Is this TXQ aggregated */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001299
1300 __skb_queue_head_init(&skbs);
1301
1302 seq_ctl = le16_to_cpu(tx_resp->seq_ctl);
1303
1304 /* we can free until ssn % q.n_bd not inclusive */
1305 iwl_trans_reclaim(mvm->trans, txq_id, ssn, &skbs);
1306
1307 while (!skb_queue_empty(&skbs)) {
1308 struct sk_buff *skb = __skb_dequeue(&skbs);
1309 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1310
1311 skb_freed++;
1312
1313 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1314
1315 memset(&info->status, 0, sizeof(info->status));
1316
1317 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
1318
1319 /* inform mac80211 about what happened with the frame */
1320 switch (status & TX_STATUS_MSK) {
1321 case TX_STATUS_SUCCESS:
1322 case TX_STATUS_DIRECT_DONE:
1323 info->flags |= IEEE80211_TX_STAT_ACK;
1324 break;
1325 case TX_STATUS_FAIL_DEST_PS:
1326 info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1327 break;
1328 default:
1329 break;
1330 }
1331
Golan Ben-Ami25657fe2015-09-02 12:34:23 +03001332 iwl_mvm_tx_status_check_trigger(mvm, status);
1333
Johannes Berg8ca151b2013-01-24 14:25:36 +01001334 info->status.rates[0].count = tx_resp->failure_frame + 1;
Eyal Shapirad310e402013-08-11 18:43:47 +03001335 iwl_mvm_hwrate_to_tx_status(le32_to_cpu(tx_resp->initial_rate),
1336 info);
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001337 info->status.status_driver_data[1] =
1338 (void *)(uintptr_t)le32_to_cpu(tx_resp->initial_rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001339
1340 /* Single frame failure in an AMPDU queue => send BAR */
Eytan Lifshitz19e737c2013-09-09 13:30:15 +02001341 if (txq_id >= mvm->first_agg_queue &&
Eyal Shapira9ce578a2014-12-31 15:22:38 +02001342 !(info->flags & IEEE80211_TX_STAT_ACK) &&
1343 !(info->flags & IEEE80211_TX_STAT_TX_FILTERED))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001344 info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001345
Emmanuel Grumbachebea2f32013-06-13 10:07:47 +03001346 /* W/A FW bug: seq_ctl is wrong when the status isn't success */
1347 if (status != TX_STATUS_SUCCESS) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001348 struct ieee80211_hdr *hdr = (void *)skb->data;
1349 seq_ctl = le16_to_cpu(hdr->seq_ctrl);
1350 }
1351
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001352 if (unlikely(!seq_ctl)) {
1353 struct ieee80211_hdr *hdr = (void *)skb->data;
1354
1355 /*
1356 * If it is an NDP, we can't update next_reclaim since
1357 * its sequence control is 0. Note that for that same
1358 * reason, NDPs are never sent to A-MPDU'able queues
1359 * so that we can never have more than one freed frame
1360 * for a single Tx resonse (see WARN_ON below).
1361 */
1362 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
1363 is_ndp = true;
1364 }
1365
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +03001366 /*
1367 * TODO: this is not accurate if we are freeing more than one
1368 * packet.
1369 */
1370 info->status.tx_time =
1371 le16_to_cpu(tx_resp->wireless_media_time);
Eliad Peller3a84b692014-03-12 15:05:06 +02001372 BUILD_BUG_ON(ARRAY_SIZE(info->status.status_driver_data) < 1);
1373 info->status.status_driver_data[0] =
1374 (void *)(uintptr_t)tx_resp->reduced_tpc;
1375
Johannes Bergf14d6b32014-03-21 13:30:03 +01001376 ieee80211_tx_status(mvm->hw, skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001377 }
1378
Eytan Lifshitz19e737c2013-09-09 13:30:15 +02001379 if (txq_id >= mvm->first_agg_queue) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001380 /* If this is an aggregation queue, we use the ssn since:
1381 * ssn = wifi seq_num % 256.
1382 * The seq_ctl is the sequence control of the packet to which
1383 * this Tx response relates. But if there is a hole in the
1384 * bitmap of the BA we received, this Tx response may allow to
1385 * reclaim the hole and all the subsequent packets that were
1386 * already acked. In that case, seq_ctl != ssn, and the next
1387 * packet to be reclaimed will be ssn and not seq_ctl. In that
1388 * case, several packets will be reclaimed even if
1389 * frame_count = 1.
1390 *
1391 * The ssn is the index (% 256) of the latest packet that has
1392 * treated (acked / dropped) + 1.
1393 */
1394 next_reclaimed = ssn;
1395 } else {
1396 /* The next packet to be reclaimed is the one after this one */
Johannes Berg9a886582013-02-15 19:25:00 +01001397 next_reclaimed = IEEE80211_SEQ_TO_SN(seq_ctl + 0x10);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001398 }
1399
1400 IWL_DEBUG_TX_REPLY(mvm,
Emmanuel Grumbach8c6e83d2013-03-20 17:12:46 +02001401 "TXQ %d status %s (0x%08x)\n",
1402 txq_id, iwl_mvm_get_tx_fail_reason(status), status);
1403
1404 IWL_DEBUG_TX_REPLY(mvm,
1405 "\t\t\t\tinitial_rate 0x%x retries %d, idx=%d ssn=%d next_reclaimed=0x%x seq_ctl=0x%x\n",
1406 le32_to_cpu(tx_resp->initial_rate),
Johannes Berg8ca151b2013-01-24 14:25:36 +01001407 tx_resp->failure_frame, SEQ_TO_INDEX(sequence),
1408 ssn, next_reclaimed, seq_ctl);
1409
1410 rcu_read_lock();
1411
1412 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001413 /*
1414 * sta can't be NULL otherwise it'd mean that the sta has been freed in
1415 * the firmware while we still have packets for it in the Tx queues.
1416 */
1417 if (WARN_ON_ONCE(!sta))
1418 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001419
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001420 if (!IS_ERR(sta)) {
Johannes Berg5b577a92013-11-14 18:20:04 +01001421 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001422
1423 if (tid != IWL_TID_NON_QOS) {
1424 struct iwl_mvm_tid_data *tid_data =
1425 &mvmsta->tid_data[tid];
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001426 bool send_eosp_ndp = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001427
Johannes Berg2bfb5092012-12-27 21:43:48 +01001428 spin_lock_bh(&mvmsta->lock);
Oren Givon2c4a2472016-05-29 14:05:50 +03001429 if (iwl_mvm_is_dqa_supported(mvm)) {
1430 enum iwl_mvm_agg_state state;
1431
1432 state = mvmsta->tid_data[tid].state;
1433 txq_agg = (state == IWL_AGG_ON ||
1434 state == IWL_EMPTYING_HW_QUEUE_DELBA);
1435 } else {
1436 txq_agg = txq_id >= mvm->first_agg_queue;
1437 }
Liad Kaufmancf961e12015-08-13 19:16:08 +03001438
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001439 if (!is_ndp) {
1440 tid_data->next_reclaimed = next_reclaimed;
1441 IWL_DEBUG_TX_REPLY(mvm,
1442 "Next reclaimed packet:%d\n",
1443 next_reclaimed);
1444 } else {
1445 IWL_DEBUG_TX_REPLY(mvm,
1446 "NDP - don't update next_reclaimed\n");
1447 }
1448
Johannes Berg8ca151b2013-01-24 14:25:36 +01001449 iwl_mvm_check_ratid_empty(mvm, sta, tid);
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001450
1451 if (mvmsta->sleep_tx_count) {
1452 mvmsta->sleep_tx_count--;
1453 if (mvmsta->sleep_tx_count &&
1454 !iwl_mvm_tid_queued(tid_data)) {
1455 /*
1456 * The number of frames in the queue
1457 * dropped to 0 even if we sent less
1458 * frames than we thought we had on the
1459 * Tx queue.
1460 * This means we had holes in the BA
1461 * window that we just filled, ask
1462 * mac80211 to send EOSP since the
1463 * firmware won't know how to do that.
1464 * Send NDP and the firmware will send
1465 * EOSP notification that will trigger
1466 * a call to ieee80211_sta_eosp().
1467 */
1468 send_eosp_ndp = true;
1469 }
1470 }
1471
Johannes Berg2bfb5092012-12-27 21:43:48 +01001472 spin_unlock_bh(&mvmsta->lock);
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001473 if (send_eosp_ndp) {
1474 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta,
1475 IEEE80211_FRAME_RELEASE_UAPSD,
1476 1, tid, false, false);
1477 mvmsta->sleep_tx_count = 0;
1478 ieee80211_send_eosp_nullfunc(sta, tid);
1479 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001480 }
Johannes Berg3e56ead2013-02-15 22:23:18 +01001481
1482 if (mvmsta->next_status_eosp) {
1483 mvmsta->next_status_eosp = false;
1484 ieee80211_sta_eosp(sta);
1485 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001486 } else {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001487 mvmsta = NULL;
1488 }
1489
1490 /*
1491 * If the txq is not an AMPDU queue, there is no chance we freed
1492 * several skbs. Check that out...
Johannes Berg8ca151b2013-01-24 14:25:36 +01001493 */
Liad Kaufmancf961e12015-08-13 19:16:08 +03001494 if (txq_agg)
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001495 goto out;
1496
1497 /* We can't free more than one frame at once on a shared queue */
Liad Kaufmancf961e12015-08-13 19:16:08 +03001498 WARN_ON(!iwl_mvm_is_dqa_supported(mvm) && (skb_freed > 1));
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001499
Emmanuel Grumbach589a6ba2014-06-05 11:32:41 +03001500 /* If we have still frames for this STA nothing to do here */
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001501 if (!atomic_sub_and_test(skb_freed, &mvm->pending_frames[sta_id]))
1502 goto out;
1503
1504 if (mvmsta && mvmsta->vif->type == NL80211_IFTYPE_AP) {
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001505
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001506 /*
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001507 * If there are no pending frames for this STA and
1508 * the tx to this station is not disabled, notify
1509 * mac80211 that this station can now wake up in its
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001510 * STA table.
1511 * If mvmsta is not NULL, sta is valid.
1512 */
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001513
1514 spin_lock_bh(&mvmsta->lock);
1515
1516 if (!mvmsta->disable_tx)
1517 ieee80211_sta_block_awake(mvm->hw, sta, false);
1518
1519 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001520 }
1521
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001522 if (PTR_ERR(sta) == -EBUSY || PTR_ERR(sta) == -ENOENT) {
1523 /*
1524 * We are draining and this was the last packet - pre_rcu_remove
1525 * has been called already. We might be after the
1526 * synchronize_net already.
1527 * Don't rely on iwl_mvm_rm_sta to see the empty Tx queues.
1528 */
1529 set_bit(sta_id, mvm->sta_drained);
1530 schedule_work(&mvm->sta_drained_wk);
1531 }
1532
1533out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001534 rcu_read_unlock();
1535}
1536
1537#ifdef CONFIG_IWLWIFI_DEBUG
1538#define AGG_TX_STATE_(x) case AGG_TX_STATE_ ## x: return #x
1539static const char *iwl_get_agg_tx_status(u16 status)
1540{
1541 switch (status & AGG_TX_STATE_STATUS_MSK) {
1542 AGG_TX_STATE_(TRANSMITTED);
1543 AGG_TX_STATE_(UNDERRUN);
1544 AGG_TX_STATE_(BT_PRIO);
1545 AGG_TX_STATE_(FEW_BYTES);
1546 AGG_TX_STATE_(ABORT);
1547 AGG_TX_STATE_(LAST_SENT_TTL);
1548 AGG_TX_STATE_(LAST_SENT_TRY_CNT);
1549 AGG_TX_STATE_(LAST_SENT_BT_KILL);
1550 AGG_TX_STATE_(SCD_QUERY);
1551 AGG_TX_STATE_(TEST_BAD_CRC32);
1552 AGG_TX_STATE_(RESPONSE);
1553 AGG_TX_STATE_(DUMP_TX);
1554 AGG_TX_STATE_(DELAY_TX);
1555 }
1556
1557 return "UNKNOWN";
1558}
1559
1560static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1561 struct iwl_rx_packet *pkt)
1562{
1563 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1564 struct agg_tx_status *frame_status = &tx_resp->status;
1565 int i;
1566
1567 for (i = 0; i < tx_resp->frame_count; i++) {
1568 u16 fstatus = le16_to_cpu(frame_status[i].status);
1569
1570 IWL_DEBUG_TX_REPLY(mvm,
1571 "status %s (0x%04x), try-count (%d) seq (0x%x)\n",
1572 iwl_get_agg_tx_status(fstatus),
1573 fstatus & AGG_TX_STATE_STATUS_MSK,
1574 (fstatus & AGG_TX_STATE_TRY_CNT_MSK) >>
1575 AGG_TX_STATE_TRY_CNT_POS,
1576 le16_to_cpu(frame_status[i].sequence));
1577 }
1578}
1579#else
1580static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1581 struct iwl_rx_packet *pkt)
1582{}
1583#endif /* CONFIG_IWLWIFI_DEBUG */
1584
1585static void iwl_mvm_rx_tx_cmd_agg(struct iwl_mvm *mvm,
1586 struct iwl_rx_packet *pkt)
1587{
1588 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1589 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1590 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
1591 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
Sara Sharon13303c02016-04-10 15:51:54 +03001592 struct iwl_mvm_sta *mvmsta;
Liad Kaufmancf961e12015-08-13 19:16:08 +03001593 int queue = SEQ_TO_QUEUE(sequence);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001594
Liad Kaufmancf961e12015-08-13 19:16:08 +03001595 if (WARN_ON_ONCE(queue < mvm->first_agg_queue &&
1596 (!iwl_mvm_is_dqa_supported(mvm) ||
1597 (queue != IWL_MVM_DQA_BSS_CLIENT_QUEUE))))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001598 return;
1599
1600 if (WARN_ON_ONCE(tid == IWL_TID_NON_QOS))
1601 return;
1602
1603 iwl_mvm_rx_tx_cmd_agg_dbg(mvm, pkt);
1604
1605 rcu_read_lock();
1606
Sara Sharon13303c02016-04-10 15:51:54 +03001607 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001608
Sara Sharon13303c02016-04-10 15:51:54 +03001609 if (!WARN_ON_ONCE(!mvmsta)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001610 mvmsta->tid_data[tid].rate_n_flags =
1611 le32_to_cpu(tx_resp->initial_rate);
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +03001612 mvmsta->tid_data[tid].tx_time =
1613 le16_to_cpu(tx_resp->wireless_media_time);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001614 }
1615
1616 rcu_read_unlock();
1617}
1618
Johannes Berg04168412015-06-23 21:22:09 +02001619void iwl_mvm_rx_tx_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001620{
1621 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1622 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1623
1624 if (tx_resp->frame_count == 1)
1625 iwl_mvm_rx_tx_cmd_single(mvm, pkt);
1626 else
1627 iwl_mvm_rx_tx_cmd_agg(mvm, pkt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001628}
1629
Sara Sharonc46e7722016-07-17 14:24:55 +03001630static void iwl_mvm_tx_reclaim(struct iwl_mvm *mvm, int sta_id, int tid,
1631 int txq, int index,
1632 struct ieee80211_tx_info *ba_info, u32 rate)
Eyal Shapiraa7130442014-09-14 15:28:09 +03001633{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001634 struct sk_buff_head reclaimed_skbs;
1635 struct iwl_mvm_tid_data *tid_data;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001636 struct ieee80211_sta *sta;
1637 struct iwl_mvm_sta *mvmsta;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001638 struct sk_buff *skb;
Sara Sharonc46e7722016-07-17 14:24:55 +03001639 int freed;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001640
Eyal Shapira2cee4762015-01-16 11:09:30 +02001641 if (WARN_ONCE(sta_id >= IWL_MVM_STATION_COUNT ||
1642 tid >= IWL_MAX_TID_COUNT,
1643 "sta_id %d tid %d", sta_id, tid))
Johannes Berg04168412015-06-23 21:22:09 +02001644 return;
Eyal Shapira2cee4762015-01-16 11:09:30 +02001645
Johannes Berg8ca151b2013-01-24 14:25:36 +01001646 rcu_read_lock();
1647
1648 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
1649
1650 /* Reclaiming frames for a station that has been deleted ? */
1651 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta))) {
1652 rcu_read_unlock();
Johannes Berg04168412015-06-23 21:22:09 +02001653 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001654 }
1655
Johannes Berg5b577a92013-11-14 18:20:04 +01001656 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001657 tid_data = &mvmsta->tid_data[tid];
1658
Sara Sharonc46e7722016-07-17 14:24:55 +03001659 if (tid_data->txq_id != txq) {
Johannes Berg1f16ea22015-03-06 09:17:37 +01001660 IWL_ERR(mvm,
Sara Sharonc46e7722016-07-17 14:24:55 +03001661 "invalid BA notification: Q %d, tid %d\n",
1662 tid_data->txq_id, tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001663 rcu_read_unlock();
Johannes Berg04168412015-06-23 21:22:09 +02001664 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001665 }
1666
Johannes Berg2bfb5092012-12-27 21:43:48 +01001667 spin_lock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001668
1669 __skb_queue_head_init(&reclaimed_skbs);
1670
1671 /*
1672 * Release all TFDs before the SSN, i.e. all TFDs in front of
1673 * block-ack window (we assume that they've been successfully
1674 * transmitted ... if not, it's too late anyway).
1675 */
Sara Sharonc46e7722016-07-17 14:24:55 +03001676 iwl_trans_reclaim(mvm->trans, txq, index, &reclaimed_skbs);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001677
Sara Sharonc46e7722016-07-17 14:24:55 +03001678 tid_data->next_reclaimed = index;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001679
1680 iwl_mvm_check_ratid_empty(mvm, sta, tid);
1681
1682 freed = 0;
Sara Sharonc46e7722016-07-17 14:24:55 +03001683 ba_info->status.status_driver_data[1] = (void *)(uintptr_t)rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001684
1685 skb_queue_walk(&reclaimed_skbs, skb) {
Johannes Berg143582c2014-02-25 10:37:15 +01001686 struct ieee80211_hdr *hdr = (void *)skb->data;
1687 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001688
1689 if (ieee80211_is_data_qos(hdr->frame_control))
1690 freed++;
1691 else
1692 WARN_ON_ONCE(1);
1693
Johannes Berg8ca151b2013-01-24 14:25:36 +01001694 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1695
Johannes Berg143582c2014-02-25 10:37:15 +01001696 memset(&info->status, 0, sizeof(info->status));
1697 /* Packet was transmitted successfully, failures come as single
1698 * frames because before failing a frame the firmware transmits
1699 * it without aggregation at least once.
1700 */
1701 info->flags |= IEEE80211_TX_STAT_ACK;
1702
Eyal Shapiraa7130442014-09-14 15:28:09 +03001703 /* this is the first skb we deliver in this batch */
1704 /* put the rate scaling data there */
Sara Sharonc46e7722016-07-17 14:24:55 +03001705 if (freed == 1) {
1706 info->flags |= IEEE80211_TX_STAT_AMPDU;
1707 memcpy(&info->status, &ba_info->status,
1708 sizeof(ba_info->status));
1709 iwl_mvm_hwrate_to_tx_status(rate, info);
1710 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001711 }
1712
Johannes Berg2bfb5092012-12-27 21:43:48 +01001713 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001714
Eyal Shapiraa7130442014-09-14 15:28:09 +03001715 /* We got a BA notif with 0 acked or scd_ssn didn't progress which is
1716 * possible (i.e. first MPDU in the aggregation wasn't acked)
1717 * Still it's important to update RS about sent vs. acked.
1718 */
1719 if (skb_queue_empty(&reclaimed_skbs)) {
Eyal Shapiraa7130442014-09-14 15:28:09 +03001720 struct ieee80211_chanctx_conf *chanctx_conf = NULL;
1721
1722 if (mvmsta->vif)
1723 chanctx_conf =
1724 rcu_dereference(mvmsta->vif->chanctx_conf);
1725
1726 if (WARN_ON_ONCE(!chanctx_conf))
1727 goto out;
1728
Sara Sharonc46e7722016-07-17 14:24:55 +03001729 ba_info->band = chanctx_conf->def.chan->band;
1730 iwl_mvm_hwrate_to_tx_status(rate, ba_info);
Eyal Shapiraa7130442014-09-14 15:28:09 +03001731
1732 IWL_DEBUG_TX_REPLY(mvm, "No reclaim. Update rs directly\n");
Sara Sharonc46e7722016-07-17 14:24:55 +03001733 iwl_mvm_rs_tx_status(mvm, sta, tid, ba_info, false);
Eyal Shapiraa7130442014-09-14 15:28:09 +03001734 }
1735
1736out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001737 rcu_read_unlock();
1738
1739 while (!skb_queue_empty(&reclaimed_skbs)) {
1740 skb = __skb_dequeue(&reclaimed_skbs);
Johannes Bergf14d6b32014-03-21 13:30:03 +01001741 ieee80211_tx_status(mvm->hw, skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001742 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001743}
1744
Sara Sharonc46e7722016-07-17 14:24:55 +03001745void iwl_mvm_rx_ba_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
1746{
1747 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1748 int sta_id, tid, txq, index;
1749 struct ieee80211_tx_info ba_info = {};
1750 struct iwl_mvm_ba_notif *ba_notif;
1751 struct iwl_mvm_tid_data *tid_data;
1752 struct iwl_mvm_sta *mvmsta;
1753
1754 if (iwl_mvm_has_new_tx_api(mvm)) {
1755 struct iwl_mvm_compressed_ba_notif *ba_res =
1756 (void *)pkt->data;
1757
1758 sta_id = ba_res->sta_id;
1759 ba_info.status.ampdu_ack_len = (u8)le16_to_cpu(ba_res->done);
1760 ba_info.status.ampdu_len = (u8)le16_to_cpu(ba_res->txed);
1761 ba_info.status.tx_time =
1762 (u16)le32_to_cpu(ba_res->wireless_time);
1763 ba_info.status.status_driver_data[0] =
1764 (void *)(uintptr_t)ba_res->reduced_txp;
1765
1766 /*
1767 * TODO:
1768 * When supporting multi TID aggregations - we need to move
1769 * next_reclaimed to be per TXQ and not per TID or handle it
1770 * in a different way.
1771 * This will go together with SN and AddBA offload and cannot
1772 * be handled properly for now.
1773 */
1774 WARN_ON(le16_to_cpu(ba_res->tfd_cnt) != 1);
1775 iwl_mvm_tx_reclaim(mvm, sta_id, ba_res->ra_tid[0].tid,
1776 (int)ba_res->tfd[0].q_num,
1777 le16_to_cpu(ba_res->tfd[0].tfd_index),
1778 &ba_info, le32_to_cpu(ba_res->tx_rate));
1779
1780 IWL_DEBUG_TX_REPLY(mvm,
1781 "BA_NOTIFICATION Received from sta_id = %d, flags %x, sent:%d, acked:%d\n",
1782 sta_id, le32_to_cpu(ba_res->flags),
1783 le16_to_cpu(ba_res->txed),
1784 le16_to_cpu(ba_res->done));
1785 return;
1786 }
1787
1788 ba_notif = (void *)pkt->data;
1789 sta_id = ba_notif->sta_id;
1790 tid = ba_notif->tid;
1791 /* "flow" corresponds to Tx queue */
1792 txq = le16_to_cpu(ba_notif->scd_flow);
1793 /* "ssn" is start of block-ack Tx window, corresponds to index
1794 * (in Tx queue's circular buffer) of first TFD/frame in window */
1795 index = le16_to_cpu(ba_notif->scd_ssn);
1796
1797 rcu_read_lock();
1798 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, sta_id);
1799 if (WARN_ON_ONCE(!mvmsta)) {
1800 rcu_read_unlock();
1801 return;
1802 }
1803
1804 tid_data = &mvmsta->tid_data[tid];
1805
1806 ba_info.status.ampdu_ack_len = ba_notif->txed_2_done;
1807 ba_info.status.ampdu_len = ba_notif->txed;
1808 ba_info.status.tx_time = tid_data->tx_time;
1809 ba_info.status.status_driver_data[0] =
1810 (void *)(uintptr_t)ba_notif->reduced_txp;
1811
1812 rcu_read_unlock();
1813
1814 iwl_mvm_tx_reclaim(mvm, sta_id, tid, txq, index, &ba_info,
1815 tid_data->rate_n_flags);
1816
1817 IWL_DEBUG_TX_REPLY(mvm,
1818 "BA_NOTIFICATION Received from %pM, sta_id = %d\n",
1819 (u8 *)&ba_notif->sta_addr_lo32, ba_notif->sta_id);
1820
1821 IWL_DEBUG_TX_REPLY(mvm,
1822 "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = %d, scd_ssn = %d sent:%d, acked:%d\n",
1823 ba_notif->tid, le16_to_cpu(ba_notif->seq_ctl),
1824 le64_to_cpu(ba_notif->bitmap), txq, index,
1825 ba_notif->txed, ba_notif->txed_2_done);
1826
1827 IWL_DEBUG_TX_REPLY(mvm, "reduced txp from ba notif %d\n",
1828 ba_notif->reduced_txp);
1829}
1830
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02001831/*
1832 * Note that there are transports that buffer frames before they reach
1833 * the firmware. This means that after flush_tx_path is called, the
1834 * queue might not be empty. The race-free way to handle this is to:
1835 * 1) set the station as draining
1836 * 2) flush the Tx path
1837 * 3) wait for the transport queues to be empty
1838 */
Luca Coelho5888a402015-10-06 09:54:57 +03001839int iwl_mvm_flush_tx_path(struct iwl_mvm *mvm, u32 tfd_msk, u32 flags)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001840{
1841 int ret;
1842 struct iwl_tx_path_flush_cmd flush_cmd = {
1843 .queues_ctl = cpu_to_le32(tfd_msk),
1844 .flush_ctl = cpu_to_le16(DUMP_TX_FIFO_FLUSH),
1845 };
1846
Johannes Berg8ca151b2013-01-24 14:25:36 +01001847 ret = iwl_mvm_send_cmd_pdu(mvm, TXPATH_FLUSH, flags,
1848 sizeof(flush_cmd), &flush_cmd);
1849 if (ret)
1850 IWL_ERR(mvm, "Failed to send flush command (%d)\n", ret);
1851 return ret;
1852}