Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/dev/iwlwifi/mvm/mac-ctxt.c
48287 views
1
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2
/*
3
* Copyright (C) 2012-2014, 2018-2025 Intel Corporation
4
* Copyright (C) 2013-2014 Intel Mobile Communications GmbH
5
* Copyright (C) 2015-2017 Intel Deutschland GmbH
6
*/
7
#include <linux/etherdevice.h>
8
#include <linux/crc32.h>
9
#include <net/mac80211.h>
10
#include "iwl-io.h"
11
#include "iwl-prph.h"
12
#include "fw-api.h"
13
#include "mvm.h"
14
#include "time-event.h"
15
#include "iwl-utils.h"
16
17
const u8 iwl_mvm_ac_to_tx_fifo[] = {
18
IWL_MVM_TX_FIFO_VO,
19
IWL_MVM_TX_FIFO_VI,
20
IWL_MVM_TX_FIFO_BE,
21
IWL_MVM_TX_FIFO_BK,
22
};
23
24
const u8 iwl_mvm_ac_to_gen2_tx_fifo[] = {
25
IWL_GEN2_EDCA_TX_FIFO_VO,
26
IWL_GEN2_EDCA_TX_FIFO_VI,
27
IWL_GEN2_EDCA_TX_FIFO_BE,
28
IWL_GEN2_EDCA_TX_FIFO_BK,
29
IWL_GEN2_TRIG_TX_FIFO_VO,
30
IWL_GEN2_TRIG_TX_FIFO_VI,
31
IWL_GEN2_TRIG_TX_FIFO_BE,
32
IWL_GEN2_TRIG_TX_FIFO_BK,
33
};
34
35
const u8 iwl_mvm_ac_to_bz_tx_fifo[] = {
36
IWL_BZ_EDCA_TX_FIFO_VO,
37
IWL_BZ_EDCA_TX_FIFO_VI,
38
IWL_BZ_EDCA_TX_FIFO_BE,
39
IWL_BZ_EDCA_TX_FIFO_BK,
40
IWL_BZ_TRIG_TX_FIFO_VO,
41
IWL_BZ_TRIG_TX_FIFO_VI,
42
IWL_BZ_TRIG_TX_FIFO_BE,
43
IWL_BZ_TRIG_TX_FIFO_BK,
44
};
45
46
struct iwl_mvm_mac_iface_iterator_data {
47
struct iwl_mvm *mvm;
48
struct ieee80211_vif *vif;
49
unsigned long available_mac_ids[BITS_TO_LONGS(NUM_MAC_INDEX_DRIVER)];
50
unsigned long available_tsf_ids[BITS_TO_LONGS(NUM_TSF_IDS)];
51
enum iwl_tsf_id preferred_tsf;
52
bool found_vif;
53
};
54
55
static void iwl_mvm_mac_tsf_id_iter(void *_data, u8 *mac,
56
struct ieee80211_vif *vif)
57
{
58
struct iwl_mvm_mac_iface_iterator_data *data = _data;
59
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
60
u16 min_bi;
61
62
/* Skip the interface for which we are trying to assign a tsf_id */
63
if (vif == data->vif)
64
return;
65
66
/*
67
* The TSF is a hardware/firmware resource, there are 4 and
68
* the driver should assign and free them as needed. However,
69
* there are cases where 2 MACs should share the same TSF ID
70
* for the purpose of clock sync, an optimization to avoid
71
* clock drift causing overlapping TBTTs/DTIMs for a GO and
72
* client in the system.
73
*
74
* The firmware will decide according to the MAC type which
75
* will be the leader and follower. Clients that need to sync
76
* with a remote station will be the leader, and an AP or GO
77
* will be the follower.
78
*
79
* Depending on the new interface type it can be following
80
* or become the leader of an existing interface.
81
*/
82
switch (data->vif->type) {
83
case NL80211_IFTYPE_STATION:
84
/*
85
* The new interface is a client, so if the one we're iterating
86
* is an AP, and the beacon interval of the AP is a multiple or
87
* divisor of the beacon interval of the client, the same TSF
88
* should be used to avoid drift between the new client and
89
* existing AP. The existing AP will get drift updates from the
90
* new client context in this case.
91
*/
92
if (vif->type != NL80211_IFTYPE_AP ||
93
data->preferred_tsf != NUM_TSF_IDS ||
94
!test_bit(mvmvif->tsf_id, data->available_tsf_ids))
95
break;
96
97
min_bi = min(data->vif->bss_conf.beacon_int,
98
vif->bss_conf.beacon_int);
99
100
if (!min_bi)
101
break;
102
103
if ((data->vif->bss_conf.beacon_int -
104
vif->bss_conf.beacon_int) % min_bi == 0) {
105
data->preferred_tsf = mvmvif->tsf_id;
106
return;
107
}
108
break;
109
110
case NL80211_IFTYPE_AP:
111
/*
112
* The new interface is AP/GO, so if its beacon interval is a
113
* multiple or a divisor of the beacon interval of an existing
114
* interface, it should get drift updates from an existing
115
* client or use the same TSF as an existing GO. There's no
116
* drift between TSFs internally but if they used different
117
* TSFs then a new client MAC could update one of them and
118
* cause drift that way.
119
*/
120
if ((vif->type != NL80211_IFTYPE_AP &&
121
vif->type != NL80211_IFTYPE_STATION) ||
122
data->preferred_tsf != NUM_TSF_IDS ||
123
!test_bit(mvmvif->tsf_id, data->available_tsf_ids))
124
break;
125
126
min_bi = min(data->vif->bss_conf.beacon_int,
127
vif->bss_conf.beacon_int);
128
129
if (!min_bi)
130
break;
131
132
if ((data->vif->bss_conf.beacon_int -
133
vif->bss_conf.beacon_int) % min_bi == 0) {
134
data->preferred_tsf = mvmvif->tsf_id;
135
return;
136
}
137
break;
138
default:
139
/*
140
* For all other interface types there's no need to
141
* take drift into account. Either they're exclusive
142
* like IBSS and monitor, or we don't care much about
143
* their TSF (like P2P Device), but we won't be able
144
* to share the TSF resource.
145
*/
146
break;
147
}
148
149
/*
150
* Unless we exited above, we can't share the TSF resource
151
* that the virtual interface we're iterating over is using
152
* with the new one, so clear the available bit and if this
153
* was the preferred one, reset that as well.
154
*/
155
__clear_bit(mvmvif->tsf_id, data->available_tsf_ids);
156
157
if (data->preferred_tsf == mvmvif->tsf_id)
158
data->preferred_tsf = NUM_TSF_IDS;
159
}
160
161
static void iwl_mvm_mac_iface_iterator(void *_data, u8 *mac,
162
struct ieee80211_vif *vif)
163
{
164
struct iwl_mvm_mac_iface_iterator_data *data = _data;
165
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
166
167
/* Iterator may already find the interface being added -- skip it */
168
if (vif == data->vif) {
169
data->found_vif = true;
170
return;
171
}
172
173
/* Mark MAC IDs as used by clearing the available bit, and
174
* (below) mark TSFs as used if their existing use is not
175
* compatible with the new interface type.
176
* No locking or atomic bit operations are needed since the
177
* data is on the stack of the caller function.
178
*/
179
__clear_bit(mvmvif->id, data->available_mac_ids);
180
181
/* find a suitable tsf_id */
182
iwl_mvm_mac_tsf_id_iter(_data, mac, vif);
183
}
184
185
void iwl_mvm_mac_ctxt_recalc_tsf_id(struct iwl_mvm *mvm,
186
struct ieee80211_vif *vif)
187
{
188
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
189
struct iwl_mvm_mac_iface_iterator_data data = {
190
.mvm = mvm,
191
.vif = vif,
192
.available_tsf_ids = { (1 << NUM_TSF_IDS) - 1 },
193
/* no preference yet */
194
.preferred_tsf = NUM_TSF_IDS,
195
};
196
197
ieee80211_iterate_active_interfaces_atomic(
198
mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
199
iwl_mvm_mac_tsf_id_iter, &data);
200
201
if (data.preferred_tsf != NUM_TSF_IDS)
202
mvmvif->tsf_id = data.preferred_tsf;
203
else if (!test_bit(mvmvif->tsf_id, data.available_tsf_ids))
204
mvmvif->tsf_id = find_first_bit(data.available_tsf_ids,
205
NUM_TSF_IDS);
206
}
207
208
int iwl_mvm_mac_ctxt_init(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
209
{
210
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
211
struct iwl_mvm_mac_iface_iterator_data data = {
212
.mvm = mvm,
213
.vif = vif,
214
.available_mac_ids = { (1 << NUM_MAC_INDEX_DRIVER) - 1 },
215
.available_tsf_ids = { (1 << NUM_TSF_IDS) - 1 },
216
/* no preference yet */
217
.preferred_tsf = NUM_TSF_IDS,
218
.found_vif = false,
219
};
220
int ret;
221
222
lockdep_assert_held(&mvm->mutex);
223
224
/*
225
* Allocate a MAC ID and a TSF for this MAC, along with the queues
226
* and other resources.
227
*/
228
229
/*
230
* Before the iterator, we start with all MAC IDs and TSFs available.
231
*
232
* During iteration, all MAC IDs are cleared that are in use by other
233
* virtual interfaces, and all TSF IDs are cleared that can't be used
234
* by this new virtual interface because they're used by an interface
235
* that can't share it with the new one.
236
* At the same time, we check if there's a preferred TSF in the case
237
* that we should share it with another interface.
238
*/
239
240
/* MAC ID 0 should be used only for the managed/IBSS vif with non-MLO
241
* FW API
242
*/
243
if (!mvm->mld_api_is_used) {
244
switch (vif->type) {
245
case NL80211_IFTYPE_ADHOC:
246
break;
247
case NL80211_IFTYPE_STATION:
248
if (!vif->p2p)
249
break;
250
fallthrough;
251
default:
252
__clear_bit(0, data.available_mac_ids);
253
}
254
}
255
256
ieee80211_iterate_active_interfaces_atomic(
257
mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
258
iwl_mvm_mac_iface_iterator, &data);
259
260
/*
261
* In the case we're getting here during resume, it's similar to
262
* firmware restart, and with RESUME_ALL the iterator will find
263
* the vif being added already.
264
* We don't want to reassign any IDs in either case since doing
265
* so would probably assign different IDs (as interfaces aren't
266
* necessarily added in the same order), but the old IDs were
267
* preserved anyway, so skip ID assignment for both resume and
268
* recovery.
269
*/
270
if (data.found_vif)
271
return 0;
272
273
/* Therefore, in recovery, we can't get here */
274
if (WARN_ON_ONCE(test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)))
275
return -EBUSY;
276
277
mvmvif->id = find_first_bit(data.available_mac_ids,
278
NUM_MAC_INDEX_DRIVER);
279
if (mvmvif->id == NUM_MAC_INDEX_DRIVER) {
280
IWL_ERR(mvm, "Failed to init MAC context - no free ID!\n");
281
ret = -EIO;
282
goto exit_fail;
283
}
284
285
if (data.preferred_tsf != NUM_TSF_IDS)
286
mvmvif->tsf_id = data.preferred_tsf;
287
else
288
mvmvif->tsf_id = find_first_bit(data.available_tsf_ids,
289
NUM_TSF_IDS);
290
if (mvmvif->tsf_id == NUM_TSF_IDS) {
291
IWL_ERR(mvm, "Failed to init MAC context - no free TSF!\n");
292
ret = -EIO;
293
goto exit_fail;
294
}
295
296
mvmvif->color = 0;
297
298
INIT_LIST_HEAD(&mvmvif->time_event_data.list);
299
mvmvif->time_event_data.id = TE_MAX;
300
mvmvif->roc_activity = ROC_NUM_ACTIVITIES;
301
302
iwl_mvm_init_link(&mvmvif->deflink);
303
304
/* No need to allocate data queues to P2P Device MAC */
305
if (vif->type == NL80211_IFTYPE_P2P_DEVICE)
306
return 0;
307
308
/* Allocate the CAB queue for softAP and GO interfaces */
309
if (vif->type == NL80211_IFTYPE_AP ||
310
vif->type == NL80211_IFTYPE_ADHOC) {
311
/*
312
* For TVQM this will be overwritten later with the FW assigned
313
* queue value (when queue is enabled).
314
*/
315
mvmvif->deflink.cab_queue = IWL_MVM_DQA_GCAST_QUEUE;
316
}
317
318
return 0;
319
320
exit_fail:
321
memset(mvmvif, 0, sizeof(struct iwl_mvm_vif));
322
return ret;
323
}
324
325
static void iwl_mvm_ack_rates(struct iwl_mvm *mvm,
326
struct ieee80211_vif *vif,
327
enum nl80211_band band,
328
u8 *cck_rates, u8 *ofdm_rates)
329
{
330
struct ieee80211_supported_band *sband;
331
unsigned long basic = vif->bss_conf.basic_rates;
332
int lowest_present_ofdm = 100;
333
int lowest_present_cck = 100;
334
u8 cck = 0;
335
u8 ofdm = 0;
336
int i;
337
338
sband = mvm->hw->wiphy->bands[band];
339
340
for_each_set_bit(i, &basic, BITS_PER_LONG) {
341
int hw = sband->bitrates[i].hw_value;
342
if (hw >= IWL_FIRST_OFDM_RATE) {
343
ofdm |= BIT(hw - IWL_FIRST_OFDM_RATE);
344
if (lowest_present_ofdm > hw)
345
lowest_present_ofdm = hw;
346
} else {
347
BUILD_BUG_ON(IWL_FIRST_CCK_RATE != 0);
348
349
cck |= BIT(hw);
350
if (lowest_present_cck > hw)
351
lowest_present_cck = hw;
352
}
353
}
354
355
/*
356
* Now we've got the basic rates as bitmaps in the ofdm and cck
357
* variables. This isn't sufficient though, as there might not
358
* be all the right rates in the bitmap. E.g. if the only basic
359
* rates are 5.5 Mbps and 11 Mbps, we still need to add 1 Mbps
360
* and 6 Mbps because the 802.11-2007 standard says in 9.6:
361
*
362
* [...] a STA responding to a received frame shall transmit
363
* its Control Response frame [...] at the highest rate in the
364
* BSSBasicRateSet parameter that is less than or equal to the
365
* rate of the immediately previous frame in the frame exchange
366
* sequence ([...]) and that is of the same modulation class
367
* ([...]) as the received frame. If no rate contained in the
368
* BSSBasicRateSet parameter meets these conditions, then the
369
* control frame sent in response to a received frame shall be
370
* transmitted at the highest mandatory rate of the PHY that is
371
* less than or equal to the rate of the received frame, and
372
* that is of the same modulation class as the received frame.
373
*
374
* As a consequence, we need to add all mandatory rates that are
375
* lower than all of the basic rates to these bitmaps.
376
*/
377
378
if (IWL_RATE_24M_INDEX < lowest_present_ofdm)
379
ofdm |= IWL_RATE_BIT_MSK(24) >> IWL_FIRST_OFDM_RATE;
380
if (IWL_RATE_12M_INDEX < lowest_present_ofdm)
381
ofdm |= IWL_RATE_BIT_MSK(12) >> IWL_FIRST_OFDM_RATE;
382
/* 6M already there or needed so always add */
383
ofdm |= IWL_RATE_BIT_MSK(6) >> IWL_FIRST_OFDM_RATE;
384
385
/*
386
* CCK is a bit more complex with DSSS vs. HR/DSSS vs. ERP.
387
* Note, however:
388
* - if no CCK rates are basic, it must be ERP since there must
389
* be some basic rates at all, so they're OFDM => ERP PHY
390
* (or we're in 5 GHz, and the cck bitmap will never be used)
391
* - if 11M is a basic rate, it must be ERP as well, so add 5.5M
392
* - if 5.5M is basic, 1M and 2M are mandatory
393
* - if 2M is basic, 1M is mandatory
394
* - if 1M is basic, that's the only valid ACK rate.
395
* As a consequence, it's not as complicated as it sounds, just add
396
* any lower rates to the ACK rate bitmap.
397
*/
398
if (IWL_RATE_11M_INDEX < lowest_present_cck)
399
cck |= IWL_RATE_BIT_MSK(11) >> IWL_FIRST_CCK_RATE;
400
if (IWL_RATE_5M_INDEX < lowest_present_cck)
401
cck |= IWL_RATE_BIT_MSK(5) >> IWL_FIRST_CCK_RATE;
402
if (IWL_RATE_2M_INDEX < lowest_present_cck)
403
cck |= IWL_RATE_BIT_MSK(2) >> IWL_FIRST_CCK_RATE;
404
/* 1M already there or needed so always add */
405
cck |= IWL_RATE_BIT_MSK(1) >> IWL_FIRST_CCK_RATE;
406
407
*cck_rates = cck;
408
*ofdm_rates = ofdm;
409
}
410
411
void iwl_mvm_set_fw_basic_rates(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
412
struct iwl_mvm_vif_link_info *link_info,
413
__le32 *cck_rates, __le32 *ofdm_rates)
414
{
415
struct iwl_mvm_phy_ctxt *phy_ctxt;
416
u8 cck_ack_rates = 0, ofdm_ack_rates = 0;
417
enum nl80211_band band = NL80211_BAND_2GHZ;
418
419
phy_ctxt = link_info->phy_ctxt;
420
if (phy_ctxt && phy_ctxt->channel)
421
band = phy_ctxt->channel->band;
422
423
iwl_mvm_ack_rates(mvm, vif, band, &cck_ack_rates, &ofdm_ack_rates);
424
425
*cck_rates = cpu_to_le32((u32)cck_ack_rates);
426
*ofdm_rates = cpu_to_le32((u32)ofdm_ack_rates);
427
}
428
429
void iwl_mvm_set_fw_protection_flags(struct iwl_mvm *mvm,
430
struct ieee80211_vif *vif,
431
struct ieee80211_bss_conf *link_conf,
432
__le32 *protection_flags, u32 ht_flag,
433
u32 tgg_flag)
434
{
435
/* for both sta and ap, ht_operation_mode hold the protection_mode */
436
u8 protection_mode = link_conf->ht_operation_mode &
437
IEEE80211_HT_OP_MODE_PROTECTION;
438
bool ht_enabled = !!(link_conf->ht_operation_mode &
439
IEEE80211_HT_OP_MODE_PROTECTION);
440
441
if (link_conf->use_cts_prot)
442
*protection_flags |= cpu_to_le32(tgg_flag);
443
444
IWL_DEBUG_RATE(mvm, "use_cts_prot %d, ht_operation_mode %d\n",
445
link_conf->use_cts_prot,
446
link_conf->ht_operation_mode);
447
448
if (!ht_enabled)
449
return;
450
451
IWL_DEBUG_RATE(mvm, "protection mode set to %d\n", protection_mode);
452
/*
453
* See section 9.23.3.1 of IEEE 80211-2012.
454
* Nongreenfield HT STAs Present is not supported.
455
*/
456
switch (protection_mode) {
457
case IEEE80211_HT_OP_MODE_PROTECTION_NONE:
458
break;
459
case IEEE80211_HT_OP_MODE_PROTECTION_NONMEMBER:
460
case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
461
*protection_flags |= cpu_to_le32(ht_flag);
462
break;
463
case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
464
/* Protect when channel wider than 20MHz */
465
if (link_conf->chanreq.oper.width > NL80211_CHAN_WIDTH_20)
466
*protection_flags |= cpu_to_le32(ht_flag);
467
break;
468
default:
469
IWL_ERR(mvm, "Illegal protection mode %d\n",
470
protection_mode);
471
break;
472
}
473
}
474
475
void iwl_mvm_set_fw_qos_params(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
476
struct ieee80211_bss_conf *link_conf,
477
struct iwl_ac_qos *ac, __le32 *qos_flags)
478
{
479
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
480
struct iwl_mvm_vif_link_info *mvm_link =
481
mvmvif->link[link_conf->link_id];
482
int i;
483
484
if (!mvm_link)
485
return;
486
487
for (i = 0; i < IEEE80211_NUM_ACS; i++) {
488
u8 txf = iwl_mvm_mac_ac_to_tx_fifo(mvm, i);
489
u8 ucode_ac = iwl_mvm_mac80211_ac_to_ucode_ac(i);
490
491
ac[ucode_ac].cw_min =
492
cpu_to_le16(mvm_link->queue_params[i].cw_min);
493
ac[ucode_ac].cw_max =
494
cpu_to_le16(mvm_link->queue_params[i].cw_max);
495
ac[ucode_ac].edca_txop =
496
cpu_to_le16(mvm_link->queue_params[i].txop * 32);
497
ac[ucode_ac].aifsn = mvm_link->queue_params[i].aifs;
498
ac[ucode_ac].fifos_mask = BIT(txf);
499
}
500
501
if (link_conf->qos)
502
*qos_flags |= cpu_to_le32(MAC_QOS_FLG_UPDATE_EDCA);
503
504
if (link_conf->chanreq.oper.width != NL80211_CHAN_WIDTH_20_NOHT)
505
*qos_flags |= cpu_to_le32(MAC_QOS_FLG_TGN);
506
}
507
508
int iwl_mvm_get_mac_type(struct ieee80211_vif *vif)
509
{
510
u32 mac_type = FW_MAC_TYPE_BSS_STA;
511
512
switch (vif->type) {
513
case NL80211_IFTYPE_STATION:
514
if (vif->p2p)
515
mac_type = FW_MAC_TYPE_P2P_STA;
516
else
517
mac_type = FW_MAC_TYPE_BSS_STA;
518
break;
519
case NL80211_IFTYPE_AP:
520
mac_type = FW_MAC_TYPE_GO;
521
break;
522
case NL80211_IFTYPE_MONITOR:
523
mac_type = FW_MAC_TYPE_LISTENER;
524
break;
525
case NL80211_IFTYPE_P2P_DEVICE:
526
mac_type = FW_MAC_TYPE_P2P_DEVICE;
527
break;
528
case NL80211_IFTYPE_ADHOC:
529
mac_type = FW_MAC_TYPE_IBSS;
530
break;
531
default:
532
WARN_ON_ONCE(1);
533
}
534
return mac_type;
535
}
536
537
static void iwl_mvm_mac_ctxt_cmd_common(struct iwl_mvm *mvm,
538
struct ieee80211_vif *vif,
539
struct iwl_mac_ctx_cmd *cmd,
540
const u8 *bssid_override,
541
u32 action)
542
{
543
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
544
const u8 *bssid = bssid_override ?: vif->bss_conf.bssid;
545
u32 ht_flag;
546
547
cmd->id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
548
mvmvif->color));
549
cmd->action = cpu_to_le32(action);
550
cmd->mac_type = cpu_to_le32(iwl_mvm_get_mac_type(vif));
551
552
cmd->tsf_id = cpu_to_le32(mvmvif->tsf_id);
553
554
memcpy(cmd->node_addr, vif->addr, ETH_ALEN);
555
556
if (bssid)
557
memcpy(cmd->bssid_addr, bssid, ETH_ALEN);
558
else
559
eth_broadcast_addr(cmd->bssid_addr);
560
561
iwl_mvm_set_fw_basic_rates(mvm, vif, &mvmvif->deflink, &cmd->cck_rates,
562
&cmd->ofdm_rates);
563
564
cmd->cck_short_preamble =
565
cpu_to_le32(vif->bss_conf.use_short_preamble ?
566
MAC_FLG_SHORT_PREAMBLE : 0);
567
cmd->short_slot =
568
cpu_to_le32(vif->bss_conf.use_short_slot ?
569
MAC_FLG_SHORT_SLOT : 0);
570
571
cmd->filter_flags = 0;
572
573
iwl_mvm_set_fw_qos_params(mvm, vif, &vif->bss_conf, cmd->ac,
574
&cmd->qos_flags);
575
576
/* The fw does not distinguish between ht and fat */
577
ht_flag = MAC_PROT_FLG_HT_PROT | MAC_PROT_FLG_FAT_PROT;
578
iwl_mvm_set_fw_protection_flags(mvm, vif, &vif->bss_conf,
579
&cmd->protection_flags,
580
ht_flag, MAC_PROT_FLG_TGG_PROTECT);
581
}
582
583
static int iwl_mvm_mac_ctxt_send_cmd(struct iwl_mvm *mvm,
584
struct iwl_mac_ctx_cmd *cmd)
585
{
586
int ret = iwl_mvm_send_cmd_pdu(mvm, MAC_CONTEXT_CMD, 0,
587
sizeof(*cmd), cmd);
588
if (ret)
589
IWL_ERR(mvm, "Failed to send MAC_CONTEXT_CMD (action:%d): %d\n",
590
le32_to_cpu(cmd->action), ret);
591
return ret;
592
}
593
594
void iwl_mvm_set_fw_dtim_tbtt(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
595
struct ieee80211_bss_conf *link_conf,
596
__le64 *dtim_tsf, __le32 *dtim_time,
597
__le32 *assoc_beacon_arrive_time)
598
{
599
u32 dtim_offs;
600
601
/*
602
* The DTIM count counts down, so when it is N that means N
603
* more beacon intervals happen until the DTIM TBTT. Therefore
604
* add this to the current time. If that ends up being in the
605
* future, the firmware will handle it.
606
*
607
* Also note that the system_timestamp (which we get here as
608
* "sync_device_ts") and TSF timestamp aren't at exactly the
609
* same offset in the frame -- the TSF is at the first symbol
610
* of the TSF, the system timestamp is at signal acquisition
611
* time. This means there's an offset between them of at most
612
* a few hundred microseconds (24 * 8 bits + PLCP time gives
613
* 384us in the longest case), this is currently not relevant
614
* as the firmware wakes up around 2ms before the TBTT.
615
*/
616
dtim_offs = link_conf->sync_dtim_count *
617
link_conf->beacon_int;
618
/* convert TU to usecs */
619
dtim_offs *= 1024;
620
621
*dtim_tsf =
622
cpu_to_le64(link_conf->sync_tsf + dtim_offs);
623
*dtim_time =
624
cpu_to_le32(link_conf->sync_device_ts + dtim_offs);
625
*assoc_beacon_arrive_time =
626
cpu_to_le32(link_conf->sync_device_ts);
627
628
IWL_DEBUG_INFO(mvm, "DTIM TBTT is 0x%llx/0x%x, offset %d\n",
629
le64_to_cpu(*dtim_tsf),
630
le32_to_cpu(*dtim_time),
631
dtim_offs);
632
}
633
634
__le32 iwl_mvm_mac_ctxt_cmd_p2p_sta_get_oppps_ctwin(struct iwl_mvm *mvm,
635
struct ieee80211_vif *vif)
636
{
637
struct ieee80211_p2p_noa_attr *noa =
638
&vif->bss_conf.p2p_noa_attr;
639
640
return cpu_to_le32(noa->oppps_ctwindow &
641
IEEE80211_P2P_OPPPS_CTWINDOW_MASK);
642
}
643
644
u32 iwl_mvm_mac_ctxt_cmd_sta_get_twt_policy(struct iwl_mvm *mvm,
645
struct ieee80211_vif *vif)
646
{
647
u32 twt_policy = 0;
648
649
if (vif->bss_conf.twt_requester && IWL_MVM_USE_TWT)
650
twt_policy |= TWT_SUPPORTED;
651
if (vif->bss_conf.twt_protected)
652
twt_policy |= PROTECTED_TWT_SUPPORTED;
653
if (vif->bss_conf.twt_broadcast)
654
twt_policy |= BROADCAST_TWT_SUPPORTED;
655
656
return twt_policy;
657
}
658
659
static int iwl_mvm_mac_ctxt_cmd_sta(struct iwl_mvm *mvm,
660
struct ieee80211_vif *vif,
661
u32 action, bool force_assoc_off,
662
const u8 *bssid_override)
663
{
664
struct iwl_mac_ctx_cmd cmd = {};
665
struct iwl_mac_data_sta *ctxt_sta;
666
667
WARN_ON(vif->type != NL80211_IFTYPE_STATION);
668
669
/* Fill the common data for all mac context types */
670
iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, bssid_override, action);
671
672
/*
673
* We always want to hear MCAST frames, if we're not authorized yet,
674
* we'll drop them.
675
*/
676
cmd.filter_flags |= cpu_to_le32(MAC_FILTER_ACCEPT_GRP);
677
678
if (vif->p2p) {
679
cmd.p2p_sta.ctwin =
680
iwl_mvm_mac_ctxt_cmd_p2p_sta_get_oppps_ctwin(mvm, vif);
681
682
ctxt_sta = &cmd.p2p_sta.sta;
683
} else {
684
ctxt_sta = &cmd.sta;
685
}
686
687
/* We need the dtim_period to set the MAC as associated */
688
if (vif->cfg.assoc && vif->bss_conf.dtim_period &&
689
!force_assoc_off) {
690
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
691
692
iwl_mvm_set_fw_dtim_tbtt(mvm, vif, &vif->bss_conf,
693
&ctxt_sta->dtim_tsf,
694
&ctxt_sta->dtim_time,
695
&ctxt_sta->assoc_beacon_arrive_time);
696
697
ctxt_sta->is_assoc = cpu_to_le32(1);
698
699
if (!mvmvif->authorized &&
700
fw_has_capa(&mvm->fw->ucode_capa,
701
IWL_UCODE_TLV_CAPA_COEX_HIGH_PRIO))
702
ctxt_sta->data_policy |=
703
cpu_to_le32(COEX_HIGH_PRIORITY_ENABLE);
704
} else {
705
ctxt_sta->is_assoc = cpu_to_le32(0);
706
707
/* Allow beacons to pass through as long as we are not
708
* associated, or we do not have dtim period information.
709
*/
710
cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_BEACON);
711
}
712
713
ctxt_sta->bi = cpu_to_le32(vif->bss_conf.beacon_int);
714
ctxt_sta->dtim_interval = cpu_to_le32(vif->bss_conf.beacon_int *
715
vif->bss_conf.dtim_period);
716
717
ctxt_sta->listen_interval = cpu_to_le32(mvm->hw->conf.listen_interval);
718
ctxt_sta->assoc_id = cpu_to_le32(vif->cfg.aid);
719
720
if (vif->probe_req_reg && vif->cfg.assoc && vif->p2p)
721
cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST);
722
723
if (vif->bss_conf.he_support && !iwlwifi_mod_params.disable_11ax) {
724
cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_11AX);
725
ctxt_sta->data_policy |=
726
cpu_to_le32(iwl_mvm_mac_ctxt_cmd_sta_get_twt_policy(mvm, vif));
727
}
728
729
730
return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
731
}
732
733
static int iwl_mvm_mac_ctxt_cmd_listener(struct iwl_mvm *mvm,
734
struct ieee80211_vif *vif,
735
u32 action)
736
{
737
struct iwl_mac_ctx_cmd cmd = {};
738
u32 tfd_queue_msk = 0;
739
int ret;
740
741
WARN_ON(vif->type != NL80211_IFTYPE_MONITOR);
742
743
iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
744
745
cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_PROMISC |
746
MAC_FILTER_IN_CONTROL_AND_MGMT |
747
MAC_FILTER_IN_BEACON |
748
MAC_FILTER_IN_PROBE_REQUEST |
749
MAC_FILTER_IN_CRC32 |
750
MAC_FILTER_ACCEPT_GRP);
751
ieee80211_hw_set(mvm->hw, RX_INCLUDES_FCS);
752
753
/*
754
* the queue mask is only relevant for old TX API, and
755
* mvm->snif_queue isn't set here (it's still set to
756
* IWL_MVM_INVALID_QUEUE so the BIT() of it is UB)
757
*/
758
if (!iwl_mvm_has_new_tx_api(mvm))
759
tfd_queue_msk = BIT(mvm->snif_queue);
760
761
/* Allocate sniffer station */
762
ret = iwl_mvm_allocate_int_sta(mvm, &mvm->snif_sta, tfd_queue_msk,
763
vif->type, IWL_STA_GENERAL_PURPOSE);
764
if (ret)
765
return ret;
766
767
return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
768
}
769
770
static int iwl_mvm_mac_ctxt_cmd_ibss(struct iwl_mvm *mvm,
771
struct ieee80211_vif *vif,
772
u32 action)
773
{
774
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
775
struct iwl_mac_ctx_cmd cmd = {};
776
777
WARN_ON(vif->type != NL80211_IFTYPE_ADHOC);
778
779
iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
780
781
cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_BEACON |
782
MAC_FILTER_IN_PROBE_REQUEST |
783
MAC_FILTER_ACCEPT_GRP);
784
785
/* cmd.ibss.beacon_time/cmd.ibss.beacon_tsf are curently ignored */
786
cmd.ibss.bi = cpu_to_le32(vif->bss_conf.beacon_int);
787
788
/* TODO: Assumes that the beacon id == mac context id */
789
cmd.ibss.beacon_template = cpu_to_le32(mvmvif->id);
790
791
return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
792
}
793
794
struct iwl_mvm_go_iterator_data {
795
bool go_active;
796
};
797
798
static void iwl_mvm_go_iterator(void *_data, u8 *mac, struct ieee80211_vif *vif)
799
{
800
struct iwl_mvm_go_iterator_data *data = _data;
801
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
802
803
if (vif->type == NL80211_IFTYPE_AP && vif->p2p &&
804
mvmvif->ap_ibss_active)
805
data->go_active = true;
806
}
807
808
__le32 iwl_mac_ctxt_p2p_dev_has_extended_disc(struct iwl_mvm *mvm,
809
struct ieee80211_vif *vif)
810
{
811
struct iwl_mvm_go_iterator_data data = {};
812
813
/*
814
* This flag should be set to true when the P2P Device is
815
* discoverable and there is at least another active P2P GO. Settings
816
* this flag will allow the P2P Device to be discoverable on other
817
* channels in addition to its listen channel.
818
* Note that this flag should not be set in other cases as it opens the
819
* Rx filters on all MAC and increases the number of interrupts.
820
*/
821
ieee80211_iterate_active_interfaces_atomic(
822
mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
823
iwl_mvm_go_iterator, &data);
824
825
return cpu_to_le32(data.go_active ? 1 : 0);
826
}
827
828
static int iwl_mvm_mac_ctxt_cmd_p2p_device(struct iwl_mvm *mvm,
829
struct ieee80211_vif *vif,
830
u32 action)
831
{
832
struct iwl_mac_ctx_cmd cmd = {};
833
834
WARN_ON(vif->type != NL80211_IFTYPE_P2P_DEVICE);
835
836
iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
837
838
cmd.p2p_dev.is_disc_extended =
839
iwl_mac_ctxt_p2p_dev_has_extended_disc(mvm, vif);
840
841
/* Override the filter flags to accept only probe requests */
842
cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST);
843
844
return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
845
}
846
847
void iwl_mvm_mac_ctxt_set_tim(struct iwl_mvm *mvm,
848
__le32 *tim_index, __le32 *tim_size,
849
u8 *beacon, u32 frame_size)
850
{
851
u32 tim_idx;
852
struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
853
854
/* The index is relative to frame start but we start looking at the
855
* variable-length part of the beacon. */
856
tim_idx = mgmt->u.beacon.variable - beacon;
857
858
/* Parse variable-length elements of beacon to find WLAN_EID_TIM */
859
while ((tim_idx < (frame_size - 2)) &&
860
(beacon[tim_idx] != WLAN_EID_TIM))
861
tim_idx += beacon[tim_idx+1] + 2;
862
863
/* If TIM field was found, set variables */
864
if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
865
*tim_index = cpu_to_le32(tim_idx);
866
*tim_size = cpu_to_le32((u32)beacon[tim_idx + 1]);
867
} else {
868
IWL_WARN(mvm, "Unable to find TIM Element in beacon\n");
869
}
870
}
871
872
u8 iwl_mvm_mac_ctxt_get_lowest_rate(struct iwl_mvm *mvm,
873
struct ieee80211_tx_info *info,
874
struct ieee80211_vif *vif)
875
{
876
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
877
struct ieee80211_supported_band *sband;
878
unsigned long basic = vif->bss_conf.basic_rates;
879
u16 lowest_cck = IWL_RATE_COUNT, lowest_ofdm = IWL_RATE_COUNT;
880
u32 link_id = u32_get_bits(info->control.flags,
881
IEEE80211_TX_CTRL_MLO_LINK);
882
u8 band = info->band;
883
u8 rate;
884
u32 i;
885
886
if (link_id == IEEE80211_LINK_UNSPECIFIED && ieee80211_vif_is_mld(vif)) {
887
for (i = 0; i < ARRAY_SIZE(mvmvif->link); i++) {
888
if (!mvmvif->link[i])
889
continue;
890
/* shouldn't do this when >1 link is active */
891
WARN_ON_ONCE(link_id != IEEE80211_LINK_UNSPECIFIED);
892
link_id = i;
893
}
894
}
895
896
if (link_id < IEEE80211_LINK_UNSPECIFIED) {
897
struct ieee80211_bss_conf *link_conf;
898
899
rcu_read_lock();
900
link_conf = rcu_dereference(vif->link_conf[link_id]);
901
if (link_conf) {
902
basic = link_conf->basic_rates;
903
if (link_conf->chanreq.oper.chan)
904
band = link_conf->chanreq.oper.chan->band;
905
}
906
rcu_read_unlock();
907
}
908
909
sband = mvm->hw->wiphy->bands[band];
910
for_each_set_bit(i, &basic, BITS_PER_LONG) {
911
u16 hw = sband->bitrates[i].hw_value;
912
913
if (hw >= IWL_FIRST_OFDM_RATE) {
914
if (lowest_ofdm > hw)
915
lowest_ofdm = hw;
916
} else if (lowest_cck > hw) {
917
lowest_cck = hw;
918
}
919
}
920
921
if (band == NL80211_BAND_2GHZ && !vif->p2p &&
922
vif->type != NL80211_IFTYPE_P2P_DEVICE &&
923
!(info->flags & IEEE80211_TX_CTL_NO_CCK_RATE)) {
924
if (lowest_cck != IWL_RATE_COUNT)
925
rate = lowest_cck;
926
else if (lowest_ofdm != IWL_RATE_COUNT)
927
rate = lowest_ofdm;
928
else
929
rate = IWL_RATE_1M_INDEX;
930
} else if (lowest_ofdm != IWL_RATE_COUNT) {
931
rate = lowest_ofdm;
932
} else {
933
rate = IWL_RATE_6M_INDEX;
934
}
935
936
return rate;
937
}
938
939
u16 iwl_mvm_mac_ctxt_get_beacon_flags(const struct iwl_fw *fw, u8 rate_idx)
940
{
941
bool is_new_rate = iwl_fw_lookup_cmd_ver(fw, BEACON_TEMPLATE_CMD, 0) > 10;
942
u16 flags, cck_flag;
943
944
if (is_new_rate) {
945
flags = iwl_mvm_mac80211_idx_to_hwrate(fw, rate_idx);
946
cck_flag = IWL_MAC_BEACON_CCK;
947
} else {
948
cck_flag = IWL_MAC_BEACON_CCK_V1;
949
flags = iwl_fw_rate_idx_to_plcp(rate_idx);
950
}
951
952
if (rate_idx <= IWL_LAST_CCK_RATE)
953
flags |= cck_flag;
954
955
return flags;
956
}
957
958
u8 iwl_mvm_mac_ctxt_get_beacon_rate(struct iwl_mvm *mvm,
959
struct ieee80211_tx_info *info,
960
struct ieee80211_vif *vif)
961
{
962
struct ieee80211_supported_band *sband =
963
mvm->hw->wiphy->bands[info->band];
964
u32 legacy = vif->bss_conf.beacon_tx_rate.control[info->band].legacy;
965
966
/* if beacon rate was configured try using it */
967
if (hweight32(legacy) == 1) {
968
u32 rate = ffs(legacy) - 1;
969
970
return sband->bitrates[rate].hw_value;
971
}
972
973
return iwl_mvm_mac_ctxt_get_lowest_rate(mvm, info, vif);
974
}
975
976
static void iwl_mvm_mac_ctxt_set_tx(struct iwl_mvm *mvm,
977
struct ieee80211_vif *vif,
978
struct sk_buff *beacon,
979
struct iwl_tx_cmd_v6_params *tx_params)
980
{
981
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
982
struct ieee80211_tx_info *info;
983
u8 rate;
984
u32 tx_flags;
985
986
info = IEEE80211_SKB_CB(beacon);
987
988
/* Set up TX command fields */
989
tx_params->len = cpu_to_le16((u16)beacon->len);
990
tx_params->sta_id = mvmvif->deflink.bcast_sta.sta_id;
991
tx_params->life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
992
tx_flags = TX_CMD_FLG_SEQ_CTL | TX_CMD_FLG_TSF;
993
tx_flags |=
994
iwl_mvm_bt_coex_tx_prio(mvm, (void *)beacon->data, info, 0) <<
995
TX_CMD_FLG_BT_PRIO_POS;
996
tx_params->tx_flags = cpu_to_le32(tx_flags);
997
998
if (!fw_has_capa(&mvm->fw->ucode_capa,
999
IWL_UCODE_TLV_CAPA_BEACON_ANT_SELECTION)) {
1000
iwl_mvm_toggle_tx_ant(mvm, &mvm->mgmt_last_antenna_idx);
1001
1002
tx_params->rate_n_flags =
1003
cpu_to_le32(BIT(mvm->mgmt_last_antenna_idx) <<
1004
RATE_MCS_ANT_POS);
1005
}
1006
1007
rate = iwl_mvm_mac_ctxt_get_beacon_rate(mvm, info, vif);
1008
1009
tx_params->rate_n_flags |=
1010
cpu_to_le32(iwl_mvm_mac80211_idx_to_hwrate(mvm->fw, rate));
1011
if (rate == IWL_FIRST_CCK_RATE)
1012
tx_params->rate_n_flags |= cpu_to_le32(RATE_MCS_CCK_MSK_V1);
1013
1014
}
1015
1016
int iwl_mvm_mac_ctxt_send_beacon_cmd(struct iwl_mvm *mvm,
1017
struct sk_buff *beacon,
1018
void *data, int len)
1019
{
1020
struct iwl_host_cmd cmd = {
1021
.id = BEACON_TEMPLATE_CMD,
1022
.flags = CMD_ASYNC,
1023
};
1024
1025
cmd.len[0] = len;
1026
cmd.data[0] = data;
1027
cmd.dataflags[0] = 0;
1028
cmd.len[1] = beacon->len;
1029
cmd.data[1] = beacon->data;
1030
cmd.dataflags[1] = IWL_HCMD_DFL_DUP;
1031
1032
return iwl_mvm_send_cmd(mvm, &cmd);
1033
}
1034
1035
static int iwl_mvm_mac_ctxt_send_beacon_v6(struct iwl_mvm *mvm,
1036
struct ieee80211_vif *vif,
1037
struct sk_buff *beacon)
1038
{
1039
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1040
struct iwl_mac_beacon_cmd_v6 beacon_cmd = {};
1041
1042
iwl_mvm_mac_ctxt_set_tx(mvm, vif, beacon, &beacon_cmd.tx);
1043
1044
beacon_cmd.template_id = cpu_to_le32((u32)mvmvif->id);
1045
1046
if (vif->type == NL80211_IFTYPE_AP)
1047
iwl_mvm_mac_ctxt_set_tim(mvm, &beacon_cmd.tim_idx,
1048
&beacon_cmd.tim_size,
1049
beacon->data, beacon->len);
1050
1051
return iwl_mvm_mac_ctxt_send_beacon_cmd(mvm, beacon, &beacon_cmd,
1052
sizeof(beacon_cmd));
1053
}
1054
1055
static int iwl_mvm_mac_ctxt_send_beacon_v7(struct iwl_mvm *mvm,
1056
struct ieee80211_vif *vif,
1057
struct sk_buff *beacon)
1058
{
1059
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1060
struct iwl_mac_beacon_cmd_v7 beacon_cmd = {};
1061
1062
iwl_mvm_mac_ctxt_set_tx(mvm, vif, beacon, &beacon_cmd.tx);
1063
1064
beacon_cmd.template_id = cpu_to_le32((u32)mvmvif->id);
1065
1066
if (vif->type == NL80211_IFTYPE_AP)
1067
iwl_mvm_mac_ctxt_set_tim(mvm, &beacon_cmd.tim_idx,
1068
&beacon_cmd.tim_size,
1069
beacon->data, beacon->len);
1070
1071
beacon_cmd.csa_offset =
1072
cpu_to_le32(iwl_find_ie_offset(beacon->data,
1073
WLAN_EID_CHANNEL_SWITCH,
1074
beacon->len));
1075
beacon_cmd.ecsa_offset =
1076
cpu_to_le32(iwl_find_ie_offset(beacon->data,
1077
WLAN_EID_EXT_CHANSWITCH_ANN,
1078
beacon->len));
1079
1080
return iwl_mvm_mac_ctxt_send_beacon_cmd(mvm, beacon, &beacon_cmd,
1081
sizeof(beacon_cmd));
1082
}
1083
1084
bool iwl_mvm_enable_fils(struct iwl_mvm *mvm,
1085
struct ieee80211_vif *vif,
1086
struct ieee80211_chanctx_conf *ctx)
1087
{
1088
if (vif->type != NL80211_IFTYPE_AP || IWL_MVM_DISABLE_AP_FILS)
1089
return false;
1090
1091
if (cfg80211_channel_is_psc(ctx->def.chan))
1092
return true;
1093
1094
return (ctx->def.chan->band == NL80211_BAND_6GHZ &&
1095
ctx->def.width >= NL80211_CHAN_WIDTH_80);
1096
}
1097
1098
static int iwl_mvm_mac_ctxt_send_beacon_v9(struct iwl_mvm *mvm,
1099
struct ieee80211_vif *vif,
1100
struct sk_buff *beacon,
1101
struct ieee80211_bss_conf *link_conf)
1102
{
1103
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1104
struct ieee80211_tx_info *info = IEEE80211_SKB_CB(beacon);
1105
struct iwl_mac_beacon_cmd beacon_cmd = {};
1106
u8 rate = iwl_mvm_mac_ctxt_get_beacon_rate(mvm, info, vif);
1107
u16 flags;
1108
struct ieee80211_chanctx_conf *ctx;
1109
int channel;
1110
flags = iwl_mvm_mac_ctxt_get_beacon_flags(mvm->fw, rate);
1111
1112
/* Enable FILS on PSC channels only */
1113
rcu_read_lock();
1114
ctx = rcu_dereference(link_conf->chanctx_conf);
1115
channel = ieee80211_frequency_to_channel(ctx->def.chan->center_freq);
1116
WARN_ON(channel == 0);
1117
if (iwl_mvm_enable_fils(mvm, vif, ctx)) {
1118
flags |= iwl_fw_lookup_cmd_ver(mvm->fw, BEACON_TEMPLATE_CMD,
1119
0) > 10 ?
1120
IWL_MAC_BEACON_FILS :
1121
IWL_MAC_BEACON_FILS_V1;
1122
beacon_cmd.short_ssid =
1123
cpu_to_le32(~crc32_le(~0, vif->cfg.ssid,
1124
vif->cfg.ssid_len));
1125
}
1126
rcu_read_unlock();
1127
1128
beacon_cmd.flags = cpu_to_le16(flags);
1129
beacon_cmd.byte_cnt = cpu_to_le16((u16)beacon->len);
1130
1131
if (WARN_ON(!mvmvif->link[link_conf->link_id]))
1132
return -EINVAL;
1133
1134
if (iwl_fw_lookup_cmd_ver(mvm->fw, BEACON_TEMPLATE_CMD, 0) > 12)
1135
beacon_cmd.link_id =
1136
cpu_to_le32(mvmvif->link[link_conf->link_id]->fw_link_id);
1137
else
1138
beacon_cmd.link_id = cpu_to_le32((u32)mvmvif->id);
1139
1140
if (vif->type == NL80211_IFTYPE_AP)
1141
iwl_mvm_mac_ctxt_set_tim(mvm, &beacon_cmd.tim_idx,
1142
&beacon_cmd.tim_size,
1143
beacon->data, beacon->len);
1144
1145
beacon_cmd.csa_offset =
1146
cpu_to_le32(iwl_find_ie_offset(beacon->data,
1147
WLAN_EID_CHANNEL_SWITCH,
1148
beacon->len));
1149
beacon_cmd.ecsa_offset =
1150
cpu_to_le32(iwl_find_ie_offset(beacon->data,
1151
WLAN_EID_EXT_CHANSWITCH_ANN,
1152
beacon->len));
1153
1154
if (vif->type == NL80211_IFTYPE_AP &&
1155
iwl_fw_lookup_cmd_ver(mvm->fw, BEACON_TEMPLATE_CMD, 0) >= 14)
1156
beacon_cmd.btwt_offset =
1157
cpu_to_le32(iwl_find_ie_offset(beacon->data,
1158
WLAN_EID_S1G_TWT,
1159
beacon->len));
1160
1161
return iwl_mvm_mac_ctxt_send_beacon_cmd(mvm, beacon, &beacon_cmd,
1162
sizeof(beacon_cmd));
1163
}
1164
1165
static int iwl_mvm_mac_ctxt_send_beacon(struct iwl_mvm *mvm,
1166
struct ieee80211_vif *vif,
1167
struct sk_buff *beacon,
1168
struct ieee80211_bss_conf *link_conf)
1169
{
1170
if (WARN_ON(!beacon))
1171
return -EINVAL;
1172
1173
if (IWL_MVM_NON_TRANSMITTING_AP)
1174
return 0;
1175
1176
if (!fw_has_capa(&mvm->fw->ucode_capa,
1177
IWL_UCODE_TLV_CAPA_CSA_AND_TBTT_OFFLOAD))
1178
return iwl_mvm_mac_ctxt_send_beacon_v6(mvm, vif, beacon);
1179
1180
if (fw_has_api(&mvm->fw->ucode_capa,
1181
IWL_UCODE_TLV_API_NEW_BEACON_TEMPLATE))
1182
return iwl_mvm_mac_ctxt_send_beacon_v9(mvm, vif, beacon,
1183
link_conf);
1184
1185
return iwl_mvm_mac_ctxt_send_beacon_v7(mvm, vif, beacon);
1186
}
1187
1188
/* The beacon template for the AP/GO/IBSS has changed and needs update */
1189
int iwl_mvm_mac_ctxt_beacon_changed(struct iwl_mvm *mvm,
1190
struct ieee80211_vif *vif,
1191
struct ieee80211_bss_conf *link_conf)
1192
{
1193
struct sk_buff *beacon;
1194
int ret;
1195
1196
WARN_ON(vif->type != NL80211_IFTYPE_AP &&
1197
vif->type != NL80211_IFTYPE_ADHOC);
1198
1199
beacon = ieee80211_beacon_get_template(mvm->hw, vif, NULL,
1200
link_conf->link_id);
1201
if (!beacon)
1202
return -ENOMEM;
1203
1204
#ifdef CONFIG_IWLWIFI_DEBUGFS
1205
if (mvm->beacon_inject_active) {
1206
dev_kfree_skb(beacon);
1207
return -EBUSY;
1208
}
1209
#endif
1210
1211
ret = iwl_mvm_mac_ctxt_send_beacon(mvm, vif, beacon, link_conf);
1212
dev_kfree_skb(beacon);
1213
return ret;
1214
}
1215
1216
struct iwl_mvm_mac_ap_iterator_data {
1217
struct iwl_mvm *mvm;
1218
struct ieee80211_vif *vif;
1219
u32 beacon_device_ts;
1220
u16 beacon_int;
1221
};
1222
1223
/* Find the beacon_device_ts and beacon_int for a managed interface */
1224
static void iwl_mvm_mac_ap_iterator(void *_data, u8 *mac,
1225
struct ieee80211_vif *vif)
1226
{
1227
struct iwl_mvm_mac_ap_iterator_data *data = _data;
1228
1229
if (vif->type != NL80211_IFTYPE_STATION || !vif->cfg.assoc)
1230
return;
1231
1232
/* Station client has higher priority over P2P client*/
1233
if (vif->p2p && data->beacon_device_ts)
1234
return;
1235
1236
data->beacon_device_ts = vif->bss_conf.sync_device_ts;
1237
data->beacon_int = vif->bss_conf.beacon_int;
1238
}
1239
1240
/*
1241
* Fill the filter flags for mac context of type AP or P2P GO.
1242
*/
1243
void iwl_mvm_mac_ctxt_cmd_ap_set_filter_flags(struct iwl_mvm *mvm,
1244
struct iwl_mvm_vif *mvmvif,
1245
__le32 *filter_flags,
1246
int accept_probe_req_flag,
1247
int accept_beacon_flag)
1248
{
1249
/*
1250
* in AP mode, pass probe requests and beacons from other APs
1251
* (needed for ht protection); when there're no any associated
1252
* station don't ask FW to pass beacons to prevent unnecessary
1253
* wake-ups.
1254
*/
1255
*filter_flags |= cpu_to_le32(accept_probe_req_flag);
1256
if (mvmvif->ap_assoc_sta_count || !mvm->drop_bcn_ap_mode) {
1257
*filter_flags |= cpu_to_le32(accept_beacon_flag);
1258
IWL_DEBUG_HC(mvm, "Asking FW to pass beacons\n");
1259
} else {
1260
IWL_DEBUG_HC(mvm, "No need to receive beacons\n");
1261
}
1262
}
1263
1264
/*
1265
* Fill the specific data for mac context of type AP of P2P GO
1266
*/
1267
static void iwl_mvm_mac_ctxt_cmd_fill_ap(struct iwl_mvm *mvm,
1268
struct ieee80211_vif *vif,
1269
struct iwl_mac_ctx_cmd *cmd,
1270
struct iwl_mac_data_ap *ctxt_ap,
1271
bool add)
1272
{
1273
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1274
struct iwl_mvm_mac_ap_iterator_data data = {
1275
.mvm = mvm,
1276
.vif = vif,
1277
.beacon_device_ts = 0
1278
};
1279
1280
/* in AP mode, the MCAST FIFO takes the EDCA params from VO */
1281
cmd->ac[IWL_MVM_TX_FIFO_VO].fifos_mask |= BIT(IWL_MVM_TX_FIFO_MCAST);
1282
1283
iwl_mvm_mac_ctxt_cmd_ap_set_filter_flags(mvm, mvmvif,
1284
&cmd->filter_flags,
1285
MAC_FILTER_IN_PROBE_REQUEST,
1286
MAC_FILTER_IN_BEACON);
1287
1288
ctxt_ap->bi = cpu_to_le32(vif->bss_conf.beacon_int);
1289
ctxt_ap->dtim_interval = cpu_to_le32(vif->bss_conf.beacon_int *
1290
vif->bss_conf.dtim_period);
1291
1292
if (!fw_has_api(&mvm->fw->ucode_capa,
1293
IWL_UCODE_TLV_API_STA_TYPE))
1294
ctxt_ap->mcast_qid = cpu_to_le32(mvmvif->deflink.cab_queue);
1295
1296
/*
1297
* Only set the beacon time when the MAC is being added, when we
1298
* just modify the MAC then we should keep the time -- the firmware
1299
* can otherwise have a "jumping" TBTT.
1300
*/
1301
if (add) {
1302
/*
1303
* If there is a station/P2P client interface which is
1304
* associated, set the AP's TBTT far enough from the station's
1305
* TBTT. Otherwise, set it to the current system time
1306
*/
1307
ieee80211_iterate_active_interfaces_atomic(
1308
mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1309
iwl_mvm_mac_ap_iterator, &data);
1310
1311
if (data.beacon_device_ts) {
1312
u32 rand = get_random_u32_inclusive(36, 63);
1313
mvmvif->ap_beacon_time = data.beacon_device_ts +
1314
ieee80211_tu_to_usec(data.beacon_int * rand /
1315
100);
1316
} else {
1317
mvmvif->ap_beacon_time = iwl_mvm_get_systime(mvm);
1318
}
1319
}
1320
1321
ctxt_ap->beacon_time = cpu_to_le32(mvmvif->ap_beacon_time);
1322
ctxt_ap->beacon_tsf = 0; /* unused */
1323
1324
/* TODO: Assume that the beacon id == mac context id */
1325
ctxt_ap->beacon_template = cpu_to_le32(mvmvif->id);
1326
}
1327
1328
static int iwl_mvm_mac_ctxt_cmd_ap(struct iwl_mvm *mvm,
1329
struct ieee80211_vif *vif,
1330
u32 action)
1331
{
1332
struct iwl_mac_ctx_cmd cmd = {};
1333
1334
WARN_ON(vif->type != NL80211_IFTYPE_AP || vif->p2p);
1335
1336
/* Fill the common data for all mac context types */
1337
iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
1338
1339
/* Fill the data specific for ap mode */
1340
iwl_mvm_mac_ctxt_cmd_fill_ap(mvm, vif, &cmd, &cmd.ap,
1341
action == FW_CTXT_ACTION_ADD);
1342
1343
return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
1344
}
1345
1346
static int iwl_mvm_mac_ctxt_cmd_go(struct iwl_mvm *mvm,
1347
struct ieee80211_vif *vif,
1348
u32 action)
1349
{
1350
struct iwl_mac_ctx_cmd cmd = {};
1351
struct ieee80211_p2p_noa_attr *noa = &vif->bss_conf.p2p_noa_attr;
1352
1353
WARN_ON(vif->type != NL80211_IFTYPE_AP || !vif->p2p);
1354
1355
/* Fill the common data for all mac context types */
1356
iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
1357
1358
/* Fill the data specific for GO mode */
1359
iwl_mvm_mac_ctxt_cmd_fill_ap(mvm, vif, &cmd, &cmd.go.ap,
1360
action == FW_CTXT_ACTION_ADD);
1361
1362
cmd.go.ctwin = cpu_to_le32(noa->oppps_ctwindow &
1363
IEEE80211_P2P_OPPPS_CTWINDOW_MASK);
1364
cmd.go.opp_ps_enabled =
1365
cpu_to_le32(!!(noa->oppps_ctwindow &
1366
IEEE80211_P2P_OPPPS_ENABLE_BIT));
1367
1368
return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
1369
}
1370
1371
static int iwl_mvm_mac_ctx_send(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1372
u32 action, bool force_assoc_off,
1373
const u8 *bssid_override)
1374
{
1375
switch (vif->type) {
1376
case NL80211_IFTYPE_STATION:
1377
return iwl_mvm_mac_ctxt_cmd_sta(mvm, vif, action,
1378
force_assoc_off,
1379
bssid_override);
1380
case NL80211_IFTYPE_AP:
1381
if (!vif->p2p)
1382
return iwl_mvm_mac_ctxt_cmd_ap(mvm, vif, action);
1383
else
1384
return iwl_mvm_mac_ctxt_cmd_go(mvm, vif, action);
1385
case NL80211_IFTYPE_MONITOR:
1386
return iwl_mvm_mac_ctxt_cmd_listener(mvm, vif, action);
1387
case NL80211_IFTYPE_P2P_DEVICE:
1388
return iwl_mvm_mac_ctxt_cmd_p2p_device(mvm, vif, action);
1389
case NL80211_IFTYPE_ADHOC:
1390
return iwl_mvm_mac_ctxt_cmd_ibss(mvm, vif, action);
1391
default:
1392
break;
1393
}
1394
1395
return -EOPNOTSUPP;
1396
}
1397
1398
int iwl_mvm_mac_ctxt_add(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1399
{
1400
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1401
int ret;
1402
1403
if (WARN_ONCE(mvmvif->uploaded, "Adding active MAC %pM/%d\n",
1404
vif->addr, ieee80211_vif_type_p2p(vif)))
1405
return -EIO;
1406
1407
ret = iwl_mvm_mac_ctx_send(mvm, vif, FW_CTXT_ACTION_ADD,
1408
true, NULL);
1409
if (ret)
1410
return ret;
1411
1412
/* will only do anything at resume from D3 time */
1413
iwl_mvm_set_last_nonqos_seq(mvm, vif);
1414
1415
mvmvif->uploaded = true;
1416
return 0;
1417
}
1418
1419
int iwl_mvm_mac_ctxt_changed(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1420
bool force_assoc_off, const u8 *bssid_override)
1421
{
1422
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1423
1424
if (WARN_ONCE(!mvmvif->uploaded, "Changing inactive MAC %pM/%d\n",
1425
vif->addr, ieee80211_vif_type_p2p(vif)))
1426
return -EIO;
1427
1428
return iwl_mvm_mac_ctx_send(mvm, vif, FW_CTXT_ACTION_MODIFY,
1429
force_assoc_off, bssid_override);
1430
}
1431
1432
int iwl_mvm_mac_ctxt_remove(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1433
{
1434
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1435
struct iwl_mac_ctx_cmd cmd;
1436
int ret;
1437
1438
if (WARN_ONCE(!mvmvif->uploaded, "Removing inactive MAC %pM/%d\n",
1439
vif->addr, ieee80211_vif_type_p2p(vif)))
1440
return -EIO;
1441
1442
memset(&cmd, 0, sizeof(cmd));
1443
1444
cmd.id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
1445
mvmvif->color));
1446
cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
1447
1448
ret = iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
1449
if (ret)
1450
return ret;
1451
1452
mvmvif->uploaded = false;
1453
1454
if (vif->type == NL80211_IFTYPE_MONITOR) {
1455
__clear_bit(IEEE80211_HW_RX_INCLUDES_FCS, mvm->hw->flags);
1456
iwl_mvm_dealloc_snif_sta(mvm);
1457
}
1458
1459
return 0;
1460
}
1461
1462
static void iwl_mvm_csa_count_down(struct iwl_mvm *mvm,
1463
struct ieee80211_vif *csa_vif, u32 gp2,
1464
bool tx_success)
1465
{
1466
struct iwl_mvm_vif *mvmvif =
1467
iwl_mvm_vif_from_mac80211(csa_vif);
1468
1469
/* Don't start to countdown from a failed beacon */
1470
if (!tx_success && !mvmvif->csa_countdown)
1471
return;
1472
1473
mvmvif->csa_countdown = true;
1474
1475
if (!ieee80211_beacon_cntdwn_is_complete(csa_vif, 0)) {
1476
int c = ieee80211_beacon_update_cntdwn(csa_vif, 0);
1477
1478
iwl_mvm_mac_ctxt_beacon_changed(mvm, csa_vif,
1479
&csa_vif->bss_conf);
1480
if (csa_vif->p2p &&
1481
!iwl_mvm_te_scheduled(&mvmvif->time_event_data) && gp2 &&
1482
tx_success) {
1483
u32 rel_time = (c + 1) *
1484
csa_vif->bss_conf.beacon_int -
1485
IWL_MVM_CHANNEL_SWITCH_TIME_GO;
1486
u32 apply_time = gp2 + rel_time * 1024;
1487
1488
iwl_mvm_schedule_csa_period(mvm, csa_vif,
1489
IWL_MVM_CHANNEL_SWITCH_TIME_GO -
1490
IWL_MVM_CHANNEL_SWITCH_MARGIN,
1491
apply_time);
1492
}
1493
} else if (!iwl_mvm_te_scheduled(&mvmvif->time_event_data)) {
1494
/* we don't have CSA NoA scheduled yet, switch now */
1495
ieee80211_csa_finish(csa_vif, 0);
1496
RCU_INIT_POINTER(mvm->csa_vif, NULL);
1497
}
1498
}
1499
1500
void iwl_mvm_rx_beacon_notif(struct iwl_mvm *mvm,
1501
struct iwl_rx_cmd_buffer *rxb)
1502
{
1503
struct iwl_rx_packet *pkt = rxb_addr(rxb);
1504
unsigned int pkt_len = iwl_rx_packet_payload_len(pkt);
1505
struct iwl_extended_beacon_notif *beacon = (void *)pkt->data;
1506
struct iwl_extended_beacon_notif_v5 *beacon_v5 = (void *)pkt->data;
1507
struct ieee80211_vif *csa_vif;
1508
struct ieee80211_vif *tx_blocked_vif;
1509
struct agg_tx_status *agg_status;
1510
u16 status;
1511
1512
lockdep_assert_held(&mvm->mutex);
1513
1514
mvm->ap_last_beacon_gp2 = le32_to_cpu(beacon->gp2);
1515
1516
if (!iwl_mvm_is_short_beacon_notif_supported(mvm)) {
1517
struct iwl_tx_resp *beacon_notify_hdr =
1518
&beacon_v5->beacon_notify_hdr;
1519
1520
if (unlikely(pkt_len < sizeof(*beacon_v5)))
1521
return;
1522
1523
mvm->ibss_manager = beacon_v5->ibss_mgr_status != 0;
1524
agg_status = iwl_mvm_get_agg_status(mvm, beacon_notify_hdr);
1525
status = le16_to_cpu(agg_status->status) & TX_STATUS_MSK;
1526
IWL_DEBUG_RX(mvm,
1527
"beacon status %#x retries:%d tsf:0x%016llX gp2:0x%X rate:%d\n",
1528
status, beacon_notify_hdr->failure_frame,
1529
le64_to_cpu(beacon->tsf),
1530
mvm->ap_last_beacon_gp2,
1531
le32_to_cpu(beacon_notify_hdr->initial_rate));
1532
} else {
1533
if (unlikely(pkt_len < sizeof(*beacon)))
1534
return;
1535
1536
mvm->ibss_manager = beacon->ibss_mgr_status != 0;
1537
status = le32_to_cpu(beacon->status) & TX_STATUS_MSK;
1538
IWL_DEBUG_RX(mvm,
1539
"beacon status %#x tsf:0x%016llX gp2:0x%X\n",
1540
status, le64_to_cpu(beacon->tsf),
1541
mvm->ap_last_beacon_gp2);
1542
}
1543
1544
csa_vif = rcu_dereference_protected(mvm->csa_vif,
1545
lockdep_is_held(&mvm->mutex));
1546
if (unlikely(csa_vif && csa_vif->bss_conf.csa_active))
1547
iwl_mvm_csa_count_down(mvm, csa_vif, mvm->ap_last_beacon_gp2,
1548
(status == TX_STATUS_SUCCESS));
1549
1550
tx_blocked_vif = rcu_dereference_protected(mvm->csa_tx_blocked_vif,
1551
lockdep_is_held(&mvm->mutex));
1552
if (unlikely(tx_blocked_vif)) {
1553
struct iwl_mvm_vif *mvmvif =
1554
iwl_mvm_vif_from_mac80211(tx_blocked_vif);
1555
1556
/*
1557
* The channel switch is started and we have blocked the
1558
* stations. If this is the first beacon (the timeout wasn't
1559
* set), set the unblock timeout, otherwise countdown
1560
*/
1561
if (!mvm->csa_tx_block_bcn_timeout)
1562
mvm->csa_tx_block_bcn_timeout =
1563
IWL_MVM_CS_UNBLOCK_TX_TIMEOUT;
1564
else
1565
mvm->csa_tx_block_bcn_timeout--;
1566
1567
/* Check if the timeout is expired, and unblock tx */
1568
if (mvm->csa_tx_block_bcn_timeout == 0) {
1569
iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, false);
1570
RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL);
1571
}
1572
}
1573
}
1574
1575
static void
1576
iwl_mvm_handle_missed_beacons_notif(struct iwl_mvm *mvm,
1577
const struct iwl_missed_beacons_notif *mb,
1578
struct iwl_rx_packet *pkt)
1579
{
1580
struct iwl_fw_dbg_trigger_missed_bcon *bcon_trig;
1581
struct iwl_fw_dbg_trigger_tlv *trigger;
1582
u32 stop_trig_missed_bcon, stop_trig_missed_bcon_since_rx;
1583
u32 rx_missed_bcon, rx_missed_bcon_since_rx;
1584
struct ieee80211_vif *vif;
1585
/* Id can be mac/link id depending on the notification version */
1586
u32 id = le32_to_cpu(mb->link_id);
1587
union iwl_dbg_tlv_tp_data tp_data = { .fw_pkt = pkt };
1588
u32 mac_type;
1589
int link_id;
1590
u8 notif_ver = iwl_fw_lookup_notif_ver(mvm->fw, LEGACY_GROUP,
1591
MISSED_BEACONS_NOTIFICATION,
1592
0);
1593
u8 new_notif_ver = iwl_fw_lookup_notif_ver(mvm->fw, MAC_CONF_GROUP,
1594
MISSED_BEACONS_NOTIF, 0);
1595
struct ieee80211_bss_conf *bss_conf;
1596
1597
/* If the firmware uses the new notification (from MAC_CONF_GROUP),
1598
* refer to that notification's version.
1599
* Note that the new notification from MAC_CONF_GROUP starts from
1600
* version 5.
1601
*/
1602
if (new_notif_ver)
1603
notif_ver = new_notif_ver;
1604
1605
IWL_DEBUG_INFO(mvm,
1606
"missed bcn %s_id=%u, consecutive=%u (%u)\n",
1607
notif_ver < 4 ? "mac" : "link",
1608
id,
1609
le32_to_cpu(mb->consec_missed_beacons),
1610
le32_to_cpu(mb->consec_missed_beacons_since_last_rx));
1611
1612
/*
1613
* starting from version 4 the ID is link ID, but driver
1614
* uses link ID == MAC ID, so always treat as MAC ID
1615
*/
1616
vif = iwl_mvm_rcu_dereference_vif_id(mvm, id, false);
1617
if (!vif)
1618
return;
1619
1620
bss_conf = &vif->bss_conf;
1621
link_id = bss_conf->link_id;
1622
mac_type = iwl_mvm_get_mac_type(vif);
1623
1624
IWL_DEBUG_INFO(mvm, "missed beacon mac_type=%u,\n", mac_type);
1625
1626
mvm->trans->dbg.dump_file_name_ext_valid = true;
1627
snprintf(mvm->trans->dbg.dump_file_name_ext, IWL_FW_INI_MAX_NAME,
1628
"MacId_%d_MacType_%d", id, mac_type);
1629
1630
rx_missed_bcon = le32_to_cpu(mb->consec_missed_beacons);
1631
rx_missed_bcon_since_rx =
1632
le32_to_cpu(mb->consec_missed_beacons_since_last_rx);
1633
/*
1634
* TODO: the threshold should be adjusted based on latency conditions,
1635
* and/or in case of a CS flow on one of the other AP vifs.
1636
*/
1637
if (rx_missed_bcon >= IWL_MVM_MISSED_BEACONS_THRESHOLD_LONG) {
1638
if (rx_missed_bcon_since_rx >= IWL_MVM_MISSED_BEACONS_SINCE_RX_THOLD) {
1639
iwl_mvm_connection_loss(mvm, vif, "missed beacons");
1640
} else {
1641
IWL_WARN(mvm,
1642
"missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.\n");
1643
IWL_WARN(mvm,
1644
"missed_beacons:%d, missed_beacons_since_rx:%d\n",
1645
rx_missed_bcon, rx_missed_bcon_since_rx);
1646
}
1647
} else if (link_id >= 0 && hweight16(vif->active_links) > 1) {
1648
u32 bss_param_ch_cnt_link_id =
1649
bss_conf->bss_param_ch_cnt_link_id;
1650
u32 scnd_lnk_bcn_lost = 0;
1651
1652
if (notif_ver >= 5 &&
1653
!IWL_FW_CHECK(mvm,
1654
le32_to_cpu(mb->other_link_id) == IWL_MVM_FW_LINK_ID_INVALID,
1655
"No data for other link id but we are in EMLSR active_links: 0x%x\n",
1656
vif->active_links))
1657
scnd_lnk_bcn_lost =
1658
le32_to_cpu(mb->consec_missed_beacons_other_link);
1659
1660
/* Exit EMLSR if we lost more than
1661
* IWL_MVM_MISSED_BEACONS_EXIT_ESR_THRESH beacons on boths links
1662
* OR more than IWL_MVM_BCN_LOSS_EXIT_ESR_THRESH on any link.
1663
* OR more than IWL_MVM_BCN_LOSS_EXIT_ESR_THRESH_BSS_PARAM_CHANGED
1664
* and the link's bss_param_ch_count has changed.
1665
*/
1666
if ((rx_missed_bcon >= IWL_MVM_BCN_LOSS_EXIT_ESR_THRESH_2_LINKS &&
1667
scnd_lnk_bcn_lost >= IWL_MVM_BCN_LOSS_EXIT_ESR_THRESH_2_LINKS) ||
1668
rx_missed_bcon >= IWL_MVM_BCN_LOSS_EXIT_ESR_THRESH ||
1669
(bss_param_ch_cnt_link_id != link_id &&
1670
rx_missed_bcon >= IWL_MVM_BCN_LOSS_EXIT_ESR_THRESH_BSS_PARAM_CHANGED))
1671
iwl_mvm_exit_esr(mvm, vif,
1672
IWL_MVM_ESR_EXIT_MISSED_BEACON,
1673
iwl_mvm_get_primary_link(vif));
1674
} else if (rx_missed_bcon_since_rx > IWL_MVM_MISSED_BEACONS_THRESHOLD) {
1675
if (!iwl_mvm_has_new_tx_api(mvm))
1676
ieee80211_beacon_loss(vif);
1677
else
1678
ieee80211_cqm_beacon_loss_notify(vif, GFP_ATOMIC);
1679
1680
/* try to switch links, no-op if we don't have MLO */
1681
iwl_mvm_int_mlo_scan(mvm, vif);
1682
}
1683
1684
iwl_dbg_tlv_time_point(&mvm->fwrt,
1685
IWL_FW_INI_TIME_POINT_MISSED_BEACONS, &tp_data);
1686
1687
trigger = iwl_fw_dbg_trigger_on(&mvm->fwrt, ieee80211_vif_to_wdev(vif),
1688
FW_DBG_TRIGGER_MISSED_BEACONS);
1689
if (!trigger)
1690
return;
1691
1692
bcon_trig = (void *)trigger->data;
1693
stop_trig_missed_bcon = le32_to_cpu(bcon_trig->stop_consec_missed_bcon);
1694
stop_trig_missed_bcon_since_rx =
1695
le32_to_cpu(bcon_trig->stop_consec_missed_bcon_since_rx);
1696
1697
/* TODO: implement start trigger */
1698
1699
if (rx_missed_bcon_since_rx >= stop_trig_missed_bcon_since_rx ||
1700
rx_missed_bcon >= stop_trig_missed_bcon)
1701
#if defined(__linux__)
1702
iwl_fw_dbg_collect_trig(&mvm->fwrt, trigger, NULL);
1703
#elif defined(__FreeBSD__)
1704
iwl_fw_dbg_collect_trig(&mvm->fwrt, trigger, "");
1705
#endif
1706
}
1707
1708
void iwl_mvm_rx_missed_beacons_notif(struct iwl_mvm *mvm,
1709
struct iwl_rx_cmd_buffer *rxb)
1710
{
1711
struct iwl_rx_packet *pkt = rxb_addr(rxb);
1712
1713
iwl_mvm_handle_missed_beacons_notif(mvm, (const void *)pkt->data, pkt);
1714
}
1715
1716
void iwl_mvm_rx_missed_beacons_notif_legacy(struct iwl_mvm *mvm,
1717
struct iwl_rx_cmd_buffer *rxb)
1718
{
1719
struct iwl_rx_packet *pkt = rxb_addr(rxb);
1720
const struct iwl_missed_beacons_notif_v4 *mb_v4 =
1721
(const void *)pkt->data;
1722
struct iwl_missed_beacons_notif mb = {
1723
.link_id = mb_v4->link_id,
1724
.consec_missed_beacons = mb_v4->consec_missed_beacons,
1725
.consec_missed_beacons_since_last_rx =
1726
mb_v4->consec_missed_beacons_since_last_rx,
1727
.other_link_id = cpu_to_le32(IWL_MVM_FW_LINK_ID_INVALID),
1728
};
1729
1730
iwl_mvm_handle_missed_beacons_notif(mvm, &mb, pkt);
1731
}
1732
1733
void iwl_mvm_rx_stored_beacon_notif(struct iwl_mvm *mvm,
1734
struct iwl_rx_cmd_buffer *rxb)
1735
{
1736
struct iwl_rx_packet *pkt = rxb_addr(rxb);
1737
unsigned int pkt_len = iwl_rx_packet_payload_len(pkt);
1738
struct iwl_stored_beacon_notif_common *sb = (void *)pkt->data;
1739
struct ieee80211_rx_status rx_status;
1740
struct sk_buff *skb;
1741
u8 *data;
1742
u32 size = le32_to_cpu(sb->byte_count);
1743
int ver = iwl_fw_lookup_cmd_ver(mvm->fw,
1744
WIDE_ID(PROT_OFFLOAD_GROUP, STORED_BEACON_NTF),
1745
0);
1746
1747
if (size == 0)
1748
return;
1749
1750
/* handle per-version differences */
1751
if (ver <= 2) {
1752
struct iwl_stored_beacon_notif_v2 *sb_v2 = (void *)pkt->data;
1753
1754
if (pkt_len < struct_size(sb_v2, data, size))
1755
return;
1756
1757
data = sb_v2->data;
1758
} else {
1759
struct iwl_stored_beacon_notif *sb_v3 = (void *)pkt->data;
1760
1761
if (pkt_len < struct_size(sb_v3, data, size))
1762
return;
1763
1764
data = sb_v3->data;
1765
}
1766
1767
skb = alloc_skb(size, GFP_ATOMIC);
1768
if (!skb) {
1769
IWL_ERR(mvm, "alloc_skb failed\n");
1770
return;
1771
}
1772
1773
/* update rx_status according to the notification's metadata */
1774
memset(&rx_status, 0, sizeof(rx_status));
1775
rx_status.mactime = le64_to_cpu(sb->tsf);
1776
/* TSF as indicated by the firmware is at INA time */
1777
rx_status.flag |= RX_FLAG_MACTIME_PLCP_START;
1778
rx_status.device_timestamp = le32_to_cpu(sb->system_time);
1779
rx_status.band =
1780
(sb->band & cpu_to_le16(RX_RES_PHY_FLAGS_BAND_24)) ?
1781
NL80211_BAND_2GHZ : NL80211_BAND_5GHZ;
1782
rx_status.freq =
1783
ieee80211_channel_to_frequency(le16_to_cpu(sb->channel),
1784
rx_status.band);
1785
1786
/* copy the data */
1787
skb_put_data(skb, data, size);
1788
memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
1789
1790
/* pass it as regular rx to mac80211 */
1791
ieee80211_rx_napi(mvm->hw, NULL, skb, NULL);
1792
}
1793
1794
void iwl_mvm_probe_resp_data_notif(struct iwl_mvm *mvm,
1795
struct iwl_rx_cmd_buffer *rxb)
1796
{
1797
struct iwl_rx_packet *pkt = rxb_addr(rxb);
1798
struct iwl_probe_resp_data_notif *notif = (void *)pkt->data;
1799
struct iwl_probe_resp_data *old_data, *new_data;
1800
u32 id = le32_to_cpu(notif->mac_id);
1801
struct ieee80211_vif *vif;
1802
struct iwl_mvm_vif *mvmvif;
1803
1804
IWL_DEBUG_INFO(mvm, "Probe response data notif: noa %d, csa %d\n",
1805
notif->noa_active, notif->csa_counter);
1806
1807
vif = iwl_mvm_rcu_dereference_vif_id(mvm, id, false);
1808
if (!vif)
1809
return;
1810
1811
mvmvif = iwl_mvm_vif_from_mac80211(vif);
1812
1813
new_data = kzalloc(sizeof(*new_data), GFP_KERNEL);
1814
if (!new_data)
1815
return;
1816
1817
memcpy(&new_data->notif, notif, sizeof(new_data->notif));
1818
1819
/* noa_attr contains 1 reserved byte, need to substruct it */
1820
new_data->noa_len = sizeof(struct ieee80211_vendor_ie) +
1821
sizeof(new_data->notif.noa_attr) - 1;
1822
1823
/*
1824
* If it's a one time NoA, only one descriptor is needed,
1825
* adjust the length according to len_low.
1826
*/
1827
if (new_data->notif.noa_attr.len_low ==
1828
sizeof(struct ieee80211_p2p_noa_desc) + 2)
1829
new_data->noa_len -= sizeof(struct ieee80211_p2p_noa_desc);
1830
1831
old_data = rcu_dereference_protected(mvmvif->deflink.probe_resp_data,
1832
lockdep_is_held(&mvmvif->mvm->mutex));
1833
rcu_assign_pointer(mvmvif->deflink.probe_resp_data, new_data);
1834
1835
if (old_data)
1836
kfree_rcu(old_data, rcu_head);
1837
1838
if (notif->csa_counter != IWL_PROBE_RESP_DATA_NO_CSA &&
1839
notif->csa_counter >= 1)
1840
ieee80211_beacon_set_cntdwn(vif, notif->csa_counter);
1841
}
1842
1843
void iwl_mvm_channel_switch_start_notif(struct iwl_mvm *mvm,
1844
struct iwl_rx_cmd_buffer *rxb)
1845
{
1846
struct iwl_rx_packet *pkt = rxb_addr(rxb);
1847
struct ieee80211_vif *csa_vif, *vif;
1848
struct iwl_mvm_vif *mvmvif, *csa_mvmvif;
1849
u32 id_n_color, csa_id;
1850
/* save mac_id or link_id to use later to cancel csa if needed */
1851
u32 id;
1852
u32 mac_link_id = 0;
1853
u8 notif_ver = iwl_fw_lookup_notif_ver(mvm->fw, MAC_CONF_GROUP,
1854
CHANNEL_SWITCH_START_NOTIF, 0);
1855
bool csa_active;
1856
1857
rcu_read_lock();
1858
1859
if (notif_ver < 3) {
1860
struct iwl_channel_switch_start_notif_v1 *notif = (void *)pkt->data;
1861
u32 mac_id;
1862
1863
id_n_color = le32_to_cpu(notif->id_and_color);
1864
mac_id = id_n_color & FW_CTXT_ID_MSK;
1865
1866
vif = iwl_mvm_rcu_dereference_vif_id(mvm, mac_id, true);
1867
if (!vif)
1868
goto out_unlock;
1869
1870
id = mac_id;
1871
csa_active = vif->bss_conf.csa_active;
1872
} else {
1873
struct iwl_channel_switch_start_notif *notif = (void *)pkt->data;
1874
u32 link_id = le32_to_cpu(notif->link_id);
1875
1876
/* we use link ID == MAC ID */
1877
vif = iwl_mvm_rcu_dereference_vif_id(mvm, link_id, true);
1878
if (!vif)
1879
goto out_unlock;
1880
1881
id = link_id;
1882
mac_link_id = vif->bss_conf.link_id;
1883
csa_active = vif->bss_conf.csa_active;
1884
}
1885
1886
mvmvif = iwl_mvm_vif_from_mac80211(vif);
1887
if (notif_ver >= 3)
1888
id_n_color = FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color);
1889
1890
switch (vif->type) {
1891
case NL80211_IFTYPE_AP:
1892
csa_vif = rcu_dereference(mvm->csa_vif);
1893
if (WARN_ON(!csa_vif || !csa_vif->bss_conf.csa_active ||
1894
csa_vif != vif))
1895
goto out_unlock;
1896
1897
csa_mvmvif = iwl_mvm_vif_from_mac80211(csa_vif);
1898
csa_id = FW_CMD_ID_AND_COLOR(csa_mvmvif->id, csa_mvmvif->color);
1899
if (WARN(csa_id != id_n_color,
1900
"channel switch noa notification on unexpected vif (csa_vif=%d, notif=%d)",
1901
csa_id, id_n_color))
1902
goto out_unlock;
1903
1904
IWL_DEBUG_INFO(mvm, "Channel Switch Started Notification\n");
1905
1906
schedule_delayed_work(&mvm->cs_tx_unblock_dwork,
1907
msecs_to_jiffies(IWL_MVM_CS_UNBLOCK_TX_TIMEOUT *
1908
csa_vif->bss_conf.beacon_int));
1909
1910
ieee80211_csa_finish(csa_vif, 0);
1911
1912
rcu_read_unlock();
1913
1914
RCU_INIT_POINTER(mvm->csa_vif, NULL);
1915
return;
1916
case NL80211_IFTYPE_STATION:
1917
/*
1918
* if we don't know about an ongoing channel switch,
1919
* make sure FW cancels it
1920
*/
1921
if (iwl_fw_lookup_notif_ver(mvm->fw, MAC_CONF_GROUP,
1922
CHANNEL_SWITCH_ERROR_NOTIF,
1923
0) && !csa_active) {
1924
IWL_DEBUG_INFO(mvm, "Channel Switch was canceled\n");
1925
iwl_mvm_cancel_channel_switch(mvm, vif, id);
1926
break;
1927
}
1928
1929
iwl_mvm_csa_client_absent(mvm, vif);
1930
cancel_delayed_work(&mvmvif->csa_work);
1931
ieee80211_chswitch_done(vif, true, mac_link_id);
1932
break;
1933
default:
1934
/* should never happen */
1935
WARN_ON_ONCE(1);
1936
break;
1937
}
1938
out_unlock:
1939
rcu_read_unlock();
1940
}
1941
1942
void iwl_mvm_channel_switch_error_notif(struct iwl_mvm *mvm,
1943
struct iwl_rx_cmd_buffer *rxb)
1944
{
1945
struct iwl_rx_packet *pkt = rxb_addr(rxb);
1946
struct iwl_channel_switch_error_notif *notif = (void *)pkt->data;
1947
struct ieee80211_vif *vif;
1948
u32 id = le32_to_cpu(notif->link_id);
1949
u32 csa_err_mask = le32_to_cpu(notif->csa_err_mask);
1950
1951
rcu_read_lock();
1952
vif = iwl_mvm_rcu_dereference_vif_id(mvm, id, true);
1953
if (!vif) {
1954
rcu_read_unlock();
1955
return;
1956
}
1957
1958
IWL_DEBUG_INFO(mvm, "FW reports CSA error: id=%u, csa_err_mask=%u\n",
1959
id, csa_err_mask);
1960
if (csa_err_mask & (CS_ERR_COUNT_ERROR |
1961
CS_ERR_LONG_DELAY_AFTER_CS |
1962
CS_ERR_TX_BLOCK_TIMER_EXPIRED))
1963
ieee80211_channel_switch_disconnect(vif);
1964
rcu_read_unlock();
1965
}
1966
1967