1 /******************************************************************************
2  *
3  * This file is provided under a dual BSD/GPLv2 license.  When using or
4  * redistributing this file, you may do so under either license.
5  *
6  * GPL LICENSE SUMMARY
7  *
8  * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
9  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10  * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
11  * Copyright(c) 2018        Intel Corporation
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of version 2 of the GNU General Public License as
15  * published by the Free Software Foundation.
16  *
17  * This program is distributed in the hope that it will be useful, but
18  * WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * General Public License for more details.
21  *
22  * The full GNU General Public License is included in this distribution
23  * in the file called COPYING.
24  *
25  * Contact Information:
26  *  Intel Linux Wireless <linuxwifi@intel.com>
27  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
28  *
29  * BSD LICENSE
30  *
31  * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
32  * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
33  * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
34  * Copyright(c) 2018        Intel Corporation
35  * All rights reserved.
36  *
37  * Redistribution and use in source and binary forms, with or without
38  * modification, are permitted provided that the following conditions
39  * are met:
40  *
41  *  * Redistributions of source code must retain the above copyright
42  *    notice, this list of conditions and the following disclaimer.
43  *  * Redistributions in binary form must reproduce the above copyright
44  *    notice, this list of conditions and the following disclaimer in
45  *    the documentation and/or other materials provided with the
46  *    distribution.
47  *  * Neither the name Intel Corporation nor the names of its
48  *    contributors may be used to endorse or promote products derived
49  *    from this software without specific prior written permission.
50  *
51  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
52  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
53  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
54  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
55  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
56  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
57  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
59  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
60  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
61  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62  *
63  *****************************************************************************/
64 
65 #include <linux/etherdevice.h>
66 #include <linux/ip.h>
67 #include <linux/fs.h>
68 #include <net/cfg80211.h>
69 #include <net/ipv6.h>
70 #include <net/tcp.h>
71 #include <net/addrconf.h>
72 #include "iwl-modparams.h"
73 #include "fw-api.h"
74 #include "mvm.h"
75 
76 void iwl_mvm_set_rekey_data(struct ieee80211_hw *hw,
77 			    struct ieee80211_vif *vif,
78 			    struct cfg80211_gtk_rekey_data *data)
79 {
80 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
81 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
82 
83 	if (iwlwifi_mod_params.swcrypto)
84 		return;
85 
86 	mutex_lock(&mvm->mutex);
87 
88 	memcpy(mvmvif->rekey_data.kek, data->kek, NL80211_KEK_LEN);
89 	memcpy(mvmvif->rekey_data.kck, data->kck, NL80211_KCK_LEN);
90 	mvmvif->rekey_data.replay_ctr =
91 		cpu_to_le64(be64_to_cpup((__be64 *)data->replay_ctr));
92 	mvmvif->rekey_data.valid = true;
93 
94 	mutex_unlock(&mvm->mutex);
95 }
96 
97 #if IS_ENABLED(CONFIG_IPV6)
98 void iwl_mvm_ipv6_addr_change(struct ieee80211_hw *hw,
99 			      struct ieee80211_vif *vif,
100 			      struct inet6_dev *idev)
101 {
102 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
103 	struct inet6_ifaddr *ifa;
104 	int idx = 0;
105 
106 	memset(mvmvif->tentative_addrs, 0, sizeof(mvmvif->tentative_addrs));
107 
108 	read_lock_bh(&idev->lock);
109 	list_for_each_entry(ifa, &idev->addr_list, if_list) {
110 		mvmvif->target_ipv6_addrs[idx] = ifa->addr;
111 		if (ifa->flags & IFA_F_TENTATIVE)
112 			__set_bit(idx, mvmvif->tentative_addrs);
113 		idx++;
114 		if (idx >= IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_MAX)
115 			break;
116 	}
117 	read_unlock_bh(&idev->lock);
118 
119 	mvmvif->num_target_ipv6_addrs = idx;
120 }
121 #endif
122 
123 void iwl_mvm_set_default_unicast_key(struct ieee80211_hw *hw,
124 				     struct ieee80211_vif *vif, int idx)
125 {
126 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
127 
128 	mvmvif->tx_key_idx = idx;
129 }
130 
131 static void iwl_mvm_convert_p1k(u16 *p1k, __le16 *out)
132 {
133 	int i;
134 
135 	for (i = 0; i < IWL_P1K_SIZE; i++)
136 		out[i] = cpu_to_le16(p1k[i]);
137 }
138 
139 static const u8 *iwl_mvm_find_max_pn(struct ieee80211_key_conf *key,
140 				     struct iwl_mvm_key_pn *ptk_pn,
141 				     struct ieee80211_key_seq *seq,
142 				     int tid, int queues)
143 {
144 	const u8 *ret = seq->ccmp.pn;
145 	int i;
146 
147 	/* get the PN from mac80211, used on the default queue */
148 	ieee80211_get_key_rx_seq(key, tid, seq);
149 
150 	/* and use the internal data for the other queues */
151 	for (i = 1; i < queues; i++) {
152 		const u8 *tmp = ptk_pn->q[i].pn[tid];
153 
154 		if (memcmp(ret, tmp, IEEE80211_CCMP_PN_LEN) <= 0)
155 			ret = tmp;
156 	}
157 
158 	return ret;
159 }
160 
161 struct wowlan_key_data {
162 	struct iwl_wowlan_rsc_tsc_params_cmd *rsc_tsc;
163 	struct iwl_wowlan_tkip_params_cmd *tkip;
164 	bool error, use_rsc_tsc, use_tkip, configure_keys;
165 	int wep_key_idx;
166 };
167 
168 static void iwl_mvm_wowlan_program_keys(struct ieee80211_hw *hw,
169 					struct ieee80211_vif *vif,
170 					struct ieee80211_sta *sta,
171 					struct ieee80211_key_conf *key,
172 					void *_data)
173 {
174 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
175 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
176 	struct wowlan_key_data *data = _data;
177 	struct aes_sc *aes_sc, *aes_tx_sc = NULL;
178 	struct tkip_sc *tkip_sc, *tkip_tx_sc = NULL;
179 	struct iwl_p1k_cache *rx_p1ks;
180 	u8 *rx_mic_key;
181 	struct ieee80211_key_seq seq;
182 	u32 cur_rx_iv32 = 0;
183 	u16 p1k[IWL_P1K_SIZE];
184 	int ret, i;
185 
186 	switch (key->cipher) {
187 	case WLAN_CIPHER_SUITE_WEP40:
188 	case WLAN_CIPHER_SUITE_WEP104: { /* hack it for now */
189 		struct {
190 			struct iwl_mvm_wep_key_cmd wep_key_cmd;
191 			struct iwl_mvm_wep_key wep_key;
192 		} __packed wkc = {
193 			.wep_key_cmd.mac_id_n_color =
194 				cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
195 								mvmvif->color)),
196 			.wep_key_cmd.num_keys = 1,
197 			/* firmware sets STA_KEY_FLG_WEP_13BYTES */
198 			.wep_key_cmd.decryption_type = STA_KEY_FLG_WEP,
199 			.wep_key.key_index = key->keyidx,
200 			.wep_key.key_size = key->keylen,
201 		};
202 
203 		/*
204 		 * This will fail -- the key functions don't set support
205 		 * pairwise WEP keys. However, that's better than silently
206 		 * failing WoWLAN. Or maybe not?
207 		 */
208 		if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
209 			break;
210 
211 		memcpy(&wkc.wep_key.key[3], key->key, key->keylen);
212 		if (key->keyidx == mvmvif->tx_key_idx) {
213 			/* TX key must be at offset 0 */
214 			wkc.wep_key.key_offset = 0;
215 		} else {
216 			/* others start at 1 */
217 			data->wep_key_idx++;
218 			wkc.wep_key.key_offset = data->wep_key_idx;
219 		}
220 
221 		if (data->configure_keys) {
222 			mutex_lock(&mvm->mutex);
223 			ret = iwl_mvm_send_cmd_pdu(mvm, WEP_KEY, 0,
224 						   sizeof(wkc), &wkc);
225 			data->error = ret != 0;
226 
227 			mvm->ptk_ivlen = key->iv_len;
228 			mvm->ptk_icvlen = key->icv_len;
229 			mvm->gtk_ivlen = key->iv_len;
230 			mvm->gtk_icvlen = key->icv_len;
231 			mutex_unlock(&mvm->mutex);
232 		}
233 
234 		/* don't upload key again */
235 		return;
236 	}
237 	default:
238 		data->error = true;
239 		return;
240 	case WLAN_CIPHER_SUITE_AES_CMAC:
241 		/*
242 		 * Ignore CMAC keys -- the WoWLAN firmware doesn't support them
243 		 * but we also shouldn't abort suspend due to that. It does have
244 		 * support for the IGTK key renewal, but doesn't really use the
245 		 * IGTK for anything. This means we could spuriously wake up or
246 		 * be deauthenticated, but that was considered acceptable.
247 		 */
248 		return;
249 	case WLAN_CIPHER_SUITE_TKIP:
250 		if (sta) {
251 			u64 pn64;
252 
253 			tkip_sc = data->rsc_tsc->all_tsc_rsc.tkip.unicast_rsc;
254 			tkip_tx_sc = &data->rsc_tsc->all_tsc_rsc.tkip.tsc;
255 
256 			rx_p1ks = data->tkip->rx_uni;
257 
258 			pn64 = atomic64_read(&key->tx_pn);
259 			tkip_tx_sc->iv16 = cpu_to_le16(TKIP_PN_TO_IV16(pn64));
260 			tkip_tx_sc->iv32 = cpu_to_le32(TKIP_PN_TO_IV32(pn64));
261 
262 			ieee80211_get_tkip_p1k_iv(key, TKIP_PN_TO_IV32(pn64),
263 						  p1k);
264 			iwl_mvm_convert_p1k(p1k, data->tkip->tx.p1k);
265 
266 			memcpy(data->tkip->mic_keys.tx,
267 			       &key->key[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY],
268 			       IWL_MIC_KEY_SIZE);
269 
270 			rx_mic_key = data->tkip->mic_keys.rx_unicast;
271 		} else {
272 			tkip_sc =
273 				data->rsc_tsc->all_tsc_rsc.tkip.multicast_rsc;
274 			rx_p1ks = data->tkip->rx_multi;
275 			rx_mic_key = data->tkip->mic_keys.rx_mcast;
276 		}
277 
278 		/*
279 		 * For non-QoS this relies on the fact that both the uCode and
280 		 * mac80211 use TID 0 (as they need to to avoid replay attacks)
281 		 * for checking the IV in the frames.
282 		 */
283 		for (i = 0; i < IWL_NUM_RSC; i++) {
284 			ieee80211_get_key_rx_seq(key, i, &seq);
285 			tkip_sc[i].iv16 = cpu_to_le16(seq.tkip.iv16);
286 			tkip_sc[i].iv32 = cpu_to_le32(seq.tkip.iv32);
287 			/* wrapping isn't allowed, AP must rekey */
288 			if (seq.tkip.iv32 > cur_rx_iv32)
289 				cur_rx_iv32 = seq.tkip.iv32;
290 		}
291 
292 		ieee80211_get_tkip_rx_p1k(key, vif->bss_conf.bssid,
293 					  cur_rx_iv32, p1k);
294 		iwl_mvm_convert_p1k(p1k, rx_p1ks[0].p1k);
295 		ieee80211_get_tkip_rx_p1k(key, vif->bss_conf.bssid,
296 					  cur_rx_iv32 + 1, p1k);
297 		iwl_mvm_convert_p1k(p1k, rx_p1ks[1].p1k);
298 
299 		memcpy(rx_mic_key,
300 		       &key->key[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY],
301 		       IWL_MIC_KEY_SIZE);
302 
303 		data->use_tkip = true;
304 		data->use_rsc_tsc = true;
305 		break;
306 	case WLAN_CIPHER_SUITE_CCMP:
307 		if (sta) {
308 			u64 pn64;
309 
310 			aes_sc = data->rsc_tsc->all_tsc_rsc.aes.unicast_rsc;
311 			aes_tx_sc = &data->rsc_tsc->all_tsc_rsc.aes.tsc;
312 
313 			pn64 = atomic64_read(&key->tx_pn);
314 			aes_tx_sc->pn = cpu_to_le64(pn64);
315 		} else {
316 			aes_sc = data->rsc_tsc->all_tsc_rsc.aes.multicast_rsc;
317 		}
318 
319 		/*
320 		 * For non-QoS this relies on the fact that both the uCode and
321 		 * mac80211/our RX code use TID 0 for checking the PN.
322 		 */
323 		if (sta && iwl_mvm_has_new_rx_api(mvm)) {
324 			struct iwl_mvm_sta *mvmsta;
325 			struct iwl_mvm_key_pn *ptk_pn;
326 			const u8 *pn;
327 
328 			mvmsta = iwl_mvm_sta_from_mac80211(sta);
329 			ptk_pn = rcu_dereference_protected(
330 						mvmsta->ptk_pn[key->keyidx],
331 						lockdep_is_held(&mvm->mutex));
332 			if (WARN_ON(!ptk_pn))
333 				break;
334 
335 			for (i = 0; i < IWL_MAX_TID_COUNT; i++) {
336 				pn = iwl_mvm_find_max_pn(key, ptk_pn, &seq, i,
337 						mvm->trans->num_rx_queues);
338 				aes_sc[i].pn = cpu_to_le64((u64)pn[5] |
339 							   ((u64)pn[4] << 8) |
340 							   ((u64)pn[3] << 16) |
341 							   ((u64)pn[2] << 24) |
342 							   ((u64)pn[1] << 32) |
343 							   ((u64)pn[0] << 40));
344 			}
345 		} else {
346 			for (i = 0; i < IWL_NUM_RSC; i++) {
347 				u8 *pn = seq.ccmp.pn;
348 
349 				ieee80211_get_key_rx_seq(key, i, &seq);
350 				aes_sc[i].pn = cpu_to_le64((u64)pn[5] |
351 							   ((u64)pn[4] << 8) |
352 							   ((u64)pn[3] << 16) |
353 							   ((u64)pn[2] << 24) |
354 							   ((u64)pn[1] << 32) |
355 							   ((u64)pn[0] << 40));
356 			}
357 		}
358 		data->use_rsc_tsc = true;
359 		break;
360 	}
361 
362 	if (data->configure_keys) {
363 		mutex_lock(&mvm->mutex);
364 		/*
365 		 * The D3 firmware hardcodes the key offset 0 as the key it
366 		 * uses to transmit packets to the AP, i.e. the PTK.
367 		 */
368 		if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) {
369 			mvm->ptk_ivlen = key->iv_len;
370 			mvm->ptk_icvlen = key->icv_len;
371 			ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, 0);
372 		} else {
373 			/*
374 			 * firmware only supports TSC/RSC for a single key,
375 			 * so if there are multiple keep overwriting them
376 			 * with new ones -- this relies on mac80211 doing
377 			 * list_add_tail().
378 			 */
379 			mvm->gtk_ivlen = key->iv_len;
380 			mvm->gtk_icvlen = key->icv_len;
381 			ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, 1);
382 		}
383 		mutex_unlock(&mvm->mutex);
384 		data->error = ret != 0;
385 	}
386 }
387 
388 static int iwl_mvm_send_patterns(struct iwl_mvm *mvm,
389 				 struct cfg80211_wowlan *wowlan)
390 {
391 	struct iwl_wowlan_patterns_cmd *pattern_cmd;
392 	struct iwl_host_cmd cmd = {
393 		.id = WOWLAN_PATTERNS,
394 		.dataflags[0] = IWL_HCMD_DFL_NOCOPY,
395 	};
396 	int i, err;
397 
398 	if (!wowlan->n_patterns)
399 		return 0;
400 
401 	cmd.len[0] = sizeof(*pattern_cmd) +
402 		wowlan->n_patterns * sizeof(struct iwl_wowlan_pattern);
403 
404 	pattern_cmd = kmalloc(cmd.len[0], GFP_KERNEL);
405 	if (!pattern_cmd)
406 		return -ENOMEM;
407 
408 	pattern_cmd->n_patterns = cpu_to_le32(wowlan->n_patterns);
409 
410 	for (i = 0; i < wowlan->n_patterns; i++) {
411 		int mask_len = DIV_ROUND_UP(wowlan->patterns[i].pattern_len, 8);
412 
413 		memcpy(&pattern_cmd->patterns[i].mask,
414 		       wowlan->patterns[i].mask, mask_len);
415 		memcpy(&pattern_cmd->patterns[i].pattern,
416 		       wowlan->patterns[i].pattern,
417 		       wowlan->patterns[i].pattern_len);
418 		pattern_cmd->patterns[i].mask_size = mask_len;
419 		pattern_cmd->patterns[i].pattern_size =
420 			wowlan->patterns[i].pattern_len;
421 	}
422 
423 	cmd.data[0] = pattern_cmd;
424 	err = iwl_mvm_send_cmd(mvm, &cmd);
425 	kfree(pattern_cmd);
426 	return err;
427 }
428 
429 static int iwl_mvm_d3_reprogram(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
430 				struct ieee80211_sta *ap_sta)
431 {
432 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
433 	struct ieee80211_chanctx_conf *ctx;
434 	u8 chains_static, chains_dynamic;
435 	struct cfg80211_chan_def chandef;
436 	int ret, i;
437 	struct iwl_binding_cmd binding_cmd = {};
438 	struct iwl_time_quota_cmd quota_cmd = {};
439 	struct iwl_time_quota_data *quota;
440 	u32 status;
441 	int size;
442 
443 	if (fw_has_capa(&mvm->fw->ucode_capa,
444 			IWL_UCODE_TLV_CAPA_BINDING_CDB_SUPPORT)) {
445 		size = sizeof(binding_cmd);
446 		if (mvmvif->phy_ctxt->channel->band == NL80211_BAND_2GHZ ||
447 		    !iwl_mvm_is_cdb_supported(mvm))
448 			binding_cmd.lmac_id = cpu_to_le32(IWL_LMAC_24G_INDEX);
449 		else
450 			binding_cmd.lmac_id = cpu_to_le32(IWL_LMAC_5G_INDEX);
451 	} else {
452 		size = IWL_BINDING_CMD_SIZE_V1;
453 	}
454 
455 	/* add back the PHY */
456 	if (WARN_ON(!mvmvif->phy_ctxt))
457 		return -EINVAL;
458 
459 	rcu_read_lock();
460 	ctx = rcu_dereference(vif->chanctx_conf);
461 	if (WARN_ON(!ctx)) {
462 		rcu_read_unlock();
463 		return -EINVAL;
464 	}
465 	chandef = ctx->def;
466 	chains_static = ctx->rx_chains_static;
467 	chains_dynamic = ctx->rx_chains_dynamic;
468 	rcu_read_unlock();
469 
470 	ret = iwl_mvm_phy_ctxt_add(mvm, mvmvif->phy_ctxt, &chandef,
471 				   chains_static, chains_dynamic);
472 	if (ret)
473 		return ret;
474 
475 	/* add back the MAC */
476 	mvmvif->uploaded = false;
477 
478 	if (WARN_ON(!vif->bss_conf.assoc))
479 		return -EINVAL;
480 
481 	ret = iwl_mvm_mac_ctxt_add(mvm, vif);
482 	if (ret)
483 		return ret;
484 
485 	/* add back binding - XXX refactor? */
486 	binding_cmd.id_and_color =
487 		cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->phy_ctxt->id,
488 						mvmvif->phy_ctxt->color));
489 	binding_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
490 	binding_cmd.phy =
491 		cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->phy_ctxt->id,
492 						mvmvif->phy_ctxt->color));
493 	binding_cmd.macs[0] = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
494 							      mvmvif->color));
495 	for (i = 1; i < MAX_MACS_IN_BINDING; i++)
496 		binding_cmd.macs[i] = cpu_to_le32(FW_CTXT_INVALID);
497 
498 	status = 0;
499 	ret = iwl_mvm_send_cmd_pdu_status(mvm, BINDING_CONTEXT_CMD,
500 					  size, &binding_cmd, &status);
501 	if (ret) {
502 		IWL_ERR(mvm, "Failed to add binding: %d\n", ret);
503 		return ret;
504 	}
505 
506 	if (status) {
507 		IWL_ERR(mvm, "Binding command failed: %u\n", status);
508 		return -EIO;
509 	}
510 
511 	ret = iwl_mvm_sta_send_to_fw(mvm, ap_sta, false, 0);
512 	if (ret)
513 		return ret;
514 	rcu_assign_pointer(mvm->fw_id_to_mac_id[mvmvif->ap_sta_id], ap_sta);
515 
516 	ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
517 	if (ret)
518 		return ret;
519 
520 	/* and some quota */
521 	quota = iwl_mvm_quota_cmd_get_quota(mvm, &quota_cmd, 0);
522 	quota->id_and_color =
523 		cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->phy_ctxt->id,
524 						mvmvif->phy_ctxt->color));
525 	quota->quota = cpu_to_le32(IWL_MVM_MAX_QUOTA);
526 	quota->max_duration = cpu_to_le32(IWL_MVM_MAX_QUOTA);
527 
528 	for (i = 1; i < MAX_BINDINGS; i++) {
529 		quota = iwl_mvm_quota_cmd_get_quota(mvm, &quota_cmd, i);
530 		quota->id_and_color = cpu_to_le32(FW_CTXT_INVALID);
531 	}
532 
533 	ret = iwl_mvm_send_cmd_pdu(mvm, TIME_QUOTA_CMD, 0,
534 				   iwl_mvm_quota_cmd_size(mvm), &quota_cmd);
535 	if (ret)
536 		IWL_ERR(mvm, "Failed to send quota: %d\n", ret);
537 
538 	if (iwl_mvm_is_lar_supported(mvm) && iwl_mvm_init_fw_regd(mvm))
539 		IWL_ERR(mvm, "Failed to initialize D3 LAR information\n");
540 
541 	return 0;
542 }
543 
544 static int iwl_mvm_get_last_nonqos_seq(struct iwl_mvm *mvm,
545 				       struct ieee80211_vif *vif)
546 {
547 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
548 	struct iwl_nonqos_seq_query_cmd query_cmd = {
549 		.get_set_flag = cpu_to_le32(IWL_NONQOS_SEQ_GET),
550 		.mac_id_n_color =
551 			cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
552 							mvmvif->color)),
553 	};
554 	struct iwl_host_cmd cmd = {
555 		.id = NON_QOS_TX_COUNTER_CMD,
556 		.flags = CMD_WANT_SKB,
557 	};
558 	int err;
559 	u32 size;
560 
561 	cmd.data[0] = &query_cmd;
562 	cmd.len[0] = sizeof(query_cmd);
563 
564 	err = iwl_mvm_send_cmd(mvm, &cmd);
565 	if (err)
566 		return err;
567 
568 	size = iwl_rx_packet_payload_len(cmd.resp_pkt);
569 	if (size < sizeof(__le16)) {
570 		err = -EINVAL;
571 	} else {
572 		err = le16_to_cpup((__le16 *)cmd.resp_pkt->data);
573 		/* firmware returns next, not last-used seqno */
574 		err = (u16) (err - 0x10);
575 	}
576 
577 	iwl_free_resp(&cmd);
578 	return err;
579 }
580 
581 void iwl_mvm_set_last_nonqos_seq(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
582 {
583 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
584 	struct iwl_nonqos_seq_query_cmd query_cmd = {
585 		.get_set_flag = cpu_to_le32(IWL_NONQOS_SEQ_SET),
586 		.mac_id_n_color =
587 			cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
588 							mvmvif->color)),
589 		.value = cpu_to_le16(mvmvif->seqno),
590 	};
591 
592 	/* return if called during restart, not resume from D3 */
593 	if (!mvmvif->seqno_valid)
594 		return;
595 
596 	mvmvif->seqno_valid = false;
597 
598 	if (iwl_mvm_send_cmd_pdu(mvm, NON_QOS_TX_COUNTER_CMD, 0,
599 				 sizeof(query_cmd), &query_cmd))
600 		IWL_ERR(mvm, "failed to set non-QoS seqno\n");
601 }
602 
603 static int iwl_mvm_switch_to_d3(struct iwl_mvm *mvm)
604 {
605 	iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true);
606 
607 	iwl_mvm_stop_device(mvm);
608 	/*
609 	 * Set the HW restart bit -- this is mostly true as we're
610 	 * going to load new firmware and reprogram that, though
611 	 * the reprogramming is going to be manual to avoid adding
612 	 * all the MACs that aren't support.
613 	 * We don't have to clear up everything though because the
614 	 * reprogramming is manual. When we resume, we'll actually
615 	 * go through a proper restart sequence again to switch
616 	 * back to the runtime firmware image.
617 	 */
618 	set_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
619 
620 	/* the fw is reset, so all the keys are cleared */
621 	memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
622 
623 	mvm->ptk_ivlen = 0;
624 	mvm->ptk_icvlen = 0;
625 	mvm->ptk_ivlen = 0;
626 	mvm->ptk_icvlen = 0;
627 
628 	return iwl_mvm_load_d3_fw(mvm);
629 }
630 
631 static int
632 iwl_mvm_get_wowlan_config(struct iwl_mvm *mvm,
633 			  struct cfg80211_wowlan *wowlan,
634 			  struct iwl_wowlan_config_cmd *wowlan_config_cmd,
635 			  struct ieee80211_vif *vif, struct iwl_mvm_vif *mvmvif,
636 			  struct ieee80211_sta *ap_sta)
637 {
638 	int ret;
639 	struct iwl_mvm_sta *mvm_ap_sta = iwl_mvm_sta_from_mac80211(ap_sta);
640 
641 	/* TODO: wowlan_config_cmd->wowlan_ba_teardown_tids */
642 
643 	wowlan_config_cmd->is_11n_connection =
644 					ap_sta->ht_cap.ht_supported;
645 	wowlan_config_cmd->flags = ENABLE_L3_FILTERING |
646 		ENABLE_NBNS_FILTERING | ENABLE_DHCP_FILTERING;
647 
648 	/* Query the last used seqno and set it */
649 	ret = iwl_mvm_get_last_nonqos_seq(mvm, vif);
650 	if (ret < 0)
651 		return ret;
652 
653 	wowlan_config_cmd->non_qos_seq = cpu_to_le16(ret);
654 
655 	iwl_mvm_set_wowlan_qos_seq(mvm_ap_sta, wowlan_config_cmd);
656 
657 	if (wowlan->disconnect)
658 		wowlan_config_cmd->wakeup_filter |=
659 			cpu_to_le32(IWL_WOWLAN_WAKEUP_BEACON_MISS |
660 				    IWL_WOWLAN_WAKEUP_LINK_CHANGE);
661 	if (wowlan->magic_pkt)
662 		wowlan_config_cmd->wakeup_filter |=
663 			cpu_to_le32(IWL_WOWLAN_WAKEUP_MAGIC_PACKET);
664 	if (wowlan->gtk_rekey_failure)
665 		wowlan_config_cmd->wakeup_filter |=
666 			cpu_to_le32(IWL_WOWLAN_WAKEUP_GTK_REKEY_FAIL);
667 	if (wowlan->eap_identity_req)
668 		wowlan_config_cmd->wakeup_filter |=
669 			cpu_to_le32(IWL_WOWLAN_WAKEUP_EAP_IDENT_REQ);
670 	if (wowlan->four_way_handshake)
671 		wowlan_config_cmd->wakeup_filter |=
672 			cpu_to_le32(IWL_WOWLAN_WAKEUP_4WAY_HANDSHAKE);
673 	if (wowlan->n_patterns)
674 		wowlan_config_cmd->wakeup_filter |=
675 			cpu_to_le32(IWL_WOWLAN_WAKEUP_PATTERN_MATCH);
676 
677 	if (wowlan->rfkill_release)
678 		wowlan_config_cmd->wakeup_filter |=
679 			cpu_to_le32(IWL_WOWLAN_WAKEUP_RF_KILL_DEASSERT);
680 
681 	if (wowlan->tcp) {
682 		/*
683 		 * Set the "link change" (really "link lost") flag as well
684 		 * since that implies losing the TCP connection.
685 		 */
686 		wowlan_config_cmd->wakeup_filter |=
687 			cpu_to_le32(IWL_WOWLAN_WAKEUP_REMOTE_LINK_LOSS |
688 				    IWL_WOWLAN_WAKEUP_REMOTE_SIGNATURE_TABLE |
689 				    IWL_WOWLAN_WAKEUP_REMOTE_WAKEUP_PACKET |
690 				    IWL_WOWLAN_WAKEUP_LINK_CHANGE);
691 	}
692 
693 	if (wowlan->any) {
694 		wowlan_config_cmd->wakeup_filter |=
695 			cpu_to_le32(IWL_WOWLAN_WAKEUP_BEACON_MISS |
696 				    IWL_WOWLAN_WAKEUP_LINK_CHANGE |
697 				    IWL_WOWLAN_WAKEUP_RX_FRAME |
698 				    IWL_WOWLAN_WAKEUP_BCN_FILTERING);
699 	}
700 
701 	return 0;
702 }
703 
704 static void
705 iwl_mvm_iter_d0i3_ap_keys(struct iwl_mvm *mvm,
706 			  struct ieee80211_vif *vif,
707 			  void (*iter)(struct ieee80211_hw *hw,
708 				       struct ieee80211_vif *vif,
709 				       struct ieee80211_sta *sta,
710 				       struct ieee80211_key_conf *key,
711 				       void *data),
712 			  void *data)
713 {
714 	struct ieee80211_sta *ap_sta;
715 
716 	rcu_read_lock();
717 
718 	ap_sta = rcu_dereference(mvm->fw_id_to_mac_id[mvm->d0i3_ap_sta_id]);
719 	if (IS_ERR_OR_NULL(ap_sta))
720 		goto out;
721 
722 	ieee80211_iter_keys_rcu(mvm->hw, vif, iter, data);
723 out:
724 	rcu_read_unlock();
725 }
726 
727 int iwl_mvm_wowlan_config_key_params(struct iwl_mvm *mvm,
728 				     struct ieee80211_vif *vif,
729 				     bool d0i3,
730 				     u32 cmd_flags)
731 {
732 	struct iwl_wowlan_kek_kck_material_cmd kek_kck_cmd = {};
733 	struct iwl_wowlan_tkip_params_cmd tkip_cmd = {};
734 	struct wowlan_key_data key_data = {
735 		.configure_keys = !d0i3,
736 		.use_rsc_tsc = false,
737 		.tkip = &tkip_cmd,
738 		.use_tkip = false,
739 	};
740 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
741 	int ret;
742 
743 	key_data.rsc_tsc = kzalloc(sizeof(*key_data.rsc_tsc), GFP_KERNEL);
744 	if (!key_data.rsc_tsc)
745 		return -ENOMEM;
746 
747 	/*
748 	 * if we have to configure keys, call ieee80211_iter_keys(),
749 	 * as we need non-atomic context in order to take the
750 	 * required locks.
751 	 * for the d0i3 we can't use ieee80211_iter_keys(), as
752 	 * taking (almost) any mutex might result in deadlock.
753 	 */
754 	if (!d0i3) {
755 		/*
756 		 * Note that currently we don't propagate cmd_flags
757 		 * to the iterator. In case of key_data.configure_keys,
758 		 * all the configured commands are SYNC, and
759 		 * iwl_mvm_wowlan_program_keys() will take care of
760 		 * locking/unlocking mvm->mutex.
761 		 */
762 		ieee80211_iter_keys(mvm->hw, vif,
763 				    iwl_mvm_wowlan_program_keys,
764 				    &key_data);
765 	} else {
766 		iwl_mvm_iter_d0i3_ap_keys(mvm, vif,
767 					  iwl_mvm_wowlan_program_keys,
768 					  &key_data);
769 	}
770 
771 	if (key_data.error) {
772 		ret = -EIO;
773 		goto out;
774 	}
775 
776 	if (key_data.use_rsc_tsc) {
777 		ret = iwl_mvm_send_cmd_pdu(mvm,
778 					   WOWLAN_TSC_RSC_PARAM, cmd_flags,
779 					   sizeof(*key_data.rsc_tsc),
780 					   key_data.rsc_tsc);
781 		if (ret)
782 			goto out;
783 	}
784 
785 	if (key_data.use_tkip &&
786 	    !fw_has_api(&mvm->fw->ucode_capa,
787 			IWL_UCODE_TLV_API_TKIP_MIC_KEYS)) {
788 		ret = iwl_mvm_send_cmd_pdu(mvm,
789 					   WOWLAN_TKIP_PARAM,
790 					   cmd_flags, sizeof(tkip_cmd),
791 					   &tkip_cmd);
792 		if (ret)
793 			goto out;
794 	}
795 
796 	/* configure rekey data only if offloaded rekey is supported (d3) */
797 	if (mvmvif->rekey_data.valid && !d0i3) {
798 		memset(&kek_kck_cmd, 0, sizeof(kek_kck_cmd));
799 		memcpy(kek_kck_cmd.kck, mvmvif->rekey_data.kck,
800 		       NL80211_KCK_LEN);
801 		kek_kck_cmd.kck_len = cpu_to_le16(NL80211_KCK_LEN);
802 		memcpy(kek_kck_cmd.kek, mvmvif->rekey_data.kek,
803 		       NL80211_KEK_LEN);
804 		kek_kck_cmd.kek_len = cpu_to_le16(NL80211_KEK_LEN);
805 		kek_kck_cmd.replay_ctr = mvmvif->rekey_data.replay_ctr;
806 
807 		ret = iwl_mvm_send_cmd_pdu(mvm,
808 					   WOWLAN_KEK_KCK_MATERIAL, cmd_flags,
809 					   sizeof(kek_kck_cmd),
810 					   &kek_kck_cmd);
811 		if (ret)
812 			goto out;
813 	}
814 	ret = 0;
815 out:
816 	kfree(key_data.rsc_tsc);
817 	return ret;
818 }
819 
820 static int
821 iwl_mvm_wowlan_config(struct iwl_mvm *mvm,
822 		      struct cfg80211_wowlan *wowlan,
823 		      struct iwl_wowlan_config_cmd *wowlan_config_cmd,
824 		      struct ieee80211_vif *vif, struct iwl_mvm_vif *mvmvif,
825 		      struct ieee80211_sta *ap_sta)
826 {
827 	int ret;
828 	bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
829 					 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
830 
831 	if (!unified_image) {
832 		ret = iwl_mvm_switch_to_d3(mvm);
833 		if (ret)
834 			return ret;
835 
836 		ret = iwl_mvm_d3_reprogram(mvm, vif, ap_sta);
837 		if (ret)
838 			return ret;
839 	}
840 
841 	if (!iwlwifi_mod_params.swcrypto) {
842 		/*
843 		 * This needs to be unlocked due to lock ordering
844 		 * constraints. Since we're in the suspend path
845 		 * that isn't really a problem though.
846 		 */
847 		mutex_unlock(&mvm->mutex);
848 		ret = iwl_mvm_wowlan_config_key_params(mvm, vif, false,
849 						       CMD_ASYNC);
850 		mutex_lock(&mvm->mutex);
851 		if (ret)
852 			return ret;
853 	}
854 
855 	ret = iwl_mvm_send_cmd_pdu(mvm, WOWLAN_CONFIGURATION, 0,
856 				   sizeof(*wowlan_config_cmd),
857 				   wowlan_config_cmd);
858 	if (ret)
859 		return ret;
860 
861 	ret = iwl_mvm_send_patterns(mvm, wowlan);
862 	if (ret)
863 		return ret;
864 
865 	return iwl_mvm_send_proto_offload(mvm, vif, false, true, 0);
866 }
867 
868 static int
869 iwl_mvm_netdetect_config(struct iwl_mvm *mvm,
870 			 struct cfg80211_wowlan *wowlan,
871 			 struct cfg80211_sched_scan_request *nd_config,
872 			 struct ieee80211_vif *vif)
873 {
874 	struct iwl_wowlan_config_cmd wowlan_config_cmd = {};
875 	int ret;
876 	bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
877 					 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
878 
879 	if (!unified_image) {
880 		ret = iwl_mvm_switch_to_d3(mvm);
881 		if (ret)
882 			return ret;
883 	} else {
884 		/* In theory, we wouldn't have to stop a running sched
885 		 * scan in order to start another one (for
886 		 * net-detect).  But in practice this doesn't seem to
887 		 * work properly, so stop any running sched_scan now.
888 		 */
889 		ret = iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, true);
890 		if (ret)
891 			return ret;
892 	}
893 
894 	/* rfkill release can be either for wowlan or netdetect */
895 	if (wowlan->rfkill_release)
896 		wowlan_config_cmd.wakeup_filter |=
897 			cpu_to_le32(IWL_WOWLAN_WAKEUP_RF_KILL_DEASSERT);
898 
899 	ret = iwl_mvm_send_cmd_pdu(mvm, WOWLAN_CONFIGURATION, 0,
900 				   sizeof(wowlan_config_cmd),
901 				   &wowlan_config_cmd);
902 	if (ret)
903 		return ret;
904 
905 	ret = iwl_mvm_sched_scan_start(mvm, vif, nd_config, &mvm->nd_ies,
906 				       IWL_MVM_SCAN_NETDETECT);
907 	if (ret)
908 		return ret;
909 
910 	if (WARN_ON(mvm->nd_match_sets || mvm->nd_channels))
911 		return -EBUSY;
912 
913 	/* save the sched scan matchsets... */
914 	if (nd_config->n_match_sets) {
915 		mvm->nd_match_sets = kmemdup(nd_config->match_sets,
916 					     sizeof(*nd_config->match_sets) *
917 					     nd_config->n_match_sets,
918 					     GFP_KERNEL);
919 		if (mvm->nd_match_sets)
920 			mvm->n_nd_match_sets = nd_config->n_match_sets;
921 	}
922 
923 	/* ...and the sched scan channels for later reporting */
924 	mvm->nd_channels = kmemdup(nd_config->channels,
925 				   sizeof(*nd_config->channels) *
926 				   nd_config->n_channels,
927 				   GFP_KERNEL);
928 	if (mvm->nd_channels)
929 		mvm->n_nd_channels = nd_config->n_channels;
930 
931 	return 0;
932 }
933 
934 static void iwl_mvm_free_nd(struct iwl_mvm *mvm)
935 {
936 	kfree(mvm->nd_match_sets);
937 	mvm->nd_match_sets = NULL;
938 	mvm->n_nd_match_sets = 0;
939 	kfree(mvm->nd_channels);
940 	mvm->nd_channels = NULL;
941 	mvm->n_nd_channels = 0;
942 }
943 
944 static int __iwl_mvm_suspend(struct ieee80211_hw *hw,
945 			     struct cfg80211_wowlan *wowlan,
946 			     bool test)
947 {
948 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
949 	struct ieee80211_vif *vif = NULL;
950 	struct iwl_mvm_vif *mvmvif = NULL;
951 	struct ieee80211_sta *ap_sta = NULL;
952 	struct iwl_d3_manager_config d3_cfg_cmd_data = {
953 		/*
954 		 * Program the minimum sleep time to 10 seconds, as many
955 		 * platforms have issues processing a wakeup signal while
956 		 * still being in the process of suspending.
957 		 */
958 		.min_sleep_time = cpu_to_le32(10 * 1000 * 1000),
959 	};
960 	struct iwl_host_cmd d3_cfg_cmd = {
961 		.id = D3_CONFIG_CMD,
962 		.flags = CMD_WANT_SKB,
963 		.data[0] = &d3_cfg_cmd_data,
964 		.len[0] = sizeof(d3_cfg_cmd_data),
965 	};
966 	int ret;
967 	int len __maybe_unused;
968 	bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
969 					 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
970 
971 	if (!wowlan) {
972 		/*
973 		 * mac80211 shouldn't get here, but for D3 test
974 		 * it doesn't warrant a warning
975 		 */
976 		WARN_ON(!test);
977 		return -EINVAL;
978 	}
979 
980 	mutex_lock(&mvm->mutex);
981 
982 	vif = iwl_mvm_get_bss_vif(mvm);
983 	if (IS_ERR_OR_NULL(vif)) {
984 		ret = 1;
985 		goto out_noreset;
986 	}
987 
988 	mvmvif = iwl_mvm_vif_from_mac80211(vif);
989 
990 	if (mvmvif->ap_sta_id == IWL_MVM_INVALID_STA) {
991 		/* if we're not associated, this must be netdetect */
992 		if (!wowlan->nd_config) {
993 			ret = 1;
994 			goto out_noreset;
995 		}
996 
997 		ret = iwl_mvm_netdetect_config(
998 			mvm, wowlan, wowlan->nd_config, vif);
999 		if (ret)
1000 			goto out;
1001 
1002 		mvm->net_detect = true;
1003 	} else {
1004 		struct iwl_wowlan_config_cmd wowlan_config_cmd = {};
1005 
1006 		ap_sta = rcu_dereference_protected(
1007 			mvm->fw_id_to_mac_id[mvmvif->ap_sta_id],
1008 			lockdep_is_held(&mvm->mutex));
1009 		if (IS_ERR_OR_NULL(ap_sta)) {
1010 			ret = -EINVAL;
1011 			goto out_noreset;
1012 		}
1013 
1014 		ret = iwl_mvm_get_wowlan_config(mvm, wowlan, &wowlan_config_cmd,
1015 						vif, mvmvif, ap_sta);
1016 		if (ret)
1017 			goto out_noreset;
1018 		ret = iwl_mvm_wowlan_config(mvm, wowlan, &wowlan_config_cmd,
1019 					    vif, mvmvif, ap_sta);
1020 		if (ret)
1021 			goto out;
1022 
1023 		mvm->net_detect = false;
1024 	}
1025 
1026 	ret = iwl_mvm_power_update_device(mvm);
1027 	if (ret)
1028 		goto out;
1029 
1030 	ret = iwl_mvm_power_update_mac(mvm);
1031 	if (ret)
1032 		goto out;
1033 
1034 #ifdef CONFIG_IWLWIFI_DEBUGFS
1035 	if (mvm->d3_wake_sysassert)
1036 		d3_cfg_cmd_data.wakeup_flags |=
1037 			cpu_to_le32(IWL_WAKEUP_D3_CONFIG_FW_ERROR);
1038 #endif
1039 
1040 	/* must be last -- this switches firmware state */
1041 	ret = iwl_mvm_send_cmd(mvm, &d3_cfg_cmd);
1042 	if (ret)
1043 		goto out;
1044 #ifdef CONFIG_IWLWIFI_DEBUGFS
1045 	len = iwl_rx_packet_payload_len(d3_cfg_cmd.resp_pkt);
1046 	if (len >= sizeof(u32)) {
1047 		mvm->d3_test_pme_ptr =
1048 			le32_to_cpup((__le32 *)d3_cfg_cmd.resp_pkt->data);
1049 	}
1050 #endif
1051 	iwl_free_resp(&d3_cfg_cmd);
1052 
1053 	clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
1054 
1055 	iwl_trans_d3_suspend(mvm->trans, test, !unified_image);
1056  out:
1057 	if (ret < 0) {
1058 		iwl_mvm_free_nd(mvm);
1059 
1060 		if (!unified_image) {
1061 			iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
1062 			if (mvm->fw_restart > 0) {
1063 				mvm->fw_restart--;
1064 				ieee80211_restart_hw(mvm->hw);
1065 			}
1066 		}
1067 	}
1068  out_noreset:
1069 	mutex_unlock(&mvm->mutex);
1070 
1071 	return ret;
1072 }
1073 
1074 static int iwl_mvm_enter_d0i3_sync(struct iwl_mvm *mvm)
1075 {
1076 	struct iwl_notification_wait wait_d3;
1077 	static const u16 d3_notif[] = { D3_CONFIG_CMD };
1078 	int ret;
1079 
1080 	iwl_init_notification_wait(&mvm->notif_wait, &wait_d3,
1081 				   d3_notif, ARRAY_SIZE(d3_notif),
1082 				   NULL, NULL);
1083 
1084 	ret = iwl_mvm_enter_d0i3(mvm->hw->priv);
1085 	if (ret)
1086 		goto remove_notif;
1087 
1088 	ret = iwl_wait_notification(&mvm->notif_wait, &wait_d3, HZ);
1089 	WARN_ON_ONCE(ret);
1090 	return ret;
1091 
1092 remove_notif:
1093 	iwl_remove_notification(&mvm->notif_wait, &wait_d3);
1094 	return ret;
1095 }
1096 
1097 int iwl_mvm_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
1098 {
1099 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1100 	struct iwl_trans *trans = mvm->trans;
1101 	int ret;
1102 
1103 	/* make sure the d0i3 exit work is not pending */
1104 	flush_work(&mvm->d0i3_exit_work);
1105 	iwl_mvm_pause_tcm(mvm, true);
1106 
1107 	iwl_fw_runtime_suspend(&mvm->fwrt);
1108 
1109 	ret = iwl_trans_suspend(trans);
1110 	if (ret)
1111 		return ret;
1112 
1113 	if (wowlan->any) {
1114 		trans->system_pm_mode = IWL_PLAT_PM_MODE_D0I3;
1115 
1116 		if (iwl_mvm_enter_d0i3_on_suspend(mvm)) {
1117 			ret = iwl_mvm_enter_d0i3_sync(mvm);
1118 
1119 			if (ret)
1120 				return ret;
1121 		}
1122 
1123 		mutex_lock(&mvm->d0i3_suspend_mutex);
1124 		__set_bit(D0I3_DEFER_WAKEUP, &mvm->d0i3_suspend_flags);
1125 		mutex_unlock(&mvm->d0i3_suspend_mutex);
1126 
1127 		iwl_trans_d3_suspend(trans, false, false);
1128 
1129 		return 0;
1130 	}
1131 
1132 	trans->system_pm_mode = IWL_PLAT_PM_MODE_D3;
1133 
1134 	return __iwl_mvm_suspend(hw, wowlan, false);
1135 }
1136 
1137 /* converted data from the different status responses */
1138 struct iwl_wowlan_status_data {
1139 	u16 pattern_number;
1140 	u16 qos_seq_ctr[8];
1141 	u32 wakeup_reasons;
1142 	u32 wake_packet_length;
1143 	u32 wake_packet_bufsize;
1144 	const u8 *wake_packet;
1145 };
1146 
1147 static void iwl_mvm_report_wakeup_reasons(struct iwl_mvm *mvm,
1148 					  struct ieee80211_vif *vif,
1149 					  struct iwl_wowlan_status_data *status)
1150 {
1151 	struct sk_buff *pkt = NULL;
1152 	struct cfg80211_wowlan_wakeup wakeup = {
1153 		.pattern_idx = -1,
1154 	};
1155 	struct cfg80211_wowlan_wakeup *wakeup_report = &wakeup;
1156 	u32 reasons = status->wakeup_reasons;
1157 
1158 	if (reasons == IWL_WOWLAN_WAKEUP_BY_NON_WIRELESS) {
1159 		wakeup_report = NULL;
1160 		goto report;
1161 	}
1162 
1163 	pm_wakeup_event(mvm->dev, 0);
1164 
1165 	if (reasons & IWL_WOWLAN_WAKEUP_BY_MAGIC_PACKET)
1166 		wakeup.magic_pkt = true;
1167 
1168 	if (reasons & IWL_WOWLAN_WAKEUP_BY_PATTERN)
1169 		wakeup.pattern_idx =
1170 			status->pattern_number;
1171 
1172 	if (reasons & (IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_MISSED_BEACON |
1173 		       IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_DEAUTH))
1174 		wakeup.disconnect = true;
1175 
1176 	if (reasons & IWL_WOWLAN_WAKEUP_BY_GTK_REKEY_FAILURE)
1177 		wakeup.gtk_rekey_failure = true;
1178 
1179 	if (reasons & IWL_WOWLAN_WAKEUP_BY_RFKILL_DEASSERTED)
1180 		wakeup.rfkill_release = true;
1181 
1182 	if (reasons & IWL_WOWLAN_WAKEUP_BY_EAPOL_REQUEST)
1183 		wakeup.eap_identity_req = true;
1184 
1185 	if (reasons & IWL_WOWLAN_WAKEUP_BY_FOUR_WAY_HANDSHAKE)
1186 		wakeup.four_way_handshake = true;
1187 
1188 	if (reasons & IWL_WOWLAN_WAKEUP_BY_REM_WAKE_LINK_LOSS)
1189 		wakeup.tcp_connlost = true;
1190 
1191 	if (reasons & IWL_WOWLAN_WAKEUP_BY_REM_WAKE_SIGNATURE_TABLE)
1192 		wakeup.tcp_nomoretokens = true;
1193 
1194 	if (reasons & IWL_WOWLAN_WAKEUP_BY_REM_WAKE_WAKEUP_PACKET)
1195 		wakeup.tcp_match = true;
1196 
1197 	if (status->wake_packet_bufsize) {
1198 		int pktsize = status->wake_packet_bufsize;
1199 		int pktlen = status->wake_packet_length;
1200 		const u8 *pktdata = status->wake_packet;
1201 		struct ieee80211_hdr *hdr = (void *)pktdata;
1202 		int truncated = pktlen - pktsize;
1203 
1204 		/* this would be a firmware bug */
1205 		if (WARN_ON_ONCE(truncated < 0))
1206 			truncated = 0;
1207 
1208 		if (ieee80211_is_data(hdr->frame_control)) {
1209 			int hdrlen = ieee80211_hdrlen(hdr->frame_control);
1210 			int ivlen = 0, icvlen = 4; /* also FCS */
1211 
1212 			pkt = alloc_skb(pktsize, GFP_KERNEL);
1213 			if (!pkt)
1214 				goto report;
1215 
1216 			skb_put_data(pkt, pktdata, hdrlen);
1217 			pktdata += hdrlen;
1218 			pktsize -= hdrlen;
1219 
1220 			if (ieee80211_has_protected(hdr->frame_control)) {
1221 				/*
1222 				 * This is unlocked and using gtk_i(c)vlen,
1223 				 * but since everything is under RTNL still
1224 				 * that's not really a problem - changing
1225 				 * it would be difficult.
1226 				 */
1227 				if (is_multicast_ether_addr(hdr->addr1)) {
1228 					ivlen = mvm->gtk_ivlen;
1229 					icvlen += mvm->gtk_icvlen;
1230 				} else {
1231 					ivlen = mvm->ptk_ivlen;
1232 					icvlen += mvm->ptk_icvlen;
1233 				}
1234 			}
1235 
1236 			/* if truncated, FCS/ICV is (partially) gone */
1237 			if (truncated >= icvlen) {
1238 				icvlen = 0;
1239 				truncated -= icvlen;
1240 			} else {
1241 				icvlen -= truncated;
1242 				truncated = 0;
1243 			}
1244 
1245 			pktsize -= ivlen + icvlen;
1246 			pktdata += ivlen;
1247 
1248 			skb_put_data(pkt, pktdata, pktsize);
1249 
1250 			if (ieee80211_data_to_8023(pkt, vif->addr, vif->type))
1251 				goto report;
1252 			wakeup.packet = pkt->data;
1253 			wakeup.packet_present_len = pkt->len;
1254 			wakeup.packet_len = pkt->len - truncated;
1255 			wakeup.packet_80211 = false;
1256 		} else {
1257 			int fcslen = 4;
1258 
1259 			if (truncated >= 4) {
1260 				truncated -= 4;
1261 				fcslen = 0;
1262 			} else {
1263 				fcslen -= truncated;
1264 				truncated = 0;
1265 			}
1266 			pktsize -= fcslen;
1267 			wakeup.packet = status->wake_packet;
1268 			wakeup.packet_present_len = pktsize;
1269 			wakeup.packet_len = pktlen - truncated;
1270 			wakeup.packet_80211 = true;
1271 		}
1272 	}
1273 
1274  report:
1275 	ieee80211_report_wowlan_wakeup(vif, wakeup_report, GFP_KERNEL);
1276 	kfree_skb(pkt);
1277 }
1278 
1279 static void iwl_mvm_aes_sc_to_seq(struct aes_sc *sc,
1280 				  struct ieee80211_key_seq *seq)
1281 {
1282 	u64 pn;
1283 
1284 	pn = le64_to_cpu(sc->pn);
1285 	seq->ccmp.pn[0] = pn >> 40;
1286 	seq->ccmp.pn[1] = pn >> 32;
1287 	seq->ccmp.pn[2] = pn >> 24;
1288 	seq->ccmp.pn[3] = pn >> 16;
1289 	seq->ccmp.pn[4] = pn >> 8;
1290 	seq->ccmp.pn[5] = pn;
1291 }
1292 
1293 static void iwl_mvm_tkip_sc_to_seq(struct tkip_sc *sc,
1294 				   struct ieee80211_key_seq *seq)
1295 {
1296 	seq->tkip.iv32 = le32_to_cpu(sc->iv32);
1297 	seq->tkip.iv16 = le16_to_cpu(sc->iv16);
1298 }
1299 
1300 static void iwl_mvm_set_aes_rx_seq(struct iwl_mvm *mvm, struct aes_sc *scs,
1301 				   struct ieee80211_sta *sta,
1302 				   struct ieee80211_key_conf *key)
1303 {
1304 	int tid;
1305 
1306 	BUILD_BUG_ON(IWL_NUM_RSC != IEEE80211_NUM_TIDS);
1307 
1308 	if (sta && iwl_mvm_has_new_rx_api(mvm)) {
1309 		struct iwl_mvm_sta *mvmsta;
1310 		struct iwl_mvm_key_pn *ptk_pn;
1311 
1312 		mvmsta = iwl_mvm_sta_from_mac80211(sta);
1313 
1314 		ptk_pn = rcu_dereference_protected(mvmsta->ptk_pn[key->keyidx],
1315 						   lockdep_is_held(&mvm->mutex));
1316 		if (WARN_ON(!ptk_pn))
1317 			return;
1318 
1319 		for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
1320 			struct ieee80211_key_seq seq = {};
1321 			int i;
1322 
1323 			iwl_mvm_aes_sc_to_seq(&scs[tid], &seq);
1324 			ieee80211_set_key_rx_seq(key, tid, &seq);
1325 			for (i = 1; i < mvm->trans->num_rx_queues; i++)
1326 				memcpy(ptk_pn->q[i].pn[tid],
1327 				       seq.ccmp.pn, IEEE80211_CCMP_PN_LEN);
1328 		}
1329 	} else {
1330 		for (tid = 0; tid < IWL_NUM_RSC; tid++) {
1331 			struct ieee80211_key_seq seq = {};
1332 
1333 			iwl_mvm_aes_sc_to_seq(&scs[tid], &seq);
1334 			ieee80211_set_key_rx_seq(key, tid, &seq);
1335 		}
1336 	}
1337 }
1338 
1339 static void iwl_mvm_set_tkip_rx_seq(struct tkip_sc *scs,
1340 				    struct ieee80211_key_conf *key)
1341 {
1342 	int tid;
1343 
1344 	BUILD_BUG_ON(IWL_NUM_RSC != IEEE80211_NUM_TIDS);
1345 
1346 	for (tid = 0; tid < IWL_NUM_RSC; tid++) {
1347 		struct ieee80211_key_seq seq = {};
1348 
1349 		iwl_mvm_tkip_sc_to_seq(&scs[tid], &seq);
1350 		ieee80211_set_key_rx_seq(key, tid, &seq);
1351 	}
1352 }
1353 
1354 static void iwl_mvm_set_key_rx_seq(struct iwl_mvm *mvm,
1355 				   struct ieee80211_key_conf *key,
1356 				   struct iwl_wowlan_status *status)
1357 {
1358 	union iwl_all_tsc_rsc *rsc = &status->gtk.rsc.all_tsc_rsc;
1359 
1360 	switch (key->cipher) {
1361 	case WLAN_CIPHER_SUITE_CCMP:
1362 		iwl_mvm_set_aes_rx_seq(mvm, rsc->aes.multicast_rsc, NULL, key);
1363 		break;
1364 	case WLAN_CIPHER_SUITE_TKIP:
1365 		iwl_mvm_set_tkip_rx_seq(rsc->tkip.multicast_rsc, key);
1366 		break;
1367 	default:
1368 		WARN_ON(1);
1369 	}
1370 }
1371 
1372 struct iwl_mvm_d3_gtk_iter_data {
1373 	struct iwl_mvm *mvm;
1374 	struct iwl_wowlan_status *status;
1375 	void *last_gtk;
1376 	u32 cipher;
1377 	bool find_phase, unhandled_cipher;
1378 	int num_keys;
1379 };
1380 
1381 static void iwl_mvm_d3_update_keys(struct ieee80211_hw *hw,
1382 				   struct ieee80211_vif *vif,
1383 				   struct ieee80211_sta *sta,
1384 				   struct ieee80211_key_conf *key,
1385 				   void *_data)
1386 {
1387 	struct iwl_mvm_d3_gtk_iter_data *data = _data;
1388 
1389 	if (data->unhandled_cipher)
1390 		return;
1391 
1392 	switch (key->cipher) {
1393 	case WLAN_CIPHER_SUITE_WEP40:
1394 	case WLAN_CIPHER_SUITE_WEP104:
1395 		/* ignore WEP completely, nothing to do */
1396 		return;
1397 	case WLAN_CIPHER_SUITE_CCMP:
1398 	case WLAN_CIPHER_SUITE_TKIP:
1399 		/* we support these */
1400 		break;
1401 	default:
1402 		/* everything else (even CMAC for MFP) - disconnect from AP */
1403 		data->unhandled_cipher = true;
1404 		return;
1405 	}
1406 
1407 	data->num_keys++;
1408 
1409 	/*
1410 	 * pairwise key - update sequence counters only;
1411 	 * note that this assumes no TDLS sessions are active
1412 	 */
1413 	if (sta) {
1414 		struct ieee80211_key_seq seq = {};
1415 		union iwl_all_tsc_rsc *sc = &data->status->gtk.rsc.all_tsc_rsc;
1416 
1417 		if (data->find_phase)
1418 			return;
1419 
1420 		switch (key->cipher) {
1421 		case WLAN_CIPHER_SUITE_CCMP:
1422 			iwl_mvm_set_aes_rx_seq(data->mvm, sc->aes.unicast_rsc,
1423 					       sta, key);
1424 			atomic64_set(&key->tx_pn, le64_to_cpu(sc->aes.tsc.pn));
1425 			break;
1426 		case WLAN_CIPHER_SUITE_TKIP:
1427 			iwl_mvm_tkip_sc_to_seq(&sc->tkip.tsc, &seq);
1428 			iwl_mvm_set_tkip_rx_seq(sc->tkip.unicast_rsc, key);
1429 			atomic64_set(&key->tx_pn,
1430 				     (u64)seq.tkip.iv16 |
1431 				     ((u64)seq.tkip.iv32 << 16));
1432 			break;
1433 		}
1434 
1435 		/* that's it for this key */
1436 		return;
1437 	}
1438 
1439 	if (data->find_phase) {
1440 		data->last_gtk = key;
1441 		data->cipher = key->cipher;
1442 		return;
1443 	}
1444 
1445 	if (data->status->num_of_gtk_rekeys)
1446 		ieee80211_remove_key(key);
1447 	else if (data->last_gtk == key)
1448 		iwl_mvm_set_key_rx_seq(data->mvm, key, data->status);
1449 }
1450 
1451 static bool iwl_mvm_setup_connection_keep(struct iwl_mvm *mvm,
1452 					  struct ieee80211_vif *vif,
1453 					  struct iwl_wowlan_status *status)
1454 {
1455 	struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1456 	struct iwl_mvm_d3_gtk_iter_data gtkdata = {
1457 		.mvm = mvm,
1458 		.status = status,
1459 	};
1460 	u32 disconnection_reasons =
1461 		IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_MISSED_BEACON |
1462 		IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_DEAUTH;
1463 
1464 	if (!status || !vif->bss_conf.bssid)
1465 		return false;
1466 
1467 	if (le32_to_cpu(status->wakeup_reasons) & disconnection_reasons)
1468 		return false;
1469 
1470 	/* find last GTK that we used initially, if any */
1471 	gtkdata.find_phase = true;
1472 	ieee80211_iter_keys(mvm->hw, vif,
1473 			    iwl_mvm_d3_update_keys, &gtkdata);
1474 	/* not trying to keep connections with MFP/unhandled ciphers */
1475 	if (gtkdata.unhandled_cipher)
1476 		return false;
1477 	if (!gtkdata.num_keys)
1478 		goto out;
1479 	if (!gtkdata.last_gtk)
1480 		return false;
1481 
1482 	/*
1483 	 * invalidate all other GTKs that might still exist and update
1484 	 * the one that we used
1485 	 */
1486 	gtkdata.find_phase = false;
1487 	ieee80211_iter_keys(mvm->hw, vif,
1488 			    iwl_mvm_d3_update_keys, &gtkdata);
1489 
1490 	if (status->num_of_gtk_rekeys) {
1491 		struct ieee80211_key_conf *key;
1492 		struct {
1493 			struct ieee80211_key_conf conf;
1494 			u8 key[32];
1495 		} conf = {
1496 			.conf.cipher = gtkdata.cipher,
1497 			.conf.keyidx = status->gtk.key_index,
1498 		};
1499 
1500 		switch (gtkdata.cipher) {
1501 		case WLAN_CIPHER_SUITE_CCMP:
1502 			conf.conf.keylen = WLAN_KEY_LEN_CCMP;
1503 			memcpy(conf.conf.key, status->gtk.decrypt_key,
1504 			       WLAN_KEY_LEN_CCMP);
1505 			break;
1506 		case WLAN_CIPHER_SUITE_TKIP:
1507 			conf.conf.keylen = WLAN_KEY_LEN_TKIP;
1508 			memcpy(conf.conf.key, status->gtk.decrypt_key, 16);
1509 			/* leave TX MIC key zeroed, we don't use it anyway */
1510 			memcpy(conf.conf.key +
1511 			       NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY,
1512 			       status->gtk.tkip_mic_key, 8);
1513 			break;
1514 		}
1515 
1516 		key = ieee80211_gtk_rekey_add(vif, &conf.conf);
1517 		if (IS_ERR(key))
1518 			return false;
1519 		iwl_mvm_set_key_rx_seq(mvm, key, status);
1520 	}
1521 
1522 	if (status->num_of_gtk_rekeys) {
1523 		__be64 replay_ctr =
1524 			cpu_to_be64(le64_to_cpu(status->replay_ctr));
1525 		ieee80211_gtk_rekey_notify(vif, vif->bss_conf.bssid,
1526 					   (void *)&replay_ctr, GFP_KERNEL);
1527 	}
1528 
1529 out:
1530 	mvmvif->seqno_valid = true;
1531 	/* +0x10 because the set API expects next-to-use, not last-used */
1532 	mvmvif->seqno = le16_to_cpu(status->non_qos_seq_ctr) + 0x10;
1533 
1534 	return true;
1535 }
1536 
1537 static struct iwl_wowlan_status *
1538 iwl_mvm_get_wakeup_status(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1539 {
1540 	u32 base = mvm->error_event_table[0];
1541 	struct error_table_start {
1542 		/* cf. struct iwl_error_event_table */
1543 		u32 valid;
1544 		u32 error_id;
1545 	} err_info;
1546 	struct iwl_host_cmd cmd = {
1547 		.id = WOWLAN_GET_STATUSES,
1548 		.flags = CMD_WANT_SKB,
1549 	};
1550 	struct iwl_wowlan_status *status, *fw_status;
1551 	int ret, len, status_size;
1552 
1553 	iwl_trans_read_mem_bytes(mvm->trans, base,
1554 				 &err_info, sizeof(err_info));
1555 
1556 	if (err_info.valid) {
1557 		IWL_INFO(mvm, "error table is valid (%d) with error (%d)\n",
1558 			 err_info.valid, err_info.error_id);
1559 		if (err_info.error_id == RF_KILL_INDICATOR_FOR_WOWLAN) {
1560 			struct cfg80211_wowlan_wakeup wakeup = {
1561 				.rfkill_release = true,
1562 			};
1563 			ieee80211_report_wowlan_wakeup(vif, &wakeup,
1564 						       GFP_KERNEL);
1565 		}
1566 		return ERR_PTR(-EIO);
1567 	}
1568 
1569 	/* only for tracing for now */
1570 	ret = iwl_mvm_send_cmd_pdu(mvm, OFFLOADS_QUERY_CMD, 0, 0, NULL);
1571 	if (ret)
1572 		IWL_ERR(mvm, "failed to query offload statistics (%d)\n", ret);
1573 
1574 	ret = iwl_mvm_send_cmd(mvm, &cmd);
1575 	if (ret) {
1576 		IWL_ERR(mvm, "failed to query status (%d)\n", ret);
1577 		return ERR_PTR(ret);
1578 	}
1579 
1580 	status_size = sizeof(*fw_status);
1581 
1582 	len = iwl_rx_packet_payload_len(cmd.resp_pkt);
1583 	if (len < status_size) {
1584 		IWL_ERR(mvm, "Invalid WoWLAN status response!\n");
1585 		fw_status = ERR_PTR(-EIO);
1586 		goto out_free_resp;
1587 	}
1588 
1589 	status = (void *)cmd.resp_pkt->data;
1590 	if (len != (status_size +
1591 		    ALIGN(le32_to_cpu(status->wake_packet_bufsize), 4))) {
1592 		IWL_ERR(mvm, "Invalid WoWLAN status response!\n");
1593 		fw_status = ERR_PTR(-EIO);
1594 		goto out_free_resp;
1595 	}
1596 
1597 	fw_status = kmemdup(status, len, GFP_KERNEL);
1598 
1599 out_free_resp:
1600 	iwl_free_resp(&cmd);
1601 	return fw_status;
1602 }
1603 
1604 /* releases the MVM mutex */
1605 static bool iwl_mvm_query_wakeup_reasons(struct iwl_mvm *mvm,
1606 					 struct ieee80211_vif *vif)
1607 {
1608 	struct iwl_wowlan_status_data status;
1609 	struct iwl_wowlan_status *fw_status;
1610 	int i;
1611 	bool keep;
1612 	struct iwl_mvm_sta *mvm_ap_sta;
1613 
1614 	fw_status = iwl_mvm_get_wakeup_status(mvm, vif);
1615 	if (IS_ERR_OR_NULL(fw_status))
1616 		goto out_unlock;
1617 
1618 	status.pattern_number = le16_to_cpu(fw_status->pattern_number);
1619 	for (i = 0; i < 8; i++)
1620 		status.qos_seq_ctr[i] =
1621 			le16_to_cpu(fw_status->qos_seq_ctr[i]);
1622 	status.wakeup_reasons = le32_to_cpu(fw_status->wakeup_reasons);
1623 	status.wake_packet_length =
1624 		le32_to_cpu(fw_status->wake_packet_length);
1625 	status.wake_packet_bufsize =
1626 		le32_to_cpu(fw_status->wake_packet_bufsize);
1627 	status.wake_packet = fw_status->wake_packet;
1628 
1629 	/* still at hard-coded place 0 for D3 image */
1630 	mvm_ap_sta = iwl_mvm_sta_from_staid_protected(mvm, 0);
1631 	if (!mvm_ap_sta)
1632 		goto out_free;
1633 
1634 	for (i = 0; i < IWL_MAX_TID_COUNT; i++) {
1635 		u16 seq = status.qos_seq_ctr[i];
1636 		/* firmware stores last-used value, we store next value */
1637 		seq += 0x10;
1638 		mvm_ap_sta->tid_data[i].seq_number = seq;
1639 	}
1640 
1641 	/* now we have all the data we need, unlock to avoid mac80211 issues */
1642 	mutex_unlock(&mvm->mutex);
1643 
1644 	iwl_mvm_report_wakeup_reasons(mvm, vif, &status);
1645 
1646 	keep = iwl_mvm_setup_connection_keep(mvm, vif, fw_status);
1647 
1648 	kfree(fw_status);
1649 	return keep;
1650 
1651 out_free:
1652 	kfree(fw_status);
1653 out_unlock:
1654 	mutex_unlock(&mvm->mutex);
1655 	return false;
1656 }
1657 
1658 void iwl_mvm_d0i3_update_keys(struct iwl_mvm *mvm,
1659 			      struct ieee80211_vif *vif,
1660 			      struct iwl_wowlan_status *status)
1661 {
1662 	struct iwl_mvm_d3_gtk_iter_data gtkdata = {
1663 		.mvm = mvm,
1664 		.status = status,
1665 	};
1666 
1667 	/*
1668 	 * rekey handling requires taking locks that can't be taken now.
1669 	 * however, d0i3 doesn't offload rekey, so we're fine.
1670 	 */
1671 	if (WARN_ON_ONCE(status->num_of_gtk_rekeys))
1672 		return;
1673 
1674 	/* find last GTK that we used initially, if any */
1675 	gtkdata.find_phase = true;
1676 	iwl_mvm_iter_d0i3_ap_keys(mvm, vif, iwl_mvm_d3_update_keys, &gtkdata);
1677 
1678 	gtkdata.find_phase = false;
1679 	iwl_mvm_iter_d0i3_ap_keys(mvm, vif, iwl_mvm_d3_update_keys, &gtkdata);
1680 }
1681 
1682 struct iwl_mvm_nd_query_results {
1683 	u32 matched_profiles;
1684 	struct iwl_scan_offload_profile_match matches[IWL_SCAN_MAX_PROFILES];
1685 };
1686 
1687 static int
1688 iwl_mvm_netdetect_query_results(struct iwl_mvm *mvm,
1689 				struct iwl_mvm_nd_query_results *results)
1690 {
1691 	struct iwl_scan_offload_profiles_query *query;
1692 	struct iwl_host_cmd cmd = {
1693 		.id = SCAN_OFFLOAD_PROFILES_QUERY_CMD,
1694 		.flags = CMD_WANT_SKB,
1695 	};
1696 	int ret, len;
1697 
1698 	ret = iwl_mvm_send_cmd(mvm, &cmd);
1699 	if (ret) {
1700 		IWL_ERR(mvm, "failed to query matched profiles (%d)\n", ret);
1701 		return ret;
1702 	}
1703 
1704 	len = iwl_rx_packet_payload_len(cmd.resp_pkt);
1705 	if (len < sizeof(*query)) {
1706 		IWL_ERR(mvm, "Invalid scan offload profiles query response!\n");
1707 		ret = -EIO;
1708 		goto out_free_resp;
1709 	}
1710 
1711 	query = (void *)cmd.resp_pkt->data;
1712 
1713 	results->matched_profiles = le32_to_cpu(query->matched_profiles);
1714 	memcpy(results->matches, query->matches, sizeof(results->matches));
1715 
1716 #ifdef CONFIG_IWLWIFI_DEBUGFS
1717 	mvm->last_netdetect_scans = le32_to_cpu(query->n_scans_done);
1718 #endif
1719 
1720 out_free_resp:
1721 	iwl_free_resp(&cmd);
1722 	return ret;
1723 }
1724 
1725 static void iwl_mvm_query_netdetect_reasons(struct iwl_mvm *mvm,
1726 					    struct ieee80211_vif *vif)
1727 {
1728 	struct cfg80211_wowlan_nd_info *net_detect = NULL;
1729 	struct cfg80211_wowlan_wakeup wakeup = {
1730 		.pattern_idx = -1,
1731 	};
1732 	struct cfg80211_wowlan_wakeup *wakeup_report = &wakeup;
1733 	struct iwl_mvm_nd_query_results query;
1734 	struct iwl_wowlan_status *fw_status;
1735 	unsigned long matched_profiles;
1736 	u32 reasons = 0;
1737 	int i, j, n_matches, ret;
1738 
1739 	fw_status = iwl_mvm_get_wakeup_status(mvm, vif);
1740 	if (!IS_ERR_OR_NULL(fw_status)) {
1741 		reasons = le32_to_cpu(fw_status->wakeup_reasons);
1742 		kfree(fw_status);
1743 	}
1744 
1745 	if (reasons & IWL_WOWLAN_WAKEUP_BY_RFKILL_DEASSERTED)
1746 		wakeup.rfkill_release = true;
1747 
1748 	if (reasons != IWL_WOWLAN_WAKEUP_BY_NON_WIRELESS)
1749 		goto out;
1750 
1751 	ret = iwl_mvm_netdetect_query_results(mvm, &query);
1752 	if (ret || !query.matched_profiles) {
1753 		wakeup_report = NULL;
1754 		goto out;
1755 	}
1756 
1757 	matched_profiles = query.matched_profiles;
1758 	if (mvm->n_nd_match_sets) {
1759 		n_matches = hweight_long(matched_profiles);
1760 	} else {
1761 		IWL_ERR(mvm, "no net detect match information available\n");
1762 		n_matches = 0;
1763 	}
1764 
1765 	net_detect = kzalloc(sizeof(*net_detect) +
1766 			     (n_matches * sizeof(net_detect->matches[0])),
1767 			     GFP_KERNEL);
1768 	if (!net_detect || !n_matches)
1769 		goto out_report_nd;
1770 
1771 	for_each_set_bit(i, &matched_profiles, mvm->n_nd_match_sets) {
1772 		struct iwl_scan_offload_profile_match *fw_match;
1773 		struct cfg80211_wowlan_nd_match *match;
1774 		int idx, n_channels = 0;
1775 
1776 		fw_match = &query.matches[i];
1777 
1778 		for (j = 0; j < SCAN_OFFLOAD_MATCHING_CHANNELS_LEN; j++)
1779 			n_channels += hweight8(fw_match->matching_channels[j]);
1780 
1781 		match = kzalloc(sizeof(*match) +
1782 				(n_channels * sizeof(*match->channels)),
1783 				GFP_KERNEL);
1784 		if (!match)
1785 			goto out_report_nd;
1786 
1787 		net_detect->matches[net_detect->n_matches++] = match;
1788 
1789 		/* We inverted the order of the SSIDs in the scan
1790 		 * request, so invert the index here.
1791 		 */
1792 		idx = mvm->n_nd_match_sets - i - 1;
1793 		match->ssid.ssid_len = mvm->nd_match_sets[idx].ssid.ssid_len;
1794 		memcpy(match->ssid.ssid, mvm->nd_match_sets[idx].ssid.ssid,
1795 		       match->ssid.ssid_len);
1796 
1797 		if (mvm->n_nd_channels < n_channels)
1798 			continue;
1799 
1800 		for (j = 0; j < SCAN_OFFLOAD_MATCHING_CHANNELS_LEN * 8; j++)
1801 			if (fw_match->matching_channels[j / 8] & (BIT(j % 8)))
1802 				match->channels[match->n_channels++] =
1803 					mvm->nd_channels[j]->center_freq;
1804 	}
1805 
1806 out_report_nd:
1807 	wakeup.net_detect = net_detect;
1808 out:
1809 	iwl_mvm_free_nd(mvm);
1810 
1811 	mutex_unlock(&mvm->mutex);
1812 	ieee80211_report_wowlan_wakeup(vif, wakeup_report, GFP_KERNEL);
1813 
1814 	if (net_detect) {
1815 		for (i = 0; i < net_detect->n_matches; i++)
1816 			kfree(net_detect->matches[i]);
1817 		kfree(net_detect);
1818 	}
1819 }
1820 
1821 static void iwl_mvm_read_d3_sram(struct iwl_mvm *mvm)
1822 {
1823 #ifdef CONFIG_IWLWIFI_DEBUGFS
1824 	const struct fw_img *img = &mvm->fw->img[IWL_UCODE_WOWLAN];
1825 	u32 len = img->sec[IWL_UCODE_SECTION_DATA].len;
1826 	u32 offs = img->sec[IWL_UCODE_SECTION_DATA].offset;
1827 
1828 	if (!mvm->store_d3_resume_sram)
1829 		return;
1830 
1831 	if (!mvm->d3_resume_sram) {
1832 		mvm->d3_resume_sram = kzalloc(len, GFP_KERNEL);
1833 		if (!mvm->d3_resume_sram)
1834 			return;
1835 	}
1836 
1837 	iwl_trans_read_mem_bytes(mvm->trans, offs, mvm->d3_resume_sram, len);
1838 #endif
1839 }
1840 
1841 static void iwl_mvm_d3_disconnect_iter(void *data, u8 *mac,
1842 				       struct ieee80211_vif *vif)
1843 {
1844 	/* skip the one we keep connection on */
1845 	if (data == vif)
1846 		return;
1847 
1848 	if (vif->type == NL80211_IFTYPE_STATION)
1849 		ieee80211_resume_disconnect(vif);
1850 }
1851 
1852 static int __iwl_mvm_resume(struct iwl_mvm *mvm, bool test)
1853 {
1854 	struct ieee80211_vif *vif = NULL;
1855 	int ret = 1;
1856 	enum iwl_d3_status d3_status;
1857 	bool keep = false;
1858 	bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
1859 					 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
1860 	bool d0i3_first = fw_has_capa(&mvm->fw->ucode_capa,
1861 				      IWL_UCODE_TLV_CAPA_D0I3_END_FIRST);
1862 
1863 	mutex_lock(&mvm->mutex);
1864 
1865 	/* get the BSS vif pointer again */
1866 	vif = iwl_mvm_get_bss_vif(mvm);
1867 	if (IS_ERR_OR_NULL(vif))
1868 		goto err;
1869 
1870 	ret = iwl_trans_d3_resume(mvm->trans, &d3_status, test, !unified_image);
1871 	if (ret)
1872 		goto err;
1873 
1874 	if (d3_status != IWL_D3_STATUS_ALIVE) {
1875 		IWL_INFO(mvm, "Device was reset during suspend\n");
1876 		goto err;
1877 	}
1878 
1879 	/* query SRAM first in case we want event logging */
1880 	iwl_mvm_read_d3_sram(mvm);
1881 
1882 	if (d0i3_first) {
1883 		ret = iwl_mvm_send_cmd_pdu(mvm, D0I3_END_CMD, 0, 0, NULL);
1884 		if (ret < 0) {
1885 			IWL_ERR(mvm, "Failed to send D0I3_END_CMD first (%d)\n",
1886 				ret);
1887 			goto err;
1888 		}
1889 	}
1890 
1891 	/*
1892 	 * Query the current location and source from the D3 firmware so we
1893 	 * can play it back when we re-intiailize the D0 firmware
1894 	 */
1895 	iwl_mvm_update_changed_regdom(mvm);
1896 
1897 	if (!unified_image)
1898 		/*  Re-configure default SAR profile */
1899 		iwl_mvm_sar_select_profile(mvm, 1, 1);
1900 
1901 	if (mvm->net_detect) {
1902 		/* If this is a non-unified image, we restart the FW,
1903 		 * so no need to stop the netdetect scan.  If that
1904 		 * fails, continue and try to get the wake-up reasons,
1905 		 * but trigger a HW restart by keeping a failure code
1906 		 * in ret.
1907 		 */
1908 		if (unified_image)
1909 			ret = iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_NETDETECT,
1910 						false);
1911 
1912 		iwl_mvm_query_netdetect_reasons(mvm, vif);
1913 		/* has unlocked the mutex, so skip that */
1914 		goto out;
1915 	} else {
1916 		keep = iwl_mvm_query_wakeup_reasons(mvm, vif);
1917 #ifdef CONFIG_IWLWIFI_DEBUGFS
1918 		if (keep)
1919 			mvm->keep_vif = vif;
1920 #endif
1921 		/* has unlocked the mutex, so skip that */
1922 		goto out_iterate;
1923 	}
1924 
1925 err:
1926 	iwl_mvm_free_nd(mvm);
1927 	mutex_unlock(&mvm->mutex);
1928 
1929 out_iterate:
1930 	if (!test)
1931 		ieee80211_iterate_active_interfaces_rtnl(mvm->hw,
1932 			IEEE80211_IFACE_ITER_NORMAL,
1933 			iwl_mvm_d3_disconnect_iter, keep ? vif : NULL);
1934 
1935 out:
1936 	/* no need to reset the device in unified images, if successful */
1937 	if (unified_image && !ret) {
1938 		/* nothing else to do if we already sent D0I3_END_CMD */
1939 		if (d0i3_first)
1940 			return 0;
1941 
1942 		ret = iwl_mvm_send_cmd_pdu(mvm, D0I3_END_CMD, 0, 0, NULL);
1943 		if (!ret)
1944 			return 0;
1945 	}
1946 
1947 	/*
1948 	 * Reconfigure the device in one of the following cases:
1949 	 * 1. We are not using a unified image
1950 	 * 2. We are using a unified image but had an error while exiting D3
1951 	 */
1952 	set_bit(IWL_MVM_STATUS_HW_RESTART_REQUESTED, &mvm->status);
1953 	set_bit(IWL_MVM_STATUS_D3_RECONFIG, &mvm->status);
1954 	/*
1955 	 * When switching images we return 1, which causes mac80211
1956 	 * to do a reconfig with IEEE80211_RECONFIG_TYPE_RESTART.
1957 	 * This type of reconfig calls iwl_mvm_restart_complete(),
1958 	 * where we unref the IWL_MVM_REF_UCODE_DOWN, so we need
1959 	 * to take the reference here.
1960 	 */
1961 	iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
1962 
1963 	return 1;
1964 }
1965 
1966 static int iwl_mvm_resume_d3(struct iwl_mvm *mvm)
1967 {
1968 	iwl_trans_resume(mvm->trans);
1969 
1970 	return __iwl_mvm_resume(mvm, false);
1971 }
1972 
1973 static int iwl_mvm_resume_d0i3(struct iwl_mvm *mvm)
1974 {
1975 	bool exit_now;
1976 	enum iwl_d3_status d3_status;
1977 	struct iwl_trans *trans = mvm->trans;
1978 
1979 	iwl_trans_d3_resume(trans, &d3_status, false, false);
1980 
1981 	/*
1982 	 * make sure to clear D0I3_DEFER_WAKEUP before
1983 	 * calling iwl_trans_resume(), which might wait
1984 	 * for d0i3 exit completion.
1985 	 */
1986 	mutex_lock(&mvm->d0i3_suspend_mutex);
1987 	__clear_bit(D0I3_DEFER_WAKEUP, &mvm->d0i3_suspend_flags);
1988 	exit_now = __test_and_clear_bit(D0I3_PENDING_WAKEUP,
1989 					&mvm->d0i3_suspend_flags);
1990 	mutex_unlock(&mvm->d0i3_suspend_mutex);
1991 	if (exit_now) {
1992 		IWL_DEBUG_RPM(mvm, "Run deferred d0i3 exit\n");
1993 		_iwl_mvm_exit_d0i3(mvm);
1994 	}
1995 
1996 	iwl_trans_resume(trans);
1997 
1998 	if (iwl_mvm_enter_d0i3_on_suspend(mvm)) {
1999 		int ret = iwl_mvm_exit_d0i3(mvm->hw->priv);
2000 
2001 		if (ret)
2002 			return ret;
2003 		/*
2004 		 * d0i3 exit will be deferred until reconfig_complete.
2005 		 * make sure there we are out of d0i3.
2006 		 */
2007 	}
2008 	return 0;
2009 }
2010 
2011 int iwl_mvm_resume(struct ieee80211_hw *hw)
2012 {
2013 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2014 	int ret;
2015 
2016 	if (mvm->trans->system_pm_mode == IWL_PLAT_PM_MODE_D0I3)
2017 		ret = iwl_mvm_resume_d0i3(mvm);
2018 	else
2019 		ret = iwl_mvm_resume_d3(mvm);
2020 
2021 	mvm->trans->system_pm_mode = IWL_PLAT_PM_MODE_DISABLED;
2022 
2023 	iwl_mvm_resume_tcm(mvm);
2024 
2025 	iwl_fw_runtime_resume(&mvm->fwrt);
2026 
2027 	return ret;
2028 }
2029 
2030 void iwl_mvm_set_wakeup(struct ieee80211_hw *hw, bool enabled)
2031 {
2032 	struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2033 
2034 	device_set_wakeup_enable(mvm->trans->dev, enabled);
2035 }
2036 
2037 #ifdef CONFIG_IWLWIFI_DEBUGFS
2038 static int iwl_mvm_d3_test_open(struct inode *inode, struct file *file)
2039 {
2040 	struct iwl_mvm *mvm = inode->i_private;
2041 	int err;
2042 
2043 	if (mvm->d3_test_active)
2044 		return -EBUSY;
2045 
2046 	file->private_data = inode->i_private;
2047 
2048 	ieee80211_stop_queues(mvm->hw);
2049 	synchronize_net();
2050 
2051 	mvm->trans->system_pm_mode = IWL_PLAT_PM_MODE_D3;
2052 
2053 	iwl_mvm_pause_tcm(mvm, true);
2054 
2055 	iwl_fw_runtime_suspend(&mvm->fwrt);
2056 
2057 	/* start pseudo D3 */
2058 	rtnl_lock();
2059 	err = __iwl_mvm_suspend(mvm->hw, mvm->hw->wiphy->wowlan_config, true);
2060 	rtnl_unlock();
2061 	if (err > 0)
2062 		err = -EINVAL;
2063 	if (err) {
2064 		ieee80211_wake_queues(mvm->hw);
2065 		return err;
2066 	}
2067 	mvm->d3_test_active = true;
2068 	mvm->keep_vif = NULL;
2069 	return 0;
2070 }
2071 
2072 static ssize_t iwl_mvm_d3_test_read(struct file *file, char __user *user_buf,
2073 				    size_t count, loff_t *ppos)
2074 {
2075 	struct iwl_mvm *mvm = file->private_data;
2076 	u32 pme_asserted;
2077 
2078 	while (true) {
2079 		/* read pme_ptr if available */
2080 		if (mvm->d3_test_pme_ptr) {
2081 			pme_asserted = iwl_trans_read_mem32(mvm->trans,
2082 						mvm->d3_test_pme_ptr);
2083 			if (pme_asserted)
2084 				break;
2085 		}
2086 
2087 		if (msleep_interruptible(100))
2088 			break;
2089 	}
2090 
2091 	return 0;
2092 }
2093 
2094 static void iwl_mvm_d3_test_disconn_work_iter(void *_data, u8 *mac,
2095 					      struct ieee80211_vif *vif)
2096 {
2097 	/* skip the one we keep connection on */
2098 	if (_data == vif)
2099 		return;
2100 
2101 	if (vif->type == NL80211_IFTYPE_STATION)
2102 		ieee80211_connection_loss(vif);
2103 }
2104 
2105 static int iwl_mvm_d3_test_release(struct inode *inode, struct file *file)
2106 {
2107 	struct iwl_mvm *mvm = inode->i_private;
2108 	bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
2109 					 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
2110 
2111 	mvm->d3_test_active = false;
2112 
2113 	rtnl_lock();
2114 	__iwl_mvm_resume(mvm, true);
2115 	rtnl_unlock();
2116 
2117 	iwl_mvm_resume_tcm(mvm);
2118 
2119 	iwl_fw_runtime_resume(&mvm->fwrt);
2120 
2121 	mvm->trans->system_pm_mode = IWL_PLAT_PM_MODE_DISABLED;
2122 
2123 	iwl_abort_notification_waits(&mvm->notif_wait);
2124 	if (!unified_image) {
2125 		int remaining_time = 10;
2126 
2127 		ieee80211_restart_hw(mvm->hw);
2128 
2129 		/* wait for restart and disconnect all interfaces */
2130 		while (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) &&
2131 		       remaining_time > 0) {
2132 			remaining_time--;
2133 			msleep(1000);
2134 		}
2135 
2136 		if (remaining_time == 0)
2137 			IWL_ERR(mvm, "Timed out waiting for HW restart!\n");
2138 	}
2139 
2140 	ieee80211_iterate_active_interfaces_atomic(
2141 		mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
2142 		iwl_mvm_d3_test_disconn_work_iter, mvm->keep_vif);
2143 
2144 	ieee80211_wake_queues(mvm->hw);
2145 
2146 	return 0;
2147 }
2148 
2149 const struct file_operations iwl_dbgfs_d3_test_ops = {
2150 	.llseek = no_llseek,
2151 	.open = iwl_mvm_d3_test_open,
2152 	.read = iwl_mvm_d3_test_read,
2153 	.release = iwl_mvm_d3_test_release,
2154 };
2155 #endif
2156