1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2 /*
3  * Copyright (C) 2012-2014, 2018-2022 Intel Corporation
4  * Copyright (C) 2013-2014 Intel Mobile Communications GmbH
5  * Copyright (C) 2015-2017 Intel Deutschland GmbH
6  */
7 #include <net/mac80211.h>
8 
9 #include "iwl-debug.h"
10 #include "iwl-io.h"
11 #include "iwl-prph.h"
12 #include "iwl-csr.h"
13 #include "mvm.h"
14 #include "fw/api/rs.h"
15 #include "fw/img.h"
16 
17 /*
18  * Will return 0 even if the cmd failed when RFKILL is asserted unless
19  * CMD_WANT_SKB is set in cmd->flags.
20  */
21 int iwl_mvm_send_cmd(struct iwl_mvm *mvm, struct iwl_host_cmd *cmd)
22 {
23 	int ret;
24 
25 #if defined(CONFIG_IWLWIFI_DEBUGFS) && defined(CONFIG_PM_SLEEP)
26 	if (WARN_ON(mvm->d3_test_active))
27 		return -EIO;
28 #endif
29 
30 	/*
31 	 * Synchronous commands from this op-mode must hold
32 	 * the mutex, this ensures we don't try to send two
33 	 * (or more) synchronous commands at a time.
34 	 */
35 	if (!(cmd->flags & CMD_ASYNC))
36 		lockdep_assert_held(&mvm->mutex);
37 
38 	ret = iwl_trans_send_cmd(mvm->trans, cmd);
39 
40 	/*
41 	 * If the caller wants the SKB, then don't hide any problems, the
42 	 * caller might access the response buffer which will be NULL if
43 	 * the command failed.
44 	 */
45 	if (cmd->flags & CMD_WANT_SKB)
46 		return ret;
47 
48 	/*
49 	 * Silently ignore failures if RFKILL is asserted or
50 	 * we are in suspend\resume process
51 	 */
52 	if (!ret || ret == -ERFKILL || ret == -EHOSTDOWN)
53 		return 0;
54 	return ret;
55 }
56 
57 int iwl_mvm_send_cmd_pdu(struct iwl_mvm *mvm, u32 id,
58 			 u32 flags, u16 len, const void *data)
59 {
60 	struct iwl_host_cmd cmd = {
61 		.id = id,
62 		.len = { len, },
63 		.data = { data, },
64 		.flags = flags,
65 	};
66 
67 	return iwl_mvm_send_cmd(mvm, &cmd);
68 }
69 
70 /*
71  * We assume that the caller set the status to the success value
72  */
73 int iwl_mvm_send_cmd_status(struct iwl_mvm *mvm, struct iwl_host_cmd *cmd,
74 			    u32 *status)
75 {
76 	struct iwl_rx_packet *pkt;
77 	struct iwl_cmd_response *resp;
78 	int ret, resp_len;
79 
80 	lockdep_assert_held(&mvm->mutex);
81 
82 #if defined(CONFIG_IWLWIFI_DEBUGFS) && defined(CONFIG_PM_SLEEP)
83 	if (WARN_ON(mvm->d3_test_active))
84 		return -EIO;
85 #endif
86 
87 	/*
88 	 * Only synchronous commands can wait for status,
89 	 * we use WANT_SKB so the caller can't.
90 	 */
91 	if (WARN_ONCE(cmd->flags & (CMD_ASYNC | CMD_WANT_SKB),
92 		      "cmd flags %x", cmd->flags))
93 		return -EINVAL;
94 
95 	cmd->flags |= CMD_WANT_SKB;
96 
97 	ret = iwl_trans_send_cmd(mvm->trans, cmd);
98 	if (ret == -ERFKILL) {
99 		/*
100 		 * The command failed because of RFKILL, don't update
101 		 * the status, leave it as success and return 0.
102 		 */
103 		return 0;
104 	} else if (ret) {
105 		return ret;
106 	}
107 
108 	pkt = cmd->resp_pkt;
109 
110 	resp_len = iwl_rx_packet_payload_len(pkt);
111 	if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
112 		ret = -EIO;
113 		goto out_free_resp;
114 	}
115 
116 	resp = (void *)pkt->data;
117 	*status = le32_to_cpu(resp->status);
118  out_free_resp:
119 	iwl_free_resp(cmd);
120 	return ret;
121 }
122 
123 /*
124  * We assume that the caller set the status to the sucess value
125  */
126 int iwl_mvm_send_cmd_pdu_status(struct iwl_mvm *mvm, u32 id, u16 len,
127 				const void *data, u32 *status)
128 {
129 	struct iwl_host_cmd cmd = {
130 		.id = id,
131 		.len = { len, },
132 		.data = { data, },
133 	};
134 
135 	return iwl_mvm_send_cmd_status(mvm, &cmd, status);
136 }
137 
138 int iwl_mvm_legacy_hw_idx_to_mac80211_idx(u32 rate_n_flags,
139 					  enum nl80211_band band)
140 {
141 	int format = rate_n_flags & RATE_MCS_MOD_TYPE_MSK;
142 	int rate = rate_n_flags & RATE_LEGACY_RATE_MSK;
143 	bool is_LB = band == NL80211_BAND_2GHZ;
144 
145 	if (format == RATE_MCS_LEGACY_OFDM_MSK)
146 		return is_LB ? rate + IWL_FIRST_OFDM_RATE :
147 			rate;
148 
149 	/* CCK is not allowed in HB */
150 	return is_LB ? rate : -1;
151 }
152 
153 int iwl_mvm_legacy_rate_to_mac80211_idx(u32 rate_n_flags,
154 					enum nl80211_band band)
155 {
156 	int rate = rate_n_flags & RATE_LEGACY_RATE_MSK_V1;
157 	int idx;
158 	int band_offset = 0;
159 
160 	/* Legacy rate format, search for match in table */
161 	if (band != NL80211_BAND_2GHZ)
162 		band_offset = IWL_FIRST_OFDM_RATE;
163 	for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++)
164 		if (iwl_fw_rate_idx_to_plcp(idx) == rate)
165 			return idx - band_offset;
166 
167 	return -1;
168 }
169 
170 u8 iwl_mvm_mac80211_idx_to_hwrate(const struct iwl_fw *fw, int rate_idx)
171 {
172 	if (iwl_fw_lookup_cmd_ver(fw, TX_CMD, 0) > 8)
173 		/* In the new rate legacy rates are indexed:
174 		 * 0 - 3 for CCK and 0 - 7 for OFDM.
175 		 */
176 		return (rate_idx >= IWL_FIRST_OFDM_RATE ?
177 			rate_idx - IWL_FIRST_OFDM_RATE :
178 			rate_idx);
179 
180 	return iwl_fw_rate_idx_to_plcp(rate_idx);
181 }
182 
183 u8 iwl_mvm_mac80211_ac_to_ucode_ac(enum ieee80211_ac_numbers ac)
184 {
185 	static const u8 mac80211_ac_to_ucode_ac[] = {
186 		AC_VO,
187 		AC_VI,
188 		AC_BE,
189 		AC_BK
190 	};
191 
192 	return mac80211_ac_to_ucode_ac[ac];
193 }
194 
195 void iwl_mvm_rx_fw_error(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
196 {
197 	struct iwl_rx_packet *pkt = rxb_addr(rxb);
198 	struct iwl_error_resp *err_resp = (void *)pkt->data;
199 
200 	IWL_ERR(mvm, "FW Error notification: type 0x%08X cmd_id 0x%02X\n",
201 		le32_to_cpu(err_resp->error_type), err_resp->cmd_id);
202 	IWL_ERR(mvm, "FW Error notification: seq 0x%04X service 0x%08X\n",
203 		le16_to_cpu(err_resp->bad_cmd_seq_num),
204 		le32_to_cpu(err_resp->error_service));
205 	IWL_ERR(mvm, "FW Error notification: timestamp 0x%016llX\n",
206 		le64_to_cpu(err_resp->timestamp));
207 }
208 
209 /*
210  * Returns the first antenna as ANT_[ABC], as defined in iwl-config.h.
211  * The parameter should also be a combination of ANT_[ABC].
212  */
213 u8 first_antenna(u8 mask)
214 {
215 	BUILD_BUG_ON(ANT_A != BIT(0)); /* using ffs is wrong if not */
216 	if (WARN_ON_ONCE(!mask)) /* ffs will return 0 if mask is zeroed */
217 		return BIT(0);
218 	return BIT(ffs(mask) - 1);
219 }
220 
221 #define MAX_ANT_NUM 2
222 /*
223  * Toggles between TX antennas to send the probe request on.
224  * Receives the bitmask of valid TX antennas and the *index* used
225  * for the last TX, and returns the next valid *index* to use.
226  * In order to set it in the tx_cmd, must do BIT(idx).
227  */
228 u8 iwl_mvm_next_antenna(struct iwl_mvm *mvm, u8 valid, u8 last_idx)
229 {
230 	u8 ind = last_idx;
231 	int i;
232 
233 	for (i = 0; i < MAX_ANT_NUM; i++) {
234 		ind = (ind + 1) % MAX_ANT_NUM;
235 		if (valid & BIT(ind))
236 			return ind;
237 	}
238 
239 	WARN_ONCE(1, "Failed to toggle between antennas 0x%x", valid);
240 	return last_idx;
241 }
242 
243 /**
244  * iwl_mvm_send_lq_cmd() - Send link quality command
245  * @mvm: Driver data.
246  * @lq: Link quality command to send.
247  *
248  * The link quality command is sent as the last step of station creation.
249  * This is the special case in which init is set and we call a callback in
250  * this case to clear the state indicating that station creation is in
251  * progress.
252  */
253 int iwl_mvm_send_lq_cmd(struct iwl_mvm *mvm, struct iwl_lq_cmd *lq)
254 {
255 	struct iwl_host_cmd cmd = {
256 		.id = LQ_CMD,
257 		.len = { sizeof(struct iwl_lq_cmd), },
258 		.flags = CMD_ASYNC,
259 		.data = { lq, },
260 	};
261 
262 	if (WARN_ON(lq->sta_id == IWL_MVM_INVALID_STA ||
263 		    iwl_mvm_has_tlc_offload(mvm)))
264 		return -EINVAL;
265 
266 	return iwl_mvm_send_cmd(mvm, &cmd);
267 }
268 
269 /**
270  * iwl_mvm_update_smps - Get a request to change the SMPS mode
271  * @mvm: Driver data.
272  * @vif: Pointer to the ieee80211_vif structure
273  * @req_type: The part of the driver who call for a change.
274  * @smps_request: The request to change the SMPS mode.
275  * @link_id: for MLO link_id, otherwise 0 (deflink)
276  *
277  * Get a requst to change the SMPS mode,
278  * and change it according to all other requests in the driver.
279  */
280 void iwl_mvm_update_smps(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
281 			 enum iwl_mvm_smps_type_request req_type,
282 			 enum ieee80211_smps_mode smps_request,
283 			 unsigned int link_id)
284 {
285 	struct iwl_mvm_vif *mvmvif;
286 	enum ieee80211_smps_mode smps_mode = IEEE80211_SMPS_AUTOMATIC;
287 	int i;
288 
289 	lockdep_assert_held(&mvm->mutex);
290 
291 	/* SMPS is irrelevant for NICs that don't have at least 2 RX antenna */
292 	if (num_of_ant(iwl_mvm_get_valid_rx_ant(mvm)) == 1)
293 		return;
294 
295 	if (vif->type != NL80211_IFTYPE_STATION)
296 		return;
297 
298 	mvmvif = iwl_mvm_vif_from_mac80211(vif);
299 
300 	if (WARN_ON_ONCE(!mvmvif->link[link_id]))
301 		return;
302 
303 	mvmvif->link[link_id]->smps_requests[req_type] = smps_request;
304 	for (i = 0; i < NUM_IWL_MVM_SMPS_REQ; i++) {
305 		if (mvmvif->link[link_id]->smps_requests[i] ==
306 		    IEEE80211_SMPS_STATIC) {
307 			smps_mode = IEEE80211_SMPS_STATIC;
308 			break;
309 		}
310 		if (mvmvif->link[link_id]->smps_requests[i] ==
311 		    IEEE80211_SMPS_DYNAMIC)
312 			smps_mode = IEEE80211_SMPS_DYNAMIC;
313 	}
314 
315 	ieee80211_request_smps(vif, link_id, smps_mode);
316 }
317 
318 void iwl_mvm_update_smps_on_active_links(struct iwl_mvm *mvm,
319 					 struct ieee80211_vif *vif,
320 					 enum iwl_mvm_smps_type_request req_type,
321 					 enum ieee80211_smps_mode smps_request)
322 {
323 	struct ieee80211_bss_conf *link_conf;
324 	unsigned int link_id;
325 
326 	rcu_read_lock();
327 	for_each_vif_active_link(vif, link_conf, link_id)
328 		iwl_mvm_update_smps(mvm, vif, req_type, smps_request,
329 				    link_id);
330 	rcu_read_unlock();
331 }
332 
333 static bool iwl_wait_stats_complete(struct iwl_notif_wait_data *notif_wait,
334 				    struct iwl_rx_packet *pkt, void *data)
335 {
336 	WARN_ON(pkt->hdr.cmd != STATISTICS_NOTIFICATION);
337 
338 	return true;
339 }
340 
341 int iwl_mvm_request_statistics(struct iwl_mvm *mvm, bool clear)
342 {
343 	struct iwl_statistics_cmd scmd = {
344 		.flags = clear ? cpu_to_le32(IWL_STATISTICS_FLG_CLEAR) : 0,
345 	};
346 
347 	struct iwl_host_cmd cmd = {
348 		.id = STATISTICS_CMD,
349 		.len[0] = sizeof(scmd),
350 		.data[0] = &scmd,
351 	};
352 	int ret;
353 
354 	/* From version 15 - STATISTICS_NOTIFICATION, the reply for
355 	 * STATISTICS_CMD is empty, and the response is with
356 	 * STATISTICS_NOTIFICATION notification
357 	 */
358 	if (iwl_fw_lookup_notif_ver(mvm->fw, LEGACY_GROUP,
359 				    STATISTICS_NOTIFICATION, 0) < 15) {
360 		cmd.flags = CMD_WANT_SKB;
361 
362 		ret = iwl_mvm_send_cmd(mvm, &cmd);
363 		if (ret)
364 			return ret;
365 
366 		iwl_mvm_handle_rx_statistics(mvm, cmd.resp_pkt);
367 		iwl_free_resp(&cmd);
368 	} else {
369 		struct iwl_notification_wait stats_wait;
370 		static const u16 stats_complete[] = {
371 			STATISTICS_NOTIFICATION,
372 		};
373 
374 		iwl_init_notification_wait(&mvm->notif_wait, &stats_wait,
375 					   stats_complete, ARRAY_SIZE(stats_complete),
376 					   iwl_wait_stats_complete, NULL);
377 
378 		ret = iwl_mvm_send_cmd(mvm, &cmd);
379 		if (ret) {
380 			iwl_remove_notification(&mvm->notif_wait, &stats_wait);
381 			return ret;
382 		}
383 
384 		/* 200ms should be enough for FW to collect data from all
385 		 * LMACs and send STATISTICS_NOTIFICATION to host
386 		 */
387 		ret = iwl_wait_notification(&mvm->notif_wait, &stats_wait, HZ / 5);
388 		if (ret)
389 			return ret;
390 	}
391 
392 	if (clear)
393 		iwl_mvm_accu_radio_stats(mvm);
394 
395 	return 0;
396 }
397 
398 void iwl_mvm_accu_radio_stats(struct iwl_mvm *mvm)
399 {
400 	mvm->accu_radio_stats.rx_time += mvm->radio_stats.rx_time;
401 	mvm->accu_radio_stats.tx_time += mvm->radio_stats.tx_time;
402 	mvm->accu_radio_stats.on_time_rf += mvm->radio_stats.on_time_rf;
403 	mvm->accu_radio_stats.on_time_scan += mvm->radio_stats.on_time_scan;
404 }
405 
406 struct iwl_mvm_diversity_iter_data {
407 	struct iwl_mvm_phy_ctxt *ctxt;
408 	bool result;
409 };
410 
411 static void iwl_mvm_diversity_iter(void *_data, u8 *mac,
412 				   struct ieee80211_vif *vif)
413 {
414 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
415 	struct iwl_mvm_diversity_iter_data *data = _data;
416 	int i, link_id;
417 
418 	for_each_mvm_vif_valid_link(mvmvif, link_id) {
419 		struct iwl_mvm_vif_link_info *link_info = mvmvif->link[link_id];
420 
421 		if (link_info->phy_ctxt != data->ctxt)
422 			continue;
423 
424 		for (i = 0; i < NUM_IWL_MVM_SMPS_REQ; i++) {
425 			if (link_info->smps_requests[i] == IEEE80211_SMPS_STATIC ||
426 			    link_info->smps_requests[i] == IEEE80211_SMPS_DYNAMIC) {
427 				data->result = false;
428 				break;
429 			}
430 		}
431 	}
432 }
433 
434 bool iwl_mvm_rx_diversity_allowed(struct iwl_mvm *mvm,
435 				  struct iwl_mvm_phy_ctxt *ctxt)
436 {
437 	struct iwl_mvm_diversity_iter_data data = {
438 		.ctxt = ctxt,
439 		.result = true,
440 	};
441 
442 	lockdep_assert_held(&mvm->mutex);
443 
444 	if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM)
445 		return false;
446 
447 	if (num_of_ant(iwl_mvm_get_valid_rx_ant(mvm)) == 1)
448 		return false;
449 
450 	if (mvm->cfg->rx_with_siso_diversity)
451 		return false;
452 
453 	ieee80211_iterate_active_interfaces_atomic(
454 			mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
455 			iwl_mvm_diversity_iter, &data);
456 
457 	return data.result;
458 }
459 
460 void iwl_mvm_send_low_latency_cmd(struct iwl_mvm *mvm,
461 				  bool low_latency, u16 mac_id)
462 {
463 	struct iwl_mac_low_latency_cmd cmd = {
464 		.mac_id = cpu_to_le32(mac_id)
465 	};
466 
467 	if (!fw_has_capa(&mvm->fw->ucode_capa,
468 			 IWL_UCODE_TLV_CAPA_DYNAMIC_QUOTA))
469 		return;
470 
471 	if (low_latency) {
472 		/* currently we don't care about the direction */
473 		cmd.low_latency_rx = 1;
474 		cmd.low_latency_tx = 1;
475 	}
476 
477 	if (iwl_mvm_send_cmd_pdu(mvm, WIDE_ID(MAC_CONF_GROUP, LOW_LATENCY_CMD),
478 				 0, sizeof(cmd), &cmd))
479 		IWL_ERR(mvm, "Failed to send low latency command\n");
480 }
481 
482 int iwl_mvm_update_low_latency(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
483 			       bool low_latency,
484 			       enum iwl_mvm_low_latency_cause cause)
485 {
486 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
487 	int res;
488 	bool prev;
489 
490 	lockdep_assert_held(&mvm->mutex);
491 
492 	prev = iwl_mvm_vif_low_latency(mvmvif);
493 	iwl_mvm_vif_set_low_latency(mvmvif, low_latency, cause);
494 
495 	low_latency = iwl_mvm_vif_low_latency(mvmvif);
496 
497 	if (low_latency == prev)
498 		return 0;
499 
500 	iwl_mvm_send_low_latency_cmd(mvm, low_latency, mvmvif->id);
501 
502 	res = iwl_mvm_update_quotas(mvm, false, NULL);
503 	if (res)
504 		return res;
505 
506 	iwl_mvm_bt_coex_vif_change(mvm);
507 
508 	return iwl_mvm_power_update_mac(mvm);
509 }
510 
511 struct iwl_mvm_low_latency_iter {
512 	bool result;
513 	bool result_per_band[NUM_NL80211_BANDS];
514 };
515 
516 static void iwl_mvm_ll_iter(void *_data, u8 *mac, struct ieee80211_vif *vif)
517 {
518 	struct iwl_mvm_low_latency_iter *result = _data;
519 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
520 	enum nl80211_band band;
521 
522 	if (iwl_mvm_vif_low_latency(mvmvif)) {
523 		result->result = true;
524 
525 		if (!mvmvif->deflink.phy_ctxt)
526 			return;
527 
528 		band = mvmvif->deflink.phy_ctxt->channel->band;
529 		result->result_per_band[band] = true;
530 	}
531 }
532 
533 bool iwl_mvm_low_latency(struct iwl_mvm *mvm)
534 {
535 	struct iwl_mvm_low_latency_iter data = {};
536 
537 	ieee80211_iterate_active_interfaces_atomic(
538 			mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
539 			iwl_mvm_ll_iter, &data);
540 
541 	return data.result;
542 }
543 
544 bool iwl_mvm_low_latency_band(struct iwl_mvm *mvm, enum nl80211_band band)
545 {
546 	struct iwl_mvm_low_latency_iter data = {};
547 
548 	ieee80211_iterate_active_interfaces_atomic(
549 			mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
550 			iwl_mvm_ll_iter, &data);
551 
552 	return data.result_per_band[band];
553 }
554 
555 struct iwl_bss_iter_data {
556 	struct ieee80211_vif *vif;
557 	bool error;
558 };
559 
560 static void iwl_mvm_bss_iface_iterator(void *_data, u8 *mac,
561 				       struct ieee80211_vif *vif)
562 {
563 	struct iwl_bss_iter_data *data = _data;
564 
565 	if (vif->type != NL80211_IFTYPE_STATION || vif->p2p)
566 		return;
567 
568 	if (data->vif) {
569 		data->error = true;
570 		return;
571 	}
572 
573 	data->vif = vif;
574 }
575 
576 struct ieee80211_vif *iwl_mvm_get_bss_vif(struct iwl_mvm *mvm)
577 {
578 	struct iwl_bss_iter_data bss_iter_data = {};
579 
580 	ieee80211_iterate_active_interfaces_atomic(
581 		mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
582 		iwl_mvm_bss_iface_iterator, &bss_iter_data);
583 
584 	if (bss_iter_data.error) {
585 		IWL_ERR(mvm, "More than one managed interface active!\n");
586 		return ERR_PTR(-EINVAL);
587 	}
588 
589 	return bss_iter_data.vif;
590 }
591 
592 struct iwl_bss_find_iter_data {
593 	struct ieee80211_vif *vif;
594 	u32 macid;
595 };
596 
597 static void iwl_mvm_bss_find_iface_iterator(void *_data, u8 *mac,
598 					    struct ieee80211_vif *vif)
599 {
600 	struct iwl_bss_find_iter_data *data = _data;
601 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
602 
603 	if (mvmvif->id == data->macid)
604 		data->vif = vif;
605 }
606 
607 struct ieee80211_vif *iwl_mvm_get_vif_by_macid(struct iwl_mvm *mvm, u32 macid)
608 {
609 	struct iwl_bss_find_iter_data data = {
610 		.macid = macid,
611 	};
612 
613 	lockdep_assert_held(&mvm->mutex);
614 
615 	ieee80211_iterate_active_interfaces_atomic(
616 		mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
617 		iwl_mvm_bss_find_iface_iterator, &data);
618 
619 	return data.vif;
620 }
621 
622 struct iwl_sta_iter_data {
623 	bool assoc;
624 };
625 
626 static void iwl_mvm_sta_iface_iterator(void *_data, u8 *mac,
627 				       struct ieee80211_vif *vif)
628 {
629 	struct iwl_sta_iter_data *data = _data;
630 
631 	if (vif->type != NL80211_IFTYPE_STATION)
632 		return;
633 
634 	if (vif->cfg.assoc)
635 		data->assoc = true;
636 }
637 
638 bool iwl_mvm_is_vif_assoc(struct iwl_mvm *mvm)
639 {
640 	struct iwl_sta_iter_data data = {
641 		.assoc = false,
642 	};
643 
644 	ieee80211_iterate_active_interfaces_atomic(mvm->hw,
645 						   IEEE80211_IFACE_ITER_NORMAL,
646 						   iwl_mvm_sta_iface_iterator,
647 						   &data);
648 	return data.assoc;
649 }
650 
651 unsigned int iwl_mvm_get_wd_timeout(struct iwl_mvm *mvm,
652 				    struct ieee80211_vif *vif,
653 				    bool tdls, bool cmd_q)
654 {
655 	struct iwl_fw_dbg_trigger_tlv *trigger;
656 	struct iwl_fw_dbg_trigger_txq_timer *txq_timer;
657 	unsigned int default_timeout = cmd_q ?
658 		IWL_DEF_WD_TIMEOUT :
659 		mvm->trans->trans_cfg->base_params->wd_timeout;
660 
661 	if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TXQ_TIMERS)) {
662 		/*
663 		 * We can't know when the station is asleep or awake, so we
664 		 * must disable the queue hang detection.
665 		 */
666 		if (fw_has_capa(&mvm->fw->ucode_capa,
667 				IWL_UCODE_TLV_CAPA_STA_PM_NOTIF) &&
668 		    vif && vif->type == NL80211_IFTYPE_AP)
669 			return IWL_WATCHDOG_DISABLED;
670 		return default_timeout;
671 	}
672 
673 	trigger = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TXQ_TIMERS);
674 	txq_timer = (void *)trigger->data;
675 
676 	if (tdls)
677 		return le32_to_cpu(txq_timer->tdls);
678 
679 	if (cmd_q)
680 		return le32_to_cpu(txq_timer->command_queue);
681 
682 	if (WARN_ON(!vif))
683 		return default_timeout;
684 
685 	switch (ieee80211_vif_type_p2p(vif)) {
686 	case NL80211_IFTYPE_ADHOC:
687 		return le32_to_cpu(txq_timer->ibss);
688 	case NL80211_IFTYPE_STATION:
689 		return le32_to_cpu(txq_timer->bss);
690 	case NL80211_IFTYPE_AP:
691 		return le32_to_cpu(txq_timer->softap);
692 	case NL80211_IFTYPE_P2P_CLIENT:
693 		return le32_to_cpu(txq_timer->p2p_client);
694 	case NL80211_IFTYPE_P2P_GO:
695 		return le32_to_cpu(txq_timer->p2p_go);
696 	case NL80211_IFTYPE_P2P_DEVICE:
697 		return le32_to_cpu(txq_timer->p2p_device);
698 	case NL80211_IFTYPE_MONITOR:
699 		return default_timeout;
700 	default:
701 		WARN_ON(1);
702 		return mvm->trans->trans_cfg->base_params->wd_timeout;
703 	}
704 }
705 
706 void iwl_mvm_connection_loss(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
707 			     const char *errmsg)
708 {
709 	struct iwl_fw_dbg_trigger_tlv *trig;
710 	struct iwl_fw_dbg_trigger_mlme *trig_mlme;
711 
712 	trig = iwl_fw_dbg_trigger_on(&mvm->fwrt, ieee80211_vif_to_wdev(vif),
713 				     FW_DBG_TRIGGER_MLME);
714 	if (!trig)
715 		goto out;
716 
717 	trig_mlme = (void *)trig->data;
718 
719 	if (trig_mlme->stop_connection_loss &&
720 	    --trig_mlme->stop_connection_loss)
721 		goto out;
722 
723 	iwl_fw_dbg_collect_trig(&mvm->fwrt, trig, "%s", errmsg);
724 
725 out:
726 	ieee80211_connection_loss(vif);
727 }
728 
729 void iwl_mvm_event_frame_timeout_callback(struct iwl_mvm *mvm,
730 					  struct ieee80211_vif *vif,
731 					  const struct ieee80211_sta *sta,
732 					  u16 tid)
733 {
734 	struct iwl_fw_dbg_trigger_tlv *trig;
735 	struct iwl_fw_dbg_trigger_ba *ba_trig;
736 
737 	trig = iwl_fw_dbg_trigger_on(&mvm->fwrt, ieee80211_vif_to_wdev(vif),
738 				     FW_DBG_TRIGGER_BA);
739 	if (!trig)
740 		return;
741 
742 	ba_trig = (void *)trig->data;
743 
744 	if (!(le16_to_cpu(ba_trig->frame_timeout) & BIT(tid)))
745 		return;
746 
747 	iwl_fw_dbg_collect_trig(&mvm->fwrt, trig,
748 				"Frame from %pM timed out, tid %d",
749 				sta->addr, tid);
750 }
751 
752 u8 iwl_mvm_tcm_load_percentage(u32 airtime, u32 elapsed)
753 {
754 	if (!elapsed)
755 		return 0;
756 
757 	return (100 * airtime / elapsed) / USEC_PER_MSEC;
758 }
759 
760 static enum iwl_mvm_traffic_load
761 iwl_mvm_tcm_load(struct iwl_mvm *mvm, u32 airtime, unsigned long elapsed)
762 {
763 	u8 load = iwl_mvm_tcm_load_percentage(airtime, elapsed);
764 
765 	if (load > IWL_MVM_TCM_LOAD_HIGH_THRESH)
766 		return IWL_MVM_TRAFFIC_HIGH;
767 	if (load > IWL_MVM_TCM_LOAD_MEDIUM_THRESH)
768 		return IWL_MVM_TRAFFIC_MEDIUM;
769 
770 	return IWL_MVM_TRAFFIC_LOW;
771 }
772 
773 static void iwl_mvm_tcm_iter(void *_data, u8 *mac, struct ieee80211_vif *vif)
774 {
775 	struct iwl_mvm *mvm = _data;
776 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
777 	bool low_latency, prev = mvmvif->low_latency & LOW_LATENCY_TRAFFIC;
778 
779 	if (mvmvif->id >= NUM_MAC_INDEX_DRIVER)
780 		return;
781 
782 	low_latency = mvm->tcm.result.low_latency[mvmvif->id];
783 
784 	if (!mvm->tcm.result.change[mvmvif->id] &&
785 	    prev == low_latency) {
786 		iwl_mvm_update_quotas(mvm, false, NULL);
787 		return;
788 	}
789 
790 	if (prev != low_latency) {
791 		/* this sends traffic load and updates quota as well */
792 		iwl_mvm_update_low_latency(mvm, vif, low_latency,
793 					   LOW_LATENCY_TRAFFIC);
794 	} else {
795 		iwl_mvm_update_quotas(mvm, false, NULL);
796 	}
797 }
798 
799 static void iwl_mvm_tcm_results(struct iwl_mvm *mvm)
800 {
801 	mutex_lock(&mvm->mutex);
802 
803 	ieee80211_iterate_active_interfaces(
804 		mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
805 		iwl_mvm_tcm_iter, mvm);
806 
807 	if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN))
808 		iwl_mvm_config_scan(mvm);
809 
810 	mutex_unlock(&mvm->mutex);
811 }
812 
813 static void iwl_mvm_tcm_uapsd_nonagg_detected_wk(struct work_struct *wk)
814 {
815 	struct iwl_mvm *mvm;
816 	struct iwl_mvm_vif *mvmvif;
817 	struct ieee80211_vif *vif;
818 
819 	mvmvif = container_of(wk, struct iwl_mvm_vif,
820 			      uapsd_nonagg_detected_wk.work);
821 	vif = container_of((void *)mvmvif, struct ieee80211_vif, drv_priv);
822 	mvm = mvmvif->mvm;
823 
824 	if (mvm->tcm.data[mvmvif->id].opened_rx_ba_sessions)
825 		return;
826 
827 	/* remember that this AP is broken */
828 	memcpy(mvm->uapsd_noagg_bssids[mvm->uapsd_noagg_bssid_write_idx].addr,
829 	       vif->bss_conf.bssid, ETH_ALEN);
830 	mvm->uapsd_noagg_bssid_write_idx++;
831 	if (mvm->uapsd_noagg_bssid_write_idx >= IWL_MVM_UAPSD_NOAGG_LIST_LEN)
832 		mvm->uapsd_noagg_bssid_write_idx = 0;
833 
834 	iwl_mvm_connection_loss(mvm, vif,
835 				"AP isn't using AMPDU with uAPSD enabled");
836 }
837 
838 static void iwl_mvm_uapsd_agg_disconnect(struct iwl_mvm *mvm,
839 					 struct ieee80211_vif *vif)
840 {
841 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
842 
843 	if (vif->type != NL80211_IFTYPE_STATION)
844 		return;
845 
846 	if (!vif->cfg.assoc)
847 		return;
848 
849 	if (!mvmvif->deflink.queue_params[IEEE80211_AC_VO].uapsd &&
850 	    !mvmvif->deflink.queue_params[IEEE80211_AC_VI].uapsd &&
851 	    !mvmvif->deflink.queue_params[IEEE80211_AC_BE].uapsd &&
852 	    !mvmvif->deflink.queue_params[IEEE80211_AC_BK].uapsd)
853 		return;
854 
855 	if (mvm->tcm.data[mvmvif->id].uapsd_nonagg_detect.detected)
856 		return;
857 
858 	mvm->tcm.data[mvmvif->id].uapsd_nonagg_detect.detected = true;
859 	IWL_INFO(mvm,
860 		 "detected AP should do aggregation but isn't, likely due to U-APSD\n");
861 	schedule_delayed_work(&mvmvif->uapsd_nonagg_detected_wk,
862 			      15 * HZ);
863 }
864 
865 static void iwl_mvm_check_uapsd_agg_expected_tpt(struct iwl_mvm *mvm,
866 						 unsigned int elapsed,
867 						 int mac)
868 {
869 	u64 bytes = mvm->tcm.data[mac].uapsd_nonagg_detect.rx_bytes;
870 	u64 tpt;
871 	unsigned long rate;
872 	struct ieee80211_vif *vif;
873 
874 	rate = ewma_rate_read(&mvm->tcm.data[mac].uapsd_nonagg_detect.rate);
875 
876 	if (!rate || mvm->tcm.data[mac].opened_rx_ba_sessions ||
877 	    mvm->tcm.data[mac].uapsd_nonagg_detect.detected)
878 		return;
879 
880 	if (iwl_mvm_has_new_rx_api(mvm)) {
881 		tpt = 8 * bytes; /* kbps */
882 		do_div(tpt, elapsed);
883 		rate *= 1000; /* kbps */
884 		if (tpt < 22 * rate / 100)
885 			return;
886 	} else {
887 		/*
888 		 * the rate here is actually the threshold, in 100Kbps units,
889 		 * so do the needed conversion from bytes to 100Kbps:
890 		 * 100kb = bits / (100 * 1000),
891 		 * 100kbps = 100kb / (msecs / 1000) ==
892 		 *           (bits / (100 * 1000)) / (msecs / 1000) ==
893 		 *           bits / (100 * msecs)
894 		 */
895 		tpt = (8 * bytes);
896 		do_div(tpt, elapsed * 100);
897 		if (tpt < rate)
898 			return;
899 	}
900 
901 	rcu_read_lock();
902 	vif = rcu_dereference(mvm->vif_id_to_mac[mac]);
903 	if (vif)
904 		iwl_mvm_uapsd_agg_disconnect(mvm, vif);
905 	rcu_read_unlock();
906 }
907 
908 static void iwl_mvm_tcm_iterator(void *_data, u8 *mac,
909 				 struct ieee80211_vif *vif)
910 {
911 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
912 	u32 *band = _data;
913 
914 	if (!mvmvif->deflink.phy_ctxt)
915 		return;
916 
917 	band[mvmvif->id] = mvmvif->deflink.phy_ctxt->channel->band;
918 }
919 
920 static unsigned long iwl_mvm_calc_tcm_stats(struct iwl_mvm *mvm,
921 					    unsigned long ts,
922 					    bool handle_uapsd)
923 {
924 	unsigned int elapsed = jiffies_to_msecs(ts - mvm->tcm.ts);
925 	unsigned int uapsd_elapsed =
926 		jiffies_to_msecs(ts - mvm->tcm.uapsd_nonagg_ts);
927 	u32 total_airtime = 0;
928 	u32 band_airtime[NUM_NL80211_BANDS] = {0};
929 	u32 band[NUM_MAC_INDEX_DRIVER] = {0};
930 	int ac, mac, i;
931 	bool low_latency = false;
932 	enum iwl_mvm_traffic_load load, band_load;
933 	bool handle_ll = time_after(ts, mvm->tcm.ll_ts + MVM_LL_PERIOD);
934 
935 	if (handle_ll)
936 		mvm->tcm.ll_ts = ts;
937 	if (handle_uapsd)
938 		mvm->tcm.uapsd_nonagg_ts = ts;
939 
940 	mvm->tcm.result.elapsed = elapsed;
941 
942 	ieee80211_iterate_active_interfaces_atomic(mvm->hw,
943 						   IEEE80211_IFACE_ITER_NORMAL,
944 						   iwl_mvm_tcm_iterator,
945 						   &band);
946 
947 	for (mac = 0; mac < NUM_MAC_INDEX_DRIVER; mac++) {
948 		struct iwl_mvm_tcm_mac *mdata = &mvm->tcm.data[mac];
949 		u32 vo_vi_pkts = 0;
950 		u32 airtime = mdata->rx.airtime + mdata->tx.airtime;
951 
952 		total_airtime += airtime;
953 		band_airtime[band[mac]] += airtime;
954 
955 		load = iwl_mvm_tcm_load(mvm, airtime, elapsed);
956 		mvm->tcm.result.change[mac] = load != mvm->tcm.result.load[mac];
957 		mvm->tcm.result.load[mac] = load;
958 		mvm->tcm.result.airtime[mac] = airtime;
959 
960 		for (ac = IEEE80211_AC_VO; ac <= IEEE80211_AC_VI; ac++)
961 			vo_vi_pkts += mdata->rx.pkts[ac] +
962 				      mdata->tx.pkts[ac];
963 
964 		/* enable immediately with enough packets but defer disabling */
965 		if (vo_vi_pkts > IWL_MVM_TCM_LOWLAT_ENABLE_THRESH)
966 			mvm->tcm.result.low_latency[mac] = true;
967 		else if (handle_ll)
968 			mvm->tcm.result.low_latency[mac] = false;
969 
970 		if (handle_ll) {
971 			/* clear old data */
972 			memset(&mdata->rx.pkts, 0, sizeof(mdata->rx.pkts));
973 			memset(&mdata->tx.pkts, 0, sizeof(mdata->tx.pkts));
974 		}
975 		low_latency |= mvm->tcm.result.low_latency[mac];
976 
977 		if (!mvm->tcm.result.low_latency[mac] && handle_uapsd)
978 			iwl_mvm_check_uapsd_agg_expected_tpt(mvm, uapsd_elapsed,
979 							     mac);
980 		/* clear old data */
981 		if (handle_uapsd)
982 			mdata->uapsd_nonagg_detect.rx_bytes = 0;
983 		memset(&mdata->rx.airtime, 0, sizeof(mdata->rx.airtime));
984 		memset(&mdata->tx.airtime, 0, sizeof(mdata->tx.airtime));
985 	}
986 
987 	load = iwl_mvm_tcm_load(mvm, total_airtime, elapsed);
988 	mvm->tcm.result.global_load = load;
989 
990 	for (i = 0; i < NUM_NL80211_BANDS; i++) {
991 		band_load = iwl_mvm_tcm_load(mvm, band_airtime[i], elapsed);
992 		mvm->tcm.result.band_load[i] = band_load;
993 	}
994 
995 	/*
996 	 * If the current load isn't low we need to force re-evaluation
997 	 * in the TCM period, so that we can return to low load if there
998 	 * was no traffic at all (and thus iwl_mvm_recalc_tcm didn't get
999 	 * triggered by traffic).
1000 	 */
1001 	if (load != IWL_MVM_TRAFFIC_LOW)
1002 		return MVM_TCM_PERIOD;
1003 	/*
1004 	 * If low-latency is active we need to force re-evaluation after
1005 	 * (the longer) MVM_LL_PERIOD, so that we can disable low-latency
1006 	 * when there's no traffic at all.
1007 	 */
1008 	if (low_latency)
1009 		return MVM_LL_PERIOD;
1010 	/*
1011 	 * Otherwise, we don't need to run the work struct because we're
1012 	 * in the default "idle" state - traffic indication is low (which
1013 	 * also covers the "no traffic" case) and low-latency is disabled
1014 	 * so there's no state that may need to be disabled when there's
1015 	 * no traffic at all.
1016 	 *
1017 	 * Note that this has no impact on the regular scheduling of the
1018 	 * updates triggered by traffic - those happen whenever one of the
1019 	 * two timeouts expire (if there's traffic at all.)
1020 	 */
1021 	return 0;
1022 }
1023 
1024 void iwl_mvm_recalc_tcm(struct iwl_mvm *mvm)
1025 {
1026 	unsigned long ts = jiffies;
1027 	bool handle_uapsd =
1028 		time_after(ts, mvm->tcm.uapsd_nonagg_ts +
1029 			       msecs_to_jiffies(IWL_MVM_UAPSD_NONAGG_PERIOD));
1030 
1031 	spin_lock(&mvm->tcm.lock);
1032 	if (mvm->tcm.paused || !time_after(ts, mvm->tcm.ts + MVM_TCM_PERIOD)) {
1033 		spin_unlock(&mvm->tcm.lock);
1034 		return;
1035 	}
1036 	spin_unlock(&mvm->tcm.lock);
1037 
1038 	if (handle_uapsd && iwl_mvm_has_new_rx_api(mvm)) {
1039 		mutex_lock(&mvm->mutex);
1040 		if (iwl_mvm_request_statistics(mvm, true))
1041 			handle_uapsd = false;
1042 		mutex_unlock(&mvm->mutex);
1043 	}
1044 
1045 	spin_lock(&mvm->tcm.lock);
1046 	/* re-check if somebody else won the recheck race */
1047 	if (!mvm->tcm.paused && time_after(ts, mvm->tcm.ts + MVM_TCM_PERIOD)) {
1048 		/* calculate statistics */
1049 		unsigned long work_delay = iwl_mvm_calc_tcm_stats(mvm, ts,
1050 								  handle_uapsd);
1051 
1052 		/* the memset needs to be visible before the timestamp */
1053 		smp_mb();
1054 		mvm->tcm.ts = ts;
1055 		if (work_delay)
1056 			schedule_delayed_work(&mvm->tcm.work, work_delay);
1057 	}
1058 	spin_unlock(&mvm->tcm.lock);
1059 
1060 	iwl_mvm_tcm_results(mvm);
1061 }
1062 
1063 void iwl_mvm_tcm_work(struct work_struct *work)
1064 {
1065 	struct delayed_work *delayed_work = to_delayed_work(work);
1066 	struct iwl_mvm *mvm = container_of(delayed_work, struct iwl_mvm,
1067 					   tcm.work);
1068 
1069 	iwl_mvm_recalc_tcm(mvm);
1070 }
1071 
1072 void iwl_mvm_pause_tcm(struct iwl_mvm *mvm, bool with_cancel)
1073 {
1074 	spin_lock_bh(&mvm->tcm.lock);
1075 	mvm->tcm.paused = true;
1076 	spin_unlock_bh(&mvm->tcm.lock);
1077 	if (with_cancel)
1078 		cancel_delayed_work_sync(&mvm->tcm.work);
1079 }
1080 
1081 void iwl_mvm_resume_tcm(struct iwl_mvm *mvm)
1082 {
1083 	int mac;
1084 	bool low_latency = false;
1085 
1086 	spin_lock_bh(&mvm->tcm.lock);
1087 	mvm->tcm.ts = jiffies;
1088 	mvm->tcm.ll_ts = jiffies;
1089 	for (mac = 0; mac < NUM_MAC_INDEX_DRIVER; mac++) {
1090 		struct iwl_mvm_tcm_mac *mdata = &mvm->tcm.data[mac];
1091 
1092 		memset(&mdata->rx.pkts, 0, sizeof(mdata->rx.pkts));
1093 		memset(&mdata->tx.pkts, 0, sizeof(mdata->tx.pkts));
1094 		memset(&mdata->rx.airtime, 0, sizeof(mdata->rx.airtime));
1095 		memset(&mdata->tx.airtime, 0, sizeof(mdata->tx.airtime));
1096 
1097 		if (mvm->tcm.result.low_latency[mac])
1098 			low_latency = true;
1099 	}
1100 	/* The TCM data needs to be reset before "paused" flag changes */
1101 	smp_mb();
1102 	mvm->tcm.paused = false;
1103 
1104 	/*
1105 	 * if the current load is not low or low latency is active, force
1106 	 * re-evaluation to cover the case of no traffic.
1107 	 */
1108 	if (mvm->tcm.result.global_load > IWL_MVM_TRAFFIC_LOW)
1109 		schedule_delayed_work(&mvm->tcm.work, MVM_TCM_PERIOD);
1110 	else if (low_latency)
1111 		schedule_delayed_work(&mvm->tcm.work, MVM_LL_PERIOD);
1112 
1113 	spin_unlock_bh(&mvm->tcm.lock);
1114 }
1115 
1116 void iwl_mvm_tcm_add_vif(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1117 {
1118 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1119 
1120 	INIT_DELAYED_WORK(&mvmvif->uapsd_nonagg_detected_wk,
1121 			  iwl_mvm_tcm_uapsd_nonagg_detected_wk);
1122 }
1123 
1124 void iwl_mvm_tcm_rm_vif(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1125 {
1126 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1127 
1128 	cancel_delayed_work_sync(&mvmvif->uapsd_nonagg_detected_wk);
1129 }
1130 
1131 u32 iwl_mvm_get_systime(struct iwl_mvm *mvm)
1132 {
1133 	u32 reg_addr = DEVICE_SYSTEM_TIME_REG;
1134 
1135 	if (mvm->trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_22000 &&
1136 	    mvm->trans->cfg->gp2_reg_addr)
1137 		reg_addr = mvm->trans->cfg->gp2_reg_addr;
1138 
1139 	return iwl_read_prph(mvm->trans, reg_addr);
1140 }
1141 
1142 void iwl_mvm_get_sync_time(struct iwl_mvm *mvm, int clock_type,
1143 			   u32 *gp2, u64 *boottime, ktime_t *realtime)
1144 {
1145 	bool ps_disabled;
1146 
1147 	lockdep_assert_held(&mvm->mutex);
1148 
1149 	/* Disable power save when reading GP2 */
1150 	ps_disabled = mvm->ps_disabled;
1151 	if (!ps_disabled) {
1152 		mvm->ps_disabled = true;
1153 		iwl_mvm_power_update_device(mvm);
1154 	}
1155 
1156 	*gp2 = iwl_mvm_get_systime(mvm);
1157 
1158 	if (clock_type == CLOCK_BOOTTIME && boottime)
1159 		*boottime = ktime_get_boottime_ns();
1160 	else if (clock_type == CLOCK_REALTIME && realtime)
1161 		*realtime = ktime_get_real();
1162 
1163 	if (!ps_disabled) {
1164 		mvm->ps_disabled = ps_disabled;
1165 		iwl_mvm_power_update_device(mvm);
1166 	}
1167 }
1168 
1169 /* Find if at least two links from different vifs use same channel
1170  * FIXME: consider having a refcount array in struct iwl_mvm_vif for
1171  * used phy_ctxt ids.
1172  */
1173 bool iwl_mvm_have_links_same_channel(struct iwl_mvm_vif *vif1,
1174 				     struct iwl_mvm_vif *vif2)
1175 {
1176 	unsigned int i, j;
1177 
1178 	for_each_mvm_vif_valid_link(vif1, i) {
1179 		for_each_mvm_vif_valid_link(vif2, j) {
1180 			if (vif1->link[i]->phy_ctxt == vif2->link[j]->phy_ctxt)
1181 				return true;
1182 		}
1183 	}
1184 
1185 	return false;
1186 }
1187 
1188 bool iwl_mvm_vif_is_active(struct iwl_mvm_vif *mvmvif)
1189 {
1190 	unsigned int i;
1191 
1192 	/* FIXME: can it fail when phy_ctxt is assigned? */
1193 	for_each_mvm_vif_valid_link(mvmvif, i) {
1194 		if (mvmvif->link[i]->phy_ctxt &&
1195 		    mvmvif->link[i]->phy_ctxt->id < NUM_PHY_CTX)
1196 			return true;
1197 	}
1198 
1199 	return false;
1200 }
1201