blob: 78572ef89b26676e119175d766fdfcf5f0396e98 [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) {
254 tkip_sc = data->rsc_tsc->all_tsc_rsc.tkip.unicast_rsc;
255 tkip_tx_sc = &data->rsc_tsc->all_tsc_rsc.tkip.tsc;
256
257 rx_p1ks = data->tkip->rx_uni;
258
259 ieee80211_get_key_tx_seq(key, &seq);
260 tkip_tx_sc->iv16 = cpu_to_le16(seq.tkip.iv16);
261 tkip_tx_sc->iv32 = cpu_to_le32(seq.tkip.iv32);
262
263 ieee80211_get_tkip_p1k_iv(key, seq.tkip.iv32, p1k);
264 iwl_mvm_convert_p1k(p1k, data->tkip->tx.p1k);
265
266 memcpy(data->tkip->mic_keys.tx,
267 &key->key[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY],
268 IWL_MIC_KEY_SIZE);
269
270 rx_mic_key = data->tkip->mic_keys.rx_unicast;
271 } else {
272 tkip_sc =
273 data->rsc_tsc->all_tsc_rsc.tkip.multicast_rsc;
274 rx_p1ks = data->tkip->rx_multi;
275 rx_mic_key = data->tkip->mic_keys.rx_mcast;
276 }
277
278 /*
279 * For non-QoS this relies on the fact that both the uCode and
280 * mac80211 use TID 0 (as they need to to avoid replay attacks)
281 * for checking the IV in the frames.
282 */
283 for (i = 0; i < IWL_NUM_RSC; i++) {
284 ieee80211_get_key_rx_seq(key, i, &seq);
285 tkip_sc[i].iv16 = cpu_to_le16(seq.tkip.iv16);
286 tkip_sc[i].iv32 = cpu_to_le32(seq.tkip.iv32);
287 /* wrapping isn't allowed, AP must rekey */
288 if (seq.tkip.iv32 > cur_rx_iv32)
289 cur_rx_iv32 = seq.tkip.iv32;
290 }
291
292 ieee80211_get_tkip_rx_p1k(key, vif->bss_conf.bssid,
293 cur_rx_iv32, p1k);
294 iwl_mvm_convert_p1k(p1k, rx_p1ks[0].p1k);
295 ieee80211_get_tkip_rx_p1k(key, vif->bss_conf.bssid,
296 cur_rx_iv32 + 1, p1k);
297 iwl_mvm_convert_p1k(p1k, rx_p1ks[1].p1k);
298
299 memcpy(rx_mic_key,
300 &key->key[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY],
301 IWL_MIC_KEY_SIZE);
302
303 data->use_tkip = true;
304 data->use_rsc_tsc = true;
305 break;
306 case WLAN_CIPHER_SUITE_CCMP:
307 if (sta) {
Johannes Berg6645d5e2015-09-15 09:58:53 +0200308 u64 pn64;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100309
310 aes_sc = data->rsc_tsc->all_tsc_rsc.aes.unicast_rsc;
311 aes_tx_sc = &data->rsc_tsc->all_tsc_rsc.aes.tsc;
312
Johannes Berg6645d5e2015-09-15 09:58:53 +0200313 pn64 = atomic64_read(&key->tx_pn);
314 aes_tx_sc->pn = cpu_to_le64(pn64);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100315 } else {
316 aes_sc = data->rsc_tsc->all_tsc_rsc.aes.multicast_rsc;
317 }
318
319 /*
320 * For non-QoS this relies on the fact that both the uCode and
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200321 * mac80211/our RX code use TID 0 for checking the PN.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100322 */
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200323 if (sta && iwl_mvm_has_new_rx_api(mvm)) {
324 struct iwl_mvm_sta *mvmsta;
325 struct iwl_mvm_key_pn *ptk_pn;
326 const u8 *pn;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100327
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200328 mvmsta = iwl_mvm_sta_from_mac80211(sta);
329 ptk_pn = rcu_dereference_protected(
330 mvmsta->ptk_pn[key->keyidx],
331 lockdep_is_held(&mvm->mutex));
332 if (WARN_ON(!ptk_pn))
333 break;
334
335 for (i = 0; i < IWL_MAX_TID_COUNT; i++) {
336 pn = iwl_mvm_find_max_pn(key, ptk_pn, &seq, i,
337 mvm->trans->num_rx_queues);
338 aes_sc[i].pn = cpu_to_le64((u64)pn[5] |
339 ((u64)pn[4] << 8) |
340 ((u64)pn[3] << 16) |
341 ((u64)pn[2] << 24) |
342 ((u64)pn[1] << 32) |
343 ((u64)pn[0] << 40));
344 }
345 } else {
346 for (i = 0; i < IWL_NUM_RSC; i++) {
347 u8 *pn = seq.ccmp.pn;
348
349 ieee80211_get_key_rx_seq(key, i, &seq);
350 aes_sc[i].pn = cpu_to_le64((u64)pn[5] |
351 ((u64)pn[4] << 8) |
352 ((u64)pn[3] << 16) |
353 ((u64)pn[2] << 24) |
354 ((u64)pn[1] << 32) |
355 ((u64)pn[0] << 40));
356 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100357 }
358 data->use_rsc_tsc = true;
359 break;
360 }
361
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200362 if (data->configure_keys) {
363 mutex_lock(&mvm->mutex);
Johannes Berg5312e542013-07-22 18:26:56 +0200364 /*
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200365 * The D3 firmware hardcodes the key offset 0 as the key it
366 * uses to transmit packets to the AP, i.e. the PTK.
Johannes Berg5312e542013-07-22 18:26:56 +0200367 */
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200368 if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) {
369 mvm->ptk_ivlen = key->iv_len;
370 mvm->ptk_icvlen = key->icv_len;
371 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, 0);
372 } else {
373 /*
374 * firmware only supports TSC/RSC for a single key,
375 * so if there are multiple keep overwriting them
376 * with new ones -- this relies on mac80211 doing
377 * list_add_tail().
378 */
379 mvm->gtk_ivlen = key->iv_len;
380 mvm->gtk_icvlen = key->icv_len;
381 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, 1);
382 }
383 mutex_unlock(&mvm->mutex);
384 data->error = ret != 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100385 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100386}
387
388static int iwl_mvm_send_patterns(struct iwl_mvm *mvm,
389 struct cfg80211_wowlan *wowlan)
390{
391 struct iwl_wowlan_patterns_cmd *pattern_cmd;
392 struct iwl_host_cmd cmd = {
393 .id = WOWLAN_PATTERNS,
394 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100395 };
396 int i, err;
397
398 if (!wowlan->n_patterns)
399 return 0;
400
401 cmd.len[0] = sizeof(*pattern_cmd) +
402 wowlan->n_patterns * sizeof(struct iwl_wowlan_pattern);
403
404 pattern_cmd = kmalloc(cmd.len[0], GFP_KERNEL);
405 if (!pattern_cmd)
406 return -ENOMEM;
407
408 pattern_cmd->n_patterns = cpu_to_le32(wowlan->n_patterns);
409
410 for (i = 0; i < wowlan->n_patterns; i++) {
411 int mask_len = DIV_ROUND_UP(wowlan->patterns[i].pattern_len, 8);
412
413 memcpy(&pattern_cmd->patterns[i].mask,
414 wowlan->patterns[i].mask, mask_len);
415 memcpy(&pattern_cmd->patterns[i].pattern,
416 wowlan->patterns[i].pattern,
417 wowlan->patterns[i].pattern_len);
418 pattern_cmd->patterns[i].mask_size = mask_len;
419 pattern_cmd->patterns[i].pattern_size =
420 wowlan->patterns[i].pattern_len;
421 }
422
423 cmd.data[0] = pattern_cmd;
424 err = iwl_mvm_send_cmd(mvm, &cmd);
425 kfree(pattern_cmd);
426 return err;
427}
428
Johannes Bergf0c26462013-01-22 20:41:58 +0100429enum iwl_mvm_tcp_packet_type {
430 MVM_TCP_TX_SYN,
431 MVM_TCP_RX_SYNACK,
432 MVM_TCP_TX_DATA,
433 MVM_TCP_RX_ACK,
434 MVM_TCP_RX_WAKE,
435 MVM_TCP_TX_FIN,
436};
437
438static __le16 pseudo_hdr_check(int len, __be32 saddr, __be32 daddr)
439{
440 __sum16 check = tcp_v4_check(len, saddr, daddr, 0);
441 return cpu_to_le16(be16_to_cpu((__force __be16)check));
442}
443
Oren Givonb002c7e2013-06-12 20:37:03 +0300444static void iwl_mvm_build_tcp_packet(struct ieee80211_vif *vif,
Johannes Bergf0c26462013-01-22 20:41:58 +0100445 struct cfg80211_wowlan_tcp *tcp,
446 void *_pkt, u8 *mask,
447 __le16 *pseudo_hdr_csum,
448 enum iwl_mvm_tcp_packet_type ptype)
449{
450 struct {
451 struct ethhdr eth;
452 struct iphdr ip;
453 struct tcphdr tcp;
454 u8 data[];
455 } __packed *pkt = _pkt;
456 u16 ip_tot_len = sizeof(struct iphdr) + sizeof(struct tcphdr);
457 int i;
458
459 pkt->eth.h_proto = cpu_to_be16(ETH_P_IP),
460 pkt->ip.version = 4;
461 pkt->ip.ihl = 5;
462 pkt->ip.protocol = IPPROTO_TCP;
463
464 switch (ptype) {
465 case MVM_TCP_TX_SYN:
466 case MVM_TCP_TX_DATA:
467 case MVM_TCP_TX_FIN:
468 memcpy(pkt->eth.h_dest, tcp->dst_mac, ETH_ALEN);
469 memcpy(pkt->eth.h_source, vif->addr, ETH_ALEN);
470 pkt->ip.ttl = 128;
471 pkt->ip.saddr = tcp->src;
472 pkt->ip.daddr = tcp->dst;
473 pkt->tcp.source = cpu_to_be16(tcp->src_port);
474 pkt->tcp.dest = cpu_to_be16(tcp->dst_port);
475 /* overwritten for TX SYN later */
476 pkt->tcp.doff = sizeof(struct tcphdr) / 4;
477 pkt->tcp.window = cpu_to_be16(65000);
478 break;
479 case MVM_TCP_RX_SYNACK:
480 case MVM_TCP_RX_ACK:
481 case MVM_TCP_RX_WAKE:
482 memcpy(pkt->eth.h_dest, vif->addr, ETH_ALEN);
483 memcpy(pkt->eth.h_source, tcp->dst_mac, ETH_ALEN);
484 pkt->ip.saddr = tcp->dst;
485 pkt->ip.daddr = tcp->src;
486 pkt->tcp.source = cpu_to_be16(tcp->dst_port);
487 pkt->tcp.dest = cpu_to_be16(tcp->src_port);
488 break;
489 default:
490 WARN_ON(1);
491 return;
492 }
493
494 switch (ptype) {
495 case MVM_TCP_TX_SYN:
496 /* firmware assumes 8 option bytes - 8 NOPs for now */
497 memset(pkt->data, 0x01, 8);
498 ip_tot_len += 8;
499 pkt->tcp.doff = (sizeof(struct tcphdr) + 8) / 4;
500 pkt->tcp.syn = 1;
501 break;
502 case MVM_TCP_TX_DATA:
503 ip_tot_len += tcp->payload_len;
504 memcpy(pkt->data, tcp->payload, tcp->payload_len);
505 pkt->tcp.psh = 1;
506 pkt->tcp.ack = 1;
507 break;
508 case MVM_TCP_TX_FIN:
509 pkt->tcp.fin = 1;
510 pkt->tcp.ack = 1;
511 break;
512 case MVM_TCP_RX_SYNACK:
513 pkt->tcp.syn = 1;
514 pkt->tcp.ack = 1;
515 break;
516 case MVM_TCP_RX_ACK:
517 pkt->tcp.ack = 1;
518 break;
519 case MVM_TCP_RX_WAKE:
520 ip_tot_len += tcp->wake_len;
521 pkt->tcp.psh = 1;
522 pkt->tcp.ack = 1;
523 memcpy(pkt->data, tcp->wake_data, tcp->wake_len);
524 break;
525 }
526
527 switch (ptype) {
528 case MVM_TCP_TX_SYN:
529 case MVM_TCP_TX_DATA:
530 case MVM_TCP_TX_FIN:
531 pkt->ip.tot_len = cpu_to_be16(ip_tot_len);
532 pkt->ip.check = ip_fast_csum(&pkt->ip, pkt->ip.ihl);
533 break;
534 case MVM_TCP_RX_WAKE:
535 for (i = 0; i < DIV_ROUND_UP(tcp->wake_len, 8); i++) {
536 u8 tmp = tcp->wake_mask[i];
537 mask[i + 6] |= tmp << 6;
538 if (i + 1 < DIV_ROUND_UP(tcp->wake_len, 8))
539 mask[i + 7] = tmp >> 2;
540 }
541 /* fall through for ethernet/IP/TCP headers mask */
542 case MVM_TCP_RX_SYNACK:
543 case MVM_TCP_RX_ACK:
544 mask[0] = 0xff; /* match ethernet */
545 /*
546 * match ethernet, ip.version, ip.ihl
547 * the ip.ihl half byte is really masked out by firmware
548 */
549 mask[1] = 0x7f;
550 mask[2] = 0x80; /* match ip.protocol */
551 mask[3] = 0xfc; /* match ip.saddr, ip.daddr */
552 mask[4] = 0x3f; /* match ip.daddr, tcp.source, tcp.dest */
553 mask[5] = 0x80; /* match tcp flags */
554 /* leave rest (0 or set for MVM_TCP_RX_WAKE) */
555 break;
556 };
557
558 *pseudo_hdr_csum = pseudo_hdr_check(ip_tot_len - sizeof(struct iphdr),
559 pkt->ip.saddr, pkt->ip.daddr);
560}
561
562static int iwl_mvm_send_remote_wake_cfg(struct iwl_mvm *mvm,
563 struct ieee80211_vif *vif,
564 struct cfg80211_wowlan_tcp *tcp)
565{
566 struct iwl_wowlan_remote_wake_config *cfg;
567 struct iwl_host_cmd cmd = {
568 .id = REMOTE_WAKE_CONFIG_CMD,
569 .len = { sizeof(*cfg), },
570 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
Johannes Bergf0c26462013-01-22 20:41:58 +0100571 };
572 int ret;
573
574 if (!tcp)
575 return 0;
576
577 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
578 if (!cfg)
579 return -ENOMEM;
580 cmd.data[0] = cfg;
581
582 cfg->max_syn_retries = 10;
583 cfg->max_data_retries = 10;
584 cfg->tcp_syn_ack_timeout = 1; /* seconds */
585 cfg->tcp_ack_timeout = 1; /* seconds */
586
587 /* SYN (TX) */
588 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300589 vif, tcp, cfg->syn_tx.data, NULL,
Johannes Bergf0c26462013-01-22 20:41:58 +0100590 &cfg->syn_tx.info.tcp_pseudo_header_checksum,
591 MVM_TCP_TX_SYN);
592 cfg->syn_tx.info.tcp_payload_length = 0;
593
594 /* SYN/ACK (RX) */
595 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300596 vif, tcp, cfg->synack_rx.data, cfg->synack_rx.rx_mask,
Johannes Bergf0c26462013-01-22 20:41:58 +0100597 &cfg->synack_rx.info.tcp_pseudo_header_checksum,
598 MVM_TCP_RX_SYNACK);
599 cfg->synack_rx.info.tcp_payload_length = 0;
600
601 /* KEEPALIVE/ACK (TX) */
602 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300603 vif, tcp, cfg->keepalive_tx.data, NULL,
Johannes Bergf0c26462013-01-22 20:41:58 +0100604 &cfg->keepalive_tx.info.tcp_pseudo_header_checksum,
605 MVM_TCP_TX_DATA);
606 cfg->keepalive_tx.info.tcp_payload_length =
607 cpu_to_le16(tcp->payload_len);
608 cfg->sequence_number_offset = tcp->payload_seq.offset;
609 /* length must be 0..4, the field is little endian */
610 cfg->sequence_number_length = tcp->payload_seq.len;
611 cfg->initial_sequence_number = cpu_to_le32(tcp->payload_seq.start);
612 cfg->keepalive_interval = cpu_to_le16(tcp->data_interval);
613 if (tcp->payload_tok.len) {
614 cfg->token_offset = tcp->payload_tok.offset;
615 cfg->token_length = tcp->payload_tok.len;
616 cfg->num_tokens =
617 cpu_to_le16(tcp->tokens_size % tcp->payload_tok.len);
618 memcpy(cfg->tokens, tcp->payload_tok.token_stream,
619 tcp->tokens_size);
620 } else {
621 /* set tokens to max value to almost never run out */
622 cfg->num_tokens = cpu_to_le16(65535);
623 }
624
625 /* ACK (RX) */
626 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300627 vif, tcp, cfg->keepalive_ack_rx.data,
Johannes Bergf0c26462013-01-22 20:41:58 +0100628 cfg->keepalive_ack_rx.rx_mask,
629 &cfg->keepalive_ack_rx.info.tcp_pseudo_header_checksum,
630 MVM_TCP_RX_ACK);
631 cfg->keepalive_ack_rx.info.tcp_payload_length = 0;
632
633 /* WAKEUP (RX) */
634 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300635 vif, tcp, cfg->wake_rx.data, cfg->wake_rx.rx_mask,
Johannes Bergf0c26462013-01-22 20:41:58 +0100636 &cfg->wake_rx.info.tcp_pseudo_header_checksum,
637 MVM_TCP_RX_WAKE);
638 cfg->wake_rx.info.tcp_payload_length =
639 cpu_to_le16(tcp->wake_len);
640
641 /* FIN */
642 iwl_mvm_build_tcp_packet(
Oren Givonb002c7e2013-06-12 20:37:03 +0300643 vif, tcp, cfg->fin_tx.data, NULL,
Johannes Bergf0c26462013-01-22 20:41:58 +0100644 &cfg->fin_tx.info.tcp_pseudo_header_checksum,
645 MVM_TCP_TX_FIN);
646 cfg->fin_tx.info.tcp_payload_length = 0;
647
648 ret = iwl_mvm_send_cmd(mvm, &cmd);
649 kfree(cfg);
650
651 return ret;
652}
653
Johannes Berg8ca151b2013-01-24 14:25:36 +0100654static int iwl_mvm_d3_reprogram(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
655 struct ieee80211_sta *ap_sta)
656{
657 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
658 struct ieee80211_chanctx_conf *ctx;
659 u8 chains_static, chains_dynamic;
660 struct cfg80211_chan_def chandef;
661 int ret, i;
662 struct iwl_binding_cmd binding_cmd = {};
663 struct iwl_time_quota_cmd quota_cmd = {};
664 u32 status;
665
666 /* add back the PHY */
667 if (WARN_ON(!mvmvif->phy_ctxt))
668 return -EINVAL;
669
670 rcu_read_lock();
671 ctx = rcu_dereference(vif->chanctx_conf);
672 if (WARN_ON(!ctx)) {
673 rcu_read_unlock();
674 return -EINVAL;
675 }
676 chandef = ctx->def;
677 chains_static = ctx->rx_chains_static;
678 chains_dynamic = ctx->rx_chains_dynamic;
679 rcu_read_unlock();
680
681 ret = iwl_mvm_phy_ctxt_add(mvm, mvmvif->phy_ctxt, &chandef,
682 chains_static, chains_dynamic);
683 if (ret)
684 return ret;
685
686 /* add back the MAC */
687 mvmvif->uploaded = false;
688
689 if (WARN_ON(!vif->bss_conf.assoc))
690 return -EINVAL;
Luciano Coelhobca49d92014-05-13 17:33:38 +0300691
Johannes Berg8ca151b2013-01-24 14:25:36 +0100692 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100693 if (ret)
694 return ret;
695
696 /* add back binding - XXX refactor? */
697 binding_cmd.id_and_color =
698 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->phy_ctxt->id,
699 mvmvif->phy_ctxt->color));
700 binding_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
701 binding_cmd.phy =
702 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->phy_ctxt->id,
703 mvmvif->phy_ctxt->color));
704 binding_cmd.macs[0] = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
705 mvmvif->color));
706 for (i = 1; i < MAX_MACS_IN_BINDING; i++)
707 binding_cmd.macs[i] = cpu_to_le32(FW_CTXT_INVALID);
708
709 status = 0;
710 ret = iwl_mvm_send_cmd_pdu_status(mvm, BINDING_CONTEXT_CMD,
711 sizeof(binding_cmd), &binding_cmd,
712 &status);
713 if (ret) {
714 IWL_ERR(mvm, "Failed to add binding: %d\n", ret);
715 return ret;
716 }
717
718 if (status) {
719 IWL_ERR(mvm, "Binding command failed: %u\n", status);
720 return -EIO;
721 }
722
Johannes Berg7a453972013-02-12 13:10:44 +0100723 ret = iwl_mvm_sta_send_to_fw(mvm, ap_sta, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100724 if (ret)
725 return ret;
726 rcu_assign_pointer(mvm->fw_id_to_mac_id[mvmvif->ap_sta_id], ap_sta);
727
Johannes Berg3dfd3a92014-08-11 21:37:30 +0200728 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100729 if (ret)
730 return ret;
731
732 /* and some quota */
733 quota_cmd.quotas[0].id_and_color =
734 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->phy_ctxt->id,
735 mvmvif->phy_ctxt->color));
Emmanuel Grumbach9a3daf82014-03-05 10:00:44 +0200736 quota_cmd.quotas[0].quota = cpu_to_le32(IWL_MVM_MAX_QUOTA);
737 quota_cmd.quotas[0].max_duration = cpu_to_le32(IWL_MVM_MAX_QUOTA);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100738
739 for (i = 1; i < MAX_BINDINGS; i++)
740 quota_cmd.quotas[i].id_and_color = cpu_to_le32(FW_CTXT_INVALID);
741
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300742 ret = iwl_mvm_send_cmd_pdu(mvm, TIME_QUOTA_CMD, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100743 sizeof(quota_cmd), &quota_cmd);
744 if (ret)
745 IWL_ERR(mvm, "Failed to send quota: %d\n", ret);
746
Jonathan Doron47c8b152014-11-27 16:55:25 +0200747 if (iwl_mvm_is_lar_supported(mvm) && iwl_mvm_init_fw_regd(mvm))
748 IWL_ERR(mvm, "Failed to initialize D3 LAR information\n");
749
Johannes Berg8ca151b2013-01-24 14:25:36 +0100750 return 0;
751}
752
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200753static int iwl_mvm_get_last_nonqos_seq(struct iwl_mvm *mvm,
754 struct ieee80211_vif *vif)
755{
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200756 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
757 struct iwl_nonqos_seq_query_cmd query_cmd = {
758 .get_set_flag = cpu_to_le32(IWL_NONQOS_SEQ_GET),
759 .mac_id_n_color =
760 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
761 mvmvif->color)),
762 };
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200763 struct iwl_host_cmd cmd = {
764 .id = NON_QOS_TX_COUNTER_CMD,
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300765 .flags = CMD_WANT_SKB,
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200766 };
767 int err;
768 u32 size;
769
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +0300770 cmd.data[0] = &query_cmd;
771 cmd.len[0] = sizeof(query_cmd);
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200772
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200773 err = iwl_mvm_send_cmd(mvm, &cmd);
774 if (err)
775 return err;
776
Johannes Berg65b30342014-01-08 13:16:33 +0100777 size = iwl_rx_packet_payload_len(cmd.resp_pkt);
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200778 if (size < sizeof(__le16)) {
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200779 err = -EINVAL;
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200780 } else {
781 err = le16_to_cpup((__le16 *)cmd.resp_pkt->data);
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +0300782 /* firmware returns next, not last-used seqno */
783 err = (u16) (err - 0x10);
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200784 }
Johannes Berg4ac6cb52013-08-08 09:30:13 +0200785
786 iwl_free_resp(&cmd);
787 return err;
788}
789
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200790void iwl_mvm_set_last_nonqos_seq(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
791{
792 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
793 struct iwl_nonqos_seq_query_cmd query_cmd = {
794 .get_set_flag = cpu_to_le32(IWL_NONQOS_SEQ_SET),
795 .mac_id_n_color =
796 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
797 mvmvif->color)),
798 .value = cpu_to_le16(mvmvif->seqno),
799 };
800
801 /* return if called during restart, not resume from D3 */
802 if (!mvmvif->seqno_valid)
803 return;
804
805 mvmvif->seqno_valid = false;
806
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300807 if (iwl_mvm_send_cmd_pdu(mvm, NON_QOS_TX_COUNTER_CMD, 0,
Johannes Berg6d9d32b2013-08-06 18:58:56 +0200808 sizeof(query_cmd), &query_cmd))
809 IWL_ERR(mvm, "failed to set non-QoS seqno\n");
810}
811
Luciano Coelho671b5822014-09-22 10:59:53 +0300812static int iwl_mvm_switch_to_d3(struct iwl_mvm *mvm)
Eliad Peller1a95c8d2013-11-21 19:19:52 +0200813{
Luciano Coelhoc7d42482015-05-07 16:00:26 +0300814 iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100815
816 iwl_trans_stop_device(mvm->trans);
817
818 /*
819 * Set the HW restart bit -- this is mostly true as we're
820 * going to load new firmware and reprogram that, though
821 * the reprogramming is going to be manual to avoid adding
822 * all the MACs that aren't support.
823 * We don't have to clear up everything though because the
824 * reprogramming is manual. When we resume, we'll actually
825 * go through a proper restart sequence again to switch
826 * back to the runtime firmware image.
827 */
828 set_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
829
Luca Coelho9c3deeb2015-11-11 01:06:17 +0200830 /* the fw is reset, so all the keys are cleared */
831 memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
832
Johannes Bergf444eb12013-02-26 12:04:18 +0100833 mvm->ptk_ivlen = 0;
834 mvm->ptk_icvlen = 0;
835 mvm->ptk_ivlen = 0;
836 mvm->ptk_icvlen = 0;
837
Luciano Coelho671b5822014-09-22 10:59:53 +0300838 return iwl_mvm_load_d3_fw(mvm);
839}
840
841static int
Luciano Coelho671b5822014-09-22 10:59:53 +0300842iwl_mvm_get_wowlan_config(struct iwl_mvm *mvm,
843 struct cfg80211_wowlan *wowlan,
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200844 struct iwl_wowlan_config_cmd *wowlan_config_cmd,
Luciano Coelho671b5822014-09-22 10:59:53 +0300845 struct ieee80211_vif *vif, struct iwl_mvm_vif *mvmvif,
846 struct ieee80211_sta *ap_sta)
847{
848 int ret;
Johannes Berg9d8ce6a2014-12-23 16:02:40 +0100849 struct iwl_mvm_sta *mvm_ap_sta = iwl_mvm_sta_from_mac80211(ap_sta);
Luciano Coelho671b5822014-09-22 10:59:53 +0300850
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200851 /* TODO: wowlan_config_cmd->wowlan_ba_teardown_tids */
Luciano Coelho671b5822014-09-22 10:59:53 +0300852
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200853 wowlan_config_cmd->is_11n_connection =
Luciano Coelho671b5822014-09-22 10:59:53 +0300854 ap_sta->ht_cap.ht_supported;
Sara Sharon70b4c532015-11-19 13:12:15 +0200855 wowlan_config_cmd->flags = ENABLE_L3_FILTERING |
856 ENABLE_NBNS_FILTERING | ENABLE_DHCP_FILTERING;
Luciano Coelho671b5822014-09-22 10:59:53 +0300857
858 /* Query the last used seqno and set it */
859 ret = iwl_mvm_get_last_nonqos_seq(mvm, vif);
860 if (ret < 0)
861 return ret;
862
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200863 wowlan_config_cmd->non_qos_seq = cpu_to_le16(ret);
Luciano Coelho671b5822014-09-22 10:59:53 +0300864
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200865 iwl_mvm_set_wowlan_qos_seq(mvm_ap_sta, wowlan_config_cmd);
Luciano Coelho671b5822014-09-22 10:59:53 +0300866
867 if (wowlan->disconnect)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200868 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300869 cpu_to_le32(IWL_WOWLAN_WAKEUP_BEACON_MISS |
870 IWL_WOWLAN_WAKEUP_LINK_CHANGE);
871 if (wowlan->magic_pkt)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200872 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300873 cpu_to_le32(IWL_WOWLAN_WAKEUP_MAGIC_PACKET);
874 if (wowlan->gtk_rekey_failure)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200875 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300876 cpu_to_le32(IWL_WOWLAN_WAKEUP_GTK_REKEY_FAIL);
877 if (wowlan->eap_identity_req)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200878 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300879 cpu_to_le32(IWL_WOWLAN_WAKEUP_EAP_IDENT_REQ);
880 if (wowlan->four_way_handshake)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200881 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300882 cpu_to_le32(IWL_WOWLAN_WAKEUP_4WAY_HANDSHAKE);
883 if (wowlan->n_patterns)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200884 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300885 cpu_to_le32(IWL_WOWLAN_WAKEUP_PATTERN_MATCH);
886
887 if (wowlan->rfkill_release)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200888 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300889 cpu_to_le32(IWL_WOWLAN_WAKEUP_RF_KILL_DEASSERT);
890
891 if (wowlan->tcp) {
892 /*
893 * Set the "link change" (really "link lost") flag as well
894 * since that implies losing the TCP connection.
895 */
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +0200896 wowlan_config_cmd->wakeup_filter |=
Luciano Coelho671b5822014-09-22 10:59:53 +0300897 cpu_to_le32(IWL_WOWLAN_WAKEUP_REMOTE_LINK_LOSS |
898 IWL_WOWLAN_WAKEUP_REMOTE_SIGNATURE_TABLE |
899 IWL_WOWLAN_WAKEUP_REMOTE_WAKEUP_PACKET |
900 IWL_WOWLAN_WAKEUP_LINK_CHANGE);
901 }
902
903 return 0;
904}
905
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200906static void
907iwl_mvm_iter_d0i3_ap_keys(struct iwl_mvm *mvm,
908 struct ieee80211_vif *vif,
909 void (*iter)(struct ieee80211_hw *hw,
910 struct ieee80211_vif *vif,
911 struct ieee80211_sta *sta,
912 struct ieee80211_key_conf *key,
913 void *data),
914 void *data)
915{
916 struct ieee80211_sta *ap_sta;
917
918 rcu_read_lock();
919
920 ap_sta = rcu_dereference(mvm->fw_id_to_mac_id[mvm->d0i3_ap_sta_id]);
921 if (IS_ERR_OR_NULL(ap_sta))
922 goto out;
923
924 ieee80211_iter_keys_rcu(mvm->hw, vif, iter, data);
925out:
926 rcu_read_unlock();
927}
928
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200929int iwl_mvm_wowlan_config_key_params(struct iwl_mvm *mvm,
930 struct ieee80211_vif *vif,
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200931 bool d0i3,
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200932 u32 cmd_flags)
933{
934 struct iwl_wowlan_kek_kck_material_cmd kek_kck_cmd = {};
935 struct iwl_wowlan_tkip_params_cmd tkip_cmd = {};
936 struct wowlan_key_data key_data = {
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200937 .configure_keys = !d0i3,
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200938 .use_rsc_tsc = false,
939 .tkip = &tkip_cmd,
940 .use_tkip = false,
941 };
942 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
943 int ret;
944
945 key_data.rsc_tsc = kzalloc(sizeof(*key_data.rsc_tsc), GFP_KERNEL);
946 if (!key_data.rsc_tsc)
947 return -ENOMEM;
948
949 /*
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200950 * if we have to configure keys, call ieee80211_iter_keys(),
951 * as we need non-atomic context in order to take the
952 * required locks.
953 * for the d0i3 we can't use ieee80211_iter_keys(), as
954 * taking (almost) any mutex might result in deadlock.
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200955 */
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200956 if (!d0i3) {
957 /*
958 * Note that currently we don't propagate cmd_flags
959 * to the iterator. In case of key_data.configure_keys,
960 * all the configured commands are SYNC, and
961 * iwl_mvm_wowlan_program_keys() will take care of
962 * locking/unlocking mvm->mutex.
963 */
964 ieee80211_iter_keys(mvm->hw, vif,
965 iwl_mvm_wowlan_program_keys,
966 &key_data);
967 } else {
968 iwl_mvm_iter_d0i3_ap_keys(mvm, vif,
969 iwl_mvm_wowlan_program_keys,
970 &key_data);
971 }
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200972
973 if (key_data.error) {
974 ret = -EIO;
975 goto out;
976 }
977
978 if (key_data.use_rsc_tsc) {
979 ret = iwl_mvm_send_cmd_pdu(mvm,
980 WOWLAN_TSC_RSC_PARAM, cmd_flags,
981 sizeof(*key_data.rsc_tsc),
982 key_data.rsc_tsc);
983 if (ret)
984 goto out;
985 }
986
987 if (key_data.use_tkip) {
988 ret = iwl_mvm_send_cmd_pdu(mvm,
989 WOWLAN_TKIP_PARAM,
990 cmd_flags, sizeof(tkip_cmd),
991 &tkip_cmd);
992 if (ret)
993 goto out;
994 }
995
Eliad Pellera3f7ba52015-11-11 17:23:59 +0200996 /* configure rekey data only if offloaded rekey is supported (d3) */
997 if (mvmvif->rekey_data.valid && !d0i3) {
Eliad Pellerac8ef0c2015-11-12 10:49:38 +0200998 memset(&kek_kck_cmd, 0, sizeof(kek_kck_cmd));
999 memcpy(kek_kck_cmd.kck, mvmvif->rekey_data.kck,
1000 NL80211_KCK_LEN);
1001 kek_kck_cmd.kck_len = cpu_to_le16(NL80211_KCK_LEN);
1002 memcpy(kek_kck_cmd.kek, mvmvif->rekey_data.kek,
1003 NL80211_KEK_LEN);
1004 kek_kck_cmd.kek_len = cpu_to_le16(NL80211_KEK_LEN);
1005 kek_kck_cmd.replay_ctr = mvmvif->rekey_data.replay_ctr;
1006
1007 ret = iwl_mvm_send_cmd_pdu(mvm,
1008 WOWLAN_KEK_KCK_MATERIAL, cmd_flags,
1009 sizeof(kek_kck_cmd),
1010 &kek_kck_cmd);
1011 if (ret)
1012 goto out;
1013 }
Eliad Peller3f50a692015-11-15 15:44:17 +02001014 ret = 0;
Eliad Pellerac8ef0c2015-11-12 10:49:38 +02001015out:
1016 kfree(key_data.rsc_tsc);
1017 return ret;
1018}
1019
Luciano Coelho671b5822014-09-22 10:59:53 +03001020static int
1021iwl_mvm_wowlan_config(struct iwl_mvm *mvm,
1022 struct cfg80211_wowlan *wowlan,
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001023 struct iwl_wowlan_config_cmd *wowlan_config_cmd,
Luciano Coelho671b5822014-09-22 10:59:53 +03001024 struct ieee80211_vif *vif, struct iwl_mvm_vif *mvmvif,
1025 struct ieee80211_sta *ap_sta)
1026{
Luciano Coelho671b5822014-09-22 10:59:53 +03001027 int ret;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001028 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
1029 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001030
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001031 if (!unified_image) {
1032 ret = iwl_mvm_switch_to_d3(mvm);
1033 if (ret)
1034 return ret;
Luciano Coelho3acc9522014-11-19 22:35:37 +02001035
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001036 ret = iwl_mvm_d3_reprogram(mvm, vif, ap_sta);
1037 if (ret)
1038 return ret;
1039 }
Luciano Coelho671b5822014-09-22 10:59:53 +03001040
Johannes Berg8ca151b2013-01-24 14:25:36 +01001041 if (!iwlwifi_mod_params.sw_crypto) {
1042 /*
1043 * This needs to be unlocked due to lock ordering
1044 * constraints. Since we're in the suspend path
1045 * that isn't really a problem though.
1046 */
1047 mutex_unlock(&mvm->mutex);
Eliad Pellera3f7ba52015-11-11 17:23:59 +02001048 ret = iwl_mvm_wowlan_config_key_params(mvm, vif, false,
Eliad Peller3f50a692015-11-15 15:44:17 +02001049 CMD_ASYNC);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001050 mutex_lock(&mvm->mutex);
Eliad Peller3f50a692015-11-15 15:44:17 +02001051 if (ret)
1052 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001053 }
1054
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001055 ret = iwl_mvm_send_cmd_pdu(mvm, WOWLAN_CONFIGURATION, 0,
1056 sizeof(*wowlan_config_cmd),
1057 wowlan_config_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001058 if (ret)
Eliad Pellerac8ef0c2015-11-12 10:49:38 +02001059 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001060
1061 ret = iwl_mvm_send_patterns(mvm, wowlan);
1062 if (ret)
Eliad Pellerac8ef0c2015-11-12 10:49:38 +02001063 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001064
Sara Sharonc97dab42015-11-19 11:53:49 +02001065 ret = iwl_mvm_send_proto_offload(mvm, vif, false, true, 0);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001066 if (ret)
Eliad Pellerac8ef0c2015-11-12 10:49:38 +02001067 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001068
Johannes Bergf0c26462013-01-22 20:41:58 +01001069 ret = iwl_mvm_send_remote_wake_cfg(mvm, vif, wowlan->tcp);
Luciano Coelho671b5822014-09-22 10:59:53 +03001070 return ret;
1071}
1072
Luciano Coelho3acc9522014-11-19 22:35:37 +02001073static int
1074iwl_mvm_netdetect_config(struct iwl_mvm *mvm,
1075 struct cfg80211_wowlan *wowlan,
1076 struct cfg80211_sched_scan_request *nd_config,
1077 struct ieee80211_vif *vif)
1078{
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001079 struct iwl_wowlan_config_cmd wowlan_config_cmd = {};
Luciano Coelho3acc9522014-11-19 22:35:37 +02001080 int ret;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001081 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
1082 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
Luciano Coelho3acc9522014-11-19 22:35:37 +02001083
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001084 if (!unified_image) {
1085 ret = iwl_mvm_switch_to_d3(mvm);
1086 if (ret)
1087 return ret;
1088 }
Luciano Coelho3acc9522014-11-19 22:35:37 +02001089
1090 /* rfkill release can be either for wowlan or netdetect */
1091 if (wowlan->rfkill_release)
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001092 wowlan_config_cmd.wakeup_filter |=
Luciano Coelho3acc9522014-11-19 22:35:37 +02001093 cpu_to_le32(IWL_WOWLAN_WAKEUP_RF_KILL_DEASSERT);
1094
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001095 ret = iwl_mvm_send_cmd_pdu(mvm, WOWLAN_CONFIGURATION, 0,
1096 sizeof(wowlan_config_cmd),
1097 &wowlan_config_cmd);
Luciano Coelho3acc9522014-11-19 22:35:37 +02001098 if (ret)
1099 return ret;
1100
Luciano Coelho19945df2015-03-20 16:11:28 +02001101 ret = iwl_mvm_sched_scan_start(mvm, vif, nd_config, &mvm->nd_ies,
1102 IWL_MVM_SCAN_NETDETECT);
Luciano Coelhod9718da2014-11-21 09:32:23 +02001103 if (ret)
1104 return ret;
Luciano Coelho3acc9522014-11-19 22:35:37 +02001105
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001106 if (WARN_ON(mvm->nd_match_sets || mvm->nd_channels))
Luciano Coelhod9718da2014-11-21 09:32:23 +02001107 return -EBUSY;
1108
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001109 /* save the sched scan matchsets... */
Luciano Coelhod9718da2014-11-21 09:32:23 +02001110 if (nd_config->n_match_sets) {
1111 mvm->nd_match_sets = kmemdup(nd_config->match_sets,
1112 sizeof(*nd_config->match_sets) *
1113 nd_config->n_match_sets,
1114 GFP_KERNEL);
1115 if (mvm->nd_match_sets)
1116 mvm->n_nd_match_sets = nd_config->n_match_sets;
1117 }
1118
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001119 /* ...and the sched scan channels for later reporting */
1120 mvm->nd_channels = kmemdup(nd_config->channels,
1121 sizeof(*nd_config->channels) *
1122 nd_config->n_channels,
1123 GFP_KERNEL);
1124 if (mvm->nd_channels)
1125 mvm->n_nd_channels = nd_config->n_channels;
1126
Luciano Coelhod9718da2014-11-21 09:32:23 +02001127 return 0;
1128}
1129
1130static void iwl_mvm_free_nd(struct iwl_mvm *mvm)
1131{
1132 kfree(mvm->nd_match_sets);
1133 mvm->nd_match_sets = NULL;
1134 mvm->n_nd_match_sets = 0;
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001135 kfree(mvm->nd_channels);
1136 mvm->nd_channels = NULL;
1137 mvm->n_nd_channels = 0;
Luciano Coelho3acc9522014-11-19 22:35:37 +02001138}
1139
Luciano Coelho671b5822014-09-22 10:59:53 +03001140static int __iwl_mvm_suspend(struct ieee80211_hw *hw,
1141 struct cfg80211_wowlan *wowlan,
1142 bool test)
1143{
1144 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luciano Coelho671b5822014-09-22 10:59:53 +03001145 struct ieee80211_vif *vif = NULL;
1146 struct iwl_mvm_vif *mvmvif = NULL;
1147 struct ieee80211_sta *ap_sta = NULL;
Luciano Coelho671b5822014-09-22 10:59:53 +03001148 struct iwl_d3_manager_config d3_cfg_cmd_data = {
1149 /*
1150 * Program the minimum sleep time to 10 seconds, as many
1151 * platforms have issues processing a wakeup signal while
1152 * still being in the process of suspending.
1153 */
1154 .min_sleep_time = cpu_to_le32(10 * 1000 * 1000),
1155 };
1156 struct iwl_host_cmd d3_cfg_cmd = {
1157 .id = D3_CONFIG_CMD,
1158 .flags = CMD_WANT_SKB,
1159 .data[0] = &d3_cfg_cmd_data,
1160 .len[0] = sizeof(d3_cfg_cmd_data),
1161 };
1162 int ret;
1163 int len __maybe_unused;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001164 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
1165 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
Luciano Coelho671b5822014-09-22 10:59:53 +03001166
1167 if (!wowlan) {
1168 /*
1169 * mac80211 shouldn't get here, but for D3 test
1170 * it doesn't warrant a warning
1171 */
1172 WARN_ON(!test);
1173 return -EINVAL;
1174 }
1175
1176 mutex_lock(&mvm->mutex);
1177
Luciano Coelho7f549e22014-10-02 15:38:04 +03001178 vif = iwl_mvm_get_bss_vif(mvm);
1179 if (IS_ERR_OR_NULL(vif)) {
Luciano Coelho671b5822014-09-22 10:59:53 +03001180 ret = 1;
1181 goto out_noreset;
1182 }
1183
Luciano Coelho671b5822014-09-22 10:59:53 +03001184 mvmvif = iwl_mvm_vif_from_mac80211(vif);
1185
Luciano Coelho3acc9522014-11-19 22:35:37 +02001186 if (mvmvif->ap_sta_id == IWL_MVM_STATION_COUNT) {
1187 /* if we're not associated, this must be netdetect */
Luca Coelho566f1652015-10-25 22:55:32 +02001188 if (!wowlan->nd_config) {
Luciano Coelho3acc9522014-11-19 22:35:37 +02001189 ret = 1;
1190 goto out_noreset;
1191 }
1192
1193 ret = iwl_mvm_netdetect_config(
Luca Coelho566f1652015-10-25 22:55:32 +02001194 mvm, wowlan, wowlan->nd_config, vif);
Luciano Coelho3acc9522014-11-19 22:35:37 +02001195 if (ret)
1196 goto out;
Luciano Coelho2021a892014-11-20 08:59:51 +02001197
1198 mvm->net_detect = true;
Luciano Coelho3acc9522014-11-19 22:35:37 +02001199 } else {
Emmanuel Grumbachc8b06a92014-11-24 09:06:57 +02001200 struct iwl_wowlan_config_cmd wowlan_config_cmd = {};
Luciano Coelho3acc9522014-11-19 22:35:37 +02001201
Luciano Coelho1e4d19c2014-09-22 13:01:59 +03001202 ap_sta = rcu_dereference_protected(
1203 mvm->fw_id_to_mac_id[mvmvif->ap_sta_id],
1204 lockdep_is_held(&mvm->mutex));
1205 if (IS_ERR_OR_NULL(ap_sta)) {
1206 ret = -EINVAL;
1207 goto out_noreset;
1208 }
1209
1210 ret = iwl_mvm_get_wowlan_config(mvm, wowlan, &wowlan_config_cmd,
1211 vif, mvmvif, ap_sta);
1212 if (ret)
1213 goto out_noreset;
Luciano Coelho1e4d19c2014-09-22 13:01:59 +03001214 ret = iwl_mvm_wowlan_config(mvm, wowlan, &wowlan_config_cmd,
1215 vif, mvmvif, ap_sta);
1216 if (ret)
1217 goto out;
Luciano Coelho2021a892014-11-20 08:59:51 +02001218
1219 mvm->net_detect = false;
Luciano Coelho671b5822014-09-22 10:59:53 +03001220 }
1221
Emmanuel Grumbachc1cb92f2014-01-28 10:17:18 +02001222 ret = iwl_mvm_power_update_device(mvm);
Alexander Bondar64b928c2013-09-03 14:18:03 +03001223 if (ret)
1224 goto out;
1225
Arik Nemtsov999609f2014-05-15 17:31:51 +03001226 ret = iwl_mvm_power_update_mac(mvm);
Alexander Bondaree1e8422013-04-23 13:52:10 +03001227 if (ret)
1228 goto out;
1229
Johannes Bergb0114712013-06-12 14:55:40 +02001230#ifdef CONFIG_IWLWIFI_DEBUGFS
1231 if (mvm->d3_wake_sysassert)
1232 d3_cfg_cmd_data.wakeup_flags |=
1233 cpu_to_le32(IWL_WAKEUP_D3_CONFIG_FW_ERROR);
1234#endif
1235
Johannes Berg8ca151b2013-01-24 14:25:36 +01001236 /* must be last -- this switches firmware state */
Johannes Bergdebff612013-05-14 13:53:45 +02001237 ret = iwl_mvm_send_cmd(mvm, &d3_cfg_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001238 if (ret)
1239 goto out;
Johannes Bergdebff612013-05-14 13:53:45 +02001240#ifdef CONFIG_IWLWIFI_DEBUGFS
Johannes Berg65b30342014-01-08 13:16:33 +01001241 len = iwl_rx_packet_payload_len(d3_cfg_cmd.resp_pkt);
1242 if (len >= sizeof(u32)) {
Johannes Bergdebff612013-05-14 13:53:45 +02001243 mvm->d3_test_pme_ptr =
1244 le32_to_cpup((__le32 *)d3_cfg_cmd.resp_pkt->data);
Johannes Bergdebff612013-05-14 13:53:45 +02001245 }
1246#endif
1247 iwl_free_resp(&d3_cfg_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001248
1249 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
1250
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001251 iwl_trans_d3_suspend(mvm->trans, test, !unified_image);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001252 out:
Luciano Coelhod9718da2014-11-21 09:32:23 +02001253 if (ret < 0) {
Eliad Peller48e67752015-03-03 12:03:20 +02001254 iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001255 ieee80211_restart_hw(mvm->hw);
Luciano Coelhod9718da2014-11-21 09:32:23 +02001256 iwl_mvm_free_nd(mvm);
1257 }
Luciano Coelhob70ab722013-11-19 22:53:41 +02001258 out_noreset:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001259 mutex_unlock(&mvm->mutex);
1260
1261 return ret;
1262}
1263
Eliad Peller67359432014-12-09 15:23:54 +02001264static int iwl_mvm_enter_d0i3_sync(struct iwl_mvm *mvm)
1265{
1266 struct iwl_notification_wait wait_d3;
Sara Sharon6eb031d2015-07-13 14:50:47 +03001267 static const u16 d3_notif[] = { D3_CONFIG_CMD };
Eliad Peller67359432014-12-09 15:23:54 +02001268 int ret;
1269
1270 iwl_init_notification_wait(&mvm->notif_wait, &wait_d3,
1271 d3_notif, ARRAY_SIZE(d3_notif),
1272 NULL, NULL);
1273
1274 ret = iwl_mvm_enter_d0i3(mvm->hw->priv);
1275 if (ret)
1276 goto remove_notif;
1277
1278 ret = iwl_wait_notification(&mvm->notif_wait, &wait_d3, HZ);
1279 WARN_ON_ONCE(ret);
1280 return ret;
1281
1282remove_notif:
1283 iwl_remove_notification(&mvm->notif_wait, &wait_d3);
1284 return ret;
1285}
1286
Johannes Bergdebff612013-05-14 13:53:45 +02001287int iwl_mvm_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
1288{
Eliad Pellerd15a7472014-03-27 18:53:12 +02001289 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luca Coelhob7282642015-09-17 23:44:14 +03001290 struct iwl_trans *trans = mvm->trans;
Eliad Pellerc43fe902015-06-04 21:59:32 +03001291 int ret;
Eliad Pellerd15a7472014-03-27 18:53:12 +02001292
Luciano Coelhocf8c3cf2015-08-24 14:53:25 +03001293 /* make sure the d0i3 exit work is not pending */
1294 flush_work(&mvm->d0i3_exit_work);
1295
Luca Coelhob7282642015-09-17 23:44:14 +03001296 ret = iwl_trans_suspend(trans);
Eliad Pellerc43fe902015-06-04 21:59:32 +03001297 if (ret)
1298 return ret;
1299
Luca Coelhob7282642015-09-17 23:44:14 +03001300 if (wowlan->any) {
1301 trans->system_pm_mode = IWL_PLAT_PM_MODE_D0I3;
1302
1303 if (iwl_mvm_enter_d0i3_on_suspend(mvm)) {
Eliad Pellerc43fe902015-06-04 21:59:32 +03001304 ret = iwl_mvm_enter_d0i3_sync(mvm);
Eliad Peller67359432014-12-09 15:23:54 +02001305
1306 if (ret)
1307 return ret;
1308 }
1309
Eliad Pellerd15a7472014-03-27 18:53:12 +02001310 mutex_lock(&mvm->d0i3_suspend_mutex);
1311 __set_bit(D0I3_DEFER_WAKEUP, &mvm->d0i3_suspend_flags);
1312 mutex_unlock(&mvm->d0i3_suspend_mutex);
Eliad Peller6dfb36c2015-07-09 14:17:24 +03001313
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001314 iwl_trans_d3_suspend(trans, false, false);
Eliad Peller6dfb36c2015-07-09 14:17:24 +03001315
Eliad Pellerd15a7472014-03-27 18:53:12 +02001316 return 0;
1317 }
1318
Luca Coelhob7282642015-09-17 23:44:14 +03001319 trans->system_pm_mode = IWL_PLAT_PM_MODE_D3;
1320
Johannes Bergdebff612013-05-14 13:53:45 +02001321 return __iwl_mvm_suspend(hw, wowlan, false);
1322}
1323
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001324/* converted data from the different status responses */
1325struct iwl_wowlan_status_data {
1326 u16 pattern_number;
1327 u16 qos_seq_ctr[8];
1328 u32 wakeup_reasons;
1329 u32 wake_packet_length;
1330 u32 wake_packet_bufsize;
1331 const u8 *wake_packet;
1332};
1333
Johannes Berg7abc4632013-08-06 18:28:26 +02001334static void iwl_mvm_report_wakeup_reasons(struct iwl_mvm *mvm,
1335 struct ieee80211_vif *vif,
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001336 struct iwl_wowlan_status_data *status)
Johannes Berg9b26b502013-01-22 13:02:09 +01001337{
Johannes Berg7abc4632013-08-06 18:28:26 +02001338 struct sk_buff *pkt = NULL;
Johannes Berg9b26b502013-01-22 13:02:09 +01001339 struct cfg80211_wowlan_wakeup wakeup = {
1340 .pattern_idx = -1,
1341 };
1342 struct cfg80211_wowlan_wakeup *wakeup_report = &wakeup;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001343 u32 reasons = status->wakeup_reasons;
Johannes Berg9b26b502013-01-22 13:02:09 +01001344
1345 if (reasons == IWL_WOWLAN_WAKEUP_BY_NON_WIRELESS) {
1346 wakeup_report = NULL;
1347 goto report;
1348 }
1349
Derek Basehore06ae2ad2015-11-04 17:37:52 -08001350 pm_wakeup_event(mvm->dev, 0);
1351
Johannes Bergf444eb12013-02-26 12:04:18 +01001352 if (reasons & IWL_WOWLAN_WAKEUP_BY_MAGIC_PACKET)
Johannes Berg9b26b502013-01-22 13:02:09 +01001353 wakeup.magic_pkt = true;
Johannes Berg9b26b502013-01-22 13:02:09 +01001354
Johannes Bergf444eb12013-02-26 12:04:18 +01001355 if (reasons & IWL_WOWLAN_WAKEUP_BY_PATTERN)
Johannes Berg9b26b502013-01-22 13:02:09 +01001356 wakeup.pattern_idx =
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001357 status->pattern_number;
Johannes Berg9b26b502013-01-22 13:02:09 +01001358
1359 if (reasons & (IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_MISSED_BEACON |
1360 IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_DEAUTH))
1361 wakeup.disconnect = true;
1362
Johannes Bergf444eb12013-02-26 12:04:18 +01001363 if (reasons & IWL_WOWLAN_WAKEUP_BY_GTK_REKEY_FAILURE)
Johannes Berg9b26b502013-01-22 13:02:09 +01001364 wakeup.gtk_rekey_failure = true;
Johannes Berg9b26b502013-01-22 13:02:09 +01001365
Johannes Bergf444eb12013-02-26 12:04:18 +01001366 if (reasons & IWL_WOWLAN_WAKEUP_BY_RFKILL_DEASSERTED)
Johannes Berg9b26b502013-01-22 13:02:09 +01001367 wakeup.rfkill_release = true;
Johannes Berg9b26b502013-01-22 13:02:09 +01001368
Johannes Bergf444eb12013-02-26 12:04:18 +01001369 if (reasons & IWL_WOWLAN_WAKEUP_BY_EAPOL_REQUEST)
Johannes Berg9b26b502013-01-22 13:02:09 +01001370 wakeup.eap_identity_req = true;
Johannes Berg9b26b502013-01-22 13:02:09 +01001371
Johannes Bergf444eb12013-02-26 12:04:18 +01001372 if (reasons & IWL_WOWLAN_WAKEUP_BY_FOUR_WAY_HANDSHAKE)
Johannes Berg9b26b502013-01-22 13:02:09 +01001373 wakeup.four_way_handshake = true;
Johannes Berg9b26b502013-01-22 13:02:09 +01001374
Johannes Bergf0c26462013-01-22 20:41:58 +01001375 if (reasons & IWL_WOWLAN_WAKEUP_BY_REM_WAKE_LINK_LOSS)
1376 wakeup.tcp_connlost = true;
1377
1378 if (reasons & IWL_WOWLAN_WAKEUP_BY_REM_WAKE_SIGNATURE_TABLE)
1379 wakeup.tcp_nomoretokens = true;
1380
1381 if (reasons & IWL_WOWLAN_WAKEUP_BY_REM_WAKE_WAKEUP_PACKET)
1382 wakeup.tcp_match = true;
1383
Johannes Berg9b26b502013-01-22 13:02:09 +01001384 if (status->wake_packet_bufsize) {
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001385 int pktsize = status->wake_packet_bufsize;
1386 int pktlen = status->wake_packet_length;
Johannes Bergf444eb12013-02-26 12:04:18 +01001387 const u8 *pktdata = status->wake_packet;
1388 struct ieee80211_hdr *hdr = (void *)pktdata;
1389 int truncated = pktlen - pktsize;
Johannes Berg9b26b502013-01-22 13:02:09 +01001390
Johannes Bergf444eb12013-02-26 12:04:18 +01001391 /* this would be a firmware bug */
1392 if (WARN_ON_ONCE(truncated < 0))
1393 truncated = 0;
1394
1395 if (ieee80211_is_data(hdr->frame_control)) {
1396 int hdrlen = ieee80211_hdrlen(hdr->frame_control);
1397 int ivlen = 0, icvlen = 4; /* also FCS */
1398
Johannes Berg9b26b502013-01-22 13:02:09 +01001399 pkt = alloc_skb(pktsize, GFP_KERNEL);
1400 if (!pkt)
1401 goto report;
Johannes Bergf444eb12013-02-26 12:04:18 +01001402
1403 memcpy(skb_put(pkt, hdrlen), pktdata, hdrlen);
1404 pktdata += hdrlen;
1405 pktsize -= hdrlen;
1406
1407 if (ieee80211_has_protected(hdr->frame_control)) {
Johannes Berg7abc4632013-08-06 18:28:26 +02001408 /*
1409 * This is unlocked and using gtk_i(c)vlen,
1410 * but since everything is under RTNL still
1411 * that's not really a problem - changing
1412 * it would be difficult.
1413 */
Johannes Bergf444eb12013-02-26 12:04:18 +01001414 if (is_multicast_ether_addr(hdr->addr1)) {
1415 ivlen = mvm->gtk_ivlen;
1416 icvlen += mvm->gtk_icvlen;
1417 } else {
1418 ivlen = mvm->ptk_ivlen;
1419 icvlen += mvm->ptk_icvlen;
1420 }
1421 }
1422
1423 /* if truncated, FCS/ICV is (partially) gone */
1424 if (truncated >= icvlen) {
1425 icvlen = 0;
1426 truncated -= icvlen;
1427 } else {
1428 icvlen -= truncated;
1429 truncated = 0;
1430 }
1431
1432 pktsize -= ivlen + icvlen;
1433 pktdata += ivlen;
1434
1435 memcpy(skb_put(pkt, pktsize), pktdata, pktsize);
1436
Johannes Berg9b26b502013-01-22 13:02:09 +01001437 if (ieee80211_data_to_8023(pkt, vif->addr, vif->type))
1438 goto report;
1439 wakeup.packet = pkt->data;
1440 wakeup.packet_present_len = pkt->len;
Johannes Bergf444eb12013-02-26 12:04:18 +01001441 wakeup.packet_len = pkt->len - truncated;
Johannes Berg9b26b502013-01-22 13:02:09 +01001442 wakeup.packet_80211 = false;
1443 } else {
Johannes Bergf444eb12013-02-26 12:04:18 +01001444 int fcslen = 4;
1445
1446 if (truncated >= 4) {
1447 truncated -= 4;
1448 fcslen = 0;
1449 } else {
1450 fcslen -= truncated;
1451 truncated = 0;
1452 }
1453 pktsize -= fcslen;
Johannes Berg9b26b502013-01-22 13:02:09 +01001454 wakeup.packet = status->wake_packet;
1455 wakeup.packet_present_len = pktsize;
Johannes Bergf444eb12013-02-26 12:04:18 +01001456 wakeup.packet_len = pktlen - truncated;
Johannes Berg9b26b502013-01-22 13:02:09 +01001457 wakeup.packet_80211 = true;
1458 }
1459 }
1460
1461 report:
1462 ieee80211_report_wowlan_wakeup(vif, wakeup_report, GFP_KERNEL);
1463 kfree_skb(pkt);
Johannes Berg7abc4632013-08-06 18:28:26 +02001464}
Johannes Berg9b26b502013-01-22 13:02:09 +01001465
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001466static void iwl_mvm_aes_sc_to_seq(struct aes_sc *sc,
1467 struct ieee80211_key_seq *seq)
1468{
1469 u64 pn;
1470
1471 pn = le64_to_cpu(sc->pn);
1472 seq->ccmp.pn[0] = pn >> 40;
1473 seq->ccmp.pn[1] = pn >> 32;
1474 seq->ccmp.pn[2] = pn >> 24;
1475 seq->ccmp.pn[3] = pn >> 16;
1476 seq->ccmp.pn[4] = pn >> 8;
1477 seq->ccmp.pn[5] = pn;
1478}
1479
1480static void iwl_mvm_tkip_sc_to_seq(struct tkip_sc *sc,
1481 struct ieee80211_key_seq *seq)
1482{
1483 seq->tkip.iv32 = le32_to_cpu(sc->iv32);
1484 seq->tkip.iv16 = le16_to_cpu(sc->iv16);
1485}
1486
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001487static void iwl_mvm_set_aes_rx_seq(struct iwl_mvm *mvm, struct aes_sc *scs,
1488 struct ieee80211_sta *sta,
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001489 struct ieee80211_key_conf *key)
1490{
1491 int tid;
1492
1493 BUILD_BUG_ON(IWL_NUM_RSC != IEEE80211_NUM_TIDS);
1494
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001495 if (sta && iwl_mvm_has_new_rx_api(mvm)) {
1496 struct iwl_mvm_sta *mvmsta;
1497 struct iwl_mvm_key_pn *ptk_pn;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001498
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001499 mvmsta = iwl_mvm_sta_from_mac80211(sta);
1500
1501 ptk_pn = rcu_dereference_protected(mvmsta->ptk_pn[key->keyidx],
1502 lockdep_is_held(&mvm->mutex));
1503 if (WARN_ON(!ptk_pn))
1504 return;
1505
1506 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
1507 struct ieee80211_key_seq seq = {};
1508 int i;
1509
1510 iwl_mvm_aes_sc_to_seq(&scs[tid], &seq);
1511 ieee80211_set_key_rx_seq(key, tid, &seq);
1512 for (i = 1; i < mvm->trans->num_rx_queues; i++)
1513 memcpy(ptk_pn->q[i].pn[tid],
1514 seq.ccmp.pn, IEEE80211_CCMP_PN_LEN);
1515 }
1516 } else {
1517 for (tid = 0; tid < IWL_NUM_RSC; tid++) {
1518 struct ieee80211_key_seq seq = {};
1519
1520 iwl_mvm_aes_sc_to_seq(&scs[tid], &seq);
1521 ieee80211_set_key_rx_seq(key, tid, &seq);
1522 }
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001523 }
1524}
1525
1526static void iwl_mvm_set_tkip_rx_seq(struct tkip_sc *scs,
1527 struct ieee80211_key_conf *key)
1528{
1529 int tid;
1530
1531 BUILD_BUG_ON(IWL_NUM_RSC != IEEE80211_NUM_TIDS);
1532
1533 for (tid = 0; tid < IWL_NUM_RSC; tid++) {
1534 struct ieee80211_key_seq seq = {};
1535
1536 iwl_mvm_tkip_sc_to_seq(&scs[tid], &seq);
1537 ieee80211_set_key_rx_seq(key, tid, &seq);
1538 }
1539}
1540
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001541static void iwl_mvm_set_key_rx_seq(struct iwl_mvm *mvm,
1542 struct ieee80211_key_conf *key,
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001543 struct iwl_wowlan_status *status)
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001544{
1545 union iwl_all_tsc_rsc *rsc = &status->gtk.rsc.all_tsc_rsc;
1546
1547 switch (key->cipher) {
1548 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001549 iwl_mvm_set_aes_rx_seq(mvm, rsc->aes.multicast_rsc, NULL, key);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001550 break;
1551 case WLAN_CIPHER_SUITE_TKIP:
1552 iwl_mvm_set_tkip_rx_seq(rsc->tkip.multicast_rsc, key);
1553 break;
1554 default:
1555 WARN_ON(1);
1556 }
1557}
1558
1559struct iwl_mvm_d3_gtk_iter_data {
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001560 struct iwl_mvm *mvm;
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001561 struct iwl_wowlan_status *status;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001562 void *last_gtk;
1563 u32 cipher;
1564 bool find_phase, unhandled_cipher;
1565 int num_keys;
1566};
1567
Emmanuel Grumbach59fd4bf2015-11-01 13:06:37 +02001568static void iwl_mvm_d3_update_keys(struct ieee80211_hw *hw,
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001569 struct ieee80211_vif *vif,
1570 struct ieee80211_sta *sta,
1571 struct ieee80211_key_conf *key,
1572 void *_data)
1573{
1574 struct iwl_mvm_d3_gtk_iter_data *data = _data;
1575
1576 if (data->unhandled_cipher)
1577 return;
1578
1579 switch (key->cipher) {
1580 case WLAN_CIPHER_SUITE_WEP40:
1581 case WLAN_CIPHER_SUITE_WEP104:
1582 /* ignore WEP completely, nothing to do */
1583 return;
1584 case WLAN_CIPHER_SUITE_CCMP:
1585 case WLAN_CIPHER_SUITE_TKIP:
1586 /* we support these */
1587 break;
1588 default:
1589 /* everything else (even CMAC for MFP) - disconnect from AP */
1590 data->unhandled_cipher = true;
1591 return;
1592 }
1593
1594 data->num_keys++;
1595
1596 /*
1597 * pairwise key - update sequence counters only;
1598 * note that this assumes no TDLS sessions are active
1599 */
1600 if (sta) {
1601 struct ieee80211_key_seq seq = {};
1602 union iwl_all_tsc_rsc *sc = &data->status->gtk.rsc.all_tsc_rsc;
1603
1604 if (data->find_phase)
1605 return;
1606
1607 switch (key->cipher) {
1608 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001609 iwl_mvm_set_aes_rx_seq(data->mvm, sc->aes.unicast_rsc,
1610 sta, key);
Johannes Berg6645d5e2015-09-15 09:58:53 +02001611 atomic64_set(&key->tx_pn, le64_to_cpu(sc->aes.tsc.pn));
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001612 break;
1613 case WLAN_CIPHER_SUITE_TKIP:
1614 iwl_mvm_tkip_sc_to_seq(&sc->tkip.tsc, &seq);
1615 iwl_mvm_set_tkip_rx_seq(sc->tkip.unicast_rsc, key);
Johannes Berg6645d5e2015-09-15 09:58:53 +02001616 ieee80211_set_key_tx_seq(key, &seq);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001617 break;
1618 }
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001619
1620 /* that's it for this key */
1621 return;
1622 }
1623
1624 if (data->find_phase) {
1625 data->last_gtk = key;
1626 data->cipher = key->cipher;
1627 return;
1628 }
1629
1630 if (data->status->num_of_gtk_rekeys)
1631 ieee80211_remove_key(key);
1632 else if (data->last_gtk == key)
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001633 iwl_mvm_set_key_rx_seq(data->mvm, key, data->status);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001634}
1635
1636static bool iwl_mvm_setup_connection_keep(struct iwl_mvm *mvm,
1637 struct ieee80211_vif *vif,
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001638 struct iwl_wowlan_status *status)
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001639{
1640 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1641 struct iwl_mvm_d3_gtk_iter_data gtkdata = {
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001642 .mvm = mvm,
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001643 .status = status,
1644 };
Eliad Peller431591c2013-11-07 14:12:09 +02001645 u32 disconnection_reasons =
1646 IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_MISSED_BEACON |
1647 IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_DEAUTH;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001648
1649 if (!status || !vif->bss_conf.bssid)
1650 return false;
1651
Eliad Peller431591c2013-11-07 14:12:09 +02001652 if (le32_to_cpu(status->wakeup_reasons) & disconnection_reasons)
1653 return false;
1654
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001655 /* find last GTK that we used initially, if any */
1656 gtkdata.find_phase = true;
1657 ieee80211_iter_keys(mvm->hw, vif,
Emmanuel Grumbach59fd4bf2015-11-01 13:06:37 +02001658 iwl_mvm_d3_update_keys, &gtkdata);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001659 /* not trying to keep connections with MFP/unhandled ciphers */
1660 if (gtkdata.unhandled_cipher)
1661 return false;
1662 if (!gtkdata.num_keys)
Luciano Coelhocfa88892013-11-19 15:38:55 +02001663 goto out;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001664 if (!gtkdata.last_gtk)
1665 return false;
1666
1667 /*
1668 * invalidate all other GTKs that might still exist and update
1669 * the one that we used
1670 */
1671 gtkdata.find_phase = false;
1672 ieee80211_iter_keys(mvm->hw, vif,
Emmanuel Grumbach59fd4bf2015-11-01 13:06:37 +02001673 iwl_mvm_d3_update_keys, &gtkdata);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001674
1675 if (status->num_of_gtk_rekeys) {
1676 struct ieee80211_key_conf *key;
1677 struct {
1678 struct ieee80211_key_conf conf;
1679 u8 key[32];
1680 } conf = {
1681 .conf.cipher = gtkdata.cipher,
1682 .conf.keyidx = status->gtk.key_index,
1683 };
1684
1685 switch (gtkdata.cipher) {
1686 case WLAN_CIPHER_SUITE_CCMP:
1687 conf.conf.keylen = WLAN_KEY_LEN_CCMP;
1688 memcpy(conf.conf.key, status->gtk.decrypt_key,
1689 WLAN_KEY_LEN_CCMP);
1690 break;
1691 case WLAN_CIPHER_SUITE_TKIP:
1692 conf.conf.keylen = WLAN_KEY_LEN_TKIP;
1693 memcpy(conf.conf.key, status->gtk.decrypt_key, 16);
1694 /* leave TX MIC key zeroed, we don't use it anyway */
1695 memcpy(conf.conf.key +
1696 NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY,
1697 status->gtk.tkip_mic_key, 8);
1698 break;
1699 }
1700
1701 key = ieee80211_gtk_rekey_add(vif, &conf.conf);
1702 if (IS_ERR(key))
1703 return false;
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001704 iwl_mvm_set_key_rx_seq(mvm, key, status);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001705 }
1706
1707 if (status->num_of_gtk_rekeys) {
1708 __be64 replay_ctr =
1709 cpu_to_be64(le64_to_cpu(status->replay_ctr));
1710 ieee80211_gtk_rekey_notify(vif, vif->bss_conf.bssid,
1711 (void *)&replay_ctr, GFP_KERNEL);
1712 }
1713
Luciano Coelhocfa88892013-11-19 15:38:55 +02001714out:
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001715 mvmvif->seqno_valid = true;
1716 /* +0x10 because the set API expects next-to-use, not last-used */
1717 mvmvif->seqno = le16_to_cpu(status->non_qos_seq_ctr) + 0x10;
1718
1719 return true;
1720}
1721
Luciano Coelhoec12f452014-11-20 10:14:44 +02001722static struct iwl_wowlan_status *
1723iwl_mvm_get_wakeup_status(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Johannes Berg7abc4632013-08-06 18:28:26 +02001724{
1725 u32 base = mvm->error_event_table;
1726 struct error_table_start {
1727 /* cf. struct iwl_error_event_table */
1728 u32 valid;
1729 u32 error_id;
1730 } err_info;
1731 struct iwl_host_cmd cmd = {
1732 .id = WOWLAN_GET_STATUSES,
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001733 .flags = CMD_WANT_SKB,
Johannes Berg7abc4632013-08-06 18:28:26 +02001734 };
Luciano Coelhoec12f452014-11-20 10:14:44 +02001735 struct iwl_wowlan_status *status, *fw_status;
1736 int ret, len, status_size;
Johannes Berg7abc4632013-08-06 18:28:26 +02001737
1738 iwl_trans_read_mem_bytes(mvm->trans, base,
1739 &err_info, sizeof(err_info));
1740
1741 if (err_info.valid) {
Luciano Coelhoec12f452014-11-20 10:14:44 +02001742 IWL_INFO(mvm, "error table is valid (%d) with error (%d)\n",
1743 err_info.valid, err_info.error_id);
Johannes Berg7abc4632013-08-06 18:28:26 +02001744 if (err_info.error_id == RF_KILL_INDICATOR_FOR_WOWLAN) {
1745 struct cfg80211_wowlan_wakeup wakeup = {
1746 .rfkill_release = true,
1747 };
1748 ieee80211_report_wowlan_wakeup(vif, &wakeup,
1749 GFP_KERNEL);
1750 }
Luciano Coelhoec12f452014-11-20 10:14:44 +02001751 return ERR_PTR(-EIO);
Johannes Berg7abc4632013-08-06 18:28:26 +02001752 }
1753
1754 /* only for tracing for now */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001755 ret = iwl_mvm_send_cmd_pdu(mvm, OFFLOADS_QUERY_CMD, 0, 0, NULL);
Johannes Berg7abc4632013-08-06 18:28:26 +02001756 if (ret)
1757 IWL_ERR(mvm, "failed to query offload statistics (%d)\n", ret);
1758
1759 ret = iwl_mvm_send_cmd(mvm, &cmd);
1760 if (ret) {
1761 IWL_ERR(mvm, "failed to query status (%d)\n", ret);
Luciano Coelhoec12f452014-11-20 10:14:44 +02001762 return ERR_PTR(ret);
Johannes Berg7abc4632013-08-06 18:28:26 +02001763 }
1764
1765 /* RF-kill already asserted again... */
Luciano Coelhoec12f452014-11-20 10:14:44 +02001766 if (!cmd.resp_pkt) {
Johannes Berge111e962015-03-03 20:23:47 +01001767 fw_status = ERR_PTR(-ERFKILL);
Luciano Coelhoec12f452014-11-20 10:14:44 +02001768 goto out_free_resp;
1769 }
Johannes Berg7abc4632013-08-06 18:28:26 +02001770
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001771 status_size = sizeof(*fw_status);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001772
Johannes Berg65b30342014-01-08 13:16:33 +01001773 len = iwl_rx_packet_payload_len(cmd.resp_pkt);
1774 if (len < status_size) {
Johannes Berg7abc4632013-08-06 18:28:26 +02001775 IWL_ERR(mvm, "Invalid WoWLAN status response!\n");
Johannes Berge111e962015-03-03 20:23:47 +01001776 fw_status = ERR_PTR(-EIO);
Johannes Berg7abc4632013-08-06 18:28:26 +02001777 goto out_free_resp;
1778 }
1779
Luciano Coelhoec12f452014-11-20 10:14:44 +02001780 status = (void *)cmd.resp_pkt->data;
1781 if (len != (status_size +
1782 ALIGN(le32_to_cpu(status->wake_packet_bufsize), 4))) {
1783 IWL_ERR(mvm, "Invalid WoWLAN status response!\n");
Johannes Berge111e962015-03-03 20:23:47 +01001784 fw_status = ERR_PTR(-EIO);
Luciano Coelhoec12f452014-11-20 10:14:44 +02001785 goto out_free_resp;
1786 }
1787
1788 fw_status = kmemdup(status, len, GFP_KERNEL);
1789
1790out_free_resp:
1791 iwl_free_resp(&cmd);
Johannes Berge111e962015-03-03 20:23:47 +01001792 return fw_status;
Luciano Coelhoec12f452014-11-20 10:14:44 +02001793}
1794
1795/* releases the MVM mutex */
1796static bool iwl_mvm_query_wakeup_reasons(struct iwl_mvm *mvm,
1797 struct ieee80211_vif *vif)
1798{
1799 struct iwl_wowlan_status_data status;
1800 struct iwl_wowlan_status *fw_status;
1801 int i;
1802 bool keep;
1803 struct ieee80211_sta *ap_sta;
1804 struct iwl_mvm_sta *mvm_ap_sta;
1805
1806 fw_status = iwl_mvm_get_wakeup_status(mvm, vif);
1807 if (IS_ERR_OR_NULL(fw_status))
1808 goto out_unlock;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001809
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001810 status.pattern_number = le16_to_cpu(fw_status->pattern_number);
1811 for (i = 0; i < 8; i++)
1812 status.qos_seq_ctr[i] =
1813 le16_to_cpu(fw_status->qos_seq_ctr[i]);
1814 status.wakeup_reasons = le32_to_cpu(fw_status->wakeup_reasons);
1815 status.wake_packet_length =
1816 le32_to_cpu(fw_status->wake_packet_length);
1817 status.wake_packet_bufsize =
1818 le32_to_cpu(fw_status->wake_packet_bufsize);
1819 status.wake_packet = fw_status->wake_packet;
Johannes Berg7abc4632013-08-06 18:28:26 +02001820
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001821 /* still at hard-coded place 0 for D3 image */
1822 ap_sta = rcu_dereference_protected(
1823 mvm->fw_id_to_mac_id[0],
1824 lockdep_is_held(&mvm->mutex));
1825 if (IS_ERR_OR_NULL(ap_sta))
Luciano Coelhoec12f452014-11-20 10:14:44 +02001826 goto out_free;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001827
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01001828 mvm_ap_sta = iwl_mvm_sta_from_mac80211(ap_sta);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001829 for (i = 0; i < IWL_MAX_TID_COUNT; i++) {
1830 u16 seq = status.qos_seq_ctr[i];
1831 /* firmware stores last-used value, we store next value */
1832 seq += 0x10;
1833 mvm_ap_sta->tid_data[i].seq_number = seq;
1834 }
1835
Johannes Berg7abc4632013-08-06 18:28:26 +02001836 /* now we have all the data we need, unlock to avoid mac80211 issues */
1837 mutex_unlock(&mvm->mutex);
1838
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001839 iwl_mvm_report_wakeup_reasons(mvm, vif, &status);
1840
Emmanuel Grumbach3afec6392014-03-30 09:10:28 +03001841 keep = iwl_mvm_setup_connection_keep(mvm, vif, fw_status);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001842
Luciano Coelhoec12f452014-11-20 10:14:44 +02001843 kfree(fw_status);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001844 return keep;
Johannes Berg7abc4632013-08-06 18:28:26 +02001845
Luciano Coelhoec12f452014-11-20 10:14:44 +02001846out_free:
1847 kfree(fw_status);
1848out_unlock:
Johannes Berg7abc4632013-08-06 18:28:26 +02001849 mutex_unlock(&mvm->mutex);
Johannes Berg6d9d32b2013-08-06 18:58:56 +02001850 return false;
Johannes Berg9b26b502013-01-22 13:02:09 +01001851}
1852
Eliad Pellera3f7ba52015-11-11 17:23:59 +02001853void iwl_mvm_d0i3_update_keys(struct iwl_mvm *mvm,
1854 struct ieee80211_vif *vif,
1855 struct iwl_wowlan_status *status)
1856{
1857 struct iwl_mvm_d3_gtk_iter_data gtkdata = {
Eliad Peller0eb1c962015-12-31 15:19:32 +02001858 .mvm = mvm,
Eliad Pellera3f7ba52015-11-11 17:23:59 +02001859 .status = status,
1860 };
1861
1862 /*
1863 * rekey handling requires taking locks that can't be taken now.
1864 * however, d0i3 doesn't offload rekey, so we're fine.
1865 */
1866 if (WARN_ON_ONCE(status->num_of_gtk_rekeys))
1867 return;
1868
1869 /* find last GTK that we used initially, if any */
1870 gtkdata.find_phase = true;
1871 iwl_mvm_iter_d0i3_ap_keys(mvm, vif, iwl_mvm_d3_update_keys, &gtkdata);
1872
1873 gtkdata.find_phase = false;
1874 iwl_mvm_iter_d0i3_ap_keys(mvm, vif, iwl_mvm_d3_update_keys, &gtkdata);
1875}
1876
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001877struct iwl_mvm_nd_query_results {
1878 u32 matched_profiles;
1879 struct iwl_scan_offload_profile_match matches[IWL_SCAN_MAX_PROFILES];
1880};
1881
1882static int
1883iwl_mvm_netdetect_query_results(struct iwl_mvm *mvm,
1884 struct iwl_mvm_nd_query_results *results)
Luciano Coelhob04998f2014-11-20 15:58:34 +02001885{
1886 struct iwl_scan_offload_profiles_query *query;
1887 struct iwl_host_cmd cmd = {
1888 .id = SCAN_OFFLOAD_PROFILES_QUERY_CMD,
1889 .flags = CMD_WANT_SKB,
1890 };
1891 int ret, len;
1892
1893 ret = iwl_mvm_send_cmd(mvm, &cmd);
1894 if (ret) {
1895 IWL_ERR(mvm, "failed to query matched profiles (%d)\n", ret);
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001896 return ret;
Luciano Coelhob04998f2014-11-20 15:58:34 +02001897 }
1898
1899 /* RF-kill already asserted again... */
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001900 if (!cmd.resp_pkt) {
1901 ret = -ERFKILL;
Luciano Coelhob04998f2014-11-20 15:58:34 +02001902 goto out_free_resp;
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001903 }
Luciano Coelhob04998f2014-11-20 15:58:34 +02001904
1905 len = iwl_rx_packet_payload_len(cmd.resp_pkt);
1906 if (len < sizeof(*query)) {
1907 IWL_ERR(mvm, "Invalid scan offload profiles query response!\n");
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001908 ret = -EIO;
Luciano Coelhob04998f2014-11-20 15:58:34 +02001909 goto out_free_resp;
1910 }
1911
1912 query = (void *)cmd.resp_pkt->data;
1913
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001914 results->matched_profiles = le32_to_cpu(query->matched_profiles);
1915 memcpy(results->matches, query->matches, sizeof(results->matches));
Luciano Coelhob04998f2014-11-20 15:58:34 +02001916
Emmanuel Grumbach6bbd5522015-04-28 15:00:23 +03001917#ifdef CONFIG_IWLWIFI_DEBUGFS
Luciano Coelho484b3d12015-03-30 20:46:32 +03001918 mvm->last_netdetect_scans = le32_to_cpu(query->n_scans_done);
1919#endif
1920
Luciano Coelhob04998f2014-11-20 15:58:34 +02001921out_free_resp:
1922 iwl_free_resp(&cmd);
1923 return ret;
1924}
1925
Luciano Coelho2021a892014-11-20 08:59:51 +02001926static void iwl_mvm_query_netdetect_reasons(struct iwl_mvm *mvm,
1927 struct ieee80211_vif *vif)
1928{
Luciano Coelhod9718da2014-11-21 09:32:23 +02001929 struct cfg80211_wowlan_nd_info *net_detect = NULL;
Luciano Coelho2021a892014-11-20 08:59:51 +02001930 struct cfg80211_wowlan_wakeup wakeup = {
1931 .pattern_idx = -1,
1932 };
1933 struct cfg80211_wowlan_wakeup *wakeup_report = &wakeup;
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001934 struct iwl_mvm_nd_query_results query;
Luciano Coelho2021a892014-11-20 08:59:51 +02001935 struct iwl_wowlan_status *fw_status;
Luciano Coelhod9718da2014-11-21 09:32:23 +02001936 unsigned long matched_profiles;
Luciano Coelho2021a892014-11-20 08:59:51 +02001937 u32 reasons = 0;
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001938 int i, j, n_matches, ret;
Luciano Coelho2021a892014-11-20 08:59:51 +02001939
1940 fw_status = iwl_mvm_get_wakeup_status(mvm, vif);
Haim Dreyfuss2fc863a2015-05-20 08:10:43 +03001941 if (!IS_ERR_OR_NULL(fw_status)) {
Luciano Coelho2021a892014-11-20 08:59:51 +02001942 reasons = le32_to_cpu(fw_status->wakeup_reasons);
Haim Dreyfuss2fc863a2015-05-20 08:10:43 +03001943 kfree(fw_status);
1944 }
Luciano Coelho2021a892014-11-20 08:59:51 +02001945
1946 if (reasons & IWL_WOWLAN_WAKEUP_BY_RFKILL_DEASSERTED)
1947 wakeup.rfkill_release = true;
1948
Luciano Coelhob04998f2014-11-20 15:58:34 +02001949 if (reasons != IWL_WOWLAN_WAKEUP_BY_NON_WIRELESS)
1950 goto out;
1951
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001952 ret = iwl_mvm_netdetect_query_results(mvm, &query);
1953 if (ret || !query.matched_profiles) {
Luciano Coelho2021a892014-11-20 08:59:51 +02001954 wakeup_report = NULL;
Luciano Coelhob04998f2014-11-20 15:58:34 +02001955 goto out;
Luciano Coelho2021a892014-11-20 08:59:51 +02001956 }
1957
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001958 matched_profiles = query.matched_profiles;
Luciano Coelhod9718da2014-11-21 09:32:23 +02001959 if (mvm->n_nd_match_sets) {
1960 n_matches = hweight_long(matched_profiles);
1961 } else {
1962 IWL_ERR(mvm, "no net detect match information available\n");
1963 n_matches = 0;
1964 }
1965
1966 net_detect = kzalloc(sizeof(*net_detect) +
1967 (n_matches * sizeof(net_detect->matches[0])),
1968 GFP_KERNEL);
1969 if (!net_detect || !n_matches)
1970 goto out_report_nd;
1971
1972 for_each_set_bit(i, &matched_profiles, mvm->n_nd_match_sets) {
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001973 struct iwl_scan_offload_profile_match *fw_match;
Luciano Coelhod9718da2014-11-21 09:32:23 +02001974 struct cfg80211_wowlan_nd_match *match;
Luciano Coelhoae90c2e52015-05-06 10:45:42 +03001975 int idx, n_channels = 0;
Luciano Coelhod9718da2014-11-21 09:32:23 +02001976
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001977 fw_match = &query.matches[i];
1978
1979 for (j = 0; j < SCAN_OFFLOAD_MATCHING_CHANNELS_LEN; j++)
1980 n_channels += hweight8(fw_match->matching_channels[j]);
1981
1982 match = kzalloc(sizeof(*match) +
1983 (n_channels * sizeof(*match->channels)),
1984 GFP_KERNEL);
Luciano Coelhod9718da2014-11-21 09:32:23 +02001985 if (!match)
1986 goto out_report_nd;
1987
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001988 net_detect->matches[net_detect->n_matches++] = match;
1989
Luciano Coelhoae90c2e52015-05-06 10:45:42 +03001990 /* We inverted the order of the SSIDs in the scan
1991 * request, so invert the index here.
1992 */
1993 idx = mvm->n_nd_match_sets - i - 1;
1994 match->ssid.ssid_len = mvm->nd_match_sets[idx].ssid.ssid_len;
1995 memcpy(match->ssid.ssid, mvm->nd_match_sets[idx].ssid.ssid,
Luciano Coelhod9718da2014-11-21 09:32:23 +02001996 match->ssid.ssid_len);
1997
Luciano Coelho8ed4e652014-11-21 22:08:01 +02001998 if (mvm->n_nd_channels < n_channels)
1999 continue;
2000
2001 for (j = 0; j < SCAN_OFFLOAD_MATCHING_CHANNELS_LEN * 8; j++)
2002 if (fw_match->matching_channels[j / 8] & (BIT(j % 8)))
2003 match->channels[match->n_channels++] =
2004 mvm->nd_channels[j]->center_freq;
Luciano Coelhod9718da2014-11-21 09:32:23 +02002005 }
2006
2007out_report_nd:
2008 wakeup.net_detect = net_detect;
Luciano Coelhob04998f2014-11-20 15:58:34 +02002009out:
Luciano Coelhod9718da2014-11-21 09:32:23 +02002010 iwl_mvm_free_nd(mvm);
2011
Luciano Coelho2021a892014-11-20 08:59:51 +02002012 mutex_unlock(&mvm->mutex);
2013 ieee80211_report_wowlan_wakeup(vif, wakeup_report, GFP_KERNEL);
Luciano Coelhod9718da2014-11-21 09:32:23 +02002014
2015 if (net_detect) {
2016 for (i = 0; i < net_detect->n_matches; i++)
2017 kfree(net_detect->matches[i]);
2018 kfree(net_detect);
2019 }
Luciano Coelho2021a892014-11-20 08:59:51 +02002020}
2021
Johannes Bergafc66bb2013-05-03 11:44:16 +02002022static void iwl_mvm_read_d3_sram(struct iwl_mvm *mvm)
2023{
2024#ifdef CONFIG_IWLWIFI_DEBUGFS
2025 const struct fw_img *img = &mvm->fw->img[IWL_UCODE_WOWLAN];
2026 u32 len = img->sec[IWL_UCODE_SECTION_DATA].len;
2027 u32 offs = img->sec[IWL_UCODE_SECTION_DATA].offset;
2028
2029 if (!mvm->store_d3_resume_sram)
2030 return;
2031
2032 if (!mvm->d3_resume_sram) {
2033 mvm->d3_resume_sram = kzalloc(len, GFP_KERNEL);
2034 if (!mvm->d3_resume_sram)
2035 return;
2036 }
2037
2038 iwl_trans_read_mem_bytes(mvm->trans, offs, mvm->d3_resume_sram, len);
2039#endif
2040}
2041
Johannes Berg6d9d32b2013-08-06 18:58:56 +02002042static void iwl_mvm_d3_disconnect_iter(void *data, u8 *mac,
2043 struct ieee80211_vif *vif)
2044{
2045 /* skip the one we keep connection on */
2046 if (data == vif)
2047 return;
2048
2049 if (vif->type == NL80211_IFTYPE_STATION)
2050 ieee80211_resume_disconnect(vif);
2051}
2052
Johannes Bergdebff612013-05-14 13:53:45 +02002053static int __iwl_mvm_resume(struct iwl_mvm *mvm, bool test)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002054{
Johannes Berg8ca151b2013-01-24 14:25:36 +01002055 struct ieee80211_vif *vif = NULL;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002056 int ret = 1;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002057 enum iwl_d3_status d3_status;
Johannes Berg6d9d32b2013-08-06 18:58:56 +02002058 bool keep = false;
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002059 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
2060 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
2061
2062 u32 flags = CMD_ASYNC | CMD_HIGH_PRIO | CMD_SEND_IN_IDLE |
2063 CMD_WAKE_UP_TRANS;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002064
2065 mutex_lock(&mvm->mutex);
2066
2067 /* get the BSS vif pointer again */
Luciano Coelho7f549e22014-10-02 15:38:04 +03002068 vif = iwl_mvm_get_bss_vif(mvm);
2069 if (IS_ERR_OR_NULL(vif))
Luciano Coelhoa500e462015-05-04 17:03:17 +03002070 goto err;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002071
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002072 ret = iwl_trans_d3_resume(mvm->trans, &d3_status, test, !unified_image);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002073 if (ret)
Luciano Coelhoa500e462015-05-04 17:03:17 +03002074 goto err;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002075
2076 if (d3_status != IWL_D3_STATUS_ALIVE) {
2077 IWL_INFO(mvm, "Device was reset during suspend\n");
Luciano Coelhoa500e462015-05-04 17:03:17 +03002078 goto err;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002079 }
2080
Johannes Bergafc66bb2013-05-03 11:44:16 +02002081 /* query SRAM first in case we want event logging */
2082 iwl_mvm_read_d3_sram(mvm);
2083
Jonathan Doron47c8b152014-11-27 16:55:25 +02002084 /*
2085 * Query the current location and source from the D3 firmware so we
2086 * can play it back when we re-intiailize the D0 firmware
2087 */
2088 iwl_mvm_update_changed_regdom(mvm);
2089
Luciano Coelho2021a892014-11-20 08:59:51 +02002090 if (mvm->net_detect) {
2091 iwl_mvm_query_netdetect_reasons(mvm, vif);
Luciano Coelhoe0ede172015-02-13 21:37:09 +02002092 /* has unlocked the mutex, so skip that */
2093 goto out;
Luciano Coelho2021a892014-11-20 08:59:51 +02002094 } else {
2095 keep = iwl_mvm_query_wakeup_reasons(mvm, vif);
Eliad Peller78c9df62013-11-07 14:13:30 +02002096#ifdef CONFIG_IWLWIFI_DEBUGFS
Luciano Coelho2021a892014-11-20 08:59:51 +02002097 if (keep)
2098 mvm->keep_vif = vif;
Luciano Coelho0c2ae042015-03-12 09:25:15 +02002099#endif
Luciano Coelhoe0ede172015-02-13 21:37:09 +02002100 /* has unlocked the mutex, so skip that */
2101 goto out_iterate;
Luciano Coelho2021a892014-11-20 08:59:51 +02002102 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002103
Luciano Coelhoa500e462015-05-04 17:03:17 +03002104err:
2105 iwl_mvm_free_nd(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002106 mutex_unlock(&mvm->mutex);
2107
Luciano Coelhoe0ede172015-02-13 21:37:09 +02002108out_iterate:
Johannes Berg6d9d32b2013-08-06 18:58:56 +02002109 if (!test)
2110 ieee80211_iterate_active_interfaces_rtnl(mvm->hw,
2111 IEEE80211_IFACE_ITER_NORMAL,
2112 iwl_mvm_d3_disconnect_iter, keep ? vif : NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002113
Luciano Coelhoe0ede172015-02-13 21:37:09 +02002114out:
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002115 if (unified_image && !ret) {
2116 ret = iwl_mvm_send_cmd_pdu(mvm, D0I3_END_CMD, flags, 0, NULL);
2117 if (!ret) /* D3 ended successfully - no need to reset device */
2118 return 0;
2119 }
2120
2121 /*
2122 * Reconfigure the device in one of the following cases:
2123 * 1. We are not using a unified image
2124 * 2. We are using a unified image but had an error while exiting D3
2125 */
Johannes Berg8ca151b2013-01-24 14:25:36 +01002126 set_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
Johannes Berg58629d92014-11-06 09:40:50 +01002127 set_bit(IWL_MVM_STATUS_D3_RECONFIG, &mvm->status);
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002128 /*
2129 * When switching images we return 1, which causes mac80211
2130 * to do a reconfig with IEEE80211_RECONFIG_TYPE_RESTART.
2131 * This type of reconfig calls iwl_mvm_restart_complete(),
2132 * where we unref the IWL_MVM_REF_UCODE_DOWN, so we need
2133 * to take the reference here.
Luciano Coelhodcfc7fb2015-04-28 08:41:55 +03002134 */
2135 iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002136
Johannes Berg8ca151b2013-01-24 14:25:36 +01002137 return 1;
2138}
2139
Eliad Peller2d428012015-06-17 15:32:37 +03002140static int iwl_mvm_resume_d3(struct iwl_mvm *mvm)
2141{
2142 iwl_trans_resume(mvm->trans);
2143
2144 return __iwl_mvm_resume(mvm, false);
2145}
2146
2147static int iwl_mvm_resume_d0i3(struct iwl_mvm *mvm)
2148{
2149 bool exit_now;
Eliad Peller6dfb36c2015-07-09 14:17:24 +03002150 enum iwl_d3_status d3_status;
Luca Coelhob7282642015-09-17 23:44:14 +03002151 struct iwl_trans *trans = mvm->trans;
Eliad Peller6dfb36c2015-07-09 14:17:24 +03002152
Matti Gottlieb23ae6122015-12-31 18:18:02 +02002153 iwl_trans_d3_resume(trans, &d3_status, false, false);
Eliad Peller2d428012015-06-17 15:32:37 +03002154
2155 /*
2156 * make sure to clear D0I3_DEFER_WAKEUP before
2157 * calling iwl_trans_resume(), which might wait
2158 * for d0i3 exit completion.
2159 */
2160 mutex_lock(&mvm->d0i3_suspend_mutex);
2161 __clear_bit(D0I3_DEFER_WAKEUP, &mvm->d0i3_suspend_flags);
2162 exit_now = __test_and_clear_bit(D0I3_PENDING_WAKEUP,
2163 &mvm->d0i3_suspend_flags);
2164 mutex_unlock(&mvm->d0i3_suspend_mutex);
2165 if (exit_now) {
2166 IWL_DEBUG_RPM(mvm, "Run deferred d0i3 exit\n");
2167 _iwl_mvm_exit_d0i3(mvm);
2168 }
2169
Luca Coelhob7282642015-09-17 23:44:14 +03002170 iwl_trans_resume(trans);
Eliad Peller2d428012015-06-17 15:32:37 +03002171
Luca Coelhob7282642015-09-17 23:44:14 +03002172 if (iwl_mvm_enter_d0i3_on_suspend(mvm)) {
Eliad Peller2d428012015-06-17 15:32:37 +03002173 int ret = iwl_mvm_exit_d0i3(mvm->hw->priv);
2174
2175 if (ret)
2176 return ret;
2177 /*
2178 * d0i3 exit will be deferred until reconfig_complete.
2179 * make sure there we are out of d0i3.
2180 */
2181 }
2182 return 0;
2183}
2184
Johannes Bergdebff612013-05-14 13:53:45 +02002185int iwl_mvm_resume(struct ieee80211_hw *hw)
2186{
2187 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luca Coelhob7282642015-09-17 23:44:14 +03002188 int ret;
Johannes Bergdebff612013-05-14 13:53:45 +02002189
Luca Coelhob7282642015-09-17 23:44:14 +03002190 if (mvm->trans->system_pm_mode == IWL_PLAT_PM_MODE_D0I3)
2191 ret = iwl_mvm_resume_d0i3(mvm);
Eliad Peller2d428012015-06-17 15:32:37 +03002192 else
Luca Coelhob7282642015-09-17 23:44:14 +03002193 ret = iwl_mvm_resume_d3(mvm);
2194
2195 mvm->trans->system_pm_mode = IWL_PLAT_PM_MODE_DISABLED;
2196
2197 return ret;
Johannes Bergdebff612013-05-14 13:53:45 +02002198}
2199
Johannes Berg8ca151b2013-01-24 14:25:36 +01002200void iwl_mvm_set_wakeup(struct ieee80211_hw *hw, bool enabled)
2201{
2202 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2203
2204 device_set_wakeup_enable(mvm->trans->dev, enabled);
2205}
Johannes Bergdebff612013-05-14 13:53:45 +02002206
2207#ifdef CONFIG_IWLWIFI_DEBUGFS
2208static int iwl_mvm_d3_test_open(struct inode *inode, struct file *file)
2209{
2210 struct iwl_mvm *mvm = inode->i_private;
2211 int err;
2212
2213 if (mvm->d3_test_active)
2214 return -EBUSY;
2215
2216 file->private_data = inode->i_private;
2217
2218 ieee80211_stop_queues(mvm->hw);
2219 synchronize_net();
2220
Luca Coelhob7282642015-09-17 23:44:14 +03002221 mvm->trans->system_pm_mode = IWL_PLAT_PM_MODE_D3;
2222
Johannes Bergdebff612013-05-14 13:53:45 +02002223 /* start pseudo D3 */
2224 rtnl_lock();
2225 err = __iwl_mvm_suspend(mvm->hw, mvm->hw->wiphy->wowlan_config, true);
2226 rtnl_unlock();
2227 if (err > 0)
2228 err = -EINVAL;
2229 if (err) {
2230 ieee80211_wake_queues(mvm->hw);
2231 return err;
2232 }
2233 mvm->d3_test_active = true;
Eliad Peller78c9df62013-11-07 14:13:30 +02002234 mvm->keep_vif = NULL;
Johannes Bergdebff612013-05-14 13:53:45 +02002235 return 0;
2236}
2237
2238static ssize_t iwl_mvm_d3_test_read(struct file *file, char __user *user_buf,
2239 size_t count, loff_t *ppos)
2240{
2241 struct iwl_mvm *mvm = file->private_data;
2242 u32 pme_asserted;
2243
2244 while (true) {
Eliad Peller4ed80a82013-11-07 13:23:21 +02002245 /* read pme_ptr if available */
2246 if (mvm->d3_test_pme_ptr) {
2247 pme_asserted = iwl_trans_read_mem32(mvm->trans,
2248 mvm->d3_test_pme_ptr);
2249 if (pme_asserted)
2250 break;
2251 }
2252
Johannes Bergdebff612013-05-14 13:53:45 +02002253 if (msleep_interruptible(100))
2254 break;
2255 }
2256
2257 return 0;
2258}
2259
2260static void iwl_mvm_d3_test_disconn_work_iter(void *_data, u8 *mac,
2261 struct ieee80211_vif *vif)
2262{
Eliad Peller78c9df62013-11-07 14:13:30 +02002263 /* skip the one we keep connection on */
2264 if (_data == vif)
2265 return;
2266
Johannes Bergdebff612013-05-14 13:53:45 +02002267 if (vif->type == NL80211_IFTYPE_STATION)
2268 ieee80211_connection_loss(vif);
2269}
2270
2271static int iwl_mvm_d3_test_release(struct inode *inode, struct file *file)
2272{
2273 struct iwl_mvm *mvm = inode->i_private;
2274 int remaining_time = 10;
2275
2276 mvm->d3_test_active = false;
Luca Coelhob7282642015-09-17 23:44:14 +03002277
Luciano Coelho31ca09d2014-09-22 13:22:51 +03002278 rtnl_lock();
Johannes Bergdebff612013-05-14 13:53:45 +02002279 __iwl_mvm_resume(mvm, true);
Luciano Coelho31ca09d2014-09-22 13:22:51 +03002280 rtnl_unlock();
Luca Coelhob7282642015-09-17 23:44:14 +03002281
2282 mvm->trans->system_pm_mode = IWL_PLAT_PM_MODE_DISABLED;
2283
Johannes Bergdebff612013-05-14 13:53:45 +02002284 iwl_abort_notification_waits(&mvm->notif_wait);
2285 ieee80211_restart_hw(mvm->hw);
2286
2287 /* wait for restart and disconnect all interfaces */
2288 while (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) &&
2289 remaining_time > 0) {
2290 remaining_time--;
2291 msleep(1000);
2292 }
2293
2294 if (remaining_time == 0)
2295 IWL_ERR(mvm, "Timed out waiting for HW restart to finish!\n");
2296
2297 ieee80211_iterate_active_interfaces_atomic(
2298 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
Eliad Peller78c9df62013-11-07 14:13:30 +02002299 iwl_mvm_d3_test_disconn_work_iter, mvm->keep_vif);
Johannes Bergdebff612013-05-14 13:53:45 +02002300
2301 ieee80211_wake_queues(mvm->hw);
2302
2303 return 0;
2304}
2305
2306const struct file_operations iwl_dbgfs_d3_test_ops = {
2307 .llseek = no_llseek,
2308 .open = iwl_mvm_d3_test_open,
2309 .read = iwl_mvm_d3_test_read,
2310 .release = iwl_mvm_d3_test_release,
2311};
2312#endif