1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66#include <linux/etherdevice.h>
67#include <net/mac80211.h>
68#include "iwl-io.h"
69#include "iwl-prph.h"
70#include "fw-api.h"
71#include "mvm.h"
72#include "time-event.h"
73
74const u8 iwl_mvm_ac_to_tx_fifo[] = {
75 IWL_MVM_TX_FIFO_VO,
76 IWL_MVM_TX_FIFO_VI,
77 IWL_MVM_TX_FIFO_BE,
78 IWL_MVM_TX_FIFO_BK,
79};
80
81struct iwl_mvm_mac_iface_iterator_data {
82 struct iwl_mvm *mvm;
83 struct ieee80211_vif *vif;
84 unsigned long available_mac_ids[BITS_TO_LONGS(NUM_MAC_INDEX_DRIVER)];
85 unsigned long available_tsf_ids[BITS_TO_LONGS(NUM_TSF_IDS)];
86 enum iwl_tsf_id preferred_tsf;
87 bool found_vif;
88};
89
90struct iwl_mvm_hw_queues_iface_iterator_data {
91 struct ieee80211_vif *exclude_vif;
92 unsigned long used_hw_queues;
93};
94
95static void iwl_mvm_mac_tsf_id_iter(void *_data, u8 *mac,
96 struct ieee80211_vif *vif)
97{
98 struct iwl_mvm_mac_iface_iterator_data *data = _data;
99 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
100 u16 min_bi;
101
102
103 if (vif == data->vif)
104 return;
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122 switch (data->vif->type) {
123 case NL80211_IFTYPE_STATION:
124
125
126
127
128
129
130
131
132 if (vif->type != NL80211_IFTYPE_AP ||
133 data->preferred_tsf != NUM_TSF_IDS ||
134 !test_bit(mvmvif->tsf_id, data->available_tsf_ids))
135 break;
136
137 min_bi = min(data->vif->bss_conf.beacon_int,
138 vif->bss_conf.beacon_int);
139
140 if (!min_bi)
141 break;
142
143 if ((data->vif->bss_conf.beacon_int -
144 vif->bss_conf.beacon_int) % min_bi == 0) {
145 data->preferred_tsf = mvmvif->tsf_id;
146 return;
147 }
148 break;
149
150 case NL80211_IFTYPE_AP:
151
152
153
154
155
156
157
158
159
160 if ((vif->type != NL80211_IFTYPE_AP &&
161 vif->type != NL80211_IFTYPE_STATION) ||
162 data->preferred_tsf != NUM_TSF_IDS ||
163 !test_bit(mvmvif->tsf_id, data->available_tsf_ids))
164 break;
165
166 min_bi = min(data->vif->bss_conf.beacon_int,
167 vif->bss_conf.beacon_int);
168
169 if (!min_bi)
170 break;
171
172 if ((data->vif->bss_conf.beacon_int -
173 vif->bss_conf.beacon_int) % min_bi == 0) {
174 data->preferred_tsf = mvmvif->tsf_id;
175 return;
176 }
177 break;
178 default:
179
180
181
182
183
184
185
186 break;
187 }
188
189
190
191
192
193
194
195 __clear_bit(mvmvif->tsf_id, data->available_tsf_ids);
196
197 if (data->preferred_tsf == mvmvif->tsf_id)
198 data->preferred_tsf = NUM_TSF_IDS;
199}
200
201
202
203
204u32 iwl_mvm_mac_get_queues_mask(struct ieee80211_vif *vif)
205{
206 u32 qmask = 0, ac;
207
208 if (vif->type == NL80211_IFTYPE_P2P_DEVICE)
209 return BIT(IWL_MVM_OFFCHANNEL_QUEUE);
210
211 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
212 qmask |= BIT(vif->hw_queue[ac]);
213
214 if (vif->type == NL80211_IFTYPE_AP)
215 qmask |= BIT(vif->cab_queue);
216
217 return qmask;
218}
219
220static void iwl_mvm_iface_hw_queues_iter(void *_data, u8 *mac,
221 struct ieee80211_vif *vif)
222{
223 struct iwl_mvm_hw_queues_iface_iterator_data *data = _data;
224
225
226 if (vif == data->exclude_vif)
227 return;
228
229 data->used_hw_queues |= iwl_mvm_mac_get_queues_mask(vif);
230}
231
232static void iwl_mvm_mac_sta_hw_queues_iter(void *_data,
233 struct ieee80211_sta *sta)
234{
235 struct iwl_mvm_hw_queues_iface_iterator_data *data = _data;
236 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
237
238
239 data->used_hw_queues |= mvmsta->tfd_queue_msk;
240}
241
242unsigned long iwl_mvm_get_used_hw_queues(struct iwl_mvm *mvm,
243 struct ieee80211_vif *exclude_vif)
244{
245 struct iwl_mvm_hw_queues_iface_iterator_data data = {
246 .exclude_vif = exclude_vif,
247 .used_hw_queues =
248 BIT(IWL_MVM_OFFCHANNEL_QUEUE) |
249 BIT(mvm->aux_queue) |
250 BIT(IWL_MVM_CMD_QUEUE),
251 };
252
253 lockdep_assert_held(&mvm->mutex);
254
255
256 ieee80211_iterate_active_interfaces_atomic(
257 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
258 iwl_mvm_iface_hw_queues_iter, &data);
259
260
261 ieee80211_iterate_stations_atomic(mvm->hw,
262 iwl_mvm_mac_sta_hw_queues_iter,
263 &data);
264
265 return data.used_hw_queues;
266}
267
268static void iwl_mvm_mac_iface_iterator(void *_data, u8 *mac,
269 struct ieee80211_vif *vif)
270{
271 struct iwl_mvm_mac_iface_iterator_data *data = _data;
272 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
273
274
275 if (vif == data->vif) {
276 data->found_vif = true;
277 return;
278 }
279
280
281
282
283
284
285
286 __clear_bit(mvmvif->id, data->available_mac_ids);
287
288
289 iwl_mvm_mac_tsf_id_iter(_data, mac, vif);
290}
291
292void iwl_mvm_mac_ctxt_recalc_tsf_id(struct iwl_mvm *mvm,
293 struct ieee80211_vif *vif)
294{
295 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
296 struct iwl_mvm_mac_iface_iterator_data data = {
297 .mvm = mvm,
298 .vif = vif,
299 .available_tsf_ids = { (1 << NUM_TSF_IDS) - 1 },
300
301 .preferred_tsf = NUM_TSF_IDS,
302 };
303
304 ieee80211_iterate_active_interfaces_atomic(
305 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
306 iwl_mvm_mac_tsf_id_iter, &data);
307
308 if (data.preferred_tsf != NUM_TSF_IDS)
309 mvmvif->tsf_id = data.preferred_tsf;
310 else if (!test_bit(mvmvif->tsf_id, data.available_tsf_ids))
311 mvmvif->tsf_id = find_first_bit(data.available_tsf_ids,
312 NUM_TSF_IDS);
313}
314
315static int iwl_mvm_mac_ctxt_allocate_resources(struct iwl_mvm *mvm,
316 struct ieee80211_vif *vif)
317{
318 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
319 struct iwl_mvm_mac_iface_iterator_data data = {
320 .mvm = mvm,
321 .vif = vif,
322 .available_mac_ids = { (1 << NUM_MAC_INDEX_DRIVER) - 1 },
323 .available_tsf_ids = { (1 << NUM_TSF_IDS) - 1 },
324
325 .preferred_tsf = NUM_TSF_IDS,
326 .found_vif = false,
327 };
328 u32 ac;
329 int ret, i;
330 unsigned long used_hw_queues;
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349 switch (vif->type) {
350 case NL80211_IFTYPE_ADHOC:
351 break;
352 case NL80211_IFTYPE_STATION:
353 if (!vif->p2p)
354 break;
355
356 default:
357 __clear_bit(0, data.available_mac_ids);
358 }
359
360 ieee80211_iterate_active_interfaces_atomic(
361 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
362 iwl_mvm_mac_iface_iterator, &data);
363
364 used_hw_queues = iwl_mvm_get_used_hw_queues(mvm, vif);
365
366
367
368
369
370
371
372
373
374
375
376 if (data.found_vif)
377 return 0;
378
379
380 if (WARN_ON_ONCE(test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)))
381 return -EBUSY;
382
383 mvmvif->id = find_first_bit(data.available_mac_ids,
384 NUM_MAC_INDEX_DRIVER);
385 if (mvmvif->id == NUM_MAC_INDEX_DRIVER) {
386 IWL_ERR(mvm, "Failed to init MAC context - no free ID!\n");
387 ret = -EIO;
388 goto exit_fail;
389 }
390
391 if (data.preferred_tsf != NUM_TSF_IDS)
392 mvmvif->tsf_id = data.preferred_tsf;
393 else
394 mvmvif->tsf_id = find_first_bit(data.available_tsf_ids,
395 NUM_TSF_IDS);
396 if (mvmvif->tsf_id == NUM_TSF_IDS) {
397 IWL_ERR(mvm, "Failed to init MAC context - no free TSF!\n");
398 ret = -EIO;
399 goto exit_fail;
400 }
401
402 mvmvif->color = 0;
403
404 INIT_LIST_HEAD(&mvmvif->time_event_data.list);
405 mvmvif->time_event_data.id = TE_MAX;
406
407
408 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
409 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
410 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE;
411
412 return 0;
413 }
414
415
416 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
417 u8 queue = find_first_zero_bit(&used_hw_queues,
418 mvm->first_agg_queue);
419
420 if (queue >= mvm->first_agg_queue) {
421 IWL_ERR(mvm, "Failed to allocate queue\n");
422 ret = -EIO;
423 goto exit_fail;
424 }
425
426 __set_bit(queue, &used_hw_queues);
427 vif->hw_queue[ac] = queue;
428 }
429
430
431 if (vif->type == NL80211_IFTYPE_AP) {
432 u8 queue = find_first_zero_bit(&used_hw_queues,
433 mvm->first_agg_queue);
434
435 if (queue >= mvm->first_agg_queue) {
436 IWL_ERR(mvm, "Failed to allocate cab queue\n");
437 ret = -EIO;
438 goto exit_fail;
439 }
440
441 vif->cab_queue = queue;
442 } else {
443 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
444 }
445
446 mvmvif->bcast_sta.sta_id = IWL_MVM_STATION_COUNT;
447 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
448
449 for (i = 0; i < NUM_IWL_MVM_SMPS_REQ; i++)
450 mvmvif->smps_requests[i] = IEEE80211_SMPS_AUTOMATIC;
451
452 return 0;
453
454exit_fail:
455 memset(mvmvif, 0, sizeof(struct iwl_mvm_vif));
456 memset(vif->hw_queue, IEEE80211_INVAL_HW_QUEUE, sizeof(vif->hw_queue));
457 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
458 return ret;
459}
460
461int iwl_mvm_mac_ctxt_init(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
462{
463 u32 ac;
464 int ret;
465
466 lockdep_assert_held(&mvm->mutex);
467
468 ret = iwl_mvm_mac_ctxt_allocate_resources(mvm, vif);
469 if (ret)
470 return ret;
471
472 switch (vif->type) {
473 case NL80211_IFTYPE_P2P_DEVICE:
474 iwl_mvm_enable_ac_txq(mvm, IWL_MVM_OFFCHANNEL_QUEUE,
475 IWL_MVM_TX_FIFO_VO);
476 break;
477 case NL80211_IFTYPE_AP:
478 iwl_mvm_enable_ac_txq(mvm, vif->cab_queue,
479 IWL_MVM_TX_FIFO_MCAST);
480
481 default:
482 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
483 iwl_mvm_enable_ac_txq(mvm, vif->hw_queue[ac],
484 iwl_mvm_ac_to_tx_fifo[ac]);
485 break;
486 }
487
488 return 0;
489}
490
491void iwl_mvm_mac_ctxt_release(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
492{
493 int ac;
494
495 lockdep_assert_held(&mvm->mutex);
496
497 switch (vif->type) {
498 case NL80211_IFTYPE_P2P_DEVICE:
499 iwl_mvm_disable_txq(mvm, IWL_MVM_OFFCHANNEL_QUEUE);
500 break;
501 case NL80211_IFTYPE_AP:
502 iwl_mvm_disable_txq(mvm, vif->cab_queue);
503
504 default:
505 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
506 iwl_mvm_disable_txq(mvm, vif->hw_queue[ac]);
507 }
508}
509
510static void iwl_mvm_ack_rates(struct iwl_mvm *mvm,
511 struct ieee80211_vif *vif,
512 enum ieee80211_band band,
513 u8 *cck_rates, u8 *ofdm_rates)
514{
515 struct ieee80211_supported_band *sband;
516 unsigned long basic = vif->bss_conf.basic_rates;
517 int lowest_present_ofdm = 100;
518 int lowest_present_cck = 100;
519 u8 cck = 0;
520 u8 ofdm = 0;
521 int i;
522
523 sband = mvm->hw->wiphy->bands[band];
524
525 for_each_set_bit(i, &basic, BITS_PER_LONG) {
526 int hw = sband->bitrates[i].hw_value;
527 if (hw >= IWL_FIRST_OFDM_RATE) {
528 ofdm |= BIT(hw - IWL_FIRST_OFDM_RATE);
529 if (lowest_present_ofdm > hw)
530 lowest_present_ofdm = hw;
531 } else {
532 BUILD_BUG_ON(IWL_FIRST_CCK_RATE != 0);
533
534 cck |= BIT(hw);
535 if (lowest_present_cck > hw)
536 lowest_present_cck = hw;
537 }
538 }
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563 if (IWL_RATE_24M_INDEX < lowest_present_ofdm)
564 ofdm |= IWL_RATE_BIT_MSK(24) >> IWL_FIRST_OFDM_RATE;
565 if (IWL_RATE_12M_INDEX < lowest_present_ofdm)
566 ofdm |= IWL_RATE_BIT_MSK(12) >> IWL_FIRST_OFDM_RATE;
567
568 ofdm |= IWL_RATE_BIT_MSK(6) >> IWL_FIRST_OFDM_RATE;
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583 if (IWL_RATE_11M_INDEX < lowest_present_cck)
584 cck |= IWL_RATE_BIT_MSK(11) >> IWL_FIRST_CCK_RATE;
585 if (IWL_RATE_5M_INDEX < lowest_present_cck)
586 cck |= IWL_RATE_BIT_MSK(5) >> IWL_FIRST_CCK_RATE;
587 if (IWL_RATE_2M_INDEX < lowest_present_cck)
588 cck |= IWL_RATE_BIT_MSK(2) >> IWL_FIRST_CCK_RATE;
589
590 cck |= IWL_RATE_BIT_MSK(1) >> IWL_FIRST_CCK_RATE;
591
592 *cck_rates = cck;
593 *ofdm_rates = ofdm;
594}
595
596static void iwl_mvm_mac_ctxt_set_ht_flags(struct iwl_mvm *mvm,
597 struct ieee80211_vif *vif,
598 struct iwl_mac_ctx_cmd *cmd)
599{
600
601 u8 protection_mode = vif->bss_conf.ht_operation_mode &
602 IEEE80211_HT_OP_MODE_PROTECTION;
603
604 u32 ht_flag = MAC_PROT_FLG_HT_PROT | MAC_PROT_FLG_FAT_PROT;
605
606 IWL_DEBUG_RATE(mvm, "protection mode set to %d\n", protection_mode);
607
608
609
610
611 switch (protection_mode) {
612 case IEEE80211_HT_OP_MODE_PROTECTION_NONE:
613 break;
614 case IEEE80211_HT_OP_MODE_PROTECTION_NONMEMBER:
615 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
616 cmd->protection_flags |= cpu_to_le32(ht_flag);
617 break;
618 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
619
620 if (vif->bss_conf.chandef.width > NL80211_CHAN_WIDTH_20)
621 cmd->protection_flags |= cpu_to_le32(ht_flag);
622 break;
623 default:
624 IWL_ERR(mvm, "Illegal protection mode %d\n",
625 protection_mode);
626 break;
627 }
628}
629
630static void iwl_mvm_mac_ctxt_cmd_common(struct iwl_mvm *mvm,
631 struct ieee80211_vif *vif,
632 struct iwl_mac_ctx_cmd *cmd,
633 const u8 *bssid_override,
634 u32 action)
635{
636 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
637 struct ieee80211_chanctx_conf *chanctx;
638 bool ht_enabled = !!(vif->bss_conf.ht_operation_mode &
639 IEEE80211_HT_OP_MODE_PROTECTION);
640 u8 cck_ack_rates, ofdm_ack_rates;
641 const u8 *bssid = bssid_override ?: vif->bss_conf.bssid;
642 int i;
643
644 cmd->id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
645 mvmvif->color));
646 cmd->action = cpu_to_le32(action);
647
648 switch (vif->type) {
649 case NL80211_IFTYPE_STATION:
650 if (vif->p2p)
651 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_P2P_STA);
652 else
653 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_BSS_STA);
654 break;
655 case NL80211_IFTYPE_AP:
656 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_GO);
657 break;
658 case NL80211_IFTYPE_MONITOR:
659 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_LISTENER);
660 break;
661 case NL80211_IFTYPE_P2P_DEVICE:
662 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_P2P_DEVICE);
663 break;
664 case NL80211_IFTYPE_ADHOC:
665 cmd->mac_type = cpu_to_le32(FW_MAC_TYPE_IBSS);
666 break;
667 default:
668 WARN_ON_ONCE(1);
669 }
670
671 cmd->tsf_id = cpu_to_le32(mvmvif->tsf_id);
672
673 memcpy(cmd->node_addr, vif->addr, ETH_ALEN);
674
675 if (bssid)
676 memcpy(cmd->bssid_addr, bssid, ETH_ALEN);
677 else
678 eth_broadcast_addr(cmd->bssid_addr);
679
680 rcu_read_lock();
681 chanctx = rcu_dereference(vif->chanctx_conf);
682 iwl_mvm_ack_rates(mvm, vif, chanctx ? chanctx->def.chan->band
683 : IEEE80211_BAND_2GHZ,
684 &cck_ack_rates, &ofdm_ack_rates);
685 rcu_read_unlock();
686
687 cmd->cck_rates = cpu_to_le32((u32)cck_ack_rates);
688 cmd->ofdm_rates = cpu_to_le32((u32)ofdm_ack_rates);
689
690 cmd->cck_short_preamble =
691 cpu_to_le32(vif->bss_conf.use_short_preamble ?
692 MAC_FLG_SHORT_PREAMBLE : 0);
693 cmd->short_slot =
694 cpu_to_le32(vif->bss_conf.use_short_slot ?
695 MAC_FLG_SHORT_SLOT : 0);
696
697 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
698 u8 txf = iwl_mvm_ac_to_tx_fifo[i];
699
700 cmd->ac[txf].cw_min =
701 cpu_to_le16(mvmvif->queue_params[i].cw_min);
702 cmd->ac[txf].cw_max =
703 cpu_to_le16(mvmvif->queue_params[i].cw_max);
704 cmd->ac[txf].edca_txop =
705 cpu_to_le16(mvmvif->queue_params[i].txop * 32);
706 cmd->ac[txf].aifsn = mvmvif->queue_params[i].aifs;
707 cmd->ac[txf].fifos_mask = BIT(txf);
708 }
709
710
711 if (vif->type == NL80211_IFTYPE_AP)
712 cmd->ac[IWL_MVM_TX_FIFO_VO].fifos_mask |=
713 BIT(IWL_MVM_TX_FIFO_MCAST);
714
715 if (vif->bss_conf.qos)
716 cmd->qos_flags |= cpu_to_le32(MAC_QOS_FLG_UPDATE_EDCA);
717
718 if (vif->bss_conf.use_cts_prot)
719 cmd->protection_flags |= cpu_to_le32(MAC_PROT_FLG_TGG_PROTECT);
720
721 IWL_DEBUG_RATE(mvm, "use_cts_prot %d, ht_operation_mode %d\n",
722 vif->bss_conf.use_cts_prot,
723 vif->bss_conf.ht_operation_mode);
724 if (vif->bss_conf.chandef.width != NL80211_CHAN_WIDTH_20_NOHT)
725 cmd->qos_flags |= cpu_to_le32(MAC_QOS_FLG_TGN);
726 if (ht_enabled)
727 iwl_mvm_mac_ctxt_set_ht_flags(mvm, vif, cmd);
728
729 cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP);
730}
731
732static int iwl_mvm_mac_ctxt_send_cmd(struct iwl_mvm *mvm,
733 struct iwl_mac_ctx_cmd *cmd)
734{
735 int ret = iwl_mvm_send_cmd_pdu(mvm, MAC_CONTEXT_CMD, 0,
736 sizeof(*cmd), cmd);
737 if (ret)
738 IWL_ERR(mvm, "Failed to send MAC context (action:%d): %d\n",
739 le32_to_cpu(cmd->action), ret);
740 return ret;
741}
742
743static int iwl_mvm_mac_ctxt_cmd_sta(struct iwl_mvm *mvm,
744 struct ieee80211_vif *vif,
745 u32 action, bool force_assoc_off,
746 const u8 *bssid_override)
747{
748 struct iwl_mac_ctx_cmd cmd = {};
749 struct iwl_mac_data_sta *ctxt_sta;
750
751 WARN_ON(vif->type != NL80211_IFTYPE_STATION);
752
753
754 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, bssid_override, action);
755
756 if (vif->p2p) {
757 struct ieee80211_p2p_noa_attr *noa =
758 &vif->bss_conf.p2p_noa_attr;
759
760 cmd.p2p_sta.ctwin = cpu_to_le32(noa->oppps_ctwindow &
761 IEEE80211_P2P_OPPPS_CTWINDOW_MASK);
762 ctxt_sta = &cmd.p2p_sta.sta;
763 } else {
764 ctxt_sta = &cmd.sta;
765 }
766
767
768 if (vif->bss_conf.assoc && vif->bss_conf.dtim_period &&
769 !force_assoc_off) {
770 u32 dtim_offs;
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787 dtim_offs = vif->bss_conf.sync_dtim_count *
788 vif->bss_conf.beacon_int;
789
790 dtim_offs *= 1024;
791
792 ctxt_sta->dtim_tsf =
793 cpu_to_le64(vif->bss_conf.sync_tsf + dtim_offs);
794 ctxt_sta->dtim_time =
795 cpu_to_le32(vif->bss_conf.sync_device_ts + dtim_offs);
796
797 IWL_DEBUG_INFO(mvm, "DTIM TBTT is 0x%llx/0x%x, offset %d\n",
798 le64_to_cpu(ctxt_sta->dtim_tsf),
799 le32_to_cpu(ctxt_sta->dtim_time),
800 dtim_offs);
801
802 ctxt_sta->is_assoc = cpu_to_le32(1);
803 } else {
804 ctxt_sta->is_assoc = cpu_to_le32(0);
805
806
807
808
809 cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_BEACON);
810 }
811
812 ctxt_sta->bi = cpu_to_le32(vif->bss_conf.beacon_int);
813 ctxt_sta->bi_reciprocal =
814 cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int));
815 ctxt_sta->dtim_interval = cpu_to_le32(vif->bss_conf.beacon_int *
816 vif->bss_conf.dtim_period);
817 ctxt_sta->dtim_reciprocal =
818 cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int *
819 vif->bss_conf.dtim_period));
820
821 ctxt_sta->listen_interval = cpu_to_le32(mvm->hw->conf.listen_interval);
822 ctxt_sta->assoc_id = cpu_to_le32(vif->bss_conf.aid);
823
824 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
825}
826
827static int iwl_mvm_mac_ctxt_cmd_listener(struct iwl_mvm *mvm,
828 struct ieee80211_vif *vif,
829 u32 action)
830{
831 struct iwl_mac_ctx_cmd cmd = {};
832
833 WARN_ON(vif->type != NL80211_IFTYPE_MONITOR);
834
835 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
836
837 cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_PROMISC |
838 MAC_FILTER_IN_CONTROL_AND_MGMT |
839 MAC_FILTER_IN_BEACON |
840 MAC_FILTER_IN_PROBE_REQUEST |
841 MAC_FILTER_IN_CRC32);
842 mvm->hw->flags |= IEEE80211_HW_RX_INCLUDES_FCS;
843
844 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
845}
846
847static int iwl_mvm_mac_ctxt_cmd_ibss(struct iwl_mvm *mvm,
848 struct ieee80211_vif *vif,
849 u32 action)
850{
851 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
852 struct iwl_mac_ctx_cmd cmd = {};
853
854 WARN_ON(vif->type != NL80211_IFTYPE_ADHOC);
855
856 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
857
858 cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_BEACON |
859 MAC_FILTER_IN_PROBE_REQUEST);
860
861
862 cmd.ibss.bi = cpu_to_le32(vif->bss_conf.beacon_int);
863 cmd.ibss.bi_reciprocal =
864 cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int));
865
866
867 cmd.ibss.beacon_template = cpu_to_le32(mvmvif->id);
868
869 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
870}
871
872struct iwl_mvm_go_iterator_data {
873 bool go_active;
874};
875
876static void iwl_mvm_go_iterator(void *_data, u8 *mac, struct ieee80211_vif *vif)
877{
878 struct iwl_mvm_go_iterator_data *data = _data;
879 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
880
881 if (vif->type == NL80211_IFTYPE_AP && vif->p2p &&
882 mvmvif->ap_ibss_active)
883 data->go_active = true;
884}
885
886static int iwl_mvm_mac_ctxt_cmd_p2p_device(struct iwl_mvm *mvm,
887 struct ieee80211_vif *vif,
888 u32 action)
889{
890 struct iwl_mac_ctx_cmd cmd = {};
891 struct iwl_mvm_go_iterator_data data = {};
892
893 WARN_ON(vif->type != NL80211_IFTYPE_P2P_DEVICE);
894
895 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
896
897 cmd.protection_flags |= cpu_to_le32(MAC_PROT_FLG_TGG_PROTECT);
898
899
900 cmd.filter_flags = cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST);
901
902
903
904
905
906
907
908
909
910 ieee80211_iterate_active_interfaces_atomic(
911 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
912 iwl_mvm_go_iterator, &data);
913
914 cmd.p2p_dev.is_disc_extended = cpu_to_le32(data.go_active ? 1 : 0);
915 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
916}
917
918static void iwl_mvm_mac_ctxt_set_tim(struct iwl_mvm *mvm,
919 struct iwl_mac_beacon_cmd *beacon_cmd,
920 u8 *beacon, u32 frame_size)
921{
922 u32 tim_idx;
923 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
924
925
926
927 tim_idx = mgmt->u.beacon.variable - beacon;
928
929
930 while ((tim_idx < (frame_size - 2)) &&
931 (beacon[tim_idx] != WLAN_EID_TIM))
932 tim_idx += beacon[tim_idx+1] + 2;
933
934
935 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
936 beacon_cmd->tim_idx = cpu_to_le32(tim_idx);
937 beacon_cmd->tim_size = cpu_to_le32((u32)beacon[tim_idx+1]);
938 } else {
939 IWL_WARN(mvm, "Unable to find TIM Element in beacon\n");
940 }
941}
942
943static int iwl_mvm_mac_ctxt_send_beacon(struct iwl_mvm *mvm,
944 struct ieee80211_vif *vif,
945 struct sk_buff *beacon)
946{
947 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
948 struct iwl_host_cmd cmd = {
949 .id = BEACON_TEMPLATE_CMD,
950 .flags = CMD_ASYNC,
951 };
952 struct iwl_mac_beacon_cmd beacon_cmd = {};
953 struct ieee80211_tx_info *info;
954 u32 beacon_skb_len;
955 u32 rate, tx_flags;
956
957 if (WARN_ON(!beacon))
958 return -EINVAL;
959
960 beacon_skb_len = beacon->len;
961
962
963
964 beacon_cmd.template_id = cpu_to_le32((u32)mvmvif->id);
965 info = IEEE80211_SKB_CB(beacon);
966
967
968 beacon_cmd.tx.len = cpu_to_le16((u16)beacon_skb_len);
969 beacon_cmd.tx.sta_id = mvmvif->bcast_sta.sta_id;
970 beacon_cmd.tx.life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
971 tx_flags = TX_CMD_FLG_SEQ_CTL | TX_CMD_FLG_TSF;
972 tx_flags |=
973 iwl_mvm_bt_coex_tx_prio(mvm, (void *)beacon->data, info, 0) <<
974 TX_CMD_FLG_BT_PRIO_POS;
975 beacon_cmd.tx.tx_flags = cpu_to_le32(tx_flags);
976
977 mvm->mgmt_last_antenna_idx =
978 iwl_mvm_next_antenna(mvm, mvm->fw->valid_tx_ant,
979 mvm->mgmt_last_antenna_idx);
980
981 beacon_cmd.tx.rate_n_flags =
982 cpu_to_le32(BIT(mvm->mgmt_last_antenna_idx) <<
983 RATE_MCS_ANT_POS);
984
985 if (info->band == IEEE80211_BAND_5GHZ || vif->p2p) {
986 rate = IWL_FIRST_OFDM_RATE;
987 } else {
988 rate = IWL_FIRST_CCK_RATE;
989 beacon_cmd.tx.rate_n_flags |= cpu_to_le32(RATE_MCS_CCK_MSK);
990 }
991 beacon_cmd.tx.rate_n_flags |=
992 cpu_to_le32(iwl_mvm_mac80211_idx_to_hwrate(rate));
993
994
995 if (vif->type == NL80211_IFTYPE_AP)
996 iwl_mvm_mac_ctxt_set_tim(mvm, &beacon_cmd,
997 beacon->data,
998 beacon_skb_len);
999
1000
1001 cmd.len[0] = sizeof(beacon_cmd);
1002 cmd.data[0] = &beacon_cmd;
1003 cmd.dataflags[0] = 0;
1004 cmd.len[1] = beacon_skb_len;
1005 cmd.data[1] = beacon->data;
1006 cmd.dataflags[1] = IWL_HCMD_DFL_DUP;
1007
1008 return iwl_mvm_send_cmd(mvm, &cmd);
1009}
1010
1011
1012int iwl_mvm_mac_ctxt_beacon_changed(struct iwl_mvm *mvm,
1013 struct ieee80211_vif *vif)
1014{
1015 struct sk_buff *beacon;
1016 int ret;
1017
1018 WARN_ON(vif->type != NL80211_IFTYPE_AP &&
1019 vif->type != NL80211_IFTYPE_ADHOC);
1020
1021 beacon = ieee80211_beacon_get_template(mvm->hw, vif, NULL);
1022 if (!beacon)
1023 return -ENOMEM;
1024
1025 ret = iwl_mvm_mac_ctxt_send_beacon(mvm, vif, beacon);
1026 dev_kfree_skb(beacon);
1027 return ret;
1028}
1029
1030struct iwl_mvm_mac_ap_iterator_data {
1031 struct iwl_mvm *mvm;
1032 struct ieee80211_vif *vif;
1033 u32 beacon_device_ts;
1034 u16 beacon_int;
1035};
1036
1037
1038static void iwl_mvm_mac_ap_iterator(void *_data, u8 *mac,
1039 struct ieee80211_vif *vif)
1040{
1041 struct iwl_mvm_mac_ap_iterator_data *data = _data;
1042
1043 if (vif->type != NL80211_IFTYPE_STATION || !vif->bss_conf.assoc)
1044 return;
1045
1046
1047 if (vif->p2p && data->beacon_device_ts)
1048 return;
1049
1050 data->beacon_device_ts = vif->bss_conf.sync_device_ts;
1051 data->beacon_int = vif->bss_conf.beacon_int;
1052}
1053
1054
1055
1056
1057static void iwl_mvm_mac_ctxt_cmd_fill_ap(struct iwl_mvm *mvm,
1058 struct ieee80211_vif *vif,
1059 struct iwl_mac_data_ap *ctxt_ap,
1060 bool add)
1061{
1062 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1063 struct iwl_mvm_mac_ap_iterator_data data = {
1064 .mvm = mvm,
1065 .vif = vif,
1066 .beacon_device_ts = 0
1067 };
1068
1069 ctxt_ap->bi = cpu_to_le32(vif->bss_conf.beacon_int);
1070 ctxt_ap->bi_reciprocal =
1071 cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int));
1072 ctxt_ap->dtim_interval = cpu_to_le32(vif->bss_conf.beacon_int *
1073 vif->bss_conf.dtim_period);
1074 ctxt_ap->dtim_reciprocal =
1075 cpu_to_le32(iwl_mvm_reciprocal(vif->bss_conf.beacon_int *
1076 vif->bss_conf.dtim_period));
1077
1078 ctxt_ap->mcast_qid = cpu_to_le32(vif->cab_queue);
1079
1080
1081
1082
1083
1084
1085 if (add) {
1086
1087
1088
1089
1090
1091 ieee80211_iterate_active_interfaces_atomic(
1092 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1093 iwl_mvm_mac_ap_iterator, &data);
1094
1095 if (data.beacon_device_ts) {
1096 u32 rand = (prandom_u32() % (64 - 36)) + 36;
1097 mvmvif->ap_beacon_time = data.beacon_device_ts +
1098 ieee80211_tu_to_usec(data.beacon_int * rand /
1099 100);
1100 } else {
1101 mvmvif->ap_beacon_time =
1102 iwl_read_prph(mvm->trans,
1103 DEVICE_SYSTEM_TIME_REG);
1104 }
1105 }
1106
1107 ctxt_ap->beacon_time = cpu_to_le32(mvmvif->ap_beacon_time);
1108 ctxt_ap->beacon_tsf = 0;
1109
1110
1111 ctxt_ap->beacon_template = cpu_to_le32(mvmvif->id);
1112}
1113
1114static int iwl_mvm_mac_ctxt_cmd_ap(struct iwl_mvm *mvm,
1115 struct ieee80211_vif *vif,
1116 u32 action)
1117{
1118 struct iwl_mac_ctx_cmd cmd = {};
1119
1120 WARN_ON(vif->type != NL80211_IFTYPE_AP || vif->p2p);
1121
1122
1123 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
1124
1125
1126
1127
1128
1129 cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST |
1130 MAC_FILTER_IN_BEACON);
1131
1132
1133 iwl_mvm_mac_ctxt_cmd_fill_ap(mvm, vif, &cmd.ap,
1134 action == FW_CTXT_ACTION_ADD);
1135
1136 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
1137}
1138
1139static int iwl_mvm_mac_ctxt_cmd_go(struct iwl_mvm *mvm,
1140 struct ieee80211_vif *vif,
1141 u32 action)
1142{
1143 struct iwl_mac_ctx_cmd cmd = {};
1144 struct ieee80211_p2p_noa_attr *noa = &vif->bss_conf.p2p_noa_attr;
1145
1146 WARN_ON(vif->type != NL80211_IFTYPE_AP || !vif->p2p);
1147
1148
1149 iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, NULL, action);
1150
1151
1152
1153
1154
1155 cmd.filter_flags |= cpu_to_le32(MAC_FILTER_IN_PROBE_REQUEST |
1156 MAC_FILTER_IN_BEACON);
1157
1158
1159 iwl_mvm_mac_ctxt_cmd_fill_ap(mvm, vif, &cmd.go.ap,
1160 action == FW_CTXT_ACTION_ADD);
1161
1162 cmd.go.ctwin = cpu_to_le32(noa->oppps_ctwindow &
1163 IEEE80211_P2P_OPPPS_CTWINDOW_MASK);
1164 cmd.go.opp_ps_enabled =
1165 cpu_to_le32(!!(noa->oppps_ctwindow &
1166 IEEE80211_P2P_OPPPS_ENABLE_BIT));
1167
1168 return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd);
1169}
1170
1171static int iwl_mvm_mac_ctx_send(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1172 u32 action, bool force_assoc_off,
1173 const u8 *bssid_override)
1174{
1175 switch (vif->type) {
1176 case NL80211_IFTYPE_STATION:
1177 return iwl_mvm_mac_ctxt_cmd_sta(mvm, vif, action,
1178 force_assoc_off,
1179 bssid_override);
1180 break;
1181 case NL80211_IFTYPE_AP:
1182 if (!vif->p2p)
1183 return iwl_mvm_mac_ctxt_cmd_ap(mvm, vif, action);
1184 else
1185 return iwl_mvm_mac_ctxt_cmd_go(mvm, vif, action);
1186 break;
1187 case NL80211_IFTYPE_MONITOR:
1188 return iwl_mvm_mac_ctxt_cmd_listener(mvm, vif, action);
1189 case NL80211_IFTYPE_P2P_DEVICE:
1190 return iwl_mvm_mac_ctxt_cmd_p2p_device(mvm, vif, action);
1191 case NL80211_IFTYPE_ADHOC:
1192 return iwl_mvm_mac_ctxt_cmd_ibss(mvm, vif, action);
1193 default:
1194 break;
1195 }
1196
1197 return -EOPNOTSUPP;
1198}
1199
1200int iwl_mvm_mac_ctxt_add(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1201{
1202 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1203 int ret;
1204
1205 if (WARN_ONCE(mvmvif->uploaded, "Adding active MAC %pM/%d\n",
1206 vif->addr, ieee80211_vif_type_p2p(vif)))
1207 return -EIO;
1208
1209 ret = iwl_mvm_mac_ctx_send(mvm, vif, FW_CTXT_ACTION_ADD,
1210 true, NULL);
1211 if (ret)
1212 return ret;
1213
1214
1215 iwl_mvm_set_last_nonqos_seq(mvm, vif);
1216
1217 mvmvif->uploaded = true;
1218 return 0;
1219}
1220
1221int iwl_mvm_mac_ctxt_changed(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1222 bool force_assoc_off, const u8 *bssid_override)
1223{
1224 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1225
1226 if (WARN_ONCE(!mvmvif->uploaded, "Changing inactive MAC %pM/%d\n",
1227 vif->addr, ieee80211_vif_type_p2p(vif)))
1228 return -EIO;
1229
1230 return iwl_mvm_mac_ctx_send(mvm, vif, FW_CTXT_ACTION_MODIFY,
1231 force_assoc_off, bssid_override);
1232}
1233
1234int iwl_mvm_mac_ctxt_remove(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1235{
1236 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1237 struct iwl_mac_ctx_cmd cmd;
1238 int ret;
1239
1240 if (WARN_ONCE(!mvmvif->uploaded, "Removing inactive MAC %pM/%d\n",
1241 vif->addr, ieee80211_vif_type_p2p(vif)))
1242 return -EIO;
1243
1244 memset(&cmd, 0, sizeof(cmd));
1245
1246 cmd.id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
1247 mvmvif->color));
1248 cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
1249
1250 ret = iwl_mvm_send_cmd_pdu(mvm, MAC_CONTEXT_CMD, 0,
1251 sizeof(cmd), &cmd);
1252 if (ret) {
1253 IWL_ERR(mvm, "Failed to remove MAC context: %d\n", ret);
1254 return ret;
1255 }
1256
1257 mvmvif->uploaded = false;
1258
1259 if (vif->type == NL80211_IFTYPE_MONITOR)
1260 mvm->hw->flags &= ~IEEE80211_HW_RX_INCLUDES_FCS;
1261
1262 return 0;
1263}
1264
1265static void iwl_mvm_csa_count_down(struct iwl_mvm *mvm,
1266 struct ieee80211_vif *csa_vif, u32 gp2,
1267 bool tx_success)
1268{
1269 struct iwl_mvm_vif *mvmvif =
1270 iwl_mvm_vif_from_mac80211(csa_vif);
1271
1272
1273 if (!tx_success && !mvmvif->csa_countdown)
1274 return;
1275
1276 mvmvif->csa_countdown = true;
1277
1278 if (!ieee80211_csa_is_complete(csa_vif)) {
1279 int c = ieee80211_csa_update_counter(csa_vif);
1280
1281 iwl_mvm_mac_ctxt_beacon_changed(mvm, csa_vif);
1282 if (csa_vif->p2p &&
1283 !iwl_mvm_te_scheduled(&mvmvif->time_event_data) && gp2 &&
1284 tx_success) {
1285 u32 rel_time = (c + 1) *
1286 csa_vif->bss_conf.beacon_int -
1287 IWL_MVM_CHANNEL_SWITCH_TIME_GO;
1288 u32 apply_time = gp2 + rel_time * 1024;
1289
1290 iwl_mvm_schedule_csa_period(mvm, csa_vif,
1291 IWL_MVM_CHANNEL_SWITCH_TIME_GO -
1292 IWL_MVM_CHANNEL_SWITCH_MARGIN,
1293 apply_time);
1294 }
1295 } else if (!iwl_mvm_te_scheduled(&mvmvif->time_event_data)) {
1296
1297 ieee80211_csa_finish(csa_vif);
1298 RCU_INIT_POINTER(mvm->csa_vif, NULL);
1299 }
1300}
1301
1302int iwl_mvm_rx_beacon_notif(struct iwl_mvm *mvm,
1303 struct iwl_rx_cmd_buffer *rxb,
1304 struct iwl_device_cmd *cmd)
1305{
1306 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1307 struct iwl_extended_beacon_notif *beacon = (void *)pkt->data;
1308 struct iwl_mvm_tx_resp *beacon_notify_hdr;
1309 struct ieee80211_vif *csa_vif;
1310 struct ieee80211_vif *tx_blocked_vif;
1311 u16 status;
1312
1313 lockdep_assert_held(&mvm->mutex);
1314
1315 beacon_notify_hdr = &beacon->beacon_notify_hdr;
1316 mvm->ap_last_beacon_gp2 = le32_to_cpu(beacon->gp2);
1317
1318 status = le16_to_cpu(beacon_notify_hdr->status.status) & TX_STATUS_MSK;
1319 IWL_DEBUG_RX(mvm,
1320 "beacon status %#x retries:%d tsf:0x%16llX gp2:0x%X rate:%d\n",
1321 status, beacon_notify_hdr->failure_frame,
1322 le64_to_cpu(beacon->tsf),
1323 mvm->ap_last_beacon_gp2,
1324 le32_to_cpu(beacon_notify_hdr->initial_rate));
1325
1326 csa_vif = rcu_dereference_protected(mvm->csa_vif,
1327 lockdep_is_held(&mvm->mutex));
1328 if (unlikely(csa_vif && csa_vif->csa_active))
1329 iwl_mvm_csa_count_down(mvm, csa_vif, mvm->ap_last_beacon_gp2,
1330 (status == TX_STATUS_SUCCESS));
1331
1332 tx_blocked_vif = rcu_dereference_protected(mvm->csa_tx_blocked_vif,
1333 lockdep_is_held(&mvm->mutex));
1334 if (unlikely(tx_blocked_vif)) {
1335 struct iwl_mvm_vif *mvmvif =
1336 iwl_mvm_vif_from_mac80211(tx_blocked_vif);
1337
1338
1339
1340
1341
1342
1343 if (!mvm->csa_tx_block_bcn_timeout)
1344 mvm->csa_tx_block_bcn_timeout =
1345 IWL_MVM_CS_UNBLOCK_TX_TIMEOUT;
1346 else
1347 mvm->csa_tx_block_bcn_timeout--;
1348
1349
1350 if (mvm->csa_tx_block_bcn_timeout == 0) {
1351 iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, false);
1352 RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL);
1353 }
1354 }
1355
1356 return 0;
1357}
1358
1359static void iwl_mvm_beacon_loss_iterator(void *_data, u8 *mac,
1360 struct ieee80211_vif *vif)
1361{
1362 struct iwl_missed_beacons_notif *missed_beacons = _data;
1363 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1364
1365 if (mvmvif->id != (u16)le32_to_cpu(missed_beacons->mac_id))
1366 return;
1367
1368
1369
1370
1371
1372 if (le32_to_cpu(missed_beacons->consec_missed_beacons_since_last_rx) >
1373 IWL_MVM_MISSED_BEACONS_THRESHOLD)
1374 ieee80211_beacon_loss(vif);
1375}
1376
1377int iwl_mvm_rx_missed_beacons_notif(struct iwl_mvm *mvm,
1378 struct iwl_rx_cmd_buffer *rxb,
1379 struct iwl_device_cmd *cmd)
1380{
1381 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1382 struct iwl_missed_beacons_notif *mb = (void *)pkt->data;
1383
1384 IWL_DEBUG_INFO(mvm,
1385 "missed bcn mac_id=%u, consecutive=%u (%u, %u, %u)\n",
1386 le32_to_cpu(mb->mac_id),
1387 le32_to_cpu(mb->consec_missed_beacons),
1388 le32_to_cpu(mb->consec_missed_beacons_since_last_rx),
1389 le32_to_cpu(mb->num_recvd_beacons),
1390 le32_to_cpu(mb->num_expected_beacons));
1391
1392 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
1393 IEEE80211_IFACE_ITER_NORMAL,
1394 iwl_mvm_beacon_loss_iterator,
1395 mb);
1396 return 0;
1397}
1398