blob: c7c3d7bd38bafddc247a7b5402ae0aa4ede29354 [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>
Johannes Berg8ca151b2013-01-24 14:25:36 +010070
71#include "iwl-trans.h"
72#include "iwl-eeprom-parse.h"
73#include "mvm.h"
74#include "sta.h"
Golan Ben-Ami2f89a5d2015-10-27 19:17:14 +020075#include "fw-dbg.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010076
Emmanuel Grumbach42032632015-04-15 12:43:46 +030077static void
78iwl_mvm_bar_check_trigger(struct iwl_mvm *mvm, const u8 *addr,
79 u16 tid, u16 ssn)
80{
81 struct iwl_fw_dbg_trigger_tlv *trig;
82 struct iwl_fw_dbg_trigger_ba *ba_trig;
83
84 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_BA))
85 return;
86
87 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_BA);
88 ba_trig = (void *)trig->data;
89
90 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
91 return;
92
93 if (!(le16_to_cpu(ba_trig->tx_bar) & BIT(tid)))
94 return;
95
96 iwl_mvm_fw_dbg_collect_trig(mvm, trig,
97 "BAR sent to %pM, tid %d, ssn %d",
98 addr, tid, ssn);
99}
100
Johannes Berg8ca151b2013-01-24 14:25:36 +0100101/*
102 * Sets most of the Tx cmd's fields
103 */
Arik Nemtsov6ce73e62014-09-11 13:00:19 +0300104void iwl_mvm_set_tx_cmd(struct iwl_mvm *mvm, struct sk_buff *skb,
105 struct iwl_tx_cmd *tx_cmd,
106 struct ieee80211_tx_info *info, u8 sta_id)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100107{
108 struct ieee80211_hdr *hdr = (void *)skb->data;
109 __le16 fc = hdr->frame_control;
110 u32 tx_flags = le32_to_cpu(tx_cmd->tx_flags);
111 u32 len = skb->len + FCS_LEN;
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +0200112 u8 ac;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100113
114 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
115 tx_flags |= TX_CMD_FLG_ACK;
116 else
117 tx_flags &= ~TX_CMD_FLG_ACK;
118
119 if (ieee80211_is_probe_resp(fc))
120 tx_flags |= TX_CMD_FLG_TSF;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100121
Johannes Berg8ca151b2013-01-24 14:25:36 +0100122 if (ieee80211_has_morefrags(fc))
123 tx_flags |= TX_CMD_FLG_MORE_FRAG;
124
125 if (ieee80211_is_data_qos(fc)) {
126 u8 *qc = ieee80211_get_qos_ctl(hdr);
127 tx_cmd->tid_tspec = qc[0] & 0xf;
128 tx_flags &= ~TX_CMD_FLG_SEQ_CTL;
Sara Sharond8fe4842016-03-09 10:12:45 +0200129 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
130 tx_cmd->offload_assist |=
131 cpu_to_le16(BIT(TX_CMD_OFFLD_AMSDU));
Eyal Shapira9b3b43d2014-12-31 18:34:56 +0200132 } else if (ieee80211_is_back_req(fc)) {
133 struct ieee80211_bar *bar = (void *)skb->data;
134 u16 control = le16_to_cpu(bar->control);
Emmanuel Grumbach42032632015-04-15 12:43:46 +0300135 u16 ssn = le16_to_cpu(bar->start_seq_num);
Eyal Shapira9b3b43d2014-12-31 18:34:56 +0200136
137 tx_flags |= TX_CMD_FLG_ACK | TX_CMD_FLG_BAR;
138 tx_cmd->tid_tspec = (control &
139 IEEE80211_BAR_CTRL_TID_INFO_MASK) >>
140 IEEE80211_BAR_CTRL_TID_INFO_SHIFT;
141 WARN_ON_ONCE(tx_cmd->tid_tspec >= IWL_MAX_TID_COUNT);
Emmanuel Grumbach42032632015-04-15 12:43:46 +0300142 iwl_mvm_bar_check_trigger(mvm, bar->ra, tx_cmd->tid_tspec,
143 ssn);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100144 } else {
145 tx_cmd->tid_tspec = IWL_TID_NON_QOS;
146 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
147 tx_flags |= TX_CMD_FLG_SEQ_CTL;
148 else
149 tx_flags &= ~TX_CMD_FLG_SEQ_CTL;
150 }
151
Eyal Shapiraa9dc5062014-12-31 17:58:23 +0200152 /* Default to 0 (BE) when tid_spec is set to IWL_TID_NON_QOS */
153 if (tx_cmd->tid_tspec < IWL_MAX_TID_COUNT)
154 ac = tid_to_mac80211_ac[tx_cmd->tid_tspec];
155 else
156 ac = tid_to_mac80211_ac[0];
157
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +0200158 tx_flags |= iwl_mvm_bt_coex_tx_prio(mvm, hdr, info, ac) <<
159 TX_CMD_FLG_BT_PRIO_POS;
160
Johannes Berg8ca151b2013-01-24 14:25:36 +0100161 if (ieee80211_is_mgmt(fc)) {
162 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
Avri Altmanb084a352015-07-12 09:10:05 +0300163 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_ASSOC);
164 else if (ieee80211_is_action(fc))
165 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100166 else
Avri Altmanb084a352015-07-12 09:10:05 +0300167 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100168
169 /* The spec allows Action frames in A-MPDU, we don't support
170 * it
171 */
172 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_AMPDU);
Johannes Berg63f75352014-01-31 14:56:18 +0100173 } else if (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO) {
Avri Altmanb084a352015-07-12 09:10:05 +0300174 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_MGMT);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100175 } else {
Avri Altmanb084a352015-07-12 09:10:05 +0300176 tx_cmd->pm_frame_timeout = cpu_to_le16(PM_FRAME_NONE);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100177 }
178
Johannes Berg8ca151b2013-01-24 14:25:36 +0100179 if (ieee80211_is_data(fc) && len > mvm->rts_threshold &&
180 !is_multicast_ether_addr(ieee80211_get_DA(hdr)))
181 tx_flags |= TX_CMD_FLG_PROT_REQUIRE;
182
Johannes Berg859d9142015-06-01 17:11:11 +0200183 if (fw_has_capa(&mvm->fw->ucode_capa,
184 IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT) &&
Andrei Otcheretianskif1daa002014-07-01 12:54:25 +0300185 ieee80211_action_contains_tpc(skb))
186 tx_flags |= TX_CMD_FLG_WRITE_TX_POWER;
187
Johannes Berg8ca151b2013-01-24 14:25:36 +0100188 tx_cmd->tx_flags = cpu_to_le32(tx_flags);
189 /* Total # bytes to be transmitted */
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300190 tx_cmd->len = cpu_to_le16((u16)skb->len +
191 (uintptr_t)info->driver_data[0]);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100192 tx_cmd->life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
193 tx_cmd->sta_id = sta_id;
Sara Sharond8fe4842016-03-09 10:12:45 +0200194
195 /* padding is inserted later in transport */
196 if (ieee80211_hdrlen(fc) % 4 &&
197 !(tx_cmd->offload_assist & cpu_to_le16(BIT(TX_CMD_OFFLD_AMSDU))))
198 tx_cmd->offload_assist |= cpu_to_le16(BIT(TX_CMD_OFFLD_PAD));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100199}
200
201/*
202 * Sets the fields in the Tx cmd that are rate related
203 */
Arik Nemtsov6ce73e62014-09-11 13:00:19 +0300204void iwl_mvm_set_tx_cmd_rate(struct iwl_mvm *mvm, struct iwl_tx_cmd *tx_cmd,
205 struct ieee80211_tx_info *info,
206 struct ieee80211_sta *sta, __le16 fc)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100207{
208 u32 rate_flags;
209 int rate_idx;
210 u8 rate_plcp;
211
212 /* Set retry limit on RTS packets */
213 tx_cmd->rts_retry_limit = IWL_RTS_DFAULT_RETRY_LIMIT;
214
215 /* Set retry limit on DATA packets and Probe Responses*/
216 if (ieee80211_is_probe_resp(fc)) {
217 tx_cmd->data_retry_limit = IWL_MGMT_DFAULT_RETRY_LIMIT;
218 tx_cmd->rts_retry_limit =
219 min(tx_cmd->data_retry_limit, tx_cmd->rts_retry_limit);
220 } else if (ieee80211_is_back_req(fc)) {
221 tx_cmd->data_retry_limit = IWL_BAR_DFAULT_RETRY_LIMIT;
222 } else {
223 tx_cmd->data_retry_limit = IWL_DEFAULT_TX_RETRY;
224 }
225
226 /*
Eliad Pellere89044d2013-07-16 17:33:26 +0300227 * for data packets, rate info comes from the table inside the fw. This
Emmanuel Grumbach1ffde692014-10-20 08:29:55 +0300228 * table is controlled by LINK_QUALITY commands
Johannes Berg8ca151b2013-01-24 14:25:36 +0100229 */
230
Emmanuel Grumbach1ffde692014-10-20 08:29:55 +0300231 if (ieee80211_is_data(fc) && sta) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100232 tx_cmd->initial_rate_index = 0;
233 tx_cmd->tx_flags |= cpu_to_le32(TX_CMD_FLG_STA_RATE);
234 return;
235 } else if (ieee80211_is_back_req(fc)) {
Emmanuel Grumbach2edc6ec2013-06-02 19:49:15 +0300236 tx_cmd->tx_flags |=
237 cpu_to_le32(TX_CMD_FLG_ACK | TX_CMD_FLG_BAR);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100238 }
239
240 /* HT rate doesn't make sense for a non data frame */
241 WARN_ONCE(info->control.rates[0].flags & IEEE80211_TX_RC_MCS,
Johannes Bergf85e9d12014-10-08 09:57:29 +0200242 "Got an HT rate (flags:0x%x/mcs:%d) for a non data frame (fc:0x%x)\n",
243 info->control.rates[0].flags,
244 info->control.rates[0].idx,
245 le16_to_cpu(fc));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100246
247 rate_idx = info->control.rates[0].idx;
248 /* if the rate isn't a well known legacy rate, take the lowest one */
249 if (rate_idx < 0 || rate_idx > IWL_RATE_COUNT_LEGACY)
250 rate_idx = rate_lowest_index(
251 &mvm->nvm_data->bands[info->band], sta);
252
253 /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
254 if (info->band == IEEE80211_BAND_5GHZ)
255 rate_idx += IWL_FIRST_OFDM_RATE;
256
257 /* For 2.4 GHZ band, check that there is no need to remap */
258 BUILD_BUG_ON(IWL_FIRST_CCK_RATE != 0);
259
260 /* Get PLCP rate for tx_cmd->rate_n_flags */
261 rate_plcp = iwl_mvm_mac80211_idx_to_hwrate(rate_idx);
262
263 mvm->mgmt_last_antenna_idx =
Moshe Harela0544272014-12-08 21:13:14 +0200264 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100265 mvm->mgmt_last_antenna_idx);
Emmanuel Grumbach34c8b242014-05-28 21:53:39 +0300266
267 if (info->band == IEEE80211_BAND_2GHZ &&
268 !iwl_mvm_bt_coex_is_shared_ant_avail(mvm))
Emmanuel Grumbach923a8c12015-05-31 21:44:22 +0300269 rate_flags = mvm->cfg->non_shared_ant << RATE_MCS_ANT_POS;
Emmanuel Grumbach34c8b242014-05-28 21:53:39 +0300270 else
271 rate_flags =
272 BIT(mvm->mgmt_last_antenna_idx) << RATE_MCS_ANT_POS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100273
274 /* Set CCK flag as needed */
275 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
276 rate_flags |= RATE_MCS_CCK_MSK;
277
278 /* Set the rate in the TX cmd */
279 tx_cmd->rate_n_flags = cpu_to_le32((u32)rate_plcp | rate_flags);
280}
281
282/*
283 * Sets the fields in the Tx cmd that are crypto related
284 */
Johannes Bergca8c0f42015-04-20 17:54:54 +0200285static void iwl_mvm_set_tx_cmd_crypto(struct iwl_mvm *mvm,
286 struct ieee80211_tx_info *info,
287 struct iwl_tx_cmd *tx_cmd,
288 struct sk_buff *skb_frag,
289 int hdrlen)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100290{
291 struct ieee80211_key_conf *keyconf = info->control.hw_key;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200292 u8 *crypto_hdr = skb_frag->data + hdrlen;
293 u64 pn;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100294
295 switch (keyconf->cipher) {
296 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergca8c0f42015-04-20 17:54:54 +0200297 case WLAN_CIPHER_SUITE_CCMP_256:
298 iwl_mvm_set_tx_cmd_ccmp(info, tx_cmd);
299 pn = atomic64_inc_return(&keyconf->tx_pn);
300 crypto_hdr[0] = pn;
301 crypto_hdr[2] = 0;
302 crypto_hdr[3] = 0x20 | (keyconf->keyidx << 6);
303 crypto_hdr[1] = pn >> 8;
304 crypto_hdr[4] = pn >> 16;
305 crypto_hdr[5] = pn >> 24;
306 crypto_hdr[6] = pn >> 32;
307 crypto_hdr[7] = pn >> 40;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100308 break;
309
310 case WLAN_CIPHER_SUITE_TKIP:
311 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
Eliad Peller1ad4f632016-02-14 13:56:36 +0200312 pn = atomic64_inc_return(&keyconf->tx_pn);
313 ieee80211_tkip_add_iv(crypto_hdr, keyconf, pn);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100314 ieee80211_get_tkip_p2k(keyconf, skb_frag, tx_cmd->key);
315 break;
316
317 case WLAN_CIPHER_SUITE_WEP104:
318 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
319 /* fall through */
320 case WLAN_CIPHER_SUITE_WEP40:
321 tx_cmd->sec_ctl |= TX_CMD_SEC_WEP |
322 ((keyconf->keyidx << TX_CMD_SEC_WEP_KEY_IDX_POS) &
323 TX_CMD_SEC_WEP_KEY_IDX_MSK);
324
325 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
326 break;
327 default:
Max Stepanove36e5432013-08-27 19:56:13 +0300328 tx_cmd->sec_ctl |= TX_CMD_SEC_EXT;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100329 }
330}
331
332/*
333 * Allocates and sets the Tx cmd the driver data pointers in the skb
334 */
335static struct iwl_device_cmd *
336iwl_mvm_set_tx_params(struct iwl_mvm *mvm, struct sk_buff *skb,
Johannes Bergca8c0f42015-04-20 17:54:54 +0200337 int hdrlen, struct ieee80211_sta *sta, u8 sta_id)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100338{
339 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
340 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
341 struct iwl_device_cmd *dev_cmd;
342 struct iwl_tx_cmd *tx_cmd;
343
344 dev_cmd = iwl_trans_alloc_tx_cmd(mvm->trans);
345
346 if (unlikely(!dev_cmd))
347 return NULL;
348
349 memset(dev_cmd, 0, sizeof(*dev_cmd));
Emmanuel Grumbach3961a612013-10-22 11:27:55 +0300350 dev_cmd->hdr.cmd = TX_CMD;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100351 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
352
353 if (info->control.hw_key)
Johannes Bergca8c0f42015-04-20 17:54:54 +0200354 iwl_mvm_set_tx_cmd_crypto(mvm, info, tx_cmd, skb, hdrlen);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100355
356 iwl_mvm_set_tx_cmd(mvm, skb, tx_cmd, info, sta_id);
357
358 iwl_mvm_set_tx_cmd_rate(mvm, tx_cmd, info, sta, hdr->frame_control);
359
360 memset(&info->status, 0, sizeof(info->status));
Emmanuel Grumbach3f73b8c2015-10-26 15:39:22 +0200361 memset(info->driver_data, 0, sizeof(info->driver_data));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100362
Johannes Berg8ca151b2013-01-24 14:25:36 +0100363 info->driver_data[1] = dev_cmd;
364
365 return dev_cmd;
366}
367
368int iwl_mvm_tx_skb_non_sta(struct iwl_mvm *mvm, struct sk_buff *skb)
369{
370 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
371 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
372 struct iwl_device_cmd *dev_cmd;
373 struct iwl_tx_cmd *tx_cmd;
374 u8 sta_id;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200375 int hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100376
377 if (WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_AMPDU))
378 return -1;
379
380 if (WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM &&
381 (!info->control.vif ||
382 info->hw_queue != info->control.vif->cab_queue)))
383 return -1;
384
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300385 /* This holds the amsdu headers length */
386 info->driver_data[0] = (void *)(uintptr_t)0;
387
Johannes Berg8ca151b2013-01-24 14:25:36 +0100388 /*
Ariej Marjieh7da91b02014-07-07 12:09:40 +0300389 * IWL_MVM_OFFCHANNEL_QUEUE is used for ROC packets that can be used
390 * in 2 different types of vifs, P2P & STATION. P2P uses the offchannel
391 * queue. STATION (HS2.0) uses the auxiliary context of the FW,
392 * and hence needs to be sent on the aux queue
393 */
394 if (IEEE80211_SKB_CB(skb)->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
395 info->control.vif->type == NL80211_IFTYPE_STATION)
396 IEEE80211_SKB_CB(skb)->hw_queue = mvm->aux_queue;
397
398 /*
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300399 * If the interface on which the frame is sent is the P2P_DEVICE
Johannes Berg8ca151b2013-01-24 14:25:36 +0100400 * or an AP/GO interface use the broadcast station associated
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300401 * with it; otherwise if the interface is a managed interface
402 * use the AP station associated with it for multicast traffic
403 * (this is not possible for unicast packets as a TLDS discovery
404 * response are sent without a station entry); otherwise use the
405 * AUX station.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100406 */
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300407 sta_id = mvm->aux_sta.sta_id;
408 if (info->control.vif) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100409 struct iwl_mvm_vif *mvmvif =
410 iwl_mvm_vif_from_mac80211(info->control.vif);
Ilan Peerd0ab08d2015-06-24 09:23:01 +0300411
412 if (info->control.vif->type == NL80211_IFTYPE_P2P_DEVICE ||
413 info->control.vif->type == NL80211_IFTYPE_AP)
414 sta_id = mvmvif->bcast_sta.sta_id;
415 else if (info->control.vif->type == NL80211_IFTYPE_STATION &&
416 is_multicast_ether_addr(hdr->addr1)) {
417 u8 ap_sta_id = ACCESS_ONCE(mvmvif->ap_sta_id);
418
419 if (ap_sta_id != IWL_MVM_STATION_COUNT)
420 sta_id = ap_sta_id;
421 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100422 }
423
424 IWL_DEBUG_TX(mvm, "station Id %d, queue=%d\n", sta_id, info->hw_queue);
425
Johannes Bergca8c0f42015-04-20 17:54:54 +0200426 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, hdrlen, NULL, sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100427 if (!dev_cmd)
428 return -1;
429
430 /* From now on, we cannot access info->control */
431 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
432
433 /* Copy MAC header from skb into command buffer */
Johannes Bergca8c0f42015-04-20 17:54:54 +0200434 memcpy(tx_cmd->hdr, hdr, hdrlen);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100435
436 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, info->hw_queue)) {
437 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
438 return -1;
439 }
440
Liad Kaufmanfb896c42016-02-14 15:32:58 +0200441 /*
442 * Increase the pending frames counter, so that later when a reply comes
443 * in and the counter is decreased - we don't start getting negative
444 * values.
445 * Note that we don't need to make sure it isn't agg'd, since we're
446 * TXing non-sta
447 */
448 atomic_inc(&mvm->pending_frames[sta_id]);
449
Johannes Berg8ca151b2013-01-24 14:25:36 +0100450 return 0;
451}
452
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300453#ifdef CONFIG_INET
454static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300455 struct ieee80211_sta *sta,
456 struct sk_buff_head *mpdus_skb)
457{
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200458 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300459 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
460 struct ieee80211_hdr *hdr = (void *)skb->data;
461 unsigned int mss = skb_shinfo(skb)->gso_size;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300462 struct sk_buff *tmp, *next;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300463 char cb[sizeof(skb->cb)];
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200464 unsigned int num_subframes, tcp_payload_len, subf_len, max_amsdu_len;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300465 bool ipv4 = (skb->protocol == htons(ETH_P_IP));
466 u16 ip_base_id = ipv4 ? ntohs(ip_hdr(skb)->id) : 0;
467 u16 amsdu_add, snap_ip_tcp, pad, i = 0;
Emmanuel Grumbach9e7dce22015-10-26 16:14:06 +0200468 unsigned int dbg_max_amsdu_len;
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200469 u8 *qc, tid, txf;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300470
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300471 snap_ip_tcp = 8 + skb_transport_header(skb) - skb_network_header(skb) +
472 tcp_hdrlen(skb);
473
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200474 qc = ieee80211_get_qos_ctl(hdr);
475 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
476 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
477 return -EINVAL;
478
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300479 if (!sta->max_amsdu_len ||
Emmanuel Grumbach04e3a5d2015-10-28 09:47:41 +0200480 !ieee80211_is_data_qos(hdr->frame_control) ||
481 !mvmsta->tlc_amsdu) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300482 num_subframes = 1;
483 pad = 0;
484 goto segment;
485 }
486
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200487 /*
488 * No need to lock amsdu_in_ampdu_allowed since it can't be modified
489 * during an BA session.
490 */
491 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
492 !mvmsta->tid_data[tid].amsdu_in_ampdu_allowed) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300493 num_subframes = 1;
494 pad = 0;
495 goto segment;
496 }
497
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200498 max_amsdu_len = sta->max_amsdu_len;
Emmanuel Grumbach9e7dce22015-10-26 16:14:06 +0200499 dbg_max_amsdu_len = ACCESS_ONCE(mvm->max_amsdu_len);
Emmanuel Grumbach50b02132015-11-11 11:37:02 +0200500
501 /* the Tx FIFO to which this A-MSDU will be routed */
502 txf = iwl_mvm_ac_to_tx_fifo[tid_to_mac80211_ac[tid]];
503
504 /*
505 * Don't send an AMSDU that will be longer than the TXF.
506 * Add a security margin of 256 for the TX command + headers.
507 * We also want to have the start of the next packet inside the
508 * fifo to be able to send bursts.
509 */
510 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
511 mvm->shared_mem_cfg.txfifo_size[txf] - 256);
512
Emmanuel Grumbach9e7dce22015-10-26 16:14:06 +0200513 if (dbg_max_amsdu_len)
514 max_amsdu_len = min_t(unsigned int, max_amsdu_len,
515 dbg_max_amsdu_len);
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200516
517 /*
518 * Limit A-MSDU in A-MPDU to 4095 bytes when VHT is not
519 * supported. This is a spec requirement (IEEE 802.11-2015
520 * section 8.7.3 NOTE 3).
521 */
522 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
523 !sta->vht_cap.vht_supported)
524 max_amsdu_len = min_t(unsigned int, max_amsdu_len, 4095);
525
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300526 /* Sub frame header + SNAP + IP header + TCP header + MSS */
527 subf_len = sizeof(struct ethhdr) + snap_ip_tcp + mss;
528 pad = (4 - subf_len) & 0x3;
529
530 /*
531 * If we have N subframes in the A-MSDU, then the A-MSDU's size is
532 * N * subf_len + (N - 1) * pad.
533 */
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200534 num_subframes = (max_amsdu_len + pad) / (subf_len + pad);
535 if (num_subframes > 1)
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300536 *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300537
538 tcp_payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
539 tcp_hdrlen(skb) + skb->data_len;
540
541 /*
542 * Make sure we have enough TBs for the A-MSDU:
543 * 2 for each subframe
544 * 1 more for each fragment
545 * 1 more for the potential data in the header
546 */
547 num_subframes =
548 min_t(unsigned int, num_subframes,
549 (mvm->trans->max_skb_frags - 1 -
550 skb_shinfo(skb)->nr_frags) / 2);
551
552 /* This skb fits in one single A-MSDU */
553 if (num_subframes * mss >= tcp_payload_len) {
554 /*
555 * Compute the length of all the data added for the A-MSDU.
556 * This will be used to compute the length to write in the TX
557 * command. We have: SNAP + IP + TCP for n -1 subframes and
558 * ETH header for n subframes. Note that the original skb
559 * already had one set of SNAP / IP / TCP headers.
560 */
561 num_subframes = DIV_ROUND_UP(tcp_payload_len, mss);
562 info = IEEE80211_SKB_CB(skb);
563 amsdu_add = num_subframes * sizeof(struct ethhdr) +
564 (num_subframes - 1) * (snap_ip_tcp + pad);
565 /* This holds the amsdu headers length */
566 info->driver_data[0] = (void *)(uintptr_t)amsdu_add;
567
568 __skb_queue_tail(mpdus_skb, skb);
569 return 0;
570 }
571
572 /*
573 * Trick the segmentation function to make it
574 * create SKBs that can fit into one A-MSDU.
575 */
576segment:
577 skb_shinfo(skb)->gso_size = num_subframes * mss;
578 memcpy(cb, skb->cb, sizeof(cb));
579
580 next = skb_gso_segment(skb, NETIF_F_CSUM_MASK | NETIF_F_SG);
581 skb_shinfo(skb)->gso_size = mss;
582 if (WARN_ON_ONCE(IS_ERR(next)))
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300583 return -EINVAL;
584 else if (next)
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300585 consume_skb(skb);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300586
587 while (next) {
588 tmp = next;
589 next = tmp->next;
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300590
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300591 memcpy(tmp->cb, cb, sizeof(tmp->cb));
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300592 /*
593 * Compute the length of all the data added for the A-MSDU.
594 * This will be used to compute the length to write in the TX
595 * command. We have: SNAP + IP + TCP for n -1 subframes and
596 * ETH header for n subframes.
597 */
598 tcp_payload_len = skb_tail_pointer(tmp) -
599 skb_transport_header(tmp) -
600 tcp_hdrlen(tmp) + tmp->data_len;
601
602 if (ipv4)
603 ip_hdr(tmp)->id = htons(ip_base_id + i * num_subframes);
604
605 if (tcp_payload_len > mss) {
606 num_subframes = DIV_ROUND_UP(tcp_payload_len, mss);
607 info = IEEE80211_SKB_CB(tmp);
608 amsdu_add = num_subframes * sizeof(struct ethhdr) +
609 (num_subframes - 1) * (snap_ip_tcp + pad);
610 info->driver_data[0] = (void *)(uintptr_t)amsdu_add;
611 skb_shinfo(tmp)->gso_size = mss;
612 } else {
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200613 qc = ieee80211_get_qos_ctl((void *)tmp->data);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300614
615 if (ipv4)
616 ip_send_check(ip_hdr(tmp));
617 *qc &= ~IEEE80211_QOS_CTL_A_MSDU_PRESENT;
618 skb_shinfo(tmp)->gso_size = 0;
619 }
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300620
621 tmp->prev = NULL;
622 tmp->next = NULL;
623
624 __skb_queue_tail(mpdus_skb, tmp);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300625 i++;
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300626 }
627
628 return 0;
629}
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300630#else /* CONFIG_INET */
631static int iwl_mvm_tx_tso(struct iwl_mvm *mvm, struct sk_buff *skb,
632 struct ieee80211_sta *sta,
633 struct sk_buff_head *mpdus_skb)
634{
635 /* Impossible to get TSO with CONFIG_INET */
636 WARN_ON(1);
637
638 return -1;
639}
640#endif
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300641
Johannes Berg8ca151b2013-01-24 14:25:36 +0100642/*
643 * Sets the fields in the Tx cmd that are crypto related
644 */
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300645static int iwl_mvm_tx_mpdu(struct iwl_mvm *mvm, struct sk_buff *skb,
646 struct ieee80211_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100647{
648 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
649 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
650 struct iwl_mvm_sta *mvmsta;
651 struct iwl_device_cmd *dev_cmd;
652 struct iwl_tx_cmd *tx_cmd;
653 __le16 fc;
654 u16 seq_number = 0;
655 u8 tid = IWL_MAX_TID_COUNT;
656 u8 txq_id = info->hw_queue;
Johannes Berg7ec54712016-03-16 09:29:48 +0100657 bool is_ampdu = false;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200658 int hdrlen;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100659
Johannes Berg5b577a92013-11-14 18:20:04 +0100660 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100661 fc = hdr->frame_control;
Johannes Bergca8c0f42015-04-20 17:54:54 +0200662 hdrlen = ieee80211_hdrlen(fc);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100663
664 if (WARN_ON_ONCE(!mvmsta))
665 return -1;
666
Emmanuel Grumbach881acd82013-03-19 16:16:00 +0200667 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100668 return -1;
669
Johannes Bergca8c0f42015-04-20 17:54:54 +0200670 dev_cmd = iwl_mvm_set_tx_params(mvm, skb, hdrlen, sta, mvmsta->sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100671 if (!dev_cmd)
672 goto drop;
673
674 tx_cmd = (struct iwl_tx_cmd *)dev_cmd->payload;
675 /* From now on, we cannot access info->control */
676
Johannes Berg3e56ead2013-02-15 22:23:18 +0100677 /*
678 * we handle that entirely ourselves -- for uAPSD the firmware
679 * will always send a notification, and for PS-Poll responses
680 * we'll notify mac80211 when getting frame status
681 */
682 info->flags &= ~IEEE80211_TX_STATUS_EOSP;
683
Johannes Berg8ca151b2013-01-24 14:25:36 +0100684 spin_lock(&mvmsta->lock);
685
686 if (ieee80211_is_data_qos(fc) && !ieee80211_is_qos_nullfunc(fc)) {
687 u8 *qc = NULL;
688 qc = ieee80211_get_qos_ctl(hdr);
689 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
690 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
691 goto drop_unlock_sta;
692
693 seq_number = mvmsta->tid_data[tid].seq_number;
694 seq_number &= IEEE80211_SCTL_SEQ;
695 hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
696 hdr->seq_ctrl |= cpu_to_le16(seq_number);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100697 is_ampdu = info->flags & IEEE80211_TX_CTL_AMPDU;
698 }
699
700 /* Copy MAC header from skb into command buffer */
Johannes Bergca8c0f42015-04-20 17:54:54 +0200701 memcpy(tx_cmd->hdr, hdr, hdrlen);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100702
703 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM);
704
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300705 if (sta->tdls) {
706 /* default to TID 0 for non-QoS packets */
707 u8 tdls_tid = tid == IWL_MAX_TID_COUNT ? 0 : tid;
708
709 txq_id = mvmsta->hw_queue[tid_to_mac80211_ac[tdls_tid]];
710 }
711
Johannes Berg8ca151b2013-01-24 14:25:36 +0100712 if (is_ampdu) {
713 if (WARN_ON_ONCE(mvmsta->tid_data[tid].state != IWL_AGG_ON))
714 goto drop_unlock_sta;
715 txq_id = mvmsta->tid_data[tid].txq_id;
716 }
717
718 IWL_DEBUG_TX(mvm, "TX to [%d|%d] Q:%d - seq: 0x%x\n", mvmsta->sta_id,
Eliad Pellercf9d1182013-12-31 18:54:06 +0200719 tid, txq_id, IEEE80211_SEQ_TO_SN(seq_number));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100720
Johannes Berg8ca151b2013-01-24 14:25:36 +0100721 if (iwl_trans_tx(mvm->trans, skb, dev_cmd, txq_id))
722 goto drop_unlock_sta;
723
Johannes Berg7ec54712016-03-16 09:29:48 +0100724 if (tid < IWL_MAX_TID_COUNT && !ieee80211_has_morefrags(fc))
Eliad Pellercf9d1182013-12-31 18:54:06 +0200725 mvmsta->tid_data[tid].seq_number = seq_number + 0x10;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100726
727 spin_unlock(&mvmsta->lock);
728
Eytan Lifshitz19e737c2013-09-09 13:30:15 +0200729 if (txq_id < mvm->first_agg_queue)
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +0300730 atomic_inc(&mvm->pending_frames[mvmsta->sta_id]);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100731
732 return 0;
733
734drop_unlock_sta:
735 iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
736 spin_unlock(&mvmsta->lock);
737drop:
738 return -1;
739}
740
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300741int iwl_mvm_tx_skb(struct iwl_mvm *mvm, struct sk_buff *skb,
742 struct ieee80211_sta *sta)
743{
744 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300745 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300746 struct sk_buff_head mpdus_skbs;
747 unsigned int payload_len;
748 int ret;
749
750 if (WARN_ON_ONCE(!mvmsta))
751 return -1;
752
753 if (WARN_ON_ONCE(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
754 return -1;
755
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300756 /* This holds the amsdu headers length */
757 info->driver_data[0] = (void *)(uintptr_t)0;
758
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300759 if (!skb_is_gso(skb))
760 return iwl_mvm_tx_mpdu(mvm, skb, sta);
761
762 payload_len = skb_tail_pointer(skb) - skb_transport_header(skb) -
763 tcp_hdrlen(skb) + skb->data_len;
764
765 if (payload_len <= skb_shinfo(skb)->gso_size)
766 return iwl_mvm_tx_mpdu(mvm, skb, sta);
767
768 __skb_queue_head_init(&mpdus_skbs);
769
770 ret = iwl_mvm_tx_tso(mvm, skb, sta, &mpdus_skbs);
771 if (ret)
772 return ret;
773
774 if (WARN_ON(skb_queue_empty(&mpdus_skbs)))
775 return ret;
776
777 while (!skb_queue_empty(&mpdus_skbs)) {
Emmanuel Grumbacha6d5e322015-10-14 16:28:52 +0300778 skb = __skb_dequeue(&mpdus_skbs);
Emmanuel Grumbacha3713f82015-10-14 14:16:35 +0300779
780 ret = iwl_mvm_tx_mpdu(mvm, skb, sta);
781 if (ret) {
782 __skb_queue_purge(&mpdus_skbs);
783 return ret;
784 }
785 }
786
787 return 0;
788}
789
Johannes Berg8ca151b2013-01-24 14:25:36 +0100790static void iwl_mvm_check_ratid_empty(struct iwl_mvm *mvm,
791 struct ieee80211_sta *sta, u8 tid)
792{
Johannes Berg5b577a92013-11-14 18:20:04 +0100793 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100794 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
795 struct ieee80211_vif *vif = mvmsta->vif;
796
797 lockdep_assert_held(&mvmsta->lock);
798
Johannes Berg3e56ead2013-02-15 22:23:18 +0100799 if ((tid_data->state == IWL_AGG_ON ||
800 tid_data->state == IWL_EMPTYING_HW_QUEUE_DELBA) &&
801 iwl_mvm_tid_queued(tid_data) == 0) {
802 /*
803 * Now that this aggregation queue is empty tell mac80211 so it
804 * knows we no longer have frames buffered for the station on
805 * this TID (for the TIM bitmap calculation.)
806 */
807 ieee80211_sta_set_buffered(sta, tid, false);
808 }
809
Johannes Berg8ca151b2013-01-24 14:25:36 +0100810 if (tid_data->ssn != tid_data->next_reclaimed)
811 return;
812
813 switch (tid_data->state) {
814 case IWL_EMPTYING_HW_QUEUE_ADDBA:
815 IWL_DEBUG_TX_QUEUES(mvm,
816 "Can continue addBA flow ssn = next_recl = %d\n",
817 tid_data->next_reclaimed);
818 tid_data->state = IWL_AGG_STARTING;
819 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
820 break;
821
822 case IWL_EMPTYING_HW_QUEUE_DELBA:
823 IWL_DEBUG_TX_QUEUES(mvm,
824 "Can continue DELBA flow ssn = next_recl = %d\n",
825 tid_data->next_reclaimed);
Liad Kaufman4ecafae2015-07-14 13:36:18 +0300826 iwl_mvm_disable_txq(mvm, tid_data->txq_id,
827 vif->hw_queue[tid_to_mac80211_ac[tid]], tid,
828 CMD_ASYNC);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100829 tid_data->state = IWL_AGG_OFF;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100830 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
831 break;
832
833 default:
834 break;
835 }
836}
837
838#ifdef CONFIG_IWLWIFI_DEBUG
839const char *iwl_mvm_get_tx_fail_reason(u32 status)
840{
841#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
842#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
843
844 switch (status & TX_STATUS_MSK) {
845 case TX_STATUS_SUCCESS:
846 return "SUCCESS";
847 TX_STATUS_POSTPONE(DELAY);
848 TX_STATUS_POSTPONE(FEW_BYTES);
849 TX_STATUS_POSTPONE(BT_PRIO);
850 TX_STATUS_POSTPONE(QUIET_PERIOD);
851 TX_STATUS_POSTPONE(CALC_TTAK);
852 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
853 TX_STATUS_FAIL(SHORT_LIMIT);
854 TX_STATUS_FAIL(LONG_LIMIT);
855 TX_STATUS_FAIL(UNDERRUN);
856 TX_STATUS_FAIL(DRAIN_FLOW);
857 TX_STATUS_FAIL(RFKILL_FLUSH);
858 TX_STATUS_FAIL(LIFE_EXPIRE);
859 TX_STATUS_FAIL(DEST_PS);
860 TX_STATUS_FAIL(HOST_ABORTED);
861 TX_STATUS_FAIL(BT_RETRY);
862 TX_STATUS_FAIL(STA_INVALID);
863 TX_STATUS_FAIL(FRAG_DROPPED);
864 TX_STATUS_FAIL(TID_DISABLE);
865 TX_STATUS_FAIL(FIFO_FLUSHED);
866 TX_STATUS_FAIL(SMALL_CF_POLL);
867 TX_STATUS_FAIL(FW_DROP);
868 TX_STATUS_FAIL(STA_COLOR_MISMATCH);
869 }
870
871 return "UNKNOWN";
872
873#undef TX_STATUS_FAIL
874#undef TX_STATUS_POSTPONE
875}
876#endif /* CONFIG_IWLWIFI_DEBUG */
877
Eyal Shapirad310e402013-08-11 18:43:47 +0300878void iwl_mvm_hwrate_to_tx_rate(u32 rate_n_flags,
879 enum ieee80211_band band,
880 struct ieee80211_tx_rate *r)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100881{
Johannes Berg8ca151b2013-01-24 14:25:36 +0100882 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
883 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
884 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
885 case RATE_MCS_CHAN_WIDTH_20:
886 break;
887 case RATE_MCS_CHAN_WIDTH_40:
888 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
889 break;
890 case RATE_MCS_CHAN_WIDTH_80:
891 r->flags |= IEEE80211_TX_RC_80_MHZ_WIDTH;
892 break;
893 case RATE_MCS_CHAN_WIDTH_160:
894 r->flags |= IEEE80211_TX_RC_160_MHZ_WIDTH;
895 break;
896 }
897 if (rate_n_flags & RATE_MCS_SGI_MSK)
898 r->flags |= IEEE80211_TX_RC_SHORT_GI;
899 if (rate_n_flags & RATE_MCS_HT_MSK) {
900 r->flags |= IEEE80211_TX_RC_MCS;
901 r->idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
902 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
903 ieee80211_rate_set_vht(
904 r, rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK,
905 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
906 RATE_VHT_MCS_NSS_POS) + 1);
907 r->flags |= IEEE80211_TX_RC_VHT_MCS;
908 } else {
909 r->idx = iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
Eyal Shapirad310e402013-08-11 18:43:47 +0300910 band);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100911 }
912}
913
Eyal Shapirad310e402013-08-11 18:43:47 +0300914/**
915 * translate ucode response to mac80211 tx status control values
916 */
917static void iwl_mvm_hwrate_to_tx_status(u32 rate_n_flags,
918 struct ieee80211_tx_info *info)
919{
920 struct ieee80211_tx_rate *r = &info->status.rates[0];
921
922 info->status.antenna =
923 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
924 iwl_mvm_hwrate_to_tx_rate(rate_n_flags, info->band, r);
925}
926
Golan Ben-Ami25657fe2015-09-02 12:34:23 +0300927static void iwl_mvm_tx_status_check_trigger(struct iwl_mvm *mvm,
928 u32 status)
929{
930 struct iwl_fw_dbg_trigger_tlv *trig;
931 struct iwl_fw_dbg_trigger_tx_status *status_trig;
932 int i;
933
934 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TX_STATUS))
935 return;
936
937 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TX_STATUS);
938 status_trig = (void *)trig->data;
939
940 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
941 return;
942
943 for (i = 0; i < ARRAY_SIZE(status_trig->statuses); i++) {
944 /* don't collect on status 0 */
945 if (!status_trig->statuses[i].status)
946 break;
947
948 if (status_trig->statuses[i].status != (status & TX_STATUS_MSK))
949 continue;
950
951 iwl_mvm_fw_dbg_collect_trig(mvm, trig,
952 "Tx status %d was received",
953 status & TX_STATUS_MSK);
954 break;
955 }
956}
957
Johannes Berg8ca151b2013-01-24 14:25:36 +0100958static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm,
959 struct iwl_rx_packet *pkt)
960{
961 struct ieee80211_sta *sta;
962 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
963 int txq_id = SEQ_TO_QUEUE(sequence);
964 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
965 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
966 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
967 u32 status = le16_to_cpu(tx_resp->status.status);
968 u16 ssn = iwl_mvm_get_scd_ssn(tx_resp);
969 struct iwl_mvm_sta *mvmsta;
970 struct sk_buff_head skbs;
971 u8 skb_freed = 0;
972 u16 next_reclaimed, seq_ctl;
Emmanuel Grumbach532beba2016-03-07 22:23:52 +0200973 bool is_ndp = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100974
975 __skb_queue_head_init(&skbs);
976
977 seq_ctl = le16_to_cpu(tx_resp->seq_ctl);
978
979 /* we can free until ssn % q.n_bd not inclusive */
980 iwl_trans_reclaim(mvm->trans, txq_id, ssn, &skbs);
981
982 while (!skb_queue_empty(&skbs)) {
983 struct sk_buff *skb = __skb_dequeue(&skbs);
984 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
985
986 skb_freed++;
987
988 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
989
990 memset(&info->status, 0, sizeof(info->status));
991
992 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
993
994 /* inform mac80211 about what happened with the frame */
995 switch (status & TX_STATUS_MSK) {
996 case TX_STATUS_SUCCESS:
997 case TX_STATUS_DIRECT_DONE:
998 info->flags |= IEEE80211_TX_STAT_ACK;
999 break;
1000 case TX_STATUS_FAIL_DEST_PS:
1001 info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
1002 break;
1003 default:
1004 break;
1005 }
1006
Golan Ben-Ami25657fe2015-09-02 12:34:23 +03001007 iwl_mvm_tx_status_check_trigger(mvm, status);
1008
Johannes Berg8ca151b2013-01-24 14:25:36 +01001009 info->status.rates[0].count = tx_resp->failure_frame + 1;
Eyal Shapirad310e402013-08-11 18:43:47 +03001010 iwl_mvm_hwrate_to_tx_status(le32_to_cpu(tx_resp->initial_rate),
1011 info);
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001012 info->status.status_driver_data[1] =
1013 (void *)(uintptr_t)le32_to_cpu(tx_resp->initial_rate);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001014
1015 /* Single frame failure in an AMPDU queue => send BAR */
Eytan Lifshitz19e737c2013-09-09 13:30:15 +02001016 if (txq_id >= mvm->first_agg_queue &&
Eyal Shapira9ce578a2014-12-31 15:22:38 +02001017 !(info->flags & IEEE80211_TX_STAT_ACK) &&
1018 !(info->flags & IEEE80211_TX_STAT_TX_FILTERED))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001019 info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001020
Emmanuel Grumbachebea2f32013-06-13 10:07:47 +03001021 /* W/A FW bug: seq_ctl is wrong when the status isn't success */
1022 if (status != TX_STATUS_SUCCESS) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001023 struct ieee80211_hdr *hdr = (void *)skb->data;
1024 seq_ctl = le16_to_cpu(hdr->seq_ctrl);
1025 }
1026
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001027 if (unlikely(!seq_ctl)) {
1028 struct ieee80211_hdr *hdr = (void *)skb->data;
1029
1030 /*
1031 * If it is an NDP, we can't update next_reclaim since
1032 * its sequence control is 0. Note that for that same
1033 * reason, NDPs are never sent to A-MPDU'able queues
1034 * so that we can never have more than one freed frame
1035 * for a single Tx resonse (see WARN_ON below).
1036 */
1037 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
1038 is_ndp = true;
1039 }
1040
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +03001041 /*
1042 * TODO: this is not accurate if we are freeing more than one
1043 * packet.
1044 */
1045 info->status.tx_time =
1046 le16_to_cpu(tx_resp->wireless_media_time);
Eliad Peller3a84b692014-03-12 15:05:06 +02001047 BUILD_BUG_ON(ARRAY_SIZE(info->status.status_driver_data) < 1);
1048 info->status.status_driver_data[0] =
1049 (void *)(uintptr_t)tx_resp->reduced_tpc;
1050
Johannes Bergf14d6b32014-03-21 13:30:03 +01001051 ieee80211_tx_status(mvm->hw, skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001052 }
1053
Eytan Lifshitz19e737c2013-09-09 13:30:15 +02001054 if (txq_id >= mvm->first_agg_queue) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001055 /* If this is an aggregation queue, we use the ssn since:
1056 * ssn = wifi seq_num % 256.
1057 * The seq_ctl is the sequence control of the packet to which
1058 * this Tx response relates. But if there is a hole in the
1059 * bitmap of the BA we received, this Tx response may allow to
1060 * reclaim the hole and all the subsequent packets that were
1061 * already acked. In that case, seq_ctl != ssn, and the next
1062 * packet to be reclaimed will be ssn and not seq_ctl. In that
1063 * case, several packets will be reclaimed even if
1064 * frame_count = 1.
1065 *
1066 * The ssn is the index (% 256) of the latest packet that has
1067 * treated (acked / dropped) + 1.
1068 */
1069 next_reclaimed = ssn;
1070 } else {
1071 /* The next packet to be reclaimed is the one after this one */
Johannes Berg9a886582013-02-15 19:25:00 +01001072 next_reclaimed = IEEE80211_SEQ_TO_SN(seq_ctl + 0x10);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001073 }
1074
1075 IWL_DEBUG_TX_REPLY(mvm,
Emmanuel Grumbach8c6e83d2013-03-20 17:12:46 +02001076 "TXQ %d status %s (0x%08x)\n",
1077 txq_id, iwl_mvm_get_tx_fail_reason(status), status);
1078
1079 IWL_DEBUG_TX_REPLY(mvm,
1080 "\t\t\t\tinitial_rate 0x%x retries %d, idx=%d ssn=%d next_reclaimed=0x%x seq_ctl=0x%x\n",
1081 le32_to_cpu(tx_resp->initial_rate),
Johannes Berg8ca151b2013-01-24 14:25:36 +01001082 tx_resp->failure_frame, SEQ_TO_INDEX(sequence),
1083 ssn, next_reclaimed, seq_ctl);
1084
1085 rcu_read_lock();
1086
1087 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001088 /*
1089 * sta can't be NULL otherwise it'd mean that the sta has been freed in
1090 * the firmware while we still have packets for it in the Tx queues.
1091 */
1092 if (WARN_ON_ONCE(!sta))
1093 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001094
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001095 if (!IS_ERR(sta)) {
Johannes Berg5b577a92013-11-14 18:20:04 +01001096 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001097
1098 if (tid != IWL_TID_NON_QOS) {
1099 struct iwl_mvm_tid_data *tid_data =
1100 &mvmsta->tid_data[tid];
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001101 bool send_eosp_ndp = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001102
Johannes Berg2bfb5092012-12-27 21:43:48 +01001103 spin_lock_bh(&mvmsta->lock);
Emmanuel Grumbach532beba2016-03-07 22:23:52 +02001104 if (!is_ndp) {
1105 tid_data->next_reclaimed = next_reclaimed;
1106 IWL_DEBUG_TX_REPLY(mvm,
1107 "Next reclaimed packet:%d\n",
1108 next_reclaimed);
1109 } else {
1110 IWL_DEBUG_TX_REPLY(mvm,
1111 "NDP - don't update next_reclaimed\n");
1112 }
1113
Johannes Berg8ca151b2013-01-24 14:25:36 +01001114 iwl_mvm_check_ratid_empty(mvm, sta, tid);
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001115
1116 if (mvmsta->sleep_tx_count) {
1117 mvmsta->sleep_tx_count--;
1118 if (mvmsta->sleep_tx_count &&
1119 !iwl_mvm_tid_queued(tid_data)) {
1120 /*
1121 * The number of frames in the queue
1122 * dropped to 0 even if we sent less
1123 * frames than we thought we had on the
1124 * Tx queue.
1125 * This means we had holes in the BA
1126 * window that we just filled, ask
1127 * mac80211 to send EOSP since the
1128 * firmware won't know how to do that.
1129 * Send NDP and the firmware will send
1130 * EOSP notification that will trigger
1131 * a call to ieee80211_sta_eosp().
1132 */
1133 send_eosp_ndp = true;
1134 }
1135 }
1136
Johannes Berg2bfb5092012-12-27 21:43:48 +01001137 spin_unlock_bh(&mvmsta->lock);
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02001138 if (send_eosp_ndp) {
1139 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta,
1140 IEEE80211_FRAME_RELEASE_UAPSD,
1141 1, tid, false, false);
1142 mvmsta->sleep_tx_count = 0;
1143 ieee80211_send_eosp_nullfunc(sta, tid);
1144 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001145 }
Johannes Berg3e56ead2013-02-15 22:23:18 +01001146
1147 if (mvmsta->next_status_eosp) {
1148 mvmsta->next_status_eosp = false;
1149 ieee80211_sta_eosp(sta);
1150 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001151 } else {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001152 mvmsta = NULL;
1153 }
1154
1155 /*
1156 * If the txq is not an AMPDU queue, there is no chance we freed
1157 * several skbs. Check that out...
Johannes Berg8ca151b2013-01-24 14:25:36 +01001158 */
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001159 if (txq_id >= mvm->first_agg_queue)
1160 goto out;
1161
1162 /* We can't free more than one frame at once on a shared queue */
1163 WARN_ON(skb_freed > 1);
1164
Emmanuel Grumbach589a6ba2014-06-05 11:32:41 +03001165 /* If we have still frames for this STA nothing to do here */
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001166 if (!atomic_sub_and_test(skb_freed, &mvm->pending_frames[sta_id]))
1167 goto out;
1168
1169 if (mvmsta && mvmsta->vif->type == NL80211_IFTYPE_AP) {
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001170
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001171 /*
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001172 * If there are no pending frames for this STA and
1173 * the tx to this station is not disabled, notify
1174 * mac80211 that this station can now wake up in its
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001175 * STA table.
1176 * If mvmsta is not NULL, sta is valid.
1177 */
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001178
1179 spin_lock_bh(&mvmsta->lock);
1180
1181 if (!mvmsta->disable_tx)
1182 ieee80211_sta_block_awake(mvm->hw, sta, false);
1183
1184 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001185 }
1186
Emmanuel Grumbach9bb0c1a2014-01-20 15:21:26 +02001187 if (PTR_ERR(sta) == -EBUSY || PTR_ERR(sta) == -ENOENT) {
1188 /*
1189 * We are draining and this was the last packet - pre_rcu_remove
1190 * has been called already. We might be after the
1191 * synchronize_net already.
1192 * Don't rely on iwl_mvm_rm_sta to see the empty Tx queues.
1193 */
1194 set_bit(sta_id, mvm->sta_drained);
1195 schedule_work(&mvm->sta_drained_wk);
1196 }
1197
1198out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001199 rcu_read_unlock();
1200}
1201
1202#ifdef CONFIG_IWLWIFI_DEBUG
1203#define AGG_TX_STATE_(x) case AGG_TX_STATE_ ## x: return #x
1204static const char *iwl_get_agg_tx_status(u16 status)
1205{
1206 switch (status & AGG_TX_STATE_STATUS_MSK) {
1207 AGG_TX_STATE_(TRANSMITTED);
1208 AGG_TX_STATE_(UNDERRUN);
1209 AGG_TX_STATE_(BT_PRIO);
1210 AGG_TX_STATE_(FEW_BYTES);
1211 AGG_TX_STATE_(ABORT);
1212 AGG_TX_STATE_(LAST_SENT_TTL);
1213 AGG_TX_STATE_(LAST_SENT_TRY_CNT);
1214 AGG_TX_STATE_(LAST_SENT_BT_KILL);
1215 AGG_TX_STATE_(SCD_QUERY);
1216 AGG_TX_STATE_(TEST_BAD_CRC32);
1217 AGG_TX_STATE_(RESPONSE);
1218 AGG_TX_STATE_(DUMP_TX);
1219 AGG_TX_STATE_(DELAY_TX);
1220 }
1221
1222 return "UNKNOWN";
1223}
1224
1225static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1226 struct iwl_rx_packet *pkt)
1227{
1228 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1229 struct agg_tx_status *frame_status = &tx_resp->status;
1230 int i;
1231
1232 for (i = 0; i < tx_resp->frame_count; i++) {
1233 u16 fstatus = le16_to_cpu(frame_status[i].status);
1234
1235 IWL_DEBUG_TX_REPLY(mvm,
1236 "status %s (0x%04x), try-count (%d) seq (0x%x)\n",
1237 iwl_get_agg_tx_status(fstatus),
1238 fstatus & AGG_TX_STATE_STATUS_MSK,
1239 (fstatus & AGG_TX_STATE_TRY_CNT_MSK) >>
1240 AGG_TX_STATE_TRY_CNT_POS,
1241 le16_to_cpu(frame_status[i].sequence));
1242 }
1243}
1244#else
1245static void iwl_mvm_rx_tx_cmd_agg_dbg(struct iwl_mvm *mvm,
1246 struct iwl_rx_packet *pkt)
1247{}
1248#endif /* CONFIG_IWLWIFI_DEBUG */
1249
1250static void iwl_mvm_rx_tx_cmd_agg(struct iwl_mvm *mvm,
1251 struct iwl_rx_packet *pkt)
1252{
1253 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1254 int sta_id = IWL_MVM_TX_RES_GET_RA(tx_resp->ra_tid);
1255 int tid = IWL_MVM_TX_RES_GET_TID(tx_resp->ra_tid);
1256 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1257 struct ieee80211_sta *sta;
1258
Eytan Lifshitz19e737c2013-09-09 13:30:15 +02001259 if (WARN_ON_ONCE(SEQ_TO_QUEUE(sequence) < mvm->first_agg_queue))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001260 return;
1261
1262 if (WARN_ON_ONCE(tid == IWL_TID_NON_QOS))
1263 return;
1264
1265 iwl_mvm_rx_tx_cmd_agg_dbg(mvm, pkt);
1266
1267 rcu_read_lock();
1268
1269 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
1270
1271 if (!WARN_ON_ONCE(IS_ERR_OR_NULL(sta))) {
Johannes Berg5b577a92013-11-14 18:20:04 +01001272 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001273 mvmsta->tid_data[tid].rate_n_flags =
1274 le32_to_cpu(tx_resp->initial_rate);
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +03001275 mvmsta->tid_data[tid].tx_time =
1276 le16_to_cpu(tx_resp->wireless_media_time);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001277 }
1278
1279 rcu_read_unlock();
1280}
1281
Johannes Berg04168412015-06-23 21:22:09 +02001282void iwl_mvm_rx_tx_cmd(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001283{
1284 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1285 struct iwl_mvm_tx_resp *tx_resp = (void *)pkt->data;
1286
1287 if (tx_resp->frame_count == 1)
1288 iwl_mvm_rx_tx_cmd_single(mvm, pkt);
1289 else
1290 iwl_mvm_rx_tx_cmd_agg(mvm, pkt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001291}
1292
Eyal Shapiraa7130442014-09-14 15:28:09 +03001293static void iwl_mvm_tx_info_from_ba_notif(struct ieee80211_tx_info *info,
1294 struct iwl_mvm_ba_notif *ba_notif,
1295 struct iwl_mvm_tid_data *tid_data)
1296{
1297 info->flags |= IEEE80211_TX_STAT_AMPDU;
1298 info->status.ampdu_ack_len = ba_notif->txed_2_done;
1299 info->status.ampdu_len = ba_notif->txed;
1300 iwl_mvm_hwrate_to_tx_status(tid_data->rate_n_flags,
1301 info);
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +03001302 /* TODO: not accounted if the whole A-MPDU failed */
1303 info->status.tx_time = tid_data->tx_time;
Eyal Shapiraa7130442014-09-14 15:28:09 +03001304 info->status.status_driver_data[0] =
Gregory Greenman69c7fda2015-12-29 11:26:35 +02001305 (void *)(uintptr_t)ba_notif->reduced_txp;
Eyal Shapira929e6ed2015-01-30 13:40:02 +02001306 info->status.status_driver_data[1] =
1307 (void *)(uintptr_t)tid_data->rate_n_flags;
Eyal Shapiraa7130442014-09-14 15:28:09 +03001308}
1309
Johannes Berg04168412015-06-23 21:22:09 +02001310void iwl_mvm_rx_ba_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001311{
1312 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1313 struct iwl_mvm_ba_notif *ba_notif = (void *)pkt->data;
1314 struct sk_buff_head reclaimed_skbs;
1315 struct iwl_mvm_tid_data *tid_data;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001316 struct ieee80211_sta *sta;
1317 struct iwl_mvm_sta *mvmsta;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001318 struct sk_buff *skb;
1319 int sta_id, tid, freed;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001320 /* "flow" corresponds to Tx queue */
1321 u16 scd_flow = le16_to_cpu(ba_notif->scd_flow);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001322 /* "ssn" is start of block-ack Tx window, corresponds to index
1323 * (in Tx queue's circular buffer) of first TFD/frame in window */
1324 u16 ba_resp_scd_ssn = le16_to_cpu(ba_notif->scd_ssn);
1325
1326 sta_id = ba_notif->sta_id;
1327 tid = ba_notif->tid;
1328
Eyal Shapira2cee4762015-01-16 11:09:30 +02001329 if (WARN_ONCE(sta_id >= IWL_MVM_STATION_COUNT ||
1330 tid >= IWL_MAX_TID_COUNT,
1331 "sta_id %d tid %d", sta_id, tid))
Johannes Berg04168412015-06-23 21:22:09 +02001332 return;
Eyal Shapira2cee4762015-01-16 11:09:30 +02001333
Johannes Berg8ca151b2013-01-24 14:25:36 +01001334 rcu_read_lock();
1335
1336 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
1337
1338 /* Reclaiming frames for a station that has been deleted ? */
1339 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta))) {
1340 rcu_read_unlock();
Johannes Berg04168412015-06-23 21:22:09 +02001341 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001342 }
1343
Johannes Berg5b577a92013-11-14 18:20:04 +01001344 mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001345 tid_data = &mvmsta->tid_data[tid];
1346
Johannes Berg1f16ea22015-03-06 09:17:37 +01001347 if (tid_data->txq_id != scd_flow) {
1348 IWL_ERR(mvm,
1349 "invalid BA notification: Q %d, tid %d, flow %d\n",
1350 tid_data->txq_id, tid, scd_flow);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001351 rcu_read_unlock();
Johannes Berg04168412015-06-23 21:22:09 +02001352 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001353 }
1354
Johannes Berg2bfb5092012-12-27 21:43:48 +01001355 spin_lock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001356
1357 __skb_queue_head_init(&reclaimed_skbs);
1358
1359 /*
1360 * Release all TFDs before the SSN, i.e. all TFDs in front of
1361 * block-ack window (we assume that they've been successfully
1362 * transmitted ... if not, it's too late anyway).
1363 */
1364 iwl_trans_reclaim(mvm->trans, scd_flow, ba_resp_scd_ssn,
1365 &reclaimed_skbs);
1366
1367 IWL_DEBUG_TX_REPLY(mvm,
1368 "BA_NOTIFICATION Received from %pM, sta_id = %d\n",
1369 (u8 *)&ba_notif->sta_addr_lo32,
1370 ba_notif->sta_id);
1371 IWL_DEBUG_TX_REPLY(mvm,
1372 "TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = %d, scd_ssn = %d sent:%d, acked:%d\n",
1373 ba_notif->tid, le16_to_cpu(ba_notif->seq_ctl),
1374 (unsigned long long)le64_to_cpu(ba_notif->bitmap),
1375 scd_flow, ba_resp_scd_ssn, ba_notif->txed,
1376 ba_notif->txed_2_done);
1377
Gregory Greenman69c7fda2015-12-29 11:26:35 +02001378 IWL_DEBUG_TX_REPLY(mvm, "reduced txp from ba notif %d\n",
1379 ba_notif->reduced_txp);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001380 tid_data->next_reclaimed = ba_resp_scd_ssn;
1381
1382 iwl_mvm_check_ratid_empty(mvm, sta, tid);
1383
1384 freed = 0;
1385
1386 skb_queue_walk(&reclaimed_skbs, skb) {
Johannes Berg143582c2014-02-25 10:37:15 +01001387 struct ieee80211_hdr *hdr = (void *)skb->data;
1388 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001389
1390 if (ieee80211_is_data_qos(hdr->frame_control))
1391 freed++;
1392 else
1393 WARN_ON_ONCE(1);
1394
Johannes Berg8ca151b2013-01-24 14:25:36 +01001395 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1396
Johannes Berg143582c2014-02-25 10:37:15 +01001397 memset(&info->status, 0, sizeof(info->status));
1398 /* Packet was transmitted successfully, failures come as single
1399 * frames because before failing a frame the firmware transmits
1400 * it without aggregation at least once.
1401 */
1402 info->flags |= IEEE80211_TX_STAT_ACK;
1403
Eyal Shapiraa7130442014-09-14 15:28:09 +03001404 /* this is the first skb we deliver in this batch */
1405 /* put the rate scaling data there */
1406 if (freed == 1)
1407 iwl_mvm_tx_info_from_ba_notif(info, ba_notif, tid_data);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001408 }
1409
Johannes Berg2bfb5092012-12-27 21:43:48 +01001410 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001411
Eyal Shapiraa7130442014-09-14 15:28:09 +03001412 /* We got a BA notif with 0 acked or scd_ssn didn't progress which is
1413 * possible (i.e. first MPDU in the aggregation wasn't acked)
1414 * Still it's important to update RS about sent vs. acked.
1415 */
1416 if (skb_queue_empty(&reclaimed_skbs)) {
1417 struct ieee80211_tx_info ba_info = {};
1418 struct ieee80211_chanctx_conf *chanctx_conf = NULL;
1419
1420 if (mvmsta->vif)
1421 chanctx_conf =
1422 rcu_dereference(mvmsta->vif->chanctx_conf);
1423
1424 if (WARN_ON_ONCE(!chanctx_conf))
1425 goto out;
1426
1427 ba_info.band = chanctx_conf->def.chan->band;
1428 iwl_mvm_tx_info_from_ba_notif(&ba_info, ba_notif, tid_data);
1429
1430 IWL_DEBUG_TX_REPLY(mvm, "No reclaim. Update rs directly\n");
1431 iwl_mvm_rs_tx_status(mvm, sta, tid, &ba_info);
1432 }
1433
1434out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001435 rcu_read_unlock();
1436
1437 while (!skb_queue_empty(&reclaimed_skbs)) {
1438 skb = __skb_dequeue(&reclaimed_skbs);
Johannes Bergf14d6b32014-03-21 13:30:03 +01001439 ieee80211_tx_status(mvm->hw, skb);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001440 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001441}
1442
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02001443/*
1444 * Note that there are transports that buffer frames before they reach
1445 * the firmware. This means that after flush_tx_path is called, the
1446 * queue might not be empty. The race-free way to handle this is to:
1447 * 1) set the station as draining
1448 * 2) flush the Tx path
1449 * 3) wait for the transport queues to be empty
1450 */
Luca Coelho5888a402015-10-06 09:54:57 +03001451int iwl_mvm_flush_tx_path(struct iwl_mvm *mvm, u32 tfd_msk, u32 flags)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001452{
1453 int ret;
1454 struct iwl_tx_path_flush_cmd flush_cmd = {
1455 .queues_ctl = cpu_to_le32(tfd_msk),
1456 .flush_ctl = cpu_to_le16(DUMP_TX_FIFO_FLUSH),
1457 };
1458
Johannes Berg8ca151b2013-01-24 14:25:36 +01001459 ret = iwl_mvm_send_cmd_pdu(mvm, TXPATH_FLUSH, flags,
1460 sizeof(flush_cmd), &flush_cmd);
1461 if (ret)
1462 IWL_ERR(mvm, "Failed to send flush command (%d)\n", ret);
1463 return ret;
1464}