blob: aa41ee8ed9163b7538dfe391dd5f8c68dd1c720e [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 *
Andrei Otcheretianskifa7878e2015-05-05 09:28:16 +03008 * Copyright(c) 2012 - 2015 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharon26d6c162017-01-03 12:00:19 +020010 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010028 *
29 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
Andrei Otcheretianskifa7878e2015-05-05 09:28:16 +030035 * Copyright(c) 2012 - 2015 Intel Corporation. All rights reserved.
36 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharon26d6c162017-01-03 12:00:19 +020037 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010038 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 *
44 * * Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * * Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in
48 * the documentation and/or other materials provided with the
49 * distribution.
50 * * Neither the name Intel Corporation nor the names of its
51 * contributors may be used to endorse or promote products derived
52 * from this software without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 *****************************************************************************/
67#include <net/mac80211.h>
68
69#include "mvm.h"
70#include "sta.h"
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +030071#include "rs.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010072
Sara Sharon854c5702016-01-26 13:17:47 +020073/*
74 * New version of ADD_STA_sta command added new fields at the end of the
75 * structure, so sending the size of the relevant API's structure is enough to
76 * support both API versions.
77 */
78static inline int iwl_mvm_add_sta_cmd_size(struct iwl_mvm *mvm)
79{
Sara Sharonced19f22017-02-06 19:09:32 +020080 if (iwl_mvm_has_new_rx_api(mvm) ||
81 fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_STA_TYPE))
82 return sizeof(struct iwl_mvm_add_sta_cmd);
83 else
84 return sizeof(struct iwl_mvm_add_sta_cmd_v7);
Sara Sharon854c5702016-01-26 13:17:47 +020085}
86
Eliad Pellerb92e6612014-01-23 17:58:23 +020087static int iwl_mvm_find_free_sta_id(struct iwl_mvm *mvm,
88 enum nl80211_iftype iftype)
Johannes Berg8ca151b2013-01-24 14:25:36 +010089{
90 int sta_id;
Eliad Pellerb92e6612014-01-23 17:58:23 +020091 u32 reserved_ids = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +010092
Eliad Pellerb92e6612014-01-23 17:58:23 +020093 BUILD_BUG_ON(IWL_MVM_STATION_COUNT > 32);
Johannes Berg8ca151b2013-01-24 14:25:36 +010094 WARN_ON_ONCE(test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status));
95
96 lockdep_assert_held(&mvm->mutex);
97
Eliad Pellerb92e6612014-01-23 17:58:23 +020098 /* d0i3/d3 assumes the AP's sta_id (of sta vif) is 0. reserve it. */
99 if (iftype != NL80211_IFTYPE_STATION)
100 reserved_ids = BIT(0);
101
Johannes Berg8ca151b2013-01-24 14:25:36 +0100102 /* Don't take rcu_read_lock() since we are protected by mvm->mutex */
Sara Sharon0ae98812017-01-04 14:53:58 +0200103 for (sta_id = 0; sta_id < ARRAY_SIZE(mvm->fw_id_to_mac_id); sta_id++) {
Eliad Pellerb92e6612014-01-23 17:58:23 +0200104 if (BIT(sta_id) & reserved_ids)
105 continue;
106
Johannes Berg8ca151b2013-01-24 14:25:36 +0100107 if (!rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
108 lockdep_is_held(&mvm->mutex)))
109 return sta_id;
Eliad Pellerb92e6612014-01-23 17:58:23 +0200110 }
Sara Sharon0ae98812017-01-04 14:53:58 +0200111 return IWL_MVM_INVALID_STA;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100112}
113
Johannes Berg7a453972013-02-12 13:10:44 +0100114/* send station add/update command to firmware */
115int iwl_mvm_sta_send_to_fw(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Liad Kaufman24afba72015-07-28 18:56:08 +0300116 bool update, unsigned int flags)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100117{
Johannes Berg9d8ce6a2014-12-23 16:02:40 +0100118 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach4b8265a2014-07-13 08:58:04 +0300119 struct iwl_mvm_add_sta_cmd add_sta_cmd = {
120 .sta_id = mvm_sta->sta_id,
121 .mac_id_n_color = cpu_to_le32(mvm_sta->mac_id_n_color),
122 .add_modify = update ? 1 : 0,
123 .station_flags_msk = cpu_to_le32(STA_FLG_FAT_EN_MSK |
124 STA_FLG_MIMO_EN_MSK),
Liad Kaufmancf0cda12015-09-24 10:44:12 +0200125 .tid_disable_tx = cpu_to_le16(mvm_sta->tid_disable_agg),
Emmanuel Grumbach4b8265a2014-07-13 08:58:04 +0300126 };
Johannes Berg8ca151b2013-01-24 14:25:36 +0100127 int ret;
128 u32 status;
129 u32 agg_size = 0, mpdu_dens = 0;
130
Sara Sharonced19f22017-02-06 19:09:32 +0200131 if (fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_STA_TYPE))
132 add_sta_cmd.station_type = mvm_sta->sta_type;
133
Liad Kaufman24afba72015-07-28 18:56:08 +0300134 if (!update || (flags & STA_MODIFY_QUEUES)) {
Johannes Berg7a453972013-02-12 13:10:44 +0100135 memcpy(&add_sta_cmd.addr, sta->addr, ETH_ALEN);
Liad Kaufman24afba72015-07-28 18:56:08 +0300136
Sara Sharonbb497012016-09-29 14:52:40 +0300137 if (!iwl_mvm_has_new_tx_api(mvm)) {
138 add_sta_cmd.tfd_queue_msk =
139 cpu_to_le32(mvm_sta->tfd_queue_msk);
140
141 if (flags & STA_MODIFY_QUEUES)
142 add_sta_cmd.modify_mask |= STA_MODIFY_QUEUES;
143 } else {
144 WARN_ON(flags & STA_MODIFY_QUEUES);
145 }
Johannes Berg7a453972013-02-12 13:10:44 +0100146 }
Johannes Berg5bc5aaa2013-02-12 14:35:36 +0100147
148 switch (sta->bandwidth) {
149 case IEEE80211_STA_RX_BW_160:
150 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_FAT_EN_160MHZ);
151 /* fall through */
152 case IEEE80211_STA_RX_BW_80:
153 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_FAT_EN_80MHZ);
154 /* fall through */
155 case IEEE80211_STA_RX_BW_40:
156 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_FAT_EN_40MHZ);
157 /* fall through */
158 case IEEE80211_STA_RX_BW_20:
159 if (sta->ht_cap.ht_supported)
160 add_sta_cmd.station_flags |=
161 cpu_to_le32(STA_FLG_FAT_EN_20MHZ);
162 break;
163 }
164
165 switch (sta->rx_nss) {
166 case 1:
167 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_MIMO_EN_SISO);
168 break;
169 case 2:
170 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_MIMO_EN_MIMO2);
171 break;
172 case 3 ... 8:
173 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_MIMO_EN_MIMO3);
174 break;
175 }
176
177 switch (sta->smps_mode) {
178 case IEEE80211_SMPS_AUTOMATIC:
179 case IEEE80211_SMPS_NUM_MODES:
180 WARN_ON(1);
181 break;
182 case IEEE80211_SMPS_STATIC:
183 /* override NSS */
184 add_sta_cmd.station_flags &= ~cpu_to_le32(STA_FLG_MIMO_EN_MSK);
185 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_MIMO_EN_SISO);
186 break;
187 case IEEE80211_SMPS_DYNAMIC:
188 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_RTS_MIMO_PROT);
189 break;
190 case IEEE80211_SMPS_OFF:
191 /* nothing */
192 break;
193 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100194
195 if (sta->ht_cap.ht_supported) {
196 add_sta_cmd.station_flags_msk |=
197 cpu_to_le32(STA_FLG_MAX_AGG_SIZE_MSK |
198 STA_FLG_AGG_MPDU_DENS_MSK);
199
200 mpdu_dens = sta->ht_cap.ampdu_density;
201 }
202
203 if (sta->vht_cap.vht_supported) {
204 agg_size = sta->vht_cap.cap &
205 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK;
206 agg_size >>=
207 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT;
208 } else if (sta->ht_cap.ht_supported) {
209 agg_size = sta->ht_cap.ampdu_factor;
210 }
211
212 add_sta_cmd.station_flags |=
213 cpu_to_le32(agg_size << STA_FLG_MAX_AGG_SIZE_SHIFT);
214 add_sta_cmd.station_flags |=
215 cpu_to_le32(mpdu_dens << STA_FLG_AGG_MPDU_DENS_SHIFT);
Johannes Berg6ea29ce2016-12-01 16:25:30 +0100216 if (mvm_sta->associated)
217 add_sta_cmd.assoc_id = cpu_to_le16(sta->aid);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100218
Johannes Berg65e25482016-04-13 14:24:22 +0200219 if (sta->wme) {
220 add_sta_cmd.modify_mask |= STA_MODIFY_UAPSD_ACS;
221
222 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
Emmanuel Grumbachc80eb572017-01-12 15:43:57 +0200223 add_sta_cmd.uapsd_acs |= BIT(AC_BK);
Johannes Berg65e25482016-04-13 14:24:22 +0200224 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
Emmanuel Grumbachc80eb572017-01-12 15:43:57 +0200225 add_sta_cmd.uapsd_acs |= BIT(AC_BE);
Johannes Berg65e25482016-04-13 14:24:22 +0200226 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
Emmanuel Grumbachc80eb572017-01-12 15:43:57 +0200227 add_sta_cmd.uapsd_acs |= BIT(AC_VI);
Johannes Berg65e25482016-04-13 14:24:22 +0200228 if (sta->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
Emmanuel Grumbachc80eb572017-01-12 15:43:57 +0200229 add_sta_cmd.uapsd_acs |= BIT(AC_VO);
230 add_sta_cmd.uapsd_acs |= add_sta_cmd.uapsd_acs << 4;
Emmanuel Grumbache71ca5e2017-02-08 14:53:32 +0200231 add_sta_cmd.sp_length = sta->max_sp ? sta->max_sp * 2 : 128;
Johannes Berg65e25482016-04-13 14:24:22 +0200232 }
233
Johannes Berg8ca151b2013-01-24 14:25:36 +0100234 status = ADD_STA_SUCCESS;
Sara Sharon854c5702016-01-26 13:17:47 +0200235 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
236 iwl_mvm_add_sta_cmd_size(mvm),
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +0300237 &add_sta_cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100238 if (ret)
239 return ret;
240
Sara Sharon837c4da2016-01-07 16:50:45 +0200241 switch (status & IWL_ADD_STA_STATUS_MASK) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100242 case ADD_STA_SUCCESS:
243 IWL_DEBUG_ASSOC(mvm, "ADD_STA PASSED\n");
244 break;
245 default:
246 ret = -EIO;
247 IWL_ERR(mvm, "ADD_STA failed\n");
248 break;
249 }
250
251 return ret;
252}
253
Sara Sharon10b2b202016-03-20 16:23:41 +0200254static void iwl_mvm_rx_agg_session_expired(unsigned long data)
255{
256 struct iwl_mvm_baid_data __rcu **rcu_ptr = (void *)data;
257 struct iwl_mvm_baid_data *ba_data;
258 struct ieee80211_sta *sta;
259 struct iwl_mvm_sta *mvm_sta;
260 unsigned long timeout;
261
262 rcu_read_lock();
263
264 ba_data = rcu_dereference(*rcu_ptr);
265
266 if (WARN_ON(!ba_data))
267 goto unlock;
268
269 if (!ba_data->timeout)
270 goto unlock;
271
272 timeout = ba_data->last_rx + TU_TO_JIFFIES(ba_data->timeout * 2);
273 if (time_is_after_jiffies(timeout)) {
274 mod_timer(&ba_data->session_timer, timeout);
275 goto unlock;
276 }
277
278 /* Timer expired */
279 sta = rcu_dereference(ba_data->mvm->fw_id_to_mac_id[ba_data->sta_id]);
280 mvm_sta = iwl_mvm_sta_from_mac80211(sta);
281 ieee80211_stop_rx_ba_session_offl(mvm_sta->vif,
282 sta->addr, ba_data->tid);
283unlock:
284 rcu_read_unlock();
285}
286
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300287static int iwl_mvm_tdls_sta_init(struct iwl_mvm *mvm,
288 struct ieee80211_sta *sta)
289{
290 unsigned long used_hw_queues;
291 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach5d42e7b2015-03-19 20:04:51 +0200292 unsigned int wdg_timeout =
293 iwl_mvm_get_wd_timeout(mvm, NULL, true, false);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300294 u32 ac;
295
296 lockdep_assert_held(&mvm->mutex);
297
298 used_hw_queues = iwl_mvm_get_used_hw_queues(mvm, NULL);
299
300 /* Find available queues, and allocate them to the ACs */
301 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
302 u8 queue = find_first_zero_bit(&used_hw_queues,
303 mvm->first_agg_queue);
304
305 if (queue >= mvm->first_agg_queue) {
306 IWL_ERR(mvm, "Failed to allocate STA queue\n");
307 return -EBUSY;
308 }
309
310 __set_bit(queue, &used_hw_queues);
311 mvmsta->hw_queue[ac] = queue;
312 }
313
314 /* Found a place for all queues - enable them */
315 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
316 iwl_mvm_enable_ac_txq(mvm, mvmsta->hw_queue[ac],
Liad Kaufman4ecafae2015-07-14 13:36:18 +0300317 mvmsta->hw_queue[ac],
Liad Kaufman5c1156e2015-07-22 17:59:53 +0300318 iwl_mvm_ac_to_tx_fifo[ac], 0,
319 wdg_timeout);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300320 mvmsta->tfd_queue_msk |= BIT(mvmsta->hw_queue[ac]);
321 }
322
323 return 0;
324}
325
326static void iwl_mvm_tdls_sta_deinit(struct iwl_mvm *mvm,
327 struct ieee80211_sta *sta)
328{
329 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
330 unsigned long sta_msk;
331 int i;
332
333 lockdep_assert_held(&mvm->mutex);
334
335 /* disable the TDLS STA-specific queues */
336 sta_msk = mvmsta->tfd_queue_msk;
Emmanuel Grumbacha4ca3ed2015-01-20 17:07:10 +0200337 for_each_set_bit(i, &sta_msk, sizeof(sta_msk) * BITS_PER_BYTE)
Arik Nemtsov06ecdba2015-10-12 14:47:11 +0300338 iwl_mvm_disable_txq(mvm, i, i, IWL_MAX_TID_COUNT, 0);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300339}
340
Liad Kaufman9794c642015-08-19 17:34:28 +0300341/* Disable aggregations for a bitmap of TIDs for a given station */
342static int iwl_mvm_invalidate_sta_queue(struct iwl_mvm *mvm, int queue,
343 unsigned long disable_agg_tids,
344 bool remove_queue)
345{
346 struct iwl_mvm_add_sta_cmd cmd = {};
347 struct ieee80211_sta *sta;
348 struct iwl_mvm_sta *mvmsta;
349 u32 status;
350 u8 sta_id;
351 int ret;
352
Sara Sharonbb497012016-09-29 14:52:40 +0300353 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
354 return -EINVAL;
355
Liad Kaufman9794c642015-08-19 17:34:28 +0300356 spin_lock_bh(&mvm->queue_info_lock);
357 sta_id = mvm->queue_info[queue].ra_sta_id;
358 spin_unlock_bh(&mvm->queue_info_lock);
359
360 rcu_read_lock();
361
362 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
363
364 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta))) {
365 rcu_read_unlock();
366 return -EINVAL;
367 }
368
369 mvmsta = iwl_mvm_sta_from_mac80211(sta);
370
371 mvmsta->tid_disable_agg |= disable_agg_tids;
372
373 cmd.mac_id_n_color = cpu_to_le32(mvmsta->mac_id_n_color);
374 cmd.sta_id = mvmsta->sta_id;
375 cmd.add_modify = STA_MODE_MODIFY;
376 cmd.modify_mask = STA_MODIFY_QUEUES;
377 if (disable_agg_tids)
378 cmd.modify_mask |= STA_MODIFY_TID_DISABLE_TX;
379 if (remove_queue)
380 cmd.modify_mask |= STA_MODIFY_QUEUE_REMOVAL;
381 cmd.tfd_queue_msk = cpu_to_le32(mvmsta->tfd_queue_msk);
382 cmd.tid_disable_tx = cpu_to_le16(mvmsta->tid_disable_agg);
383
384 rcu_read_unlock();
385
386 /* Notify FW of queue removal from the STA queues */
387 status = ADD_STA_SUCCESS;
388 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
389 iwl_mvm_add_sta_cmd_size(mvm),
390 &cmd, &status);
391
392 return ret;
393}
394
Liad Kaufman42db09c2016-05-02 14:01:14 +0300395static int iwl_mvm_get_queue_agg_tids(struct iwl_mvm *mvm, int queue)
396{
397 struct ieee80211_sta *sta;
398 struct iwl_mvm_sta *mvmsta;
399 unsigned long tid_bitmap;
400 unsigned long agg_tids = 0;
401 s8 sta_id;
402 int tid;
403
404 lockdep_assert_held(&mvm->mutex);
405
Sara Sharonbb497012016-09-29 14:52:40 +0300406 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
407 return -EINVAL;
408
Liad Kaufman42db09c2016-05-02 14:01:14 +0300409 spin_lock_bh(&mvm->queue_info_lock);
410 sta_id = mvm->queue_info[queue].ra_sta_id;
411 tid_bitmap = mvm->queue_info[queue].tid_bitmap;
412 spin_unlock_bh(&mvm->queue_info_lock);
413
414 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
415 lockdep_is_held(&mvm->mutex));
416
417 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta)))
418 return -EINVAL;
419
420 mvmsta = iwl_mvm_sta_from_mac80211(sta);
421
422 spin_lock_bh(&mvmsta->lock);
423 for_each_set_bit(tid, &tid_bitmap, IWL_MAX_TID_COUNT + 1) {
424 if (mvmsta->tid_data[tid].state == IWL_AGG_ON)
425 agg_tids |= BIT(tid);
426 }
427 spin_unlock_bh(&mvmsta->lock);
428
429 return agg_tids;
430}
431
Liad Kaufman9794c642015-08-19 17:34:28 +0300432/*
433 * Remove a queue from a station's resources.
434 * Note that this only marks as free. It DOESN'T delete a BA agreement, and
435 * doesn't disable the queue
436 */
437static int iwl_mvm_remove_sta_queue_marking(struct iwl_mvm *mvm, int queue)
438{
439 struct ieee80211_sta *sta;
440 struct iwl_mvm_sta *mvmsta;
441 unsigned long tid_bitmap;
442 unsigned long disable_agg_tids = 0;
443 u8 sta_id;
444 int tid;
445
446 lockdep_assert_held(&mvm->mutex);
447
Sara Sharonbb497012016-09-29 14:52:40 +0300448 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
449 return -EINVAL;
450
Liad Kaufman9794c642015-08-19 17:34:28 +0300451 spin_lock_bh(&mvm->queue_info_lock);
452 sta_id = mvm->queue_info[queue].ra_sta_id;
453 tid_bitmap = mvm->queue_info[queue].tid_bitmap;
454 spin_unlock_bh(&mvm->queue_info_lock);
455
456 rcu_read_lock();
457
458 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
459
460 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta))) {
461 rcu_read_unlock();
462 return 0;
463 }
464
465 mvmsta = iwl_mvm_sta_from_mac80211(sta);
466
467 spin_lock_bh(&mvmsta->lock);
Liad Kaufman42db09c2016-05-02 14:01:14 +0300468 /* Unmap MAC queues and TIDs from this queue */
Liad Kaufman9794c642015-08-19 17:34:28 +0300469 for_each_set_bit(tid, &tid_bitmap, IWL_MAX_TID_COUNT + 1) {
Liad Kaufman9794c642015-08-19 17:34:28 +0300470 if (mvmsta->tid_data[tid].state == IWL_AGG_ON)
471 disable_agg_tids |= BIT(tid);
Sara Sharon6862fce2017-02-22 19:34:17 +0200472 mvmsta->tid_data[tid].txq_id = IWL_MVM_INVALID_QUEUE;
Liad Kaufman9794c642015-08-19 17:34:28 +0300473 }
Liad Kaufman9794c642015-08-19 17:34:28 +0300474
Liad Kaufman42db09c2016-05-02 14:01:14 +0300475 mvmsta->tfd_queue_msk &= ~BIT(queue); /* Don't use this queue anymore */
Liad Kaufman9794c642015-08-19 17:34:28 +0300476 spin_unlock_bh(&mvmsta->lock);
477
478 rcu_read_unlock();
479
Liad Kaufman9794c642015-08-19 17:34:28 +0300480 return disable_agg_tids;
481}
482
Sara Sharon01796ff2016-11-16 17:04:36 +0200483static int iwl_mvm_free_inactive_queue(struct iwl_mvm *mvm, int queue,
484 bool same_sta)
485{
486 struct iwl_mvm_sta *mvmsta;
487 u8 txq_curr_ac, sta_id, tid;
488 unsigned long disable_agg_tids = 0;
489 int ret;
490
491 lockdep_assert_held(&mvm->mutex);
492
Sara Sharonbb497012016-09-29 14:52:40 +0300493 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
494 return -EINVAL;
495
Sara Sharon01796ff2016-11-16 17:04:36 +0200496 spin_lock_bh(&mvm->queue_info_lock);
497 txq_curr_ac = mvm->queue_info[queue].mac80211_ac;
498 sta_id = mvm->queue_info[queue].ra_sta_id;
499 tid = mvm->queue_info[queue].txq_tid;
500 spin_unlock_bh(&mvm->queue_info_lock);
501
502 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, sta_id);
Sharon Dvire3df1e42017-02-21 10:41:31 +0200503 if (WARN_ON(!mvmsta))
504 return -EINVAL;
Sara Sharon01796ff2016-11-16 17:04:36 +0200505
506 disable_agg_tids = iwl_mvm_remove_sta_queue_marking(mvm, queue);
507 /* Disable the queue */
508 if (disable_agg_tids)
509 iwl_mvm_invalidate_sta_queue(mvm, queue,
510 disable_agg_tids, false);
511
512 ret = iwl_mvm_disable_txq(mvm, queue,
513 mvmsta->vif->hw_queue[txq_curr_ac],
514 tid, 0);
515 if (ret) {
516 /* Re-mark the inactive queue as inactive */
517 spin_lock_bh(&mvm->queue_info_lock);
518 mvm->queue_info[queue].status = IWL_MVM_QUEUE_INACTIVE;
519 spin_unlock_bh(&mvm->queue_info_lock);
520 IWL_ERR(mvm,
521 "Failed to free inactive queue %d (ret=%d)\n",
522 queue, ret);
523
524 return ret;
525 }
526
527 /* If TXQ is allocated to another STA, update removal in FW */
528 if (!same_sta)
529 iwl_mvm_invalidate_sta_queue(mvm, queue, 0, true);
530
531 return 0;
532}
533
Liad Kaufman42db09c2016-05-02 14:01:14 +0300534static int iwl_mvm_get_shared_queue(struct iwl_mvm *mvm,
535 unsigned long tfd_queue_mask, u8 ac)
536{
537 int queue = 0;
538 u8 ac_to_queue[IEEE80211_NUM_ACS];
539 int i;
540
541 lockdep_assert_held(&mvm->queue_info_lock);
Sara Sharonbb497012016-09-29 14:52:40 +0300542 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
543 return -EINVAL;
Liad Kaufman42db09c2016-05-02 14:01:14 +0300544
545 memset(&ac_to_queue, IEEE80211_INVAL_HW_QUEUE, sizeof(ac_to_queue));
546
547 /* See what ACs the existing queues for this STA have */
548 for_each_set_bit(i, &tfd_queue_mask, IWL_MVM_DQA_MAX_DATA_QUEUE) {
549 /* Only DATA queues can be shared */
550 if (i < IWL_MVM_DQA_MIN_DATA_QUEUE &&
551 i != IWL_MVM_DQA_BSS_CLIENT_QUEUE)
552 continue;
553
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200554 /* Don't try and take queues being reconfigured */
555 if (mvm->queue_info[queue].status ==
556 IWL_MVM_QUEUE_RECONFIGURING)
557 continue;
558
Liad Kaufman42db09c2016-05-02 14:01:14 +0300559 ac_to_queue[mvm->queue_info[i].mac80211_ac] = i;
560 }
561
562 /*
563 * The queue to share is chosen only from DATA queues as follows (in
564 * descending priority):
565 * 1. An AC_BE queue
566 * 2. Same AC queue
567 * 3. Highest AC queue that is lower than new AC
568 * 4. Any existing AC (there always is at least 1 DATA queue)
569 */
570
571 /* Priority 1: An AC_BE queue */
572 if (ac_to_queue[IEEE80211_AC_BE] != IEEE80211_INVAL_HW_QUEUE)
573 queue = ac_to_queue[IEEE80211_AC_BE];
574 /* Priority 2: Same AC queue */
575 else if (ac_to_queue[ac] != IEEE80211_INVAL_HW_QUEUE)
576 queue = ac_to_queue[ac];
577 /* Priority 3a: If new AC is VO and VI exists - use VI */
578 else if (ac == IEEE80211_AC_VO &&
579 ac_to_queue[IEEE80211_AC_VI] != IEEE80211_INVAL_HW_QUEUE)
580 queue = ac_to_queue[IEEE80211_AC_VI];
581 /* Priority 3b: No BE so only AC less than the new one is BK */
582 else if (ac_to_queue[IEEE80211_AC_BK] != IEEE80211_INVAL_HW_QUEUE)
583 queue = ac_to_queue[IEEE80211_AC_BK];
584 /* Priority 4a: No BE nor BK - use VI if exists */
585 else if (ac_to_queue[IEEE80211_AC_VI] != IEEE80211_INVAL_HW_QUEUE)
586 queue = ac_to_queue[IEEE80211_AC_VI];
587 /* Priority 4b: No BE, BK nor VI - use VO if exists */
588 else if (ac_to_queue[IEEE80211_AC_VO] != IEEE80211_INVAL_HW_QUEUE)
589 queue = ac_to_queue[IEEE80211_AC_VO];
590
591 /* Make sure queue found (or not) is legal */
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200592 if (!iwl_mvm_is_dqa_data_queue(mvm, queue) &&
593 !iwl_mvm_is_dqa_mgmt_queue(mvm, queue) &&
594 (queue != IWL_MVM_DQA_BSS_CLIENT_QUEUE)) {
Liad Kaufman42db09c2016-05-02 14:01:14 +0300595 IWL_ERR(mvm, "No DATA queues available to share\n");
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200596 return -ENOSPC;
597 }
598
599 /* Make sure the queue isn't in the middle of being reconfigured */
600 if (mvm->queue_info[queue].status == IWL_MVM_QUEUE_RECONFIGURING) {
601 IWL_ERR(mvm,
602 "TXQ %d is in the middle of re-config - try again\n",
603 queue);
604 return -EBUSY;
Liad Kaufman42db09c2016-05-02 14:01:14 +0300605 }
606
607 return queue;
608}
609
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200610/*
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200611 * If a given queue has a higher AC than the TID stream that is being compared
612 * to, the queue needs to be redirected to the lower AC. This function does that
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200613 * in such a case, otherwise - if no redirection required - it does nothing,
614 * unless the %force param is true.
615 */
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200616int iwl_mvm_scd_queue_redirect(struct iwl_mvm *mvm, int queue, int tid,
617 int ac, int ssn, unsigned int wdg_timeout,
618 bool force)
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200619{
620 struct iwl_scd_txq_cfg_cmd cmd = {
621 .scd_queue = queue,
Liad Kaufmanf7c692d2016-03-08 10:41:32 +0200622 .action = SCD_CFG_DISABLE_QUEUE,
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200623 };
624 bool shared_queue;
625 unsigned long mq;
626 int ret;
627
Sara Sharonbb497012016-09-29 14:52:40 +0300628 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
629 return -EINVAL;
630
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200631 /*
632 * If the AC is lower than current one - FIFO needs to be redirected to
633 * the lowest one of the streams in the queue. Check if this is needed
634 * here.
635 * Notice that the enum ieee80211_ac_numbers is "flipped", so BK is with
636 * value 3 and VO with value 0, so to check if ac X is lower than ac Y
637 * we need to check if the numerical value of X is LARGER than of Y.
638 */
639 spin_lock_bh(&mvm->queue_info_lock);
640 if (ac <= mvm->queue_info[queue].mac80211_ac && !force) {
641 spin_unlock_bh(&mvm->queue_info_lock);
642
643 IWL_DEBUG_TX_QUEUES(mvm,
644 "No redirection needed on TXQ #%d\n",
645 queue);
646 return 0;
647 }
648
649 cmd.sta_id = mvm->queue_info[queue].ra_sta_id;
650 cmd.tx_fifo = iwl_mvm_ac_to_tx_fifo[mvm->queue_info[queue].mac80211_ac];
Liad Kaufmanedbe9612016-02-02 15:43:32 +0200651 cmd.tid = mvm->queue_info[queue].txq_tid;
Sara Sharon34e10862017-02-23 13:15:07 +0200652 mq = mvm->hw_queue_to_mac80211[queue];
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200653 shared_queue = (mvm->queue_info[queue].hw_queue_refcount > 1);
654 spin_unlock_bh(&mvm->queue_info_lock);
655
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200656 IWL_DEBUG_TX_QUEUES(mvm, "Redirecting TXQ #%d to FIFO #%d\n",
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200657 queue, iwl_mvm_ac_to_tx_fifo[ac]);
658
659 /* Stop MAC queues and wait for this queue to empty */
660 iwl_mvm_stop_mac_queues(mvm, mq);
Sara Sharona1a57872017-03-05 11:38:58 +0200661 ret = iwl_trans_wait_tx_queues_empty(mvm->trans, BIT(queue));
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200662 if (ret) {
663 IWL_ERR(mvm, "Error draining queue %d before reconfig\n",
664 queue);
665 ret = -EIO;
666 goto out;
667 }
668
669 /* Before redirecting the queue we need to de-activate it */
670 iwl_trans_txq_disable(mvm->trans, queue, false);
671 ret = iwl_mvm_send_cmd_pdu(mvm, SCD_QUEUE_CFG, 0, sizeof(cmd), &cmd);
672 if (ret)
673 IWL_ERR(mvm, "Failed SCD disable TXQ %d (ret=%d)\n", queue,
674 ret);
675
676 /* Make sure the SCD wrptr is correctly set before reconfiguring */
Sara Sharonca3b9c62016-06-30 16:14:02 +0300677 iwl_trans_txq_enable_cfg(mvm->trans, queue, ssn, NULL, wdg_timeout);
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200678
Liad Kaufmanedbe9612016-02-02 15:43:32 +0200679 /* Update the TID "owner" of the queue */
680 spin_lock_bh(&mvm->queue_info_lock);
681 mvm->queue_info[queue].txq_tid = tid;
682 spin_unlock_bh(&mvm->queue_info_lock);
683
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200684 /* TODO: Work-around SCD bug when moving back by multiples of 0x40 */
685
686 /* Redirect to lower AC */
687 iwl_mvm_reconfig_scd(mvm, queue, iwl_mvm_ac_to_tx_fifo[ac],
688 cmd.sta_id, tid, LINK_QUAL_AGG_FRAME_LIMIT_DEF,
689 ssn);
690
691 /* Update AC marking of the queue */
692 spin_lock_bh(&mvm->queue_info_lock);
693 mvm->queue_info[queue].mac80211_ac = ac;
694 spin_unlock_bh(&mvm->queue_info_lock);
695
696 /*
697 * Mark queue as shared in transport if shared
698 * Note this has to be done after queue enablement because enablement
699 * can also set this value, and there is no indication there to shared
700 * queues
701 */
702 if (shared_queue)
703 iwl_trans_txq_set_shared_mode(mvm->trans, queue, true);
704
705out:
706 /* Continue using the MAC queues */
707 iwl_mvm_start_mac_queues(mvm, mq);
708
709 return ret;
710}
711
Sara Sharon310181e2017-01-17 14:27:48 +0200712static int iwl_mvm_sta_alloc_queue_tvqm(struct iwl_mvm *mvm,
713 struct ieee80211_sta *sta, u8 ac,
714 int tid)
715{
716 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
717 unsigned int wdg_timeout =
718 iwl_mvm_get_wd_timeout(mvm, mvmsta->vif, false, false);
719 u8 mac_queue = mvmsta->vif->hw_queue[ac];
720 int queue = -1;
721
722 lockdep_assert_held(&mvm->mutex);
723
724 IWL_DEBUG_TX_QUEUES(mvm,
725 "Allocating queue for sta %d on tid %d\n",
726 mvmsta->sta_id, tid);
727 queue = iwl_mvm_tvqm_enable_txq(mvm, mac_queue, mvmsta->sta_id, tid,
728 wdg_timeout);
729 if (queue < 0)
730 return queue;
731
732 IWL_DEBUG_TX_QUEUES(mvm, "Allocated queue is %d\n", queue);
733
734 spin_lock_bh(&mvmsta->lock);
735 mvmsta->tid_data[tid].txq_id = queue;
736 mvmsta->tid_data[tid].is_tid_active = true;
737 mvmsta->tfd_queue_msk |= BIT(queue);
738 spin_unlock_bh(&mvmsta->lock);
739
Sara Sharon310181e2017-01-17 14:27:48 +0200740 return 0;
741}
742
Liad Kaufman24afba72015-07-28 18:56:08 +0300743static int iwl_mvm_sta_alloc_queue(struct iwl_mvm *mvm,
744 struct ieee80211_sta *sta, u8 ac, int tid,
745 struct ieee80211_hdr *hdr)
746{
747 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
748 struct iwl_trans_txq_scd_cfg cfg = {
749 .fifo = iwl_mvm_ac_to_tx_fifo[ac],
750 .sta_id = mvmsta->sta_id,
751 .tid = tid,
752 .frame_limit = IWL_FRAME_LIMIT,
753 };
754 unsigned int wdg_timeout =
755 iwl_mvm_get_wd_timeout(mvm, mvmsta->vif, false, false);
756 u8 mac_queue = mvmsta->vif->hw_queue[ac];
757 int queue = -1;
Sara Sharon01796ff2016-11-16 17:04:36 +0200758 bool using_inactive_queue = false, same_sta = false;
Liad Kaufman9794c642015-08-19 17:34:28 +0300759 unsigned long disable_agg_tids = 0;
760 enum iwl_mvm_agg_state queue_state;
Emmanuel Grumbachdcfbd672017-05-07 15:00:31 +0300761 bool shared_queue = false, inc_ssn;
Liad Kaufman24afba72015-07-28 18:56:08 +0300762 int ssn;
Liad Kaufman42db09c2016-05-02 14:01:14 +0300763 unsigned long tfd_queue_mask;
Liad Kaufmancf961e12015-08-13 19:16:08 +0300764 int ret;
Liad Kaufman24afba72015-07-28 18:56:08 +0300765
766 lockdep_assert_held(&mvm->mutex);
767
Sara Sharon310181e2017-01-17 14:27:48 +0200768 if (iwl_mvm_has_new_tx_api(mvm))
769 return iwl_mvm_sta_alloc_queue_tvqm(mvm, sta, ac, tid);
770
Liad Kaufman42db09c2016-05-02 14:01:14 +0300771 spin_lock_bh(&mvmsta->lock);
772 tfd_queue_mask = mvmsta->tfd_queue_msk;
773 spin_unlock_bh(&mvmsta->lock);
774
Liad Kaufmand2515a92016-03-23 16:31:08 +0200775 spin_lock_bh(&mvm->queue_info_lock);
Liad Kaufman24afba72015-07-28 18:56:08 +0300776
777 /*
778 * Non-QoS, QoS NDP and MGMT frames should go to a MGMT queue, if one
779 * exists
780 */
781 if (!ieee80211_is_data_qos(hdr->frame_control) ||
782 ieee80211_is_qos_nullfunc(hdr->frame_control)) {
Liad Kaufman9794c642015-08-19 17:34:28 +0300783 queue = iwl_mvm_find_free_queue(mvm, mvmsta->sta_id,
784 IWL_MVM_DQA_MIN_MGMT_QUEUE,
Liad Kaufman24afba72015-07-28 18:56:08 +0300785 IWL_MVM_DQA_MAX_MGMT_QUEUE);
786 if (queue >= IWL_MVM_DQA_MIN_MGMT_QUEUE)
787 IWL_DEBUG_TX_QUEUES(mvm, "Found free MGMT queue #%d\n",
788 queue);
789
790 /* If no such queue is found, we'll use a DATA queue instead */
791 }
792
Liad Kaufman9794c642015-08-19 17:34:28 +0300793 if ((queue < 0 && mvmsta->reserved_queue != IEEE80211_INVAL_HW_QUEUE) &&
794 (mvm->queue_info[mvmsta->reserved_queue].status ==
795 IWL_MVM_QUEUE_RESERVED ||
796 mvm->queue_info[mvmsta->reserved_queue].status ==
797 IWL_MVM_QUEUE_INACTIVE)) {
Liad Kaufman24afba72015-07-28 18:56:08 +0300798 queue = mvmsta->reserved_queue;
Liad Kaufman9794c642015-08-19 17:34:28 +0300799 mvm->queue_info[queue].reserved = true;
Liad Kaufman24afba72015-07-28 18:56:08 +0300800 IWL_DEBUG_TX_QUEUES(mvm, "Using reserved queue #%d\n", queue);
801 }
802
803 if (queue < 0)
Liad Kaufman9794c642015-08-19 17:34:28 +0300804 queue = iwl_mvm_find_free_queue(mvm, mvmsta->sta_id,
805 IWL_MVM_DQA_MIN_DATA_QUEUE,
Liad Kaufman24afba72015-07-28 18:56:08 +0300806 IWL_MVM_DQA_MAX_DATA_QUEUE);
Liad Kaufmancf961e12015-08-13 19:16:08 +0300807
808 /*
Liad Kaufman9794c642015-08-19 17:34:28 +0300809 * Check if this queue is already allocated but inactive.
810 * In such a case, we'll need to first free this queue before enabling
811 * it again, so we'll mark it as reserved to make sure no new traffic
812 * arrives on it
813 */
814 if (queue > 0 &&
815 mvm->queue_info[queue].status == IWL_MVM_QUEUE_INACTIVE) {
816 mvm->queue_info[queue].status = IWL_MVM_QUEUE_RESERVED;
817 using_inactive_queue = true;
Sara Sharon01796ff2016-11-16 17:04:36 +0200818 same_sta = mvm->queue_info[queue].ra_sta_id == mvmsta->sta_id;
Liad Kaufman9794c642015-08-19 17:34:28 +0300819 IWL_DEBUG_TX_QUEUES(mvm,
820 "Re-assigning TXQ %d: sta_id=%d, tid=%d\n",
821 queue, mvmsta->sta_id, tid);
822 }
823
Liad Kaufman42db09c2016-05-02 14:01:14 +0300824 /* No free queue - we'll have to share */
825 if (queue <= 0) {
826 queue = iwl_mvm_get_shared_queue(mvm, tfd_queue_mask, ac);
827 if (queue > 0) {
828 shared_queue = true;
829 mvm->queue_info[queue].status = IWL_MVM_QUEUE_SHARED;
830 }
831 }
832
Liad Kaufman9794c642015-08-19 17:34:28 +0300833 /*
Liad Kaufmancf961e12015-08-13 19:16:08 +0300834 * Mark TXQ as ready, even though it hasn't been fully configured yet,
835 * to make sure no one else takes it.
836 * This will allow avoiding re-acquiring the lock at the end of the
837 * configuration. On error we'll mark it back as free.
838 */
Liad Kaufman42db09c2016-05-02 14:01:14 +0300839 if ((queue > 0) && !shared_queue)
Liad Kaufmancf961e12015-08-13 19:16:08 +0300840 mvm->queue_info[queue].status = IWL_MVM_QUEUE_READY;
Liad Kaufman24afba72015-07-28 18:56:08 +0300841
Liad Kaufmand2515a92016-03-23 16:31:08 +0200842 spin_unlock_bh(&mvm->queue_info_lock);
Liad Kaufman24afba72015-07-28 18:56:08 +0300843
Liad Kaufman42db09c2016-05-02 14:01:14 +0300844 /* This shouldn't happen - out of queues */
845 if (WARN_ON(queue <= 0)) {
846 IWL_ERR(mvm, "No available queues for tid %d on sta_id %d\n",
847 tid, cfg.sta_id);
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200848 return queue;
Liad Kaufman42db09c2016-05-02 14:01:14 +0300849 }
Liad Kaufman24afba72015-07-28 18:56:08 +0300850
851 /*
852 * Actual en/disablement of aggregations is through the ADD_STA HCMD,
853 * but for configuring the SCD to send A-MPDUs we need to mark the queue
854 * as aggregatable.
855 * Mark all DATA queues as allowing to be aggregated at some point
856 */
Liad Kaufmand5216a22015-08-09 15:50:51 +0300857 cfg.aggregate = (queue >= IWL_MVM_DQA_MIN_DATA_QUEUE ||
858 queue == IWL_MVM_DQA_BSS_CLIENT_QUEUE);
Liad Kaufman24afba72015-07-28 18:56:08 +0300859
Liad Kaufman9794c642015-08-19 17:34:28 +0300860 /*
861 * If this queue was previously inactive (idle) - we need to free it
862 * first
863 */
864 if (using_inactive_queue) {
Sara Sharon01796ff2016-11-16 17:04:36 +0200865 ret = iwl_mvm_free_inactive_queue(mvm, queue, same_sta);
866 if (ret)
Liad Kaufman9794c642015-08-19 17:34:28 +0300867 return ret;
Liad Kaufman9794c642015-08-19 17:34:28 +0300868 }
869
Liad Kaufman42db09c2016-05-02 14:01:14 +0300870 IWL_DEBUG_TX_QUEUES(mvm,
871 "Allocating %squeue #%d to sta %d on tid %d\n",
872 shared_queue ? "shared " : "", queue,
873 mvmsta->sta_id, tid);
874
875 if (shared_queue) {
876 /* Disable any open aggs on this queue */
877 disable_agg_tids = iwl_mvm_get_queue_agg_tids(mvm, queue);
878
879 if (disable_agg_tids) {
880 IWL_DEBUG_TX_QUEUES(mvm, "Disabling aggs on queue %d\n",
881 queue);
882 iwl_mvm_invalidate_sta_queue(mvm, queue,
883 disable_agg_tids, false);
884 }
Liad Kaufman42db09c2016-05-02 14:01:14 +0300885 }
Liad Kaufman24afba72015-07-28 18:56:08 +0300886
887 ssn = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
Emmanuel Grumbachdcfbd672017-05-07 15:00:31 +0300888 inc_ssn = iwl_mvm_enable_txq(mvm, queue, mac_queue,
889 ssn, &cfg, wdg_timeout);
890 if (inc_ssn) {
891 ssn = (ssn + 1) & IEEE80211_SCTL_SEQ;
892 le16_add_cpu(&hdr->seq_ctrl, 0x10);
893 }
Liad Kaufman24afba72015-07-28 18:56:08 +0300894
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200895 /*
896 * Mark queue as shared in transport if shared
897 * Note this has to be done after queue enablement because enablement
898 * can also set this value, and there is no indication there to shared
899 * queues
900 */
901 if (shared_queue)
902 iwl_trans_txq_set_shared_mode(mvm->trans, queue, true);
903
Liad Kaufman24afba72015-07-28 18:56:08 +0300904 spin_lock_bh(&mvmsta->lock);
Emmanuel Grumbachdcfbd672017-05-07 15:00:31 +0300905 /*
906 * This looks racy, but it is not. We have only one packet for
907 * this ra/tid in our Tx path since we stop the Qdisc when we
908 * need to allocate a new TFD queue.
909 */
910 if (inc_ssn)
911 mvmsta->tid_data[tid].seq_number += 0x10;
Liad Kaufman24afba72015-07-28 18:56:08 +0300912 mvmsta->tid_data[tid].txq_id = queue;
Liad Kaufman9794c642015-08-19 17:34:28 +0300913 mvmsta->tid_data[tid].is_tid_active = true;
Liad Kaufman24afba72015-07-28 18:56:08 +0300914 mvmsta->tfd_queue_msk |= BIT(queue);
Liad Kaufman9794c642015-08-19 17:34:28 +0300915 queue_state = mvmsta->tid_data[tid].state;
Liad Kaufman24afba72015-07-28 18:56:08 +0300916
917 if (mvmsta->reserved_queue == queue)
918 mvmsta->reserved_queue = IEEE80211_INVAL_HW_QUEUE;
919 spin_unlock_bh(&mvmsta->lock);
920
Liad Kaufman42db09c2016-05-02 14:01:14 +0300921 if (!shared_queue) {
922 ret = iwl_mvm_sta_send_to_fw(mvm, sta, true, STA_MODIFY_QUEUES);
923 if (ret)
924 goto out_err;
Liad Kaufmancf961e12015-08-13 19:16:08 +0300925
Liad Kaufman42db09c2016-05-02 14:01:14 +0300926 /* If we need to re-enable aggregations... */
927 if (queue_state == IWL_AGG_ON) {
928 ret = iwl_mvm_sta_tx_agg(mvm, sta, tid, queue, true);
929 if (ret)
930 goto out_err;
931 }
Liad Kaufman58f2cc52015-09-30 16:44:28 +0200932 } else {
933 /* Redirect queue, if needed */
934 ret = iwl_mvm_scd_queue_redirect(mvm, queue, tid, ac, ssn,
935 wdg_timeout, false);
936 if (ret)
937 goto out_err;
Liad Kaufman42db09c2016-05-02 14:01:14 +0300938 }
Liad Kaufman9794c642015-08-19 17:34:28 +0300939
Liad Kaufman42db09c2016-05-02 14:01:14 +0300940 return 0;
Liad Kaufmancf961e12015-08-13 19:16:08 +0300941
942out_err:
943 iwl_mvm_disable_txq(mvm, queue, mac_queue, tid, 0);
944
945 return ret;
Liad Kaufman24afba72015-07-28 18:56:08 +0300946}
947
Liad Kaufman19aefa42016-03-08 14:29:51 +0200948static void iwl_mvm_change_queue_owner(struct iwl_mvm *mvm, int queue)
949{
950 struct iwl_scd_txq_cfg_cmd cmd = {
951 .scd_queue = queue,
952 .action = SCD_CFG_UPDATE_QUEUE_TID,
953 };
Liad Kaufman19aefa42016-03-08 14:29:51 +0200954 int tid;
955 unsigned long tid_bitmap;
956 int ret;
957
958 lockdep_assert_held(&mvm->mutex);
959
Sara Sharonbb497012016-09-29 14:52:40 +0300960 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
961 return;
962
Liad Kaufman19aefa42016-03-08 14:29:51 +0200963 spin_lock_bh(&mvm->queue_info_lock);
Liad Kaufman19aefa42016-03-08 14:29:51 +0200964 tid_bitmap = mvm->queue_info[queue].tid_bitmap;
965 spin_unlock_bh(&mvm->queue_info_lock);
966
967 if (WARN(!tid_bitmap, "TXQ %d has no tids assigned to it\n", queue))
968 return;
969
970 /* Find any TID for queue */
971 tid = find_first_bit(&tid_bitmap, IWL_MAX_TID_COUNT + 1);
972 cmd.tid = tid;
973 cmd.tx_fifo = iwl_mvm_ac_to_tx_fifo[tid_to_mac80211_ac[tid]];
974
975 ret = iwl_mvm_send_cmd_pdu(mvm, SCD_QUEUE_CFG, 0, sizeof(cmd), &cmd);
Liad Kaufman341ca402016-09-18 14:51:59 +0300976 if (ret) {
Liad Kaufman19aefa42016-03-08 14:29:51 +0200977 IWL_ERR(mvm, "Failed to update owner of TXQ %d (ret=%d)\n",
978 queue, ret);
Liad Kaufman341ca402016-09-18 14:51:59 +0300979 return;
980 }
981
982 spin_lock_bh(&mvm->queue_info_lock);
983 mvm->queue_info[queue].txq_tid = tid;
984 spin_unlock_bh(&mvm->queue_info_lock);
985 IWL_DEBUG_TX_QUEUES(mvm, "Changed TXQ %d ownership to tid %d\n",
986 queue, tid);
Liad Kaufman19aefa42016-03-08 14:29:51 +0200987}
988
Liad Kaufman9f9af3d2015-12-23 16:03:46 +0200989static void iwl_mvm_unshare_queue(struct iwl_mvm *mvm, int queue)
990{
991 struct ieee80211_sta *sta;
992 struct iwl_mvm_sta *mvmsta;
993 s8 sta_id;
994 int tid = -1;
995 unsigned long tid_bitmap;
996 unsigned int wdg_timeout;
997 int ssn;
998 int ret = true;
999
Sara Sharonbb497012016-09-29 14:52:40 +03001000 /* queue sharing is disabled on new TX path */
1001 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
1002 return;
1003
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001004 lockdep_assert_held(&mvm->mutex);
1005
1006 spin_lock_bh(&mvm->queue_info_lock);
1007 sta_id = mvm->queue_info[queue].ra_sta_id;
1008 tid_bitmap = mvm->queue_info[queue].tid_bitmap;
1009 spin_unlock_bh(&mvm->queue_info_lock);
1010
1011 /* Find TID for queue, and make sure it is the only one on the queue */
1012 tid = find_first_bit(&tid_bitmap, IWL_MAX_TID_COUNT + 1);
1013 if (tid_bitmap != BIT(tid)) {
1014 IWL_ERR(mvm, "Failed to unshare q %d, active tids=0x%lx\n",
1015 queue, tid_bitmap);
1016 return;
1017 }
1018
1019 IWL_DEBUG_TX_QUEUES(mvm, "Unsharing TXQ %d, keeping tid %d\n", queue,
1020 tid);
1021
1022 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
1023 lockdep_is_held(&mvm->mutex));
1024
1025 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta)))
1026 return;
1027
1028 mvmsta = iwl_mvm_sta_from_mac80211(sta);
1029 wdg_timeout = iwl_mvm_get_wd_timeout(mvm, mvmsta->vif, false, false);
1030
1031 ssn = IEEE80211_SEQ_TO_SN(mvmsta->tid_data[tid].seq_number);
1032
1033 ret = iwl_mvm_scd_queue_redirect(mvm, queue, tid,
1034 tid_to_mac80211_ac[tid], ssn,
1035 wdg_timeout, true);
1036 if (ret) {
1037 IWL_ERR(mvm, "Failed to redirect TXQ %d\n", queue);
1038 return;
1039 }
1040
1041 /* If aggs should be turned back on - do it */
1042 if (mvmsta->tid_data[tid].state == IWL_AGG_ON) {
Emmanuel Grumbach9cd70e82016-09-20 13:40:33 +03001043 struct iwl_mvm_add_sta_cmd cmd = {0};
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001044
1045 mvmsta->tid_disable_agg &= ~BIT(tid);
1046
1047 cmd.mac_id_n_color = cpu_to_le32(mvmsta->mac_id_n_color);
1048 cmd.sta_id = mvmsta->sta_id;
1049 cmd.add_modify = STA_MODE_MODIFY;
1050 cmd.modify_mask = STA_MODIFY_TID_DISABLE_TX;
1051 cmd.tfd_queue_msk = cpu_to_le32(mvmsta->tfd_queue_msk);
1052 cmd.tid_disable_tx = cpu_to_le16(mvmsta->tid_disable_agg);
1053
1054 ret = iwl_mvm_send_cmd_pdu(mvm, ADD_STA, CMD_ASYNC,
1055 iwl_mvm_add_sta_cmd_size(mvm), &cmd);
1056 if (!ret) {
1057 IWL_DEBUG_TX_QUEUES(mvm,
1058 "TXQ #%d is now aggregated again\n",
1059 queue);
1060
1061 /* Mark queue intenally as aggregating again */
1062 iwl_trans_txq_set_shared_mode(mvm->trans, queue, false);
1063 }
1064 }
1065
1066 spin_lock_bh(&mvm->queue_info_lock);
1067 mvm->queue_info[queue].status = IWL_MVM_QUEUE_READY;
1068 spin_unlock_bh(&mvm->queue_info_lock);
1069}
1070
Liad Kaufman24afba72015-07-28 18:56:08 +03001071static inline u8 iwl_mvm_tid_to_ac_queue(int tid)
1072{
1073 if (tid == IWL_MAX_TID_COUNT)
1074 return IEEE80211_AC_VO; /* MGMT */
1075
1076 return tid_to_mac80211_ac[tid];
1077}
1078
1079static void iwl_mvm_tx_deferred_stream(struct iwl_mvm *mvm,
1080 struct ieee80211_sta *sta, int tid)
1081{
1082 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
1083 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
1084 struct sk_buff *skb;
1085 struct ieee80211_hdr *hdr;
1086 struct sk_buff_head deferred_tx;
1087 u8 mac_queue;
1088 bool no_queue = false; /* Marks if there is a problem with the queue */
1089 u8 ac;
1090
1091 lockdep_assert_held(&mvm->mutex);
1092
1093 skb = skb_peek(&tid_data->deferred_tx_frames);
1094 if (!skb)
1095 return;
1096 hdr = (void *)skb->data;
1097
1098 ac = iwl_mvm_tid_to_ac_queue(tid);
1099 mac_queue = IEEE80211_SKB_CB(skb)->hw_queue;
1100
Sara Sharon6862fce2017-02-22 19:34:17 +02001101 if (tid_data->txq_id == IWL_MVM_INVALID_QUEUE &&
Liad Kaufman24afba72015-07-28 18:56:08 +03001102 iwl_mvm_sta_alloc_queue(mvm, sta, ac, tid, hdr)) {
1103 IWL_ERR(mvm,
1104 "Can't alloc TXQ for sta %d tid %d - dropping frame\n",
1105 mvmsta->sta_id, tid);
1106
1107 /*
1108 * Mark queue as problematic so later the deferred traffic is
1109 * freed, as we can do nothing with it
1110 */
1111 no_queue = true;
1112 }
1113
1114 __skb_queue_head_init(&deferred_tx);
1115
Liad Kaufmand2515a92016-03-23 16:31:08 +02001116 /* Disable bottom-halves when entering TX path */
1117 local_bh_disable();
Liad Kaufman24afba72015-07-28 18:56:08 +03001118 spin_lock(&mvmsta->lock);
1119 skb_queue_splice_init(&tid_data->deferred_tx_frames, &deferred_tx);
Liad Kaufmanad5de732016-09-27 16:01:10 +03001120 mvmsta->deferred_traffic_tid_map &= ~BIT(tid);
Liad Kaufman24afba72015-07-28 18:56:08 +03001121 spin_unlock(&mvmsta->lock);
1122
Liad Kaufman24afba72015-07-28 18:56:08 +03001123 while ((skb = __skb_dequeue(&deferred_tx)))
1124 if (no_queue || iwl_mvm_tx_skb(mvm, skb, sta))
1125 ieee80211_free_txskb(mvm->hw, skb);
1126 local_bh_enable();
1127
1128 /* Wake queue */
1129 iwl_mvm_start_mac_queues(mvm, BIT(mac_queue));
1130}
1131
1132void iwl_mvm_add_new_dqa_stream_wk(struct work_struct *wk)
1133{
1134 struct iwl_mvm *mvm = container_of(wk, struct iwl_mvm,
1135 add_stream_wk);
1136 struct ieee80211_sta *sta;
1137 struct iwl_mvm_sta *mvmsta;
1138 unsigned long deferred_tid_traffic;
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001139 int queue, sta_id, tid;
Liad Kaufman24afba72015-07-28 18:56:08 +03001140
Liad Kaufman9794c642015-08-19 17:34:28 +03001141 /* Check inactivity of queues */
1142 iwl_mvm_inactivity_check(mvm);
1143
Liad Kaufman24afba72015-07-28 18:56:08 +03001144 mutex_lock(&mvm->mutex);
1145
Sara Sharon34e10862017-02-23 13:15:07 +02001146 /* No queue reconfiguration in TVQM mode */
1147 if (iwl_mvm_has_new_tx_api(mvm))
1148 goto alloc_queues;
1149
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001150 /* Reconfigure queues requiring reconfiguation */
Sara Sharon34e10862017-02-23 13:15:07 +02001151 for (queue = 0; queue < ARRAY_SIZE(mvm->queue_info); queue++) {
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001152 bool reconfig;
Liad Kaufman19aefa42016-03-08 14:29:51 +02001153 bool change_owner;
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001154
1155 spin_lock_bh(&mvm->queue_info_lock);
1156 reconfig = (mvm->queue_info[queue].status ==
1157 IWL_MVM_QUEUE_RECONFIGURING);
Liad Kaufman19aefa42016-03-08 14:29:51 +02001158
1159 /*
1160 * We need to take into account a situation in which a TXQ was
1161 * allocated to TID x, and then turned shared by adding TIDs y
1162 * and z. If TID x becomes inactive and is removed from the TXQ,
1163 * ownership must be given to one of the remaining TIDs.
1164 * This is mainly because if TID x continues - a new queue can't
1165 * be allocated for it as long as it is an owner of another TXQ.
1166 */
1167 change_owner = !(mvm->queue_info[queue].tid_bitmap &
1168 BIT(mvm->queue_info[queue].txq_tid)) &&
1169 (mvm->queue_info[queue].status ==
1170 IWL_MVM_QUEUE_SHARED);
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001171 spin_unlock_bh(&mvm->queue_info_lock);
1172
1173 if (reconfig)
1174 iwl_mvm_unshare_queue(mvm, queue);
Liad Kaufman19aefa42016-03-08 14:29:51 +02001175 else if (change_owner)
1176 iwl_mvm_change_queue_owner(mvm, queue);
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02001177 }
1178
Sara Sharon34e10862017-02-23 13:15:07 +02001179alloc_queues:
Liad Kaufman24afba72015-07-28 18:56:08 +03001180 /* Go over all stations with deferred traffic */
1181 for_each_set_bit(sta_id, mvm->sta_deferred_frames,
1182 IWL_MVM_STATION_COUNT) {
1183 clear_bit(sta_id, mvm->sta_deferred_frames);
1184 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
1185 lockdep_is_held(&mvm->mutex));
1186 if (IS_ERR_OR_NULL(sta))
1187 continue;
1188
1189 mvmsta = iwl_mvm_sta_from_mac80211(sta);
1190 deferred_tid_traffic = mvmsta->deferred_traffic_tid_map;
1191
1192 for_each_set_bit(tid, &deferred_tid_traffic,
1193 IWL_MAX_TID_COUNT + 1)
1194 iwl_mvm_tx_deferred_stream(mvm, sta, tid);
1195 }
1196
1197 mutex_unlock(&mvm->mutex);
1198}
1199
1200static int iwl_mvm_reserve_sta_stream(struct iwl_mvm *mvm,
Liad Kaufmand5216a22015-08-09 15:50:51 +03001201 struct ieee80211_sta *sta,
1202 enum nl80211_iftype vif_type)
Liad Kaufman24afba72015-07-28 18:56:08 +03001203{
1204 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
1205 int queue;
Sara Sharon01796ff2016-11-16 17:04:36 +02001206 bool using_inactive_queue = false, same_sta = false;
Liad Kaufman24afba72015-07-28 18:56:08 +03001207
Sara Sharon396952e2017-02-22 19:40:55 +02001208 /* queue reserving is disabled on new TX path */
1209 if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
1210 return 0;
1211
Liad Kaufman9794c642015-08-19 17:34:28 +03001212 /*
1213 * Check for inactive queues, so we don't reach a situation where we
1214 * can't add a STA due to a shortage in queues that doesn't really exist
1215 */
1216 iwl_mvm_inactivity_check(mvm);
1217
Liad Kaufman24afba72015-07-28 18:56:08 +03001218 spin_lock_bh(&mvm->queue_info_lock);
1219
1220 /* Make sure we have free resources for this STA */
Liad Kaufmand5216a22015-08-09 15:50:51 +03001221 if (vif_type == NL80211_IFTYPE_STATION && !sta->tdls &&
1222 !mvm->queue_info[IWL_MVM_DQA_BSS_CLIENT_QUEUE].hw_queue_refcount &&
Liad Kaufmancf961e12015-08-13 19:16:08 +03001223 (mvm->queue_info[IWL_MVM_DQA_BSS_CLIENT_QUEUE].status ==
1224 IWL_MVM_QUEUE_FREE))
Liad Kaufmand5216a22015-08-09 15:50:51 +03001225 queue = IWL_MVM_DQA_BSS_CLIENT_QUEUE;
1226 else
Liad Kaufman9794c642015-08-19 17:34:28 +03001227 queue = iwl_mvm_find_free_queue(mvm, mvmsta->sta_id,
1228 IWL_MVM_DQA_MIN_DATA_QUEUE,
Liad Kaufmand5216a22015-08-09 15:50:51 +03001229 IWL_MVM_DQA_MAX_DATA_QUEUE);
Liad Kaufman24afba72015-07-28 18:56:08 +03001230 if (queue < 0) {
1231 spin_unlock_bh(&mvm->queue_info_lock);
1232 IWL_ERR(mvm, "No available queues for new station\n");
1233 return -ENOSPC;
Sara Sharon01796ff2016-11-16 17:04:36 +02001234 } else if (mvm->queue_info[queue].status == IWL_MVM_QUEUE_INACTIVE) {
1235 /*
1236 * If this queue is already allocated but inactive we'll need to
1237 * first free this queue before enabling it again, we'll mark
1238 * it as reserved to make sure no new traffic arrives on it
1239 */
1240 using_inactive_queue = true;
1241 same_sta = mvm->queue_info[queue].ra_sta_id == mvmsta->sta_id;
Liad Kaufman24afba72015-07-28 18:56:08 +03001242 }
Liad Kaufmancf961e12015-08-13 19:16:08 +03001243 mvm->queue_info[queue].status = IWL_MVM_QUEUE_RESERVED;
Liad Kaufman24afba72015-07-28 18:56:08 +03001244
1245 spin_unlock_bh(&mvm->queue_info_lock);
1246
1247 mvmsta->reserved_queue = queue;
1248
Sara Sharon01796ff2016-11-16 17:04:36 +02001249 if (using_inactive_queue)
1250 iwl_mvm_free_inactive_queue(mvm, queue, same_sta);
1251
Liad Kaufman24afba72015-07-28 18:56:08 +03001252 IWL_DEBUG_TX_QUEUES(mvm, "Reserving data queue #%d for sta_id %d\n",
1253 queue, mvmsta->sta_id);
1254
1255 return 0;
1256}
1257
Liad Kaufman8d98ae62016-02-02 16:02:46 +02001258/*
1259 * In DQA mode, after a HW restart the queues should be allocated as before, in
1260 * order to avoid race conditions when there are shared queues. This function
1261 * does the re-mapping and queue allocation.
1262 *
1263 * Note that re-enabling aggregations isn't done in this function.
1264 */
1265static void iwl_mvm_realloc_queues_after_restart(struct iwl_mvm *mvm,
1266 struct iwl_mvm_sta *mvm_sta)
1267{
1268 unsigned int wdg_timeout =
1269 iwl_mvm_get_wd_timeout(mvm, mvm_sta->vif, false, false);
1270 int i;
1271 struct iwl_trans_txq_scd_cfg cfg = {
1272 .sta_id = mvm_sta->sta_id,
1273 .frame_limit = IWL_FRAME_LIMIT,
1274 };
1275
Johannes Berg03c902b2016-12-02 12:03:36 +01001276 /* Make sure reserved queue is still marked as such (if allocated) */
1277 if (mvm_sta->reserved_queue != IEEE80211_INVAL_HW_QUEUE)
1278 mvm->queue_info[mvm_sta->reserved_queue].status =
1279 IWL_MVM_QUEUE_RESERVED;
Liad Kaufman8d98ae62016-02-02 16:02:46 +02001280
1281 for (i = 0; i <= IWL_MAX_TID_COUNT; i++) {
1282 struct iwl_mvm_tid_data *tid_data = &mvm_sta->tid_data[i];
1283 int txq_id = tid_data->txq_id;
1284 int ac;
1285 u8 mac_queue;
1286
Sara Sharon6862fce2017-02-22 19:34:17 +02001287 if (txq_id == IWL_MVM_INVALID_QUEUE)
Liad Kaufman8d98ae62016-02-02 16:02:46 +02001288 continue;
1289
1290 skb_queue_head_init(&tid_data->deferred_tx_frames);
1291
1292 ac = tid_to_mac80211_ac[i];
1293 mac_queue = mvm_sta->vif->hw_queue[ac];
1294
Sara Sharon310181e2017-01-17 14:27:48 +02001295 if (iwl_mvm_has_new_tx_api(mvm)) {
1296 IWL_DEBUG_TX_QUEUES(mvm,
1297 "Re-mapping sta %d tid %d\n",
1298 mvm_sta->sta_id, i);
1299 txq_id = iwl_mvm_tvqm_enable_txq(mvm, mac_queue,
1300 mvm_sta->sta_id,
1301 i, wdg_timeout);
1302 tid_data->txq_id = txq_id;
1303 } else {
1304 u16 seq = IEEE80211_SEQ_TO_SN(tid_data->seq_number);
Liad Kaufman8d98ae62016-02-02 16:02:46 +02001305
Sara Sharon310181e2017-01-17 14:27:48 +02001306 cfg.tid = i;
1307 cfg.fifo = iwl_mvm_ac_to_tx_fifo[ac];
1308 cfg.aggregate = (txq_id >= IWL_MVM_DQA_MIN_DATA_QUEUE ||
1309 txq_id ==
1310 IWL_MVM_DQA_BSS_CLIENT_QUEUE);
Liad Kaufman8d98ae62016-02-02 16:02:46 +02001311
Sara Sharon310181e2017-01-17 14:27:48 +02001312 IWL_DEBUG_TX_QUEUES(mvm,
1313 "Re-mapping sta %d tid %d to queue %d\n",
1314 mvm_sta->sta_id, i, txq_id);
1315
1316 iwl_mvm_enable_txq(mvm, txq_id, mac_queue, seq, &cfg,
1317 wdg_timeout);
Sara Sharon34e10862017-02-23 13:15:07 +02001318 mvm->queue_info[txq_id].status = IWL_MVM_QUEUE_READY;
Sara Sharon310181e2017-01-17 14:27:48 +02001319 }
Liad Kaufman8d98ae62016-02-02 16:02:46 +02001320 }
1321
1322 atomic_set(&mvm->pending_frames[mvm_sta->sta_id], 0);
1323}
1324
Johannes Berg8ca151b2013-01-24 14:25:36 +01001325int iwl_mvm_add_sta(struct iwl_mvm *mvm,
1326 struct ieee80211_vif *vif,
1327 struct ieee80211_sta *sta)
1328{
1329 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01001330 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Sara Sharona571f5f2015-12-07 12:50:58 +02001331 struct iwl_mvm_rxq_dup_data *dup_data;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001332 int i, ret, sta_id;
1333
1334 lockdep_assert_held(&mvm->mutex);
1335
1336 if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
Eliad Pellerb92e6612014-01-23 17:58:23 +02001337 sta_id = iwl_mvm_find_free_sta_id(mvm,
1338 ieee80211_vif_type_p2p(vif));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001339 else
1340 sta_id = mvm_sta->sta_id;
1341
Sara Sharon0ae98812017-01-04 14:53:58 +02001342 if (sta_id == IWL_MVM_INVALID_STA)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001343 return -ENOSPC;
1344
1345 spin_lock_init(&mvm_sta->lock);
1346
Liad Kaufman8d98ae62016-02-02 16:02:46 +02001347 /* In DQA mode, if this is a HW restart, re-alloc existing queues */
1348 if (iwl_mvm_is_dqa_supported(mvm) &&
1349 test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
1350 iwl_mvm_realloc_queues_after_restart(mvm, mvm_sta);
1351 goto update_fw;
1352 }
1353
Johannes Berg8ca151b2013-01-24 14:25:36 +01001354 mvm_sta->sta_id = sta_id;
1355 mvm_sta->mac_id_n_color = FW_CMD_ID_AND_COLOR(mvmvif->id,
1356 mvmvif->color);
1357 mvm_sta->vif = vif;
1358 mvm_sta->max_agg_bufsize = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03001359 mvm_sta->tx_protection = 0;
1360 mvm_sta->tt_tx_protection = false;
Sara Sharonced19f22017-02-06 19:09:32 +02001361 mvm_sta->sta_type = sta->tdls ? IWL_STA_TDLS_LINK : IWL_STA_LINK;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001362
1363 /* HW restart, don't assume the memory has been zeroed */
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001364 atomic_set(&mvm->pending_frames[sta_id], 0);
Liad Kaufman69191af2015-09-01 18:50:22 +03001365 mvm_sta->tid_disable_agg = 0xffff; /* No aggs at first */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001366 mvm_sta->tfd_queue_msk = 0;
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001367
Liad Kaufmane3118ad2016-06-05 10:49:02 +03001368 /*
1369 * Allocate new queues for a TDLS station, unless we're in DQA mode,
1370 * and then they'll be allocated dynamically
1371 */
1372 if (!iwl_mvm_is_dqa_supported(mvm) && sta->tdls) {
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001373 ret = iwl_mvm_tdls_sta_init(mvm, sta);
1374 if (ret)
1375 return ret;
Liad Kaufman24afba72015-07-28 18:56:08 +03001376 } else if (!iwl_mvm_is_dqa_supported(mvm)) {
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001377 for (i = 0; i < IEEE80211_NUM_ACS; i++)
1378 if (vif->hw_queue[i] != IEEE80211_INVAL_HW_QUEUE)
1379 mvm_sta->tfd_queue_msk |= BIT(vif->hw_queue[i]);
1380 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001381
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001382 /* for HW restart - reset everything but the sequence number */
Liad Kaufman24afba72015-07-28 18:56:08 +03001383 for (i = 0; i <= IWL_MAX_TID_COUNT; i++) {
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001384 u16 seq = mvm_sta->tid_data[i].seq_number;
1385 memset(&mvm_sta->tid_data[i], 0, sizeof(mvm_sta->tid_data[i]));
1386 mvm_sta->tid_data[i].seq_number = seq;
Liad Kaufman24afba72015-07-28 18:56:08 +03001387
1388 if (!iwl_mvm_is_dqa_supported(mvm))
1389 continue;
1390
1391 /*
1392 * Mark all queues for this STA as unallocated and defer TX
1393 * frames until the queue is allocated
1394 */
Sara Sharon6862fce2017-02-22 19:34:17 +02001395 mvm_sta->tid_data[i].txq_id = IWL_MVM_INVALID_QUEUE;
Liad Kaufman24afba72015-07-28 18:56:08 +03001396 skb_queue_head_init(&mvm_sta->tid_data[i].deferred_tx_frames);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001397 }
Liad Kaufman24afba72015-07-28 18:56:08 +03001398 mvm_sta->deferred_traffic_tid_map = 0;
Eyal Shapiraefed6642014-09-14 15:58:53 +03001399 mvm_sta->agg_tids = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001400
Sara Sharona571f5f2015-12-07 12:50:58 +02001401 if (iwl_mvm_has_new_rx_api(mvm) &&
1402 !test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
1403 dup_data = kcalloc(mvm->trans->num_rx_queues,
1404 sizeof(*dup_data),
1405 GFP_KERNEL);
1406 if (!dup_data)
1407 return -ENOMEM;
1408 mvm_sta->dup_data = dup_data;
1409 }
1410
Sara Sharon396952e2017-02-22 19:40:55 +02001411 if (iwl_mvm_is_dqa_supported(mvm) && !iwl_mvm_has_new_tx_api(mvm)) {
Liad Kaufmand5216a22015-08-09 15:50:51 +03001412 ret = iwl_mvm_reserve_sta_stream(mvm, sta,
1413 ieee80211_vif_type_p2p(vif));
Liad Kaufman24afba72015-07-28 18:56:08 +03001414 if (ret)
1415 goto err;
1416 }
1417
Liad Kaufman8d98ae62016-02-02 16:02:46 +02001418update_fw:
Liad Kaufman24afba72015-07-28 18:56:08 +03001419 ret = iwl_mvm_sta_send_to_fw(mvm, sta, false, 0);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001420 if (ret)
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001421 goto err;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001422
Johannes Berg9e848012014-08-04 14:33:42 +02001423 if (vif->type == NL80211_IFTYPE_STATION) {
1424 if (!sta->tdls) {
Sara Sharon0ae98812017-01-04 14:53:58 +02001425 WARN_ON(mvmvif->ap_sta_id != IWL_MVM_INVALID_STA);
Johannes Berg9e848012014-08-04 14:33:42 +02001426 mvmvif->ap_sta_id = sta_id;
1427 } else {
Sara Sharon0ae98812017-01-04 14:53:58 +02001428 WARN_ON(mvmvif->ap_sta_id == IWL_MVM_INVALID_STA);
Johannes Berg9e848012014-08-04 14:33:42 +02001429 }
1430 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001431
1432 rcu_assign_pointer(mvm->fw_id_to_mac_id[sta_id], sta);
1433
1434 return 0;
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001435
1436err:
Liad Kaufmane3118ad2016-06-05 10:49:02 +03001437 if (!iwl_mvm_is_dqa_supported(mvm) && sta->tdls)
1438 iwl_mvm_tdls_sta_deinit(mvm, sta);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001439 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001440}
1441
1442int iwl_mvm_drain_sta(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,
1443 bool drain)
1444{
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001445 struct iwl_mvm_add_sta_cmd cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +01001446 int ret;
1447 u32 status;
1448
1449 lockdep_assert_held(&mvm->mutex);
1450
1451 cmd.mac_id_n_color = cpu_to_le32(mvmsta->mac_id_n_color);
1452 cmd.sta_id = mvmsta->sta_id;
1453 cmd.add_modify = STA_MODE_MODIFY;
1454 cmd.station_flags = drain ? cpu_to_le32(STA_FLG_DRAIN_FLOW) : 0;
1455 cmd.station_flags_msk = cpu_to_le32(STA_FLG_DRAIN_FLOW);
1456
1457 status = ADD_STA_SUCCESS;
Sara Sharon854c5702016-01-26 13:17:47 +02001458 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
1459 iwl_mvm_add_sta_cmd_size(mvm),
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001460 &cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001461 if (ret)
1462 return ret;
1463
Sara Sharon837c4da2016-01-07 16:50:45 +02001464 switch (status & IWL_ADD_STA_STATUS_MASK) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001465 case ADD_STA_SUCCESS:
1466 IWL_DEBUG_INFO(mvm, "Frames for staid %d will drained in fw\n",
1467 mvmsta->sta_id);
1468 break;
1469 default:
1470 ret = -EIO;
1471 IWL_ERR(mvm, "Couldn't drain frames for staid %d\n",
1472 mvmsta->sta_id);
1473 break;
1474 }
1475
1476 return ret;
1477}
1478
1479/*
1480 * Remove a station from the FW table. Before sending the command to remove
1481 * the station validate that the station is indeed known to the driver (sanity
1482 * only).
1483 */
1484static int iwl_mvm_rm_sta_common(struct iwl_mvm *mvm, u8 sta_id)
1485{
1486 struct ieee80211_sta *sta;
1487 struct iwl_mvm_rm_sta_cmd rm_sta_cmd = {
1488 .sta_id = sta_id,
1489 };
1490 int ret;
1491
1492 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
1493 lockdep_is_held(&mvm->mutex));
1494
1495 /* Note: internal stations are marked as error values */
1496 if (!sta) {
1497 IWL_ERR(mvm, "Invalid station id\n");
1498 return -EINVAL;
1499 }
1500
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001501 ret = iwl_mvm_send_cmd_pdu(mvm, REMOVE_STA, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001502 sizeof(rm_sta_cmd), &rm_sta_cmd);
1503 if (ret) {
1504 IWL_ERR(mvm, "Failed to remove station. Id=%d\n", sta_id);
1505 return ret;
1506 }
1507
1508 return 0;
1509}
1510
1511void iwl_mvm_sta_drained_wk(struct work_struct *wk)
1512{
1513 struct iwl_mvm *mvm = container_of(wk, struct iwl_mvm, sta_drained_wk);
1514 u8 sta_id;
1515
1516 /*
1517 * The mutex is needed because of the SYNC cmd, but not only: if the
1518 * work would run concurrently with iwl_mvm_rm_sta, it would run before
1519 * iwl_mvm_rm_sta sets the station as busy, and exit. Then
1520 * iwl_mvm_rm_sta would set the station as busy, and nobody will clean
1521 * that later.
1522 */
1523 mutex_lock(&mvm->mutex);
1524
1525 for_each_set_bit(sta_id, mvm->sta_drained, IWL_MVM_STATION_COUNT) {
1526 int ret;
1527 struct ieee80211_sta *sta =
1528 rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
1529 lockdep_is_held(&mvm->mutex));
1530
Johannes Berg1ddbbb02013-12-04 22:39:17 +01001531 /*
1532 * This station is in use or RCU-removed; the latter happens in
1533 * managed mode, where mac80211 removes the station before we
1534 * can remove it from firmware (we can only do that after the
1535 * MAC is marked unassociated), and possibly while the deauth
1536 * frame to disconnect from the AP is still queued. Then, the
1537 * station pointer is -ENOENT when the last skb is reclaimed.
1538 */
1539 if (!IS_ERR(sta) || PTR_ERR(sta) == -ENOENT)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001540 continue;
1541
1542 if (PTR_ERR(sta) == -EINVAL) {
1543 IWL_ERR(mvm, "Drained sta %d, but it is internal?\n",
1544 sta_id);
1545 continue;
1546 }
1547
1548 if (!sta) {
1549 IWL_ERR(mvm, "Drained sta %d, but it was NULL?\n",
1550 sta_id);
1551 continue;
1552 }
1553
1554 WARN_ON(PTR_ERR(sta) != -EBUSY);
1555 /* This station was removed and we waited until it got drained,
1556 * we can now proceed and remove it.
1557 */
1558 ret = iwl_mvm_rm_sta_common(mvm, sta_id);
1559 if (ret) {
1560 IWL_ERR(mvm,
1561 "Couldn't remove sta %d after it was drained\n",
1562 sta_id);
1563 continue;
1564 }
Monam Agarwalc531c772014-03-24 00:05:56 +05301565 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[sta_id], NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001566 clear_bit(sta_id, mvm->sta_drained);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001567
1568 if (mvm->tfd_drained[sta_id]) {
1569 unsigned long i, msk = mvm->tfd_drained[sta_id];
1570
Emmanuel Grumbacha4ca3ed2015-01-20 17:07:10 +02001571 for_each_set_bit(i, &msk, sizeof(msk) * BITS_PER_BYTE)
Arik Nemtsov06ecdba2015-10-12 14:47:11 +03001572 iwl_mvm_disable_txq(mvm, i, i,
1573 IWL_MAX_TID_COUNT, 0);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001574
1575 mvm->tfd_drained[sta_id] = 0;
1576 IWL_DEBUG_TDLS(mvm, "Drained sta %d, with queues %ld\n",
1577 sta_id, msk);
1578 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001579 }
1580
1581 mutex_unlock(&mvm->mutex);
1582}
1583
Liad Kaufman24afba72015-07-28 18:56:08 +03001584static void iwl_mvm_disable_sta_queues(struct iwl_mvm *mvm,
1585 struct ieee80211_vif *vif,
1586 struct iwl_mvm_sta *mvm_sta)
1587{
1588 int ac;
1589 int i;
1590
1591 lockdep_assert_held(&mvm->mutex);
1592
1593 for (i = 0; i < ARRAY_SIZE(mvm_sta->tid_data); i++) {
Sara Sharon6862fce2017-02-22 19:34:17 +02001594 if (mvm_sta->tid_data[i].txq_id == IWL_MVM_INVALID_QUEUE)
Liad Kaufman24afba72015-07-28 18:56:08 +03001595 continue;
1596
1597 ac = iwl_mvm_tid_to_ac_queue(i);
1598 iwl_mvm_disable_txq(mvm, mvm_sta->tid_data[i].txq_id,
1599 vif->hw_queue[ac], i, 0);
Sara Sharon6862fce2017-02-22 19:34:17 +02001600 mvm_sta->tid_data[i].txq_id = IWL_MVM_INVALID_QUEUE;
Liad Kaufman24afba72015-07-28 18:56:08 +03001601 }
1602}
1603
Sara Sharond6d517b2017-03-06 10:16:11 +02001604int iwl_mvm_wait_sta_queues_empty(struct iwl_mvm *mvm,
1605 struct iwl_mvm_sta *mvm_sta)
1606{
1607 int i, ret;
1608
1609 for (i = 0; i < ARRAY_SIZE(mvm_sta->tid_data); i++) {
1610 u16 txq_id;
1611
1612 spin_lock_bh(&mvm_sta->lock);
1613 txq_id = mvm_sta->tid_data[i].txq_id;
1614 spin_unlock_bh(&mvm_sta->lock);
1615
1616 if (txq_id == IWL_MVM_INVALID_QUEUE)
1617 continue;
1618
1619 ret = iwl_trans_wait_txq_empty(mvm->trans, txq_id);
1620 if (ret)
1621 break;
1622 }
1623
1624 return ret;
1625}
1626
Johannes Berg8ca151b2013-01-24 14:25:36 +01001627int iwl_mvm_rm_sta(struct iwl_mvm *mvm,
1628 struct ieee80211_vif *vif,
1629 struct ieee80211_sta *sta)
1630{
1631 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01001632 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Sara Sharon94c3e612016-12-07 15:04:37 +02001633 u8 sta_id = mvm_sta->sta_id;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001634 int ret;
1635
1636 lockdep_assert_held(&mvm->mutex);
1637
Sara Sharona571f5f2015-12-07 12:50:58 +02001638 if (iwl_mvm_has_new_rx_api(mvm))
1639 kfree(mvm_sta->dup_data);
1640
Liad Kaufmana6f035a2015-08-24 15:23:14 +03001641 if ((vif->type == NL80211_IFTYPE_STATION &&
Sara Sharon94c3e612016-12-07 15:04:37 +02001642 mvmvif->ap_sta_id == sta_id) ||
Liad Kaufmana6f035a2015-08-24 15:23:14 +03001643 iwl_mvm_is_dqa_supported(mvm)){
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02001644 ret = iwl_mvm_drain_sta(mvm, mvm_sta, true);
1645 if (ret)
1646 return ret;
Emmanuel Grumbach80d85652013-02-19 15:32:42 +02001647 /* flush its queues here since we are freeing mvm_sta */
Sara Sharond49394a2017-03-05 13:01:08 +02001648 ret = iwl_mvm_flush_sta(mvm, mvm_sta, false, 0);
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02001649 if (ret)
1650 return ret;
Sara Sharond6d517b2017-03-06 10:16:11 +02001651 if (iwl_mvm_has_new_tx_api(mvm)) {
1652 ret = iwl_mvm_wait_sta_queues_empty(mvm, mvm_sta);
1653 } else {
1654 u32 q_mask = mvm_sta->tfd_queue_msk;
1655
1656 ret = iwl_trans_wait_tx_queues_empty(mvm->trans,
1657 q_mask);
1658 }
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02001659 if (ret)
1660 return ret;
1661 ret = iwl_mvm_drain_sta(mvm, mvm_sta, false);
Emmanuel Grumbach80d85652013-02-19 15:32:42 +02001662
Liad Kaufman24afba72015-07-28 18:56:08 +03001663 /* If DQA is supported - the queues can be disabled now */
Sara Sharon94c3e612016-12-07 15:04:37 +02001664 if (iwl_mvm_is_dqa_supported(mvm)) {
Liad Kaufman56214742016-09-22 15:14:08 +03001665 iwl_mvm_disable_sta_queues(mvm, vif, mvm_sta);
Sara Sharon94c3e612016-12-07 15:04:37 +02001666 /*
1667 * If pending_frames is set at this point - it must be
1668 * driver internal logic error, since queues are empty
1669 * and removed successuly.
1670 * warn on it but set it to 0 anyway to avoid station
1671 * not being removed later in the function
1672 */
1673 WARN_ON(atomic_xchg(&mvm->pending_frames[sta_id], 0));
1674 }
Liad Kaufman56214742016-09-22 15:14:08 +03001675
1676 /* If there is a TXQ still marked as reserved - free it */
1677 if (iwl_mvm_is_dqa_supported(mvm) &&
1678 mvm_sta->reserved_queue != IEEE80211_INVAL_HW_QUEUE) {
Liad Kaufmana0315dea2016-07-07 13:25:59 +03001679 u8 reserved_txq = mvm_sta->reserved_queue;
1680 enum iwl_mvm_queue_status *status;
1681
Liad Kaufmana0315dea2016-07-07 13:25:59 +03001682 /*
1683 * If no traffic has gone through the reserved TXQ - it
1684 * is still marked as IWL_MVM_QUEUE_RESERVED, and
1685 * should be manually marked as free again
1686 */
1687 spin_lock_bh(&mvm->queue_info_lock);
1688 status = &mvm->queue_info[reserved_txq].status;
1689 if (WARN((*status != IWL_MVM_QUEUE_RESERVED) &&
1690 (*status != IWL_MVM_QUEUE_FREE),
1691 "sta_id %d reserved txq %d status %d",
Sara Sharon94c3e612016-12-07 15:04:37 +02001692 sta_id, reserved_txq, *status)) {
Liad Kaufmana0315dea2016-07-07 13:25:59 +03001693 spin_unlock_bh(&mvm->queue_info_lock);
1694 return -EINVAL;
1695 }
1696
1697 *status = IWL_MVM_QUEUE_FREE;
1698 spin_unlock_bh(&mvm->queue_info_lock);
1699 }
1700
Liad Kaufmane3118ad2016-06-05 10:49:02 +03001701 if (vif->type == NL80211_IFTYPE_STATION &&
Sara Sharon94c3e612016-12-07 15:04:37 +02001702 mvmvif->ap_sta_id == sta_id) {
Liad Kaufmane3118ad2016-06-05 10:49:02 +03001703 /* if associated - we can't remove the AP STA now */
1704 if (vif->bss_conf.assoc)
1705 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001706
Liad Kaufmane3118ad2016-06-05 10:49:02 +03001707 /* unassoc - go ahead - remove the AP STA now */
Sara Sharon0ae98812017-01-04 14:53:58 +02001708 mvmvif->ap_sta_id = IWL_MVM_INVALID_STA;
Eliad Peller37577fe2013-12-05 17:19:39 +02001709
Liad Kaufmane3118ad2016-06-05 10:49:02 +03001710 /* clear d0i3_ap_sta_id if no longer relevant */
Sara Sharon94c3e612016-12-07 15:04:37 +02001711 if (mvm->d0i3_ap_sta_id == sta_id)
Sara Sharon0ae98812017-01-04 14:53:58 +02001712 mvm->d0i3_ap_sta_id = IWL_MVM_INVALID_STA;
Liad Kaufmane3118ad2016-06-05 10:49:02 +03001713 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001714 }
1715
1716 /*
Arik Nemtsov1d3c3f62014-10-23 18:03:10 +03001717 * This shouldn't happen - the TDLS channel switch should be canceled
1718 * before the STA is removed.
1719 */
Sara Sharon94c3e612016-12-07 15:04:37 +02001720 if (WARN_ON_ONCE(mvm->tdls_cs.peer.sta_id == sta_id)) {
Sara Sharon0ae98812017-01-04 14:53:58 +02001721 mvm->tdls_cs.peer.sta_id = IWL_MVM_INVALID_STA;
Arik Nemtsov1d3c3f62014-10-23 18:03:10 +03001722 cancel_delayed_work(&mvm->tdls_cs.dwork);
1723 }
1724
1725 /*
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001726 * Make sure that the tx response code sees the station as -EBUSY and
1727 * calls the drain worker.
1728 */
1729 spin_lock_bh(&mvm_sta->lock);
Sara Sharon94c3e612016-12-07 15:04:37 +02001730
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001731 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +01001732 * There are frames pending on the AC queues for this station.
1733 * We need to wait until all the frames are drained...
1734 */
Sara Sharon94c3e612016-12-07 15:04:37 +02001735 if (atomic_read(&mvm->pending_frames[sta_id])) {
1736 rcu_assign_pointer(mvm->fw_id_to_mac_id[sta_id],
Johannes Berg8ca151b2013-01-24 14:25:36 +01001737 ERR_PTR(-EBUSY));
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001738 spin_unlock_bh(&mvm_sta->lock);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001739
1740 /* disable TDLS sta queues on drain complete */
1741 if (sta->tdls) {
Sara Sharon94c3e612016-12-07 15:04:37 +02001742 mvm->tfd_drained[sta_id] = mvm_sta->tfd_queue_msk;
1743 IWL_DEBUG_TDLS(mvm, "Draining TDLS sta %d\n", sta_id);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001744 }
1745
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001746 ret = iwl_mvm_drain_sta(mvm, mvm_sta, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001747 } else {
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001748 spin_unlock_bh(&mvm_sta->lock);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001749
Liad Kaufmane3118ad2016-06-05 10:49:02 +03001750 if (!iwl_mvm_is_dqa_supported(mvm) && sta->tdls)
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001751 iwl_mvm_tdls_sta_deinit(mvm, sta);
1752
Johannes Berg8ca151b2013-01-24 14:25:36 +01001753 ret = iwl_mvm_rm_sta_common(mvm, mvm_sta->sta_id);
Monam Agarwalc531c772014-03-24 00:05:56 +05301754 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[mvm_sta->sta_id], NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001755 }
1756
1757 return ret;
1758}
1759
1760int iwl_mvm_rm_sta_id(struct iwl_mvm *mvm,
1761 struct ieee80211_vif *vif,
1762 u8 sta_id)
1763{
1764 int ret = iwl_mvm_rm_sta_common(mvm, sta_id);
1765
1766 lockdep_assert_held(&mvm->mutex);
1767
Monam Agarwalc531c772014-03-24 00:05:56 +05301768 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[sta_id], NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001769 return ret;
1770}
1771
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +02001772int iwl_mvm_allocate_int_sta(struct iwl_mvm *mvm,
1773 struct iwl_mvm_int_sta *sta,
Sara Sharonced19f22017-02-06 19:09:32 +02001774 u32 qmask, enum nl80211_iftype iftype,
1775 enum iwl_sta_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001776{
1777 if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
Eliad Pellerb92e6612014-01-23 17:58:23 +02001778 sta->sta_id = iwl_mvm_find_free_sta_id(mvm, iftype);
Sara Sharon0ae98812017-01-04 14:53:58 +02001779 if (WARN_ON_ONCE(sta->sta_id == IWL_MVM_INVALID_STA))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001780 return -ENOSPC;
1781 }
1782
1783 sta->tfd_queue_msk = qmask;
Sara Sharonced19f22017-02-06 19:09:32 +02001784 sta->type = type;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001785
1786 /* put a non-NULL value so iterating over the stations won't stop */
1787 rcu_assign_pointer(mvm->fw_id_to_mac_id[sta->sta_id], ERR_PTR(-EINVAL));
1788 return 0;
1789}
1790
Sara Sharon26d6c162017-01-03 12:00:19 +02001791void iwl_mvm_dealloc_int_sta(struct iwl_mvm *mvm, struct iwl_mvm_int_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001792{
Monam Agarwalc531c772014-03-24 00:05:56 +05301793 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[sta->sta_id], NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001794 memset(sta, 0, sizeof(struct iwl_mvm_int_sta));
Sara Sharon0ae98812017-01-04 14:53:58 +02001795 sta->sta_id = IWL_MVM_INVALID_STA;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001796}
1797
1798static int iwl_mvm_add_int_sta_common(struct iwl_mvm *mvm,
1799 struct iwl_mvm_int_sta *sta,
1800 const u8 *addr,
1801 u16 mac_id, u16 color)
1802{
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001803 struct iwl_mvm_add_sta_cmd cmd;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001804 int ret;
1805 u32 status;
1806
1807 lockdep_assert_held(&mvm->mutex);
1808
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001809 memset(&cmd, 0, sizeof(cmd));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001810 cmd.sta_id = sta->sta_id;
1811 cmd.mac_id_n_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mac_id,
1812 color));
Sara Sharonced19f22017-02-06 19:09:32 +02001813 if (fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_STA_TYPE))
1814 cmd.station_type = sta->type;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001815
Sara Sharonbb497012016-09-29 14:52:40 +03001816 if (!iwl_mvm_has_new_tx_api(mvm))
1817 cmd.tfd_queue_msk = cpu_to_le32(sta->tfd_queue_msk);
Liad Kaufmancf0cda12015-09-24 10:44:12 +02001818 cmd.tid_disable_tx = cpu_to_le16(0xffff);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001819
1820 if (addr)
1821 memcpy(cmd.addr, addr, ETH_ALEN);
1822
Sara Sharon854c5702016-01-26 13:17:47 +02001823 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
1824 iwl_mvm_add_sta_cmd_size(mvm),
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001825 &cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001826 if (ret)
1827 return ret;
1828
Sara Sharon837c4da2016-01-07 16:50:45 +02001829 switch (status & IWL_ADD_STA_STATUS_MASK) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001830 case ADD_STA_SUCCESS:
1831 IWL_DEBUG_INFO(mvm, "Internal station added.\n");
1832 return 0;
1833 default:
1834 ret = -EIO;
1835 IWL_ERR(mvm, "Add internal station failed, status=0x%x\n",
1836 status);
1837 break;
1838 }
1839 return ret;
1840}
1841
Sara Sharonc5a719e2016-11-15 10:20:48 +02001842static void iwl_mvm_enable_aux_queue(struct iwl_mvm *mvm)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001843{
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +02001844 unsigned int wdg_timeout = iwlmvm_mod_params.tfd_q_hang_detect ?
1845 mvm->cfg->base_params->wd_timeout :
1846 IWL_WATCHDOG_DISABLED;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001847
Sara Sharon310181e2017-01-17 14:27:48 +02001848 if (iwl_mvm_has_new_tx_api(mvm)) {
1849 int queue = iwl_mvm_tvqm_enable_txq(mvm, mvm->aux_queue,
1850 mvm->aux_sta.sta_id,
1851 IWL_MAX_TID_COUNT,
1852 wdg_timeout);
1853 mvm->aux_queue = queue;
1854 } else if (iwl_mvm_is_dqa_supported(mvm)) {
Liad Kaufman28d07932015-09-01 16:36:25 +03001855 struct iwl_trans_txq_scd_cfg cfg = {
1856 .fifo = IWL_MVM_TX_FIFO_MCAST,
1857 .sta_id = mvm->aux_sta.sta_id,
1858 .tid = IWL_MAX_TID_COUNT,
1859 .aggregate = false,
1860 .frame_limit = IWL_FRAME_LIMIT,
1861 };
1862
1863 iwl_mvm_enable_txq(mvm, mvm->aux_queue, mvm->aux_queue, 0, &cfg,
1864 wdg_timeout);
Sara Sharonc5a719e2016-11-15 10:20:48 +02001865 } else {
1866 iwl_mvm_enable_ac_txq(mvm, mvm->aux_queue, mvm->aux_queue,
1867 IWL_MVM_TX_FIFO_MCAST, 0, wdg_timeout);
Liad Kaufman28d07932015-09-01 16:36:25 +03001868 }
Sara Sharonc5a719e2016-11-15 10:20:48 +02001869}
1870
1871int iwl_mvm_add_aux_sta(struct iwl_mvm *mvm)
1872{
1873 int ret;
1874
1875 lockdep_assert_held(&mvm->mutex);
1876
1877 /* Allocate aux station and assign to it the aux queue */
1878 ret = iwl_mvm_allocate_int_sta(mvm, &mvm->aux_sta, BIT(mvm->aux_queue),
Sara Sharonced19f22017-02-06 19:09:32 +02001879 NL80211_IFTYPE_UNSPECIFIED,
1880 IWL_STA_AUX_ACTIVITY);
Sara Sharonc5a719e2016-11-15 10:20:48 +02001881 if (ret)
1882 return ret;
1883
1884 /* Map Aux queue to fifo - needs to happen before adding Aux station */
1885 if (!iwl_mvm_has_new_tx_api(mvm))
1886 iwl_mvm_enable_aux_queue(mvm);
Liad Kaufman28d07932015-09-01 16:36:25 +03001887
Johannes Berg8ca151b2013-01-24 14:25:36 +01001888 ret = iwl_mvm_add_int_sta_common(mvm, &mvm->aux_sta, NULL,
1889 MAC_INDEX_AUX, 0);
Sara Sharonc5a719e2016-11-15 10:20:48 +02001890 if (ret) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001891 iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta);
Sara Sharonc5a719e2016-11-15 10:20:48 +02001892 return ret;
1893 }
1894
1895 /*
1896 * For a000 firmware and on we cannot add queue to a station unknown
1897 * to firmware so enable queue here - after the station was added
1898 */
1899 if (iwl_mvm_has_new_tx_api(mvm))
1900 iwl_mvm_enable_aux_queue(mvm);
1901
1902 return 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001903}
1904
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +02001905int iwl_mvm_add_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1906{
1907 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1908
1909 lockdep_assert_held(&mvm->mutex);
1910 return iwl_mvm_add_int_sta_common(mvm, &mvm->snif_sta, vif->addr,
1911 mvmvif->id, 0);
1912}
1913
1914int iwl_mvm_rm_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1915{
1916 int ret;
1917
1918 lockdep_assert_held(&mvm->mutex);
1919
1920 ret = iwl_mvm_rm_sta_common(mvm, mvm->snif_sta.sta_id);
1921 if (ret)
1922 IWL_WARN(mvm, "Failed sending remove station\n");
1923
1924 return ret;
1925}
1926
1927void iwl_mvm_dealloc_snif_sta(struct iwl_mvm *mvm)
1928{
1929 iwl_mvm_dealloc_int_sta(mvm, &mvm->snif_sta);
1930}
1931
Johannes Berg712b24a2014-08-04 14:14:14 +02001932void iwl_mvm_del_aux_sta(struct iwl_mvm *mvm)
1933{
1934 lockdep_assert_held(&mvm->mutex);
1935
1936 iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta);
1937}
1938
Johannes Berg8ca151b2013-01-24 14:25:36 +01001939/*
1940 * Send the add station command for the vif's broadcast station.
1941 * Assumes that the station was already allocated.
1942 *
1943 * @mvm: the mvm component
1944 * @vif: the interface to which the broadcast station is added
1945 * @bsta: the broadcast station to add.
1946 */
Johannes Berg013290a2014-08-04 13:38:48 +02001947int iwl_mvm_send_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001948{
1949 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg013290a2014-08-04 13:38:48 +02001950 struct iwl_mvm_int_sta *bsta = &mvmvif->bcast_sta;
Johannes Berg5023d962013-07-31 14:07:43 +02001951 static const u8 _baddr[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
Johannes Berga4243402014-01-20 23:46:38 +01001952 const u8 *baddr = _baddr;
Johannes Berg7daa7622017-02-24 12:02:22 +01001953 int queue;
Liad Kaufmandf88c082016-11-24 15:31:00 +02001954 int ret;
Sara Sharonc5a719e2016-11-15 10:20:48 +02001955 unsigned int wdg_timeout =
1956 iwl_mvm_get_wd_timeout(mvm, vif, false, false);
1957 struct iwl_trans_txq_scd_cfg cfg = {
1958 .fifo = IWL_MVM_TX_FIFO_VO,
1959 .sta_id = mvmvif->bcast_sta.sta_id,
1960 .tid = IWL_MAX_TID_COUNT,
1961 .aggregate = false,
1962 .frame_limit = IWL_FRAME_LIMIT,
1963 };
Johannes Berg8ca151b2013-01-24 14:25:36 +01001964
1965 lockdep_assert_held(&mvm->mutex);
1966
Sara Sharon310181e2017-01-17 14:27:48 +02001967 if (iwl_mvm_is_dqa_supported(mvm) && !iwl_mvm_has_new_tx_api(mvm)) {
Liad Kaufman4d339982017-03-21 17:13:16 +02001968 if (vif->type == NL80211_IFTYPE_AP ||
1969 vif->type == NL80211_IFTYPE_ADHOC)
Sara Sharon49f71712017-01-09 12:07:16 +02001970 queue = mvm->probe_queue;
Liad Kaufmandf88c082016-11-24 15:31:00 +02001971 else if (vif->type == NL80211_IFTYPE_P2P_DEVICE)
Sara Sharon49f71712017-01-09 12:07:16 +02001972 queue = mvm->p2p_dev_queue;
Liad Kaufmandf88c082016-11-24 15:31:00 +02001973 else if (WARN(1, "Missing required TXQ for adding bcast STA\n"))
Liad Kaufmande24f632015-08-04 15:19:18 +03001974 return -EINVAL;
1975
Liad Kaufmandf88c082016-11-24 15:31:00 +02001976 bsta->tfd_queue_msk |= BIT(queue);
Sara Sharonc5a719e2016-11-15 10:20:48 +02001977
Sara Sharon310181e2017-01-17 14:27:48 +02001978 iwl_mvm_enable_txq(mvm, queue, vif->hw_queue[0], 0,
1979 &cfg, wdg_timeout);
Liad Kaufmande24f632015-08-04 15:19:18 +03001980 }
1981
Johannes Berg5023d962013-07-31 14:07:43 +02001982 if (vif->type == NL80211_IFTYPE_ADHOC)
1983 baddr = vif->bss_conf.bssid;
1984
Sara Sharon0ae98812017-01-04 14:53:58 +02001985 if (WARN_ON_ONCE(bsta->sta_id == IWL_MVM_INVALID_STA))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001986 return -ENOSPC;
1987
Liad Kaufmandf88c082016-11-24 15:31:00 +02001988 ret = iwl_mvm_add_int_sta_common(mvm, bsta, baddr,
1989 mvmvif->id, mvmvif->color);
1990 if (ret)
1991 return ret;
1992
1993 /*
Sara Sharonc5a719e2016-11-15 10:20:48 +02001994 * For a000 firmware and on we cannot add queue to a station unknown
1995 * to firmware so enable queue here - after the station was added
Liad Kaufmandf88c082016-11-24 15:31:00 +02001996 */
Sara Sharon310181e2017-01-17 14:27:48 +02001997 if (iwl_mvm_has_new_tx_api(mvm)) {
Johannes Berg7daa7622017-02-24 12:02:22 +01001998 queue = iwl_mvm_tvqm_enable_txq(mvm, vif->hw_queue[0],
1999 bsta->sta_id,
2000 IWL_MAX_TID_COUNT,
2001 wdg_timeout);
2002
Sara Sharon310181e2017-01-17 14:27:48 +02002003 if (vif->type == NL80211_IFTYPE_AP)
2004 mvm->probe_queue = queue;
2005 else if (vif->type == NL80211_IFTYPE_P2P_DEVICE)
2006 mvm->p2p_dev_queue = queue;
2007
2008 bsta->tfd_queue_msk |= BIT(queue);
2009 }
Liad Kaufmandf88c082016-11-24 15:31:00 +02002010
2011 return 0;
2012}
2013
2014static void iwl_mvm_free_bcast_sta_queues(struct iwl_mvm *mvm,
2015 struct ieee80211_vif *vif)
2016{
2017 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2018
2019 lockdep_assert_held(&mvm->mutex);
2020
Sara Sharond49394a2017-03-05 13:01:08 +02002021 iwl_mvm_flush_sta(mvm, &mvmvif->bcast_sta, true, 0);
2022
Liad Kaufman4d339982017-03-21 17:13:16 +02002023 if (vif->type == NL80211_IFTYPE_AP ||
2024 vif->type == NL80211_IFTYPE_ADHOC)
Liad Kaufmandf88c082016-11-24 15:31:00 +02002025 iwl_mvm_disable_txq(mvm, vif->cab_queue, vif->cab_queue,
2026 IWL_MAX_TID_COUNT, 0);
2027
Sara Sharon49f71712017-01-09 12:07:16 +02002028 if (mvmvif->bcast_sta.tfd_queue_msk & BIT(mvm->probe_queue)) {
2029 iwl_mvm_disable_txq(mvm, mvm->probe_queue,
Liad Kaufmandf88c082016-11-24 15:31:00 +02002030 vif->hw_queue[0], IWL_MAX_TID_COUNT,
2031 0);
Sara Sharon49f71712017-01-09 12:07:16 +02002032 mvmvif->bcast_sta.tfd_queue_msk &= ~BIT(mvm->probe_queue);
Liad Kaufmandf88c082016-11-24 15:31:00 +02002033 }
2034
Sara Sharon49f71712017-01-09 12:07:16 +02002035 if (mvmvif->bcast_sta.tfd_queue_msk & BIT(mvm->p2p_dev_queue)) {
2036 iwl_mvm_disable_txq(mvm, mvm->p2p_dev_queue,
Liad Kaufmandf88c082016-11-24 15:31:00 +02002037 vif->hw_queue[0], IWL_MAX_TID_COUNT,
2038 0);
Sara Sharon49f71712017-01-09 12:07:16 +02002039 mvmvif->bcast_sta.tfd_queue_msk &= ~BIT(mvm->p2p_dev_queue);
Liad Kaufmandf88c082016-11-24 15:31:00 +02002040 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002041}
2042
2043/* Send the FW a request to remove the station from it's internal data
2044 * structures, but DO NOT remove the entry from the local data structures. */
Johannes Berg013290a2014-08-04 13:38:48 +02002045int iwl_mvm_send_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002046{
Johannes Berg013290a2014-08-04 13:38:48 +02002047 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002048 int ret;
2049
2050 lockdep_assert_held(&mvm->mutex);
2051
Liad Kaufmandf88c082016-11-24 15:31:00 +02002052 if (iwl_mvm_is_dqa_supported(mvm))
2053 iwl_mvm_free_bcast_sta_queues(mvm, vif);
2054
Johannes Berg013290a2014-08-04 13:38:48 +02002055 ret = iwl_mvm_rm_sta_common(mvm, mvmvif->bcast_sta.sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002056 if (ret)
2057 IWL_WARN(mvm, "Failed sending remove station\n");
2058 return ret;
2059}
2060
Johannes Berg013290a2014-08-04 13:38:48 +02002061int iwl_mvm_alloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
2062{
2063 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Liad Kaufmande24f632015-08-04 15:19:18 +03002064 u32 qmask = 0;
Johannes Berg013290a2014-08-04 13:38:48 +02002065
2066 lockdep_assert_held(&mvm->mutex);
2067
Liad Kaufmandf88c082016-11-24 15:31:00 +02002068 if (!iwl_mvm_is_dqa_supported(mvm)) {
Liad Kaufmande24f632015-08-04 15:19:18 +03002069 qmask = iwl_mvm_mac_get_queues_mask(vif);
Johannes Berg013290a2014-08-04 13:38:48 +02002070
Liad Kaufmande24f632015-08-04 15:19:18 +03002071 /*
2072 * The firmware defines the TFD queue mask to only be relevant
2073 * for *unicast* queues, so the multicast (CAB) queue shouldn't
Liad Kaufmandf88c082016-11-24 15:31:00 +02002074 * be included. This only happens in NL80211_IFTYPE_AP vif type,
2075 * so the next line will only have an effect there.
Liad Kaufmande24f632015-08-04 15:19:18 +03002076 */
Johannes Berg013290a2014-08-04 13:38:48 +02002077 qmask &= ~BIT(vif->cab_queue);
Liad Kaufmande24f632015-08-04 15:19:18 +03002078 }
2079
Johannes Berg013290a2014-08-04 13:38:48 +02002080 return iwl_mvm_allocate_int_sta(mvm, &mvmvif->bcast_sta, qmask,
Sara Sharonced19f22017-02-06 19:09:32 +02002081 ieee80211_vif_type_p2p(vif),
2082 IWL_STA_GENERAL_PURPOSE);
Johannes Berg013290a2014-08-04 13:38:48 +02002083}
2084
Johannes Berg8ca151b2013-01-24 14:25:36 +01002085/* Allocate a new station entry for the broadcast station to the given vif,
2086 * and send it to the FW.
2087 * Note that each P2P mac should have its own broadcast station.
2088 *
2089 * @mvm: the mvm component
2090 * @vif: the interface to which the broadcast station is added
2091 * @bsta: the broadcast station to add. */
Johannes Berg013290a2014-08-04 13:38:48 +02002092int iwl_mvm_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002093{
2094 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg013290a2014-08-04 13:38:48 +02002095 struct iwl_mvm_int_sta *bsta = &mvmvif->bcast_sta;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002096 int ret;
2097
2098 lockdep_assert_held(&mvm->mutex);
2099
Johannes Berg013290a2014-08-04 13:38:48 +02002100 ret = iwl_mvm_alloc_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002101 if (ret)
2102 return ret;
2103
Johannes Berg013290a2014-08-04 13:38:48 +02002104 ret = iwl_mvm_send_add_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002105
2106 if (ret)
2107 iwl_mvm_dealloc_int_sta(mvm, bsta);
Johannes Berg013290a2014-08-04 13:38:48 +02002108
Johannes Berg8ca151b2013-01-24 14:25:36 +01002109 return ret;
2110}
2111
Johannes Berg013290a2014-08-04 13:38:48 +02002112void iwl_mvm_dealloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
2113{
2114 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2115
2116 iwl_mvm_dealloc_int_sta(mvm, &mvmvif->bcast_sta);
2117}
2118
Johannes Berg8ca151b2013-01-24 14:25:36 +01002119/*
2120 * Send the FW a request to remove the station from it's internal data
2121 * structures, and in addition remove it from the local data structure.
2122 */
Johannes Berg013290a2014-08-04 13:38:48 +02002123int iwl_mvm_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002124{
2125 int ret;
2126
2127 lockdep_assert_held(&mvm->mutex);
2128
Johannes Berg013290a2014-08-04 13:38:48 +02002129 ret = iwl_mvm_send_rm_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002130
Johannes Berg013290a2014-08-04 13:38:48 +02002131 iwl_mvm_dealloc_bcast_sta(mvm, vif);
2132
Johannes Berg8ca151b2013-01-24 14:25:36 +01002133 return ret;
2134}
2135
Sara Sharon26d6c162017-01-03 12:00:19 +02002136/*
2137 * Allocate a new station entry for the multicast station to the given vif,
2138 * and send it to the FW.
2139 * Note that each AP/GO mac should have its own multicast station.
2140 *
2141 * @mvm: the mvm component
2142 * @vif: the interface to which the multicast station is added
2143 */
2144int iwl_mvm_add_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
2145{
2146 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2147 struct iwl_mvm_int_sta *msta = &mvmvif->mcast_sta;
2148 static const u8 _maddr[] = {0x03, 0x00, 0x00, 0x00, 0x00, 0x00};
2149 const u8 *maddr = _maddr;
2150 struct iwl_trans_txq_scd_cfg cfg = {
2151 .fifo = IWL_MVM_TX_FIFO_MCAST,
2152 .sta_id = msta->sta_id,
2153 .tid = IWL_MAX_TID_COUNT,
2154 .aggregate = false,
2155 .frame_limit = IWL_FRAME_LIMIT,
2156 };
2157 unsigned int timeout = iwl_mvm_get_wd_timeout(mvm, vif, false, false);
2158 int ret;
2159
2160 lockdep_assert_held(&mvm->mutex);
2161
2162 if (!iwl_mvm_is_dqa_supported(mvm))
2163 return 0;
2164
Liad Kaufmanee48b722017-03-21 17:13:16 +02002165 if (WARN_ON(vif->type != NL80211_IFTYPE_AP &&
2166 vif->type != NL80211_IFTYPE_ADHOC))
Sara Sharon26d6c162017-01-03 12:00:19 +02002167 return -ENOTSUPP;
2168
Sara Sharonced19f22017-02-06 19:09:32 +02002169 /*
2170 * While in previous FWs we had to exclude cab queue from TFD queue
2171 * mask, now it is needed as any other queue.
2172 */
2173 if (!iwl_mvm_has_new_tx_api(mvm) &&
2174 fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_STA_TYPE)) {
2175 iwl_mvm_enable_txq(mvm, vif->cab_queue, vif->cab_queue, 0,
2176 &cfg, timeout);
2177 msta->tfd_queue_msk |= BIT(vif->cab_queue);
2178 }
Sara Sharon26d6c162017-01-03 12:00:19 +02002179 ret = iwl_mvm_add_int_sta_common(mvm, msta, maddr,
2180 mvmvif->id, mvmvif->color);
2181 if (ret) {
2182 iwl_mvm_dealloc_int_sta(mvm, msta);
2183 return ret;
2184 }
2185
2186 /*
2187 * Enable cab queue after the ADD_STA command is sent.
2188 * This is needed for a000 firmware which won't accept SCD_QUEUE_CFG
Sara Sharonced19f22017-02-06 19:09:32 +02002189 * command with unknown station id, and for FW that doesn't support
2190 * station API since the cab queue is not included in the
2191 * tfd_queue_mask.
Sara Sharon26d6c162017-01-03 12:00:19 +02002192 */
Sara Sharon310181e2017-01-17 14:27:48 +02002193 if (iwl_mvm_has_new_tx_api(mvm)) {
2194 int queue = iwl_mvm_tvqm_enable_txq(mvm, vif->cab_queue,
2195 msta->sta_id,
2196 IWL_MAX_TID_COUNT,
2197 timeout);
Sara Sharone2af3fa2017-02-22 19:35:10 +02002198 mvmvif->cab_queue = queue;
Sara Sharonced19f22017-02-06 19:09:32 +02002199 } else if (!fw_has_api(&mvm->fw->ucode_capa,
2200 IWL_UCODE_TLV_API_STA_TYPE)) {
Liad Kaufmanee48b722017-03-21 17:13:16 +02002201 /*
2202 * In IBSS, ieee80211_check_queues() sets the cab_queue to be
2203 * invalid, so make sure we use the queue we want.
2204 * Note that this is done here as we want to avoid making DQA
2205 * changes in mac80211 layer.
2206 */
2207 if (vif->type == NL80211_IFTYPE_ADHOC) {
2208 vif->cab_queue = IWL_MVM_DQA_GCAST_QUEUE;
2209 mvmvif->cab_queue = vif->cab_queue;
2210 }
Sara Sharon310181e2017-01-17 14:27:48 +02002211 iwl_mvm_enable_txq(mvm, vif->cab_queue, vif->cab_queue, 0,
2212 &cfg, timeout);
2213 }
Sara Sharon26d6c162017-01-03 12:00:19 +02002214
2215 return 0;
2216}
2217
2218/*
2219 * Send the FW a request to remove the station from it's internal data
2220 * structures, and in addition remove it from the local data structure.
2221 */
2222int iwl_mvm_rm_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
2223{
2224 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2225 int ret;
2226
2227 lockdep_assert_held(&mvm->mutex);
2228
2229 if (!iwl_mvm_is_dqa_supported(mvm))
2230 return 0;
2231
Sara Sharond49394a2017-03-05 13:01:08 +02002232 iwl_mvm_flush_sta(mvm, &mvmvif->mcast_sta, true, 0);
2233
Sara Sharone2af3fa2017-02-22 19:35:10 +02002234 iwl_mvm_disable_txq(mvm, mvmvif->cab_queue, vif->cab_queue,
Sara Sharon26d6c162017-01-03 12:00:19 +02002235 IWL_MAX_TID_COUNT, 0);
2236
2237 ret = iwl_mvm_rm_sta_common(mvm, mvmvif->mcast_sta.sta_id);
2238 if (ret)
2239 IWL_WARN(mvm, "Failed sending remove station\n");
2240
2241 return ret;
2242}
2243
Emmanuel Grumbach113a0442013-07-02 14:16:38 +03002244#define IWL_MAX_RX_BA_SESSIONS 16
2245
Sara Sharonb915c102016-03-23 16:32:02 +02002246static void iwl_mvm_sync_rxq_del_ba(struct iwl_mvm *mvm, u8 baid)
Sara Sharon10b2b202016-03-20 16:23:41 +02002247{
Sara Sharonb915c102016-03-23 16:32:02 +02002248 struct iwl_mvm_delba_notif notif = {
2249 .metadata.type = IWL_MVM_RXQ_NOTIF_DEL_BA,
2250 .metadata.sync = 1,
2251 .delba.baid = baid,
Sara Sharon10b2b202016-03-20 16:23:41 +02002252 };
Sara Sharonb915c102016-03-23 16:32:02 +02002253 iwl_mvm_sync_rx_queues_internal(mvm, (void *)&notif, sizeof(notif));
2254};
Sara Sharon10b2b202016-03-20 16:23:41 +02002255
Sara Sharonb915c102016-03-23 16:32:02 +02002256static void iwl_mvm_free_reorder(struct iwl_mvm *mvm,
2257 struct iwl_mvm_baid_data *data)
2258{
2259 int i;
2260
2261 iwl_mvm_sync_rxq_del_ba(mvm, data->baid);
2262
2263 for (i = 0; i < mvm->trans->num_rx_queues; i++) {
2264 int j;
2265 struct iwl_mvm_reorder_buffer *reorder_buf =
2266 &data->reorder_buf[i];
2267
Sara Sharon06904052016-02-28 20:28:17 +02002268 spin_lock_bh(&reorder_buf->lock);
2269 if (likely(!reorder_buf->num_stored)) {
2270 spin_unlock_bh(&reorder_buf->lock);
Sara Sharonb915c102016-03-23 16:32:02 +02002271 continue;
Sara Sharon06904052016-02-28 20:28:17 +02002272 }
Sara Sharonb915c102016-03-23 16:32:02 +02002273
2274 /*
2275 * This shouldn't happen in regular DELBA since the internal
2276 * delBA notification should trigger a release of all frames in
2277 * the reorder buffer.
2278 */
2279 WARN_ON(1);
2280
2281 for (j = 0; j < reorder_buf->buf_size; j++)
2282 __skb_queue_purge(&reorder_buf->entries[j]);
Sara Sharon06904052016-02-28 20:28:17 +02002283 /*
2284 * Prevent timer re-arm. This prevents a very far fetched case
2285 * where we timed out on the notification. There may be prior
2286 * RX frames pending in the RX queue before the notification
2287 * that might get processed between now and the actual deletion
2288 * and we would re-arm the timer although we are deleting the
2289 * reorder buffer.
2290 */
2291 reorder_buf->removed = true;
2292 spin_unlock_bh(&reorder_buf->lock);
2293 del_timer_sync(&reorder_buf->reorder_timer);
Sara Sharonb915c102016-03-23 16:32:02 +02002294 }
2295}
2296
2297static void iwl_mvm_init_reorder_buffer(struct iwl_mvm *mvm,
2298 u32 sta_id,
2299 struct iwl_mvm_baid_data *data,
2300 u16 ssn, u8 buf_size)
2301{
2302 int i;
2303
2304 for (i = 0; i < mvm->trans->num_rx_queues; i++) {
2305 struct iwl_mvm_reorder_buffer *reorder_buf =
2306 &data->reorder_buf[i];
2307 int j;
2308
2309 reorder_buf->num_stored = 0;
2310 reorder_buf->head_sn = ssn;
2311 reorder_buf->buf_size = buf_size;
Sara Sharon06904052016-02-28 20:28:17 +02002312 /* rx reorder timer */
2313 reorder_buf->reorder_timer.function =
2314 iwl_mvm_reorder_timer_expired;
2315 reorder_buf->reorder_timer.data = (unsigned long)reorder_buf;
2316 init_timer(&reorder_buf->reorder_timer);
2317 spin_lock_init(&reorder_buf->lock);
2318 reorder_buf->mvm = mvm;
Sara Sharonb915c102016-03-23 16:32:02 +02002319 reorder_buf->queue = i;
2320 reorder_buf->sta_id = sta_id;
Sara Sharon5d43eab2017-02-02 12:51:39 +02002321 reorder_buf->valid = false;
Sara Sharonb915c102016-03-23 16:32:02 +02002322 for (j = 0; j < reorder_buf->buf_size; j++)
2323 __skb_queue_head_init(&reorder_buf->entries[j]);
2324 }
Sara Sharon10b2b202016-03-20 16:23:41 +02002325}
2326
Johannes Berg8ca151b2013-01-24 14:25:36 +01002327int iwl_mvm_sta_rx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Sara Sharon10b2b202016-03-20 16:23:41 +02002328 int tid, u16 ssn, bool start, u8 buf_size, u16 timeout)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002329{
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01002330 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03002331 struct iwl_mvm_add_sta_cmd cmd = {};
Sara Sharon10b2b202016-03-20 16:23:41 +02002332 struct iwl_mvm_baid_data *baid_data = NULL;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002333 int ret;
2334 u32 status;
2335
2336 lockdep_assert_held(&mvm->mutex);
2337
Emmanuel Grumbach113a0442013-07-02 14:16:38 +03002338 if (start && mvm->rx_ba_sessions >= IWL_MAX_RX_BA_SESSIONS) {
2339 IWL_WARN(mvm, "Not enough RX BA SESSIONS\n");
2340 return -ENOSPC;
2341 }
2342
Sara Sharon10b2b202016-03-20 16:23:41 +02002343 if (iwl_mvm_has_new_rx_api(mvm) && start) {
2344 /*
2345 * Allocate here so if allocation fails we can bail out early
2346 * before starting the BA session in the firmware
2347 */
Sara Sharonb915c102016-03-23 16:32:02 +02002348 baid_data = kzalloc(sizeof(*baid_data) +
2349 mvm->trans->num_rx_queues *
2350 sizeof(baid_data->reorder_buf[0]),
2351 GFP_KERNEL);
Sara Sharon10b2b202016-03-20 16:23:41 +02002352 if (!baid_data)
2353 return -ENOMEM;
2354 }
2355
Johannes Berg8ca151b2013-01-24 14:25:36 +01002356 cmd.mac_id_n_color = cpu_to_le32(mvm_sta->mac_id_n_color);
2357 cmd.sta_id = mvm_sta->sta_id;
2358 cmd.add_modify = STA_MODE_MODIFY;
Emmanuel Grumbach93a42662013-07-02 13:35:35 +03002359 if (start) {
2360 cmd.add_immediate_ba_tid = (u8) tid;
2361 cmd.add_immediate_ba_ssn = cpu_to_le16(ssn);
Sara Sharon854c5702016-01-26 13:17:47 +02002362 cmd.rx_ba_window = cpu_to_le16((u16)buf_size);
Emmanuel Grumbach93a42662013-07-02 13:35:35 +03002363 } else {
2364 cmd.remove_immediate_ba_tid = (u8) tid;
2365 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002366 cmd.modify_mask = start ? STA_MODIFY_ADD_BA_TID :
2367 STA_MODIFY_REMOVE_BA_TID;
2368
2369 status = ADD_STA_SUCCESS;
Sara Sharon854c5702016-01-26 13:17:47 +02002370 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
2371 iwl_mvm_add_sta_cmd_size(mvm),
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03002372 &cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002373 if (ret)
Sara Sharon10b2b202016-03-20 16:23:41 +02002374 goto out_free;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002375
Sara Sharon837c4da2016-01-07 16:50:45 +02002376 switch (status & IWL_ADD_STA_STATUS_MASK) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002377 case ADD_STA_SUCCESS:
Sara Sharon35263a02016-06-21 12:12:10 +03002378 IWL_DEBUG_HT(mvm, "RX BA Session %sed in fw\n",
2379 start ? "start" : "stopp");
Johannes Berg8ca151b2013-01-24 14:25:36 +01002380 break;
2381 case ADD_STA_IMMEDIATE_BA_FAILURE:
2382 IWL_WARN(mvm, "RX BA Session refused by fw\n");
2383 ret = -ENOSPC;
2384 break;
2385 default:
2386 ret = -EIO;
2387 IWL_ERR(mvm, "RX BA Session failed %sing, status 0x%x\n",
2388 start ? "start" : "stopp", status);
2389 break;
2390 }
2391
Sara Sharon10b2b202016-03-20 16:23:41 +02002392 if (ret)
2393 goto out_free;
Emmanuel Grumbach113a0442013-07-02 14:16:38 +03002394
Sara Sharon10b2b202016-03-20 16:23:41 +02002395 if (start) {
2396 u8 baid;
2397
2398 mvm->rx_ba_sessions++;
2399
2400 if (!iwl_mvm_has_new_rx_api(mvm))
2401 return 0;
2402
2403 if (WARN_ON(!(status & IWL_ADD_STA_BAID_VALID_MASK))) {
2404 ret = -EINVAL;
2405 goto out_free;
2406 }
2407 baid = (u8)((status & IWL_ADD_STA_BAID_MASK) >>
2408 IWL_ADD_STA_BAID_SHIFT);
2409 baid_data->baid = baid;
2410 baid_data->timeout = timeout;
2411 baid_data->last_rx = jiffies;
Wei Yongjun72c240f2016-07-12 11:40:57 +00002412 setup_timer(&baid_data->session_timer,
2413 iwl_mvm_rx_agg_session_expired,
2414 (unsigned long)&mvm->baid_map[baid]);
Sara Sharon10b2b202016-03-20 16:23:41 +02002415 baid_data->mvm = mvm;
2416 baid_data->tid = tid;
2417 baid_data->sta_id = mvm_sta->sta_id;
2418
2419 mvm_sta->tid_to_baid[tid] = baid;
2420 if (timeout)
2421 mod_timer(&baid_data->session_timer,
2422 TU_TO_EXP_TIME(timeout * 2));
2423
Sara Sharonb915c102016-03-23 16:32:02 +02002424 iwl_mvm_init_reorder_buffer(mvm, mvm_sta->sta_id,
2425 baid_data, ssn, buf_size);
Sara Sharon10b2b202016-03-20 16:23:41 +02002426 /*
2427 * protect the BA data with RCU to cover a case where our
2428 * internal RX sync mechanism will timeout (not that it's
2429 * supposed to happen) and we will free the session data while
2430 * RX is being processed in parallel
2431 */
Sara Sharon35263a02016-06-21 12:12:10 +03002432 IWL_DEBUG_HT(mvm, "Sta %d(%d) is assigned to BAID %d\n",
2433 mvm_sta->sta_id, tid, baid);
Sara Sharon10b2b202016-03-20 16:23:41 +02002434 WARN_ON(rcu_access_pointer(mvm->baid_map[baid]));
2435 rcu_assign_pointer(mvm->baid_map[baid], baid_data);
Sara Sharon60dec522016-06-21 14:14:08 +03002436 } else {
Sara Sharon10b2b202016-03-20 16:23:41 +02002437 u8 baid = mvm_sta->tid_to_baid[tid];
2438
Sara Sharon60dec522016-06-21 14:14:08 +03002439 if (mvm->rx_ba_sessions > 0)
2440 /* check that restart flow didn't zero the counter */
2441 mvm->rx_ba_sessions--;
Sara Sharon10b2b202016-03-20 16:23:41 +02002442 if (!iwl_mvm_has_new_rx_api(mvm))
2443 return 0;
2444
2445 if (WARN_ON(baid == IWL_RX_REORDER_DATA_INVALID_BAID))
2446 return -EINVAL;
2447
2448 baid_data = rcu_access_pointer(mvm->baid_map[baid]);
2449 if (WARN_ON(!baid_data))
2450 return -EINVAL;
2451
2452 /* synchronize all rx queues so we can safely delete */
Sara Sharonb915c102016-03-23 16:32:02 +02002453 iwl_mvm_free_reorder(mvm, baid_data);
Sara Sharon10b2b202016-03-20 16:23:41 +02002454 del_timer_sync(&baid_data->session_timer);
Sara Sharon10b2b202016-03-20 16:23:41 +02002455 RCU_INIT_POINTER(mvm->baid_map[baid], NULL);
2456 kfree_rcu(baid_data, rcu_head);
Sara Sharon35263a02016-06-21 12:12:10 +03002457 IWL_DEBUG_HT(mvm, "BAID %d is free\n", baid);
Sara Sharon10b2b202016-03-20 16:23:41 +02002458 }
2459 return 0;
2460
2461out_free:
2462 kfree(baid_data);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002463 return ret;
2464}
2465
Liad Kaufman9794c642015-08-19 17:34:28 +03002466int iwl_mvm_sta_tx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
2467 int tid, u8 queue, bool start)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002468{
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01002469 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03002470 struct iwl_mvm_add_sta_cmd cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +01002471 int ret;
2472 u32 status;
2473
2474 lockdep_assert_held(&mvm->mutex);
2475
2476 if (start) {
2477 mvm_sta->tfd_queue_msk |= BIT(queue);
2478 mvm_sta->tid_disable_agg &= ~BIT(tid);
2479 } else {
Liad Kaufmancf961e12015-08-13 19:16:08 +03002480 /* In DQA-mode the queue isn't removed on agg termination */
2481 if (!iwl_mvm_is_dqa_supported(mvm))
2482 mvm_sta->tfd_queue_msk &= ~BIT(queue);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002483 mvm_sta->tid_disable_agg |= BIT(tid);
2484 }
2485
2486 cmd.mac_id_n_color = cpu_to_le32(mvm_sta->mac_id_n_color);
2487 cmd.sta_id = mvm_sta->sta_id;
2488 cmd.add_modify = STA_MODE_MODIFY;
Sara Sharonbb497012016-09-29 14:52:40 +03002489 if (!iwl_mvm_has_new_tx_api(mvm))
2490 cmd.modify_mask = STA_MODIFY_QUEUES;
2491 cmd.modify_mask |= STA_MODIFY_TID_DISABLE_TX;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002492 cmd.tfd_queue_msk = cpu_to_le32(mvm_sta->tfd_queue_msk);
2493 cmd.tid_disable_tx = cpu_to_le16(mvm_sta->tid_disable_agg);
2494
2495 status = ADD_STA_SUCCESS;
Sara Sharon854c5702016-01-26 13:17:47 +02002496 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
2497 iwl_mvm_add_sta_cmd_size(mvm),
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03002498 &cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002499 if (ret)
2500 return ret;
2501
Sara Sharon837c4da2016-01-07 16:50:45 +02002502 switch (status & IWL_ADD_STA_STATUS_MASK) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002503 case ADD_STA_SUCCESS:
2504 break;
2505 default:
2506 ret = -EIO;
2507 IWL_ERR(mvm, "TX BA Session failed %sing, status 0x%x\n",
2508 start ? "start" : "stopp", status);
2509 break;
2510 }
2511
2512 return ret;
2513}
2514
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02002515const u8 tid_to_mac80211_ac[] = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002516 IEEE80211_AC_BE,
2517 IEEE80211_AC_BK,
2518 IEEE80211_AC_BK,
2519 IEEE80211_AC_BE,
2520 IEEE80211_AC_VI,
2521 IEEE80211_AC_VI,
2522 IEEE80211_AC_VO,
2523 IEEE80211_AC_VO,
Liad Kaufman9794c642015-08-19 17:34:28 +03002524 IEEE80211_AC_VO, /* We treat MGMT as TID 8, which is set as AC_VO */
Johannes Berg8ca151b2013-01-24 14:25:36 +01002525};
2526
Johannes Berg3e56ead2013-02-15 22:23:18 +01002527static const u8 tid_to_ucode_ac[] = {
2528 AC_BE,
2529 AC_BK,
2530 AC_BK,
2531 AC_BE,
2532 AC_VI,
2533 AC_VI,
2534 AC_VO,
2535 AC_VO,
2536};
2537
Johannes Berg8ca151b2013-01-24 14:25:36 +01002538int iwl_mvm_sta_tx_agg_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2539 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
2540{
Johannes Berg5b577a92013-11-14 18:20:04 +01002541 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002542 struct iwl_mvm_tid_data *tid_data;
Liad Kaufmandd321622017-04-05 16:25:11 +03002543 u16 normalized_ssn;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002544 int txq_id;
Liad Kaufman4ecafae2015-07-14 13:36:18 +03002545 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002546
2547 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
2548 return -EINVAL;
2549
2550 if (mvmsta->tid_data[tid].state != IWL_AGG_OFF) {
2551 IWL_ERR(mvm, "Start AGG when state is not IWL_AGG_OFF %d!\n",
2552 mvmsta->tid_data[tid].state);
2553 return -ENXIO;
2554 }
2555
2556 lockdep_assert_held(&mvm->mutex);
2557
Arik Nemtsovb2492502014-03-13 12:21:50 +02002558 spin_lock_bh(&mvmsta->lock);
2559
2560 /* possible race condition - we entered D0i3 while starting agg */
2561 if (test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status)) {
2562 spin_unlock_bh(&mvmsta->lock);
2563 IWL_ERR(mvm, "Entered D0i3 while starting Tx agg\n");
2564 return -EIO;
2565 }
2566
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02002567 spin_lock(&mvm->queue_info_lock);
Liad Kaufman4ecafae2015-07-14 13:36:18 +03002568
Liad Kaufmancf961e12015-08-13 19:16:08 +03002569 /*
2570 * Note the possible cases:
2571 * 1. In DQA mode with an enabled TXQ - TXQ needs to become agg'ed
2572 * 2. Non-DQA mode: the TXQ hasn't yet been enabled, so find a free
2573 * one and mark it as reserved
2574 * 3. In DQA mode, but no traffic yet on this TID: same treatment as in
2575 * non-DQA mode, since the TXQ hasn't yet been allocated
Sara Sharon34e10862017-02-23 13:15:07 +02002576 * Don't support case 3 for new TX path as it is not expected to happen
2577 * and aggregation will be offloaded soon anyway
Liad Kaufmancf961e12015-08-13 19:16:08 +03002578 */
2579 txq_id = mvmsta->tid_data[tid].txq_id;
Sara Sharon34e10862017-02-23 13:15:07 +02002580 if (iwl_mvm_has_new_tx_api(mvm)) {
2581 if (txq_id == IWL_MVM_INVALID_QUEUE) {
2582 ret = -ENXIO;
2583 goto release_locks;
2584 }
2585 } else if (iwl_mvm_is_dqa_supported(mvm) &&
2586 unlikely(mvm->queue_info[txq_id].status ==
2587 IWL_MVM_QUEUE_SHARED)) {
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02002588 ret = -ENXIO;
2589 IWL_DEBUG_TX_QUEUES(mvm,
2590 "Can't start tid %d agg on shared queue!\n",
2591 tid);
2592 goto release_locks;
2593 } else if (!iwl_mvm_is_dqa_supported(mvm) ||
Liad Kaufmancf961e12015-08-13 19:16:08 +03002594 mvm->queue_info[txq_id].status != IWL_MVM_QUEUE_READY) {
Liad Kaufman9794c642015-08-19 17:34:28 +03002595 txq_id = iwl_mvm_find_free_queue(mvm, mvmsta->sta_id,
2596 mvm->first_agg_queue,
Liad Kaufmancf961e12015-08-13 19:16:08 +03002597 mvm->last_agg_queue);
2598 if (txq_id < 0) {
2599 ret = txq_id;
Liad Kaufmancf961e12015-08-13 19:16:08 +03002600 IWL_ERR(mvm, "Failed to allocate agg queue\n");
2601 goto release_locks;
2602 }
Sara Sharon01796ff2016-11-16 17:04:36 +02002603 /*
2604 * TXQ shouldn't be in inactive mode for non-DQA, so getting
2605 * an inactive queue from iwl_mvm_find_free_queue() is
2606 * certainly a bug
2607 */
2608 WARN_ON(mvm->queue_info[txq_id].status ==
2609 IWL_MVM_QUEUE_INACTIVE);
Liad Kaufmancf961e12015-08-13 19:16:08 +03002610
2611 /* TXQ hasn't yet been enabled, so mark it only as reserved */
2612 mvm->queue_info[txq_id].status = IWL_MVM_QUEUE_RESERVED;
Liad Kaufman4ecafae2015-07-14 13:36:18 +03002613 }
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02002614
2615 spin_unlock(&mvm->queue_info_lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002616
Liad Kaufmancf961e12015-08-13 19:16:08 +03002617 IWL_DEBUG_TX_QUEUES(mvm,
2618 "AGG for tid %d will be on queue #%d\n",
2619 tid, txq_id);
2620
Johannes Berg8ca151b2013-01-24 14:25:36 +01002621 tid_data = &mvmsta->tid_data[tid];
Johannes Berg9a886582013-02-15 19:25:00 +01002622 tid_data->ssn = IEEE80211_SEQ_TO_SN(tid_data->seq_number);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002623 tid_data->txq_id = txq_id;
2624 *ssn = tid_data->ssn;
2625
2626 IWL_DEBUG_TX_QUEUES(mvm,
2627 "Start AGG: sta %d tid %d queue %d - ssn = %d, next_recl = %d\n",
2628 mvmsta->sta_id, tid, txq_id, tid_data->ssn,
2629 tid_data->next_reclaimed);
2630
Liad Kaufmandd321622017-04-05 16:25:11 +03002631 /*
2632 * In A000 HW, the next_reclaimed index is only 8 bit, so we'll need
2633 * to align the wrap around of ssn so we compare relevant values.
2634 */
2635 normalized_ssn = tid_data->ssn;
2636 if (mvm->trans->cfg->gen2)
2637 normalized_ssn &= 0xff;
2638
2639 if (normalized_ssn == tid_data->next_reclaimed) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002640 tid_data->state = IWL_AGG_STARTING;
2641 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2642 } else {
2643 tid_data->state = IWL_EMPTYING_HW_QUEUE_ADDBA;
2644 }
2645
Liad Kaufman4ecafae2015-07-14 13:36:18 +03002646 ret = 0;
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02002647 goto out;
Liad Kaufman4ecafae2015-07-14 13:36:18 +03002648
2649release_locks:
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02002650 spin_unlock(&mvm->queue_info_lock);
2651out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002652 spin_unlock_bh(&mvmsta->lock);
2653
Liad Kaufman4ecafae2015-07-14 13:36:18 +03002654 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002655}
2656
2657int iwl_mvm_sta_tx_agg_oper(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +02002658 struct ieee80211_sta *sta, u16 tid, u8 buf_size,
2659 bool amsdu)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002660{
Johannes Berg5b577a92013-11-14 18:20:04 +01002661 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002662 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
Emmanuel Grumbach5d42e7b2015-03-19 20:04:51 +02002663 unsigned int wdg_timeout =
2664 iwl_mvm_get_wd_timeout(mvm, vif, sta->tdls, false);
Emmanuel Grumbacheea76c32016-02-21 16:29:17 +02002665 int queue, ret;
Liad Kaufmancf961e12015-08-13 19:16:08 +03002666 bool alloc_queue = true;
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02002667 enum iwl_mvm_queue_status queue_status;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002668 u16 ssn;
2669
Emmanuel Grumbacheea76c32016-02-21 16:29:17 +02002670 struct iwl_trans_txq_scd_cfg cfg = {
2671 .sta_id = mvmsta->sta_id,
2672 .tid = tid,
2673 .frame_limit = buf_size,
2674 .aggregate = true,
2675 };
2676
Eyal Shapiraefed6642014-09-14 15:58:53 +03002677 BUILD_BUG_ON((sizeof(mvmsta->agg_tids) * BITS_PER_BYTE)
2678 != IWL_MAX_TID_COUNT);
2679
Johannes Berg8ca151b2013-01-24 14:25:36 +01002680 buf_size = min_t(int, buf_size, LINK_QUAL_AGG_FRAME_LIMIT_DEF);
2681
2682 spin_lock_bh(&mvmsta->lock);
2683 ssn = tid_data->ssn;
2684 queue = tid_data->txq_id;
2685 tid_data->state = IWL_AGG_ON;
Eyal Shapiraefed6642014-09-14 15:58:53 +03002686 mvmsta->agg_tids |= BIT(tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002687 tid_data->ssn = 0xffff;
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +02002688 tid_data->amsdu_in_ampdu_allowed = amsdu;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002689 spin_unlock_bh(&mvmsta->lock);
2690
Sara Sharon34e10862017-02-23 13:15:07 +02002691 if (iwl_mvm_has_new_tx_api(mvm)) {
2692 /*
2693 * If no queue iwl_mvm_sta_tx_agg_start() would have failed so
2694 * no need to check queue's status
2695 */
2696 if (buf_size < mvmsta->max_agg_bufsize)
2697 return -ENOTSUPP;
2698
2699 ret = iwl_mvm_sta_tx_agg(mvm, sta, tid, queue, true);
2700 if (ret)
2701 return -EIO;
2702 goto out;
2703 }
2704
Emmanuel Grumbacheea76c32016-02-21 16:29:17 +02002705 cfg.fifo = iwl_mvm_ac_to_tx_fifo[tid_to_mac80211_ac[tid]];
Johannes Berg8ca151b2013-01-24 14:25:36 +01002706
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02002707 spin_lock_bh(&mvm->queue_info_lock);
2708 queue_status = mvm->queue_info[queue].status;
2709 spin_unlock_bh(&mvm->queue_info_lock);
2710
Liad Kaufmancf961e12015-08-13 19:16:08 +03002711 /* In DQA mode, the existing queue might need to be reconfigured */
2712 if (iwl_mvm_is_dqa_supported(mvm)) {
Liad Kaufmancf961e12015-08-13 19:16:08 +03002713 /* Maybe there is no need to even alloc a queue... */
2714 if (mvm->queue_info[queue].status == IWL_MVM_QUEUE_READY)
2715 alloc_queue = false;
Liad Kaufmancf961e12015-08-13 19:16:08 +03002716
2717 /*
2718 * Only reconfig the SCD for the queue if the window size has
2719 * changed from current (become smaller)
2720 */
2721 if (!alloc_queue && buf_size < mvmsta->max_agg_bufsize) {
2722 /*
2723 * If reconfiguring an existing queue, it first must be
2724 * drained
2725 */
Sara Sharona1a57872017-03-05 11:38:58 +02002726 ret = iwl_trans_wait_tx_queues_empty(mvm->trans,
2727 BIT(queue));
Liad Kaufmancf961e12015-08-13 19:16:08 +03002728 if (ret) {
2729 IWL_ERR(mvm,
2730 "Error draining queue before reconfig\n");
2731 return ret;
2732 }
2733
2734 ret = iwl_mvm_reconfig_scd(mvm, queue, cfg.fifo,
2735 mvmsta->sta_id, tid,
2736 buf_size, ssn);
2737 if (ret) {
2738 IWL_ERR(mvm,
2739 "Error reconfiguring TXQ #%d\n", queue);
2740 return ret;
2741 }
2742 }
2743 }
2744
2745 if (alloc_queue)
2746 iwl_mvm_enable_txq(mvm, queue,
2747 vif->hw_queue[tid_to_mac80211_ac[tid]], ssn,
2748 &cfg, wdg_timeout);
Andrei Otcheretianskifa7878e2015-05-05 09:28:16 +03002749
Liad Kaufman9f9af3d2015-12-23 16:03:46 +02002750 /* Send ADD_STA command to enable aggs only if the queue isn't shared */
2751 if (queue_status != IWL_MVM_QUEUE_SHARED) {
2752 ret = iwl_mvm_sta_tx_agg(mvm, sta, tid, queue, true);
2753 if (ret)
2754 return -EIO;
2755 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002756
Liad Kaufman4ecafae2015-07-14 13:36:18 +03002757 /* No need to mark as reserved */
2758 spin_lock_bh(&mvm->queue_info_lock);
Liad Kaufmancf961e12015-08-13 19:16:08 +03002759 mvm->queue_info[queue].status = IWL_MVM_QUEUE_READY;
Liad Kaufman4ecafae2015-07-14 13:36:18 +03002760 spin_unlock_bh(&mvm->queue_info_lock);
2761
Sara Sharon34e10862017-02-23 13:15:07 +02002762out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002763 /*
2764 * Even though in theory the peer could have different
2765 * aggregation reorder buffer sizes for different sessions,
2766 * our ucode doesn't allow for that and has a global limit
2767 * for each station. Therefore, use the minimum of all the
2768 * aggregation sessions and our default value.
2769 */
2770 mvmsta->max_agg_bufsize =
2771 min(mvmsta->max_agg_bufsize, buf_size);
2772 mvmsta->lq_sta.lq.agg_frame_cnt_limit = mvmsta->max_agg_bufsize;
2773
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03002774 IWL_DEBUG_HT(mvm, "Tx aggregation enabled on ra = %pM tid = %d\n",
2775 sta->addr, tid);
2776
Eyal Shapira9e680942013-11-09 00:16:16 +02002777 return iwl_mvm_send_lq_cmd(mvm, &mvmsta->lq_sta.lq, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002778}
2779
Sara Sharon34e10862017-02-23 13:15:07 +02002780static void iwl_mvm_unreserve_agg_queue(struct iwl_mvm *mvm,
2781 struct iwl_mvm_sta *mvmsta,
2782 u16 txq_id)
2783{
2784 if (iwl_mvm_has_new_tx_api(mvm))
2785 return;
2786
2787 spin_lock_bh(&mvm->queue_info_lock);
2788 /*
2789 * The TXQ is marked as reserved only if no traffic came through yet
2790 * This means no traffic has been sent on this TID (agg'd or not), so
2791 * we no longer have use for the queue. Since it hasn't even been
2792 * allocated through iwl_mvm_enable_txq, so we can just mark it back as
2793 * free.
2794 */
2795 if (mvm->queue_info[txq_id].status == IWL_MVM_QUEUE_RESERVED)
2796 mvm->queue_info[txq_id].status = IWL_MVM_QUEUE_FREE;
2797
2798 spin_unlock_bh(&mvm->queue_info_lock);
2799}
2800
Johannes Berg8ca151b2013-01-24 14:25:36 +01002801int iwl_mvm_sta_tx_agg_stop(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2802 struct ieee80211_sta *sta, u16 tid)
2803{
Johannes Berg5b577a92013-11-14 18:20:04 +01002804 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002805 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
2806 u16 txq_id;
2807 int err;
2808
Emmanuel Grumbachf9aa8dd2013-03-04 09:11:08 +02002809 /*
2810 * If mac80211 is cleaning its state, then say that we finished since
2811 * our state has been cleared anyway.
2812 */
2813 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
2814 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2815 return 0;
2816 }
2817
Johannes Berg8ca151b2013-01-24 14:25:36 +01002818 spin_lock_bh(&mvmsta->lock);
2819
2820 txq_id = tid_data->txq_id;
2821
2822 IWL_DEBUG_TX_QUEUES(mvm, "Stop AGG: sta %d tid %d q %d state %d\n",
2823 mvmsta->sta_id, tid, txq_id, tid_data->state);
2824
Eyal Shapiraefed6642014-09-14 15:58:53 +03002825 mvmsta->agg_tids &= ~BIT(tid);
2826
Sara Sharon34e10862017-02-23 13:15:07 +02002827 iwl_mvm_unreserve_agg_queue(mvm, mvmsta, txq_id);
Liad Kaufman4ecafae2015-07-14 13:36:18 +03002828
Johannes Berg8ca151b2013-01-24 14:25:36 +01002829 switch (tid_data->state) {
2830 case IWL_AGG_ON:
Johannes Berg9a886582013-02-15 19:25:00 +01002831 tid_data->ssn = IEEE80211_SEQ_TO_SN(tid_data->seq_number);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002832
2833 IWL_DEBUG_TX_QUEUES(mvm,
2834 "ssn = %d, next_recl = %d\n",
2835 tid_data->ssn, tid_data->next_reclaimed);
2836
Liad Kaufman664e9682017-04-05 10:35:18 +03002837 /*
2838 * There are still packets for this RA / TID in the HW.
2839 * Not relevant for DQA mode, since there is no need to disable
2840 * the queue.
2841 */
2842 if (!iwl_mvm_is_dqa_supported(mvm) &&
2843 tid_data->ssn != tid_data->next_reclaimed) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002844 tid_data->state = IWL_EMPTYING_HW_QUEUE_DELBA;
2845 err = 0;
2846 break;
2847 }
2848
2849 tid_data->ssn = 0xffff;
Johannes Bergf7f89e72014-08-05 15:24:44 +02002850 tid_data->state = IWL_AGG_OFF;
Johannes Bergf7f89e72014-08-05 15:24:44 +02002851 spin_unlock_bh(&mvmsta->lock);
2852
2853 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2854
2855 iwl_mvm_sta_tx_agg(mvm, sta, tid, txq_id, false);
2856
Liad Kaufmancf961e12015-08-13 19:16:08 +03002857 if (!iwl_mvm_is_dqa_supported(mvm)) {
2858 int mac_queue = vif->hw_queue[tid_to_mac80211_ac[tid]];
2859
2860 iwl_mvm_disable_txq(mvm, txq_id, mac_queue, tid, 0);
2861 }
Johannes Bergf7f89e72014-08-05 15:24:44 +02002862 return 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002863 case IWL_AGG_STARTING:
2864 case IWL_EMPTYING_HW_QUEUE_ADDBA:
2865 /*
2866 * The agg session has been stopped before it was set up. This
2867 * can happen when the AddBA timer times out for example.
2868 */
2869
2870 /* No barriers since we are under mutex */
2871 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002872
2873 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2874 tid_data->state = IWL_AGG_OFF;
2875 err = 0;
2876 break;
2877 default:
2878 IWL_ERR(mvm,
2879 "Stopping AGG while state not ON or starting for %d on %d (%d)\n",
2880 mvmsta->sta_id, tid, tid_data->state);
2881 IWL_ERR(mvm,
2882 "\ttid_data->txq_id = %d\n", tid_data->txq_id);
2883 err = -EINVAL;
2884 }
2885
2886 spin_unlock_bh(&mvmsta->lock);
2887
2888 return err;
2889}
2890
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02002891int iwl_mvm_sta_tx_agg_flush(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2892 struct ieee80211_sta *sta, u16 tid)
2893{
Johannes Berg5b577a92013-11-14 18:20:04 +01002894 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02002895 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
2896 u16 txq_id;
Johannes Bergb6658ff2013-07-24 13:55:51 +02002897 enum iwl_mvm_agg_state old_state;
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02002898
2899 /*
2900 * First set the agg state to OFF to avoid calling
2901 * ieee80211_stop_tx_ba_cb in iwl_mvm_check_ratid_empty.
2902 */
2903 spin_lock_bh(&mvmsta->lock);
2904 txq_id = tid_data->txq_id;
2905 IWL_DEBUG_TX_QUEUES(mvm, "Flush AGG: sta %d tid %d q %d state %d\n",
2906 mvmsta->sta_id, tid, txq_id, tid_data->state);
Johannes Bergb6658ff2013-07-24 13:55:51 +02002907 old_state = tid_data->state;
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02002908 tid_data->state = IWL_AGG_OFF;
Eyal Shapiraefed6642014-09-14 15:58:53 +03002909 mvmsta->agg_tids &= ~BIT(tid);
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02002910 spin_unlock_bh(&mvmsta->lock);
2911
Sara Sharon34e10862017-02-23 13:15:07 +02002912 iwl_mvm_unreserve_agg_queue(mvm, mvmsta, txq_id);
Liad Kaufman4ecafae2015-07-14 13:36:18 +03002913
Johannes Bergb6658ff2013-07-24 13:55:51 +02002914 if (old_state >= IWL_AGG_ON) {
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02002915 iwl_mvm_drain_sta(mvm, mvmsta, true);
Luca Coelho5888a402015-10-06 09:54:57 +03002916 if (iwl_mvm_flush_tx_path(mvm, BIT(txq_id), 0))
Johannes Bergb6658ff2013-07-24 13:55:51 +02002917 IWL_ERR(mvm, "Couldn't flush the AGG queue\n");
Sara Sharond6d517b2017-03-06 10:16:11 +02002918
2919 if (iwl_mvm_has_new_tx_api(mvm))
2920 iwl_trans_wait_txq_empty(mvm->trans, txq_id);
2921
2922 else
2923 iwl_trans_wait_tx_queues_empty(mvm->trans, BIT(txq_id));
2924
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02002925 iwl_mvm_drain_sta(mvm, mvmsta, false);
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02002926
Johannes Bergf7f89e72014-08-05 15:24:44 +02002927 iwl_mvm_sta_tx_agg(mvm, sta, tid, txq_id, false);
2928
Liad Kaufmancf961e12015-08-13 19:16:08 +03002929 if (!iwl_mvm_is_dqa_supported(mvm)) {
2930 int mac_queue = vif->hw_queue[tid_to_mac80211_ac[tid]];
2931
2932 iwl_mvm_disable_txq(mvm, tid_data->txq_id, mac_queue,
2933 tid, 0);
2934 }
Johannes Bergb6658ff2013-07-24 13:55:51 +02002935 }
2936
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02002937 return 0;
2938}
2939
Johannes Berg8ca151b2013-01-24 14:25:36 +01002940static int iwl_mvm_set_fw_key_idx(struct iwl_mvm *mvm)
2941{
Johannes Berg2dc2a152015-06-16 17:09:18 +02002942 int i, max = -1, max_offs = -1;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002943
2944 lockdep_assert_held(&mvm->mutex);
2945
Johannes Berg2dc2a152015-06-16 17:09:18 +02002946 /* Pick the unused key offset with the highest 'deleted'
2947 * counter. Every time a key is deleted, all the counters
2948 * are incremented and the one that was just deleted is
2949 * reset to zero. Thus, the highest counter is the one
2950 * that was deleted longest ago. Pick that one.
2951 */
2952 for (i = 0; i < STA_KEY_MAX_NUM; i++) {
2953 if (test_bit(i, mvm->fw_key_table))
2954 continue;
2955 if (mvm->fw_key_deleted[i] > max) {
2956 max = mvm->fw_key_deleted[i];
2957 max_offs = i;
2958 }
2959 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002960
Johannes Berg2dc2a152015-06-16 17:09:18 +02002961 if (max_offs < 0)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002962 return STA_KEY_IDX_INVALID;
2963
Johannes Berg2dc2a152015-06-16 17:09:18 +02002964 return max_offs;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002965}
2966
Johannes Berg5f7a1842015-12-11 09:36:10 +01002967static struct iwl_mvm_sta *iwl_mvm_get_key_sta(struct iwl_mvm *mvm,
2968 struct ieee80211_vif *vif,
2969 struct ieee80211_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002970{
Johannes Berg5b530e92014-12-23 16:00:17 +01002971 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002972
Johannes Berg5f7a1842015-12-11 09:36:10 +01002973 if (sta)
2974 return iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002975
2976 /*
2977 * The device expects GTKs for station interfaces to be
2978 * installed as GTKs for the AP station. If we have no
2979 * station ID, then use AP's station ID.
2980 */
2981 if (vif->type == NL80211_IFTYPE_STATION &&
Sara Sharon0ae98812017-01-04 14:53:58 +02002982 mvmvif->ap_sta_id != IWL_MVM_INVALID_STA) {
Avri Altman9513c5e2015-10-19 16:29:11 +02002983 u8 sta_id = mvmvif->ap_sta_id;
2984
Emmanuel Grumbach7d6a1ab2016-05-15 10:20:29 +03002985 sta = rcu_dereference_check(mvm->fw_id_to_mac_id[sta_id],
2986 lockdep_is_held(&mvm->mutex));
2987
Avri Altman9513c5e2015-10-19 16:29:11 +02002988 /*
2989 * It is possible that the 'sta' parameter is NULL,
2990 * for example when a GTK is removed - the sta_id will then
2991 * be the AP ID, and no station was passed by mac80211.
2992 */
Emmanuel Grumbach7d6a1ab2016-05-15 10:20:29 +03002993 if (IS_ERR_OR_NULL(sta))
2994 return NULL;
2995
2996 return iwl_mvm_sta_from_mac80211(sta);
Avri Altman9513c5e2015-10-19 16:29:11 +02002997 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002998
Johannes Berg5f7a1842015-12-11 09:36:10 +01002999 return NULL;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003000}
3001
3002static int iwl_mvm_send_sta_key(struct iwl_mvm *mvm,
David Spinadel85aeb582017-03-30 19:43:53 +03003003 u32 sta_id,
Sara Sharon45c458b2016-11-09 15:43:26 +02003004 struct ieee80211_key_conf *key, bool mcast,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003005 u32 tkip_iv32, u16 *tkip_p1k, u32 cmd_flags,
3006 u8 key_offset)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003007{
Sara Sharon45c458b2016-11-09 15:43:26 +02003008 union {
3009 struct iwl_mvm_add_sta_key_cmd_v1 cmd_v1;
3010 struct iwl_mvm_add_sta_key_cmd cmd;
3011 } u = {};
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03003012 __le16 key_flags;
Johannes Berg79920742014-11-03 15:43:04 +01003013 int ret;
3014 u32 status;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003015 u16 keyidx;
Sara Sharon45c458b2016-11-09 15:43:26 +02003016 u64 pn = 0;
3017 int i, size;
3018 bool new_api = fw_has_api(&mvm->fw->ucode_capa,
3019 IWL_UCODE_TLV_API_TKIP_MIC_KEYS);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003020
David Spinadel85aeb582017-03-30 19:43:53 +03003021 if (sta_id == IWL_MVM_INVALID_STA)
3022 return -EINVAL;
3023
Sara Sharon45c458b2016-11-09 15:43:26 +02003024 keyidx = (key->keyidx << STA_KEY_FLG_KEYID_POS) &
Johannes Berg8ca151b2013-01-24 14:25:36 +01003025 STA_KEY_FLG_KEYID_MSK;
3026 key_flags = cpu_to_le16(keyidx);
3027 key_flags |= cpu_to_le16(STA_KEY_FLG_WEP_KEY_MAP);
3028
Sara Sharon45c458b2016-11-09 15:43:26 +02003029 switch (key->cipher) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01003030 case WLAN_CIPHER_SUITE_TKIP:
3031 key_flags |= cpu_to_le16(STA_KEY_FLG_TKIP);
Sara Sharon45c458b2016-11-09 15:43:26 +02003032 if (new_api) {
3033 memcpy((void *)&u.cmd.tx_mic_key,
3034 &key->key[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY],
3035 IWL_MIC_KEY_SIZE);
3036
3037 memcpy((void *)&u.cmd.rx_mic_key,
3038 &key->key[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY],
3039 IWL_MIC_KEY_SIZE);
3040 pn = atomic64_read(&key->tx_pn);
3041
3042 } else {
3043 u.cmd_v1.tkip_rx_tsc_byte2 = tkip_iv32;
3044 for (i = 0; i < 5; i++)
3045 u.cmd_v1.tkip_rx_ttak[i] =
3046 cpu_to_le16(tkip_p1k[i]);
3047 }
3048 memcpy(u.cmd.common.key, key->key, key->keylen);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003049 break;
3050 case WLAN_CIPHER_SUITE_CCMP:
3051 key_flags |= cpu_to_le16(STA_KEY_FLG_CCM);
Sara Sharon45c458b2016-11-09 15:43:26 +02003052 memcpy(u.cmd.common.key, key->key, key->keylen);
3053 if (new_api)
3054 pn = atomic64_read(&key->tx_pn);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003055 break;
Johannes Bergba3943b2014-11-12 23:54:48 +01003056 case WLAN_CIPHER_SUITE_WEP104:
3057 key_flags |= cpu_to_le16(STA_KEY_FLG_WEP_13BYTES);
John W. Linvilleaa0cb082015-01-12 16:18:11 -05003058 /* fall through */
Johannes Bergba3943b2014-11-12 23:54:48 +01003059 case WLAN_CIPHER_SUITE_WEP40:
3060 key_flags |= cpu_to_le16(STA_KEY_FLG_WEP);
Sara Sharon45c458b2016-11-09 15:43:26 +02003061 memcpy(u.cmd.common.key + 3, key->key, key->keylen);
Johannes Bergba3943b2014-11-12 23:54:48 +01003062 break;
Ayala Beker2a53d162016-04-07 16:21:57 +03003063 case WLAN_CIPHER_SUITE_GCMP_256:
3064 key_flags |= cpu_to_le16(STA_KEY_FLG_KEY_32BYTES);
3065 /* fall through */
3066 case WLAN_CIPHER_SUITE_GCMP:
3067 key_flags |= cpu_to_le16(STA_KEY_FLG_GCMP);
Sara Sharon45c458b2016-11-09 15:43:26 +02003068 memcpy(u.cmd.common.key, key->key, key->keylen);
3069 if (new_api)
3070 pn = atomic64_read(&key->tx_pn);
Ayala Beker2a53d162016-04-07 16:21:57 +03003071 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003072 default:
Max Stepanove36e5432013-08-27 19:56:13 +03003073 key_flags |= cpu_to_le16(STA_KEY_FLG_EXT);
Sara Sharon45c458b2016-11-09 15:43:26 +02003074 memcpy(u.cmd.common.key, key->key, key->keylen);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003075 }
3076
Johannes Bergba3943b2014-11-12 23:54:48 +01003077 if (mcast)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003078 key_flags |= cpu_to_le16(STA_KEY_MULTICAST);
3079
Sara Sharon45c458b2016-11-09 15:43:26 +02003080 u.cmd.common.key_offset = key_offset;
3081 u.cmd.common.key_flags = key_flags;
David Spinadel85aeb582017-03-30 19:43:53 +03003082 u.cmd.common.sta_id = sta_id;
Sara Sharon45c458b2016-11-09 15:43:26 +02003083
3084 if (new_api) {
3085 u.cmd.transmit_seq_cnt = cpu_to_le64(pn);
3086 size = sizeof(u.cmd);
3087 } else {
3088 size = sizeof(u.cmd_v1);
3089 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01003090
3091 status = ADD_STA_SUCCESS;
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03003092 if (cmd_flags & CMD_ASYNC)
Sara Sharon45c458b2016-11-09 15:43:26 +02003093 ret = iwl_mvm_send_cmd_pdu(mvm, ADD_STA_KEY, CMD_ASYNC, size,
3094 &u.cmd);
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03003095 else
Sara Sharon45c458b2016-11-09 15:43:26 +02003096 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA_KEY, size,
3097 &u.cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003098
3099 switch (status) {
3100 case ADD_STA_SUCCESS:
3101 IWL_DEBUG_WEP(mvm, "MODIFY_STA: set dynamic key passed\n");
3102 break;
3103 default:
3104 ret = -EIO;
3105 IWL_ERR(mvm, "MODIFY_STA: set dynamic key failed\n");
3106 break;
3107 }
3108
3109 return ret;
3110}
3111
3112static int iwl_mvm_send_sta_igtk(struct iwl_mvm *mvm,
3113 struct ieee80211_key_conf *keyconf,
3114 u8 sta_id, bool remove_key)
3115{
3116 struct iwl_mvm_mgmt_mcast_key_cmd igtk_cmd = {};
3117
3118 /* verify the key details match the required command's expectations */
Ayala Beker8e160ab2016-04-11 11:37:38 +03003119 if (WARN_ON((keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE) ||
3120 (keyconf->keyidx != 4 && keyconf->keyidx != 5) ||
3121 (keyconf->cipher != WLAN_CIPHER_SUITE_AES_CMAC &&
3122 keyconf->cipher != WLAN_CIPHER_SUITE_BIP_GMAC_128 &&
3123 keyconf->cipher != WLAN_CIPHER_SUITE_BIP_GMAC_256)))
3124 return -EINVAL;
3125
3126 if (WARN_ON(!iwl_mvm_has_new_rx_api(mvm) &&
3127 keyconf->cipher != WLAN_CIPHER_SUITE_AES_CMAC))
Johannes Berg8ca151b2013-01-24 14:25:36 +01003128 return -EINVAL;
3129
3130 igtk_cmd.key_id = cpu_to_le32(keyconf->keyidx);
3131 igtk_cmd.sta_id = cpu_to_le32(sta_id);
3132
3133 if (remove_key) {
3134 igtk_cmd.ctrl_flags |= cpu_to_le32(STA_KEY_NOT_VALID);
3135 } else {
3136 struct ieee80211_key_seq seq;
3137 const u8 *pn;
3138
Ayala Bekeraa950522016-06-01 00:28:09 +03003139 switch (keyconf->cipher) {
3140 case WLAN_CIPHER_SUITE_AES_CMAC:
3141 igtk_cmd.ctrl_flags |= cpu_to_le32(STA_KEY_FLG_CCM);
3142 break;
Ayala Beker8e160ab2016-04-11 11:37:38 +03003143 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
3144 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
3145 igtk_cmd.ctrl_flags |= cpu_to_le32(STA_KEY_FLG_GCMP);
3146 break;
Ayala Bekeraa950522016-06-01 00:28:09 +03003147 default:
3148 return -EINVAL;
3149 }
3150
Ayala Beker8e160ab2016-04-11 11:37:38 +03003151 memcpy(igtk_cmd.igtk, keyconf->key, keyconf->keylen);
3152 if (keyconf->cipher == WLAN_CIPHER_SUITE_BIP_GMAC_256)
3153 igtk_cmd.ctrl_flags |=
3154 cpu_to_le32(STA_KEY_FLG_KEY_32BYTES);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003155 ieee80211_get_key_rx_seq(keyconf, 0, &seq);
3156 pn = seq.aes_cmac.pn;
3157 igtk_cmd.receive_seq_cnt = cpu_to_le64(((u64) pn[5] << 0) |
3158 ((u64) pn[4] << 8) |
3159 ((u64) pn[3] << 16) |
3160 ((u64) pn[2] << 24) |
3161 ((u64) pn[1] << 32) |
3162 ((u64) pn[0] << 40));
3163 }
3164
3165 IWL_DEBUG_INFO(mvm, "%s igtk for sta %u\n",
3166 remove_key ? "removing" : "installing",
3167 igtk_cmd.sta_id);
3168
Ayala Beker8e160ab2016-04-11 11:37:38 +03003169 if (!iwl_mvm_has_new_rx_api(mvm)) {
3170 struct iwl_mvm_mgmt_mcast_key_cmd_v1 igtk_cmd_v1 = {
3171 .ctrl_flags = igtk_cmd.ctrl_flags,
3172 .key_id = igtk_cmd.key_id,
3173 .sta_id = igtk_cmd.sta_id,
3174 .receive_seq_cnt = igtk_cmd.receive_seq_cnt
3175 };
3176
3177 memcpy(igtk_cmd_v1.igtk, igtk_cmd.igtk,
3178 ARRAY_SIZE(igtk_cmd_v1.igtk));
3179 return iwl_mvm_send_cmd_pdu(mvm, MGMT_MCAST_KEY, 0,
3180 sizeof(igtk_cmd_v1), &igtk_cmd_v1);
3181 }
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03003182 return iwl_mvm_send_cmd_pdu(mvm, MGMT_MCAST_KEY, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003183 sizeof(igtk_cmd), &igtk_cmd);
3184}
3185
3186
3187static inline u8 *iwl_mvm_get_mac_addr(struct iwl_mvm *mvm,
3188 struct ieee80211_vif *vif,
3189 struct ieee80211_sta *sta)
3190{
Johannes Berg5b530e92014-12-23 16:00:17 +01003191 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003192
3193 if (sta)
3194 return sta->addr;
3195
3196 if (vif->type == NL80211_IFTYPE_STATION &&
Sara Sharon0ae98812017-01-04 14:53:58 +02003197 mvmvif->ap_sta_id != IWL_MVM_INVALID_STA) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01003198 u8 sta_id = mvmvif->ap_sta_id;
3199 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
3200 lockdep_is_held(&mvm->mutex));
3201 return sta->addr;
3202 }
3203
3204
3205 return NULL;
3206}
3207
Johannes Berg2f6319d2014-11-12 23:39:56 +01003208static int __iwl_mvm_set_sta_key(struct iwl_mvm *mvm,
3209 struct ieee80211_vif *vif,
3210 struct ieee80211_sta *sta,
Johannes Bergba3943b2014-11-12 23:54:48 +01003211 struct ieee80211_key_conf *keyconf,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003212 u8 key_offset,
Johannes Bergba3943b2014-11-12 23:54:48 +01003213 bool mcast)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003214{
Johannes Berg8ca151b2013-01-24 14:25:36 +01003215 int ret;
Johannes Berg2f6319d2014-11-12 23:39:56 +01003216 const u8 *addr;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003217 struct ieee80211_key_seq seq;
3218 u16 p1k[5];
David Spinadel85aeb582017-03-30 19:43:53 +03003219 u32 sta_id;
3220
3221 if (sta) {
3222 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
3223
3224 sta_id = mvm_sta->sta_id;
3225 } else if (vif->type == NL80211_IFTYPE_AP &&
3226 !(keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
3227 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
3228
3229 sta_id = mvmvif->mcast_sta.sta_id;
3230 } else {
3231 IWL_ERR(mvm, "Failed to find station id\n");
3232 return -EINVAL;
3233 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01003234
Johannes Berg8ca151b2013-01-24 14:25:36 +01003235 switch (keyconf->cipher) {
3236 case WLAN_CIPHER_SUITE_TKIP:
David Spinadel85aeb582017-03-30 19:43:53 +03003237 if (vif->type == NL80211_IFTYPE_AP) {
3238 ret = -EINVAL;
3239 break;
3240 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01003241 addr = iwl_mvm_get_mac_addr(mvm, vif, sta);
3242 /* get phase 1 key from mac80211 */
3243 ieee80211_get_key_rx_seq(keyconf, 0, &seq);
3244 ieee80211_get_tkip_rx_p1k(keyconf, addr, seq.tkip.iv32, p1k);
David Spinadel85aeb582017-03-30 19:43:53 +03003245 ret = iwl_mvm_send_sta_key(mvm, sta_id, keyconf, mcast,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003246 seq.tkip.iv32, p1k, 0, key_offset);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003247 break;
3248 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergba3943b2014-11-12 23:54:48 +01003249 case WLAN_CIPHER_SUITE_WEP40:
3250 case WLAN_CIPHER_SUITE_WEP104:
Ayala Beker2a53d162016-04-07 16:21:57 +03003251 case WLAN_CIPHER_SUITE_GCMP:
3252 case WLAN_CIPHER_SUITE_GCMP_256:
David Spinadel85aeb582017-03-30 19:43:53 +03003253 ret = iwl_mvm_send_sta_key(mvm, sta_id, keyconf, mcast,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003254 0, NULL, 0, key_offset);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003255 break;
3256 default:
David Spinadel85aeb582017-03-30 19:43:53 +03003257 ret = iwl_mvm_send_sta_key(mvm, sta_id, keyconf, mcast,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003258 0, NULL, 0, key_offset);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003259 }
3260
Johannes Berg8ca151b2013-01-24 14:25:36 +01003261 return ret;
3262}
3263
Johannes Berg2f6319d2014-11-12 23:39:56 +01003264static int __iwl_mvm_remove_sta_key(struct iwl_mvm *mvm, u8 sta_id,
Johannes Bergba3943b2014-11-12 23:54:48 +01003265 struct ieee80211_key_conf *keyconf,
3266 bool mcast)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003267{
Sara Sharon45c458b2016-11-09 15:43:26 +02003268 union {
3269 struct iwl_mvm_add_sta_key_cmd_v1 cmd_v1;
3270 struct iwl_mvm_add_sta_key_cmd cmd;
3271 } u = {};
3272 bool new_api = fw_has_api(&mvm->fw->ucode_capa,
3273 IWL_UCODE_TLV_API_TKIP_MIC_KEYS);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003274 __le16 key_flags;
Sara Sharon45c458b2016-11-09 15:43:26 +02003275 int ret, size;
Johannes Berg79920742014-11-03 15:43:04 +01003276 u32 status;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003277
David Spinadel85aeb582017-03-30 19:43:53 +03003278 if (sta_id == IWL_MVM_INVALID_STA)
3279 return -EINVAL;
3280
Emmanuel Grumbach8115efb2013-02-05 10:08:35 +02003281 key_flags = cpu_to_le16((keyconf->keyidx << STA_KEY_FLG_KEYID_POS) &
3282 STA_KEY_FLG_KEYID_MSK);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003283 key_flags |= cpu_to_le16(STA_KEY_FLG_NO_ENC | STA_KEY_FLG_WEP_KEY_MAP);
3284 key_flags |= cpu_to_le16(STA_KEY_NOT_VALID);
3285
Johannes Bergba3943b2014-11-12 23:54:48 +01003286 if (mcast)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003287 key_flags |= cpu_to_le16(STA_KEY_MULTICAST);
3288
Sara Sharon45c458b2016-11-09 15:43:26 +02003289 /*
3290 * The fields assigned here are in the same location at the start
3291 * of the command, so we can do this union trick.
3292 */
3293 u.cmd.common.key_flags = key_flags;
3294 u.cmd.common.key_offset = keyconf->hw_key_idx;
3295 u.cmd.common.sta_id = sta_id;
3296
3297 size = new_api ? sizeof(u.cmd) : sizeof(u.cmd_v1);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003298
Johannes Berg8ca151b2013-01-24 14:25:36 +01003299 status = ADD_STA_SUCCESS;
Sara Sharon45c458b2016-11-09 15:43:26 +02003300 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA_KEY, size, &u.cmd,
3301 &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003302
3303 switch (status) {
3304 case ADD_STA_SUCCESS:
3305 IWL_DEBUG_WEP(mvm, "MODIFY_STA: remove sta key passed\n");
3306 break;
3307 default:
3308 ret = -EIO;
3309 IWL_ERR(mvm, "MODIFY_STA: remove sta key failed\n");
3310 break;
3311 }
3312
3313 return ret;
3314}
3315
Johannes Berg2f6319d2014-11-12 23:39:56 +01003316int iwl_mvm_set_sta_key(struct iwl_mvm *mvm,
3317 struct ieee80211_vif *vif,
3318 struct ieee80211_sta *sta,
3319 struct ieee80211_key_conf *keyconf,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003320 u8 key_offset)
Johannes Berg2f6319d2014-11-12 23:39:56 +01003321{
Johannes Bergba3943b2014-11-12 23:54:48 +01003322 bool mcast = !(keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE);
Johannes Berg5f7a1842015-12-11 09:36:10 +01003323 struct iwl_mvm_sta *mvm_sta;
David Spinadel85aeb582017-03-30 19:43:53 +03003324 u8 sta_id = IWL_MVM_INVALID_STA;
Johannes Berg2f6319d2014-11-12 23:39:56 +01003325 int ret;
Matti Gottlieb11828db2015-06-01 15:15:11 +03003326 static const u8 __maybe_unused zero_addr[ETH_ALEN] = {0};
Johannes Berg2f6319d2014-11-12 23:39:56 +01003327
3328 lockdep_assert_held(&mvm->mutex);
3329
David Spinadel85aeb582017-03-30 19:43:53 +03003330 if (vif->type != NL80211_IFTYPE_AP ||
3331 keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE) {
3332 /* Get the station id from the mvm local station table */
3333 mvm_sta = iwl_mvm_get_key_sta(mvm, vif, sta);
3334 if (!mvm_sta) {
3335 IWL_ERR(mvm, "Failed to find station\n");
Johannes Berg2f6319d2014-11-12 23:39:56 +01003336 return -EINVAL;
3337 }
David Spinadel85aeb582017-03-30 19:43:53 +03003338 sta_id = mvm_sta->sta_id;
Johannes Berg2f6319d2014-11-12 23:39:56 +01003339
David Spinadel85aeb582017-03-30 19:43:53 +03003340 if (keyconf->cipher == WLAN_CIPHER_SUITE_AES_CMAC ||
3341 keyconf->cipher == WLAN_CIPHER_SUITE_BIP_GMAC_128 ||
3342 keyconf->cipher == WLAN_CIPHER_SUITE_BIP_GMAC_256) {
3343 ret = iwl_mvm_send_sta_igtk(mvm, keyconf, sta_id,
3344 false);
3345 goto end;
3346 }
3347
3348 /*
3349 * It is possible that the 'sta' parameter is NULL, and thus
3350 * there is a need to retrieve the sta from the local station
3351 * table.
3352 */
3353 if (!sta) {
3354 sta = rcu_dereference_protected(
3355 mvm->fw_id_to_mac_id[sta_id],
3356 lockdep_is_held(&mvm->mutex));
3357 if (IS_ERR_OR_NULL(sta)) {
3358 IWL_ERR(mvm, "Invalid station id\n");
3359 return -EINVAL;
3360 }
3361 }
3362
3363 if (WARN_ON_ONCE(iwl_mvm_sta_from_mac80211(sta)->vif != vif))
3364 return -EINVAL;
3365 }
Johannes Berg2f6319d2014-11-12 23:39:56 +01003366
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003367 /* If the key_offset is not pre-assigned, we need to find a
3368 * new offset to use. In normal cases, the offset is not
3369 * pre-assigned, but during HW_RESTART we want to reuse the
3370 * same indices, so we pass them when this function is called.
3371 *
3372 * In D3 entry, we need to hardcoded the indices (because the
3373 * firmware hardcodes the PTK offset to 0). In this case, we
3374 * need to make sure we don't overwrite the hw_key_idx in the
3375 * keyconf structure, because otherwise we cannot configure
3376 * the original ones back when resuming.
3377 */
3378 if (key_offset == STA_KEY_IDX_INVALID) {
3379 key_offset = iwl_mvm_set_fw_key_idx(mvm);
3380 if (key_offset == STA_KEY_IDX_INVALID)
Johannes Berg2f6319d2014-11-12 23:39:56 +01003381 return -ENOSPC;
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003382 keyconf->hw_key_idx = key_offset;
Johannes Berg2f6319d2014-11-12 23:39:56 +01003383 }
3384
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003385 ret = __iwl_mvm_set_sta_key(mvm, vif, sta, keyconf, key_offset, mcast);
Luca Coelho9c3deeb2015-11-11 01:06:17 +02003386 if (ret)
Johannes Bergba3943b2014-11-12 23:54:48 +01003387 goto end;
Johannes Bergba3943b2014-11-12 23:54:48 +01003388
3389 /*
3390 * For WEP, the same key is used for multicast and unicast. Upload it
3391 * again, using the same key offset, and now pointing the other one
3392 * to the same key slot (offset).
3393 * If this fails, remove the original as well.
3394 */
David Spinadel85aeb582017-03-30 19:43:53 +03003395 if ((keyconf->cipher == WLAN_CIPHER_SUITE_WEP40 ||
3396 keyconf->cipher == WLAN_CIPHER_SUITE_WEP104) &&
3397 sta) {
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003398 ret = __iwl_mvm_set_sta_key(mvm, vif, sta, keyconf,
3399 key_offset, !mcast);
Johannes Bergba3943b2014-11-12 23:54:48 +01003400 if (ret) {
Johannes Bergba3943b2014-11-12 23:54:48 +01003401 __iwl_mvm_remove_sta_key(mvm, sta_id, keyconf, mcast);
Luca Coelho9c3deeb2015-11-11 01:06:17 +02003402 goto end;
Johannes Bergba3943b2014-11-12 23:54:48 +01003403 }
3404 }
Johannes Berg2f6319d2014-11-12 23:39:56 +01003405
Luca Coelho9c3deeb2015-11-11 01:06:17 +02003406 __set_bit(key_offset, mvm->fw_key_table);
3407
Johannes Berg2f6319d2014-11-12 23:39:56 +01003408end:
3409 IWL_DEBUG_WEP(mvm, "key: cipher=%x len=%d idx=%d sta=%pM ret=%d\n",
3410 keyconf->cipher, keyconf->keylen, keyconf->keyidx,
Matti Gottlieb11828db2015-06-01 15:15:11 +03003411 sta ? sta->addr : zero_addr, ret);
Johannes Berg2f6319d2014-11-12 23:39:56 +01003412 return ret;
3413}
3414
3415int iwl_mvm_remove_sta_key(struct iwl_mvm *mvm,
3416 struct ieee80211_vif *vif,
3417 struct ieee80211_sta *sta,
3418 struct ieee80211_key_conf *keyconf)
3419{
Johannes Bergba3943b2014-11-12 23:54:48 +01003420 bool mcast = !(keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE);
Johannes Berg5f7a1842015-12-11 09:36:10 +01003421 struct iwl_mvm_sta *mvm_sta;
Sara Sharon0ae98812017-01-04 14:53:58 +02003422 u8 sta_id = IWL_MVM_INVALID_STA;
Johannes Berg2dc2a152015-06-16 17:09:18 +02003423 int ret, i;
Johannes Berg2f6319d2014-11-12 23:39:56 +01003424
3425 lockdep_assert_held(&mvm->mutex);
3426
Johannes Berg5f7a1842015-12-11 09:36:10 +01003427 /* Get the station from the mvm local station table */
3428 mvm_sta = iwl_mvm_get_key_sta(mvm, vif, sta);
Luca Coelho71793b7d2017-03-30 12:04:47 +03003429 if (mvm_sta)
3430 sta_id = mvm_sta->sta_id;
David Spinadel85aeb582017-03-30 19:43:53 +03003431 else if (!sta && vif->type == NL80211_IFTYPE_AP && mcast)
3432 sta_id = iwl_mvm_vif_from_mac80211(vif)->mcast_sta.sta_id;
3433
Johannes Berg2f6319d2014-11-12 23:39:56 +01003434
3435 IWL_DEBUG_WEP(mvm, "mvm remove dynamic key: idx=%d sta=%d\n",
3436 keyconf->keyidx, sta_id);
3437
Luca Coelho71793b7d2017-03-30 12:04:47 +03003438 if (mvm_sta && (keyconf->cipher == WLAN_CIPHER_SUITE_AES_CMAC ||
3439 keyconf->cipher == WLAN_CIPHER_SUITE_BIP_GMAC_128 ||
3440 keyconf->cipher == WLAN_CIPHER_SUITE_BIP_GMAC_256))
Johannes Berg2f6319d2014-11-12 23:39:56 +01003441 return iwl_mvm_send_sta_igtk(mvm, keyconf, sta_id, true);
3442
3443 if (!__test_and_clear_bit(keyconf->hw_key_idx, mvm->fw_key_table)) {
3444 IWL_ERR(mvm, "offset %d not used in fw key table.\n",
3445 keyconf->hw_key_idx);
3446 return -ENOENT;
3447 }
3448
Johannes Berg2dc2a152015-06-16 17:09:18 +02003449 /* track which key was deleted last */
3450 for (i = 0; i < STA_KEY_MAX_NUM; i++) {
3451 if (mvm->fw_key_deleted[i] < U8_MAX)
3452 mvm->fw_key_deleted[i]++;
3453 }
3454 mvm->fw_key_deleted[keyconf->hw_key_idx] = 0;
3455
David Spinadel85aeb582017-03-30 19:43:53 +03003456 if (sta && !mvm_sta) {
Johannes Berg2f6319d2014-11-12 23:39:56 +01003457 IWL_DEBUG_WEP(mvm, "station non-existent, early return.\n");
3458 return 0;
3459 }
3460
Johannes Bergba3943b2014-11-12 23:54:48 +01003461 ret = __iwl_mvm_remove_sta_key(mvm, sta_id, keyconf, mcast);
3462 if (ret)
3463 return ret;
3464
3465 /* delete WEP key twice to get rid of (now useless) offset */
3466 if (keyconf->cipher == WLAN_CIPHER_SUITE_WEP40 ||
3467 keyconf->cipher == WLAN_CIPHER_SUITE_WEP104)
3468 ret = __iwl_mvm_remove_sta_key(mvm, sta_id, keyconf, !mcast);
3469
3470 return ret;
Johannes Berg2f6319d2014-11-12 23:39:56 +01003471}
3472
Johannes Berg8ca151b2013-01-24 14:25:36 +01003473void iwl_mvm_update_tkip_key(struct iwl_mvm *mvm,
3474 struct ieee80211_vif *vif,
3475 struct ieee80211_key_conf *keyconf,
3476 struct ieee80211_sta *sta, u32 iv32,
3477 u16 *phase1key)
3478{
Beni Levc3eb5362013-02-06 17:22:18 +02003479 struct iwl_mvm_sta *mvm_sta;
Johannes Bergba3943b2014-11-12 23:54:48 +01003480 bool mcast = !(keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003481
Beni Levc3eb5362013-02-06 17:22:18 +02003482 rcu_read_lock();
3483
Johannes Berg5f7a1842015-12-11 09:36:10 +01003484 mvm_sta = iwl_mvm_get_key_sta(mvm, vif, sta);
3485 if (WARN_ON_ONCE(!mvm_sta))
Emmanuel Grumbach12f17212015-12-20 14:48:08 +02003486 goto unlock;
David Spinadel85aeb582017-03-30 19:43:53 +03003487 iwl_mvm_send_sta_key(mvm, mvm_sta->sta_id, keyconf, mcast,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02003488 iv32, phase1key, CMD_ASYNC, keyconf->hw_key_idx);
Emmanuel Grumbach12f17212015-12-20 14:48:08 +02003489
3490 unlock:
Beni Levc3eb5362013-02-06 17:22:18 +02003491 rcu_read_unlock();
Johannes Berg8ca151b2013-01-24 14:25:36 +01003492}
3493
Johannes Berg9cc40712013-02-15 22:47:48 +01003494void iwl_mvm_sta_modify_ps_wake(struct iwl_mvm *mvm,
3495 struct ieee80211_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003496{
Johannes Berg5b577a92013-11-14 18:20:04 +01003497 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03003498 struct iwl_mvm_add_sta_cmd cmd = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01003499 .add_modify = STA_MODE_MODIFY,
Johannes Berg9cc40712013-02-15 22:47:48 +01003500 .sta_id = mvmsta->sta_id,
Emmanuel Grumbach5af01772013-06-09 12:59:24 +03003501 .station_flags_msk = cpu_to_le32(STA_FLG_PS),
Johannes Berg9cc40712013-02-15 22:47:48 +01003502 .mac_id_n_color = cpu_to_le32(mvmsta->mac_id_n_color),
Johannes Berg8ca151b2013-01-24 14:25:36 +01003503 };
3504 int ret;
3505
Sara Sharon854c5702016-01-26 13:17:47 +02003506 ret = iwl_mvm_send_cmd_pdu(mvm, ADD_STA, CMD_ASYNC,
3507 iwl_mvm_add_sta_cmd_size(mvm), &cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003508 if (ret)
3509 IWL_ERR(mvm, "Failed to send ADD_STA command (%d)\n", ret);
3510}
3511
Johannes Berg9cc40712013-02-15 22:47:48 +01003512void iwl_mvm_sta_modify_sleep_tx_count(struct iwl_mvm *mvm,
3513 struct ieee80211_sta *sta,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003514 enum ieee80211_frame_release_type reason,
Johannes Berg3e56ead2013-02-15 22:23:18 +01003515 u16 cnt, u16 tids, bool more_data,
Sara Sharon9a3fcf92017-03-14 09:50:35 +02003516 bool single_sta_queue)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003517{
Johannes Berg5b577a92013-11-14 18:20:04 +01003518 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03003519 struct iwl_mvm_add_sta_cmd cmd = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01003520 .add_modify = STA_MODE_MODIFY,
Johannes Berg9cc40712013-02-15 22:47:48 +01003521 .sta_id = mvmsta->sta_id,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003522 .modify_mask = STA_MODIFY_SLEEPING_STA_TX_COUNT,
3523 .sleep_tx_count = cpu_to_le16(cnt),
Johannes Berg9cc40712013-02-15 22:47:48 +01003524 .mac_id_n_color = cpu_to_le32(mvmsta->mac_id_n_color),
Johannes Berg8ca151b2013-01-24 14:25:36 +01003525 };
Johannes Berg3e56ead2013-02-15 22:23:18 +01003526 int tid, ret;
3527 unsigned long _tids = tids;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003528
Johannes Berg3e56ead2013-02-15 22:23:18 +01003529 /* convert TIDs to ACs - we don't support TSPEC so that's OK
3530 * Note that this field is reserved and unused by firmware not
3531 * supporting GO uAPSD, so it's safe to always do this.
3532 */
3533 for_each_set_bit(tid, &_tids, IWL_MAX_TID_COUNT)
3534 cmd.awake_acs |= BIT(tid_to_ucode_ac[tid]);
3535
Sara Sharon9a3fcf92017-03-14 09:50:35 +02003536 /* If we're releasing frames from aggregation or dqa queues then check
3537 * if all the queues that we're releasing frames from, combined, have:
Johannes Berg3e56ead2013-02-15 22:23:18 +01003538 * - more frames than the service period, in which case more_data
3539 * needs to be set
3540 * - fewer than 'cnt' frames, in which case we need to adjust the
3541 * firmware command (but do that unconditionally)
3542 */
Sara Sharon9a3fcf92017-03-14 09:50:35 +02003543 if (single_sta_queue) {
Johannes Berg3e56ead2013-02-15 22:23:18 +01003544 int remaining = cnt;
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02003545 int sleep_tx_count;
Johannes Berg3e56ead2013-02-15 22:23:18 +01003546
3547 spin_lock_bh(&mvmsta->lock);
3548 for_each_set_bit(tid, &_tids, IWL_MAX_TID_COUNT) {
3549 struct iwl_mvm_tid_data *tid_data;
3550 u16 n_queued;
3551
3552 tid_data = &mvmsta->tid_data[tid];
Sara Sharon9a3fcf92017-03-14 09:50:35 +02003553 if (WARN(!iwl_mvm_is_dqa_supported(mvm) &&
3554 tid_data->state != IWL_AGG_ON &&
Johannes Berg3e56ead2013-02-15 22:23:18 +01003555 tid_data->state != IWL_EMPTYING_HW_QUEUE_DELBA,
3556 "TID %d state is %d\n",
3557 tid, tid_data->state)) {
3558 spin_unlock_bh(&mvmsta->lock);
3559 ieee80211_sta_eosp(sta);
3560 return;
3561 }
3562
Liad Kaufmandd321622017-04-05 16:25:11 +03003563 n_queued = iwl_mvm_tid_queued(mvm, tid_data);
Johannes Berg3e56ead2013-02-15 22:23:18 +01003564 if (n_queued > remaining) {
3565 more_data = true;
3566 remaining = 0;
3567 break;
3568 }
3569 remaining -= n_queued;
3570 }
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02003571 sleep_tx_count = cnt - remaining;
3572 if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
3573 mvmsta->sleep_tx_count = sleep_tx_count;
Johannes Berg3e56ead2013-02-15 22:23:18 +01003574 spin_unlock_bh(&mvmsta->lock);
3575
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02003576 cmd.sleep_tx_count = cpu_to_le16(sleep_tx_count);
Johannes Berg3e56ead2013-02-15 22:23:18 +01003577 if (WARN_ON(cnt - remaining == 0)) {
3578 ieee80211_sta_eosp(sta);
3579 return;
3580 }
3581 }
3582
3583 /* Note: this is ignored by firmware not supporting GO uAPSD */
3584 if (more_data)
Sara Sharonced19f22017-02-06 19:09:32 +02003585 cmd.sleep_state_flags |= STA_SLEEP_STATE_MOREDATA;
Johannes Berg3e56ead2013-02-15 22:23:18 +01003586
3587 if (reason == IEEE80211_FRAME_RELEASE_PSPOLL) {
3588 mvmsta->next_status_eosp = true;
Sara Sharonced19f22017-02-06 19:09:32 +02003589 cmd.sleep_state_flags |= STA_SLEEP_STATE_PS_POLL;
Johannes Berg3e56ead2013-02-15 22:23:18 +01003590 } else {
Sara Sharonced19f22017-02-06 19:09:32 +02003591 cmd.sleep_state_flags |= STA_SLEEP_STATE_UAPSD;
Johannes Berg3e56ead2013-02-15 22:23:18 +01003592 }
3593
Emmanuel Grumbach156f92f2015-11-24 14:55:18 +02003594 /* block the Tx queues until the FW updated the sleep Tx count */
3595 iwl_trans_block_txq_ptrs(mvm->trans, true);
3596
3597 ret = iwl_mvm_send_cmd_pdu(mvm, ADD_STA,
3598 CMD_ASYNC | CMD_WANT_ASYNC_CALLBACK,
Sara Sharon854c5702016-01-26 13:17:47 +02003599 iwl_mvm_add_sta_cmd_size(mvm), &cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003600 if (ret)
3601 IWL_ERR(mvm, "Failed to send ADD_STA command (%d)\n", ret);
3602}
Johannes Berg3e56ead2013-02-15 22:23:18 +01003603
Johannes Berg04168412015-06-23 21:22:09 +02003604void iwl_mvm_rx_eosp_notif(struct iwl_mvm *mvm,
3605 struct iwl_rx_cmd_buffer *rxb)
Johannes Berg3e56ead2013-02-15 22:23:18 +01003606{
3607 struct iwl_rx_packet *pkt = rxb_addr(rxb);
3608 struct iwl_mvm_eosp_notification *notif = (void *)pkt->data;
3609 struct ieee80211_sta *sta;
3610 u32 sta_id = le32_to_cpu(notif->sta_id);
3611
3612 if (WARN_ON_ONCE(sta_id >= IWL_MVM_STATION_COUNT))
Johannes Berg04168412015-06-23 21:22:09 +02003613 return;
Johannes Berg3e56ead2013-02-15 22:23:18 +01003614
3615 rcu_read_lock();
3616 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
3617 if (!IS_ERR_OR_NULL(sta))
3618 ieee80211_sta_eosp(sta);
3619 rcu_read_unlock();
Johannes Berg3e56ead2013-02-15 22:23:18 +01003620}
Andrei Otcheretianski09b0ce12014-05-25 17:07:38 +03003621
3622void iwl_mvm_sta_modify_disable_tx(struct iwl_mvm *mvm,
3623 struct iwl_mvm_sta *mvmsta, bool disable)
3624{
3625 struct iwl_mvm_add_sta_cmd cmd = {
3626 .add_modify = STA_MODE_MODIFY,
3627 .sta_id = mvmsta->sta_id,
3628 .station_flags = disable ? cpu_to_le32(STA_FLG_DISABLE_TX) : 0,
3629 .station_flags_msk = cpu_to_le32(STA_FLG_DISABLE_TX),
3630 .mac_id_n_color = cpu_to_le32(mvmsta->mac_id_n_color),
3631 };
3632 int ret;
3633
Sara Sharon854c5702016-01-26 13:17:47 +02003634 ret = iwl_mvm_send_cmd_pdu(mvm, ADD_STA, CMD_ASYNC,
3635 iwl_mvm_add_sta_cmd_size(mvm), &cmd);
Andrei Otcheretianski09b0ce12014-05-25 17:07:38 +03003636 if (ret)
3637 IWL_ERR(mvm, "Failed to send ADD_STA command (%d)\n", ret);
3638}
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03003639
3640void iwl_mvm_sta_modify_disable_tx_ap(struct iwl_mvm *mvm,
3641 struct ieee80211_sta *sta,
3642 bool disable)
3643{
3644 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
3645
3646 spin_lock_bh(&mvm_sta->lock);
3647
3648 if (mvm_sta->disable_tx == disable) {
3649 spin_unlock_bh(&mvm_sta->lock);
3650 return;
3651 }
3652
3653 mvm_sta->disable_tx = disable;
3654
3655 /*
Sara Sharon0d365ae2015-03-31 12:24:05 +03003656 * Tell mac80211 to start/stop queuing tx for this station,
3657 * but don't stop queuing if there are still pending frames
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03003658 * for this station.
3659 */
3660 if (disable || !atomic_read(&mvm->pending_frames[mvm_sta->sta_id]))
3661 ieee80211_sta_block_awake(mvm->hw, sta, disable);
3662
3663 iwl_mvm_sta_modify_disable_tx(mvm, mvm_sta, disable);
3664
3665 spin_unlock_bh(&mvm_sta->lock);
3666}
3667
Sara Sharonced19f22017-02-06 19:09:32 +02003668static void iwl_mvm_int_sta_modify_disable_tx(struct iwl_mvm *mvm,
3669 struct iwl_mvm_vif *mvmvif,
3670 struct iwl_mvm_int_sta *sta,
3671 bool disable)
3672{
3673 u32 id = FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color);
3674 struct iwl_mvm_add_sta_cmd cmd = {
3675 .add_modify = STA_MODE_MODIFY,
3676 .sta_id = sta->sta_id,
3677 .station_flags = disable ? cpu_to_le32(STA_FLG_DISABLE_TX) : 0,
3678 .station_flags_msk = cpu_to_le32(STA_FLG_DISABLE_TX),
3679 .mac_id_n_color = cpu_to_le32(id),
3680 };
3681 int ret;
3682
3683 ret = iwl_mvm_send_cmd_pdu(mvm, ADD_STA, 0,
3684 iwl_mvm_add_sta_cmd_size(mvm), &cmd);
3685 if (ret)
3686 IWL_ERR(mvm, "Failed to send ADD_STA command (%d)\n", ret);
3687}
3688
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03003689void iwl_mvm_modify_all_sta_disable_tx(struct iwl_mvm *mvm,
3690 struct iwl_mvm_vif *mvmvif,
3691 bool disable)
3692{
3693 struct ieee80211_sta *sta;
3694 struct iwl_mvm_sta *mvm_sta;
3695 int i;
3696
3697 lockdep_assert_held(&mvm->mutex);
3698
3699 /* Block/unblock all the stations of the given mvmvif */
Sara Sharon0ae98812017-01-04 14:53:58 +02003700 for (i = 0; i < ARRAY_SIZE(mvm->fw_id_to_mac_id); i++) {
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03003701 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
3702 lockdep_is_held(&mvm->mutex));
3703 if (IS_ERR_OR_NULL(sta))
3704 continue;
3705
3706 mvm_sta = iwl_mvm_sta_from_mac80211(sta);
3707 if (mvm_sta->mac_id_n_color !=
3708 FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color))
3709 continue;
3710
3711 iwl_mvm_sta_modify_disable_tx_ap(mvm, sta, disable);
3712 }
Sara Sharonced19f22017-02-06 19:09:32 +02003713
3714 if (!fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_STA_TYPE))
3715 return;
3716
3717 /* Need to block/unblock also multicast station */
3718 if (mvmvif->mcast_sta.sta_id != IWL_MVM_INVALID_STA)
3719 iwl_mvm_int_sta_modify_disable_tx(mvm, mvmvif,
3720 &mvmvif->mcast_sta, disable);
3721
3722 /*
3723 * Only unblock the broadcast station (FW blocks it for immediate
3724 * quiet, not the driver)
3725 */
3726 if (!disable && mvmvif->bcast_sta.sta_id != IWL_MVM_INVALID_STA)
3727 iwl_mvm_int_sta_modify_disable_tx(mvm, mvmvif,
3728 &mvmvif->bcast_sta, disable);
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03003729}
Luciano Coelhodc88b4b2014-11-10 11:10:14 +02003730
3731void iwl_mvm_csa_client_absent(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
3732{
3733 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
3734 struct iwl_mvm_sta *mvmsta;
3735
3736 rcu_read_lock();
3737
3738 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, mvmvif->ap_sta_id);
3739
3740 if (!WARN_ON(!mvmsta))
3741 iwl_mvm_sta_modify_disable_tx(mvm, mvmsta, true);
3742
3743 rcu_read_unlock();
3744}
Liad Kaufmandd321622017-04-05 16:25:11 +03003745
3746u16 iwl_mvm_tid_queued(struct iwl_mvm *mvm, struct iwl_mvm_tid_data *tid_data)
3747{
3748 u16 sn = IEEE80211_SEQ_TO_SN(tid_data->seq_number);
3749
3750 /*
3751 * In A000 HW, the next_reclaimed index is only 8 bit, so we'll need
3752 * to align the wrap around of ssn so we compare relevant values.
3753 */
3754 if (mvm->trans->cfg->gen2)
3755 sn &= 0xff;
3756
3757 return ieee80211_sn_sub(sn, tid_data->next_reclaimed);
3758}