Loading...
1/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
11 *
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
27 * in the file called COPYING.
28 *
29 * Contact Information:
30 * Intel Linux Wireless <linuxwifi@intel.com>
31 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
35 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
36 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
37 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
38 * Copyright(c) 2018 Intel Corporation
39 * All rights reserved.
40 *
41 * Redistribution and use in source and binary forms, with or without
42 * modification, are permitted provided that the following conditions
43 * are met:
44 *
45 * * Redistributions of source code must retain the above copyright
46 * notice, this list of conditions and the following disclaimer.
47 * * Redistributions in binary form must reproduce the above copyright
48 * notice, this list of conditions and the following disclaimer in
49 * the documentation and/or other materials provided with the
50 * distribution.
51 * * Neither the name Intel Corporation nor the names of its
52 * contributors may be used to endorse or promote products derived
53 * from this software without specific prior written permission.
54 *
55 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
56 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
57 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
58 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
59 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
60 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
61 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
62 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
63 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
64 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
65 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
66 *
67 *****************************************************************************/
68
69#include <linux/etherdevice.h>
70#include <net/mac80211.h>
71
72#include "mvm.h"
73#include "fw/api/scan.h"
74#include "iwl-io.h"
75
76#define IWL_DENSE_EBS_SCAN_RATIO 5
77#define IWL_SPARSE_EBS_SCAN_RATIO 1
78
79enum iwl_mvm_traffic_load {
80 IWL_MVM_TRAFFIC_LOW,
81 IWL_MVM_TRAFFIC_MEDIUM,
82 IWL_MVM_TRAFFIC_HIGH,
83};
84
85#define IWL_SCAN_DWELL_ACTIVE 10
86#define IWL_SCAN_DWELL_PASSIVE 110
87#define IWL_SCAN_DWELL_FRAGMENTED 44
88#define IWL_SCAN_DWELL_EXTENDED 90
89#define IWL_SCAN_NUM_OF_FRAGS 3
90
91
92/* adaptive dwell max budget time [TU] for full scan */
93#define IWL_SCAN_ADWELL_MAX_BUDGET_FULL_SCAN 300
94/* adaptive dwell max budget time [TU] for directed scan */
95#define IWL_SCAN_ADWELL_MAX_BUDGET_DIRECTED_SCAN 100
96/* adaptive dwell default APs number */
97#define IWL_SCAN_ADWELL_DEFAULT_N_APS 2
98/* adaptive dwell default APs number in social channels (1, 6, 11) */
99#define IWL_SCAN_ADWELL_DEFAULT_N_APS_SOCIAL 10
100
101struct iwl_mvm_scan_timing_params {
102 u32 suspend_time;
103 u32 max_out_time;
104};
105
106static struct iwl_mvm_scan_timing_params scan_timing[] = {
107 [IWL_SCAN_TYPE_UNASSOC] = {
108 .suspend_time = 0,
109 .max_out_time = 0,
110 },
111 [IWL_SCAN_TYPE_WILD] = {
112 .suspend_time = 30,
113 .max_out_time = 120,
114 },
115 [IWL_SCAN_TYPE_MILD] = {
116 .suspend_time = 120,
117 .max_out_time = 120,
118 },
119 [IWL_SCAN_TYPE_FRAGMENTED] = {
120 .suspend_time = 95,
121 .max_out_time = 44,
122 },
123};
124
125struct iwl_mvm_scan_params {
126 enum iwl_mvm_scan_type type;
127 u32 n_channels;
128 u16 delay;
129 int n_ssids;
130 struct cfg80211_ssid *ssids;
131 struct ieee80211_channel **channels;
132 u32 flags;
133 u8 *mac_addr;
134 u8 *mac_addr_mask;
135 bool no_cck;
136 bool pass_all;
137 int n_match_sets;
138 struct iwl_scan_probe_req preq;
139 struct cfg80211_match_set *match_sets;
140 int n_scan_plans;
141 struct cfg80211_sched_scan_plan *scan_plans;
142 u32 measurement_dwell;
143};
144
145static inline void *iwl_mvm_get_scan_req_umac_data(struct iwl_mvm *mvm)
146{
147 struct iwl_scan_req_umac *cmd = mvm->scan_cmd;
148
149 if (iwl_mvm_is_adaptive_dwell_v2_supported(mvm))
150 return (void *)&cmd->v8.data;
151
152 if (iwl_mvm_is_adaptive_dwell_supported(mvm))
153 return (void *)&cmd->v7.data;
154
155 if (iwl_mvm_has_new_tx_api(mvm))
156 return (void *)&cmd->v6.data;
157
158 return (void *)&cmd->v1.data;
159}
160
161static inline struct iwl_scan_umac_chan_param *
162iwl_mvm_get_scan_req_umac_channel(struct iwl_mvm *mvm)
163{
164 struct iwl_scan_req_umac *cmd = mvm->scan_cmd;
165
166 if (iwl_mvm_is_adaptive_dwell_v2_supported(mvm))
167 return &cmd->v8.channel;
168
169 if (iwl_mvm_is_adaptive_dwell_supported(mvm))
170 return &cmd->v7.channel;
171
172 if (iwl_mvm_has_new_tx_api(mvm))
173 return &cmd->v6.channel;
174
175 return &cmd->v1.channel;
176}
177
178static u8 iwl_mvm_scan_rx_ant(struct iwl_mvm *mvm)
179{
180 if (mvm->scan_rx_ant != ANT_NONE)
181 return mvm->scan_rx_ant;
182 return iwl_mvm_get_valid_rx_ant(mvm);
183}
184
185static inline __le16 iwl_mvm_scan_rx_chain(struct iwl_mvm *mvm)
186{
187 u16 rx_chain;
188 u8 rx_ant;
189
190 rx_ant = iwl_mvm_scan_rx_ant(mvm);
191 rx_chain = rx_ant << PHY_RX_CHAIN_VALID_POS;
192 rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_MIMO_SEL_POS;
193 rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_SEL_POS;
194 rx_chain |= 0x1 << PHY_RX_CHAIN_DRIVER_FORCE_POS;
195 return cpu_to_le16(rx_chain);
196}
197
198static __le32 iwl_mvm_scan_rxon_flags(enum nl80211_band band)
199{
200 if (band == NL80211_BAND_2GHZ)
201 return cpu_to_le32(PHY_BAND_24);
202 else
203 return cpu_to_le32(PHY_BAND_5);
204}
205
206static inline __le32
207iwl_mvm_scan_rate_n_flags(struct iwl_mvm *mvm, enum nl80211_band band,
208 bool no_cck)
209{
210 u32 tx_ant;
211
212 mvm->scan_last_antenna_idx =
213 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
214 mvm->scan_last_antenna_idx);
215 tx_ant = BIT(mvm->scan_last_antenna_idx) << RATE_MCS_ANT_POS;
216
217 if (band == NL80211_BAND_2GHZ && !no_cck)
218 return cpu_to_le32(IWL_RATE_1M_PLCP | RATE_MCS_CCK_MSK |
219 tx_ant);
220 else
221 return cpu_to_le32(IWL_RATE_6M_PLCP | tx_ant);
222}
223
224static void iwl_mvm_scan_condition_iterator(void *data, u8 *mac,
225 struct ieee80211_vif *vif)
226{
227 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
228 int *global_cnt = data;
229
230 if (vif->type != NL80211_IFTYPE_P2P_DEVICE && mvmvif->phy_ctxt &&
231 mvmvif->phy_ctxt->id < NUM_PHY_CTX)
232 *global_cnt += 1;
233}
234
235static enum iwl_mvm_traffic_load iwl_mvm_get_traffic_load(struct iwl_mvm *mvm)
236{
237 return IWL_MVM_TRAFFIC_LOW;
238}
239
240static enum
241iwl_mvm_scan_type iwl_mvm_get_scan_type(struct iwl_mvm *mvm, bool p2p_device)
242{
243 int global_cnt = 0;
244 enum iwl_mvm_traffic_load load;
245 bool low_latency;
246
247 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
248 IEEE80211_IFACE_ITER_NORMAL,
249 iwl_mvm_scan_condition_iterator,
250 &global_cnt);
251 if (!global_cnt)
252 return IWL_SCAN_TYPE_UNASSOC;
253
254 load = iwl_mvm_get_traffic_load(mvm);
255 low_latency = iwl_mvm_low_latency(mvm);
256
257 if ((load == IWL_MVM_TRAFFIC_HIGH || low_latency) && !p2p_device &&
258 fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_FRAGMENTED_SCAN))
259 return IWL_SCAN_TYPE_FRAGMENTED;
260
261 if (load >= IWL_MVM_TRAFFIC_MEDIUM || low_latency)
262 return IWL_SCAN_TYPE_MILD;
263
264 return IWL_SCAN_TYPE_WILD;
265}
266
267static int
268iwl_mvm_get_measurement_dwell(struct iwl_mvm *mvm,
269 struct cfg80211_scan_request *req,
270 struct iwl_mvm_scan_params *params)
271{
272 if (!req->duration)
273 return 0;
274
275 if (req->duration_mandatory &&
276 req->duration > scan_timing[params->type].max_out_time) {
277 IWL_DEBUG_SCAN(mvm,
278 "Measurement scan - too long dwell %hu (max out time %u)\n",
279 req->duration,
280 scan_timing[params->type].max_out_time);
281 return -EOPNOTSUPP;
282 }
283
284 return min_t(u32, (u32)req->duration,
285 scan_timing[params->type].max_out_time);
286}
287
288static inline bool iwl_mvm_rrm_scan_needed(struct iwl_mvm *mvm)
289{
290 /* require rrm scan whenever the fw supports it */
291 return fw_has_capa(&mvm->fw->ucode_capa,
292 IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT);
293}
294
295static int iwl_mvm_max_scan_ie_fw_cmd_room(struct iwl_mvm *mvm)
296{
297 int max_probe_len;
298
299 max_probe_len = SCAN_OFFLOAD_PROBE_REQ_SIZE;
300
301 /* we create the 802.11 header and SSID element */
302 max_probe_len -= 24 + 2;
303
304 /* DS parameter set element is added on 2.4GHZ band if required */
305 if (iwl_mvm_rrm_scan_needed(mvm))
306 max_probe_len -= 3;
307
308 return max_probe_len;
309}
310
311int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm)
312{
313 int max_ie_len = iwl_mvm_max_scan_ie_fw_cmd_room(mvm);
314
315 /* TODO: [BUG] This function should return the maximum allowed size of
316 * scan IEs, however the LMAC scan api contains both 2GHZ and 5GHZ IEs
317 * in the same command. So the correct implementation of this function
318 * is just iwl_mvm_max_scan_ie_fw_cmd_room() / 2. Currently the scan
319 * command has only 512 bytes and it would leave us with about 240
320 * bytes for scan IEs, which is clearly not enough. So meanwhile
321 * we will report an incorrect value. This may result in a failure to
322 * issue a scan in unified_scan_lmac and unified_sched_scan_lmac
323 * functions with -ENOBUFS, if a large enough probe will be provided.
324 */
325 return max_ie_len;
326}
327
328void iwl_mvm_rx_lmac_scan_iter_complete_notif(struct iwl_mvm *mvm,
329 struct iwl_rx_cmd_buffer *rxb)
330{
331 struct iwl_rx_packet *pkt = rxb_addr(rxb);
332 struct iwl_lmac_scan_complete_notif *notif = (void *)pkt->data;
333
334 IWL_DEBUG_SCAN(mvm,
335 "Scan offload iteration complete: status=0x%x scanned channels=%d\n",
336 notif->status, notif->scanned_channels);
337
338 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_FOUND) {
339 IWL_DEBUG_SCAN(mvm, "Pass all scheduled scan results found\n");
340 ieee80211_sched_scan_results(mvm->hw);
341 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED;
342 }
343}
344
345void iwl_mvm_rx_scan_match_found(struct iwl_mvm *mvm,
346 struct iwl_rx_cmd_buffer *rxb)
347{
348 IWL_DEBUG_SCAN(mvm, "Scheduled scan results\n");
349 ieee80211_sched_scan_results(mvm->hw);
350}
351
352static const char *iwl_mvm_ebs_status_str(enum iwl_scan_ebs_status status)
353{
354 switch (status) {
355 case IWL_SCAN_EBS_SUCCESS:
356 return "successful";
357 case IWL_SCAN_EBS_INACTIVE:
358 return "inactive";
359 case IWL_SCAN_EBS_FAILED:
360 case IWL_SCAN_EBS_CHAN_NOT_FOUND:
361 default:
362 return "failed";
363 }
364}
365
366void iwl_mvm_rx_lmac_scan_complete_notif(struct iwl_mvm *mvm,
367 struct iwl_rx_cmd_buffer *rxb)
368{
369 struct iwl_rx_packet *pkt = rxb_addr(rxb);
370 struct iwl_periodic_scan_complete *scan_notif = (void *)pkt->data;
371 bool aborted = (scan_notif->status == IWL_SCAN_OFFLOAD_ABORTED);
372
373 /* If this happens, the firmware has mistakenly sent an LMAC
374 * notification during UMAC scans -- warn and ignore it.
375 */
376 if (WARN_ON_ONCE(fw_has_capa(&mvm->fw->ucode_capa,
377 IWL_UCODE_TLV_CAPA_UMAC_SCAN)))
378 return;
379
380 /* scan status must be locked for proper checking */
381 lockdep_assert_held(&mvm->mutex);
382
383 /* We first check if we were stopping a scan, in which case we
384 * just clear the stopping flag. Then we check if it was a
385 * firmware initiated stop, in which case we need to inform
386 * mac80211.
387 * Note that we can have a stopping and a running scan
388 * simultaneously, but we can't have two different types of
389 * scans stopping or running at the same time (since LMAC
390 * doesn't support it).
391 */
392
393 if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_SCHED) {
394 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR);
395
396 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n",
397 aborted ? "aborted" : "completed",
398 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
399 IWL_DEBUG_SCAN(mvm,
400 "Last line %d, Last iteration %d, Time after last iteration %d\n",
401 scan_notif->last_schedule_line,
402 scan_notif->last_schedule_iteration,
403 __le32_to_cpu(scan_notif->time_after_last_iter));
404
405 mvm->scan_status &= ~IWL_MVM_SCAN_STOPPING_SCHED;
406 } else if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR) {
407 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s\n",
408 aborted ? "aborted" : "completed",
409 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
410
411 mvm->scan_status &= ~IWL_MVM_SCAN_STOPPING_REGULAR;
412 } else if (mvm->scan_status & IWL_MVM_SCAN_SCHED) {
413 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_REGULAR);
414
415 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n",
416 aborted ? "aborted" : "completed",
417 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
418 IWL_DEBUG_SCAN(mvm,
419 "Last line %d, Last iteration %d, Time after last iteration %d (FW)\n",
420 scan_notif->last_schedule_line,
421 scan_notif->last_schedule_iteration,
422 __le32_to_cpu(scan_notif->time_after_last_iter));
423
424 mvm->scan_status &= ~IWL_MVM_SCAN_SCHED;
425 ieee80211_sched_scan_stopped(mvm->hw);
426 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
427 } else if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) {
428 struct cfg80211_scan_info info = {
429 .aborted = aborted,
430 };
431
432 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s (FW)\n",
433 aborted ? "aborted" : "completed",
434 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
435
436 mvm->scan_status &= ~IWL_MVM_SCAN_REGULAR;
437 ieee80211_scan_completed(mvm->hw, &info);
438 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
439 cancel_delayed_work(&mvm->scan_timeout_dwork);
440 } else {
441 IWL_ERR(mvm,
442 "got scan complete notification but no scan is running\n");
443 }
444
445 mvm->last_ebs_successful =
446 scan_notif->ebs_status == IWL_SCAN_EBS_SUCCESS ||
447 scan_notif->ebs_status == IWL_SCAN_EBS_INACTIVE;
448}
449
450static int iwl_ssid_exist(u8 *ssid, u8 ssid_len, struct iwl_ssid_ie *ssid_list)
451{
452 int i;
453
454 for (i = 0; i < PROBE_OPTION_MAX; i++) {
455 if (!ssid_list[i].len)
456 break;
457 if (ssid_list[i].len == ssid_len &&
458 !memcmp(ssid_list->ssid, ssid, ssid_len))
459 return i;
460 }
461 return -1;
462}
463
464/* We insert the SSIDs in an inverted order, because the FW will
465 * invert it back.
466 */
467static void iwl_scan_build_ssids(struct iwl_mvm_scan_params *params,
468 struct iwl_ssid_ie *ssids,
469 u32 *ssid_bitmap)
470{
471 int i, j;
472 int index;
473
474 /*
475 * copy SSIDs from match list.
476 * iwl_config_sched_scan_profiles() uses the order of these ssids to
477 * config match list.
478 */
479 for (i = 0, j = params->n_match_sets - 1;
480 j >= 0 && i < PROBE_OPTION_MAX;
481 i++, j--) {
482 /* skip empty SSID matchsets */
483 if (!params->match_sets[j].ssid.ssid_len)
484 continue;
485 ssids[i].id = WLAN_EID_SSID;
486 ssids[i].len = params->match_sets[j].ssid.ssid_len;
487 memcpy(ssids[i].ssid, params->match_sets[j].ssid.ssid,
488 ssids[i].len);
489 }
490
491 /* add SSIDs from scan SSID list */
492 *ssid_bitmap = 0;
493 for (j = params->n_ssids - 1;
494 j >= 0 && i < PROBE_OPTION_MAX;
495 i++, j--) {
496 index = iwl_ssid_exist(params->ssids[j].ssid,
497 params->ssids[j].ssid_len,
498 ssids);
499 if (index < 0) {
500 ssids[i].id = WLAN_EID_SSID;
501 ssids[i].len = params->ssids[j].ssid_len;
502 memcpy(ssids[i].ssid, params->ssids[j].ssid,
503 ssids[i].len);
504 *ssid_bitmap |= BIT(i);
505 } else {
506 *ssid_bitmap |= BIT(index);
507 }
508 }
509}
510
511static int
512iwl_mvm_config_sched_scan_profiles(struct iwl_mvm *mvm,
513 struct cfg80211_sched_scan_request *req)
514{
515 struct iwl_scan_offload_profile *profile;
516 struct iwl_scan_offload_profile_cfg *profile_cfg;
517 struct iwl_scan_offload_blacklist *blacklist;
518 struct iwl_host_cmd cmd = {
519 .id = SCAN_OFFLOAD_UPDATE_PROFILES_CMD,
520 .len[1] = sizeof(*profile_cfg),
521 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
522 .dataflags[1] = IWL_HCMD_DFL_NOCOPY,
523 };
524 int blacklist_len;
525 int i;
526 int ret;
527
528 if (WARN_ON(req->n_match_sets > IWL_SCAN_MAX_PROFILES))
529 return -EIO;
530
531 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_SHORT_BL)
532 blacklist_len = IWL_SCAN_SHORT_BLACKLIST_LEN;
533 else
534 blacklist_len = IWL_SCAN_MAX_BLACKLIST_LEN;
535
536 blacklist = kzalloc(sizeof(*blacklist) * blacklist_len, GFP_KERNEL);
537 if (!blacklist)
538 return -ENOMEM;
539
540 profile_cfg = kzalloc(sizeof(*profile_cfg), GFP_KERNEL);
541 if (!profile_cfg) {
542 ret = -ENOMEM;
543 goto free_blacklist;
544 }
545
546 cmd.data[0] = blacklist;
547 cmd.len[0] = sizeof(*blacklist) * blacklist_len;
548 cmd.data[1] = profile_cfg;
549
550 /* No blacklist configuration */
551
552 profile_cfg->num_profiles = req->n_match_sets;
553 profile_cfg->active_clients = SCAN_CLIENT_SCHED_SCAN;
554 profile_cfg->pass_match = SCAN_CLIENT_SCHED_SCAN;
555 profile_cfg->match_notify = SCAN_CLIENT_SCHED_SCAN;
556 if (!req->n_match_sets || !req->match_sets[0].ssid.ssid_len)
557 profile_cfg->any_beacon_notify = SCAN_CLIENT_SCHED_SCAN;
558
559 for (i = 0; i < req->n_match_sets; i++) {
560 profile = &profile_cfg->profiles[i];
561 profile->ssid_index = i;
562 /* Support any cipher and auth algorithm */
563 profile->unicast_cipher = 0xff;
564 profile->auth_alg = 0xff;
565 profile->network_type = IWL_NETWORK_TYPE_ANY;
566 profile->band_selection = IWL_SCAN_OFFLOAD_SELECT_ANY;
567 profile->client_bitmap = SCAN_CLIENT_SCHED_SCAN;
568 }
569
570 IWL_DEBUG_SCAN(mvm, "Sending scheduled scan profile config\n");
571
572 ret = iwl_mvm_send_cmd(mvm, &cmd);
573 kfree(profile_cfg);
574free_blacklist:
575 kfree(blacklist);
576
577 return ret;
578}
579
580static bool iwl_mvm_scan_pass_all(struct iwl_mvm *mvm,
581 struct cfg80211_sched_scan_request *req)
582{
583 if (req->n_match_sets && req->match_sets[0].ssid.ssid_len) {
584 IWL_DEBUG_SCAN(mvm,
585 "Sending scheduled scan with filtering, n_match_sets %d\n",
586 req->n_match_sets);
587 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
588 return false;
589 }
590
591 IWL_DEBUG_SCAN(mvm, "Sending Scheduled scan without filtering\n");
592
593 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED;
594 return true;
595}
596
597static int iwl_mvm_lmac_scan_abort(struct iwl_mvm *mvm)
598{
599 int ret;
600 struct iwl_host_cmd cmd = {
601 .id = SCAN_OFFLOAD_ABORT_CMD,
602 };
603 u32 status = CAN_ABORT_STATUS;
604
605 ret = iwl_mvm_send_cmd_status(mvm, &cmd, &status);
606 if (ret)
607 return ret;
608
609 if (status != CAN_ABORT_STATUS) {
610 /*
611 * The scan abort will return 1 for success or
612 * 2 for "failure". A failure condition can be
613 * due to simply not being in an active scan which
614 * can occur if we send the scan abort before the
615 * microcode has notified us that a scan is completed.
616 */
617 IWL_DEBUG_SCAN(mvm, "SCAN OFFLOAD ABORT ret %d.\n", status);
618 ret = -ENOENT;
619 }
620
621 return ret;
622}
623
624static void iwl_mvm_scan_fill_tx_cmd(struct iwl_mvm *mvm,
625 struct iwl_scan_req_tx_cmd *tx_cmd,
626 bool no_cck)
627{
628 tx_cmd[0].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
629 TX_CMD_FLG_BT_DIS);
630 tx_cmd[0].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm,
631 NL80211_BAND_2GHZ,
632 no_cck);
633 tx_cmd[0].sta_id = mvm->aux_sta.sta_id;
634
635 tx_cmd[1].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
636 TX_CMD_FLG_BT_DIS);
637 tx_cmd[1].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm,
638 NL80211_BAND_5GHZ,
639 no_cck);
640 tx_cmd[1].sta_id = mvm->aux_sta.sta_id;
641}
642
643static void
644iwl_mvm_lmac_scan_cfg_channels(struct iwl_mvm *mvm,
645 struct ieee80211_channel **channels,
646 int n_channels, u32 ssid_bitmap,
647 struct iwl_scan_req_lmac *cmd)
648{
649 struct iwl_scan_channel_cfg_lmac *channel_cfg = (void *)&cmd->data;
650 int i;
651
652 for (i = 0; i < n_channels; i++) {
653 channel_cfg[i].channel_num =
654 cpu_to_le16(channels[i]->hw_value);
655 channel_cfg[i].iter_count = cpu_to_le16(1);
656 channel_cfg[i].iter_interval = 0;
657 channel_cfg[i].flags =
658 cpu_to_le32(IWL_UNIFIED_SCAN_CHANNEL_PARTIAL |
659 ssid_bitmap);
660 }
661}
662
663static u8 *iwl_mvm_copy_and_insert_ds_elem(struct iwl_mvm *mvm, const u8 *ies,
664 size_t len, u8 *const pos)
665{
666 static const u8 before_ds_params[] = {
667 WLAN_EID_SSID,
668 WLAN_EID_SUPP_RATES,
669 WLAN_EID_REQUEST,
670 WLAN_EID_EXT_SUPP_RATES,
671 };
672 size_t offs;
673 u8 *newpos = pos;
674
675 if (!iwl_mvm_rrm_scan_needed(mvm)) {
676 memcpy(newpos, ies, len);
677 return newpos + len;
678 }
679
680 offs = ieee80211_ie_split(ies, len,
681 before_ds_params,
682 ARRAY_SIZE(before_ds_params),
683 0);
684
685 memcpy(newpos, ies, offs);
686 newpos += offs;
687
688 /* Add a placeholder for DS Parameter Set element */
689 *newpos++ = WLAN_EID_DS_PARAMS;
690 *newpos++ = 1;
691 *newpos++ = 0;
692
693 memcpy(newpos, ies + offs, len - offs);
694 newpos += len - offs;
695
696 return newpos;
697}
698
699#define WFA_TPC_IE_LEN 9
700
701static void iwl_mvm_add_tpc_report_ie(u8 *pos)
702{
703 pos[0] = WLAN_EID_VENDOR_SPECIFIC;
704 pos[1] = WFA_TPC_IE_LEN - 2;
705 pos[2] = (WLAN_OUI_MICROSOFT >> 16) & 0xff;
706 pos[3] = (WLAN_OUI_MICROSOFT >> 8) & 0xff;
707 pos[4] = WLAN_OUI_MICROSOFT & 0xff;
708 pos[5] = WLAN_OUI_TYPE_MICROSOFT_TPC;
709 pos[6] = 0;
710 /* pos[7] - tx power will be inserted by the FW */
711 pos[7] = 0;
712 pos[8] = 0;
713}
714
715static void
716iwl_mvm_build_scan_probe(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
717 struct ieee80211_scan_ies *ies,
718 struct iwl_mvm_scan_params *params)
719{
720 struct ieee80211_mgmt *frame = (void *)params->preq.buf;
721 u8 *pos, *newpos;
722 const u8 *mac_addr = params->flags & NL80211_SCAN_FLAG_RANDOM_ADDR ?
723 params->mac_addr : NULL;
724
725 /*
726 * Unfortunately, right now the offload scan doesn't support randomising
727 * within the firmware, so until the firmware API is ready we implement
728 * it in the driver. This means that the scan iterations won't really be
729 * random, only when it's restarted, but at least that helps a bit.
730 */
731 if (mac_addr)
732 get_random_mask_addr(frame->sa, mac_addr,
733 params->mac_addr_mask);
734 else
735 memcpy(frame->sa, vif->addr, ETH_ALEN);
736
737 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
738 eth_broadcast_addr(frame->da);
739 eth_broadcast_addr(frame->bssid);
740 frame->seq_ctrl = 0;
741
742 pos = frame->u.probe_req.variable;
743 *pos++ = WLAN_EID_SSID;
744 *pos++ = 0;
745
746 params->preq.mac_header.offset = 0;
747 params->preq.mac_header.len = cpu_to_le16(24 + 2);
748
749 /* Insert ds parameter set element on 2.4 GHz band */
750 newpos = iwl_mvm_copy_and_insert_ds_elem(mvm,
751 ies->ies[NL80211_BAND_2GHZ],
752 ies->len[NL80211_BAND_2GHZ],
753 pos);
754 params->preq.band_data[0].offset = cpu_to_le16(pos - params->preq.buf);
755 params->preq.band_data[0].len = cpu_to_le16(newpos - pos);
756 pos = newpos;
757
758 memcpy(pos, ies->ies[NL80211_BAND_5GHZ],
759 ies->len[NL80211_BAND_5GHZ]);
760 params->preq.band_data[1].offset = cpu_to_le16(pos - params->preq.buf);
761 params->preq.band_data[1].len =
762 cpu_to_le16(ies->len[NL80211_BAND_5GHZ]);
763 pos += ies->len[NL80211_BAND_5GHZ];
764
765 memcpy(pos, ies->common_ies, ies->common_ie_len);
766 params->preq.common_data.offset = cpu_to_le16(pos - params->preq.buf);
767
768 if (iwl_mvm_rrm_scan_needed(mvm) &&
769 !fw_has_capa(&mvm->fw->ucode_capa,
770 IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT)) {
771 iwl_mvm_add_tpc_report_ie(pos + ies->common_ie_len);
772 params->preq.common_data.len = cpu_to_le16(ies->common_ie_len +
773 WFA_TPC_IE_LEN);
774 } else {
775 params->preq.common_data.len = cpu_to_le16(ies->common_ie_len);
776 }
777}
778
779static void iwl_mvm_scan_lmac_dwell(struct iwl_mvm *mvm,
780 struct iwl_scan_req_lmac *cmd,
781 struct iwl_mvm_scan_params *params)
782{
783 cmd->active_dwell = IWL_SCAN_DWELL_ACTIVE;
784 cmd->passive_dwell = IWL_SCAN_DWELL_PASSIVE;
785 cmd->fragmented_dwell = IWL_SCAN_DWELL_FRAGMENTED;
786 cmd->extended_dwell = IWL_SCAN_DWELL_EXTENDED;
787 cmd->max_out_time = cpu_to_le32(scan_timing[params->type].max_out_time);
788 cmd->suspend_time = cpu_to_le32(scan_timing[params->type].suspend_time);
789 cmd->scan_prio = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
790}
791
792static inline bool iwl_mvm_scan_fits(struct iwl_mvm *mvm, int n_ssids,
793 struct ieee80211_scan_ies *ies,
794 int n_channels)
795{
796 return ((n_ssids <= PROBE_OPTION_MAX) &&
797 (n_channels <= mvm->fw->ucode_capa.n_scan_channels) &
798 (ies->common_ie_len +
799 ies->len[NL80211_BAND_2GHZ] +
800 ies->len[NL80211_BAND_5GHZ] <=
801 iwl_mvm_max_scan_ie_fw_cmd_room(mvm)));
802}
803
804static inline bool iwl_mvm_scan_use_ebs(struct iwl_mvm *mvm,
805 struct ieee80211_vif *vif)
806{
807 const struct iwl_ucode_capabilities *capa = &mvm->fw->ucode_capa;
808
809 /* We can only use EBS if:
810 * 1. the feature is supported;
811 * 2. the last EBS was successful;
812 * 3. if only single scan, the single scan EBS API is supported;
813 * 4. it's not a p2p find operation.
814 */
815 return ((capa->flags & IWL_UCODE_TLV_FLAGS_EBS_SUPPORT) &&
816 mvm->last_ebs_successful && IWL_MVM_ENABLE_EBS &&
817 vif->type != NL80211_IFTYPE_P2P_DEVICE);
818}
819
820static inline bool iwl_mvm_is_regular_scan(struct iwl_mvm_scan_params *params)
821{
822 return params->n_scan_plans == 1 &&
823 params->scan_plans[0].iterations == 1;
824}
825
826static int iwl_mvm_scan_lmac_flags(struct iwl_mvm *mvm,
827 struct iwl_mvm_scan_params *params,
828 struct ieee80211_vif *vif)
829{
830 int flags = 0;
831
832 if (params->n_ssids == 0)
833 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASSIVE;
834
835 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0)
836 flags |= IWL_MVM_LMAC_SCAN_FLAG_PRE_CONNECTION;
837
838 if (params->type == IWL_SCAN_TYPE_FRAGMENTED)
839 flags |= IWL_MVM_LMAC_SCAN_FLAG_FRAGMENTED;
840
841 if (iwl_mvm_rrm_scan_needed(mvm) &&
842 fw_has_capa(&mvm->fw->ucode_capa,
843 IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT))
844 flags |= IWL_MVM_LMAC_SCAN_FLAGS_RRM_ENABLED;
845
846 if (params->pass_all)
847 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASS_ALL;
848 else
849 flags |= IWL_MVM_LMAC_SCAN_FLAG_MATCH;
850
851#ifdef CONFIG_IWLWIFI_DEBUGFS
852 if (mvm->scan_iter_notif_enabled)
853 flags |= IWL_MVM_LMAC_SCAN_FLAG_ITER_COMPLETE;
854#endif
855
856 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED)
857 flags |= IWL_MVM_LMAC_SCAN_FLAG_ITER_COMPLETE;
858
859 if (iwl_mvm_is_regular_scan(params) &&
860 vif->type != NL80211_IFTYPE_P2P_DEVICE &&
861 params->type != IWL_SCAN_TYPE_FRAGMENTED)
862 flags |= IWL_MVM_LMAC_SCAN_FLAG_EXTENDED_DWELL;
863
864 return flags;
865}
866
867static int iwl_mvm_scan_lmac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
868 struct iwl_mvm_scan_params *params)
869{
870 struct iwl_scan_req_lmac *cmd = mvm->scan_cmd;
871 struct iwl_scan_probe_req *preq =
872 (void *)(cmd->data + sizeof(struct iwl_scan_channel_cfg_lmac) *
873 mvm->fw->ucode_capa.n_scan_channels);
874 u32 ssid_bitmap = 0;
875 int i;
876
877 lockdep_assert_held(&mvm->mutex);
878
879 memset(cmd, 0, ksize(cmd));
880
881 if (WARN_ON(params->n_scan_plans > IWL_MAX_SCHED_SCAN_PLANS))
882 return -EINVAL;
883
884 iwl_mvm_scan_lmac_dwell(mvm, cmd, params);
885
886 cmd->rx_chain_select = iwl_mvm_scan_rx_chain(mvm);
887 cmd->iter_num = cpu_to_le32(1);
888 cmd->n_channels = (u8)params->n_channels;
889
890 cmd->delay = cpu_to_le32(params->delay);
891
892 cmd->scan_flags = cpu_to_le32(iwl_mvm_scan_lmac_flags(mvm, params,
893 vif));
894
895 cmd->flags = iwl_mvm_scan_rxon_flags(params->channels[0]->band);
896 cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP |
897 MAC_FILTER_IN_BEACON);
898 iwl_mvm_scan_fill_tx_cmd(mvm, cmd->tx_cmd, params->no_cck);
899 iwl_scan_build_ssids(params, cmd->direct_scan, &ssid_bitmap);
900
901 /* this API uses bits 1-20 instead of 0-19 */
902 ssid_bitmap <<= 1;
903
904 for (i = 0; i < params->n_scan_plans; i++) {
905 struct cfg80211_sched_scan_plan *scan_plan =
906 ¶ms->scan_plans[i];
907
908 cmd->schedule[i].delay =
909 cpu_to_le16(scan_plan->interval);
910 cmd->schedule[i].iterations = scan_plan->iterations;
911 cmd->schedule[i].full_scan_mul = 1;
912 }
913
914 /*
915 * If the number of iterations of the last scan plan is set to
916 * zero, it should run infinitely. However, this is not always the case.
917 * For example, when regular scan is requested the driver sets one scan
918 * plan with one iteration.
919 */
920 if (!cmd->schedule[i - 1].iterations)
921 cmd->schedule[i - 1].iterations = 0xff;
922
923 if (iwl_mvm_scan_use_ebs(mvm, vif)) {
924 cmd->channel_opt[0].flags =
925 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
926 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
927 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
928 cmd->channel_opt[0].non_ebs_ratio =
929 cpu_to_le16(IWL_DENSE_EBS_SCAN_RATIO);
930 cmd->channel_opt[1].flags =
931 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
932 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
933 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
934 cmd->channel_opt[1].non_ebs_ratio =
935 cpu_to_le16(IWL_SPARSE_EBS_SCAN_RATIO);
936 }
937
938 iwl_mvm_lmac_scan_cfg_channels(mvm, params->channels,
939 params->n_channels, ssid_bitmap, cmd);
940
941 *preq = params->preq;
942
943 return 0;
944}
945
946static int rate_to_scan_rate_flag(unsigned int rate)
947{
948 static const int rate_to_scan_rate[IWL_RATE_COUNT] = {
949 [IWL_RATE_1M_INDEX] = SCAN_CONFIG_RATE_1M,
950 [IWL_RATE_2M_INDEX] = SCAN_CONFIG_RATE_2M,
951 [IWL_RATE_5M_INDEX] = SCAN_CONFIG_RATE_5M,
952 [IWL_RATE_11M_INDEX] = SCAN_CONFIG_RATE_11M,
953 [IWL_RATE_6M_INDEX] = SCAN_CONFIG_RATE_6M,
954 [IWL_RATE_9M_INDEX] = SCAN_CONFIG_RATE_9M,
955 [IWL_RATE_12M_INDEX] = SCAN_CONFIG_RATE_12M,
956 [IWL_RATE_18M_INDEX] = SCAN_CONFIG_RATE_18M,
957 [IWL_RATE_24M_INDEX] = SCAN_CONFIG_RATE_24M,
958 [IWL_RATE_36M_INDEX] = SCAN_CONFIG_RATE_36M,
959 [IWL_RATE_48M_INDEX] = SCAN_CONFIG_RATE_48M,
960 [IWL_RATE_54M_INDEX] = SCAN_CONFIG_RATE_54M,
961 };
962
963 return rate_to_scan_rate[rate];
964}
965
966static __le32 iwl_mvm_scan_config_rates(struct iwl_mvm *mvm)
967{
968 struct ieee80211_supported_band *band;
969 unsigned int rates = 0;
970 int i;
971
972 band = &mvm->nvm_data->bands[NL80211_BAND_2GHZ];
973 for (i = 0; i < band->n_bitrates; i++)
974 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value);
975 band = &mvm->nvm_data->bands[NL80211_BAND_5GHZ];
976 for (i = 0; i < band->n_bitrates; i++)
977 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value);
978
979 /* Set both basic rates and supported rates */
980 rates |= SCAN_CONFIG_SUPPORTED_RATE(rates);
981
982 return cpu_to_le32(rates);
983}
984
985static void iwl_mvm_fill_scan_dwell(struct iwl_mvm *mvm,
986 struct iwl_scan_dwell *dwell)
987{
988 dwell->active = IWL_SCAN_DWELL_ACTIVE;
989 dwell->passive = IWL_SCAN_DWELL_PASSIVE;
990 dwell->fragmented = IWL_SCAN_DWELL_FRAGMENTED;
991 dwell->extended = IWL_SCAN_DWELL_EXTENDED;
992}
993
994static void iwl_mvm_fill_channels(struct iwl_mvm *mvm, u8 *channels)
995{
996 struct ieee80211_supported_band *band;
997 int i, j = 0;
998
999 band = &mvm->nvm_data->bands[NL80211_BAND_2GHZ];
1000 for (i = 0; i < band->n_channels; i++, j++)
1001 channels[j] = band->channels[i].hw_value;
1002 band = &mvm->nvm_data->bands[NL80211_BAND_5GHZ];
1003 for (i = 0; i < band->n_channels; i++, j++)
1004 channels[j] = band->channels[i].hw_value;
1005}
1006
1007static void iwl_mvm_fill_scan_config_v1(struct iwl_mvm *mvm, void *config,
1008 u32 flags, u8 channel_flags)
1009{
1010 enum iwl_mvm_scan_type type = iwl_mvm_get_scan_type(mvm, false);
1011 struct iwl_scan_config_v1 *cfg = config;
1012
1013 cfg->flags = cpu_to_le32(flags);
1014 cfg->tx_chains = cpu_to_le32(iwl_mvm_get_valid_tx_ant(mvm));
1015 cfg->rx_chains = cpu_to_le32(iwl_mvm_scan_rx_ant(mvm));
1016 cfg->legacy_rates = iwl_mvm_scan_config_rates(mvm);
1017 cfg->out_of_channel_time = cpu_to_le32(scan_timing[type].max_out_time);
1018 cfg->suspend_time = cpu_to_le32(scan_timing[type].suspend_time);
1019
1020 iwl_mvm_fill_scan_dwell(mvm, &cfg->dwell);
1021
1022 memcpy(&cfg->mac_addr, &mvm->addresses[0].addr, ETH_ALEN);
1023
1024 cfg->bcast_sta_id = mvm->aux_sta.sta_id;
1025 cfg->channel_flags = channel_flags;
1026
1027 iwl_mvm_fill_channels(mvm, cfg->channel_array);
1028}
1029
1030static void iwl_mvm_fill_scan_config(struct iwl_mvm *mvm, void *config,
1031 u32 flags, u8 channel_flags)
1032{
1033 enum iwl_mvm_scan_type type = iwl_mvm_get_scan_type(mvm, false);
1034 struct iwl_scan_config *cfg = config;
1035
1036 cfg->flags = cpu_to_le32(flags);
1037 cfg->tx_chains = cpu_to_le32(iwl_mvm_get_valid_tx_ant(mvm));
1038 cfg->rx_chains = cpu_to_le32(iwl_mvm_scan_rx_ant(mvm));
1039 cfg->legacy_rates = iwl_mvm_scan_config_rates(mvm);
1040 cfg->out_of_channel_time[0] =
1041 cpu_to_le32(scan_timing[type].max_out_time);
1042 cfg->suspend_time[0] = cpu_to_le32(scan_timing[type].suspend_time);
1043
1044 if (iwl_mvm_is_cdb_supported(mvm)) {
1045 cfg->suspend_time[1] =
1046 cpu_to_le32(scan_timing[type].suspend_time);
1047 cfg->out_of_channel_time[1] =
1048 cpu_to_le32(scan_timing[type].max_out_time);
1049 }
1050
1051 iwl_mvm_fill_scan_dwell(mvm, &cfg->dwell);
1052
1053 memcpy(&cfg->mac_addr, &mvm->addresses[0].addr, ETH_ALEN);
1054
1055 cfg->bcast_sta_id = mvm->aux_sta.sta_id;
1056 cfg->channel_flags = channel_flags;
1057
1058 iwl_mvm_fill_channels(mvm, cfg->channel_array);
1059}
1060
1061int iwl_mvm_config_scan(struct iwl_mvm *mvm)
1062{
1063 void *cfg;
1064 int ret, cmd_size;
1065 struct iwl_host_cmd cmd = {
1066 .id = iwl_cmd_id(SCAN_CFG_CMD, IWL_ALWAYS_LONG_GROUP, 0),
1067 };
1068 enum iwl_mvm_scan_type type = iwl_mvm_get_scan_type(mvm, false);
1069 int num_channels =
1070 mvm->nvm_data->bands[NL80211_BAND_2GHZ].n_channels +
1071 mvm->nvm_data->bands[NL80211_BAND_5GHZ].n_channels;
1072 u32 flags;
1073 u8 channel_flags;
1074
1075 if (WARN_ON(num_channels > mvm->fw->ucode_capa.n_scan_channels))
1076 return -ENOBUFS;
1077
1078 if (type == mvm->scan_type)
1079 return 0;
1080
1081 if (iwl_mvm_has_new_tx_api(mvm))
1082 cmd_size = sizeof(struct iwl_scan_config);
1083 else
1084 cmd_size = sizeof(struct iwl_scan_config_v1);
1085 cmd_size += mvm->fw->ucode_capa.n_scan_channels;
1086
1087 cfg = kzalloc(cmd_size, GFP_KERNEL);
1088 if (!cfg)
1089 return -ENOMEM;
1090
1091 flags = SCAN_CONFIG_FLAG_ACTIVATE |
1092 SCAN_CONFIG_FLAG_ALLOW_CHUB_REQS |
1093 SCAN_CONFIG_FLAG_SET_TX_CHAINS |
1094 SCAN_CONFIG_FLAG_SET_RX_CHAINS |
1095 SCAN_CONFIG_FLAG_SET_AUX_STA_ID |
1096 SCAN_CONFIG_FLAG_SET_ALL_TIMES |
1097 SCAN_CONFIG_FLAG_SET_LEGACY_RATES |
1098 SCAN_CONFIG_FLAG_SET_MAC_ADDR |
1099 SCAN_CONFIG_FLAG_SET_CHANNEL_FLAGS |
1100 SCAN_CONFIG_N_CHANNELS(num_channels) |
1101 (type == IWL_SCAN_TYPE_FRAGMENTED ?
1102 SCAN_CONFIG_FLAG_SET_FRAGMENTED :
1103 SCAN_CONFIG_FLAG_CLEAR_FRAGMENTED);
1104
1105 channel_flags = IWL_CHANNEL_FLAG_EBS |
1106 IWL_CHANNEL_FLAG_ACCURATE_EBS |
1107 IWL_CHANNEL_FLAG_EBS_ADD |
1108 IWL_CHANNEL_FLAG_PRE_SCAN_PASSIVE2ACTIVE;
1109
1110 if (iwl_mvm_has_new_tx_api(mvm)) {
1111 flags |= (type == IWL_SCAN_TYPE_FRAGMENTED) ?
1112 SCAN_CONFIG_FLAG_SET_LMAC2_FRAGMENTED :
1113 SCAN_CONFIG_FLAG_CLEAR_LMAC2_FRAGMENTED;
1114 iwl_mvm_fill_scan_config(mvm, cfg, flags, channel_flags);
1115 } else {
1116 iwl_mvm_fill_scan_config_v1(mvm, cfg, flags, channel_flags);
1117 }
1118
1119 cmd.data[0] = cfg;
1120 cmd.len[0] = cmd_size;
1121 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
1122
1123 IWL_DEBUG_SCAN(mvm, "Sending UMAC scan config\n");
1124
1125 ret = iwl_mvm_send_cmd(mvm, &cmd);
1126 if (!ret)
1127 mvm->scan_type = type;
1128
1129 kfree(cfg);
1130 return ret;
1131}
1132
1133static int iwl_mvm_scan_uid_by_status(struct iwl_mvm *mvm, int status)
1134{
1135 int i;
1136
1137 for (i = 0; i < mvm->max_scans; i++)
1138 if (mvm->scan_uid_status[i] == status)
1139 return i;
1140
1141 return -ENOENT;
1142}
1143
1144static void iwl_mvm_scan_umac_dwell(struct iwl_mvm *mvm,
1145 struct iwl_scan_req_umac *cmd,
1146 struct iwl_mvm_scan_params *params)
1147{
1148 struct iwl_mvm_scan_timing_params *timing, *hb_timing;
1149 u8 active_dwell, passive_dwell;
1150
1151 timing = &scan_timing[params->type];
1152 active_dwell = params->measurement_dwell ?
1153 params->measurement_dwell : IWL_SCAN_DWELL_ACTIVE;
1154 passive_dwell = params->measurement_dwell ?
1155 params->measurement_dwell : IWL_SCAN_DWELL_PASSIVE;
1156
1157 if (iwl_mvm_is_adaptive_dwell_supported(mvm)) {
1158 cmd->v7.adwell_default_n_aps_social =
1159 IWL_SCAN_ADWELL_DEFAULT_N_APS_SOCIAL;
1160 cmd->v7.adwell_default_n_aps =
1161 IWL_SCAN_ADWELL_DEFAULT_N_APS;
1162
1163 /* if custom max budget was configured with debugfs */
1164 if (IWL_MVM_ADWELL_MAX_BUDGET)
1165 cmd->v7.adwell_max_budget =
1166 cpu_to_le16(IWL_MVM_ADWELL_MAX_BUDGET);
1167 else if (params->ssids && params->ssids[0].ssid_len)
1168 cmd->v7.adwell_max_budget =
1169 cpu_to_le16(IWL_SCAN_ADWELL_MAX_BUDGET_DIRECTED_SCAN);
1170 else
1171 cmd->v7.adwell_max_budget =
1172 cpu_to_le16(IWL_SCAN_ADWELL_MAX_BUDGET_FULL_SCAN);
1173
1174 cmd->v7.scan_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
1175 cmd->v7.max_out_time[SCAN_LB_LMAC_IDX] =
1176 cpu_to_le32(timing->max_out_time);
1177 cmd->v7.suspend_time[SCAN_LB_LMAC_IDX] =
1178 cpu_to_le32(timing->suspend_time);
1179
1180 if (iwl_mvm_is_cdb_supported(mvm)) {
1181 hb_timing = &scan_timing[params->type];
1182
1183 cmd->v7.max_out_time[SCAN_HB_LMAC_IDX] =
1184 cpu_to_le32(hb_timing->max_out_time);
1185 cmd->v7.suspend_time[SCAN_HB_LMAC_IDX] =
1186 cpu_to_le32(hb_timing->suspend_time);
1187 }
1188
1189 if (!iwl_mvm_is_adaptive_dwell_v2_supported(mvm)) {
1190 cmd->v7.active_dwell = active_dwell;
1191 cmd->v7.passive_dwell = passive_dwell;
1192 cmd->v7.fragmented_dwell = IWL_SCAN_DWELL_FRAGMENTED;
1193 } else {
1194 cmd->v8.active_dwell[SCAN_LB_LMAC_IDX] = active_dwell;
1195 cmd->v8.passive_dwell[SCAN_LB_LMAC_IDX] = passive_dwell;
1196 if (iwl_mvm_is_cdb_supported(mvm)) {
1197 cmd->v8.active_dwell[SCAN_HB_LMAC_IDX] =
1198 active_dwell;
1199 cmd->v8.passive_dwell[SCAN_HB_LMAC_IDX] =
1200 passive_dwell;
1201 }
1202 }
1203 } else {
1204 cmd->v1.extended_dwell = params->measurement_dwell ?
1205 params->measurement_dwell : IWL_SCAN_DWELL_EXTENDED;
1206 cmd->v1.active_dwell = active_dwell;
1207 cmd->v1.passive_dwell = passive_dwell;
1208 cmd->v1.fragmented_dwell = IWL_SCAN_DWELL_FRAGMENTED;
1209
1210 if (iwl_mvm_is_cdb_supported(mvm)) {
1211 hb_timing = &scan_timing[params->type];
1212
1213 cmd->v6.max_out_time[SCAN_HB_LMAC_IDX] =
1214 cpu_to_le32(hb_timing->max_out_time);
1215 cmd->v6.suspend_time[SCAN_HB_LMAC_IDX] =
1216 cpu_to_le32(hb_timing->suspend_time);
1217 }
1218
1219 if (iwl_mvm_has_new_tx_api(mvm)) {
1220 cmd->v6.scan_priority =
1221 cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
1222 cmd->v6.max_out_time[SCAN_LB_LMAC_IDX] =
1223 cpu_to_le32(timing->max_out_time);
1224 cmd->v6.suspend_time[SCAN_LB_LMAC_IDX] =
1225 cpu_to_le32(timing->suspend_time);
1226 } else {
1227 cmd->v1.scan_priority =
1228 cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
1229 cmd->v1.max_out_time =
1230 cpu_to_le32(timing->max_out_time);
1231 cmd->v1.suspend_time =
1232 cpu_to_le32(timing->suspend_time);
1233 }
1234 }
1235}
1236
1237static void
1238iwl_mvm_umac_scan_cfg_channels(struct iwl_mvm *mvm,
1239 struct ieee80211_channel **channels,
1240 int n_channels, u32 ssid_bitmap,
1241 struct iwl_scan_channel_cfg_umac *channel_cfg)
1242{
1243 int i;
1244
1245 for (i = 0; i < n_channels; i++) {
1246 channel_cfg[i].flags = cpu_to_le32(ssid_bitmap);
1247 channel_cfg[i].channel_num = channels[i]->hw_value;
1248 channel_cfg[i].iter_count = 1;
1249 channel_cfg[i].iter_interval = 0;
1250 }
1251}
1252
1253static u16 iwl_mvm_scan_umac_flags(struct iwl_mvm *mvm,
1254 struct iwl_mvm_scan_params *params,
1255 struct ieee80211_vif *vif)
1256{
1257 u16 flags = 0;
1258
1259 if (params->n_ssids == 0)
1260 flags = IWL_UMAC_SCAN_GEN_FLAGS_PASSIVE;
1261
1262 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0)
1263 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PRE_CONNECT;
1264
1265 if (params->type == IWL_SCAN_TYPE_FRAGMENTED) {
1266 flags |= IWL_UMAC_SCAN_GEN_FLAGS_FRAGMENTED;
1267 if (iwl_mvm_is_cdb_supported(mvm))
1268 flags |= IWL_UMAC_SCAN_GEN_FLAGS_LMAC2_FRAGMENTED;
1269 }
1270
1271 if (iwl_mvm_rrm_scan_needed(mvm) &&
1272 fw_has_capa(&mvm->fw->ucode_capa,
1273 IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT))
1274 flags |= IWL_UMAC_SCAN_GEN_FLAGS_RRM_ENABLED;
1275
1276 if (params->pass_all)
1277 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PASS_ALL;
1278 else
1279 flags |= IWL_UMAC_SCAN_GEN_FLAGS_MATCH;
1280
1281 if (!iwl_mvm_is_regular_scan(params))
1282 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PERIODIC;
1283
1284 if (params->measurement_dwell)
1285 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE;
1286
1287#ifdef CONFIG_IWLWIFI_DEBUGFS
1288 if (mvm->scan_iter_notif_enabled)
1289 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE;
1290#endif
1291
1292 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED)
1293 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE;
1294
1295 if (iwl_mvm_is_adaptive_dwell_supported(mvm) && IWL_MVM_ADWELL_ENABLE &&
1296 vif->type != NL80211_IFTYPE_P2P_DEVICE)
1297 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ADAPTIVE_DWELL;
1298
1299 /*
1300 * Extended dwell is relevant only for low band to start with, as it is
1301 * being used for social channles only (1, 6, 11), so we can check
1302 * only scan type on low band also for CDB.
1303 */
1304 if (iwl_mvm_is_regular_scan(params) &&
1305 vif->type != NL80211_IFTYPE_P2P_DEVICE &&
1306 params->type != IWL_SCAN_TYPE_FRAGMENTED &&
1307 !iwl_mvm_is_adaptive_dwell_supported(mvm) &&
1308 !iwl_mvm_is_oce_supported(mvm))
1309 flags |= IWL_UMAC_SCAN_GEN_FLAGS_EXTENDED_DWELL;
1310
1311 if (iwl_mvm_is_oce_supported(mvm)) {
1312 if ((params->flags &
1313 NL80211_SCAN_FLAG_OCE_PROBE_REQ_HIGH_TX_RATE))
1314 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PROB_REQ_HIGH_TX_RATE;
1315 /* Since IWL_UMAC_SCAN_GEN_FLAGS_EXTENDED_DWELL and
1316 * NL80211_SCAN_FLAG_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION shares
1317 * the same bit, we need to make sure that we use this bit here
1318 * only when IWL_UMAC_SCAN_GEN_FLAGS_EXTENDED_DWELL cannot be
1319 * used. */
1320 if ((params->flags &
1321 NL80211_SCAN_FLAG_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION) &&
1322 !WARN_ON_ONCE(!iwl_mvm_is_adaptive_dwell_supported(mvm)))
1323 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PROB_REQ_DEFER_SUPP;
1324 if ((params->flags & NL80211_SCAN_FLAG_FILS_MAX_CHANNEL_TIME))
1325 flags |= IWL_UMAC_SCAN_GEN_FLAGS_MAX_CHNL_TIME;
1326 }
1327
1328 return flags;
1329}
1330
1331static int iwl_mvm_scan_umac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1332 struct iwl_mvm_scan_params *params,
1333 int type)
1334{
1335 struct iwl_scan_req_umac *cmd = mvm->scan_cmd;
1336 struct iwl_scan_umac_chan_param *chan_param;
1337 void *cmd_data = iwl_mvm_get_scan_req_umac_data(mvm);
1338 struct iwl_scan_req_umac_tail *sec_part = cmd_data +
1339 sizeof(struct iwl_scan_channel_cfg_umac) *
1340 mvm->fw->ucode_capa.n_scan_channels;
1341 int uid, i;
1342 u32 ssid_bitmap = 0;
1343 u8 channel_flags = 0;
1344 u16 gen_flags;
1345 struct iwl_mvm_vif *scan_vif = iwl_mvm_vif_from_mac80211(vif);
1346
1347 chan_param = iwl_mvm_get_scan_req_umac_channel(mvm);
1348
1349 lockdep_assert_held(&mvm->mutex);
1350
1351 if (WARN_ON(params->n_scan_plans > IWL_MAX_SCHED_SCAN_PLANS))
1352 return -EINVAL;
1353
1354 uid = iwl_mvm_scan_uid_by_status(mvm, 0);
1355 if (uid < 0)
1356 return uid;
1357
1358 memset(cmd, 0, ksize(cmd));
1359
1360 iwl_mvm_scan_umac_dwell(mvm, cmd, params);
1361
1362 mvm->scan_uid_status[uid] = type;
1363
1364 cmd->uid = cpu_to_le32(uid);
1365 gen_flags = iwl_mvm_scan_umac_flags(mvm, params, vif);
1366 cmd->general_flags = cpu_to_le16(gen_flags);
1367 if (iwl_mvm_is_adaptive_dwell_v2_supported(mvm)) {
1368 if (gen_flags & IWL_UMAC_SCAN_GEN_FLAGS_FRAGMENTED)
1369 cmd->v8.num_of_fragments[SCAN_LB_LMAC_IDX] =
1370 IWL_SCAN_NUM_OF_FRAGS;
1371 if (gen_flags & IWL_UMAC_SCAN_GEN_FLAGS_LMAC2_FRAGMENTED)
1372 cmd->v8.num_of_fragments[SCAN_HB_LMAC_IDX] =
1373 IWL_SCAN_NUM_OF_FRAGS;
1374 }
1375
1376 cmd->scan_start_mac_id = scan_vif->id;
1377
1378 if (type == IWL_MVM_SCAN_SCHED || type == IWL_MVM_SCAN_NETDETECT)
1379 cmd->flags = cpu_to_le32(IWL_UMAC_SCAN_FLAG_PREEMPTIVE);
1380
1381 if (iwl_mvm_scan_use_ebs(mvm, vif))
1382 channel_flags = IWL_SCAN_CHANNEL_FLAG_EBS |
1383 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
1384 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD;
1385
1386 chan_param->flags = channel_flags;
1387 chan_param->count = params->n_channels;
1388
1389 iwl_scan_build_ssids(params, sec_part->direct_scan, &ssid_bitmap);
1390
1391 iwl_mvm_umac_scan_cfg_channels(mvm, params->channels,
1392 params->n_channels, ssid_bitmap,
1393 cmd_data);
1394
1395 for (i = 0; i < params->n_scan_plans; i++) {
1396 struct cfg80211_sched_scan_plan *scan_plan =
1397 ¶ms->scan_plans[i];
1398
1399 sec_part->schedule[i].iter_count = scan_plan->iterations;
1400 sec_part->schedule[i].interval =
1401 cpu_to_le16(scan_plan->interval);
1402 }
1403
1404 /*
1405 * If the number of iterations of the last scan plan is set to
1406 * zero, it should run infinitely. However, this is not always the case.
1407 * For example, when regular scan is requested the driver sets one scan
1408 * plan with one iteration.
1409 */
1410 if (!sec_part->schedule[i - 1].iter_count)
1411 sec_part->schedule[i - 1].iter_count = 0xff;
1412
1413 sec_part->delay = cpu_to_le16(params->delay);
1414 sec_part->preq = params->preq;
1415
1416 return 0;
1417}
1418
1419static int iwl_mvm_num_scans(struct iwl_mvm *mvm)
1420{
1421 return hweight32(mvm->scan_status & IWL_MVM_SCAN_MASK);
1422}
1423
1424static int iwl_mvm_check_running_scans(struct iwl_mvm *mvm, int type)
1425{
1426 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
1427 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
1428
1429 /* This looks a bit arbitrary, but the idea is that if we run
1430 * out of possible simultaneous scans and the userspace is
1431 * trying to run a scan type that is already running, we
1432 * return -EBUSY. But if the userspace wants to start a
1433 * different type of scan, we stop the opposite type to make
1434 * space for the new request. The reason is backwards
1435 * compatibility with old wpa_supplicant that wouldn't stop a
1436 * scheduled scan before starting a normal scan.
1437 */
1438
1439 if (iwl_mvm_num_scans(mvm) < mvm->max_scans)
1440 return 0;
1441
1442 /* Use a switch, even though this is a bitmask, so that more
1443 * than one bits set will fall in default and we will warn.
1444 */
1445 switch (type) {
1446 case IWL_MVM_SCAN_REGULAR:
1447 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK)
1448 return -EBUSY;
1449 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, true);
1450 case IWL_MVM_SCAN_SCHED:
1451 if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK)
1452 return -EBUSY;
1453 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true);
1454 case IWL_MVM_SCAN_NETDETECT:
1455 /* For non-unified images, there's no need to stop
1456 * anything for net-detect since the firmware is
1457 * restarted anyway. This way, any sched scans that
1458 * were running will be restarted when we resume.
1459 */
1460 if (!unified_image)
1461 return 0;
1462
1463 /* If this is a unified image and we ran out of scans,
1464 * we need to stop something. Prefer stopping regular
1465 * scans, because the results are useless at this
1466 * point, and we should be able to keep running
1467 * another scheduled scan while suspended.
1468 */
1469 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK)
1470 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR,
1471 true);
1472 if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK)
1473 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED,
1474 true);
1475
1476 /* fall through, something is wrong if no scan was
1477 * running but we ran out of scans.
1478 */
1479 default:
1480 WARN_ON(1);
1481 break;
1482 }
1483
1484 return -EIO;
1485}
1486
1487#define SCAN_TIMEOUT 20000
1488
1489void iwl_mvm_scan_timeout_wk(struct work_struct *work)
1490{
1491 struct delayed_work *delayed_work = to_delayed_work(work);
1492 struct iwl_mvm *mvm = container_of(delayed_work, struct iwl_mvm,
1493 scan_timeout_dwork);
1494
1495 IWL_ERR(mvm, "regular scan timed out\n");
1496
1497 iwl_force_nmi(mvm->trans);
1498}
1499
1500int iwl_mvm_reg_scan_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1501 struct cfg80211_scan_request *req,
1502 struct ieee80211_scan_ies *ies)
1503{
1504 struct iwl_host_cmd hcmd = {
1505 .len = { iwl_mvm_scan_size(mvm), },
1506 .data = { mvm->scan_cmd, },
1507 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
1508 };
1509 struct iwl_mvm_scan_params params = {};
1510 int ret;
1511 struct cfg80211_sched_scan_plan scan_plan = { .iterations = 1 };
1512
1513 lockdep_assert_held(&mvm->mutex);
1514
1515 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) {
1516 IWL_ERR(mvm, "scan while LAR regdomain is not set\n");
1517 return -EBUSY;
1518 }
1519
1520 ret = iwl_mvm_check_running_scans(mvm, IWL_MVM_SCAN_REGULAR);
1521 if (ret)
1522 return ret;
1523
1524 /* we should have failed registration if scan_cmd was NULL */
1525 if (WARN_ON(!mvm->scan_cmd))
1526 return -ENOMEM;
1527
1528 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels))
1529 return -ENOBUFS;
1530
1531 params.n_ssids = req->n_ssids;
1532 params.flags = req->flags;
1533 params.n_channels = req->n_channels;
1534 params.delay = 0;
1535 params.ssids = req->ssids;
1536 params.channels = req->channels;
1537 params.mac_addr = req->mac_addr;
1538 params.mac_addr_mask = req->mac_addr_mask;
1539 params.no_cck = req->no_cck;
1540 params.pass_all = true;
1541 params.n_match_sets = 0;
1542 params.match_sets = NULL;
1543
1544 params.scan_plans = &scan_plan;
1545 params.n_scan_plans = 1;
1546
1547 params.type =
1548 iwl_mvm_get_scan_type(mvm,
1549 vif->type == NL80211_IFTYPE_P2P_DEVICE);
1550
1551 ret = iwl_mvm_get_measurement_dwell(mvm, req, ¶ms);
1552 if (ret < 0)
1553 return ret;
1554
1555 params.measurement_dwell = ret;
1556
1557 iwl_mvm_build_scan_probe(mvm, vif, ies, ¶ms);
1558
1559 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
1560 hcmd.id = iwl_cmd_id(SCAN_REQ_UMAC, IWL_ALWAYS_LONG_GROUP, 0);
1561 ret = iwl_mvm_scan_umac(mvm, vif, ¶ms,
1562 IWL_MVM_SCAN_REGULAR);
1563 } else {
1564 hcmd.id = SCAN_OFFLOAD_REQUEST_CMD;
1565 ret = iwl_mvm_scan_lmac(mvm, vif, ¶ms);
1566 }
1567
1568 if (ret)
1569 return ret;
1570
1571 ret = iwl_mvm_send_cmd(mvm, &hcmd);
1572 if (ret) {
1573 /* If the scan failed, it usually means that the FW was unable
1574 * to allocate the time events. Warn on it, but maybe we
1575 * should try to send the command again with different params.
1576 */
1577 IWL_ERR(mvm, "Scan failed! ret %d\n", ret);
1578 return ret;
1579 }
1580
1581 IWL_DEBUG_SCAN(mvm, "Scan request was sent successfully\n");
1582 mvm->scan_status |= IWL_MVM_SCAN_REGULAR;
1583 mvm->scan_vif = iwl_mvm_vif_from_mac80211(vif);
1584 iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN);
1585
1586 schedule_delayed_work(&mvm->scan_timeout_dwork,
1587 msecs_to_jiffies(SCAN_TIMEOUT));
1588
1589 return 0;
1590}
1591
1592int iwl_mvm_sched_scan_start(struct iwl_mvm *mvm,
1593 struct ieee80211_vif *vif,
1594 struct cfg80211_sched_scan_request *req,
1595 struct ieee80211_scan_ies *ies,
1596 int type)
1597{
1598 struct iwl_host_cmd hcmd = {
1599 .len = { iwl_mvm_scan_size(mvm), },
1600 .data = { mvm->scan_cmd, },
1601 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
1602 };
1603 struct iwl_mvm_scan_params params = {};
1604 int ret;
1605
1606 lockdep_assert_held(&mvm->mutex);
1607
1608 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) {
1609 IWL_ERR(mvm, "sched-scan while LAR regdomain is not set\n");
1610 return -EBUSY;
1611 }
1612
1613 ret = iwl_mvm_check_running_scans(mvm, type);
1614 if (ret)
1615 return ret;
1616
1617 /* we should have failed registration if scan_cmd was NULL */
1618 if (WARN_ON(!mvm->scan_cmd))
1619 return -ENOMEM;
1620
1621 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels))
1622 return -ENOBUFS;
1623
1624 params.n_ssids = req->n_ssids;
1625 params.flags = req->flags;
1626 params.n_channels = req->n_channels;
1627 params.ssids = req->ssids;
1628 params.channels = req->channels;
1629 params.mac_addr = req->mac_addr;
1630 params.mac_addr_mask = req->mac_addr_mask;
1631 params.no_cck = false;
1632 params.pass_all = iwl_mvm_scan_pass_all(mvm, req);
1633 params.n_match_sets = req->n_match_sets;
1634 params.match_sets = req->match_sets;
1635 if (!req->n_scan_plans)
1636 return -EINVAL;
1637
1638 params.n_scan_plans = req->n_scan_plans;
1639 params.scan_plans = req->scan_plans;
1640
1641 params.type =
1642 iwl_mvm_get_scan_type(mvm,
1643 vif->type == NL80211_IFTYPE_P2P_DEVICE);
1644
1645 /* In theory, LMAC scans can handle a 32-bit delay, but since
1646 * waiting for over 18 hours to start the scan is a bit silly
1647 * and to keep it aligned with UMAC scans (which only support
1648 * 16-bit delays), trim it down to 16-bits.
1649 */
1650 if (req->delay > U16_MAX) {
1651 IWL_DEBUG_SCAN(mvm,
1652 "delay value is > 16-bits, set to max possible\n");
1653 params.delay = U16_MAX;
1654 } else {
1655 params.delay = req->delay;
1656 }
1657
1658 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
1659 if (ret)
1660 return ret;
1661
1662 iwl_mvm_build_scan_probe(mvm, vif, ies, ¶ms);
1663
1664 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
1665 hcmd.id = iwl_cmd_id(SCAN_REQ_UMAC, IWL_ALWAYS_LONG_GROUP, 0);
1666 ret = iwl_mvm_scan_umac(mvm, vif, ¶ms, type);
1667 } else {
1668 hcmd.id = SCAN_OFFLOAD_REQUEST_CMD;
1669 ret = iwl_mvm_scan_lmac(mvm, vif, ¶ms);
1670 }
1671
1672 if (ret)
1673 return ret;
1674
1675 ret = iwl_mvm_send_cmd(mvm, &hcmd);
1676 if (!ret) {
1677 IWL_DEBUG_SCAN(mvm,
1678 "Sched scan request was sent successfully\n");
1679 mvm->scan_status |= type;
1680 } else {
1681 /* If the scan failed, it usually means that the FW was unable
1682 * to allocate the time events. Warn on it, but maybe we
1683 * should try to send the command again with different params.
1684 */
1685 IWL_ERR(mvm, "Sched scan failed! ret %d\n", ret);
1686 }
1687
1688 return ret;
1689}
1690
1691void iwl_mvm_rx_umac_scan_complete_notif(struct iwl_mvm *mvm,
1692 struct iwl_rx_cmd_buffer *rxb)
1693{
1694 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1695 struct iwl_umac_scan_complete *notif = (void *)pkt->data;
1696 u32 uid = __le32_to_cpu(notif->uid);
1697 bool aborted = (notif->status == IWL_SCAN_OFFLOAD_ABORTED);
1698
1699 if (WARN_ON(!(mvm->scan_uid_status[uid] & mvm->scan_status)))
1700 return;
1701
1702 /* if the scan is already stopping, we don't need to notify mac80211 */
1703 if (mvm->scan_uid_status[uid] == IWL_MVM_SCAN_REGULAR) {
1704 struct cfg80211_scan_info info = {
1705 .aborted = aborted,
1706 .scan_start_tsf = mvm->scan_start,
1707 };
1708
1709 memcpy(info.tsf_bssid, mvm->scan_vif->bssid, ETH_ALEN);
1710 ieee80211_scan_completed(mvm->hw, &info);
1711 mvm->scan_vif = NULL;
1712 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1713 cancel_delayed_work(&mvm->scan_timeout_dwork);
1714 } else if (mvm->scan_uid_status[uid] == IWL_MVM_SCAN_SCHED) {
1715 ieee80211_sched_scan_stopped(mvm->hw);
1716 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
1717 }
1718
1719 mvm->scan_status &= ~mvm->scan_uid_status[uid];
1720 IWL_DEBUG_SCAN(mvm,
1721 "Scan completed, uid %u type %u, status %s, EBS status %s\n",
1722 uid, mvm->scan_uid_status[uid],
1723 notif->status == IWL_SCAN_OFFLOAD_COMPLETED ?
1724 "completed" : "aborted",
1725 iwl_mvm_ebs_status_str(notif->ebs_status));
1726 IWL_DEBUG_SCAN(mvm,
1727 "Last line %d, Last iteration %d, Time from last iteration %d\n",
1728 notif->last_schedule, notif->last_iter,
1729 __le32_to_cpu(notif->time_from_last_iter));
1730
1731 if (notif->ebs_status != IWL_SCAN_EBS_SUCCESS &&
1732 notif->ebs_status != IWL_SCAN_EBS_INACTIVE)
1733 mvm->last_ebs_successful = false;
1734
1735 mvm->scan_uid_status[uid] = 0;
1736}
1737
1738void iwl_mvm_rx_umac_scan_iter_complete_notif(struct iwl_mvm *mvm,
1739 struct iwl_rx_cmd_buffer *rxb)
1740{
1741 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1742 struct iwl_umac_scan_iter_complete_notif *notif = (void *)pkt->data;
1743
1744 mvm->scan_start = le64_to_cpu(notif->start_tsf);
1745
1746 IWL_DEBUG_SCAN(mvm,
1747 "UMAC Scan iteration complete: status=0x%x scanned_channels=%d\n",
1748 notif->status, notif->scanned_channels);
1749
1750 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_FOUND) {
1751 IWL_DEBUG_SCAN(mvm, "Pass all scheduled scan results found\n");
1752 ieee80211_sched_scan_results(mvm->hw);
1753 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED;
1754 }
1755
1756 IWL_DEBUG_SCAN(mvm,
1757 "UMAC Scan iteration complete: scan started at %llu (TSF)\n",
1758 mvm->scan_start);
1759}
1760
1761static int iwl_mvm_umac_scan_abort(struct iwl_mvm *mvm, int type)
1762{
1763 struct iwl_umac_scan_abort cmd = {};
1764 int uid, ret;
1765
1766 lockdep_assert_held(&mvm->mutex);
1767
1768 /* We should always get a valid index here, because we already
1769 * checked that this type of scan was running in the generic
1770 * code.
1771 */
1772 uid = iwl_mvm_scan_uid_by_status(mvm, type);
1773 if (WARN_ON_ONCE(uid < 0))
1774 return uid;
1775
1776 cmd.uid = cpu_to_le32(uid);
1777
1778 IWL_DEBUG_SCAN(mvm, "Sending scan abort, uid %u\n", uid);
1779
1780 ret = iwl_mvm_send_cmd_pdu(mvm,
1781 iwl_cmd_id(SCAN_ABORT_UMAC,
1782 IWL_ALWAYS_LONG_GROUP, 0),
1783 0, sizeof(cmd), &cmd);
1784 if (!ret)
1785 mvm->scan_uid_status[uid] = type << IWL_MVM_SCAN_STOPPING_SHIFT;
1786
1787 return ret;
1788}
1789
1790static int iwl_mvm_scan_stop_wait(struct iwl_mvm *mvm, int type)
1791{
1792 struct iwl_notification_wait wait_scan_done;
1793 static const u16 scan_done_notif[] = { SCAN_COMPLETE_UMAC,
1794 SCAN_OFFLOAD_COMPLETE, };
1795 int ret;
1796
1797 lockdep_assert_held(&mvm->mutex);
1798
1799 iwl_init_notification_wait(&mvm->notif_wait, &wait_scan_done,
1800 scan_done_notif,
1801 ARRAY_SIZE(scan_done_notif),
1802 NULL, NULL);
1803
1804 IWL_DEBUG_SCAN(mvm, "Preparing to stop scan, type %x\n", type);
1805
1806 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN))
1807 ret = iwl_mvm_umac_scan_abort(mvm, type);
1808 else
1809 ret = iwl_mvm_lmac_scan_abort(mvm);
1810
1811 if (ret) {
1812 IWL_DEBUG_SCAN(mvm, "couldn't stop scan type %d\n", type);
1813 iwl_remove_notification(&mvm->notif_wait, &wait_scan_done);
1814 return ret;
1815 }
1816
1817 ret = iwl_wait_notification(&mvm->notif_wait, &wait_scan_done, 1 * HZ);
1818
1819 return ret;
1820}
1821
1822int iwl_mvm_scan_size(struct iwl_mvm *mvm)
1823{
1824 int base_size = IWL_SCAN_REQ_UMAC_SIZE_V1;
1825
1826 if (iwl_mvm_is_adaptive_dwell_v2_supported(mvm))
1827 base_size = IWL_SCAN_REQ_UMAC_SIZE_V8;
1828 else if (iwl_mvm_is_adaptive_dwell_supported(mvm))
1829 base_size = IWL_SCAN_REQ_UMAC_SIZE_V7;
1830 else if (iwl_mvm_has_new_tx_api(mvm))
1831 base_size = IWL_SCAN_REQ_UMAC_SIZE_V6;
1832
1833 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN))
1834 return base_size +
1835 sizeof(struct iwl_scan_channel_cfg_umac) *
1836 mvm->fw->ucode_capa.n_scan_channels +
1837 sizeof(struct iwl_scan_req_umac_tail);
1838
1839 return sizeof(struct iwl_scan_req_lmac) +
1840 sizeof(struct iwl_scan_channel_cfg_lmac) *
1841 mvm->fw->ucode_capa.n_scan_channels +
1842 sizeof(struct iwl_scan_probe_req);
1843}
1844
1845/*
1846 * This function is used in nic restart flow, to inform mac80211 about scans
1847 * that was aborted by restart flow or by an assert.
1848 */
1849void iwl_mvm_report_scan_aborted(struct iwl_mvm *mvm)
1850{
1851 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
1852 int uid, i;
1853
1854 uid = iwl_mvm_scan_uid_by_status(mvm, IWL_MVM_SCAN_REGULAR);
1855 if (uid >= 0) {
1856 struct cfg80211_scan_info info = {
1857 .aborted = true,
1858 };
1859
1860 ieee80211_scan_completed(mvm->hw, &info);
1861 mvm->scan_uid_status[uid] = 0;
1862 }
1863 uid = iwl_mvm_scan_uid_by_status(mvm, IWL_MVM_SCAN_SCHED);
1864 if (uid >= 0 && !mvm->fw_restart) {
1865 ieee80211_sched_scan_stopped(mvm->hw);
1866 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
1867 mvm->scan_uid_status[uid] = 0;
1868 }
1869
1870 /* We shouldn't have any UIDs still set. Loop over all the
1871 * UIDs to make sure there's nothing left there and warn if
1872 * any is found.
1873 */
1874 for (i = 0; i < mvm->max_scans; i++) {
1875 if (WARN_ONCE(mvm->scan_uid_status[i],
1876 "UMAC scan UID %d status was not cleaned\n",
1877 i))
1878 mvm->scan_uid_status[i] = 0;
1879 }
1880 } else {
1881 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) {
1882 struct cfg80211_scan_info info = {
1883 .aborted = true,
1884 };
1885
1886 ieee80211_scan_completed(mvm->hw, &info);
1887 }
1888
1889 /* Sched scan will be restarted by mac80211 in
1890 * restart_hw, so do not report if FW is about to be
1891 * restarted.
1892 */
1893 if ((mvm->scan_status & IWL_MVM_SCAN_SCHED) &&
1894 !mvm->fw_restart) {
1895 ieee80211_sched_scan_stopped(mvm->hw);
1896 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
1897 }
1898 }
1899}
1900
1901int iwl_mvm_scan_stop(struct iwl_mvm *mvm, int type, bool notify)
1902{
1903 int ret;
1904
1905 if (!(mvm->scan_status & type))
1906 return 0;
1907
1908 if (iwl_mvm_is_radio_killed(mvm)) {
1909 ret = 0;
1910 goto out;
1911 }
1912
1913 ret = iwl_mvm_scan_stop_wait(mvm, type);
1914 if (!ret)
1915 mvm->scan_status |= type << IWL_MVM_SCAN_STOPPING_SHIFT;
1916out:
1917 /* Clear the scan status so the next scan requests will
1918 * succeed and mark the scan as stopping, so that the Rx
1919 * handler doesn't do anything, as the scan was stopped from
1920 * above.
1921 */
1922 mvm->scan_status &= ~type;
1923
1924 if (type == IWL_MVM_SCAN_REGULAR) {
1925 /* Since the rx handler won't do anything now, we have
1926 * to release the scan reference here.
1927 */
1928 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1929 cancel_delayed_work(&mvm->scan_timeout_dwork);
1930 if (notify) {
1931 struct cfg80211_scan_info info = {
1932 .aborted = true,
1933 };
1934
1935 ieee80211_scan_completed(mvm->hw, &info);
1936 }
1937 } else if (notify) {
1938 ieee80211_sched_scan_stopped(mvm->hw);
1939 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
1940 }
1941
1942 return ret;
1943}
1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2/*
3 * Copyright (C) 2012-2014, 2018-2023 Intel Corporation
4 * Copyright (C) 2013-2015 Intel Mobile Communications GmbH
5 * Copyright (C) 2016-2017 Intel Deutschland GmbH
6 */
7#include <linux/etherdevice.h>
8#include <net/mac80211.h>
9#include <linux/crc32.h>
10
11#include "mvm.h"
12#include "fw/api/scan.h"
13#include "iwl-io.h"
14
15#define IWL_DENSE_EBS_SCAN_RATIO 5
16#define IWL_SPARSE_EBS_SCAN_RATIO 1
17
18#define IWL_SCAN_DWELL_ACTIVE 10
19#define IWL_SCAN_DWELL_PASSIVE 110
20#define IWL_SCAN_DWELL_FRAGMENTED 44
21#define IWL_SCAN_DWELL_EXTENDED 90
22#define IWL_SCAN_NUM_OF_FRAGS 3
23
24/* adaptive dwell max budget time [TU] for full scan */
25#define IWL_SCAN_ADWELL_MAX_BUDGET_FULL_SCAN 300
26/* adaptive dwell max budget time [TU] for directed scan */
27#define IWL_SCAN_ADWELL_MAX_BUDGET_DIRECTED_SCAN 100
28/* adaptive dwell default high band APs number */
29#define IWL_SCAN_ADWELL_DEFAULT_HB_N_APS 8
30/* adaptive dwell default low band APs number */
31#define IWL_SCAN_ADWELL_DEFAULT_LB_N_APS 2
32/* adaptive dwell default APs number in social channels (1, 6, 11) */
33#define IWL_SCAN_ADWELL_DEFAULT_N_APS_SOCIAL 10
34/* number of scan channels */
35#define IWL_SCAN_NUM_CHANNELS 112
36/* adaptive dwell number of APs override mask for p2p friendly GO */
37#define IWL_SCAN_ADWELL_N_APS_GO_FRIENDLY_BIT BIT(20)
38/* adaptive dwell number of APs override mask for social channels */
39#define IWL_SCAN_ADWELL_N_APS_SOCIAL_CHS_BIT BIT(21)
40/* adaptive dwell number of APs override for p2p friendly GO channels */
41#define IWL_SCAN_ADWELL_N_APS_GO_FRIENDLY 10
42/* adaptive dwell number of APs override for social channels */
43#define IWL_SCAN_ADWELL_N_APS_SOCIAL_CHS 2
44
45/* minimal number of 2GHz and 5GHz channels in the regular scan request */
46#define IWL_MVM_6GHZ_PASSIVE_SCAN_MIN_CHANS 4
47
48/* Number of iterations on the channel for mei filtered scan */
49#define IWL_MEI_SCAN_NUM_ITER 5U
50
51struct iwl_mvm_scan_timing_params {
52 u32 suspend_time;
53 u32 max_out_time;
54};
55
56static struct iwl_mvm_scan_timing_params scan_timing[] = {
57 [IWL_SCAN_TYPE_UNASSOC] = {
58 .suspend_time = 0,
59 .max_out_time = 0,
60 },
61 [IWL_SCAN_TYPE_WILD] = {
62 .suspend_time = 30,
63 .max_out_time = 120,
64 },
65 [IWL_SCAN_TYPE_MILD] = {
66 .suspend_time = 120,
67 .max_out_time = 120,
68 },
69 [IWL_SCAN_TYPE_FRAGMENTED] = {
70 .suspend_time = 95,
71 .max_out_time = 44,
72 },
73 [IWL_SCAN_TYPE_FAST_BALANCE] = {
74 .suspend_time = 30,
75 .max_out_time = 37,
76 },
77};
78
79struct iwl_mvm_scan_params {
80 /* For CDB this is low band scan type, for non-CDB - type. */
81 enum iwl_mvm_scan_type type;
82 enum iwl_mvm_scan_type hb_type;
83 u32 n_channels;
84 u16 delay;
85 int n_ssids;
86 struct cfg80211_ssid *ssids;
87 struct ieee80211_channel **channels;
88 u32 flags;
89 u8 *mac_addr;
90 u8 *mac_addr_mask;
91 bool no_cck;
92 bool pass_all;
93 int n_match_sets;
94 struct iwl_scan_probe_req preq;
95 struct cfg80211_match_set *match_sets;
96 int n_scan_plans;
97 struct cfg80211_sched_scan_plan *scan_plans;
98 bool iter_notif;
99 struct cfg80211_scan_6ghz_params *scan_6ghz_params;
100 u32 n_6ghz_params;
101 bool scan_6ghz;
102 bool enable_6ghz_passive;
103 bool respect_p2p_go, respect_p2p_go_hb;
104 s8 tsf_report_link_id;
105 u8 bssid[ETH_ALEN] __aligned(2);
106};
107
108static inline void *iwl_mvm_get_scan_req_umac_data(struct iwl_mvm *mvm)
109{
110 struct iwl_scan_req_umac *cmd = mvm->scan_cmd;
111
112 if (iwl_mvm_is_adaptive_dwell_v2_supported(mvm))
113 return (void *)&cmd->v8.data;
114
115 if (iwl_mvm_is_adaptive_dwell_supported(mvm))
116 return (void *)&cmd->v7.data;
117
118 if (iwl_mvm_cdb_scan_api(mvm))
119 return (void *)&cmd->v6.data;
120
121 return (void *)&cmd->v1.data;
122}
123
124static inline struct iwl_scan_umac_chan_param *
125iwl_mvm_get_scan_req_umac_channel(struct iwl_mvm *mvm)
126{
127 struct iwl_scan_req_umac *cmd = mvm->scan_cmd;
128
129 if (iwl_mvm_is_adaptive_dwell_v2_supported(mvm))
130 return &cmd->v8.channel;
131
132 if (iwl_mvm_is_adaptive_dwell_supported(mvm))
133 return &cmd->v7.channel;
134
135 if (iwl_mvm_cdb_scan_api(mvm))
136 return &cmd->v6.channel;
137
138 return &cmd->v1.channel;
139}
140
141static u8 iwl_mvm_scan_rx_ant(struct iwl_mvm *mvm)
142{
143 if (mvm->scan_rx_ant != ANT_NONE)
144 return mvm->scan_rx_ant;
145 return iwl_mvm_get_valid_rx_ant(mvm);
146}
147
148static inline __le16 iwl_mvm_scan_rx_chain(struct iwl_mvm *mvm)
149{
150 u16 rx_chain;
151 u8 rx_ant;
152
153 rx_ant = iwl_mvm_scan_rx_ant(mvm);
154 rx_chain = rx_ant << PHY_RX_CHAIN_VALID_POS;
155 rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_MIMO_SEL_POS;
156 rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_SEL_POS;
157 rx_chain |= 0x1 << PHY_RX_CHAIN_DRIVER_FORCE_POS;
158 return cpu_to_le16(rx_chain);
159}
160
161static inline __le32
162iwl_mvm_scan_rate_n_flags(struct iwl_mvm *mvm, enum nl80211_band band,
163 bool no_cck)
164{
165 u32 tx_ant;
166
167 iwl_mvm_toggle_tx_ant(mvm, &mvm->scan_last_antenna_idx);
168 tx_ant = BIT(mvm->scan_last_antenna_idx) << RATE_MCS_ANT_POS;
169
170 if (band == NL80211_BAND_2GHZ && !no_cck)
171 return cpu_to_le32(IWL_RATE_1M_PLCP | RATE_MCS_CCK_MSK_V1 |
172 tx_ant);
173 else
174 return cpu_to_le32(IWL_RATE_6M_PLCP | tx_ant);
175}
176
177static enum iwl_mvm_traffic_load iwl_mvm_get_traffic_load(struct iwl_mvm *mvm)
178{
179 return mvm->tcm.result.global_load;
180}
181
182static enum iwl_mvm_traffic_load
183iwl_mvm_get_traffic_load_band(struct iwl_mvm *mvm, enum nl80211_band band)
184{
185 return mvm->tcm.result.band_load[band];
186}
187
188struct iwl_mvm_scan_iter_data {
189 u32 global_cnt;
190 struct ieee80211_vif *current_vif;
191 bool is_dcm_with_p2p_go;
192};
193
194static void iwl_mvm_scan_iterator(void *_data, u8 *mac,
195 struct ieee80211_vif *vif)
196{
197 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
198 struct iwl_mvm_scan_iter_data *data = _data;
199 struct iwl_mvm_vif *curr_mvmvif;
200
201 if (vif->type != NL80211_IFTYPE_P2P_DEVICE &&
202 mvmvif->deflink.phy_ctxt &&
203 mvmvif->deflink.phy_ctxt->id < NUM_PHY_CTX)
204 data->global_cnt += 1;
205
206 if (!data->current_vif || vif == data->current_vif)
207 return;
208
209 curr_mvmvif = iwl_mvm_vif_from_mac80211(data->current_vif);
210
211 if (vif->type == NL80211_IFTYPE_AP && vif->p2p &&
212 mvmvif->deflink.phy_ctxt && curr_mvmvif->deflink.phy_ctxt &&
213 mvmvif->deflink.phy_ctxt->id != curr_mvmvif->deflink.phy_ctxt->id)
214 data->is_dcm_with_p2p_go = true;
215}
216
217static enum
218iwl_mvm_scan_type _iwl_mvm_get_scan_type(struct iwl_mvm *mvm,
219 struct ieee80211_vif *vif,
220 enum iwl_mvm_traffic_load load,
221 bool low_latency)
222{
223 struct iwl_mvm_scan_iter_data data = {
224 .current_vif = vif,
225 .is_dcm_with_p2p_go = false,
226 .global_cnt = 0,
227 };
228
229 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
230 IEEE80211_IFACE_ITER_NORMAL,
231 iwl_mvm_scan_iterator,
232 &data);
233
234 if (!data.global_cnt)
235 return IWL_SCAN_TYPE_UNASSOC;
236
237 if (fw_has_api(&mvm->fw->ucode_capa,
238 IWL_UCODE_TLV_API_FRAGMENTED_SCAN)) {
239 if ((load == IWL_MVM_TRAFFIC_HIGH || low_latency) &&
240 (!vif || vif->type != NL80211_IFTYPE_P2P_DEVICE))
241 return IWL_SCAN_TYPE_FRAGMENTED;
242
243 /*
244 * in case of DCM with P2P GO set all scan requests as
245 * fast-balance scan
246 */
247 if (vif && vif->type == NL80211_IFTYPE_STATION &&
248 data.is_dcm_with_p2p_go)
249 return IWL_SCAN_TYPE_FAST_BALANCE;
250 }
251
252 if (load >= IWL_MVM_TRAFFIC_MEDIUM || low_latency)
253 return IWL_SCAN_TYPE_MILD;
254
255 return IWL_SCAN_TYPE_WILD;
256}
257
258static enum
259iwl_mvm_scan_type iwl_mvm_get_scan_type(struct iwl_mvm *mvm,
260 struct ieee80211_vif *vif)
261{
262 enum iwl_mvm_traffic_load load;
263 bool low_latency;
264
265 load = iwl_mvm_get_traffic_load(mvm);
266 low_latency = iwl_mvm_low_latency(mvm);
267
268 return _iwl_mvm_get_scan_type(mvm, vif, load, low_latency);
269}
270
271static enum
272iwl_mvm_scan_type iwl_mvm_get_scan_type_band(struct iwl_mvm *mvm,
273 struct ieee80211_vif *vif,
274 enum nl80211_band band)
275{
276 enum iwl_mvm_traffic_load load;
277 bool low_latency;
278
279 load = iwl_mvm_get_traffic_load_band(mvm, band);
280 low_latency = iwl_mvm_low_latency_band(mvm, band);
281
282 return _iwl_mvm_get_scan_type(mvm, vif, load, low_latency);
283}
284
285static inline bool iwl_mvm_rrm_scan_needed(struct iwl_mvm *mvm)
286{
287 /* require rrm scan whenever the fw supports it */
288 return fw_has_capa(&mvm->fw->ucode_capa,
289 IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT);
290}
291
292static int iwl_mvm_max_scan_ie_fw_cmd_room(struct iwl_mvm *mvm)
293{
294 int max_probe_len;
295
296 max_probe_len = SCAN_OFFLOAD_PROBE_REQ_SIZE;
297
298 /* we create the 802.11 header and SSID element */
299 max_probe_len -= 24 + 2;
300
301 /* DS parameter set element is added on 2.4GHZ band if required */
302 if (iwl_mvm_rrm_scan_needed(mvm))
303 max_probe_len -= 3;
304
305 return max_probe_len;
306}
307
308int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm)
309{
310 int max_ie_len = iwl_mvm_max_scan_ie_fw_cmd_room(mvm);
311
312 /* TODO: [BUG] This function should return the maximum allowed size of
313 * scan IEs, however the LMAC scan api contains both 2GHZ and 5GHZ IEs
314 * in the same command. So the correct implementation of this function
315 * is just iwl_mvm_max_scan_ie_fw_cmd_room() / 2. Currently the scan
316 * command has only 512 bytes and it would leave us with about 240
317 * bytes for scan IEs, which is clearly not enough. So meanwhile
318 * we will report an incorrect value. This may result in a failure to
319 * issue a scan in unified_scan_lmac and unified_sched_scan_lmac
320 * functions with -ENOBUFS, if a large enough probe will be provided.
321 */
322 return max_ie_len;
323}
324
325void iwl_mvm_rx_lmac_scan_iter_complete_notif(struct iwl_mvm *mvm,
326 struct iwl_rx_cmd_buffer *rxb)
327{
328 struct iwl_rx_packet *pkt = rxb_addr(rxb);
329 struct iwl_lmac_scan_complete_notif *notif = (void *)pkt->data;
330
331 IWL_DEBUG_SCAN(mvm,
332 "Scan offload iteration complete: status=0x%x scanned channels=%d\n",
333 notif->status, notif->scanned_channels);
334
335 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_FOUND) {
336 IWL_DEBUG_SCAN(mvm, "Pass all scheduled scan results found\n");
337 ieee80211_sched_scan_results(mvm->hw);
338 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED;
339 }
340}
341
342void iwl_mvm_rx_scan_match_found(struct iwl_mvm *mvm,
343 struct iwl_rx_cmd_buffer *rxb)
344{
345 IWL_DEBUG_SCAN(mvm, "Scheduled scan results\n");
346 ieee80211_sched_scan_results(mvm->hw);
347}
348
349static const char *iwl_mvm_ebs_status_str(enum iwl_scan_ebs_status status)
350{
351 switch (status) {
352 case IWL_SCAN_EBS_SUCCESS:
353 return "successful";
354 case IWL_SCAN_EBS_INACTIVE:
355 return "inactive";
356 case IWL_SCAN_EBS_FAILED:
357 case IWL_SCAN_EBS_CHAN_NOT_FOUND:
358 default:
359 return "failed";
360 }
361}
362
363void iwl_mvm_rx_lmac_scan_complete_notif(struct iwl_mvm *mvm,
364 struct iwl_rx_cmd_buffer *rxb)
365{
366 struct iwl_rx_packet *pkt = rxb_addr(rxb);
367 struct iwl_periodic_scan_complete *scan_notif = (void *)pkt->data;
368 bool aborted = (scan_notif->status == IWL_SCAN_OFFLOAD_ABORTED);
369
370 /* If this happens, the firmware has mistakenly sent an LMAC
371 * notification during UMAC scans -- warn and ignore it.
372 */
373 if (WARN_ON_ONCE(fw_has_capa(&mvm->fw->ucode_capa,
374 IWL_UCODE_TLV_CAPA_UMAC_SCAN)))
375 return;
376
377 /* scan status must be locked for proper checking */
378 lockdep_assert_held(&mvm->mutex);
379
380 /* We first check if we were stopping a scan, in which case we
381 * just clear the stopping flag. Then we check if it was a
382 * firmware initiated stop, in which case we need to inform
383 * mac80211.
384 * Note that we can have a stopping and a running scan
385 * simultaneously, but we can't have two different types of
386 * scans stopping or running at the same time (since LMAC
387 * doesn't support it).
388 */
389
390 if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_SCHED) {
391 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR);
392
393 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n",
394 aborted ? "aborted" : "completed",
395 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
396 IWL_DEBUG_SCAN(mvm,
397 "Last line %d, Last iteration %d, Time after last iteration %d\n",
398 scan_notif->last_schedule_line,
399 scan_notif->last_schedule_iteration,
400 __le32_to_cpu(scan_notif->time_after_last_iter));
401
402 mvm->scan_status &= ~IWL_MVM_SCAN_STOPPING_SCHED;
403 } else if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR) {
404 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s\n",
405 aborted ? "aborted" : "completed",
406 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
407
408 mvm->scan_status &= ~IWL_MVM_SCAN_STOPPING_REGULAR;
409 } else if (mvm->scan_status & IWL_MVM_SCAN_SCHED) {
410 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_REGULAR);
411
412 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n",
413 aborted ? "aborted" : "completed",
414 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
415 IWL_DEBUG_SCAN(mvm,
416 "Last line %d, Last iteration %d, Time after last iteration %d (FW)\n",
417 scan_notif->last_schedule_line,
418 scan_notif->last_schedule_iteration,
419 __le32_to_cpu(scan_notif->time_after_last_iter));
420
421 mvm->scan_status &= ~IWL_MVM_SCAN_SCHED;
422 ieee80211_sched_scan_stopped(mvm->hw);
423 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
424 } else if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) {
425 struct cfg80211_scan_info info = {
426 .aborted = aborted,
427 };
428
429 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s (FW)\n",
430 aborted ? "aborted" : "completed",
431 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
432
433 mvm->scan_status &= ~IWL_MVM_SCAN_REGULAR;
434 ieee80211_scan_completed(mvm->hw, &info);
435 cancel_delayed_work(&mvm->scan_timeout_dwork);
436 iwl_mvm_resume_tcm(mvm);
437 } else {
438 IWL_ERR(mvm,
439 "got scan complete notification but no scan is running\n");
440 }
441
442 mvm->last_ebs_successful =
443 scan_notif->ebs_status == IWL_SCAN_EBS_SUCCESS ||
444 scan_notif->ebs_status == IWL_SCAN_EBS_INACTIVE;
445}
446
447static int iwl_ssid_exist(u8 *ssid, u8 ssid_len, struct iwl_ssid_ie *ssid_list)
448{
449 int i;
450
451 for (i = 0; i < PROBE_OPTION_MAX; i++) {
452 if (!ssid_list[i].len)
453 break;
454 if (ssid_list[i].len == ssid_len &&
455 !memcmp(ssid_list->ssid, ssid, ssid_len))
456 return i;
457 }
458 return -1;
459}
460
461/* We insert the SSIDs in an inverted order, because the FW will
462 * invert it back.
463 */
464static void iwl_scan_build_ssids(struct iwl_mvm_scan_params *params,
465 struct iwl_ssid_ie *ssids,
466 u32 *ssid_bitmap)
467{
468 int i, j;
469 int index;
470 u32 tmp_bitmap = 0;
471
472 /*
473 * copy SSIDs from match list.
474 * iwl_config_sched_scan_profiles() uses the order of these ssids to
475 * config match list.
476 */
477 for (i = 0, j = params->n_match_sets - 1;
478 j >= 0 && i < PROBE_OPTION_MAX;
479 i++, j--) {
480 /* skip empty SSID matchsets */
481 if (!params->match_sets[j].ssid.ssid_len)
482 continue;
483 ssids[i].id = WLAN_EID_SSID;
484 ssids[i].len = params->match_sets[j].ssid.ssid_len;
485 memcpy(ssids[i].ssid, params->match_sets[j].ssid.ssid,
486 ssids[i].len);
487 }
488
489 /* add SSIDs from scan SSID list */
490 for (j = params->n_ssids - 1;
491 j >= 0 && i < PROBE_OPTION_MAX;
492 i++, j--) {
493 index = iwl_ssid_exist(params->ssids[j].ssid,
494 params->ssids[j].ssid_len,
495 ssids);
496 if (index < 0) {
497 ssids[i].id = WLAN_EID_SSID;
498 ssids[i].len = params->ssids[j].ssid_len;
499 memcpy(ssids[i].ssid, params->ssids[j].ssid,
500 ssids[i].len);
501 tmp_bitmap |= BIT(i);
502 } else {
503 tmp_bitmap |= BIT(index);
504 }
505 }
506 if (ssid_bitmap)
507 *ssid_bitmap = tmp_bitmap;
508}
509
510static int
511iwl_mvm_config_sched_scan_profiles(struct iwl_mvm *mvm,
512 struct cfg80211_sched_scan_request *req)
513{
514 struct iwl_scan_offload_profile *profile;
515 struct iwl_scan_offload_profile_cfg_v1 *profile_cfg_v1;
516 struct iwl_scan_offload_blocklist *blocklist;
517 struct iwl_scan_offload_profile_cfg_data *data;
518 int max_profiles = iwl_umac_scan_get_max_profiles(mvm->fw);
519 int profile_cfg_size = sizeof(*data) +
520 sizeof(*profile) * max_profiles;
521 struct iwl_host_cmd cmd = {
522 .id = SCAN_OFFLOAD_UPDATE_PROFILES_CMD,
523 .len[1] = profile_cfg_size,
524 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
525 .dataflags[1] = IWL_HCMD_DFL_NOCOPY,
526 };
527 int blocklist_len;
528 int i;
529 int ret;
530
531 if (WARN_ON(req->n_match_sets > max_profiles))
532 return -EIO;
533
534 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_SHORT_BL)
535 blocklist_len = IWL_SCAN_SHORT_BLACKLIST_LEN;
536 else
537 blocklist_len = IWL_SCAN_MAX_BLACKLIST_LEN;
538
539 blocklist = kcalloc(blocklist_len, sizeof(*blocklist), GFP_KERNEL);
540 if (!blocklist)
541 return -ENOMEM;
542
543 profile_cfg_v1 = kzalloc(profile_cfg_size, GFP_KERNEL);
544 if (!profile_cfg_v1) {
545 ret = -ENOMEM;
546 goto free_blocklist;
547 }
548
549 cmd.data[0] = blocklist;
550 cmd.len[0] = sizeof(*blocklist) * blocklist_len;
551 cmd.data[1] = profile_cfg_v1;
552
553 /* if max_profile is MAX_PROFILES_V2, we have the new API */
554 if (max_profiles == IWL_SCAN_MAX_PROFILES_V2) {
555 struct iwl_scan_offload_profile_cfg *profile_cfg =
556 (struct iwl_scan_offload_profile_cfg *)profile_cfg_v1;
557
558 data = &profile_cfg->data;
559 } else {
560 data = &profile_cfg_v1->data;
561 }
562
563 /* No blocklist configuration */
564 data->num_profiles = req->n_match_sets;
565 data->active_clients = SCAN_CLIENT_SCHED_SCAN;
566 data->pass_match = SCAN_CLIENT_SCHED_SCAN;
567 data->match_notify = SCAN_CLIENT_SCHED_SCAN;
568
569 if (!req->n_match_sets || !req->match_sets[0].ssid.ssid_len)
570 data->any_beacon_notify = SCAN_CLIENT_SCHED_SCAN;
571
572 for (i = 0; i < req->n_match_sets; i++) {
573 profile = &profile_cfg_v1->profiles[i];
574 profile->ssid_index = i;
575 /* Support any cipher and auth algorithm */
576 profile->unicast_cipher = 0xff;
577 profile->auth_alg = IWL_AUTH_ALGO_UNSUPPORTED |
578 IWL_AUTH_ALGO_NONE | IWL_AUTH_ALGO_PSK | IWL_AUTH_ALGO_8021X |
579 IWL_AUTH_ALGO_SAE | IWL_AUTH_ALGO_8021X_SHA384 | IWL_AUTH_ALGO_OWE;
580 profile->network_type = IWL_NETWORK_TYPE_ANY;
581 profile->band_selection = IWL_SCAN_OFFLOAD_SELECT_ANY;
582 profile->client_bitmap = SCAN_CLIENT_SCHED_SCAN;
583 }
584
585 IWL_DEBUG_SCAN(mvm, "Sending scheduled scan profile config\n");
586
587 ret = iwl_mvm_send_cmd(mvm, &cmd);
588 kfree(profile_cfg_v1);
589free_blocklist:
590 kfree(blocklist);
591
592 return ret;
593}
594
595static bool iwl_mvm_scan_pass_all(struct iwl_mvm *mvm,
596 struct cfg80211_sched_scan_request *req)
597{
598 if (req->n_match_sets && req->match_sets[0].ssid.ssid_len) {
599 IWL_DEBUG_SCAN(mvm,
600 "Sending scheduled scan with filtering, n_match_sets %d\n",
601 req->n_match_sets);
602 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
603 return false;
604 }
605
606 IWL_DEBUG_SCAN(mvm, "Sending Scheduled scan without filtering\n");
607
608 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED;
609 return true;
610}
611
612static int iwl_mvm_lmac_scan_abort(struct iwl_mvm *mvm)
613{
614 int ret;
615 struct iwl_host_cmd cmd = {
616 .id = SCAN_OFFLOAD_ABORT_CMD,
617 };
618 u32 status = CAN_ABORT_STATUS;
619
620 ret = iwl_mvm_send_cmd_status(mvm, &cmd, &status);
621 if (ret)
622 return ret;
623
624 if (status != CAN_ABORT_STATUS) {
625 /*
626 * The scan abort will return 1 for success or
627 * 2 for "failure". A failure condition can be
628 * due to simply not being in an active scan which
629 * can occur if we send the scan abort before the
630 * microcode has notified us that a scan is completed.
631 */
632 IWL_DEBUG_SCAN(mvm, "SCAN OFFLOAD ABORT ret %d.\n", status);
633 ret = -ENOENT;
634 }
635
636 return ret;
637}
638
639static void iwl_mvm_scan_fill_tx_cmd(struct iwl_mvm *mvm,
640 struct iwl_scan_req_tx_cmd *tx_cmd,
641 bool no_cck)
642{
643 tx_cmd[0].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
644 TX_CMD_FLG_BT_DIS);
645 tx_cmd[0].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm,
646 NL80211_BAND_2GHZ,
647 no_cck);
648
649 if (!iwl_mvm_has_new_station_api(mvm->fw)) {
650 tx_cmd[0].sta_id = mvm->aux_sta.sta_id;
651 tx_cmd[1].sta_id = mvm->aux_sta.sta_id;
652
653 /*
654 * Fw doesn't use this sta anymore, pending deprecation via HOST API
655 * change
656 */
657 } else {
658 tx_cmd[0].sta_id = 0xff;
659 tx_cmd[1].sta_id = 0xff;
660 }
661
662 tx_cmd[1].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
663 TX_CMD_FLG_BT_DIS);
664
665 tx_cmd[1].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm,
666 NL80211_BAND_5GHZ,
667 no_cck);
668}
669
670static void
671iwl_mvm_lmac_scan_cfg_channels(struct iwl_mvm *mvm,
672 struct ieee80211_channel **channels,
673 int n_channels, u32 ssid_bitmap,
674 struct iwl_scan_req_lmac *cmd)
675{
676 struct iwl_scan_channel_cfg_lmac *channel_cfg = (void *)&cmd->data;
677 int i;
678
679 for (i = 0; i < n_channels; i++) {
680 channel_cfg[i].channel_num =
681 cpu_to_le16(channels[i]->hw_value);
682 channel_cfg[i].iter_count = cpu_to_le16(1);
683 channel_cfg[i].iter_interval = 0;
684 channel_cfg[i].flags =
685 cpu_to_le32(IWL_UNIFIED_SCAN_CHANNEL_PARTIAL |
686 ssid_bitmap);
687 }
688}
689
690static u8 *iwl_mvm_copy_and_insert_ds_elem(struct iwl_mvm *mvm, const u8 *ies,
691 size_t len, u8 *const pos)
692{
693 static const u8 before_ds_params[] = {
694 WLAN_EID_SSID,
695 WLAN_EID_SUPP_RATES,
696 WLAN_EID_REQUEST,
697 WLAN_EID_EXT_SUPP_RATES,
698 };
699 size_t offs;
700 u8 *newpos = pos;
701
702 if (!iwl_mvm_rrm_scan_needed(mvm)) {
703 memcpy(newpos, ies, len);
704 return newpos + len;
705 }
706
707 offs = ieee80211_ie_split(ies, len,
708 before_ds_params,
709 ARRAY_SIZE(before_ds_params),
710 0);
711
712 memcpy(newpos, ies, offs);
713 newpos += offs;
714
715 /* Add a placeholder for DS Parameter Set element */
716 *newpos++ = WLAN_EID_DS_PARAMS;
717 *newpos++ = 1;
718 *newpos++ = 0;
719
720 memcpy(newpos, ies + offs, len - offs);
721 newpos += len - offs;
722
723 return newpos;
724}
725
726#define WFA_TPC_IE_LEN 9
727
728static void iwl_mvm_add_tpc_report_ie(u8 *pos)
729{
730 pos[0] = WLAN_EID_VENDOR_SPECIFIC;
731 pos[1] = WFA_TPC_IE_LEN - 2;
732 pos[2] = (WLAN_OUI_MICROSOFT >> 16) & 0xff;
733 pos[3] = (WLAN_OUI_MICROSOFT >> 8) & 0xff;
734 pos[4] = WLAN_OUI_MICROSOFT & 0xff;
735 pos[5] = WLAN_OUI_TYPE_MICROSOFT_TPC;
736 pos[6] = 0;
737 /* pos[7] - tx power will be inserted by the FW */
738 pos[7] = 0;
739 pos[8] = 0;
740}
741
742static void
743iwl_mvm_build_scan_probe(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
744 struct ieee80211_scan_ies *ies,
745 struct iwl_mvm_scan_params *params)
746{
747 struct ieee80211_mgmt *frame = (void *)params->preq.buf;
748 u8 *pos, *newpos;
749 const u8 *mac_addr = params->flags & NL80211_SCAN_FLAG_RANDOM_ADDR ?
750 params->mac_addr : NULL;
751
752 /*
753 * Unfortunately, right now the offload scan doesn't support randomising
754 * within the firmware, so until the firmware API is ready we implement
755 * it in the driver. This means that the scan iterations won't really be
756 * random, only when it's restarted, but at least that helps a bit.
757 */
758 if (mac_addr)
759 get_random_mask_addr(frame->sa, mac_addr,
760 params->mac_addr_mask);
761 else
762 memcpy(frame->sa, vif->addr, ETH_ALEN);
763
764 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
765 eth_broadcast_addr(frame->da);
766 ether_addr_copy(frame->bssid, params->bssid);
767 frame->seq_ctrl = 0;
768
769 pos = frame->u.probe_req.variable;
770 *pos++ = WLAN_EID_SSID;
771 *pos++ = 0;
772
773 params->preq.mac_header.offset = 0;
774 params->preq.mac_header.len = cpu_to_le16(24 + 2);
775
776 /* Insert ds parameter set element on 2.4 GHz band */
777 newpos = iwl_mvm_copy_and_insert_ds_elem(mvm,
778 ies->ies[NL80211_BAND_2GHZ],
779 ies->len[NL80211_BAND_2GHZ],
780 pos);
781 params->preq.band_data[0].offset = cpu_to_le16(pos - params->preq.buf);
782 params->preq.band_data[0].len = cpu_to_le16(newpos - pos);
783 pos = newpos;
784
785 memcpy(pos, ies->ies[NL80211_BAND_5GHZ],
786 ies->len[NL80211_BAND_5GHZ]);
787 params->preq.band_data[1].offset = cpu_to_le16(pos - params->preq.buf);
788 params->preq.band_data[1].len =
789 cpu_to_le16(ies->len[NL80211_BAND_5GHZ]);
790 pos += ies->len[NL80211_BAND_5GHZ];
791
792 memcpy(pos, ies->ies[NL80211_BAND_6GHZ],
793 ies->len[NL80211_BAND_6GHZ]);
794 params->preq.band_data[2].offset = cpu_to_le16(pos - params->preq.buf);
795 params->preq.band_data[2].len =
796 cpu_to_le16(ies->len[NL80211_BAND_6GHZ]);
797 pos += ies->len[NL80211_BAND_6GHZ];
798 memcpy(pos, ies->common_ies, ies->common_ie_len);
799 params->preq.common_data.offset = cpu_to_le16(pos - params->preq.buf);
800
801 if (iwl_mvm_rrm_scan_needed(mvm) &&
802 !fw_has_capa(&mvm->fw->ucode_capa,
803 IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT)) {
804 iwl_mvm_add_tpc_report_ie(pos + ies->common_ie_len);
805 params->preq.common_data.len = cpu_to_le16(ies->common_ie_len +
806 WFA_TPC_IE_LEN);
807 } else {
808 params->preq.common_data.len = cpu_to_le16(ies->common_ie_len);
809 }
810}
811
812static void iwl_mvm_scan_lmac_dwell(struct iwl_mvm *mvm,
813 struct iwl_scan_req_lmac *cmd,
814 struct iwl_mvm_scan_params *params)
815{
816 cmd->active_dwell = IWL_SCAN_DWELL_ACTIVE;
817 cmd->passive_dwell = IWL_SCAN_DWELL_PASSIVE;
818 cmd->fragmented_dwell = IWL_SCAN_DWELL_FRAGMENTED;
819 cmd->extended_dwell = IWL_SCAN_DWELL_EXTENDED;
820 cmd->max_out_time = cpu_to_le32(scan_timing[params->type].max_out_time);
821 cmd->suspend_time = cpu_to_le32(scan_timing[params->type].suspend_time);
822 cmd->scan_prio = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
823}
824
825static inline bool iwl_mvm_scan_fits(struct iwl_mvm *mvm, int n_ssids,
826 struct ieee80211_scan_ies *ies,
827 int n_channels)
828{
829 return ((n_ssids <= PROBE_OPTION_MAX) &&
830 (n_channels <= mvm->fw->ucode_capa.n_scan_channels) &
831 (ies->common_ie_len +
832 ies->len[NL80211_BAND_2GHZ] +
833 ies->len[NL80211_BAND_5GHZ] <=
834 iwl_mvm_max_scan_ie_fw_cmd_room(mvm)));
835}
836
837static inline bool iwl_mvm_scan_use_ebs(struct iwl_mvm *mvm,
838 struct ieee80211_vif *vif)
839{
840 const struct iwl_ucode_capabilities *capa = &mvm->fw->ucode_capa;
841 bool low_latency;
842
843 if (iwl_mvm_is_cdb_supported(mvm))
844 low_latency = iwl_mvm_low_latency_band(mvm, NL80211_BAND_5GHZ);
845 else
846 low_latency = iwl_mvm_low_latency(mvm);
847
848 /* We can only use EBS if:
849 * 1. the feature is supported;
850 * 2. the last EBS was successful;
851 * 3. if only single scan, the single scan EBS API is supported;
852 * 4. it's not a p2p find operation.
853 * 5. we are not in low latency mode,
854 * or if fragmented ebs is supported by the FW
855 */
856 return ((capa->flags & IWL_UCODE_TLV_FLAGS_EBS_SUPPORT) &&
857 mvm->last_ebs_successful && IWL_MVM_ENABLE_EBS &&
858 vif->type != NL80211_IFTYPE_P2P_DEVICE &&
859 (!low_latency || iwl_mvm_is_frag_ebs_supported(mvm)));
860}
861
862static inline bool iwl_mvm_is_regular_scan(struct iwl_mvm_scan_params *params)
863{
864 return params->n_scan_plans == 1 &&
865 params->scan_plans[0].iterations == 1;
866}
867
868static bool iwl_mvm_is_scan_fragmented(enum iwl_mvm_scan_type type)
869{
870 return (type == IWL_SCAN_TYPE_FRAGMENTED ||
871 type == IWL_SCAN_TYPE_FAST_BALANCE);
872}
873
874static int iwl_mvm_scan_lmac_flags(struct iwl_mvm *mvm,
875 struct iwl_mvm_scan_params *params,
876 struct ieee80211_vif *vif)
877{
878 int flags = 0;
879
880 if (params->n_ssids == 0)
881 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASSIVE;
882
883 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0)
884 flags |= IWL_MVM_LMAC_SCAN_FLAG_PRE_CONNECTION;
885
886 if (iwl_mvm_is_scan_fragmented(params->type))
887 flags |= IWL_MVM_LMAC_SCAN_FLAG_FRAGMENTED;
888
889 if (iwl_mvm_rrm_scan_needed(mvm) &&
890 fw_has_capa(&mvm->fw->ucode_capa,
891 IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT))
892 flags |= IWL_MVM_LMAC_SCAN_FLAGS_RRM_ENABLED;
893
894 if (params->pass_all)
895 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASS_ALL;
896 else
897 flags |= IWL_MVM_LMAC_SCAN_FLAG_MATCH;
898
899#ifdef CONFIG_IWLWIFI_DEBUGFS
900 if (mvm->scan_iter_notif_enabled)
901 flags |= IWL_MVM_LMAC_SCAN_FLAG_ITER_COMPLETE;
902#endif
903
904 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED)
905 flags |= IWL_MVM_LMAC_SCAN_FLAG_ITER_COMPLETE;
906
907 if (iwl_mvm_is_regular_scan(params) &&
908 vif->type != NL80211_IFTYPE_P2P_DEVICE &&
909 !iwl_mvm_is_scan_fragmented(params->type))
910 flags |= IWL_MVM_LMAC_SCAN_FLAG_EXTENDED_DWELL;
911
912 return flags;
913}
914
915static void
916iwl_mvm_scan_set_legacy_probe_req(struct iwl_scan_probe_req_v1 *p_req,
917 struct iwl_scan_probe_req *src_p_req)
918{
919 int i;
920
921 p_req->mac_header = src_p_req->mac_header;
922 for (i = 0; i < SCAN_NUM_BAND_PROBE_DATA_V_1; i++)
923 p_req->band_data[i] = src_p_req->band_data[i];
924 p_req->common_data = src_p_req->common_data;
925 memcpy(p_req->buf, src_p_req->buf, sizeof(p_req->buf));
926}
927
928static int iwl_mvm_scan_lmac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
929 struct iwl_mvm_scan_params *params)
930{
931 struct iwl_scan_req_lmac *cmd = mvm->scan_cmd;
932 struct iwl_scan_probe_req_v1 *preq =
933 (void *)(cmd->data + sizeof(struct iwl_scan_channel_cfg_lmac) *
934 mvm->fw->ucode_capa.n_scan_channels);
935 u32 ssid_bitmap = 0;
936 int i;
937 u8 band;
938
939 if (WARN_ON(params->n_scan_plans > IWL_MAX_SCHED_SCAN_PLANS))
940 return -EINVAL;
941
942 iwl_mvm_scan_lmac_dwell(mvm, cmd, params);
943
944 cmd->rx_chain_select = iwl_mvm_scan_rx_chain(mvm);
945 cmd->iter_num = cpu_to_le32(1);
946 cmd->n_channels = (u8)params->n_channels;
947
948 cmd->delay = cpu_to_le32(params->delay);
949
950 cmd->scan_flags = cpu_to_le32(iwl_mvm_scan_lmac_flags(mvm, params,
951 vif));
952
953 band = iwl_mvm_phy_band_from_nl80211(params->channels[0]->band);
954 cmd->flags = cpu_to_le32(band);
955 cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP |
956 MAC_FILTER_IN_BEACON);
957 iwl_mvm_scan_fill_tx_cmd(mvm, cmd->tx_cmd, params->no_cck);
958 iwl_scan_build_ssids(params, cmd->direct_scan, &ssid_bitmap);
959
960 /* this API uses bits 1-20 instead of 0-19 */
961 ssid_bitmap <<= 1;
962
963 for (i = 0; i < params->n_scan_plans; i++) {
964 struct cfg80211_sched_scan_plan *scan_plan =
965 ¶ms->scan_plans[i];
966
967 cmd->schedule[i].delay =
968 cpu_to_le16(scan_plan->interval);
969 cmd->schedule[i].iterations = scan_plan->iterations;
970 cmd->schedule[i].full_scan_mul = 1;
971 }
972
973 /*
974 * If the number of iterations of the last scan plan is set to
975 * zero, it should run infinitely. However, this is not always the case.
976 * For example, when regular scan is requested the driver sets one scan
977 * plan with one iteration.
978 */
979 if (!cmd->schedule[i - 1].iterations)
980 cmd->schedule[i - 1].iterations = 0xff;
981
982 if (iwl_mvm_scan_use_ebs(mvm, vif)) {
983 cmd->channel_opt[0].flags =
984 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
985 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
986 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
987 cmd->channel_opt[0].non_ebs_ratio =
988 cpu_to_le16(IWL_DENSE_EBS_SCAN_RATIO);
989 cmd->channel_opt[1].flags =
990 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
991 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
992 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
993 cmd->channel_opt[1].non_ebs_ratio =
994 cpu_to_le16(IWL_SPARSE_EBS_SCAN_RATIO);
995 }
996
997 iwl_mvm_lmac_scan_cfg_channels(mvm, params->channels,
998 params->n_channels, ssid_bitmap, cmd);
999
1000 iwl_mvm_scan_set_legacy_probe_req(preq, ¶ms->preq);
1001
1002 return 0;
1003}
1004
1005static int rate_to_scan_rate_flag(unsigned int rate)
1006{
1007 static const int rate_to_scan_rate[IWL_RATE_COUNT] = {
1008 [IWL_RATE_1M_INDEX] = SCAN_CONFIG_RATE_1M,
1009 [IWL_RATE_2M_INDEX] = SCAN_CONFIG_RATE_2M,
1010 [IWL_RATE_5M_INDEX] = SCAN_CONFIG_RATE_5M,
1011 [IWL_RATE_11M_INDEX] = SCAN_CONFIG_RATE_11M,
1012 [IWL_RATE_6M_INDEX] = SCAN_CONFIG_RATE_6M,
1013 [IWL_RATE_9M_INDEX] = SCAN_CONFIG_RATE_9M,
1014 [IWL_RATE_12M_INDEX] = SCAN_CONFIG_RATE_12M,
1015 [IWL_RATE_18M_INDEX] = SCAN_CONFIG_RATE_18M,
1016 [IWL_RATE_24M_INDEX] = SCAN_CONFIG_RATE_24M,
1017 [IWL_RATE_36M_INDEX] = SCAN_CONFIG_RATE_36M,
1018 [IWL_RATE_48M_INDEX] = SCAN_CONFIG_RATE_48M,
1019 [IWL_RATE_54M_INDEX] = SCAN_CONFIG_RATE_54M,
1020 };
1021
1022 return rate_to_scan_rate[rate];
1023}
1024
1025static __le32 iwl_mvm_scan_config_rates(struct iwl_mvm *mvm)
1026{
1027 struct ieee80211_supported_band *band;
1028 unsigned int rates = 0;
1029 int i;
1030
1031 band = &mvm->nvm_data->bands[NL80211_BAND_2GHZ];
1032 for (i = 0; i < band->n_bitrates; i++)
1033 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value);
1034 band = &mvm->nvm_data->bands[NL80211_BAND_5GHZ];
1035 for (i = 0; i < band->n_bitrates; i++)
1036 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value);
1037
1038 /* Set both basic rates and supported rates */
1039 rates |= SCAN_CONFIG_SUPPORTED_RATE(rates);
1040
1041 return cpu_to_le32(rates);
1042}
1043
1044static void iwl_mvm_fill_scan_dwell(struct iwl_mvm *mvm,
1045 struct iwl_scan_dwell *dwell)
1046{
1047 dwell->active = IWL_SCAN_DWELL_ACTIVE;
1048 dwell->passive = IWL_SCAN_DWELL_PASSIVE;
1049 dwell->fragmented = IWL_SCAN_DWELL_FRAGMENTED;
1050 dwell->extended = IWL_SCAN_DWELL_EXTENDED;
1051}
1052
1053static void iwl_mvm_fill_channels(struct iwl_mvm *mvm, u8 *channels,
1054 u32 max_channels)
1055{
1056 struct ieee80211_supported_band *band;
1057 int i, j = 0;
1058
1059 band = &mvm->nvm_data->bands[NL80211_BAND_2GHZ];
1060 for (i = 0; i < band->n_channels && j < max_channels; i++, j++)
1061 channels[j] = band->channels[i].hw_value;
1062 band = &mvm->nvm_data->bands[NL80211_BAND_5GHZ];
1063 for (i = 0; i < band->n_channels && j < max_channels; i++, j++)
1064 channels[j] = band->channels[i].hw_value;
1065}
1066
1067static void iwl_mvm_fill_scan_config_v1(struct iwl_mvm *mvm, void *config,
1068 u32 flags, u8 channel_flags,
1069 u32 max_channels)
1070{
1071 enum iwl_mvm_scan_type type = iwl_mvm_get_scan_type(mvm, NULL);
1072 struct iwl_scan_config_v1 *cfg = config;
1073
1074 cfg->flags = cpu_to_le32(flags);
1075 cfg->tx_chains = cpu_to_le32(iwl_mvm_get_valid_tx_ant(mvm));
1076 cfg->rx_chains = cpu_to_le32(iwl_mvm_scan_rx_ant(mvm));
1077 cfg->legacy_rates = iwl_mvm_scan_config_rates(mvm);
1078 cfg->out_of_channel_time = cpu_to_le32(scan_timing[type].max_out_time);
1079 cfg->suspend_time = cpu_to_le32(scan_timing[type].suspend_time);
1080
1081 iwl_mvm_fill_scan_dwell(mvm, &cfg->dwell);
1082
1083 memcpy(&cfg->mac_addr, &mvm->addresses[0].addr, ETH_ALEN);
1084
1085 /* This function should not be called when using ADD_STA ver >=12 */
1086 WARN_ON_ONCE(iwl_mvm_has_new_station_api(mvm->fw));
1087
1088 cfg->bcast_sta_id = mvm->aux_sta.sta_id;
1089 cfg->channel_flags = channel_flags;
1090
1091 iwl_mvm_fill_channels(mvm, cfg->channel_array, max_channels);
1092}
1093
1094static void iwl_mvm_fill_scan_config_v2(struct iwl_mvm *mvm, void *config,
1095 u32 flags, u8 channel_flags,
1096 u32 max_channels)
1097{
1098 struct iwl_scan_config_v2 *cfg = config;
1099
1100 cfg->flags = cpu_to_le32(flags);
1101 cfg->tx_chains = cpu_to_le32(iwl_mvm_get_valid_tx_ant(mvm));
1102 cfg->rx_chains = cpu_to_le32(iwl_mvm_scan_rx_ant(mvm));
1103 cfg->legacy_rates = iwl_mvm_scan_config_rates(mvm);
1104
1105 if (iwl_mvm_is_cdb_supported(mvm)) {
1106 enum iwl_mvm_scan_type lb_type, hb_type;
1107
1108 lb_type = iwl_mvm_get_scan_type_band(mvm, NULL,
1109 NL80211_BAND_2GHZ);
1110 hb_type = iwl_mvm_get_scan_type_band(mvm, NULL,
1111 NL80211_BAND_5GHZ);
1112
1113 cfg->out_of_channel_time[SCAN_LB_LMAC_IDX] =
1114 cpu_to_le32(scan_timing[lb_type].max_out_time);
1115 cfg->suspend_time[SCAN_LB_LMAC_IDX] =
1116 cpu_to_le32(scan_timing[lb_type].suspend_time);
1117
1118 cfg->out_of_channel_time[SCAN_HB_LMAC_IDX] =
1119 cpu_to_le32(scan_timing[hb_type].max_out_time);
1120 cfg->suspend_time[SCAN_HB_LMAC_IDX] =
1121 cpu_to_le32(scan_timing[hb_type].suspend_time);
1122 } else {
1123 enum iwl_mvm_scan_type type =
1124 iwl_mvm_get_scan_type(mvm, NULL);
1125
1126 cfg->out_of_channel_time[SCAN_LB_LMAC_IDX] =
1127 cpu_to_le32(scan_timing[type].max_out_time);
1128 cfg->suspend_time[SCAN_LB_LMAC_IDX] =
1129 cpu_to_le32(scan_timing[type].suspend_time);
1130 }
1131
1132 iwl_mvm_fill_scan_dwell(mvm, &cfg->dwell);
1133
1134 memcpy(&cfg->mac_addr, &mvm->addresses[0].addr, ETH_ALEN);
1135
1136 /* This function should not be called when using ADD_STA ver >=12 */
1137 WARN_ON_ONCE(iwl_mvm_has_new_station_api(mvm->fw));
1138
1139 cfg->bcast_sta_id = mvm->aux_sta.sta_id;
1140 cfg->channel_flags = channel_flags;
1141
1142 iwl_mvm_fill_channels(mvm, cfg->channel_array, max_channels);
1143}
1144
1145static int iwl_mvm_legacy_config_scan(struct iwl_mvm *mvm)
1146{
1147 void *cfg;
1148 int ret, cmd_size;
1149 struct iwl_host_cmd cmd = {
1150 .id = WIDE_ID(IWL_ALWAYS_LONG_GROUP, SCAN_CFG_CMD),
1151 };
1152 enum iwl_mvm_scan_type type;
1153 enum iwl_mvm_scan_type hb_type = IWL_SCAN_TYPE_NOT_SET;
1154 int num_channels =
1155 mvm->nvm_data->bands[NL80211_BAND_2GHZ].n_channels +
1156 mvm->nvm_data->bands[NL80211_BAND_5GHZ].n_channels;
1157 u32 flags;
1158 u8 channel_flags;
1159
1160 if (WARN_ON(num_channels > mvm->fw->ucode_capa.n_scan_channels))
1161 num_channels = mvm->fw->ucode_capa.n_scan_channels;
1162
1163 if (iwl_mvm_is_cdb_supported(mvm)) {
1164 type = iwl_mvm_get_scan_type_band(mvm, NULL,
1165 NL80211_BAND_2GHZ);
1166 hb_type = iwl_mvm_get_scan_type_band(mvm, NULL,
1167 NL80211_BAND_5GHZ);
1168 if (type == mvm->scan_type && hb_type == mvm->hb_scan_type)
1169 return 0;
1170 } else {
1171 type = iwl_mvm_get_scan_type(mvm, NULL);
1172 if (type == mvm->scan_type)
1173 return 0;
1174 }
1175
1176 if (iwl_mvm_cdb_scan_api(mvm))
1177 cmd_size = sizeof(struct iwl_scan_config_v2);
1178 else
1179 cmd_size = sizeof(struct iwl_scan_config_v1);
1180 cmd_size += mvm->fw->ucode_capa.n_scan_channels;
1181
1182 cfg = kzalloc(cmd_size, GFP_KERNEL);
1183 if (!cfg)
1184 return -ENOMEM;
1185
1186 flags = SCAN_CONFIG_FLAG_ACTIVATE |
1187 SCAN_CONFIG_FLAG_ALLOW_CHUB_REQS |
1188 SCAN_CONFIG_FLAG_SET_TX_CHAINS |
1189 SCAN_CONFIG_FLAG_SET_RX_CHAINS |
1190 SCAN_CONFIG_FLAG_SET_AUX_STA_ID |
1191 SCAN_CONFIG_FLAG_SET_ALL_TIMES |
1192 SCAN_CONFIG_FLAG_SET_LEGACY_RATES |
1193 SCAN_CONFIG_FLAG_SET_MAC_ADDR |
1194 SCAN_CONFIG_FLAG_SET_CHANNEL_FLAGS |
1195 SCAN_CONFIG_N_CHANNELS(num_channels) |
1196 (iwl_mvm_is_scan_fragmented(type) ?
1197 SCAN_CONFIG_FLAG_SET_FRAGMENTED :
1198 SCAN_CONFIG_FLAG_CLEAR_FRAGMENTED);
1199
1200 channel_flags = IWL_CHANNEL_FLAG_EBS |
1201 IWL_CHANNEL_FLAG_ACCURATE_EBS |
1202 IWL_CHANNEL_FLAG_EBS_ADD |
1203 IWL_CHANNEL_FLAG_PRE_SCAN_PASSIVE2ACTIVE;
1204
1205 /*
1206 * Check for fragmented scan on LMAC2 - high band.
1207 * LMAC1 - low band is checked above.
1208 */
1209 if (iwl_mvm_cdb_scan_api(mvm)) {
1210 if (iwl_mvm_is_cdb_supported(mvm))
1211 flags |= (iwl_mvm_is_scan_fragmented(hb_type)) ?
1212 SCAN_CONFIG_FLAG_SET_LMAC2_FRAGMENTED :
1213 SCAN_CONFIG_FLAG_CLEAR_LMAC2_FRAGMENTED;
1214 iwl_mvm_fill_scan_config_v2(mvm, cfg, flags, channel_flags,
1215 num_channels);
1216 } else {
1217 iwl_mvm_fill_scan_config_v1(mvm, cfg, flags, channel_flags,
1218 num_channels);
1219 }
1220
1221 cmd.data[0] = cfg;
1222 cmd.len[0] = cmd_size;
1223 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
1224
1225 IWL_DEBUG_SCAN(mvm, "Sending UMAC scan config\n");
1226
1227 ret = iwl_mvm_send_cmd(mvm, &cmd);
1228 if (!ret) {
1229 mvm->scan_type = type;
1230 mvm->hb_scan_type = hb_type;
1231 }
1232
1233 kfree(cfg);
1234 return ret;
1235}
1236
1237int iwl_mvm_config_scan(struct iwl_mvm *mvm)
1238{
1239 struct iwl_scan_config cfg;
1240 struct iwl_host_cmd cmd = {
1241 .id = WIDE_ID(IWL_ALWAYS_LONG_GROUP, SCAN_CFG_CMD),
1242 .len[0] = sizeof(cfg),
1243 .data[0] = &cfg,
1244 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
1245 };
1246
1247 if (!iwl_mvm_is_reduced_config_scan_supported(mvm))
1248 return iwl_mvm_legacy_config_scan(mvm);
1249
1250 memset(&cfg, 0, sizeof(cfg));
1251
1252 if (!iwl_mvm_has_new_station_api(mvm->fw)) {
1253 cfg.bcast_sta_id = mvm->aux_sta.sta_id;
1254 } else if (iwl_fw_lookup_cmd_ver(mvm->fw, SCAN_CFG_CMD, 0) < 5) {
1255 /*
1256 * Fw doesn't use this sta anymore. Deprecated on SCAN_CFG_CMD
1257 * version 5.
1258 */
1259 cfg.bcast_sta_id = 0xff;
1260 }
1261
1262 cfg.tx_chains = cpu_to_le32(iwl_mvm_get_valid_tx_ant(mvm));
1263 cfg.rx_chains = cpu_to_le32(iwl_mvm_scan_rx_ant(mvm));
1264
1265 IWL_DEBUG_SCAN(mvm, "Sending UMAC scan config\n");
1266
1267 return iwl_mvm_send_cmd(mvm, &cmd);
1268}
1269
1270static int iwl_mvm_scan_uid_by_status(struct iwl_mvm *mvm, int status)
1271{
1272 int i;
1273
1274 for (i = 0; i < mvm->max_scans; i++)
1275 if (mvm->scan_uid_status[i] == status)
1276 return i;
1277
1278 return -ENOENT;
1279}
1280
1281static void iwl_mvm_scan_umac_dwell(struct iwl_mvm *mvm,
1282 struct iwl_scan_req_umac *cmd,
1283 struct iwl_mvm_scan_params *params)
1284{
1285 struct iwl_mvm_scan_timing_params *timing, *hb_timing;
1286 u8 active_dwell, passive_dwell;
1287
1288 timing = &scan_timing[params->type];
1289 active_dwell = IWL_SCAN_DWELL_ACTIVE;
1290 passive_dwell = IWL_SCAN_DWELL_PASSIVE;
1291
1292 if (iwl_mvm_is_adaptive_dwell_supported(mvm)) {
1293 cmd->v7.adwell_default_n_aps_social =
1294 IWL_SCAN_ADWELL_DEFAULT_N_APS_SOCIAL;
1295 cmd->v7.adwell_default_n_aps =
1296 IWL_SCAN_ADWELL_DEFAULT_LB_N_APS;
1297
1298 if (iwl_mvm_is_adwell_hb_ap_num_supported(mvm))
1299 cmd->v9.adwell_default_hb_n_aps =
1300 IWL_SCAN_ADWELL_DEFAULT_HB_N_APS;
1301
1302 /* if custom max budget was configured with debugfs */
1303 if (IWL_MVM_ADWELL_MAX_BUDGET)
1304 cmd->v7.adwell_max_budget =
1305 cpu_to_le16(IWL_MVM_ADWELL_MAX_BUDGET);
1306 else if (params->ssids && params->ssids[0].ssid_len)
1307 cmd->v7.adwell_max_budget =
1308 cpu_to_le16(IWL_SCAN_ADWELL_MAX_BUDGET_DIRECTED_SCAN);
1309 else
1310 cmd->v7.adwell_max_budget =
1311 cpu_to_le16(IWL_SCAN_ADWELL_MAX_BUDGET_FULL_SCAN);
1312
1313 cmd->v7.scan_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
1314 cmd->v7.max_out_time[SCAN_LB_LMAC_IDX] =
1315 cpu_to_le32(timing->max_out_time);
1316 cmd->v7.suspend_time[SCAN_LB_LMAC_IDX] =
1317 cpu_to_le32(timing->suspend_time);
1318
1319 if (iwl_mvm_is_cdb_supported(mvm)) {
1320 hb_timing = &scan_timing[params->hb_type];
1321
1322 cmd->v7.max_out_time[SCAN_HB_LMAC_IDX] =
1323 cpu_to_le32(hb_timing->max_out_time);
1324 cmd->v7.suspend_time[SCAN_HB_LMAC_IDX] =
1325 cpu_to_le32(hb_timing->suspend_time);
1326 }
1327
1328 if (!iwl_mvm_is_adaptive_dwell_v2_supported(mvm)) {
1329 cmd->v7.active_dwell = active_dwell;
1330 cmd->v7.passive_dwell = passive_dwell;
1331 cmd->v7.fragmented_dwell = IWL_SCAN_DWELL_FRAGMENTED;
1332 } else {
1333 cmd->v8.active_dwell[SCAN_LB_LMAC_IDX] = active_dwell;
1334 cmd->v8.passive_dwell[SCAN_LB_LMAC_IDX] = passive_dwell;
1335 if (iwl_mvm_is_cdb_supported(mvm)) {
1336 cmd->v8.active_dwell[SCAN_HB_LMAC_IDX] =
1337 active_dwell;
1338 cmd->v8.passive_dwell[SCAN_HB_LMAC_IDX] =
1339 passive_dwell;
1340 }
1341 }
1342 } else {
1343 cmd->v1.extended_dwell = IWL_SCAN_DWELL_EXTENDED;
1344 cmd->v1.active_dwell = active_dwell;
1345 cmd->v1.passive_dwell = passive_dwell;
1346 cmd->v1.fragmented_dwell = IWL_SCAN_DWELL_FRAGMENTED;
1347
1348 if (iwl_mvm_is_cdb_supported(mvm)) {
1349 hb_timing = &scan_timing[params->hb_type];
1350
1351 cmd->v6.max_out_time[SCAN_HB_LMAC_IDX] =
1352 cpu_to_le32(hb_timing->max_out_time);
1353 cmd->v6.suspend_time[SCAN_HB_LMAC_IDX] =
1354 cpu_to_le32(hb_timing->suspend_time);
1355 }
1356
1357 if (iwl_mvm_cdb_scan_api(mvm)) {
1358 cmd->v6.scan_priority =
1359 cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
1360 cmd->v6.max_out_time[SCAN_LB_LMAC_IDX] =
1361 cpu_to_le32(timing->max_out_time);
1362 cmd->v6.suspend_time[SCAN_LB_LMAC_IDX] =
1363 cpu_to_le32(timing->suspend_time);
1364 } else {
1365 cmd->v1.scan_priority =
1366 cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
1367 cmd->v1.max_out_time =
1368 cpu_to_le32(timing->max_out_time);
1369 cmd->v1.suspend_time =
1370 cpu_to_le32(timing->suspend_time);
1371 }
1372 }
1373
1374 if (iwl_mvm_is_regular_scan(params))
1375 cmd->ooc_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
1376 else
1377 cmd->ooc_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_2);
1378}
1379
1380static u32 iwl_mvm_scan_umac_ooc_priority(struct iwl_mvm_scan_params *params)
1381{
1382 return iwl_mvm_is_regular_scan(params) ?
1383 IWL_SCAN_PRIORITY_EXT_6 :
1384 IWL_SCAN_PRIORITY_EXT_2;
1385}
1386
1387static void
1388iwl_mvm_scan_umac_dwell_v11(struct iwl_mvm *mvm,
1389 struct iwl_scan_general_params_v11 *general_params,
1390 struct iwl_mvm_scan_params *params)
1391{
1392 struct iwl_mvm_scan_timing_params *timing, *hb_timing;
1393 u8 active_dwell, passive_dwell;
1394
1395 timing = &scan_timing[params->type];
1396 active_dwell = IWL_SCAN_DWELL_ACTIVE;
1397 passive_dwell = IWL_SCAN_DWELL_PASSIVE;
1398
1399 general_params->adwell_default_social_chn =
1400 IWL_SCAN_ADWELL_DEFAULT_N_APS_SOCIAL;
1401 general_params->adwell_default_2g = IWL_SCAN_ADWELL_DEFAULT_LB_N_APS;
1402 general_params->adwell_default_5g = IWL_SCAN_ADWELL_DEFAULT_HB_N_APS;
1403
1404 /* if custom max budget was configured with debugfs */
1405 if (IWL_MVM_ADWELL_MAX_BUDGET)
1406 general_params->adwell_max_budget =
1407 cpu_to_le16(IWL_MVM_ADWELL_MAX_BUDGET);
1408 else if (params->ssids && params->ssids[0].ssid_len)
1409 general_params->adwell_max_budget =
1410 cpu_to_le16(IWL_SCAN_ADWELL_MAX_BUDGET_DIRECTED_SCAN);
1411 else
1412 general_params->adwell_max_budget =
1413 cpu_to_le16(IWL_SCAN_ADWELL_MAX_BUDGET_FULL_SCAN);
1414
1415 general_params->scan_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
1416 general_params->max_out_of_time[SCAN_LB_LMAC_IDX] =
1417 cpu_to_le32(timing->max_out_time);
1418 general_params->suspend_time[SCAN_LB_LMAC_IDX] =
1419 cpu_to_le32(timing->suspend_time);
1420
1421 hb_timing = &scan_timing[params->hb_type];
1422
1423 general_params->max_out_of_time[SCAN_HB_LMAC_IDX] =
1424 cpu_to_le32(hb_timing->max_out_time);
1425 general_params->suspend_time[SCAN_HB_LMAC_IDX] =
1426 cpu_to_le32(hb_timing->suspend_time);
1427
1428 general_params->active_dwell[SCAN_LB_LMAC_IDX] = active_dwell;
1429 general_params->passive_dwell[SCAN_LB_LMAC_IDX] = passive_dwell;
1430 general_params->active_dwell[SCAN_HB_LMAC_IDX] = active_dwell;
1431 general_params->passive_dwell[SCAN_HB_LMAC_IDX] = passive_dwell;
1432}
1433
1434struct iwl_mvm_scan_channel_segment {
1435 u8 start_idx;
1436 u8 end_idx;
1437 u8 first_channel_id;
1438 u8 last_channel_id;
1439 u8 channel_spacing_shift;
1440 u8 band;
1441};
1442
1443static const struct iwl_mvm_scan_channel_segment scan_channel_segments[] = {
1444 {
1445 .start_idx = 0,
1446 .end_idx = 13,
1447 .first_channel_id = 1,
1448 .last_channel_id = 14,
1449 .channel_spacing_shift = 0,
1450 .band = PHY_BAND_24
1451 },
1452 {
1453 .start_idx = 14,
1454 .end_idx = 41,
1455 .first_channel_id = 36,
1456 .last_channel_id = 144,
1457 .channel_spacing_shift = 2,
1458 .band = PHY_BAND_5
1459 },
1460 {
1461 .start_idx = 42,
1462 .end_idx = 50,
1463 .first_channel_id = 149,
1464 .last_channel_id = 181,
1465 .channel_spacing_shift = 2,
1466 .band = PHY_BAND_5
1467 },
1468 {
1469 .start_idx = 51,
1470 .end_idx = 111,
1471 .first_channel_id = 1,
1472 .last_channel_id = 241,
1473 .channel_spacing_shift = 2,
1474 .band = PHY_BAND_6
1475 },
1476};
1477
1478static int iwl_mvm_scan_ch_and_band_to_idx(u8 channel_id, u8 band)
1479{
1480 int i, index;
1481
1482 if (!channel_id)
1483 return -EINVAL;
1484
1485 for (i = 0; i < ARRAY_SIZE(scan_channel_segments); i++) {
1486 const struct iwl_mvm_scan_channel_segment *ch_segment =
1487 &scan_channel_segments[i];
1488 u32 ch_offset;
1489
1490 if (ch_segment->band != band ||
1491 ch_segment->first_channel_id > channel_id ||
1492 ch_segment->last_channel_id < channel_id)
1493 continue;
1494
1495 ch_offset = (channel_id - ch_segment->first_channel_id) >>
1496 ch_segment->channel_spacing_shift;
1497
1498 index = scan_channel_segments[i].start_idx + ch_offset;
1499 if (index < IWL_SCAN_NUM_CHANNELS)
1500 return index;
1501
1502 break;
1503 }
1504
1505 return -EINVAL;
1506}
1507
1508static const u8 p2p_go_friendly_chs[] = {
1509 36, 40, 44, 48, 149, 153, 157, 161, 165,
1510};
1511
1512static const u8 social_chs[] = {
1513 1, 6, 11
1514};
1515
1516static void iwl_mvm_scan_ch_add_n_aps_override(enum nl80211_iftype vif_type,
1517 u8 ch_id, u8 band, u8 *ch_bitmap,
1518 size_t bitmap_n_entries)
1519{
1520 int i;
1521
1522 if (vif_type != NL80211_IFTYPE_P2P_DEVICE)
1523 return;
1524
1525 for (i = 0; i < ARRAY_SIZE(p2p_go_friendly_chs); i++) {
1526 if (p2p_go_friendly_chs[i] == ch_id) {
1527 int ch_idx, bitmap_idx;
1528
1529 ch_idx = iwl_mvm_scan_ch_and_band_to_idx(ch_id, band);
1530 if (ch_idx < 0)
1531 return;
1532
1533 bitmap_idx = ch_idx / 8;
1534 if (bitmap_idx >= bitmap_n_entries)
1535 return;
1536
1537 ch_idx = ch_idx % 8;
1538 ch_bitmap[bitmap_idx] |= BIT(ch_idx);
1539
1540 return;
1541 }
1542 }
1543}
1544
1545static u32 iwl_mvm_scan_ch_n_aps_flag(enum nl80211_iftype vif_type, u8 ch_id)
1546{
1547 int i;
1548 u32 flags = 0;
1549
1550 if (vif_type != NL80211_IFTYPE_P2P_DEVICE)
1551 goto out;
1552
1553 for (i = 0; i < ARRAY_SIZE(p2p_go_friendly_chs); i++) {
1554 if (p2p_go_friendly_chs[i] == ch_id) {
1555 flags |= IWL_SCAN_ADWELL_N_APS_GO_FRIENDLY_BIT;
1556 break;
1557 }
1558 }
1559
1560 if (flags)
1561 goto out;
1562
1563 for (i = 0; i < ARRAY_SIZE(social_chs); i++) {
1564 if (social_chs[i] == ch_id) {
1565 flags |= IWL_SCAN_ADWELL_N_APS_SOCIAL_CHS_BIT;
1566 break;
1567 }
1568 }
1569
1570out:
1571 return flags;
1572}
1573
1574static void
1575iwl_mvm_umac_scan_cfg_channels(struct iwl_mvm *mvm,
1576 struct ieee80211_channel **channels,
1577 int n_channels, u32 flags,
1578 struct iwl_scan_channel_cfg_umac *channel_cfg)
1579{
1580 int i;
1581
1582 for (i = 0; i < n_channels; i++) {
1583 channel_cfg[i].flags = cpu_to_le32(flags);
1584 channel_cfg[i].v1.channel_num = channels[i]->hw_value;
1585 if (iwl_mvm_is_scan_ext_chan_supported(mvm)) {
1586 enum nl80211_band band = channels[i]->band;
1587
1588 channel_cfg[i].v2.band =
1589 iwl_mvm_phy_band_from_nl80211(band);
1590 channel_cfg[i].v2.iter_count = 1;
1591 channel_cfg[i].v2.iter_interval = 0;
1592 } else {
1593 channel_cfg[i].v1.iter_count = 1;
1594 channel_cfg[i].v1.iter_interval = 0;
1595 }
1596 }
1597}
1598
1599static void
1600iwl_mvm_umac_scan_cfg_channels_v4(struct iwl_mvm *mvm,
1601 struct ieee80211_channel **channels,
1602 struct iwl_scan_channel_params_v4 *cp,
1603 int n_channels, u32 flags,
1604 enum nl80211_iftype vif_type)
1605{
1606 u8 *bitmap = cp->adwell_ch_override_bitmap;
1607 size_t bitmap_n_entries = ARRAY_SIZE(cp->adwell_ch_override_bitmap);
1608 int i;
1609
1610 for (i = 0; i < n_channels; i++) {
1611 enum nl80211_band band = channels[i]->band;
1612 struct iwl_scan_channel_cfg_umac *cfg =
1613 &cp->channel_config[i];
1614
1615 cfg->flags = cpu_to_le32(flags);
1616 cfg->v2.channel_num = channels[i]->hw_value;
1617 cfg->v2.band = iwl_mvm_phy_band_from_nl80211(band);
1618 cfg->v2.iter_count = 1;
1619 cfg->v2.iter_interval = 0;
1620
1621 iwl_mvm_scan_ch_add_n_aps_override(vif_type,
1622 cfg->v2.channel_num,
1623 cfg->v2.band, bitmap,
1624 bitmap_n_entries);
1625 }
1626}
1627
1628static void
1629iwl_mvm_umac_scan_cfg_channels_v7(struct iwl_mvm *mvm,
1630 struct ieee80211_channel **channels,
1631 struct iwl_scan_channel_params_v7 *cp,
1632 int n_channels, u32 flags,
1633 enum nl80211_iftype vif_type, u32 version)
1634{
1635 int i;
1636
1637 for (i = 0; i < n_channels; i++) {
1638 enum nl80211_band band = channels[i]->band;
1639 struct iwl_scan_channel_cfg_umac *cfg = &cp->channel_config[i];
1640 u32 n_aps_flag =
1641 iwl_mvm_scan_ch_n_aps_flag(vif_type,
1642 channels[i]->hw_value);
1643 u8 iwl_band = iwl_mvm_phy_band_from_nl80211(band);
1644
1645 cfg->flags = cpu_to_le32(flags | n_aps_flag);
1646 cfg->v2.channel_num = channels[i]->hw_value;
1647 if (cfg80211_channel_is_psc(channels[i]))
1648 cfg->flags = 0;
1649 cfg->v2.iter_count = 1;
1650 cfg->v2.iter_interval = 0;
1651 if (version < 17)
1652 cfg->v2.band = iwl_band;
1653 else
1654 cfg->flags |= cpu_to_le32((iwl_band <<
1655 IWL_CHAN_CFG_FLAGS_BAND_POS));
1656 }
1657}
1658
1659static void
1660iwl_mvm_umac_scan_fill_6g_chan_list(struct iwl_mvm *mvm,
1661 struct iwl_mvm_scan_params *params,
1662 struct iwl_scan_probe_params_v4 *pp)
1663{
1664 int j, idex_s = 0, idex_b = 0;
1665 struct cfg80211_scan_6ghz_params *scan_6ghz_params =
1666 params->scan_6ghz_params;
1667 bool hidden_supported = fw_has_capa(&mvm->fw->ucode_capa,
1668 IWL_UCODE_TLV_CAPA_HIDDEN_6GHZ_SCAN);
1669
1670 for (j = 0; j < params->n_ssids && idex_s < SCAN_SHORT_SSID_MAX_SIZE;
1671 j++) {
1672 if (!params->ssids[j].ssid_len)
1673 continue;
1674
1675 pp->short_ssid[idex_s] =
1676 cpu_to_le32(~crc32_le(~0, params->ssids[j].ssid,
1677 params->ssids[j].ssid_len));
1678
1679 if (hidden_supported) {
1680 pp->direct_scan[idex_s].id = WLAN_EID_SSID;
1681 pp->direct_scan[idex_s].len = params->ssids[j].ssid_len;
1682 memcpy(pp->direct_scan[idex_s].ssid, params->ssids[j].ssid,
1683 params->ssids[j].ssid_len);
1684 }
1685 idex_s++;
1686 }
1687
1688 /*
1689 * Populate the arrays of the short SSIDs and the BSSIDs using the 6GHz
1690 * collocated parameters. This might not be optimal, as this processing
1691 * does not (yet) correspond to the actual channels, so it is possible
1692 * that some entries would be left out.
1693 *
1694 * TODO: improve this logic.
1695 */
1696 for (j = 0; j < params->n_6ghz_params; j++) {
1697 int k;
1698
1699 /* First, try to place the short SSID */
1700 if (scan_6ghz_params[j].short_ssid_valid) {
1701 for (k = 0; k < idex_s; k++) {
1702 if (pp->short_ssid[k] ==
1703 cpu_to_le32(scan_6ghz_params[j].short_ssid))
1704 break;
1705 }
1706
1707 if (k == idex_s && idex_s < SCAN_SHORT_SSID_MAX_SIZE) {
1708 pp->short_ssid[idex_s++] =
1709 cpu_to_le32(scan_6ghz_params[j].short_ssid);
1710 }
1711 }
1712
1713 /* try to place BSSID for the same entry */
1714 for (k = 0; k < idex_b; k++) {
1715 if (!memcmp(&pp->bssid_array[k],
1716 scan_6ghz_params[j].bssid, ETH_ALEN))
1717 break;
1718 }
1719
1720 if (k == idex_b && idex_b < SCAN_BSSID_MAX_SIZE) {
1721 memcpy(&pp->bssid_array[idex_b++],
1722 scan_6ghz_params[j].bssid, ETH_ALEN);
1723 }
1724 }
1725
1726 pp->short_ssid_num = idex_s;
1727 pp->bssid_num = idex_b;
1728}
1729
1730/* TODO: this function can be merged with iwl_mvm_scan_umac_fill_ch_p_v7 */
1731static u32
1732iwl_mvm_umac_scan_cfg_channels_v7_6g(struct iwl_mvm *mvm,
1733 struct iwl_mvm_scan_params *params,
1734 u32 n_channels,
1735 struct iwl_scan_probe_params_v4 *pp,
1736 struct iwl_scan_channel_params_v7 *cp,
1737 enum nl80211_iftype vif_type,
1738 u32 version)
1739{
1740 int i;
1741 struct cfg80211_scan_6ghz_params *scan_6ghz_params =
1742 params->scan_6ghz_params;
1743 u32 ch_cnt;
1744
1745 for (i = 0, ch_cnt = 0; i < params->n_channels; i++) {
1746 struct iwl_scan_channel_cfg_umac *cfg =
1747 &cp->channel_config[ch_cnt];
1748
1749 u32 s_ssid_bitmap = 0, bssid_bitmap = 0, flags = 0;
1750 u8 j, k, s_max = 0, b_max = 0, n_used_bssid_entries;
1751 bool force_passive, found = false, allow_passive = true,
1752 unsolicited_probe_on_chan = false, psc_no_listen = false;
1753 s8 psd_20 = IEEE80211_RNR_TBTT_PARAMS_PSD_RESERVED;
1754
1755 /*
1756 * Avoid performing passive scan on non PSC channels unless the
1757 * scan is specifically a passive scan, i.e., no SSIDs
1758 * configured in the scan command.
1759 */
1760 if (!cfg80211_channel_is_psc(params->channels[i]) &&
1761 !params->n_6ghz_params && params->n_ssids)
1762 continue;
1763
1764 cfg->v1.channel_num = params->channels[i]->hw_value;
1765 if (version < 17)
1766 cfg->v2.band = PHY_BAND_6;
1767 else
1768 cfg->flags |= cpu_to_le32(PHY_BAND_6 <<
1769 IWL_CHAN_CFG_FLAGS_BAND_POS);
1770
1771 cfg->v5.iter_count = 1;
1772 cfg->v5.iter_interval = 0;
1773
1774 /*
1775 * The optimize the scan time, i.e., reduce the scan dwell time
1776 * on each channel, the below logic tries to set 3 direct BSSID
1777 * probe requests for each broadcast probe request with a short
1778 * SSID.
1779 * TODO: improve this logic
1780 */
1781 n_used_bssid_entries = 3;
1782 for (j = 0; j < params->n_6ghz_params; j++) {
1783 s8 tmp_psd_20;
1784
1785 if (!(scan_6ghz_params[j].channel_idx == i))
1786 continue;
1787
1788 /* Use the highest PSD value allowed as advertised by
1789 * APs for this channel
1790 */
1791 tmp_psd_20 = scan_6ghz_params[j].psd_20;
1792 if (tmp_psd_20 !=
1793 IEEE80211_RNR_TBTT_PARAMS_PSD_RESERVED &&
1794 (psd_20 ==
1795 IEEE80211_RNR_TBTT_PARAMS_PSD_RESERVED ||
1796 psd_20 < tmp_psd_20))
1797 psd_20 = tmp_psd_20;
1798
1799 found = false;
1800 unsolicited_probe_on_chan |=
1801 scan_6ghz_params[j].unsolicited_probe;
1802 psc_no_listen |= scan_6ghz_params[j].psc_no_listen;
1803
1804 for (k = 0; k < pp->short_ssid_num; k++) {
1805 if (!scan_6ghz_params[j].unsolicited_probe &&
1806 le32_to_cpu(pp->short_ssid[k]) ==
1807 scan_6ghz_params[j].short_ssid) {
1808 /* Relevant short SSID bit set */
1809 if (s_ssid_bitmap & BIT(k)) {
1810 found = true;
1811 break;
1812 }
1813
1814 /*
1815 * Use short SSID only to create a new
1816 * iteration during channel dwell or in
1817 * case that the short SSID has a
1818 * matching SSID, i.e., scan for hidden
1819 * APs.
1820 */
1821 if (n_used_bssid_entries >= 3) {
1822 s_ssid_bitmap |= BIT(k);
1823 s_max++;
1824 n_used_bssid_entries -= 3;
1825 found = true;
1826 break;
1827 } else if (pp->direct_scan[k].len) {
1828 s_ssid_bitmap |= BIT(k);
1829 s_max++;
1830 found = true;
1831 allow_passive = false;
1832 break;
1833 }
1834 }
1835 }
1836
1837 if (found)
1838 continue;
1839
1840 for (k = 0; k < pp->bssid_num; k++) {
1841 if (!memcmp(&pp->bssid_array[k],
1842 scan_6ghz_params[j].bssid,
1843 ETH_ALEN)) {
1844 if (!(bssid_bitmap & BIT(k))) {
1845 bssid_bitmap |= BIT(k);
1846 b_max++;
1847 n_used_bssid_entries++;
1848 }
1849 break;
1850 }
1851 }
1852 }
1853
1854 if (cfg80211_channel_is_psc(params->channels[i]) &&
1855 psc_no_listen)
1856 flags |= IWL_UHB_CHAN_CFG_FLAG_PSC_CHAN_NO_LISTEN;
1857
1858 if (unsolicited_probe_on_chan)
1859 flags |= IWL_UHB_CHAN_CFG_FLAG_UNSOLICITED_PROBE_RES;
1860
1861 /*
1862 * In the following cases apply passive scan:
1863 * 1. Non fragmented scan:
1864 * - PSC channel with NO_LISTEN_FLAG on should be treated
1865 * like non PSC channel
1866 * - Non PSC channel with more than 3 short SSIDs or more
1867 * than 9 BSSIDs.
1868 * - Non PSC Channel with unsolicited probe response and
1869 * more than 2 short SSIDs or more than 6 BSSIDs.
1870 * - PSC channel with more than 2 short SSIDs or more than
1871 * 6 BSSIDs.
1872 * 3. Fragmented scan:
1873 * - PSC channel with more than 1 SSID or 3 BSSIDs.
1874 * - Non PSC channel with more than 2 SSIDs or 6 BSSIDs.
1875 * - Non PSC channel with unsolicited probe response and
1876 * more than 1 SSID or more than 3 BSSIDs.
1877 */
1878 if (!iwl_mvm_is_scan_fragmented(params->type)) {
1879 if (!cfg80211_channel_is_psc(params->channels[i]) ||
1880 flags & IWL_UHB_CHAN_CFG_FLAG_PSC_CHAN_NO_LISTEN) {
1881 force_passive = (s_max > 3 || b_max > 9);
1882 force_passive |= (unsolicited_probe_on_chan &&
1883 (s_max > 2 || b_max > 6));
1884 } else {
1885 force_passive = (s_max > 2 || b_max > 6);
1886 }
1887 } else if (cfg80211_channel_is_psc(params->channels[i])) {
1888 force_passive = (s_max > 1 || b_max > 3);
1889 } else {
1890 force_passive = (s_max > 2 || b_max > 6);
1891 force_passive |= (unsolicited_probe_on_chan &&
1892 (s_max > 1 || b_max > 3));
1893 }
1894 if ((allow_passive && force_passive) ||
1895 (!(bssid_bitmap | s_ssid_bitmap) &&
1896 !cfg80211_channel_is_psc(params->channels[i])))
1897 flags |= IWL_UHB_CHAN_CFG_FLAG_FORCE_PASSIVE;
1898 else
1899 flags |= bssid_bitmap | (s_ssid_bitmap << 16);
1900
1901 cfg->flags |= cpu_to_le32(flags);
1902 if (version >= 17)
1903 cfg->v5.psd_20 = psd_20;
1904
1905 ch_cnt++;
1906 }
1907
1908 if (params->n_channels > ch_cnt)
1909 IWL_DEBUG_SCAN(mvm,
1910 "6GHz: reducing number channels: (%u->%u)\n",
1911 params->n_channels, ch_cnt);
1912
1913 return ch_cnt;
1914}
1915
1916static u8 iwl_mvm_scan_umac_chan_flags_v2(struct iwl_mvm *mvm,
1917 struct iwl_mvm_scan_params *params,
1918 struct ieee80211_vif *vif)
1919{
1920 u8 flags = 0;
1921
1922 flags |= IWL_SCAN_CHANNEL_FLAG_ENABLE_CHAN_ORDER;
1923
1924 if (iwl_mvm_scan_use_ebs(mvm, vif))
1925 flags |= IWL_SCAN_CHANNEL_FLAG_EBS |
1926 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
1927 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD;
1928
1929 /* set fragmented ebs for fragmented scan on HB channels */
1930 if ((!iwl_mvm_is_cdb_supported(mvm) &&
1931 iwl_mvm_is_scan_fragmented(params->type)) ||
1932 (iwl_mvm_is_cdb_supported(mvm) &&
1933 iwl_mvm_is_scan_fragmented(params->hb_type)))
1934 flags |= IWL_SCAN_CHANNEL_FLAG_EBS_FRAG;
1935
1936 /*
1937 * force EBS in case the scan is a fragmented and there is a need to take P2P
1938 * GO operation into consideration during scan operation.
1939 */
1940 if ((!iwl_mvm_is_cdb_supported(mvm) &&
1941 iwl_mvm_is_scan_fragmented(params->type) && params->respect_p2p_go) ||
1942 (iwl_mvm_is_cdb_supported(mvm) &&
1943 iwl_mvm_is_scan_fragmented(params->hb_type) &&
1944 params->respect_p2p_go_hb)) {
1945 IWL_DEBUG_SCAN(mvm, "Respect P2P GO. Force EBS\n");
1946 flags |= IWL_SCAN_CHANNEL_FLAG_FORCE_EBS;
1947 }
1948
1949 return flags;
1950}
1951
1952static void iwl_mvm_scan_6ghz_passive_scan(struct iwl_mvm *mvm,
1953 struct iwl_mvm_scan_params *params,
1954 struct ieee80211_vif *vif)
1955{
1956 struct ieee80211_supported_band *sband =
1957 &mvm->nvm_data->bands[NL80211_BAND_6GHZ];
1958 u32 n_disabled, i;
1959
1960 params->enable_6ghz_passive = false;
1961
1962 if (params->scan_6ghz)
1963 return;
1964
1965 if (!fw_has_capa(&mvm->fw->ucode_capa,
1966 IWL_UCODE_TLV_CAPA_PASSIVE_6GHZ_SCAN)) {
1967 IWL_DEBUG_SCAN(mvm,
1968 "6GHz passive scan: Not supported by FW\n");
1969 return;
1970 }
1971
1972 /* 6GHz passive scan allowed only on station interface */
1973 if (vif->type != NL80211_IFTYPE_STATION) {
1974 IWL_DEBUG_SCAN(mvm,
1975 "6GHz passive scan: not station interface\n");
1976 return;
1977 }
1978
1979 /*
1980 * 6GHz passive scan is allowed in a defined time interval following HW
1981 * reset or resume flow, or while not associated and a large interval
1982 * has passed since the last 6GHz passive scan.
1983 */
1984 if ((vif->cfg.assoc ||
1985 time_after(mvm->last_6ghz_passive_scan_jiffies +
1986 (IWL_MVM_6GHZ_PASSIVE_SCAN_TIMEOUT * HZ), jiffies)) &&
1987 (time_before(mvm->last_reset_or_resume_time_jiffies +
1988 (IWL_MVM_6GHZ_PASSIVE_SCAN_ASSOC_TIMEOUT * HZ),
1989 jiffies))) {
1990 IWL_DEBUG_SCAN(mvm, "6GHz passive scan: %s\n",
1991 vif->cfg.assoc ? "associated" :
1992 "timeout did not expire");
1993 return;
1994 }
1995
1996 /* not enough channels in the regular scan request */
1997 if (params->n_channels < IWL_MVM_6GHZ_PASSIVE_SCAN_MIN_CHANS) {
1998 IWL_DEBUG_SCAN(mvm,
1999 "6GHz passive scan: not enough channels\n");
2000 return;
2001 }
2002
2003 for (i = 0; i < params->n_ssids; i++) {
2004 if (!params->ssids[i].ssid_len)
2005 break;
2006 }
2007
2008 /* not a wildcard scan, so cannot enable passive 6GHz scan */
2009 if (i == params->n_ssids) {
2010 IWL_DEBUG_SCAN(mvm,
2011 "6GHz passive scan: no wildcard SSID\n");
2012 return;
2013 }
2014
2015 if (!sband || !sband->n_channels) {
2016 IWL_DEBUG_SCAN(mvm,
2017 "6GHz passive scan: no 6GHz channels\n");
2018 return;
2019 }
2020
2021 for (i = 0, n_disabled = 0; i < sband->n_channels; i++) {
2022 if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED))
2023 n_disabled++;
2024 }
2025
2026 /*
2027 * Not all the 6GHz channels are disabled, so no need for 6GHz passive
2028 * scan
2029 */
2030 if (n_disabled != sband->n_channels) {
2031 IWL_DEBUG_SCAN(mvm,
2032 "6GHz passive scan: 6GHz channels enabled\n");
2033 return;
2034 }
2035
2036 /* all conditions to enable 6ghz passive scan are satisfied */
2037 IWL_DEBUG_SCAN(mvm, "6GHz passive scan: can be enabled\n");
2038 params->enable_6ghz_passive = true;
2039}
2040
2041static u16 iwl_mvm_scan_umac_flags_v2(struct iwl_mvm *mvm,
2042 struct iwl_mvm_scan_params *params,
2043 struct ieee80211_vif *vif,
2044 int type)
2045{
2046 u16 flags = 0;
2047
2048 /*
2049 * If no direct SSIDs are provided perform a passive scan. Otherwise,
2050 * if there is a single SSID which is not the broadcast SSID, assume
2051 * that the scan is intended for roaming purposes and thus enable Rx on
2052 * all chains to improve chances of hearing the beacons/probe responses.
2053 */
2054 if (params->n_ssids == 0)
2055 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_FORCE_PASSIVE;
2056 else if (params->n_ssids == 1 && params->ssids[0].ssid_len)
2057 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_USE_ALL_RX_CHAINS;
2058
2059 if (iwl_mvm_is_scan_fragmented(params->type))
2060 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_FRAGMENTED_LMAC1;
2061
2062 if (iwl_mvm_is_scan_fragmented(params->hb_type))
2063 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_FRAGMENTED_LMAC2;
2064
2065 if (params->pass_all)
2066 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_PASS_ALL;
2067 else
2068 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_MATCH;
2069
2070 if (!iwl_mvm_is_regular_scan(params))
2071 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_PERIODIC;
2072
2073 if (params->iter_notif ||
2074 mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED)
2075 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_NTFY_ITER_COMPLETE;
2076
2077 if (IWL_MVM_ADWELL_ENABLE)
2078 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_ADAPTIVE_DWELL;
2079
2080 if (type == IWL_MVM_SCAN_SCHED || type == IWL_MVM_SCAN_NETDETECT)
2081 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_PREEMPTIVE;
2082
2083 if ((type == IWL_MVM_SCAN_SCHED || type == IWL_MVM_SCAN_NETDETECT) &&
2084 params->flags & NL80211_SCAN_FLAG_COLOCATED_6GHZ)
2085 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_TRIGGER_UHB_SCAN;
2086
2087 if (params->enable_6ghz_passive)
2088 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_6GHZ_PASSIVE_SCAN;
2089
2090 if (iwl_mvm_is_oce_supported(mvm) &&
2091 (params->flags & (NL80211_SCAN_FLAG_ACCEPT_BCAST_PROBE_RESP |
2092 NL80211_SCAN_FLAG_OCE_PROBE_REQ_HIGH_TX_RATE |
2093 NL80211_SCAN_FLAG_FILS_MAX_CHANNEL_TIME)))
2094 flags |= IWL_UMAC_SCAN_GEN_FLAGS_V2_OCE;
2095
2096 return flags;
2097}
2098
2099static u8 iwl_mvm_scan_umac_flags2(struct iwl_mvm *mvm,
2100 struct iwl_mvm_scan_params *params,
2101 struct ieee80211_vif *vif, int type)
2102{
2103 u8 flags = 0;
2104
2105 if (iwl_mvm_is_cdb_supported(mvm)) {
2106 if (params->respect_p2p_go)
2107 flags |= IWL_UMAC_SCAN_GEN_PARAMS_FLAGS2_RESPECT_P2P_GO_LB;
2108 if (params->respect_p2p_go_hb)
2109 flags |= IWL_UMAC_SCAN_GEN_PARAMS_FLAGS2_RESPECT_P2P_GO_HB;
2110 } else {
2111 if (params->respect_p2p_go)
2112 flags = IWL_UMAC_SCAN_GEN_PARAMS_FLAGS2_RESPECT_P2P_GO_LB |
2113 IWL_UMAC_SCAN_GEN_PARAMS_FLAGS2_RESPECT_P2P_GO_HB;
2114 }
2115
2116 if (params->scan_6ghz &&
2117 fw_has_capa(&mvm->fw->ucode_capa,
2118 IWL_UCODE_TLV_CAPA_SCAN_DONT_TOGGLE_ANT))
2119 flags |= IWL_UMAC_SCAN_GEN_PARAMS_FLAGS2_DONT_TOGGLE_ANT;
2120
2121 return flags;
2122}
2123
2124static u16 iwl_mvm_scan_umac_flags(struct iwl_mvm *mvm,
2125 struct iwl_mvm_scan_params *params,
2126 struct ieee80211_vif *vif)
2127{
2128 u16 flags = 0;
2129
2130 if (params->n_ssids == 0)
2131 flags = IWL_UMAC_SCAN_GEN_FLAGS_PASSIVE;
2132
2133 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0)
2134 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PRE_CONNECT;
2135
2136 if (iwl_mvm_is_scan_fragmented(params->type))
2137 flags |= IWL_UMAC_SCAN_GEN_FLAGS_FRAGMENTED;
2138
2139 if (iwl_mvm_is_cdb_supported(mvm) &&
2140 iwl_mvm_is_scan_fragmented(params->hb_type))
2141 flags |= IWL_UMAC_SCAN_GEN_FLAGS_LMAC2_FRAGMENTED;
2142
2143 if (iwl_mvm_rrm_scan_needed(mvm) &&
2144 fw_has_capa(&mvm->fw->ucode_capa,
2145 IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT))
2146 flags |= IWL_UMAC_SCAN_GEN_FLAGS_RRM_ENABLED;
2147
2148 if (params->pass_all)
2149 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PASS_ALL;
2150 else
2151 flags |= IWL_UMAC_SCAN_GEN_FLAGS_MATCH;
2152
2153 if (!iwl_mvm_is_regular_scan(params))
2154 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PERIODIC;
2155
2156 if (params->iter_notif)
2157 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE;
2158
2159#ifdef CONFIG_IWLWIFI_DEBUGFS
2160 if (mvm->scan_iter_notif_enabled)
2161 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE;
2162#endif
2163
2164 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED)
2165 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE;
2166
2167 if (iwl_mvm_is_adaptive_dwell_supported(mvm) && IWL_MVM_ADWELL_ENABLE)
2168 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ADAPTIVE_DWELL;
2169
2170 /*
2171 * Extended dwell is relevant only for low band to start with, as it is
2172 * being used for social channles only (1, 6, 11), so we can check
2173 * only scan type on low band also for CDB.
2174 */
2175 if (iwl_mvm_is_regular_scan(params) &&
2176 vif->type != NL80211_IFTYPE_P2P_DEVICE &&
2177 !iwl_mvm_is_scan_fragmented(params->type) &&
2178 !iwl_mvm_is_adaptive_dwell_supported(mvm) &&
2179 !iwl_mvm_is_oce_supported(mvm))
2180 flags |= IWL_UMAC_SCAN_GEN_FLAGS_EXTENDED_DWELL;
2181
2182 if (iwl_mvm_is_oce_supported(mvm)) {
2183 if ((params->flags &
2184 NL80211_SCAN_FLAG_OCE_PROBE_REQ_HIGH_TX_RATE))
2185 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PROB_REQ_HIGH_TX_RATE;
2186 /* Since IWL_UMAC_SCAN_GEN_FLAGS_EXTENDED_DWELL and
2187 * NL80211_SCAN_FLAG_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION shares
2188 * the same bit, we need to make sure that we use this bit here
2189 * only when IWL_UMAC_SCAN_GEN_FLAGS_EXTENDED_DWELL cannot be
2190 * used. */
2191 if ((params->flags &
2192 NL80211_SCAN_FLAG_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION) &&
2193 !WARN_ON_ONCE(!iwl_mvm_is_adaptive_dwell_supported(mvm)))
2194 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PROB_REQ_DEFER_SUPP;
2195 if ((params->flags & NL80211_SCAN_FLAG_FILS_MAX_CHANNEL_TIME))
2196 flags |= IWL_UMAC_SCAN_GEN_FLAGS_MAX_CHNL_TIME;
2197 }
2198
2199 return flags;
2200}
2201
2202static int
2203iwl_mvm_fill_scan_sched_params(struct iwl_mvm_scan_params *params,
2204 struct iwl_scan_umac_schedule *schedule,
2205 __le16 *delay)
2206{
2207 int i;
2208 if (WARN_ON(!params->n_scan_plans ||
2209 params->n_scan_plans > IWL_MAX_SCHED_SCAN_PLANS))
2210 return -EINVAL;
2211
2212 for (i = 0; i < params->n_scan_plans; i++) {
2213 struct cfg80211_sched_scan_plan *scan_plan =
2214 ¶ms->scan_plans[i];
2215
2216 schedule[i].iter_count = scan_plan->iterations;
2217 schedule[i].interval =
2218 cpu_to_le16(scan_plan->interval);
2219 }
2220
2221 /*
2222 * If the number of iterations of the last scan plan is set to
2223 * zero, it should run infinitely. However, this is not always the case.
2224 * For example, when regular scan is requested the driver sets one scan
2225 * plan with one iteration.
2226 */
2227 if (!schedule[params->n_scan_plans - 1].iter_count)
2228 schedule[params->n_scan_plans - 1].iter_count = 0xff;
2229
2230 *delay = cpu_to_le16(params->delay);
2231
2232 return 0;
2233}
2234
2235static int iwl_mvm_scan_umac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2236 struct iwl_mvm_scan_params *params,
2237 int type, int uid)
2238{
2239 struct iwl_scan_req_umac *cmd = mvm->scan_cmd;
2240 struct iwl_scan_umac_chan_param *chan_param;
2241 void *cmd_data = iwl_mvm_get_scan_req_umac_data(mvm);
2242 void *sec_part = (u8 *)cmd_data + sizeof(struct iwl_scan_channel_cfg_umac) *
2243 mvm->fw->ucode_capa.n_scan_channels;
2244 struct iwl_scan_req_umac_tail_v2 *tail_v2 =
2245 (struct iwl_scan_req_umac_tail_v2 *)sec_part;
2246 struct iwl_scan_req_umac_tail_v1 *tail_v1;
2247 struct iwl_ssid_ie *direct_scan;
2248 int ret = 0;
2249 u32 ssid_bitmap = 0;
2250 u8 channel_flags = 0;
2251 u16 gen_flags;
2252 struct iwl_mvm_vif *scan_vif = iwl_mvm_vif_from_mac80211(vif);
2253
2254 chan_param = iwl_mvm_get_scan_req_umac_channel(mvm);
2255
2256 iwl_mvm_scan_umac_dwell(mvm, cmd, params);
2257
2258 mvm->scan_uid_status[uid] = type;
2259
2260 cmd->uid = cpu_to_le32(uid);
2261 gen_flags = iwl_mvm_scan_umac_flags(mvm, params, vif);
2262 cmd->general_flags = cpu_to_le16(gen_flags);
2263 if (iwl_mvm_is_adaptive_dwell_v2_supported(mvm)) {
2264 if (gen_flags & IWL_UMAC_SCAN_GEN_FLAGS_FRAGMENTED)
2265 cmd->v8.num_of_fragments[SCAN_LB_LMAC_IDX] =
2266 IWL_SCAN_NUM_OF_FRAGS;
2267 if (gen_flags & IWL_UMAC_SCAN_GEN_FLAGS_LMAC2_FRAGMENTED)
2268 cmd->v8.num_of_fragments[SCAN_HB_LMAC_IDX] =
2269 IWL_SCAN_NUM_OF_FRAGS;
2270
2271 cmd->v8.general_flags2 =
2272 IWL_UMAC_SCAN_GEN_FLAGS2_ALLOW_CHNL_REORDER;
2273 }
2274
2275 cmd->scan_start_mac_id = scan_vif->id;
2276
2277 if (type == IWL_MVM_SCAN_SCHED || type == IWL_MVM_SCAN_NETDETECT)
2278 cmd->flags = cpu_to_le32(IWL_UMAC_SCAN_FLAG_PREEMPTIVE);
2279
2280 if (iwl_mvm_scan_use_ebs(mvm, vif)) {
2281 channel_flags = IWL_SCAN_CHANNEL_FLAG_EBS |
2282 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
2283 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD;
2284
2285 /* set fragmented ebs for fragmented scan on HB channels */
2286 if (iwl_mvm_is_frag_ebs_supported(mvm)) {
2287 if (gen_flags &
2288 IWL_UMAC_SCAN_GEN_FLAGS_LMAC2_FRAGMENTED ||
2289 (!iwl_mvm_is_cdb_supported(mvm) &&
2290 gen_flags & IWL_UMAC_SCAN_GEN_FLAGS_FRAGMENTED))
2291 channel_flags |= IWL_SCAN_CHANNEL_FLAG_EBS_FRAG;
2292 }
2293 }
2294
2295 chan_param->flags = channel_flags;
2296 chan_param->count = params->n_channels;
2297
2298 ret = iwl_mvm_fill_scan_sched_params(params, tail_v2->schedule,
2299 &tail_v2->delay);
2300 if (ret) {
2301 mvm->scan_uid_status[uid] = 0;
2302 return ret;
2303 }
2304
2305 if (iwl_mvm_is_scan_ext_chan_supported(mvm)) {
2306 tail_v2->preq = params->preq;
2307 direct_scan = tail_v2->direct_scan;
2308 } else {
2309 tail_v1 = (struct iwl_scan_req_umac_tail_v1 *)sec_part;
2310 iwl_mvm_scan_set_legacy_probe_req(&tail_v1->preq,
2311 ¶ms->preq);
2312 direct_scan = tail_v1->direct_scan;
2313 }
2314 iwl_scan_build_ssids(params, direct_scan, &ssid_bitmap);
2315 iwl_mvm_umac_scan_cfg_channels(mvm, params->channels,
2316 params->n_channels, ssid_bitmap,
2317 cmd_data);
2318 return 0;
2319}
2320
2321static void
2322iwl_mvm_scan_umac_fill_general_p_v12(struct iwl_mvm *mvm,
2323 struct iwl_mvm_scan_params *params,
2324 struct ieee80211_vif *vif,
2325 struct iwl_scan_general_params_v11 *gp,
2326 u16 gen_flags, u8 gen_flags2,
2327 u32 version)
2328{
2329 struct iwl_mvm_vif *scan_vif = iwl_mvm_vif_from_mac80211(vif);
2330
2331 iwl_mvm_scan_umac_dwell_v11(mvm, gp, params);
2332
2333 IWL_DEBUG_SCAN(mvm, "General: flags=0x%x, flags2=0x%x\n",
2334 gen_flags, gen_flags2);
2335
2336 gp->flags = cpu_to_le16(gen_flags);
2337 gp->flags2 = gen_flags2;
2338
2339 if (gen_flags & IWL_UMAC_SCAN_GEN_FLAGS_V2_FRAGMENTED_LMAC1)
2340 gp->num_of_fragments[SCAN_LB_LMAC_IDX] = IWL_SCAN_NUM_OF_FRAGS;
2341 if (gen_flags & IWL_UMAC_SCAN_GEN_FLAGS_V2_FRAGMENTED_LMAC2)
2342 gp->num_of_fragments[SCAN_HB_LMAC_IDX] = IWL_SCAN_NUM_OF_FRAGS;
2343
2344 mvm->scan_link_id = 0;
2345
2346 if (version < 16) {
2347 gp->scan_start_mac_or_link_id = scan_vif->id;
2348 } else {
2349 struct iwl_mvm_vif_link_info *link_info =
2350 scan_vif->link[params->tsf_report_link_id];
2351
2352 mvm->scan_link_id = params->tsf_report_link_id;
2353 if (!WARN_ON(!link_info))
2354 gp->scan_start_mac_or_link_id = link_info->fw_link_id;
2355 }
2356}
2357
2358static void
2359iwl_mvm_scan_umac_fill_probe_p_v3(struct iwl_mvm_scan_params *params,
2360 struct iwl_scan_probe_params_v3 *pp)
2361{
2362 pp->preq = params->preq;
2363 pp->ssid_num = params->n_ssids;
2364 iwl_scan_build_ssids(params, pp->direct_scan, NULL);
2365}
2366
2367static void
2368iwl_mvm_scan_umac_fill_probe_p_v4(struct iwl_mvm_scan_params *params,
2369 struct iwl_scan_probe_params_v4 *pp,
2370 u32 *bitmap_ssid)
2371{
2372 pp->preq = params->preq;
2373 iwl_scan_build_ssids(params, pp->direct_scan, bitmap_ssid);
2374}
2375
2376static void
2377iwl_mvm_scan_umac_fill_ch_p_v4(struct iwl_mvm *mvm,
2378 struct iwl_mvm_scan_params *params,
2379 struct ieee80211_vif *vif,
2380 struct iwl_scan_channel_params_v4 *cp,
2381 u32 channel_cfg_flags)
2382{
2383 cp->flags = iwl_mvm_scan_umac_chan_flags_v2(mvm, params, vif);
2384 cp->count = params->n_channels;
2385 cp->num_of_aps_override = IWL_SCAN_ADWELL_N_APS_GO_FRIENDLY;
2386
2387 iwl_mvm_umac_scan_cfg_channels_v4(mvm, params->channels, cp,
2388 params->n_channels,
2389 channel_cfg_flags,
2390 vif->type);
2391}
2392
2393static void
2394iwl_mvm_scan_umac_fill_ch_p_v7(struct iwl_mvm *mvm,
2395 struct iwl_mvm_scan_params *params,
2396 struct ieee80211_vif *vif,
2397 struct iwl_scan_channel_params_v7 *cp,
2398 u32 channel_cfg_flags,
2399 u32 version)
2400{
2401 cp->flags = iwl_mvm_scan_umac_chan_flags_v2(mvm, params, vif);
2402 cp->count = params->n_channels;
2403 cp->n_aps_override[0] = IWL_SCAN_ADWELL_N_APS_GO_FRIENDLY;
2404 cp->n_aps_override[1] = IWL_SCAN_ADWELL_N_APS_SOCIAL_CHS;
2405
2406 iwl_mvm_umac_scan_cfg_channels_v7(mvm, params->channels, cp,
2407 params->n_channels,
2408 channel_cfg_flags,
2409 vif->type, version);
2410
2411 if (params->enable_6ghz_passive) {
2412 struct ieee80211_supported_band *sband =
2413 &mvm->nvm_data->bands[NL80211_BAND_6GHZ];
2414 u32 i;
2415
2416 for (i = 0; i < sband->n_channels; i++) {
2417 struct ieee80211_channel *channel =
2418 &sband->channels[i];
2419
2420 struct iwl_scan_channel_cfg_umac *cfg =
2421 &cp->channel_config[cp->count];
2422
2423 if (!cfg80211_channel_is_psc(channel))
2424 continue;
2425
2426 cfg->v5.channel_num = channel->hw_value;
2427 cfg->v5.iter_count = 1;
2428 cfg->v5.iter_interval = 0;
2429
2430 if (version < 17) {
2431 cfg->flags = 0;
2432 cfg->v2.band = PHY_BAND_6;
2433 } else {
2434 cfg->flags = cpu_to_le32(PHY_BAND_6 <<
2435 IWL_CHAN_CFG_FLAGS_BAND_POS);
2436 cfg->v5.psd_20 =
2437 IEEE80211_RNR_TBTT_PARAMS_PSD_RESERVED;
2438 }
2439 cp->count++;
2440 }
2441 }
2442}
2443
2444static int iwl_mvm_scan_umac_v12(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2445 struct iwl_mvm_scan_params *params, int type,
2446 int uid)
2447{
2448 struct iwl_scan_req_umac_v12 *cmd = mvm->scan_cmd;
2449 struct iwl_scan_req_params_v12 *scan_p = &cmd->scan_params;
2450 int ret;
2451 u16 gen_flags;
2452
2453 mvm->scan_uid_status[uid] = type;
2454
2455 cmd->ooc_priority = cpu_to_le32(iwl_mvm_scan_umac_ooc_priority(params));
2456 cmd->uid = cpu_to_le32(uid);
2457
2458 gen_flags = iwl_mvm_scan_umac_flags_v2(mvm, params, vif, type);
2459 iwl_mvm_scan_umac_fill_general_p_v12(mvm, params, vif,
2460 &scan_p->general_params,
2461 gen_flags, 0, 12);
2462
2463 ret = iwl_mvm_fill_scan_sched_params(params,
2464 scan_p->periodic_params.schedule,
2465 &scan_p->periodic_params.delay);
2466 if (ret)
2467 return ret;
2468
2469 iwl_mvm_scan_umac_fill_probe_p_v3(params, &scan_p->probe_params);
2470 iwl_mvm_scan_umac_fill_ch_p_v4(mvm, params, vif,
2471 &scan_p->channel_params, 0);
2472
2473 return 0;
2474}
2475
2476static int iwl_mvm_scan_umac_v14_and_above(struct iwl_mvm *mvm,
2477 struct ieee80211_vif *vif,
2478 struct iwl_mvm_scan_params *params,
2479 int type, int uid, u32 version)
2480{
2481 struct iwl_scan_req_umac_v17 *cmd = mvm->scan_cmd;
2482 struct iwl_scan_req_params_v17 *scan_p = &cmd->scan_params;
2483 struct iwl_scan_channel_params_v7 *cp = &scan_p->channel_params;
2484 struct iwl_scan_probe_params_v4 *pb = &scan_p->probe_params;
2485 int ret;
2486 u16 gen_flags;
2487 u8 gen_flags2;
2488 u32 bitmap_ssid = 0;
2489
2490 mvm->scan_uid_status[uid] = type;
2491
2492 cmd->ooc_priority = cpu_to_le32(iwl_mvm_scan_umac_ooc_priority(params));
2493 cmd->uid = cpu_to_le32(uid);
2494
2495 gen_flags = iwl_mvm_scan_umac_flags_v2(mvm, params, vif, type);
2496
2497 if (version >= 15)
2498 gen_flags2 = iwl_mvm_scan_umac_flags2(mvm, params, vif, type);
2499 else
2500 gen_flags2 = 0;
2501
2502 iwl_mvm_scan_umac_fill_general_p_v12(mvm, params, vif,
2503 &scan_p->general_params,
2504 gen_flags, gen_flags2, version);
2505
2506 ret = iwl_mvm_fill_scan_sched_params(params,
2507 scan_p->periodic_params.schedule,
2508 &scan_p->periodic_params.delay);
2509 if (ret)
2510 return ret;
2511
2512 if (!params->scan_6ghz) {
2513 iwl_mvm_scan_umac_fill_probe_p_v4(params,
2514 &scan_p->probe_params,
2515 &bitmap_ssid);
2516 iwl_mvm_scan_umac_fill_ch_p_v7(mvm, params, vif,
2517 &scan_p->channel_params,
2518 bitmap_ssid,
2519 version);
2520 return 0;
2521 } else {
2522 pb->preq = params->preq;
2523 }
2524
2525 cp->flags = iwl_mvm_scan_umac_chan_flags_v2(mvm, params, vif);
2526 cp->n_aps_override[0] = IWL_SCAN_ADWELL_N_APS_GO_FRIENDLY;
2527 cp->n_aps_override[1] = IWL_SCAN_ADWELL_N_APS_SOCIAL_CHS;
2528
2529 iwl_mvm_umac_scan_fill_6g_chan_list(mvm, params, pb);
2530
2531 cp->count = iwl_mvm_umac_scan_cfg_channels_v7_6g(mvm, params,
2532 params->n_channels,
2533 pb, cp, vif->type,
2534 version);
2535 if (!cp->count) {
2536 mvm->scan_uid_status[uid] = 0;
2537 return -EINVAL;
2538 }
2539
2540 if (!params->n_ssids ||
2541 (params->n_ssids == 1 && !params->ssids[0].ssid_len))
2542 cp->flags |= IWL_SCAN_CHANNEL_FLAG_6G_PSC_NO_FILTER;
2543
2544 return 0;
2545}
2546
2547static int iwl_mvm_scan_umac_v14(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2548 struct iwl_mvm_scan_params *params, int type,
2549 int uid)
2550{
2551 return iwl_mvm_scan_umac_v14_and_above(mvm, vif, params, type, uid, 14);
2552}
2553
2554static int iwl_mvm_scan_umac_v15(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2555 struct iwl_mvm_scan_params *params, int type,
2556 int uid)
2557{
2558 return iwl_mvm_scan_umac_v14_and_above(mvm, vif, params, type, uid, 15);
2559}
2560
2561static int iwl_mvm_scan_umac_v16(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2562 struct iwl_mvm_scan_params *params, int type,
2563 int uid)
2564{
2565 return iwl_mvm_scan_umac_v14_and_above(mvm, vif, params, type, uid, 16);
2566}
2567
2568static int iwl_mvm_scan_umac_v17(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2569 struct iwl_mvm_scan_params *params, int type,
2570 int uid)
2571{
2572 return iwl_mvm_scan_umac_v14_and_above(mvm, vif, params, type, uid, 17);
2573}
2574
2575static int iwl_mvm_num_scans(struct iwl_mvm *mvm)
2576{
2577 return hweight32(mvm->scan_status & IWL_MVM_SCAN_MASK);
2578}
2579
2580static int iwl_mvm_check_running_scans(struct iwl_mvm *mvm, int type)
2581{
2582 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
2583 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
2584
2585 /* This looks a bit arbitrary, but the idea is that if we run
2586 * out of possible simultaneous scans and the userspace is
2587 * trying to run a scan type that is already running, we
2588 * return -EBUSY. But if the userspace wants to start a
2589 * different type of scan, we stop the opposite type to make
2590 * space for the new request. The reason is backwards
2591 * compatibility with old wpa_supplicant that wouldn't stop a
2592 * scheduled scan before starting a normal scan.
2593 */
2594
2595 /* FW supports only a single periodic scan */
2596 if ((type == IWL_MVM_SCAN_SCHED || type == IWL_MVM_SCAN_NETDETECT) &&
2597 mvm->scan_status & (IWL_MVM_SCAN_SCHED | IWL_MVM_SCAN_NETDETECT))
2598 return -EBUSY;
2599
2600 if (iwl_mvm_num_scans(mvm) < mvm->max_scans)
2601 return 0;
2602
2603 /* Use a switch, even though this is a bitmask, so that more
2604 * than one bits set will fall in default and we will warn.
2605 */
2606 switch (type) {
2607 case IWL_MVM_SCAN_REGULAR:
2608 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK)
2609 return -EBUSY;
2610 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, true);
2611 case IWL_MVM_SCAN_SCHED:
2612 if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK)
2613 return -EBUSY;
2614 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true);
2615 case IWL_MVM_SCAN_NETDETECT:
2616 /* For non-unified images, there's no need to stop
2617 * anything for net-detect since the firmware is
2618 * restarted anyway. This way, any sched scans that
2619 * were running will be restarted when we resume.
2620 */
2621 if (!unified_image)
2622 return 0;
2623
2624 /* If this is a unified image and we ran out of scans,
2625 * we need to stop something. Prefer stopping regular
2626 * scans, because the results are useless at this
2627 * point, and we should be able to keep running
2628 * another scheduled scan while suspended.
2629 */
2630 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK)
2631 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR,
2632 true);
2633 if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK)
2634 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED,
2635 true);
2636 /* Something is wrong if no scan was running but we
2637 * ran out of scans.
2638 */
2639 fallthrough;
2640 default:
2641 WARN_ON(1);
2642 break;
2643 }
2644
2645 return -EIO;
2646}
2647
2648#define SCAN_TIMEOUT 30000
2649
2650void iwl_mvm_scan_timeout_wk(struct work_struct *work)
2651{
2652 struct delayed_work *delayed_work = to_delayed_work(work);
2653 struct iwl_mvm *mvm = container_of(delayed_work, struct iwl_mvm,
2654 scan_timeout_dwork);
2655
2656 IWL_ERR(mvm, "regular scan timed out\n");
2657
2658 iwl_force_nmi(mvm->trans);
2659}
2660
2661static void iwl_mvm_fill_scan_type(struct iwl_mvm *mvm,
2662 struct iwl_mvm_scan_params *params,
2663 struct ieee80211_vif *vif)
2664{
2665 if (iwl_mvm_is_cdb_supported(mvm)) {
2666 params->type =
2667 iwl_mvm_get_scan_type_band(mvm, vif,
2668 NL80211_BAND_2GHZ);
2669 params->hb_type =
2670 iwl_mvm_get_scan_type_band(mvm, vif,
2671 NL80211_BAND_5GHZ);
2672 } else {
2673 params->type = iwl_mvm_get_scan_type(mvm, vif);
2674 }
2675}
2676
2677struct iwl_scan_umac_handler {
2678 u8 version;
2679 int (*handler)(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2680 struct iwl_mvm_scan_params *params, int type, int uid);
2681};
2682
2683#define IWL_SCAN_UMAC_HANDLER(_ver) { \
2684 .version = _ver, \
2685 .handler = iwl_mvm_scan_umac_v##_ver, \
2686}
2687
2688static const struct iwl_scan_umac_handler iwl_scan_umac_handlers[] = {
2689 /* set the newest version first to shorten the list traverse time */
2690 IWL_SCAN_UMAC_HANDLER(17),
2691 IWL_SCAN_UMAC_HANDLER(16),
2692 IWL_SCAN_UMAC_HANDLER(15),
2693 IWL_SCAN_UMAC_HANDLER(14),
2694 IWL_SCAN_UMAC_HANDLER(12),
2695};
2696
2697static void iwl_mvm_mei_scan_work(struct work_struct *wk)
2698{
2699 struct iwl_mei_scan_filter *scan_filter =
2700 container_of(wk, struct iwl_mei_scan_filter, scan_work);
2701 struct iwl_mvm *mvm =
2702 container_of(scan_filter, struct iwl_mvm, mei_scan_filter);
2703 struct iwl_mvm_csme_conn_info *info;
2704 struct sk_buff *skb;
2705 u8 bssid[ETH_ALEN];
2706
2707 mutex_lock(&mvm->mutex);
2708 info = iwl_mvm_get_csme_conn_info(mvm);
2709 memcpy(bssid, info->conn_info.bssid, ETH_ALEN);
2710 mutex_unlock(&mvm->mutex);
2711
2712 while ((skb = skb_dequeue(&scan_filter->scan_res))) {
2713 struct ieee80211_mgmt *mgmt = (void *)skb->data;
2714
2715 if (!memcmp(mgmt->bssid, bssid, ETH_ALEN))
2716 ieee80211_rx_irqsafe(mvm->hw, skb);
2717 else
2718 kfree_skb(skb);
2719 }
2720}
2721
2722void iwl_mvm_mei_scan_filter_init(struct iwl_mei_scan_filter *mei_scan_filter)
2723{
2724 skb_queue_head_init(&mei_scan_filter->scan_res);
2725 INIT_WORK(&mei_scan_filter->scan_work, iwl_mvm_mei_scan_work);
2726}
2727
2728/* In case CSME is connected and has link protection set, this function will
2729 * override the scan request to scan only the associated channel and only for
2730 * the associated SSID.
2731 */
2732static void iwl_mvm_mei_limited_scan(struct iwl_mvm *mvm,
2733 struct iwl_mvm_scan_params *params)
2734{
2735 struct iwl_mvm_csme_conn_info *info = iwl_mvm_get_csme_conn_info(mvm);
2736 struct iwl_mei_conn_info *conn_info;
2737 struct ieee80211_channel *chan;
2738 int scan_iters, i;
2739
2740 if (!info) {
2741 IWL_DEBUG_SCAN(mvm, "mei_limited_scan: no connection info\n");
2742 return;
2743 }
2744
2745 conn_info = &info->conn_info;
2746 if (!info->conn_info.lp_state || !info->conn_info.ssid_len)
2747 return;
2748
2749 if (!params->n_channels || !params->n_ssids)
2750 return;
2751
2752 mvm->mei_scan_filter.is_mei_limited_scan = true;
2753
2754 chan = ieee80211_get_channel(mvm->hw->wiphy,
2755 ieee80211_channel_to_frequency(conn_info->channel,
2756 conn_info->band));
2757 if (!chan) {
2758 IWL_DEBUG_SCAN(mvm,
2759 "Failed to get CSME channel (chan=%u band=%u)\n",
2760 conn_info->channel, conn_info->band);
2761 return;
2762 }
2763
2764 /* The mei filtered scan must find the AP, otherwise CSME will
2765 * take the NIC ownership. Add several iterations on the channel to
2766 * make the scan more robust.
2767 */
2768 scan_iters = min(IWL_MEI_SCAN_NUM_ITER, params->n_channels);
2769 params->n_channels = scan_iters;
2770 for (i = 0; i < scan_iters; i++)
2771 params->channels[i] = chan;
2772
2773 IWL_DEBUG_SCAN(mvm, "Mei scan: num iterations=%u\n", scan_iters);
2774
2775 params->n_ssids = 1;
2776 params->ssids[0].ssid_len = conn_info->ssid_len;
2777 memcpy(params->ssids[0].ssid, conn_info->ssid, conn_info->ssid_len);
2778}
2779
2780static int iwl_mvm_build_scan_cmd(struct iwl_mvm *mvm,
2781 struct ieee80211_vif *vif,
2782 struct iwl_host_cmd *hcmd,
2783 struct iwl_mvm_scan_params *params,
2784 int type)
2785{
2786 int uid, i, err;
2787 u8 scan_ver;
2788
2789 lockdep_assert_held(&mvm->mutex);
2790 memset(mvm->scan_cmd, 0, mvm->scan_cmd_size);
2791
2792 iwl_mvm_mei_limited_scan(mvm, params);
2793
2794 if (!fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
2795 hcmd->id = SCAN_OFFLOAD_REQUEST_CMD;
2796
2797 return iwl_mvm_scan_lmac(mvm, vif, params);
2798 }
2799
2800 uid = iwl_mvm_scan_uid_by_status(mvm, 0);
2801 if (uid < 0)
2802 return uid;
2803
2804 hcmd->id = WIDE_ID(IWL_ALWAYS_LONG_GROUP, SCAN_REQ_UMAC);
2805
2806 scan_ver = iwl_fw_lookup_cmd_ver(mvm->fw, SCAN_REQ_UMAC,
2807 IWL_FW_CMD_VER_UNKNOWN);
2808
2809 for (i = 0; i < ARRAY_SIZE(iwl_scan_umac_handlers); i++) {
2810 const struct iwl_scan_umac_handler *ver_handler =
2811 &iwl_scan_umac_handlers[i];
2812
2813 if (ver_handler->version != scan_ver)
2814 continue;
2815
2816 err = ver_handler->handler(mvm, vif, params, type, uid);
2817 return err ? : uid;
2818 }
2819
2820 err = iwl_mvm_scan_umac(mvm, vif, params, type, uid);
2821 if (err)
2822 return err;
2823
2824 return uid;
2825}
2826
2827struct iwl_mvm_scan_respect_p2p_go_iter_data {
2828 struct ieee80211_vif *current_vif;
2829 bool p2p_go;
2830 enum nl80211_band band;
2831};
2832
2833static void iwl_mvm_scan_respect_p2p_go_iter(void *_data, u8 *mac,
2834 struct ieee80211_vif *vif)
2835{
2836 struct iwl_mvm_scan_respect_p2p_go_iter_data *data = _data;
2837 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2838
2839 /* exclude the given vif */
2840 if (vif == data->current_vif)
2841 return;
2842
2843 if (vif->type == NL80211_IFTYPE_AP && vif->p2p) {
2844 u32 link_id;
2845
2846 for (link_id = 0;
2847 link_id < ARRAY_SIZE(mvmvif->link);
2848 link_id++) {
2849 struct iwl_mvm_vif_link_info *link =
2850 mvmvif->link[link_id];
2851
2852 if (link && link->phy_ctxt->id < NUM_PHY_CTX &&
2853 (data->band == NUM_NL80211_BANDS ||
2854 link->phy_ctxt->channel->band == data->band)) {
2855 data->p2p_go = true;
2856 break;
2857 }
2858 }
2859 }
2860}
2861
2862static bool _iwl_mvm_get_respect_p2p_go(struct iwl_mvm *mvm,
2863 struct ieee80211_vif *vif,
2864 bool low_latency,
2865 enum nl80211_band band)
2866{
2867 struct iwl_mvm_scan_respect_p2p_go_iter_data data = {
2868 .current_vif = vif,
2869 .p2p_go = false,
2870 .band = band,
2871 };
2872
2873 if (!low_latency)
2874 return false;
2875
2876 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
2877 IEEE80211_IFACE_ITER_NORMAL,
2878 iwl_mvm_scan_respect_p2p_go_iter,
2879 &data);
2880
2881 return data.p2p_go;
2882}
2883
2884static bool iwl_mvm_get_respect_p2p_go_band(struct iwl_mvm *mvm,
2885 struct ieee80211_vif *vif,
2886 enum nl80211_band band)
2887{
2888 bool low_latency = iwl_mvm_low_latency_band(mvm, band);
2889
2890 return _iwl_mvm_get_respect_p2p_go(mvm, vif, low_latency, band);
2891}
2892
2893static bool iwl_mvm_get_respect_p2p_go(struct iwl_mvm *mvm,
2894 struct ieee80211_vif *vif)
2895{
2896 bool low_latency = iwl_mvm_low_latency(mvm);
2897
2898 return _iwl_mvm_get_respect_p2p_go(mvm, vif, low_latency,
2899 NUM_NL80211_BANDS);
2900}
2901
2902static void iwl_mvm_fill_respect_p2p_go(struct iwl_mvm *mvm,
2903 struct iwl_mvm_scan_params *params,
2904 struct ieee80211_vif *vif)
2905{
2906 if (iwl_mvm_is_cdb_supported(mvm)) {
2907 params->respect_p2p_go =
2908 iwl_mvm_get_respect_p2p_go_band(mvm, vif,
2909 NL80211_BAND_2GHZ);
2910 params->respect_p2p_go_hb =
2911 iwl_mvm_get_respect_p2p_go_band(mvm, vif,
2912 NL80211_BAND_5GHZ);
2913 } else {
2914 params->respect_p2p_go = iwl_mvm_get_respect_p2p_go(mvm, vif);
2915 }
2916}
2917
2918int iwl_mvm_reg_scan_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
2919 struct cfg80211_scan_request *req,
2920 struct ieee80211_scan_ies *ies)
2921{
2922 struct iwl_host_cmd hcmd = {
2923 .len = { iwl_mvm_scan_size(mvm), },
2924 .data = { mvm->scan_cmd, },
2925 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
2926 };
2927 struct iwl_mvm_scan_params params = {};
2928 int ret, uid;
2929 struct cfg80211_sched_scan_plan scan_plan = { .iterations = 1 };
2930
2931 lockdep_assert_held(&mvm->mutex);
2932
2933 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) {
2934 IWL_ERR(mvm, "scan while LAR regdomain is not set\n");
2935 return -EBUSY;
2936 }
2937
2938 ret = iwl_mvm_check_running_scans(mvm, IWL_MVM_SCAN_REGULAR);
2939 if (ret)
2940 return ret;
2941
2942 /* we should have failed registration if scan_cmd was NULL */
2943 if (WARN_ON(!mvm->scan_cmd))
2944 return -ENOMEM;
2945
2946 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels))
2947 return -ENOBUFS;
2948
2949 params.n_ssids = req->n_ssids;
2950 params.flags = req->flags;
2951 params.n_channels = req->n_channels;
2952 params.delay = 0;
2953 params.ssids = req->ssids;
2954 params.channels = req->channels;
2955 params.mac_addr = req->mac_addr;
2956 params.mac_addr_mask = req->mac_addr_mask;
2957 params.no_cck = req->no_cck;
2958 params.pass_all = true;
2959 params.n_match_sets = 0;
2960 params.match_sets = NULL;
2961 ether_addr_copy(params.bssid, req->bssid);
2962
2963 params.scan_plans = &scan_plan;
2964 params.n_scan_plans = 1;
2965
2966 params.n_6ghz_params = req->n_6ghz_params;
2967 params.scan_6ghz_params = req->scan_6ghz_params;
2968 params.scan_6ghz = req->scan_6ghz;
2969 iwl_mvm_fill_scan_type(mvm, ¶ms, vif);
2970 iwl_mvm_fill_respect_p2p_go(mvm, ¶ms, vif);
2971
2972 if (req->duration)
2973 params.iter_notif = true;
2974
2975 params.tsf_report_link_id = req->tsf_report_link_id;
2976 if (params.tsf_report_link_id < 0) {
2977 if (vif->active_links)
2978 params.tsf_report_link_id = __ffs(vif->active_links);
2979 else
2980 params.tsf_report_link_id = 0;
2981 }
2982
2983 iwl_mvm_build_scan_probe(mvm, vif, ies, ¶ms);
2984
2985 iwl_mvm_scan_6ghz_passive_scan(mvm, ¶ms, vif);
2986
2987 uid = iwl_mvm_build_scan_cmd(mvm, vif, &hcmd, ¶ms,
2988 IWL_MVM_SCAN_REGULAR);
2989
2990 if (uid < 0)
2991 return uid;
2992
2993 iwl_mvm_pause_tcm(mvm, false);
2994
2995 ret = iwl_mvm_send_cmd(mvm, &hcmd);
2996 if (ret) {
2997 /* If the scan failed, it usually means that the FW was unable
2998 * to allocate the time events. Warn on it, but maybe we
2999 * should try to send the command again with different params.
3000 */
3001 IWL_ERR(mvm, "Scan failed! ret %d\n", ret);
3002 iwl_mvm_resume_tcm(mvm);
3003 mvm->scan_uid_status[uid] = 0;
3004 return ret;
3005 }
3006
3007 IWL_DEBUG_SCAN(mvm, "Scan request was sent successfully\n");
3008 mvm->scan_status |= IWL_MVM_SCAN_REGULAR;
3009 mvm->scan_vif = iwl_mvm_vif_from_mac80211(vif);
3010
3011 if (params.enable_6ghz_passive)
3012 mvm->last_6ghz_passive_scan_jiffies = jiffies;
3013
3014 schedule_delayed_work(&mvm->scan_timeout_dwork,
3015 msecs_to_jiffies(SCAN_TIMEOUT));
3016
3017 return 0;
3018}
3019
3020int iwl_mvm_sched_scan_start(struct iwl_mvm *mvm,
3021 struct ieee80211_vif *vif,
3022 struct cfg80211_sched_scan_request *req,
3023 struct ieee80211_scan_ies *ies,
3024 int type)
3025{
3026 struct iwl_host_cmd hcmd = {
3027 .len = { iwl_mvm_scan_size(mvm), },
3028 .data = { mvm->scan_cmd, },
3029 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
3030 };
3031 struct iwl_mvm_scan_params params = {};
3032 int ret, uid;
3033 int i, j;
3034 bool non_psc_included = false;
3035
3036 lockdep_assert_held(&mvm->mutex);
3037
3038 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) {
3039 IWL_ERR(mvm, "sched-scan while LAR regdomain is not set\n");
3040 return -EBUSY;
3041 }
3042
3043 ret = iwl_mvm_check_running_scans(mvm, type);
3044 if (ret)
3045 return ret;
3046
3047 /* we should have failed registration if scan_cmd was NULL */
3048 if (WARN_ON(!mvm->scan_cmd))
3049 return -ENOMEM;
3050
3051
3052 params.n_ssids = req->n_ssids;
3053 params.flags = req->flags;
3054 params.n_channels = req->n_channels;
3055 params.ssids = req->ssids;
3056 params.channels = req->channels;
3057 params.mac_addr = req->mac_addr;
3058 params.mac_addr_mask = req->mac_addr_mask;
3059 params.no_cck = false;
3060 params.pass_all = iwl_mvm_scan_pass_all(mvm, req);
3061 params.n_match_sets = req->n_match_sets;
3062 params.match_sets = req->match_sets;
3063 eth_broadcast_addr(params.bssid);
3064 if (!req->n_scan_plans)
3065 return -EINVAL;
3066
3067 params.n_scan_plans = req->n_scan_plans;
3068 params.scan_plans = req->scan_plans;
3069
3070 iwl_mvm_fill_scan_type(mvm, ¶ms, vif);
3071 iwl_mvm_fill_respect_p2p_go(mvm, ¶ms, vif);
3072
3073 /* In theory, LMAC scans can handle a 32-bit delay, but since
3074 * waiting for over 18 hours to start the scan is a bit silly
3075 * and to keep it aligned with UMAC scans (which only support
3076 * 16-bit delays), trim it down to 16-bits.
3077 */
3078 if (req->delay > U16_MAX) {
3079 IWL_DEBUG_SCAN(mvm,
3080 "delay value is > 16-bits, set to max possible\n");
3081 params.delay = U16_MAX;
3082 } else {
3083 params.delay = req->delay;
3084 }
3085
3086 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
3087 if (ret)
3088 return ret;
3089
3090 iwl_mvm_build_scan_probe(mvm, vif, ies, ¶ms);
3091
3092 /* for 6 GHZ band only PSC channels need to be added */
3093 for (i = 0; i < params.n_channels; i++) {
3094 struct ieee80211_channel *channel = params.channels[i];
3095
3096 if (channel->band == NL80211_BAND_6GHZ &&
3097 !cfg80211_channel_is_psc(channel)) {
3098 non_psc_included = true;
3099 break;
3100 }
3101 }
3102
3103 if (non_psc_included) {
3104 params.channels = kmemdup(params.channels,
3105 sizeof(params.channels[0]) *
3106 params.n_channels,
3107 GFP_KERNEL);
3108 if (!params.channels)
3109 return -ENOMEM;
3110
3111 for (i = j = 0; i < params.n_channels; i++) {
3112 if (params.channels[i]->band == NL80211_BAND_6GHZ &&
3113 !cfg80211_channel_is_psc(params.channels[i]))
3114 continue;
3115 params.channels[j++] = params.channels[i];
3116 }
3117 params.n_channels = j;
3118 }
3119
3120 if (non_psc_included &&
3121 !iwl_mvm_scan_fits(mvm, req->n_ssids, ies, params.n_channels)) {
3122 kfree(params.channels);
3123 return -ENOBUFS;
3124 }
3125
3126 uid = iwl_mvm_build_scan_cmd(mvm, vif, &hcmd, ¶ms, type);
3127
3128 if (non_psc_included)
3129 kfree(params.channels);
3130 if (uid < 0)
3131 return uid;
3132
3133 ret = iwl_mvm_send_cmd(mvm, &hcmd);
3134 if (!ret) {
3135 IWL_DEBUG_SCAN(mvm,
3136 "Sched scan request was sent successfully\n");
3137 mvm->scan_status |= type;
3138 } else {
3139 /* If the scan failed, it usually means that the FW was unable
3140 * to allocate the time events. Warn on it, but maybe we
3141 * should try to send the command again with different params.
3142 */
3143 IWL_ERR(mvm, "Sched scan failed! ret %d\n", ret);
3144 mvm->scan_uid_status[uid] = 0;
3145 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
3146 }
3147
3148 return ret;
3149}
3150
3151void iwl_mvm_rx_umac_scan_complete_notif(struct iwl_mvm *mvm,
3152 struct iwl_rx_cmd_buffer *rxb)
3153{
3154 struct iwl_rx_packet *pkt = rxb_addr(rxb);
3155 struct iwl_umac_scan_complete *notif = (void *)pkt->data;
3156 u32 uid = __le32_to_cpu(notif->uid);
3157 bool aborted = (notif->status == IWL_SCAN_OFFLOAD_ABORTED);
3158
3159 mvm->mei_scan_filter.is_mei_limited_scan = false;
3160
3161 if (WARN_ON(!(mvm->scan_uid_status[uid] & mvm->scan_status)))
3162 return;
3163
3164 /* if the scan is already stopping, we don't need to notify mac80211 */
3165 if (mvm->scan_uid_status[uid] == IWL_MVM_SCAN_REGULAR) {
3166 struct cfg80211_scan_info info = {
3167 .aborted = aborted,
3168 .scan_start_tsf = mvm->scan_start,
3169 };
3170 struct iwl_mvm_vif *scan_vif = mvm->scan_vif;
3171 struct iwl_mvm_vif_link_info *link_info =
3172 scan_vif->link[mvm->scan_link_id];
3173
3174 /* It is possible that by the time the scan is complete the link
3175 * was already removed and is not valid.
3176 */
3177 if (link_info)
3178 memcpy(info.tsf_bssid, link_info->bssid, ETH_ALEN);
3179 else
3180 IWL_DEBUG_SCAN(mvm, "Scan link is no longer valid\n");
3181
3182 ieee80211_scan_completed(mvm->hw, &info);
3183 mvm->scan_vif = NULL;
3184 cancel_delayed_work(&mvm->scan_timeout_dwork);
3185 iwl_mvm_resume_tcm(mvm);
3186 } else if (mvm->scan_uid_status[uid] == IWL_MVM_SCAN_SCHED) {
3187 ieee80211_sched_scan_stopped(mvm->hw);
3188 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
3189 }
3190
3191 mvm->scan_status &= ~mvm->scan_uid_status[uid];
3192 IWL_DEBUG_SCAN(mvm,
3193 "Scan completed, uid %u type %u, status %s, EBS status %s\n",
3194 uid, mvm->scan_uid_status[uid],
3195 notif->status == IWL_SCAN_OFFLOAD_COMPLETED ?
3196 "completed" : "aborted",
3197 iwl_mvm_ebs_status_str(notif->ebs_status));
3198 IWL_DEBUG_SCAN(mvm,
3199 "Last line %d, Last iteration %d, Time from last iteration %d\n",
3200 notif->last_schedule, notif->last_iter,
3201 __le32_to_cpu(notif->time_from_last_iter));
3202
3203 if (notif->ebs_status != IWL_SCAN_EBS_SUCCESS &&
3204 notif->ebs_status != IWL_SCAN_EBS_INACTIVE)
3205 mvm->last_ebs_successful = false;
3206
3207 mvm->scan_uid_status[uid] = 0;
3208}
3209
3210void iwl_mvm_rx_umac_scan_iter_complete_notif(struct iwl_mvm *mvm,
3211 struct iwl_rx_cmd_buffer *rxb)
3212{
3213 struct iwl_rx_packet *pkt = rxb_addr(rxb);
3214 struct iwl_umac_scan_iter_complete_notif *notif = (void *)pkt->data;
3215
3216 mvm->scan_start = le64_to_cpu(notif->start_tsf);
3217
3218 IWL_DEBUG_SCAN(mvm,
3219 "UMAC Scan iteration complete: status=0x%x scanned_channels=%d\n",
3220 notif->status, notif->scanned_channels);
3221
3222 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_FOUND) {
3223 IWL_DEBUG_SCAN(mvm, "Pass all scheduled scan results found\n");
3224 ieee80211_sched_scan_results(mvm->hw);
3225 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED;
3226 }
3227
3228 IWL_DEBUG_SCAN(mvm,
3229 "UMAC Scan iteration complete: scan started at %llu (TSF)\n",
3230 mvm->scan_start);
3231}
3232
3233static int iwl_mvm_umac_scan_abort(struct iwl_mvm *mvm, int type)
3234{
3235 struct iwl_umac_scan_abort cmd = {};
3236 int uid, ret;
3237
3238 lockdep_assert_held(&mvm->mutex);
3239
3240 /* We should always get a valid index here, because we already
3241 * checked that this type of scan was running in the generic
3242 * code.
3243 */
3244 uid = iwl_mvm_scan_uid_by_status(mvm, type);
3245 if (WARN_ON_ONCE(uid < 0))
3246 return uid;
3247
3248 cmd.uid = cpu_to_le32(uid);
3249
3250 IWL_DEBUG_SCAN(mvm, "Sending scan abort, uid %u\n", uid);
3251
3252 ret = iwl_mvm_send_cmd_pdu(mvm,
3253 WIDE_ID(IWL_ALWAYS_LONG_GROUP, SCAN_ABORT_UMAC),
3254 0, sizeof(cmd), &cmd);
3255 if (!ret)
3256 mvm->scan_uid_status[uid] = type << IWL_MVM_SCAN_STOPPING_SHIFT;
3257
3258 return ret;
3259}
3260
3261static int iwl_mvm_scan_stop_wait(struct iwl_mvm *mvm, int type)
3262{
3263 struct iwl_notification_wait wait_scan_done;
3264 static const u16 scan_done_notif[] = { SCAN_COMPLETE_UMAC,
3265 SCAN_OFFLOAD_COMPLETE, };
3266 int ret;
3267
3268 lockdep_assert_held(&mvm->mutex);
3269
3270 iwl_init_notification_wait(&mvm->notif_wait, &wait_scan_done,
3271 scan_done_notif,
3272 ARRAY_SIZE(scan_done_notif),
3273 NULL, NULL);
3274
3275 IWL_DEBUG_SCAN(mvm, "Preparing to stop scan, type %x\n", type);
3276
3277 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN))
3278 ret = iwl_mvm_umac_scan_abort(mvm, type);
3279 else
3280 ret = iwl_mvm_lmac_scan_abort(mvm);
3281
3282 if (ret) {
3283 IWL_DEBUG_SCAN(mvm, "couldn't stop scan type %d\n", type);
3284 iwl_remove_notification(&mvm->notif_wait, &wait_scan_done);
3285 return ret;
3286 }
3287
3288 return iwl_wait_notification(&mvm->notif_wait, &wait_scan_done,
3289 1 * HZ);
3290}
3291
3292static size_t iwl_scan_req_umac_get_size(u8 scan_ver)
3293{
3294 switch (scan_ver) {
3295 case 12:
3296 return sizeof(struct iwl_scan_req_umac_v12);
3297 case 14:
3298 case 15:
3299 case 16:
3300 case 17:
3301 return sizeof(struct iwl_scan_req_umac_v17);
3302 }
3303
3304 return 0;
3305}
3306
3307size_t iwl_mvm_scan_size(struct iwl_mvm *mvm)
3308{
3309 int base_size, tail_size;
3310 u8 scan_ver = iwl_fw_lookup_cmd_ver(mvm->fw, SCAN_REQ_UMAC,
3311 IWL_FW_CMD_VER_UNKNOWN);
3312
3313 base_size = iwl_scan_req_umac_get_size(scan_ver);
3314 if (base_size)
3315 return base_size;
3316
3317
3318 if (iwl_mvm_is_adaptive_dwell_v2_supported(mvm))
3319 base_size = IWL_SCAN_REQ_UMAC_SIZE_V8;
3320 else if (iwl_mvm_is_adaptive_dwell_supported(mvm))
3321 base_size = IWL_SCAN_REQ_UMAC_SIZE_V7;
3322 else if (iwl_mvm_cdb_scan_api(mvm))
3323 base_size = IWL_SCAN_REQ_UMAC_SIZE_V6;
3324 else
3325 base_size = IWL_SCAN_REQ_UMAC_SIZE_V1;
3326
3327 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
3328 if (iwl_mvm_is_scan_ext_chan_supported(mvm))
3329 tail_size = sizeof(struct iwl_scan_req_umac_tail_v2);
3330 else
3331 tail_size = sizeof(struct iwl_scan_req_umac_tail_v1);
3332
3333 return base_size +
3334 sizeof(struct iwl_scan_channel_cfg_umac) *
3335 mvm->fw->ucode_capa.n_scan_channels +
3336 tail_size;
3337 }
3338 return sizeof(struct iwl_scan_req_lmac) +
3339 sizeof(struct iwl_scan_channel_cfg_lmac) *
3340 mvm->fw->ucode_capa.n_scan_channels +
3341 sizeof(struct iwl_scan_probe_req_v1);
3342}
3343
3344/*
3345 * This function is used in nic restart flow, to inform mac80211 about scans
3346 * that was aborted by restart flow or by an assert.
3347 */
3348void iwl_mvm_report_scan_aborted(struct iwl_mvm *mvm)
3349{
3350 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
3351 int uid, i;
3352
3353 uid = iwl_mvm_scan_uid_by_status(mvm, IWL_MVM_SCAN_REGULAR);
3354 if (uid >= 0) {
3355 struct cfg80211_scan_info info = {
3356 .aborted = true,
3357 };
3358
3359 cancel_delayed_work(&mvm->scan_timeout_dwork);
3360
3361 ieee80211_scan_completed(mvm->hw, &info);
3362 mvm->scan_uid_status[uid] = 0;
3363 }
3364 uid = iwl_mvm_scan_uid_by_status(mvm, IWL_MVM_SCAN_SCHED);
3365 if (uid >= 0) {
3366 /* Sched scan will be restarted by mac80211 in
3367 * restart_hw, so do not report if FW is about to be
3368 * restarted.
3369 */
3370 if (!mvm->fw_restart)
3371 ieee80211_sched_scan_stopped(mvm->hw);
3372 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
3373 mvm->scan_uid_status[uid] = 0;
3374 }
3375 uid = iwl_mvm_scan_uid_by_status(mvm,
3376 IWL_MVM_SCAN_STOPPING_REGULAR);
3377 if (uid >= 0)
3378 mvm->scan_uid_status[uid] = 0;
3379
3380 uid = iwl_mvm_scan_uid_by_status(mvm,
3381 IWL_MVM_SCAN_STOPPING_SCHED);
3382 if (uid >= 0)
3383 mvm->scan_uid_status[uid] = 0;
3384
3385 /* We shouldn't have any UIDs still set. Loop over all the
3386 * UIDs to make sure there's nothing left there and warn if
3387 * any is found.
3388 */
3389 for (i = 0; i < mvm->max_scans; i++) {
3390 if (WARN_ONCE(mvm->scan_uid_status[i],
3391 "UMAC scan UID %d status was not cleaned\n",
3392 i))
3393 mvm->scan_uid_status[i] = 0;
3394 }
3395 } else {
3396 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) {
3397 struct cfg80211_scan_info info = {
3398 .aborted = true,
3399 };
3400
3401 cancel_delayed_work(&mvm->scan_timeout_dwork);
3402 ieee80211_scan_completed(mvm->hw, &info);
3403 }
3404
3405 /* Sched scan will be restarted by mac80211 in
3406 * restart_hw, so do not report if FW is about to be
3407 * restarted.
3408 */
3409 if ((mvm->scan_status & IWL_MVM_SCAN_SCHED) &&
3410 !mvm->fw_restart) {
3411 ieee80211_sched_scan_stopped(mvm->hw);
3412 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
3413 }
3414 }
3415}
3416
3417int iwl_mvm_scan_stop(struct iwl_mvm *mvm, int type, bool notify)
3418{
3419 int ret;
3420
3421 if (!(mvm->scan_status & type))
3422 return 0;
3423
3424 if (!test_bit(STATUS_DEVICE_ENABLED, &mvm->trans->status)) {
3425 ret = 0;
3426 goto out;
3427 }
3428
3429 ret = iwl_mvm_scan_stop_wait(mvm, type);
3430 if (!ret)
3431 mvm->scan_status |= type << IWL_MVM_SCAN_STOPPING_SHIFT;
3432out:
3433 /* Clear the scan status so the next scan requests will
3434 * succeed and mark the scan as stopping, so that the Rx
3435 * handler doesn't do anything, as the scan was stopped from
3436 * above.
3437 */
3438 mvm->scan_status &= ~type;
3439
3440 if (type == IWL_MVM_SCAN_REGULAR) {
3441 cancel_delayed_work(&mvm->scan_timeout_dwork);
3442 if (notify) {
3443 struct cfg80211_scan_info info = {
3444 .aborted = true,
3445 };
3446
3447 ieee80211_scan_completed(mvm->hw, &info);
3448 }
3449 } else if (notify) {
3450 ieee80211_sched_scan_stopped(mvm->hw);
3451 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
3452 }
3453
3454 return ret;
3455}