blob: bf0555fcf695e36dcf08402246a35571814cd1de [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +02009 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Sara Sharon0db056d2015-12-29 11:07:15 +020010 * Copyright(c) 2015 - 2016 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010028 *
29 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020035 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +020036 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Sara Sharon0db056d2015-12-29 11:07:15 +020037 * Copyright(c) 2015 - 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
68#include <linux/etherdevice.h>
69#include <net/mac80211.h>
70#include "iwl-io.h"
71#include "iwl-prph.h"
72#include "fw-api.h"
73#include "mvm.h"
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +030074#include "time-event.h"
Golan Ben-Ami2f89a5d2015-10-27 19:17:14 +020075#include "fw-dbg.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010076
77const u8 iwl_mvm_ac_to_tx_fifo[] = {
Johannes Berg8ca151b2013-01-24 14:25:36 +010078 IWL_MVM_TX_FIFO_VO,
Emmanuel Grumbach3dd94792013-12-19 16:50:49 +020079 IWL_MVM_TX_FIFO_VI,
80 IWL_MVM_TX_FIFO_BE,
81 IWL_MVM_TX_FIFO_BK,
Johannes Berg8ca151b2013-01-24 14:25:36 +010082};
83
84struct iwl_mvm_mac_iface_iterator_data {
85 struct iwl_mvm *mvm;
86 struct ieee80211_vif *vif;
87 unsigned long available_mac_ids[BITS_TO_LONGS(NUM_MAC_INDEX_DRIVER)];
88 unsigned long available_tsf_ids[BITS_TO_LONGS(NUM_TSF_IDS)];
Johannes Berg8ca151b2013-01-24 14:25:36 +010089 enum iwl_tsf_id preferred_tsf;
90 bool found_vif;
91};
92
Arik Nemtsova74346d2014-09-21 19:07:30 +030093struct iwl_mvm_hw_queues_iface_iterator_data {
94 struct ieee80211_vif *exclude_vif;
95 unsigned long used_hw_queues;
96};
97
Ilan Peer6e97b0d2013-12-23 22:18:02 +020098static void iwl_mvm_mac_tsf_id_iter(void *_data, u8 *mac,
99 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100100{
101 struct iwl_mvm_mac_iface_iterator_data *data = _data;
102 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Ilan Peer2c3e62a2014-02-02 21:54:35 +0200103 u16 min_bi;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100104
Ilan Peer6e97b0d2013-12-23 22:18:02 +0200105 /* Skip the interface for which we are trying to assign a tsf_id */
106 if (vif == data->vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100107 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100108
109 /*
110 * The TSF is a hardware/firmware resource, there are 4 and
111 * the driver should assign and free them as needed. However,
112 * there are cases where 2 MACs should share the same TSF ID
113 * for the purpose of clock sync, an optimization to avoid
114 * clock drift causing overlapping TBTTs/DTIMs for a GO and
115 * client in the system.
116 *
117 * The firmware will decide according to the MAC type which
118 * will be the master and slave. Clients that need to sync
119 * with a remote station will be the master, and an AP or GO
120 * will be the slave.
121 *
122 * Depending on the new interface type it can be slaved to
123 * or become the master of an existing interface.
124 */
125 switch (data->vif->type) {
126 case NL80211_IFTYPE_STATION:
127 /*
Ilan Peer2c3e62a2014-02-02 21:54:35 +0200128 * The new interface is a client, so if the one we're iterating
129 * is an AP, and the beacon interval of the AP is a multiple or
130 * divisor of the beacon interval of the client, the same TSF
131 * should be used to avoid drift between the new client and
132 * existing AP. The existing AP will get drift updates from the
133 * new client context in this case.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100134 */
Ilan Peer2c3e62a2014-02-02 21:54:35 +0200135 if (vif->type != NL80211_IFTYPE_AP ||
136 data->preferred_tsf != NUM_TSF_IDS ||
137 !test_bit(mvmvif->tsf_id, data->available_tsf_ids))
138 break;
139
140 min_bi = min(data->vif->bss_conf.beacon_int,
141 vif->bss_conf.beacon_int);
142
143 if (!min_bi)
144 break;
145
146 if ((data->vif->bss_conf.beacon_int -
147 vif->bss_conf.beacon_int) % min_bi == 0) {
148 data->preferred_tsf = mvmvif->tsf_id;
149 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100150 }
151 break;
Ilan Peer2c3e62a2014-02-02 21:54:35 +0200152
Johannes Berg8ca151b2013-01-24 14:25:36 +0100153 case NL80211_IFTYPE_AP:
154 /*
Ilan Peer2c3e62a2014-02-02 21:54:35 +0200155 * The new interface is AP/GO, so if its beacon interval is a
156 * multiple or a divisor of the beacon interval of an existing
157 * interface, it should get drift updates from an existing
158 * client or use the same TSF as an existing GO. There's no
159 * drift between TSFs internally but if they used different
160 * TSFs then a new client MAC could update one of them and
161 * cause drift that way.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100162 */
Ilan Peer2c3e62a2014-02-02 21:54:35 +0200163 if ((vif->type != NL80211_IFTYPE_AP &&
164 vif->type != NL80211_IFTYPE_STATION) ||
165 data->preferred_tsf != NUM_TSF_IDS ||
166 !test_bit(mvmvif->tsf_id, data->available_tsf_ids))
167 break;
168
169 min_bi = min(data->vif->bss_conf.beacon_int,
170 vif->bss_conf.beacon_int);
171
172 if (!min_bi)
173 break;
174
175 if ((data->vif->bss_conf.beacon_int -
176 vif->bss_conf.beacon_int) % min_bi == 0) {
177 data->preferred_tsf = mvmvif->tsf_id;
178 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100179 }
180 break;
181 default:
182 /*
183 * For all other interface types there's no need to
184 * take drift into account. Either they're exclusive
185 * like IBSS and monitor, or we don't care much about
186 * their TSF (like P2P Device), but we won't be able
187 * to share the TSF resource.
188 */
189 break;
190 }
191
192 /*
193 * Unless we exited above, we can't share the TSF resource
194 * that the virtual interface we're iterating over is using
195 * with the new one, so clear the available bit and if this
196 * was the preferred one, reset that as well.
197 */
198 __clear_bit(mvmvif->tsf_id, data->available_tsf_ids);
199
200 if (data->preferred_tsf == mvmvif->tsf_id)
201 data->preferred_tsf = NUM_TSF_IDS;
202}
203
Johannes Berg110cf812014-08-01 23:14:24 +0200204/*
205 * Get the mask of the queues used by the vif
206 */
Arik Nemtsovd92b732e2014-09-21 19:00:42 +0300207u32 iwl_mvm_mac_get_queues_mask(struct ieee80211_vif *vif)
Johannes Berg110cf812014-08-01 23:14:24 +0200208{
209 u32 qmask = 0, ac;
210
211 if (vif->type == NL80211_IFTYPE_P2P_DEVICE)
212 return BIT(IWL_MVM_OFFCHANNEL_QUEUE);
213
Ilan Peer1008e442015-01-17 22:35:00 -0500214 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
215 if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE)
216 qmask |= BIT(vif->hw_queue[ac]);
217 }
Johannes Berg110cf812014-08-01 23:14:24 +0200218
219 if (vif->type == NL80211_IFTYPE_AP)
220 qmask |= BIT(vif->cab_queue);
221
222 return qmask;
223}
224
Arik Nemtsova74346d2014-09-21 19:07:30 +0300225static void iwl_mvm_iface_hw_queues_iter(void *_data, u8 *mac,
226 struct ieee80211_vif *vif)
227{
228 struct iwl_mvm_hw_queues_iface_iterator_data *data = _data;
229
230 /* exclude the given vif */
231 if (vif == data->exclude_vif)
232 return;
233
234 data->used_hw_queues |= iwl_mvm_mac_get_queues_mask(vif);
235}
236
237static void iwl_mvm_mac_sta_hw_queues_iter(void *_data,
238 struct ieee80211_sta *sta)
239{
240 struct iwl_mvm_hw_queues_iface_iterator_data *data = _data;
241 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
242
243 /* Mark the queues used by the sta */
244 data->used_hw_queues |= mvmsta->tfd_queue_msk;
245}
246
247unsigned long iwl_mvm_get_used_hw_queues(struct iwl_mvm *mvm,
248 struct ieee80211_vif *exclude_vif)
249{
Arik Nemtsov51ec09a2015-01-21 11:50:31 +0200250 u8 sta_id;
Arik Nemtsova74346d2014-09-21 19:07:30 +0300251 struct iwl_mvm_hw_queues_iface_iterator_data data = {
252 .exclude_vif = exclude_vif,
253 .used_hw_queues =
254 BIT(IWL_MVM_OFFCHANNEL_QUEUE) |
Liad Kaufman097129c2015-08-09 18:28:43 +0300255 BIT(mvm->aux_queue),
Arik Nemtsova74346d2014-09-21 19:07:30 +0300256 };
257
Liad Kaufman097129c2015-08-09 18:28:43 +0300258 if (iwl_mvm_is_dqa_supported(mvm))
259 data.used_hw_queues |= BIT(IWL_MVM_DQA_CMD_QUEUE);
260 else
261 data.used_hw_queues |= BIT(IWL_MVM_CMD_QUEUE);
262
Arik Nemtsova74346d2014-09-21 19:07:30 +0300263 lockdep_assert_held(&mvm->mutex);
264
265 /* mark all VIF used hw queues */
266 ieee80211_iterate_active_interfaces_atomic(
267 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
268 iwl_mvm_iface_hw_queues_iter, &data);
269
270 /* don't assign the same hw queues as TDLS stations */
271 ieee80211_iterate_stations_atomic(mvm->hw,
272 iwl_mvm_mac_sta_hw_queues_iter,
273 &data);
274
Arik Nemtsov51ec09a2015-01-21 11:50:31 +0200275 /*
276 * Some TDLS stations may be removed but are in the process of being
277 * drained. Don't touch their queues.
278 */
279 for_each_set_bit(sta_id, mvm->sta_drained, IWL_MVM_STATION_COUNT)
280 data.used_hw_queues |= mvm->tfd_drained[sta_id];
281
Arik Nemtsova74346d2014-09-21 19:07:30 +0300282 return data.used_hw_queues;
283}
284
Ilan Peer6e97b0d2013-12-23 22:18:02 +0200285static void iwl_mvm_mac_iface_iterator(void *_data, u8 *mac,
286 struct ieee80211_vif *vif)
287{
288 struct iwl_mvm_mac_iface_iterator_data *data = _data;
289 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Ilan Peer6e97b0d2013-12-23 22:18:02 +0200290
291 /* Iterator may already find the interface being added -- skip it */
292 if (vif == data->vif) {
293 data->found_vif = true;
294 return;
295 }
296
Ilan Peer6e97b0d2013-12-23 22:18:02 +0200297 /* Mark MAC IDs as used by clearing the available bit, and
298 * (below) mark TSFs as used if their existing use is not
299 * compatible with the new interface type.
300 * No locking or atomic bit operations are needed since the
301 * data is on the stack of the caller function.
302 */
303 __clear_bit(mvmvif->id, data->available_mac_ids);
304
305 /* find a suitable tsf_id */
306 iwl_mvm_mac_tsf_id_iter(_data, mac, vif);
307}
308
Ilan Peer6e97b0d2013-12-23 22:18:02 +0200309void iwl_mvm_mac_ctxt_recalc_tsf_id(struct iwl_mvm *mvm,
310 struct ieee80211_vif *vif)
311{
312 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
313 struct iwl_mvm_mac_iface_iterator_data data = {
314 .mvm = mvm,
315 .vif = vif,
316 .available_tsf_ids = { (1 << NUM_TSF_IDS) - 1 },
317 /* no preference yet */
318 .preferred_tsf = NUM_TSF_IDS,
319 };
320
321 ieee80211_iterate_active_interfaces_atomic(
322 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
323 iwl_mvm_mac_tsf_id_iter, &data);
324
325 if (data.preferred_tsf != NUM_TSF_IDS)
326 mvmvif->tsf_id = data.preferred_tsf;
327 else if (!test_bit(mvmvif->tsf_id, data.available_tsf_ids))
328 mvmvif->tsf_id = find_first_bit(data.available_tsf_ids,
329 NUM_TSF_IDS);
330}
331
Johannes Berg8ca151b2013-01-24 14:25:36 +0100332static int iwl_mvm_mac_ctxt_allocate_resources(struct iwl_mvm *mvm,
333 struct ieee80211_vif *vif)
334{
335 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
336 struct iwl_mvm_mac_iface_iterator_data data = {
337 .mvm = mvm,
338 .vif = vif,
339 .available_mac_ids = { (1 << NUM_MAC_INDEX_DRIVER) - 1 },
340 .available_tsf_ids = { (1 << NUM_TSF_IDS) - 1 },
341 /* no preference yet */
342 .preferred_tsf = NUM_TSF_IDS,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100343 .found_vif = false,
344 };
345 u32 ac;
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300346 int ret, i;
Johannes Berg110cf812014-08-01 23:14:24 +0200347 unsigned long used_hw_queues;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100348
349 /*
350 * Allocate a MAC ID and a TSF for this MAC, along with the queues
351 * and other resources.
352 */
353
354 /*
355 * Before the iterator, we start with all MAC IDs and TSFs available.
356 *
357 * During iteration, all MAC IDs are cleared that are in use by other
358 * virtual interfaces, and all TSF IDs are cleared that can't be used
359 * by this new virtual interface because they're used by an interface
360 * that can't share it with the new one.
361 * At the same time, we check if there's a preferred TSF in the case
362 * that we should share it with another interface.
363 */
364
Johannes Berg5023d962013-07-31 14:07:43 +0200365 /* Currently, MAC ID 0 should be used only for the managed/IBSS vif */
366 switch (vif->type) {
367 case NL80211_IFTYPE_ADHOC:
368 break;
369 case NL80211_IFTYPE_STATION:
370 if (!vif->p2p)
371 break;
372 /* fall through */
373 default:
Ilan Peerec8b6882013-02-13 13:27:18 +0200374 __clear_bit(0, data.available_mac_ids);
Johannes Berg5023d962013-07-31 14:07:43 +0200375 }
Ilan Peerec8b6882013-02-13 13:27:18 +0200376
Johannes Berg8ca151b2013-01-24 14:25:36 +0100377 ieee80211_iterate_active_interfaces_atomic(
378 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
379 iwl_mvm_mac_iface_iterator, &data);
380
Arik Nemtsova74346d2014-09-21 19:07:30 +0300381 used_hw_queues = iwl_mvm_get_used_hw_queues(mvm, vif);
382
Johannes Berg8ca151b2013-01-24 14:25:36 +0100383 /*
384 * In the case we're getting here during resume, it's similar to
385 * firmware restart, and with RESUME_ALL the iterator will find
386 * the vif being added already.
387 * We don't want to reassign any IDs in either case since doing
388 * so would probably assign different IDs (as interfaces aren't
389 * necessarily added in the same order), but the old IDs were
390 * preserved anyway, so skip ID assignment for both resume and
391 * recovery.
392 */
393 if (data.found_vif)
394 return 0;
395
396 /* Therefore, in recovery, we can't get here */
Ilan Peerfd11bd02013-06-16 12:18:11 +0300397 if (WARN_ON_ONCE(test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)))
398 return -EBUSY;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100399
400 mvmvif->id = find_first_bit(data.available_mac_ids,
401 NUM_MAC_INDEX_DRIVER);
402 if (mvmvif->id == NUM_MAC_INDEX_DRIVER) {
403 IWL_ERR(mvm, "Failed to init MAC context - no free ID!\n");
404 ret = -EIO;
405 goto exit_fail;
406 }
407
408 if (data.preferred_tsf != NUM_TSF_IDS)
409 mvmvif->tsf_id = data.preferred_tsf;
410 else
411 mvmvif->tsf_id = find_first_bit(data.available_tsf_ids,
412 NUM_TSF_IDS);
413 if (mvmvif->tsf_id == NUM_TSF_IDS) {
414 IWL_ERR(mvm, "Failed to init MAC context - no free TSF!\n");
415 ret = -EIO;
416 goto exit_fail;
417 }
418
419 mvmvif->color = 0;
420
Ilan Peer1e849c92013-02-13 12:26:39 +0200421 INIT_LIST_HEAD(&mvmvif->time_event_data.list);
422 mvmvif->time_event_data.id = TE_MAX;
423
Johannes Berg8ca151b2013-01-24 14:25:36 +0100424 /* No need to allocate data queues to P2P Device MAC.*/
425 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
426 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
427 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
428
429 return 0;
430 }
431
Liad Kaufman24afba72015-07-28 18:56:08 +0300432 /*
433 * Find available queues, and allocate them to the ACs. When in
434 * DQA-mode they aren't really used, and this is done only so the
435 * mac80211 ieee80211_check_queues() function won't fail
436 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100437 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
Johannes Berg110cf812014-08-01 23:14:24 +0200438 u8 queue = find_first_zero_bit(&used_hw_queues,
Eytan Lifshitz19e737c2013-09-09 13:30:15 +0200439 mvm->first_agg_queue);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100440
Liad Kaufman24afba72015-07-28 18:56:08 +0300441 if (!iwl_mvm_is_dqa_supported(mvm) &&
442 queue >= mvm->first_agg_queue) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100443 IWL_ERR(mvm, "Failed to allocate queue\n");
444 ret = -EIO;
445 goto exit_fail;
446 }
447
Johannes Berg110cf812014-08-01 23:14:24 +0200448 __set_bit(queue, &used_hw_queues);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100449 vif->hw_queue[ac] = queue;
450 }
451
452 /* Allocate the CAB queue for softAP and GO interfaces */
453 if (vif->type == NL80211_IFTYPE_AP) {
Liad Kaufman0e0e4422015-08-04 15:13:38 +0300454 u8 queue;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100455
Liad Kaufman0e0e4422015-08-04 15:13:38 +0300456 if (!iwl_mvm_is_dqa_supported(mvm)) {
457 queue = find_first_zero_bit(&used_hw_queues,
458 mvm->first_agg_queue);
459
460 if (queue >= mvm->first_agg_queue) {
461 IWL_ERR(mvm, "Failed to allocate cab queue\n");
462 ret = -EIO;
463 goto exit_fail;
464 }
465 } else {
466 queue = IWL_MVM_DQA_GCAST_QUEUE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100467 }
468
469 vif->cab_queue = queue;
470 } else {
471 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
472 }
473
474 mvmvif->bcast_sta.sta_id = IWL_MVM_STATION_COUNT;
475 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
476
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300477 for (i = 0; i < NUM_IWL_MVM_SMPS_REQ; i++)
478 mvmvif->smps_requests[i] = IEEE80211_SMPS_AUTOMATIC;
479
Johannes Berg8ca151b2013-01-24 14:25:36 +0100480 return 0;
481
482exit_fail:
483 memset(mvmvif, 0, sizeof(struct iwl_mvm_vif));
484 memset(vif->hw_queue, IEEE80211_INVAL_HW_QUEUE, sizeof(vif->hw_queue));
485 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
486 return ret;
487}
488
489int iwl_mvm_mac_ctxt_init(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
490{
Emmanuel Grumbach5d42e7b2015-03-19 20:04:51 +0200491 unsigned int wdg_timeout =
492 iwl_mvm_get_wd_timeout(mvm, vif, false, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100493 u32 ac;
494 int ret;
495
496 lockdep_assert_held(&mvm->mutex);
497
498 ret = iwl_mvm_mac_ctxt_allocate_resources(mvm, vif);
499 if (ret)
500 return ret;
501
Sara Sharon8236f7d2016-10-06 16:42:32 +0300502 /* If DQA is supported - queues will be enabled when needed */
503 if (iwl_mvm_is_dqa_supported(mvm))
504 return 0;
505
Johannes Berg8ca151b2013-01-24 14:25:36 +0100506 switch (vif->type) {
507 case NL80211_IFTYPE_P2P_DEVICE:
Sara Sharon8236f7d2016-10-06 16:42:32 +0300508 iwl_mvm_enable_ac_txq(mvm, IWL_MVM_OFFCHANNEL_QUEUE,
509 IWL_MVM_OFFCHANNEL_QUEUE,
510 IWL_MVM_TX_FIFO_VO, 0, wdg_timeout);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100511 break;
512 case NL80211_IFTYPE_AP:
Liad Kaufman4ecafae2015-07-14 13:36:18 +0300513 iwl_mvm_enable_ac_txq(mvm, vif->cab_queue, vif->cab_queue,
Liad Kaufman5c1156e2015-07-22 17:59:53 +0300514 IWL_MVM_TX_FIFO_MCAST, 0, wdg_timeout);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100515 /* fall through */
516 default:
517 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
Avri Altman3edf8ff2014-07-30 11:41:01 +0300518 iwl_mvm_enable_ac_txq(mvm, vif->hw_queue[ac],
Liad Kaufman4ecafae2015-07-14 13:36:18 +0300519 vif->hw_queue[ac],
Liad Kaufman5c1156e2015-07-22 17:59:53 +0300520 iwl_mvm_ac_to_tx_fifo[ac], 0,
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200521 wdg_timeout);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100522 break;
523 }
524
525 return 0;
526}
527
528void iwl_mvm_mac_ctxt_release(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
529{
530 int ac;
531
532 lockdep_assert_held(&mvm->mutex);
533
Liad Kaufmandf88c082016-11-24 15:31:00 +0200534 /*
535 * If DQA is supported - queues were already disabled, since in
536 * DQA-mode the queues are a property of the STA and not of the
537 * vif, and at this point the STA was already deleted
538 */
539 if (iwl_mvm_is_dqa_supported(mvm))
540 return;
541
Johannes Berg8ca151b2013-01-24 14:25:36 +0100542 switch (vif->type) {
543 case NL80211_IFTYPE_P2P_DEVICE:
Liad Kaufmandf88c082016-11-24 15:31:00 +0200544 iwl_mvm_disable_txq(mvm, IWL_MVM_OFFCHANNEL_QUEUE,
545 IWL_MVM_OFFCHANNEL_QUEUE,
546 IWL_MAX_TID_COUNT, 0);
Liad Kaufman4c965132015-08-09 19:26:56 +0300547
Johannes Berg8ca151b2013-01-24 14:25:36 +0100548 break;
549 case NL80211_IFTYPE_AP:
Liad Kaufman4ecafae2015-07-14 13:36:18 +0300550 iwl_mvm_disable_txq(mvm, vif->cab_queue, vif->cab_queue,
551 IWL_MAX_TID_COUNT, 0);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100552 /* fall through */
553 default:
554 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
Liad Kaufman4ecafae2015-07-14 13:36:18 +0300555 iwl_mvm_disable_txq(mvm, vif->hw_queue[ac],
556 vif->hw_queue[ac],
557 IWL_MAX_TID_COUNT, 0);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100558 }
559}
560
561static void iwl_mvm_ack_rates(struct iwl_mvm *mvm,
562 struct ieee80211_vif *vif,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200563 enum nl80211_band band,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100564 u8 *cck_rates, u8 *ofdm_rates)
565{
566 struct ieee80211_supported_band *sband;
567 unsigned long basic = vif->bss_conf.basic_rates;
568 int lowest_present_ofdm = 100;
569 int lowest_present_cck = 100;
570 u8 cck = 0;
571 u8 ofdm = 0;
572 int i;
573
574 sband = mvm->hw->wiphy->bands[band];
575
576 for_each_set_bit(i, &basic, BITS_PER_LONG) {
577 int hw = sband->bitrates[i].hw_value;
578 if (hw >= IWL_FIRST_OFDM_RATE) {
579 ofdm |= BIT(hw - IWL_FIRST_OFDM_RATE);
580 if (lowest_present_ofdm > hw)
581 lowest_present_ofdm = hw;
582 } else {
583 BUILD_BUG_ON(IWL_FIRST_CCK_RATE != 0);
584
585 cck |= BIT(hw);
586 if (lowest_present_cck > hw)
587 lowest_present_cck = hw;
588 }
589 }
590
591 /*
592 * Now we've got the basic rates as bitmaps in the ofdm and cck
593 * variables. This isn't sufficient though, as there might not
594 * be all the right rates in the bitmap. E.g. if the only basic
595 * rates are 5.5 Mbps and 11 Mbps, we still need to add 1 Mbps
596 * and 6 Mbps because the 802.11-2007 standard says in 9.6:
597 *
598 * [...] a STA responding to a received frame shall transmit
599 * its Control Response frame [...] at the highest rate in the
600 * BSSBasicRateSet parameter that is less than or equal to the
601 * rate of the immediately previous frame in the frame exchange
602 * sequence ([...]) and that is of the same modulation class
603 * ([...]) as the received frame. If no rate contained in the
604 * BSSBasicRateSet parameter meets these conditions, then the
605 * control frame sent in response to a received frame shall be
606 * transmitted at the highest mandatory rate of the PHY that is
607 * less than or equal to the rate of the received frame, and
608 * that is of the same modulation class as the received frame.
609 *
610 * As a consequence, we need to add all mandatory rates that are
611 * lower than all of the basic rates to these bitmaps.
612 */
613
614 if (IWL_RATE_24M_INDEX < lowest_present_ofdm)
615 ofdm |= IWL_RATE_BIT_MSK(24) >> IWL_FIRST_OFDM_RATE;
616 if (IWL_RATE_12M_INDEX < lowest_present_ofdm)
617 ofdm |= IWL_RATE_BIT_MSK(12) >> IWL_FIRST_OFDM_RATE;
618 /* 6M already there or needed so always add */
619 ofdm |= IWL_RATE_BIT_MSK(6) >> IWL_FIRST_OFDM_RATE;
620
621 /*
622 * CCK is a bit more complex with DSSS vs. HR/DSSS vs. ERP.
623 * Note, however:
624 * - if no CCK rates are basic, it must be ERP since there must
625 * be some basic rates at all, so they're OFDM => ERP PHY
626 * (or we're in 5 GHz, and the cck bitmap will never be used)
627 * - if 11M is a basic rate, it must be ERP as well, so add 5.5M
628 * - if 5.5M is basic, 1M and 2M are mandatory
629 * - if 2M is basic, 1M is mandatory
630 * - if 1M is basic, that's the only valid ACK rate.
631 * As a consequence, it's not as complicated as it sounds, just add
632 * any lower rates to the ACK rate bitmap.
633 */
634 if (IWL_RATE_11M_INDEX < lowest_present_cck)
635 cck |= IWL_RATE_BIT_MSK(11) >> IWL_FIRST_CCK_RATE;
636 if (IWL_RATE_5M_INDEX < lowest_present_cck)
637 cck |= IWL_RATE_BIT_MSK(5) >> IWL_FIRST_CCK_RATE;
638 if (IWL_RATE_2M_INDEX < lowest_present_cck)
639 cck |= IWL_RATE_BIT_MSK(2) >> IWL_FIRST_CCK_RATE;
640 /* 1M already there or needed so always add */
641 cck |= IWL_RATE_BIT_MSK(1) >> IWL_FIRST_CCK_RATE;
642
643 *cck_rates = cck;
644 *ofdm_rates = ofdm;
645}
646
Avri Altman8a5e3662013-11-12 19:16:03 +0200647static void iwl_mvm_mac_ctxt_set_ht_flags(struct iwl_mvm *mvm,
648 struct ieee80211_vif *vif,
649 struct iwl_mac_ctx_cmd *cmd)
650{
651 /* for both sta and ap, ht_operation_mode hold the protection_mode */
652 u8 protection_mode = vif->bss_conf.ht_operation_mode &
653 IEEE80211_HT_OP_MODE_PROTECTION;
654 /* The fw does not distinguish between ht and fat */
655 u32 ht_flag = MAC_PROT_FLG_HT_PROT | MAC_PROT_FLG_FAT_PROT;
656
657 IWL_DEBUG_RATE(mvm, "protection mode set to %d\n", protection_mode);
658 /*
659 * See section 9.23.3.1 of IEEE 80211-2012.
660 * Nongreenfield HT STAs Present is not supported.
661 */
662 switch (protection_mode) {
663 case IEEE80211_HT_OP_MODE_PROTECTION_NONE:
664 break;
665 case IEEE80211_HT_OP_MODE_PROTECTION_NONMEMBER:
666 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
667 cmd->protection_flags |= cpu_to_le32(ht_flag);
668 break;
669 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
670 /* Protect when channel wider than 20MHz */
671 if (vif->bss_conf.chandef.width > NL80211_CHAN_WIDTH_20)
672 cmd->protection_flags |= cpu_to_le32(ht_flag);
673 break;
674 default:
675 IWL_ERR(mvm, "Illegal protection mode %d\n",
676 protection_mode);
677 break;
678 }
679}
680
Johannes Berg8ca151b2013-01-24 14:25:36 +0100681static void iwl_mvm_mac_ctxt_cmd_common(struct iwl_mvm *mvm,
682 struct ieee80211_vif *vif,
683 struct iwl_mac_ctx_cmd *cmd,
Johannes Berg3dfd3a92014-08-11 21:37:30 +0200684 const u8 *bssid_override,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100685 u32 action)
686{
687 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
688 struct ieee80211_chanctx_conf *chanctx;
Avri Altman8a5e3662013-11-12 19:16:03 +0200689 bool ht_enabled = !!(vif->bss_conf.ht_operation_mode &
690 IEEE80211_HT_OP_MODE_PROTECTION);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100691 u8 cck_ack_rates, ofdm_ack_rates;
Johannes Berg3dfd3a92014-08-11 21:37:30 +0200692 const u8 *bssid = bssid_override ?: vif->bss_conf.bssid;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100693 int i;
694
695 cmd->id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
696 mvmvif->color));
697 cmd->action = cpu_to_le32(action);
698
699 switch (vif->type) {
700 case NL80211_IFTYPE_STATION:
701 if (vif->p2p)
702 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_P2P_STA);
703 else
704 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_BSS_STA);
705 break;
706 case NL80211_IFTYPE_AP:
707 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_GO);
708 break;
709 case NL80211_IFTYPE_MONITOR:
710 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_LISTENER);
711 break;
712 case NL80211_IFTYPE_P2P_DEVICE:
713 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_P2P_DEVICE);
714 break;
715 case NL80211_IFTYPE_ADHOC:
716 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_IBSS);
717 break;
718 default:
719 WARN_ON_ONCE(1);
720 }
721
722 cmd->tsf_id = cpu_to_le32(mvmvif->tsf_id);
723
724 memcpy(cmd->node_addr, vif->addr, ETH_ALEN);
Johannes Berg3dfd3a92014-08-11 21:37:30 +0200725
726 if (bssid)
727 memcpy(cmd->bssid_addr, bssid, ETH_ALEN);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100728 else
729 eth_broadcast_addr(cmd->bssid_addr);
730
731 rcu_read_lock();
732 chanctx = rcu_dereference(vif->chanctx_conf);
733 iwl_mvm_ack_rates(mvm, vif, chanctx ? chanctx->def.chan->band
Johannes Berg57fbcce2016-04-12 15:56:15 +0200734 : NL80211_BAND_2GHZ,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100735 &cck_ack_rates, &ofdm_ack_rates);
736 rcu_read_unlock();
737
738 cmd->cck_rates = cpu_to_le32((u32)cck_ack_rates);
739 cmd->ofdm_rates = cpu_to_le32((u32)ofdm_ack_rates);
740
741 cmd->cck_short_preamble =
742 cpu_to_le32(vif->bss_conf.use_short_preamble ?
743 MAC_FLG_SHORT_PREAMBLE : 0);
744 cmd->short_slot =
745 cpu_to_le32(vif->bss_conf.use_short_slot ?
746 MAC_FLG_SHORT_SLOT : 0);
747
Ayala Bekerbd6f5bd2015-12-20 09:27:50 +0200748 cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP);
749
Emmanuel Grumbach3dd94792013-12-19 16:50:49 +0200750 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
751 u8 txf = iwl_mvm_ac_to_tx_fifo[i];
752
753 cmd->ac[txf].cw_min =
754 cpu_to_le16(mvmvif->queue_params[i].cw_min);
755 cmd->ac[txf].cw_max =
756 cpu_to_le16(mvmvif->queue_params[i].cw_max);
757 cmd->ac[txf].edca_txop =
Johannes Berg8ca151b2013-01-24 14:25:36 +0100758 cpu_to_le16(mvmvif->queue_params[i].txop * 32);
Emmanuel Grumbach3dd94792013-12-19 16:50:49 +0200759 cmd->ac[txf].aifsn = mvmvif->queue_params[i].aifs;
760 cmd->ac[txf].fifos_mask = BIT(txf);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100761 }
762
763 if (vif->bss_conf.qos)
764 cmd->qos_flags |= cpu_to_le32(MAC_QOS_FLG_UPDATE_EDCA);
765
Emmanuel Grumbachdc271ee2014-07-03 20:46:35 +0300766 if (vif->bss_conf.use_cts_prot)
Dor Shaishcc7ee2b2013-02-18 13:51:36 +0200767 cmd->protection_flags |= cpu_to_le32(MAC_PROT_FLG_TGG_PROTECT);
Emmanuel Grumbachdc271ee2014-07-03 20:46:35 +0300768
Avri Altman8a5e3662013-11-12 19:16:03 +0200769 IWL_DEBUG_RATE(mvm, "use_cts_prot %d, ht_operation_mode %d\n",
770 vif->bss_conf.use_cts_prot,
771 vif->bss_conf.ht_operation_mode);
772 if (vif->bss_conf.chandef.width != NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100773 cmd->qos_flags |= cpu_to_le32(MAC_QOS_FLG_TGN);
Avri Altman8a5e3662013-11-12 19:16:03 +0200774 if (ht_enabled)
775 iwl_mvm_mac_ctxt_set_ht_flags(mvm, vif, cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100776}
777
778static int iwl_mvm_mac_ctxt_send_cmd(struct iwl_mvm *mvm,
779 struct iwl_mac_ctx_cmd *cmd)
780{
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300781 int ret = iwl_mvm_send_cmd_pdu(mvm, MAC_CONTEXT_CMD, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100782 sizeof(*cmd), cmd);
783 if (ret)
784 IWL_ERR(mvm, "Failed to send MAC context (action:%d): %d\n",
785 le32_to_cpu(cmd->action), ret);
786 return ret;
787}
788
Luciano Coelhocf520232014-05-13 16:52:54 +0300789static int iwl_mvm_mac_ctxt_cmd_sta(struct iwl_mvm *mvm,
790 struct ieee80211_vif *vif,
Johannes Berg3dfd3a92014-08-11 21:37:30 +0200791 u32 action, bool force_assoc_off,
792 const u8 *bssid_override)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100793{
Luciano Coelhocf520232014-05-13 16:52:54 +0300794 struct iwl_mac_ctx_cmd cmd = {};
795 struct iwl_mac_data_sta *ctxt_sta;
796
797 WARN_ON(vif->type != NL80211_IFTYPE_STATION);
798
799 /* Fill the common data for all mac context types */
Johannes Berg3dfd3a92014-08-11 21:37:30 +0200800 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, bssid_override, action);
Luciano Coelhocf520232014-05-13 16:52:54 +0300801
802 if (vif->p2p) {
803 struct ieee80211_p2p_noa_attr *noa =
804 &vif->bss_conf.p2p_noa_attr;
805
806 cmd.p2p_sta.ctwin = cpu_to_le32(noa->oppps_ctwindow &
807 IEEE80211_P2P_OPPPS_CTWINDOW_MASK);
808 ctxt_sta = &cmd.p2p_sta.sta;
809 } else {
Luciano Coelhocf520232014-05-13 16:52:54 +0300810 ctxt_sta = &cmd.sta;
811 }
812
Johannes Berg210a5442013-01-24 23:48:23 +0100813 /* We need the dtim_period to set the MAC as associated */
Alexander Bondarba283922013-05-02 16:34:48 +0300814 if (vif->bss_conf.assoc && vif->bss_conf.dtim_period &&
815 !force_assoc_off) {
Johannes Bergd2931bb2013-02-05 18:10:04 +0100816 u32 dtim_offs;
817
818 /*
819 * The DTIM count counts down, so when it is N that means N
820 * more beacon intervals happen until the DTIM TBTT. Therefore
821 * add this to the current time. If that ends up being in the
822 * future, the firmware will handle it.
823 *
824 * Also note that the system_timestamp (which we get here as
825 * "sync_device_ts") and TSF timestamp aren't at exactly the
826 * same offset in the frame -- the TSF is at the first symbol
827 * of the TSF, the system timestamp is at signal acquisition
828 * time. This means there's an offset between them of at most
829 * a few hundred microseconds (24 * 8 bits + PLCP time gives
830 * 384us in the longest case), this is currently not relevant
831 * as the firmware wakes up around 2ms before the TBTT.
832 */
833 dtim_offs = vif->bss_conf.sync_dtim_count *
834 vif->bss_conf.beacon_int;
835 /* convert TU to usecs */
836 dtim_offs *= 1024;
837
838 ctxt_sta->dtim_tsf =
839 cpu_to_le64(vif->bss_conf.sync_tsf + dtim_offs);
840 ctxt_sta->dtim_time =
841 cpu_to_le32(vif->bss_conf.sync_device_ts + dtim_offs);
842
843 IWL_DEBUG_INFO(mvm, "DTIM TBTT is 0x%llx/0x%x, offset %d\n",
844 le64_to_cpu(ctxt_sta->dtim_tsf),
845 le32_to_cpu(ctxt_sta->dtim_time),
846 dtim_offs);
847
Johannes Berg210a5442013-01-24 23:48:23 +0100848 ctxt_sta->is_assoc = cpu_to_le32(1);
Johannes Bergd2931bb2013-02-05 18:10:04 +0100849 } else {
Johannes Berg210a5442013-01-24 23:48:23 +0100850 ctxt_sta->is_assoc = cpu_to_le32(0);
Luciano Coelho7c8b3bc2014-07-30 15:04:08 +0300851
852 /* Allow beacons to pass through as long as we are not
853 * associated, or we do not have dtim period information.
854 */
855 cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_BEACON);
Johannes Bergd2931bb2013-02-05 18:10:04 +0100856 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100857
858 ctxt_sta->bi = cpu_to_le32(vif->bss_conf.beacon_int);
859 ctxt_sta->bi_reciprocal =
860 cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int));
861 ctxt_sta->dtim_interval = cpu_to_le32(vif->bss_conf.beacon_int *
862 vif->bss_conf.dtim_period);
863 ctxt_sta->dtim_reciprocal =
864 cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int *
865 vif->bss_conf.dtim_period));
866
867 ctxt_sta->listen_interval = cpu_to_le32(mvm->hw->conf.listen_interval);
868 ctxt_sta->assoc_id = cpu_to_le32(vif->bss_conf.aid);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100869
Andrei Otcheretianskieffd1922015-06-30 12:08:28 +0300870 if (vif->probe_req_reg && vif->bss_conf.assoc && vif->p2p)
871 cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST);
872
Johannes Berg8ca151b2013-01-24 14:25:36 +0100873 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
874}
875
876static int iwl_mvm_mac_ctxt_cmd_listener(struct iwl_mvm *mvm,
877 struct ieee80211_vif *vif,
878 u32 action)
879{
880 struct iwl_mac_ctx_cmd cmd = {};
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +0200881 u32 tfd_queue_msk = 0;
882 int ret, i;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100883
884 WARN_ON(vif->type != NL80211_IFTYPE_MONITOR);
885
Johannes Berg3dfd3a92014-08-11 21:37:30 +0200886 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
Johannes Berg53585492013-03-18 13:04:50 +0100887
Liad Kaufman737847a2016-09-27 15:17:29 +0300888 if (!iwl_mvm_is_dqa_supported(mvm)) {
889 for (i = 0; i < IEEE80211_NUM_ACS; i++)
890 if (vif->hw_queue[i] != IEEE80211_INVAL_HW_QUEUE)
891 tfd_queue_msk |= BIT(vif->hw_queue[i]);
892 }
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +0200893
Johannes Berg53585492013-03-18 13:04:50 +0100894 cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_PROMISC |
895 MAC_FILTER_IN_CONTROL_AND_MGMT |
896 MAC_FILTER_IN_BEACON |
Johannes Bergfb8b8ee2013-10-21 12:37:53 +0200897 MAC_FILTER_IN_PROBE_REQUEST |
898 MAC_FILTER_IN_CRC32);
Johannes Berg30686bf2015-06-02 21:39:54 +0200899 ieee80211_hw_set(mvm->hw, RX_INCLUDES_FCS);
Johannes Berg53585492013-03-18 13:04:50 +0100900
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +0200901 /* Allocate sniffer station */
902 ret = iwl_mvm_allocate_int_sta(mvm, &mvm->snif_sta, tfd_queue_msk,
903 vif->type);
904 if (ret)
905 return ret;
906
Johannes Berg8ca151b2013-01-24 14:25:36 +0100907 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
908}
909
Johannes Berg5023d962013-07-31 14:07:43 +0200910static int iwl_mvm_mac_ctxt_cmd_ibss(struct iwl_mvm *mvm,
911 struct ieee80211_vif *vif,
912 u32 action)
913{
914 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
915 struct iwl_mac_ctx_cmd cmd = {};
916
917 WARN_ON(vif->type != NL80211_IFTYPE_ADHOC);
918
Johannes Berg3dfd3a92014-08-11 21:37:30 +0200919 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
Johannes Berg5023d962013-07-31 14:07:43 +0200920
921 cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_BEACON |
922 MAC_FILTER_IN_PROBE_REQUEST);
923
924 /* cmd.ibss.beacon_time/cmd.ibss.beacon_tsf are curently ignored */
925 cmd.ibss.bi = cpu_to_le32(vif->bss_conf.beacon_int);
926 cmd.ibss.bi_reciprocal =
927 cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int));
928
929 /* TODO: Assumes that the beacon id == mac context id */
930 cmd.ibss.beacon_template = cpu_to_le32(mvmvif->id);
931
932 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
933}
934
Johannes Berg8ca151b2013-01-24 14:25:36 +0100935struct iwl_mvm_go_iterator_data {
936 bool go_active;
937};
938
939static void iwl_mvm_go_iterator(void *_data, u8 *mac, struct ieee80211_vif *vif)
940{
941 struct iwl_mvm_go_iterator_data *data = _data;
942 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
943
Johannes Berg5023d962013-07-31 14:07:43 +0200944 if (vif->type == NL80211_IFTYPE_AP && vif->p2p &&
945 mvmvif->ap_ibss_active)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100946 data->go_active = true;
947}
948
949static int iwl_mvm_mac_ctxt_cmd_p2p_device(struct iwl_mvm *mvm,
950 struct ieee80211_vif *vif,
951 u32 action)
952{
953 struct iwl_mac_ctx_cmd cmd = {};
954 struct iwl_mvm_go_iterator_data data = {};
955
956 WARN_ON(vif->type != NL80211_IFTYPE_P2P_DEVICE);
957
Johannes Berg3dfd3a92014-08-11 21:37:30 +0200958 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100959
960 cmd.protection_flags |= cpu_to_le32(MAC_PROT_FLG_TGG_PROTECT);
Ilan Peer1dcd15e2013-02-14 14:25:24 +0200961
962 /* Override the filter flags to accept only probe requests */
963 cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100964
965 /*
966 * This flag should be set to true when the P2P Device is
967 * discoverable and there is at least another active P2P GO. Settings
968 * this flag will allow the P2P Device to be discoverable on other
969 * channels in addition to its listen channel.
970 * Note that this flag should not be set in other cases as it opens the
971 * Rx filters on all MAC and increases the number of interrupts.
972 */
973 ieee80211_iterate_active_interfaces_atomic(
974 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
975 iwl_mvm_go_iterator, &data);
976
977 cmd.p2p_dev.is_disc_extended = cpu_to_le32(data.go_active ? 1 : 0);
978 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
979}
980
981static void iwl_mvm_mac_ctxt_set_tim(struct iwl_mvm *mvm,
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +0200982 struct iwl_mac_beacon_cmd_v6 *beacon_cmd,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100983 u8 *beacon, u32 frame_size)
984{
985 u32 tim_idx;
986 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
987
988 /* The index is relative to frame start but we start looking at the
989 * variable-length part of the beacon. */
990 tim_idx = mgmt->u.beacon.variable - beacon;
991
992 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
993 while ((tim_idx < (frame_size - 2)) &&
994 (beacon[tim_idx] != WLAN_EID_TIM))
995 tim_idx += beacon[tim_idx+1] + 2;
996
997 /* If TIM field was found, set variables */
998 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
999 beacon_cmd->tim_idx = cpu_to_le32(tim_idx);
1000 beacon_cmd->tim_size = cpu_to_le32((u32)beacon[tim_idx+1]);
1001 } else {
1002 IWL_WARN(mvm, "Unable to find TIM Element in beacon\n");
1003 }
1004}
1005
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001006static u32 iwl_mvm_find_ie_offset(u8 *beacon, u8 eid, u32 frame_size)
1007{
1008 struct ieee80211_mgmt *mgmt = (void *)beacon;
1009 const u8 *ie;
1010
1011 if (WARN_ON_ONCE(frame_size <= (mgmt->u.beacon.variable - beacon)))
1012 return 0;
1013
1014 frame_size -= mgmt->u.beacon.variable - beacon;
1015
1016 ie = cfg80211_find_ie(eid, mgmt->u.beacon.variable, frame_size);
1017 if (!ie)
1018 return 0;
1019
1020 return ie - beacon;
1021}
1022
Johannes Berg8ca151b2013-01-24 14:25:36 +01001023static int iwl_mvm_mac_ctxt_send_beacon(struct iwl_mvm *mvm,
1024 struct ieee80211_vif *vif,
1025 struct sk_buff *beacon)
1026{
1027 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1028 struct iwl_host_cmd cmd = {
1029 .id = BEACON_TEMPLATE_CMD,
1030 .flags = CMD_ASYNC,
1031 };
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001032 union {
1033 struct iwl_mac_beacon_cmd_v6 beacon_cmd_v6;
1034 struct iwl_mac_beacon_cmd beacon_cmd;
1035 } u = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +01001036 struct ieee80211_tx_info *info;
1037 u32 beacon_skb_len;
Emmanuel Grumbach75f6b9b2014-06-02 10:03:33 +03001038 u32 rate, tx_flags;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001039
1040 if (WARN_ON(!beacon))
1041 return -EINVAL;
1042
1043 beacon_skb_len = beacon->len;
1044
1045 /* TODO: for now the beacon template id is set to be the mac context id.
1046 * Might be better to handle it as another resource ... */
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001047 u.beacon_cmd_v6.template_id = cpu_to_le32((u32)mvmvif->id);
Emmanuel Grumbach75f6b9b2014-06-02 10:03:33 +03001048 info = IEEE80211_SKB_CB(beacon);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001049
1050 /* Set up TX command fields */
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001051 u.beacon_cmd_v6.tx.len = cpu_to_le16((u16)beacon_skb_len);
1052 u.beacon_cmd_v6.tx.sta_id = mvmvif->bcast_sta.sta_id;
1053 u.beacon_cmd_v6.tx.life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
Emmanuel Grumbach75f6b9b2014-06-02 10:03:33 +03001054 tx_flags = TX_CMD_FLG_SEQ_CTL | TX_CMD_FLG_TSF;
1055 tx_flags |=
1056 iwl_mvm_bt_coex_tx_prio(mvm, (void *)beacon->data, info, 0) <<
1057 TX_CMD_FLG_BT_PRIO_POS;
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001058 u.beacon_cmd_v6.tx.tx_flags = cpu_to_le32(tx_flags);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001059
Emmanuel Grumbach1e3c3c32015-12-13 09:35:30 +02001060 if (!fw_has_capa(&mvm->fw->ucode_capa,
1061 IWL_UCODE_TLV_CAPA_BEACON_ANT_SELECTION)) {
1062 mvm->mgmt_last_antenna_idx =
1063 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
1064 mvm->mgmt_last_antenna_idx);
1065 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001066
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001067 u.beacon_cmd_v6.tx.rate_n_flags =
Johannes Berg8ca151b2013-01-24 14:25:36 +01001068 cpu_to_le32(BIT(mvm->mgmt_last_antenna_idx) <<
1069 RATE_MCS_ANT_POS);
1070
Johannes Berg57fbcce2016-04-12 15:56:15 +02001071 if (info->band == NL80211_BAND_5GHZ || vif->p2p) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001072 rate = IWL_FIRST_OFDM_RATE;
1073 } else {
1074 rate = IWL_FIRST_CCK_RATE;
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001075 u.beacon_cmd_v6.tx.rate_n_flags |=
1076 cpu_to_le32(RATE_MCS_CCK_MSK);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001077 }
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001078 u.beacon_cmd_v6.tx.rate_n_flags |=
Johannes Berg8ca151b2013-01-24 14:25:36 +01001079 cpu_to_le32(iwl_mvm_mac80211_idx_to_hwrate(rate));
1080
1081 /* Set up TX beacon command fields */
Johannes Berg5023d962013-07-31 14:07:43 +02001082 if (vif->type == NL80211_IFTYPE_AP)
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001083 iwl_mvm_mac_ctxt_set_tim(mvm, &u.beacon_cmd_v6,
Johannes Berg5023d962013-07-31 14:07:43 +02001084 beacon->data,
1085 beacon_skb_len);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001086
1087 /* Submit command */
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001088
1089 if (fw_has_capa(&mvm->fw->ucode_capa,
1090 IWL_UCODE_TLV_CAPA_CSA_AND_TBTT_OFFLOAD)) {
1091 u.beacon_cmd.csa_offset =
1092 cpu_to_le32(iwl_mvm_find_ie_offset(beacon->data,
1093 WLAN_EID_CHANNEL_SWITCH,
1094 beacon_skb_len));
1095 u.beacon_cmd.ecsa_offset =
1096 cpu_to_le32(iwl_mvm_find_ie_offset(beacon->data,
1097 WLAN_EID_EXT_CHANSWITCH_ANN,
1098 beacon_skb_len));
1099
1100 cmd.len[0] = sizeof(u.beacon_cmd);
1101 } else {
1102 cmd.len[0] = sizeof(u.beacon_cmd_v6);
1103 }
1104
1105 cmd.data[0] = &u;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001106 cmd.dataflags[0] = 0;
1107 cmd.len[1] = beacon_skb_len;
1108 cmd.data[1] = beacon->data;
1109 cmd.dataflags[1] = IWL_HCMD_DFL_DUP;
1110
1111 return iwl_mvm_send_cmd(mvm, &cmd);
1112}
1113
Johannes Berg5023d962013-07-31 14:07:43 +02001114/* The beacon template for the AP/GO/IBSS has changed and needs update */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001115int iwl_mvm_mac_ctxt_beacon_changed(struct iwl_mvm *mvm,
1116 struct ieee80211_vif *vif)
1117{
1118 struct sk_buff *beacon;
1119 int ret;
1120
Johannes Berg5023d962013-07-31 14:07:43 +02001121 WARN_ON(vif->type != NL80211_IFTYPE_AP &&
1122 vif->type != NL80211_IFTYPE_ADHOC);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001123
Andrei Otcheretianskife887662014-04-10 21:46:16 +03001124 beacon = ieee80211_beacon_get_template(mvm->hw, vif, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001125 if (!beacon)
1126 return -ENOMEM;
1127
1128 ret = iwl_mvm_mac_ctxt_send_beacon(mvm, vif, beacon);
1129 dev_kfree_skb(beacon);
1130 return ret;
1131}
1132
Ilan Peer3a3cb922013-06-13 08:30:12 +03001133struct iwl_mvm_mac_ap_iterator_data {
1134 struct iwl_mvm *mvm;
1135 struct ieee80211_vif *vif;
1136 u32 beacon_device_ts;
1137 u16 beacon_int;
1138};
1139
1140/* Find the beacon_device_ts and beacon_int for a managed interface */
1141static void iwl_mvm_mac_ap_iterator(void *_data, u8 *mac,
1142 struct ieee80211_vif *vif)
1143{
1144 struct iwl_mvm_mac_ap_iterator_data *data = _data;
1145
1146 if (vif->type != NL80211_IFTYPE_STATION || !vif->bss_conf.assoc)
1147 return;
1148
1149 /* Station client has higher priority over P2P client*/
1150 if (vif->p2p && data->beacon_device_ts)
1151 return;
1152
1153 data->beacon_device_ts = vif->bss_conf.sync_device_ts;
1154 data->beacon_int = vif->bss_conf.beacon_int;
1155}
1156
Johannes Berg8ca151b2013-01-24 14:25:36 +01001157/*
1158 * Fill the specific data for mac context of type AP of P2P GO
1159 */
1160static void iwl_mvm_mac_ctxt_cmd_fill_ap(struct iwl_mvm *mvm,
1161 struct ieee80211_vif *vif,
Johannes Berg186cd492016-08-24 10:05:40 +02001162 struct iwl_mac_ctx_cmd *cmd,
Johannes Berg506a81e2013-02-28 14:05:14 +01001163 struct iwl_mac_data_ap *ctxt_ap,
1164 bool add)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001165{
1166 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Ilan Peer3a3cb922013-06-13 08:30:12 +03001167 struct iwl_mvm_mac_ap_iterator_data data = {
1168 .mvm = mvm,
1169 .vif = vif,
1170 .beacon_device_ts = 0
1171 };
Johannes Berg8ca151b2013-01-24 14:25:36 +01001172
Johannes Berg186cd492016-08-24 10:05:40 +02001173 /* in AP mode, the MCAST FIFO takes the EDCA params from VO */
1174 cmd->ac[IWL_MVM_TX_FIFO_VO].fifos_mask |= BIT(IWL_MVM_TX_FIFO_MCAST);
1175
1176 /*
1177 * in AP mode, pass probe requests and beacons from other APs
1178 * (needed for ht protection); when there're no any associated
1179 * station don't ask FW to pass beacons to prevent unnecessary
1180 * wake-ups.
1181 */
1182 cmd->filter_flags |= cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST);
1183 if (mvmvif->ap_assoc_sta_count || !mvm->drop_bcn_ap_mode) {
1184 cmd->filter_flags |= cpu_to_le32(MAC_FILTER_IN_BEACON);
1185 IWL_DEBUG_HC(mvm, "Asking FW to pass beacons\n");
1186 } else {
1187 IWL_DEBUG_HC(mvm, "No need to receive beacons\n");
1188 }
1189
Johannes Berg8ca151b2013-01-24 14:25:36 +01001190 ctxt_ap->bi = cpu_to_le32(vif->bss_conf.beacon_int);
1191 ctxt_ap->bi_reciprocal =
1192 cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int));
1193 ctxt_ap->dtim_interval = cpu_to_le32(vif->bss_conf.beacon_int *
1194 vif->bss_conf.dtim_period);
1195 ctxt_ap->dtim_reciprocal =
1196 cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int *
1197 vif->bss_conf.dtim_period));
1198
1199 ctxt_ap->mcast_qid = cpu_to_le32(vif->cab_queue);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001200
Johannes Berg506a81e2013-02-28 14:05:14 +01001201 /*
Ilan Peer3a3cb922013-06-13 08:30:12 +03001202 * Only set the beacon time when the MAC is being added, when we
Johannes Berg506a81e2013-02-28 14:05:14 +01001203 * just modify the MAC then we should keep the time -- the firmware
1204 * can otherwise have a "jumping" TBTT.
1205 */
Ilan Peer3a3cb922013-06-13 08:30:12 +03001206 if (add) {
1207 /*
1208 * If there is a station/P2P client interface which is
1209 * associated, set the AP's TBTT far enough from the station's
1210 * TBTT. Otherwise, set it to the current system time
1211 */
1212 ieee80211_iterate_active_interfaces_atomic(
1213 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1214 iwl_mvm_mac_ap_iterator, &data);
1215
1216 if (data.beacon_device_ts) {
Ilan Peer9f8f8ca2013-12-24 17:17:05 +02001217 u32 rand = (prandom_u32() % (64 - 36)) + 36;
Ilan Peer3a3cb922013-06-13 08:30:12 +03001218 mvmvif->ap_beacon_time = data.beacon_device_ts +
1219 ieee80211_tu_to_usec(data.beacon_int * rand /
1220 100);
1221 } else {
1222 mvmvif->ap_beacon_time =
1223 iwl_read_prph(mvm->trans,
1224 DEVICE_SYSTEM_TIME_REG);
1225 }
1226 }
Johannes Berg506a81e2013-02-28 14:05:14 +01001227
1228 ctxt_ap->beacon_time = cpu_to_le32(mvmvif->ap_beacon_time);
Johannes Berg506a81e2013-02-28 14:05:14 +01001229 ctxt_ap->beacon_tsf = 0; /* unused */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001230
1231 /* TODO: Assume that the beacon id == mac context id */
1232 ctxt_ap->beacon_template = cpu_to_le32(mvmvif->id);
1233}
1234
Ilan Peerf82c8332015-09-10 12:54:38 +03001235static int iwl_mvm_mac_ctxt_cmd_ap(struct iwl_mvm *mvm,
1236 struct ieee80211_vif *vif,
1237 u32 action)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001238{
1239 struct iwl_mac_ctx_cmd cmd = {};
1240
1241 WARN_ON(vif->type != NL80211_IFTYPE_AP || vif->p2p);
1242
1243 /* Fill the common data for all mac context types */
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001244 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001245
Johannes Berg8ca151b2013-01-24 14:25:36 +01001246 /* Fill the data specific for ap mode */
Johannes Berg186cd492016-08-24 10:05:40 +02001247 iwl_mvm_mac_ctxt_cmd_fill_ap(mvm, vif, &cmd, &cmd.ap,
Johannes Berg506a81e2013-02-28 14:05:14 +01001248 action == FW_CTXT_ACTION_ADD);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001249
1250 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
1251}
1252
1253static int iwl_mvm_mac_ctxt_cmd_go(struct iwl_mvm *mvm,
1254 struct ieee80211_vif *vif,
1255 u32 action)
1256{
1257 struct iwl_mac_ctx_cmd cmd = {};
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001258 struct ieee80211_p2p_noa_attr *noa = &vif->bss_conf.p2p_noa_attr;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001259
1260 WARN_ON(vif->type != NL80211_IFTYPE_AP || !vif->p2p);
1261
1262 /* Fill the common data for all mac context types */
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001263 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001264
1265 /* Fill the data specific for GO mode */
Johannes Berg186cd492016-08-24 10:05:40 +02001266 iwl_mvm_mac_ctxt_cmd_fill_ap(mvm, vif, &cmd, &cmd.go.ap,
Johannes Berg506a81e2013-02-28 14:05:14 +01001267 action == FW_CTXT_ACTION_ADD);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001268
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001269 cmd.go.ctwin = cpu_to_le32(noa->oppps_ctwindow &
1270 IEEE80211_P2P_OPPPS_CTWINDOW_MASK);
1271 cmd.go.opp_ps_enabled =
1272 cpu_to_le32(!!(noa->oppps_ctwindow &
1273 IEEE80211_P2P_OPPPS_ENABLE_BIT));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001274
1275 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
1276}
1277
1278static int iwl_mvm_mac_ctx_send(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001279 u32 action, bool force_assoc_off,
1280 const u8 *bssid_override)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001281{
1282 switch (vif->type) {
1283 case NL80211_IFTYPE_STATION:
Luciano Coelhocf520232014-05-13 16:52:54 +03001284 return iwl_mvm_mac_ctxt_cmd_sta(mvm, vif, action,
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001285 force_assoc_off,
1286 bssid_override);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001287 break;
1288 case NL80211_IFTYPE_AP:
1289 if (!vif->p2p)
1290 return iwl_mvm_mac_ctxt_cmd_ap(mvm, vif, action);
1291 else
1292 return iwl_mvm_mac_ctxt_cmd_go(mvm, vif, action);
1293 break;
1294 case NL80211_IFTYPE_MONITOR:
1295 return iwl_mvm_mac_ctxt_cmd_listener(mvm, vif, action);
1296 case NL80211_IFTYPE_P2P_DEVICE:
1297 return iwl_mvm_mac_ctxt_cmd_p2p_device(mvm, vif, action);
Johannes Berg5023d962013-07-31 14:07:43 +02001298 case NL80211_IFTYPE_ADHOC:
1299 return iwl_mvm_mac_ctxt_cmd_ibss(mvm, vif, action);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001300 default:
1301 break;
1302 }
1303
1304 return -EOPNOTSUPP;
1305}
1306
1307int iwl_mvm_mac_ctxt_add(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1308{
1309 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1310 int ret;
1311
1312 if (WARN_ONCE(mvmvif->uploaded, "Adding active MAC %pM/%d\n",
1313 vif->addr, ieee80211_vif_type_p2p(vif)))
1314 return -EIO;
1315
Luciano Coelhobca49d92014-05-13 17:33:38 +03001316 ret = iwl_mvm_mac_ctx_send(mvm, vif, FW_CTXT_ACTION_ADD,
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001317 true, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001318 if (ret)
1319 return ret;
1320
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001321 /* will only do anything at resume from D3 time */
1322 iwl_mvm_set_last_nonqos_seq(mvm, vif);
1323
Johannes Berg8ca151b2013-01-24 14:25:36 +01001324 mvmvif->uploaded = true;
1325 return 0;
1326}
1327
Luciano Coelhobca49d92014-05-13 17:33:38 +03001328int iwl_mvm_mac_ctxt_changed(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001329 bool force_assoc_off, const u8 *bssid_override)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001330{
1331 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1332
1333 if (WARN_ONCE(!mvmvif->uploaded, "Changing inactive MAC %pM/%d\n",
1334 vif->addr, ieee80211_vif_type_p2p(vif)))
1335 return -EIO;
1336
Luciano Coelhobca49d92014-05-13 17:33:38 +03001337 return iwl_mvm_mac_ctx_send(mvm, vif, FW_CTXT_ACTION_MODIFY,
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001338 force_assoc_off, bssid_override);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001339}
1340
1341int iwl_mvm_mac_ctxt_remove(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1342{
1343 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1344 struct iwl_mac_ctx_cmd cmd;
1345 int ret;
1346
1347 if (WARN_ONCE(!mvmvif->uploaded, "Removing inactive MAC %pM/%d\n",
1348 vif->addr, ieee80211_vif_type_p2p(vif)))
1349 return -EIO;
1350
1351 memset(&cmd, 0, sizeof(cmd));
1352
1353 cmd.id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
1354 mvmvif->color));
1355 cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
1356
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001357 ret = iwl_mvm_send_cmd_pdu(mvm, MAC_CONTEXT_CMD, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001358 sizeof(cmd), &cmd);
1359 if (ret) {
1360 IWL_ERR(mvm, "Failed to remove MAC context: %d\n", ret);
1361 return ret;
1362 }
1363
1364 mvmvif->uploaded = false;
Johannes Bergfb8b8ee2013-10-21 12:37:53 +02001365
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +02001366 if (vif->type == NL80211_IFTYPE_MONITOR) {
Johannes Berg30686bf2015-06-02 21:39:54 +02001367 __clear_bit(IEEE80211_HW_RX_INCLUDES_FCS, mvm->hw->flags);
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +02001368 iwl_mvm_dealloc_snif_sta(mvm);
1369 }
Johannes Bergfb8b8ee2013-10-21 12:37:53 +02001370
Johannes Berg8ca151b2013-01-24 14:25:36 +01001371 return 0;
1372}
Ilan Peer571765c2013-03-05 15:26:03 +02001373
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001374static void iwl_mvm_csa_count_down(struct iwl_mvm *mvm,
Andrei Otcheretianski7ef0aab2014-11-10 11:10:11 +02001375 struct ieee80211_vif *csa_vif, u32 gp2,
1376 bool tx_success)
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001377{
1378 struct iwl_mvm_vif *mvmvif =
1379 iwl_mvm_vif_from_mac80211(csa_vif);
1380
Andrei Otcheretianski7ef0aab2014-11-10 11:10:11 +02001381 /* Don't start to countdown from a failed beacon */
1382 if (!tx_success && !mvmvif->csa_countdown)
1383 return;
1384
1385 mvmvif->csa_countdown = true;
1386
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001387 if (!ieee80211_csa_is_complete(csa_vif)) {
1388 int c = ieee80211_csa_update_counter(csa_vif);
1389
1390 iwl_mvm_mac_ctxt_beacon_changed(mvm, csa_vif);
1391 if (csa_vif->p2p &&
Andrei Otcheretianski7ef0aab2014-11-10 11:10:11 +02001392 !iwl_mvm_te_scheduled(&mvmvif->time_event_data) && gp2 &&
1393 tx_success) {
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001394 u32 rel_time = (c + 1) *
1395 csa_vif->bss_conf.beacon_int -
Luciano Coelhof991e172014-08-26 16:14:10 +03001396 IWL_MVM_CHANNEL_SWITCH_TIME_GO;
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001397 u32 apply_time = gp2 + rel_time * 1024;
1398
Luciano Coelhof991e172014-08-26 16:14:10 +03001399 iwl_mvm_schedule_csa_period(mvm, csa_vif,
1400 IWL_MVM_CHANNEL_SWITCH_TIME_GO -
1401 IWL_MVM_CHANNEL_SWITCH_MARGIN,
1402 apply_time);
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001403 }
1404 } else if (!iwl_mvm_te_scheduled(&mvmvif->time_event_data)) {
1405 /* we don't have CSA NoA scheduled yet, switch now */
1406 ieee80211_csa_finish(csa_vif);
1407 RCU_INIT_POINTER(mvm->csa_vif, NULL);
1408 }
1409}
1410
Johannes Berg04168412015-06-23 21:22:09 +02001411void iwl_mvm_rx_beacon_notif(struct iwl_mvm *mvm,
1412 struct iwl_rx_cmd_buffer *rxb)
Ilan Peer571765c2013-03-05 15:26:03 +02001413{
1414 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Emmanuel Grumbach2d2c0e92014-11-24 08:51:46 +02001415 struct iwl_extended_beacon_notif *beacon = (void *)pkt->data;
David Spinadel1c87bba2014-02-27 16:41:52 +02001416 struct iwl_mvm_tx_resp *beacon_notify_hdr;
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001417 struct ieee80211_vif *csa_vif;
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001418 struct ieee80211_vif *tx_blocked_vif;
Andrei Otcheretianski7ef0aab2014-11-10 11:10:11 +02001419 u16 status;
Ilan Peer571765c2013-03-05 15:26:03 +02001420
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02001421 lockdep_assert_held(&mvm->mutex);
1422
Emmanuel Grumbach2d2c0e92014-11-24 08:51:46 +02001423 beacon_notify_hdr = &beacon->beacon_notify_hdr;
1424 mvm->ap_last_beacon_gp2 = le32_to_cpu(beacon->gp2);
David Spinadel1c87bba2014-02-27 16:41:52 +02001425
Andrei Otcheretianski7ef0aab2014-11-10 11:10:11 +02001426 status = le16_to_cpu(beacon_notify_hdr->status.status) & TX_STATUS_MSK;
David Spinadel1c87bba2014-02-27 16:41:52 +02001427 IWL_DEBUG_RX(mvm,
1428 "beacon status %#x retries:%d tsf:0x%16llX gp2:0x%X rate:%d\n",
Emmanuel Grumbach2d2c0e92014-11-24 08:51:46 +02001429 status, beacon_notify_hdr->failure_frame,
1430 le64_to_cpu(beacon->tsf),
David Spinadel1c87bba2014-02-27 16:41:52 +02001431 mvm->ap_last_beacon_gp2,
1432 le32_to_cpu(beacon_notify_hdr->initial_rate));
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02001433
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001434 csa_vif = rcu_dereference_protected(mvm->csa_vif,
1435 lockdep_is_held(&mvm->mutex));
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001436 if (unlikely(csa_vif && csa_vif->csa_active))
Andrei Otcheretianski7ef0aab2014-11-10 11:10:11 +02001437 iwl_mvm_csa_count_down(mvm, csa_vif, mvm->ap_last_beacon_gp2,
1438 (status == TX_STATUS_SUCCESS));
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02001439
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001440 tx_blocked_vif = rcu_dereference_protected(mvm->csa_tx_blocked_vif,
1441 lockdep_is_held(&mvm->mutex));
1442 if (unlikely(tx_blocked_vif)) {
1443 struct iwl_mvm_vif *mvmvif =
1444 iwl_mvm_vif_from_mac80211(tx_blocked_vif);
1445
1446 /*
1447 * The channel switch is started and we have blocked the
1448 * stations. If this is the first beacon (the timeout wasn't
1449 * set), set the unblock timeout, otherwise countdown
1450 */
1451 if (!mvm->csa_tx_block_bcn_timeout)
1452 mvm->csa_tx_block_bcn_timeout =
1453 IWL_MVM_CS_UNBLOCK_TX_TIMEOUT;
1454 else
1455 mvm->csa_tx_block_bcn_timeout--;
1456
1457 /* Check if the timeout is expired, and unblock tx */
1458 if (mvm->csa_tx_block_bcn_timeout == 0) {
1459 iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, false);
1460 RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL);
1461 }
1462 }
Ilan Peer571765c2013-03-05 15:26:03 +02001463}
Hila Gonend64048e2013-03-13 18:00:03 +02001464
1465static void iwl_mvm_beacon_loss_iterator(void *_data, u8 *mac,
1466 struct ieee80211_vif *vif)
1467{
Ilan Peer12d423e2013-12-24 22:08:14 +02001468 struct iwl_missed_beacons_notif *missed_beacons = _data;
Hila Gonend64048e2013-03-13 18:00:03 +02001469 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Emmanuel Grumbach9d761fd2015-02-02 12:44:23 +02001470 struct iwl_mvm *mvm = mvmvif->mvm;
1471 struct iwl_fw_dbg_trigger_missed_bcon *bcon_trig;
1472 struct iwl_fw_dbg_trigger_tlv *trigger;
1473 u32 stop_trig_missed_bcon, stop_trig_missed_bcon_since_rx;
1474 u32 rx_missed_bcon, rx_missed_bcon_since_rx;
Hila Gonend64048e2013-03-13 18:00:03 +02001475
Ilan Peer12d423e2013-12-24 22:08:14 +02001476 if (mvmvif->id != (u16)le32_to_cpu(missed_beacons->mac_id))
1477 return;
1478
Emmanuel Grumbach9d761fd2015-02-02 12:44:23 +02001479 rx_missed_bcon = le32_to_cpu(missed_beacons->consec_missed_beacons);
1480 rx_missed_bcon_since_rx =
1481 le32_to_cpu(missed_beacons->consec_missed_beacons_since_last_rx);
Ilan Peer12d423e2013-12-24 22:08:14 +02001482 /*
1483 * TODO: the threshold should be adjusted based on latency conditions,
1484 * and/or in case of a CS flow on one of the other AP vifs.
1485 */
1486 if (le32_to_cpu(missed_beacons->consec_missed_beacons_since_last_rx) >
1487 IWL_MVM_MISSED_BEACONS_THRESHOLD)
Hila Gonend64048e2013-03-13 18:00:03 +02001488 ieee80211_beacon_loss(vif);
Emmanuel Grumbach9d761fd2015-02-02 12:44:23 +02001489
1490 if (!iwl_fw_dbg_trigger_enabled(mvm->fw,
1491 FW_DBG_TRIGGER_MISSED_BEACONS))
1492 return;
1493
1494 trigger = iwl_fw_dbg_get_trigger(mvm->fw,
1495 FW_DBG_TRIGGER_MISSED_BEACONS);
1496 bcon_trig = (void *)trigger->data;
1497 stop_trig_missed_bcon = le32_to_cpu(bcon_trig->stop_consec_missed_bcon);
1498 stop_trig_missed_bcon_since_rx =
1499 le32_to_cpu(bcon_trig->stop_consec_missed_bcon_since_rx);
1500
1501 /* TODO: implement start trigger */
1502
1503 if (!iwl_fw_dbg_trigger_check_stop(mvm, vif, trigger))
1504 return;
1505
1506 if (rx_missed_bcon_since_rx >= stop_trig_missed_bcon_since_rx ||
1507 rx_missed_bcon >= stop_trig_missed_bcon)
Johannes Berg5d4f9292015-03-31 09:12:54 +02001508 iwl_mvm_fw_dbg_collect_trig(mvm, trigger, NULL);
Hila Gonend64048e2013-03-13 18:00:03 +02001509}
1510
Johannes Berg04168412015-06-23 21:22:09 +02001511void iwl_mvm_rx_missed_beacons_notif(struct iwl_mvm *mvm,
1512 struct iwl_rx_cmd_buffer *rxb)
Hila Gonend64048e2013-03-13 18:00:03 +02001513{
1514 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Ilan Peer12d423e2013-12-24 22:08:14 +02001515 struct iwl_missed_beacons_notif *mb = (void *)pkt->data;
1516
1517 IWL_DEBUG_INFO(mvm,
1518 "missed bcn mac_id=%u, consecutive=%u (%u, %u, %u)\n",
1519 le32_to_cpu(mb->mac_id),
1520 le32_to_cpu(mb->consec_missed_beacons),
1521 le32_to_cpu(mb->consec_missed_beacons_since_last_rx),
1522 le32_to_cpu(mb->num_recvd_beacons),
1523 le32_to_cpu(mb->num_expected_beacons));
Hila Gonend64048e2013-03-13 18:00:03 +02001524
1525 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
1526 IEEE80211_IFACE_ITER_NORMAL,
1527 iwl_mvm_beacon_loss_iterator,
Ilan Peer12d423e2013-12-24 22:08:14 +02001528 mb);
Hila Gonend64048e2013-03-13 18:00:03 +02001529}
Sara Sharon0db056d2015-12-29 11:07:15 +02001530
1531void iwl_mvm_rx_stored_beacon_notif(struct iwl_mvm *mvm,
1532 struct iwl_rx_cmd_buffer *rxb)
1533{
1534 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1535 struct iwl_stored_beacon_notif *sb = (void *)pkt->data;
1536 struct ieee80211_rx_status rx_status;
1537 struct sk_buff *skb;
1538 u32 size = le32_to_cpu(sb->byte_count);
1539
1540 if (size == 0)
1541 return;
1542
1543 skb = alloc_skb(size, GFP_ATOMIC);
1544 if (!skb) {
1545 IWL_ERR(mvm, "alloc_skb failed\n");
1546 return;
1547 }
1548
1549 /* update rx_status according to the notification's metadata */
1550 memset(&rx_status, 0, sizeof(rx_status));
1551 rx_status.mactime = le64_to_cpu(sb->tsf);
Sara Sharon77fe7392016-01-10 14:23:25 +02001552 /* TSF as indicated by the firmware is at INA time */
1553 rx_status.flag |= RX_FLAG_MACTIME_PLCP_START;
Sara Sharon0db056d2015-12-29 11:07:15 +02001554 rx_status.device_timestamp = le32_to_cpu(sb->system_time);
1555 rx_status.band =
Sara Sharon34118c22016-11-08 18:34:42 +02001556 (sb->band & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ?
Johannes Berg57fbcce2016-04-12 15:56:15 +02001557 NL80211_BAND_2GHZ : NL80211_BAND_5GHZ;
Sara Sharon0db056d2015-12-29 11:07:15 +02001558 rx_status.freq =
1559 ieee80211_channel_to_frequency(le16_to_cpu(sb->channel),
1560 rx_status.band);
1561
1562 /* copy the data */
1563 memcpy(skb_put(skb, size), sb->data, size);
1564 memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
1565
1566 /* pass it as regular rx to mac80211 */
Johannes Bergd63b5482016-03-31 20:02:02 +03001567 ieee80211_rx_napi(mvm->hw, NULL, skb, NULL);
Sara Sharon0db056d2015-12-29 11:07:15 +02001568}
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +02001569
1570void iwl_mvm_channel_switch_noa_notif(struct iwl_mvm *mvm,
1571 struct iwl_rx_cmd_buffer *rxb)
1572{
1573 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1574 struct iwl_channel_switch_noa_notif *notif = (void *)pkt->data;
1575 struct ieee80211_vif *csa_vif;
1576 struct iwl_mvm_vif *mvmvif;
1577 int len = iwl_rx_packet_payload_len(pkt);
1578 u32 id_n_color;
1579
1580 if (WARN_ON_ONCE(len < sizeof(*notif)))
1581 return;
1582
1583 rcu_read_lock();
1584
1585 csa_vif = rcu_dereference(mvm->csa_vif);
1586 if (WARN_ON(!csa_vif || !csa_vif->csa_active))
1587 goto out_unlock;
1588
1589 id_n_color = le32_to_cpu(notif->id_and_color);
1590
1591 mvmvif = iwl_mvm_vif_from_mac80211(csa_vif);
1592 if (WARN(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color) != id_n_color,
1593 "channel switch noa notification on unexpected vif (csa_vif=%d, notif=%d)",
1594 FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color), id_n_color))
1595 goto out_unlock;
1596
1597 IWL_DEBUG_INFO(mvm, "Channel Switch Started Notification\n");
1598
1599 queue_delayed_work(system_wq, &mvm->cs_tx_unblock_dwork,
1600 msecs_to_jiffies(IWL_MVM_CS_UNBLOCK_TX_TIMEOUT *
1601 csa_vif->bss_conf.beacon_int));
1602
1603 ieee80211_csa_finish(csa_vif);
1604
1605 rcu_read_unlock();
1606
1607 RCU_INIT_POINTER(mvm->csa_vif, NULL);
1608
1609 return;
1610
1611out_unlock:
1612 rcu_read_unlock();
1613}