xref: /linux/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c (revision d270e7b8fa8e68c6d08910e353b7674b182dc1c2)
1e705c121SKalle Valo /******************************************************************************
2e705c121SKalle Valo  *
3e705c121SKalle Valo  * This file is provided under a dual BSD/GPLv2 license.  When using or
4e705c121SKalle Valo  * redistributing this file, you may do so under either license.
5e705c121SKalle Valo  *
6e705c121SKalle Valo  * GPL LICENSE SUMMARY
7e705c121SKalle Valo  *
8e705c121SKalle Valo  * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
926d6c16bSSara Sharon  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
1026d6c16bSSara Sharon  * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
1163dd5d02SSara Sharon  * Copyright(c) 2018        Intel Corporation
12e705c121SKalle Valo  *
13e705c121SKalle Valo  * This program is free software; you can redistribute it and/or modify
14e705c121SKalle Valo  * it under the terms of version 2 of the GNU General Public License as
15e705c121SKalle Valo  * published by the Free Software Foundation.
16e705c121SKalle Valo  *
17e705c121SKalle Valo  * This program is distributed in the hope that it will be useful, but
18e705c121SKalle Valo  * WITHOUT ANY WARRANTY; without even the implied warranty of
19e705c121SKalle Valo  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20e705c121SKalle Valo  * General Public License for more details.
21e705c121SKalle Valo  *
22e705c121SKalle Valo  * You should have received a copy of the GNU General Public License
23e705c121SKalle Valo  * along with this program; if not, write to the Free Software
24e705c121SKalle Valo  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
25e705c121SKalle Valo  * USA
26e705c121SKalle Valo  *
27e705c121SKalle Valo  * The full GNU General Public License is included in this distribution
28e705c121SKalle Valo  * in the file called COPYING.
29e705c121SKalle Valo  *
30e705c121SKalle Valo  * Contact Information:
31cb2f8277SEmmanuel Grumbach  *  Intel Linux Wireless <linuxwifi@intel.com>
32e705c121SKalle Valo  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
33e705c121SKalle Valo  *
34e705c121SKalle Valo  * BSD LICENSE
35e705c121SKalle Valo  *
36e705c121SKalle Valo  * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
3726d6c16bSSara Sharon  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
3826d6c16bSSara Sharon  * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
39e705c121SKalle Valo  * All rights reserved.
40e705c121SKalle Valo  *
41e705c121SKalle Valo  * Redistribution and use in source and binary forms, with or without
42e705c121SKalle Valo  * modification, are permitted provided that the following conditions
43e705c121SKalle Valo  * are met:
44e705c121SKalle Valo  *
45e705c121SKalle Valo  *  * Redistributions of source code must retain the above copyright
46e705c121SKalle Valo  *    notice, this list of conditions and the following disclaimer.
47e705c121SKalle Valo  *  * Redistributions in binary form must reproduce the above copyright
48e705c121SKalle Valo  *    notice, this list of conditions and the following disclaimer in
49e705c121SKalle Valo  *    the documentation and/or other materials provided with the
50e705c121SKalle Valo  *    distribution.
51e705c121SKalle Valo  *  * Neither the name Intel Corporation nor the names of its
52e705c121SKalle Valo  *    contributors may be used to endorse or promote products derived
53e705c121SKalle Valo  *    from this software without specific prior written permission.
54e705c121SKalle Valo  *
55e705c121SKalle Valo  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
56e705c121SKalle Valo  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
57e705c121SKalle Valo  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
58e705c121SKalle Valo  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
59e705c121SKalle Valo  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
60e705c121SKalle Valo  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
61e705c121SKalle Valo  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
62e705c121SKalle Valo  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
63e705c121SKalle Valo  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
64e705c121SKalle Valo  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
65e705c121SKalle Valo  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
66e705c121SKalle Valo  *
67e705c121SKalle Valo  *****************************************************************************/
68e705c121SKalle Valo #include <linux/kernel.h>
69e705c121SKalle Valo #include <linux/slab.h>
70e705c121SKalle Valo #include <linux/skbuff.h>
71e705c121SKalle Valo #include <linux/netdevice.h>
72e705c121SKalle Valo #include <linux/etherdevice.h>
73e705c121SKalle Valo #include <linux/ip.h>
74e705c121SKalle Valo #include <linux/if_arp.h>
752f89a5d7SGolan Ben-Ami #include <linux/time.h>
76e705c121SKalle Valo #include <net/mac80211.h>
77e705c121SKalle Valo #include <net/ieee80211_radiotap.h>
78e705c121SKalle Valo #include <net/tcp.h>
79e705c121SKalle Valo 
80e705c121SKalle Valo #include "iwl-op-mode.h"
81e705c121SKalle Valo #include "iwl-io.h"
82e705c121SKalle Valo #include "mvm.h"
83e705c121SKalle Valo #include "sta.h"
84e705c121SKalle Valo #include "time-event.h"
85e705c121SKalle Valo #include "iwl-eeprom-parse.h"
86e705c121SKalle Valo #include "iwl-phy-db.h"
87e705c121SKalle Valo #include "testmode.h"
88d962f9b1SJohannes Berg #include "fw/error-dump.h"
89e705c121SKalle Valo #include "iwl-prph.h"
90e705c121SKalle Valo #include "iwl-nvm-parse.h"
91e705c121SKalle Valo 
92e705c121SKalle Valo static const struct ieee80211_iface_limit iwl_mvm_limits[] = {
93e705c121SKalle Valo 	{
94e705c121SKalle Valo 		.max = 1,
95e705c121SKalle Valo 		.types = BIT(NL80211_IFTYPE_STATION),
96e705c121SKalle Valo 	},
97e705c121SKalle Valo 	{
98e705c121SKalle Valo 		.max = 1,
99e705c121SKalle Valo 		.types = BIT(NL80211_IFTYPE_AP) |
100e705c121SKalle Valo 			BIT(NL80211_IFTYPE_P2P_CLIENT) |
101e705c121SKalle Valo 			BIT(NL80211_IFTYPE_P2P_GO),
102e705c121SKalle Valo 	},
103e705c121SKalle Valo 	{
104e705c121SKalle Valo 		.max = 1,
105e705c121SKalle Valo 		.types = BIT(NL80211_IFTYPE_P2P_DEVICE),
106e705c121SKalle Valo 	},
107e705c121SKalle Valo };
108e705c121SKalle Valo 
109e705c121SKalle Valo static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = {
110e705c121SKalle Valo 	{
111e705c121SKalle Valo 		.num_different_channels = 2,
112e705c121SKalle Valo 		.max_interfaces = 3,
113e705c121SKalle Valo 		.limits = iwl_mvm_limits,
114e705c121SKalle Valo 		.n_limits = ARRAY_SIZE(iwl_mvm_limits),
115e705c121SKalle Valo 	},
116e705c121SKalle Valo };
117e705c121SKalle Valo 
118e705c121SKalle Valo #ifdef CONFIG_IWLWIFI_BCAST_FILTERING
119e705c121SKalle Valo /*
120e705c121SKalle Valo  * Use the reserved field to indicate magic values.
121e705c121SKalle Valo  * these values will only be used internally by the driver,
122e705c121SKalle Valo  * and won't make it to the fw (reserved will be 0).
123e705c121SKalle Valo  * BC_FILTER_MAGIC_IP - configure the val of this attribute to
124e705c121SKalle Valo  *	be the vif's ip address. in case there is not a single
125e705c121SKalle Valo  *	ip address (0, or more than 1), this attribute will
126e705c121SKalle Valo  *	be skipped.
127e705c121SKalle Valo  * BC_FILTER_MAGIC_MAC - set the val of this attribute to
128e705c121SKalle Valo  *	the LSB bytes of the vif's mac address
129e705c121SKalle Valo  */
130e705c121SKalle Valo enum {
131e705c121SKalle Valo 	BC_FILTER_MAGIC_NONE = 0,
132e705c121SKalle Valo 	BC_FILTER_MAGIC_IP,
133e705c121SKalle Valo 	BC_FILTER_MAGIC_MAC,
134e705c121SKalle Valo };
135e705c121SKalle Valo 
136e705c121SKalle Valo static const struct iwl_fw_bcast_filter iwl_mvm_default_bcast_filters[] = {
137e705c121SKalle Valo 	{
138e705c121SKalle Valo 		/* arp */
139e705c121SKalle Valo 		.discard = 0,
140e705c121SKalle Valo 		.frame_type = BCAST_FILTER_FRAME_TYPE_ALL,
141e705c121SKalle Valo 		.attrs = {
142e705c121SKalle Valo 			{
143e705c121SKalle Valo 				/* frame type - arp, hw type - ethernet */
144e705c121SKalle Valo 				.offset_type =
145e705c121SKalle Valo 					BCAST_FILTER_OFFSET_PAYLOAD_START,
146e705c121SKalle Valo 				.offset = sizeof(rfc1042_header),
147e705c121SKalle Valo 				.val = cpu_to_be32(0x08060001),
148e705c121SKalle Valo 				.mask = cpu_to_be32(0xffffffff),
149e705c121SKalle Valo 			},
150e705c121SKalle Valo 			{
151e705c121SKalle Valo 				/* arp dest ip */
152e705c121SKalle Valo 				.offset_type =
153e705c121SKalle Valo 					BCAST_FILTER_OFFSET_PAYLOAD_START,
154e705c121SKalle Valo 				.offset = sizeof(rfc1042_header) + 2 +
155e705c121SKalle Valo 					  sizeof(struct arphdr) +
156e705c121SKalle Valo 					  ETH_ALEN + sizeof(__be32) +
157e705c121SKalle Valo 					  ETH_ALEN,
158e705c121SKalle Valo 				.mask = cpu_to_be32(0xffffffff),
159e705c121SKalle Valo 				/* mark it as special field */
160e705c121SKalle Valo 				.reserved1 = cpu_to_le16(BC_FILTER_MAGIC_IP),
161e705c121SKalle Valo 			},
162e705c121SKalle Valo 		},
163e705c121SKalle Valo 	},
164e705c121SKalle Valo 	{
165e705c121SKalle Valo 		/* dhcp offer bcast */
166e705c121SKalle Valo 		.discard = 0,
167e705c121SKalle Valo 		.frame_type = BCAST_FILTER_FRAME_TYPE_IPV4,
168e705c121SKalle Valo 		.attrs = {
169e705c121SKalle Valo 			{
170e705c121SKalle Valo 				/* udp dest port - 68 (bootp client)*/
171e705c121SKalle Valo 				.offset_type = BCAST_FILTER_OFFSET_IP_END,
172e705c121SKalle Valo 				.offset = offsetof(struct udphdr, dest),
173e705c121SKalle Valo 				.val = cpu_to_be32(0x00440000),
174e705c121SKalle Valo 				.mask = cpu_to_be32(0xffff0000),
175e705c121SKalle Valo 			},
176e705c121SKalle Valo 			{
177e705c121SKalle Valo 				/* dhcp - lsb bytes of client hw address */
178e705c121SKalle Valo 				.offset_type = BCAST_FILTER_OFFSET_IP_END,
179e705c121SKalle Valo 				.offset = 38,
180e705c121SKalle Valo 				.mask = cpu_to_be32(0xffffffff),
181e705c121SKalle Valo 				/* mark it as special field */
182e705c121SKalle Valo 				.reserved1 = cpu_to_le16(BC_FILTER_MAGIC_MAC),
183e705c121SKalle Valo 			},
184e705c121SKalle Valo 		},
185e705c121SKalle Valo 	},
186e705c121SKalle Valo 	/* last filter must be empty */
187e705c121SKalle Valo 	{},
188e705c121SKalle Valo };
189e705c121SKalle Valo #endif
190e705c121SKalle Valo 
191e705c121SKalle Valo void iwl_mvm_ref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
192e705c121SKalle Valo {
193e705c121SKalle Valo 	if (!iwl_mvm_is_d0i3_supported(mvm))
194e705c121SKalle Valo 		return;
195e705c121SKalle Valo 
196e705c121SKalle Valo 	IWL_DEBUG_RPM(mvm, "Take mvm reference - type %d\n", ref_type);
197e705c121SKalle Valo 	spin_lock_bh(&mvm->refs_lock);
198e705c121SKalle Valo 	mvm->refs[ref_type]++;
199e705c121SKalle Valo 	spin_unlock_bh(&mvm->refs_lock);
200e705c121SKalle Valo 	iwl_trans_ref(mvm->trans);
201e705c121SKalle Valo }
202e705c121SKalle Valo 
203e705c121SKalle Valo void iwl_mvm_unref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
204e705c121SKalle Valo {
205e705c121SKalle Valo 	if (!iwl_mvm_is_d0i3_supported(mvm))
206e705c121SKalle Valo 		return;
207e705c121SKalle Valo 
208e705c121SKalle Valo 	IWL_DEBUG_RPM(mvm, "Leave mvm reference - type %d\n", ref_type);
209e705c121SKalle Valo 	spin_lock_bh(&mvm->refs_lock);
21016c45822SSara Sharon 	if (WARN_ON(!mvm->refs[ref_type])) {
21116c45822SSara Sharon 		spin_unlock_bh(&mvm->refs_lock);
21216c45822SSara Sharon 		return;
21316c45822SSara Sharon 	}
21416c45822SSara Sharon 	mvm->refs[ref_type]--;
215e705c121SKalle Valo 	spin_unlock_bh(&mvm->refs_lock);
216e705c121SKalle Valo 	iwl_trans_unref(mvm->trans);
217e705c121SKalle Valo }
218e705c121SKalle Valo 
219e705c121SKalle Valo static void iwl_mvm_unref_all_except(struct iwl_mvm *mvm,
220e705c121SKalle Valo 				     enum iwl_mvm_ref_type except_ref)
221e705c121SKalle Valo {
222e705c121SKalle Valo 	int i, j;
223e705c121SKalle Valo 
224e705c121SKalle Valo 	if (!iwl_mvm_is_d0i3_supported(mvm))
225e705c121SKalle Valo 		return;
226e705c121SKalle Valo 
227e705c121SKalle Valo 	spin_lock_bh(&mvm->refs_lock);
228e705c121SKalle Valo 	for (i = 0; i < IWL_MVM_REF_COUNT; i++) {
229e705c121SKalle Valo 		if (except_ref == i || !mvm->refs[i])
230e705c121SKalle Valo 			continue;
231e705c121SKalle Valo 
232e705c121SKalle Valo 		IWL_DEBUG_RPM(mvm, "Cleanup: remove mvm ref type %d (%d)\n",
233e705c121SKalle Valo 			      i, mvm->refs[i]);
234e705c121SKalle Valo 		for (j = 0; j < mvm->refs[i]; j++)
235e705c121SKalle Valo 			iwl_trans_unref(mvm->trans);
236e705c121SKalle Valo 		mvm->refs[i] = 0;
237e705c121SKalle Valo 	}
238e705c121SKalle Valo 	spin_unlock_bh(&mvm->refs_lock);
239e705c121SKalle Valo }
240e705c121SKalle Valo 
241e705c121SKalle Valo bool iwl_mvm_ref_taken(struct iwl_mvm *mvm)
242e705c121SKalle Valo {
243e705c121SKalle Valo 	int i;
244e705c121SKalle Valo 	bool taken = false;
245e705c121SKalle Valo 
246e705c121SKalle Valo 	if (!iwl_mvm_is_d0i3_supported(mvm))
247e705c121SKalle Valo 		return true;
248e705c121SKalle Valo 
249e705c121SKalle Valo 	spin_lock_bh(&mvm->refs_lock);
250e705c121SKalle Valo 	for (i = 0; i < IWL_MVM_REF_COUNT; i++) {
251e705c121SKalle Valo 		if (mvm->refs[i]) {
252e705c121SKalle Valo 			taken = true;
253e705c121SKalle Valo 			break;
254e705c121SKalle Valo 		}
255e705c121SKalle Valo 	}
256e705c121SKalle Valo 	spin_unlock_bh(&mvm->refs_lock);
257e705c121SKalle Valo 
258e705c121SKalle Valo 	return taken;
259e705c121SKalle Valo }
260e705c121SKalle Valo 
261e705c121SKalle Valo int iwl_mvm_ref_sync(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
262e705c121SKalle Valo {
263e705c121SKalle Valo 	iwl_mvm_ref(mvm, ref_type);
264e705c121SKalle Valo 
265e705c121SKalle Valo 	if (!wait_event_timeout(mvm->d0i3_exit_waitq,
266e705c121SKalle Valo 				!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status),
267e705c121SKalle Valo 				HZ)) {
268e705c121SKalle Valo 		WARN_ON_ONCE(1);
269e705c121SKalle Valo 		iwl_mvm_unref(mvm, ref_type);
270e705c121SKalle Valo 		return -EIO;
271e705c121SKalle Valo 	}
272e705c121SKalle Valo 
273e705c121SKalle Valo 	return 0;
274e705c121SKalle Valo }
275e705c121SKalle Valo 
276e705c121SKalle Valo static void iwl_mvm_reset_phy_ctxts(struct iwl_mvm *mvm)
277e705c121SKalle Valo {
278e705c121SKalle Valo 	int i;
279e705c121SKalle Valo 
280e705c121SKalle Valo 	memset(mvm->phy_ctxts, 0, sizeof(mvm->phy_ctxts));
281e705c121SKalle Valo 	for (i = 0; i < NUM_PHY_CTX; i++) {
282e705c121SKalle Valo 		mvm->phy_ctxts[i].id = i;
283e705c121SKalle Valo 		mvm->phy_ctxts[i].ref = 0;
284e705c121SKalle Valo 	}
285e705c121SKalle Valo }
286e705c121SKalle Valo 
287e705c121SKalle Valo struct ieee80211_regdomain *iwl_mvm_get_regdomain(struct wiphy *wiphy,
288e705c121SKalle Valo 						  const char *alpha2,
289e705c121SKalle Valo 						  enum iwl_mcc_source src_id,
290e705c121SKalle Valo 						  bool *changed)
291e705c121SKalle Valo {
292e705c121SKalle Valo 	struct ieee80211_regdomain *regd = NULL;
293e705c121SKalle Valo 	struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
294e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
295e705c121SKalle Valo 	struct iwl_mcc_update_resp *resp;
296e705c121SKalle Valo 
297e705c121SKalle Valo 	IWL_DEBUG_LAR(mvm, "Getting regdomain data for %s from FW\n", alpha2);
298e705c121SKalle Valo 
299e705c121SKalle Valo 	lockdep_assert_held(&mvm->mutex);
300e705c121SKalle Valo 
301e705c121SKalle Valo 	resp = iwl_mvm_update_mcc(mvm, alpha2, src_id);
302e705c121SKalle Valo 	if (IS_ERR_OR_NULL(resp)) {
303e705c121SKalle Valo 		IWL_DEBUG_LAR(mvm, "Could not get update from FW %d\n",
304e705c121SKalle Valo 			      PTR_ERR_OR_ZERO(resp));
305e705c121SKalle Valo 		goto out;
306e705c121SKalle Valo 	}
307e705c121SKalle Valo 
308e705c121SKalle Valo 	if (changed)
309e705c121SKalle Valo 		*changed = (resp->status == MCC_RESP_NEW_CHAN_PROFILE);
310e705c121SKalle Valo 
311e705c121SKalle Valo 	regd = iwl_parse_nvm_mcc_info(mvm->trans->dev, mvm->cfg,
312e705c121SKalle Valo 				      __le32_to_cpu(resp->n_channels),
313e705c121SKalle Valo 				      resp->channels,
314e705c121SKalle Valo 				      __le16_to_cpu(resp->mcc));
315e705c121SKalle Valo 	/* Store the return source id */
316e705c121SKalle Valo 	src_id = resp->source_id;
317e705c121SKalle Valo 	kfree(resp);
318e705c121SKalle Valo 	if (IS_ERR_OR_NULL(regd)) {
319e705c121SKalle Valo 		IWL_DEBUG_LAR(mvm, "Could not get parse update from FW %d\n",
320e705c121SKalle Valo 			      PTR_ERR_OR_ZERO(regd));
321e705c121SKalle Valo 		goto out;
322e705c121SKalle Valo 	}
323e705c121SKalle Valo 
324e705c121SKalle Valo 	IWL_DEBUG_LAR(mvm, "setting alpha2 from FW to %s (0x%x, 0x%x) src=%d\n",
325e705c121SKalle Valo 		      regd->alpha2, regd->alpha2[0], regd->alpha2[1], src_id);
326e705c121SKalle Valo 	mvm->lar_regdom_set = true;
327e705c121SKalle Valo 	mvm->mcc_src = src_id;
328e705c121SKalle Valo 
329e705c121SKalle Valo out:
330e705c121SKalle Valo 	return regd;
331e705c121SKalle Valo }
332e705c121SKalle Valo 
333e705c121SKalle Valo void iwl_mvm_update_changed_regdom(struct iwl_mvm *mvm)
334e705c121SKalle Valo {
335e705c121SKalle Valo 	bool changed;
336e705c121SKalle Valo 	struct ieee80211_regdomain *regd;
337e705c121SKalle Valo 
338e705c121SKalle Valo 	if (!iwl_mvm_is_lar_supported(mvm))
339e705c121SKalle Valo 		return;
340e705c121SKalle Valo 
341e705c121SKalle Valo 	regd = iwl_mvm_get_current_regdomain(mvm, &changed);
342e705c121SKalle Valo 	if (!IS_ERR_OR_NULL(regd)) {
343e705c121SKalle Valo 		/* only update the regulatory core if changed */
344e705c121SKalle Valo 		if (changed)
345e705c121SKalle Valo 			regulatory_set_wiphy_regd(mvm->hw->wiphy, regd);
346e705c121SKalle Valo 
347e705c121SKalle Valo 		kfree(regd);
348e705c121SKalle Valo 	}
349e705c121SKalle Valo }
350e705c121SKalle Valo 
351e705c121SKalle Valo struct ieee80211_regdomain *iwl_mvm_get_current_regdomain(struct iwl_mvm *mvm,
352e705c121SKalle Valo 							  bool *changed)
353e705c121SKalle Valo {
354e705c121SKalle Valo 	return iwl_mvm_get_regdomain(mvm->hw->wiphy, "ZZ",
355e705c121SKalle Valo 				     iwl_mvm_is_wifi_mcc_supported(mvm) ?
356e705c121SKalle Valo 				     MCC_SOURCE_GET_CURRENT :
357e705c121SKalle Valo 				     MCC_SOURCE_OLD_FW, changed);
358e705c121SKalle Valo }
359e705c121SKalle Valo 
360e705c121SKalle Valo int iwl_mvm_init_fw_regd(struct iwl_mvm *mvm)
361e705c121SKalle Valo {
362e705c121SKalle Valo 	enum iwl_mcc_source used_src;
363e705c121SKalle Valo 	struct ieee80211_regdomain *regd;
364e705c121SKalle Valo 	int ret;
365e705c121SKalle Valo 	bool changed;
366e705c121SKalle Valo 	const struct ieee80211_regdomain *r =
367e705c121SKalle Valo 			rtnl_dereference(mvm->hw->wiphy->regd);
368e705c121SKalle Valo 
369e705c121SKalle Valo 	if (!r)
370e705c121SKalle Valo 		return -ENOENT;
371e705c121SKalle Valo 
372e705c121SKalle Valo 	/* save the last source in case we overwrite it below */
373e705c121SKalle Valo 	used_src = mvm->mcc_src;
374e705c121SKalle Valo 	if (iwl_mvm_is_wifi_mcc_supported(mvm)) {
375e705c121SKalle Valo 		/* Notify the firmware we support wifi location updates */
376e705c121SKalle Valo 		regd = iwl_mvm_get_current_regdomain(mvm, NULL);
377e705c121SKalle Valo 		if (!IS_ERR_OR_NULL(regd))
378e705c121SKalle Valo 			kfree(regd);
379e705c121SKalle Valo 	}
380e705c121SKalle Valo 
381e705c121SKalle Valo 	/* Now set our last stored MCC and source */
382e705c121SKalle Valo 	regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, r->alpha2, used_src,
383e705c121SKalle Valo 				     &changed);
384e705c121SKalle Valo 	if (IS_ERR_OR_NULL(regd))
385e705c121SKalle Valo 		return -EIO;
386e705c121SKalle Valo 
387e705c121SKalle Valo 	/* update cfg80211 if the regdomain was changed */
388e705c121SKalle Valo 	if (changed)
389e705c121SKalle Valo 		ret = regulatory_set_wiphy_regd_sync_rtnl(mvm->hw->wiphy, regd);
390e705c121SKalle Valo 	else
391e705c121SKalle Valo 		ret = 0;
392e705c121SKalle Valo 
393e705c121SKalle Valo 	kfree(regd);
394e705c121SKalle Valo 	return ret;
395e705c121SKalle Valo }
396e705c121SKalle Valo 
397e705c121SKalle Valo int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
398e705c121SKalle Valo {
399e705c121SKalle Valo 	struct ieee80211_hw *hw = mvm->hw;
400e705c121SKalle Valo 	int num_mac, ret, i;
401e705c121SKalle Valo 	static const u32 mvm_ciphers[] = {
402e705c121SKalle Valo 		WLAN_CIPHER_SUITE_WEP40,
403e705c121SKalle Valo 		WLAN_CIPHER_SUITE_WEP104,
404e705c121SKalle Valo 		WLAN_CIPHER_SUITE_TKIP,
405e705c121SKalle Valo 		WLAN_CIPHER_SUITE_CCMP,
406e705c121SKalle Valo 	};
407e705c121SKalle Valo 
408e705c121SKalle Valo 	/* Tell mac80211 our characteristics */
409e705c121SKalle Valo 	ieee80211_hw_set(hw, SIGNAL_DBM);
410e705c121SKalle Valo 	ieee80211_hw_set(hw, SPECTRUM_MGMT);
411e705c121SKalle Valo 	ieee80211_hw_set(hw, REPORTS_TX_ACK_STATUS);
412e705c121SKalle Valo 	ieee80211_hw_set(hw, QUEUE_CONTROL);
413e705c121SKalle Valo 	ieee80211_hw_set(hw, WANT_MONITOR_VIF);
414e705c121SKalle Valo 	ieee80211_hw_set(hw, SUPPORTS_PS);
415e705c121SKalle Valo 	ieee80211_hw_set(hw, SUPPORTS_DYNAMIC_PS);
416e705c121SKalle Valo 	ieee80211_hw_set(hw, AMPDU_AGGREGATION);
417e705c121SKalle Valo 	ieee80211_hw_set(hw, TIMING_BEACON_ONLY);
418e705c121SKalle Valo 	ieee80211_hw_set(hw, CONNECTION_MONITOR);
419e705c121SKalle Valo 	ieee80211_hw_set(hw, CHANCTX_STA_CSA);
420e705c121SKalle Valo 	ieee80211_hw_set(hw, SUPPORT_FAST_XMIT);
421e705c121SKalle Valo 	ieee80211_hw_set(hw, SUPPORTS_CLONED_SKBS);
422909ddf0bSJohannes Berg 	ieee80211_hw_set(hw, SUPPORTS_AMSDU_IN_AMPDU);
42330433d3bSJohannes Berg 	ieee80211_hw_set(hw, NEEDS_UNIQUE_STA_ADDR);
424*d270e7b8SIlan Peer 	ieee80211_hw_set(hw, DEAUTH_NEED_MGD_TX_PREP);
425ecaf71deSGregory Greenman 
4264243edb4SEmmanuel Grumbach 	if (iwl_mvm_has_tlc_offload(mvm)) {
427ecaf71deSGregory Greenman 		ieee80211_hw_set(hw, TX_AMPDU_SETUP_IN_HW);
428ecaf71deSGregory Greenman 		ieee80211_hw_set(hw, HAS_RATE_CONTROL);
429ecaf71deSGregory Greenman 	}
430ecaf71deSGregory Greenman 
431b915c101SSara Sharon 	if (iwl_mvm_has_new_rx_api(mvm))
432b915c101SSara Sharon 		ieee80211_hw_set(hw, SUPPORTS_REORDERING_BUFFER);
433960f864bSJohannes Berg 
434960f864bSJohannes Berg 	if (fw_has_capa(&mvm->fw->ucode_capa,
435960f864bSJohannes Berg 			IWL_UCODE_TLV_CAPA_STA_PM_NOTIF)) {
43665e25482SJohannes Berg 		ieee80211_hw_set(hw, AP_LINK_PS);
437960f864bSJohannes Berg 	} else if (WARN_ON(iwl_mvm_has_new_tx_api(mvm))) {
438960f864bSJohannes Berg 		/*
439960f864bSJohannes Berg 		 * we absolutely need this for the new TX API since that comes
440960f864bSJohannes Berg 		 * with many more queues than the current code can deal with
441960f864bSJohannes Berg 		 * for station powersave
442960f864bSJohannes Berg 		 */
443960f864bSJohannes Berg 		return -EINVAL;
444960f864bSJohannes Berg 	}
445e705c121SKalle Valo 
44680938abcSJohannes Berg 	if (mvm->trans->num_rx_queues > 1)
44780938abcSJohannes Berg 		ieee80211_hw_set(hw, USES_RSS);
44880938abcSJohannes Berg 
4492d7cf549SJohannes Berg 	if (mvm->trans->max_skb_frags)
4502d7cf549SJohannes Berg 		hw->netdev_features = NETIF_F_HIGHDMA | NETIF_F_SG;
4512d7cf549SJohannes Berg 
452cf961e16SLiad Kaufman 	hw->queues = IEEE80211_MAX_QUEUES;
453e705c121SKalle Valo 	hw->offchannel_tx_hw_queue = IWL_MVM_OFFCHANNEL_QUEUE;
454e705c121SKalle Valo 	hw->radiotap_mcs_details |= IEEE80211_RADIOTAP_MCS_HAVE_FEC |
455e705c121SKalle Valo 				    IEEE80211_RADIOTAP_MCS_HAVE_STBC;
456e705c121SKalle Valo 	hw->radiotap_vht_details |= IEEE80211_RADIOTAP_VHT_KNOWN_STBC |
457e705c121SKalle Valo 		IEEE80211_RADIOTAP_VHT_KNOWN_BEAMFORMED;
458371a17edSJohannes Berg 
459371a17edSJohannes Berg 	hw->radiotap_timestamp.units_pos =
460371a17edSJohannes Berg 		IEEE80211_RADIOTAP_TIMESTAMP_UNIT_US |
461371a17edSJohannes Berg 		IEEE80211_RADIOTAP_TIMESTAMP_SPOS_PLCP_SIG_ACQ;
462371a17edSJohannes Berg 	/* this is the case for CCK frames, it's better (only 8) for OFDM */
463371a17edSJohannes Berg 	hw->radiotap_timestamp.accuracy = 22;
464371a17edSJohannes Berg 
4654243edb4SEmmanuel Grumbach 	if (!iwl_mvm_has_tlc_offload(mvm))
4669f66a397SGregory Greenman 		hw->rate_control_algorithm = RS_NAME;
4679f66a397SGregory Greenman 
468e705c121SKalle Valo 	hw->uapsd_queues = IWL_MVM_UAPSD_QUEUES;
469e705c121SKalle Valo 	hw->uapsd_max_sp_len = IWL_UAPSD_MAX_SP;
470e705c121SKalle Valo 
4718e160ab8SAyala Beker 	BUILD_BUG_ON(ARRAY_SIZE(mvm->ciphers) < ARRAY_SIZE(mvm_ciphers) + 6);
472e705c121SKalle Valo 	memcpy(mvm->ciphers, mvm_ciphers, sizeof(mvm_ciphers));
473e705c121SKalle Valo 	hw->wiphy->n_cipher_suites = ARRAY_SIZE(mvm_ciphers);
474e705c121SKalle Valo 	hw->wiphy->cipher_suites = mvm->ciphers;
475e705c121SKalle Valo 
4762a53d166SAyala Beker 	if (iwl_mvm_has_new_rx_api(mvm)) {
4772a53d166SAyala Beker 		mvm->ciphers[hw->wiphy->n_cipher_suites] =
4782a53d166SAyala Beker 			WLAN_CIPHER_SUITE_GCMP;
4792a53d166SAyala Beker 		hw->wiphy->n_cipher_suites++;
4802a53d166SAyala Beker 		mvm->ciphers[hw->wiphy->n_cipher_suites] =
4812a53d166SAyala Beker 			WLAN_CIPHER_SUITE_GCMP_256;
4822a53d166SAyala Beker 		hw->wiphy->n_cipher_suites++;
4832a53d166SAyala Beker 	}
4842a53d166SAyala Beker 
4854b87e5afSLuca Coelho 	/* Enable 11w if software crypto is not enabled (as the
4864b87e5afSLuca Coelho 	 * firmware will interpret some mgmt packets, so enabling it
4874b87e5afSLuca Coelho 	 * with software crypto isn't safe).
488e705c121SKalle Valo 	 */
4893b37f4c9SJohannes Berg 	if (!iwlwifi_mod_params.swcrypto) {
490e705c121SKalle Valo 		ieee80211_hw_set(hw, MFP_CAPABLE);
491e705c121SKalle Valo 		mvm->ciphers[hw->wiphy->n_cipher_suites] =
492e705c121SKalle Valo 			WLAN_CIPHER_SUITE_AES_CMAC;
493e705c121SKalle Valo 		hw->wiphy->n_cipher_suites++;
4948e160ab8SAyala Beker 		if (iwl_mvm_has_new_rx_api(mvm)) {
4958e160ab8SAyala Beker 			mvm->ciphers[hw->wiphy->n_cipher_suites] =
4968e160ab8SAyala Beker 				WLAN_CIPHER_SUITE_BIP_GMAC_128;
4978e160ab8SAyala Beker 			hw->wiphy->n_cipher_suites++;
4988e160ab8SAyala Beker 			mvm->ciphers[hw->wiphy->n_cipher_suites] =
4998e160ab8SAyala Beker 				WLAN_CIPHER_SUITE_BIP_GMAC_256;
5008e160ab8SAyala Beker 			hw->wiphy->n_cipher_suites++;
5018e160ab8SAyala Beker 		}
502e705c121SKalle Valo 	}
503e705c121SKalle Valo 
504e705c121SKalle Valo 	/* currently FW API supports only one optional cipher scheme */
505e705c121SKalle Valo 	if (mvm->fw->cs[0].cipher) {
50624ddddf3SJohannes Berg 		const struct iwl_fw_cipher_scheme *fwcs = &mvm->fw->cs[0];
50724ddddf3SJohannes Berg 		struct ieee80211_cipher_scheme *cs = &mvm->cs[0];
50824ddddf3SJohannes Berg 
509e705c121SKalle Valo 		mvm->hw->n_cipher_schemes = 1;
51024ddddf3SJohannes Berg 
51124ddddf3SJohannes Berg 		cs->cipher = le32_to_cpu(fwcs->cipher);
51224ddddf3SJohannes Berg 		cs->iftype = BIT(NL80211_IFTYPE_STATION);
51324ddddf3SJohannes Berg 		cs->hdr_len = fwcs->hdr_len;
51424ddddf3SJohannes Berg 		cs->pn_len = fwcs->pn_len;
51524ddddf3SJohannes Berg 		cs->pn_off = fwcs->pn_off;
51624ddddf3SJohannes Berg 		cs->key_idx_off = fwcs->key_idx_off;
51724ddddf3SJohannes Berg 		cs->key_idx_mask = fwcs->key_idx_mask;
51824ddddf3SJohannes Berg 		cs->key_idx_shift = fwcs->key_idx_shift;
51924ddddf3SJohannes Berg 		cs->mic_len = fwcs->mic_len;
52024ddddf3SJohannes Berg 
52124ddddf3SJohannes Berg 		mvm->hw->cipher_schemes = mvm->cs;
52224ddddf3SJohannes Berg 		mvm->ciphers[hw->wiphy->n_cipher_suites] = cs->cipher;
523e705c121SKalle Valo 		hw->wiphy->n_cipher_suites++;
524e705c121SKalle Valo 	}
525e705c121SKalle Valo 
526e705c121SKalle Valo 	ieee80211_hw_set(hw, SINGLE_SCAN_ON_ALL_BANDS);
527e705c121SKalle Valo 	hw->wiphy->features |=
528e705c121SKalle Valo 		NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR |
529e705c121SKalle Valo 		NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR |
530e705c121SKalle Valo 		NL80211_FEATURE_ND_RANDOM_MAC_ADDR;
531e705c121SKalle Valo 
532e705c121SKalle Valo 	hw->sta_data_size = sizeof(struct iwl_mvm_sta);
533e705c121SKalle Valo 	hw->vif_data_size = sizeof(struct iwl_mvm_vif);
534e705c121SKalle Valo 	hw->chanctx_data_size = sizeof(u16);
535e705c121SKalle Valo 
536e705c121SKalle Valo 	hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
537e705c121SKalle Valo 		BIT(NL80211_IFTYPE_P2P_CLIENT) |
538e705c121SKalle Valo 		BIT(NL80211_IFTYPE_AP) |
539e705c121SKalle Valo 		BIT(NL80211_IFTYPE_P2P_GO) |
540e705c121SKalle Valo 		BIT(NL80211_IFTYPE_P2P_DEVICE) |
541e705c121SKalle Valo 		BIT(NL80211_IFTYPE_ADHOC);
542e705c121SKalle Valo 
543e705c121SKalle Valo 	hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
544e705c121SKalle Valo 	hw->wiphy->regulatory_flags |= REGULATORY_ENABLE_RELAX_NO_IR;
545e705c121SKalle Valo 	if (iwl_mvm_is_lar_supported(mvm))
546e705c121SKalle Valo 		hw->wiphy->regulatory_flags |= REGULATORY_WIPHY_SELF_MANAGED;
547e705c121SKalle Valo 	else
548e705c121SKalle Valo 		hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG |
549e705c121SKalle Valo 					       REGULATORY_DISABLE_BEACON_HINTS;
550e705c121SKalle Valo 
551e705c121SKalle Valo 	hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD;
552e705c121SKalle Valo 	hw->wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH;
553e705c121SKalle Valo 
554e705c121SKalle Valo 	hw->wiphy->iface_combinations = iwl_mvm_iface_combinations;
555e705c121SKalle Valo 	hw->wiphy->n_iface_combinations =
556e705c121SKalle Valo 		ARRAY_SIZE(iwl_mvm_iface_combinations);
557e705c121SKalle Valo 
558e705c121SKalle Valo 	hw->wiphy->max_remain_on_channel_duration = 10000;
559e705c121SKalle Valo 	hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
560e705c121SKalle Valo 	/* we can compensate an offset of up to 3 channels = 15 MHz */
561e705c121SKalle Valo 	hw->wiphy->max_adj_channel_rssi_comp = 3 * 5;
562e705c121SKalle Valo 
563e705c121SKalle Valo 	/* Extract MAC address */
564e705c121SKalle Valo 	memcpy(mvm->addresses[0].addr, mvm->nvm_data->hw_addr, ETH_ALEN);
565e705c121SKalle Valo 	hw->wiphy->addresses = mvm->addresses;
566e705c121SKalle Valo 	hw->wiphy->n_addresses = 1;
567e705c121SKalle Valo 
568e705c121SKalle Valo 	/* Extract additional MAC addresses if available */
569e705c121SKalle Valo 	num_mac = (mvm->nvm_data->n_hw_addrs > 1) ?
570e705c121SKalle Valo 		min(IWL_MVM_MAX_ADDRESSES, mvm->nvm_data->n_hw_addrs) : 1;
571e705c121SKalle Valo 
572e705c121SKalle Valo 	for (i = 1; i < num_mac; i++) {
573e705c121SKalle Valo 		memcpy(mvm->addresses[i].addr, mvm->addresses[i-1].addr,
574e705c121SKalle Valo 		       ETH_ALEN);
575e705c121SKalle Valo 		mvm->addresses[i].addr[5]++;
576e705c121SKalle Valo 		hw->wiphy->n_addresses++;
577e705c121SKalle Valo 	}
578e705c121SKalle Valo 
579e705c121SKalle Valo 	iwl_mvm_reset_phy_ctxts(mvm);
580e705c121SKalle Valo 
581e705c121SKalle Valo 	hw->wiphy->max_scan_ie_len = iwl_mvm_max_scan_ie_len(mvm);
582e705c121SKalle Valo 
583e705c121SKalle Valo 	hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
584e705c121SKalle Valo 
585e705c121SKalle Valo 	BUILD_BUG_ON(IWL_MVM_SCAN_STOPPING_MASK & IWL_MVM_SCAN_MASK);
586e705c121SKalle Valo 	BUILD_BUG_ON(IWL_MVM_MAX_UMAC_SCANS > HWEIGHT32(IWL_MVM_SCAN_MASK) ||
587e705c121SKalle Valo 		     IWL_MVM_MAX_LMAC_SCANS > HWEIGHT32(IWL_MVM_SCAN_MASK));
588e705c121SKalle Valo 
589e705c121SKalle Valo 	if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN))
590e705c121SKalle Valo 		mvm->max_scans = IWL_MVM_MAX_UMAC_SCANS;
591e705c121SKalle Valo 	else
592e705c121SKalle Valo 		mvm->max_scans = IWL_MVM_MAX_LMAC_SCANS;
593e705c121SKalle Valo 
59457fbcce3SJohannes Berg 	if (mvm->nvm_data->bands[NL80211_BAND_2GHZ].n_channels)
59557fbcce3SJohannes Berg 		hw->wiphy->bands[NL80211_BAND_2GHZ] =
59657fbcce3SJohannes Berg 			&mvm->nvm_data->bands[NL80211_BAND_2GHZ];
59757fbcce3SJohannes Berg 	if (mvm->nvm_data->bands[NL80211_BAND_5GHZ].n_channels) {
59857fbcce3SJohannes Berg 		hw->wiphy->bands[NL80211_BAND_5GHZ] =
59957fbcce3SJohannes Berg 			&mvm->nvm_data->bands[NL80211_BAND_5GHZ];
600e705c121SKalle Valo 
601e705c121SKalle Valo 		if (fw_has_capa(&mvm->fw->ucode_capa,
602e705c121SKalle Valo 				IWL_UCODE_TLV_CAPA_BEAMFORMER) &&
603e705c121SKalle Valo 		    fw_has_api(&mvm->fw->ucode_capa,
604e705c121SKalle Valo 			       IWL_UCODE_TLV_API_LQ_SS_PARAMS))
60557fbcce3SJohannes Berg 			hw->wiphy->bands[NL80211_BAND_5GHZ]->vht_cap.cap |=
606e705c121SKalle Valo 				IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE;
607e705c121SKalle Valo 	}
608e705c121SKalle Valo 
609e705c121SKalle Valo 	hw->wiphy->hw_version = mvm->trans->hw_id;
610e705c121SKalle Valo 
611e705c121SKalle Valo 	if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM)
612e705c121SKalle Valo 		hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
613e705c121SKalle Valo 	else
614e705c121SKalle Valo 		hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
615e705c121SKalle Valo 
616ca986ad9SArend Van Spriel 	hw->wiphy->max_sched_scan_reqs = 1;
617e705c121SKalle Valo 	hw->wiphy->max_sched_scan_ssids = PROBE_OPTION_MAX;
618e705c121SKalle Valo 	hw->wiphy->max_match_sets = IWL_SCAN_MAX_PROFILES;
619e705c121SKalle Valo 	/* we create the 802.11 header and zero length SSID IE. */
620e705c121SKalle Valo 	hw->wiphy->max_sched_scan_ie_len =
621e705c121SKalle Valo 		SCAN_OFFLOAD_PROBE_REQ_SIZE - 24 - 2;
622e705c121SKalle Valo 	hw->wiphy->max_sched_scan_plans = IWL_MAX_SCHED_SCAN_PLANS;
623e705c121SKalle Valo 	hw->wiphy->max_sched_scan_plan_interval = U16_MAX;
624e705c121SKalle Valo 
625e705c121SKalle Valo 	/*
626e705c121SKalle Valo 	 * the firmware uses u8 for num of iterations, but 0xff is saved for
627e705c121SKalle Valo 	 * infinite loop, so the maximum number of iterations is actually 254.
628e705c121SKalle Valo 	 */
629e705c121SKalle Valo 	hw->wiphy->max_sched_scan_plan_iterations = 254;
630e705c121SKalle Valo 
631e705c121SKalle Valo 	hw->wiphy->features |= NL80211_FEATURE_P2P_GO_CTWIN |
632e705c121SKalle Valo 			       NL80211_FEATURE_LOW_PRIORITY_SCAN |
633e705c121SKalle Valo 			       NL80211_FEATURE_P2P_GO_OPPPS |
634a904a08bSPeer, Ilan 			       NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE |
635e705c121SKalle Valo 			       NL80211_FEATURE_DYNAMIC_SMPS |
636e705c121SKalle Valo 			       NL80211_FEATURE_STATIC_SMPS |
637e705c121SKalle Valo 			       NL80211_FEATURE_SUPPORTS_WMM_ADMISSION;
638e705c121SKalle Valo 
639e705c121SKalle Valo 	if (fw_has_capa(&mvm->fw->ucode_capa,
640e705c121SKalle Valo 			IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT))
641e705c121SKalle Valo 		hw->wiphy->features |= NL80211_FEATURE_TX_POWER_INSERTION;
642e705c121SKalle Valo 	if (fw_has_capa(&mvm->fw->ucode_capa,
643e705c121SKalle Valo 			IWL_UCODE_TLV_CAPA_QUIET_PERIOD_SUPPORT))
644e705c121SKalle Valo 		hw->wiphy->features |= NL80211_FEATURE_QUIET;
645e705c121SKalle Valo 
646e705c121SKalle Valo 	if (fw_has_capa(&mvm->fw->ucode_capa,
647e705c121SKalle Valo 			IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT))
648e705c121SKalle Valo 		hw->wiphy->features |=
649e705c121SKalle Valo 			NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES;
650e705c121SKalle Valo 
651e705c121SKalle Valo 	if (fw_has_capa(&mvm->fw->ucode_capa,
652e705c121SKalle Valo 			IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT))
653e705c121SKalle Valo 		hw->wiphy->features |= NL80211_FEATURE_WFA_TPC_IE_IN_PROBES;
654e705c121SKalle Valo 
655aacf8f18SAvrahams Stern 	if (fw_has_api(&mvm->fw->ucode_capa,
656aacf8f18SAvrahams Stern 		       IWL_UCODE_TLV_API_SCAN_TSF_REPORT)) {
657aacf8f18SAvrahams Stern 		wiphy_ext_feature_set(hw->wiphy,
658aacf8f18SAvrahams Stern 				      NL80211_EXT_FEATURE_SCAN_START_TIME);
659aacf8f18SAvrahams Stern 		wiphy_ext_feature_set(hw->wiphy,
660aacf8f18SAvrahams Stern 				      NL80211_EXT_FEATURE_BSS_PARENT_TSF);
661aacf8f18SAvrahams Stern 		wiphy_ext_feature_set(hw->wiphy,
662aacf8f18SAvrahams Stern 				      NL80211_EXT_FEATURE_SET_SCAN_DWELL);
663aacf8f18SAvrahams Stern 	}
664aacf8f18SAvrahams Stern 
6658f691af9SZamir, Roee 	if (iwl_mvm_is_oce_supported(mvm)) {
6668f691af9SZamir, Roee 		wiphy_ext_feature_set(hw->wiphy,
6678f691af9SZamir, Roee 			NL80211_EXT_FEATURE_ACCEPT_BCAST_PROBE_RESP);
6688f691af9SZamir, Roee 		wiphy_ext_feature_set(hw->wiphy,
6698f691af9SZamir, Roee 			NL80211_EXT_FEATURE_FILS_MAX_CHANNEL_TIME);
6708f691af9SZamir, Roee 		wiphy_ext_feature_set(hw->wiphy,
6718f691af9SZamir, Roee 			NL80211_EXT_FEATURE_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION);
6728f691af9SZamir, Roee 		wiphy_ext_feature_set(hw->wiphy,
6738f691af9SZamir, Roee 			NL80211_EXT_FEATURE_OCE_PROBE_REQ_HIGH_TX_RATE);
6748f691af9SZamir, Roee 	}
6758f691af9SZamir, Roee 
676e705c121SKalle Valo 	mvm->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
677e705c121SKalle Valo 
678e705c121SKalle Valo #ifdef CONFIG_PM_SLEEP
679e705c121SKalle Valo 	if (iwl_mvm_is_d0i3_supported(mvm) &&
680e705c121SKalle Valo 	    device_can_wakeup(mvm->trans->dev)) {
681e705c121SKalle Valo 		mvm->wowlan.flags = WIPHY_WOWLAN_ANY;
682e705c121SKalle Valo 		hw->wiphy->wowlan = &mvm->wowlan;
683e705c121SKalle Valo 	}
684e705c121SKalle Valo 
685eef187a7SSara Sharon 	if (mvm->fw->img[IWL_UCODE_WOWLAN].num_sec &&
686e705c121SKalle Valo 	    mvm->trans->ops->d3_suspend &&
687e705c121SKalle Valo 	    mvm->trans->ops->d3_resume &&
688e705c121SKalle Valo 	    device_can_wakeup(mvm->trans->dev)) {
689e705c121SKalle Valo 		mvm->wowlan.flags |= WIPHY_WOWLAN_MAGIC_PKT |
690e705c121SKalle Valo 				     WIPHY_WOWLAN_DISCONNECT |
691e705c121SKalle Valo 				     WIPHY_WOWLAN_EAP_IDENTITY_REQ |
692e705c121SKalle Valo 				     WIPHY_WOWLAN_RFKILL_RELEASE |
693e705c121SKalle Valo 				     WIPHY_WOWLAN_NET_DETECT;
6943b37f4c9SJohannes Berg 		if (!iwlwifi_mod_params.swcrypto)
695e705c121SKalle Valo 			mvm->wowlan.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
696e705c121SKalle Valo 					     WIPHY_WOWLAN_GTK_REKEY_FAILURE |
697e705c121SKalle Valo 					     WIPHY_WOWLAN_4WAY_HANDSHAKE;
698e705c121SKalle Valo 
699e705c121SKalle Valo 		mvm->wowlan.n_patterns = IWL_WOWLAN_MAX_PATTERNS;
700e705c121SKalle Valo 		mvm->wowlan.pattern_min_len = IWL_WOWLAN_MIN_PATTERN_LEN;
701e705c121SKalle Valo 		mvm->wowlan.pattern_max_len = IWL_WOWLAN_MAX_PATTERN_LEN;
702e705c121SKalle Valo 		mvm->wowlan.max_nd_match_sets = IWL_SCAN_MAX_PROFILES;
703e705c121SKalle Valo 		hw->wiphy->wowlan = &mvm->wowlan;
704e705c121SKalle Valo 	}
705e705c121SKalle Valo #endif
706e705c121SKalle Valo 
707e705c121SKalle Valo #ifdef CONFIG_IWLWIFI_BCAST_FILTERING
708e705c121SKalle Valo 	/* assign default bcast filtering configuration */
709e705c121SKalle Valo 	mvm->bcast_filters = iwl_mvm_default_bcast_filters;
710e705c121SKalle Valo #endif
711e705c121SKalle Valo 
712e705c121SKalle Valo 	ret = iwl_mvm_leds_init(mvm);
713e705c121SKalle Valo 	if (ret)
714e705c121SKalle Valo 		return ret;
715e705c121SKalle Valo 
716e705c121SKalle Valo 	if (fw_has_capa(&mvm->fw->ucode_capa,
717e705c121SKalle Valo 			IWL_UCODE_TLV_CAPA_TDLS_SUPPORT)) {
718e705c121SKalle Valo 		IWL_DEBUG_TDLS(mvm, "TDLS supported\n");
719e705c121SKalle Valo 		hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS;
720e705c121SKalle Valo 		ieee80211_hw_set(hw, TDLS_WIDER_BW);
721e705c121SKalle Valo 	}
722e705c121SKalle Valo 
723e705c121SKalle Valo 	if (fw_has_capa(&mvm->fw->ucode_capa,
724e705c121SKalle Valo 			IWL_UCODE_TLV_CAPA_TDLS_CHANNEL_SWITCH)) {
725e705c121SKalle Valo 		IWL_DEBUG_TDLS(mvm, "TDLS channel switch supported\n");
726e705c121SKalle Valo 		hw->wiphy->features |= NL80211_FEATURE_TDLS_CHANNEL_SWITCH;
727e705c121SKalle Valo 	}
728e705c121SKalle Valo 
729e705c121SKalle Valo 	hw->netdev_features |= mvm->cfg->features;
7305e6a98dcSSara Sharon 	if (!iwl_mvm_is_csum_supported(mvm)) {
7315e6a98dcSSara Sharon 		hw->netdev_features &= ~(IWL_TX_CSUM_NETIF_FLAGS |
7325e6a98dcSSara Sharon 					 NETIF_F_RXCSUM);
7335e6a98dcSSara Sharon 		/* We may support SW TX CSUM */
73441837ca9SEmmanuel Grumbach 		if (IWL_MVM_SW_TX_CSUM_OFFLOAD)
7355e6a98dcSSara Sharon 			hw->netdev_features |= IWL_TX_CSUM_NETIF_FLAGS;
7365e6a98dcSSara Sharon 	}
73741837ca9SEmmanuel Grumbach 
738e705c121SKalle Valo 	ret = ieee80211_register_hw(mvm->hw);
739e705c121SKalle Valo 	if (ret)
740e705c121SKalle Valo 		iwl_mvm_leds_exit(mvm);
741de8ba41bSLiad Kaufman 	mvm->init_status |= IWL_MVM_INIT_STATUS_REG_HW_INIT_COMPLETE;
742e705c121SKalle Valo 
74391b08c2dSAviya Erenfeld 	if (mvm->cfg->vht_mu_mimo_supported)
74491b08c2dSAviya Erenfeld 		wiphy_ext_feature_set(hw->wiphy,
74591b08c2dSAviya Erenfeld 				      NL80211_EXT_FEATURE_MU_MIMO_AIR_SNIFFER);
74691b08c2dSAviya Erenfeld 
747e705c121SKalle Valo 	return ret;
748e705c121SKalle Valo }
749e705c121SKalle Valo 
750e705c121SKalle Valo static bool iwl_mvm_defer_tx(struct iwl_mvm *mvm,
751e705c121SKalle Valo 			     struct ieee80211_sta *sta,
752e705c121SKalle Valo 			     struct sk_buff *skb)
753e705c121SKalle Valo {
754e705c121SKalle Valo 	struct iwl_mvm_sta *mvmsta;
755e705c121SKalle Valo 	bool defer = false;
756e705c121SKalle Valo 
757e705c121SKalle Valo 	/*
758e705c121SKalle Valo 	 * double check the IN_D0I3 flag both before and after
759e705c121SKalle Valo 	 * taking the spinlock, in order to prevent taking
760e705c121SKalle Valo 	 * the spinlock when not needed.
761e705c121SKalle Valo 	 */
762e705c121SKalle Valo 	if (likely(!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status)))
763e705c121SKalle Valo 		return false;
764e705c121SKalle Valo 
765e705c121SKalle Valo 	spin_lock(&mvm->d0i3_tx_lock);
766e705c121SKalle Valo 	/*
767e705c121SKalle Valo 	 * testing the flag again ensures the skb dequeue
768e705c121SKalle Valo 	 * loop (on d0i3 exit) hasn't run yet.
769e705c121SKalle Valo 	 */
770e705c121SKalle Valo 	if (!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status))
771e705c121SKalle Valo 		goto out;
772e705c121SKalle Valo 
773e705c121SKalle Valo 	mvmsta = iwl_mvm_sta_from_mac80211(sta);
7740ae98812SSara Sharon 	if (mvmsta->sta_id == IWL_MVM_INVALID_STA ||
775e705c121SKalle Valo 	    mvmsta->sta_id != mvm->d0i3_ap_sta_id)
776e705c121SKalle Valo 		goto out;
777e705c121SKalle Valo 
778e705c121SKalle Valo 	__skb_queue_tail(&mvm->d0i3_tx, skb);
779e705c121SKalle Valo 	ieee80211_stop_queues(mvm->hw);
780e705c121SKalle Valo 
781e705c121SKalle Valo 	/* trigger wakeup */
782e705c121SKalle Valo 	iwl_mvm_ref(mvm, IWL_MVM_REF_TX);
783e705c121SKalle Valo 	iwl_mvm_unref(mvm, IWL_MVM_REF_TX);
784e705c121SKalle Valo 
785e705c121SKalle Valo 	defer = true;
786e705c121SKalle Valo out:
787e705c121SKalle Valo 	spin_unlock(&mvm->d0i3_tx_lock);
788e705c121SKalle Valo 	return defer;
789e705c121SKalle Valo }
790e705c121SKalle Valo 
791e705c121SKalle Valo static void iwl_mvm_mac_tx(struct ieee80211_hw *hw,
792e705c121SKalle Valo 			   struct ieee80211_tx_control *control,
793e705c121SKalle Valo 			   struct sk_buff *skb)
794e705c121SKalle Valo {
795e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
796e705c121SKalle Valo 	struct ieee80211_sta *sta = control->sta;
797e705c121SKalle Valo 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
798e705c121SKalle Valo 	struct ieee80211_hdr *hdr = (void *)skb->data;
799e705c121SKalle Valo 
800e705c121SKalle Valo 	if (iwl_mvm_is_radio_killed(mvm)) {
801e705c121SKalle Valo 		IWL_DEBUG_DROP(mvm, "Dropping - RF/CT KILL\n");
802e705c121SKalle Valo 		goto drop;
803e705c121SKalle Valo 	}
804e705c121SKalle Valo 
805d20e30afSEmmanuel Grumbach 	if (info->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
806e705c121SKalle Valo 	    !test_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status) &&
807e705c121SKalle Valo 	    !test_bit(IWL_MVM_STATUS_ROC_AUX_RUNNING, &mvm->status))
808e705c121SKalle Valo 		goto drop;
809e705c121SKalle Valo 
810eb045e6eSDavid Spinadel 	/* treat non-bufferable MMPDUs on AP interfaces as broadcast */
811eb045e6eSDavid Spinadel 	if ((info->control.vif->type == NL80211_IFTYPE_AP ||
812eb045e6eSDavid Spinadel 	     info->control.vif->type == NL80211_IFTYPE_ADHOC) &&
813e705c121SKalle Valo 	    ieee80211_is_mgmt(hdr->frame_control) &&
814eb045e6eSDavid Spinadel 	    !ieee80211_is_bufferable_mmpdu(hdr->frame_control))
815e705c121SKalle Valo 		sta = NULL;
816e705c121SKalle Valo 
817e705c121SKalle Valo 	if (sta) {
818e705c121SKalle Valo 		if (iwl_mvm_defer_tx(mvm, sta, skb))
819e705c121SKalle Valo 			return;
820e705c121SKalle Valo 		if (iwl_mvm_tx_skb(mvm, skb, sta))
821e705c121SKalle Valo 			goto drop;
822e705c121SKalle Valo 		return;
823e705c121SKalle Valo 	}
824e705c121SKalle Valo 
825e705c121SKalle Valo 	if (iwl_mvm_tx_skb_non_sta(mvm, skb))
826e705c121SKalle Valo 		goto drop;
827e705c121SKalle Valo 	return;
828e705c121SKalle Valo  drop:
829e705c121SKalle Valo 	ieee80211_free_txskb(hw, skb);
830e705c121SKalle Valo }
831e705c121SKalle Valo 
832e705c121SKalle Valo static inline bool iwl_enable_rx_ampdu(const struct iwl_cfg *cfg)
833e705c121SKalle Valo {
834e705c121SKalle Valo 	if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
835e705c121SKalle Valo 		return false;
836e705c121SKalle Valo 	return true;
837e705c121SKalle Valo }
838e705c121SKalle Valo 
839e705c121SKalle Valo static inline bool iwl_enable_tx_ampdu(const struct iwl_cfg *cfg)
840e705c121SKalle Valo {
841e705c121SKalle Valo 	if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
842e705c121SKalle Valo 		return false;
843e705c121SKalle Valo 	if (iwlwifi_mod_params.disable_11n & IWL_ENABLE_HT_TXAGG)
844e705c121SKalle Valo 		return true;
845e705c121SKalle Valo 
846e705c121SKalle Valo 	/* enabled by default */
847e705c121SKalle Valo 	return true;
848e705c121SKalle Valo }
849e705c121SKalle Valo 
850e705c121SKalle Valo #define CHECK_BA_TRIGGER(_mvm, _trig, _tid_bm, _tid, _fmt...)		\
851e705c121SKalle Valo 	do {								\
852e705c121SKalle Valo 		if (!(le16_to_cpu(_tid_bm) & BIT(_tid)))		\
853e705c121SKalle Valo 			break;						\
8547174beb6SJohannes Berg 		iwl_fw_dbg_collect_trig(&(_mvm)->fwrt, _trig, _fmt);	\
855e705c121SKalle Valo 	} while (0)
856e705c121SKalle Valo 
857e705c121SKalle Valo static void
858e705c121SKalle Valo iwl_mvm_ampdu_check_trigger(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
859e705c121SKalle Valo 			    struct ieee80211_sta *sta, u16 tid, u16 rx_ba_ssn,
860e705c121SKalle Valo 			    enum ieee80211_ampdu_mlme_action action)
861e705c121SKalle Valo {
862e705c121SKalle Valo 	struct iwl_fw_dbg_trigger_tlv *trig;
863e705c121SKalle Valo 	struct iwl_fw_dbg_trigger_ba *ba_trig;
864e705c121SKalle Valo 
865e705c121SKalle Valo 	if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_BA))
866e705c121SKalle Valo 		return;
867e705c121SKalle Valo 
868e705c121SKalle Valo 	trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_BA);
869e705c121SKalle Valo 	ba_trig = (void *)trig->data;
870e705c121SKalle Valo 
8717174beb6SJohannes Berg 	if (!iwl_fw_dbg_trigger_check_stop(&mvm->fwrt,
8727174beb6SJohannes Berg 					   ieee80211_vif_to_wdev(vif), trig))
873e705c121SKalle Valo 		return;
874e705c121SKalle Valo 
875e705c121SKalle Valo 	switch (action) {
876e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_OPERATIONAL: {
877e705c121SKalle Valo 		struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
878e705c121SKalle Valo 		struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
879e705c121SKalle Valo 
880e705c121SKalle Valo 		CHECK_BA_TRIGGER(mvm, trig, ba_trig->tx_ba_start, tid,
881e705c121SKalle Valo 				 "TX AGG START: MAC %pM tid %d ssn %d\n",
882e705c121SKalle Valo 				 sta->addr, tid, tid_data->ssn);
883e705c121SKalle Valo 		break;
884e705c121SKalle Valo 		}
885e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_STOP_CONT:
886e705c121SKalle Valo 		CHECK_BA_TRIGGER(mvm, trig, ba_trig->tx_ba_stop, tid,
887e705c121SKalle Valo 				 "TX AGG STOP: MAC %pM tid %d\n",
888e705c121SKalle Valo 				 sta->addr, tid);
889e705c121SKalle Valo 		break;
890e705c121SKalle Valo 	case IEEE80211_AMPDU_RX_START:
891e705c121SKalle Valo 		CHECK_BA_TRIGGER(mvm, trig, ba_trig->rx_ba_start, tid,
892e705c121SKalle Valo 				 "RX AGG START: MAC %pM tid %d ssn %d\n",
893e705c121SKalle Valo 				 sta->addr, tid, rx_ba_ssn);
894e705c121SKalle Valo 		break;
895e705c121SKalle Valo 	case IEEE80211_AMPDU_RX_STOP:
896e705c121SKalle Valo 		CHECK_BA_TRIGGER(mvm, trig, ba_trig->rx_ba_stop, tid,
897e705c121SKalle Valo 				 "RX AGG STOP: MAC %pM tid %d\n",
898e705c121SKalle Valo 				 sta->addr, tid);
899e705c121SKalle Valo 		break;
900e705c121SKalle Valo 	default:
901e705c121SKalle Valo 		break;
902e705c121SKalle Valo 	}
903e705c121SKalle Valo }
904e705c121SKalle Valo 
905e705c121SKalle Valo static int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw,
906e705c121SKalle Valo 				    struct ieee80211_vif *vif,
90750ea05efSSara Sharon 				    struct ieee80211_ampdu_params *params)
908e705c121SKalle Valo {
909e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
910e705c121SKalle Valo 	int ret;
911e705c121SKalle Valo 	bool tx_agg_ref = false;
91250ea05efSSara Sharon 	struct ieee80211_sta *sta = params->sta;
91350ea05efSSara Sharon 	enum ieee80211_ampdu_mlme_action action = params->action;
91450ea05efSSara Sharon 	u16 tid = params->tid;
91550ea05efSSara Sharon 	u16 *ssn = &params->ssn;
91650ea05efSSara Sharon 	u8 buf_size = params->buf_size;
917bb81bb68SEmmanuel Grumbach 	bool amsdu = params->amsdu;
91810b2b201SSara Sharon 	u16 timeout = params->timeout;
919e705c121SKalle Valo 
920e705c121SKalle Valo 	IWL_DEBUG_HT(mvm, "A-MPDU action on addr %pM tid %d: action %d\n",
921e705c121SKalle Valo 		     sta->addr, tid, action);
922e705c121SKalle Valo 
923e705c121SKalle Valo 	if (!(mvm->nvm_data->sku_cap_11n_enable))
924e705c121SKalle Valo 		return -EACCES;
925e705c121SKalle Valo 
926e705c121SKalle Valo 	/* return from D0i3 before starting a new Tx aggregation */
927e705c121SKalle Valo 	switch (action) {
928e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_START:
929e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_STOP_CONT:
930e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_STOP_FLUSH:
931e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
932e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_OPERATIONAL:
933e705c121SKalle Valo 		/*
934e705c121SKalle Valo 		 * for tx start, wait synchronously until D0i3 exit to
935e705c121SKalle Valo 		 * get the correct sequence number for the tid.
936e705c121SKalle Valo 		 * additionally, some other ampdu actions use direct
937e705c121SKalle Valo 		 * target access, which is not handled automatically
938e705c121SKalle Valo 		 * by the trans layer (unlike commands), so wait for
939e705c121SKalle Valo 		 * d0i3 exit in these cases as well.
940e705c121SKalle Valo 		 */
941e705c121SKalle Valo 		ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_TX_AGG);
942e705c121SKalle Valo 		if (ret)
943e705c121SKalle Valo 			return ret;
944e705c121SKalle Valo 
945e705c121SKalle Valo 		tx_agg_ref = true;
946e705c121SKalle Valo 		break;
947e705c121SKalle Valo 	default:
948e705c121SKalle Valo 		break;
949e705c121SKalle Valo 	}
950e705c121SKalle Valo 
951e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
952e705c121SKalle Valo 
953e705c121SKalle Valo 	switch (action) {
954e705c121SKalle Valo 	case IEEE80211_AMPDU_RX_START:
955e705c121SKalle Valo 		if (!iwl_enable_rx_ampdu(mvm->cfg)) {
956e705c121SKalle Valo 			ret = -EINVAL;
957e705c121SKalle Valo 			break;
958e705c121SKalle Valo 		}
95910b2b201SSara Sharon 		ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, *ssn, true, buf_size,
96010b2b201SSara Sharon 					 timeout);
961e705c121SKalle Valo 		break;
962e705c121SKalle Valo 	case IEEE80211_AMPDU_RX_STOP:
96310b2b201SSara Sharon 		ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, 0, false, buf_size,
96410b2b201SSara Sharon 					 timeout);
965e705c121SKalle Valo 		break;
966e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_START:
967e705c121SKalle Valo 		if (!iwl_enable_tx_ampdu(mvm->cfg)) {
968e705c121SKalle Valo 			ret = -EINVAL;
969e705c121SKalle Valo 			break;
970e705c121SKalle Valo 		}
971e705c121SKalle Valo 		ret = iwl_mvm_sta_tx_agg_start(mvm, vif, sta, tid, ssn);
972e705c121SKalle Valo 		break;
973e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_STOP_CONT:
974e705c121SKalle Valo 		ret = iwl_mvm_sta_tx_agg_stop(mvm, vif, sta, tid);
975e705c121SKalle Valo 		break;
976e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_STOP_FLUSH:
977e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
978e705c121SKalle Valo 		ret = iwl_mvm_sta_tx_agg_flush(mvm, vif, sta, tid);
979e705c121SKalle Valo 		break;
980e705c121SKalle Valo 	case IEEE80211_AMPDU_TX_OPERATIONAL:
981bb81bb68SEmmanuel Grumbach 		ret = iwl_mvm_sta_tx_agg_oper(mvm, vif, sta, tid,
982bb81bb68SEmmanuel Grumbach 					      buf_size, amsdu);
983e705c121SKalle Valo 		break;
984e705c121SKalle Valo 	default:
985e705c121SKalle Valo 		WARN_ON_ONCE(1);
986e705c121SKalle Valo 		ret = -EINVAL;
987e705c121SKalle Valo 		break;
988e705c121SKalle Valo 	}
989e705c121SKalle Valo 
990e705c121SKalle Valo 	if (!ret) {
991e705c121SKalle Valo 		u16 rx_ba_ssn = 0;
992e705c121SKalle Valo 
993e705c121SKalle Valo 		if (action == IEEE80211_AMPDU_RX_START)
994e705c121SKalle Valo 			rx_ba_ssn = *ssn;
995e705c121SKalle Valo 
996e705c121SKalle Valo 		iwl_mvm_ampdu_check_trigger(mvm, vif, sta, tid,
997e705c121SKalle Valo 					    rx_ba_ssn, action);
998e705c121SKalle Valo 	}
999e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
1000e705c121SKalle Valo 
1001e705c121SKalle Valo 	/*
1002e705c121SKalle Valo 	 * If the tid is marked as started, we won't use it for offloaded
1003e705c121SKalle Valo 	 * traffic on the next D0i3 entry. It's safe to unref.
1004e705c121SKalle Valo 	 */
1005e705c121SKalle Valo 	if (tx_agg_ref)
1006e705c121SKalle Valo 		iwl_mvm_unref(mvm, IWL_MVM_REF_TX_AGG);
1007e705c121SKalle Valo 
1008e705c121SKalle Valo 	return ret;
1009e705c121SKalle Valo }
1010e705c121SKalle Valo 
1011e705c121SKalle Valo static void iwl_mvm_cleanup_iterator(void *data, u8 *mac,
1012e705c121SKalle Valo 				     struct ieee80211_vif *vif)
1013e705c121SKalle Valo {
1014e705c121SKalle Valo 	struct iwl_mvm *mvm = data;
1015e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1016e705c121SKalle Valo 
1017e705c121SKalle Valo 	mvmvif->uploaded = false;
10180ae98812SSara Sharon 	mvmvif->ap_sta_id = IWL_MVM_INVALID_STA;
1019e705c121SKalle Valo 
1020e705c121SKalle Valo 	spin_lock_bh(&mvm->time_event_lock);
1021e705c121SKalle Valo 	iwl_mvm_te_clear_data(mvm, &mvmvif->time_event_data);
1022e705c121SKalle Valo 	spin_unlock_bh(&mvm->time_event_lock);
1023e705c121SKalle Valo 
1024e705c121SKalle Valo 	mvmvif->phy_ctxt = NULL;
1025e705c121SKalle Valo 	memset(&mvmvif->bf_data, 0, sizeof(mvmvif->bf_data));
1026e705c121SKalle Valo }
1027e705c121SKalle Valo 
1028e705c121SKalle Valo static void iwl_mvm_restart_cleanup(struct iwl_mvm *mvm)
1029e705c121SKalle Valo {
1030e705c121SKalle Valo 	/* clear the D3 reconfig, we only need it to avoid dumping a
1031e705c121SKalle Valo 	 * firmware coredump on reconfiguration, we shouldn't do that
1032e705c121SKalle Valo 	 * on D3->D0 transition
1033e705c121SKalle Valo 	 */
1034e705c121SKalle Valo 	if (!test_and_clear_bit(IWL_MVM_STATUS_D3_RECONFIG, &mvm->status)) {
10357174beb6SJohannes Berg 		mvm->fwrt.dump.desc = &iwl_dump_desc_assert;
10367174beb6SJohannes Berg 		iwl_fw_error_dump(&mvm->fwrt);
1037e705c121SKalle Valo 	}
1038e705c121SKalle Valo 
1039e705c121SKalle Valo 	/* cleanup all stale references (scan, roc), but keep the
1040e705c121SKalle Valo 	 * ucode_down ref until reconfig is complete
1041e705c121SKalle Valo 	 */
1042e705c121SKalle Valo 	iwl_mvm_unref_all_except(mvm, IWL_MVM_REF_UCODE_DOWN);
1043e705c121SKalle Valo 
1044fcb6b92aSChaya Rachel Ivgi 	iwl_mvm_stop_device(mvm);
1045e705c121SKalle Valo 
1046e705c121SKalle Valo 	mvm->scan_status = 0;
1047e705c121SKalle Valo 	mvm->ps_disabled = false;
1048e705c121SKalle Valo 	mvm->calibrating = false;
1049e705c121SKalle Valo 
1050e705c121SKalle Valo 	/* just in case one was running */
1051305d236eSEliad Peller 	iwl_mvm_cleanup_roc_te(mvm);
1052e705c121SKalle Valo 	ieee80211_remain_on_channel_expired(mvm->hw);
1053e705c121SKalle Valo 
1054e705c121SKalle Valo 	/*
1055e705c121SKalle Valo 	 * cleanup all interfaces, even inactive ones, as some might have
1056e705c121SKalle Valo 	 * gone down during the HW restart
1057e705c121SKalle Valo 	 */
1058e705c121SKalle Valo 	ieee80211_iterate_interfaces(mvm->hw, 0, iwl_mvm_cleanup_iterator, mvm);
1059e705c121SKalle Valo 
1060e705c121SKalle Valo 	mvm->p2p_device_vif = NULL;
10610ae98812SSara Sharon 	mvm->d0i3_ap_sta_id = IWL_MVM_INVALID_STA;
1062e705c121SKalle Valo 
1063e705c121SKalle Valo 	iwl_mvm_reset_phy_ctxts(mvm);
10649c3deeb5SLuca Coelho 	memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
106524afba76SLiad Kaufman 	memset(mvm->sta_deferred_frames, 0, sizeof(mvm->sta_deferred_frames));
1066e705c121SKalle Valo 	memset(&mvm->last_bt_notif, 0, sizeof(mvm->last_bt_notif));
1067e705c121SKalle Valo 	memset(&mvm->last_bt_ci_cmd, 0, sizeof(mvm->last_bt_ci_cmd));
1068e705c121SKalle Valo 
1069e705c121SKalle Valo 	ieee80211_wake_queues(mvm->hw);
1070e705c121SKalle Valo 
1071e705c121SKalle Valo 	/* clear any stale d0i3 state */
1072e705c121SKalle Valo 	clear_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status);
1073e705c121SKalle Valo 
1074e705c121SKalle Valo 	mvm->vif_count = 0;
1075e705c121SKalle Valo 	mvm->rx_ba_sessions = 0;
10767174beb6SJohannes Berg 	mvm->fwrt.dump.conf = FW_DBG_INVALID;
1077baf41bc3SShaul Triebitz 	mvm->monitor_on = false;
1078e705c121SKalle Valo 
1079e705c121SKalle Valo 	/* keep statistics ticking */
1080e705c121SKalle Valo 	iwl_mvm_accu_radio_stats(mvm);
1081e705c121SKalle Valo }
1082e705c121SKalle Valo 
1083e705c121SKalle Valo int __iwl_mvm_mac_start(struct iwl_mvm *mvm)
1084e705c121SKalle Valo {
1085e705c121SKalle Valo 	int ret;
1086e705c121SKalle Valo 
1087e705c121SKalle Valo 	lockdep_assert_held(&mvm->mutex);
1088e705c121SKalle Valo 
1089bf8b286fSJohannes Berg 	if (test_bit(IWL_MVM_STATUS_HW_RESTART_REQUESTED, &mvm->status)) {
1090bf8b286fSJohannes Berg 		/*
1091bf8b286fSJohannes Berg 		 * Now convert the HW_RESTART_REQUESTED flag to IN_HW_RESTART
1092bf8b286fSJohannes Berg 		 * so later code will - from now on - see that we're doing it.
1093bf8b286fSJohannes Berg 		 */
1094bf8b286fSJohannes Berg 		set_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
1095bf8b286fSJohannes Berg 		clear_bit(IWL_MVM_STATUS_HW_RESTART_REQUESTED, &mvm->status);
1096e705c121SKalle Valo 		/* Clean up some internal and mac80211 state on restart */
1097e705c121SKalle Valo 		iwl_mvm_restart_cleanup(mvm);
1098a42b2af3SLuca Coelho 	} else {
1099a42b2af3SLuca Coelho 		/* Hold the reference to prevent runtime suspend while
1100a42b2af3SLuca Coelho 		 * the start procedure runs.  It's a bit confusing
1101a42b2af3SLuca Coelho 		 * that the UCODE_DOWN reference is taken, but it just
1102a42b2af3SLuca Coelho 		 * means "UCODE is not UP yet". ( TODO: rename this
1103a42b2af3SLuca Coelho 		 * reference).
1104a42b2af3SLuca Coelho 		 */
1105a42b2af3SLuca Coelho 		iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
1106a42b2af3SLuca Coelho 	}
1107e705c121SKalle Valo 	ret = iwl_mvm_up(mvm);
1108e705c121SKalle Valo 
1109e705c121SKalle Valo 	if (ret && test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
1110e705c121SKalle Valo 		/* Something went wrong - we need to finish some cleanup
1111e705c121SKalle Valo 		 * that normally iwl_mvm_mac_restart_complete() below
1112e705c121SKalle Valo 		 * would do.
1113e705c121SKalle Valo 		 */
1114e705c121SKalle Valo 		clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
1115e705c121SKalle Valo 		iwl_mvm_d0i3_enable_tx(mvm, NULL);
1116e705c121SKalle Valo 	}
1117e705c121SKalle Valo 
1118e705c121SKalle Valo 	return ret;
1119e705c121SKalle Valo }
1120e705c121SKalle Valo 
1121e705c121SKalle Valo static int iwl_mvm_mac_start(struct ieee80211_hw *hw)
1122e705c121SKalle Valo {
1123e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1124e705c121SKalle Valo 	int ret;
1125e705c121SKalle Valo 
1126e705c121SKalle Valo 	/* Some hw restart cleanups must not hold the mutex */
1127e705c121SKalle Valo 	if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
1128e705c121SKalle Valo 		/*
1129e705c121SKalle Valo 		 * Make sure we are out of d0i3. This is needed
1130e705c121SKalle Valo 		 * to make sure the reference accounting is correct
1131e705c121SKalle Valo 		 * (and there is no stale d0i3_exit_work).
1132e705c121SKalle Valo 		 */
1133e705c121SKalle Valo 		wait_event_timeout(mvm->d0i3_exit_waitq,
1134e705c121SKalle Valo 				   !test_bit(IWL_MVM_STATUS_IN_D0I3,
1135e705c121SKalle Valo 					     &mvm->status),
1136e705c121SKalle Valo 				   HZ);
1137e705c121SKalle Valo 	}
1138e705c121SKalle Valo 
1139e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
1140e705c121SKalle Valo 	ret = __iwl_mvm_mac_start(mvm);
1141e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
1142e705c121SKalle Valo 
1143e705c121SKalle Valo 	return ret;
1144e705c121SKalle Valo }
1145e705c121SKalle Valo 
1146e705c121SKalle Valo static void iwl_mvm_restart_complete(struct iwl_mvm *mvm)
1147e705c121SKalle Valo {
1148e705c121SKalle Valo 	int ret;
1149e705c121SKalle Valo 
1150e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
1151e705c121SKalle Valo 
1152e705c121SKalle Valo 	clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
1153e705c121SKalle Valo 	iwl_mvm_d0i3_enable_tx(mvm, NULL);
1154e705c121SKalle Valo 	ret = iwl_mvm_update_quotas(mvm, true, NULL);
1155e705c121SKalle Valo 	if (ret)
1156e705c121SKalle Valo 		IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n",
1157e705c121SKalle Valo 			ret);
1158e705c121SKalle Valo 
1159e705c121SKalle Valo 	/* allow transport/FW low power modes */
1160e705c121SKalle Valo 	iwl_mvm_unref(mvm, IWL_MVM_REF_UCODE_DOWN);
1161e705c121SKalle Valo 
1162e705c121SKalle Valo 	/*
1163e705c121SKalle Valo 	 * If we have TDLS peers, remove them. We don't know the last seqno/PN
1164e705c121SKalle Valo 	 * of packets the FW sent out, so we must reconnect.
1165e705c121SKalle Valo 	 */
1166e705c121SKalle Valo 	iwl_mvm_teardown_tdls_peers(mvm);
1167e705c121SKalle Valo 
1168e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
1169e705c121SKalle Valo }
1170e705c121SKalle Valo 
1171e705c121SKalle Valo static void iwl_mvm_resume_complete(struct iwl_mvm *mvm)
1172e705c121SKalle Valo {
1173b7282643SLuca Coelho 	if (iwl_mvm_is_d0i3_supported(mvm) &&
1174b7282643SLuca Coelho 	    iwl_mvm_enter_d0i3_on_suspend(mvm))
1175b7282643SLuca Coelho 		WARN_ONCE(!wait_event_timeout(mvm->d0i3_exit_waitq,
1176e705c121SKalle Valo 					      !test_bit(IWL_MVM_STATUS_IN_D0I3,
1177e705c121SKalle Valo 							&mvm->status),
1178b7282643SLuca Coelho 					      HZ),
1179b7282643SLuca Coelho 			  "D0i3 exit on resume timed out\n");
1180e705c121SKalle Valo }
1181e705c121SKalle Valo 
1182e705c121SKalle Valo static void
1183e705c121SKalle Valo iwl_mvm_mac_reconfig_complete(struct ieee80211_hw *hw,
1184e705c121SKalle Valo 			      enum ieee80211_reconfig_type reconfig_type)
1185e705c121SKalle Valo {
1186e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1187e705c121SKalle Valo 
1188e705c121SKalle Valo 	switch (reconfig_type) {
1189e705c121SKalle Valo 	case IEEE80211_RECONFIG_TYPE_RESTART:
1190e705c121SKalle Valo 		iwl_mvm_restart_complete(mvm);
1191e705c121SKalle Valo 		break;
1192e705c121SKalle Valo 	case IEEE80211_RECONFIG_TYPE_SUSPEND:
1193e705c121SKalle Valo 		iwl_mvm_resume_complete(mvm);
1194e705c121SKalle Valo 		break;
1195e705c121SKalle Valo 	}
1196e705c121SKalle Valo }
1197e705c121SKalle Valo 
1198e705c121SKalle Valo void __iwl_mvm_mac_stop(struct iwl_mvm *mvm)
1199e705c121SKalle Valo {
1200e705c121SKalle Valo 	lockdep_assert_held(&mvm->mutex);
1201e705c121SKalle Valo 
1202e705c121SKalle Valo 	/* firmware counters are obviously reset now, but we shouldn't
1203e705c121SKalle Valo 	 * partially track so also clear the fw_reset_accu counters.
1204e705c121SKalle Valo 	 */
1205e705c121SKalle Valo 	memset(&mvm->accu_radio_stats, 0, sizeof(mvm->accu_radio_stats));
1206e705c121SKalle Valo 
1207e705c121SKalle Valo 	/* async_handlers_wk is now blocked */
1208e705c121SKalle Valo 
1209e705c121SKalle Valo 	/*
1210e705c121SKalle Valo 	 * The work item could be running or queued if the
1211e705c121SKalle Valo 	 * ROC time event stops just as we get here.
1212e705c121SKalle Valo 	 */
1213e705c121SKalle Valo 	flush_work(&mvm->roc_done_wk);
1214e705c121SKalle Valo 
1215fcb6b92aSChaya Rachel Ivgi 	iwl_mvm_stop_device(mvm);
1216e705c121SKalle Valo 
1217e705c121SKalle Valo 	iwl_mvm_async_handlers_purge(mvm);
1218e705c121SKalle Valo 	/* async_handlers_list is empty and will stay empty: HW is stopped */
1219e705c121SKalle Valo 
1220e705c121SKalle Valo 	/* the fw is stopped, the aux sta is dead: clean up driver state */
1221e705c121SKalle Valo 	iwl_mvm_del_aux_sta(mvm);
1222e705c121SKalle Valo 
1223e705c121SKalle Valo 	/*
1224e705c121SKalle Valo 	 * Clear IN_HW_RESTART flag when stopping the hw (as restart_complete()
1225e705c121SKalle Valo 	 * won't be called in this case).
1226e705c121SKalle Valo 	 * But make sure to cleanup interfaces that have gone down before/during
1227e705c121SKalle Valo 	 * HW restart was requested.
1228e705c121SKalle Valo 	 */
1229e705c121SKalle Valo 	if (test_and_clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
1230e705c121SKalle Valo 		ieee80211_iterate_interfaces(mvm->hw, 0,
1231e705c121SKalle Valo 					     iwl_mvm_cleanup_iterator, mvm);
1232e705c121SKalle Valo 
1233e705c121SKalle Valo 	/* We shouldn't have any UIDs still set.  Loop over all the UIDs to
1234e705c121SKalle Valo 	 * make sure there's nothing left there and warn if any is found.
1235e705c121SKalle Valo 	 */
1236e705c121SKalle Valo 	if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
1237e705c121SKalle Valo 		int i;
1238e705c121SKalle Valo 
1239e705c121SKalle Valo 		for (i = 0; i < mvm->max_scans; i++) {
1240e705c121SKalle Valo 			if (WARN_ONCE(mvm->scan_uid_status[i],
1241e705c121SKalle Valo 				      "UMAC scan UID %d status was not cleaned\n",
1242e705c121SKalle Valo 				      i))
1243e705c121SKalle Valo 				mvm->scan_uid_status[i] = 0;
1244e705c121SKalle Valo 		}
1245e705c121SKalle Valo 	}
1246e705c121SKalle Valo }
1247e705c121SKalle Valo 
1248e705c121SKalle Valo static void iwl_mvm_mac_stop(struct ieee80211_hw *hw)
1249e705c121SKalle Valo {
1250e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1251e705c121SKalle Valo 
1252e705c121SKalle Valo 	flush_work(&mvm->d0i3_exit_work);
1253e705c121SKalle Valo 	flush_work(&mvm->async_handlers_wk);
125424afba76SLiad Kaufman 	flush_work(&mvm->add_stream_wk);
1255771147b0SJohannes Berg 
1256771147b0SJohannes Berg 	/*
1257771147b0SJohannes Berg 	 * Lock and clear the firmware running bit here already, so that
1258771147b0SJohannes Berg 	 * new commands coming in elsewhere, e.g. from debugfs, will not
1259771147b0SJohannes Berg 	 * be able to proceed. This is important here because one of those
12607174beb6SJohannes Berg 	 * debugfs files causes the firmware dump to be triggered, and if we
1261771147b0SJohannes Berg 	 * don't stop debugfs accesses before canceling that it could be
1262771147b0SJohannes Berg 	 * retriggered after we flush it but before we've cleared the bit.
1263771147b0SJohannes Berg 	 */
1264771147b0SJohannes Berg 	clear_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING, &mvm->status);
1265771147b0SJohannes Berg 
12667174beb6SJohannes Berg 	iwl_fw_cancel_dump(&mvm->fwrt);
1267d3a108a4SAndrei Otcheretianski 	cancel_delayed_work_sync(&mvm->cs_tx_unblock_dwork);
126869e04642SLuca Coelho 	cancel_delayed_work_sync(&mvm->scan_timeout_dwork);
12697174beb6SJohannes Berg 	iwl_fw_free_dump_desc(&mvm->fwrt);
1270e705c121SKalle Valo 
1271e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
1272e705c121SKalle Valo 	__iwl_mvm_mac_stop(mvm);
1273e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
1274e705c121SKalle Valo 
1275e705c121SKalle Valo 	/*
1276e705c121SKalle Valo 	 * The worker might have been waiting for the mutex, let it run and
1277e705c121SKalle Valo 	 * discover that its list is now empty.
1278e705c121SKalle Valo 	 */
1279e705c121SKalle Valo 	cancel_work_sync(&mvm->async_handlers_wk);
1280e705c121SKalle Valo }
1281e705c121SKalle Valo 
1282e705c121SKalle Valo static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm)
1283e705c121SKalle Valo {
1284e705c121SKalle Valo 	u16 i;
1285e705c121SKalle Valo 
1286e705c121SKalle Valo 	lockdep_assert_held(&mvm->mutex);
1287e705c121SKalle Valo 
1288e705c121SKalle Valo 	for (i = 0; i < NUM_PHY_CTX; i++)
1289e705c121SKalle Valo 		if (!mvm->phy_ctxts[i].ref)
1290e705c121SKalle Valo 			return &mvm->phy_ctxts[i];
1291e705c121SKalle Valo 
1292e705c121SKalle Valo 	IWL_ERR(mvm, "No available PHY context\n");
1293e705c121SKalle Valo 	return NULL;
1294e705c121SKalle Valo }
1295e705c121SKalle Valo 
1296e705c121SKalle Valo static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1297e705c121SKalle Valo 				s16 tx_power)
1298e705c121SKalle Valo {
1299e705c121SKalle Valo 	struct iwl_dev_tx_power_cmd cmd = {
13004b87e5afSLuca Coelho 		.v3.set_mode = cpu_to_le32(IWL_TX_POWER_MODE_SET_MAC),
13014b87e5afSLuca Coelho 		.v3.mac_context_id =
1302e705c121SKalle Valo 			cpu_to_le32(iwl_mvm_vif_from_mac80211(vif)->id),
13034b87e5afSLuca Coelho 		.v3.pwr_restriction = cpu_to_le16(8 * tx_power),
1304e705c121SKalle Valo 	};
1305e705c121SKalle Valo 	int len = sizeof(cmd);
1306e705c121SKalle Valo 
1307e705c121SKalle Valo 	if (tx_power == IWL_DEFAULT_MAX_TX_POWER)
13084b87e5afSLuca Coelho 		cmd.v3.pwr_restriction = cpu_to_le16(IWL_DEV_MAX_TX_POWER);
1309e705c121SKalle Valo 
131055bfa4b9SLuca Coelho 	if (!fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_TX_POWER_ACK))
131155bfa4b9SLuca Coelho 		len = sizeof(cmd.v3);
1312e705c121SKalle Valo 
1313e705c121SKalle Valo 	return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0, len, &cmd);
1314e705c121SKalle Valo }
1315e705c121SKalle Valo 
1316e705c121SKalle Valo static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw,
1317e705c121SKalle Valo 				     struct ieee80211_vif *vif)
1318e705c121SKalle Valo {
1319e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1320e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1321e705c121SKalle Valo 	int ret;
1322e705c121SKalle Valo 
1323e705c121SKalle Valo 	mvmvif->mvm = mvm;
1324e705c121SKalle Valo 
1325e705c121SKalle Valo 	/*
1326e705c121SKalle Valo 	 * make sure D0i3 exit is completed, otherwise a target access
1327e705c121SKalle Valo 	 * during tx queue configuration could be done when still in
1328e705c121SKalle Valo 	 * D0i3 state.
1329e705c121SKalle Valo 	 */
1330e705c121SKalle Valo 	ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_ADD_IF);
1331e705c121SKalle Valo 	if (ret)
1332e705c121SKalle Valo 		return ret;
1333e705c121SKalle Valo 
1334e705c121SKalle Valo 	/*
1335e705c121SKalle Valo 	 * Not much to do here. The stack will not allow interface
1336e705c121SKalle Valo 	 * types or combinations that we didn't advertise, so we
1337e705c121SKalle Valo 	 * don't really have to check the types.
1338e705c121SKalle Valo 	 */
1339e705c121SKalle Valo 
1340e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
1341e705c121SKalle Valo 
1342e705c121SKalle Valo 	/* make sure that beacon statistics don't go backwards with FW reset */
1343e705c121SKalle Valo 	if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
1344e705c121SKalle Valo 		mvmvif->beacon_stats.accu_num_beacons +=
1345e705c121SKalle Valo 			mvmvif->beacon_stats.num_beacons;
1346e705c121SKalle Valo 
1347e705c121SKalle Valo 	/* Allocate resources for the MAC context, and add it to the fw  */
1348e705c121SKalle Valo 	ret = iwl_mvm_mac_ctxt_init(mvm, vif);
1349e705c121SKalle Valo 	if (ret)
1350e705c121SKalle Valo 		goto out_unlock;
1351e705c121SKalle Valo 
1352e705c121SKalle Valo 	/* Counting number of interfaces is needed for legacy PM */
1353e705c121SKalle Valo 	if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
1354e705c121SKalle Valo 		mvm->vif_count++;
1355e705c121SKalle Valo 
1356e705c121SKalle Valo 	/*
1357e705c121SKalle Valo 	 * The AP binding flow can be done only after the beacon
1358e705c121SKalle Valo 	 * template is configured (which happens only in the mac80211
1359e705c121SKalle Valo 	 * start_ap() flow), and adding the broadcast station can happen
1360e705c121SKalle Valo 	 * only after the binding.
1361e705c121SKalle Valo 	 * In addition, since modifying the MAC before adding a bcast
1362e705c121SKalle Valo 	 * station is not allowed by the FW, delay the adding of MAC context to
1363e705c121SKalle Valo 	 * the point where we can also add the bcast station.
1364e705c121SKalle Valo 	 * In short: there's not much we can do at this point, other than
1365e705c121SKalle Valo 	 * allocating resources :)
1366e705c121SKalle Valo 	 */
1367e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_AP ||
1368e705c121SKalle Valo 	    vif->type == NL80211_IFTYPE_ADHOC) {
1369e705c121SKalle Valo 		ret = iwl_mvm_alloc_bcast_sta(mvm, vif);
1370e705c121SKalle Valo 		if (ret) {
1371e705c121SKalle Valo 			IWL_ERR(mvm, "Failed to allocate bcast sta\n");
1372e705c121SKalle Valo 			goto out_release;
1373e705c121SKalle Valo 		}
1374e705c121SKalle Valo 
137526d6c16bSSara Sharon 		/*
137626d6c16bSSara Sharon 		 * Only queue for this station is the mcast queue,
137726d6c16bSSara Sharon 		 * which shouldn't be in TFD mask anyway
137826d6c16bSSara Sharon 		 */
137926d6c16bSSara Sharon 		ret = iwl_mvm_allocate_int_sta(mvm, &mvmvif->mcast_sta,
1380ced19f26SSara Sharon 					       0, vif->type,
1381ced19f26SSara Sharon 					       IWL_STA_MULTICAST);
138226d6c16bSSara Sharon 		if (ret)
138326d6c16bSSara Sharon 			goto out_release;
138426d6c16bSSara Sharon 
1385e705c121SKalle Valo 		iwl_mvm_vif_dbgfs_register(mvm, vif);
1386e705c121SKalle Valo 		goto out_unlock;
1387e705c121SKalle Valo 	}
1388e705c121SKalle Valo 
1389e705c121SKalle Valo 	mvmvif->features |= hw->netdev_features;
1390e705c121SKalle Valo 
1391e705c121SKalle Valo 	ret = iwl_mvm_mac_ctxt_add(mvm, vif);
1392e705c121SKalle Valo 	if (ret)
1393e705c121SKalle Valo 		goto out_release;
1394e705c121SKalle Valo 
1395e705c121SKalle Valo 	ret = iwl_mvm_power_update_mac(mvm);
1396e705c121SKalle Valo 	if (ret)
1397e705c121SKalle Valo 		goto out_remove_mac;
1398e705c121SKalle Valo 
1399e705c121SKalle Valo 	/* beacon filtering */
1400e705c121SKalle Valo 	ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0);
1401e705c121SKalle Valo 	if (ret)
1402e705c121SKalle Valo 		goto out_remove_mac;
1403e705c121SKalle Valo 
1404e705c121SKalle Valo 	if (!mvm->bf_allowed_vif &&
1405e705c121SKalle Valo 	    vif->type == NL80211_IFTYPE_STATION && !vif->p2p) {
1406e705c121SKalle Valo 		mvm->bf_allowed_vif = mvmvif;
1407e705c121SKalle Valo 		vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER |
1408e705c121SKalle Valo 				     IEEE80211_VIF_SUPPORTS_CQM_RSSI;
1409e705c121SKalle Valo 	}
1410e705c121SKalle Valo 
1411e705c121SKalle Valo 	/*
1412e705c121SKalle Valo 	 * P2P_DEVICE interface does not have a channel context assigned to it,
1413e705c121SKalle Valo 	 * so a dedicated PHY context is allocated to it and the corresponding
1414e705c121SKalle Valo 	 * MAC context is bound to it at this stage.
1415e705c121SKalle Valo 	 */
1416e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1417e705c121SKalle Valo 
1418e705c121SKalle Valo 		mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
1419e705c121SKalle Valo 		if (!mvmvif->phy_ctxt) {
1420e705c121SKalle Valo 			ret = -ENOSPC;
1421e705c121SKalle Valo 			goto out_free_bf;
1422e705c121SKalle Valo 		}
1423e705c121SKalle Valo 
1424e705c121SKalle Valo 		iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
1425e705c121SKalle Valo 		ret = iwl_mvm_binding_add_vif(mvm, vif);
1426e705c121SKalle Valo 		if (ret)
1427e705c121SKalle Valo 			goto out_unref_phy;
1428e705c121SKalle Valo 
1429d197358bSLuca Coelho 		ret = iwl_mvm_add_p2p_bcast_sta(mvm, vif);
1430e705c121SKalle Valo 		if (ret)
1431e705c121SKalle Valo 			goto out_unbind;
1432e705c121SKalle Valo 
1433e705c121SKalle Valo 		/* Save a pointer to p2p device vif, so it can later be used to
1434e705c121SKalle Valo 		 * update the p2p device MAC when a GO is started/stopped */
1435e705c121SKalle Valo 		mvm->p2p_device_vif = vif;
1436e705c121SKalle Valo 	}
1437e705c121SKalle Valo 
1438baf41bc3SShaul Triebitz 	if (vif->type == NL80211_IFTYPE_MONITOR)
1439baf41bc3SShaul Triebitz 		mvm->monitor_on = true;
1440baf41bc3SShaul Triebitz 
1441e705c121SKalle Valo 	iwl_mvm_vif_dbgfs_register(mvm, vif);
1442e705c121SKalle Valo 	goto out_unlock;
1443e705c121SKalle Valo 
1444e705c121SKalle Valo  out_unbind:
1445e705c121SKalle Valo 	iwl_mvm_binding_remove_vif(mvm, vif);
1446e705c121SKalle Valo  out_unref_phy:
1447e705c121SKalle Valo 	iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
1448e705c121SKalle Valo  out_free_bf:
1449e705c121SKalle Valo 	if (mvm->bf_allowed_vif == mvmvif) {
1450e705c121SKalle Valo 		mvm->bf_allowed_vif = NULL;
1451e705c121SKalle Valo 		vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1452e705c121SKalle Valo 				       IEEE80211_VIF_SUPPORTS_CQM_RSSI);
1453e705c121SKalle Valo 	}
1454e705c121SKalle Valo  out_remove_mac:
1455e705c121SKalle Valo 	mvmvif->phy_ctxt = NULL;
1456e705c121SKalle Valo 	iwl_mvm_mac_ctxt_remove(mvm, vif);
1457e705c121SKalle Valo  out_release:
1458e705c121SKalle Valo 	if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
1459e705c121SKalle Valo 		mvm->vif_count--;
1460e705c121SKalle Valo  out_unlock:
1461e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
1462e705c121SKalle Valo 
1463e705c121SKalle Valo 	iwl_mvm_unref(mvm, IWL_MVM_REF_ADD_IF);
1464e705c121SKalle Valo 
1465e705c121SKalle Valo 	return ret;
1466e705c121SKalle Valo }
1467e705c121SKalle Valo 
1468e705c121SKalle Valo static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm,
1469e705c121SKalle Valo 					struct ieee80211_vif *vif)
1470e705c121SKalle Valo {
1471e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1472e705c121SKalle Valo 		/*
1473e705c121SKalle Valo 		 * Flush the ROC worker which will flush the OFFCHANNEL queue.
1474e705c121SKalle Valo 		 * We assume here that all the packets sent to the OFFCHANNEL
1475e705c121SKalle Valo 		 * queue are sent in ROC session.
1476e705c121SKalle Valo 		 */
1477e705c121SKalle Valo 		flush_work(&mvm->roc_done_wk);
1478e705c121SKalle Valo 	}
1479e705c121SKalle Valo }
1480e705c121SKalle Valo 
1481e705c121SKalle Valo static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw,
1482e705c121SKalle Valo 					 struct ieee80211_vif *vif)
1483e705c121SKalle Valo {
1484e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1485e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1486e705c121SKalle Valo 
1487e705c121SKalle Valo 	iwl_mvm_prepare_mac_removal(mvm, vif);
1488e705c121SKalle Valo 
1489e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
1490e705c121SKalle Valo 
1491e705c121SKalle Valo 	if (mvm->bf_allowed_vif == mvmvif) {
1492e705c121SKalle Valo 		mvm->bf_allowed_vif = NULL;
1493e705c121SKalle Valo 		vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1494e705c121SKalle Valo 				       IEEE80211_VIF_SUPPORTS_CQM_RSSI);
1495e705c121SKalle Valo 	}
1496e705c121SKalle Valo 
1497e705c121SKalle Valo 	iwl_mvm_vif_dbgfs_clean(mvm, vif);
1498e705c121SKalle Valo 
1499e705c121SKalle Valo 	/*
1500e705c121SKalle Valo 	 * For AP/GO interface, the tear down of the resources allocated to the
1501e705c121SKalle Valo 	 * interface is be handled as part of the stop_ap flow.
1502e705c121SKalle Valo 	 */
1503e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_AP ||
1504e705c121SKalle Valo 	    vif->type == NL80211_IFTYPE_ADHOC) {
1505e705c121SKalle Valo #ifdef CONFIG_NL80211_TESTMODE
1506e705c121SKalle Valo 		if (vif == mvm->noa_vif) {
1507e705c121SKalle Valo 			mvm->noa_vif = NULL;
1508e705c121SKalle Valo 			mvm->noa_duration = 0;
1509e705c121SKalle Valo 		}
1510e705c121SKalle Valo #endif
151126d6c16bSSara Sharon 		iwl_mvm_dealloc_int_sta(mvm, &mvmvif->mcast_sta);
1512e705c121SKalle Valo 		iwl_mvm_dealloc_bcast_sta(mvm, vif);
1513e705c121SKalle Valo 		goto out_release;
1514e705c121SKalle Valo 	}
1515e705c121SKalle Valo 
1516e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1517e705c121SKalle Valo 		mvm->p2p_device_vif = NULL;
1518d197358bSLuca Coelho 		iwl_mvm_rm_p2p_bcast_sta(mvm, vif);
1519e705c121SKalle Valo 		iwl_mvm_binding_remove_vif(mvm, vif);
1520e705c121SKalle Valo 		iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
1521e705c121SKalle Valo 		mvmvif->phy_ctxt = NULL;
1522e705c121SKalle Valo 	}
1523e705c121SKalle Valo 
1524e705c121SKalle Valo 	if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE)
1525e705c121SKalle Valo 		mvm->vif_count--;
1526e705c121SKalle Valo 
1527e705c121SKalle Valo 	iwl_mvm_power_update_mac(mvm);
1528e705c121SKalle Valo 	iwl_mvm_mac_ctxt_remove(mvm, vif);
1529e705c121SKalle Valo 
1530baf41bc3SShaul Triebitz 	if (vif->type == NL80211_IFTYPE_MONITOR)
1531baf41bc3SShaul Triebitz 		mvm->monitor_on = false;
1532baf41bc3SShaul Triebitz 
1533e705c121SKalle Valo out_release:
1534e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
1535e705c121SKalle Valo }
1536e705c121SKalle Valo 
1537e705c121SKalle Valo static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed)
1538e705c121SKalle Valo {
1539e705c121SKalle Valo 	return 0;
1540e705c121SKalle Valo }
1541e705c121SKalle Valo 
1542e705c121SKalle Valo struct iwl_mvm_mc_iter_data {
1543e705c121SKalle Valo 	struct iwl_mvm *mvm;
1544e705c121SKalle Valo 	int port_id;
1545e705c121SKalle Valo };
1546e705c121SKalle Valo 
1547e705c121SKalle Valo static void iwl_mvm_mc_iface_iterator(void *_data, u8 *mac,
1548e705c121SKalle Valo 				      struct ieee80211_vif *vif)
1549e705c121SKalle Valo {
1550e705c121SKalle Valo 	struct iwl_mvm_mc_iter_data *data = _data;
1551e705c121SKalle Valo 	struct iwl_mvm *mvm = data->mvm;
1552e705c121SKalle Valo 	struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd;
155397bce57bSLuca Coelho 	struct iwl_host_cmd hcmd = {
155497bce57bSLuca Coelho 		.id = MCAST_FILTER_CMD,
155597bce57bSLuca Coelho 		.flags = CMD_ASYNC,
155697bce57bSLuca Coelho 		.dataflags[0] = IWL_HCMD_DFL_NOCOPY,
155797bce57bSLuca Coelho 	};
1558e705c121SKalle Valo 	int ret, len;
1559e705c121SKalle Valo 
1560e705c121SKalle Valo 	/* if we don't have free ports, mcast frames will be dropped */
1561e705c121SKalle Valo 	if (WARN_ON_ONCE(data->port_id >= MAX_PORT_ID_NUM))
1562e705c121SKalle Valo 		return;
1563e705c121SKalle Valo 
1564e705c121SKalle Valo 	if (vif->type != NL80211_IFTYPE_STATION ||
1565e705c121SKalle Valo 	    !vif->bss_conf.assoc)
1566e705c121SKalle Valo 		return;
1567e705c121SKalle Valo 
1568e705c121SKalle Valo 	cmd->port_id = data->port_id++;
1569e705c121SKalle Valo 	memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
1570e705c121SKalle Valo 	len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4);
1571e705c121SKalle Valo 
157297bce57bSLuca Coelho 	hcmd.len[0] = len;
157397bce57bSLuca Coelho 	hcmd.data[0] = cmd;
157497bce57bSLuca Coelho 
157597bce57bSLuca Coelho 	ret = iwl_mvm_send_cmd(mvm, &hcmd);
1576e705c121SKalle Valo 	if (ret)
1577e705c121SKalle Valo 		IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret);
1578e705c121SKalle Valo }
1579e705c121SKalle Valo 
1580e705c121SKalle Valo static void iwl_mvm_recalc_multicast(struct iwl_mvm *mvm)
1581e705c121SKalle Valo {
1582e705c121SKalle Valo 	struct iwl_mvm_mc_iter_data iter_data = {
1583e705c121SKalle Valo 		.mvm = mvm,
1584e705c121SKalle Valo 	};
1585e705c121SKalle Valo 
1586e705c121SKalle Valo 	lockdep_assert_held(&mvm->mutex);
1587e705c121SKalle Valo 
1588e705c121SKalle Valo 	if (WARN_ON_ONCE(!mvm->mcast_filter_cmd))
1589e705c121SKalle Valo 		return;
1590e705c121SKalle Valo 
1591e705c121SKalle Valo 	ieee80211_iterate_active_interfaces_atomic(
1592e705c121SKalle Valo 		mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1593e705c121SKalle Valo 		iwl_mvm_mc_iface_iterator, &iter_data);
1594e705c121SKalle Valo }
1595e705c121SKalle Valo 
1596e705c121SKalle Valo static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw,
1597e705c121SKalle Valo 				     struct netdev_hw_addr_list *mc_list)
1598e705c121SKalle Valo {
1599e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1600e705c121SKalle Valo 	struct iwl_mcast_filter_cmd *cmd;
1601e705c121SKalle Valo 	struct netdev_hw_addr *addr;
1602e705c121SKalle Valo 	int addr_count;
1603e705c121SKalle Valo 	bool pass_all;
1604e705c121SKalle Valo 	int len;
1605e705c121SKalle Valo 
1606e705c121SKalle Valo 	addr_count = netdev_hw_addr_list_count(mc_list);
1607e705c121SKalle Valo 	pass_all = addr_count > MAX_MCAST_FILTERING_ADDRESSES ||
1608e705c121SKalle Valo 		   IWL_MVM_FW_MCAST_FILTER_PASS_ALL;
1609e705c121SKalle Valo 	if (pass_all)
1610e705c121SKalle Valo 		addr_count = 0;
1611e705c121SKalle Valo 
1612e705c121SKalle Valo 	len = roundup(sizeof(*cmd) + addr_count * ETH_ALEN, 4);
1613e705c121SKalle Valo 	cmd = kzalloc(len, GFP_ATOMIC);
1614e705c121SKalle Valo 	if (!cmd)
1615e705c121SKalle Valo 		return 0;
1616e705c121SKalle Valo 
1617e705c121SKalle Valo 	if (pass_all) {
1618e705c121SKalle Valo 		cmd->pass_all = 1;
1619e705c121SKalle Valo 		return (u64)(unsigned long)cmd;
1620e705c121SKalle Valo 	}
1621e705c121SKalle Valo 
1622e705c121SKalle Valo 	netdev_hw_addr_list_for_each(addr, mc_list) {
1623e705c121SKalle Valo 		IWL_DEBUG_MAC80211(mvm, "mcast addr (%d): %pM\n",
1624e705c121SKalle Valo 				   cmd->count, addr->addr);
1625e705c121SKalle Valo 		memcpy(&cmd->addr_list[cmd->count * ETH_ALEN],
1626e705c121SKalle Valo 		       addr->addr, ETH_ALEN);
1627e705c121SKalle Valo 		cmd->count++;
1628e705c121SKalle Valo 	}
1629e705c121SKalle Valo 
1630e705c121SKalle Valo 	return (u64)(unsigned long)cmd;
1631e705c121SKalle Valo }
1632e705c121SKalle Valo 
1633e705c121SKalle Valo static void iwl_mvm_configure_filter(struct ieee80211_hw *hw,
1634e705c121SKalle Valo 				     unsigned int changed_flags,
1635e705c121SKalle Valo 				     unsigned int *total_flags,
1636e705c121SKalle Valo 				     u64 multicast)
1637e705c121SKalle Valo {
1638e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1639e705c121SKalle Valo 	struct iwl_mcast_filter_cmd *cmd = (void *)(unsigned long)multicast;
1640e705c121SKalle Valo 
1641e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
1642e705c121SKalle Valo 
1643e705c121SKalle Valo 	/* replace previous configuration */
1644e705c121SKalle Valo 	kfree(mvm->mcast_filter_cmd);
1645e705c121SKalle Valo 	mvm->mcast_filter_cmd = cmd;
1646e705c121SKalle Valo 
1647e705c121SKalle Valo 	if (!cmd)
1648e705c121SKalle Valo 		goto out;
1649e705c121SKalle Valo 
165061e7d91bSLuca Coelho 	if (changed_flags & FIF_ALLMULTI)
165161e7d91bSLuca Coelho 		cmd->pass_all = !!(*total_flags & FIF_ALLMULTI);
165261e7d91bSLuca Coelho 
165361e7d91bSLuca Coelho 	if (cmd->pass_all)
165461e7d91bSLuca Coelho 		cmd->count = 0;
165561e7d91bSLuca Coelho 
1656e705c121SKalle Valo 	iwl_mvm_recalc_multicast(mvm);
1657e705c121SKalle Valo out:
1658e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
1659e705c121SKalle Valo 	*total_flags = 0;
1660e705c121SKalle Valo }
1661e705c121SKalle Valo 
1662e705c121SKalle Valo static void iwl_mvm_config_iface_filter(struct ieee80211_hw *hw,
1663e705c121SKalle Valo 					struct ieee80211_vif *vif,
1664e705c121SKalle Valo 					unsigned int filter_flags,
1665e705c121SKalle Valo 					unsigned int changed_flags)
1666e705c121SKalle Valo {
1667e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1668e705c121SKalle Valo 
1669e705c121SKalle Valo 	/* We support only filter for probe requests */
1670e705c121SKalle Valo 	if (!(changed_flags & FIF_PROBE_REQ))
1671e705c121SKalle Valo 		return;
1672e705c121SKalle Valo 
1673e705c121SKalle Valo 	/* Supported only for p2p client interfaces */
1674e705c121SKalle Valo 	if (vif->type != NL80211_IFTYPE_STATION || !vif->bss_conf.assoc ||
1675e705c121SKalle Valo 	    !vif->p2p)
1676e705c121SKalle Valo 		return;
1677e705c121SKalle Valo 
1678e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
1679e705c121SKalle Valo 	iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
1680e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
1681e705c121SKalle Valo }
1682e705c121SKalle Valo 
1683e705c121SKalle Valo #ifdef CONFIG_IWLWIFI_BCAST_FILTERING
1684e705c121SKalle Valo struct iwl_bcast_iter_data {
1685e705c121SKalle Valo 	struct iwl_mvm *mvm;
1686e705c121SKalle Valo 	struct iwl_bcast_filter_cmd *cmd;
1687e705c121SKalle Valo 	u8 current_filter;
1688e705c121SKalle Valo };
1689e705c121SKalle Valo 
1690e705c121SKalle Valo static void
1691e705c121SKalle Valo iwl_mvm_set_bcast_filter(struct ieee80211_vif *vif,
1692e705c121SKalle Valo 			 const struct iwl_fw_bcast_filter *in_filter,
1693e705c121SKalle Valo 			 struct iwl_fw_bcast_filter *out_filter)
1694e705c121SKalle Valo {
1695e705c121SKalle Valo 	struct iwl_fw_bcast_filter_attr *attr;
1696e705c121SKalle Valo 	int i;
1697e705c121SKalle Valo 
1698e705c121SKalle Valo 	memcpy(out_filter, in_filter, sizeof(*out_filter));
1699e705c121SKalle Valo 
1700e705c121SKalle Valo 	for (i = 0; i < ARRAY_SIZE(out_filter->attrs); i++) {
1701e705c121SKalle Valo 		attr = &out_filter->attrs[i];
1702e705c121SKalle Valo 
1703e705c121SKalle Valo 		if (!attr->mask)
1704e705c121SKalle Valo 			break;
1705e705c121SKalle Valo 
1706e705c121SKalle Valo 		switch (attr->reserved1) {
1707e705c121SKalle Valo 		case cpu_to_le16(BC_FILTER_MAGIC_IP):
1708e705c121SKalle Valo 			if (vif->bss_conf.arp_addr_cnt != 1) {
1709e705c121SKalle Valo 				attr->mask = 0;
1710e705c121SKalle Valo 				continue;
1711e705c121SKalle Valo 			}
1712e705c121SKalle Valo 
1713e705c121SKalle Valo 			attr->val = vif->bss_conf.arp_addr_list[0];
1714e705c121SKalle Valo 			break;
1715e705c121SKalle Valo 		case cpu_to_le16(BC_FILTER_MAGIC_MAC):
1716e705c121SKalle Valo 			attr->val = *(__be32 *)&vif->addr[2];
1717e705c121SKalle Valo 			break;
1718e705c121SKalle Valo 		default:
1719e705c121SKalle Valo 			break;
1720e705c121SKalle Valo 		}
1721e705c121SKalle Valo 		attr->reserved1 = 0;
1722e705c121SKalle Valo 		out_filter->num_attrs++;
1723e705c121SKalle Valo 	}
1724e705c121SKalle Valo }
1725e705c121SKalle Valo 
1726e705c121SKalle Valo static void iwl_mvm_bcast_filter_iterator(void *_data, u8 *mac,
1727e705c121SKalle Valo 					  struct ieee80211_vif *vif)
1728e705c121SKalle Valo {
1729e705c121SKalle Valo 	struct iwl_bcast_iter_data *data = _data;
1730e705c121SKalle Valo 	struct iwl_mvm *mvm = data->mvm;
1731e705c121SKalle Valo 	struct iwl_bcast_filter_cmd *cmd = data->cmd;
1732e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1733e705c121SKalle Valo 	struct iwl_fw_bcast_mac *bcast_mac;
1734e705c121SKalle Valo 	int i;
1735e705c121SKalle Valo 
1736e705c121SKalle Valo 	if (WARN_ON(mvmvif->id >= ARRAY_SIZE(cmd->macs)))
1737e705c121SKalle Valo 		return;
1738e705c121SKalle Valo 
1739e705c121SKalle Valo 	bcast_mac = &cmd->macs[mvmvif->id];
1740e705c121SKalle Valo 
1741e705c121SKalle Valo 	/*
1742e705c121SKalle Valo 	 * enable filtering only for associated stations, but not for P2P
1743e705c121SKalle Valo 	 * Clients
1744e705c121SKalle Valo 	 */
1745e705c121SKalle Valo 	if (vif->type != NL80211_IFTYPE_STATION || vif->p2p ||
1746e705c121SKalle Valo 	    !vif->bss_conf.assoc)
1747e705c121SKalle Valo 		return;
1748e705c121SKalle Valo 
1749e705c121SKalle Valo 	bcast_mac->default_discard = 1;
1750e705c121SKalle Valo 
1751e705c121SKalle Valo 	/* copy all configured filters */
1752e705c121SKalle Valo 	for (i = 0; mvm->bcast_filters[i].attrs[0].mask; i++) {
1753e705c121SKalle Valo 		/*
1754e705c121SKalle Valo 		 * Make sure we don't exceed our filters limit.
1755e705c121SKalle Valo 		 * if there is still a valid filter to be configured,
1756e705c121SKalle Valo 		 * be on the safe side and just allow bcast for this mac.
1757e705c121SKalle Valo 		 */
1758e705c121SKalle Valo 		if (WARN_ON_ONCE(data->current_filter >=
1759e705c121SKalle Valo 				 ARRAY_SIZE(cmd->filters))) {
1760e705c121SKalle Valo 			bcast_mac->default_discard = 0;
1761e705c121SKalle Valo 			bcast_mac->attached_filters = 0;
1762e705c121SKalle Valo 			break;
1763e705c121SKalle Valo 		}
1764e705c121SKalle Valo 
1765e705c121SKalle Valo 		iwl_mvm_set_bcast_filter(vif,
1766e705c121SKalle Valo 					 &mvm->bcast_filters[i],
1767e705c121SKalle Valo 					 &cmd->filters[data->current_filter]);
1768e705c121SKalle Valo 
1769e705c121SKalle Valo 		/* skip current filter if it contains no attributes */
1770e705c121SKalle Valo 		if (!cmd->filters[data->current_filter].num_attrs)
1771e705c121SKalle Valo 			continue;
1772e705c121SKalle Valo 
1773e705c121SKalle Valo 		/* attach the filter to current mac */
1774e705c121SKalle Valo 		bcast_mac->attached_filters |=
1775e705c121SKalle Valo 				cpu_to_le16(BIT(data->current_filter));
1776e705c121SKalle Valo 
1777e705c121SKalle Valo 		data->current_filter++;
1778e705c121SKalle Valo 	}
1779e705c121SKalle Valo }
1780e705c121SKalle Valo 
1781e705c121SKalle Valo bool iwl_mvm_bcast_filter_build_cmd(struct iwl_mvm *mvm,
1782e705c121SKalle Valo 				    struct iwl_bcast_filter_cmd *cmd)
1783e705c121SKalle Valo {
1784e705c121SKalle Valo 	struct iwl_bcast_iter_data iter_data = {
1785e705c121SKalle Valo 		.mvm = mvm,
1786e705c121SKalle Valo 		.cmd = cmd,
1787e705c121SKalle Valo 	};
1788e705c121SKalle Valo 
1789e705c121SKalle Valo 	if (IWL_MVM_FW_BCAST_FILTER_PASS_ALL)
1790e705c121SKalle Valo 		return false;
1791e705c121SKalle Valo 
1792e705c121SKalle Valo 	memset(cmd, 0, sizeof(*cmd));
1793e705c121SKalle Valo 	cmd->max_bcast_filters = ARRAY_SIZE(cmd->filters);
1794e705c121SKalle Valo 	cmd->max_macs = ARRAY_SIZE(cmd->macs);
1795e705c121SKalle Valo 
1796e705c121SKalle Valo #ifdef CONFIG_IWLWIFI_DEBUGFS
1797e705c121SKalle Valo 	/* use debugfs filters/macs if override is configured */
1798e705c121SKalle Valo 	if (mvm->dbgfs_bcast_filtering.override) {
1799e705c121SKalle Valo 		memcpy(cmd->filters, &mvm->dbgfs_bcast_filtering.cmd.filters,
1800e705c121SKalle Valo 		       sizeof(cmd->filters));
1801e705c121SKalle Valo 		memcpy(cmd->macs, &mvm->dbgfs_bcast_filtering.cmd.macs,
1802e705c121SKalle Valo 		       sizeof(cmd->macs));
1803e705c121SKalle Valo 		return true;
1804e705c121SKalle Valo 	}
1805e705c121SKalle Valo #endif
1806e705c121SKalle Valo 
1807e705c121SKalle Valo 	/* if no filters are configured, do nothing */
1808e705c121SKalle Valo 	if (!mvm->bcast_filters)
1809e705c121SKalle Valo 		return false;
1810e705c121SKalle Valo 
1811e705c121SKalle Valo 	/* configure and attach these filters for each associated sta vif */
1812e705c121SKalle Valo 	ieee80211_iterate_active_interfaces(
1813e705c121SKalle Valo 		mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1814e705c121SKalle Valo 		iwl_mvm_bcast_filter_iterator, &iter_data);
1815e705c121SKalle Valo 
1816e705c121SKalle Valo 	return true;
1817e705c121SKalle Valo }
181834672bb3SEliad Peller 
181934672bb3SEliad Peller static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm)
1820e705c121SKalle Valo {
1821e705c121SKalle Valo 	struct iwl_bcast_filter_cmd cmd;
1822e705c121SKalle Valo 
1823e705c121SKalle Valo 	if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BCAST_FILTERING))
1824e705c121SKalle Valo 		return 0;
1825e705c121SKalle Valo 
1826e705c121SKalle Valo 	if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd))
1827e705c121SKalle Valo 		return 0;
1828e705c121SKalle Valo 
1829e705c121SKalle Valo 	return iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0,
1830e705c121SKalle Valo 				    sizeof(cmd), &cmd);
1831e705c121SKalle Valo }
1832e705c121SKalle Valo #else
183334672bb3SEliad Peller static inline int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm)
1834e705c121SKalle Valo {
1835e705c121SKalle Valo 	return 0;
1836e705c121SKalle Valo }
1837e705c121SKalle Valo #endif
1838e705c121SKalle Valo 
1839a07a8f37SSara Sharon static int iwl_mvm_update_mu_groups(struct iwl_mvm *mvm,
1840a07a8f37SSara Sharon 				    struct ieee80211_vif *vif)
1841a07a8f37SSara Sharon {
1842a07a8f37SSara Sharon 	struct iwl_mu_group_mgmt_cmd cmd = {};
1843a07a8f37SSara Sharon 
1844a07a8f37SSara Sharon 	memcpy(cmd.membership_status, vif->bss_conf.mu_group.membership,
1845a07a8f37SSara Sharon 	       WLAN_MEMBERSHIP_LEN);
1846a07a8f37SSara Sharon 	memcpy(cmd.user_position, vif->bss_conf.mu_group.position,
1847a07a8f37SSara Sharon 	       WLAN_USER_POSITION_LEN);
1848a07a8f37SSara Sharon 
1849a07a8f37SSara Sharon 	return iwl_mvm_send_cmd_pdu(mvm,
1850a07a8f37SSara Sharon 				    WIDE_ID(DATA_PATH_GROUP,
1851a07a8f37SSara Sharon 					    UPDATE_MU_GROUPS_CMD),
1852a07a8f37SSara Sharon 				    0, sizeof(cmd), &cmd);
1853a07a8f37SSara Sharon }
1854a07a8f37SSara Sharon 
1855f92659a1SSara Sharon static void iwl_mvm_mu_mimo_iface_iterator(void *_data, u8 *mac,
1856f92659a1SSara Sharon 					   struct ieee80211_vif *vif)
1857f92659a1SSara Sharon {
1858f92659a1SSara Sharon 	if (vif->mu_mimo_owner) {
1859f92659a1SSara Sharon 		struct iwl_mu_group_mgmt_notif *notif = _data;
1860f92659a1SSara Sharon 
1861f92659a1SSara Sharon 		/*
1862f92659a1SSara Sharon 		 * MU-MIMO Group Id action frame is little endian. We treat
1863f92659a1SSara Sharon 		 * the data received from firmware as if it came from the
1864f92659a1SSara Sharon 		 * action frame, so no conversion is needed.
1865f92659a1SSara Sharon 		 */
1866f92659a1SSara Sharon 		ieee80211_update_mu_groups(vif,
1867f92659a1SSara Sharon 					   (u8 *)&notif->membership_status,
1868f92659a1SSara Sharon 					   (u8 *)&notif->user_position);
1869f92659a1SSara Sharon 	}
1870f92659a1SSara Sharon }
1871f92659a1SSara Sharon 
1872f92659a1SSara Sharon void iwl_mvm_mu_mimo_grp_notif(struct iwl_mvm *mvm,
1873f92659a1SSara Sharon 			       struct iwl_rx_cmd_buffer *rxb)
1874f92659a1SSara Sharon {
1875f92659a1SSara Sharon 	struct iwl_rx_packet *pkt = rxb_addr(rxb);
1876f92659a1SSara Sharon 	struct iwl_mu_group_mgmt_notif *notif = (void *)pkt->data;
1877f92659a1SSara Sharon 
1878f92659a1SSara Sharon 	ieee80211_iterate_active_interfaces_atomic(
1879f92659a1SSara Sharon 			mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1880f92659a1SSara Sharon 			iwl_mvm_mu_mimo_iface_iterator, notif);
1881f92659a1SSara Sharon }
1882f92659a1SSara Sharon 
1883e705c121SKalle Valo static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,
1884e705c121SKalle Valo 					     struct ieee80211_vif *vif,
1885e705c121SKalle Valo 					     struct ieee80211_bss_conf *bss_conf,
1886e705c121SKalle Valo 					     u32 changes)
1887e705c121SKalle Valo {
1888e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1889e705c121SKalle Valo 	int ret;
1890e705c121SKalle Valo 
1891e705c121SKalle Valo 	/*
1892e705c121SKalle Valo 	 * Re-calculate the tsf id, as the master-slave relations depend on the
1893e705c121SKalle Valo 	 * beacon interval, which was not known when the station interface was
1894e705c121SKalle Valo 	 * added.
1895e705c121SKalle Valo 	 */
1896e705c121SKalle Valo 	if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc)
1897e705c121SKalle Valo 		iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1898e705c121SKalle Valo 
1899e705c121SKalle Valo 	/*
1900e705c121SKalle Valo 	 * If we're not associated yet, take the (new) BSSID before associating
1901e705c121SKalle Valo 	 * so the firmware knows. If we're already associated, then use the old
1902e705c121SKalle Valo 	 * BSSID here, and we'll send a cleared one later in the CHANGED_ASSOC
1903e705c121SKalle Valo 	 * branch for disassociation below.
1904e705c121SKalle Valo 	 */
1905e705c121SKalle Valo 	if (changes & BSS_CHANGED_BSSID && !mvmvif->associated)
1906e705c121SKalle Valo 		memcpy(mvmvif->bssid, bss_conf->bssid, ETH_ALEN);
1907e705c121SKalle Valo 
1908e705c121SKalle Valo 	ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, mvmvif->bssid);
1909e705c121SKalle Valo 	if (ret)
1910e705c121SKalle Valo 		IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
1911e705c121SKalle Valo 
1912e705c121SKalle Valo 	/* after sending it once, adopt mac80211 data */
1913e705c121SKalle Valo 	memcpy(mvmvif->bssid, bss_conf->bssid, ETH_ALEN);
1914e705c121SKalle Valo 	mvmvif->associated = bss_conf->assoc;
1915e705c121SKalle Valo 
1916e705c121SKalle Valo 	if (changes & BSS_CHANGED_ASSOC) {
1917e705c121SKalle Valo 		if (bss_conf->assoc) {
1918e705c121SKalle Valo 			/* clear statistics to get clean beacon counter */
1919e705c121SKalle Valo 			iwl_mvm_request_statistics(mvm, true);
1920e705c121SKalle Valo 			memset(&mvmvif->beacon_stats, 0,
1921e705c121SKalle Valo 			       sizeof(mvmvif->beacon_stats));
1922e705c121SKalle Valo 
1923e705c121SKalle Valo 			/* add quota for this interface */
1924e705c121SKalle Valo 			ret = iwl_mvm_update_quotas(mvm, true, NULL);
1925e705c121SKalle Valo 			if (ret) {
1926e705c121SKalle Valo 				IWL_ERR(mvm, "failed to update quotas\n");
1927e705c121SKalle Valo 				return;
1928e705c121SKalle Valo 			}
1929e705c121SKalle Valo 
1930e705c121SKalle Valo 			if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART,
1931e705c121SKalle Valo 				     &mvm->status)) {
1932e705c121SKalle Valo 				/*
1933e705c121SKalle Valo 				 * If we're restarting then the firmware will
1934e705c121SKalle Valo 				 * obviously have lost synchronisation with
1935e705c121SKalle Valo 				 * the AP. It will attempt to synchronise by
1936e705c121SKalle Valo 				 * itself, but we can make it more reliable by
1937e705c121SKalle Valo 				 * scheduling a session protection time event.
1938e705c121SKalle Valo 				 *
1939e705c121SKalle Valo 				 * The firmware needs to receive a beacon to
1940e705c121SKalle Valo 				 * catch up with synchronisation, use 110% of
1941e705c121SKalle Valo 				 * the beacon interval.
1942e705c121SKalle Valo 				 *
1943e705c121SKalle Valo 				 * Set a large maximum delay to allow for more
1944e705c121SKalle Valo 				 * than a single interface.
1945e705c121SKalle Valo 				 */
1946e705c121SKalle Valo 				u32 dur = (11 * vif->bss_conf.beacon_int) / 10;
1947e705c121SKalle Valo 				iwl_mvm_protect_session(mvm, vif, dur, dur,
1948e705c121SKalle Valo 							5 * dur, false);
1949e705c121SKalle Valo 			}
1950e705c121SKalle Valo 
1951e705c121SKalle Valo 			iwl_mvm_sf_update(mvm, vif, false);
1952e705c121SKalle Valo 			iwl_mvm_power_vif_assoc(mvm, vif);
1953e705c121SKalle Valo 			if (vif->p2p) {
1954e705c121SKalle Valo 				iwl_mvm_ref(mvm, IWL_MVM_REF_P2P_CLIENT);
1955e705c121SKalle Valo 				iwl_mvm_update_smps(mvm, vif,
1956e705c121SKalle Valo 						    IWL_MVM_SMPS_REQ_PROT,
1957e705c121SKalle Valo 						    IEEE80211_SMPS_DYNAMIC);
1958e705c121SKalle Valo 			}
19590ae98812SSara Sharon 		} else if (mvmvif->ap_sta_id != IWL_MVM_INVALID_STA) {
1960e705c121SKalle Valo 			/*
1961e705c121SKalle Valo 			 * If update fails - SF might be running in associated
1962e705c121SKalle Valo 			 * mode while disassociated - which is forbidden.
1963e705c121SKalle Valo 			 */
1964e705c121SKalle Valo 			WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false),
1965e705c121SKalle Valo 				  "Failed to update SF upon disassociation\n");
1966e705c121SKalle Valo 
19676b28f978SEmmanuel Grumbach 			/*
19686b28f978SEmmanuel Grumbach 			 * If we get an assert during the connection (after the
19696b28f978SEmmanuel Grumbach 			 * station has been added, but before the vif is set
19706b28f978SEmmanuel Grumbach 			 * to associated), mac80211 will re-add the station and
19716b28f978SEmmanuel Grumbach 			 * then configure the vif. Since the vif is not
19726b28f978SEmmanuel Grumbach 			 * associated, we would remove the station here and
19736b28f978SEmmanuel Grumbach 			 * this would fail the recovery.
19746b28f978SEmmanuel Grumbach 			 */
19756b28f978SEmmanuel Grumbach 			if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART,
19766b28f978SEmmanuel Grumbach 				      &mvm->status)) {
19776b28f978SEmmanuel Grumbach 				/*
19786b28f978SEmmanuel Grumbach 				 * Remove AP station now that
19796b28f978SEmmanuel Grumbach 				 * the MAC is unassoc
19806b28f978SEmmanuel Grumbach 				 */
19816b28f978SEmmanuel Grumbach 				ret = iwl_mvm_rm_sta_id(mvm, vif,
19826b28f978SEmmanuel Grumbach 							mvmvif->ap_sta_id);
1983e705c121SKalle Valo 				if (ret)
19846b28f978SEmmanuel Grumbach 					IWL_ERR(mvm,
19856b28f978SEmmanuel Grumbach 						"failed to remove AP station\n");
1986e705c121SKalle Valo 
1987e705c121SKalle Valo 				if (mvm->d0i3_ap_sta_id == mvmvif->ap_sta_id)
19886b28f978SEmmanuel Grumbach 					mvm->d0i3_ap_sta_id =
19896b28f978SEmmanuel Grumbach 						IWL_MVM_INVALID_STA;
19900ae98812SSara Sharon 				mvmvif->ap_sta_id = IWL_MVM_INVALID_STA;
19916b28f978SEmmanuel Grumbach 			}
19926b28f978SEmmanuel Grumbach 
1993e705c121SKalle Valo 			/* remove quota for this interface */
1994e705c121SKalle Valo 			ret = iwl_mvm_update_quotas(mvm, false, NULL);
1995e705c121SKalle Valo 			if (ret)
1996e705c121SKalle Valo 				IWL_ERR(mvm, "failed to update quotas\n");
1997e705c121SKalle Valo 
1998e705c121SKalle Valo 			if (vif->p2p)
1999e705c121SKalle Valo 				iwl_mvm_unref(mvm, IWL_MVM_REF_P2P_CLIENT);
2000e705c121SKalle Valo 
2001e705c121SKalle Valo 			/* this will take the cleared BSSID from bss_conf */
2002e705c121SKalle Valo 			ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
2003e705c121SKalle Valo 			if (ret)
2004e705c121SKalle Valo 				IWL_ERR(mvm,
2005e705c121SKalle Valo 					"failed to update MAC %pM (clear after unassoc)\n",
2006e705c121SKalle Valo 					vif->addr);
2007e705c121SKalle Valo 		}
2008e705c121SKalle Valo 
2009a07a8f37SSara Sharon 		/*
2010a07a8f37SSara Sharon 		 * The firmware tracks the MU-MIMO group on its own.
2011f92659a1SSara Sharon 		 * However, on HW restart we should restore this data.
2012a07a8f37SSara Sharon 		 */
2013a07a8f37SSara Sharon 		if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) &&
2014f92659a1SSara Sharon 		    (changes & BSS_CHANGED_MU_GROUPS) && vif->mu_mimo_owner) {
2015a07a8f37SSara Sharon 			ret = iwl_mvm_update_mu_groups(mvm, vif);
2016a07a8f37SSara Sharon 			if (ret)
2017a07a8f37SSara Sharon 				IWL_ERR(mvm,
2018a07a8f37SSara Sharon 					"failed to update VHT MU_MIMO groups\n");
2019a07a8f37SSara Sharon 		}
2020a07a8f37SSara Sharon 
2021e705c121SKalle Valo 		iwl_mvm_recalc_multicast(mvm);
202234672bb3SEliad Peller 		iwl_mvm_configure_bcast_filter(mvm);
2023e705c121SKalle Valo 
2024e705c121SKalle Valo 		/* reset rssi values */
2025e705c121SKalle Valo 		mvmvif->bf_data.ave_beacon_signal = 0;
2026e705c121SKalle Valo 
2027e705c121SKalle Valo 		iwl_mvm_bt_coex_vif_change(mvm);
2028e705c121SKalle Valo 		iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_TT,
2029e705c121SKalle Valo 				    IEEE80211_SMPS_AUTOMATIC);
2030355346baSAvraham Stern 		if (fw_has_capa(&mvm->fw->ucode_capa,
2031355346baSAvraham Stern 				IWL_UCODE_TLV_CAPA_UMAC_SCAN))
2032355346baSAvraham Stern 			iwl_mvm_config_scan(mvm);
2033b45242c9SAvraham Stern 	}
2034b45242c9SAvraham Stern 
2035b45242c9SAvraham Stern 	if (changes & BSS_CHANGED_BEACON_INFO) {
2036e705c121SKalle Valo 		/*
2037b45242c9SAvraham Stern 		 * We received a beacon from the associated AP so
2038e705c121SKalle Valo 		 * remove the session protection.
2039e705c121SKalle Valo 		 */
20403edfb5f4SAvraham Stern 		iwl_mvm_stop_session_protection(mvm, vif);
2041e705c121SKalle Valo 
2042e705c121SKalle Valo 		iwl_mvm_sf_update(mvm, vif, false);
2043e705c121SKalle Valo 		WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
2044e705c121SKalle Valo 	}
2045e705c121SKalle Valo 
2046283115fbSAvri Altman 	if (changes & (BSS_CHANGED_PS | BSS_CHANGED_P2P_PS | BSS_CHANGED_QOS |
2047283115fbSAvri Altman 		       /*
2048283115fbSAvri Altman 			* Send power command on every beacon change,
2049283115fbSAvri Altman 			* because we may have not enabled beacon abort yet.
2050283115fbSAvri Altman 			*/
2051283115fbSAvri Altman 		       BSS_CHANGED_BEACON_INFO)) {
2052e705c121SKalle Valo 		ret = iwl_mvm_power_update_mac(mvm);
2053e705c121SKalle Valo 		if (ret)
2054e705c121SKalle Valo 			IWL_ERR(mvm, "failed to update power mode\n");
2055e705c121SKalle Valo 	}
2056e705c121SKalle Valo 
2057e705c121SKalle Valo 	if (changes & BSS_CHANGED_TXPOWER) {
2058e705c121SKalle Valo 		IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n",
2059e705c121SKalle Valo 				bss_conf->txpower);
2060e705c121SKalle Valo 		iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower);
2061e705c121SKalle Valo 	}
2062e705c121SKalle Valo 
2063e705c121SKalle Valo 	if (changes & BSS_CHANGED_CQM) {
2064e705c121SKalle Valo 		IWL_DEBUG_MAC80211(mvm, "cqm info_changed\n");
2065e705c121SKalle Valo 		/* reset cqm events tracking */
2066e705c121SKalle Valo 		mvmvif->bf_data.last_cqm_event = 0;
2067e705c121SKalle Valo 		if (mvmvif->bf_data.bf_enabled) {
2068e705c121SKalle Valo 			ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0);
2069e705c121SKalle Valo 			if (ret)
2070e705c121SKalle Valo 				IWL_ERR(mvm,
2071e705c121SKalle Valo 					"failed to update CQM thresholds\n");
2072e705c121SKalle Valo 		}
2073e705c121SKalle Valo 	}
2074e705c121SKalle Valo 
2075e705c121SKalle Valo 	if (changes & BSS_CHANGED_ARP_FILTER) {
2076e705c121SKalle Valo 		IWL_DEBUG_MAC80211(mvm, "arp filter changed\n");
207734672bb3SEliad Peller 		iwl_mvm_configure_bcast_filter(mvm);
2078e705c121SKalle Valo 	}
2079e705c121SKalle Valo }
2080e705c121SKalle Valo 
2081e705c121SKalle Valo static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw,
2082e705c121SKalle Valo 				 struct ieee80211_vif *vif)
2083e705c121SKalle Valo {
2084e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2085e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2086e705c121SKalle Valo 	int ret;
2087e705c121SKalle Valo 
2088e705c121SKalle Valo 	/*
2089e705c121SKalle Valo 	 * iwl_mvm_mac_ctxt_add() might read directly from the device
2090e705c121SKalle Valo 	 * (the system time), so make sure it is available.
2091e705c121SKalle Valo 	 */
2092e705c121SKalle Valo 	ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_START_AP);
2093e705c121SKalle Valo 	if (ret)
2094e705c121SKalle Valo 		return ret;
2095e705c121SKalle Valo 
2096e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
2097e705c121SKalle Valo 
2098e705c121SKalle Valo 	/* Send the beacon template */
2099e705c121SKalle Valo 	ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif);
2100e705c121SKalle Valo 	if (ret)
2101e705c121SKalle Valo 		goto out_unlock;
2102e705c121SKalle Valo 
2103e705c121SKalle Valo 	/*
2104e705c121SKalle Valo 	 * Re-calculate the tsf id, as the master-slave relations depend on the
2105e705c121SKalle Valo 	 * beacon interval, which was not known when the AP interface was added.
2106e705c121SKalle Valo 	 */
2107e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_AP)
2108e705c121SKalle Valo 		iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
2109e705c121SKalle Valo 
2110e705c121SKalle Valo 	mvmvif->ap_assoc_sta_count = 0;
2111e705c121SKalle Valo 
2112e705c121SKalle Valo 	/* Add the mac context */
2113e705c121SKalle Valo 	ret = iwl_mvm_mac_ctxt_add(mvm, vif);
2114e705c121SKalle Valo 	if (ret)
2115e705c121SKalle Valo 		goto out_unlock;
2116e705c121SKalle Valo 
2117e705c121SKalle Valo 	/* Perform the binding */
2118e705c121SKalle Valo 	ret = iwl_mvm_binding_add_vif(mvm, vif);
2119e705c121SKalle Valo 	if (ret)
2120e705c121SKalle Valo 		goto out_remove;
2121e705c121SKalle Valo 
212263dd5d02SSara Sharon 	/*
212363dd5d02SSara Sharon 	 * This is not very nice, but the simplest:
212463dd5d02SSara Sharon 	 * For older FWs adding the mcast sta before the bcast station may
212563dd5d02SSara Sharon 	 * cause assert 0x2b00.
212663dd5d02SSara Sharon 	 * This is fixed in later FW so make the order of removal depend on
212763dd5d02SSara Sharon 	 * the TLV
212863dd5d02SSara Sharon 	 */
212963dd5d02SSara Sharon 	if (fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_STA_TYPE)) {
2130ced19f26SSara Sharon 		ret = iwl_mvm_add_mcast_sta(mvm, vif);
2131ced19f26SSara Sharon 		if (ret)
2132ced19f26SSara Sharon 			goto out_unbind;
213363dd5d02SSara Sharon 		/*
213463dd5d02SSara Sharon 		 * Send the bcast station. At this stage the TBTT and DTIM time
213563dd5d02SSara Sharon 		 * events are added and applied to the scheduler
213663dd5d02SSara Sharon 		 */
2137e705c121SKalle Valo 		ret = iwl_mvm_send_add_bcast_sta(mvm, vif);
213863dd5d02SSara Sharon 		if (ret) {
213963dd5d02SSara Sharon 			iwl_mvm_rm_mcast_sta(mvm, vif);
214063dd5d02SSara Sharon 			goto out_unbind;
214163dd5d02SSara Sharon 		}
214263dd5d02SSara Sharon 	} else {
214363dd5d02SSara Sharon 		/*
214463dd5d02SSara Sharon 		 * Send the bcast station. At this stage the TBTT and DTIM time
214563dd5d02SSara Sharon 		 * events are added and applied to the scheduler
214663dd5d02SSara Sharon 		 */
214775fd4fecSJohannes Berg 		ret = iwl_mvm_send_add_bcast_sta(mvm, vif);
2148e705c121SKalle Valo 		if (ret)
214963dd5d02SSara Sharon 			goto out_unbind;
215075fd4fecSJohannes Berg 		ret = iwl_mvm_add_mcast_sta(mvm, vif);
215163dd5d02SSara Sharon 		if (ret) {
215263dd5d02SSara Sharon 			iwl_mvm_send_rm_bcast_sta(mvm, vif);
215363dd5d02SSara Sharon 			goto out_unbind;
215463dd5d02SSara Sharon 		}
215563dd5d02SSara Sharon 	}
215626d6c16bSSara Sharon 
2157e705c121SKalle Valo 	/* must be set before quota calculations */
2158e705c121SKalle Valo 	mvmvif->ap_ibss_active = true;
2159e705c121SKalle Valo 
2160e705c121SKalle Valo 	/* power updated needs to be done before quotas */
2161e705c121SKalle Valo 	iwl_mvm_power_update_mac(mvm);
2162e705c121SKalle Valo 
2163e705c121SKalle Valo 	ret = iwl_mvm_update_quotas(mvm, false, NULL);
2164e705c121SKalle Valo 	if (ret)
2165e705c121SKalle Valo 		goto out_quota_failed;
2166e705c121SKalle Valo 
2167e705c121SKalle Valo 	/* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
2168e705c121SKalle Valo 	if (vif->p2p && mvm->p2p_device_vif)
2169e705c121SKalle Valo 		iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false, NULL);
2170e705c121SKalle Valo 
2171e705c121SKalle Valo 	iwl_mvm_ref(mvm, IWL_MVM_REF_AP_IBSS);
2172e705c121SKalle Valo 
2173e705c121SKalle Valo 	iwl_mvm_bt_coex_vif_change(mvm);
2174e705c121SKalle Valo 
2175e705c121SKalle Valo 	/* we don't support TDLS during DCM */
2176e705c121SKalle Valo 	if (iwl_mvm_phy_ctx_count(mvm) > 1)
2177e705c121SKalle Valo 		iwl_mvm_teardown_tdls_peers(mvm);
2178e705c121SKalle Valo 
2179e705c121SKalle Valo 	goto out_unlock;
2180e705c121SKalle Valo 
2181e705c121SKalle Valo out_quota_failed:
2182e705c121SKalle Valo 	iwl_mvm_power_update_mac(mvm);
2183e705c121SKalle Valo 	mvmvif->ap_ibss_active = false;
2184e705c121SKalle Valo 	iwl_mvm_send_rm_bcast_sta(mvm, vif);
2185ced19f26SSara Sharon 	iwl_mvm_rm_mcast_sta(mvm, vif);
2186e705c121SKalle Valo out_unbind:
2187e705c121SKalle Valo 	iwl_mvm_binding_remove_vif(mvm, vif);
2188e705c121SKalle Valo out_remove:
2189e705c121SKalle Valo 	iwl_mvm_mac_ctxt_remove(mvm, vif);
2190e705c121SKalle Valo out_unlock:
2191e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
2192e705c121SKalle Valo 	iwl_mvm_unref(mvm, IWL_MVM_REF_START_AP);
2193e705c121SKalle Valo 	return ret;
2194e705c121SKalle Valo }
2195e705c121SKalle Valo 
2196e705c121SKalle Valo static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw,
2197e705c121SKalle Valo 				 struct ieee80211_vif *vif)
2198e705c121SKalle Valo {
2199e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2200e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2201e705c121SKalle Valo 
2202e705c121SKalle Valo 	iwl_mvm_prepare_mac_removal(mvm, vif);
2203e705c121SKalle Valo 
2204e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
2205e705c121SKalle Valo 
2206e705c121SKalle Valo 	/* Handle AP stop while in CSA */
2207e705c121SKalle Valo 	if (rcu_access_pointer(mvm->csa_vif) == vif) {
2208e705c121SKalle Valo 		iwl_mvm_remove_time_event(mvm, mvmvif,
2209e705c121SKalle Valo 					  &mvmvif->time_event_data);
2210e705c121SKalle Valo 		RCU_INIT_POINTER(mvm->csa_vif, NULL);
2211e705c121SKalle Valo 		mvmvif->csa_countdown = false;
2212e705c121SKalle Valo 	}
2213e705c121SKalle Valo 
2214e705c121SKalle Valo 	if (rcu_access_pointer(mvm->csa_tx_blocked_vif) == vif) {
2215e705c121SKalle Valo 		RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL);
2216e705c121SKalle Valo 		mvm->csa_tx_block_bcn_timeout = 0;
2217e705c121SKalle Valo 	}
2218e705c121SKalle Valo 
2219e705c121SKalle Valo 	mvmvif->ap_ibss_active = false;
2220e705c121SKalle Valo 	mvm->ap_last_beacon_gp2 = 0;
2221e705c121SKalle Valo 
2222e705c121SKalle Valo 	iwl_mvm_bt_coex_vif_change(mvm);
2223e705c121SKalle Valo 
2224e705c121SKalle Valo 	iwl_mvm_unref(mvm, IWL_MVM_REF_AP_IBSS);
2225e705c121SKalle Valo 
2226e705c121SKalle Valo 	/* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
2227e705c121SKalle Valo 	if (vif->p2p && mvm->p2p_device_vif)
2228e705c121SKalle Valo 		iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false, NULL);
2229e705c121SKalle Valo 
2230e705c121SKalle Valo 	iwl_mvm_update_quotas(mvm, false, NULL);
2231ced19f26SSara Sharon 
2232ced19f26SSara Sharon 	/*
2233ced19f26SSara Sharon 	 * This is not very nice, but the simplest:
2234ced19f26SSara Sharon 	 * For older FWs removing the mcast sta before the bcast station may
2235ced19f26SSara Sharon 	 * cause assert 0x2b00.
2236ced19f26SSara Sharon 	 * This is fixed in later FW (which will stop beaconing when removing
2237ced19f26SSara Sharon 	 * bcast station).
2238ced19f26SSara Sharon 	 * So make the order of removal depend on the TLV
2239ced19f26SSara Sharon 	 */
2240ced19f26SSara Sharon 	if (!fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_STA_TYPE))
224126d6c16bSSara Sharon 		iwl_mvm_rm_mcast_sta(mvm, vif);
2242e705c121SKalle Valo 	iwl_mvm_send_rm_bcast_sta(mvm, vif);
2243ced19f26SSara Sharon 	if (fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_STA_TYPE))
2244ced19f26SSara Sharon 		iwl_mvm_rm_mcast_sta(mvm, vif);
2245e705c121SKalle Valo 	iwl_mvm_binding_remove_vif(mvm, vif);
2246e705c121SKalle Valo 
2247e705c121SKalle Valo 	iwl_mvm_power_update_mac(mvm);
2248e705c121SKalle Valo 
2249e705c121SKalle Valo 	iwl_mvm_mac_ctxt_remove(mvm, vif);
2250e705c121SKalle Valo 
2251e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
2252e705c121SKalle Valo }
2253e705c121SKalle Valo 
2254e705c121SKalle Valo static void
2255e705c121SKalle Valo iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm,
2256e705c121SKalle Valo 				 struct ieee80211_vif *vif,
2257e705c121SKalle Valo 				 struct ieee80211_bss_conf *bss_conf,
2258e705c121SKalle Valo 				 u32 changes)
2259e705c121SKalle Valo {
2260e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2261e705c121SKalle Valo 
2262e705c121SKalle Valo 	/* Changes will be applied when the AP/IBSS is started */
2263e705c121SKalle Valo 	if (!mvmvif->ap_ibss_active)
2264e705c121SKalle Valo 		return;
2265e705c121SKalle Valo 
2266e705c121SKalle Valo 	if (changes & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT |
2267e705c121SKalle Valo 		       BSS_CHANGED_BANDWIDTH | BSS_CHANGED_QOS) &&
2268e705c121SKalle Valo 	    iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL))
2269e705c121SKalle Valo 		IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
2270e705c121SKalle Valo 
2271e705c121SKalle Valo 	/* Need to send a new beacon template to the FW */
2272e705c121SKalle Valo 	if (changes & BSS_CHANGED_BEACON &&
2273e705c121SKalle Valo 	    iwl_mvm_mac_ctxt_beacon_changed(mvm, vif))
2274e705c121SKalle Valo 		IWL_WARN(mvm, "Failed updating beacon data\n");
2275e705c121SKalle Valo 
2276e705c121SKalle Valo 	if (changes & BSS_CHANGED_TXPOWER) {
2277e705c121SKalle Valo 		IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n",
2278e705c121SKalle Valo 				bss_conf->txpower);
2279e705c121SKalle Valo 		iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower);
2280e705c121SKalle Valo 	}
2281e705c121SKalle Valo }
2282e705c121SKalle Valo 
2283e705c121SKalle Valo static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw,
2284e705c121SKalle Valo 				     struct ieee80211_vif *vif,
2285e705c121SKalle Valo 				     struct ieee80211_bss_conf *bss_conf,
2286e705c121SKalle Valo 				     u32 changes)
2287e705c121SKalle Valo {
2288e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2289e705c121SKalle Valo 
2290e705c121SKalle Valo 	/*
2291e705c121SKalle Valo 	 * iwl_mvm_bss_info_changed_station() might call
2292e705c121SKalle Valo 	 * iwl_mvm_protect_session(), which reads directly from
2293e705c121SKalle Valo 	 * the device (the system time), so make sure it is available.
2294e705c121SKalle Valo 	 */
2295e705c121SKalle Valo 	if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_BSS_CHANGED))
2296e705c121SKalle Valo 		return;
2297e705c121SKalle Valo 
2298e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
2299e705c121SKalle Valo 
2300e705c121SKalle Valo 	if (changes & BSS_CHANGED_IDLE && !bss_conf->idle)
2301e705c121SKalle Valo 		iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, true);
2302e705c121SKalle Valo 
2303e705c121SKalle Valo 	switch (vif->type) {
2304e705c121SKalle Valo 	case NL80211_IFTYPE_STATION:
2305e705c121SKalle Valo 		iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes);
2306e705c121SKalle Valo 		break;
2307e705c121SKalle Valo 	case NL80211_IFTYPE_AP:
2308e705c121SKalle Valo 	case NL80211_IFTYPE_ADHOC:
2309e705c121SKalle Valo 		iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes);
2310e705c121SKalle Valo 		break;
231191b08c2dSAviya Erenfeld 	case NL80211_IFTYPE_MONITOR:
231291b08c2dSAviya Erenfeld 		if (changes & BSS_CHANGED_MU_GROUPS)
231391b08c2dSAviya Erenfeld 			iwl_mvm_update_mu_groups(mvm, vif);
231491b08c2dSAviya Erenfeld 		break;
2315e705c121SKalle Valo 	default:
2316e705c121SKalle Valo 		/* shouldn't happen */
2317e705c121SKalle Valo 		WARN_ON_ONCE(1);
2318e705c121SKalle Valo 	}
2319e705c121SKalle Valo 
2320e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
2321e705c121SKalle Valo 	iwl_mvm_unref(mvm, IWL_MVM_REF_BSS_CHANGED);
2322e705c121SKalle Valo }
2323e705c121SKalle Valo 
2324e705c121SKalle Valo static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw,
2325e705c121SKalle Valo 			       struct ieee80211_vif *vif,
2326e705c121SKalle Valo 			       struct ieee80211_scan_request *hw_req)
2327e705c121SKalle Valo {
2328e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2329e705c121SKalle Valo 	int ret;
2330e705c121SKalle Valo 
2331e705c121SKalle Valo 	if (hw_req->req.n_channels == 0 ||
2332e705c121SKalle Valo 	    hw_req->req.n_channels > mvm->fw->ucode_capa.n_scan_channels)
2333e705c121SKalle Valo 		return -EINVAL;
2334e705c121SKalle Valo 
2335e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
2336e705c121SKalle Valo 	ret = iwl_mvm_reg_scan_start(mvm, vif, &hw_req->req, &hw_req->ies);
2337e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
2338e705c121SKalle Valo 
2339e705c121SKalle Valo 	return ret;
2340e705c121SKalle Valo }
2341e705c121SKalle Valo 
2342e705c121SKalle Valo static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw,
2343e705c121SKalle Valo 				       struct ieee80211_vif *vif)
2344e705c121SKalle Valo {
2345e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2346e705c121SKalle Valo 
2347e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
2348e705c121SKalle Valo 
2349e705c121SKalle Valo 	/* Due to a race condition, it's possible that mac80211 asks
2350e705c121SKalle Valo 	 * us to stop a hw_scan when it's already stopped.  This can
2351e705c121SKalle Valo 	 * happen, for instance, if we stopped the scan ourselves,
2352e705c121SKalle Valo 	 * called ieee80211_scan_completed() and the userspace called
2353e705c121SKalle Valo 	 * cancel scan scan before ieee80211_scan_work() could run.
2354e705c121SKalle Valo 	 * To handle that, simply return if the scan is not running.
2355e705c121SKalle Valo 	*/
2356e705c121SKalle Valo 	if (mvm->scan_status & IWL_MVM_SCAN_REGULAR)
2357e705c121SKalle Valo 		iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true);
2358e705c121SKalle Valo 
2359e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
2360e705c121SKalle Valo }
2361e705c121SKalle Valo 
2362e705c121SKalle Valo static void
2363e705c121SKalle Valo iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw,
2364e705c121SKalle Valo 				  struct ieee80211_sta *sta, u16 tids,
2365e705c121SKalle Valo 				  int num_frames,
2366e705c121SKalle Valo 				  enum ieee80211_frame_release_type reason,
2367e705c121SKalle Valo 				  bool more_data)
2368e705c121SKalle Valo {
2369e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2370e705c121SKalle Valo 
2371e705c121SKalle Valo 	/* Called when we need to transmit (a) frame(s) from mac80211 */
2372e705c121SKalle Valo 
2373e705c121SKalle Valo 	iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
2374e705c121SKalle Valo 					  tids, more_data, false);
2375e705c121SKalle Valo }
2376e705c121SKalle Valo 
2377e705c121SKalle Valo static void
2378e705c121SKalle Valo iwl_mvm_mac_release_buffered_frames(struct ieee80211_hw *hw,
2379e705c121SKalle Valo 				    struct ieee80211_sta *sta, u16 tids,
2380e705c121SKalle Valo 				    int num_frames,
2381e705c121SKalle Valo 				    enum ieee80211_frame_release_type reason,
2382e705c121SKalle Valo 				    bool more_data)
2383e705c121SKalle Valo {
2384e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2385e705c121SKalle Valo 
23869a3fcf91SSara Sharon 	/* Called when we need to transmit (a) frame(s) from agg or dqa queue */
2387e705c121SKalle Valo 
2388e705c121SKalle Valo 	iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
2389e705c121SKalle Valo 					  tids, more_data, true);
2390e705c121SKalle Valo }
2391e705c121SKalle Valo 
239265e25482SJohannes Berg static void __iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw,
2393e705c121SKalle Valo 				     enum sta_notify_cmd cmd,
2394e705c121SKalle Valo 				     struct ieee80211_sta *sta)
2395e705c121SKalle Valo {
2396e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2397e705c121SKalle Valo 	struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
2398e705c121SKalle Valo 	unsigned long txqs = 0, tids = 0;
2399e705c121SKalle Valo 	int tid;
2400e705c121SKalle Valo 
2401960f864bSJohannes Berg 	/*
2402960f864bSJohannes Berg 	 * If we have TVQM then we get too high queue numbers - luckily
2403960f864bSJohannes Berg 	 * we really shouldn't get here with that because such hardware
2404960f864bSJohannes Berg 	 * should have firmware supporting buffer station offload.
2405960f864bSJohannes Berg 	 */
2406960f864bSJohannes Berg 	if (WARN_ON(iwl_mvm_has_new_tx_api(mvm)))
2407960f864bSJohannes Berg 		return;
2408960f864bSJohannes Berg 
2409e705c121SKalle Valo 	spin_lock_bh(&mvmsta->lock);
2410e705c121SKalle Valo 	for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
2411e705c121SKalle Valo 		struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
2412e705c121SKalle Valo 
24136862fceeSSara Sharon 		if (tid_data->txq_id == IWL_MVM_INVALID_QUEUE)
24141c17627bSSara Sharon 			continue;
24151c17627bSSara Sharon 
2416e705c121SKalle Valo 		__set_bit(tid_data->txq_id, &txqs);
2417e705c121SKalle Valo 
2418dd32162dSLiad Kaufman 		if (iwl_mvm_tid_queued(mvm, tid_data) == 0)
2419e705c121SKalle Valo 			continue;
2420e705c121SKalle Valo 
2421e705c121SKalle Valo 		__set_bit(tid, &tids);
2422e705c121SKalle Valo 	}
2423e705c121SKalle Valo 
2424e705c121SKalle Valo 	switch (cmd) {
2425e705c121SKalle Valo 	case STA_NOTIFY_SLEEP:
2426e705c121SKalle Valo 		for_each_set_bit(tid, &tids, IWL_MAX_TID_COUNT)
2427e705c121SKalle Valo 			ieee80211_sta_set_buffered(sta, tid, true);
2428e705c121SKalle Valo 
2429e705c121SKalle Valo 		if (txqs)
2430e705c121SKalle Valo 			iwl_trans_freeze_txq_timer(mvm->trans, txqs, true);
2431e705c121SKalle Valo 		/*
2432e705c121SKalle Valo 		 * The fw updates the STA to be asleep. Tx packets on the Tx
2433e705c121SKalle Valo 		 * queues to this station will not be transmitted. The fw will
2434e705c121SKalle Valo 		 * send a Tx response with TX_STATUS_FAIL_DEST_PS.
2435e705c121SKalle Valo 		 */
2436e705c121SKalle Valo 		break;
2437e705c121SKalle Valo 	case STA_NOTIFY_AWAKE:
24380ae98812SSara Sharon 		if (WARN_ON(mvmsta->sta_id == IWL_MVM_INVALID_STA))
2439e705c121SKalle Valo 			break;
2440e705c121SKalle Valo 
2441e705c121SKalle Valo 		if (txqs)
2442e705c121SKalle Valo 			iwl_trans_freeze_txq_timer(mvm->trans, txqs, false);
2443e705c121SKalle Valo 		iwl_mvm_sta_modify_ps_wake(mvm, sta);
2444e705c121SKalle Valo 		break;
2445e705c121SKalle Valo 	default:
2446e705c121SKalle Valo 		break;
2447e705c121SKalle Valo 	}
2448e705c121SKalle Valo 	spin_unlock_bh(&mvmsta->lock);
2449e705c121SKalle Valo }
2450e705c121SKalle Valo 
245165e25482SJohannes Berg static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw,
245265e25482SJohannes Berg 				   struct ieee80211_vif *vif,
245365e25482SJohannes Berg 				   enum sta_notify_cmd cmd,
245465e25482SJohannes Berg 				   struct ieee80211_sta *sta)
245565e25482SJohannes Berg {
245665e25482SJohannes Berg 	__iwl_mvm_mac_sta_notify(hw, cmd, sta);
245765e25482SJohannes Berg }
245865e25482SJohannes Berg 
245965e25482SJohannes Berg void iwl_mvm_sta_pm_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
246065e25482SJohannes Berg {
246165e25482SJohannes Berg 	struct iwl_rx_packet *pkt = rxb_addr(rxb);
246265e25482SJohannes Berg 	struct iwl_mvm_pm_state_notification *notif = (void *)pkt->data;
246365e25482SJohannes Berg 	struct ieee80211_sta *sta;
246465e25482SJohannes Berg 	struct iwl_mvm_sta *mvmsta;
246565e25482SJohannes Berg 	bool sleeping = (notif->type != IWL_MVM_PM_EVENT_AWAKE);
246665e25482SJohannes Berg 
246765e25482SJohannes Berg 	if (WARN_ON(notif->sta_id >= ARRAY_SIZE(mvm->fw_id_to_mac_id)))
246865e25482SJohannes Berg 		return;
246965e25482SJohannes Berg 
247065e25482SJohannes Berg 	rcu_read_lock();
2471a9560029SSara Sharon 	sta = rcu_dereference(mvm->fw_id_to_mac_id[notif->sta_id]);
247265e25482SJohannes Berg 	if (WARN_ON(IS_ERR_OR_NULL(sta))) {
247365e25482SJohannes Berg 		rcu_read_unlock();
247465e25482SJohannes Berg 		return;
247565e25482SJohannes Berg 	}
247665e25482SJohannes Berg 
247765e25482SJohannes Berg 	mvmsta = iwl_mvm_sta_from_mac80211(sta);
247865e25482SJohannes Berg 
247965e25482SJohannes Berg 	if (!mvmsta->vif ||
248065e25482SJohannes Berg 	    mvmsta->vif->type != NL80211_IFTYPE_AP) {
248165e25482SJohannes Berg 		rcu_read_unlock();
248265e25482SJohannes Berg 		return;
248365e25482SJohannes Berg 	}
248465e25482SJohannes Berg 
248565e25482SJohannes Berg 	if (mvmsta->sleeping != sleeping) {
248665e25482SJohannes Berg 		mvmsta->sleeping = sleeping;
248765e25482SJohannes Berg 		__iwl_mvm_mac_sta_notify(mvm->hw,
248865e25482SJohannes Berg 			sleeping ? STA_NOTIFY_SLEEP : STA_NOTIFY_AWAKE,
248965e25482SJohannes Berg 			sta);
249065e25482SJohannes Berg 		ieee80211_sta_ps_transition(sta, sleeping);
249165e25482SJohannes Berg 	}
249265e25482SJohannes Berg 
249365e25482SJohannes Berg 	if (sleeping) {
249465e25482SJohannes Berg 		switch (notif->type) {
249565e25482SJohannes Berg 		case IWL_MVM_PM_EVENT_AWAKE:
249665e25482SJohannes Berg 		case IWL_MVM_PM_EVENT_ASLEEP:
249765e25482SJohannes Berg 			break;
249865e25482SJohannes Berg 		case IWL_MVM_PM_EVENT_UAPSD:
249965e25482SJohannes Berg 			ieee80211_sta_uapsd_trigger(sta, IEEE80211_NUM_TIDS);
250065e25482SJohannes Berg 			break;
250165e25482SJohannes Berg 		case IWL_MVM_PM_EVENT_PS_POLL:
250265e25482SJohannes Berg 			ieee80211_sta_pspoll(sta);
250365e25482SJohannes Berg 			break;
250465e25482SJohannes Berg 		default:
250565e25482SJohannes Berg 			break;
250665e25482SJohannes Berg 		}
250765e25482SJohannes Berg 	}
250865e25482SJohannes Berg 
250965e25482SJohannes Berg 	rcu_read_unlock();
251065e25482SJohannes Berg }
251165e25482SJohannes Berg 
2512e705c121SKalle Valo static void iwl_mvm_sta_pre_rcu_remove(struct ieee80211_hw *hw,
2513e705c121SKalle Valo 				       struct ieee80211_vif *vif,
2514e705c121SKalle Valo 				       struct ieee80211_sta *sta)
2515e705c121SKalle Valo {
2516e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2517e705c121SKalle Valo 	struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
2518e705c121SKalle Valo 
2519e705c121SKalle Valo 	/*
2520e705c121SKalle Valo 	 * This is called before mac80211 does RCU synchronisation,
2521e705c121SKalle Valo 	 * so here we already invalidate our internal RCU-protected
2522e705c121SKalle Valo 	 * station pointer. The rest of the code will thus no longer
2523e705c121SKalle Valo 	 * be able to find the station this way, and we don't rely
2524e705c121SKalle Valo 	 * on further RCU synchronisation after the sta_state()
2525e705c121SKalle Valo 	 * callback deleted the station.
2526e705c121SKalle Valo 	 */
2527e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
2528e705c121SKalle Valo 	if (sta == rcu_access_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id]))
2529e705c121SKalle Valo 		rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id],
2530e705c121SKalle Valo 				   ERR_PTR(-ENOENT));
2531e705c121SKalle Valo 
2532e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
2533e705c121SKalle Valo }
2534e705c121SKalle Valo 
2535e705c121SKalle Valo static void iwl_mvm_check_uapsd(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2536e705c121SKalle Valo 				const u8 *bssid)
2537e705c121SKalle Valo {
2538e705c121SKalle Valo 	if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT))
2539e705c121SKalle Valo 		return;
2540e705c121SKalle Valo 
2541c5241b0cSAvraham Stern 	if (vif->p2p && !iwl_mvm_is_p2p_scm_uapsd_supported(mvm)) {
2542cee5a882SAvri Altman 		vif->driver_flags &= ~IEEE80211_VIF_SUPPORTS_UAPSD;
2543cee5a882SAvri Altman 		return;
2544cee5a882SAvri Altman 	}
2545cee5a882SAvri Altman 
254611dee0b4SEmmanuel Grumbach 	if (!vif->p2p &&
254711dee0b4SEmmanuel Grumbach 	    (iwlwifi_mod_params.uapsd_disable & IWL_DISABLE_UAPSD_BSS)) {
2548e705c121SKalle Valo 		vif->driver_flags &= ~IEEE80211_VIF_SUPPORTS_UAPSD;
2549e705c121SKalle Valo 		return;
2550e705c121SKalle Valo 	}
2551e705c121SKalle Valo 
2552e705c121SKalle Valo 	vif->driver_flags |= IEEE80211_VIF_SUPPORTS_UAPSD;
2553e705c121SKalle Valo }
2554e705c121SKalle Valo 
25551e8f1329SGolan Ben-Ami static void
25561e8f1329SGolan Ben-Ami iwl_mvm_tdls_check_trigger(struct iwl_mvm *mvm,
25571e8f1329SGolan Ben-Ami 			   struct ieee80211_vif *vif, u8 *peer_addr,
25581e8f1329SGolan Ben-Ami 			   enum nl80211_tdls_operation action)
25591e8f1329SGolan Ben-Ami {
25601e8f1329SGolan Ben-Ami 	struct iwl_fw_dbg_trigger_tlv *trig;
25611e8f1329SGolan Ben-Ami 	struct iwl_fw_dbg_trigger_tdls *tdls_trig;
25621e8f1329SGolan Ben-Ami 
25631e8f1329SGolan Ben-Ami 	if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TDLS))
25641e8f1329SGolan Ben-Ami 		return;
25651e8f1329SGolan Ben-Ami 
25661e8f1329SGolan Ben-Ami 	trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TDLS);
25671e8f1329SGolan Ben-Ami 	tdls_trig = (void *)trig->data;
25687174beb6SJohannes Berg 	if (!iwl_fw_dbg_trigger_check_stop(&mvm->fwrt,
25697174beb6SJohannes Berg 					   ieee80211_vif_to_wdev(vif), trig))
25701e8f1329SGolan Ben-Ami 		return;
25711e8f1329SGolan Ben-Ami 
25721e8f1329SGolan Ben-Ami 	if (!(tdls_trig->action_bitmap & BIT(action)))
25731e8f1329SGolan Ben-Ami 		return;
25741e8f1329SGolan Ben-Ami 
25751e8f1329SGolan Ben-Ami 	if (tdls_trig->peer_mode &&
25761e8f1329SGolan Ben-Ami 	    memcmp(tdls_trig->peer, peer_addr, ETH_ALEN) != 0)
25771e8f1329SGolan Ben-Ami 		return;
25781e8f1329SGolan Ben-Ami 
25797174beb6SJohannes Berg 	iwl_fw_dbg_collect_trig(&mvm->fwrt, trig,
25801e8f1329SGolan Ben-Ami 				"TDLS event occurred, peer %pM, action %d",
25811e8f1329SGolan Ben-Ami 				peer_addr, action);
25821e8f1329SGolan Ben-Ami }
25831e8f1329SGolan Ben-Ami 
258424afba76SLiad Kaufman static void iwl_mvm_purge_deferred_tx_frames(struct iwl_mvm *mvm,
258524afba76SLiad Kaufman 					     struct iwl_mvm_sta *mvm_sta)
258624afba76SLiad Kaufman {
258724afba76SLiad Kaufman 	struct iwl_mvm_tid_data *tid_data;
258824afba76SLiad Kaufman 	struct sk_buff *skb;
258924afba76SLiad Kaufman 	int i;
259024afba76SLiad Kaufman 
259124afba76SLiad Kaufman 	spin_lock_bh(&mvm_sta->lock);
259224afba76SLiad Kaufman 	for (i = 0; i <= IWL_MAX_TID_COUNT; i++) {
259324afba76SLiad Kaufman 		tid_data = &mvm_sta->tid_data[i];
25947e39a00dSAvraham Stern 
25957e39a00dSAvraham Stern 		while ((skb = __skb_dequeue(&tid_data->deferred_tx_frames))) {
25967e39a00dSAvraham Stern 			struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
25977e39a00dSAvraham Stern 
25987e39a00dSAvraham Stern 			/*
25997e39a00dSAvraham Stern 			 * The first deferred frame should've stopped the MAC
26007e39a00dSAvraham Stern 			 * queues, so we should never get a second deferred
26017e39a00dSAvraham Stern 			 * frame for the RA/TID.
26027e39a00dSAvraham Stern 			 */
26038458e48aSAvraham Stern 			iwl_mvm_start_mac_queues(mvm, BIT(info->hw_queue));
260424afba76SLiad Kaufman 			ieee80211_free_txskb(mvm->hw, skb);
260524afba76SLiad Kaufman 		}
26067e39a00dSAvraham Stern 	}
260724afba76SLiad Kaufman 	spin_unlock_bh(&mvm_sta->lock);
260824afba76SLiad Kaufman }
260924afba76SLiad Kaufman 
2610e705c121SKalle Valo static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw,
2611e705c121SKalle Valo 				 struct ieee80211_vif *vif,
2612e705c121SKalle Valo 				 struct ieee80211_sta *sta,
2613e705c121SKalle Valo 				 enum ieee80211_sta_state old_state,
2614e705c121SKalle Valo 				 enum ieee80211_sta_state new_state)
2615e705c121SKalle Valo {
2616e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2617e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
26186ea29ce5SJohannes Berg 	struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
2619e705c121SKalle Valo 	int ret;
2620e705c121SKalle Valo 
2621e705c121SKalle Valo 	IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n",
2622e705c121SKalle Valo 			   sta->addr, old_state, new_state);
2623e705c121SKalle Valo 
2624e705c121SKalle Valo 	/* this would be a mac80211 bug ... but don't crash */
2625e705c121SKalle Valo 	if (WARN_ON_ONCE(!mvmvif->phy_ctxt))
2626e705c121SKalle Valo 		return -EINVAL;
2627e705c121SKalle Valo 
262824afba76SLiad Kaufman 	/*
262924afba76SLiad Kaufman 	 * If we are in a STA removal flow and in DQA mode:
263024afba76SLiad Kaufman 	 *
263124afba76SLiad Kaufman 	 * This is after the sync_rcu part, so the queues have already been
263224afba76SLiad Kaufman 	 * flushed. No more TXs on their way in mac80211's path, and no more in
263324afba76SLiad Kaufman 	 * the queues.
263424afba76SLiad Kaufman 	 * Also, we won't be getting any new TX frames for this station.
263524afba76SLiad Kaufman 	 * What we might have are deferred TX frames that need to be taken care
263624afba76SLiad Kaufman 	 * of.
263724afba76SLiad Kaufman 	 *
263824afba76SLiad Kaufman 	 * Drop any still-queued deferred-frame before removing the STA, and
263924afba76SLiad Kaufman 	 * make sure the worker is no longer handling frames for this STA.
264024afba76SLiad Kaufman 	 */
264124afba76SLiad Kaufman 	if (old_state == IEEE80211_STA_NONE &&
2642c8f54701SJohannes Berg 	    new_state == IEEE80211_STA_NOTEXIST) {
264324afba76SLiad Kaufman 		iwl_mvm_purge_deferred_tx_frames(mvm, mvm_sta);
264424afba76SLiad Kaufman 		flush_work(&mvm->add_stream_wk);
264524afba76SLiad Kaufman 
264624afba76SLiad Kaufman 		/*
264724afba76SLiad Kaufman 		 * No need to make sure deferred TX indication is off since the
264824afba76SLiad Kaufman 		 * worker will already remove it if it was on
264924afba76SLiad Kaufman 		 */
265024afba76SLiad Kaufman 	}
265124afba76SLiad Kaufman 
2652e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
26536ea29ce5SJohannes Berg 	/* track whether or not the station is associated */
26546ea29ce5SJohannes Berg 	mvm_sta->associated = new_state >= IEEE80211_STA_ASSOC;
26556ea29ce5SJohannes Berg 
2656e705c121SKalle Valo 	if (old_state == IEEE80211_STA_NOTEXIST &&
2657e705c121SKalle Valo 	    new_state == IEEE80211_STA_NONE) {
2658e705c121SKalle Valo 		/*
2659e705c121SKalle Valo 		 * Firmware bug - it'll crash if the beacon interval is less
2660e705c121SKalle Valo 		 * than 16. We can't avoid connecting at all, so refuse the
2661e705c121SKalle Valo 		 * station state change, this will cause mac80211 to abandon
2662e705c121SKalle Valo 		 * attempts to connect to this AP, and eventually wpa_s will
2663e705c121SKalle Valo 		 * blacklist the AP...
2664e705c121SKalle Valo 		 */
2665e705c121SKalle Valo 		if (vif->type == NL80211_IFTYPE_STATION &&
2666e705c121SKalle Valo 		    vif->bss_conf.beacon_int < 16) {
2667e705c121SKalle Valo 			IWL_ERR(mvm,
2668e705c121SKalle Valo 				"AP %pM beacon interval is %d, refusing due to firmware bug!\n",
2669e705c121SKalle Valo 				sta->addr, vif->bss_conf.beacon_int);
2670e705c121SKalle Valo 			ret = -EINVAL;
2671e705c121SKalle Valo 			goto out_unlock;
2672e705c121SKalle Valo 		}
2673e705c121SKalle Valo 
2674e705c121SKalle Valo 		if (sta->tdls &&
2675e705c121SKalle Valo 		    (vif->p2p ||
2676e705c121SKalle Valo 		     iwl_mvm_tdls_sta_count(mvm, NULL) ==
2677e705c121SKalle Valo 						IWL_MVM_TDLS_STA_COUNT ||
2678e705c121SKalle Valo 		     iwl_mvm_phy_ctx_count(mvm) > 1)) {
2679e705c121SKalle Valo 			IWL_DEBUG_MAC80211(mvm, "refusing TDLS sta\n");
2680e705c121SKalle Valo 			ret = -EBUSY;
2681e705c121SKalle Valo 			goto out_unlock;
2682e705c121SKalle Valo 		}
2683e705c121SKalle Valo 
2684e705c121SKalle Valo 		ret = iwl_mvm_add_sta(mvm, vif, sta);
26851e8f1329SGolan Ben-Ami 		if (sta->tdls && ret == 0) {
2686e705c121SKalle Valo 			iwl_mvm_recalc_tdls_state(mvm, vif, true);
26871e8f1329SGolan Ben-Ami 			iwl_mvm_tdls_check_trigger(mvm, vif, sta->addr,
26881e8f1329SGolan Ben-Ami 						   NL80211_TDLS_SETUP);
26891e8f1329SGolan Ben-Ami 		}
2690e705c121SKalle Valo 	} else if (old_state == IEEE80211_STA_NONE &&
2691e705c121SKalle Valo 		   new_state == IEEE80211_STA_AUTH) {
2692e705c121SKalle Valo 		/*
2693e705c121SKalle Valo 		 * EBS may be disabled due to previous failures reported by FW.
2694e705c121SKalle Valo 		 * Reset EBS status here assuming environment has been changed.
2695e705c121SKalle Valo 		 */
2696e705c121SKalle Valo 		mvm->last_ebs_successful = true;
2697e705c121SKalle Valo 		iwl_mvm_check_uapsd(mvm, vif, sta->addr);
2698e705c121SKalle Valo 		ret = 0;
2699e705c121SKalle Valo 	} else if (old_state == IEEE80211_STA_AUTH &&
2700e705c121SKalle Valo 		   new_state == IEEE80211_STA_ASSOC) {
27018be30c13SAyala Beker 		if (vif->type == NL80211_IFTYPE_AP) {
27028be30c13SAyala Beker 			mvmvif->ap_assoc_sta_count++;
27038be30c13SAyala Beker 			iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
27048be30c13SAyala Beker 		}
2705735a0045SGoodstein, Mordechay 
2706735a0045SGoodstein, Mordechay 		iwl_mvm_rs_rate_init(mvm, sta, mvmvif->phy_ctxt->channel->band,
2707e705c121SKalle Valo 				     true);
2708735a0045SGoodstein, Mordechay 		ret = iwl_mvm_update_sta(mvm, vif, sta);
2709e705c121SKalle Valo 	} else if (old_state == IEEE80211_STA_ASSOC &&
2710e705c121SKalle Valo 		   new_state == IEEE80211_STA_AUTHORIZED) {
2711e705c121SKalle Valo 
2712e705c121SKalle Valo 		/* we don't support TDLS during DCM */
2713e705c121SKalle Valo 		if (iwl_mvm_phy_ctx_count(mvm) > 1)
2714e705c121SKalle Valo 			iwl_mvm_teardown_tdls_peers(mvm);
2715e705c121SKalle Valo 
27161e8f1329SGolan Ben-Ami 		if (sta->tdls)
27171e8f1329SGolan Ben-Ami 			iwl_mvm_tdls_check_trigger(mvm, vif, sta->addr,
27181e8f1329SGolan Ben-Ami 						   NL80211_TDLS_ENABLE_LINK);
27191e8f1329SGolan Ben-Ami 
2720e705c121SKalle Valo 		/* enable beacon filtering */
2721e705c121SKalle Valo 		WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
27226b7a5aeaSNaftali Goldstein 
27236b7a5aeaSNaftali Goldstein 		iwl_mvm_rs_rate_init(mvm, sta, mvmvif->phy_ctxt->channel->band,
27246b7a5aeaSNaftali Goldstein 				     false);
27256b7a5aeaSNaftali Goldstein 
2726e705c121SKalle Valo 		ret = 0;
2727e705c121SKalle Valo 	} else if (old_state == IEEE80211_STA_AUTHORIZED &&
2728e705c121SKalle Valo 		   new_state == IEEE80211_STA_ASSOC) {
2729e705c121SKalle Valo 		/* disable beacon filtering */
2730e705c121SKalle Valo 		WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif, 0));
2731e705c121SKalle Valo 		ret = 0;
2732e705c121SKalle Valo 	} else if (old_state == IEEE80211_STA_ASSOC &&
2733e705c121SKalle Valo 		   new_state == IEEE80211_STA_AUTH) {
27348be30c13SAyala Beker 		if (vif->type == NL80211_IFTYPE_AP) {
27358be30c13SAyala Beker 			mvmvif->ap_assoc_sta_count--;
27368be30c13SAyala Beker 			iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
27378be30c13SAyala Beker 		}
2738e705c121SKalle Valo 		ret = 0;
2739e705c121SKalle Valo 	} else if (old_state == IEEE80211_STA_AUTH &&
2740e705c121SKalle Valo 		   new_state == IEEE80211_STA_NONE) {
2741e705c121SKalle Valo 		ret = 0;
2742e705c121SKalle Valo 	} else if (old_state == IEEE80211_STA_NONE &&
2743e705c121SKalle Valo 		   new_state == IEEE80211_STA_NOTEXIST) {
2744e705c121SKalle Valo 		ret = iwl_mvm_rm_sta(mvm, vif, sta);
27451e8f1329SGolan Ben-Ami 		if (sta->tdls) {
2746e705c121SKalle Valo 			iwl_mvm_recalc_tdls_state(mvm, vif, false);
27471e8f1329SGolan Ben-Ami 			iwl_mvm_tdls_check_trigger(mvm, vif, sta->addr,
27481e8f1329SGolan Ben-Ami 						   NL80211_TDLS_DISABLE_LINK);
27491e8f1329SGolan Ben-Ami 		}
2750e705c121SKalle Valo 	} else {
2751e705c121SKalle Valo 		ret = -EIO;
2752e705c121SKalle Valo 	}
2753e705c121SKalle Valo  out_unlock:
2754e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
2755e705c121SKalle Valo 
2756e705c121SKalle Valo 	if (sta->tdls && ret == 0) {
2757e705c121SKalle Valo 		if (old_state == IEEE80211_STA_NOTEXIST &&
2758e705c121SKalle Valo 		    new_state == IEEE80211_STA_NONE)
2759e705c121SKalle Valo 			ieee80211_reserve_tid(sta, IWL_MVM_TDLS_FW_TID);
2760e705c121SKalle Valo 		else if (old_state == IEEE80211_STA_NONE &&
2761e705c121SKalle Valo 			 new_state == IEEE80211_STA_NOTEXIST)
2762e705c121SKalle Valo 			ieee80211_unreserve_tid(sta, IWL_MVM_TDLS_FW_TID);
2763e705c121SKalle Valo 	}
2764e705c121SKalle Valo 
2765e705c121SKalle Valo 	return ret;
2766e705c121SKalle Valo }
2767e705c121SKalle Valo 
2768e705c121SKalle Valo static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
2769e705c121SKalle Valo {
2770e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2771e705c121SKalle Valo 
2772e705c121SKalle Valo 	mvm->rts_threshold = value;
2773e705c121SKalle Valo 
2774e705c121SKalle Valo 	return 0;
2775e705c121SKalle Valo }
2776e705c121SKalle Valo 
2777e705c121SKalle Valo static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw,
2778e705c121SKalle Valo 				  struct ieee80211_vif *vif,
2779e705c121SKalle Valo 				  struct ieee80211_sta *sta, u32 changed)
2780e705c121SKalle Valo {
2781e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2782e705c121SKalle Valo 
2783e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_STATION &&
2784e705c121SKalle Valo 	    changed & IEEE80211_RC_NSS_CHANGED)
2785e705c121SKalle Valo 		iwl_mvm_sf_update(mvm, vif, false);
2786e705c121SKalle Valo }
2787e705c121SKalle Valo 
2788e705c121SKalle Valo static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw,
2789e705c121SKalle Valo 			       struct ieee80211_vif *vif, u16 ac,
2790e705c121SKalle Valo 			       const struct ieee80211_tx_queue_params *params)
2791e705c121SKalle Valo {
2792e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2793e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2794e705c121SKalle Valo 
2795e705c121SKalle Valo 	mvmvif->queue_params[ac] = *params;
2796e705c121SKalle Valo 
2797e705c121SKalle Valo 	/*
2798e705c121SKalle Valo 	 * No need to update right away, we'll get BSS_CHANGED_QOS
2799e705c121SKalle Valo 	 * The exception is P2P_DEVICE interface which needs immediate update.
2800e705c121SKalle Valo 	 */
2801e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
2802e705c121SKalle Valo 		int ret;
2803e705c121SKalle Valo 
2804e705c121SKalle Valo 		mutex_lock(&mvm->mutex);
2805e705c121SKalle Valo 		ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
2806e705c121SKalle Valo 		mutex_unlock(&mvm->mutex);
2807e705c121SKalle Valo 		return ret;
2808e705c121SKalle Valo 	}
2809e705c121SKalle Valo 	return 0;
2810e705c121SKalle Valo }
2811e705c121SKalle Valo 
2812e705c121SKalle Valo static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw,
2813e705c121SKalle Valo 				      struct ieee80211_vif *vif)
2814e705c121SKalle Valo {
2815e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
28167c70fee5SSara Sharon 	u32 duration = IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS;
28177c70fee5SSara Sharon 	u32 min_duration = IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS;
2818e705c121SKalle Valo 
2819e705c121SKalle Valo 	/*
2820e705c121SKalle Valo 	 * iwl_mvm_protect_session() reads directly from the device
2821e705c121SKalle Valo 	 * (the system time), so make sure it is available.
2822e705c121SKalle Valo 	 */
2823e705c121SKalle Valo 	if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PREPARE_TX))
2824e705c121SKalle Valo 		return;
2825e705c121SKalle Valo 
2826e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
2827e705c121SKalle Valo 	/* Try really hard to protect the session and hear a beacon */
2828e705c121SKalle Valo 	iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500, false);
2829e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
2830e705c121SKalle Valo 
2831e705c121SKalle Valo 	iwl_mvm_unref(mvm, IWL_MVM_REF_PREPARE_TX);
2832e705c121SKalle Valo }
2833e705c121SKalle Valo 
2834e705c121SKalle Valo static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw,
2835e705c121SKalle Valo 					struct ieee80211_vif *vif,
2836e705c121SKalle Valo 					struct cfg80211_sched_scan_request *req,
2837e705c121SKalle Valo 					struct ieee80211_scan_ies *ies)
2838e705c121SKalle Valo {
2839e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2840e705c121SKalle Valo 
2841e705c121SKalle Valo 	int ret;
2842e705c121SKalle Valo 
2843e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
2844e705c121SKalle Valo 
2845e705c121SKalle Valo 	if (!vif->bss_conf.idle) {
2846e705c121SKalle Valo 		ret = -EBUSY;
2847e705c121SKalle Valo 		goto out;
2848e705c121SKalle Valo 	}
2849e705c121SKalle Valo 
2850e705c121SKalle Valo 	ret = iwl_mvm_sched_scan_start(mvm, vif, req, ies, IWL_MVM_SCAN_SCHED);
2851e705c121SKalle Valo 
2852e705c121SKalle Valo out:
2853e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
2854e705c121SKalle Valo 	return ret;
2855e705c121SKalle Valo }
2856e705c121SKalle Valo 
2857e705c121SKalle Valo static int iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw,
2858e705c121SKalle Valo 				       struct ieee80211_vif *vif)
2859e705c121SKalle Valo {
2860e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2861e705c121SKalle Valo 	int ret;
2862e705c121SKalle Valo 
2863e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
2864e705c121SKalle Valo 
2865e705c121SKalle Valo 	/* Due to a race condition, it's possible that mac80211 asks
2866e705c121SKalle Valo 	 * us to stop a sched_scan when it's already stopped.  This
2867e705c121SKalle Valo 	 * can happen, for instance, if we stopped the scan ourselves,
2868e705c121SKalle Valo 	 * called ieee80211_sched_scan_stopped() and the userspace called
2869e705c121SKalle Valo 	 * stop sched scan scan before ieee80211_sched_scan_stopped_work()
2870e705c121SKalle Valo 	 * could run.  To handle this, simply return if the scan is
2871e705c121SKalle Valo 	 * not running.
2872e705c121SKalle Valo 	*/
2873e705c121SKalle Valo 	if (!(mvm->scan_status & IWL_MVM_SCAN_SCHED)) {
2874e705c121SKalle Valo 		mutex_unlock(&mvm->mutex);
2875e705c121SKalle Valo 		return 0;
2876e705c121SKalle Valo 	}
2877e705c121SKalle Valo 
2878e705c121SKalle Valo 	ret = iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, false);
2879e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
2880e705c121SKalle Valo 	iwl_mvm_wait_for_async_handlers(mvm);
2881e705c121SKalle Valo 
2882e705c121SKalle Valo 	return ret;
2883e705c121SKalle Valo }
2884e705c121SKalle Valo 
2885e705c121SKalle Valo static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw,
2886e705c121SKalle Valo 			       enum set_key_cmd cmd,
2887e705c121SKalle Valo 			       struct ieee80211_vif *vif,
2888e705c121SKalle Valo 			       struct ieee80211_sta *sta,
2889e705c121SKalle Valo 			       struct ieee80211_key_conf *key)
2890e705c121SKalle Valo {
2891e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2892f5e28eacSJohannes Berg 	struct iwl_mvm_sta *mvmsta;
2893f5e28eacSJohannes Berg 	struct iwl_mvm_key_pn *ptk_pn;
2894f5e28eacSJohannes Berg 	int keyidx = key->keyidx;
2895e705c121SKalle Valo 	int ret;
28964615fd15SEmmanuel Grumbach 	u8 key_offset;
2897e705c121SKalle Valo 
28983b37f4c9SJohannes Berg 	if (iwlwifi_mod_params.swcrypto) {
2899e705c121SKalle Valo 		IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n");
2900e705c121SKalle Valo 		return -EOPNOTSUPP;
2901e705c121SKalle Valo 	}
2902e705c121SKalle Valo 
2903e705c121SKalle Valo 	switch (key->cipher) {
2904e705c121SKalle Valo 	case WLAN_CIPHER_SUITE_TKIP:
2905e705c121SKalle Valo 		key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
29061ad4f639SEliad Peller 		key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE;
2907e705c121SKalle Valo 		break;
2908e705c121SKalle Valo 	case WLAN_CIPHER_SUITE_CCMP:
29092a53d166SAyala Beker 	case WLAN_CIPHER_SUITE_GCMP:
29102a53d166SAyala Beker 	case WLAN_CIPHER_SUITE_GCMP_256:
291185aeb58cSDavid Spinadel 		if (!iwl_mvm_has_new_tx_api(mvm))
2912e705c121SKalle Valo 			key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE;
2913e705c121SKalle Valo 		break;
2914e705c121SKalle Valo 	case WLAN_CIPHER_SUITE_AES_CMAC:
29158e160ab8SAyala Beker 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
29168e160ab8SAyala Beker 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
2917e705c121SKalle Valo 		WARN_ON_ONCE(!ieee80211_hw_check(hw, MFP_CAPABLE));
2918e705c121SKalle Valo 		break;
2919e705c121SKalle Valo 	case WLAN_CIPHER_SUITE_WEP40:
2920e705c121SKalle Valo 	case WLAN_CIPHER_SUITE_WEP104:
2921e705c121SKalle Valo 		/* For non-client mode, only use WEP keys for TX as we probably
2922e705c121SKalle Valo 		 * don't have a station yet anyway and would then have to keep
2923e705c121SKalle Valo 		 * track of the keys, linking them to each of the clients/peers
2924e705c121SKalle Valo 		 * as they appear. For now, don't do that, for performance WEP
2925e705c121SKalle Valo 		 * offload doesn't really matter much, but we need it for some
2926e705c121SKalle Valo 		 * other offload features in client mode.
2927e705c121SKalle Valo 		 */
2928e705c121SKalle Valo 		if (vif->type != NL80211_IFTYPE_STATION)
2929e705c121SKalle Valo 			return 0;
2930e705c121SKalle Valo 		break;
2931e705c121SKalle Valo 	default:
2932e705c121SKalle Valo 		/* currently FW supports only one optional cipher scheme */
2933e705c121SKalle Valo 		if (hw->n_cipher_schemes &&
2934e705c121SKalle Valo 		    hw->cipher_schemes->cipher == key->cipher)
2935e705c121SKalle Valo 			key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE;
2936e705c121SKalle Valo 		else
2937e705c121SKalle Valo 			return -EOPNOTSUPP;
2938e705c121SKalle Valo 	}
2939e705c121SKalle Valo 
2940e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
2941e705c121SKalle Valo 
2942e705c121SKalle Valo 	switch (cmd) {
2943e705c121SKalle Valo 	case SET_KEY:
2944e705c121SKalle Valo 		if ((vif->type == NL80211_IFTYPE_ADHOC ||
2945e705c121SKalle Valo 		     vif->type == NL80211_IFTYPE_AP) && !sta) {
2946e705c121SKalle Valo 			/*
2947e705c121SKalle Valo 			 * GTK on AP interface is a TX-only key, return 0;
2948e705c121SKalle Valo 			 * on IBSS they're per-station and because we're lazy
2949e705c121SKalle Valo 			 * we don't support them for RX, so do the same.
29508e160ab8SAyala Beker 			 * CMAC/GMAC in AP/IBSS modes must be done in software.
2951e705c121SKalle Valo 			 */
29528e160ab8SAyala Beker 			if (key->cipher == WLAN_CIPHER_SUITE_AES_CMAC ||
29538e160ab8SAyala Beker 			    key->cipher == WLAN_CIPHER_SUITE_BIP_GMAC_128 ||
29548e160ab8SAyala Beker 			    key->cipher == WLAN_CIPHER_SUITE_BIP_GMAC_256)
295581279c49SJohannes Berg 				ret = -EOPNOTSUPP;
295681279c49SJohannes Berg 			else
2957e705c121SKalle Valo 				ret = 0;
295885aeb58cSDavid Spinadel 
295985aeb58cSDavid Spinadel 			if (key->cipher != WLAN_CIPHER_SUITE_GCMP &&
296085aeb58cSDavid Spinadel 			    key->cipher != WLAN_CIPHER_SUITE_GCMP_256 &&
296185aeb58cSDavid Spinadel 			    !iwl_mvm_has_new_tx_api(mvm)) {
2962e705c121SKalle Valo 				key->hw_key_idx = STA_KEY_IDX_INVALID;
2963e705c121SKalle Valo 				break;
2964e705c121SKalle Valo 			}
296585aeb58cSDavid Spinadel 		}
2966e705c121SKalle Valo 
2967e705c121SKalle Valo 		/* During FW restart, in order to restore the state as it was,
2968e705c121SKalle Valo 		 * don't try to reprogram keys we previously failed for.
2969e705c121SKalle Valo 		 */
2970e705c121SKalle Valo 		if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) &&
2971e705c121SKalle Valo 		    key->hw_key_idx == STA_KEY_IDX_INVALID) {
2972e705c121SKalle Valo 			IWL_DEBUG_MAC80211(mvm,
2973e705c121SKalle Valo 					   "skip invalid idx key programming during restart\n");
2974e705c121SKalle Valo 			ret = 0;
2975e705c121SKalle Valo 			break;
2976e705c121SKalle Valo 		}
2977e705c121SKalle Valo 
2978f5e28eacSJohannes Berg 		if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) &&
2979f5e28eacSJohannes Berg 		    sta && iwl_mvm_has_new_rx_api(mvm) &&
2980f5e28eacSJohannes Berg 		    key->flags & IEEE80211_KEY_FLAG_PAIRWISE &&
2981f5e28eacSJohannes Berg 		    (key->cipher == WLAN_CIPHER_SUITE_CCMP ||
29822a53d166SAyala Beker 		     key->cipher == WLAN_CIPHER_SUITE_GCMP ||
29832a53d166SAyala Beker 		     key->cipher == WLAN_CIPHER_SUITE_GCMP_256)) {
2984f5e28eacSJohannes Berg 			struct ieee80211_key_seq seq;
2985f5e28eacSJohannes Berg 			int tid, q;
2986f5e28eacSJohannes Berg 
2987f5e28eacSJohannes Berg 			mvmsta = iwl_mvm_sta_from_mac80211(sta);
2988f5e28eacSJohannes Berg 			WARN_ON(rcu_access_pointer(mvmsta->ptk_pn[keyidx]));
2989f5e28eacSJohannes Berg 			ptk_pn = kzalloc(sizeof(*ptk_pn) +
2990f5e28eacSJohannes Berg 					 mvm->trans->num_rx_queues *
2991f5e28eacSJohannes Berg 						sizeof(ptk_pn->q[0]),
2992f5e28eacSJohannes Berg 					 GFP_KERNEL);
2993f5e28eacSJohannes Berg 			if (!ptk_pn) {
2994f5e28eacSJohannes Berg 				ret = -ENOMEM;
2995f5e28eacSJohannes Berg 				break;
2996f5e28eacSJohannes Berg 			}
2997f5e28eacSJohannes Berg 
2998f5e28eacSJohannes Berg 			for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
2999f5e28eacSJohannes Berg 				ieee80211_get_key_rx_seq(key, tid, &seq);
3000f5e28eacSJohannes Berg 				for (q = 0; q < mvm->trans->num_rx_queues; q++)
3001f5e28eacSJohannes Berg 					memcpy(ptk_pn->q[q].pn[tid],
3002f5e28eacSJohannes Berg 					       seq.ccmp.pn,
3003f5e28eacSJohannes Berg 					       IEEE80211_CCMP_PN_LEN);
3004f5e28eacSJohannes Berg 			}
3005f5e28eacSJohannes Berg 
3006f5e28eacSJohannes Berg 			rcu_assign_pointer(mvmsta->ptk_pn[keyidx], ptk_pn);
3007f5e28eacSJohannes Berg 		}
3008f5e28eacSJohannes Berg 
30094615fd15SEmmanuel Grumbach 		/* in HW restart reuse the index, otherwise request a new one */
30104615fd15SEmmanuel Grumbach 		if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
30114615fd15SEmmanuel Grumbach 			key_offset = key->hw_key_idx;
30124615fd15SEmmanuel Grumbach 		else
30134615fd15SEmmanuel Grumbach 			key_offset = STA_KEY_IDX_INVALID;
30144615fd15SEmmanuel Grumbach 
3015e705c121SKalle Valo 		IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n");
30164615fd15SEmmanuel Grumbach 		ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, key_offset);
3017e705c121SKalle Valo 		if (ret) {
3018e705c121SKalle Valo 			IWL_WARN(mvm, "set key failed\n");
3019e705c121SKalle Valo 			/*
3020e705c121SKalle Valo 			 * can't add key for RX, but we don't need it
3021e705c121SKalle Valo 			 * in the device for TX so still return 0
3022e705c121SKalle Valo 			 */
3023e705c121SKalle Valo 			key->hw_key_idx = STA_KEY_IDX_INVALID;
3024e705c121SKalle Valo 			ret = 0;
3025e705c121SKalle Valo 		}
3026e705c121SKalle Valo 
3027e705c121SKalle Valo 		break;
3028e705c121SKalle Valo 	case DISABLE_KEY:
3029e705c121SKalle Valo 		if (key->hw_key_idx == STA_KEY_IDX_INVALID) {
3030e705c121SKalle Valo 			ret = 0;
3031e705c121SKalle Valo 			break;
3032e705c121SKalle Valo 		}
3033e705c121SKalle Valo 
3034f5e28eacSJohannes Berg 		if (sta && iwl_mvm_has_new_rx_api(mvm) &&
3035f5e28eacSJohannes Berg 		    key->flags & IEEE80211_KEY_FLAG_PAIRWISE &&
3036f5e28eacSJohannes Berg 		    (key->cipher == WLAN_CIPHER_SUITE_CCMP ||
30372a53d166SAyala Beker 		     key->cipher == WLAN_CIPHER_SUITE_GCMP ||
30382a53d166SAyala Beker 		     key->cipher == WLAN_CIPHER_SUITE_GCMP_256)) {
3039f5e28eacSJohannes Berg 			mvmsta = iwl_mvm_sta_from_mac80211(sta);
3040f5e28eacSJohannes Berg 			ptk_pn = rcu_dereference_protected(
3041f5e28eacSJohannes Berg 						mvmsta->ptk_pn[keyidx],
3042f5e28eacSJohannes Berg 						lockdep_is_held(&mvm->mutex));
3043f5e28eacSJohannes Berg 			RCU_INIT_POINTER(mvmsta->ptk_pn[keyidx], NULL);
3044f5e28eacSJohannes Berg 			if (ptk_pn)
3045f5e28eacSJohannes Berg 				kfree_rcu(ptk_pn, rcu_head);
3046f5e28eacSJohannes Berg 		}
3047f5e28eacSJohannes Berg 
3048e705c121SKalle Valo 		IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n");
3049e705c121SKalle Valo 		ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key);
3050e705c121SKalle Valo 		break;
3051e705c121SKalle Valo 	default:
3052e705c121SKalle Valo 		ret = -EINVAL;
3053e705c121SKalle Valo 	}
3054e705c121SKalle Valo 
3055e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3056e705c121SKalle Valo 	return ret;
3057e705c121SKalle Valo }
3058e705c121SKalle Valo 
3059e705c121SKalle Valo static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw,
3060e705c121SKalle Valo 					struct ieee80211_vif *vif,
3061e705c121SKalle Valo 					struct ieee80211_key_conf *keyconf,
3062e705c121SKalle Valo 					struct ieee80211_sta *sta,
3063e705c121SKalle Valo 					u32 iv32, u16 *phase1key)
3064e705c121SKalle Valo {
3065e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3066e705c121SKalle Valo 
3067e705c121SKalle Valo 	if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID)
3068e705c121SKalle Valo 		return;
3069e705c121SKalle Valo 
3070e705c121SKalle Valo 	iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key);
3071e705c121SKalle Valo }
3072e705c121SKalle Valo 
3073e705c121SKalle Valo 
3074e705c121SKalle Valo static bool iwl_mvm_rx_aux_roc(struct iwl_notif_wait_data *notif_wait,
3075e705c121SKalle Valo 			       struct iwl_rx_packet *pkt, void *data)
3076e705c121SKalle Valo {
3077e705c121SKalle Valo 	struct iwl_mvm *mvm =
3078e705c121SKalle Valo 		container_of(notif_wait, struct iwl_mvm, notif_wait);
3079e705c121SKalle Valo 	struct iwl_hs20_roc_res *resp;
3080e705c121SKalle Valo 	int resp_len = iwl_rx_packet_payload_len(pkt);
3081e705c121SKalle Valo 	struct iwl_mvm_time_event_data *te_data = data;
3082e705c121SKalle Valo 
3083e705c121SKalle Valo 	if (WARN_ON(pkt->hdr.cmd != HOT_SPOT_CMD))
3084e705c121SKalle Valo 		return true;
3085e705c121SKalle Valo 
3086e705c121SKalle Valo 	if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
3087e705c121SKalle Valo 		IWL_ERR(mvm, "Invalid HOT_SPOT_CMD response\n");
3088e705c121SKalle Valo 		return true;
3089e705c121SKalle Valo 	}
3090e705c121SKalle Valo 
3091e705c121SKalle Valo 	resp = (void *)pkt->data;
3092e705c121SKalle Valo 
3093e705c121SKalle Valo 	IWL_DEBUG_TE(mvm,
3094e705c121SKalle Valo 		     "Aux ROC: Recieved response from ucode: status=%d uid=%d\n",
3095e705c121SKalle Valo 		     resp->status, resp->event_unique_id);
3096e705c121SKalle Valo 
3097e705c121SKalle Valo 	te_data->uid = le32_to_cpu(resp->event_unique_id);
3098e705c121SKalle Valo 	IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n",
3099e705c121SKalle Valo 		     te_data->uid);
3100e705c121SKalle Valo 
3101e705c121SKalle Valo 	spin_lock_bh(&mvm->time_event_lock);
3102e705c121SKalle Valo 	list_add_tail(&te_data->list, &mvm->aux_roc_te_list);
3103e705c121SKalle Valo 	spin_unlock_bh(&mvm->time_event_lock);
3104e705c121SKalle Valo 
3105e705c121SKalle Valo 	return true;
3106e705c121SKalle Valo }
3107e705c121SKalle Valo 
3108dc28e12fSMatti Gottlieb #define AUX_ROC_MIN_DURATION MSEC_TO_TU(100)
3109dc28e12fSMatti Gottlieb #define AUX_ROC_MIN_DELAY MSEC_TO_TU(200)
3110dc28e12fSMatti Gottlieb #define AUX_ROC_MAX_DELAY MSEC_TO_TU(600)
3111dc28e12fSMatti Gottlieb #define AUX_ROC_SAFETY_BUFFER MSEC_TO_TU(20)
3112dc28e12fSMatti Gottlieb #define AUX_ROC_MIN_SAFETY_BUFFER MSEC_TO_TU(10)
3113e705c121SKalle Valo static int iwl_mvm_send_aux_roc_cmd(struct iwl_mvm *mvm,
3114e705c121SKalle Valo 				    struct ieee80211_channel *channel,
3115e705c121SKalle Valo 				    struct ieee80211_vif *vif,
3116e705c121SKalle Valo 				    int duration)
3117e705c121SKalle Valo {
3118e705c121SKalle Valo 	int res, time_reg = DEVICE_SYSTEM_TIME_REG;
3119e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
3120e705c121SKalle Valo 	struct iwl_mvm_time_event_data *te_data = &mvmvif->hs_time_event_data;
3121e705c121SKalle Valo 	static const u16 time_event_response[] = { HOT_SPOT_CMD };
3122e705c121SKalle Valo 	struct iwl_notification_wait wait_time_event;
3123dc28e12fSMatti Gottlieb 	u32 dtim_interval = vif->bss_conf.dtim_period *
3124dc28e12fSMatti Gottlieb 		vif->bss_conf.beacon_int;
3125dc28e12fSMatti Gottlieb 	u32 req_dur, delay;
3126e705c121SKalle Valo 	struct iwl_hs20_roc_req aux_roc_req = {
3127e705c121SKalle Valo 		.action = cpu_to_le32(FW_CTXT_ACTION_ADD),
3128e705c121SKalle Valo 		.id_and_color =
3129e705c121SKalle Valo 			cpu_to_le32(FW_CMD_ID_AND_COLOR(MAC_INDEX_AUX, 0)),
3130e705c121SKalle Valo 		.sta_id_and_color = cpu_to_le32(mvm->aux_sta.sta_id),
3131e705c121SKalle Valo 		/* Set the channel info data */
313257fbcce3SJohannes Berg 		.channel_info.band = (channel->band == NL80211_BAND_2GHZ) ?
3133e705c121SKalle Valo 			PHY_BAND_24 : PHY_BAND_5,
3134e705c121SKalle Valo 		.channel_info.channel = channel->hw_value,
3135e705c121SKalle Valo 		.channel_info.width = PHY_VHT_CHANNEL_MODE20,
3136e705c121SKalle Valo 		/* Set the time and duration */
3137e705c121SKalle Valo 		.apply_time = cpu_to_le32(iwl_read_prph(mvm->trans, time_reg)),
3138e705c121SKalle Valo 	 };
3139e705c121SKalle Valo 
3140dc28e12fSMatti Gottlieb 	delay = AUX_ROC_MIN_DELAY;
3141dc28e12fSMatti Gottlieb 	req_dur = MSEC_TO_TU(duration);
3142dc28e12fSMatti Gottlieb 
3143dc28e12fSMatti Gottlieb 	/*
3144dc28e12fSMatti Gottlieb 	 * If we are associated we want the delay time to be at least one
3145dc28e12fSMatti Gottlieb 	 * dtim interval so that the FW can wait until after the DTIM and
3146dc28e12fSMatti Gottlieb 	 * then start the time event, this will potentially allow us to
3147dc28e12fSMatti Gottlieb 	 * remain off-channel for the max duration.
3148dc28e12fSMatti Gottlieb 	 * Since we want to use almost a whole dtim interval we would also
3149dc28e12fSMatti Gottlieb 	 * like the delay to be for 2-3 dtim intervals, in case there are
3150dc28e12fSMatti Gottlieb 	 * other time events with higher priority.
3151dc28e12fSMatti Gottlieb 	 */
3152dc28e12fSMatti Gottlieb 	if (vif->bss_conf.assoc) {
3153dc28e12fSMatti Gottlieb 		delay = min_t(u32, dtim_interval * 3, AUX_ROC_MAX_DELAY);
3154dc28e12fSMatti Gottlieb 		/* We cannot remain off-channel longer than the DTIM interval */
3155dc28e12fSMatti Gottlieb 		if (dtim_interval <= req_dur) {
3156dc28e12fSMatti Gottlieb 			req_dur = dtim_interval - AUX_ROC_SAFETY_BUFFER;
3157dc28e12fSMatti Gottlieb 			if (req_dur <= AUX_ROC_MIN_DURATION)
3158dc28e12fSMatti Gottlieb 				req_dur = dtim_interval -
3159dc28e12fSMatti Gottlieb 					AUX_ROC_MIN_SAFETY_BUFFER;
3160dc28e12fSMatti Gottlieb 		}
3161dc28e12fSMatti Gottlieb 	}
3162dc28e12fSMatti Gottlieb 
3163dc28e12fSMatti Gottlieb 	aux_roc_req.duration = cpu_to_le32(req_dur);
3164dc28e12fSMatti Gottlieb 	aux_roc_req.apply_time_max_delay = cpu_to_le32(delay);
3165dc28e12fSMatti Gottlieb 
3166dc28e12fSMatti Gottlieb 	IWL_DEBUG_TE(mvm,
3167dc28e12fSMatti Gottlieb 		     "ROC: Requesting to remain on channel %u for %ums (requested = %ums, max_delay = %ums, dtim_interval = %ums)\n",
3168dc28e12fSMatti Gottlieb 		     channel->hw_value, req_dur, duration, delay,
3169dc28e12fSMatti Gottlieb 		     dtim_interval);
3170e705c121SKalle Valo 	/* Set the node address */
3171e705c121SKalle Valo 	memcpy(aux_roc_req.node_addr, vif->addr, ETH_ALEN);
3172e705c121SKalle Valo 
3173e705c121SKalle Valo 	lockdep_assert_held(&mvm->mutex);
3174e705c121SKalle Valo 
3175e705c121SKalle Valo 	spin_lock_bh(&mvm->time_event_lock);
3176e705c121SKalle Valo 
3177e705c121SKalle Valo 	if (WARN_ON(te_data->id == HOT_SPOT_CMD)) {
3178e705c121SKalle Valo 		spin_unlock_bh(&mvm->time_event_lock);
3179e705c121SKalle Valo 		return -EIO;
3180e705c121SKalle Valo 	}
3181e705c121SKalle Valo 
3182e705c121SKalle Valo 	te_data->vif = vif;
3183e705c121SKalle Valo 	te_data->duration = duration;
3184e705c121SKalle Valo 	te_data->id = HOT_SPOT_CMD;
3185e705c121SKalle Valo 
3186e705c121SKalle Valo 	spin_unlock_bh(&mvm->time_event_lock);
3187e705c121SKalle Valo 
3188e705c121SKalle Valo 	/*
3189e705c121SKalle Valo 	 * Use a notification wait, which really just processes the
3190e705c121SKalle Valo 	 * command response and doesn't wait for anything, in order
3191e705c121SKalle Valo 	 * to be able to process the response and get the UID inside
3192e705c121SKalle Valo 	 * the RX path. Using CMD_WANT_SKB doesn't work because it
3193e705c121SKalle Valo 	 * stores the buffer and then wakes up this thread, by which
3194e705c121SKalle Valo 	 * time another notification (that the time event started)
3195e705c121SKalle Valo 	 * might already be processed unsuccessfully.
3196e705c121SKalle Valo 	 */
3197e705c121SKalle Valo 	iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event,
3198e705c121SKalle Valo 				   time_event_response,
3199e705c121SKalle Valo 				   ARRAY_SIZE(time_event_response),
3200e705c121SKalle Valo 				   iwl_mvm_rx_aux_roc, te_data);
3201e705c121SKalle Valo 
3202e705c121SKalle Valo 	res = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0, sizeof(aux_roc_req),
3203e705c121SKalle Valo 				   &aux_roc_req);
3204e705c121SKalle Valo 
3205e705c121SKalle Valo 	if (res) {
3206e705c121SKalle Valo 		IWL_ERR(mvm, "Couldn't send HOT_SPOT_CMD: %d\n", res);
3207e705c121SKalle Valo 		iwl_remove_notification(&mvm->notif_wait, &wait_time_event);
3208e705c121SKalle Valo 		goto out_clear_te;
3209e705c121SKalle Valo 	}
3210e705c121SKalle Valo 
3211e705c121SKalle Valo 	/* No need to wait for anything, so just pass 1 (0 isn't valid) */
3212e705c121SKalle Valo 	res = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1);
3213e705c121SKalle Valo 	/* should never fail */
3214e705c121SKalle Valo 	WARN_ON_ONCE(res);
3215e705c121SKalle Valo 
3216e705c121SKalle Valo 	if (res) {
3217e705c121SKalle Valo  out_clear_te:
3218e705c121SKalle Valo 		spin_lock_bh(&mvm->time_event_lock);
3219e705c121SKalle Valo 		iwl_mvm_te_clear_data(mvm, te_data);
3220e705c121SKalle Valo 		spin_unlock_bh(&mvm->time_event_lock);
3221e705c121SKalle Valo 	}
3222e705c121SKalle Valo 
3223e705c121SKalle Valo 	return res;
3224e705c121SKalle Valo }
3225e705c121SKalle Valo 
3226e705c121SKalle Valo static int iwl_mvm_roc(struct ieee80211_hw *hw,
3227e705c121SKalle Valo 		       struct ieee80211_vif *vif,
3228e705c121SKalle Valo 		       struct ieee80211_channel *channel,
3229e705c121SKalle Valo 		       int duration,
3230e705c121SKalle Valo 		       enum ieee80211_roc_type type)
3231e705c121SKalle Valo {
3232e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3233e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
3234e705c121SKalle Valo 	struct cfg80211_chan_def chandef;
3235e705c121SKalle Valo 	struct iwl_mvm_phy_ctxt *phy_ctxt;
3236e705c121SKalle Valo 	int ret, i;
3237e705c121SKalle Valo 
3238e705c121SKalle Valo 	IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value,
3239e705c121SKalle Valo 			   duration, type);
3240e705c121SKalle Valo 
32419834781cSJohannes Berg 	/*
32429834781cSJohannes Berg 	 * Flush the done work, just in case it's still pending, so that
32439834781cSJohannes Berg 	 * the work it does can complete and we can accept new frames.
32449834781cSJohannes Berg 	 */
3245e705c121SKalle Valo 	flush_work(&mvm->roc_done_wk);
3246e705c121SKalle Valo 
3247e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3248e705c121SKalle Valo 
3249e705c121SKalle Valo 	switch (vif->type) {
3250e705c121SKalle Valo 	case NL80211_IFTYPE_STATION:
3251e705c121SKalle Valo 		if (fw_has_capa(&mvm->fw->ucode_capa,
3252e705c121SKalle Valo 				IWL_UCODE_TLV_CAPA_HOTSPOT_SUPPORT)) {
3253e705c121SKalle Valo 			/* Use aux roc framework (HS20) */
3254e705c121SKalle Valo 			ret = iwl_mvm_send_aux_roc_cmd(mvm, channel,
3255e705c121SKalle Valo 						       vif, duration);
3256e705c121SKalle Valo 			goto out_unlock;
3257e705c121SKalle Valo 		}
3258e705c121SKalle Valo 		IWL_ERR(mvm, "hotspot not supported\n");
3259e705c121SKalle Valo 		ret = -EINVAL;
3260e705c121SKalle Valo 		goto out_unlock;
3261e705c121SKalle Valo 	case NL80211_IFTYPE_P2P_DEVICE:
3262e705c121SKalle Valo 		/* handle below */
3263e705c121SKalle Valo 		break;
3264e705c121SKalle Valo 	default:
3265e705c121SKalle Valo 		IWL_ERR(mvm, "vif isn't P2P_DEVICE: %d\n", vif->type);
3266e705c121SKalle Valo 		ret = -EINVAL;
3267e705c121SKalle Valo 		goto out_unlock;
3268e705c121SKalle Valo 	}
3269e705c121SKalle Valo 
3270e705c121SKalle Valo 	for (i = 0; i < NUM_PHY_CTX; i++) {
3271e705c121SKalle Valo 		phy_ctxt = &mvm->phy_ctxts[i];
3272e705c121SKalle Valo 		if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt)
3273e705c121SKalle Valo 			continue;
3274e705c121SKalle Valo 
3275e705c121SKalle Valo 		if (phy_ctxt->ref && channel == phy_ctxt->channel) {
3276e705c121SKalle Valo 			/*
3277e705c121SKalle Valo 			 * Unbind the P2P_DEVICE from the current PHY context,
3278e705c121SKalle Valo 			 * and if the PHY context is not used remove it.
3279e705c121SKalle Valo 			 */
3280e705c121SKalle Valo 			ret = iwl_mvm_binding_remove_vif(mvm, vif);
3281e705c121SKalle Valo 			if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
3282e705c121SKalle Valo 				goto out_unlock;
3283e705c121SKalle Valo 
3284e705c121SKalle Valo 			iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
3285e705c121SKalle Valo 
3286e705c121SKalle Valo 			/* Bind the P2P_DEVICE to the current PHY Context */
3287e705c121SKalle Valo 			mvmvif->phy_ctxt = phy_ctxt;
3288e705c121SKalle Valo 
3289e705c121SKalle Valo 			ret = iwl_mvm_binding_add_vif(mvm, vif);
3290e705c121SKalle Valo 			if (WARN(ret, "Failed binding P2P_DEVICE\n"))
3291e705c121SKalle Valo 				goto out_unlock;
3292e705c121SKalle Valo 
3293e705c121SKalle Valo 			iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
3294e705c121SKalle Valo 			goto schedule_time_event;
3295e705c121SKalle Valo 		}
3296e705c121SKalle Valo 	}
3297e705c121SKalle Valo 
3298e705c121SKalle Valo 	/* Need to update the PHY context only if the ROC channel changed */
3299e705c121SKalle Valo 	if (channel == mvmvif->phy_ctxt->channel)
3300e705c121SKalle Valo 		goto schedule_time_event;
3301e705c121SKalle Valo 
3302e705c121SKalle Valo 	cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT);
3303e705c121SKalle Valo 
3304e705c121SKalle Valo 	/*
3305e705c121SKalle Valo 	 * Change the PHY context configuration as it is currently referenced
3306e705c121SKalle Valo 	 * only by the P2P Device MAC
3307e705c121SKalle Valo 	 */
3308e705c121SKalle Valo 	if (mvmvif->phy_ctxt->ref == 1) {
3309e705c121SKalle Valo 		ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt,
3310e705c121SKalle Valo 					       &chandef, 1, 1);
3311e705c121SKalle Valo 		if (ret)
3312e705c121SKalle Valo 			goto out_unlock;
3313e705c121SKalle Valo 	} else {
3314e705c121SKalle Valo 		/*
3315e705c121SKalle Valo 		 * The PHY context is shared with other MACs. Need to remove the
3316e705c121SKalle Valo 		 * P2P Device from the binding, allocate an new PHY context and
3317e705c121SKalle Valo 		 * create a new binding
3318e705c121SKalle Valo 		 */
3319e705c121SKalle Valo 		phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
3320e705c121SKalle Valo 		if (!phy_ctxt) {
3321e705c121SKalle Valo 			ret = -ENOSPC;
3322e705c121SKalle Valo 			goto out_unlock;
3323e705c121SKalle Valo 		}
3324e705c121SKalle Valo 
3325e705c121SKalle Valo 		ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef,
3326e705c121SKalle Valo 					       1, 1);
3327e705c121SKalle Valo 		if (ret) {
3328e705c121SKalle Valo 			IWL_ERR(mvm, "Failed to change PHY context\n");
3329e705c121SKalle Valo 			goto out_unlock;
3330e705c121SKalle Valo 		}
3331e705c121SKalle Valo 
3332e705c121SKalle Valo 		/* Unbind the P2P_DEVICE from the current PHY context */
3333e705c121SKalle Valo 		ret = iwl_mvm_binding_remove_vif(mvm, vif);
3334e705c121SKalle Valo 		if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
3335e705c121SKalle Valo 			goto out_unlock;
3336e705c121SKalle Valo 
3337e705c121SKalle Valo 		iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
3338e705c121SKalle Valo 
3339e705c121SKalle Valo 		/* Bind the P2P_DEVICE to the new allocated PHY context */
3340e705c121SKalle Valo 		mvmvif->phy_ctxt = phy_ctxt;
3341e705c121SKalle Valo 
3342e705c121SKalle Valo 		ret = iwl_mvm_binding_add_vif(mvm, vif);
3343e705c121SKalle Valo 		if (WARN(ret, "Failed binding P2P_DEVICE\n"))
3344e705c121SKalle Valo 			goto out_unlock;
3345e705c121SKalle Valo 
3346e705c121SKalle Valo 		iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
3347e705c121SKalle Valo 	}
3348e705c121SKalle Valo 
3349e705c121SKalle Valo schedule_time_event:
3350e705c121SKalle Valo 	/* Schedule the time events */
3351e705c121SKalle Valo 	ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type);
3352e705c121SKalle Valo 
3353e705c121SKalle Valo out_unlock:
3354e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3355e705c121SKalle Valo 	IWL_DEBUG_MAC80211(mvm, "leave\n");
3356e705c121SKalle Valo 	return ret;
3357e705c121SKalle Valo }
3358e705c121SKalle Valo 
3359e705c121SKalle Valo static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw)
3360e705c121SKalle Valo {
3361e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3362e705c121SKalle Valo 
3363e705c121SKalle Valo 	IWL_DEBUG_MAC80211(mvm, "enter\n");
3364e705c121SKalle Valo 
3365e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3366e705c121SKalle Valo 	iwl_mvm_stop_roc(mvm);
3367e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3368e705c121SKalle Valo 
3369e705c121SKalle Valo 	IWL_DEBUG_MAC80211(mvm, "leave\n");
3370e705c121SKalle Valo 	return 0;
3371e705c121SKalle Valo }
3372e705c121SKalle Valo 
3373e705c121SKalle Valo static int __iwl_mvm_add_chanctx(struct iwl_mvm *mvm,
3374e705c121SKalle Valo 				 struct ieee80211_chanctx_conf *ctx)
3375e705c121SKalle Valo {
3376e705c121SKalle Valo 	u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
3377e705c121SKalle Valo 	struct iwl_mvm_phy_ctxt *phy_ctxt;
3378e705c121SKalle Valo 	int ret;
3379e705c121SKalle Valo 
3380e705c121SKalle Valo 	lockdep_assert_held(&mvm->mutex);
3381e705c121SKalle Valo 
3382e705c121SKalle Valo 	IWL_DEBUG_MAC80211(mvm, "Add channel context\n");
3383e705c121SKalle Valo 
3384e705c121SKalle Valo 	phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
3385e705c121SKalle Valo 	if (!phy_ctxt) {
3386e705c121SKalle Valo 		ret = -ENOSPC;
3387e705c121SKalle Valo 		goto out;
3388e705c121SKalle Valo 	}
3389e705c121SKalle Valo 
3390e705c121SKalle Valo 	ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
3391e705c121SKalle Valo 				       ctx->rx_chains_static,
3392e705c121SKalle Valo 				       ctx->rx_chains_dynamic);
3393e705c121SKalle Valo 	if (ret) {
3394e705c121SKalle Valo 		IWL_ERR(mvm, "Failed to add PHY context\n");
3395e705c121SKalle Valo 		goto out;
3396e705c121SKalle Valo 	}
3397e705c121SKalle Valo 
3398e705c121SKalle Valo 	iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt);
3399e705c121SKalle Valo 	*phy_ctxt_id = phy_ctxt->id;
3400e705c121SKalle Valo out:
3401e705c121SKalle Valo 	return ret;
3402e705c121SKalle Valo }
3403e705c121SKalle Valo 
3404e705c121SKalle Valo static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw,
3405e705c121SKalle Valo 			       struct ieee80211_chanctx_conf *ctx)
3406e705c121SKalle Valo {
3407e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3408e705c121SKalle Valo 	int ret;
3409e705c121SKalle Valo 
3410e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3411e705c121SKalle Valo 	ret = __iwl_mvm_add_chanctx(mvm, ctx);
3412e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3413e705c121SKalle Valo 
3414e705c121SKalle Valo 	return ret;
3415e705c121SKalle Valo }
3416e705c121SKalle Valo 
3417e705c121SKalle Valo static void __iwl_mvm_remove_chanctx(struct iwl_mvm *mvm,
3418e705c121SKalle Valo 				     struct ieee80211_chanctx_conf *ctx)
3419e705c121SKalle Valo {
3420e705c121SKalle Valo 	u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
3421e705c121SKalle Valo 	struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
3422e705c121SKalle Valo 
3423e705c121SKalle Valo 	lockdep_assert_held(&mvm->mutex);
3424e705c121SKalle Valo 
3425e705c121SKalle Valo 	iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt);
3426e705c121SKalle Valo }
3427e705c121SKalle Valo 
3428e705c121SKalle Valo static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw,
3429e705c121SKalle Valo 				   struct ieee80211_chanctx_conf *ctx)
3430e705c121SKalle Valo {
3431e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3432e705c121SKalle Valo 
3433e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3434e705c121SKalle Valo 	__iwl_mvm_remove_chanctx(mvm, ctx);
3435e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3436e705c121SKalle Valo }
3437e705c121SKalle Valo 
3438e705c121SKalle Valo static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw,
3439e705c121SKalle Valo 				   struct ieee80211_chanctx_conf *ctx,
3440e705c121SKalle Valo 				   u32 changed)
3441e705c121SKalle Valo {
3442e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3443e705c121SKalle Valo 	u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
3444e705c121SKalle Valo 	struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
3445e705c121SKalle Valo 
3446e705c121SKalle Valo 	if (WARN_ONCE((phy_ctxt->ref > 1) &&
3447e705c121SKalle Valo 		      (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH |
3448e705c121SKalle Valo 				   IEEE80211_CHANCTX_CHANGE_RX_CHAINS |
3449e705c121SKalle Valo 				   IEEE80211_CHANCTX_CHANGE_RADAR |
3450e705c121SKalle Valo 				   IEEE80211_CHANCTX_CHANGE_MIN_WIDTH)),
3451e705c121SKalle Valo 		      "Cannot change PHY. Ref=%d, changed=0x%X\n",
3452e705c121SKalle Valo 		      phy_ctxt->ref, changed))
3453e705c121SKalle Valo 		return;
3454e705c121SKalle Valo 
3455e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
34567a20bcceSEmmanuel Grumbach 
34577a20bcceSEmmanuel Grumbach 	/* we are only changing the min_width, may be a noop */
34587a20bcceSEmmanuel Grumbach 	if (changed == IEEE80211_CHANCTX_CHANGE_MIN_WIDTH) {
34597a20bcceSEmmanuel Grumbach 		if (phy_ctxt->width == ctx->min_def.width)
34607a20bcceSEmmanuel Grumbach 			goto out_unlock;
34617a20bcceSEmmanuel Grumbach 
34627a20bcceSEmmanuel Grumbach 		/* we are just toggling between 20_NOHT and 20 */
34637a20bcceSEmmanuel Grumbach 		if (phy_ctxt->width <= NL80211_CHAN_WIDTH_20 &&
34647a20bcceSEmmanuel Grumbach 		    ctx->min_def.width <= NL80211_CHAN_WIDTH_20)
34657a20bcceSEmmanuel Grumbach 			goto out_unlock;
34667a20bcceSEmmanuel Grumbach 	}
34677a20bcceSEmmanuel Grumbach 
3468e705c121SKalle Valo 	iwl_mvm_bt_coex_vif_change(mvm);
3469e705c121SKalle Valo 	iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
3470e705c121SKalle Valo 				 ctx->rx_chains_static,
3471e705c121SKalle Valo 				 ctx->rx_chains_dynamic);
34727a20bcceSEmmanuel Grumbach 
34737a20bcceSEmmanuel Grumbach out_unlock:
3474e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3475e705c121SKalle Valo }
3476e705c121SKalle Valo 
3477e705c121SKalle Valo static int __iwl_mvm_assign_vif_chanctx(struct iwl_mvm *mvm,
3478e705c121SKalle Valo 					struct ieee80211_vif *vif,
3479e705c121SKalle Valo 					struct ieee80211_chanctx_conf *ctx,
3480e705c121SKalle Valo 					bool switching_chanctx)
3481e705c121SKalle Valo {
3482e705c121SKalle Valo 	u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
3483e705c121SKalle Valo 	struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
3484e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
3485e705c121SKalle Valo 	int ret;
3486e705c121SKalle Valo 
3487e705c121SKalle Valo 	lockdep_assert_held(&mvm->mutex);
3488e705c121SKalle Valo 
3489e705c121SKalle Valo 	mvmvif->phy_ctxt = phy_ctxt;
3490e705c121SKalle Valo 
3491e705c121SKalle Valo 	switch (vif->type) {
3492e705c121SKalle Valo 	case NL80211_IFTYPE_AP:
3493e705c121SKalle Valo 		/* only needed if we're switching chanctx (i.e. during CSA) */
3494e705c121SKalle Valo 		if (switching_chanctx) {
3495e705c121SKalle Valo 			mvmvif->ap_ibss_active = true;
3496e705c121SKalle Valo 			break;
3497e705c121SKalle Valo 		}
3498e705c121SKalle Valo 	case NL80211_IFTYPE_ADHOC:
3499e705c121SKalle Valo 		/*
3500e705c121SKalle Valo 		 * The AP binding flow is handled as part of the start_ap flow
3501e705c121SKalle Valo 		 * (in bss_info_changed), similarly for IBSS.
3502e705c121SKalle Valo 		 */
3503e705c121SKalle Valo 		ret = 0;
3504e705c121SKalle Valo 		goto out;
3505e705c121SKalle Valo 	case NL80211_IFTYPE_STATION:
350619125cb0SAndrei Otcheretianski 		mvmvif->csa_bcn_pending = false;
3507e705c121SKalle Valo 		break;
3508e705c121SKalle Valo 	case NL80211_IFTYPE_MONITOR:
3509e705c121SKalle Valo 		/* always disable PS when a monitor interface is active */
3510e705c121SKalle Valo 		mvmvif->ps_disabled = true;
3511e705c121SKalle Valo 		break;
3512e705c121SKalle Valo 	default:
3513e705c121SKalle Valo 		ret = -EINVAL;
3514e705c121SKalle Valo 		goto out;
3515e705c121SKalle Valo 	}
3516e705c121SKalle Valo 
3517e705c121SKalle Valo 	ret = iwl_mvm_binding_add_vif(mvm, vif);
3518e705c121SKalle Valo 	if (ret)
3519e705c121SKalle Valo 		goto out;
3520e705c121SKalle Valo 
3521e705c121SKalle Valo 	/*
3522e705c121SKalle Valo 	 * Power state must be updated before quotas,
3523e705c121SKalle Valo 	 * otherwise fw will complain.
3524e705c121SKalle Valo 	 */
3525e705c121SKalle Valo 	iwl_mvm_power_update_mac(mvm);
3526e705c121SKalle Valo 
3527e705c121SKalle Valo 	/* Setting the quota at this stage is only required for monitor
3528e705c121SKalle Valo 	 * interfaces. For the other types, the bss_info changed flow
3529e705c121SKalle Valo 	 * will handle quota settings.
3530e705c121SKalle Valo 	 */
3531e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_MONITOR) {
3532e705c121SKalle Valo 		mvmvif->monitor_active = true;
3533e705c121SKalle Valo 		ret = iwl_mvm_update_quotas(mvm, false, NULL);
3534e705c121SKalle Valo 		if (ret)
3535e705c121SKalle Valo 			goto out_remove_binding;
35360e39eb03SChaya Rachel Ivgi 
35370e39eb03SChaya Rachel Ivgi 		ret = iwl_mvm_add_snif_sta(mvm, vif);
35380e39eb03SChaya Rachel Ivgi 		if (ret)
35390e39eb03SChaya Rachel Ivgi 			goto out_remove_binding;
35400e39eb03SChaya Rachel Ivgi 
3541e705c121SKalle Valo 	}
3542e705c121SKalle Valo 
3543e705c121SKalle Valo 	/* Handle binding during CSA */
3544e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_AP) {
3545e705c121SKalle Valo 		iwl_mvm_update_quotas(mvm, false, NULL);
3546e705c121SKalle Valo 		iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
3547e705c121SKalle Valo 	}
3548e705c121SKalle Valo 
3549e705c121SKalle Valo 	if (switching_chanctx && vif->type == NL80211_IFTYPE_STATION) {
355019125cb0SAndrei Otcheretianski 		u32 duration = 3 * vif->bss_conf.beacon_int;
3551e705c121SKalle Valo 
3552e705c121SKalle Valo 		/* iwl_mvm_protect_session() reads directly from the
3553e705c121SKalle Valo 		 * device (the system time), so make sure it is
3554e705c121SKalle Valo 		 * available.
3555e705c121SKalle Valo 		 */
3556e705c121SKalle Valo 		ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PROTECT_CSA);
3557e705c121SKalle Valo 		if (ret)
3558e705c121SKalle Valo 			goto out_remove_binding;
3559e705c121SKalle Valo 
3560e705c121SKalle Valo 		/* Protect the session to make sure we hear the first
3561e705c121SKalle Valo 		 * beacon on the new channel.
3562e705c121SKalle Valo 		 */
356319125cb0SAndrei Otcheretianski 		mvmvif->csa_bcn_pending = true;
3564e705c121SKalle Valo 		iwl_mvm_protect_session(mvm, vif, duration, duration,
3565e705c121SKalle Valo 					vif->bss_conf.beacon_int / 2,
3566e705c121SKalle Valo 					true);
3567e705c121SKalle Valo 
3568e705c121SKalle Valo 		iwl_mvm_unref(mvm, IWL_MVM_REF_PROTECT_CSA);
3569e705c121SKalle Valo 
3570e705c121SKalle Valo 		iwl_mvm_update_quotas(mvm, false, NULL);
3571e705c121SKalle Valo 	}
3572e705c121SKalle Valo 
3573e705c121SKalle Valo 	goto out;
3574e705c121SKalle Valo 
3575e705c121SKalle Valo out_remove_binding:
3576e705c121SKalle Valo 	iwl_mvm_binding_remove_vif(mvm, vif);
3577e705c121SKalle Valo 	iwl_mvm_power_update_mac(mvm);
3578e705c121SKalle Valo out:
3579e705c121SKalle Valo 	if (ret)
3580e705c121SKalle Valo 		mvmvif->phy_ctxt = NULL;
3581e705c121SKalle Valo 	return ret;
3582e705c121SKalle Valo }
3583e705c121SKalle Valo static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw,
3584e705c121SKalle Valo 				      struct ieee80211_vif *vif,
3585e705c121SKalle Valo 				      struct ieee80211_chanctx_conf *ctx)
3586e705c121SKalle Valo {
3587e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3588e705c121SKalle Valo 	int ret;
3589e705c121SKalle Valo 
3590e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3591e705c121SKalle Valo 	ret = __iwl_mvm_assign_vif_chanctx(mvm, vif, ctx, false);
3592e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3593e705c121SKalle Valo 
3594e705c121SKalle Valo 	return ret;
3595e705c121SKalle Valo }
3596e705c121SKalle Valo 
3597e705c121SKalle Valo static void __iwl_mvm_unassign_vif_chanctx(struct iwl_mvm *mvm,
3598e705c121SKalle Valo 					   struct ieee80211_vif *vif,
3599e705c121SKalle Valo 					   struct ieee80211_chanctx_conf *ctx,
3600e705c121SKalle Valo 					   bool switching_chanctx)
3601e705c121SKalle Valo {
3602e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
3603e705c121SKalle Valo 	struct ieee80211_vif *disabled_vif = NULL;
3604e705c121SKalle Valo 
3605e705c121SKalle Valo 	lockdep_assert_held(&mvm->mutex);
3606e705c121SKalle Valo 
3607e705c121SKalle Valo 	iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data);
3608e705c121SKalle Valo 
3609e705c121SKalle Valo 	switch (vif->type) {
3610e705c121SKalle Valo 	case NL80211_IFTYPE_ADHOC:
3611e705c121SKalle Valo 		goto out;
3612e705c121SKalle Valo 	case NL80211_IFTYPE_MONITOR:
3613e705c121SKalle Valo 		mvmvif->monitor_active = false;
3614e705c121SKalle Valo 		mvmvif->ps_disabled = false;
36150e39eb03SChaya Rachel Ivgi 		iwl_mvm_rm_snif_sta(mvm, vif);
3616e705c121SKalle Valo 		break;
3617e705c121SKalle Valo 	case NL80211_IFTYPE_AP:
3618e705c121SKalle Valo 		/* This part is triggered only during CSA */
3619e705c121SKalle Valo 		if (!switching_chanctx || !mvmvif->ap_ibss_active)
3620e705c121SKalle Valo 			goto out;
3621e705c121SKalle Valo 
3622e705c121SKalle Valo 		mvmvif->csa_countdown = false;
3623e705c121SKalle Valo 
3624e705c121SKalle Valo 		/* Set CS bit on all the stations */
3625e705c121SKalle Valo 		iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, true);
3626e705c121SKalle Valo 
3627e705c121SKalle Valo 		/* Save blocked iface, the timeout is set on the next beacon */
3628e705c121SKalle Valo 		rcu_assign_pointer(mvm->csa_tx_blocked_vif, vif);
3629e705c121SKalle Valo 
3630e705c121SKalle Valo 		mvmvif->ap_ibss_active = false;
3631e705c121SKalle Valo 		break;
3632e705c121SKalle Valo 	case NL80211_IFTYPE_STATION:
3633e705c121SKalle Valo 		if (!switching_chanctx)
3634e705c121SKalle Valo 			break;
3635e705c121SKalle Valo 
3636e705c121SKalle Valo 		disabled_vif = vif;
3637e705c121SKalle Valo 
3638e705c121SKalle Valo 		iwl_mvm_mac_ctxt_changed(mvm, vif, true, NULL);
3639e705c121SKalle Valo 		break;
3640e705c121SKalle Valo 	default:
3641e705c121SKalle Valo 		break;
3642e705c121SKalle Valo 	}
3643e705c121SKalle Valo 
3644e705c121SKalle Valo 	iwl_mvm_update_quotas(mvm, false, disabled_vif);
3645e705c121SKalle Valo 	iwl_mvm_binding_remove_vif(mvm, vif);
3646e705c121SKalle Valo 
3647e705c121SKalle Valo out:
3648e705c121SKalle Valo 	mvmvif->phy_ctxt = NULL;
3649e705c121SKalle Valo 	iwl_mvm_power_update_mac(mvm);
3650e705c121SKalle Valo }
3651e705c121SKalle Valo 
3652e705c121SKalle Valo static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw,
3653e705c121SKalle Valo 					 struct ieee80211_vif *vif,
3654e705c121SKalle Valo 					 struct ieee80211_chanctx_conf *ctx)
3655e705c121SKalle Valo {
3656e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3657e705c121SKalle Valo 
3658e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3659e705c121SKalle Valo 	__iwl_mvm_unassign_vif_chanctx(mvm, vif, ctx, false);
3660e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3661e705c121SKalle Valo }
3662e705c121SKalle Valo 
3663e705c121SKalle Valo static int
3664e705c121SKalle Valo iwl_mvm_switch_vif_chanctx_swap(struct iwl_mvm *mvm,
3665e705c121SKalle Valo 				struct ieee80211_vif_chanctx_switch *vifs)
3666e705c121SKalle Valo {
3667e705c121SKalle Valo 	int ret;
3668e705c121SKalle Valo 
3669e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3670e705c121SKalle Valo 	__iwl_mvm_unassign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, true);
3671e705c121SKalle Valo 	__iwl_mvm_remove_chanctx(mvm, vifs[0].old_ctx);
3672e705c121SKalle Valo 
3673e705c121SKalle Valo 	ret = __iwl_mvm_add_chanctx(mvm, vifs[0].new_ctx);
3674e705c121SKalle Valo 	if (ret) {
3675e705c121SKalle Valo 		IWL_ERR(mvm, "failed to add new_ctx during channel switch\n");
3676e705c121SKalle Valo 		goto out_reassign;
3677e705c121SKalle Valo 	}
3678e705c121SKalle Valo 
3679e705c121SKalle Valo 	ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx,
3680e705c121SKalle Valo 					   true);
3681e705c121SKalle Valo 	if (ret) {
3682e705c121SKalle Valo 		IWL_ERR(mvm,
3683e705c121SKalle Valo 			"failed to assign new_ctx during channel switch\n");
3684e705c121SKalle Valo 		goto out_remove;
3685e705c121SKalle Valo 	}
3686e705c121SKalle Valo 
3687e705c121SKalle Valo 	/* we don't support TDLS during DCM - can be caused by channel switch */
3688e705c121SKalle Valo 	if (iwl_mvm_phy_ctx_count(mvm) > 1)
3689e705c121SKalle Valo 		iwl_mvm_teardown_tdls_peers(mvm);
3690e705c121SKalle Valo 
3691e705c121SKalle Valo 	goto out;
3692e705c121SKalle Valo 
3693e705c121SKalle Valo out_remove:
3694e705c121SKalle Valo 	__iwl_mvm_remove_chanctx(mvm, vifs[0].new_ctx);
3695e705c121SKalle Valo 
3696e705c121SKalle Valo out_reassign:
3697e705c121SKalle Valo 	if (__iwl_mvm_add_chanctx(mvm, vifs[0].old_ctx)) {
3698e705c121SKalle Valo 		IWL_ERR(mvm, "failed to add old_ctx back after failure.\n");
3699e705c121SKalle Valo 		goto out_restart;
3700e705c121SKalle Valo 	}
3701e705c121SKalle Valo 
3702e705c121SKalle Valo 	if (__iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx,
3703e705c121SKalle Valo 					 true)) {
3704e705c121SKalle Valo 		IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n");
3705e705c121SKalle Valo 		goto out_restart;
3706e705c121SKalle Valo 	}
3707e705c121SKalle Valo 
3708e705c121SKalle Valo 	goto out;
3709e705c121SKalle Valo 
3710e705c121SKalle Valo out_restart:
3711e705c121SKalle Valo 	/* things keep failing, better restart the hw */
3712e705c121SKalle Valo 	iwl_mvm_nic_restart(mvm, false);
3713e705c121SKalle Valo 
3714e705c121SKalle Valo out:
3715e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3716e705c121SKalle Valo 
3717e705c121SKalle Valo 	return ret;
3718e705c121SKalle Valo }
3719e705c121SKalle Valo 
3720e705c121SKalle Valo static int
3721e705c121SKalle Valo iwl_mvm_switch_vif_chanctx_reassign(struct iwl_mvm *mvm,
3722e705c121SKalle Valo 				    struct ieee80211_vif_chanctx_switch *vifs)
3723e705c121SKalle Valo {
3724e705c121SKalle Valo 	int ret;
3725e705c121SKalle Valo 
3726e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3727e705c121SKalle Valo 	__iwl_mvm_unassign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, true);
3728e705c121SKalle Valo 
3729e705c121SKalle Valo 	ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx,
3730e705c121SKalle Valo 					   true);
3731e705c121SKalle Valo 	if (ret) {
3732e705c121SKalle Valo 		IWL_ERR(mvm,
3733e705c121SKalle Valo 			"failed to assign new_ctx during channel switch\n");
3734e705c121SKalle Valo 		goto out_reassign;
3735e705c121SKalle Valo 	}
3736e705c121SKalle Valo 
3737e705c121SKalle Valo 	goto out;
3738e705c121SKalle Valo 
3739e705c121SKalle Valo out_reassign:
3740e705c121SKalle Valo 	if (__iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx,
3741e705c121SKalle Valo 					 true)) {
3742e705c121SKalle Valo 		IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n");
3743e705c121SKalle Valo 		goto out_restart;
3744e705c121SKalle Valo 	}
3745e705c121SKalle Valo 
3746e705c121SKalle Valo 	goto out;
3747e705c121SKalle Valo 
3748e705c121SKalle Valo out_restart:
3749e705c121SKalle Valo 	/* things keep failing, better restart the hw */
3750e705c121SKalle Valo 	iwl_mvm_nic_restart(mvm, false);
3751e705c121SKalle Valo 
3752e705c121SKalle Valo out:
3753e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3754e705c121SKalle Valo 
3755e705c121SKalle Valo 	return ret;
3756e705c121SKalle Valo }
3757e705c121SKalle Valo 
3758e705c121SKalle Valo static int iwl_mvm_switch_vif_chanctx(struct ieee80211_hw *hw,
3759e705c121SKalle Valo 				      struct ieee80211_vif_chanctx_switch *vifs,
3760e705c121SKalle Valo 				      int n_vifs,
3761e705c121SKalle Valo 				      enum ieee80211_chanctx_switch_mode mode)
3762e705c121SKalle Valo {
3763e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3764e705c121SKalle Valo 	int ret;
3765e705c121SKalle Valo 
3766e705c121SKalle Valo 	/* we only support a single-vif right now */
3767e705c121SKalle Valo 	if (n_vifs > 1)
3768e705c121SKalle Valo 		return -EOPNOTSUPP;
3769e705c121SKalle Valo 
3770e705c121SKalle Valo 	switch (mode) {
3771e705c121SKalle Valo 	case CHANCTX_SWMODE_SWAP_CONTEXTS:
3772e705c121SKalle Valo 		ret = iwl_mvm_switch_vif_chanctx_swap(mvm, vifs);
3773e705c121SKalle Valo 		break;
3774e705c121SKalle Valo 	case CHANCTX_SWMODE_REASSIGN_VIF:
3775e705c121SKalle Valo 		ret = iwl_mvm_switch_vif_chanctx_reassign(mvm, vifs);
3776e705c121SKalle Valo 		break;
3777e705c121SKalle Valo 	default:
3778e705c121SKalle Valo 		ret = -EOPNOTSUPP;
3779e705c121SKalle Valo 		break;
3780e705c121SKalle Valo 	}
3781e705c121SKalle Valo 
3782e705c121SKalle Valo 	return ret;
3783e705c121SKalle Valo }
3784e705c121SKalle Valo 
37852f0282dbSJohannes Berg static int iwl_mvm_tx_last_beacon(struct ieee80211_hw *hw)
37862f0282dbSJohannes Berg {
37872f0282dbSJohannes Berg 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
37882f0282dbSJohannes Berg 
37892f0282dbSJohannes Berg 	return mvm->ibss_manager;
37902f0282dbSJohannes Berg }
37912f0282dbSJohannes Berg 
3792e705c121SKalle Valo static int iwl_mvm_set_tim(struct ieee80211_hw *hw,
3793e705c121SKalle Valo 			   struct ieee80211_sta *sta,
3794e705c121SKalle Valo 			   bool set)
3795e705c121SKalle Valo {
3796e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3797e705c121SKalle Valo 	struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
3798e705c121SKalle Valo 
3799e705c121SKalle Valo 	if (!mvm_sta || !mvm_sta->vif) {
3800e705c121SKalle Valo 		IWL_ERR(mvm, "Station is not associated to a vif\n");
3801e705c121SKalle Valo 		return -EINVAL;
3802e705c121SKalle Valo 	}
3803e705c121SKalle Valo 
3804e705c121SKalle Valo 	return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif);
3805e705c121SKalle Valo }
3806e705c121SKalle Valo 
3807e705c121SKalle Valo #ifdef CONFIG_NL80211_TESTMODE
3808e705c121SKalle Valo static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = {
3809e705c121SKalle Valo 	[IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 },
3810e705c121SKalle Valo 	[IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 },
3811e705c121SKalle Valo 	[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 },
3812e705c121SKalle Valo };
3813e705c121SKalle Valo 
3814e705c121SKalle Valo static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm,
3815e705c121SKalle Valo 				      struct ieee80211_vif *vif,
3816e705c121SKalle Valo 				      void *data, int len)
3817e705c121SKalle Valo {
3818e705c121SKalle Valo 	struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1];
3819e705c121SKalle Valo 	int err;
3820e705c121SKalle Valo 	u32 noa_duration;
3821e705c121SKalle Valo 
3822fceb6435SJohannes Berg 	err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy,
3823fceb6435SJohannes Berg 			NULL);
3824e705c121SKalle Valo 	if (err)
3825e705c121SKalle Valo 		return err;
3826e705c121SKalle Valo 
3827e705c121SKalle Valo 	if (!tb[IWL_MVM_TM_ATTR_CMD])
3828e705c121SKalle Valo 		return -EINVAL;
3829e705c121SKalle Valo 
3830e705c121SKalle Valo 	switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) {
3831e705c121SKalle Valo 	case IWL_MVM_TM_CMD_SET_NOA:
3832e705c121SKalle Valo 		if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p ||
3833e705c121SKalle Valo 		    !vif->bss_conf.enable_beacon ||
3834e705c121SKalle Valo 		    !tb[IWL_MVM_TM_ATTR_NOA_DURATION])
3835e705c121SKalle Valo 			return -EINVAL;
3836e705c121SKalle Valo 
3837e705c121SKalle Valo 		noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]);
3838e705c121SKalle Valo 		if (noa_duration >= vif->bss_conf.beacon_int)
3839e705c121SKalle Valo 			return -EINVAL;
3840e705c121SKalle Valo 
3841e705c121SKalle Valo 		mvm->noa_duration = noa_duration;
3842e705c121SKalle Valo 		mvm->noa_vif = vif;
3843e705c121SKalle Valo 
384422b21041SShaul Triebitz 		return iwl_mvm_update_quotas(mvm, true, NULL);
3845e705c121SKalle Valo 	case IWL_MVM_TM_CMD_SET_BEACON_FILTER:
3846e705c121SKalle Valo 		/* must be associated client vif - ignore authorized */
3847e705c121SKalle Valo 		if (!vif || vif->type != NL80211_IFTYPE_STATION ||
3848e705c121SKalle Valo 		    !vif->bss_conf.assoc || !vif->bss_conf.dtim_period ||
3849e705c121SKalle Valo 		    !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])
3850e705c121SKalle Valo 			return -EINVAL;
3851e705c121SKalle Valo 
3852e705c121SKalle Valo 		if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]))
3853e705c121SKalle Valo 			return iwl_mvm_enable_beacon_filter(mvm, vif, 0);
3854e705c121SKalle Valo 		return iwl_mvm_disable_beacon_filter(mvm, vif, 0);
3855e705c121SKalle Valo 	}
3856e705c121SKalle Valo 
3857e705c121SKalle Valo 	return -EOPNOTSUPP;
3858e705c121SKalle Valo }
3859e705c121SKalle Valo 
3860e705c121SKalle Valo static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw,
3861e705c121SKalle Valo 				    struct ieee80211_vif *vif,
3862e705c121SKalle Valo 				    void *data, int len)
3863e705c121SKalle Valo {
3864e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3865e705c121SKalle Valo 	int err;
3866e705c121SKalle Valo 
3867e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3868e705c121SKalle Valo 	err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len);
3869e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3870e705c121SKalle Valo 
3871e705c121SKalle Valo 	return err;
3872e705c121SKalle Valo }
3873e705c121SKalle Valo #endif
3874e705c121SKalle Valo 
3875e705c121SKalle Valo static void iwl_mvm_channel_switch(struct ieee80211_hw *hw,
3876e705c121SKalle Valo 				   struct ieee80211_vif *vif,
3877e705c121SKalle Valo 				   struct ieee80211_channel_switch *chsw)
3878e705c121SKalle Valo {
3879e705c121SKalle Valo 	/* By implementing this operation, we prevent mac80211 from
3880e705c121SKalle Valo 	 * starting its own channel switch timer, so that we can call
3881e705c121SKalle Valo 	 * ieee80211_chswitch_done() ourselves at the right time
3882e705c121SKalle Valo 	 * (which is when the absence time event starts).
3883e705c121SKalle Valo 	 */
3884e705c121SKalle Valo 
3885e705c121SKalle Valo 	IWL_DEBUG_MAC80211(IWL_MAC80211_GET_MVM(hw),
3886e705c121SKalle Valo 			   "dummy channel switch op\n");
3887e705c121SKalle Valo }
3888e705c121SKalle Valo 
3889e705c121SKalle Valo static int iwl_mvm_pre_channel_switch(struct ieee80211_hw *hw,
3890e705c121SKalle Valo 				      struct ieee80211_vif *vif,
3891e705c121SKalle Valo 				      struct ieee80211_channel_switch *chsw)
3892e705c121SKalle Valo {
3893e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3894e705c121SKalle Valo 	struct ieee80211_vif *csa_vif;
3895e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
3896e705c121SKalle Valo 	u32 apply_time;
3897e705c121SKalle Valo 	int ret;
3898e705c121SKalle Valo 
3899e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3900e705c121SKalle Valo 
3901e705c121SKalle Valo 	mvmvif->csa_failed = false;
3902e705c121SKalle Valo 
3903e705c121SKalle Valo 	IWL_DEBUG_MAC80211(mvm, "pre CSA to freq %d\n",
3904e705c121SKalle Valo 			   chsw->chandef.center_freq1);
3905e705c121SKalle Valo 
39067174beb6SJohannes Berg 	iwl_fw_dbg_trigger_simple_stop(&mvm->fwrt,
39077174beb6SJohannes Berg 				       ieee80211_vif_to_wdev(vif),
39087174beb6SJohannes Berg 				       FW_DBG_TRIGGER_CHANNEL_SWITCH);
3909e705c121SKalle Valo 
3910e705c121SKalle Valo 	switch (vif->type) {
3911e705c121SKalle Valo 	case NL80211_IFTYPE_AP:
3912e705c121SKalle Valo 		csa_vif =
3913e705c121SKalle Valo 			rcu_dereference_protected(mvm->csa_vif,
3914e705c121SKalle Valo 						  lockdep_is_held(&mvm->mutex));
3915e705c121SKalle Valo 		if (WARN_ONCE(csa_vif && csa_vif->csa_active,
3916e705c121SKalle Valo 			      "Another CSA is already in progress")) {
3917e705c121SKalle Valo 			ret = -EBUSY;
3918e705c121SKalle Valo 			goto out_unlock;
3919e705c121SKalle Valo 		}
3920e705c121SKalle Valo 
3921d3a108a4SAndrei Otcheretianski 		/* we still didn't unblock tx. prevent new CS meanwhile */
3922d3a108a4SAndrei Otcheretianski 		if (rcu_dereference_protected(mvm->csa_tx_blocked_vif,
3923d3a108a4SAndrei Otcheretianski 					      lockdep_is_held(&mvm->mutex))) {
3924d3a108a4SAndrei Otcheretianski 			ret = -EBUSY;
3925d3a108a4SAndrei Otcheretianski 			goto out_unlock;
3926d3a108a4SAndrei Otcheretianski 		}
3927d3a108a4SAndrei Otcheretianski 
3928e705c121SKalle Valo 		rcu_assign_pointer(mvm->csa_vif, vif);
3929e705c121SKalle Valo 
3930e705c121SKalle Valo 		if (WARN_ONCE(mvmvif->csa_countdown,
3931e705c121SKalle Valo 			      "Previous CSA countdown didn't complete")) {
3932e705c121SKalle Valo 			ret = -EBUSY;
3933e705c121SKalle Valo 			goto out_unlock;
3934e705c121SKalle Valo 		}
3935e705c121SKalle Valo 
3936d3a108a4SAndrei Otcheretianski 		mvmvif->csa_target_freq = chsw->chandef.chan->center_freq;
3937d3a108a4SAndrei Otcheretianski 
3938e705c121SKalle Valo 		break;
3939e705c121SKalle Valo 	case NL80211_IFTYPE_STATION:
3940e705c121SKalle Valo 		/* Schedule the time event to a bit before beacon 1,
3941e705c121SKalle Valo 		 * to make sure we're in the new channel when the
3942f5d8f50fSIlan Peer 		 * GO/AP arrives. In case count <= 1 immediately schedule the
3943f5d8f50fSIlan Peer 		 * TE (this might result with some packet loss or connection
3944f5d8f50fSIlan Peer 		 * loss).
3945e705c121SKalle Valo 		 */
3946f5d8f50fSIlan Peer 		if (chsw->count <= 1)
3947f5d8f50fSIlan Peer 			apply_time = 0;
3948f5d8f50fSIlan Peer 		else
3949e705c121SKalle Valo 			apply_time = chsw->device_timestamp +
3950e705c121SKalle Valo 				((vif->bss_conf.beacon_int * (chsw->count - 1) -
3951e705c121SKalle Valo 				  IWL_MVM_CHANNEL_SWITCH_TIME_CLIENT) * 1024);
3952e705c121SKalle Valo 
3953e705c121SKalle Valo 		if (chsw->block_tx)
3954e705c121SKalle Valo 			iwl_mvm_csa_client_absent(mvm, vif);
3955e705c121SKalle Valo 
3956e705c121SKalle Valo 		iwl_mvm_schedule_csa_period(mvm, vif, vif->bss_conf.beacon_int,
3957e705c121SKalle Valo 					    apply_time);
3958e705c121SKalle Valo 		if (mvmvif->bf_data.bf_enabled) {
3959e705c121SKalle Valo 			ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0);
3960e705c121SKalle Valo 			if (ret)
3961e705c121SKalle Valo 				goto out_unlock;
3962e705c121SKalle Valo 		}
3963e705c121SKalle Valo 
3964e705c121SKalle Valo 		break;
3965e705c121SKalle Valo 	default:
3966e705c121SKalle Valo 		break;
3967e705c121SKalle Valo 	}
3968e705c121SKalle Valo 
3969e705c121SKalle Valo 	mvmvif->ps_disabled = true;
3970e705c121SKalle Valo 
3971e705c121SKalle Valo 	ret = iwl_mvm_power_update_ps(mvm);
3972e705c121SKalle Valo 	if (ret)
3973e705c121SKalle Valo 		goto out_unlock;
3974e705c121SKalle Valo 
3975e705c121SKalle Valo 	/* we won't be on this channel any longer */
3976e705c121SKalle Valo 	iwl_mvm_teardown_tdls_peers(mvm);
3977e705c121SKalle Valo 
3978e705c121SKalle Valo out_unlock:
3979e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
3980e705c121SKalle Valo 
3981e705c121SKalle Valo 	return ret;
3982e705c121SKalle Valo }
3983e705c121SKalle Valo 
3984e705c121SKalle Valo static int iwl_mvm_post_channel_switch(struct ieee80211_hw *hw,
3985e705c121SKalle Valo 				       struct ieee80211_vif *vif)
3986e705c121SKalle Valo {
3987e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
3988e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3989e705c121SKalle Valo 	int ret;
3990e705c121SKalle Valo 
3991e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
3992e705c121SKalle Valo 
3993e705c121SKalle Valo 	if (mvmvif->csa_failed) {
3994e705c121SKalle Valo 		mvmvif->csa_failed = false;
3995e705c121SKalle Valo 		ret = -EIO;
3996e705c121SKalle Valo 		goto out_unlock;
3997e705c121SKalle Valo 	}
3998e705c121SKalle Valo 
3999e705c121SKalle Valo 	if (vif->type == NL80211_IFTYPE_STATION) {
4000e705c121SKalle Valo 		struct iwl_mvm_sta *mvmsta;
4001e705c121SKalle Valo 
400219125cb0SAndrei Otcheretianski 		mvmvif->csa_bcn_pending = false;
4003e705c121SKalle Valo 		mvmsta = iwl_mvm_sta_from_staid_protected(mvm,
4004e705c121SKalle Valo 							  mvmvif->ap_sta_id);
4005e705c121SKalle Valo 
4006e705c121SKalle Valo 		if (WARN_ON(!mvmsta)) {
4007e705c121SKalle Valo 			ret = -EIO;
4008e705c121SKalle Valo 			goto out_unlock;
4009e705c121SKalle Valo 		}
4010e705c121SKalle Valo 
4011e705c121SKalle Valo 		iwl_mvm_sta_modify_disable_tx(mvm, mvmsta, false);
4012e705c121SKalle Valo 
4013e705c121SKalle Valo 		iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
4014e705c121SKalle Valo 
4015e705c121SKalle Valo 		ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0);
4016e705c121SKalle Valo 		if (ret)
4017e705c121SKalle Valo 			goto out_unlock;
4018e705c121SKalle Valo 
4019e705c121SKalle Valo 		iwl_mvm_stop_session_protection(mvm, vif);
4020e705c121SKalle Valo 	}
4021e705c121SKalle Valo 
4022e705c121SKalle Valo 	mvmvif->ps_disabled = false;
4023e705c121SKalle Valo 
4024e705c121SKalle Valo 	ret = iwl_mvm_power_update_ps(mvm);
4025e705c121SKalle Valo 
4026e705c121SKalle Valo out_unlock:
4027e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
4028e705c121SKalle Valo 
4029e705c121SKalle Valo 	return ret;
4030e705c121SKalle Valo }
4031e705c121SKalle Valo 
40326110d9e5SDavid Spinadel static void iwl_mvm_flush_no_vif(struct iwl_mvm *mvm, u32 queues, bool drop)
40336110d9e5SDavid Spinadel {
4034435d0827SSara Sharon 	int i;
4035435d0827SSara Sharon 
403606195639SSara Sharon 	if (!iwl_mvm_has_new_tx_api(mvm)) {
4037309c4848SLuca Coelho 		if (drop) {
4038309c4848SLuca Coelho 			mutex_lock(&mvm->mutex);
40396110d9e5SDavid Spinadel 			iwl_mvm_flush_tx_path(mvm,
4040435d0827SSara Sharon 				iwl_mvm_flushable_queues(mvm) & queues, 0);
4041309c4848SLuca Coelho 			mutex_unlock(&mvm->mutex);
4042309c4848SLuca Coelho 		} else {
4043435d0827SSara Sharon 			iwl_trans_wait_tx_queues_empty(mvm->trans, queues);
4044309c4848SLuca Coelho 		}
4045435d0827SSara Sharon 		return;
4046435d0827SSara Sharon 	}
40476110d9e5SDavid Spinadel 
40486110d9e5SDavid Spinadel 	mutex_lock(&mvm->mutex);
40496110d9e5SDavid Spinadel 	for (i = 0; i < ARRAY_SIZE(mvm->fw_id_to_mac_id); i++) {
4050435d0827SSara Sharon 		struct ieee80211_sta *sta;
4051435d0827SSara Sharon 
4052435d0827SSara Sharon 		sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
40536110d9e5SDavid Spinadel 						lockdep_is_held(&mvm->mutex));
40546110d9e5SDavid Spinadel 		if (IS_ERR_OR_NULL(sta))
40556110d9e5SDavid Spinadel 			continue;
40566110d9e5SDavid Spinadel 
405706195639SSara Sharon 		if (drop)
405806195639SSara Sharon 			iwl_mvm_flush_sta_tids(mvm, i, 0xFF, 0);
405906195639SSara Sharon 		else
40606110d9e5SDavid Spinadel 			iwl_mvm_wait_sta_queues_empty(mvm,
40616110d9e5SDavid Spinadel 					iwl_mvm_sta_from_mac80211(sta));
40626110d9e5SDavid Spinadel 	}
40636110d9e5SDavid Spinadel 	mutex_unlock(&mvm->mutex);
40646110d9e5SDavid Spinadel }
40656110d9e5SDavid Spinadel 
4066e705c121SKalle Valo static void iwl_mvm_mac_flush(struct ieee80211_hw *hw,
4067e705c121SKalle Valo 			      struct ieee80211_vif *vif, u32 queues, bool drop)
4068e705c121SKalle Valo {
4069e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
4070e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif;
4071e705c121SKalle Valo 	struct iwl_mvm_sta *mvmsta;
4072e705c121SKalle Valo 	struct ieee80211_sta *sta;
4073e705c121SKalle Valo 	int i;
4074e705c121SKalle Valo 	u32 msk = 0;
4075e705c121SKalle Valo 
40766110d9e5SDavid Spinadel 	if (!vif) {
40776110d9e5SDavid Spinadel 		iwl_mvm_flush_no_vif(mvm, queues, drop);
40786110d9e5SDavid Spinadel 		return;
40796110d9e5SDavid Spinadel 	}
40806110d9e5SDavid Spinadel 
40816110d9e5SDavid Spinadel 	if (vif->type != NL80211_IFTYPE_STATION)
4082e705c121SKalle Valo 		return;
4083e705c121SKalle Valo 
408424afba76SLiad Kaufman 	/* Make sure we're done with the deferred traffic before flushing */
408524afba76SLiad Kaufman 	flush_work(&mvm->add_stream_wk);
408624afba76SLiad Kaufman 
4087e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
4088e705c121SKalle Valo 	mvmvif = iwl_mvm_vif_from_mac80211(vif);
4089e705c121SKalle Valo 
4090e705c121SKalle Valo 	/* flush the AP-station and all TDLS peers */
40910ae98812SSara Sharon 	for (i = 0; i < ARRAY_SIZE(mvm->fw_id_to_mac_id); i++) {
4092e705c121SKalle Valo 		sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
4093e705c121SKalle Valo 						lockdep_is_held(&mvm->mutex));
4094e705c121SKalle Valo 		if (IS_ERR_OR_NULL(sta))
4095e705c121SKalle Valo 			continue;
4096e705c121SKalle Valo 
4097e705c121SKalle Valo 		mvmsta = iwl_mvm_sta_from_mac80211(sta);
4098e705c121SKalle Valo 		if (mvmsta->vif != vif)
4099e705c121SKalle Valo 			continue;
4100e705c121SKalle Valo 
4101e705c121SKalle Valo 		/* make sure only TDLS peers or the AP are flushed */
4102e705c121SKalle Valo 		WARN_ON(i != mvmvif->ap_sta_id && !sta->tdls);
4103e705c121SKalle Valo 
4104d49394a1SSara Sharon 		if (drop) {
4105d49394a1SSara Sharon 			if (iwl_mvm_flush_sta(mvm, mvmsta, false, 0))
4106d49394a1SSara Sharon 				IWL_ERR(mvm, "flush request fail\n");
4107d49394a1SSara Sharon 		} else {
4108e705c121SKalle Valo 			msk |= mvmsta->tfd_queue_msk;
4109d6d517b7SSara Sharon 			if (iwl_mvm_has_new_tx_api(mvm))
4110d6d517b7SSara Sharon 				iwl_mvm_wait_sta_queues_empty(mvm, mvmsta);
4111e705c121SKalle Valo 		}
4112d49394a1SSara Sharon 	}
4113e705c121SKalle Valo 
4114e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
4115e705c121SKalle Valo 
4116e705c121SKalle Valo 	/* this can take a while, and we may need/want other operations
4117e705c121SKalle Valo 	 * to succeed while doing this, so do it without the mutex held
4118e705c121SKalle Valo 	 */
4119d6d517b7SSara Sharon 	if (!drop && !iwl_mvm_has_new_tx_api(mvm))
4120a1a57877SSara Sharon 		iwl_trans_wait_tx_queues_empty(mvm->trans, msk);
4121e705c121SKalle Valo }
4122e705c121SKalle Valo 
4123e705c121SKalle Valo static int iwl_mvm_mac_get_survey(struct ieee80211_hw *hw, int idx,
4124e705c121SKalle Valo 				  struct survey_info *survey)
4125e705c121SKalle Valo {
4126e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
4127e705c121SKalle Valo 	int ret;
4128e705c121SKalle Valo 
4129e705c121SKalle Valo 	memset(survey, 0, sizeof(*survey));
4130e705c121SKalle Valo 
4131e705c121SKalle Valo 	/* only support global statistics right now */
4132e705c121SKalle Valo 	if (idx != 0)
4133e705c121SKalle Valo 		return -ENOENT;
4134e705c121SKalle Valo 
4135280a3efaSJohannes Berg 	if (!fw_has_capa(&mvm->fw->ucode_capa,
4136e705c121SKalle Valo 			 IWL_UCODE_TLV_CAPA_RADIO_BEACON_STATS))
4137e705c121SKalle Valo 		return -ENOENT;
4138e705c121SKalle Valo 
4139e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
4140e705c121SKalle Valo 
4141aab6930dSJohannes Berg 	if (iwl_mvm_firmware_running(mvm)) {
4142e705c121SKalle Valo 		ret = iwl_mvm_request_statistics(mvm, false);
4143e705c121SKalle Valo 		if (ret)
4144e705c121SKalle Valo 			goto out;
4145e705c121SKalle Valo 	}
4146e705c121SKalle Valo 
4147e705c121SKalle Valo 	survey->filled = SURVEY_INFO_TIME |
4148e705c121SKalle Valo 			 SURVEY_INFO_TIME_RX |
4149e705c121SKalle Valo 			 SURVEY_INFO_TIME_TX |
4150e705c121SKalle Valo 			 SURVEY_INFO_TIME_SCAN;
4151e705c121SKalle Valo 	survey->time = mvm->accu_radio_stats.on_time_rf +
4152e705c121SKalle Valo 		       mvm->radio_stats.on_time_rf;
4153e705c121SKalle Valo 	do_div(survey->time, USEC_PER_MSEC);
4154e705c121SKalle Valo 
4155e705c121SKalle Valo 	survey->time_rx = mvm->accu_radio_stats.rx_time +
4156e705c121SKalle Valo 			  mvm->radio_stats.rx_time;
4157e705c121SKalle Valo 	do_div(survey->time_rx, USEC_PER_MSEC);
4158e705c121SKalle Valo 
4159e705c121SKalle Valo 	survey->time_tx = mvm->accu_radio_stats.tx_time +
4160e705c121SKalle Valo 			  mvm->radio_stats.tx_time;
4161e705c121SKalle Valo 	do_div(survey->time_tx, USEC_PER_MSEC);
4162e705c121SKalle Valo 
4163e705c121SKalle Valo 	survey->time_scan = mvm->accu_radio_stats.on_time_scan +
4164e705c121SKalle Valo 			    mvm->radio_stats.on_time_scan;
4165e705c121SKalle Valo 	do_div(survey->time_scan, USEC_PER_MSEC);
4166e705c121SKalle Valo 
4167e705c121SKalle Valo 	ret = 0;
4168e705c121SKalle Valo  out:
4169e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
4170e705c121SKalle Valo 	return ret;
4171e705c121SKalle Valo }
4172e705c121SKalle Valo 
4173e705c121SKalle Valo static void iwl_mvm_mac_sta_statistics(struct ieee80211_hw *hw,
4174e705c121SKalle Valo 				       struct ieee80211_vif *vif,
4175e705c121SKalle Valo 				       struct ieee80211_sta *sta,
4176e705c121SKalle Valo 				       struct station_info *sinfo)
4177e705c121SKalle Valo {
4178e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
4179e705c121SKalle Valo 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
4180e705c121SKalle Valo 	struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
4181e705c121SKalle Valo 
4182988b5968SSara Sharon 	if (mvmsta->avg_energy) {
4183988b5968SSara Sharon 		sinfo->signal_avg = mvmsta->avg_energy;
4184988b5968SSara Sharon 		sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL_AVG);
4185988b5968SSara Sharon 	}
4186988b5968SSara Sharon 
4187280a3efaSJohannes Berg 	if (!fw_has_capa(&mvm->fw->ucode_capa,
4188e705c121SKalle Valo 			 IWL_UCODE_TLV_CAPA_RADIO_BEACON_STATS))
4189e705c121SKalle Valo 		return;
4190e705c121SKalle Valo 
4191e705c121SKalle Valo 	/* if beacon filtering isn't on mac80211 does it anyway */
4192e705c121SKalle Valo 	if (!(vif->driver_flags & IEEE80211_VIF_BEACON_FILTER))
4193e705c121SKalle Valo 		return;
4194e705c121SKalle Valo 
4195e705c121SKalle Valo 	if (!vif->bss_conf.assoc)
4196e705c121SKalle Valo 		return;
4197e705c121SKalle Valo 
4198e705c121SKalle Valo 	mutex_lock(&mvm->mutex);
4199e705c121SKalle Valo 
4200e705c121SKalle Valo 	if (mvmvif->ap_sta_id != mvmsta->sta_id)
4201e705c121SKalle Valo 		goto unlock;
4202e705c121SKalle Valo 
4203e705c121SKalle Valo 	if (iwl_mvm_request_statistics(mvm, false))
4204e705c121SKalle Valo 		goto unlock;
4205e705c121SKalle Valo 
4206e705c121SKalle Valo 	sinfo->rx_beacon = mvmvif->beacon_stats.num_beacons +
4207e705c121SKalle Valo 			   mvmvif->beacon_stats.accu_num_beacons;
4208e705c121SKalle Valo 	sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_RX);
4209e705c121SKalle Valo 	if (mvmvif->beacon_stats.avg_signal) {
4210e705c121SKalle Valo 		/* firmware only reports a value after RXing a few beacons */
4211e705c121SKalle Valo 		sinfo->rx_beacon_signal_avg = mvmvif->beacon_stats.avg_signal;
4212e705c121SKalle Valo 		sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_SIGNAL_AVG);
4213e705c121SKalle Valo 	}
4214e705c121SKalle Valo  unlock:
4215e705c121SKalle Valo 	mutex_unlock(&mvm->mutex);
4216e705c121SKalle Valo }
4217e705c121SKalle Valo 
4218e705c121SKalle Valo static void iwl_mvm_event_mlme_callback(struct iwl_mvm *mvm,
4219e705c121SKalle Valo 					struct ieee80211_vif *vif,
4220e705c121SKalle Valo 					const struct ieee80211_event *event)
4221e705c121SKalle Valo {
42224c324a51SLuca Coelho #define CHECK_MLME_TRIGGER(_cnt, _fmt...)				\
4223e705c121SKalle Valo 	do {								\
42244c324a51SLuca Coelho 		if ((trig_mlme->_cnt) && --(trig_mlme->_cnt))		\
4225e705c121SKalle Valo 			break;						\
42267174beb6SJohannes Berg 		iwl_fw_dbg_collect_trig(&(mvm)->fwrt, trig, _fmt);	\
4227e705c121SKalle Valo 	} while (0)
4228e705c121SKalle Valo 
4229e705c121SKalle Valo 	struct iwl_fw_dbg_trigger_tlv *trig;
4230e705c121SKalle Valo 	struct iwl_fw_dbg_trigger_mlme *trig_mlme;
4231e705c121SKalle Valo 
4232e705c121SKalle Valo 	if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_MLME))
4233e705c121SKalle Valo 		return;
4234e705c121SKalle Valo 
4235e705c121SKalle Valo 	trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_MLME);
4236e705c121SKalle Valo 	trig_mlme = (void *)trig->data;
42377174beb6SJohannes Berg 	if (!iwl_fw_dbg_trigger_check_stop(&mvm->fwrt,
42387174beb6SJohannes Berg 					   ieee80211_vif_to_wdev(vif), trig))
4239e705c121SKalle Valo 		return;
4240e705c121SKalle Valo 
4241e705c121SKalle Valo 	if (event->u.mlme.data == ASSOC_EVENT) {
4242e705c121SKalle Valo 		if (event->u.mlme.status == MLME_DENIED)
42434c324a51SLuca Coelho 			CHECK_MLME_TRIGGER(stop_assoc_denied,
4244e705c121SKalle Valo 					   "DENIED ASSOC: reason %d",
4245e705c121SKalle Valo 					    event->u.mlme.reason);
4246e705c121SKalle Valo 		else if (event->u.mlme.status == MLME_TIMEOUT)
42474c324a51SLuca Coelho 			CHECK_MLME_TRIGGER(stop_assoc_timeout,
4248e705c121SKalle Valo 					   "ASSOC TIMEOUT");
4249e705c121SKalle Valo 	} else if (event->u.mlme.data == AUTH_EVENT) {
4250e705c121SKalle Valo 		if (event->u.mlme.status == MLME_DENIED)
42514c324a51SLuca Coelho 			CHECK_MLME_TRIGGER(stop_auth_denied,
4252e705c121SKalle Valo 					   "DENIED AUTH: reason %d",
4253e705c121SKalle Valo 					   event->u.mlme.reason);
4254e705c121SKalle Valo 		else if (event->u.mlme.status == MLME_TIMEOUT)
42554c324a51SLuca Coelho 			CHECK_MLME_TRIGGER(stop_auth_timeout,
4256e705c121SKalle Valo 					   "AUTH TIMEOUT");
4257e705c121SKalle Valo 	} else if (event->u.mlme.data == DEAUTH_RX_EVENT) {
42584c324a51SLuca Coelho 		CHECK_MLME_TRIGGER(stop_rx_deauth,
4259e705c121SKalle Valo 				   "DEAUTH RX %d", event->u.mlme.reason);
4260e705c121SKalle Valo 	} else if (event->u.mlme.data == DEAUTH_TX_EVENT) {
42614c324a51SLuca Coelho 		CHECK_MLME_TRIGGER(stop_tx_deauth,
4262e705c121SKalle Valo 				   "DEAUTH TX %d", event->u.mlme.reason);
4263e705c121SKalle Valo 	}
4264e705c121SKalle Valo #undef CHECK_MLME_TRIGGER
4265e705c121SKalle Valo }
4266e705c121SKalle Valo 
4267e705c121SKalle Valo static void iwl_mvm_event_bar_rx_callback(struct iwl_mvm *mvm,
4268e705c121SKalle Valo 					  struct ieee80211_vif *vif,
4269e705c121SKalle Valo 					  const struct ieee80211_event *event)
4270e705c121SKalle Valo {
4271e705c121SKalle Valo 	struct iwl_fw_dbg_trigger_tlv *trig;
4272e705c121SKalle Valo 	struct iwl_fw_dbg_trigger_ba *ba_trig;
4273e705c121SKalle Valo 
4274e705c121SKalle Valo 	if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_BA))
4275e705c121SKalle Valo 		return;
4276e705c121SKalle Valo 
4277e705c121SKalle Valo 	trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_BA);
4278e705c121SKalle Valo 	ba_trig = (void *)trig->data;
42797174beb6SJohannes Berg 	if (!iwl_fw_dbg_trigger_check_stop(&mvm->fwrt,
42807174beb6SJohannes Berg 					   ieee80211_vif_to_wdev(vif), trig))
4281e705c121SKalle Valo 		return;
4282e705c121SKalle Valo 
4283e705c121SKalle Valo 	if (!(le16_to_cpu(ba_trig->rx_bar) & BIT(event->u.ba.tid)))
4284e705c121SKalle Valo 		return;
4285e705c121SKalle Valo 
42867174beb6SJohannes Berg 	iwl_fw_dbg_collect_trig(&mvm->fwrt, trig,
4287e705c121SKalle Valo 				"BAR received from %pM, tid %d, ssn %d",
4288e705c121SKalle Valo 				event->u.ba.sta->addr, event->u.ba.tid,
4289e705c121SKalle Valo 				event->u.ba.ssn);
4290e705c121SKalle Valo }
4291e705c121SKalle Valo 
4292e705c121SKalle Valo static void iwl_mvm_mac_event_callback(struct ieee80211_hw *hw,
4293e705c121SKalle Valo 				       struct ieee80211_vif *vif,
4294e705c121SKalle Valo 				       const struct ieee80211_event *event)
4295e705c121SKalle Valo {
4296e705c121SKalle Valo 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
4297e705c121SKalle Valo 
4298e705c121SKalle Valo 	switch (event->type) {
4299e705c121SKalle Valo 	case MLME_EVENT:
4300e705c121SKalle Valo 		iwl_mvm_event_mlme_callback(mvm, vif, event);
4301e705c121SKalle Valo 		break;
4302e705c121SKalle Valo 	case BAR_RX_EVENT:
4303e705c121SKalle Valo 		iwl_mvm_event_bar_rx_callback(mvm, vif, event);
4304e705c121SKalle Valo 		break;
4305e705c121SKalle Valo 	case BA_FRAME_TIMEOUT:
4306528a542aSEmmanuel Grumbach 		iwl_mvm_event_frame_timeout_callback(mvm, vif, event->u.ba.sta,
4307528a542aSEmmanuel Grumbach 						     event->u.ba.tid);
4308e705c121SKalle Valo 		break;
4309e705c121SKalle Valo 	default:
4310e705c121SKalle Valo 		break;
4311e705c121SKalle Valo 	}
4312e705c121SKalle Valo }
4313e705c121SKalle Valo 
4314d0ff5d22SSara Sharon void iwl_mvm_sync_rx_queues_internal(struct iwl_mvm *mvm,
4315d0ff5d22SSara Sharon 				     struct iwl_mvm_internal_rxq_notif *notif,
4316d0ff5d22SSara Sharon 				     u32 size)
43170636b938SSara Sharon {
43180636b938SSara Sharon 	u32 qmask = BIT(mvm->trans->num_rx_queues) - 1;
43190636b938SSara Sharon 	int ret;
43200636b938SSara Sharon 
43210636b938SSara Sharon 	lockdep_assert_held(&mvm->mutex);
43220636b938SSara Sharon 
4323cb8550e1SSara Sharon 	if (!iwl_mvm_has_new_rx_api(mvm))
43240636b938SSara Sharon 		return;
43250636b938SSara Sharon 
4326d0ff5d22SSara Sharon 	notif->cookie = mvm->queue_sync_cookie;
43270636b938SSara Sharon 
4328d0ff5d22SSara Sharon 	if (notif->sync)
4329d0ff5d22SSara Sharon 		atomic_set(&mvm->queue_sync_counter,
4330d0ff5d22SSara Sharon 			   mvm->trans->num_rx_queues);
4331d0ff5d22SSara Sharon 
4332cb8550e1SSara Sharon 	/* TODO - remove this when we have RXQ config API */
43332f7a3863SLuca Coelho 	if (mvm->trans->cfg->device_family == IWL_DEVICE_FAMILY_22000) {
4334cb8550e1SSara Sharon 		qmask = BIT(0);
4335cb8550e1SSara Sharon 		if (notif->sync)
4336cb8550e1SSara Sharon 			atomic_set(&mvm->queue_sync_counter, 1);
4337cb8550e1SSara Sharon 	}
4338cb8550e1SSara Sharon 
4339d0ff5d22SSara Sharon 	ret = iwl_mvm_notify_rx_queue(mvm, qmask, (u8 *)notif, size);
43400636b938SSara Sharon 	if (ret) {
43410636b938SSara Sharon 		IWL_ERR(mvm, "Failed to trigger RX queues sync (%d)\n", ret);
43420636b938SSara Sharon 		goto out;
43430636b938SSara Sharon 	}
4344d0ff5d22SSara Sharon 
43456ad04359SJohannes Berg 	if (notif->sync) {
43463a732c65SSara Sharon 		ret = wait_event_timeout(mvm->rx_sync_waitq,
43476ad04359SJohannes Berg 					 atomic_read(&mvm->queue_sync_counter) == 0 ||
43486ad04359SJohannes Berg 					 iwl_mvm_is_radio_killed(mvm),
43490636b938SSara Sharon 					 HZ);
43506ad04359SJohannes Berg 		WARN_ON_ONCE(!ret && !iwl_mvm_is_radio_killed(mvm));
43516ad04359SJohannes Berg 	}
43520636b938SSara Sharon 
43530636b938SSara Sharon out:
43540636b938SSara Sharon 	atomic_set(&mvm->queue_sync_counter, 0);
43550636b938SSara Sharon 	mvm->queue_sync_cookie++;
43560636b938SSara Sharon }
43570636b938SSara Sharon 
43580636b938SSara Sharon static void iwl_mvm_sync_rx_queues(struct ieee80211_hw *hw)
43590636b938SSara Sharon {
43600636b938SSara Sharon 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
4361d0ff5d22SSara Sharon 	struct iwl_mvm_internal_rxq_notif data = {
4362d0ff5d22SSara Sharon 		.type = IWL_MVM_RXQ_EMPTY,
4363d0ff5d22SSara Sharon 		.sync = 1,
4364d0ff5d22SSara Sharon 	};
43650636b938SSara Sharon 
43660636b938SSara Sharon 	mutex_lock(&mvm->mutex);
4367d0ff5d22SSara Sharon 	iwl_mvm_sync_rx_queues_internal(mvm, &data, sizeof(data));
43680636b938SSara Sharon 	mutex_unlock(&mvm->mutex);
43690636b938SSara Sharon }
43700636b938SSara Sharon 
4371e705c121SKalle Valo const struct ieee80211_ops iwl_mvm_hw_ops = {
4372e705c121SKalle Valo 	.tx = iwl_mvm_mac_tx,
4373e705c121SKalle Valo 	.ampdu_action = iwl_mvm_mac_ampdu_action,
4374e705c121SKalle Valo 	.start = iwl_mvm_mac_start,
4375e705c121SKalle Valo 	.reconfig_complete = iwl_mvm_mac_reconfig_complete,
4376e705c121SKalle Valo 	.stop = iwl_mvm_mac_stop,
4377e705c121SKalle Valo 	.add_interface = iwl_mvm_mac_add_interface,
4378e705c121SKalle Valo 	.remove_interface = iwl_mvm_mac_remove_interface,
4379e705c121SKalle Valo 	.config = iwl_mvm_mac_config,
4380e705c121SKalle Valo 	.prepare_multicast = iwl_mvm_prepare_multicast,
4381e705c121SKalle Valo 	.configure_filter = iwl_mvm_configure_filter,
4382e705c121SKalle Valo 	.config_iface_filter = iwl_mvm_config_iface_filter,
4383e705c121SKalle Valo 	.bss_info_changed = iwl_mvm_bss_info_changed,
4384e705c121SKalle Valo 	.hw_scan = iwl_mvm_mac_hw_scan,
4385e705c121SKalle Valo 	.cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan,
4386e705c121SKalle Valo 	.sta_pre_rcu_remove = iwl_mvm_sta_pre_rcu_remove,
4387e705c121SKalle Valo 	.sta_state = iwl_mvm_mac_sta_state,
4388e705c121SKalle Valo 	.sta_notify = iwl_mvm_mac_sta_notify,
4389e705c121SKalle Valo 	.allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames,
4390e705c121SKalle Valo 	.release_buffered_frames = iwl_mvm_mac_release_buffered_frames,
4391e705c121SKalle Valo 	.set_rts_threshold = iwl_mvm_mac_set_rts_threshold,
4392e705c121SKalle Valo 	.sta_rc_update = iwl_mvm_sta_rc_update,
4393e705c121SKalle Valo 	.conf_tx = iwl_mvm_mac_conf_tx,
4394e705c121SKalle Valo 	.mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx,
4395e705c121SKalle Valo 	.mgd_protect_tdls_discover = iwl_mvm_mac_mgd_protect_tdls_discover,
4396e705c121SKalle Valo 	.flush = iwl_mvm_mac_flush,
4397e705c121SKalle Valo 	.sched_scan_start = iwl_mvm_mac_sched_scan_start,
4398e705c121SKalle Valo 	.sched_scan_stop = iwl_mvm_mac_sched_scan_stop,
4399e705c121SKalle Valo 	.set_key = iwl_mvm_mac_set_key,
4400e705c121SKalle Valo 	.update_tkip_key = iwl_mvm_mac_update_tkip_key,
4401e705c121SKalle Valo 	.remain_on_channel = iwl_mvm_roc,
4402e705c121SKalle Valo 	.cancel_remain_on_channel = iwl_mvm_cancel_roc,
4403e705c121SKalle Valo 	.add_chanctx = iwl_mvm_add_chanctx,
4404e705c121SKalle Valo 	.remove_chanctx = iwl_mvm_remove_chanctx,
4405e705c121SKalle Valo 	.change_chanctx = iwl_mvm_change_chanctx,
4406e705c121SKalle Valo 	.assign_vif_chanctx = iwl_mvm_assign_vif_chanctx,
4407e705c121SKalle Valo 	.unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx,
4408e705c121SKalle Valo 	.switch_vif_chanctx = iwl_mvm_switch_vif_chanctx,
4409e705c121SKalle Valo 
4410e705c121SKalle Valo 	.start_ap = iwl_mvm_start_ap_ibss,
4411e705c121SKalle Valo 	.stop_ap = iwl_mvm_stop_ap_ibss,
4412e705c121SKalle Valo 	.join_ibss = iwl_mvm_start_ap_ibss,
4413e705c121SKalle Valo 	.leave_ibss = iwl_mvm_stop_ap_ibss,
4414e705c121SKalle Valo 
44152f0282dbSJohannes Berg 	.tx_last_beacon = iwl_mvm_tx_last_beacon,
44162f0282dbSJohannes Berg 
4417e705c121SKalle Valo 	.set_tim = iwl_mvm_set_tim,
4418e705c121SKalle Valo 
4419e705c121SKalle Valo 	.channel_switch = iwl_mvm_channel_switch,
4420e705c121SKalle Valo 	.pre_channel_switch = iwl_mvm_pre_channel_switch,
4421e705c121SKalle Valo 	.post_channel_switch = iwl_mvm_post_channel_switch,
4422e705c121SKalle Valo 
4423e705c121SKalle Valo 	.tdls_channel_switch = iwl_mvm_tdls_channel_switch,
4424e705c121SKalle Valo 	.tdls_cancel_channel_switch = iwl_mvm_tdls_cancel_channel_switch,
4425e705c121SKalle Valo 	.tdls_recv_channel_switch = iwl_mvm_tdls_recv_channel_switch,
4426e705c121SKalle Valo 
4427e705c121SKalle Valo 	.event_callback = iwl_mvm_mac_event_callback,
4428e705c121SKalle Valo 
44290636b938SSara Sharon 	.sync_rx_queues = iwl_mvm_sync_rx_queues,
44300636b938SSara Sharon 
4431e705c121SKalle Valo 	CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd)
4432e705c121SKalle Valo 
4433e705c121SKalle Valo #ifdef CONFIG_PM_SLEEP
4434e705c121SKalle Valo 	/* look at d3.c */
4435e705c121SKalle Valo 	.suspend = iwl_mvm_suspend,
4436e705c121SKalle Valo 	.resume = iwl_mvm_resume,
4437e705c121SKalle Valo 	.set_wakeup = iwl_mvm_set_wakeup,
4438e705c121SKalle Valo 	.set_rekey_data = iwl_mvm_set_rekey_data,
4439e705c121SKalle Valo #if IS_ENABLED(CONFIG_IPV6)
4440e705c121SKalle Valo 	.ipv6_addr_change = iwl_mvm_ipv6_addr_change,
4441e705c121SKalle Valo #endif
4442e705c121SKalle Valo 	.set_default_unicast_key = iwl_mvm_set_default_unicast_key,
4443e705c121SKalle Valo #endif
4444e705c121SKalle Valo 	.get_survey = iwl_mvm_mac_get_survey,
4445e705c121SKalle Valo 	.sta_statistics = iwl_mvm_mac_sta_statistics,
4446177a11cfSGregory Greenman #ifdef CONFIG_IWLWIFI_DEBUGFS
4447177a11cfSGregory Greenman 	.sta_add_debugfs = iwl_mvm_sta_add_debugfs,
4448177a11cfSGregory Greenman #endif
4449e705c121SKalle Valo };
4450