blob: 207d8ae1e1160d6239a537981d30e659161fc40d [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
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 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Luciano Coelho65ff5562015-03-20 13:35:47 +02009 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Matti Gottlieb23ae6122015-12-31 18:18:02 +020010 * Copyright(c) 2016 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010028 *
29 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020035 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Luciano Coelho65ff5562015-03-20 13:35:47 +020036 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Matti Gottlieb23ae6122015-12-31 18:18:02 +020037 * Copyright(c) 2016 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010038 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 *
44 * * Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * * Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in
48 * the documentation and/or other materials provided with the
49 * distribution.
50 * * Neither the name Intel Corporation nor the names of its
51 * contributors may be used to endorse or promote products derived
52 * from this software without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 *****************************************************************************/
67
Johannes Bergf444eb12013-02-26 12:04:18 +010068#include <linux/etherdevice.h>
Johannes Bergf0c26462013-01-22 20:41:58 +010069#include <linux/ip.h>
Johannes Bergdebff612013-05-14 13:53:45 +020070#include <linux/fs.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010071#include <net/cfg80211.h>
72#include <net/ipv6.h>
Johannes Bergf0c26462013-01-22 20:41:58 +010073#include <net/tcp.h>
Johannes Bergf7fc5982013-08-20 13:04:10 +020074#include <net/addrconf.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010075#include "iwl-modparams.h"
76#include "fw-api.h"
77#include "mvm.h"
78
79void iwl_mvm_set_rekey_data(struct ieee80211_hw *hw,
80 struct ieee80211_vif *vif,
81 struct cfg80211_gtk_rekey_data *data)
82{
83 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
84 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
85
86 if (iwlwifi_mod_params.sw_crypto)
87 return;
88
89 mutex_lock(&mvm->mutex);
90
91 memcpy(mvmvif->rekey_data.kek, data->kek, NL80211_KEK_LEN);
92 memcpy(mvmvif->rekey_data.kck, data->kck, NL80211_KCK_LEN);
93 mvmvif->rekey_data.replay_ctr =
94 cpu_to_le64(be64_to_cpup((__be64 *)&data->replay_ctr));
95 mvmvif->rekey_data.valid = true;
96
97 mutex_unlock(&mvm->mutex);
98}
99
100#if IS_ENABLED(CONFIG_IPV6)
101void iwl_mvm_ipv6_addr_change(struct ieee80211_hw *hw,
102 struct ieee80211_vif *vif,
103 struct inet6_dev *idev)
104{
105 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
106 struct inet6_ifaddr *ifa;
107 int idx = 0;
108
Sara Sharonc97dab42015-11-19 11:53:49 +0200109 memset(mvmvif->tentative_addrs, 0, sizeof(mvmvif->tentative_addrs));
110
Emmanuel Grumbacha3777e02013-02-10 13:07:08 +0200111 read_lock_bh(&idev->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100112 list_for_each_entry(ifa, &idev->addr_list, if_list) {
113 mvmvif->target_ipv6_addrs[idx] = ifa->addr;
Sara Sharonc97dab42015-11-19 11:53:49 +0200114 if (ifa->flags & IFA_F_TENTATIVE)
115 __set_bit(idx, mvmvif->tentative_addrs);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100116 idx++;
Johannes Berg5369d6c2013-07-08 11:17:06 +0200117 if (idx >= IWL_PROTO_OFFLOAD_NUM_IPV6_ADDRS_MAX)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100118 break;
119 }
Emmanuel Grumbacha3777e02013-02-10 13:07:08 +0200120 read_unlock_bh(&idev->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100121
122 mvmvif->num_target_ipv6_addrs = idx;
123}
124#endif
125
126void iwl_mvm_set_default_unicast_key(struct ieee80211_hw *hw,
127 struct ieee80211_vif *vif, int idx)
128{
129 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
130
131 mvmvif->tx_key_idx = idx;
132}
133
134static void iwl_mvm_convert_p1k(u16 *p1k, __le16 *out)
135{
136 int i;
137
138 for (i = 0; i < IWL_P1K_SIZE; i++)
139 out[i] = cpu_to_le16(p1k[i]);
140}
141
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200142static const u8 *iwl_mvm_find_max_pn(struct ieee80211_key_conf *key,
143 struct iwl_mvm_key_pn *ptk_pn,
144 struct ieee80211_key_seq *seq,
145 int tid, int queues)
146{
147 const u8 *ret = seq->ccmp.pn;
148 int i;
149
150 /* get the PN from mac80211, used on the default queue */
151 ieee80211_get_key_rx_seq(key, tid, seq);
152
153 /* and use the internal data for the other queues */
154 for (i = 1; i < queues; i++) {
155 const u8 *tmp = ptk_pn->q[i].pn[tid];
156
157 if (memcmp(ret, tmp, IEEE80211_CCMP_PN_LEN) <= 0)
158 ret = tmp;
159 }
160
161 return ret;
162}
163
Johannes Berg8ca151b2013-01-24 14:25:36 +0100164struct wowlan_key_data {
165 struct iwl_wowlan_rsc_tsc_params_cmd *rsc_tsc;
166 struct iwl_wowlan_tkip_params_cmd *tkip;
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200167 bool error, use_rsc_tsc, use_tkip, configure_keys;
Johannes Berg5312e542013-07-22 18:26:56 +0200168 int wep_key_idx;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100169};
170
171static void iwl_mvm_wowlan_program_keys(struct ieee80211_hw *hw,
172 struct ieee80211_vif *vif,
173 struct ieee80211_sta *sta,
174 struct ieee80211_key_conf *key,
175 void *_data)
176{
177 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
178 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
179 struct wowlan_key_data *data = _data;
180 struct aes_sc *aes_sc, *aes_tx_sc = NULL;
181 struct tkip_sc *tkip_sc, *tkip_tx_sc = NULL;
182 struct iwl_p1k_cache *rx_p1ks;
183 u8 *rx_mic_key;
184 struct ieee80211_key_seq seq;
185 u32 cur_rx_iv32 = 0;
186 u16 p1k[IWL_P1K_SIZE];
187 int ret, i;
188
Johannes Berg8ca151b2013-01-24 14:25:36 +0100189 switch (key->cipher) {
190 case WLAN_CIPHER_SUITE_WEP40:
191 case WLAN_CIPHER_SUITE_WEP104: { /* hack it for now */
192 struct {
193 struct iwl_mvm_wep_key_cmd wep_key_cmd;
194 struct iwl_mvm_wep_key wep_key;
195 } __packed wkc = {
196 .wep_key_cmd.mac_id_n_color =
197 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
198 mvmvif->color)),
199 .wep_key_cmd.num_keys = 1,
200 /* firmware sets STA_KEY_FLG_WEP_13BYTES */
201 .wep_key_cmd.decryption_type = STA_KEY_FLG_WEP,
202 .wep_key.key_index = key->keyidx,
203 .wep_key.key_size = key->keylen,
204 };
205
206 /*
207 * This will fail -- the key functions don't set support
208 * pairwise WEP keys. However, that's better than silently
209 * failing WoWLAN. Or maybe not?
210 */
211 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
212 break;
213
214 memcpy(&wkc.wep_key.key[3], key->key, key->keylen);
215 if (key->keyidx == mvmvif->tx_key_idx) {
216 /* TX key must be at offset 0 */
217 wkc.wep_key.key_offset = 0;
218 } else {
219 /* others start at 1 */
Johannes Berg5312e542013-07-22 18:26:56 +0200220 data->wep_key_idx++;
221 wkc.wep_key.key_offset = data->wep_key_idx;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100222 }
223
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200224 if (data->configure_keys) {
225 mutex_lock(&mvm->mutex);
226 ret = iwl_mvm_send_cmd_pdu(mvm, WEP_KEY, 0,
227 sizeof(wkc), &wkc);
228 data->error = ret != 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100229
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200230 mvm->ptk_ivlen = key->iv_len;
231 mvm->ptk_icvlen = key->icv_len;
232 mvm->gtk_ivlen = key->iv_len;
233 mvm->gtk_icvlen = key->icv_len;
234 mutex_unlock(&mvm->mutex);
235 }
Johannes Bergf444eb12013-02-26 12:04:18 +0100236
Johannes Berg8ca151b2013-01-24 14:25:36 +0100237 /* don't upload key again */
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200238 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100239 }
240 default:
241 data->error = true;
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200242 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100243 case WLAN_CIPHER_SUITE_AES_CMAC:
244 /*
245 * Ignore CMAC keys -- the WoWLAN firmware doesn't support them
246 * but we also shouldn't abort suspend due to that. It does have
247 * support for the IGTK key renewal, but doesn't really use the
248 * IGTK for anything. This means we could spuriously wake up or
249 * be deauthenticated, but that was considered acceptable.
250 */
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200251 return;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100252 case WLAN_CIPHER_SUITE_TKIP:
253 if (sta) {
Eliad Peller1ad4f632016-02-14 13:56:36 +0200254 u64 pn64;
255
Johannes Berg8ca151b2013-01-24 14:25:36 +0100256 tkip_sc = data->rsc_tsc->all_tsc_rsc.tkip.unicast_rsc;
257 tkip_tx_sc = &data->rsc_tsc->all_tsc_rsc.tkip.tsc;
258
259 rx_p1ks = data->tkip->rx_uni;
260
Eliad Peller1ad4f632016-02-14 13:56:36 +0200261 pn64 = atomic64_read(&key->tx_pn);
262 tkip_tx_sc->iv16 = cpu_to_le16(TKIP_PN_TO_IV16(pn64));
263 tkip_tx_sc->iv32 = cpu_to_le32(TKIP_PN_TO_IV32(pn64));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100264
Eliad Peller1ad4f632016-02-14 13:56:36 +0200265 ieee80211_get_tkip_p1k_iv(key, TKIP_PN_TO_IV32(pn64),
266 p1k);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100267 iwl_mvm_convert_p1k(p1k, data->tkip->tx.p1k);
268
269 memcpy(data->tkip->mic_keys.tx,
270 &key->key[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY],
271 IWL_MIC_KEY_SIZE);
272
273 rx_mic_key = data->tkip->mic_keys.rx_unicast;
274 } else {
275 tkip_sc =
276 data->rsc_tsc->all_tsc_rsc.tkip.multicast_rsc;
277 rx_p1ks = data->tkip->rx_multi;
278 rx_mic_key = data->tkip->mic_keys.rx_mcast;
279 }
280
281 /*
282 * For non-QoS this relies on the fact that both the uCode and
283 * mac80211 use TID 0 (as they need to to avoid replay attacks)
284 * for checking the IV in the frames.
285 */
286 for (i = 0; i < IWL_NUM_RSC; i++) {
287 ieee80211_get_key_rx_seq(key, i, &seq);
288 tkip_sc[i].iv16 = cpu_to_le16(seq.tkip.iv16);
289 tkip_sc[i].iv32 = cpu_to_le32(seq.tkip.iv32);
290 /* wrapping isn't allowed, AP must rekey */
291 if (seq.tkip.iv32 > cur_rx_iv32)
292 cur_rx_iv32 = seq.tkip.iv32;
293 }
294
295 ieee80211_get_tkip_rx_p1k(key, vif->bss_conf.bssid,
296 cur_rx_iv32, p1k);
297 iwl_mvm_convert_p1k(p1k, rx_p1ks[0].p1k);
298 ieee80211_get_tkip_rx_p1k(key, vif->bss_conf.bssid,
299 cur_rx_iv32 + 1, p1k);
300 iwl_mvm_convert_p1k(p1k, rx_p1ks[1].p1k);
301
302 memcpy(rx_mic_key,
303 &key->key[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY],
304 IWL_MIC_KEY_SIZE);
305
306 data->use_tkip = true;
307 data->use_rsc_tsc = true;
308 break;
309 case WLAN_CIPHER_SUITE_CCMP:
310 if (sta) {
Johannes Berg6645d5e2015-09-15 09:58:53 +0200311 u64 pn64;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100312
313 aes_sc = data->rsc_tsc->all_tsc_rsc.aes.unicast_rsc;
314 aes_tx_sc = &data->rsc_tsc->all_tsc_rsc.aes.tsc;
315
Johannes Berg6645d5e2015-09-15 09:58:53 +0200316 pn64 = atomic64_read(&key->tx_pn);
317 aes_tx_sc->pn = cpu_to_le64(pn64);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100318 } else {
319 aes_sc = data->rsc_tsc->all_tsc_rsc.aes.multicast_rsc;
320 }
321
322 /*
323 * For non-QoS this relies on the fact that both the uCode and
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200324 * mac80211/our RX code use TID 0 for checking the PN.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100325 */
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200326 if (sta && iwl_mvm_has_new_rx_api(mvm)) {
327 struct iwl_mvm_sta *mvmsta;
328 struct iwl_mvm_key_pn *ptk_pn;
329 const u8 *pn;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100330
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200331 mvmsta = iwl_mvm_sta_from_mac80211(sta);
332 ptk_pn = rcu_dereference_protected(
333 mvmsta->ptk_pn[key->keyidx],
334 lockdep_is_held(&mvm->mutex));
335 if (WARN_ON(!ptk_pn))
336 break;
337
338 for (i = 0; i < IWL_MAX_TID_COUNT; i++) {
339 pn = iwl_mvm_find_max_pn(key, ptk_pn, &seq, i,
340 mvm->trans->num_rx_queues);
341 aes_sc[i].pn = cpu_to_le64((u64)pn[5] |
342 ((u64)pn[4] << 8) |
343 ((u64)pn[3] << 16) |
344 ((u64)pn[2] << 24) |
345 ((u64)pn[1] << 32) |
346 ((u64)pn[0] << 40));
347 }
348 } else {
349 for (i = 0; i < IWL_NUM_RSC; i++) {
350 u8 *pn = seq.ccmp.pn;
351
352 ieee80211_get_key_rx_seq(key, i, &seq);
353 aes_sc[i].pn = cpu_to_le64((u64)pn[5] |
354 ((u64)pn[4] << 8) |
355 ((u64)pn[3] << 16) |
356 ((u64)pn[2] << 24) |
357 ((u64)pn[1] << 32) |
358 ((u64)pn[0] << 40));
359 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100360 }
361 data->use_rsc_tsc = true;
362 break;
363 }
364
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200365 if (data->configure_keys) {
366 mutex_lock(&mvm->mutex);
Johannes Berg5312e542013-07-22 18:26:56 +0200367 /*
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200368 * The D3 firmware hardcodes the key offset 0 as the key it
369 * uses to transmit packets to the AP, i.e. the PTK.
Johannes Berg5312e542013-07-22 18:26:56 +0200370 */
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200371 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) {
372 mvm->ptk_ivlen = key->iv_len;
373 mvm->ptk_icvlen = key->icv_len;
374 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, 0);
375 } else {
376 /*
377 * firmware only supports TSC/RSC for a single key,
378 * so if there are multiple keep overwriting them
379 * with new ones -- this relies on mac80211 doing
380 * list_add_tail().
381 */
382 mvm->gtk_ivlen = key->iv_len;
383 mvm->gtk_icvlen = key->icv_len;
384 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, 1);
385 }
386 mutex_unlock(&mvm->mutex);
387 data->error = ret != 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100388 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100389}
390
391static int iwl_mvm_send_patterns(struct iwl_mvm *mvm,
392 struct cfg80211_wowlan *wowlan)
393{
394 struct iwl_wowlan_patterns_cmd *pattern_cmd;
395 struct iwl_host_cmd cmd = {
396 .id = WOWLAN_PATTERNS,
397 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100398 };
399 int i, err;
400
401 if (!wowlan->n_patterns)
402 return 0;
403
404 cmd.len[0] = sizeof(*pattern_cmd) +
405 wowlan->n_patterns * sizeof(struct iwl_wowlan_pattern);
406
407 pattern_cmd = kmalloc(cmd.len[0], GFP_KERNEL);
408 if (!pattern_cmd)
409 return -ENOMEM;
410
411 pattern_cmd->n_patterns = cpu_to_le32(wowlan->n_patterns);
412
413 for (i = 0; i < wowlan->n_patterns; i++) {
414 int mask_len = DIV_ROUND_UP(wowlan->patterns[i].pattern_len, 8);
415
416 memcpy(&pattern_cmd->patterns[i].mask,
417 wowlan->patterns[i].mask, mask_len);
418 memcpy(&pattern_cmd->patterns[i].pattern,
419 wowlan->patterns[i].pattern,
420 wowlan->patterns[i].pattern_len);
421 pattern_cmd->patterns[i].mask_size = mask_len;
422 pattern_cmd->patterns[i].pattern_size =
423 wowlan->patterns[i].pattern_len;
424 }
425
426 cmd.data[0] = pattern_cmd;
427 err = iwl_mvm_send_cmd(mvm, &cmd);
428 kfree(pattern_cmd);
429 return err;
430}
431
Johannes Bergf0c26462013-01-22 20:41:58 +0100432enum iwl_mvm_tcp_packet_type {
433 MVM_TCP_TX_SYN,
434 MVM_TCP_RX_SYNACK,
435 MVM_TCP_TX_DATA,
436 MVM_TCP_RX_ACK,
437 MVM_TCP_RX_WAKE,
438 MVM_TCP_TX_FIN,
439};
440
441static __le16 pseudo_hdr_check(int len, __be32 saddr, __be32 daddr)
442{
443 __sum16 check = tcp_v4_check(len, saddr, daddr, 0);
444 return cpu_to_le16(be16_to_cpu((__force __be16)check));
445}
446
Oren Givonb002c7e2013-06-12 20:37:03 +0300447static void iwl_mvm_build_tcp_packet(struct ieee80211_vif *vif,
Johannes Bergf0c26462013-01-22 20:41:58 +0100448 struct cfg80211_wowlan_tcp *tcp,
449 void *_pkt, u8 *mask,
450 __le16 *pseudo_hdr_csum,
451 enum iwl_mvm_tcp_packet_type ptype)
452{
453 struct {
454 struct ethhdr eth;
455 struct iphdr ip;
456 struct tcphdr tcp;
457 u8 data[];
458 } __packed *pkt = _pkt;
459 u16 ip_tot_len = sizeof(struct iphdr) + sizeof(struct tcphdr);
460 int i;
461
462 pkt->eth.h_proto = cpu_to_be16(ETH_P_IP),
463 pkt->ip.version = 4;
464 pkt->ip.ihl = 5;
465 pkt->ip.protocol = IPPROTO_TCP;
466
467 switch (ptype) {
468 case MVM_TCP_TX_SYN:
469 case MVM_TCP_TX_DATA:
470 case MVM_TCP_TX_FIN:
471 memcpy(pkt->eth.h_dest, tcp->dst_mac, ETH_ALEN);
472 memcpy(pkt->eth.h_source, vif->addr, ETH_ALEN);
473 pkt->ip.ttl = 128;
474 pkt->ip.saddr = tcp->src;
475 pkt->ip.daddr = tcp->dst;
476 pkt->tcp.source = cpu_to_be16(tcp->src_port);
477 pkt->tcp.dest = cpu_to_be16(tcp->dst_port);
478 /* overwritten for TX SYN later */
479 pkt->tcp.doff = sizeof(struct tcphdr) / 4;
480 pkt->tcp.window = cpu_to_be16(65000);
481 break;
482 case MVM_TCP_RX_SYNACK:
483 case MVM_TCP_RX_ACK:
484 case MVM_TCP_RX_WAKE:
485 memcpy(pkt->eth.h_dest, vif->addr, ETH_ALEN);
486 memcpy(pkt->eth.h_source, tcp->dst_mac, ETH_ALEN);
487 pkt->ip.saddr = tcp->dst;
488 pkt->ip.daddr = tcp->src;
489 pkt->tcp.source = cpu_to_be16(tcp->dst_port);
490 pkt->tcp.dest = cpu_to_be16(tcp->src_port);
491 break;
492 default:
493 WARN_ON(1);
494 return;
495 }
496
497 switch (ptype) {
498 case MVM_TCP_TX_SYN:
499 /* firmware assumes 8 option bytes - 8 NOPs for now */
500 memset(pkt->data, 0x01, 8);
501 ip_tot_len += 8;
502 pkt->tcp.doff = (sizeof(struct tcphdr) + 8) / 4;
503 pkt->tcp.syn = 1;
504 break;
505 case MVM_TCP_TX_DATA:
506 ip_tot_len += tcp->payload_len;
507 memcpy(pkt->data, tcp->payload, tcp->payload_len);
508 pkt->tcp.psh = 1;
509 pkt->tcp.ack = 1;
510 break;
511 case MVM_TCP_TX_FIN:
512 pkt->tcp.fin = 1;
513 pkt->tcp.ack = 1;
514 break;
515 case MVM_TCP_RX_SYNACK:
516 pkt->tcp.syn = 1;
517 pkt->tcp.ack = 1;
518 break;
519 case MVM_TCP_RX_ACK:
520 pkt->tcp.ack = 1;
521 break;
522 case MVM_TCP_RX_WAKE:
523 ip_tot_len += tcp->wake_len;
524 pkt->tcp.psh = 1;
525 pkt->tcp.ack = 1;
526 memcpy(pkt->data, tcp->wake_data, tcp->wake_len);
527 break;
528 }
529
530 switch (ptype) {
531 case MVM_TCP_TX_SYN:
532 case MVM_TCP_TX_DATA:
533 case MVM_TCP_TX_FIN:
534 pkt->ip.tot_len = cpu_to_be16(ip_tot_len);
535 pkt->ip.check = ip_fast_csum(&pkt->ip, pkt->ip.ihl);
536 break;
537 case MVM_TCP_RX_WAKE:
538 for (i = 0; i < DIV_ROUND_UP(tcp->wake_len, 8); i++) {
539 u8 tmp = tcp->wake_mask[i];
540 mask[i + 6] |= tmp << 6;
541 if (i + 1 < DIV_ROUND_UP(tcp->wake_len, 8))
542 mask[i + 7] = tmp >> 2;
543 }
544 /* fall through for ethernet/IP/TCP headers mask */
545 case MVM_TCP_RX_SYNACK:
546 case MVM_TCP_RX_ACK:
547 mask[0] = 0xff; /* match ethernet */
548 /*
549 * match ethernet, ip.version, ip.ihl
550 * the ip.ihl half byte is really masked out by firmware
551 */
552 mask[1] = 0x7f;
553 mask[2] = 0x80; /* match ip.protocol */
554 mask[3] = 0xfc; /* match ip.saddr, ip.daddr */
555 mask[4] = 0x3f; /* match ip.daddr, tcp.source, tcp.dest */
556 mask[5] = 0x80; /* match tcp flags */
557 /* leave rest (0 or set for MVM_TCP_RX_WAKE) */
558 break;
559 };
560
561 *pseudo_hdr_csum = pseudo_hdr_check(ip_tot_len - sizeof(struct iphdr),
562 pkt->ip.saddr, pkt->ip.daddr);
563}
564
565static int iwl_mvm_send_remote_wake_cfg(struct iwl_mvm *mvm,
566 struct ieee80211_vif *vif,
567 struct cfg80211_wowlan_tcp *tcp)
568{
569 struct iwl_wowlan_remote_wake_config *cfg;
570 struct iwl_host_cmd cmd = {
571 .id = REMOTE_WAKE_CONFIG_CMD,
572 .len = { sizeof(*cfg), },
573 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
Johannes Bergf0c26462013-01-22 20:41:58 +0100574 };
575 int ret;
576
577 if (!tcp)
578 return 0;
579
580 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
581 if (!cfg)
582 return -ENOMEM;
583 cmd.data[0] = cfg;
584
585 cfg->max_syn_retries = 10;
586 cfg->max_data_retries = 10;
587 cfg->tcp_syn_ack_timeout = 1; /* seconds */
588 cfg->tcp_ack_timeout = 1; /* seconds */
589
590 /* SYN (TX) */
591 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300592 vif, tcp, cfg->syn_tx.data, NULL,
Johannes Bergf0c26462013-01-22 20:41:58 +0100593 &cfg->syn_tx.info.tcp_pseudo_header_checksum,
594 MVM_TCP_TX_SYN);
595 cfg->syn_tx.info.tcp_payload_length = 0;
596
597 /* SYN/ACK (RX) */
598 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300599 vif, tcp, cfg->synack_rx.data, cfg->synack_rx.rx_mask,
Johannes Bergf0c26462013-01-22 20:41:58 +0100600 &cfg->synack_rx.info.tcp_pseudo_header_checksum,
601 MVM_TCP_RX_SYNACK);
602 cfg->synack_rx.info.tcp_payload_length = 0;
603
604 /* KEEPALIVE/ACK (TX) */
605 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300606 vif, tcp, cfg->keepalive_tx.data, NULL,
Johannes Bergf0c26462013-01-22 20:41:58 +0100607 &cfg->keepalive_tx.info.tcp_pseudo_header_checksum,
608 MVM_TCP_TX_DATA);
609 cfg->keepalive_tx.info.tcp_payload_length =
610 cpu_to_le16(tcp->payload_len);
611 cfg->sequence_number_offset = tcp->payload_seq.offset;
612 /* length must be 0..4, the field is little endian */
613 cfg->sequence_number_length = tcp->payload_seq.len;
614 cfg->initial_sequence_number = cpu_to_le32(tcp->payload_seq.start);
615 cfg->keepalive_interval = cpu_to_le16(tcp->data_interval);
616 if (tcp->payload_tok.len) {
617 cfg->token_offset = tcp->payload_tok.offset;
618 cfg->token_length = tcp->payload_tok.len;
619 cfg->num_tokens =
620 cpu_to_le16(tcp->tokens_size % tcp->payload_tok.len);
621 memcpy(cfg->tokens, tcp->payload_tok.token_stream,
622 tcp->tokens_size);
623 } else {
624 /* set tokens to max value to almost never run out */
625 cfg->num_tokens = cpu_to_le16(65535);
626 }
627
628 /* ACK (RX) */
629 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300630 vif, tcp, cfg->keepalive_ack_rx.data,
Johannes Bergf0c26462013-01-22 20:41:58 +0100631 cfg->keepalive_ack_rx.rx_mask,
632 &cfg->keepalive_ack_rx.info.tcp_pseudo_header_checksum,
633 MVM_TCP_RX_ACK);
634 cfg->keepalive_ack_rx.info.tcp_payload_length = 0;
635
636 /* WAKEUP (RX) */
637 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300638 vif, tcp, cfg->wake_rx.data, cfg->wake_rx.rx_mask,
Johannes Bergf0c26462013-01-22 20:41:58 +0100639 &cfg->wake_rx.info.tcp_pseudo_header_checksum,
640 MVM_TCP_RX_WAKE);
641 cfg->wake_rx.info.tcp_payload_length =
642 cpu_to_le16(tcp->wake_len);
643
644 /* FIN */
645 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300646 vif, tcp, cfg->fin_tx.data, NULL,
Johannes Bergf0c26462013-01-22 20:41:58 +0100647 &cfg->fin_tx.info.tcp_pseudo_header_checksum,
648 MVM_TCP_TX_FIN);
649 cfg->fin_tx.info.tcp_payload_length = 0;
650
651 ret = iwl_mvm_send_cmd(mvm, &cmd);
652 kfree(cfg);
653
654 return ret;
655}
656
Johannes Berg8ca151b2013-01-24 14:25:36 +0100657static int iwl_mvm_d3_reprogram(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
658 struct ieee80211_sta *ap_sta)
659{
660 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
661 struct ieee80211_chanctx_conf *ctx;
662 u8 chains_static, chains_dynamic;
663 struct cfg80211_chan_def chandef;
664 int ret, i;
665 struct iwl_binding_cmd binding_cmd = {};
666 struct iwl_time_quota_cmd quota_cmd = {};
667 u32 status;
668
669 /* add back the PHY */
670 if (WARN_ON(!mvmvif->phy_ctxt))
671 return -EINVAL;
672
673 rcu_read_lock();
674 ctx = rcu_dereference(vif->chanctx_conf);
675 if (WARN_ON(!ctx)) {
676 rcu_read_unlock();
677 return -EINVAL;
678 }
679 chandef = ctx->def;
680 chains_static = ctx->rx_chains_static;
681 chains_dynamic = ctx->rx_chains_dynamic;
682 rcu_read_unlock();
683
684 ret = iwl_mvm_phy_ctxt_add(mvm, mvmvif->phy_ctxt, &chandef,
685 chains_static, chains_dynamic);
686 if (ret)
687 return ret;
688
689 /* add back the MAC */
690 mvmvif->uploaded = false;
691
692 if (WARN_ON(!vif->bss_conf.assoc))
693 return -EINVAL;
Luciano Coelhobca49d92014-05-13 17:33:38 +0300694
Johannes Berg8ca151b2013-01-24 14:25:36 +0100695 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100696 if (ret)
697 return ret;
698
699 /* add back binding - XXX refactor? */
700 binding_cmd.id_and_color =
701 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->phy_ctxt->id,
702 mvmvif->phy_ctxt->color));
703 binding_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
704 binding_cmd.phy =
705 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->phy_ctxt->id,
706 mvmvif->phy_ctxt->color));
707 binding_cmd.macs[0] = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
708 mvmvif->color));
709 for (i = 1; i < MAX_MACS_IN_BINDING; i++)
710 binding_cmd.macs[i] = cpu_to_le32(FW_CTXT_INVALID);
711
712 status = 0;
713 ret = iwl_mvm_send_cmd_pdu_status(mvm, BINDING_CONTEXT_CMD,
714 sizeof(binding_cmd), &binding_cmd,
715 &status);
716 if (ret) {
717 IWL_ERR(mvm, "Failed to add binding: %d\n", ret);
718 return ret;
719 }
720
721 if (status) {
722 IWL_ERR(mvm, "Binding command failed: %u\n", status);
723 return -EIO;
724 }
725
Liad Kaufman24afba72015-07-28 18:56:08 +0300726 ret = iwl_mvm_sta_send_to_fw(mvm, ap_sta, false, 0);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100727 if (ret)
728 return ret;
729 rcu_assign_pointer(mvm->fw_id_to_mac_id[mvmvif->ap_sta_id], ap_sta);
730
Johannes Berg3dfd3a92014-08-11 21:37:30 +0200731 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100732 if (ret)
733 return ret;
734
735 /* and some quota */
736 quota_cmd.quotas[0].id_and_color =
737 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->phy_ctxt->id,
738 mvmvif->phy_ctxt->color));
Emmanuel Grumbach9a3daf82014-03-05 10:00:44 +0200739 quota_cmd.quotas[0].quota = cpu_to_le32(IWL_MVM_MAX_QUOTA);
740 quota_cmd.quotas[0].max_duration = cpu_to_le32(IWL_MVM_MAX_QUOTA);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100741
742 for (i = 1; i < MAX_BINDINGS; i++)
743 quota_cmd.quotas[i].id_and_color = cpu_to_le32(FW_CTXT_INVALID);
744
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300745 ret = iwl_mvm_send_cmd_pdu(mvm, TIME_QUOTA_CMD, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100746 sizeof(quota_cmd), &quota_cmd);
747 if (ret)
748 IWL_ERR(mvm, "Failed to send quota: %d\n", ret);
749
Jonathan Doron47c8b152014-11-27 16:55:25 +0200750 if (iwl_mvm_is_lar_supported(mvm) && iwl_mvm_init_fw_regd(mvm))
751 IWL_ERR(mvm, "Failed to initialize D3 LAR information\n");
752
Johannes Berg8ca151b2013-01-24 14:25:36 +0100753 return 0;
754}
755
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200756static int iwl_mvm_get_last_nonqos_seq(struct iwl_mvm *mvm,
757 struct ieee80211_vif *vif)
758{
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200759 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
760 struct iwl_nonqos_seq_query_cmd query_cmd = {
761 .get_set_flag = cpu_to_le32(IWL_NONQOS_SEQ_GET),
762 .mac_id_n_color =
763 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
764 mvmvif->color)),
765 };
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200766 struct iwl_host_cmd cmd = {
767 .id = NON_QOS_TX_COUNTER_CMD,
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300768 .flags = CMD_WANT_SKB,
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200769 };
770 int err;
771 u32 size;
772
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +0300773 cmd.data[0] = &query_cmd;
774 cmd.len[0] = sizeof(query_cmd);
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200775
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200776 err = iwl_mvm_send_cmd(mvm, &cmd);
777 if (err)
778 return err;
779
Johannes Berg65b30342014-01-08 13:16:33 +0100780 size = iwl_rx_packet_payload_len(cmd.resp_pkt);
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200781 if (size < sizeof(__le16)) {
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200782 err = -EINVAL;
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200783 } else {
784 err = le16_to_cpup((__le16 *)cmd.resp_pkt->data);
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +0300785 /* firmware returns next, not last-used seqno */
786 err = (u16) (err - 0x10);
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200787 }
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200788
789 iwl_free_resp(&cmd);
790 return err;
791}
792
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200793void iwl_mvm_set_last_nonqos_seq(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
794{
795 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
796 struct iwl_nonqos_seq_query_cmd query_cmd = {
797 .get_set_flag = cpu_to_le32(IWL_NONQOS_SEQ_SET),
798 .mac_id_n_color =
799 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
800 mvmvif->color)),
801 .value = cpu_to_le16(mvmvif->seqno),
802 };
803
804 /* return if called during restart, not resume from D3 */
805 if (!mvmvif->seqno_valid)
806 return;
807
808 mvmvif->seqno_valid = false;
809
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300810 if (iwl_mvm_send_cmd_pdu(mvm, NON_QOS_TX_COUNTER_CMD, 0,
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200811 sizeof(query_cmd), &query_cmd))
812 IWL_ERR(mvm, "failed to set non-QoS seqno\n");
813}
814
Luciano Coelho671b5822014-09-22 10:59:53 +0300815static int iwl_mvm_switch_to_d3(struct iwl_mvm *mvm)
Eliad Peller1a95c8d2013-11-21 19:19:52 +0200816{
Luciano Coelhoc7d42482015-05-07 16:00:26 +0300817 iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100818
Chaya Rachel Ivgifcb6b922016-02-22 10:21:41 +0200819 iwl_mvm_stop_device(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100820 /*
821 * Set the HW restart bit -- this is mostly true as we're
822 * going to load new firmware and reprogram that, though
823 * the reprogramming is going to be manual to avoid adding
824 * all the MACs that aren't support.
825 * We don't have to clear up everything though because the
826 * reprogramming is manual. When we resume, we'll actually
827 * go through a proper restart sequence again to switch
828 * back to the runtime firmware image.
829 */
830 set_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
831
Luca Coelho9c3deeb2015-11-11 01:06:17 +0200832 /* the fw is reset, so all the keys are cleared */
833 memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
834
Johannes Bergf444eb12013-02-26 12:04:18 +0100835 mvm->ptk_ivlen = 0;
836 mvm->ptk_icvlen = 0;
837 mvm->ptk_ivlen = 0;
838 mvm->ptk_icvlen = 0;
839
Luciano Coelho671b5822014-09-22 10:59:53 +0300840 return iwl_mvm_load_d3_fw(mvm);
841}
842
843static int
Luciano Coelho671b5822014-09-22 10:59:53 +0300844iwl_mvm_get_wowlan_config(struct iwl_mvm *mvm,
845 struct cfg80211_wowlan *wowlan,
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200846 struct iwl_wowlan_config_cmd *wowlan_config_cmd,
Luciano Coelho671b5822014-09-22 10:59:53 +0300847 struct ieee80211_vif *vif, struct iwl_mvm_vif *mvmvif,
848 struct ieee80211_sta *ap_sta)
849{
850 int ret;
Johannes Berg9d8ce6a2014-12-23 16:02:40 +0100851 struct iwl_mvm_sta *mvm_ap_sta = iwl_mvm_sta_from_mac80211(ap_sta);
Luciano Coelho671b5822014-09-22 10:59:53 +0300852
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200853 /* TODO: wowlan_config_cmd->wowlan_ba_teardown_tids */
Luciano Coelho671b5822014-09-22 10:59:53 +0300854
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200855 wowlan_config_cmd->is_11n_connection =
Luciano Coelho671b5822014-09-22 10:59:53 +0300856 ap_sta->ht_cap.ht_supported;
Sara Sharon70b4c532015-11-19 13:12:15 +0200857 wowlan_config_cmd->flags = ENABLE_L3_FILTERING |
Matti Gottlieb32795a82016-02-25 10:18:34 +0200858 ENABLE_NBNS_FILTERING | ENABLE_DHCP_FILTERING;
Luciano Coelho671b5822014-09-22 10:59:53 +0300859
860 /* Query the last used seqno and set it */
861 ret = iwl_mvm_get_last_nonqos_seq(mvm, vif);
862 if (ret < 0)
863 return ret;
864
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200865 wowlan_config_cmd->non_qos_seq = cpu_to_le16(ret);
Luciano Coelho671b5822014-09-22 10:59:53 +0300866
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200867 iwl_mvm_set_wowlan_qos_seq(mvm_ap_sta, wowlan_config_cmd);
Luciano Coelho671b5822014-09-22 10:59:53 +0300868
869 if (wowlan->disconnect)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200870 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300871 cpu_to_le32(IWL_WOWLAN_WAKEUP_BEACON_MISS |
872 IWL_WOWLAN_WAKEUP_LINK_CHANGE);
873 if (wowlan->magic_pkt)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200874 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300875 cpu_to_le32(IWL_WOWLAN_WAKEUP_MAGIC_PACKET);
876 if (wowlan->gtk_rekey_failure)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200877 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300878 cpu_to_le32(IWL_WOWLAN_WAKEUP_GTK_REKEY_FAIL);
879 if (wowlan->eap_identity_req)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200880 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300881 cpu_to_le32(IWL_WOWLAN_WAKEUP_EAP_IDENT_REQ);
882 if (wowlan->four_way_handshake)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200883 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300884 cpu_to_le32(IWL_WOWLAN_WAKEUP_4WAY_HANDSHAKE);
885 if (wowlan->n_patterns)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200886 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300887 cpu_to_le32(IWL_WOWLAN_WAKEUP_PATTERN_MATCH);
888
889 if (wowlan->rfkill_release)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200890 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300891 cpu_to_le32(IWL_WOWLAN_WAKEUP_RF_KILL_DEASSERT);
892
893 if (wowlan->tcp) {
894 /*
895 * Set the "link change" (really "link lost") flag as well
896 * since that implies losing the TCP connection.
897 */
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200898 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300899 cpu_to_le32(IWL_WOWLAN_WAKEUP_REMOTE_LINK_LOSS |
900 IWL_WOWLAN_WAKEUP_REMOTE_SIGNATURE_TABLE |
901 IWL_WOWLAN_WAKEUP_REMOTE_WAKEUP_PACKET |
902 IWL_WOWLAN_WAKEUP_LINK_CHANGE);
903 }
904
905 return 0;
906}
907
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200908static void
909iwl_mvm_iter_d0i3_ap_keys(struct iwl_mvm *mvm,
910 struct ieee80211_vif *vif,
911 void (*iter)(struct ieee80211_hw *hw,
912 struct ieee80211_vif *vif,
913 struct ieee80211_sta *sta,
914 struct ieee80211_key_conf *key,
915 void *data),
916 void *data)
917{
918 struct ieee80211_sta *ap_sta;
919
920 rcu_read_lock();
921
922 ap_sta = rcu_dereference(mvm->fw_id_to_mac_id[mvm->d0i3_ap_sta_id]);
923 if (IS_ERR_OR_NULL(ap_sta))
924 goto out;
925
926 ieee80211_iter_keys_rcu(mvm->hw, vif, iter, data);
927out:
928 rcu_read_unlock();
929}
930
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200931int iwl_mvm_wowlan_config_key_params(struct iwl_mvm *mvm,
932 struct ieee80211_vif *vif,
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200933 bool d0i3,
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200934 u32 cmd_flags)
935{
936 struct iwl_wowlan_kek_kck_material_cmd kek_kck_cmd = {};
937 struct iwl_wowlan_tkip_params_cmd tkip_cmd = {};
938 struct wowlan_key_data key_data = {
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200939 .configure_keys = !d0i3,
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200940 .use_rsc_tsc = false,
941 .tkip = &tkip_cmd,
942 .use_tkip = false,
943 };
944 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
945 int ret;
946
947 key_data.rsc_tsc = kzalloc(sizeof(*key_data.rsc_tsc), GFP_KERNEL);
948 if (!key_data.rsc_tsc)
949 return -ENOMEM;
950
951 /*
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200952 * if we have to configure keys, call ieee80211_iter_keys(),
953 * as we need non-atomic context in order to take the
954 * required locks.
955 * for the d0i3 we can't use ieee80211_iter_keys(), as
956 * taking (almost) any mutex might result in deadlock.
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200957 */
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200958 if (!d0i3) {
959 /*
960 * Note that currently we don't propagate cmd_flags
961 * to the iterator. In case of key_data.configure_keys,
962 * all the configured commands are SYNC, and
963 * iwl_mvm_wowlan_program_keys() will take care of
964 * locking/unlocking mvm->mutex.
965 */
966 ieee80211_iter_keys(mvm->hw, vif,
967 iwl_mvm_wowlan_program_keys,
968 &key_data);
969 } else {
970 iwl_mvm_iter_d0i3_ap_keys(mvm, vif,
971 iwl_mvm_wowlan_program_keys,
972 &key_data);
973 }
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200974
975 if (key_data.error) {
976 ret = -EIO;
977 goto out;
978 }
979
980 if (key_data.use_rsc_tsc) {
981 ret = iwl_mvm_send_cmd_pdu(mvm,
982 WOWLAN_TSC_RSC_PARAM, cmd_flags,
983 sizeof(*key_data.rsc_tsc),
984 key_data.rsc_tsc);
985 if (ret)
986 goto out;
987 }
988
989 if (key_data.use_tkip) {
990 ret = iwl_mvm_send_cmd_pdu(mvm,
991 WOWLAN_TKIP_PARAM,
992 cmd_flags, sizeof(tkip_cmd),
993 &tkip_cmd);
994 if (ret)
995 goto out;
996 }
997
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200998 /* configure rekey data only if offloaded rekey is supported (d3) */
999 if (mvmvif->rekey_data.valid && !d0i3) {
Eliad Pellerac8ef0c2015-11-12 10:49:38 +02001000 memset(&kek_kck_cmd, 0, sizeof(kek_kck_cmd));
1001 memcpy(kek_kck_cmd.kck, mvmvif->rekey_data.kck,
1002 NL80211_KCK_LEN);
1003 kek_kck_cmd.kck_len = cpu_to_le16(NL80211_KCK_LEN);
1004 memcpy(kek_kck_cmd.kek, mvmvif->rekey_data.kek,
1005 NL80211_KEK_LEN);
1006 kek_kck_cmd.kek_len = cpu_to_le16(NL80211_KEK_LEN);
1007 kek_kck_cmd.replay_ctr = mvmvif->rekey_data.replay_ctr;
1008
1009 ret = iwl_mvm_send_cmd_pdu(mvm,
1010 WOWLAN_KEK_KCK_MATERIAL, cmd_flags,
1011 sizeof(kek_kck_cmd),
1012 &kek_kck_cmd);
1013 if (ret)
1014 goto out;
1015 }
Eliad Peller3f50a692015-11-15 15:44:17 +02001016 ret = 0;
Eliad Pellerac8ef0c2015-11-12 10:49:38 +02001017out:
1018 kfree(key_data.rsc_tsc);
1019 return ret;
1020}
1021
Luciano Coelho671b5822014-09-22 10:59:53 +03001022static int
1023iwl_mvm_wowlan_config(struct iwl_mvm *mvm,
1024 struct cfg80211_wowlan *wowlan,
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001025 struct iwl_wowlan_config_cmd *wowlan_config_cmd,
Luciano Coelho671b5822014-09-22 10:59:53 +03001026 struct ieee80211_vif *vif, struct iwl_mvm_vif *mvmvif,
1027 struct ieee80211_sta *ap_sta)
1028{
Luciano Coelho671b5822014-09-22 10:59:53 +03001029 int ret;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001030 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
1031 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001032
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001033 if (!unified_image) {
1034 ret = iwl_mvm_switch_to_d3(mvm);
1035 if (ret)
1036 return ret;
Luciano Coelho3acc9522014-11-19 22:35:37 +02001037
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001038 ret = iwl_mvm_d3_reprogram(mvm, vif, ap_sta);
1039 if (ret)
1040 return ret;
1041 }
Luciano Coelho671b5822014-09-22 10:59:53 +03001042
Johannes Berg8ca151b2013-01-24 14:25:36 +01001043 if (!iwlwifi_mod_params.sw_crypto) {
1044 /*
1045 * This needs to be unlocked due to lock ordering
1046 * constraints. Since we're in the suspend path
1047 * that isn't really a problem though.
1048 */
1049 mutex_unlock(&mvm->mutex);
Eliad Pellera3f7ba52015-11-11 17:23:59 +02001050 ret = iwl_mvm_wowlan_config_key_params(mvm, vif, false,
Eliad Peller3f50a692015-11-15 15:44:17 +02001051 CMD_ASYNC);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001052 mutex_lock(&mvm->mutex);
Eliad Peller3f50a692015-11-15 15:44:17 +02001053 if (ret)
1054 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001055 }
1056
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001057 ret = iwl_mvm_send_cmd_pdu(mvm, WOWLAN_CONFIGURATION, 0,
1058 sizeof(*wowlan_config_cmd),
1059 wowlan_config_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001060 if (ret)
Eliad Pellerac8ef0c2015-11-12 10:49:38 +02001061 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001062
1063 ret = iwl_mvm_send_patterns(mvm, wowlan);
1064 if (ret)
Eliad Pellerac8ef0c2015-11-12 10:49:38 +02001065 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001066
Sara Sharonc97dab42015-11-19 11:53:49 +02001067 ret = iwl_mvm_send_proto_offload(mvm, vif, false, true, 0);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001068 if (ret)
Eliad Pellerac8ef0c2015-11-12 10:49:38 +02001069 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001070
Johannes Bergf0c26462013-01-22 20:41:58 +01001071 ret = iwl_mvm_send_remote_wake_cfg(mvm, vif, wowlan->tcp);
Luciano Coelho671b5822014-09-22 10:59:53 +03001072 return ret;
1073}
1074
Luciano Coelho3acc9522014-11-19 22:35:37 +02001075static int
1076iwl_mvm_netdetect_config(struct iwl_mvm *mvm,
1077 struct cfg80211_wowlan *wowlan,
1078 struct cfg80211_sched_scan_request *nd_config,
1079 struct ieee80211_vif *vif)
1080{
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001081 struct iwl_wowlan_config_cmd wowlan_config_cmd = {};
Luciano Coelho3acc9522014-11-19 22:35:37 +02001082 int ret;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001083 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
1084 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
Luciano Coelho3acc9522014-11-19 22:35:37 +02001085
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001086 if (!unified_image) {
1087 ret = iwl_mvm_switch_to_d3(mvm);
1088 if (ret)
1089 return ret;
Luca Coelho5a143db2016-10-05 09:28:53 +03001090 } else {
1091 /* In theory, we wouldn't have to stop a running sched
1092 * scan in order to start another one (for
1093 * net-detect). But in practice this doesn't seem to
1094 * work properly, so stop any running sched_scan now.
1095 */
1096 ret = iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, true);
1097 if (ret)
1098 return ret;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001099 }
Luciano Coelho3acc9522014-11-19 22:35:37 +02001100
1101 /* rfkill release can be either for wowlan or netdetect */
1102 if (wowlan->rfkill_release)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001103 wowlan_config_cmd.wakeup_filter |=
Luciano Coelho3acc9522014-11-19 22:35:37 +02001104 cpu_to_le32(IWL_WOWLAN_WAKEUP_RF_KILL_DEASSERT);
1105
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001106 ret = iwl_mvm_send_cmd_pdu(mvm, WOWLAN_CONFIGURATION, 0,
1107 sizeof(wowlan_config_cmd),
1108 &wowlan_config_cmd);
Luciano Coelho3acc9522014-11-19 22:35:37 +02001109 if (ret)
1110 return ret;
1111
Luciano Coelho19945df2015-03-20 16:11:28 +02001112 ret = iwl_mvm_sched_scan_start(mvm, vif, nd_config, &mvm->nd_ies,
1113 IWL_MVM_SCAN_NETDETECT);
Luciano Coelhod9718da2014-11-21 09:32:23 +02001114 if (ret)
1115 return ret;
Luciano Coelho3acc9522014-11-19 22:35:37 +02001116
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001117 if (WARN_ON(mvm->nd_match_sets || mvm->nd_channels))
Luciano Coelhod9718da2014-11-21 09:32:23 +02001118 return -EBUSY;
1119
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001120 /* save the sched scan matchsets... */
Luciano Coelhod9718da2014-11-21 09:32:23 +02001121 if (nd_config->n_match_sets) {
1122 mvm->nd_match_sets = kmemdup(nd_config->match_sets,
1123 sizeof(*nd_config->match_sets) *
1124 nd_config->n_match_sets,
1125 GFP_KERNEL);
1126 if (mvm->nd_match_sets)
1127 mvm->n_nd_match_sets = nd_config->n_match_sets;
1128 }
1129
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001130 /* ...and the sched scan channels for later reporting */
1131 mvm->nd_channels = kmemdup(nd_config->channels,
1132 sizeof(*nd_config->channels) *
1133 nd_config->n_channels,
1134 GFP_KERNEL);
1135 if (mvm->nd_channels)
1136 mvm->n_nd_channels = nd_config->n_channels;
1137
Luciano Coelhod9718da2014-11-21 09:32:23 +02001138 return 0;
1139}
1140
1141static void iwl_mvm_free_nd(struct iwl_mvm *mvm)
1142{
1143 kfree(mvm->nd_match_sets);
1144 mvm->nd_match_sets = NULL;
1145 mvm->n_nd_match_sets = 0;
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001146 kfree(mvm->nd_channels);
1147 mvm->nd_channels = NULL;
1148 mvm->n_nd_channels = 0;
Luciano Coelho3acc9522014-11-19 22:35:37 +02001149}
1150
Luciano Coelho671b5822014-09-22 10:59:53 +03001151static int __iwl_mvm_suspend(struct ieee80211_hw *hw,
1152 struct cfg80211_wowlan *wowlan,
1153 bool test)
1154{
1155 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luciano Coelho671b5822014-09-22 10:59:53 +03001156 struct ieee80211_vif *vif = NULL;
1157 struct iwl_mvm_vif *mvmvif = NULL;
1158 struct ieee80211_sta *ap_sta = NULL;
Luciano Coelho671b5822014-09-22 10:59:53 +03001159 struct iwl_d3_manager_config d3_cfg_cmd_data = {
1160 /*
1161 * Program the minimum sleep time to 10 seconds, as many
1162 * platforms have issues processing a wakeup signal while
1163 * still being in the process of suspending.
1164 */
1165 .min_sleep_time = cpu_to_le32(10 * 1000 * 1000),
1166 };
1167 struct iwl_host_cmd d3_cfg_cmd = {
1168 .id = D3_CONFIG_CMD,
1169 .flags = CMD_WANT_SKB,
1170 .data[0] = &d3_cfg_cmd_data,
1171 .len[0] = sizeof(d3_cfg_cmd_data),
1172 };
1173 int ret;
1174 int len __maybe_unused;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001175 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
1176 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
Luciano Coelho671b5822014-09-22 10:59:53 +03001177
1178 if (!wowlan) {
1179 /*
1180 * mac80211 shouldn't get here, but for D3 test
1181 * it doesn't warrant a warning
1182 */
1183 WARN_ON(!test);
1184 return -EINVAL;
1185 }
1186
1187 mutex_lock(&mvm->mutex);
1188
Luciano Coelho7f549e22014-10-02 15:38:04 +03001189 vif = iwl_mvm_get_bss_vif(mvm);
1190 if (IS_ERR_OR_NULL(vif)) {
Luciano Coelho671b5822014-09-22 10:59:53 +03001191 ret = 1;
1192 goto out_noreset;
1193 }
1194
Luciano Coelho671b5822014-09-22 10:59:53 +03001195 mvmvif = iwl_mvm_vif_from_mac80211(vif);
1196
Luciano Coelho3acc9522014-11-19 22:35:37 +02001197 if (mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT) {
1198 /* if we're not associated, this must be netdetect */
Luca Coelho566f1652015-10-25 22:55:32 +02001199 if (!wowlan->nd_config) {
Luciano Coelho3acc9522014-11-19 22:35:37 +02001200 ret = 1;
1201 goto out_noreset;
1202 }
1203
1204 ret = iwl_mvm_netdetect_config(
Luca Coelho566f1652015-10-25 22:55:32 +02001205 mvm, wowlan, wowlan->nd_config, vif);
Luciano Coelho3acc9522014-11-19 22:35:37 +02001206 if (ret)
1207 goto out;
Luciano Coelho2021a892014-11-20 08:59:51 +02001208
1209 mvm->net_detect = true;
Luciano Coelho3acc9522014-11-19 22:35:37 +02001210 } else {
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001211 struct iwl_wowlan_config_cmd wowlan_config_cmd = {};
Luciano Coelho3acc9522014-11-19 22:35:37 +02001212
Luciano Coelho1e4d19c2014-09-22 13:01:59 +03001213 ap_sta = rcu_dereference_protected(
1214 mvm->fw_id_to_mac_id[mvmvif->ap_sta_id],
1215 lockdep_is_held(&mvm->mutex));
1216 if (IS_ERR_OR_NULL(ap_sta)) {
1217 ret = -EINVAL;
1218 goto out_noreset;
1219 }
1220
1221 ret = iwl_mvm_get_wowlan_config(mvm, wowlan, &wowlan_config_cmd,
1222 vif, mvmvif, ap_sta);
1223 if (ret)
1224 goto out_noreset;
Luciano Coelho1e4d19c2014-09-22 13:01:59 +03001225 ret = iwl_mvm_wowlan_config(mvm, wowlan, &wowlan_config_cmd,
1226 vif, mvmvif, ap_sta);
1227 if (ret)
1228 goto out;
Luciano Coelho2021a892014-11-20 08:59:51 +02001229
1230 mvm->net_detect = false;
Luciano Coelho671b5822014-09-22 10:59:53 +03001231 }
1232
Emmanuel Grumbachc1cb92f2014-01-28 10:17:18 +02001233 ret = iwl_mvm_power_update_device(mvm);
Alexander Bondar64b928c2013-09-03 14:18:03 +03001234 if (ret)
1235 goto out;
1236
Arik Nemtsov999609f2014-05-15 17:31:51 +03001237 ret = iwl_mvm_power_update_mac(mvm);
Alexander Bondaree1e8422013-04-23 13:52:10 +03001238 if (ret)
1239 goto out;
1240
Johannes Bergb0114712013-06-12 14:55:40 +02001241#ifdef CONFIG_IWLWIFI_DEBUGFS
1242 if (mvm->d3_wake_sysassert)
1243 d3_cfg_cmd_data.wakeup_flags |=
1244 cpu_to_le32(IWL_WAKEUP_D3_CONFIG_FW_ERROR);
1245#endif
1246
Johannes Berg8ca151b2013-01-24 14:25:36 +01001247 /* must be last -- this switches firmware state */
Johannes Bergdebff612013-05-14 13:53:45 +02001248 ret = iwl_mvm_send_cmd(mvm, &d3_cfg_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001249 if (ret)
1250 goto out;
Johannes Bergdebff612013-05-14 13:53:45 +02001251#ifdef CONFIG_IWLWIFI_DEBUGFS
Johannes Berg65b30342014-01-08 13:16:33 +01001252 len = iwl_rx_packet_payload_len(d3_cfg_cmd.resp_pkt);
1253 if (len >= sizeof(u32)) {
Johannes Bergdebff612013-05-14 13:53:45 +02001254 mvm->d3_test_pme_ptr =
1255 le32_to_cpup((__le32 *)d3_cfg_cmd.resp_pkt->data);
Johannes Bergdebff612013-05-14 13:53:45 +02001256 }
1257#endif
1258 iwl_free_resp(&d3_cfg_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001259
1260 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
1261
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001262 iwl_trans_d3_suspend(mvm->trans, test, !unified_image);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001263 out:
Luciano Coelhod9718da2014-11-21 09:32:23 +02001264 if (ret < 0) {
Luciano Coelhod9718da2014-11-21 09:32:23 +02001265 iwl_mvm_free_nd(mvm);
Luca Coelho45dad032016-10-07 15:16:26 +03001266
1267 if (!unified_image) {
1268 iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
1269 if (mvm->restart_fw > 0) {
1270 mvm->restart_fw--;
1271 ieee80211_restart_hw(mvm->hw);
1272 }
1273 }
Luciano Coelhod9718da2014-11-21 09:32:23 +02001274 }
Luciano Coelhob70ab722013-11-19 22:53:41 +02001275 out_noreset:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001276 mutex_unlock(&mvm->mutex);
1277
1278 return ret;
1279}
1280
Eliad Peller67359432014-12-09 15:23:54 +02001281static int iwl_mvm_enter_d0i3_sync(struct iwl_mvm *mvm)
1282{
1283 struct iwl_notification_wait wait_d3;
Sara Sharon6eb031d2015-07-13 14:50:47 +03001284 static const u16 d3_notif[] = { D3_CONFIG_CMD };
Eliad Peller67359432014-12-09 15:23:54 +02001285 int ret;
1286
1287 iwl_init_notification_wait(&mvm->notif_wait, &wait_d3,
1288 d3_notif, ARRAY_SIZE(d3_notif),
1289 NULL, NULL);
1290
1291 ret = iwl_mvm_enter_d0i3(mvm->hw->priv);
1292 if (ret)
1293 goto remove_notif;
1294
1295 ret = iwl_wait_notification(&mvm->notif_wait, &wait_d3, HZ);
1296 WARN_ON_ONCE(ret);
1297 return ret;
1298
1299remove_notif:
1300 iwl_remove_notification(&mvm->notif_wait, &wait_d3);
1301 return ret;
1302}
1303
Johannes Bergdebff612013-05-14 13:53:45 +02001304int iwl_mvm_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
1305{
Eliad Pellerd15a7472014-03-27 18:53:12 +02001306 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luca Coelhob7282642015-09-17 23:44:14 +03001307 struct iwl_trans *trans = mvm->trans;
Eliad Pellerc43fe902015-06-04 21:59:32 +03001308 int ret;
Eliad Pellerd15a7472014-03-27 18:53:12 +02001309
Luciano Coelhocf8c3cf2015-08-24 14:53:25 +03001310 /* make sure the d0i3 exit work is not pending */
1311 flush_work(&mvm->d0i3_exit_work);
1312
Luca Coelhob7282642015-09-17 23:44:14 +03001313 ret = iwl_trans_suspend(trans);
Eliad Pellerc43fe902015-06-04 21:59:32 +03001314 if (ret)
1315 return ret;
1316
Luca Coelhob7282642015-09-17 23:44:14 +03001317 if (wowlan->any) {
1318 trans->system_pm_mode = IWL_PLAT_PM_MODE_D0I3;
1319
1320 if (iwl_mvm_enter_d0i3_on_suspend(mvm)) {
Eliad Pellerc43fe902015-06-04 21:59:32 +03001321 ret = iwl_mvm_enter_d0i3_sync(mvm);
Eliad Peller67359432014-12-09 15:23:54 +02001322
1323 if (ret)
1324 return ret;
1325 }
1326
Eliad Pellerd15a7472014-03-27 18:53:12 +02001327 mutex_lock(&mvm->d0i3_suspend_mutex);
1328 __set_bit(D0I3_DEFER_WAKEUP, &mvm->d0i3_suspend_flags);
1329 mutex_unlock(&mvm->d0i3_suspend_mutex);
Eliad Peller6dfb36c2015-07-09 14:17:24 +03001330
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001331 iwl_trans_d3_suspend(trans, false, false);
Eliad Peller6dfb36c2015-07-09 14:17:24 +03001332
Eliad Pellerd15a7472014-03-27 18:53:12 +02001333 return 0;
1334 }
1335
Luca Coelhob7282642015-09-17 23:44:14 +03001336 trans->system_pm_mode = IWL_PLAT_PM_MODE_D3;
1337
Johannes Bergdebff612013-05-14 13:53:45 +02001338 return __iwl_mvm_suspend(hw, wowlan, false);
1339}
1340
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001341/* converted data from the different status responses */
1342struct iwl_wowlan_status_data {
1343 u16 pattern_number;
1344 u16 qos_seq_ctr[8];
1345 u32 wakeup_reasons;
1346 u32 wake_packet_length;
1347 u32 wake_packet_bufsize;
1348 const u8 *wake_packet;
1349};
1350
Johannes Berg7abc4632013-08-06 18:28:26 +02001351static void iwl_mvm_report_wakeup_reasons(struct iwl_mvm *mvm,
1352 struct ieee80211_vif *vif,
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001353 struct iwl_wowlan_status_data *status)
Johannes Berg9b26b502013-01-22 13:02:09 +01001354{
Johannes Berg7abc4632013-08-06 18:28:26 +02001355 struct sk_buff *pkt = NULL;
Johannes Berg9b26b502013-01-22 13:02:09 +01001356 struct cfg80211_wowlan_wakeup wakeup = {
1357 .pattern_idx = -1,
1358 };
1359 struct cfg80211_wowlan_wakeup *wakeup_report = &wakeup;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001360 u32 reasons = status->wakeup_reasons;
Johannes Berg9b26b502013-01-22 13:02:09 +01001361
1362 if (reasons == IWL_WOWLAN_WAKEUP_BY_NON_WIRELESS) {
1363 wakeup_report = NULL;
1364 goto report;
1365 }
1366
Derek Basehore06ae2ad2015-11-04 17:37:52 -08001367 pm_wakeup_event(mvm->dev, 0);
1368
Johannes Bergf444eb12013-02-26 12:04:18 +01001369 if (reasons & IWL_WOWLAN_WAKEUP_BY_MAGIC_PACKET)
Johannes Berg9b26b502013-01-22 13:02:09 +01001370 wakeup.magic_pkt = true;
Johannes Berg9b26b502013-01-22 13:02:09 +01001371
Johannes Bergf444eb12013-02-26 12:04:18 +01001372 if (reasons & IWL_WOWLAN_WAKEUP_BY_PATTERN)
Johannes Berg9b26b502013-01-22 13:02:09 +01001373 wakeup.pattern_idx =
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001374 status->pattern_number;
Johannes Berg9b26b502013-01-22 13:02:09 +01001375
1376 if (reasons & (IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_MISSED_BEACON |
1377 IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_DEAUTH))
1378 wakeup.disconnect = true;
1379
Johannes Bergf444eb12013-02-26 12:04:18 +01001380 if (reasons & IWL_WOWLAN_WAKEUP_BY_GTK_REKEY_FAILURE)
Johannes Berg9b26b502013-01-22 13:02:09 +01001381 wakeup.gtk_rekey_failure = true;
Johannes Berg9b26b502013-01-22 13:02:09 +01001382
Johannes Bergf444eb12013-02-26 12:04:18 +01001383 if (reasons & IWL_WOWLAN_WAKEUP_BY_RFKILL_DEASSERTED)
Johannes Berg9b26b502013-01-22 13:02:09 +01001384 wakeup.rfkill_release = true;
Johannes Berg9b26b502013-01-22 13:02:09 +01001385
Johannes Bergf444eb12013-02-26 12:04:18 +01001386 if (reasons & IWL_WOWLAN_WAKEUP_BY_EAPOL_REQUEST)
Johannes Berg9b26b502013-01-22 13:02:09 +01001387 wakeup.eap_identity_req = true;
Johannes Berg9b26b502013-01-22 13:02:09 +01001388
Johannes Bergf444eb12013-02-26 12:04:18 +01001389 if (reasons & IWL_WOWLAN_WAKEUP_BY_FOUR_WAY_HANDSHAKE)
Johannes Berg9b26b502013-01-22 13:02:09 +01001390 wakeup.four_way_handshake = true;
Johannes Berg9b26b502013-01-22 13:02:09 +01001391
Johannes Bergf0c26462013-01-22 20:41:58 +01001392 if (reasons & IWL_WOWLAN_WAKEUP_BY_REM_WAKE_LINK_LOSS)
1393 wakeup.tcp_connlost = true;
1394
1395 if (reasons & IWL_WOWLAN_WAKEUP_BY_REM_WAKE_SIGNATURE_TABLE)
1396 wakeup.tcp_nomoretokens = true;
1397
1398 if (reasons & IWL_WOWLAN_WAKEUP_BY_REM_WAKE_WAKEUP_PACKET)
1399 wakeup.tcp_match = true;
1400
Johannes Berg9b26b502013-01-22 13:02:09 +01001401 if (status->wake_packet_bufsize) {
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001402 int pktsize = status->wake_packet_bufsize;
1403 int pktlen = status->wake_packet_length;
Johannes Bergf444eb12013-02-26 12:04:18 +01001404 const u8 *pktdata = status->wake_packet;
1405 struct ieee80211_hdr *hdr = (void *)pktdata;
1406 int truncated = pktlen - pktsize;
Johannes Berg9b26b502013-01-22 13:02:09 +01001407
Johannes Bergf444eb12013-02-26 12:04:18 +01001408 /* this would be a firmware bug */
1409 if (WARN_ON_ONCE(truncated < 0))
1410 truncated = 0;
1411
1412 if (ieee80211_is_data(hdr->frame_control)) {
1413 int hdrlen = ieee80211_hdrlen(hdr->frame_control);
1414 int ivlen = 0, icvlen = 4; /* also FCS */
1415
Johannes Berg9b26b502013-01-22 13:02:09 +01001416 pkt = alloc_skb(pktsize, GFP_KERNEL);
1417 if (!pkt)
1418 goto report;
Johannes Bergf444eb12013-02-26 12:04:18 +01001419
1420 memcpy(skb_put(pkt, hdrlen), pktdata, hdrlen);
1421 pktdata += hdrlen;
1422 pktsize -= hdrlen;
1423
1424 if (ieee80211_has_protected(hdr->frame_control)) {
Johannes Berg7abc4632013-08-06 18:28:26 +02001425 /*
1426 * This is unlocked and using gtk_i(c)vlen,
1427 * but since everything is under RTNL still
1428 * that's not really a problem - changing
1429 * it would be difficult.
1430 */
Johannes Bergf444eb12013-02-26 12:04:18 +01001431 if (is_multicast_ether_addr(hdr->addr1)) {
1432 ivlen = mvm->gtk_ivlen;
1433 icvlen += mvm->gtk_icvlen;
1434 } else {
1435 ivlen = mvm->ptk_ivlen;
1436 icvlen += mvm->ptk_icvlen;
1437 }
1438 }
1439
1440 /* if truncated, FCS/ICV is (partially) gone */
1441 if (truncated >= icvlen) {
1442 icvlen = 0;
1443 truncated -= icvlen;
1444 } else {
1445 icvlen -= truncated;
1446 truncated = 0;
1447 }
1448
1449 pktsize -= ivlen + icvlen;
1450 pktdata += ivlen;
1451
1452 memcpy(skb_put(pkt, pktsize), pktdata, pktsize);
1453
Johannes Berg9b26b502013-01-22 13:02:09 +01001454 if (ieee80211_data_to_8023(pkt, vif->addr, vif->type))
1455 goto report;
1456 wakeup.packet = pkt->data;
1457 wakeup.packet_present_len = pkt->len;
Johannes Bergf444eb12013-02-26 12:04:18 +01001458 wakeup.packet_len = pkt->len - truncated;
Johannes Berg9b26b502013-01-22 13:02:09 +01001459 wakeup.packet_80211 = false;
1460 } else {
Johannes Bergf444eb12013-02-26 12:04:18 +01001461 int fcslen = 4;
1462
1463 if (truncated >= 4) {
1464 truncated -= 4;
1465 fcslen = 0;
1466 } else {
1467 fcslen -= truncated;
1468 truncated = 0;
1469 }
1470 pktsize -= fcslen;
Johannes Berg9b26b502013-01-22 13:02:09 +01001471 wakeup.packet = status->wake_packet;
1472 wakeup.packet_present_len = pktsize;
Johannes Bergf444eb12013-02-26 12:04:18 +01001473 wakeup.packet_len = pktlen - truncated;
Johannes Berg9b26b502013-01-22 13:02:09 +01001474 wakeup.packet_80211 = true;
1475 }
1476 }
1477
1478 report:
1479 ieee80211_report_wowlan_wakeup(vif, wakeup_report, GFP_KERNEL);
1480 kfree_skb(pkt);
Johannes Berg7abc4632013-08-06 18:28:26 +02001481}
Johannes Berg9b26b502013-01-22 13:02:09 +01001482
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001483static void iwl_mvm_aes_sc_to_seq(struct aes_sc *sc,
1484 struct ieee80211_key_seq *seq)
1485{
1486 u64 pn;
1487
1488 pn = le64_to_cpu(sc->pn);
1489 seq->ccmp.pn[0] = pn >> 40;
1490 seq->ccmp.pn[1] = pn >> 32;
1491 seq->ccmp.pn[2] = pn >> 24;
1492 seq->ccmp.pn[3] = pn >> 16;
1493 seq->ccmp.pn[4] = pn >> 8;
1494 seq->ccmp.pn[5] = pn;
1495}
1496
1497static void iwl_mvm_tkip_sc_to_seq(struct tkip_sc *sc,
1498 struct ieee80211_key_seq *seq)
1499{
1500 seq->tkip.iv32 = le32_to_cpu(sc->iv32);
1501 seq->tkip.iv16 = le16_to_cpu(sc->iv16);
1502}
1503
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001504static void iwl_mvm_set_aes_rx_seq(struct iwl_mvm *mvm, struct aes_sc *scs,
1505 struct ieee80211_sta *sta,
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001506 struct ieee80211_key_conf *key)
1507{
1508 int tid;
1509
1510 BUILD_BUG_ON(IWL_NUM_RSC != IEEE80211_NUM_TIDS);
1511
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001512 if (sta && iwl_mvm_has_new_rx_api(mvm)) {
1513 struct iwl_mvm_sta *mvmsta;
1514 struct iwl_mvm_key_pn *ptk_pn;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001515
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001516 mvmsta = iwl_mvm_sta_from_mac80211(sta);
1517
1518 ptk_pn = rcu_dereference_protected(mvmsta->ptk_pn[key->keyidx],
1519 lockdep_is_held(&mvm->mutex));
1520 if (WARN_ON(!ptk_pn))
1521 return;
1522
1523 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
1524 struct ieee80211_key_seq seq = {};
1525 int i;
1526
1527 iwl_mvm_aes_sc_to_seq(&scs[tid], &seq);
1528 ieee80211_set_key_rx_seq(key, tid, &seq);
1529 for (i = 1; i < mvm->trans->num_rx_queues; i++)
1530 memcpy(ptk_pn->q[i].pn[tid],
1531 seq.ccmp.pn, IEEE80211_CCMP_PN_LEN);
1532 }
1533 } else {
1534 for (tid = 0; tid < IWL_NUM_RSC; tid++) {
1535 struct ieee80211_key_seq seq = {};
1536
1537 iwl_mvm_aes_sc_to_seq(&scs[tid], &seq);
1538 ieee80211_set_key_rx_seq(key, tid, &seq);
1539 }
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001540 }
1541}
1542
1543static void iwl_mvm_set_tkip_rx_seq(struct tkip_sc *scs,
1544 struct ieee80211_key_conf *key)
1545{
1546 int tid;
1547
1548 BUILD_BUG_ON(IWL_NUM_RSC != IEEE80211_NUM_TIDS);
1549
1550 for (tid = 0; tid < IWL_NUM_RSC; tid++) {
1551 struct ieee80211_key_seq seq = {};
1552
1553 iwl_mvm_tkip_sc_to_seq(&scs[tid], &seq);
1554 ieee80211_set_key_rx_seq(key, tid, &seq);
1555 }
1556}
1557
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001558static void iwl_mvm_set_key_rx_seq(struct iwl_mvm *mvm,
1559 struct ieee80211_key_conf *key,
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001560 struct iwl_wowlan_status *status)
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001561{
1562 union iwl_all_tsc_rsc *rsc = &status->gtk.rsc.all_tsc_rsc;
1563
1564 switch (key->cipher) {
1565 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001566 iwl_mvm_set_aes_rx_seq(mvm, rsc->aes.multicast_rsc, NULL, key);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001567 break;
1568 case WLAN_CIPHER_SUITE_TKIP:
1569 iwl_mvm_set_tkip_rx_seq(rsc->tkip.multicast_rsc, key);
1570 break;
1571 default:
1572 WARN_ON(1);
1573 }
1574}
1575
1576struct iwl_mvm_d3_gtk_iter_data {
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001577 struct iwl_mvm *mvm;
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001578 struct iwl_wowlan_status *status;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001579 void *last_gtk;
1580 u32 cipher;
1581 bool find_phase, unhandled_cipher;
1582 int num_keys;
1583};
1584
Emmanuel Grumbach59fd4bf2015-11-01 13:06:37 +02001585static void iwl_mvm_d3_update_keys(struct ieee80211_hw *hw,
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001586 struct ieee80211_vif *vif,
1587 struct ieee80211_sta *sta,
1588 struct ieee80211_key_conf *key,
1589 void *_data)
1590{
1591 struct iwl_mvm_d3_gtk_iter_data *data = _data;
1592
1593 if (data->unhandled_cipher)
1594 return;
1595
1596 switch (key->cipher) {
1597 case WLAN_CIPHER_SUITE_WEP40:
1598 case WLAN_CIPHER_SUITE_WEP104:
1599 /* ignore WEP completely, nothing to do */
1600 return;
1601 case WLAN_CIPHER_SUITE_CCMP:
1602 case WLAN_CIPHER_SUITE_TKIP:
1603 /* we support these */
1604 break;
1605 default:
1606 /* everything else (even CMAC for MFP) - disconnect from AP */
1607 data->unhandled_cipher = true;
1608 return;
1609 }
1610
1611 data->num_keys++;
1612
1613 /*
1614 * pairwise key - update sequence counters only;
1615 * note that this assumes no TDLS sessions are active
1616 */
1617 if (sta) {
1618 struct ieee80211_key_seq seq = {};
1619 union iwl_all_tsc_rsc *sc = &data->status->gtk.rsc.all_tsc_rsc;
1620
1621 if (data->find_phase)
1622 return;
1623
1624 switch (key->cipher) {
1625 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001626 iwl_mvm_set_aes_rx_seq(data->mvm, sc->aes.unicast_rsc,
1627 sta, key);
Johannes Berg6645d5e2015-09-15 09:58:53 +02001628 atomic64_set(&key->tx_pn, le64_to_cpu(sc->aes.tsc.pn));
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001629 break;
1630 case WLAN_CIPHER_SUITE_TKIP:
1631 iwl_mvm_tkip_sc_to_seq(&sc->tkip.tsc, &seq);
1632 iwl_mvm_set_tkip_rx_seq(sc->tkip.unicast_rsc, key);
Eliad Peller1ad4f632016-02-14 13:56:36 +02001633 atomic64_set(&key->tx_pn,
1634 (u64)seq.tkip.iv16 |
1635 ((u64)seq.tkip.iv32 << 16));
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001636 break;
1637 }
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001638
1639 /* that's it for this key */
1640 return;
1641 }
1642
1643 if (data->find_phase) {
1644 data->last_gtk = key;
1645 data->cipher = key->cipher;
1646 return;
1647 }
1648
1649 if (data->status->num_of_gtk_rekeys)
1650 ieee80211_remove_key(key);
1651 else if (data->last_gtk == key)
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001652 iwl_mvm_set_key_rx_seq(data->mvm, key, data->status);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001653}
1654
1655static bool iwl_mvm_setup_connection_keep(struct iwl_mvm *mvm,
1656 struct ieee80211_vif *vif,
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001657 struct iwl_wowlan_status *status)
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001658{
1659 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1660 struct iwl_mvm_d3_gtk_iter_data gtkdata = {
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001661 .mvm = mvm,
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001662 .status = status,
1663 };
Eliad Peller431591c2013-11-07 14:12:09 +02001664 u32 disconnection_reasons =
1665 IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_MISSED_BEACON |
1666 IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_DEAUTH;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001667
1668 if (!status || !vif->bss_conf.bssid)
1669 return false;
1670
Eliad Peller431591c2013-11-07 14:12:09 +02001671 if (le32_to_cpu(status->wakeup_reasons) & disconnection_reasons)
1672 return false;
1673
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001674 /* find last GTK that we used initially, if any */
1675 gtkdata.find_phase = true;
1676 ieee80211_iter_keys(mvm->hw, vif,
Emmanuel Grumbach59fd4bf2015-11-01 13:06:37 +02001677 iwl_mvm_d3_update_keys, &gtkdata);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001678 /* not trying to keep connections with MFP/unhandled ciphers */
1679 if (gtkdata.unhandled_cipher)
1680 return false;
1681 if (!gtkdata.num_keys)
Luciano Coelhocfa88892013-11-19 15:38:55 +02001682 goto out;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001683 if (!gtkdata.last_gtk)
1684 return false;
1685
1686 /*
1687 * invalidate all other GTKs that might still exist and update
1688 * the one that we used
1689 */
1690 gtkdata.find_phase = false;
1691 ieee80211_iter_keys(mvm->hw, vif,
Emmanuel Grumbach59fd4bf2015-11-01 13:06:37 +02001692 iwl_mvm_d3_update_keys, &gtkdata);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001693
1694 if (status->num_of_gtk_rekeys) {
1695 struct ieee80211_key_conf *key;
1696 struct {
1697 struct ieee80211_key_conf conf;
1698 u8 key[32];
1699 } conf = {
1700 .conf.cipher = gtkdata.cipher,
1701 .conf.keyidx = status->gtk.key_index,
1702 };
1703
1704 switch (gtkdata.cipher) {
1705 case WLAN_CIPHER_SUITE_CCMP:
1706 conf.conf.keylen = WLAN_KEY_LEN_CCMP;
1707 memcpy(conf.conf.key, status->gtk.decrypt_key,
1708 WLAN_KEY_LEN_CCMP);
1709 break;
1710 case WLAN_CIPHER_SUITE_TKIP:
1711 conf.conf.keylen = WLAN_KEY_LEN_TKIP;
1712 memcpy(conf.conf.key, status->gtk.decrypt_key, 16);
1713 /* leave TX MIC key zeroed, we don't use it anyway */
1714 memcpy(conf.conf.key +
1715 NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY,
1716 status->gtk.tkip_mic_key, 8);
1717 break;
1718 }
1719
1720 key = ieee80211_gtk_rekey_add(vif, &conf.conf);
1721 if (IS_ERR(key))
1722 return false;
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001723 iwl_mvm_set_key_rx_seq(mvm, key, status);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001724 }
1725
1726 if (status->num_of_gtk_rekeys) {
1727 __be64 replay_ctr =
1728 cpu_to_be64(le64_to_cpu(status->replay_ctr));
1729 ieee80211_gtk_rekey_notify(vif, vif->bss_conf.bssid,
1730 (void *)&replay_ctr, GFP_KERNEL);
1731 }
1732
Luciano Coelhocfa88892013-11-19 15:38:55 +02001733out:
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001734 mvmvif->seqno_valid = true;
1735 /* +0x10 because the set API expects next-to-use, not last-used */
1736 mvmvif->seqno = le16_to_cpu(status->non_qos_seq_ctr) + 0x10;
1737
1738 return true;
1739}
1740
Luciano Coelhoec12f452014-11-20 10:14:44 +02001741static struct iwl_wowlan_status *
1742iwl_mvm_get_wakeup_status(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Johannes Berg7abc4632013-08-06 18:28:26 +02001743{
1744 u32 base = mvm->error_event_table;
1745 struct error_table_start {
1746 /* cf. struct iwl_error_event_table */
1747 u32 valid;
1748 u32 error_id;
1749 } err_info;
1750 struct iwl_host_cmd cmd = {
1751 .id = WOWLAN_GET_STATUSES,
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001752 .flags = CMD_WANT_SKB,
Johannes Berg7abc4632013-08-06 18:28:26 +02001753 };
Luciano Coelhoec12f452014-11-20 10:14:44 +02001754 struct iwl_wowlan_status *status, *fw_status;
1755 int ret, len, status_size;
Johannes Berg7abc4632013-08-06 18:28:26 +02001756
1757 iwl_trans_read_mem_bytes(mvm->trans, base,
1758 &err_info, sizeof(err_info));
1759
1760 if (err_info.valid) {
Luciano Coelhoec12f452014-11-20 10:14:44 +02001761 IWL_INFO(mvm, "error table is valid (%d) with error (%d)\n",
1762 err_info.valid, err_info.error_id);
Johannes Berg7abc4632013-08-06 18:28:26 +02001763 if (err_info.error_id == RF_KILL_INDICATOR_FOR_WOWLAN) {
1764 struct cfg80211_wowlan_wakeup wakeup = {
1765 .rfkill_release = true,
1766 };
1767 ieee80211_report_wowlan_wakeup(vif, &wakeup,
1768 GFP_KERNEL);
1769 }
Luciano Coelhoec12f452014-11-20 10:14:44 +02001770 return ERR_PTR(-EIO);
Johannes Berg7abc4632013-08-06 18:28:26 +02001771 }
1772
1773 /* only for tracing for now */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001774 ret = iwl_mvm_send_cmd_pdu(mvm, OFFLOADS_QUERY_CMD, 0, 0, NULL);
Johannes Berg7abc4632013-08-06 18:28:26 +02001775 if (ret)
1776 IWL_ERR(mvm, "failed to query offload statistics (%d)\n", ret);
1777
1778 ret = iwl_mvm_send_cmd(mvm, &cmd);
1779 if (ret) {
1780 IWL_ERR(mvm, "failed to query status (%d)\n", ret);
Luciano Coelhoec12f452014-11-20 10:14:44 +02001781 return ERR_PTR(ret);
Johannes Berg7abc4632013-08-06 18:28:26 +02001782 }
1783
1784 /* RF-kill already asserted again... */
Luciano Coelhoec12f452014-11-20 10:14:44 +02001785 if (!cmd.resp_pkt) {
Johannes Berge111e962015-03-03 20:23:47 +01001786 fw_status = ERR_PTR(-ERFKILL);
Luciano Coelhoec12f452014-11-20 10:14:44 +02001787 goto out_free_resp;
1788 }
Johannes Berg7abc4632013-08-06 18:28:26 +02001789
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001790 status_size = sizeof(*fw_status);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001791
Johannes Berg65b30342014-01-08 13:16:33 +01001792 len = iwl_rx_packet_payload_len(cmd.resp_pkt);
1793 if (len < status_size) {
Johannes Berg7abc4632013-08-06 18:28:26 +02001794 IWL_ERR(mvm, "Invalid WoWLAN status response!\n");
Johannes Berge111e962015-03-03 20:23:47 +01001795 fw_status = ERR_PTR(-EIO);
Johannes Berg7abc4632013-08-06 18:28:26 +02001796 goto out_free_resp;
1797 }
1798
Luciano Coelhoec12f452014-11-20 10:14:44 +02001799 status = (void *)cmd.resp_pkt->data;
1800 if (len != (status_size +
1801 ALIGN(le32_to_cpu(status->wake_packet_bufsize), 4))) {
1802 IWL_ERR(mvm, "Invalid WoWLAN status response!\n");
Johannes Berge111e962015-03-03 20:23:47 +01001803 fw_status = ERR_PTR(-EIO);
Luciano Coelhoec12f452014-11-20 10:14:44 +02001804 goto out_free_resp;
1805 }
1806
1807 fw_status = kmemdup(status, len, GFP_KERNEL);
1808
1809out_free_resp:
1810 iwl_free_resp(&cmd);
Johannes Berge111e962015-03-03 20:23:47 +01001811 return fw_status;
Luciano Coelhoec12f452014-11-20 10:14:44 +02001812}
1813
1814/* releases the MVM mutex */
1815static bool iwl_mvm_query_wakeup_reasons(struct iwl_mvm *mvm,
1816 struct ieee80211_vif *vif)
1817{
1818 struct iwl_wowlan_status_data status;
1819 struct iwl_wowlan_status *fw_status;
1820 int i;
1821 bool keep;
Luciano Coelhoec12f452014-11-20 10:14:44 +02001822 struct iwl_mvm_sta *mvm_ap_sta;
1823
1824 fw_status = iwl_mvm_get_wakeup_status(mvm, vif);
1825 if (IS_ERR_OR_NULL(fw_status))
1826 goto out_unlock;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001827
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001828 status.pattern_number = le16_to_cpu(fw_status->pattern_number);
1829 for (i = 0; i < 8; i++)
1830 status.qos_seq_ctr[i] =
1831 le16_to_cpu(fw_status->qos_seq_ctr[i]);
1832 status.wakeup_reasons = le32_to_cpu(fw_status->wakeup_reasons);
1833 status.wake_packet_length =
1834 le32_to_cpu(fw_status->wake_packet_length);
1835 status.wake_packet_bufsize =
1836 le32_to_cpu(fw_status->wake_packet_bufsize);
1837 status.wake_packet = fw_status->wake_packet;
Johannes Berg7abc4632013-08-06 18:28:26 +02001838
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001839 /* still at hard-coded place 0 for D3 image */
Sara Sharon13303c0f2016-04-10 15:51:54 +03001840 mvm_ap_sta = iwl_mvm_sta_from_staid_protected(mvm, 0);
1841 if (!mvm_ap_sta)
Luciano Coelhoec12f452014-11-20 10:14:44 +02001842 goto out_free;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001843
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001844 for (i = 0; i < IWL_MAX_TID_COUNT; i++) {
1845 u16 seq = status.qos_seq_ctr[i];
1846 /* firmware stores last-used value, we store next value */
1847 seq += 0x10;
1848 mvm_ap_sta->tid_data[i].seq_number = seq;
1849 }
1850
Johannes Berg7abc4632013-08-06 18:28:26 +02001851 /* now we have all the data we need, unlock to avoid mac80211 issues */
1852 mutex_unlock(&mvm->mutex);
1853
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001854 iwl_mvm_report_wakeup_reasons(mvm, vif, &status);
1855
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001856 keep = iwl_mvm_setup_connection_keep(mvm, vif, fw_status);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001857
Luciano Coelhoec12f452014-11-20 10:14:44 +02001858 kfree(fw_status);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001859 return keep;
Johannes Berg7abc4632013-08-06 18:28:26 +02001860
Luciano Coelhoec12f452014-11-20 10:14:44 +02001861out_free:
1862 kfree(fw_status);
1863out_unlock:
Johannes Berg7abc4632013-08-06 18:28:26 +02001864 mutex_unlock(&mvm->mutex);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001865 return false;
Johannes Berg9b26b502013-01-22 13:02:09 +01001866}
1867
Eliad Pellera3f7ba52015-11-11 17:23:59 +02001868void iwl_mvm_d0i3_update_keys(struct iwl_mvm *mvm,
1869 struct ieee80211_vif *vif,
1870 struct iwl_wowlan_status *status)
1871{
1872 struct iwl_mvm_d3_gtk_iter_data gtkdata = {
Eliad Peller0eb1c962015-12-31 15:19:32 +02001873 .mvm = mvm,
Eliad Pellera3f7ba52015-11-11 17:23:59 +02001874 .status = status,
1875 };
1876
1877 /*
1878 * rekey handling requires taking locks that can't be taken now.
1879 * however, d0i3 doesn't offload rekey, so we're fine.
1880 */
1881 if (WARN_ON_ONCE(status->num_of_gtk_rekeys))
1882 return;
1883
1884 /* find last GTK that we used initially, if any */
1885 gtkdata.find_phase = true;
1886 iwl_mvm_iter_d0i3_ap_keys(mvm, vif, iwl_mvm_d3_update_keys, &gtkdata);
1887
1888 gtkdata.find_phase = false;
1889 iwl_mvm_iter_d0i3_ap_keys(mvm, vif, iwl_mvm_d3_update_keys, &gtkdata);
1890}
1891
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001892struct iwl_mvm_nd_query_results {
1893 u32 matched_profiles;
1894 struct iwl_scan_offload_profile_match matches[IWL_SCAN_MAX_PROFILES];
1895};
1896
1897static int
1898iwl_mvm_netdetect_query_results(struct iwl_mvm *mvm,
1899 struct iwl_mvm_nd_query_results *results)
Luciano Coelhob04998f2014-11-20 15:58:34 +02001900{
1901 struct iwl_scan_offload_profiles_query *query;
1902 struct iwl_host_cmd cmd = {
1903 .id = SCAN_OFFLOAD_PROFILES_QUERY_CMD,
1904 .flags = CMD_WANT_SKB,
1905 };
1906 int ret, len;
1907
1908 ret = iwl_mvm_send_cmd(mvm, &cmd);
1909 if (ret) {
1910 IWL_ERR(mvm, "failed to query matched profiles (%d)\n", ret);
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001911 return ret;
Luciano Coelhob04998f2014-11-20 15:58:34 +02001912 }
1913
1914 /* RF-kill already asserted again... */
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001915 if (!cmd.resp_pkt) {
1916 ret = -ERFKILL;
Luciano Coelhob04998f2014-11-20 15:58:34 +02001917 goto out_free_resp;
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001918 }
Luciano Coelhob04998f2014-11-20 15:58:34 +02001919
1920 len = iwl_rx_packet_payload_len(cmd.resp_pkt);
1921 if (len < sizeof(*query)) {
1922 IWL_ERR(mvm, "Invalid scan offload profiles query response!\n");
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001923 ret = -EIO;
Luciano Coelhob04998f2014-11-20 15:58:34 +02001924 goto out_free_resp;
1925 }
1926
1927 query = (void *)cmd.resp_pkt->data;
1928
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001929 results->matched_profiles = le32_to_cpu(query->matched_profiles);
1930 memcpy(results->matches, query->matches, sizeof(results->matches));
Luciano Coelhob04998f2014-11-20 15:58:34 +02001931
Emmanuel Grumbach6bbd5522015-04-28 15:00:23 +03001932#ifdef CONFIG_IWLWIFI_DEBUGFS
Luciano Coelho484b3d12015-03-30 20:46:32 +03001933 mvm->last_netdetect_scans = le32_to_cpu(query->n_scans_done);
1934#endif
1935
Luciano Coelhob04998f2014-11-20 15:58:34 +02001936out_free_resp:
1937 iwl_free_resp(&cmd);
1938 return ret;
1939}
1940
Luciano Coelho2021a892014-11-20 08:59:51 +02001941static void iwl_mvm_query_netdetect_reasons(struct iwl_mvm *mvm,
1942 struct ieee80211_vif *vif)
1943{
Luciano Coelhod9718da2014-11-21 09:32:23 +02001944 struct cfg80211_wowlan_nd_info *net_detect = NULL;
Luciano Coelho2021a892014-11-20 08:59:51 +02001945 struct cfg80211_wowlan_wakeup wakeup = {
1946 .pattern_idx = -1,
1947 };
1948 struct cfg80211_wowlan_wakeup *wakeup_report = &wakeup;
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001949 struct iwl_mvm_nd_query_results query;
Luciano Coelho2021a892014-11-20 08:59:51 +02001950 struct iwl_wowlan_status *fw_status;
Luciano Coelhod9718da2014-11-21 09:32:23 +02001951 unsigned long matched_profiles;
Luciano Coelho2021a892014-11-20 08:59:51 +02001952 u32 reasons = 0;
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001953 int i, j, n_matches, ret;
Luciano Coelho2021a892014-11-20 08:59:51 +02001954
1955 fw_status = iwl_mvm_get_wakeup_status(mvm, vif);
Haim Dreyfuss2fc863a2015-05-20 08:10:43 +03001956 if (!IS_ERR_OR_NULL(fw_status)) {
Luciano Coelho2021a892014-11-20 08:59:51 +02001957 reasons = le32_to_cpu(fw_status->wakeup_reasons);
Haim Dreyfuss2fc863a2015-05-20 08:10:43 +03001958 kfree(fw_status);
1959 }
Luciano Coelho2021a892014-11-20 08:59:51 +02001960
1961 if (reasons & IWL_WOWLAN_WAKEUP_BY_RFKILL_DEASSERTED)
1962 wakeup.rfkill_release = true;
1963
Luciano Coelhob04998f2014-11-20 15:58:34 +02001964 if (reasons != IWL_WOWLAN_WAKEUP_BY_NON_WIRELESS)
1965 goto out;
1966
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001967 ret = iwl_mvm_netdetect_query_results(mvm, &query);
1968 if (ret || !query.matched_profiles) {
Luciano Coelho2021a892014-11-20 08:59:51 +02001969 wakeup_report = NULL;
Luciano Coelhob04998f2014-11-20 15:58:34 +02001970 goto out;
Luciano Coelho2021a892014-11-20 08:59:51 +02001971 }
1972
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001973 matched_profiles = query.matched_profiles;
Luciano Coelhod9718da2014-11-21 09:32:23 +02001974 if (mvm->n_nd_match_sets) {
1975 n_matches = hweight_long(matched_profiles);
1976 } else {
1977 IWL_ERR(mvm, "no net detect match information available\n");
1978 n_matches = 0;
1979 }
1980
1981 net_detect = kzalloc(sizeof(*net_detect) +
1982 (n_matches * sizeof(net_detect->matches[0])),
1983 GFP_KERNEL);
1984 if (!net_detect || !n_matches)
1985 goto out_report_nd;
1986
1987 for_each_set_bit(i, &matched_profiles, mvm->n_nd_match_sets) {
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001988 struct iwl_scan_offload_profile_match *fw_match;
Luciano Coelhod9718da2014-11-21 09:32:23 +02001989 struct cfg80211_wowlan_nd_match *match;
Luciano Coelhoae90c2e52015-05-06 10:45:42 +03001990 int idx, n_channels = 0;
Luciano Coelhod9718da2014-11-21 09:32:23 +02001991
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001992 fw_match = &query.matches[i];
1993
1994 for (j = 0; j < SCAN_OFFLOAD_MATCHING_CHANNELS_LEN; j++)
1995 n_channels += hweight8(fw_match->matching_channels[j]);
1996
1997 match = kzalloc(sizeof(*match) +
1998 (n_channels * sizeof(*match->channels)),
1999 GFP_KERNEL);
Luciano Coelhod9718da2014-11-21 09:32:23 +02002000 if (!match)
2001 goto out_report_nd;
2002
Luciano Coelho8ed4e652014-11-21 22:08:01 +02002003 net_detect->matches[net_detect->n_matches++] = match;
2004
Luciano Coelhoae90c2e52015-05-06 10:45:42 +03002005 /* We inverted the order of the SSIDs in the scan
2006 * request, so invert the index here.
2007 */
2008 idx = mvm->n_nd_match_sets - i - 1;
2009 match->ssid.ssid_len = mvm->nd_match_sets[idx].ssid.ssid_len;
2010 memcpy(match->ssid.ssid, mvm->nd_match_sets[idx].ssid.ssid,
Luciano Coelhod9718da2014-11-21 09:32:23 +02002011 match->ssid.ssid_len);
2012
Luciano Coelho8ed4e652014-11-21 22:08:01 +02002013 if (mvm->n_nd_channels < n_channels)
2014 continue;
2015
2016 for (j = 0; j < SCAN_OFFLOAD_MATCHING_CHANNELS_LEN * 8; j++)
2017 if (fw_match->matching_channels[j / 8] & (BIT(j % 8)))
2018 match->channels[match->n_channels++] =
2019 mvm->nd_channels[j]->center_freq;
Luciano Coelhod9718da2014-11-21 09:32:23 +02002020 }
2021
2022out_report_nd:
2023 wakeup.net_detect = net_detect;
Luciano Coelhob04998f2014-11-20 15:58:34 +02002024out:
Luciano Coelhod9718da2014-11-21 09:32:23 +02002025 iwl_mvm_free_nd(mvm);
2026
Luciano Coelho2021a892014-11-20 08:59:51 +02002027 mutex_unlock(&mvm->mutex);
2028 ieee80211_report_wowlan_wakeup(vif, wakeup_report, GFP_KERNEL);
Luciano Coelhod9718da2014-11-21 09:32:23 +02002029
2030 if (net_detect) {
2031 for (i = 0; i < net_detect->n_matches; i++)
2032 kfree(net_detect->matches[i]);
2033 kfree(net_detect);
2034 }
Luciano Coelho2021a892014-11-20 08:59:51 +02002035}
2036
Johannes Bergafc66bb2013-05-03 11:44:16 +02002037static void iwl_mvm_read_d3_sram(struct iwl_mvm *mvm)
2038{
2039#ifdef CONFIG_IWLWIFI_DEBUGFS
2040 const struct fw_img *img = &mvm->fw->img[IWL_UCODE_WOWLAN];
2041 u32 len = img->sec[IWL_UCODE_SECTION_DATA].len;
2042 u32 offs = img->sec[IWL_UCODE_SECTION_DATA].offset;
2043
2044 if (!mvm->store_d3_resume_sram)
2045 return;
2046
2047 if (!mvm->d3_resume_sram) {
2048 mvm->d3_resume_sram = kzalloc(len, GFP_KERNEL);
2049 if (!mvm->d3_resume_sram)
2050 return;
2051 }
2052
2053 iwl_trans_read_mem_bytes(mvm->trans, offs, mvm->d3_resume_sram, len);
2054#endif
2055}
2056
Johannes Berg6d9d32b2013-08-06 18:58:56 +02002057static void iwl_mvm_d3_disconnect_iter(void *data, u8 *mac,
2058 struct ieee80211_vif *vif)
2059{
2060 /* skip the one we keep connection on */
2061 if (data == vif)
2062 return;
2063
2064 if (vif->type == NL80211_IFTYPE_STATION)
2065 ieee80211_resume_disconnect(vif);
2066}
2067
Johannes Bergdebff612013-05-14 13:53:45 +02002068static int __iwl_mvm_resume(struct iwl_mvm *mvm, bool test)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002069{
Johannes Berg8ca151b2013-01-24 14:25:36 +01002070 struct ieee80211_vif *vif = NULL;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002071 int ret = 1;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002072 enum iwl_d3_status d3_status;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02002073 bool keep = false;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002074 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
2075 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
2076
2077 u32 flags = CMD_ASYNC | CMD_HIGH_PRIO | CMD_SEND_IN_IDLE |
2078 CMD_WAKE_UP_TRANS;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002079
2080 mutex_lock(&mvm->mutex);
2081
2082 /* get the BSS vif pointer again */
Luciano Coelho7f549e22014-10-02 15:38:04 +03002083 vif = iwl_mvm_get_bss_vif(mvm);
2084 if (IS_ERR_OR_NULL(vif))
Luciano Coelhoa500e462015-05-04 17:03:17 +03002085 goto err;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002086
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002087 ret = iwl_trans_d3_resume(mvm->trans, &d3_status, test, !unified_image);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002088 if (ret)
Luciano Coelhoa500e462015-05-04 17:03:17 +03002089 goto err;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002090
2091 if (d3_status != IWL_D3_STATUS_ALIVE) {
2092 IWL_INFO(mvm, "Device was reset during suspend\n");
Luciano Coelhoa500e462015-05-04 17:03:17 +03002093 goto err;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002094 }
2095
Johannes Bergafc66bb2013-05-03 11:44:16 +02002096 /* query SRAM first in case we want event logging */
2097 iwl_mvm_read_d3_sram(mvm);
2098
Jonathan Doron47c8b152014-11-27 16:55:25 +02002099 /*
2100 * Query the current location and source from the D3 firmware so we
2101 * can play it back when we re-intiailize the D0 firmware
2102 */
2103 iwl_mvm_update_changed_regdom(mvm);
2104
Luciano Coelho2021a892014-11-20 08:59:51 +02002105 if (mvm->net_detect) {
Luca Coelho5a143db2016-10-05 09:28:53 +03002106 /* If this is a non-unified image, we restart the FW,
2107 * so no need to stop the netdetect scan. If that
2108 * fails, continue and try to get the wake-up reasons,
2109 * but trigger a HW restart by keeping a failure code
2110 * in ret.
2111 */
2112 if (unified_image)
2113 ret = iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_NETDETECT,
2114 false);
2115
Luciano Coelho2021a892014-11-20 08:59:51 +02002116 iwl_mvm_query_netdetect_reasons(mvm, vif);
Luciano Coelhoe0ede172015-02-13 21:37:09 +02002117 /* has unlocked the mutex, so skip that */
2118 goto out;
Luciano Coelho2021a892014-11-20 08:59:51 +02002119 } else {
2120 keep = iwl_mvm_query_wakeup_reasons(mvm, vif);
Eliad Peller78c9df62013-11-07 14:13:30 +02002121#ifdef CONFIG_IWLWIFI_DEBUGFS
Luciano Coelho2021a892014-11-20 08:59:51 +02002122 if (keep)
2123 mvm->keep_vif = vif;
Luciano Coelho0c2ae042015-03-12 09:25:15 +02002124#endif
Luciano Coelhoe0ede172015-02-13 21:37:09 +02002125 /* has unlocked the mutex, so skip that */
2126 goto out_iterate;
Luciano Coelho2021a892014-11-20 08:59:51 +02002127 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002128
Luciano Coelhoa500e462015-05-04 17:03:17 +03002129err:
2130 iwl_mvm_free_nd(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002131 mutex_unlock(&mvm->mutex);
2132
Luciano Coelhoe0ede172015-02-13 21:37:09 +02002133out_iterate:
Johannes Berg6d9d32b2013-08-06 18:58:56 +02002134 if (!test)
2135 ieee80211_iterate_active_interfaces_rtnl(mvm->hw,
2136 IEEE80211_IFACE_ITER_NORMAL,
2137 iwl_mvm_d3_disconnect_iter, keep ? vif : NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002138
Luciano Coelhoe0ede172015-02-13 21:37:09 +02002139out:
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002140 if (unified_image && !ret) {
2141 ret = iwl_mvm_send_cmd_pdu(mvm, D0I3_END_CMD, flags, 0, NULL);
2142 if (!ret) /* D3 ended successfully - no need to reset device */
2143 return 0;
2144 }
2145
2146 /*
2147 * Reconfigure the device in one of the following cases:
2148 * 1. We are not using a unified image
2149 * 2. We are using a unified image but had an error while exiting D3
2150 */
Johannes Berg8ca151b2013-01-24 14:25:36 +01002151 set_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
Johannes Berg58629d92014-11-06 09:40:50 +01002152 set_bit(IWL_MVM_STATUS_D3_RECONFIG, &mvm->status);
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002153 /*
2154 * When switching images we return 1, which causes mac80211
2155 * to do a reconfig with IEEE80211_RECONFIG_TYPE_RESTART.
2156 * This type of reconfig calls iwl_mvm_restart_complete(),
2157 * where we unref the IWL_MVM_REF_UCODE_DOWN, so we need
2158 * to take the reference here.
Luciano Coelhodcfc7fb2015-04-28 08:41:55 +03002159 */
2160 iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002161
Johannes Berg8ca151b2013-01-24 14:25:36 +01002162 return 1;
2163}
2164
Eliad Peller2d428012015-06-17 15:32:37 +03002165static int iwl_mvm_resume_d3(struct iwl_mvm *mvm)
2166{
2167 iwl_trans_resume(mvm->trans);
2168
2169 return __iwl_mvm_resume(mvm, false);
2170}
2171
2172static int iwl_mvm_resume_d0i3(struct iwl_mvm *mvm)
2173{
2174 bool exit_now;
Eliad Peller6dfb36c2015-07-09 14:17:24 +03002175 enum iwl_d3_status d3_status;
Luca Coelhob7282642015-09-17 23:44:14 +03002176 struct iwl_trans *trans = mvm->trans;
Eliad Peller6dfb36c2015-07-09 14:17:24 +03002177
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002178 iwl_trans_d3_resume(trans, &d3_status, false, false);
Eliad Peller2d428012015-06-17 15:32:37 +03002179
2180 /*
2181 * make sure to clear D0I3_DEFER_WAKEUP before
2182 * calling iwl_trans_resume(), which might wait
2183 * for d0i3 exit completion.
2184 */
2185 mutex_lock(&mvm->d0i3_suspend_mutex);
2186 __clear_bit(D0I3_DEFER_WAKEUP, &mvm->d0i3_suspend_flags);
2187 exit_now = __test_and_clear_bit(D0I3_PENDING_WAKEUP,
2188 &mvm->d0i3_suspend_flags);
2189 mutex_unlock(&mvm->d0i3_suspend_mutex);
2190 if (exit_now) {
2191 IWL_DEBUG_RPM(mvm, "Run deferred d0i3 exit\n");
2192 _iwl_mvm_exit_d0i3(mvm);
2193 }
2194
Luca Coelhob7282642015-09-17 23:44:14 +03002195 iwl_trans_resume(trans);
Eliad Peller2d428012015-06-17 15:32:37 +03002196
Luca Coelhob7282642015-09-17 23:44:14 +03002197 if (iwl_mvm_enter_d0i3_on_suspend(mvm)) {
Eliad Peller2d428012015-06-17 15:32:37 +03002198 int ret = iwl_mvm_exit_d0i3(mvm->hw->priv);
2199
2200 if (ret)
2201 return ret;
2202 /*
2203 * d0i3 exit will be deferred until reconfig_complete.
2204 * make sure there we are out of d0i3.
2205 */
2206 }
2207 return 0;
2208}
2209
Johannes Bergdebff612013-05-14 13:53:45 +02002210int iwl_mvm_resume(struct ieee80211_hw *hw)
2211{
2212 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luca Coelhob7282642015-09-17 23:44:14 +03002213 int ret;
Johannes Bergdebff612013-05-14 13:53:45 +02002214
Luca Coelhob7282642015-09-17 23:44:14 +03002215 if (mvm->trans->system_pm_mode == IWL_PLAT_PM_MODE_D0I3)
2216 ret = iwl_mvm_resume_d0i3(mvm);
Eliad Peller2d428012015-06-17 15:32:37 +03002217 else
Luca Coelhob7282642015-09-17 23:44:14 +03002218 ret = iwl_mvm_resume_d3(mvm);
2219
2220 mvm->trans->system_pm_mode = IWL_PLAT_PM_MODE_DISABLED;
2221
2222 return ret;
Johannes Bergdebff612013-05-14 13:53:45 +02002223}
2224
Johannes Berg8ca151b2013-01-24 14:25:36 +01002225void iwl_mvm_set_wakeup(struct ieee80211_hw *hw, bool enabled)
2226{
2227 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2228
2229 device_set_wakeup_enable(mvm->trans->dev, enabled);
2230}
Johannes Bergdebff612013-05-14 13:53:45 +02002231
2232#ifdef CONFIG_IWLWIFI_DEBUGFS
2233static int iwl_mvm_d3_test_open(struct inode *inode, struct file *file)
2234{
2235 struct iwl_mvm *mvm = inode->i_private;
2236 int err;
2237
2238 if (mvm->d3_test_active)
2239 return -EBUSY;
2240
2241 file->private_data = inode->i_private;
2242
2243 ieee80211_stop_queues(mvm->hw);
2244 synchronize_net();
2245
Luca Coelhob7282642015-09-17 23:44:14 +03002246 mvm->trans->system_pm_mode = IWL_PLAT_PM_MODE_D3;
2247
Johannes Bergdebff612013-05-14 13:53:45 +02002248 /* start pseudo D3 */
2249 rtnl_lock();
2250 err = __iwl_mvm_suspend(mvm->hw, mvm->hw->wiphy->wowlan_config, true);
2251 rtnl_unlock();
2252 if (err > 0)
2253 err = -EINVAL;
2254 if (err) {
2255 ieee80211_wake_queues(mvm->hw);
2256 return err;
2257 }
2258 mvm->d3_test_active = true;
Eliad Peller78c9df62013-11-07 14:13:30 +02002259 mvm->keep_vif = NULL;
Johannes Bergdebff612013-05-14 13:53:45 +02002260 return 0;
2261}
2262
2263static ssize_t iwl_mvm_d3_test_read(struct file *file, char __user *user_buf,
2264 size_t count, loff_t *ppos)
2265{
2266 struct iwl_mvm *mvm = file->private_data;
2267 u32 pme_asserted;
2268
2269 while (true) {
Eliad Peller4ed80a82013-11-07 13:23:21 +02002270 /* read pme_ptr if available */
2271 if (mvm->d3_test_pme_ptr) {
2272 pme_asserted = iwl_trans_read_mem32(mvm->trans,
2273 mvm->d3_test_pme_ptr);
2274 if (pme_asserted)
2275 break;
2276 }
2277
Johannes Bergdebff612013-05-14 13:53:45 +02002278 if (msleep_interruptible(100))
2279 break;
2280 }
2281
2282 return 0;
2283}
2284
2285static void iwl_mvm_d3_test_disconn_work_iter(void *_data, u8 *mac,
2286 struct ieee80211_vif *vif)
2287{
Eliad Peller78c9df62013-11-07 14:13:30 +02002288 /* skip the one we keep connection on */
2289 if (_data == vif)
2290 return;
2291
Johannes Bergdebff612013-05-14 13:53:45 +02002292 if (vif->type == NL80211_IFTYPE_STATION)
2293 ieee80211_connection_loss(vif);
2294}
2295
2296static int iwl_mvm_d3_test_release(struct inode *inode, struct file *file)
2297{
2298 struct iwl_mvm *mvm = inode->i_private;
Luca Coelho85cd69b2016-10-05 11:24:12 +03002299 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
2300 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
Johannes Bergdebff612013-05-14 13:53:45 +02002301
2302 mvm->d3_test_active = false;
Luca Coelhob7282642015-09-17 23:44:14 +03002303
Luciano Coelho31ca09d2014-09-22 13:22:51 +03002304 rtnl_lock();
Johannes Bergdebff612013-05-14 13:53:45 +02002305 __iwl_mvm_resume(mvm, true);
Luciano Coelho31ca09d2014-09-22 13:22:51 +03002306 rtnl_unlock();
Luca Coelhob7282642015-09-17 23:44:14 +03002307
2308 mvm->trans->system_pm_mode = IWL_PLAT_PM_MODE_DISABLED;
2309
Johannes Bergdebff612013-05-14 13:53:45 +02002310 iwl_abort_notification_waits(&mvm->notif_wait);
Luca Coelho85cd69b2016-10-05 11:24:12 +03002311 if (!unified_image) {
2312 int remaining_time = 10;
Johannes Bergdebff612013-05-14 13:53:45 +02002313
Luca Coelho85cd69b2016-10-05 11:24:12 +03002314 ieee80211_restart_hw(mvm->hw);
2315
2316 /* wait for restart and disconnect all interfaces */
2317 while (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) &&
2318 remaining_time > 0) {
2319 remaining_time--;
2320 msleep(1000);
2321 }
2322
2323 if (remaining_time == 0)
2324 IWL_ERR(mvm, "Timed out waiting for HW restart!\n");
Johannes Bergdebff612013-05-14 13:53:45 +02002325 }
2326
Johannes Bergdebff612013-05-14 13:53:45 +02002327 ieee80211_iterate_active_interfaces_atomic(
2328 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
Eliad Peller78c9df62013-11-07 14:13:30 +02002329 iwl_mvm_d3_test_disconn_work_iter, mvm->keep_vif);
Johannes Bergdebff612013-05-14 13:53:45 +02002330
2331 ieee80211_wake_queues(mvm->hw);
2332
2333 return 0;
2334}
2335
2336const struct file_operations iwl_dbgfs_d3_test_ops = {
2337 .llseek = no_llseek,
2338 .open = iwl_mvm_d3_test_open,
2339 .read = iwl_mvm_d3_test_read,
2340 .release = iwl_mvm_d3_test_release,
2341};
2342#endif