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 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 Intel Deutschland GmbH 38 * All rights reserved. 39 * 40 * Redistribution and use in source and binary forms, with or without 41 * modification, are permitted provided that the following conditions 42 * are met: 43 * 44 * * Redistributions of source code must retain the above copyright 45 * notice, this list of conditions and the following disclaimer. 46 * * Redistributions in binary form must reproduce the above copyright 47 * notice, this list of conditions and the following disclaimer in 48 * the documentation and/or other materials provided with the 49 * distribution. 50 * * Neither the name Intel Corporation nor the names of its 51 * contributors may be used to endorse or promote products derived 52 * from this software without specific prior written permission. 53 * 54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 65 * 66 *****************************************************************************/ 67 68 #include <linux/etherdevice.h> 69 #include <net/mac80211.h> 70 71 #include "mvm.h" 72 #include "fw-api-scan.h" 73 #include "iwl-io.h" 74 75 #define IWL_DENSE_EBS_SCAN_RATIO 5 76 #define IWL_SPARSE_EBS_SCAN_RATIO 1 77 78 enum iwl_mvm_traffic_load { 79 IWL_MVM_TRAFFIC_LOW, 80 IWL_MVM_TRAFFIC_MEDIUM, 81 IWL_MVM_TRAFFIC_HIGH, 82 }; 83 84 struct iwl_mvm_scan_timing_params { 85 u32 dwell_active; 86 u32 dwell_passive; 87 u32 dwell_fragmented; 88 u32 dwell_extended; 89 u32 suspend_time; 90 u32 max_out_time; 91 }; 92 93 static struct iwl_mvm_scan_timing_params scan_timing[] = { 94 [IWL_SCAN_TYPE_UNASSOC] = { 95 .dwell_active = 10, 96 .dwell_passive = 110, 97 .dwell_fragmented = 44, 98 .dwell_extended = 90, 99 .suspend_time = 0, 100 .max_out_time = 0, 101 }, 102 [IWL_SCAN_TYPE_WILD] = { 103 .dwell_active = 10, 104 .dwell_passive = 110, 105 .dwell_fragmented = 44, 106 .dwell_extended = 90, 107 .suspend_time = 30, 108 .max_out_time = 120, 109 }, 110 [IWL_SCAN_TYPE_MILD] = { 111 .dwell_active = 10, 112 .dwell_passive = 110, 113 .dwell_fragmented = 44, 114 .dwell_extended = 90, 115 .suspend_time = 120, 116 .max_out_time = 120, 117 }, 118 [IWL_SCAN_TYPE_FRAGMENTED] = { 119 .dwell_active = 10, 120 .dwell_passive = 110, 121 .dwell_fragmented = 44, 122 .suspend_time = 95, 123 .max_out_time = 44, 124 }, 125 }; 126 127 struct iwl_mvm_scan_params { 128 enum iwl_mvm_scan_type type; 129 u32 n_channels; 130 u16 delay; 131 int n_ssids; 132 struct cfg80211_ssid *ssids; 133 struct ieee80211_channel **channels; 134 u32 flags; 135 u8 *mac_addr; 136 u8 *mac_addr_mask; 137 bool no_cck; 138 bool pass_all; 139 int n_match_sets; 140 struct iwl_scan_probe_req preq; 141 struct cfg80211_match_set *match_sets; 142 int n_scan_plans; 143 struct cfg80211_sched_scan_plan *scan_plans; 144 u32 measurement_dwell; 145 }; 146 147 static u8 iwl_mvm_scan_rx_ant(struct iwl_mvm *mvm) 148 { 149 if (mvm->scan_rx_ant != ANT_NONE) 150 return mvm->scan_rx_ant; 151 return iwl_mvm_get_valid_rx_ant(mvm); 152 } 153 154 static inline __le16 iwl_mvm_scan_rx_chain(struct iwl_mvm *mvm) 155 { 156 u16 rx_chain; 157 u8 rx_ant; 158 159 rx_ant = iwl_mvm_scan_rx_ant(mvm); 160 rx_chain = rx_ant << PHY_RX_CHAIN_VALID_POS; 161 rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_MIMO_SEL_POS; 162 rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_SEL_POS; 163 rx_chain |= 0x1 << PHY_RX_CHAIN_DRIVER_FORCE_POS; 164 return cpu_to_le16(rx_chain); 165 } 166 167 static __le32 iwl_mvm_scan_rxon_flags(enum nl80211_band band) 168 { 169 if (band == NL80211_BAND_2GHZ) 170 return cpu_to_le32(PHY_BAND_24); 171 else 172 return cpu_to_le32(PHY_BAND_5); 173 } 174 175 static inline __le32 176 iwl_mvm_scan_rate_n_flags(struct iwl_mvm *mvm, enum nl80211_band band, 177 bool no_cck) 178 { 179 u32 tx_ant; 180 181 mvm->scan_last_antenna_idx = 182 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm), 183 mvm->scan_last_antenna_idx); 184 tx_ant = BIT(mvm->scan_last_antenna_idx) << RATE_MCS_ANT_POS; 185 186 if (band == NL80211_BAND_2GHZ && !no_cck) 187 return cpu_to_le32(IWL_RATE_1M_PLCP | RATE_MCS_CCK_MSK | 188 tx_ant); 189 else 190 return cpu_to_le32(IWL_RATE_6M_PLCP | tx_ant); 191 } 192 193 static void iwl_mvm_scan_condition_iterator(void *data, u8 *mac, 194 struct ieee80211_vif *vif) 195 { 196 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); 197 int *global_cnt = data; 198 199 if (vif->type != NL80211_IFTYPE_P2P_DEVICE && mvmvif->phy_ctxt && 200 mvmvif->phy_ctxt->id < NUM_PHY_CTX) 201 *global_cnt += 1; 202 } 203 204 static enum iwl_mvm_traffic_load iwl_mvm_get_traffic_load(struct iwl_mvm *mvm) 205 { 206 return IWL_MVM_TRAFFIC_LOW; 207 } 208 209 static enum 210 iwl_mvm_scan_type iwl_mvm_get_scan_type(struct iwl_mvm *mvm, bool p2p_device) 211 { 212 int global_cnt = 0; 213 enum iwl_mvm_traffic_load load; 214 bool low_latency; 215 216 ieee80211_iterate_active_interfaces_atomic(mvm->hw, 217 IEEE80211_IFACE_ITER_NORMAL, 218 iwl_mvm_scan_condition_iterator, 219 &global_cnt); 220 if (!global_cnt) 221 return IWL_SCAN_TYPE_UNASSOC; 222 223 load = iwl_mvm_get_traffic_load(mvm); 224 low_latency = iwl_mvm_low_latency(mvm); 225 226 if ((load == IWL_MVM_TRAFFIC_HIGH || low_latency) && !p2p_device && 227 fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_FRAGMENTED_SCAN)) 228 return IWL_SCAN_TYPE_FRAGMENTED; 229 230 if (load >= IWL_MVM_TRAFFIC_MEDIUM || low_latency) 231 return IWL_SCAN_TYPE_MILD; 232 233 return IWL_SCAN_TYPE_WILD; 234 } 235 236 static int 237 iwl_mvm_get_measurement_dwell(struct iwl_mvm *mvm, 238 struct cfg80211_scan_request *req, 239 struct iwl_mvm_scan_params *params) 240 { 241 if (!req->duration) 242 return 0; 243 244 if (req->duration_mandatory && 245 req->duration > scan_timing[params->type].max_out_time) { 246 IWL_DEBUG_SCAN(mvm, 247 "Measurement scan - too long dwell %hu (max out time %u)\n", 248 req->duration, 249 scan_timing[params->type].max_out_time); 250 return -EOPNOTSUPP; 251 } 252 253 return min_t(u32, (u32)req->duration, 254 scan_timing[params->type].max_out_time); 255 } 256 257 static inline bool iwl_mvm_rrm_scan_needed(struct iwl_mvm *mvm) 258 { 259 /* require rrm scan whenever the fw supports it */ 260 return fw_has_capa(&mvm->fw->ucode_capa, 261 IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT); 262 } 263 264 static int iwl_mvm_max_scan_ie_fw_cmd_room(struct iwl_mvm *mvm) 265 { 266 int max_probe_len; 267 268 max_probe_len = SCAN_OFFLOAD_PROBE_REQ_SIZE; 269 270 /* we create the 802.11 header and SSID element */ 271 max_probe_len -= 24 + 2; 272 273 /* DS parameter set element is added on 2.4GHZ band if required */ 274 if (iwl_mvm_rrm_scan_needed(mvm)) 275 max_probe_len -= 3; 276 277 return max_probe_len; 278 } 279 280 int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm) 281 { 282 int max_ie_len = iwl_mvm_max_scan_ie_fw_cmd_room(mvm); 283 284 /* TODO: [BUG] This function should return the maximum allowed size of 285 * scan IEs, however the LMAC scan api contains both 2GHZ and 5GHZ IEs 286 * in the same command. So the correct implementation of this function 287 * is just iwl_mvm_max_scan_ie_fw_cmd_room() / 2. Currently the scan 288 * command has only 512 bytes and it would leave us with about 240 289 * bytes for scan IEs, which is clearly not enough. So meanwhile 290 * we will report an incorrect value. This may result in a failure to 291 * issue a scan in unified_scan_lmac and unified_sched_scan_lmac 292 * functions with -ENOBUFS, if a large enough probe will be provided. 293 */ 294 return max_ie_len; 295 } 296 297 static u8 *iwl_mvm_dump_channel_list(struct iwl_scan_results_notif *res, 298 int num_res, u8 *buf, size_t buf_size) 299 { 300 int i; 301 u8 *pos = buf, *end = buf + buf_size; 302 303 for (i = 0; pos < end && i < num_res; i++) 304 pos += snprintf(pos, end - pos, " %u", res[i].channel); 305 306 /* terminate the string in case the buffer was too short */ 307 *(buf + buf_size - 1) = '\0'; 308 309 return buf; 310 } 311 312 void iwl_mvm_rx_lmac_scan_iter_complete_notif(struct iwl_mvm *mvm, 313 struct iwl_rx_cmd_buffer *rxb) 314 { 315 struct iwl_rx_packet *pkt = rxb_addr(rxb); 316 struct iwl_lmac_scan_complete_notif *notif = (void *)pkt->data; 317 u8 buf[256]; 318 319 IWL_DEBUG_SCAN(mvm, 320 "Scan offload iteration complete: status=0x%x scanned channels=%d channels list: %s\n", 321 notif->status, notif->scanned_channels, 322 iwl_mvm_dump_channel_list(notif->results, 323 notif->scanned_channels, buf, 324 sizeof(buf))); 325 326 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_FOUND) { 327 IWL_DEBUG_SCAN(mvm, "Pass all scheduled scan results found\n"); 328 ieee80211_sched_scan_results(mvm->hw); 329 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED; 330 } 331 } 332 333 void iwl_mvm_rx_scan_match_found(struct iwl_mvm *mvm, 334 struct iwl_rx_cmd_buffer *rxb) 335 { 336 IWL_DEBUG_SCAN(mvm, "Scheduled scan results\n"); 337 ieee80211_sched_scan_results(mvm->hw); 338 } 339 340 static const char *iwl_mvm_ebs_status_str(enum iwl_scan_ebs_status status) 341 { 342 switch (status) { 343 case IWL_SCAN_EBS_SUCCESS: 344 return "successful"; 345 case IWL_SCAN_EBS_INACTIVE: 346 return "inactive"; 347 case IWL_SCAN_EBS_FAILED: 348 case IWL_SCAN_EBS_CHAN_NOT_FOUND: 349 default: 350 return "failed"; 351 } 352 } 353 354 void iwl_mvm_rx_lmac_scan_complete_notif(struct iwl_mvm *mvm, 355 struct iwl_rx_cmd_buffer *rxb) 356 { 357 struct iwl_rx_packet *pkt = rxb_addr(rxb); 358 struct iwl_periodic_scan_complete *scan_notif = (void *)pkt->data; 359 bool aborted = (scan_notif->status == IWL_SCAN_OFFLOAD_ABORTED); 360 361 /* If this happens, the firmware has mistakenly sent an LMAC 362 * notification during UMAC scans -- warn and ignore it. 363 */ 364 if (WARN_ON_ONCE(fw_has_capa(&mvm->fw->ucode_capa, 365 IWL_UCODE_TLV_CAPA_UMAC_SCAN))) 366 return; 367 368 /* scan status must be locked for proper checking */ 369 lockdep_assert_held(&mvm->mutex); 370 371 /* We first check if we were stopping a scan, in which case we 372 * just clear the stopping flag. Then we check if it was a 373 * firmware initiated stop, in which case we need to inform 374 * mac80211. 375 * Note that we can have a stopping and a running scan 376 * simultaneously, but we can't have two different types of 377 * scans stopping or running at the same time (since LMAC 378 * doesn't support it). 379 */ 380 381 if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_SCHED) { 382 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR); 383 384 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n", 385 aborted ? "aborted" : "completed", 386 iwl_mvm_ebs_status_str(scan_notif->ebs_status)); 387 IWL_DEBUG_SCAN(mvm, 388 "Last line %d, Last iteration %d, Time after last iteration %d\n", 389 scan_notif->last_schedule_line, 390 scan_notif->last_schedule_iteration, 391 __le32_to_cpu(scan_notif->time_after_last_iter)); 392 393 mvm->scan_status &= ~IWL_MVM_SCAN_STOPPING_SCHED; 394 } else if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR) { 395 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s\n", 396 aborted ? "aborted" : "completed", 397 iwl_mvm_ebs_status_str(scan_notif->ebs_status)); 398 399 mvm->scan_status &= ~IWL_MVM_SCAN_STOPPING_REGULAR; 400 } else if (mvm->scan_status & IWL_MVM_SCAN_SCHED) { 401 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_REGULAR); 402 403 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n", 404 aborted ? "aborted" : "completed", 405 iwl_mvm_ebs_status_str(scan_notif->ebs_status)); 406 IWL_DEBUG_SCAN(mvm, 407 "Last line %d, Last iteration %d, Time after last iteration %d (FW)\n", 408 scan_notif->last_schedule_line, 409 scan_notif->last_schedule_iteration, 410 __le32_to_cpu(scan_notif->time_after_last_iter)); 411 412 mvm->scan_status &= ~IWL_MVM_SCAN_SCHED; 413 ieee80211_sched_scan_stopped(mvm->hw); 414 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED; 415 } else if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) { 416 struct cfg80211_scan_info info = { 417 .aborted = aborted, 418 }; 419 420 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s (FW)\n", 421 aborted ? "aborted" : "completed", 422 iwl_mvm_ebs_status_str(scan_notif->ebs_status)); 423 424 mvm->scan_status &= ~IWL_MVM_SCAN_REGULAR; 425 ieee80211_scan_completed(mvm->hw, &info); 426 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN); 427 cancel_delayed_work(&mvm->scan_timeout_dwork); 428 } else { 429 IWL_ERR(mvm, 430 "got scan complete notification but no scan is running\n"); 431 } 432 433 mvm->last_ebs_successful = 434 scan_notif->ebs_status == IWL_SCAN_EBS_SUCCESS || 435 scan_notif->ebs_status == IWL_SCAN_EBS_INACTIVE; 436 } 437 438 static int iwl_ssid_exist(u8 *ssid, u8 ssid_len, struct iwl_ssid_ie *ssid_list) 439 { 440 int i; 441 442 for (i = 0; i < PROBE_OPTION_MAX; i++) { 443 if (!ssid_list[i].len) 444 break; 445 if (ssid_list[i].len == ssid_len && 446 !memcmp(ssid_list->ssid, ssid, ssid_len)) 447 return i; 448 } 449 return -1; 450 } 451 452 /* We insert the SSIDs in an inverted order, because the FW will 453 * invert it back. 454 */ 455 static void iwl_scan_build_ssids(struct iwl_mvm_scan_params *params, 456 struct iwl_ssid_ie *ssids, 457 u32 *ssid_bitmap) 458 { 459 int i, j; 460 int index; 461 462 /* 463 * copy SSIDs from match list. 464 * iwl_config_sched_scan_profiles() uses the order of these ssids to 465 * config match list. 466 */ 467 for (i = 0, j = params->n_match_sets - 1; 468 j >= 0 && i < PROBE_OPTION_MAX; 469 i++, j--) { 470 /* skip empty SSID matchsets */ 471 if (!params->match_sets[j].ssid.ssid_len) 472 continue; 473 ssids[i].id = WLAN_EID_SSID; 474 ssids[i].len = params->match_sets[j].ssid.ssid_len; 475 memcpy(ssids[i].ssid, params->match_sets[j].ssid.ssid, 476 ssids[i].len); 477 } 478 479 /* add SSIDs from scan SSID list */ 480 *ssid_bitmap = 0; 481 for (j = params->n_ssids - 1; 482 j >= 0 && i < PROBE_OPTION_MAX; 483 i++, j--) { 484 index = iwl_ssid_exist(params->ssids[j].ssid, 485 params->ssids[j].ssid_len, 486 ssids); 487 if (index < 0) { 488 ssids[i].id = WLAN_EID_SSID; 489 ssids[i].len = params->ssids[j].ssid_len; 490 memcpy(ssids[i].ssid, params->ssids[j].ssid, 491 ssids[i].len); 492 *ssid_bitmap |= BIT(i); 493 } else { 494 *ssid_bitmap |= BIT(index); 495 } 496 } 497 } 498 499 static int 500 iwl_mvm_config_sched_scan_profiles(struct iwl_mvm *mvm, 501 struct cfg80211_sched_scan_request *req) 502 { 503 struct iwl_scan_offload_profile *profile; 504 struct iwl_scan_offload_profile_cfg *profile_cfg; 505 struct iwl_scan_offload_blacklist *blacklist; 506 struct iwl_host_cmd cmd = { 507 .id = SCAN_OFFLOAD_UPDATE_PROFILES_CMD, 508 .len[1] = sizeof(*profile_cfg), 509 .dataflags[0] = IWL_HCMD_DFL_NOCOPY, 510 .dataflags[1] = IWL_HCMD_DFL_NOCOPY, 511 }; 512 int blacklist_len; 513 int i; 514 int ret; 515 516 if (WARN_ON(req->n_match_sets > IWL_SCAN_MAX_PROFILES)) 517 return -EIO; 518 519 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_SHORT_BL) 520 blacklist_len = IWL_SCAN_SHORT_BLACKLIST_LEN; 521 else 522 blacklist_len = IWL_SCAN_MAX_BLACKLIST_LEN; 523 524 blacklist = kzalloc(sizeof(*blacklist) * blacklist_len, GFP_KERNEL); 525 if (!blacklist) 526 return -ENOMEM; 527 528 profile_cfg = kzalloc(sizeof(*profile_cfg), GFP_KERNEL); 529 if (!profile_cfg) { 530 ret = -ENOMEM; 531 goto free_blacklist; 532 } 533 534 cmd.data[0] = blacklist; 535 cmd.len[0] = sizeof(*blacklist) * blacklist_len; 536 cmd.data[1] = profile_cfg; 537 538 /* No blacklist configuration */ 539 540 profile_cfg->num_profiles = req->n_match_sets; 541 profile_cfg->active_clients = SCAN_CLIENT_SCHED_SCAN; 542 profile_cfg->pass_match = SCAN_CLIENT_SCHED_SCAN; 543 profile_cfg->match_notify = SCAN_CLIENT_SCHED_SCAN; 544 if (!req->n_match_sets || !req->match_sets[0].ssid.ssid_len) 545 profile_cfg->any_beacon_notify = SCAN_CLIENT_SCHED_SCAN; 546 547 for (i = 0; i < req->n_match_sets; i++) { 548 profile = &profile_cfg->profiles[i]; 549 profile->ssid_index = i; 550 /* Support any cipher and auth algorithm */ 551 profile->unicast_cipher = 0xff; 552 profile->auth_alg = 0xff; 553 profile->network_type = IWL_NETWORK_TYPE_ANY; 554 profile->band_selection = IWL_SCAN_OFFLOAD_SELECT_ANY; 555 profile->client_bitmap = SCAN_CLIENT_SCHED_SCAN; 556 } 557 558 IWL_DEBUG_SCAN(mvm, "Sending scheduled scan profile config\n"); 559 560 ret = iwl_mvm_send_cmd(mvm, &cmd); 561 kfree(profile_cfg); 562 free_blacklist: 563 kfree(blacklist); 564 565 return ret; 566 } 567 568 static bool iwl_mvm_scan_pass_all(struct iwl_mvm *mvm, 569 struct cfg80211_sched_scan_request *req) 570 { 571 if (req->n_match_sets && req->match_sets[0].ssid.ssid_len) { 572 IWL_DEBUG_SCAN(mvm, 573 "Sending scheduled scan with filtering, n_match_sets %d\n", 574 req->n_match_sets); 575 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED; 576 return false; 577 } 578 579 IWL_DEBUG_SCAN(mvm, "Sending Scheduled scan without filtering\n"); 580 581 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED; 582 return true; 583 } 584 585 static int iwl_mvm_lmac_scan_abort(struct iwl_mvm *mvm) 586 { 587 int ret; 588 struct iwl_host_cmd cmd = { 589 .id = SCAN_OFFLOAD_ABORT_CMD, 590 }; 591 u32 status; 592 593 ret = iwl_mvm_send_cmd_status(mvm, &cmd, &status); 594 if (ret) 595 return ret; 596 597 if (status != CAN_ABORT_STATUS) { 598 /* 599 * The scan abort will return 1 for success or 600 * 2 for "failure". A failure condition can be 601 * due to simply not being in an active scan which 602 * can occur if we send the scan abort before the 603 * microcode has notified us that a scan is completed. 604 */ 605 IWL_DEBUG_SCAN(mvm, "SCAN OFFLOAD ABORT ret %d.\n", status); 606 ret = -ENOENT; 607 } 608 609 return ret; 610 } 611 612 static void iwl_mvm_scan_fill_tx_cmd(struct iwl_mvm *mvm, 613 struct iwl_scan_req_tx_cmd *tx_cmd, 614 bool no_cck) 615 { 616 tx_cmd[0].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL | 617 TX_CMD_FLG_BT_DIS); 618 tx_cmd[0].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm, 619 NL80211_BAND_2GHZ, 620 no_cck); 621 tx_cmd[0].sta_id = mvm->aux_sta.sta_id; 622 623 tx_cmd[1].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL | 624 TX_CMD_FLG_BT_DIS); 625 tx_cmd[1].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm, 626 NL80211_BAND_5GHZ, 627 no_cck); 628 tx_cmd[1].sta_id = mvm->aux_sta.sta_id; 629 } 630 631 static void 632 iwl_mvm_lmac_scan_cfg_channels(struct iwl_mvm *mvm, 633 struct ieee80211_channel **channels, 634 int n_channels, u32 ssid_bitmap, 635 struct iwl_scan_req_lmac *cmd) 636 { 637 struct iwl_scan_channel_cfg_lmac *channel_cfg = (void *)&cmd->data; 638 int i; 639 640 for (i = 0; i < n_channels; i++) { 641 channel_cfg[i].channel_num = 642 cpu_to_le16(channels[i]->hw_value); 643 channel_cfg[i].iter_count = cpu_to_le16(1); 644 channel_cfg[i].iter_interval = 0; 645 channel_cfg[i].flags = 646 cpu_to_le32(IWL_UNIFIED_SCAN_CHANNEL_PARTIAL | 647 ssid_bitmap); 648 } 649 } 650 651 static u8 *iwl_mvm_copy_and_insert_ds_elem(struct iwl_mvm *mvm, const u8 *ies, 652 size_t len, u8 *const pos) 653 { 654 static const u8 before_ds_params[] = { 655 WLAN_EID_SSID, 656 WLAN_EID_SUPP_RATES, 657 WLAN_EID_REQUEST, 658 WLAN_EID_EXT_SUPP_RATES, 659 }; 660 size_t offs; 661 u8 *newpos = pos; 662 663 if (!iwl_mvm_rrm_scan_needed(mvm)) { 664 memcpy(newpos, ies, len); 665 return newpos + len; 666 } 667 668 offs = ieee80211_ie_split(ies, len, 669 before_ds_params, 670 ARRAY_SIZE(before_ds_params), 671 0); 672 673 memcpy(newpos, ies, offs); 674 newpos += offs; 675 676 /* Add a placeholder for DS Parameter Set element */ 677 *newpos++ = WLAN_EID_DS_PARAMS; 678 *newpos++ = 1; 679 *newpos++ = 0; 680 681 memcpy(newpos, ies + offs, len - offs); 682 newpos += len - offs; 683 684 return newpos; 685 } 686 687 static void 688 iwl_mvm_build_scan_probe(struct iwl_mvm *mvm, struct ieee80211_vif *vif, 689 struct ieee80211_scan_ies *ies, 690 struct iwl_mvm_scan_params *params) 691 { 692 struct ieee80211_mgmt *frame = (void *)params->preq.buf; 693 u8 *pos, *newpos; 694 const u8 *mac_addr = params->flags & NL80211_SCAN_FLAG_RANDOM_ADDR ? 695 params->mac_addr : NULL; 696 697 /* 698 * Unfortunately, right now the offload scan doesn't support randomising 699 * within the firmware, so until the firmware API is ready we implement 700 * it in the driver. This means that the scan iterations won't really be 701 * random, only when it's restarted, but at least that helps a bit. 702 */ 703 if (mac_addr) 704 get_random_mask_addr(frame->sa, mac_addr, 705 params->mac_addr_mask); 706 else 707 memcpy(frame->sa, vif->addr, ETH_ALEN); 708 709 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ); 710 eth_broadcast_addr(frame->da); 711 eth_broadcast_addr(frame->bssid); 712 frame->seq_ctrl = 0; 713 714 pos = frame->u.probe_req.variable; 715 *pos++ = WLAN_EID_SSID; 716 *pos++ = 0; 717 718 params->preq.mac_header.offset = 0; 719 params->preq.mac_header.len = cpu_to_le16(24 + 2); 720 721 /* Insert ds parameter set element on 2.4 GHz band */ 722 newpos = iwl_mvm_copy_and_insert_ds_elem(mvm, 723 ies->ies[NL80211_BAND_2GHZ], 724 ies->len[NL80211_BAND_2GHZ], 725 pos); 726 params->preq.band_data[0].offset = cpu_to_le16(pos - params->preq.buf); 727 params->preq.band_data[0].len = cpu_to_le16(newpos - pos); 728 pos = newpos; 729 730 memcpy(pos, ies->ies[NL80211_BAND_5GHZ], 731 ies->len[NL80211_BAND_5GHZ]); 732 params->preq.band_data[1].offset = cpu_to_le16(pos - params->preq.buf); 733 params->preq.band_data[1].len = 734 cpu_to_le16(ies->len[NL80211_BAND_5GHZ]); 735 pos += ies->len[NL80211_BAND_5GHZ]; 736 737 memcpy(pos, ies->common_ies, ies->common_ie_len); 738 params->preq.common_data.offset = cpu_to_le16(pos - params->preq.buf); 739 params->preq.common_data.len = cpu_to_le16(ies->common_ie_len); 740 } 741 742 static void iwl_mvm_scan_lmac_dwell(struct iwl_mvm *mvm, 743 struct iwl_scan_req_lmac *cmd, 744 struct iwl_mvm_scan_params *params) 745 { 746 cmd->active_dwell = scan_timing[params->type].dwell_active; 747 cmd->passive_dwell = scan_timing[params->type].dwell_passive; 748 cmd->fragmented_dwell = scan_timing[params->type].dwell_fragmented; 749 cmd->extended_dwell = scan_timing[params->type].dwell_extended; 750 cmd->max_out_time = cpu_to_le32(scan_timing[params->type].max_out_time); 751 cmd->suspend_time = cpu_to_le32(scan_timing[params->type].suspend_time); 752 cmd->scan_prio = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6); 753 } 754 755 static inline bool iwl_mvm_scan_fits(struct iwl_mvm *mvm, int n_ssids, 756 struct ieee80211_scan_ies *ies, 757 int n_channels) 758 { 759 return ((n_ssids <= PROBE_OPTION_MAX) && 760 (n_channels <= mvm->fw->ucode_capa.n_scan_channels) & 761 (ies->common_ie_len + 762 ies->len[NL80211_BAND_2GHZ] + 763 ies->len[NL80211_BAND_5GHZ] <= 764 iwl_mvm_max_scan_ie_fw_cmd_room(mvm))); 765 } 766 767 static inline bool iwl_mvm_scan_use_ebs(struct iwl_mvm *mvm, 768 struct ieee80211_vif *vif) 769 { 770 const struct iwl_ucode_capabilities *capa = &mvm->fw->ucode_capa; 771 772 /* We can only use EBS if: 773 * 1. the feature is supported; 774 * 2. the last EBS was successful; 775 * 3. if only single scan, the single scan EBS API is supported; 776 * 4. it's not a p2p find operation. 777 */ 778 return ((capa->flags & IWL_UCODE_TLV_FLAGS_EBS_SUPPORT) && 779 mvm->last_ebs_successful && 780 vif->type != NL80211_IFTYPE_P2P_DEVICE); 781 } 782 783 static inline bool iwl_mvm_is_regular_scan(struct iwl_mvm_scan_params *params) 784 { 785 return params->n_scan_plans == 1 && 786 params->scan_plans[0].iterations == 1; 787 } 788 789 static int iwl_mvm_scan_lmac_flags(struct iwl_mvm *mvm, 790 struct iwl_mvm_scan_params *params, 791 struct ieee80211_vif *vif) 792 { 793 int flags = 0; 794 795 if (params->n_ssids == 0) 796 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASSIVE; 797 798 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0) 799 flags |= IWL_MVM_LMAC_SCAN_FLAG_PRE_CONNECTION; 800 801 if (params->type == IWL_SCAN_TYPE_FRAGMENTED) 802 flags |= IWL_MVM_LMAC_SCAN_FLAG_FRAGMENTED; 803 804 if (iwl_mvm_rrm_scan_needed(mvm)) 805 flags |= IWL_MVM_LMAC_SCAN_FLAGS_RRM_ENABLED; 806 807 if (params->pass_all) 808 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASS_ALL; 809 else 810 flags |= IWL_MVM_LMAC_SCAN_FLAG_MATCH; 811 812 #ifdef CONFIG_IWLWIFI_DEBUGFS 813 if (mvm->scan_iter_notif_enabled) 814 flags |= IWL_MVM_LMAC_SCAN_FLAG_ITER_COMPLETE; 815 #endif 816 817 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED) 818 flags |= IWL_MVM_LMAC_SCAN_FLAG_ITER_COMPLETE; 819 820 if (iwl_mvm_is_regular_scan(params) && 821 vif->type != NL80211_IFTYPE_P2P_DEVICE && 822 params->type != IWL_SCAN_TYPE_FRAGMENTED) 823 flags |= IWL_MVM_LMAC_SCAN_FLAG_EXTENDED_DWELL; 824 825 return flags; 826 } 827 828 static int iwl_mvm_scan_lmac(struct iwl_mvm *mvm, struct ieee80211_vif *vif, 829 struct iwl_mvm_scan_params *params) 830 { 831 struct iwl_scan_req_lmac *cmd = mvm->scan_cmd; 832 struct iwl_scan_probe_req *preq = 833 (void *)(cmd->data + sizeof(struct iwl_scan_channel_cfg_lmac) * 834 mvm->fw->ucode_capa.n_scan_channels); 835 u32 ssid_bitmap = 0; 836 int i; 837 838 lockdep_assert_held(&mvm->mutex); 839 840 memset(cmd, 0, ksize(cmd)); 841 842 if (WARN_ON(params->n_scan_plans > IWL_MAX_SCHED_SCAN_PLANS)) 843 return -EINVAL; 844 845 iwl_mvm_scan_lmac_dwell(mvm, cmd, params); 846 847 cmd->rx_chain_select = iwl_mvm_scan_rx_chain(mvm); 848 cmd->iter_num = cpu_to_le32(1); 849 cmd->n_channels = (u8)params->n_channels; 850 851 cmd->delay = cpu_to_le32(params->delay); 852 853 cmd->scan_flags = cpu_to_le32(iwl_mvm_scan_lmac_flags(mvm, params, 854 vif)); 855 856 cmd->flags = iwl_mvm_scan_rxon_flags(params->channels[0]->band); 857 cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP | 858 MAC_FILTER_IN_BEACON); 859 iwl_mvm_scan_fill_tx_cmd(mvm, cmd->tx_cmd, params->no_cck); 860 iwl_scan_build_ssids(params, cmd->direct_scan, &ssid_bitmap); 861 862 /* this API uses bits 1-20 instead of 0-19 */ 863 ssid_bitmap <<= 1; 864 865 for (i = 0; i < params->n_scan_plans; i++) { 866 struct cfg80211_sched_scan_plan *scan_plan = 867 ¶ms->scan_plans[i]; 868 869 cmd->schedule[i].delay = 870 cpu_to_le16(scan_plan->interval); 871 cmd->schedule[i].iterations = scan_plan->iterations; 872 cmd->schedule[i].full_scan_mul = 1; 873 } 874 875 /* 876 * If the number of iterations of the last scan plan is set to 877 * zero, it should run infinitely. However, this is not always the case. 878 * For example, when regular scan is requested the driver sets one scan 879 * plan with one iteration. 880 */ 881 if (!cmd->schedule[i - 1].iterations) 882 cmd->schedule[i - 1].iterations = 0xff; 883 884 if (iwl_mvm_scan_use_ebs(mvm, vif)) { 885 cmd->channel_opt[0].flags = 886 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS | 887 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE | 888 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD); 889 cmd->channel_opt[0].non_ebs_ratio = 890 cpu_to_le16(IWL_DENSE_EBS_SCAN_RATIO); 891 cmd->channel_opt[1].flags = 892 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS | 893 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE | 894 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD); 895 cmd->channel_opt[1].non_ebs_ratio = 896 cpu_to_le16(IWL_SPARSE_EBS_SCAN_RATIO); 897 } 898 899 iwl_mvm_lmac_scan_cfg_channels(mvm, params->channels, 900 params->n_channels, ssid_bitmap, cmd); 901 902 *preq = params->preq; 903 904 return 0; 905 } 906 907 static int rate_to_scan_rate_flag(unsigned int rate) 908 { 909 static const int rate_to_scan_rate[IWL_RATE_COUNT] = { 910 [IWL_RATE_1M_INDEX] = SCAN_CONFIG_RATE_1M, 911 [IWL_RATE_2M_INDEX] = SCAN_CONFIG_RATE_2M, 912 [IWL_RATE_5M_INDEX] = SCAN_CONFIG_RATE_5M, 913 [IWL_RATE_11M_INDEX] = SCAN_CONFIG_RATE_11M, 914 [IWL_RATE_6M_INDEX] = SCAN_CONFIG_RATE_6M, 915 [IWL_RATE_9M_INDEX] = SCAN_CONFIG_RATE_9M, 916 [IWL_RATE_12M_INDEX] = SCAN_CONFIG_RATE_12M, 917 [IWL_RATE_18M_INDEX] = SCAN_CONFIG_RATE_18M, 918 [IWL_RATE_24M_INDEX] = SCAN_CONFIG_RATE_24M, 919 [IWL_RATE_36M_INDEX] = SCAN_CONFIG_RATE_36M, 920 [IWL_RATE_48M_INDEX] = SCAN_CONFIG_RATE_48M, 921 [IWL_RATE_54M_INDEX] = SCAN_CONFIG_RATE_54M, 922 }; 923 924 return rate_to_scan_rate[rate]; 925 } 926 927 static __le32 iwl_mvm_scan_config_rates(struct iwl_mvm *mvm) 928 { 929 struct ieee80211_supported_band *band; 930 unsigned int rates = 0; 931 int i; 932 933 band = &mvm->nvm_data->bands[NL80211_BAND_2GHZ]; 934 for (i = 0; i < band->n_bitrates; i++) 935 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value); 936 band = &mvm->nvm_data->bands[NL80211_BAND_5GHZ]; 937 for (i = 0; i < band->n_bitrates; i++) 938 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value); 939 940 /* Set both basic rates and supported rates */ 941 rates |= SCAN_CONFIG_SUPPORTED_RATE(rates); 942 943 return cpu_to_le32(rates); 944 } 945 946 static void iwl_mvm_fill_scan_dwell(struct iwl_mvm *mvm, 947 struct iwl_scan_dwell *dwell, 948 struct iwl_mvm_scan_timing_params *timing) 949 { 950 dwell->active = timing->dwell_active; 951 dwell->passive = timing->dwell_passive; 952 dwell->fragmented = timing->dwell_fragmented; 953 dwell->extended = timing->dwell_extended; 954 } 955 956 static void iwl_mvm_fill_channels(struct iwl_mvm *mvm, u8 *channels) 957 { 958 struct ieee80211_supported_band *band; 959 int i, j = 0; 960 961 band = &mvm->nvm_data->bands[NL80211_BAND_2GHZ]; 962 for (i = 0; i < band->n_channels; i++, j++) 963 channels[j] = band->channels[i].hw_value; 964 band = &mvm->nvm_data->bands[NL80211_BAND_5GHZ]; 965 for (i = 0; i < band->n_channels; i++, j++) 966 channels[j] = band->channels[i].hw_value; 967 } 968 969 static void iwl_mvm_fill_scan_config(struct iwl_mvm *mvm, void *config, 970 u32 flags, u8 channel_flags) 971 { 972 enum iwl_mvm_scan_type type = iwl_mvm_get_scan_type(mvm, false); 973 struct iwl_scan_config *cfg = config; 974 975 cfg->flags = cpu_to_le32(flags); 976 cfg->tx_chains = cpu_to_le32(iwl_mvm_get_valid_tx_ant(mvm)); 977 cfg->rx_chains = cpu_to_le32(iwl_mvm_scan_rx_ant(mvm)); 978 cfg->legacy_rates = iwl_mvm_scan_config_rates(mvm); 979 cfg->out_of_channel_time = cpu_to_le32(scan_timing[type].max_out_time); 980 cfg->suspend_time = cpu_to_le32(scan_timing[type].suspend_time); 981 982 iwl_mvm_fill_scan_dwell(mvm, &cfg->dwell, &scan_timing[type]); 983 984 memcpy(&cfg->mac_addr, &mvm->addresses[0].addr, ETH_ALEN); 985 986 cfg->bcast_sta_id = mvm->aux_sta.sta_id; 987 cfg->channel_flags = channel_flags; 988 989 iwl_mvm_fill_channels(mvm, cfg->channel_array); 990 } 991 992 static void iwl_mvm_fill_scan_config_cdb(struct iwl_mvm *mvm, void *config, 993 u32 flags, u8 channel_flags) 994 { 995 enum iwl_mvm_scan_type type = iwl_mvm_get_scan_type(mvm, false); 996 struct iwl_scan_config_cdb *cfg = config; 997 998 cfg->flags = cpu_to_le32(flags); 999 cfg->tx_chains = cpu_to_le32(iwl_mvm_get_valid_tx_ant(mvm)); 1000 cfg->rx_chains = cpu_to_le32(iwl_mvm_scan_rx_ant(mvm)); 1001 cfg->legacy_rates = iwl_mvm_scan_config_rates(mvm); 1002 cfg->out_of_channel_time[0] = 1003 cpu_to_le32(scan_timing[type].max_out_time); 1004 cfg->out_of_channel_time[1] = 1005 cpu_to_le32(scan_timing[type].max_out_time); 1006 cfg->suspend_time[0] = cpu_to_le32(scan_timing[type].suspend_time); 1007 cfg->suspend_time[1] = cpu_to_le32(scan_timing[type].suspend_time); 1008 1009 iwl_mvm_fill_scan_dwell(mvm, &cfg->dwell, &scan_timing[type]); 1010 1011 memcpy(&cfg->mac_addr, &mvm->addresses[0].addr, ETH_ALEN); 1012 1013 cfg->bcast_sta_id = mvm->aux_sta.sta_id; 1014 cfg->channel_flags = channel_flags; 1015 1016 iwl_mvm_fill_channels(mvm, cfg->channel_array); 1017 } 1018 1019 int iwl_mvm_config_scan(struct iwl_mvm *mvm) 1020 { 1021 void *cfg; 1022 int ret, cmd_size; 1023 struct iwl_host_cmd cmd = { 1024 .id = iwl_cmd_id(SCAN_CFG_CMD, IWL_ALWAYS_LONG_GROUP, 0), 1025 }; 1026 enum iwl_mvm_scan_type type = iwl_mvm_get_scan_type(mvm, false); 1027 int num_channels = 1028 mvm->nvm_data->bands[NL80211_BAND_2GHZ].n_channels + 1029 mvm->nvm_data->bands[NL80211_BAND_5GHZ].n_channels; 1030 u32 flags; 1031 u8 channel_flags; 1032 1033 if (WARN_ON(num_channels > mvm->fw->ucode_capa.n_scan_channels)) 1034 return -ENOBUFS; 1035 1036 if (type == mvm->scan_type) { 1037 IWL_DEBUG_SCAN(mvm, 1038 "Ignoring UMAC scan config of the same type\n"); 1039 return 0; 1040 } 1041 1042 if (iwl_mvm_is_cdb_supported(mvm)) 1043 cmd_size = sizeof(struct iwl_scan_config_cdb); 1044 else 1045 cmd_size = sizeof(struct iwl_scan_config); 1046 cmd_size += mvm->fw->ucode_capa.n_scan_channels; 1047 1048 cfg = kzalloc(cmd_size, GFP_KERNEL); 1049 if (!cfg) 1050 return -ENOMEM; 1051 1052 flags = SCAN_CONFIG_FLAG_ACTIVATE | 1053 SCAN_CONFIG_FLAG_ALLOW_CHUB_REQS | 1054 SCAN_CONFIG_FLAG_SET_TX_CHAINS | 1055 SCAN_CONFIG_FLAG_SET_RX_CHAINS | 1056 SCAN_CONFIG_FLAG_SET_AUX_STA_ID | 1057 SCAN_CONFIG_FLAG_SET_ALL_TIMES | 1058 SCAN_CONFIG_FLAG_SET_LEGACY_RATES | 1059 SCAN_CONFIG_FLAG_SET_MAC_ADDR | 1060 SCAN_CONFIG_FLAG_SET_CHANNEL_FLAGS | 1061 SCAN_CONFIG_N_CHANNELS(num_channels) | 1062 (type == IWL_SCAN_TYPE_FRAGMENTED ? 1063 SCAN_CONFIG_FLAG_SET_FRAGMENTED : 1064 SCAN_CONFIG_FLAG_CLEAR_FRAGMENTED); 1065 1066 channel_flags = IWL_CHANNEL_FLAG_EBS | 1067 IWL_CHANNEL_FLAG_ACCURATE_EBS | 1068 IWL_CHANNEL_FLAG_EBS_ADD | 1069 IWL_CHANNEL_FLAG_PRE_SCAN_PASSIVE2ACTIVE; 1070 1071 if (iwl_mvm_is_cdb_supported(mvm)) { 1072 flags |= (type == IWL_SCAN_TYPE_FRAGMENTED) ? 1073 SCAN_CONFIG_FLAG_SET_LMAC2_FRAGMENTED : 1074 SCAN_CONFIG_FLAG_CLEAR_LMAC2_FRAGMENTED; 1075 iwl_mvm_fill_scan_config_cdb(mvm, cfg, flags, channel_flags); 1076 } else { 1077 iwl_mvm_fill_scan_config(mvm, cfg, flags, channel_flags); 1078 } 1079 1080 cmd.data[0] = cfg; 1081 cmd.len[0] = cmd_size; 1082 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY; 1083 1084 IWL_DEBUG_SCAN(mvm, "Sending UMAC scan config\n"); 1085 1086 ret = iwl_mvm_send_cmd(mvm, &cmd); 1087 if (!ret) 1088 mvm->scan_type = type; 1089 1090 kfree(cfg); 1091 return ret; 1092 } 1093 1094 static int iwl_mvm_scan_uid_by_status(struct iwl_mvm *mvm, int status) 1095 { 1096 int i; 1097 1098 for (i = 0; i < mvm->max_scans; i++) 1099 if (mvm->scan_uid_status[i] == status) 1100 return i; 1101 1102 return -ENOENT; 1103 } 1104 1105 static void iwl_mvm_scan_umac_dwell(struct iwl_mvm *mvm, 1106 struct iwl_scan_req_umac *cmd, 1107 struct iwl_mvm_scan_params *params) 1108 { 1109 struct iwl_mvm_scan_timing_params *timing = &scan_timing[params->type]; 1110 1111 if (params->measurement_dwell) { 1112 cmd->active_dwell = params->measurement_dwell; 1113 cmd->passive_dwell = params->measurement_dwell; 1114 cmd->extended_dwell = params->measurement_dwell; 1115 } else { 1116 cmd->active_dwell = timing->dwell_active; 1117 cmd->passive_dwell = timing->dwell_passive; 1118 cmd->extended_dwell = timing->dwell_extended; 1119 } 1120 cmd->fragmented_dwell = timing->dwell_fragmented; 1121 1122 if (iwl_mvm_is_cdb_supported(mvm)) { 1123 cmd->cdb.max_out_time[0] = cpu_to_le32(timing->max_out_time); 1124 cmd->cdb.suspend_time[0] = cpu_to_le32(timing->suspend_time); 1125 cmd->cdb.max_out_time[1] = cpu_to_le32(timing->max_out_time); 1126 cmd->cdb.suspend_time[1] = cpu_to_le32(timing->suspend_time); 1127 cmd->cdb.scan_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6); 1128 } else { 1129 cmd->no_cdb.max_out_time = cpu_to_le32(timing->max_out_time); 1130 cmd->no_cdb.suspend_time = cpu_to_le32(timing->suspend_time); 1131 cmd->no_cdb.scan_priority = 1132 cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6); 1133 } 1134 1135 if (iwl_mvm_is_regular_scan(params)) 1136 cmd->ooc_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6); 1137 else 1138 cmd->ooc_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_2); 1139 } 1140 1141 static void 1142 iwl_mvm_umac_scan_cfg_channels(struct iwl_mvm *mvm, 1143 struct ieee80211_channel **channels, 1144 int n_channels, u32 ssid_bitmap, 1145 struct iwl_scan_channel_cfg_umac *channel_cfg) 1146 { 1147 int i; 1148 1149 for (i = 0; i < n_channels; i++) { 1150 channel_cfg[i].flags = cpu_to_le32(ssid_bitmap); 1151 channel_cfg[i].channel_num = channels[i]->hw_value; 1152 channel_cfg[i].iter_count = 1; 1153 channel_cfg[i].iter_interval = 0; 1154 } 1155 } 1156 1157 static u16 iwl_mvm_scan_umac_flags(struct iwl_mvm *mvm, 1158 struct iwl_mvm_scan_params *params, 1159 struct ieee80211_vif *vif) 1160 { 1161 u16 flags = 0; 1162 1163 if (params->n_ssids == 0) 1164 flags = IWL_UMAC_SCAN_GEN_FLAGS_PASSIVE; 1165 1166 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0) 1167 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PRE_CONNECT; 1168 1169 if (params->type == IWL_SCAN_TYPE_FRAGMENTED) { 1170 flags |= IWL_UMAC_SCAN_GEN_FLAGS_FRAGMENTED; 1171 if (iwl_mvm_is_cdb_supported(mvm)) 1172 flags |= IWL_UMAC_SCAN_GEN_FLAGS_LMAC2_FRAGMENTED; 1173 } 1174 1175 if (iwl_mvm_rrm_scan_needed(mvm)) 1176 flags |= IWL_UMAC_SCAN_GEN_FLAGS_RRM_ENABLED; 1177 1178 if (params->pass_all) 1179 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PASS_ALL; 1180 else 1181 flags |= IWL_UMAC_SCAN_GEN_FLAGS_MATCH; 1182 1183 if (!iwl_mvm_is_regular_scan(params)) 1184 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PERIODIC; 1185 1186 if (params->measurement_dwell) 1187 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE; 1188 1189 #ifdef CONFIG_IWLWIFI_DEBUGFS 1190 if (mvm->scan_iter_notif_enabled) 1191 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE; 1192 #endif 1193 1194 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED) 1195 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE; 1196 1197 if (iwl_mvm_is_regular_scan(params) && 1198 vif->type != NL80211_IFTYPE_P2P_DEVICE && 1199 params->type != IWL_SCAN_TYPE_FRAGMENTED) 1200 flags |= IWL_UMAC_SCAN_GEN_FLAGS_EXTENDED_DWELL; 1201 1202 return flags; 1203 } 1204 1205 static int iwl_mvm_scan_umac(struct iwl_mvm *mvm, struct ieee80211_vif *vif, 1206 struct iwl_mvm_scan_params *params, 1207 int type) 1208 { 1209 struct iwl_scan_req_umac *cmd = mvm->scan_cmd; 1210 void *cmd_data = iwl_mvm_is_cdb_supported(mvm) ? 1211 (void *)&cmd->cdb.data : (void *)&cmd->no_cdb.data; 1212 struct iwl_scan_req_umac_tail *sec_part = cmd_data + 1213 sizeof(struct iwl_scan_channel_cfg_umac) * 1214 mvm->fw->ucode_capa.n_scan_channels; 1215 int uid, i; 1216 u32 ssid_bitmap = 0; 1217 u8 channel_flags = 0; 1218 struct iwl_mvm_vif *scan_vif = iwl_mvm_vif_from_mac80211(vif); 1219 1220 lockdep_assert_held(&mvm->mutex); 1221 1222 if (WARN_ON(params->n_scan_plans > IWL_MAX_SCHED_SCAN_PLANS)) 1223 return -EINVAL; 1224 1225 uid = iwl_mvm_scan_uid_by_status(mvm, 0); 1226 if (uid < 0) 1227 return uid; 1228 1229 memset(cmd, 0, ksize(cmd)); 1230 1231 iwl_mvm_scan_umac_dwell(mvm, cmd, params); 1232 1233 mvm->scan_uid_status[uid] = type; 1234 1235 cmd->uid = cpu_to_le32(uid); 1236 cmd->general_flags = cpu_to_le16(iwl_mvm_scan_umac_flags(mvm, params, 1237 vif)); 1238 cmd->scan_start_mac_id = scan_vif->id; 1239 1240 if (type == IWL_MVM_SCAN_SCHED || type == IWL_MVM_SCAN_NETDETECT) 1241 cmd->flags = cpu_to_le32(IWL_UMAC_SCAN_FLAG_PREEMPTIVE); 1242 1243 if (iwl_mvm_scan_use_ebs(mvm, vif)) 1244 channel_flags = IWL_SCAN_CHANNEL_FLAG_EBS | 1245 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE | 1246 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD; 1247 1248 if (iwl_mvm_is_cdb_supported(mvm)) { 1249 cmd->cdb.channel_flags = channel_flags; 1250 cmd->cdb.n_channels = params->n_channels; 1251 } else { 1252 cmd->no_cdb.channel_flags = channel_flags; 1253 cmd->no_cdb.n_channels = params->n_channels; 1254 } 1255 1256 iwl_scan_build_ssids(params, sec_part->direct_scan, &ssid_bitmap); 1257 1258 iwl_mvm_umac_scan_cfg_channels(mvm, params->channels, 1259 params->n_channels, ssid_bitmap, 1260 cmd_data); 1261 1262 for (i = 0; i < params->n_scan_plans; i++) { 1263 struct cfg80211_sched_scan_plan *scan_plan = 1264 ¶ms->scan_plans[i]; 1265 1266 sec_part->schedule[i].iter_count = scan_plan->iterations; 1267 sec_part->schedule[i].interval = 1268 cpu_to_le16(scan_plan->interval); 1269 } 1270 1271 /* 1272 * If the number of iterations of the last scan plan is set to 1273 * zero, it should run infinitely. However, this is not always the case. 1274 * For example, when regular scan is requested the driver sets one scan 1275 * plan with one iteration. 1276 */ 1277 if (!sec_part->schedule[i - 1].iter_count) 1278 sec_part->schedule[i - 1].iter_count = 0xff; 1279 1280 sec_part->delay = cpu_to_le16(params->delay); 1281 sec_part->preq = params->preq; 1282 1283 return 0; 1284 } 1285 1286 static int iwl_mvm_num_scans(struct iwl_mvm *mvm) 1287 { 1288 return hweight32(mvm->scan_status & IWL_MVM_SCAN_MASK); 1289 } 1290 1291 static int iwl_mvm_check_running_scans(struct iwl_mvm *mvm, int type) 1292 { 1293 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa, 1294 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG); 1295 1296 /* This looks a bit arbitrary, but the idea is that if we run 1297 * out of possible simultaneous scans and the userspace is 1298 * trying to run a scan type that is already running, we 1299 * return -EBUSY. But if the userspace wants to start a 1300 * different type of scan, we stop the opposite type to make 1301 * space for the new request. The reason is backwards 1302 * compatibility with old wpa_supplicant that wouldn't stop a 1303 * scheduled scan before starting a normal scan. 1304 */ 1305 1306 if (iwl_mvm_num_scans(mvm) < mvm->max_scans) 1307 return 0; 1308 1309 /* Use a switch, even though this is a bitmask, so that more 1310 * than one bits set will fall in default and we will warn. 1311 */ 1312 switch (type) { 1313 case IWL_MVM_SCAN_REGULAR: 1314 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK) 1315 return -EBUSY; 1316 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, true); 1317 case IWL_MVM_SCAN_SCHED: 1318 if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK) 1319 return -EBUSY; 1320 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true); 1321 case IWL_MVM_SCAN_NETDETECT: 1322 /* For non-unified images, there's no need to stop 1323 * anything for net-detect since the firmware is 1324 * restarted anyway. This way, any sched scans that 1325 * were running will be restarted when we resume. 1326 */ 1327 if (!unified_image) 1328 return 0; 1329 1330 /* If this is a unified image and we ran out of scans, 1331 * we need to stop something. Prefer stopping regular 1332 * scans, because the results are useless at this 1333 * point, and we should be able to keep running 1334 * another scheduled scan while suspended. 1335 */ 1336 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK) 1337 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, 1338 true); 1339 if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK) 1340 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, 1341 true); 1342 1343 /* fall through, something is wrong if no scan was 1344 * running but we ran out of scans. 1345 */ 1346 default: 1347 WARN_ON(1); 1348 break; 1349 } 1350 1351 return -EIO; 1352 } 1353 1354 #define SCAN_TIMEOUT 20000 1355 1356 void iwl_mvm_scan_timeout_wk(struct work_struct *work) 1357 { 1358 struct delayed_work *delayed_work = to_delayed_work(work); 1359 struct iwl_mvm *mvm = container_of(delayed_work, struct iwl_mvm, 1360 scan_timeout_dwork); 1361 1362 IWL_ERR(mvm, "regular scan timed out\n"); 1363 1364 iwl_force_nmi(mvm->trans); 1365 } 1366 1367 int iwl_mvm_reg_scan_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif, 1368 struct cfg80211_scan_request *req, 1369 struct ieee80211_scan_ies *ies) 1370 { 1371 struct iwl_host_cmd hcmd = { 1372 .len = { iwl_mvm_scan_size(mvm), }, 1373 .data = { mvm->scan_cmd, }, 1374 .dataflags = { IWL_HCMD_DFL_NOCOPY, }, 1375 }; 1376 struct iwl_mvm_scan_params params = {}; 1377 int ret; 1378 struct cfg80211_sched_scan_plan scan_plan = { .iterations = 1 }; 1379 1380 lockdep_assert_held(&mvm->mutex); 1381 1382 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) { 1383 IWL_ERR(mvm, "scan while LAR regdomain is not set\n"); 1384 return -EBUSY; 1385 } 1386 1387 ret = iwl_mvm_check_running_scans(mvm, IWL_MVM_SCAN_REGULAR); 1388 if (ret) 1389 return ret; 1390 1391 /* we should have failed registration if scan_cmd was NULL */ 1392 if (WARN_ON(!mvm->scan_cmd)) 1393 return -ENOMEM; 1394 1395 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels)) 1396 return -ENOBUFS; 1397 1398 params.n_ssids = req->n_ssids; 1399 params.flags = req->flags; 1400 params.n_channels = req->n_channels; 1401 params.delay = 0; 1402 params.ssids = req->ssids; 1403 params.channels = req->channels; 1404 params.mac_addr = req->mac_addr; 1405 params.mac_addr_mask = req->mac_addr_mask; 1406 params.no_cck = req->no_cck; 1407 params.pass_all = true; 1408 params.n_match_sets = 0; 1409 params.match_sets = NULL; 1410 1411 params.scan_plans = &scan_plan; 1412 params.n_scan_plans = 1; 1413 1414 params.type = 1415 iwl_mvm_get_scan_type(mvm, 1416 vif->type == NL80211_IFTYPE_P2P_DEVICE); 1417 1418 ret = iwl_mvm_get_measurement_dwell(mvm, req, ¶ms); 1419 if (ret < 0) 1420 return ret; 1421 1422 params.measurement_dwell = ret; 1423 1424 iwl_mvm_build_scan_probe(mvm, vif, ies, ¶ms); 1425 1426 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) { 1427 hcmd.id = iwl_cmd_id(SCAN_REQ_UMAC, IWL_ALWAYS_LONG_GROUP, 0); 1428 ret = iwl_mvm_scan_umac(mvm, vif, ¶ms, 1429 IWL_MVM_SCAN_REGULAR); 1430 } else { 1431 hcmd.id = SCAN_OFFLOAD_REQUEST_CMD; 1432 ret = iwl_mvm_scan_lmac(mvm, vif, ¶ms); 1433 } 1434 1435 if (ret) 1436 return ret; 1437 1438 ret = iwl_mvm_send_cmd(mvm, &hcmd); 1439 if (ret) { 1440 /* If the scan failed, it usually means that the FW was unable 1441 * to allocate the time events. Warn on it, but maybe we 1442 * should try to send the command again with different params. 1443 */ 1444 IWL_ERR(mvm, "Scan failed! ret %d\n", ret); 1445 return ret; 1446 } 1447 1448 IWL_DEBUG_SCAN(mvm, "Scan request was sent successfully\n"); 1449 mvm->scan_status |= IWL_MVM_SCAN_REGULAR; 1450 mvm->scan_vif = iwl_mvm_vif_from_mac80211(vif); 1451 iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN); 1452 1453 queue_delayed_work(system_wq, &mvm->scan_timeout_dwork, 1454 msecs_to_jiffies(SCAN_TIMEOUT)); 1455 1456 return 0; 1457 } 1458 1459 int iwl_mvm_sched_scan_start(struct iwl_mvm *mvm, 1460 struct ieee80211_vif *vif, 1461 struct cfg80211_sched_scan_request *req, 1462 struct ieee80211_scan_ies *ies, 1463 int type) 1464 { 1465 struct iwl_host_cmd hcmd = { 1466 .len = { iwl_mvm_scan_size(mvm), }, 1467 .data = { mvm->scan_cmd, }, 1468 .dataflags = { IWL_HCMD_DFL_NOCOPY, }, 1469 }; 1470 struct iwl_mvm_scan_params params = {}; 1471 int ret; 1472 1473 lockdep_assert_held(&mvm->mutex); 1474 1475 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) { 1476 IWL_ERR(mvm, "sched-scan while LAR regdomain is not set\n"); 1477 return -EBUSY; 1478 } 1479 1480 ret = iwl_mvm_check_running_scans(mvm, type); 1481 if (ret) 1482 return ret; 1483 1484 /* we should have failed registration if scan_cmd was NULL */ 1485 if (WARN_ON(!mvm->scan_cmd)) 1486 return -ENOMEM; 1487 1488 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels)) 1489 return -ENOBUFS; 1490 1491 params.n_ssids = req->n_ssids; 1492 params.flags = req->flags; 1493 params.n_channels = req->n_channels; 1494 params.ssids = req->ssids; 1495 params.channels = req->channels; 1496 params.mac_addr = req->mac_addr; 1497 params.mac_addr_mask = req->mac_addr_mask; 1498 params.no_cck = false; 1499 params.pass_all = iwl_mvm_scan_pass_all(mvm, req); 1500 params.n_match_sets = req->n_match_sets; 1501 params.match_sets = req->match_sets; 1502 if (!req->n_scan_plans) 1503 return -EINVAL; 1504 1505 params.n_scan_plans = req->n_scan_plans; 1506 params.scan_plans = req->scan_plans; 1507 1508 params.type = 1509 iwl_mvm_get_scan_type(mvm, 1510 vif->type == NL80211_IFTYPE_P2P_DEVICE); 1511 1512 /* In theory, LMAC scans can handle a 32-bit delay, but since 1513 * waiting for over 18 hours to start the scan is a bit silly 1514 * and to keep it aligned with UMAC scans (which only support 1515 * 16-bit delays), trim it down to 16-bits. 1516 */ 1517 if (req->delay > U16_MAX) { 1518 IWL_DEBUG_SCAN(mvm, 1519 "delay value is > 16-bits, set to max possible\n"); 1520 params.delay = U16_MAX; 1521 } else { 1522 params.delay = req->delay; 1523 } 1524 1525 ret = iwl_mvm_config_sched_scan_profiles(mvm, req); 1526 if (ret) 1527 return ret; 1528 1529 iwl_mvm_build_scan_probe(mvm, vif, ies, ¶ms); 1530 1531 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) { 1532 hcmd.id = iwl_cmd_id(SCAN_REQ_UMAC, IWL_ALWAYS_LONG_GROUP, 0); 1533 ret = iwl_mvm_scan_umac(mvm, vif, ¶ms, type); 1534 } else { 1535 hcmd.id = SCAN_OFFLOAD_REQUEST_CMD; 1536 ret = iwl_mvm_scan_lmac(mvm, vif, ¶ms); 1537 } 1538 1539 if (ret) 1540 return ret; 1541 1542 ret = iwl_mvm_send_cmd(mvm, &hcmd); 1543 if (!ret) { 1544 IWL_DEBUG_SCAN(mvm, 1545 "Sched scan request was sent successfully\n"); 1546 mvm->scan_status |= type; 1547 } else { 1548 /* If the scan failed, it usually means that the FW was unable 1549 * to allocate the time events. Warn on it, but maybe we 1550 * should try to send the command again with different params. 1551 */ 1552 IWL_ERR(mvm, "Sched scan failed! ret %d\n", ret); 1553 } 1554 1555 return ret; 1556 } 1557 1558 void iwl_mvm_rx_umac_scan_complete_notif(struct iwl_mvm *mvm, 1559 struct iwl_rx_cmd_buffer *rxb) 1560 { 1561 struct iwl_rx_packet *pkt = rxb_addr(rxb); 1562 struct iwl_umac_scan_complete *notif = (void *)pkt->data; 1563 u32 uid = __le32_to_cpu(notif->uid); 1564 bool aborted = (notif->status == IWL_SCAN_OFFLOAD_ABORTED); 1565 1566 if (WARN_ON(!(mvm->scan_uid_status[uid] & mvm->scan_status))) 1567 return; 1568 1569 /* if the scan is already stopping, we don't need to notify mac80211 */ 1570 if (mvm->scan_uid_status[uid] == IWL_MVM_SCAN_REGULAR) { 1571 struct cfg80211_scan_info info = { 1572 .aborted = aborted, 1573 .scan_start_tsf = mvm->scan_start, 1574 }; 1575 1576 memcpy(info.tsf_bssid, mvm->scan_vif->bssid, ETH_ALEN); 1577 ieee80211_scan_completed(mvm->hw, &info); 1578 mvm->scan_vif = NULL; 1579 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN); 1580 cancel_delayed_work(&mvm->scan_timeout_dwork); 1581 } else if (mvm->scan_uid_status[uid] == IWL_MVM_SCAN_SCHED) { 1582 ieee80211_sched_scan_stopped(mvm->hw); 1583 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED; 1584 } 1585 1586 mvm->scan_status &= ~mvm->scan_uid_status[uid]; 1587 IWL_DEBUG_SCAN(mvm, 1588 "Scan completed, uid %u type %u, status %s, EBS status %s\n", 1589 uid, mvm->scan_uid_status[uid], 1590 notif->status == IWL_SCAN_OFFLOAD_COMPLETED ? 1591 "completed" : "aborted", 1592 iwl_mvm_ebs_status_str(notif->ebs_status)); 1593 IWL_DEBUG_SCAN(mvm, 1594 "Last line %d, Last iteration %d, Time from last iteration %d\n", 1595 notif->last_schedule, notif->last_iter, 1596 __le32_to_cpu(notif->time_from_last_iter)); 1597 1598 if (notif->ebs_status != IWL_SCAN_EBS_SUCCESS && 1599 notif->ebs_status != IWL_SCAN_EBS_INACTIVE) 1600 mvm->last_ebs_successful = false; 1601 1602 mvm->scan_uid_status[uid] = 0; 1603 } 1604 1605 void iwl_mvm_rx_umac_scan_iter_complete_notif(struct iwl_mvm *mvm, 1606 struct iwl_rx_cmd_buffer *rxb) 1607 { 1608 struct iwl_rx_packet *pkt = rxb_addr(rxb); 1609 struct iwl_umac_scan_iter_complete_notif *notif = (void *)pkt->data; 1610 u8 buf[256]; 1611 1612 mvm->scan_start = le64_to_cpu(notif->start_tsf); 1613 1614 IWL_DEBUG_SCAN(mvm, 1615 "UMAC Scan iteration complete: status=0x%x scanned_channels=%d channels list: %s\n", 1616 notif->status, notif->scanned_channels, 1617 iwl_mvm_dump_channel_list(notif->results, 1618 notif->scanned_channels, buf, 1619 sizeof(buf))); 1620 1621 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_FOUND) { 1622 IWL_DEBUG_SCAN(mvm, "Pass all scheduled scan results found\n"); 1623 ieee80211_sched_scan_results(mvm->hw); 1624 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED; 1625 } 1626 1627 IWL_DEBUG_SCAN(mvm, 1628 "UMAC Scan iteration complete: scan started at %llu (TSF)\n", 1629 mvm->scan_start); 1630 } 1631 1632 static int iwl_mvm_umac_scan_abort(struct iwl_mvm *mvm, int type) 1633 { 1634 struct iwl_umac_scan_abort cmd = {}; 1635 int uid, ret; 1636 1637 lockdep_assert_held(&mvm->mutex); 1638 1639 /* We should always get a valid index here, because we already 1640 * checked that this type of scan was running in the generic 1641 * code. 1642 */ 1643 uid = iwl_mvm_scan_uid_by_status(mvm, type); 1644 if (WARN_ON_ONCE(uid < 0)) 1645 return uid; 1646 1647 cmd.uid = cpu_to_le32(uid); 1648 1649 IWL_DEBUG_SCAN(mvm, "Sending scan abort, uid %u\n", uid); 1650 1651 ret = iwl_mvm_send_cmd_pdu(mvm, 1652 iwl_cmd_id(SCAN_ABORT_UMAC, 1653 IWL_ALWAYS_LONG_GROUP, 0), 1654 0, sizeof(cmd), &cmd); 1655 if (!ret) 1656 mvm->scan_uid_status[uid] = type << IWL_MVM_SCAN_STOPPING_SHIFT; 1657 1658 return ret; 1659 } 1660 1661 static int iwl_mvm_scan_stop_wait(struct iwl_mvm *mvm, int type) 1662 { 1663 struct iwl_notification_wait wait_scan_done; 1664 static const u16 scan_done_notif[] = { SCAN_COMPLETE_UMAC, 1665 SCAN_OFFLOAD_COMPLETE, }; 1666 int ret; 1667 1668 lockdep_assert_held(&mvm->mutex); 1669 1670 iwl_init_notification_wait(&mvm->notif_wait, &wait_scan_done, 1671 scan_done_notif, 1672 ARRAY_SIZE(scan_done_notif), 1673 NULL, NULL); 1674 1675 IWL_DEBUG_SCAN(mvm, "Preparing to stop scan, type %x\n", type); 1676 1677 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) 1678 ret = iwl_mvm_umac_scan_abort(mvm, type); 1679 else 1680 ret = iwl_mvm_lmac_scan_abort(mvm); 1681 1682 if (ret) { 1683 IWL_DEBUG_SCAN(mvm, "couldn't stop scan type %d\n", type); 1684 iwl_remove_notification(&mvm->notif_wait, &wait_scan_done); 1685 return ret; 1686 } 1687 1688 ret = iwl_wait_notification(&mvm->notif_wait, &wait_scan_done, 1 * HZ); 1689 1690 return ret; 1691 } 1692 1693 int iwl_mvm_scan_size(struct iwl_mvm *mvm) 1694 { 1695 int base_size = IWL_SCAN_REQ_UMAC_SIZE; 1696 1697 if (iwl_mvm_is_cdb_supported(mvm)) 1698 base_size = IWL_SCAN_REQ_UMAC_SIZE_CDB; 1699 1700 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) 1701 return base_size + 1702 sizeof(struct iwl_scan_channel_cfg_umac) * 1703 mvm->fw->ucode_capa.n_scan_channels + 1704 sizeof(struct iwl_scan_req_umac_tail); 1705 1706 return sizeof(struct iwl_scan_req_lmac) + 1707 sizeof(struct iwl_scan_channel_cfg_lmac) * 1708 mvm->fw->ucode_capa.n_scan_channels + 1709 sizeof(struct iwl_scan_probe_req); 1710 } 1711 1712 /* 1713 * This function is used in nic restart flow, to inform mac80211 about scans 1714 * that was aborted by restart flow or by an assert. 1715 */ 1716 void iwl_mvm_report_scan_aborted(struct iwl_mvm *mvm) 1717 { 1718 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) { 1719 int uid, i; 1720 1721 uid = iwl_mvm_scan_uid_by_status(mvm, IWL_MVM_SCAN_REGULAR); 1722 if (uid >= 0) { 1723 struct cfg80211_scan_info info = { 1724 .aborted = true, 1725 }; 1726 1727 ieee80211_scan_completed(mvm->hw, &info); 1728 mvm->scan_uid_status[uid] = 0; 1729 } 1730 uid = iwl_mvm_scan_uid_by_status(mvm, IWL_MVM_SCAN_SCHED); 1731 if (uid >= 0 && !mvm->restart_fw) { 1732 ieee80211_sched_scan_stopped(mvm->hw); 1733 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED; 1734 mvm->scan_uid_status[uid] = 0; 1735 } 1736 1737 /* We shouldn't have any UIDs still set. Loop over all the 1738 * UIDs to make sure there's nothing left there and warn if 1739 * any is found. 1740 */ 1741 for (i = 0; i < mvm->max_scans; i++) { 1742 if (WARN_ONCE(mvm->scan_uid_status[i], 1743 "UMAC scan UID %d status was not cleaned\n", 1744 i)) 1745 mvm->scan_uid_status[i] = 0; 1746 } 1747 } else { 1748 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) { 1749 struct cfg80211_scan_info info = { 1750 .aborted = true, 1751 }; 1752 1753 ieee80211_scan_completed(mvm->hw, &info); 1754 } 1755 1756 /* Sched scan will be restarted by mac80211 in 1757 * restart_hw, so do not report if FW is about to be 1758 * restarted. 1759 */ 1760 if ((mvm->scan_status & IWL_MVM_SCAN_SCHED) && 1761 !mvm->restart_fw) { 1762 ieee80211_sched_scan_stopped(mvm->hw); 1763 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED; 1764 } 1765 } 1766 } 1767 1768 int iwl_mvm_scan_stop(struct iwl_mvm *mvm, int type, bool notify) 1769 { 1770 int ret; 1771 1772 if (!(mvm->scan_status & type)) 1773 return 0; 1774 1775 if (iwl_mvm_is_radio_killed(mvm)) { 1776 ret = 0; 1777 goto out; 1778 } 1779 1780 ret = iwl_mvm_scan_stop_wait(mvm, type); 1781 if (!ret) 1782 mvm->scan_status |= type << IWL_MVM_SCAN_STOPPING_SHIFT; 1783 out: 1784 /* Clear the scan status so the next scan requests will 1785 * succeed and mark the scan as stopping, so that the Rx 1786 * handler doesn't do anything, as the scan was stopped from 1787 * above. 1788 */ 1789 mvm->scan_status &= ~type; 1790 1791 if (type == IWL_MVM_SCAN_REGULAR) { 1792 /* Since the rx handler won't do anything now, we have 1793 * to release the scan reference here. 1794 */ 1795 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN); 1796 cancel_delayed_work(&mvm->scan_timeout_dwork); 1797 if (notify) { 1798 struct cfg80211_scan_info info = { 1799 .aborted = true, 1800 }; 1801 1802 ieee80211_scan_completed(mvm->hw, &info); 1803 } 1804 } else if (notify) { 1805 ieee80211_sched_scan_stopped(mvm->hw); 1806 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED; 1807 } 1808 1809 return ret; 1810 } 1811