blob: 9668f945b4e6fc4301dc28b74492e7e82c97413a [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Luciano Coelho9af91f42015-02-10 10:42:26 +02009 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharona0b48282017-01-12 16:01:11 +020010 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010028 *
29 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020035 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Luciano Coelho9af91f42015-02-10 10:42:26 +020036 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharona0b48282017-01-12 16:01:11 +020037 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010038 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 *
44 * * Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * * Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in
48 * the documentation and/or other materials provided with the
49 * distribution.
50 * * Neither the name Intel Corporation nor the names of its
51 * contributors may be used to endorse or promote products derived
52 * from this software without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 *****************************************************************************/
67
68#include <linux/etherdevice.h>
69#include <net/mac80211.h>
70
71#include "mvm.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010072#include "fw-api-scan.h"
Luca Coelho728e8252016-03-11 09:20:37 +020073#include "iwl-io.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010074
Haim Dreyfussa1ed4022014-12-01 23:30:07 +020075#define IWL_DENSE_EBS_SCAN_RATIO 5
76#define IWL_SPARSE_EBS_SCAN_RATIO 1
Alexander Bondar8a110d92014-03-12 17:31:19 +020077
David Spinadel9437e992015-06-22 13:20:00 +030078enum iwl_mvm_traffic_load {
79 IWL_MVM_TRAFFIC_LOW,
80 IWL_MVM_TRAFFIC_MEDIUM,
81 IWL_MVM_TRAFFIC_HIGH,
82};
83
84struct iwl_mvm_scan_timing_params {
85 u32 dwell_active;
86 u32 dwell_passive;
87 u32 dwell_fragmented;
David Spinadelc3e230b2015-11-22 16:37:36 +020088 u32 dwell_extended;
Alexander Bondar8a110d92014-03-12 17:31:19 +020089 u32 suspend_time;
David Spinadel9437e992015-06-22 13:20:00 +030090 u32 max_out_time;
91};
92
93static 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,
David Spinadelca95ff32016-01-03 17:08:32 +020098 .dwell_extended = 90,
David Spinadel9437e992015-06-22 13:20:00 +030099 .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,
David Spinadelca95ff32016-01-03 17:08:32 +0200106 .dwell_extended = 90,
David Spinadel9437e992015-06-22 13:20:00 +0300107 .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,
David Spinadelca95ff32016-01-03 17:08:32 +0200114 .dwell_extended = 90,
David Spinadel9437e992015-06-22 13:20:00 +0300115 .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
127struct iwl_mvm_scan_params {
128 enum iwl_mvm_scan_type type;
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300129 u32 n_channels;
Luciano Coelho283c2492015-04-17 11:18:46 +0300130 u16 delay;
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300131 int n_ssids;
132 struct cfg80211_ssid *ssids;
133 struct ieee80211_channel **channels;
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300134 u32 flags;
135 u8 *mac_addr;
136 u8 *mac_addr_mask;
137 bool no_cck;
138 bool pass_all;
139 int n_match_sets;
Luciano Coelho45d1b122015-04-15 16:34:13 +0300140 struct iwl_scan_probe_req preq;
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300141 struct cfg80211_match_set *match_sets;
Avraham Sterncd55cce2015-08-19 12:46:12 +0300142 int n_scan_plans;
143 struct cfg80211_sched_scan_plan *scan_plans;
Avrahams Sternaacf8f12016-07-19 11:15:09 +0300144 u32 measurement_dwell;
Alexander Bondar8a110d92014-03-12 17:31:19 +0200145};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100146
David Spinadeld2496222014-05-20 12:46:37 +0300147static 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;
Moshe Harela0544272014-12-08 21:13:14 +0200151 return iwl_mvm_get_valid_rx_ant(mvm);
David Spinadeld2496222014-05-20 12:46:37 +0300152}
153
Johannes Berg8ca151b2013-01-24 14:25:36 +0100154static inline __le16 iwl_mvm_scan_rx_chain(struct iwl_mvm *mvm)
155{
156 u16 rx_chain;
Oren Givon91b05d12013-08-19 08:36:48 +0300157 u8 rx_ant;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100158
David Spinadeld2496222014-05-20 12:46:37 +0300159 rx_ant = iwl_mvm_scan_rx_ant(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100160 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
Johannes Berg57fbcce2016-04-12 15:56:15 +0200167static __le32 iwl_mvm_scan_rxon_flags(enum nl80211_band band)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100168{
Johannes Berg57fbcce2016-04-12 15:56:15 +0200169 if (band == NL80211_BAND_2GHZ)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100170 return cpu_to_le32(PHY_BAND_24);
171 else
172 return cpu_to_le32(PHY_BAND_5);
173}
174
175static inline __le32
Johannes Berg57fbcce2016-04-12 15:56:15 +0200176iwl_mvm_scan_rate_n_flags(struct iwl_mvm *mvm, enum nl80211_band band,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100177 bool no_cck)
178{
179 u32 tx_ant;
180
181 mvm->scan_last_antenna_idx =
Moshe Harela0544272014-12-08 21:13:14 +0200182 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100183 mvm->scan_last_antenna_idx);
184 tx_ant = BIT(mvm->scan_last_antenna_idx) << RATE_MCS_ANT_POS;
185
Johannes Berg57fbcce2016-04-12 15:56:15 +0200186 if (band == NL80211_BAND_2GHZ && !no_cck)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100187 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
Alexander Bondar8a110d92014-03-12 17:31:19 +0200193static void iwl_mvm_scan_condition_iterator(void *data, u8 *mac,
194 struct ieee80211_vif *vif)
Haim Dreyfuss61f63252013-11-03 23:02:59 +0200195{
Alexander Bondar8a110d92014-03-12 17:31:19 +0200196 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200197 int *global_cnt = data;
Haim Dreyfuss61f63252013-11-03 23:02:59 +0200198
David Spinadel1e2ebe02014-10-26 15:53:27 +0200199 if (vif->type != NL80211_IFTYPE_P2P_DEVICE && mvmvif->phy_ctxt &&
Sara Sharon4f23f202016-11-20 13:50:39 +0200200 mvmvif->phy_ctxt->id < NUM_PHY_CTX)
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200201 *global_cnt += 1;
Alexander Bondar8a110d92014-03-12 17:31:19 +0200202}
203
David Spinadel9437e992015-06-22 13:20:00 +0300204static enum iwl_mvm_traffic_load iwl_mvm_get_traffic_load(struct iwl_mvm *mvm)
205{
206 return IWL_MVM_TRAFFIC_LOW;
207}
208
209static enum
Avraham Stern355346b2015-11-26 11:22:33 +0200210iwl_mvm_scan_type iwl_mvm_get_scan_type(struct iwl_mvm *mvm, bool p2p_device)
Alexander Bondar8a110d92014-03-12 17:31:19 +0200211{
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200212 int global_cnt = 0;
David Spinadel9437e992015-06-22 13:20:00 +0300213 enum iwl_mvm_traffic_load load;
214 bool low_latency;
Alexander Bondar8a110d92014-03-12 17:31:19 +0200215
216 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
217 IEEE80211_IFACE_ITER_NORMAL,
218 iwl_mvm_scan_condition_iterator,
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200219 &global_cnt);
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200220 if (!global_cnt)
David Spinadel9437e992015-06-22 13:20:00 +0300221 return IWL_SCAN_TYPE_UNASSOC;
Alexander Bondaref67f18d2014-03-30 10:47:08 +0300222
David Spinadel9437e992015-06-22 13:20:00 +0300223 load = iwl_mvm_get_traffic_load(mvm);
224 low_latency = iwl_mvm_low_latency(mvm);
Alexander Bondaref67f18d2014-03-30 10:47:08 +0300225
Avraham Stern355346b2015-11-26 11:22:33 +0200226 if ((load == IWL_MVM_TRAFFIC_HIGH || low_latency) && !p2p_device &&
David Spinadel9437e992015-06-22 13:20:00 +0300227 fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_FRAGMENTED_SCAN))
228 return IWL_SCAN_TYPE_FRAGMENTED;
Johannes Berg859d9142015-06-01 17:11:11 +0200229
David Spinadel9437e992015-06-22 13:20:00 +0300230 if (load >= IWL_MVM_TRAFFIC_MEDIUM || low_latency)
231 return IWL_SCAN_TYPE_MILD;
David Spinadel2ce89cd2014-07-22 13:11:18 +0300232
David Spinadel9437e992015-06-22 13:20:00 +0300233 return IWL_SCAN_TYPE_WILD;
Haim Dreyfuss61f63252013-11-03 23:02:59 +0200234}
235
Avrahams Sternaacf8f12016-07-19 11:15:09 +0300236static int
237iwl_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
Andrei Otcheretianski73897bd2014-07-09 18:59:14 +0300257static inline bool iwl_mvm_rrm_scan_needed(struct iwl_mvm *mvm)
258{
259 /* require rrm scan whenever the fw supports it */
Johannes Berg859d9142015-06-01 17:11:11 +0200260 return fw_has_capa(&mvm->fw->ucode_capa,
261 IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT);
Andrei Otcheretianski73897bd2014-07-09 18:59:14 +0300262}
263
Luciano Coelho999d2562015-03-27 10:28:26 +0300264static int iwl_mvm_max_scan_ie_fw_cmd_room(struct iwl_mvm *mvm)
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300265{
266 int max_probe_len;
267
Luciano Coelho1f940382015-02-10 13:03:38 +0200268 max_probe_len = SCAN_OFFLOAD_PROBE_REQ_SIZE;
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300269
270 /* we create the 802.11 header and SSID element */
271 max_probe_len -= 24 + 2;
272
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300273 /* 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
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300277 return max_probe_len;
278}
279
Luciano Coelho999d2562015-03-27 10:28:26 +0300280int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm)
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300281{
Luciano Coelho999d2562015-03-27 10:28:26 +0300282 int max_ie_len = iwl_mvm_max_scan_ie_fw_cmd_room(mvm);
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300283
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300284 /* 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
Avraham Stern1fa1bcc2015-03-31 16:22:33 +0300297static 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
Johannes Berg04168412015-06-23 21:22:09 +0200312void iwl_mvm_rx_lmac_scan_iter_complete_notif(struct iwl_mvm *mvm,
313 struct iwl_rx_cmd_buffer *rxb)
Alexander Bondare5d74642014-12-09 19:15:49 +0200314{
315 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Avraham Stern1083fd72015-03-31 16:14:41 +0300316 struct iwl_lmac_scan_complete_notif *notif = (void *)pkt->data;
Avraham Stern1fa1bcc2015-03-31 16:22:33 +0300317 u8 buf[256];
Alexander Bondare5d74642014-12-09 19:15:49 +0200318
319 IWL_DEBUG_SCAN(mvm,
Avraham Stern1fa1bcc2015-03-31 16:22:33 +0300320 "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)));
Luca Coelhoa339e912016-02-02 22:58:46 +0200325
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 }
Alexander Bondare5d74642014-12-09 19:15:49 +0200331}
332
Johannes Berg04168412015-06-23 21:22:09 +0200333void iwl_mvm_rx_scan_match_found(struct iwl_mvm *mvm,
334 struct iwl_rx_cmd_buffer *rxb)
David Spinadel35a000b2013-08-28 09:29:43 +0300335{
David Spinadeld2496222014-05-20 12:46:37 +0300336 IWL_DEBUG_SCAN(mvm, "Scheduled scan results\n");
337 ieee80211_sched_scan_results(mvm->hw);
David Spinadel35a000b2013-08-28 09:29:43 +0300338}
339
David Spinadelf0bf8592015-05-20 11:56:59 +0300340static 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
Johannes Berg04168412015-06-23 21:22:09 +0200354void iwl_mvm_rx_lmac_scan_complete_notif(struct iwl_mvm *mvm,
355 struct iwl_rx_cmd_buffer *rxb)
David Spinadel35a000b2013-08-28 09:29:43 +0300356{
357 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Luciano Coelho9af91f42015-02-10 10:42:26 +0200358 struct iwl_periodic_scan_complete *scan_notif = (void *)pkt->data;
359 bool aborted = (scan_notif->status == IWL_SCAN_OFFLOAD_ABORTED);
David Spinadelfb98be52014-05-04 12:51:10 +0300360
Luca Coelho72a335682015-11-06 10:57:11 +0200361 /* 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
Johannes Berga6623e82014-01-27 15:40:53 +0100368 /* scan status must be locked for proper checking */
369 lockdep_assert_held(&mvm->mutex);
370
Luciano Coelho9af91f42015-02-10 10:42:26 +0200371 /* 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 */
Haim Dreyfusse820c2d2014-04-06 11:19:09 +0300380
Luciano Coelho9af91f42015-02-10 10:42:26 +0200381 if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_SCHED) {
382 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR);
David Spinadel35a000b2013-08-28 09:29:43 +0300383
Ayala Bekera7b3bc92015-08-20 04:00:38 +0300384 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n",
Luciano Coelho9af91f42015-02-10 10:42:26 +0200385 aborted ? "aborted" : "completed",
Ayala Bekera7b3bc92015-08-20 04:00:38 +0300386 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",
Ayala Beker1a84e772015-07-22 13:54:31 +0300389 scan_notif->last_schedule_line,
390 scan_notif->last_schedule_iteration,
391 __le32_to_cpu(scan_notif->time_after_last_iter));
Luciano Coelho9af91f42015-02-10 10:42:26 +0200392
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",
David Spinadelf0bf8592015-05-20 11:56:59 +0300397 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
Luciano Coelho9af91f42015-02-10 10:42:26 +0200398
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
Ayala Bekera7b3bc92015-08-20 04:00:38 +0300403 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n",
Luciano Coelho9af91f42015-02-10 10:42:26 +0200404 aborted ? "aborted" : "completed",
Ayala Bekera7b3bc92015-08-20 04:00:38 +0300405 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",
Ayala Beker1a84e772015-07-22 13:54:31 +0300408 scan_notif->last_schedule_line,
409 scan_notif->last_schedule_iteration,
410 __le32_to_cpu(scan_notif->time_after_last_iter));
Luciano Coelho9af91f42015-02-10 10:42:26 +0200411
412 mvm->scan_status &= ~IWL_MVM_SCAN_SCHED;
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200413 ieee80211_sched_scan_stopped(mvm->hw);
Luca Coelhoa339e912016-02-02 22:58:46 +0200414 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
Luciano Coelho9af91f42015-02-10 10:42:26 +0200415 } else if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) {
Avraham Stern7947d3e2016-07-05 15:23:12 +0300416 struct cfg80211_scan_info info = {
417 .aborted = aborted,
418 };
419
Luciano Coelho9af91f42015-02-10 10:42:26 +0200420 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s (FW)\n",
421 aborted ? "aborted" : "completed",
David Spinadelf0bf8592015-05-20 11:56:59 +0300422 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
Luciano Coelho9af91f42015-02-10 10:42:26 +0200423
424 mvm->scan_status &= ~IWL_MVM_SCAN_REGULAR;
Avraham Stern7947d3e2016-07-05 15:23:12 +0300425 ieee80211_scan_completed(mvm->hw, &info);
Eliad Peller4ff78182014-06-22 14:44:44 +0300426 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
Luca Coelho69e04642016-05-03 12:18:33 +0300427 cancel_delayed_work(&mvm->scan_timeout_dwork);
Luca Coelho728e8252016-03-11 09:20:37 +0200428 } else {
429 IWL_ERR(mvm,
430 "got scan complete notification but no scan is running\n");
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200431 }
David Spinadel35a000b2013-08-28 09:29:43 +0300432
David Spinadelf0bf8592015-05-20 11:56:59 +0300433 mvm->last_ebs_successful =
434 scan_notif->ebs_status == IWL_SCAN_EBS_SUCCESS ||
435 scan_notif->ebs_status == IWL_SCAN_EBS_INACTIVE;
David Spinadel35a000b2013-08-28 09:29:43 +0300436}
437
David Spinadel35a000b2013-08-28 09:29:43 +0300438static 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
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300452/* We insert the SSIDs in an inverted order, because the FW will
453 * invert it back.
454 */
455static void iwl_scan_build_ssids(struct iwl_mvm_scan_params *params,
456 struct iwl_ssid_ie *ssids,
457 u32 *ssid_bitmap)
David Spinadel35a000b2013-08-28 09:29:43 +0300458{
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 */
Luciano Coelho1c1b5b22015-04-02 16:31:42 +0300467 for (i = 0, j = params->n_match_sets - 1;
468 j >= 0 && i < PROBE_OPTION_MAX;
469 i++, j--) {
Johannes Bergea73cbc2014-01-24 10:53:53 +0100470 /* skip empty SSID matchsets */
Luciano Coelho1c1b5b22015-04-02 16:31:42 +0300471 if (!params->match_sets[j].ssid.ssid_len)
Johannes Bergea73cbc2014-01-24 10:53:53 +0100472 continue;
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300473 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);
David Spinadel35a000b2013-08-28 09:29:43 +0300477 }
478
479 /* add SSIDs from scan SSID list */
480 *ssid_bitmap = 0;
Luciano Coelho1c1b5b22015-04-02 16:31:42 +0300481 for (j = params->n_ssids - 1;
482 j >= 0 && i < PROBE_OPTION_MAX;
483 i++, j--) {
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300484 index = iwl_ssid_exist(params->ssids[j].ssid,
485 params->ssids[j].ssid_len,
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300486 ssids);
David Spinadel35a000b2013-08-28 09:29:43 +0300487 if (index < 0) {
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300488 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);
David Spinadel35a000b2013-08-28 09:29:43 +0300493 } else {
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300494 *ssid_bitmap |= BIT(index);
David Spinadel35a000b2013-08-28 09:29:43 +0300495 }
496 }
497}
498
Luciano Coelho416c9b52015-05-05 11:32:29 +0300499static int
500iwl_mvm_config_sched_scan_profiles(struct iwl_mvm *mvm,
501 struct cfg80211_sched_scan_request *req)
David Spinadel35a000b2013-08-28 09:29:43 +0300502{
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,
David Spinadel35a000b2013-08-28 09:29:43 +0300508 .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))
Johannes Berg46eebec2015-09-11 12:09:22 +0200517 return -EIO;
David Spinadel35a000b2013-08-28 09:29:43 +0300518
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;
David Spinadel6e0bbe52013-12-30 09:59:45 +0200544 if (!req->n_match_sets || !req->match_sets[0].ssid.ssid_len)
545 profile_cfg->any_beacon_notify = SCAN_CLIENT_SCHED_SCAN;
David Spinadel35a000b2013-08-28 09:29:43 +0300546
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);
562free_blacklist:
563 kfree(blacklist);
564
565 return ret;
566}
567
David Spinadeld2496222014-05-20 12:46:37 +0300568static 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);
Luca Coelhoa339e912016-02-02 22:58:46 +0200575 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
David Spinadeld2496222014-05-20 12:46:37 +0300576 return false;
577 }
578
579 IWL_DEBUG_SCAN(mvm, "Sending Scheduled scan without filtering\n");
Luca Coelhoa339e912016-02-02 22:58:46 +0200580
581 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED;
David Spinadeld2496222014-05-20 12:46:37 +0300582 return true;
583}
584
Luciano Coelhof2461792015-05-07 15:23:19 +0300585static int iwl_mvm_lmac_scan_abort(struct iwl_mvm *mvm)
David Spinadel35a000b2013-08-28 09:29:43 +0300586{
587 int ret;
588 struct iwl_host_cmd cmd = {
589 .id = SCAN_OFFLOAD_ABORT_CMD,
David Spinadel35a000b2013-08-28 09:29:43 +0300590 };
591 u32 status;
592
David Spinadel35a000b2013-08-28 09:29:43 +0300593 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);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200606 ret = -ENOENT;
David Spinadel35a000b2013-08-28 09:29:43 +0300607 }
608
609 return ret;
610}
611
Luciano Coelho65ff5562015-03-20 13:35:47 +0200612static void iwl_mvm_scan_fill_tx_cmd(struct iwl_mvm *mvm,
613 struct iwl_scan_req_tx_cmd *tx_cmd,
614 bool no_cck)
David Spinadelfb98be52014-05-04 12:51:10 +0300615{
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,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200619 NL80211_BAND_2GHZ,
David Spinadelfb98be52014-05-04 12:51:10 +0300620 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,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200626 NL80211_BAND_5GHZ,
David Spinadelfb98be52014-05-04 12:51:10 +0300627 no_cck);
628 tx_cmd[1].sta_id = mvm->aux_sta.sta_id;
629}
630
631static void
632iwl_mvm_lmac_scan_cfg_channels(struct iwl_mvm *mvm,
633 struct ieee80211_channel **channels,
634 int n_channels, u32 ssid_bitmap,
Luciano Coelho65ff5562015-03-20 13:35:47 +0200635 struct iwl_scan_req_lmac *cmd)
David Spinadelfb98be52014-05-04 12:51:10 +0300636{
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
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300651static 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
David Spinadelfb98be52014-05-04 12:51:10 +0300687static void
Luciano Coelho65ff5562015-03-20 13:35:47 +0200688iwl_mvm_build_scan_probe(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
689 struct ieee80211_scan_ies *ies,
Luciano Coelho45d1b122015-04-15 16:34:13 +0300690 struct iwl_mvm_scan_params *params)
David Spinadelfb98be52014-05-04 12:51:10 +0300691{
Luciano Coelho45d1b122015-04-15 16:34:13 +0300692 struct ieee80211_mgmt *frame = (void *)params->preq.buf;
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300693 u8 *pos, *newpos;
Luciano Coelho45d1b122015-04-15 16:34:13 +0300694 const u8 *mac_addr = params->flags & NL80211_SCAN_FLAG_RANDOM_ADDR ?
695 params->mac_addr : NULL;
David Spinadelfb98be52014-05-04 12:51:10 +0300696
Johannes Bergeffd05a2014-11-18 17:21:19 +0100697 /*
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)
Luciano Coelho45d1b122015-04-15 16:34:13 +0300704 get_random_mask_addr(frame->sa, mac_addr,
705 params->mac_addr_mask);
Johannes Bergeffd05a2014-11-18 17:21:19 +0100706 else
707 memcpy(frame->sa, vif->addr, ETH_ALEN);
708
David Spinadelfb98be52014-05-04 12:51:10 +0300709 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
710 eth_broadcast_addr(frame->da);
David Spinadelfb98be52014-05-04 12:51:10 +0300711 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
Luciano Coelho45d1b122015-04-15 16:34:13 +0300718 params->preq.mac_header.offset = 0;
719 params->preq.mac_header.len = cpu_to_le16(24 + 2);
David Spinadelfb98be52014-05-04 12:51:10 +0300720
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300721 /* Insert ds parameter set element on 2.4 GHz band */
722 newpos = iwl_mvm_copy_and_insert_ds_elem(mvm,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200723 ies->ies[NL80211_BAND_2GHZ],
724 ies->len[NL80211_BAND_2GHZ],
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300725 pos);
Luciano Coelho45d1b122015-04-15 16:34:13 +0300726 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);
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300728 pos = newpos;
David Spinadelfb98be52014-05-04 12:51:10 +0300729
Johannes Berg57fbcce2016-04-12 15:56:15 +0200730 memcpy(pos, ies->ies[NL80211_BAND_5GHZ],
731 ies->len[NL80211_BAND_5GHZ]);
Luciano Coelho45d1b122015-04-15 16:34:13 +0300732 params->preq.band_data[1].offset = cpu_to_le16(pos - params->preq.buf);
733 params->preq.band_data[1].len =
Johannes Berg57fbcce2016-04-12 15:56:15 +0200734 cpu_to_le16(ies->len[NL80211_BAND_5GHZ]);
735 pos += ies->len[NL80211_BAND_5GHZ];
David Spinadelfb98be52014-05-04 12:51:10 +0300736
737 memcpy(pos, ies->common_ies, ies->common_ie_len);
Luciano Coelho45d1b122015-04-15 16:34:13 +0300738 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);
David Spinadelfb98be52014-05-04 12:51:10 +0300740}
741
Luciano Coelho133c8252015-04-20 15:29:03 +0300742static void iwl_mvm_scan_lmac_dwell(struct iwl_mvm *mvm,
743 struct iwl_scan_req_lmac *cmd,
744 struct iwl_mvm_scan_params *params)
David Spinadelfb98be52014-05-04 12:51:10 +0300745{
David Spinadel9437e992015-06-22 13:20:00 +0300746 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;
David Spinadelc3e230b2015-11-22 16:37:36 +0200749 cmd->extended_dwell = scan_timing[params->type].dwell_extended;
David Spinadel9437e992015-06-22 13:20:00 +0300750 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);
Luca Coelho4b87e5a2016-09-12 16:03:30 +0300752 cmd->scan_prio = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
David Spinadelfb98be52014-05-04 12:51:10 +0300753}
754
Luciano Coelho999d2562015-03-27 10:28:26 +0300755static 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
David Spinadel15286e22015-05-26 10:32:19 +0300767static inline bool iwl_mvm_scan_use_ebs(struct iwl_mvm *mvm,
Avraham Sterncd55cce2015-08-19 12:46:12 +0300768 struct ieee80211_vif *vif)
Luciano Coelho7d7de1e2015-04-17 09:53:55 +0300769{
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;
David Spinadel15286e22015-05-26 10:32:19 +0300775 * 3. if only single scan, the single scan EBS API is supported;
776 * 4. it's not a p2p find operation.
Luciano Coelho7d7de1e2015-04-17 09:53:55 +0300777 */
778 return ((capa->flags & IWL_UCODE_TLV_FLAGS_EBS_SUPPORT) &&
779 mvm->last_ebs_successful &&
David Spinadel15286e22015-05-26 10:32:19 +0300780 vif->type != NL80211_IFTYPE_P2P_DEVICE);
Luciano Coelho7d7de1e2015-04-17 09:53:55 +0300781}
782
David Spinadelc3e230b2015-11-22 16:37:36 +0200783static 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
Luciano Coelho87515402015-04-20 14:47:49 +0300789static int iwl_mvm_scan_lmac_flags(struct iwl_mvm *mvm,
David Spinadelc3e230b2015-11-22 16:37:36 +0200790 struct iwl_mvm_scan_params *params,
791 struct ieee80211_vif *vif)
Luciano Coelho87515402015-04-20 14:47:49 +0300792{
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
David Spinadel9437e992015-06-22 13:20:00 +0300801 if (params->type == IWL_SCAN_TYPE_FRAGMENTED)
Luciano Coelho87515402015-04-20 14:47:49 +0300802 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
Luca Coelhoa339e912016-02-02 22:58:46 +0200817 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED)
818 flags |= IWL_MVM_LMAC_SCAN_FLAG_ITER_COMPLETE;
819
David Spinadelc3e230b2015-11-22 16:37:36 +0200820 if (iwl_mvm_is_regular_scan(params) &&
David Spinadelca95ff32016-01-03 17:08:32 +0200821 vif->type != NL80211_IFTYPE_P2P_DEVICE &&
822 params->type != IWL_SCAN_TYPE_FRAGMENTED)
David Spinadelc3e230b2015-11-22 16:37:36 +0200823 flags |= IWL_MVM_LMAC_SCAN_FLAG_EXTENDED_DWELL;
824
Luciano Coelho87515402015-04-20 14:47:49 +0300825 return flags;
826}
827
Luciano Coelho6749dd82015-03-20 15:51:36 +0200828static int iwl_mvm_scan_lmac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Luciano Coelho3db7c6e2015-04-01 17:09:56 +0300829 struct iwl_mvm_scan_params *params)
David Spinadelfb98be52014-05-04 12:51:10 +0300830{
Luciano Coelho65ff5562015-03-20 13:35:47 +0200831 struct iwl_scan_req_lmac *cmd = mvm->scan_cmd;
Luciano Coelho45d1b122015-04-15 16:34:13 +0300832 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);
Luciano Coelho87515402015-04-20 14:47:49 +0300835 u32 ssid_bitmap = 0;
Avraham Sterncd55cce2015-08-19 12:46:12 +0300836 int i;
David Spinadelfb98be52014-05-04 12:51:10 +0300837
838 lockdep_assert_held(&mvm->mutex);
839
Luciano Coelho133c8252015-04-20 15:29:03 +0300840 memset(cmd, 0, ksize(cmd));
David Spinadelfb98be52014-05-04 12:51:10 +0300841
Avraham Sterncd55cce2015-08-19 12:46:12 +0300842 if (WARN_ON(params->n_scan_plans > IWL_MAX_SCHED_SCAN_PLANS))
843 return -EINVAL;
844
Luciano Coelho133c8252015-04-20 15:29:03 +0300845 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);
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300849 cmd->n_channels = (u8)params->n_channels;
David Spinadelfb98be52014-05-04 12:51:10 +0300850
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300851 cmd->delay = cpu_to_le32(params->delay);
Luciano Coelho2250fd92014-12-03 10:52:26 +0200852
David Spinadelc3e230b2015-11-22 16:37:36 +0200853 cmd->scan_flags = cpu_to_le32(iwl_mvm_scan_lmac_flags(mvm, params,
854 vif));
David Spinadelfb98be52014-05-04 12:51:10 +0300855
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300856 cmd->flags = iwl_mvm_scan_rxon_flags(params->channels[0]->band);
David Spinadelfb98be52014-05-04 12:51:10 +0300857 cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP |
858 MAC_FILTER_IN_BEACON);
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300859 iwl_mvm_scan_fill_tx_cmd(mvm, cmd->tx_cmd, params->no_cck);
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300860 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;
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300864
Avraham Sterncd55cce2015-08-19 12:46:12 +0300865 for (i = 0; i < params->n_scan_plans; i++) {
Avraham Sterncd55cce2015-08-19 12:46:12 +0300866 struct cfg80211_sched_scan_plan *scan_plan =
867 &params->scan_plans[i];
David Spinadelfb98be52014-05-04 12:51:10 +0300868
Avraham Sterncd55cce2015-08-19 12:46:12 +0300869 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)
Johannes Berg46eebec2015-09-11 12:09:22 +0200882 cmd->schedule[i - 1].iterations = 0xff;
Avraham Sterncd55cce2015-08-19 12:46:12 +0300883
884 if (iwl_mvm_scan_use_ebs(mvm, vif)) {
David Spinadel1f9c4182014-12-01 23:30:07 +0200885 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
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300899 iwl_mvm_lmac_scan_cfg_channels(mvm, params->channels,
900 params->n_channels, ssid_bitmap, cmd);
David Spinadelfb98be52014-05-04 12:51:10 +0300901
Luciano Coelho45d1b122015-04-15 16:34:13 +0300902 *preq = params->preq;
David Spinadelfb98be52014-05-04 12:51:10 +0300903
Luciano Coelho8df3e682015-04-01 17:37:44 +0300904 return 0;
David Spinadelfb98be52014-05-04 12:51:10 +0300905}
906
David Spinadeld2496222014-05-20 12:46:37 +0300907static 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
927static __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
Johannes Berg57fbcce2016-04-12 15:56:15 +0200933 band = &mvm->nvm_data->bands[NL80211_BAND_2GHZ];
David Spinadeld2496222014-05-20 12:46:37 +0300934 for (i = 0; i < band->n_bitrates; i++)
935 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value);
Johannes Berg57fbcce2016-04-12 15:56:15 +0200936 band = &mvm->nvm_data->bands[NL80211_BAND_5GHZ];
David Spinadeld2496222014-05-20 12:46:37 +0300937 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
Sara Sharon9ba221b2016-11-17 11:35:05 +0200946static 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
956static 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
Sara Sharona0b48282017-01-12 16:01:11 +0200969static void iwl_mvm_fill_scan_config_v1(struct iwl_mvm *mvm, void *config,
970 u32 flags, u8 channel_flags)
Sara Sharon9ba221b2016-11-17 11:35:05 +0200971{
972 enum iwl_mvm_scan_type type = iwl_mvm_get_scan_type(mvm, false);
Sara Sharona0b48282017-01-12 16:01:11 +0200973 struct iwl_scan_config_v1 *cfg = config;
Sara Sharon9ba221b2016-11-17 11:35:05 +0200974
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
Sara Sharona0b48282017-01-12 16:01:11 +0200992static void iwl_mvm_fill_scan_config(struct iwl_mvm *mvm, void *config,
993 u32 flags, u8 channel_flags)
Sara Sharon9ba221b2016-11-17 11:35:05 +0200994{
995 enum iwl_mvm_scan_type type = iwl_mvm_get_scan_type(mvm, false);
Sara Sharona0b48282017-01-12 16:01:11 +0200996 struct iwl_scan_config *cfg = config;
Sara Sharon9ba221b2016-11-17 11:35:05 +0200997
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);
Sara Sharon9ba221b2016-11-17 11:35:05 +02001004 cfg->suspend_time[0] = cpu_to_le32(scan_timing[type].suspend_time);
Sara Sharona0b48282017-01-12 16:01:11 +02001005
1006 if (iwl_mvm_is_cdb_supported(mvm)) {
1007 cfg->suspend_time[1] =
1008 cpu_to_le32(scan_timing[type].suspend_time);
1009 cfg->out_of_channel_time[1] =
1010 cpu_to_le32(scan_timing[type].max_out_time);
1011 }
Sara Sharon9ba221b2016-11-17 11:35:05 +02001012
1013 iwl_mvm_fill_scan_dwell(mvm, &cfg->dwell, &scan_timing[type]);
1014
1015 memcpy(&cfg->mac_addr, &mvm->addresses[0].addr, ETH_ALEN);
1016
1017 cfg->bcast_sta_id = mvm->aux_sta.sta_id;
1018 cfg->channel_flags = channel_flags;
1019
1020 iwl_mvm_fill_channels(mvm, cfg->channel_array);
1021}
1022
David Spinadeld2496222014-05-20 12:46:37 +03001023int iwl_mvm_config_scan(struct iwl_mvm *mvm)
1024{
Sara Sharon9ba221b2016-11-17 11:35:05 +02001025 void *cfg;
1026 int ret, cmd_size;
David Spinadeld2496222014-05-20 12:46:37 +03001027 struct iwl_host_cmd cmd = {
Johannes Berg88742c92015-06-30 15:31:22 +02001028 .id = iwl_cmd_id(SCAN_CFG_CMD, IWL_ALWAYS_LONG_GROUP, 0),
David Spinadeld2496222014-05-20 12:46:37 +03001029 };
Avraham Stern355346b2015-11-26 11:22:33 +02001030 enum iwl_mvm_scan_type type = iwl_mvm_get_scan_type(mvm, false);
Sara Sharon9ba221b2016-11-17 11:35:05 +02001031 int num_channels =
1032 mvm->nvm_data->bands[NL80211_BAND_2GHZ].n_channels +
1033 mvm->nvm_data->bands[NL80211_BAND_5GHZ].n_channels;
1034 u32 flags;
1035 u8 channel_flags;
David Spinadeld2496222014-05-20 12:46:37 +03001036
1037 if (WARN_ON(num_channels > mvm->fw->ucode_capa.n_scan_channels))
1038 return -ENOBUFS;
1039
Luca Coelhofd210352017-01-24 09:40:43 +02001040 if (type == mvm->scan_type)
Avraham Stern355346b2015-11-26 11:22:33 +02001041 return 0;
1042
Sara Sharona0b48282017-01-12 16:01:11 +02001043 if (iwl_mvm_has_new_tx_api(mvm))
Sara Sharon9ba221b2016-11-17 11:35:05 +02001044 cmd_size = sizeof(struct iwl_scan_config);
Sara Sharona0b48282017-01-12 16:01:11 +02001045 else
1046 cmd_size = sizeof(struct iwl_scan_config_v1);
Sara Sharon9ba221b2016-11-17 11:35:05 +02001047 cmd_size += mvm->fw->ucode_capa.n_scan_channels;
David Spinadeld2496222014-05-20 12:46:37 +03001048
Sara Sharon9ba221b2016-11-17 11:35:05 +02001049 cfg = kzalloc(cmd_size, GFP_KERNEL);
1050 if (!cfg)
David Spinadeld2496222014-05-20 12:46:37 +03001051 return -ENOMEM;
1052
Sara Sharon9ba221b2016-11-17 11:35:05 +02001053 flags = SCAN_CONFIG_FLAG_ACTIVATE |
1054 SCAN_CONFIG_FLAG_ALLOW_CHUB_REQS |
1055 SCAN_CONFIG_FLAG_SET_TX_CHAINS |
1056 SCAN_CONFIG_FLAG_SET_RX_CHAINS |
1057 SCAN_CONFIG_FLAG_SET_AUX_STA_ID |
1058 SCAN_CONFIG_FLAG_SET_ALL_TIMES |
1059 SCAN_CONFIG_FLAG_SET_LEGACY_RATES |
1060 SCAN_CONFIG_FLAG_SET_MAC_ADDR |
1061 SCAN_CONFIG_FLAG_SET_CHANNEL_FLAGS |
1062 SCAN_CONFIG_N_CHANNELS(num_channels) |
1063 (type == IWL_SCAN_TYPE_FRAGMENTED ?
1064 SCAN_CONFIG_FLAG_SET_FRAGMENTED :
1065 SCAN_CONFIG_FLAG_CLEAR_FRAGMENTED);
David Spinadeld2496222014-05-20 12:46:37 +03001066
Sara Sharon9ba221b2016-11-17 11:35:05 +02001067 channel_flags = IWL_CHANNEL_FLAG_EBS |
1068 IWL_CHANNEL_FLAG_ACCURATE_EBS |
1069 IWL_CHANNEL_FLAG_EBS_ADD |
1070 IWL_CHANNEL_FLAG_PRE_SCAN_PASSIVE2ACTIVE;
David Spinadeld2496222014-05-20 12:46:37 +03001071
Sara Sharona0b48282017-01-12 16:01:11 +02001072 if (iwl_mvm_has_new_tx_api(mvm)) {
Sara Sharon9ba221b2016-11-17 11:35:05 +02001073 flags |= (type == IWL_SCAN_TYPE_FRAGMENTED) ?
1074 SCAN_CONFIG_FLAG_SET_LMAC2_FRAGMENTED :
1075 SCAN_CONFIG_FLAG_CLEAR_LMAC2_FRAGMENTED;
Sara Sharon9ba221b2016-11-17 11:35:05 +02001076 iwl_mvm_fill_scan_config(mvm, cfg, flags, channel_flags);
Sara Sharona0b48282017-01-12 16:01:11 +02001077 } else {
1078 iwl_mvm_fill_scan_config_v1(mvm, cfg, flags, channel_flags);
Sara Sharon9ba221b2016-11-17 11:35:05 +02001079 }
David Spinadeld2496222014-05-20 12:46:37 +03001080
Sara Sharon9ba221b2016-11-17 11:35:05 +02001081 cmd.data[0] = cfg;
David Spinadeld2496222014-05-20 12:46:37 +03001082 cmd.len[0] = cmd_size;
1083 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
1084
1085 IWL_DEBUG_SCAN(mvm, "Sending UMAC scan config\n");
1086
1087 ret = iwl_mvm_send_cmd(mvm, &cmd);
Avraham Stern355346b2015-11-26 11:22:33 +02001088 if (!ret)
1089 mvm->scan_type = type;
David Spinadeld2496222014-05-20 12:46:37 +03001090
Sara Sharon9ba221b2016-11-17 11:35:05 +02001091 kfree(cfg);
David Spinadeld2496222014-05-20 12:46:37 +03001092 return ret;
1093}
1094
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001095static int iwl_mvm_scan_uid_by_status(struct iwl_mvm *mvm, int status)
David Spinadeld2496222014-05-20 12:46:37 +03001096{
1097 int i;
1098
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001099 for (i = 0; i < mvm->max_scans; i++)
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001100 if (mvm->scan_uid_status[i] == status)
David Spinadeld2496222014-05-20 12:46:37 +03001101 return i;
1102
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001103 return -ENOENT;
David Spinadeld2496222014-05-20 12:46:37 +03001104}
1105
Luciano Coelho133c8252015-04-20 15:29:03 +03001106static void iwl_mvm_scan_umac_dwell(struct iwl_mvm *mvm,
David Spinadeld2496222014-05-20 12:46:37 +03001107 struct iwl_scan_req_umac *cmd,
1108 struct iwl_mvm_scan_params *params)
1109{
Sara Sharon9ba221b2016-11-17 11:35:05 +02001110 struct iwl_mvm_scan_timing_params *timing = &scan_timing[params->type];
1111
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001112 if (params->measurement_dwell) {
1113 cmd->active_dwell = params->measurement_dwell;
1114 cmd->passive_dwell = params->measurement_dwell;
1115 cmd->extended_dwell = params->measurement_dwell;
1116 } else {
Sara Sharon9ba221b2016-11-17 11:35:05 +02001117 cmd->active_dwell = timing->dwell_active;
1118 cmd->passive_dwell = timing->dwell_passive;
1119 cmd->extended_dwell = timing->dwell_extended;
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001120 }
Sara Sharon9ba221b2016-11-17 11:35:05 +02001121 cmd->fragmented_dwell = timing->dwell_fragmented;
1122
Sara Sharona0b48282017-01-12 16:01:11 +02001123 if (iwl_mvm_has_new_tx_api(mvm)) {
1124 cmd->v6.scan_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
1125 cmd->v6.max_out_time[0] = cpu_to_le32(timing->max_out_time);
1126 cmd->v6.suspend_time[0] = cpu_to_le32(timing->suspend_time);
1127 if (iwl_mvm_is_cdb_supported(mvm)) {
1128 cmd->v6.max_out_time[1] =
1129 cpu_to_le32(timing->max_out_time);
1130 cmd->v6.suspend_time[1] =
1131 cpu_to_le32(timing->suspend_time);
1132 }
Sara Sharon9ba221b2016-11-17 11:35:05 +02001133 } else {
Sara Sharona0b48282017-01-12 16:01:11 +02001134 cmd->v1.max_out_time = cpu_to_le32(timing->max_out_time);
1135 cmd->v1.suspend_time = cpu_to_le32(timing->suspend_time);
1136 cmd->v1.scan_priority =
Sara Sharon9ba221b2016-11-17 11:35:05 +02001137 cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
1138 }
Luciano Coelho133c8252015-04-20 15:29:03 +03001139
Avraham Sterncd55cce2015-08-19 12:46:12 +03001140 if (iwl_mvm_is_regular_scan(params))
Luca Coelho4b87e5a2016-09-12 16:03:30 +03001141 cmd->ooc_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_6);
Luciano Coelho133c8252015-04-20 15:29:03 +03001142 else
Luca Coelho4b87e5a2016-09-12 16:03:30 +03001143 cmd->ooc_priority = cpu_to_le32(IWL_SCAN_PRIORITY_EXT_2);
David Spinadeld2496222014-05-20 12:46:37 +03001144}
1145
1146static void
1147iwl_mvm_umac_scan_cfg_channels(struct iwl_mvm *mvm,
1148 struct ieee80211_channel **channels,
1149 int n_channels, u32 ssid_bitmap,
Sara Sharon9ba221b2016-11-17 11:35:05 +02001150 struct iwl_scan_channel_cfg_umac *channel_cfg)
David Spinadeld2496222014-05-20 12:46:37 +03001151{
David Spinadeld2496222014-05-20 12:46:37 +03001152 int i;
1153
1154 for (i = 0; i < n_channels; i++) {
1155 channel_cfg[i].flags = cpu_to_le32(ssid_bitmap);
1156 channel_cfg[i].channel_num = channels[i]->hw_value;
1157 channel_cfg[i].iter_count = 1;
1158 channel_cfg[i].iter_interval = 0;
1159 }
1160}
1161
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001162static u16 iwl_mvm_scan_umac_flags(struct iwl_mvm *mvm,
David Spinadelc3e230b2015-11-22 16:37:36 +02001163 struct iwl_mvm_scan_params *params,
1164 struct ieee80211_vif *vif)
David Spinadeld2496222014-05-20 12:46:37 +03001165{
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001166 u16 flags = 0;
David Spinadeld2496222014-05-20 12:46:37 +03001167
Luciano Coelho6f4dcc72015-04-20 14:37:16 +03001168 if (params->n_ssids == 0)
David Spinadeld2496222014-05-20 12:46:37 +03001169 flags = IWL_UMAC_SCAN_GEN_FLAGS_PASSIVE;
1170
Luciano Coelho6f4dcc72015-04-20 14:37:16 +03001171 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0)
David Spinadeld2496222014-05-20 12:46:37 +03001172 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PRE_CONNECT;
1173
Sara Sharon9ba221b2016-11-17 11:35:05 +02001174 if (params->type == IWL_SCAN_TYPE_FRAGMENTED) {
David Spinadeld2496222014-05-20 12:46:37 +03001175 flags |= IWL_UMAC_SCAN_GEN_FLAGS_FRAGMENTED;
Sara Sharon9ba221b2016-11-17 11:35:05 +02001176 if (iwl_mvm_is_cdb_supported(mvm))
1177 flags |= IWL_UMAC_SCAN_GEN_FLAGS_LMAC2_FRAGMENTED;
1178 }
David Spinadeld2496222014-05-20 12:46:37 +03001179
1180 if (iwl_mvm_rrm_scan_needed(mvm))
1181 flags |= IWL_UMAC_SCAN_GEN_FLAGS_RRM_ENABLED;
1182
Luciano Coelho6f4dcc72015-04-20 14:37:16 +03001183 if (params->pass_all)
1184 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PASS_ALL;
1185 else
1186 flags |= IWL_UMAC_SCAN_GEN_FLAGS_MATCH;
1187
Avraham Sterncd55cce2015-08-19 12:46:12 +03001188 if (!iwl_mvm_is_regular_scan(params))
Luciano Coelho6f4dcc72015-04-20 14:37:16 +03001189 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PERIODIC;
1190
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001191 if (params->measurement_dwell)
1192 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE;
1193
Avraham Sternee9219b2015-03-23 15:09:27 +02001194#ifdef CONFIG_IWLWIFI_DEBUGFS
1195 if (mvm->scan_iter_notif_enabled)
1196 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE;
1197#endif
David Spinadelc3e230b2015-11-22 16:37:36 +02001198
Luca Coelhoa339e912016-02-02 22:58:46 +02001199 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_ENABLED)
1200 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE;
1201
David Spinadelc3e230b2015-11-22 16:37:36 +02001202 if (iwl_mvm_is_regular_scan(params) &&
David Spinadelca95ff32016-01-03 17:08:32 +02001203 vif->type != NL80211_IFTYPE_P2P_DEVICE &&
1204 params->type != IWL_SCAN_TYPE_FRAGMENTED)
David Spinadelc3e230b2015-11-22 16:37:36 +02001205 flags |= IWL_UMAC_SCAN_GEN_FLAGS_EXTENDED_DWELL;
1206
David Spinadeld2496222014-05-20 12:46:37 +03001207 return flags;
1208}
1209
Luciano Coelho6749dd82015-03-20 15:51:36 +02001210static int iwl_mvm_scan_umac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001211 struct iwl_mvm_scan_params *params,
1212 int type)
David Spinadeld2496222014-05-20 12:46:37 +03001213{
David Spinadeld2496222014-05-20 12:46:37 +03001214 struct iwl_scan_req_umac *cmd = mvm->scan_cmd;
Sara Sharona0b48282017-01-12 16:01:11 +02001215 void *cmd_data = iwl_mvm_has_new_tx_api(mvm) ?
1216 (void *)&cmd->v6.data : (void *)&cmd->v1.data;
Sara Sharon9ba221b2016-11-17 11:35:05 +02001217 struct iwl_scan_req_umac_tail *sec_part = cmd_data +
David Spinadeld2496222014-05-20 12:46:37 +03001218 sizeof(struct iwl_scan_channel_cfg_umac) *
1219 mvm->fw->ucode_capa.n_scan_channels;
Avraham Sterncd55cce2015-08-19 12:46:12 +03001220 int uid, i;
Johannes Bergc8660dd2014-11-17 15:06:52 +01001221 u32 ssid_bitmap = 0;
Sara Sharon9ba221b2016-11-17 11:35:05 +02001222 u8 channel_flags = 0;
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001223 struct iwl_mvm_vif *scan_vif = iwl_mvm_vif_from_mac80211(vif);
David Spinadeld2496222014-05-20 12:46:37 +03001224
1225 lockdep_assert_held(&mvm->mutex);
1226
Avraham Sterncd55cce2015-08-19 12:46:12 +03001227 if (WARN_ON(params->n_scan_plans > IWL_MAX_SCHED_SCAN_PLANS))
1228 return -EINVAL;
1229
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001230 uid = iwl_mvm_scan_uid_by_status(mvm, 0);
1231 if (uid < 0)
1232 return uid;
David Spinadeld2496222014-05-20 12:46:37 +03001233
Luciano Coelho133c8252015-04-20 15:29:03 +03001234 memset(cmd, 0, ksize(cmd));
David Spinadeld2496222014-05-20 12:46:37 +03001235
Luciano Coelho133c8252015-04-20 15:29:03 +03001236 iwl_mvm_scan_umac_dwell(mvm, cmd, params);
1237
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001238 mvm->scan_uid_status[uid] = type;
Luciano Coelho8423cdc2015-04-17 14:49:58 +03001239
Luciano Coelho8423cdc2015-04-17 14:49:58 +03001240 cmd->uid = cpu_to_le32(uid);
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001241 cmd->general_flags = cpu_to_le16(iwl_mvm_scan_umac_flags(mvm, params,
David Spinadelc3e230b2015-11-22 16:37:36 +02001242 vif));
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001243 cmd->scan_start_mac_id = scan_vif->id;
Haim Dreyfuss4db65582015-01-05 15:00:35 +02001244
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001245 if (type == IWL_MVM_SCAN_SCHED || type == IWL_MVM_SCAN_NETDETECT)
Avraham Stern8465fe62015-06-21 12:06:13 +03001246 cmd->flags = cpu_to_le32(IWL_UMAC_SCAN_FLAG_PREEMPTIVE);
1247
Avraham Sterncd55cce2015-08-19 12:46:12 +03001248 if (iwl_mvm_scan_use_ebs(mvm, vif))
Sara Sharon9ba221b2016-11-17 11:35:05 +02001249 channel_flags = IWL_SCAN_CHANNEL_FLAG_EBS |
1250 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
1251 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD;
Haim Dreyfuss4db65582015-01-05 15:00:35 +02001252
Sara Sharona0b48282017-01-12 16:01:11 +02001253 if (iwl_mvm_has_new_tx_api(mvm)) {
1254 cmd->v6.channel_flags = channel_flags;
1255 cmd->v6.n_channels = params->n_channels;
Sara Sharon9ba221b2016-11-17 11:35:05 +02001256 } else {
Sara Sharona0b48282017-01-12 16:01:11 +02001257 cmd->v1.channel_flags = channel_flags;
1258 cmd->v1.n_channels = params->n_channels;
Sara Sharon9ba221b2016-11-17 11:35:05 +02001259 }
David Spinadeld2496222014-05-20 12:46:37 +03001260
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +03001261 iwl_scan_build_ssids(params, sec_part->direct_scan, &ssid_bitmap);
David Spinadeld2496222014-05-20 12:46:37 +03001262
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001263 iwl_mvm_umac_scan_cfg_channels(mvm, params->channels,
Sara Sharon9ba221b2016-11-17 11:35:05 +02001264 params->n_channels, ssid_bitmap,
1265 cmd_data);
David Spinadeld2496222014-05-20 12:46:37 +03001266
Avraham Sterncd55cce2015-08-19 12:46:12 +03001267 for (i = 0; i < params->n_scan_plans; i++) {
Avraham Sterncd55cce2015-08-19 12:46:12 +03001268 struct cfg80211_sched_scan_plan *scan_plan =
1269 &params->scan_plans[i];
1270
Avraham Sterncd55cce2015-08-19 12:46:12 +03001271 sec_part->schedule[i].iter_count = scan_plan->iterations;
1272 sec_part->schedule[i].interval =
1273 cpu_to_le16(scan_plan->interval);
1274 }
1275
1276 /*
1277 * If the number of iterations of the last scan plan is set to
1278 * zero, it should run infinitely. However, this is not always the case.
1279 * For example, when regular scan is requested the driver sets one scan
1280 * plan with one iteration.
Luciano Coelho8423cdc2015-04-17 14:49:58 +03001281 */
Avraham Sterncd55cce2015-08-19 12:46:12 +03001282 if (!sec_part->schedule[i - 1].iter_count)
1283 sec_part->schedule[i - 1].iter_count = 0xff;
Luciano Coelhocf5d3172015-04-16 20:13:28 +03001284
Luciano Coelho283c2492015-04-17 11:18:46 +03001285 sec_part->delay = cpu_to_le16(params->delay);
Luciano Coelho45d1b122015-04-15 16:34:13 +03001286 sec_part->preq = params->preq;
David Spinadeld2496222014-05-20 12:46:37 +03001287
Luciano Coelho8df3e682015-04-01 17:37:44 +03001288 return 0;
David Spinadeld2496222014-05-20 12:46:37 +03001289}
1290
Luciano Coelho6749dd82015-03-20 15:51:36 +02001291static int iwl_mvm_num_scans(struct iwl_mvm *mvm)
1292{
1293 return hweight32(mvm->scan_status & IWL_MVM_SCAN_MASK);
1294}
1295
1296static int iwl_mvm_check_running_scans(struct iwl_mvm *mvm, int type)
1297{
Luca Coelho5a143db2016-10-05 09:28:53 +03001298 bool unified_image = fw_has_capa(&mvm->fw->ucode_capa,
1299 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG);
1300
Luciano Coelho6749dd82015-03-20 15:51:36 +02001301 /* This looks a bit arbitrary, but the idea is that if we run
1302 * out of possible simultaneous scans and the userspace is
1303 * trying to run a scan type that is already running, we
1304 * return -EBUSY. But if the userspace wants to start a
1305 * different type of scan, we stop the opposite type to make
1306 * space for the new request. The reason is backwards
1307 * compatibility with old wpa_supplicant that wouldn't stop a
1308 * scheduled scan before starting a normal scan.
1309 */
1310
1311 if (iwl_mvm_num_scans(mvm) < mvm->max_scans)
1312 return 0;
1313
1314 /* Use a switch, even though this is a bitmask, so that more
1315 * than one bits set will fall in default and we will warn.
1316 */
1317 switch (type) {
1318 case IWL_MVM_SCAN_REGULAR:
1319 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK)
1320 return -EBUSY;
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001321 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, true);
Luciano Coelho6749dd82015-03-20 15:51:36 +02001322 case IWL_MVM_SCAN_SCHED:
1323 if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK)
1324 return -EBUSY;
Nicholas Krause04b08992015-09-22 20:24:19 -04001325 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true);
Luciano Coelho19945df2015-03-20 16:11:28 +02001326 case IWL_MVM_SCAN_NETDETECT:
Luca Coelho5a143db2016-10-05 09:28:53 +03001327 /* For non-unified images, there's no need to stop
1328 * anything for net-detect since the firmware is
1329 * restarted anyway. This way, any sched scans that
1330 * were running will be restarted when we resume.
1331 */
1332 if (!unified_image)
1333 return 0;
1334
1335 /* If this is a unified image and we ran out of scans,
1336 * we need to stop something. Prefer stopping regular
1337 * scans, because the results are useless at this
1338 * point, and we should be able to keep running
1339 * another scheduled scan while suspended.
1340 */
1341 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK)
1342 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR,
1343 true);
1344 if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK)
1345 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED,
1346 true);
1347
1348 /* fall through, something is wrong if no scan was
1349 * running but we ran out of scans.
1350 */
Luciano Coelho6749dd82015-03-20 15:51:36 +02001351 default:
1352 WARN_ON(1);
1353 break;
1354 }
1355
1356 return -EIO;
1357}
1358
Luca Coelho69e04642016-05-03 12:18:33 +03001359#define SCAN_TIMEOUT 20000
Luca Coelho728e8252016-03-11 09:20:37 +02001360
Luca Coelho69e04642016-05-03 12:18:33 +03001361void iwl_mvm_scan_timeout_wk(struct work_struct *work)
Luca Coelho728e8252016-03-11 09:20:37 +02001362{
Luca Coelho69e04642016-05-03 12:18:33 +03001363 struct delayed_work *delayed_work = to_delayed_work(work);
1364 struct iwl_mvm *mvm = container_of(delayed_work, struct iwl_mvm,
1365 scan_timeout_dwork);
Luca Coelho728e8252016-03-11 09:20:37 +02001366
1367 IWL_ERR(mvm, "regular scan timed out\n");
1368
Luca Coelho728e8252016-03-11 09:20:37 +02001369 iwl_force_nmi(mvm->trans);
1370}
1371
Luciano Coelho6749dd82015-03-20 15:51:36 +02001372int iwl_mvm_reg_scan_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1373 struct cfg80211_scan_request *req,
1374 struct ieee80211_scan_ies *ies)
1375{
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001376 struct iwl_host_cmd hcmd = {
1377 .len = { iwl_mvm_scan_size(mvm), },
1378 .data = { mvm->scan_cmd, },
1379 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
1380 };
1381 struct iwl_mvm_scan_params params = {};
Luciano Coelho6749dd82015-03-20 15:51:36 +02001382 int ret;
Avraham Sterncd55cce2015-08-19 12:46:12 +03001383 struct cfg80211_sched_scan_plan scan_plan = { .iterations = 1 };
Luciano Coelho6749dd82015-03-20 15:51:36 +02001384
1385 lockdep_assert_held(&mvm->mutex);
1386
1387 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) {
1388 IWL_ERR(mvm, "scan while LAR regdomain is not set\n");
1389 return -EBUSY;
1390 }
1391
1392 ret = iwl_mvm_check_running_scans(mvm, IWL_MVM_SCAN_REGULAR);
1393 if (ret)
1394 return ret;
1395
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001396 /* we should have failed registration if scan_cmd was NULL */
1397 if (WARN_ON(!mvm->scan_cmd))
1398 return -ENOMEM;
1399
1400 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels))
1401 return -ENOBUFS;
1402
Luciano Coelho4b817052015-04-15 16:21:16 +03001403 params.n_ssids = req->n_ssids;
1404 params.flags = req->flags;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001405 params.n_channels = req->n_channels;
1406 params.delay = 0;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001407 params.ssids = req->ssids;
1408 params.channels = req->channels;
1409 params.mac_addr = req->mac_addr;
1410 params.mac_addr_mask = req->mac_addr_mask;
1411 params.no_cck = req->no_cck;
1412 params.pass_all = true;
1413 params.n_match_sets = 0;
1414 params.match_sets = NULL;
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001415
Avraham Sterncd55cce2015-08-19 12:46:12 +03001416 params.scan_plans = &scan_plan;
1417 params.n_scan_plans = 1;
Luciano Coelhocf5d3172015-04-16 20:13:28 +03001418
Avraham Stern355346b2015-11-26 11:22:33 +02001419 params.type =
1420 iwl_mvm_get_scan_type(mvm,
1421 vif->type == NL80211_IFTYPE_P2P_DEVICE);
Luciano Coelho4b817052015-04-15 16:21:16 +03001422
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001423 ret = iwl_mvm_get_measurement_dwell(mvm, req, &params);
1424 if (ret < 0)
1425 return ret;
1426
1427 params.measurement_dwell = ret;
1428
Luciano Coelho45d1b122015-04-15 16:34:13 +03001429 iwl_mvm_build_scan_probe(mvm, vif, ies, &params);
1430
Johannes Berg859d9142015-06-01 17:11:11 +02001431 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
Johannes Berg88742c92015-06-30 15:31:22 +02001432 hcmd.id = iwl_cmd_id(SCAN_REQ_UMAC, IWL_ALWAYS_LONG_GROUP, 0);
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001433 ret = iwl_mvm_scan_umac(mvm, vif, &params,
1434 IWL_MVM_SCAN_REGULAR);
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001435 } else {
1436 hcmd.id = SCAN_OFFLOAD_REQUEST_CMD;
Luciano Coelho45d1b122015-04-15 16:34:13 +03001437 ret = iwl_mvm_scan_lmac(mvm, vif, &params);
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001438 }
1439
1440 if (ret)
1441 return ret;
1442
1443 ret = iwl_mvm_send_cmd(mvm, &hcmd);
Eliad Peller78ba82f2015-10-15 10:58:48 +03001444 if (ret) {
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001445 /* If the scan failed, it usually means that the FW was unable
1446 * to allocate the time events. Warn on it, but maybe we
1447 * should try to send the command again with different params.
1448 */
1449 IWL_ERR(mvm, "Scan failed! ret %d\n", ret);
Eliad Peller78ba82f2015-10-15 10:58:48 +03001450 return ret;
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001451 }
Luciano Coelho6749dd82015-03-20 15:51:36 +02001452
Eliad Peller78ba82f2015-10-15 10:58:48 +03001453 IWL_DEBUG_SCAN(mvm, "Scan request was sent successfully\n");
1454 mvm->scan_status |= IWL_MVM_SCAN_REGULAR;
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001455 mvm->scan_vif = iwl_mvm_vif_from_mac80211(vif);
Eliad Peller78ba82f2015-10-15 10:58:48 +03001456 iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN);
Luciano Coelho6749dd82015-03-20 15:51:36 +02001457
Luca Coelho69e04642016-05-03 12:18:33 +03001458 queue_delayed_work(system_wq, &mvm->scan_timeout_dwork,
1459 msecs_to_jiffies(SCAN_TIMEOUT));
Luca Coelho728e8252016-03-11 09:20:37 +02001460
Eliad Peller78ba82f2015-10-15 10:58:48 +03001461 return 0;
Luciano Coelho6749dd82015-03-20 15:51:36 +02001462}
1463
Luciano Coelho65ff5562015-03-20 13:35:47 +02001464int iwl_mvm_sched_scan_start(struct iwl_mvm *mvm,
1465 struct ieee80211_vif *vif,
1466 struct cfg80211_sched_scan_request *req,
Luciano Coelho19945df2015-03-20 16:11:28 +02001467 struct ieee80211_scan_ies *ies,
1468 int type)
Luciano Coelho65ff5562015-03-20 13:35:47 +02001469{
Luciano Coelho8df3e682015-04-01 17:37:44 +03001470 struct iwl_host_cmd hcmd = {
1471 .len = { iwl_mvm_scan_size(mvm), },
1472 .data = { mvm->scan_cmd, },
1473 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
1474 };
1475 struct iwl_mvm_scan_params params = {};
Luciano Coelho65ff5562015-03-20 13:35:47 +02001476 int ret;
1477
Luciano Coelho6749dd82015-03-20 15:51:36 +02001478 lockdep_assert_held(&mvm->mutex);
1479
1480 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) {
1481 IWL_ERR(mvm, "sched-scan while LAR regdomain is not set\n");
1482 return -EBUSY;
1483 }
1484
Luciano Coelho19945df2015-03-20 16:11:28 +02001485 ret = iwl_mvm_check_running_scans(mvm, type);
Luciano Coelho6749dd82015-03-20 15:51:36 +02001486 if (ret)
1487 return ret;
1488
Luciano Coelho8df3e682015-04-01 17:37:44 +03001489 /* we should have failed registration if scan_cmd was NULL */
1490 if (WARN_ON(!mvm->scan_cmd))
1491 return -ENOMEM;
1492
1493 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels))
1494 return -ENOBUFS;
1495
Luciano Coelho4b817052015-04-15 16:21:16 +03001496 params.n_ssids = req->n_ssids;
1497 params.flags = req->flags;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001498 params.n_channels = req->n_channels;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001499 params.ssids = req->ssids;
1500 params.channels = req->channels;
1501 params.mac_addr = req->mac_addr;
1502 params.mac_addr_mask = req->mac_addr_mask;
1503 params.no_cck = false;
1504 params.pass_all = iwl_mvm_scan_pass_all(mvm, req);
1505 params.n_match_sets = req->n_match_sets;
1506 params.match_sets = req->match_sets;
Avraham Sterncd55cce2015-08-19 12:46:12 +03001507 if (!req->n_scan_plans)
1508 return -EINVAL;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001509
Avraham Sterncd55cce2015-08-19 12:46:12 +03001510 params.n_scan_plans = req->n_scan_plans;
1511 params.scan_plans = req->scan_plans;
David Spinadel3b44a0e2015-06-21 11:57:36 +03001512
Avraham Stern355346b2015-11-26 11:22:33 +02001513 params.type =
1514 iwl_mvm_get_scan_type(mvm,
1515 vif->type == NL80211_IFTYPE_P2P_DEVICE);
Luciano Coelhocf5d3172015-04-16 20:13:28 +03001516
Luciano Coelho283c2492015-04-17 11:18:46 +03001517 /* In theory, LMAC scans can handle a 32-bit delay, but since
1518 * waiting for over 18 hours to start the scan is a bit silly
1519 * and to keep it aligned with UMAC scans (which only support
1520 * 16-bit delays), trim it down to 16-bits.
1521 */
1522 if (req->delay > U16_MAX) {
1523 IWL_DEBUG_SCAN(mvm,
1524 "delay value is > 16-bits, set to max possible\n");
1525 params.delay = U16_MAX;
1526 } else {
1527 params.delay = req->delay;
1528 }
1529
Luciano Coelho65ff5562015-03-20 13:35:47 +02001530 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
1531 if (ret)
1532 return ret;
1533
Luciano Coelho45d1b122015-04-15 16:34:13 +03001534 iwl_mvm_build_scan_probe(mvm, vif, ies, &params);
1535
Johannes Berg859d9142015-06-01 17:11:11 +02001536 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
Johannes Berg88742c92015-06-30 15:31:22 +02001537 hcmd.id = iwl_cmd_id(SCAN_REQ_UMAC, IWL_ALWAYS_LONG_GROUP, 0);
Matti Gottlieb23ae6122015-12-31 18:18:02 +02001538 ret = iwl_mvm_scan_umac(mvm, vif, &params, type);
Luciano Coelho65ff5562015-03-20 13:35:47 +02001539 } else {
Luciano Coelho8df3e682015-04-01 17:37:44 +03001540 hcmd.id = SCAN_OFFLOAD_REQUEST_CMD;
Luciano Coelho7d7de1e2015-04-17 09:53:55 +03001541 ret = iwl_mvm_scan_lmac(mvm, vif, &params);
Luciano Coelho8df3e682015-04-01 17:37:44 +03001542 }
1543
1544 if (ret)
1545 return ret;
1546
1547 ret = iwl_mvm_send_cmd(mvm, &hcmd);
1548 if (!ret) {
1549 IWL_DEBUG_SCAN(mvm,
1550 "Sched scan request was sent successfully\n");
1551 mvm->scan_status |= type;
1552 } else {
1553 /* If the scan failed, it usually means that the FW was unable
1554 * to allocate the time events. Warn on it, but maybe we
1555 * should try to send the command again with different params.
1556 */
1557 IWL_ERR(mvm, "Sched scan failed! ret %d\n", ret);
Luciano Coelho65ff5562015-03-20 13:35:47 +02001558 }
1559
1560 return ret;
1561}
1562
Johannes Berg04168412015-06-23 21:22:09 +02001563void iwl_mvm_rx_umac_scan_complete_notif(struct iwl_mvm *mvm,
1564 struct iwl_rx_cmd_buffer *rxb)
David Spinadeld2496222014-05-20 12:46:37 +03001565{
1566 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1567 struct iwl_umac_scan_complete *notif = (void *)pkt->data;
1568 u32 uid = __le32_to_cpu(notif->uid);
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001569 bool aborted = (notif->status == IWL_SCAN_OFFLOAD_ABORTED);
David Spinadeld2496222014-05-20 12:46:37 +03001570
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001571 if (WARN_ON(!(mvm->scan_uid_status[uid] & mvm->scan_status)))
Johannes Berg04168412015-06-23 21:22:09 +02001572 return;
David Spinadeld2496222014-05-20 12:46:37 +03001573
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001574 /* if the scan is already stopping, we don't need to notify mac80211 */
1575 if (mvm->scan_uid_status[uid] == IWL_MVM_SCAN_REGULAR) {
Avraham Stern7947d3e2016-07-05 15:23:12 +03001576 struct cfg80211_scan_info info = {
1577 .aborted = aborted,
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001578 .scan_start_tsf = mvm->scan_start,
Avraham Stern7947d3e2016-07-05 15:23:12 +03001579 };
1580
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001581 memcpy(info.tsf_bssid, mvm->scan_vif->bssid, ETH_ALEN);
Avraham Stern7947d3e2016-07-05 15:23:12 +03001582 ieee80211_scan_completed(mvm->hw, &info);
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001583 mvm->scan_vif = NULL;
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001584 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
Luca Coelho69e04642016-05-03 12:18:33 +03001585 cancel_delayed_work(&mvm->scan_timeout_dwork);
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001586 } else if (mvm->scan_uid_status[uid] == IWL_MVM_SCAN_SCHED) {
1587 ieee80211_sched_scan_stopped(mvm->hw);
Luca Coelhoa339e912016-02-02 22:58:46 +02001588 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001589 }
1590
1591 mvm->scan_status &= ~mvm->scan_uid_status[uid];
David Spinadeld2496222014-05-20 12:46:37 +03001592 IWL_DEBUG_SCAN(mvm,
Ayala Bekera7b3bc92015-08-20 04:00:38 +03001593 "Scan completed, uid %u type %u, status %s, EBS status %s\n",
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001594 uid, mvm->scan_uid_status[uid],
David Spinadeld2496222014-05-20 12:46:37 +03001595 notif->status == IWL_SCAN_OFFLOAD_COMPLETED ?
1596 "completed" : "aborted",
Ayala Bekera7b3bc92015-08-20 04:00:38 +03001597 iwl_mvm_ebs_status_str(notif->ebs_status));
1598 IWL_DEBUG_SCAN(mvm,
1599 "Last line %d, Last iteration %d, Time from last iteration %d\n",
Ayala Beker1a84e772015-07-22 13:54:31 +03001600 notif->last_schedule, notif->last_iter,
1601 __le32_to_cpu(notif->time_from_last_iter));
David Spinadeld2496222014-05-20 12:46:37 +03001602
David Spinadelf0bf8592015-05-20 11:56:59 +03001603 if (notif->ebs_status != IWL_SCAN_EBS_SUCCESS &&
1604 notif->ebs_status != IWL_SCAN_EBS_INACTIVE)
Haim Dreyfuss5a4b2af2015-01-13 11:54:51 +02001605 mvm->last_ebs_successful = false;
1606
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001607 mvm->scan_uid_status[uid] = 0;
David Spinadeld2496222014-05-20 12:46:37 +03001608}
1609
Johannes Berg04168412015-06-23 21:22:09 +02001610void iwl_mvm_rx_umac_scan_iter_complete_notif(struct iwl_mvm *mvm,
1611 struct iwl_rx_cmd_buffer *rxb)
Avraham Sternee9219b2015-03-23 15:09:27 +02001612{
1613 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1614 struct iwl_umac_scan_iter_complete_notif *notif = (void *)pkt->data;
1615 u8 buf[256];
1616
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001617 mvm->scan_start = le64_to_cpu(notif->start_tsf);
1618
Avraham Sternee9219b2015-03-23 15:09:27 +02001619 IWL_DEBUG_SCAN(mvm,
1620 "UMAC Scan iteration complete: status=0x%x scanned_channels=%d channels list: %s\n",
1621 notif->status, notif->scanned_channels,
1622 iwl_mvm_dump_channel_list(notif->results,
1623 notif->scanned_channels, buf,
1624 sizeof(buf)));
Luca Coelhoa339e912016-02-02 22:58:46 +02001625
1626 if (mvm->sched_scan_pass_all == SCHED_SCAN_PASS_ALL_FOUND) {
1627 IWL_DEBUG_SCAN(mvm, "Pass all scheduled scan results found\n");
1628 ieee80211_sched_scan_results(mvm->hw);
1629 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_ENABLED;
1630 }
Avrahams Sternaacf8f12016-07-19 11:15:09 +03001631
1632 IWL_DEBUG_SCAN(mvm,
1633 "UMAC Scan iteration complete: scan started at %llu (TSF)\n",
1634 mvm->scan_start);
Avraham Sternee9219b2015-03-23 15:09:27 +02001635}
1636
Luciano Coelho434f3c12015-05-07 14:41:44 +03001637static int iwl_mvm_umac_scan_abort(struct iwl_mvm *mvm, int type)
David Spinadeld2496222014-05-20 12:46:37 +03001638{
Johannes Berg88742c92015-06-30 15:31:22 +02001639 struct iwl_umac_scan_abort cmd = {};
Luciano Coelho434f3c12015-05-07 14:41:44 +03001640 int uid, ret;
David Spinadeld2496222014-05-20 12:46:37 +03001641
1642 lockdep_assert_held(&mvm->mutex);
1643
Luciano Coelho434f3c12015-05-07 14:41:44 +03001644 /* We should always get a valid index here, because we already
1645 * checked that this type of scan was running in the generic
1646 * code.
1647 */
1648 uid = iwl_mvm_scan_uid_by_status(mvm, type);
1649 if (WARN_ON_ONCE(uid < 0))
1650 return uid;
1651
1652 cmd.uid = cpu_to_le32(uid);
1653
David Spinadeld2496222014-05-20 12:46:37 +03001654 IWL_DEBUG_SCAN(mvm, "Sending scan abort, uid %u\n", uid);
1655
Johannes Berg88742c92015-06-30 15:31:22 +02001656 ret = iwl_mvm_send_cmd_pdu(mvm,
1657 iwl_cmd_id(SCAN_ABORT_UMAC,
1658 IWL_ALWAYS_LONG_GROUP, 0),
1659 0, sizeof(cmd), &cmd);
Luciano Coelho434f3c12015-05-07 14:41:44 +03001660 if (!ret)
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001661 mvm->scan_uid_status[uid] = type << IWL_MVM_SCAN_STOPPING_SHIFT;
Luciano Coelho434f3c12015-05-07 14:41:44 +03001662
1663 return ret;
David Spinadeld2496222014-05-20 12:46:37 +03001664}
1665
Luciano Coelhof2461792015-05-07 15:23:19 +03001666static int iwl_mvm_scan_stop_wait(struct iwl_mvm *mvm, int type)
David Spinadeld2496222014-05-20 12:46:37 +03001667{
1668 struct iwl_notification_wait wait_scan_done;
Sara Sharon6eb031d2015-07-13 14:50:47 +03001669 static const u16 scan_done_notif[] = { SCAN_COMPLETE_UMAC,
Luciano Coelhof2461792015-05-07 15:23:19 +03001670 SCAN_OFFLOAD_COMPLETE, };
Luciano Coelho434f3c12015-05-07 14:41:44 +03001671 int ret;
David Spinadeld2496222014-05-20 12:46:37 +03001672
Luciano Coelhof2461792015-05-07 15:23:19 +03001673 lockdep_assert_held(&mvm->mutex);
1674
David Spinadeld2496222014-05-20 12:46:37 +03001675 iwl_init_notification_wait(&mvm->notif_wait, &wait_scan_done,
1676 scan_done_notif,
1677 ARRAY_SIZE(scan_done_notif),
Luciano Coelho434f3c12015-05-07 14:41:44 +03001678 NULL, NULL);
David Spinadeld2496222014-05-20 12:46:37 +03001679
1680 IWL_DEBUG_SCAN(mvm, "Preparing to stop scan, type %x\n", type);
1681
Johannes Berg859d9142015-06-01 17:11:11 +02001682 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN))
Luciano Coelhof2461792015-05-07 15:23:19 +03001683 ret = iwl_mvm_umac_scan_abort(mvm, type);
1684 else
1685 ret = iwl_mvm_lmac_scan_abort(mvm);
1686
David Spinadeld2496222014-05-20 12:46:37 +03001687 if (ret) {
Luciano Coelho434f3c12015-05-07 14:41:44 +03001688 IWL_DEBUG_SCAN(mvm, "couldn't stop scan type %d\n", type);
David Spinadeld2496222014-05-20 12:46:37 +03001689 iwl_remove_notification(&mvm->notif_wait, &wait_scan_done);
1690 return ret;
1691 }
1692
1693 ret = iwl_wait_notification(&mvm->notif_wait, &wait_scan_done, 1 * HZ);
David Spinadeld2496222014-05-20 12:46:37 +03001694
1695 return ret;
1696}
1697
1698int iwl_mvm_scan_size(struct iwl_mvm *mvm)
1699{
Sara Sharona0b48282017-01-12 16:01:11 +02001700 int base_size = IWL_SCAN_REQ_UMAC_SIZE_V1;
Sara Sharon9ba221b2016-11-17 11:35:05 +02001701
Sara Sharona0b48282017-01-12 16:01:11 +02001702 if (iwl_mvm_has_new_tx_api(mvm))
1703 base_size = IWL_SCAN_REQ_UMAC_SIZE;
Sara Sharon9ba221b2016-11-17 11:35:05 +02001704
Johannes Berg859d9142015-06-01 17:11:11 +02001705 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN))
Sara Sharon9ba221b2016-11-17 11:35:05 +02001706 return base_size +
David Spinadeld2496222014-05-20 12:46:37 +03001707 sizeof(struct iwl_scan_channel_cfg_umac) *
1708 mvm->fw->ucode_capa.n_scan_channels +
1709 sizeof(struct iwl_scan_req_umac_tail);
1710
Luciano Coelho65ff5562015-03-20 13:35:47 +02001711 return sizeof(struct iwl_scan_req_lmac) +
Luciano Coelho1f940382015-02-10 13:03:38 +02001712 sizeof(struct iwl_scan_channel_cfg_lmac) *
1713 mvm->fw->ucode_capa.n_scan_channels +
1714 sizeof(struct iwl_scan_probe_req);
David Spinadeld2496222014-05-20 12:46:37 +03001715}
David Spinadel4ffb3652015-03-10 10:06:02 +02001716
1717/*
1718 * This function is used in nic restart flow, to inform mac80211 about scans
1719 * that was aborted by restart flow or by an assert.
1720 */
1721void iwl_mvm_report_scan_aborted(struct iwl_mvm *mvm)
1722{
Johannes Berg859d9142015-06-01 17:11:11 +02001723 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001724 int uid, i;
Alexander Bondar963221b2015-03-26 11:07:35 +02001725
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001726 uid = iwl_mvm_scan_uid_by_status(mvm, IWL_MVM_SCAN_REGULAR);
1727 if (uid >= 0) {
Avraham Stern7947d3e2016-07-05 15:23:12 +03001728 struct cfg80211_scan_info info = {
1729 .aborted = true,
1730 };
1731
1732 ieee80211_scan_completed(mvm->hw, &info);
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001733 mvm->scan_uid_status[uid] = 0;
Alexander Bondar963221b2015-03-26 11:07:35 +02001734 }
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001735 uid = iwl_mvm_scan_uid_by_status(mvm, IWL_MVM_SCAN_SCHED);
1736 if (uid >= 0 && !mvm->restart_fw) {
David Spinadel4ffb3652015-03-10 10:06:02 +02001737 ieee80211_sched_scan_stopped(mvm->hw);
Luca Coelhoa339e912016-02-02 22:58:46 +02001738 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001739 mvm->scan_uid_status[uid] = 0;
Alexander Bondar963221b2015-03-26 11:07:35 +02001740 }
1741
1742 /* We shouldn't have any UIDs still set. Loop over all the
1743 * UIDs to make sure there's nothing left there and warn if
1744 * any is found.
1745 */
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001746 for (i = 0; i < mvm->max_scans; i++) {
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001747 if (WARN_ONCE(mvm->scan_uid_status[i],
1748 "UMAC scan UID %d status was not cleaned\n",
1749 i))
1750 mvm->scan_uid_status[i] = 0;
Alexander Bondar963221b2015-03-26 11:07:35 +02001751 }
David Spinadel4ffb3652015-03-10 10:06:02 +02001752 } else {
Avraham Stern7947d3e2016-07-05 15:23:12 +03001753 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) {
1754 struct cfg80211_scan_info info = {
1755 .aborted = true,
1756 };
1757
1758 ieee80211_scan_completed(mvm->hw, &info);
1759 }
Luciano Coelho9af91f42015-02-10 10:42:26 +02001760
1761 /* Sched scan will be restarted by mac80211 in
1762 * restart_hw, so do not report if FW is about to be
1763 * restarted.
1764 */
Luca Coelhoa339e912016-02-02 22:58:46 +02001765 if ((mvm->scan_status & IWL_MVM_SCAN_SCHED) &&
1766 !mvm->restart_fw) {
Luciano Coelho9af91f42015-02-10 10:42:26 +02001767 ieee80211_sched_scan_stopped(mvm->hw);
Luca Coelhoa339e912016-02-02 22:58:46 +02001768 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
1769 }
David Spinadel4ffb3652015-03-10 10:06:02 +02001770 }
1771}
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001772
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001773int iwl_mvm_scan_stop(struct iwl_mvm *mvm, int type, bool notify)
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001774{
1775 int ret;
1776
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001777 if (!(mvm->scan_status & type))
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001778 return 0;
1779
1780 if (iwl_mvm_is_radio_killed(mvm)) {
1781 ret = 0;
1782 goto out;
1783 }
1784
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001785 ret = iwl_mvm_scan_stop_wait(mvm, type);
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001786 if (!ret)
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001787 mvm->scan_status |= type << IWL_MVM_SCAN_STOPPING_SHIFT;
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001788out:
1789 /* Clear the scan status so the next scan requests will
1790 * succeed and mark the scan as stopping, so that the Rx
1791 * handler doesn't do anything, as the scan was stopped from
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001792 * above.
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001793 */
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001794 mvm->scan_status &= ~type;
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001795
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001796 if (type == IWL_MVM_SCAN_REGULAR) {
1797 /* Since the rx handler won't do anything now, we have
1798 * to release the scan reference here.
1799 */
1800 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
Luca Coelho69e04642016-05-03 12:18:33 +03001801 cancel_delayed_work(&mvm->scan_timeout_dwork);
Avraham Stern7947d3e2016-07-05 15:23:12 +03001802 if (notify) {
1803 struct cfg80211_scan_info info = {
1804 .aborted = true,
1805 };
1806
1807 ieee80211_scan_completed(mvm->hw, &info);
1808 }
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001809 } else if (notify) {
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001810 ieee80211_sched_scan_stopped(mvm->hw);
Luca Coelhoa339e912016-02-02 22:58:46 +02001811 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_DISABLED;
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001812 }
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001813
1814 return ret;
1815}