blob: 5350ca6f1f1d7a370fd6c7a920b5f1b1903a2873 [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 Sharon854c5702016-01-26 13:17:47 +020010 * Copyright(c) 2016 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010028 *
29 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
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 Sharon854c5702016-01-26 13:17:47 +020037 * Copyright(c) 2016 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{
80 return iwl_mvm_has_new_rx_api(mvm) ?
81 sizeof(struct iwl_mvm_add_sta_cmd) :
82 sizeof(struct iwl_mvm_add_sta_cmd_v7);
83}
84
Eliad Pellerb92e6612014-01-23 17:58:23 +020085static int iwl_mvm_find_free_sta_id(struct iwl_mvm *mvm,
86 enum nl80211_iftype iftype)
Johannes Berg8ca151b2013-01-24 14:25:36 +010087{
88 int sta_id;
Eliad Pellerb92e6612014-01-23 17:58:23 +020089 u32 reserved_ids = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +010090
Eliad Pellerb92e6612014-01-23 17:58:23 +020091 BUILD_BUG_ON(IWL_MVM_STATION_COUNT > 32);
Johannes Berg8ca151b2013-01-24 14:25:36 +010092 WARN_ON_ONCE(test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status));
93
94 lockdep_assert_held(&mvm->mutex);
95
Eliad Pellerb92e6612014-01-23 17:58:23 +020096 /* d0i3/d3 assumes the AP's sta_id (of sta vif) is 0. reserve it. */
97 if (iftype != NL80211_IFTYPE_STATION)
98 reserved_ids = BIT(0);
99
Johannes Berg8ca151b2013-01-24 14:25:36 +0100100 /* Don't take rcu_read_lock() since we are protected by mvm->mutex */
Eliad Pellerb92e6612014-01-23 17:58:23 +0200101 for (sta_id = 0; sta_id < IWL_MVM_STATION_COUNT; sta_id++) {
102 if (BIT(sta_id) & reserved_ids)
103 continue;
104
Johannes Berg8ca151b2013-01-24 14:25:36 +0100105 if (!rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
106 lockdep_is_held(&mvm->mutex)))
107 return sta_id;
Eliad Pellerb92e6612014-01-23 17:58:23 +0200108 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100109 return IWL_MVM_STATION_COUNT;
110}
111
Johannes Berg7a453972013-02-12 13:10:44 +0100112/* send station add/update command to firmware */
113int iwl_mvm_sta_send_to_fw(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Liad Kaufman24afba72015-07-28 18:56:08 +0300114 bool update, unsigned int flags)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100115{
Johannes Berg9d8ce6a2014-12-23 16:02:40 +0100116 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach4b8265a2014-07-13 08:58:04 +0300117 struct iwl_mvm_add_sta_cmd add_sta_cmd = {
118 .sta_id = mvm_sta->sta_id,
119 .mac_id_n_color = cpu_to_le32(mvm_sta->mac_id_n_color),
120 .add_modify = update ? 1 : 0,
121 .station_flags_msk = cpu_to_le32(STA_FLG_FAT_EN_MSK |
122 STA_FLG_MIMO_EN_MSK),
Liad Kaufmancf0cda12015-09-24 10:44:12 +0200123 .tid_disable_tx = cpu_to_le16(mvm_sta->tid_disable_agg),
Emmanuel Grumbach4b8265a2014-07-13 08:58:04 +0300124 };
Johannes Berg8ca151b2013-01-24 14:25:36 +0100125 int ret;
126 u32 status;
127 u32 agg_size = 0, mpdu_dens = 0;
128
Liad Kaufman24afba72015-07-28 18:56:08 +0300129 if (!update || (flags & STA_MODIFY_QUEUES)) {
Johannes Berg7a453972013-02-12 13:10:44 +0100130 add_sta_cmd.tfd_queue_msk = cpu_to_le32(mvm_sta->tfd_queue_msk);
131 memcpy(&add_sta_cmd.addr, sta->addr, ETH_ALEN);
Liad Kaufman24afba72015-07-28 18:56:08 +0300132
133 if (flags & STA_MODIFY_QUEUES)
134 add_sta_cmd.modify_mask |= STA_MODIFY_QUEUES;
Johannes Berg7a453972013-02-12 13:10:44 +0100135 }
Johannes Berg5bc5aaa2013-02-12 14:35:36 +0100136
137 switch (sta->bandwidth) {
138 case IEEE80211_STA_RX_BW_160:
139 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_FAT_EN_160MHZ);
140 /* fall through */
141 case IEEE80211_STA_RX_BW_80:
142 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_FAT_EN_80MHZ);
143 /* fall through */
144 case IEEE80211_STA_RX_BW_40:
145 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_FAT_EN_40MHZ);
146 /* fall through */
147 case IEEE80211_STA_RX_BW_20:
148 if (sta->ht_cap.ht_supported)
149 add_sta_cmd.station_flags |=
150 cpu_to_le32(STA_FLG_FAT_EN_20MHZ);
151 break;
152 }
153
154 switch (sta->rx_nss) {
155 case 1:
156 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_MIMO_EN_SISO);
157 break;
158 case 2:
159 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_MIMO_EN_MIMO2);
160 break;
161 case 3 ... 8:
162 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_MIMO_EN_MIMO3);
163 break;
164 }
165
166 switch (sta->smps_mode) {
167 case IEEE80211_SMPS_AUTOMATIC:
168 case IEEE80211_SMPS_NUM_MODES:
169 WARN_ON(1);
170 break;
171 case IEEE80211_SMPS_STATIC:
172 /* override NSS */
173 add_sta_cmd.station_flags &= ~cpu_to_le32(STA_FLG_MIMO_EN_MSK);
174 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_MIMO_EN_SISO);
175 break;
176 case IEEE80211_SMPS_DYNAMIC:
177 add_sta_cmd.station_flags |= cpu_to_le32(STA_FLG_RTS_MIMO_PROT);
178 break;
179 case IEEE80211_SMPS_OFF:
180 /* nothing */
181 break;
182 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100183
184 if (sta->ht_cap.ht_supported) {
185 add_sta_cmd.station_flags_msk |=
186 cpu_to_le32(STA_FLG_MAX_AGG_SIZE_MSK |
187 STA_FLG_AGG_MPDU_DENS_MSK);
188
189 mpdu_dens = sta->ht_cap.ampdu_density;
190 }
191
192 if (sta->vht_cap.vht_supported) {
193 agg_size = sta->vht_cap.cap &
194 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK;
195 agg_size >>=
196 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT;
197 } else if (sta->ht_cap.ht_supported) {
198 agg_size = sta->ht_cap.ampdu_factor;
199 }
200
201 add_sta_cmd.station_flags |=
202 cpu_to_le32(agg_size << STA_FLG_MAX_AGG_SIZE_SHIFT);
203 add_sta_cmd.station_flags |=
204 cpu_to_le32(mpdu_dens << STA_FLG_AGG_MPDU_DENS_SHIFT);
205
206 status = ADD_STA_SUCCESS;
Sara Sharon854c5702016-01-26 13:17:47 +0200207 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
208 iwl_mvm_add_sta_cmd_size(mvm),
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +0300209 &add_sta_cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100210 if (ret)
211 return ret;
212
Sara Sharon837c4da2016-01-07 16:50:45 +0200213 switch (status & IWL_ADD_STA_STATUS_MASK) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100214 case ADD_STA_SUCCESS:
215 IWL_DEBUG_ASSOC(mvm, "ADD_STA PASSED\n");
216 break;
217 default:
218 ret = -EIO;
219 IWL_ERR(mvm, "ADD_STA failed\n");
220 break;
221 }
222
223 return ret;
224}
225
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300226static int iwl_mvm_tdls_sta_init(struct iwl_mvm *mvm,
227 struct ieee80211_sta *sta)
228{
229 unsigned long used_hw_queues;
230 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbach5d42e7b2015-03-19 20:04:51 +0200231 unsigned int wdg_timeout =
232 iwl_mvm_get_wd_timeout(mvm, NULL, true, false);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300233 u32 ac;
234
235 lockdep_assert_held(&mvm->mutex);
236
237 used_hw_queues = iwl_mvm_get_used_hw_queues(mvm, NULL);
238
239 /* Find available queues, and allocate them to the ACs */
240 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
241 u8 queue = find_first_zero_bit(&used_hw_queues,
242 mvm->first_agg_queue);
243
244 if (queue >= mvm->first_agg_queue) {
245 IWL_ERR(mvm, "Failed to allocate STA queue\n");
246 return -EBUSY;
247 }
248
249 __set_bit(queue, &used_hw_queues);
250 mvmsta->hw_queue[ac] = queue;
251 }
252
253 /* Found a place for all queues - enable them */
254 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
255 iwl_mvm_enable_ac_txq(mvm, mvmsta->hw_queue[ac],
Liad Kaufman4ecafae2015-07-14 13:36:18 +0300256 mvmsta->hw_queue[ac],
Liad Kaufman5c1156e2015-07-22 17:59:53 +0300257 iwl_mvm_ac_to_tx_fifo[ac], 0,
258 wdg_timeout);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300259 mvmsta->tfd_queue_msk |= BIT(mvmsta->hw_queue[ac]);
260 }
261
262 return 0;
263}
264
265static void iwl_mvm_tdls_sta_deinit(struct iwl_mvm *mvm,
266 struct ieee80211_sta *sta)
267{
268 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
269 unsigned long sta_msk;
270 int i;
271
272 lockdep_assert_held(&mvm->mutex);
273
274 /* disable the TDLS STA-specific queues */
275 sta_msk = mvmsta->tfd_queue_msk;
Emmanuel Grumbacha4ca3ed2015-01-20 17:07:10 +0200276 for_each_set_bit(i, &sta_msk, sizeof(sta_msk) * BITS_PER_BYTE)
Arik Nemtsov06ecdba2015-10-12 14:47:11 +0300277 iwl_mvm_disable_txq(mvm, i, i, IWL_MAX_TID_COUNT, 0);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300278}
279
Liad Kaufman24afba72015-07-28 18:56:08 +0300280static int iwl_mvm_sta_alloc_queue(struct iwl_mvm *mvm,
281 struct ieee80211_sta *sta, u8 ac, int tid,
282 struct ieee80211_hdr *hdr)
283{
284 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
285 struct iwl_trans_txq_scd_cfg cfg = {
286 .fifo = iwl_mvm_ac_to_tx_fifo[ac],
287 .sta_id = mvmsta->sta_id,
288 .tid = tid,
289 .frame_limit = IWL_FRAME_LIMIT,
290 };
291 unsigned int wdg_timeout =
292 iwl_mvm_get_wd_timeout(mvm, mvmsta->vif, false, false);
293 u8 mac_queue = mvmsta->vif->hw_queue[ac];
294 int queue = -1;
295 int ssn;
296
297 lockdep_assert_held(&mvm->mutex);
298
Liad Kaufmand2515a92016-03-23 16:31:08 +0200299 spin_lock_bh(&mvm->queue_info_lock);
Liad Kaufman24afba72015-07-28 18:56:08 +0300300
301 /*
302 * Non-QoS, QoS NDP and MGMT frames should go to a MGMT queue, if one
303 * exists
304 */
305 if (!ieee80211_is_data_qos(hdr->frame_control) ||
306 ieee80211_is_qos_nullfunc(hdr->frame_control)) {
307 queue = iwl_mvm_find_free_queue(mvm, IWL_MVM_DQA_MIN_MGMT_QUEUE,
308 IWL_MVM_DQA_MAX_MGMT_QUEUE);
309 if (queue >= IWL_MVM_DQA_MIN_MGMT_QUEUE)
310 IWL_DEBUG_TX_QUEUES(mvm, "Found free MGMT queue #%d\n",
311 queue);
312
313 /* If no such queue is found, we'll use a DATA queue instead */
314 }
315
316 if (queue < 0 && mvmsta->reserved_queue != IEEE80211_INVAL_HW_QUEUE) {
317 queue = mvmsta->reserved_queue;
318 IWL_DEBUG_TX_QUEUES(mvm, "Using reserved queue #%d\n", queue);
319 }
320
321 if (queue < 0)
322 queue = iwl_mvm_find_free_queue(mvm, IWL_MVM_DQA_MIN_DATA_QUEUE,
323 IWL_MVM_DQA_MAX_DATA_QUEUE);
324 if (queue >= 0)
325 mvm->queue_info[queue].setup_reserved = false;
326
Liad Kaufmand2515a92016-03-23 16:31:08 +0200327 spin_unlock_bh(&mvm->queue_info_lock);
Liad Kaufman24afba72015-07-28 18:56:08 +0300328
329 /* TODO: support shared queues for same RA */
330 if (queue < 0)
331 return -ENOSPC;
332
333 /*
334 * Actual en/disablement of aggregations is through the ADD_STA HCMD,
335 * but for configuring the SCD to send A-MPDUs we need to mark the queue
336 * as aggregatable.
337 * Mark all DATA queues as allowing to be aggregated at some point
338 */
Liad Kaufmand5216a22015-08-09 15:50:51 +0300339 cfg.aggregate = (queue >= IWL_MVM_DQA_MIN_DATA_QUEUE ||
340 queue == IWL_MVM_DQA_BSS_CLIENT_QUEUE);
Liad Kaufman24afba72015-07-28 18:56:08 +0300341
342 IWL_DEBUG_TX_QUEUES(mvm, "Allocating queue #%d to sta %d on tid %d\n",
343 queue, mvmsta->sta_id, tid);
344
345 ssn = IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl));
346 iwl_mvm_enable_txq(mvm, queue, mac_queue, ssn, &cfg,
347 wdg_timeout);
348
349 spin_lock_bh(&mvmsta->lock);
350 mvmsta->tid_data[tid].txq_id = queue;
351 mvmsta->tfd_queue_msk |= BIT(queue);
352
353 if (mvmsta->reserved_queue == queue)
354 mvmsta->reserved_queue = IEEE80211_INVAL_HW_QUEUE;
355 spin_unlock_bh(&mvmsta->lock);
356
357 return iwl_mvm_sta_send_to_fw(mvm, sta, true, STA_MODIFY_QUEUES);
358}
359
360static inline u8 iwl_mvm_tid_to_ac_queue(int tid)
361{
362 if (tid == IWL_MAX_TID_COUNT)
363 return IEEE80211_AC_VO; /* MGMT */
364
365 return tid_to_mac80211_ac[tid];
366}
367
368static void iwl_mvm_tx_deferred_stream(struct iwl_mvm *mvm,
369 struct ieee80211_sta *sta, int tid)
370{
371 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
372 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
373 struct sk_buff *skb;
374 struct ieee80211_hdr *hdr;
375 struct sk_buff_head deferred_tx;
376 u8 mac_queue;
377 bool no_queue = false; /* Marks if there is a problem with the queue */
378 u8 ac;
379
380 lockdep_assert_held(&mvm->mutex);
381
382 skb = skb_peek(&tid_data->deferred_tx_frames);
383 if (!skb)
384 return;
385 hdr = (void *)skb->data;
386
387 ac = iwl_mvm_tid_to_ac_queue(tid);
388 mac_queue = IEEE80211_SKB_CB(skb)->hw_queue;
389
390 if (tid_data->txq_id == IEEE80211_INVAL_HW_QUEUE &&
391 iwl_mvm_sta_alloc_queue(mvm, sta, ac, tid, hdr)) {
392 IWL_ERR(mvm,
393 "Can't alloc TXQ for sta %d tid %d - dropping frame\n",
394 mvmsta->sta_id, tid);
395
396 /*
397 * Mark queue as problematic so later the deferred traffic is
398 * freed, as we can do nothing with it
399 */
400 no_queue = true;
401 }
402
403 __skb_queue_head_init(&deferred_tx);
404
Liad Kaufmand2515a92016-03-23 16:31:08 +0200405 /* Disable bottom-halves when entering TX path */
406 local_bh_disable();
Liad Kaufman24afba72015-07-28 18:56:08 +0300407 spin_lock(&mvmsta->lock);
408 skb_queue_splice_init(&tid_data->deferred_tx_frames, &deferred_tx);
409 spin_unlock(&mvmsta->lock);
410
Liad Kaufman24afba72015-07-28 18:56:08 +0300411 while ((skb = __skb_dequeue(&deferred_tx)))
412 if (no_queue || iwl_mvm_tx_skb(mvm, skb, sta))
413 ieee80211_free_txskb(mvm->hw, skb);
414 local_bh_enable();
415
416 /* Wake queue */
417 iwl_mvm_start_mac_queues(mvm, BIT(mac_queue));
418}
419
420void iwl_mvm_add_new_dqa_stream_wk(struct work_struct *wk)
421{
422 struct iwl_mvm *mvm = container_of(wk, struct iwl_mvm,
423 add_stream_wk);
424 struct ieee80211_sta *sta;
425 struct iwl_mvm_sta *mvmsta;
426 unsigned long deferred_tid_traffic;
427 int sta_id, tid;
428
429 mutex_lock(&mvm->mutex);
430
431 /* Go over all stations with deferred traffic */
432 for_each_set_bit(sta_id, mvm->sta_deferred_frames,
433 IWL_MVM_STATION_COUNT) {
434 clear_bit(sta_id, mvm->sta_deferred_frames);
435 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
436 lockdep_is_held(&mvm->mutex));
437 if (IS_ERR_OR_NULL(sta))
438 continue;
439
440 mvmsta = iwl_mvm_sta_from_mac80211(sta);
441 deferred_tid_traffic = mvmsta->deferred_traffic_tid_map;
442
443 for_each_set_bit(tid, &deferred_tid_traffic,
444 IWL_MAX_TID_COUNT + 1)
445 iwl_mvm_tx_deferred_stream(mvm, sta, tid);
446 }
447
448 mutex_unlock(&mvm->mutex);
449}
450
451static int iwl_mvm_reserve_sta_stream(struct iwl_mvm *mvm,
Liad Kaufmand5216a22015-08-09 15:50:51 +0300452 struct ieee80211_sta *sta,
453 enum nl80211_iftype vif_type)
Liad Kaufman24afba72015-07-28 18:56:08 +0300454{
455 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
456 int queue;
457
458 spin_lock_bh(&mvm->queue_info_lock);
459
460 /* Make sure we have free resources for this STA */
Liad Kaufmand5216a22015-08-09 15:50:51 +0300461 if (vif_type == NL80211_IFTYPE_STATION && !sta->tdls &&
462 !mvm->queue_info[IWL_MVM_DQA_BSS_CLIENT_QUEUE].hw_queue_refcount &&
463 !mvm->queue_info[IWL_MVM_DQA_BSS_CLIENT_QUEUE].setup_reserved)
464 queue = IWL_MVM_DQA_BSS_CLIENT_QUEUE;
465 else
466 queue = iwl_mvm_find_free_queue(mvm, IWL_MVM_DQA_MIN_DATA_QUEUE,
467 IWL_MVM_DQA_MAX_DATA_QUEUE);
Liad Kaufman24afba72015-07-28 18:56:08 +0300468 if (queue < 0) {
469 spin_unlock_bh(&mvm->queue_info_lock);
470 IWL_ERR(mvm, "No available queues for new station\n");
471 return -ENOSPC;
472 }
473 mvm->queue_info[queue].setup_reserved = true;
474
475 spin_unlock_bh(&mvm->queue_info_lock);
476
477 mvmsta->reserved_queue = queue;
478
479 IWL_DEBUG_TX_QUEUES(mvm, "Reserving data queue #%d for sta_id %d\n",
480 queue, mvmsta->sta_id);
481
482 return 0;
483}
484
Johannes Berg8ca151b2013-01-24 14:25:36 +0100485int iwl_mvm_add_sta(struct iwl_mvm *mvm,
486 struct ieee80211_vif *vif,
487 struct ieee80211_sta *sta)
488{
489 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg9d8ce6a2014-12-23 16:02:40 +0100490 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Sara Sharona571f5f2015-12-07 12:50:58 +0200491 struct iwl_mvm_rxq_dup_data *dup_data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100492 int i, ret, sta_id;
493
494 lockdep_assert_held(&mvm->mutex);
495
496 if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
Eliad Pellerb92e6612014-01-23 17:58:23 +0200497 sta_id = iwl_mvm_find_free_sta_id(mvm,
498 ieee80211_vif_type_p2p(vif));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100499 else
500 sta_id = mvm_sta->sta_id;
501
Johannes Berg36f46312015-03-10 20:32:08 +0100502 if (sta_id == IWL_MVM_STATION_COUNT)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100503 return -ENOSPC;
504
505 spin_lock_init(&mvm_sta->lock);
506
507 mvm_sta->sta_id = sta_id;
508 mvm_sta->mac_id_n_color = FW_CMD_ID_AND_COLOR(mvmvif->id,
509 mvmvif->color);
510 mvm_sta->vif = vif;
511 mvm_sta->max_agg_bufsize = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300512 mvm_sta->tx_protection = 0;
513 mvm_sta->tt_tx_protection = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100514
515 /* HW restart, don't assume the memory has been zeroed */
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +0300516 atomic_set(&mvm->pending_frames[sta_id], 0);
Liad Kaufman69191af2015-09-01 18:50:22 +0300517 mvm_sta->tid_disable_agg = 0xffff; /* No aggs at first */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100518 mvm_sta->tfd_queue_msk = 0;
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300519
520 /* allocate new queues for a TDLS station */
521 if (sta->tdls) {
522 ret = iwl_mvm_tdls_sta_init(mvm, sta);
523 if (ret)
524 return ret;
Liad Kaufman24afba72015-07-28 18:56:08 +0300525 } else if (!iwl_mvm_is_dqa_supported(mvm)) {
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300526 for (i = 0; i < IEEE80211_NUM_ACS; i++)
527 if (vif->hw_queue[i] != IEEE80211_INVAL_HW_QUEUE)
528 mvm_sta->tfd_queue_msk |= BIT(vif->hw_queue[i]);
529 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100530
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200531 /* for HW restart - reset everything but the sequence number */
Liad Kaufman24afba72015-07-28 18:56:08 +0300532 for (i = 0; i <= IWL_MAX_TID_COUNT; i++) {
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200533 u16 seq = mvm_sta->tid_data[i].seq_number;
534 memset(&mvm_sta->tid_data[i], 0, sizeof(mvm_sta->tid_data[i]));
535 mvm_sta->tid_data[i].seq_number = seq;
Liad Kaufman24afba72015-07-28 18:56:08 +0300536
537 if (!iwl_mvm_is_dqa_supported(mvm))
538 continue;
539
540 /*
541 * Mark all queues for this STA as unallocated and defer TX
542 * frames until the queue is allocated
543 */
544 mvm_sta->tid_data[i].txq_id = IEEE80211_INVAL_HW_QUEUE;
545 skb_queue_head_init(&mvm_sta->tid_data[i].deferred_tx_frames);
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200546 }
Liad Kaufman24afba72015-07-28 18:56:08 +0300547 mvm_sta->deferred_traffic_tid_map = 0;
Eyal Shapiraefed6642014-09-14 15:58:53 +0300548 mvm_sta->agg_tids = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100549
Sara Sharona571f5f2015-12-07 12:50:58 +0200550 if (iwl_mvm_has_new_rx_api(mvm) &&
551 !test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
552 dup_data = kcalloc(mvm->trans->num_rx_queues,
553 sizeof(*dup_data),
554 GFP_KERNEL);
555 if (!dup_data)
556 return -ENOMEM;
557 mvm_sta->dup_data = dup_data;
558 }
559
Liad Kaufman24afba72015-07-28 18:56:08 +0300560 if (iwl_mvm_is_dqa_supported(mvm)) {
Liad Kaufmand5216a22015-08-09 15:50:51 +0300561 ret = iwl_mvm_reserve_sta_stream(mvm, sta,
562 ieee80211_vif_type_p2p(vif));
Liad Kaufman24afba72015-07-28 18:56:08 +0300563 if (ret)
564 goto err;
565 }
566
567 ret = iwl_mvm_sta_send_to_fw(mvm, sta, false, 0);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100568 if (ret)
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300569 goto err;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100570
Johannes Berg9e848012014-08-04 14:33:42 +0200571 if (vif->type == NL80211_IFTYPE_STATION) {
572 if (!sta->tdls) {
573 WARN_ON(mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT);
574 mvmvif->ap_sta_id = sta_id;
575 } else {
576 WARN_ON(mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT);
577 }
578 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100579
580 rcu_assign_pointer(mvm->fw_id_to_mac_id[sta_id], sta);
581
582 return 0;
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300583
584err:
585 iwl_mvm_tdls_sta_deinit(mvm, sta);
586 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100587}
588
Johannes Berg7a453972013-02-12 13:10:44 +0100589int iwl_mvm_update_sta(struct iwl_mvm *mvm,
590 struct ieee80211_vif *vif,
591 struct ieee80211_sta *sta)
592{
Liad Kaufman24afba72015-07-28 18:56:08 +0300593 return iwl_mvm_sta_send_to_fw(mvm, sta, true, 0);
Johannes Berg7a453972013-02-12 13:10:44 +0100594}
595
Johannes Berg8ca151b2013-01-24 14:25:36 +0100596int iwl_mvm_drain_sta(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,
597 bool drain)
598{
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +0300599 struct iwl_mvm_add_sta_cmd cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100600 int ret;
601 u32 status;
602
603 lockdep_assert_held(&mvm->mutex);
604
605 cmd.mac_id_n_color = cpu_to_le32(mvmsta->mac_id_n_color);
606 cmd.sta_id = mvmsta->sta_id;
607 cmd.add_modify = STA_MODE_MODIFY;
608 cmd.station_flags = drain ? cpu_to_le32(STA_FLG_DRAIN_FLOW) : 0;
609 cmd.station_flags_msk = cpu_to_le32(STA_FLG_DRAIN_FLOW);
610
611 status = ADD_STA_SUCCESS;
Sara Sharon854c5702016-01-26 13:17:47 +0200612 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
613 iwl_mvm_add_sta_cmd_size(mvm),
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +0300614 &cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100615 if (ret)
616 return ret;
617
Sara Sharon837c4da2016-01-07 16:50:45 +0200618 switch (status & IWL_ADD_STA_STATUS_MASK) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100619 case ADD_STA_SUCCESS:
620 IWL_DEBUG_INFO(mvm, "Frames for staid %d will drained in fw\n",
621 mvmsta->sta_id);
622 break;
623 default:
624 ret = -EIO;
625 IWL_ERR(mvm, "Couldn't drain frames for staid %d\n",
626 mvmsta->sta_id);
627 break;
628 }
629
630 return ret;
631}
632
633/*
634 * Remove a station from the FW table. Before sending the command to remove
635 * the station validate that the station is indeed known to the driver (sanity
636 * only).
637 */
638static int iwl_mvm_rm_sta_common(struct iwl_mvm *mvm, u8 sta_id)
639{
640 struct ieee80211_sta *sta;
641 struct iwl_mvm_rm_sta_cmd rm_sta_cmd = {
642 .sta_id = sta_id,
643 };
644 int ret;
645
646 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
647 lockdep_is_held(&mvm->mutex));
648
649 /* Note: internal stations are marked as error values */
650 if (!sta) {
651 IWL_ERR(mvm, "Invalid station id\n");
652 return -EINVAL;
653 }
654
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300655 ret = iwl_mvm_send_cmd_pdu(mvm, REMOVE_STA, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100656 sizeof(rm_sta_cmd), &rm_sta_cmd);
657 if (ret) {
658 IWL_ERR(mvm, "Failed to remove station. Id=%d\n", sta_id);
659 return ret;
660 }
661
662 return 0;
663}
664
665void iwl_mvm_sta_drained_wk(struct work_struct *wk)
666{
667 struct iwl_mvm *mvm = container_of(wk, struct iwl_mvm, sta_drained_wk);
668 u8 sta_id;
669
670 /*
671 * The mutex is needed because of the SYNC cmd, but not only: if the
672 * work would run concurrently with iwl_mvm_rm_sta, it would run before
673 * iwl_mvm_rm_sta sets the station as busy, and exit. Then
674 * iwl_mvm_rm_sta would set the station as busy, and nobody will clean
675 * that later.
676 */
677 mutex_lock(&mvm->mutex);
678
679 for_each_set_bit(sta_id, mvm->sta_drained, IWL_MVM_STATION_COUNT) {
680 int ret;
681 struct ieee80211_sta *sta =
682 rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
683 lockdep_is_held(&mvm->mutex));
684
Johannes Berg1ddbbb02013-12-04 22:39:17 +0100685 /*
686 * This station is in use or RCU-removed; the latter happens in
687 * managed mode, where mac80211 removes the station before we
688 * can remove it from firmware (we can only do that after the
689 * MAC is marked unassociated), and possibly while the deauth
690 * frame to disconnect from the AP is still queued. Then, the
691 * station pointer is -ENOENT when the last skb is reclaimed.
692 */
693 if (!IS_ERR(sta) || PTR_ERR(sta) == -ENOENT)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100694 continue;
695
696 if (PTR_ERR(sta) == -EINVAL) {
697 IWL_ERR(mvm, "Drained sta %d, but it is internal?\n",
698 sta_id);
699 continue;
700 }
701
702 if (!sta) {
703 IWL_ERR(mvm, "Drained sta %d, but it was NULL?\n",
704 sta_id);
705 continue;
706 }
707
708 WARN_ON(PTR_ERR(sta) != -EBUSY);
709 /* This station was removed and we waited until it got drained,
710 * we can now proceed and remove it.
711 */
712 ret = iwl_mvm_rm_sta_common(mvm, sta_id);
713 if (ret) {
714 IWL_ERR(mvm,
715 "Couldn't remove sta %d after it was drained\n",
716 sta_id);
717 continue;
718 }
Monam Agarwalc531c772014-03-24 00:05:56 +0530719 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[sta_id], NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100720 clear_bit(sta_id, mvm->sta_drained);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300721
722 if (mvm->tfd_drained[sta_id]) {
723 unsigned long i, msk = mvm->tfd_drained[sta_id];
724
Emmanuel Grumbacha4ca3ed2015-01-20 17:07:10 +0200725 for_each_set_bit(i, &msk, sizeof(msk) * BITS_PER_BYTE)
Arik Nemtsov06ecdba2015-10-12 14:47:11 +0300726 iwl_mvm_disable_txq(mvm, i, i,
727 IWL_MAX_TID_COUNT, 0);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300728
729 mvm->tfd_drained[sta_id] = 0;
730 IWL_DEBUG_TDLS(mvm, "Drained sta %d, with queues %ld\n",
731 sta_id, msk);
732 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100733 }
734
735 mutex_unlock(&mvm->mutex);
736}
737
Liad Kaufman24afba72015-07-28 18:56:08 +0300738static void iwl_mvm_disable_sta_queues(struct iwl_mvm *mvm,
739 struct ieee80211_vif *vif,
740 struct iwl_mvm_sta *mvm_sta)
741{
742 int ac;
743 int i;
744
745 lockdep_assert_held(&mvm->mutex);
746
747 for (i = 0; i < ARRAY_SIZE(mvm_sta->tid_data); i++) {
748 if (mvm_sta->tid_data[i].txq_id == IEEE80211_INVAL_HW_QUEUE)
749 continue;
750
751 ac = iwl_mvm_tid_to_ac_queue(i);
752 iwl_mvm_disable_txq(mvm, mvm_sta->tid_data[i].txq_id,
753 vif->hw_queue[ac], i, 0);
754 mvm_sta->tid_data[i].txq_id = IEEE80211_INVAL_HW_QUEUE;
755 }
756}
757
Johannes Berg8ca151b2013-01-24 14:25:36 +0100758int iwl_mvm_rm_sta(struct iwl_mvm *mvm,
759 struct ieee80211_vif *vif,
760 struct ieee80211_sta *sta)
761{
762 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg9d8ce6a2014-12-23 16:02:40 +0100763 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100764 int ret;
765
766 lockdep_assert_held(&mvm->mutex);
767
Sara Sharona571f5f2015-12-07 12:50:58 +0200768 if (iwl_mvm_has_new_rx_api(mvm))
769 kfree(mvm_sta->dup_data);
770
Johannes Berg8ca151b2013-01-24 14:25:36 +0100771 if (vif->type == NL80211_IFTYPE_STATION &&
772 mvmvif->ap_sta_id == mvm_sta->sta_id) {
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +0200773 ret = iwl_mvm_drain_sta(mvm, mvm_sta, true);
774 if (ret)
775 return ret;
Emmanuel Grumbach80d85652013-02-19 15:32:42 +0200776 /* flush its queues here since we are freeing mvm_sta */
Luca Coelho5888a402015-10-06 09:54:57 +0300777 ret = iwl_mvm_flush_tx_path(mvm, mvm_sta->tfd_queue_msk, 0);
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +0200778 if (ret)
779 return ret;
780 ret = iwl_trans_wait_tx_queue_empty(mvm->trans,
781 mvm_sta->tfd_queue_msk);
782 if (ret)
783 return ret;
784 ret = iwl_mvm_drain_sta(mvm, mvm_sta, false);
Emmanuel Grumbach80d85652013-02-19 15:32:42 +0200785
Liad Kaufman24afba72015-07-28 18:56:08 +0300786 /* If DQA is supported - the queues can be disabled now */
787 if (iwl_mvm_is_dqa_supported(mvm))
788 iwl_mvm_disable_sta_queues(mvm, vif, mvm_sta);
789
Johannes Berg8ca151b2013-01-24 14:25:36 +0100790 /* if we are associated - we can't remove the AP STA now */
791 if (vif->bss_conf.assoc)
792 return ret;
793
794 /* unassoc - go ahead - remove the AP STA now */
795 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
Eliad Peller37577fe2013-12-05 17:19:39 +0200796
797 /* clear d0i3_ap_sta_id if no longer relevant */
798 if (mvm->d0i3_ap_sta_id == mvm_sta->sta_id)
799 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100800 }
801
802 /*
Arik Nemtsov1d3c3f62014-10-23 18:03:10 +0300803 * This shouldn't happen - the TDLS channel switch should be canceled
804 * before the STA is removed.
805 */
806 if (WARN_ON_ONCE(mvm->tdls_cs.peer.sta_id == mvm_sta->sta_id)) {
807 mvm->tdls_cs.peer.sta_id = IWL_MVM_STATION_COUNT;
808 cancel_delayed_work(&mvm->tdls_cs.dwork);
809 }
810
811 /*
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +0300812 * Make sure that the tx response code sees the station as -EBUSY and
813 * calls the drain worker.
814 */
815 spin_lock_bh(&mvm_sta->lock);
816 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100817 * There are frames pending on the AC queues for this station.
818 * We need to wait until all the frames are drained...
819 */
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +0300820 if (atomic_read(&mvm->pending_frames[mvm_sta->sta_id])) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100821 rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id],
822 ERR_PTR(-EBUSY));
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +0300823 spin_unlock_bh(&mvm_sta->lock);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300824
825 /* disable TDLS sta queues on drain complete */
826 if (sta->tdls) {
827 mvm->tfd_drained[mvm_sta->sta_id] =
828 mvm_sta->tfd_queue_msk;
829 IWL_DEBUG_TDLS(mvm, "Draining TDLS sta %d\n",
830 mvm_sta->sta_id);
831 }
832
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +0300833 ret = iwl_mvm_drain_sta(mvm, mvm_sta, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100834 } else {
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +0300835 spin_unlock_bh(&mvm_sta->lock);
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300836
837 if (sta->tdls)
838 iwl_mvm_tdls_sta_deinit(mvm, sta);
839
Johannes Berg8ca151b2013-01-24 14:25:36 +0100840 ret = iwl_mvm_rm_sta_common(mvm, mvm_sta->sta_id);
Monam Agarwalc531c772014-03-24 00:05:56 +0530841 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[mvm_sta->sta_id], NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100842 }
843
844 return ret;
845}
846
847int iwl_mvm_rm_sta_id(struct iwl_mvm *mvm,
848 struct ieee80211_vif *vif,
849 u8 sta_id)
850{
851 int ret = iwl_mvm_rm_sta_common(mvm, sta_id);
852
853 lockdep_assert_held(&mvm->mutex);
854
Monam Agarwalc531c772014-03-24 00:05:56 +0530855 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[sta_id], NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100856 return ret;
857}
858
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +0200859int iwl_mvm_allocate_int_sta(struct iwl_mvm *mvm,
860 struct iwl_mvm_int_sta *sta,
861 u32 qmask, enum nl80211_iftype iftype)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100862{
863 if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
Eliad Pellerb92e6612014-01-23 17:58:23 +0200864 sta->sta_id = iwl_mvm_find_free_sta_id(mvm, iftype);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100865 if (WARN_ON_ONCE(sta->sta_id == IWL_MVM_STATION_COUNT))
866 return -ENOSPC;
867 }
868
869 sta->tfd_queue_msk = qmask;
870
871 /* put a non-NULL value so iterating over the stations won't stop */
872 rcu_assign_pointer(mvm->fw_id_to_mac_id[sta->sta_id], ERR_PTR(-EINVAL));
873 return 0;
874}
875
Johannes Berg712b24a2014-08-04 14:14:14 +0200876static void iwl_mvm_dealloc_int_sta(struct iwl_mvm *mvm,
877 struct iwl_mvm_int_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100878{
Monam Agarwalc531c772014-03-24 00:05:56 +0530879 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[sta->sta_id], NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100880 memset(sta, 0, sizeof(struct iwl_mvm_int_sta));
881 sta->sta_id = IWL_MVM_STATION_COUNT;
882}
883
884static int iwl_mvm_add_int_sta_common(struct iwl_mvm *mvm,
885 struct iwl_mvm_int_sta *sta,
886 const u8 *addr,
887 u16 mac_id, u16 color)
888{
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +0300889 struct iwl_mvm_add_sta_cmd cmd;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100890 int ret;
891 u32 status;
892
893 lockdep_assert_held(&mvm->mutex);
894
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +0300895 memset(&cmd, 0, sizeof(cmd));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100896 cmd.sta_id = sta->sta_id;
897 cmd.mac_id_n_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mac_id,
898 color));
899
900 cmd.tfd_queue_msk = cpu_to_le32(sta->tfd_queue_msk);
Liad Kaufmancf0cda12015-09-24 10:44:12 +0200901 cmd.tid_disable_tx = cpu_to_le16(0xffff);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100902
903 if (addr)
904 memcpy(cmd.addr, addr, ETH_ALEN);
905
Sara Sharon854c5702016-01-26 13:17:47 +0200906 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
907 iwl_mvm_add_sta_cmd_size(mvm),
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +0300908 &cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100909 if (ret)
910 return ret;
911
Sara Sharon837c4da2016-01-07 16:50:45 +0200912 switch (status & IWL_ADD_STA_STATUS_MASK) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100913 case ADD_STA_SUCCESS:
914 IWL_DEBUG_INFO(mvm, "Internal station added.\n");
915 return 0;
916 default:
917 ret = -EIO;
918 IWL_ERR(mvm, "Add internal station failed, status=0x%x\n",
919 status);
920 break;
921 }
922 return ret;
923}
924
925int iwl_mvm_add_aux_sta(struct iwl_mvm *mvm)
926{
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200927 unsigned int wdg_timeout = iwlmvm_mod_params.tfd_q_hang_detect ?
928 mvm->cfg->base_params->wd_timeout :
929 IWL_WATCHDOG_DISABLED;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100930 int ret;
931
932 lockdep_assert_held(&mvm->mutex);
933
Ariej Marjieh7da91b02014-07-07 12:09:40 +0300934 /* Map Aux queue to fifo - needs to happen before adding Aux station */
Liad Kaufman4ecafae2015-07-14 13:36:18 +0300935 iwl_mvm_enable_ac_txq(mvm, mvm->aux_queue, mvm->aux_queue,
Liad Kaufman5c1156e2015-07-22 17:59:53 +0300936 IWL_MVM_TX_FIFO_MCAST, 0, wdg_timeout);
Ariej Marjieh7da91b02014-07-07 12:09:40 +0300937
938 /* Allocate aux station and assign to it the aux queue */
939 ret = iwl_mvm_allocate_int_sta(mvm, &mvm->aux_sta, BIT(mvm->aux_queue),
Eliad Pellerb92e6612014-01-23 17:58:23 +0200940 NL80211_IFTYPE_UNSPECIFIED);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100941 if (ret)
942 return ret;
943
944 ret = iwl_mvm_add_int_sta_common(mvm, &mvm->aux_sta, NULL,
945 MAC_INDEX_AUX, 0);
946
947 if (ret)
948 iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta);
949 return ret;
950}
951
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +0200952int iwl_mvm_add_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
953{
954 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
955
956 lockdep_assert_held(&mvm->mutex);
957 return iwl_mvm_add_int_sta_common(mvm, &mvm->snif_sta, vif->addr,
958 mvmvif->id, 0);
959}
960
961int iwl_mvm_rm_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
962{
963 int ret;
964
965 lockdep_assert_held(&mvm->mutex);
966
967 ret = iwl_mvm_rm_sta_common(mvm, mvm->snif_sta.sta_id);
968 if (ret)
969 IWL_WARN(mvm, "Failed sending remove station\n");
970
971 return ret;
972}
973
974void iwl_mvm_dealloc_snif_sta(struct iwl_mvm *mvm)
975{
976 iwl_mvm_dealloc_int_sta(mvm, &mvm->snif_sta);
977}
978
Johannes Berg712b24a2014-08-04 14:14:14 +0200979void iwl_mvm_del_aux_sta(struct iwl_mvm *mvm)
980{
981 lockdep_assert_held(&mvm->mutex);
982
983 iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta);
984}
985
Johannes Berg8ca151b2013-01-24 14:25:36 +0100986/*
987 * Send the add station command for the vif's broadcast station.
988 * Assumes that the station was already allocated.
989 *
990 * @mvm: the mvm component
991 * @vif: the interface to which the broadcast station is added
992 * @bsta: the broadcast station to add.
993 */
Johannes Berg013290a2014-08-04 13:38:48 +0200994int iwl_mvm_send_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100995{
996 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg013290a2014-08-04 13:38:48 +0200997 struct iwl_mvm_int_sta *bsta = &mvmvif->bcast_sta;
Johannes Berg5023d962013-07-31 14:07:43 +0200998 static const u8 _baddr[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
Johannes Berga4243402014-01-20 23:46:38 +0100999 const u8 *baddr = _baddr;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001000
1001 lockdep_assert_held(&mvm->mutex);
1002
Liad Kaufmande24f632015-08-04 15:19:18 +03001003 if (iwl_mvm_is_dqa_supported(mvm)) {
1004 struct iwl_trans_txq_scd_cfg cfg = {
1005 .fifo = IWL_MVM_TX_FIFO_VO,
1006 .sta_id = mvmvif->bcast_sta.sta_id,
1007 .tid = IWL_MAX_TID_COUNT,
1008 .aggregate = false,
1009 .frame_limit = IWL_FRAME_LIMIT,
1010 };
1011 unsigned int wdg_timeout =
1012 iwl_mvm_get_wd_timeout(mvm, vif, false, false);
1013 int queue;
1014
1015 if ((vif->type == NL80211_IFTYPE_AP) &&
1016 (mvmvif->bcast_sta.tfd_queue_msk &
1017 BIT(IWL_MVM_DQA_AP_PROBE_RESP_QUEUE)))
1018 queue = IWL_MVM_DQA_AP_PROBE_RESP_QUEUE;
1019 else if (WARN(1, "Missed required TXQ for adding bcast STA\n"))
1020 return -EINVAL;
1021
1022 iwl_mvm_enable_txq(mvm, queue, vif->hw_queue[0], 0, &cfg,
1023 wdg_timeout);
1024 }
1025
Johannes Berg5023d962013-07-31 14:07:43 +02001026 if (vif->type == NL80211_IFTYPE_ADHOC)
1027 baddr = vif->bss_conf.bssid;
1028
Johannes Berg8ca151b2013-01-24 14:25:36 +01001029 if (WARN_ON_ONCE(bsta->sta_id == IWL_MVM_STATION_COUNT))
1030 return -ENOSPC;
1031
1032 return iwl_mvm_add_int_sta_common(mvm, bsta, baddr,
1033 mvmvif->id, mvmvif->color);
1034}
1035
1036/* Send the FW a request to remove the station from it's internal data
1037 * structures, but DO NOT remove the entry from the local data structures. */
Johannes Berg013290a2014-08-04 13:38:48 +02001038int iwl_mvm_send_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001039{
Johannes Berg013290a2014-08-04 13:38:48 +02001040 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001041 int ret;
1042
1043 lockdep_assert_held(&mvm->mutex);
1044
Johannes Berg013290a2014-08-04 13:38:48 +02001045 ret = iwl_mvm_rm_sta_common(mvm, mvmvif->bcast_sta.sta_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001046 if (ret)
1047 IWL_WARN(mvm, "Failed sending remove station\n");
1048 return ret;
1049}
1050
Johannes Berg013290a2014-08-04 13:38:48 +02001051int iwl_mvm_alloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1052{
1053 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Liad Kaufmande24f632015-08-04 15:19:18 +03001054 u32 qmask = 0;
Johannes Berg013290a2014-08-04 13:38:48 +02001055
1056 lockdep_assert_held(&mvm->mutex);
1057
Liad Kaufmande24f632015-08-04 15:19:18 +03001058 if (!iwl_mvm_is_dqa_supported(mvm))
1059 qmask = iwl_mvm_mac_get_queues_mask(vif);
Johannes Berg013290a2014-08-04 13:38:48 +02001060
Liad Kaufmande24f632015-08-04 15:19:18 +03001061 if (vif->type == NL80211_IFTYPE_AP) {
1062 /*
1063 * The firmware defines the TFD queue mask to only be relevant
1064 * for *unicast* queues, so the multicast (CAB) queue shouldn't
1065 * be included.
1066 */
Johannes Berg013290a2014-08-04 13:38:48 +02001067 qmask &= ~BIT(vif->cab_queue);
1068
Liad Kaufmande24f632015-08-04 15:19:18 +03001069 if (iwl_mvm_is_dqa_supported(mvm))
1070 qmask |= BIT(IWL_MVM_DQA_AP_PROBE_RESP_QUEUE);
1071 }
1072
Johannes Berg013290a2014-08-04 13:38:48 +02001073 return iwl_mvm_allocate_int_sta(mvm, &mvmvif->bcast_sta, qmask,
1074 ieee80211_vif_type_p2p(vif));
1075}
1076
Johannes Berg8ca151b2013-01-24 14:25:36 +01001077/* Allocate a new station entry for the broadcast station to the given vif,
1078 * and send it to the FW.
1079 * Note that each P2P mac should have its own broadcast station.
1080 *
1081 * @mvm: the mvm component
1082 * @vif: the interface to which the broadcast station is added
1083 * @bsta: the broadcast station to add. */
Johannes Berg013290a2014-08-04 13:38:48 +02001084int iwl_mvm_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001085{
1086 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg013290a2014-08-04 13:38:48 +02001087 struct iwl_mvm_int_sta *bsta = &mvmvif->bcast_sta;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001088 int ret;
1089
1090 lockdep_assert_held(&mvm->mutex);
1091
Johannes Berg013290a2014-08-04 13:38:48 +02001092 ret = iwl_mvm_alloc_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001093 if (ret)
1094 return ret;
1095
Johannes Berg013290a2014-08-04 13:38:48 +02001096 ret = iwl_mvm_send_add_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001097
1098 if (ret)
1099 iwl_mvm_dealloc_int_sta(mvm, bsta);
Johannes Berg013290a2014-08-04 13:38:48 +02001100
Johannes Berg8ca151b2013-01-24 14:25:36 +01001101 return ret;
1102}
1103
Johannes Berg013290a2014-08-04 13:38:48 +02001104void iwl_mvm_dealloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1105{
1106 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1107
1108 iwl_mvm_dealloc_int_sta(mvm, &mvmvif->bcast_sta);
1109}
1110
Johannes Berg8ca151b2013-01-24 14:25:36 +01001111/*
1112 * Send the FW a request to remove the station from it's internal data
1113 * structures, and in addition remove it from the local data structure.
1114 */
Johannes Berg013290a2014-08-04 13:38:48 +02001115int iwl_mvm_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001116{
1117 int ret;
1118
1119 lockdep_assert_held(&mvm->mutex);
1120
Johannes Berg013290a2014-08-04 13:38:48 +02001121 ret = iwl_mvm_send_rm_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001122
Johannes Berg013290a2014-08-04 13:38:48 +02001123 iwl_mvm_dealloc_bcast_sta(mvm, vif);
1124
Johannes Berg8ca151b2013-01-24 14:25:36 +01001125 return ret;
1126}
1127
Emmanuel Grumbach113a0442013-07-02 14:16:38 +03001128#define IWL_MAX_RX_BA_SESSIONS 16
1129
Johannes Berg8ca151b2013-01-24 14:25:36 +01001130int iwl_mvm_sta_rx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Sara Sharon854c5702016-01-26 13:17:47 +02001131 int tid, u16 ssn, bool start, u8 buf_size)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001132{
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01001133 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001134 struct iwl_mvm_add_sta_cmd cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +01001135 int ret;
1136 u32 status;
1137
1138 lockdep_assert_held(&mvm->mutex);
1139
Emmanuel Grumbach113a0442013-07-02 14:16:38 +03001140 if (start && mvm->rx_ba_sessions >= IWL_MAX_RX_BA_SESSIONS) {
1141 IWL_WARN(mvm, "Not enough RX BA SESSIONS\n");
1142 return -ENOSPC;
1143 }
1144
Johannes Berg8ca151b2013-01-24 14:25:36 +01001145 cmd.mac_id_n_color = cpu_to_le32(mvm_sta->mac_id_n_color);
1146 cmd.sta_id = mvm_sta->sta_id;
1147 cmd.add_modify = STA_MODE_MODIFY;
Emmanuel Grumbach93a42662013-07-02 13:35:35 +03001148 if (start) {
1149 cmd.add_immediate_ba_tid = (u8) tid;
1150 cmd.add_immediate_ba_ssn = cpu_to_le16(ssn);
Sara Sharon854c5702016-01-26 13:17:47 +02001151 cmd.rx_ba_window = cpu_to_le16((u16)buf_size);
Emmanuel Grumbach93a42662013-07-02 13:35:35 +03001152 } else {
1153 cmd.remove_immediate_ba_tid = (u8) tid;
1154 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001155 cmd.modify_mask = start ? STA_MODIFY_ADD_BA_TID :
1156 STA_MODIFY_REMOVE_BA_TID;
1157
1158 status = ADD_STA_SUCCESS;
Sara Sharon854c5702016-01-26 13:17:47 +02001159 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
1160 iwl_mvm_add_sta_cmd_size(mvm),
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001161 &cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001162 if (ret)
1163 return ret;
1164
Sara Sharon837c4da2016-01-07 16:50:45 +02001165 switch (status & IWL_ADD_STA_STATUS_MASK) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001166 case ADD_STA_SUCCESS:
1167 IWL_DEBUG_INFO(mvm, "RX BA Session %sed in fw\n",
1168 start ? "start" : "stopp");
1169 break;
1170 case ADD_STA_IMMEDIATE_BA_FAILURE:
1171 IWL_WARN(mvm, "RX BA Session refused by fw\n");
1172 ret = -ENOSPC;
1173 break;
1174 default:
1175 ret = -EIO;
1176 IWL_ERR(mvm, "RX BA Session failed %sing, status 0x%x\n",
1177 start ? "start" : "stopp", status);
1178 break;
1179 }
1180
Emmanuel Grumbach113a0442013-07-02 14:16:38 +03001181 if (!ret) {
1182 if (start)
1183 mvm->rx_ba_sessions++;
1184 else if (mvm->rx_ba_sessions > 0)
1185 /* check that restart flow didn't zero the counter */
1186 mvm->rx_ba_sessions--;
1187 }
1188
Johannes Berg8ca151b2013-01-24 14:25:36 +01001189 return ret;
1190}
1191
1192static int iwl_mvm_sta_tx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
1193 int tid, u8 queue, bool start)
1194{
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01001195 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001196 struct iwl_mvm_add_sta_cmd cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +01001197 int ret;
1198 u32 status;
1199
1200 lockdep_assert_held(&mvm->mutex);
1201
1202 if (start) {
1203 mvm_sta->tfd_queue_msk |= BIT(queue);
1204 mvm_sta->tid_disable_agg &= ~BIT(tid);
1205 } else {
1206 mvm_sta->tfd_queue_msk &= ~BIT(queue);
1207 mvm_sta->tid_disable_agg |= BIT(tid);
1208 }
1209
1210 cmd.mac_id_n_color = cpu_to_le32(mvm_sta->mac_id_n_color);
1211 cmd.sta_id = mvm_sta->sta_id;
1212 cmd.add_modify = STA_MODE_MODIFY;
1213 cmd.modify_mask = STA_MODIFY_QUEUES | STA_MODIFY_TID_DISABLE_TX;
1214 cmd.tfd_queue_msk = cpu_to_le32(mvm_sta->tfd_queue_msk);
1215 cmd.tid_disable_tx = cpu_to_le16(mvm_sta->tid_disable_agg);
1216
1217 status = ADD_STA_SUCCESS;
Sara Sharon854c5702016-01-26 13:17:47 +02001218 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA,
1219 iwl_mvm_add_sta_cmd_size(mvm),
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001220 &cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001221 if (ret)
1222 return ret;
1223
Sara Sharon837c4da2016-01-07 16:50:45 +02001224 switch (status & IWL_ADD_STA_STATUS_MASK) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001225 case ADD_STA_SUCCESS:
1226 break;
1227 default:
1228 ret = -EIO;
1229 IWL_ERR(mvm, "TX BA Session failed %sing, status 0x%x\n",
1230 start ? "start" : "stopp", status);
1231 break;
1232 }
1233
1234 return ret;
1235}
1236
Emmanuel Grumbachb797e3f2014-03-06 14:49:36 +02001237const u8 tid_to_mac80211_ac[] = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001238 IEEE80211_AC_BE,
1239 IEEE80211_AC_BK,
1240 IEEE80211_AC_BK,
1241 IEEE80211_AC_BE,
1242 IEEE80211_AC_VI,
1243 IEEE80211_AC_VI,
1244 IEEE80211_AC_VO,
1245 IEEE80211_AC_VO,
1246};
1247
Johannes Berg3e56ead2013-02-15 22:23:18 +01001248static const u8 tid_to_ucode_ac[] = {
1249 AC_BE,
1250 AC_BK,
1251 AC_BK,
1252 AC_BE,
1253 AC_VI,
1254 AC_VI,
1255 AC_VO,
1256 AC_VO,
1257};
1258
Johannes Berg8ca151b2013-01-24 14:25:36 +01001259int iwl_mvm_sta_tx_agg_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1260 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
1261{
Johannes Berg5b577a92013-11-14 18:20:04 +01001262 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001263 struct iwl_mvm_tid_data *tid_data;
1264 int txq_id;
Liad Kaufman4ecafae2015-07-14 13:36:18 +03001265 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001266
1267 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT))
1268 return -EINVAL;
1269
1270 if (mvmsta->tid_data[tid].state != IWL_AGG_OFF) {
1271 IWL_ERR(mvm, "Start AGG when state is not IWL_AGG_OFF %d!\n",
1272 mvmsta->tid_data[tid].state);
1273 return -ENXIO;
1274 }
1275
1276 lockdep_assert_held(&mvm->mutex);
1277
Arik Nemtsovb2492502014-03-13 12:21:50 +02001278 spin_lock_bh(&mvmsta->lock);
1279
1280 /* possible race condition - we entered D0i3 while starting agg */
1281 if (test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status)) {
1282 spin_unlock_bh(&mvmsta->lock);
1283 IWL_ERR(mvm, "Entered D0i3 while starting Tx agg\n");
1284 return -EIO;
1285 }
1286
Liad Kaufman4ecafae2015-07-14 13:36:18 +03001287 spin_lock_bh(&mvm->queue_info_lock);
1288
1289 txq_id = iwl_mvm_find_free_queue(mvm, mvm->first_agg_queue,
1290 mvm->last_agg_queue);
1291 if (txq_id < 0) {
1292 ret = txq_id;
1293 spin_unlock_bh(&mvm->queue_info_lock);
1294 IWL_ERR(mvm, "Failed to allocate agg queue\n");
1295 goto release_locks;
1296 }
1297 mvm->queue_info[txq_id].setup_reserved = true;
1298 spin_unlock_bh(&mvm->queue_info_lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001299
Johannes Berg8ca151b2013-01-24 14:25:36 +01001300 tid_data = &mvmsta->tid_data[tid];
Johannes Berg9a886582013-02-15 19:25:00 +01001301 tid_data->ssn = IEEE80211_SEQ_TO_SN(tid_data->seq_number);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001302 tid_data->txq_id = txq_id;
1303 *ssn = tid_data->ssn;
1304
1305 IWL_DEBUG_TX_QUEUES(mvm,
1306 "Start AGG: sta %d tid %d queue %d - ssn = %d, next_recl = %d\n",
1307 mvmsta->sta_id, tid, txq_id, tid_data->ssn,
1308 tid_data->next_reclaimed);
1309
1310 if (tid_data->ssn == tid_data->next_reclaimed) {
1311 tid_data->state = IWL_AGG_STARTING;
1312 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1313 } else {
1314 tid_data->state = IWL_EMPTYING_HW_QUEUE_ADDBA;
1315 }
1316
Liad Kaufman4ecafae2015-07-14 13:36:18 +03001317 ret = 0;
1318
1319release_locks:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001320 spin_unlock_bh(&mvmsta->lock);
1321
Liad Kaufman4ecafae2015-07-14 13:36:18 +03001322 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001323}
1324
1325int iwl_mvm_sta_tx_agg_oper(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +02001326 struct ieee80211_sta *sta, u16 tid, u8 buf_size,
1327 bool amsdu)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001328{
Johannes Berg5b577a92013-11-14 18:20:04 +01001329 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001330 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
Emmanuel Grumbach5d42e7b2015-03-19 20:04:51 +02001331 unsigned int wdg_timeout =
1332 iwl_mvm_get_wd_timeout(mvm, vif, sta->tdls, false);
Emmanuel Grumbacheea76c32016-02-21 16:29:17 +02001333 int queue, ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001334 u16 ssn;
1335
Emmanuel Grumbacheea76c32016-02-21 16:29:17 +02001336 struct iwl_trans_txq_scd_cfg cfg = {
1337 .sta_id = mvmsta->sta_id,
1338 .tid = tid,
1339 .frame_limit = buf_size,
1340 .aggregate = true,
1341 };
1342
Eyal Shapiraefed6642014-09-14 15:58:53 +03001343 BUILD_BUG_ON((sizeof(mvmsta->agg_tids) * BITS_PER_BYTE)
1344 != IWL_MAX_TID_COUNT);
1345
Johannes Berg8ca151b2013-01-24 14:25:36 +01001346 buf_size = min_t(int, buf_size, LINK_QUAL_AGG_FRAME_LIMIT_DEF);
1347
1348 spin_lock_bh(&mvmsta->lock);
1349 ssn = tid_data->ssn;
1350 queue = tid_data->txq_id;
1351 tid_data->state = IWL_AGG_ON;
Eyal Shapiraefed6642014-09-14 15:58:53 +03001352 mvmsta->agg_tids |= BIT(tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001353 tid_data->ssn = 0xffff;
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +02001354 tid_data->amsdu_in_ampdu_allowed = amsdu;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001355 spin_unlock_bh(&mvmsta->lock);
1356
Emmanuel Grumbacheea76c32016-02-21 16:29:17 +02001357 cfg.fifo = iwl_mvm_ac_to_tx_fifo[tid_to_mac80211_ac[tid]];
Johannes Berg8ca151b2013-01-24 14:25:36 +01001358
Emmanuel Grumbacheea76c32016-02-21 16:29:17 +02001359 iwl_mvm_enable_txq(mvm, queue, vif->hw_queue[tid_to_mac80211_ac[tid]],
1360 ssn, &cfg, wdg_timeout);
Andrei Otcheretianskifa7878e2015-05-05 09:28:16 +03001361
Johannes Berg8ca151b2013-01-24 14:25:36 +01001362 ret = iwl_mvm_sta_tx_agg(mvm, sta, tid, queue, true);
1363 if (ret)
1364 return -EIO;
1365
Liad Kaufman4ecafae2015-07-14 13:36:18 +03001366 /* No need to mark as reserved */
1367 spin_lock_bh(&mvm->queue_info_lock);
1368 mvm->queue_info[queue].setup_reserved = false;
1369 spin_unlock_bh(&mvm->queue_info_lock);
1370
Johannes Berg8ca151b2013-01-24 14:25:36 +01001371 /*
1372 * Even though in theory the peer could have different
1373 * aggregation reorder buffer sizes for different sessions,
1374 * our ucode doesn't allow for that and has a global limit
1375 * for each station. Therefore, use the minimum of all the
1376 * aggregation sessions and our default value.
1377 */
1378 mvmsta->max_agg_bufsize =
1379 min(mvmsta->max_agg_bufsize, buf_size);
1380 mvmsta->lq_sta.lq.agg_frame_cnt_limit = mvmsta->max_agg_bufsize;
1381
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +03001382 IWL_DEBUG_HT(mvm, "Tx aggregation enabled on ra = %pM tid = %d\n",
1383 sta->addr, tid);
1384
Eyal Shapira9e680942013-11-09 00:16:16 +02001385 return iwl_mvm_send_lq_cmd(mvm, &mvmsta->lq_sta.lq, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001386}
1387
1388int iwl_mvm_sta_tx_agg_stop(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1389 struct ieee80211_sta *sta, u16 tid)
1390{
Johannes Berg5b577a92013-11-14 18:20:04 +01001391 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001392 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
1393 u16 txq_id;
1394 int err;
1395
Emmanuel Grumbachf9aa8dd2013-03-04 09:11:08 +02001396
1397 /*
1398 * If mac80211 is cleaning its state, then say that we finished since
1399 * our state has been cleared anyway.
1400 */
1401 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
1402 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1403 return 0;
1404 }
1405
Johannes Berg8ca151b2013-01-24 14:25:36 +01001406 spin_lock_bh(&mvmsta->lock);
1407
1408 txq_id = tid_data->txq_id;
1409
1410 IWL_DEBUG_TX_QUEUES(mvm, "Stop AGG: sta %d tid %d q %d state %d\n",
1411 mvmsta->sta_id, tid, txq_id, tid_data->state);
1412
Eyal Shapiraefed6642014-09-14 15:58:53 +03001413 mvmsta->agg_tids &= ~BIT(tid);
1414
Liad Kaufman4ecafae2015-07-14 13:36:18 +03001415 /* No need to mark as reserved anymore */
1416 spin_lock_bh(&mvm->queue_info_lock);
1417 mvm->queue_info[txq_id].setup_reserved = false;
1418 spin_unlock_bh(&mvm->queue_info_lock);
1419
Johannes Berg8ca151b2013-01-24 14:25:36 +01001420 switch (tid_data->state) {
1421 case IWL_AGG_ON:
Johannes Berg9a886582013-02-15 19:25:00 +01001422 tid_data->ssn = IEEE80211_SEQ_TO_SN(tid_data->seq_number);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001423
1424 IWL_DEBUG_TX_QUEUES(mvm,
1425 "ssn = %d, next_recl = %d\n",
1426 tid_data->ssn, tid_data->next_reclaimed);
1427
1428 /* There are still packets for this RA / TID in the HW */
1429 if (tid_data->ssn != tid_data->next_reclaimed) {
1430 tid_data->state = IWL_EMPTYING_HW_QUEUE_DELBA;
1431 err = 0;
1432 break;
1433 }
1434
1435 tid_data->ssn = 0xffff;
Johannes Bergf7f89e72014-08-05 15:24:44 +02001436 tid_data->state = IWL_AGG_OFF;
Johannes Bergf7f89e72014-08-05 15:24:44 +02001437 spin_unlock_bh(&mvmsta->lock);
1438
1439 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1440
1441 iwl_mvm_sta_tx_agg(mvm, sta, tid, txq_id, false);
1442
Liad Kaufman4ecafae2015-07-14 13:36:18 +03001443 iwl_mvm_disable_txq(mvm, txq_id,
1444 vif->hw_queue[tid_to_mac80211_ac[tid]], tid,
1445 0);
Johannes Bergf7f89e72014-08-05 15:24:44 +02001446 return 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001447 case IWL_AGG_STARTING:
1448 case IWL_EMPTYING_HW_QUEUE_ADDBA:
1449 /*
1450 * The agg session has been stopped before it was set up. This
1451 * can happen when the AddBA timer times out for example.
1452 */
1453
1454 /* No barriers since we are under mutex */
1455 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001456
1457 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1458 tid_data->state = IWL_AGG_OFF;
1459 err = 0;
1460 break;
1461 default:
1462 IWL_ERR(mvm,
1463 "Stopping AGG while state not ON or starting for %d on %d (%d)\n",
1464 mvmsta->sta_id, tid, tid_data->state);
1465 IWL_ERR(mvm,
1466 "\ttid_data->txq_id = %d\n", tid_data->txq_id);
1467 err = -EINVAL;
1468 }
1469
1470 spin_unlock_bh(&mvmsta->lock);
1471
1472 return err;
1473}
1474
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02001475int iwl_mvm_sta_tx_agg_flush(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1476 struct ieee80211_sta *sta, u16 tid)
1477{
Johannes Berg5b577a92013-11-14 18:20:04 +01001478 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02001479 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
1480 u16 txq_id;
Johannes Bergb6658ff2013-07-24 13:55:51 +02001481 enum iwl_mvm_agg_state old_state;
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02001482
1483 /*
1484 * First set the agg state to OFF to avoid calling
1485 * ieee80211_stop_tx_ba_cb in iwl_mvm_check_ratid_empty.
1486 */
1487 spin_lock_bh(&mvmsta->lock);
1488 txq_id = tid_data->txq_id;
1489 IWL_DEBUG_TX_QUEUES(mvm, "Flush AGG: sta %d tid %d q %d state %d\n",
1490 mvmsta->sta_id, tid, txq_id, tid_data->state);
Johannes Bergb6658ff2013-07-24 13:55:51 +02001491 old_state = tid_data->state;
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02001492 tid_data->state = IWL_AGG_OFF;
Eyal Shapiraefed6642014-09-14 15:58:53 +03001493 mvmsta->agg_tids &= ~BIT(tid);
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02001494 spin_unlock_bh(&mvmsta->lock);
1495
Liad Kaufman4ecafae2015-07-14 13:36:18 +03001496 /* No need to mark as reserved */
1497 spin_lock_bh(&mvm->queue_info_lock);
1498 mvm->queue_info[txq_id].setup_reserved = false;
1499 spin_unlock_bh(&mvm->queue_info_lock);
1500
Johannes Bergb6658ff2013-07-24 13:55:51 +02001501 if (old_state >= IWL_AGG_ON) {
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02001502 iwl_mvm_drain_sta(mvm, mvmsta, true);
Luca Coelho5888a402015-10-06 09:54:57 +03001503 if (iwl_mvm_flush_tx_path(mvm, BIT(txq_id), 0))
Johannes Bergb6658ff2013-07-24 13:55:51 +02001504 IWL_ERR(mvm, "Couldn't flush the AGG queue\n");
Emmanuel Grumbachfe92e322015-03-11 09:34:31 +02001505 iwl_trans_wait_tx_queue_empty(mvm->trans,
1506 mvmsta->tfd_queue_msk);
1507 iwl_mvm_drain_sta(mvm, mvmsta, false);
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02001508
Johannes Bergf7f89e72014-08-05 15:24:44 +02001509 iwl_mvm_sta_tx_agg(mvm, sta, tid, txq_id, false);
1510
Liad Kaufman4ecafae2015-07-14 13:36:18 +03001511 iwl_mvm_disable_txq(mvm, tid_data->txq_id,
1512 vif->hw_queue[tid_to_mac80211_ac[tid]], tid,
1513 0);
Johannes Bergb6658ff2013-07-24 13:55:51 +02001514 }
1515
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +02001516 return 0;
1517}
1518
Johannes Berg8ca151b2013-01-24 14:25:36 +01001519static int iwl_mvm_set_fw_key_idx(struct iwl_mvm *mvm)
1520{
Johannes Berg2dc2a152015-06-16 17:09:18 +02001521 int i, max = -1, max_offs = -1;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001522
1523 lockdep_assert_held(&mvm->mutex);
1524
Johannes Berg2dc2a152015-06-16 17:09:18 +02001525 /* Pick the unused key offset with the highest 'deleted'
1526 * counter. Every time a key is deleted, all the counters
1527 * are incremented and the one that was just deleted is
1528 * reset to zero. Thus, the highest counter is the one
1529 * that was deleted longest ago. Pick that one.
1530 */
1531 for (i = 0; i < STA_KEY_MAX_NUM; i++) {
1532 if (test_bit(i, mvm->fw_key_table))
1533 continue;
1534 if (mvm->fw_key_deleted[i] > max) {
1535 max = mvm->fw_key_deleted[i];
1536 max_offs = i;
1537 }
1538 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001539
Johannes Berg2dc2a152015-06-16 17:09:18 +02001540 if (max_offs < 0)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001541 return STA_KEY_IDX_INVALID;
1542
Johannes Berg2dc2a152015-06-16 17:09:18 +02001543 return max_offs;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001544}
1545
Johannes Berg5f7a1842015-12-11 09:36:10 +01001546static struct iwl_mvm_sta *iwl_mvm_get_key_sta(struct iwl_mvm *mvm,
1547 struct ieee80211_vif *vif,
1548 struct ieee80211_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001549{
Johannes Berg5b530e92014-12-23 16:00:17 +01001550 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001551
Johannes Berg5f7a1842015-12-11 09:36:10 +01001552 if (sta)
1553 return iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001554
1555 /*
1556 * The device expects GTKs for station interfaces to be
1557 * installed as GTKs for the AP station. If we have no
1558 * station ID, then use AP's station ID.
1559 */
1560 if (vif->type == NL80211_IFTYPE_STATION &&
Avri Altman9513c5e2015-10-19 16:29:11 +02001561 mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) {
1562 u8 sta_id = mvmvif->ap_sta_id;
1563
Emmanuel Grumbach12f17212015-12-20 14:48:08 +02001564 sta = rcu_dereference_check(mvm->fw_id_to_mac_id[sta_id],
1565 lockdep_is_held(&mvm->mutex));
Avri Altman9513c5e2015-10-19 16:29:11 +02001566 /*
1567 * It is possible that the 'sta' parameter is NULL,
1568 * for example when a GTK is removed - the sta_id will then
1569 * be the AP ID, and no station was passed by mac80211.
1570 */
1571 if (IS_ERR_OR_NULL(sta))
Johannes Berg5f7a1842015-12-11 09:36:10 +01001572 return NULL;
Avri Altman9513c5e2015-10-19 16:29:11 +02001573
Johannes Berg5f7a1842015-12-11 09:36:10 +01001574 return iwl_mvm_sta_from_mac80211(sta);
Avri Altman9513c5e2015-10-19 16:29:11 +02001575 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001576
Johannes Berg5f7a1842015-12-11 09:36:10 +01001577 return NULL;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001578}
1579
1580static int iwl_mvm_send_sta_key(struct iwl_mvm *mvm,
1581 struct iwl_mvm_sta *mvm_sta,
Johannes Bergba3943b2014-11-12 23:54:48 +01001582 struct ieee80211_key_conf *keyconf, bool mcast,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001583 u32 tkip_iv32, u16 *tkip_p1k, u32 cmd_flags,
1584 u8 key_offset)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001585{
Max Stepanov5a258aa2013-04-07 09:11:21 +03001586 struct iwl_mvm_add_sta_key_cmd cmd = {};
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001587 __le16 key_flags;
Johannes Berg79920742014-11-03 15:43:04 +01001588 int ret;
1589 u32 status;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001590 u16 keyidx;
1591 int i;
Johannes Berg2f6319d2014-11-12 23:39:56 +01001592 u8 sta_id = mvm_sta->sta_id;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001593
1594 keyidx = (keyconf->keyidx << STA_KEY_FLG_KEYID_POS) &
1595 STA_KEY_FLG_KEYID_MSK;
1596 key_flags = cpu_to_le16(keyidx);
1597 key_flags |= cpu_to_le16(STA_KEY_FLG_WEP_KEY_MAP);
1598
1599 switch (keyconf->cipher) {
1600 case WLAN_CIPHER_SUITE_TKIP:
1601 key_flags |= cpu_to_le16(STA_KEY_FLG_TKIP);
Max Stepanov5a258aa2013-04-07 09:11:21 +03001602 cmd.tkip_rx_tsc_byte2 = tkip_iv32;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001603 for (i = 0; i < 5; i++)
Max Stepanov5a258aa2013-04-07 09:11:21 +03001604 cmd.tkip_rx_ttak[i] = cpu_to_le16(tkip_p1k[i]);
1605 memcpy(cmd.key, keyconf->key, keyconf->keylen);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001606 break;
1607 case WLAN_CIPHER_SUITE_CCMP:
1608 key_flags |= cpu_to_le16(STA_KEY_FLG_CCM);
Max Stepanov5a258aa2013-04-07 09:11:21 +03001609 memcpy(cmd.key, keyconf->key, keyconf->keylen);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001610 break;
Johannes Bergba3943b2014-11-12 23:54:48 +01001611 case WLAN_CIPHER_SUITE_WEP104:
1612 key_flags |= cpu_to_le16(STA_KEY_FLG_WEP_13BYTES);
John W. Linvilleaa0cb082015-01-12 16:18:11 -05001613 /* fall through */
Johannes Bergba3943b2014-11-12 23:54:48 +01001614 case WLAN_CIPHER_SUITE_WEP40:
1615 key_flags |= cpu_to_le16(STA_KEY_FLG_WEP);
1616 memcpy(cmd.key + 3, keyconf->key, keyconf->keylen);
1617 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001618 default:
Max Stepanove36e5432013-08-27 19:56:13 +03001619 key_flags |= cpu_to_le16(STA_KEY_FLG_EXT);
1620 memcpy(cmd.key, keyconf->key, keyconf->keylen);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001621 }
1622
Johannes Bergba3943b2014-11-12 23:54:48 +01001623 if (mcast)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001624 key_flags |= cpu_to_le16(STA_KEY_MULTICAST);
1625
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001626 cmd.key_offset = key_offset;
Max Stepanov5a258aa2013-04-07 09:11:21 +03001627 cmd.key_flags = key_flags;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001628 cmd.sta_id = sta_id;
1629
1630 status = ADD_STA_SUCCESS;
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001631 if (cmd_flags & CMD_ASYNC)
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001632 ret = iwl_mvm_send_cmd_pdu(mvm, ADD_STA_KEY, CMD_ASYNC,
1633 sizeof(cmd), &cmd);
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001634 else
1635 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA_KEY, sizeof(cmd),
1636 &cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001637
1638 switch (status) {
1639 case ADD_STA_SUCCESS:
1640 IWL_DEBUG_WEP(mvm, "MODIFY_STA: set dynamic key passed\n");
1641 break;
1642 default:
1643 ret = -EIO;
1644 IWL_ERR(mvm, "MODIFY_STA: set dynamic key failed\n");
1645 break;
1646 }
1647
1648 return ret;
1649}
1650
1651static int iwl_mvm_send_sta_igtk(struct iwl_mvm *mvm,
1652 struct ieee80211_key_conf *keyconf,
1653 u8 sta_id, bool remove_key)
1654{
1655 struct iwl_mvm_mgmt_mcast_key_cmd igtk_cmd = {};
1656
1657 /* verify the key details match the required command's expectations */
1658 if (WARN_ON((keyconf->cipher != WLAN_CIPHER_SUITE_AES_CMAC) ||
1659 (keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE) ||
1660 (keyconf->keyidx != 4 && keyconf->keyidx != 5)))
1661 return -EINVAL;
1662
1663 igtk_cmd.key_id = cpu_to_le32(keyconf->keyidx);
1664 igtk_cmd.sta_id = cpu_to_le32(sta_id);
1665
1666 if (remove_key) {
1667 igtk_cmd.ctrl_flags |= cpu_to_le32(STA_KEY_NOT_VALID);
1668 } else {
1669 struct ieee80211_key_seq seq;
1670 const u8 *pn;
1671
1672 memcpy(igtk_cmd.IGTK, keyconf->key, keyconf->keylen);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001673 ieee80211_get_key_rx_seq(keyconf, 0, &seq);
1674 pn = seq.aes_cmac.pn;
1675 igtk_cmd.receive_seq_cnt = cpu_to_le64(((u64) pn[5] << 0) |
1676 ((u64) pn[4] << 8) |
1677 ((u64) pn[3] << 16) |
1678 ((u64) pn[2] << 24) |
1679 ((u64) pn[1] << 32) |
1680 ((u64) pn[0] << 40));
1681 }
1682
1683 IWL_DEBUG_INFO(mvm, "%s igtk for sta %u\n",
1684 remove_key ? "removing" : "installing",
1685 igtk_cmd.sta_id);
1686
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001687 return iwl_mvm_send_cmd_pdu(mvm, MGMT_MCAST_KEY, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001688 sizeof(igtk_cmd), &igtk_cmd);
1689}
1690
1691
1692static inline u8 *iwl_mvm_get_mac_addr(struct iwl_mvm *mvm,
1693 struct ieee80211_vif *vif,
1694 struct ieee80211_sta *sta)
1695{
Johannes Berg5b530e92014-12-23 16:00:17 +01001696 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001697
1698 if (sta)
1699 return sta->addr;
1700
1701 if (vif->type == NL80211_IFTYPE_STATION &&
1702 mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) {
1703 u8 sta_id = mvmvif->ap_sta_id;
1704 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
1705 lockdep_is_held(&mvm->mutex));
1706 return sta->addr;
1707 }
1708
1709
1710 return NULL;
1711}
1712
Johannes Berg2f6319d2014-11-12 23:39:56 +01001713static int __iwl_mvm_set_sta_key(struct iwl_mvm *mvm,
1714 struct ieee80211_vif *vif,
1715 struct ieee80211_sta *sta,
Johannes Bergba3943b2014-11-12 23:54:48 +01001716 struct ieee80211_key_conf *keyconf,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001717 u8 key_offset,
Johannes Bergba3943b2014-11-12 23:54:48 +01001718 bool mcast)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001719{
Johannes Berg2f6319d2014-11-12 23:39:56 +01001720 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001721 int ret;
Johannes Berg2f6319d2014-11-12 23:39:56 +01001722 const u8 *addr;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001723 struct ieee80211_key_seq seq;
1724 u16 p1k[5];
1725
Johannes Berg8ca151b2013-01-24 14:25:36 +01001726 switch (keyconf->cipher) {
1727 case WLAN_CIPHER_SUITE_TKIP:
1728 addr = iwl_mvm_get_mac_addr(mvm, vif, sta);
1729 /* get phase 1 key from mac80211 */
1730 ieee80211_get_key_rx_seq(keyconf, 0, &seq);
1731 ieee80211_get_tkip_rx_p1k(keyconf, addr, seq.tkip.iv32, p1k);
Johannes Bergba3943b2014-11-12 23:54:48 +01001732 ret = iwl_mvm_send_sta_key(mvm, mvm_sta, keyconf, mcast,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001733 seq.tkip.iv32, p1k, 0, key_offset);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001734 break;
1735 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergba3943b2014-11-12 23:54:48 +01001736 case WLAN_CIPHER_SUITE_WEP40:
1737 case WLAN_CIPHER_SUITE_WEP104:
1738 ret = iwl_mvm_send_sta_key(mvm, mvm_sta, keyconf, mcast,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001739 0, NULL, 0, key_offset);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001740 break;
1741 default:
Johannes Bergba3943b2014-11-12 23:54:48 +01001742 ret = iwl_mvm_send_sta_key(mvm, mvm_sta, keyconf, mcast,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001743 0, NULL, 0, key_offset);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001744 }
1745
Johannes Berg8ca151b2013-01-24 14:25:36 +01001746 return ret;
1747}
1748
Johannes Berg2f6319d2014-11-12 23:39:56 +01001749static int __iwl_mvm_remove_sta_key(struct iwl_mvm *mvm, u8 sta_id,
Johannes Bergba3943b2014-11-12 23:54:48 +01001750 struct ieee80211_key_conf *keyconf,
1751 bool mcast)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001752{
Max Stepanov5a258aa2013-04-07 09:11:21 +03001753 struct iwl_mvm_add_sta_key_cmd cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +01001754 __le16 key_flags;
Johannes Berg79920742014-11-03 15:43:04 +01001755 int ret;
1756 u32 status;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001757
Emmanuel Grumbach8115efb2013-02-05 10:08:35 +02001758 key_flags = cpu_to_le16((keyconf->keyidx << STA_KEY_FLG_KEYID_POS) &
1759 STA_KEY_FLG_KEYID_MSK);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001760 key_flags |= cpu_to_le16(STA_KEY_FLG_NO_ENC | STA_KEY_FLG_WEP_KEY_MAP);
1761 key_flags |= cpu_to_le16(STA_KEY_NOT_VALID);
1762
Johannes Bergba3943b2014-11-12 23:54:48 +01001763 if (mcast)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001764 key_flags |= cpu_to_le16(STA_KEY_MULTICAST);
1765
Max Stepanov5a258aa2013-04-07 09:11:21 +03001766 cmd.key_flags = key_flags;
1767 cmd.key_offset = keyconf->hw_key_idx;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001768 cmd.sta_id = sta_id;
1769
Johannes Berg8ca151b2013-01-24 14:25:36 +01001770 status = ADD_STA_SUCCESS;
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001771 ret = iwl_mvm_send_cmd_pdu_status(mvm, ADD_STA_KEY, sizeof(cmd),
1772 &cmd, &status);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001773
1774 switch (status) {
1775 case ADD_STA_SUCCESS:
1776 IWL_DEBUG_WEP(mvm, "MODIFY_STA: remove sta key passed\n");
1777 break;
1778 default:
1779 ret = -EIO;
1780 IWL_ERR(mvm, "MODIFY_STA: remove sta key failed\n");
1781 break;
1782 }
1783
1784 return ret;
1785}
1786
Johannes Berg2f6319d2014-11-12 23:39:56 +01001787int iwl_mvm_set_sta_key(struct iwl_mvm *mvm,
1788 struct ieee80211_vif *vif,
1789 struct ieee80211_sta *sta,
1790 struct ieee80211_key_conf *keyconf,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001791 u8 key_offset)
Johannes Berg2f6319d2014-11-12 23:39:56 +01001792{
Johannes Bergba3943b2014-11-12 23:54:48 +01001793 bool mcast = !(keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE);
Johannes Berg5f7a1842015-12-11 09:36:10 +01001794 struct iwl_mvm_sta *mvm_sta;
Johannes Berg2f6319d2014-11-12 23:39:56 +01001795 u8 sta_id;
1796 int ret;
Matti Gottlieb11828db2015-06-01 15:15:11 +03001797 static const u8 __maybe_unused zero_addr[ETH_ALEN] = {0};
Johannes Berg2f6319d2014-11-12 23:39:56 +01001798
1799 lockdep_assert_held(&mvm->mutex);
1800
1801 /* Get the station id from the mvm local station table */
Johannes Berg5f7a1842015-12-11 09:36:10 +01001802 mvm_sta = iwl_mvm_get_key_sta(mvm, vif, sta);
1803 if (!mvm_sta) {
1804 IWL_ERR(mvm, "Failed to find station\n");
Johannes Berg2f6319d2014-11-12 23:39:56 +01001805 return -EINVAL;
1806 }
Johannes Berg5f7a1842015-12-11 09:36:10 +01001807 sta_id = mvm_sta->sta_id;
Johannes Berg2f6319d2014-11-12 23:39:56 +01001808
1809 if (keyconf->cipher == WLAN_CIPHER_SUITE_AES_CMAC) {
1810 ret = iwl_mvm_send_sta_igtk(mvm, keyconf, sta_id, false);
1811 goto end;
1812 }
1813
1814 /*
1815 * It is possible that the 'sta' parameter is NULL, and thus
1816 * there is a need to retrieve the sta from the local station table.
1817 */
1818 if (!sta) {
1819 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
1820 lockdep_is_held(&mvm->mutex));
1821 if (IS_ERR_OR_NULL(sta)) {
1822 IWL_ERR(mvm, "Invalid station id\n");
1823 return -EINVAL;
1824 }
1825 }
1826
1827 if (WARN_ON_ONCE(iwl_mvm_sta_from_mac80211(sta)->vif != vif))
1828 return -EINVAL;
1829
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001830 /* If the key_offset is not pre-assigned, we need to find a
1831 * new offset to use. In normal cases, the offset is not
1832 * pre-assigned, but during HW_RESTART we want to reuse the
1833 * same indices, so we pass them when this function is called.
1834 *
1835 * In D3 entry, we need to hardcoded the indices (because the
1836 * firmware hardcodes the PTK offset to 0). In this case, we
1837 * need to make sure we don't overwrite the hw_key_idx in the
1838 * keyconf structure, because otherwise we cannot configure
1839 * the original ones back when resuming.
1840 */
1841 if (key_offset == STA_KEY_IDX_INVALID) {
1842 key_offset = iwl_mvm_set_fw_key_idx(mvm);
1843 if (key_offset == STA_KEY_IDX_INVALID)
Johannes Berg2f6319d2014-11-12 23:39:56 +01001844 return -ENOSPC;
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001845 keyconf->hw_key_idx = key_offset;
Johannes Berg2f6319d2014-11-12 23:39:56 +01001846 }
1847
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001848 ret = __iwl_mvm_set_sta_key(mvm, vif, sta, keyconf, key_offset, mcast);
Luca Coelho9c3deeb2015-11-11 01:06:17 +02001849 if (ret)
Johannes Bergba3943b2014-11-12 23:54:48 +01001850 goto end;
Johannes Bergba3943b2014-11-12 23:54:48 +01001851
1852 /*
1853 * For WEP, the same key is used for multicast and unicast. Upload it
1854 * again, using the same key offset, and now pointing the other one
1855 * to the same key slot (offset).
1856 * If this fails, remove the original as well.
1857 */
1858 if (keyconf->cipher == WLAN_CIPHER_SUITE_WEP40 ||
1859 keyconf->cipher == WLAN_CIPHER_SUITE_WEP104) {
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001860 ret = __iwl_mvm_set_sta_key(mvm, vif, sta, keyconf,
1861 key_offset, !mcast);
Johannes Bergba3943b2014-11-12 23:54:48 +01001862 if (ret) {
Johannes Bergba3943b2014-11-12 23:54:48 +01001863 __iwl_mvm_remove_sta_key(mvm, sta_id, keyconf, mcast);
Luca Coelho9c3deeb2015-11-11 01:06:17 +02001864 goto end;
Johannes Bergba3943b2014-11-12 23:54:48 +01001865 }
1866 }
Johannes Berg2f6319d2014-11-12 23:39:56 +01001867
Luca Coelho9c3deeb2015-11-11 01:06:17 +02001868 __set_bit(key_offset, mvm->fw_key_table);
1869
Johannes Berg2f6319d2014-11-12 23:39:56 +01001870end:
1871 IWL_DEBUG_WEP(mvm, "key: cipher=%x len=%d idx=%d sta=%pM ret=%d\n",
1872 keyconf->cipher, keyconf->keylen, keyconf->keyidx,
Matti Gottlieb11828db2015-06-01 15:15:11 +03001873 sta ? sta->addr : zero_addr, ret);
Johannes Berg2f6319d2014-11-12 23:39:56 +01001874 return ret;
1875}
1876
1877int iwl_mvm_remove_sta_key(struct iwl_mvm *mvm,
1878 struct ieee80211_vif *vif,
1879 struct ieee80211_sta *sta,
1880 struct ieee80211_key_conf *keyconf)
1881{
Johannes Bergba3943b2014-11-12 23:54:48 +01001882 bool mcast = !(keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE);
Johannes Berg5f7a1842015-12-11 09:36:10 +01001883 struct iwl_mvm_sta *mvm_sta;
1884 u8 sta_id = IWL_MVM_STATION_COUNT;
Johannes Berg2dc2a152015-06-16 17:09:18 +02001885 int ret, i;
Johannes Berg2f6319d2014-11-12 23:39:56 +01001886
1887 lockdep_assert_held(&mvm->mutex);
1888
Johannes Berg5f7a1842015-12-11 09:36:10 +01001889 /* Get the station from the mvm local station table */
1890 mvm_sta = iwl_mvm_get_key_sta(mvm, vif, sta);
Johannes Berg2f6319d2014-11-12 23:39:56 +01001891
1892 IWL_DEBUG_WEP(mvm, "mvm remove dynamic key: idx=%d sta=%d\n",
1893 keyconf->keyidx, sta_id);
1894
1895 if (keyconf->cipher == WLAN_CIPHER_SUITE_AES_CMAC)
1896 return iwl_mvm_send_sta_igtk(mvm, keyconf, sta_id, true);
1897
1898 if (!__test_and_clear_bit(keyconf->hw_key_idx, mvm->fw_key_table)) {
1899 IWL_ERR(mvm, "offset %d not used in fw key table.\n",
1900 keyconf->hw_key_idx);
1901 return -ENOENT;
1902 }
1903
Johannes Berg2dc2a152015-06-16 17:09:18 +02001904 /* track which key was deleted last */
1905 for (i = 0; i < STA_KEY_MAX_NUM; i++) {
1906 if (mvm->fw_key_deleted[i] < U8_MAX)
1907 mvm->fw_key_deleted[i]++;
1908 }
1909 mvm->fw_key_deleted[keyconf->hw_key_idx] = 0;
1910
Johannes Berg5f7a1842015-12-11 09:36:10 +01001911 if (!mvm_sta) {
Johannes Berg2f6319d2014-11-12 23:39:56 +01001912 IWL_DEBUG_WEP(mvm, "station non-existent, early return.\n");
1913 return 0;
1914 }
1915
Johannes Berg5f7a1842015-12-11 09:36:10 +01001916 sta_id = mvm_sta->sta_id;
1917
Johannes Bergba3943b2014-11-12 23:54:48 +01001918 ret = __iwl_mvm_remove_sta_key(mvm, sta_id, keyconf, mcast);
1919 if (ret)
1920 return ret;
1921
1922 /* delete WEP key twice to get rid of (now useless) offset */
1923 if (keyconf->cipher == WLAN_CIPHER_SUITE_WEP40 ||
1924 keyconf->cipher == WLAN_CIPHER_SUITE_WEP104)
1925 ret = __iwl_mvm_remove_sta_key(mvm, sta_id, keyconf, !mcast);
1926
1927 return ret;
Johannes Berg2f6319d2014-11-12 23:39:56 +01001928}
1929
Johannes Berg8ca151b2013-01-24 14:25:36 +01001930void iwl_mvm_update_tkip_key(struct iwl_mvm *mvm,
1931 struct ieee80211_vif *vif,
1932 struct ieee80211_key_conf *keyconf,
1933 struct ieee80211_sta *sta, u32 iv32,
1934 u16 *phase1key)
1935{
Beni Levc3eb5362013-02-06 17:22:18 +02001936 struct iwl_mvm_sta *mvm_sta;
Johannes Bergba3943b2014-11-12 23:54:48 +01001937 bool mcast = !(keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001938
Beni Levc3eb5362013-02-06 17:22:18 +02001939 rcu_read_lock();
1940
Johannes Berg5f7a1842015-12-11 09:36:10 +01001941 mvm_sta = iwl_mvm_get_key_sta(mvm, vif, sta);
1942 if (WARN_ON_ONCE(!mvm_sta))
Emmanuel Grumbach12f17212015-12-20 14:48:08 +02001943 goto unlock;
Johannes Bergba3943b2014-11-12 23:54:48 +01001944 iwl_mvm_send_sta_key(mvm, mvm_sta, keyconf, mcast,
Luca Coelhod6ee54a2015-11-10 22:13:43 +02001945 iv32, phase1key, CMD_ASYNC, keyconf->hw_key_idx);
Emmanuel Grumbach12f17212015-12-20 14:48:08 +02001946
1947 unlock:
Beni Levc3eb5362013-02-06 17:22:18 +02001948 rcu_read_unlock();
Johannes Berg8ca151b2013-01-24 14:25:36 +01001949}
1950
Johannes Berg9cc40712013-02-15 22:47:48 +01001951void iwl_mvm_sta_modify_ps_wake(struct iwl_mvm *mvm,
1952 struct ieee80211_sta *sta)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001953{
Johannes Berg5b577a92013-11-14 18:20:04 +01001954 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001955 struct iwl_mvm_add_sta_cmd cmd = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001956 .add_modify = STA_MODE_MODIFY,
Johannes Berg9cc40712013-02-15 22:47:48 +01001957 .sta_id = mvmsta->sta_id,
Emmanuel Grumbach5af01772013-06-09 12:59:24 +03001958 .station_flags_msk = cpu_to_le32(STA_FLG_PS),
Johannes Berg9cc40712013-02-15 22:47:48 +01001959 .mac_id_n_color = cpu_to_le32(mvmsta->mac_id_n_color),
Johannes Berg8ca151b2013-01-24 14:25:36 +01001960 };
1961 int ret;
1962
Sara Sharon854c5702016-01-26 13:17:47 +02001963 ret = iwl_mvm_send_cmd_pdu(mvm, ADD_STA, CMD_ASYNC,
1964 iwl_mvm_add_sta_cmd_size(mvm), &cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001965 if (ret)
1966 IWL_ERR(mvm, "Failed to send ADD_STA command (%d)\n", ret);
1967}
1968
Johannes Berg9cc40712013-02-15 22:47:48 +01001969void iwl_mvm_sta_modify_sleep_tx_count(struct iwl_mvm *mvm,
1970 struct ieee80211_sta *sta,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001971 enum ieee80211_frame_release_type reason,
Johannes Berg3e56ead2013-02-15 22:23:18 +01001972 u16 cnt, u16 tids, bool more_data,
1973 bool agg)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001974{
Johannes Berg5b577a92013-11-14 18:20:04 +01001975 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +03001976 struct iwl_mvm_add_sta_cmd cmd = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001977 .add_modify = STA_MODE_MODIFY,
Johannes Berg9cc40712013-02-15 22:47:48 +01001978 .sta_id = mvmsta->sta_id,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001979 .modify_mask = STA_MODIFY_SLEEPING_STA_TX_COUNT,
1980 .sleep_tx_count = cpu_to_le16(cnt),
Johannes Berg9cc40712013-02-15 22:47:48 +01001981 .mac_id_n_color = cpu_to_le32(mvmsta->mac_id_n_color),
Johannes Berg8ca151b2013-01-24 14:25:36 +01001982 };
Johannes Berg3e56ead2013-02-15 22:23:18 +01001983 int tid, ret;
1984 unsigned long _tids = tids;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001985
Johannes Berg3e56ead2013-02-15 22:23:18 +01001986 /* convert TIDs to ACs - we don't support TSPEC so that's OK
1987 * Note that this field is reserved and unused by firmware not
1988 * supporting GO uAPSD, so it's safe to always do this.
1989 */
1990 for_each_set_bit(tid, &_tids, IWL_MAX_TID_COUNT)
1991 cmd.awake_acs |= BIT(tid_to_ucode_ac[tid]);
1992
1993 /* If we're releasing frames from aggregation queues then check if the
1994 * all queues combined that we're releasing frames from have
1995 * - more frames than the service period, in which case more_data
1996 * needs to be set
1997 * - fewer than 'cnt' frames, in which case we need to adjust the
1998 * firmware command (but do that unconditionally)
1999 */
2000 if (agg) {
2001 int remaining = cnt;
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02002002 int sleep_tx_count;
Johannes Berg3e56ead2013-02-15 22:23:18 +01002003
2004 spin_lock_bh(&mvmsta->lock);
2005 for_each_set_bit(tid, &_tids, IWL_MAX_TID_COUNT) {
2006 struct iwl_mvm_tid_data *tid_data;
2007 u16 n_queued;
2008
2009 tid_data = &mvmsta->tid_data[tid];
2010 if (WARN(tid_data->state != IWL_AGG_ON &&
2011 tid_data->state != IWL_EMPTYING_HW_QUEUE_DELBA,
2012 "TID %d state is %d\n",
2013 tid, tid_data->state)) {
2014 spin_unlock_bh(&mvmsta->lock);
2015 ieee80211_sta_eosp(sta);
2016 return;
2017 }
2018
2019 n_queued = iwl_mvm_tid_queued(tid_data);
2020 if (n_queued > remaining) {
2021 more_data = true;
2022 remaining = 0;
2023 break;
2024 }
2025 remaining -= n_queued;
2026 }
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02002027 sleep_tx_count = cnt - remaining;
2028 if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
2029 mvmsta->sleep_tx_count = sleep_tx_count;
Johannes Berg3e56ead2013-02-15 22:23:18 +01002030 spin_unlock_bh(&mvmsta->lock);
2031
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +02002032 cmd.sleep_tx_count = cpu_to_le16(sleep_tx_count);
Johannes Berg3e56ead2013-02-15 22:23:18 +01002033 if (WARN_ON(cnt - remaining == 0)) {
2034 ieee80211_sta_eosp(sta);
2035 return;
2036 }
2037 }
2038
2039 /* Note: this is ignored by firmware not supporting GO uAPSD */
2040 if (more_data)
2041 cmd.sleep_state_flags |= cpu_to_le16(STA_SLEEP_STATE_MOREDATA);
2042
2043 if (reason == IEEE80211_FRAME_RELEASE_PSPOLL) {
2044 mvmsta->next_status_eosp = true;
2045 cmd.sleep_state_flags |= cpu_to_le16(STA_SLEEP_STATE_PS_POLL);
2046 } else {
2047 cmd.sleep_state_flags |= cpu_to_le16(STA_SLEEP_STATE_UAPSD);
2048 }
2049
Emmanuel Grumbach156f92f2015-11-24 14:55:18 +02002050 /* block the Tx queues until the FW updated the sleep Tx count */
2051 iwl_trans_block_txq_ptrs(mvm->trans, true);
2052
2053 ret = iwl_mvm_send_cmd_pdu(mvm, ADD_STA,
2054 CMD_ASYNC | CMD_WANT_ASYNC_CALLBACK,
Sara Sharon854c5702016-01-26 13:17:47 +02002055 iwl_mvm_add_sta_cmd_size(mvm), &cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002056 if (ret)
2057 IWL_ERR(mvm, "Failed to send ADD_STA command (%d)\n", ret);
2058}
Johannes Berg3e56ead2013-02-15 22:23:18 +01002059
Johannes Berg04168412015-06-23 21:22:09 +02002060void iwl_mvm_rx_eosp_notif(struct iwl_mvm *mvm,
2061 struct iwl_rx_cmd_buffer *rxb)
Johannes Berg3e56ead2013-02-15 22:23:18 +01002062{
2063 struct iwl_rx_packet *pkt = rxb_addr(rxb);
2064 struct iwl_mvm_eosp_notification *notif = (void *)pkt->data;
2065 struct ieee80211_sta *sta;
2066 u32 sta_id = le32_to_cpu(notif->sta_id);
2067
2068 if (WARN_ON_ONCE(sta_id >= IWL_MVM_STATION_COUNT))
Johannes Berg04168412015-06-23 21:22:09 +02002069 return;
Johannes Berg3e56ead2013-02-15 22:23:18 +01002070
2071 rcu_read_lock();
2072 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
2073 if (!IS_ERR_OR_NULL(sta))
2074 ieee80211_sta_eosp(sta);
2075 rcu_read_unlock();
Johannes Berg3e56ead2013-02-15 22:23:18 +01002076}
Andrei Otcheretianski09b0ce12014-05-25 17:07:38 +03002077
2078void iwl_mvm_sta_modify_disable_tx(struct iwl_mvm *mvm,
2079 struct iwl_mvm_sta *mvmsta, bool disable)
2080{
2081 struct iwl_mvm_add_sta_cmd cmd = {
2082 .add_modify = STA_MODE_MODIFY,
2083 .sta_id = mvmsta->sta_id,
2084 .station_flags = disable ? cpu_to_le32(STA_FLG_DISABLE_TX) : 0,
2085 .station_flags_msk = cpu_to_le32(STA_FLG_DISABLE_TX),
2086 .mac_id_n_color = cpu_to_le32(mvmsta->mac_id_n_color),
2087 };
2088 int ret;
2089
Sara Sharon854c5702016-01-26 13:17:47 +02002090 ret = iwl_mvm_send_cmd_pdu(mvm, ADD_STA, CMD_ASYNC,
2091 iwl_mvm_add_sta_cmd_size(mvm), &cmd);
Andrei Otcheretianski09b0ce12014-05-25 17:07:38 +03002092 if (ret)
2093 IWL_ERR(mvm, "Failed to send ADD_STA command (%d)\n", ret);
2094}
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03002095
2096void iwl_mvm_sta_modify_disable_tx_ap(struct iwl_mvm *mvm,
2097 struct ieee80211_sta *sta,
2098 bool disable)
2099{
2100 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
2101
2102 spin_lock_bh(&mvm_sta->lock);
2103
2104 if (mvm_sta->disable_tx == disable) {
2105 spin_unlock_bh(&mvm_sta->lock);
2106 return;
2107 }
2108
2109 mvm_sta->disable_tx = disable;
2110
2111 /*
Sara Sharon0d365ae2015-03-31 12:24:05 +03002112 * Tell mac80211 to start/stop queuing tx for this station,
2113 * but don't stop queuing if there are still pending frames
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03002114 * for this station.
2115 */
2116 if (disable || !atomic_read(&mvm->pending_frames[mvm_sta->sta_id]))
2117 ieee80211_sta_block_awake(mvm->hw, sta, disable);
2118
2119 iwl_mvm_sta_modify_disable_tx(mvm, mvm_sta, disable);
2120
2121 spin_unlock_bh(&mvm_sta->lock);
2122}
2123
2124void iwl_mvm_modify_all_sta_disable_tx(struct iwl_mvm *mvm,
2125 struct iwl_mvm_vif *mvmvif,
2126 bool disable)
2127{
2128 struct ieee80211_sta *sta;
2129 struct iwl_mvm_sta *mvm_sta;
2130 int i;
2131
2132 lockdep_assert_held(&mvm->mutex);
2133
2134 /* Block/unblock all the stations of the given mvmvif */
2135 for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
2136 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
2137 lockdep_is_held(&mvm->mutex));
2138 if (IS_ERR_OR_NULL(sta))
2139 continue;
2140
2141 mvm_sta = iwl_mvm_sta_from_mac80211(sta);
2142 if (mvm_sta->mac_id_n_color !=
2143 FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color))
2144 continue;
2145
2146 iwl_mvm_sta_modify_disable_tx_ap(mvm, sta, disable);
2147 }
2148}
Luciano Coelhodc88b4b2014-11-10 11:10:14 +02002149
2150void iwl_mvm_csa_client_absent(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
2151{
2152 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2153 struct iwl_mvm_sta *mvmsta;
2154
2155 rcu_read_lock();
2156
2157 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, mvmvif->ap_sta_id);
2158
2159 if (!WARN_ON(!mvmsta))
2160 iwl_mvm_sta_modify_disable_tx(mvm, mvmsta, true);
2161
2162 rcu_read_unlock();
2163}