blob: ed15b50dced7fa3ee483485703a31a81b5eef161 [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
Johannes Berg8ca151b2013-01-24 14:25:36 +010010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
24 *
25 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020026 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010027 *
28 * Contact Information:
29 * Intel Linux Wireless <ilw@linux.intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020034 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Luciano Coelho9af91f42015-02-10 10:42:26 +020035 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010036 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *
64 *****************************************************************************/
65
66#include <linux/etherdevice.h>
67#include <net/mac80211.h>
68
69#include "mvm.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010070#include "fw-api-scan.h"
71
Haim Dreyfussa1ed4022014-12-01 23:30:07 +020072#define IWL_DENSE_EBS_SCAN_RATIO 5
73#define IWL_SPARSE_EBS_SCAN_RATIO 1
Alexander Bondar8a110d92014-03-12 17:31:19 +020074
David Spinadel9437e992015-06-22 13:20:00 +030075enum iwl_mvm_scan_type {
76 IWL_SCAN_TYPE_UNASSOC,
77 IWL_SCAN_TYPE_WILD,
78 IWL_SCAN_TYPE_MILD,
79 IWL_SCAN_TYPE_FRAGMENTED,
80};
81
82enum iwl_mvm_traffic_load {
83 IWL_MVM_TRAFFIC_LOW,
84 IWL_MVM_TRAFFIC_MEDIUM,
85 IWL_MVM_TRAFFIC_HIGH,
86};
87
88struct iwl_mvm_scan_timing_params {
89 u32 dwell_active;
90 u32 dwell_passive;
91 u32 dwell_fragmented;
Alexander Bondar8a110d92014-03-12 17:31:19 +020092 u32 suspend_time;
David Spinadel9437e992015-06-22 13:20:00 +030093 u32 max_out_time;
94};
95
96static struct iwl_mvm_scan_timing_params scan_timing[] = {
97 [IWL_SCAN_TYPE_UNASSOC] = {
98 .dwell_active = 10,
99 .dwell_passive = 110,
100 .dwell_fragmented = 44,
101 .suspend_time = 0,
102 .max_out_time = 0,
103 },
104 [IWL_SCAN_TYPE_WILD] = {
105 .dwell_active = 10,
106 .dwell_passive = 110,
107 .dwell_fragmented = 44,
108 .suspend_time = 30,
109 .max_out_time = 120,
110 },
111 [IWL_SCAN_TYPE_MILD] = {
112 .dwell_active = 10,
113 .dwell_passive = 110,
114 .dwell_fragmented = 44,
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
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;
Alexander Bondar8a110d92014-03-12 17:31:19 +0200144};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100145
David Spinadeld2496222014-05-20 12:46:37 +0300146static u8 iwl_mvm_scan_rx_ant(struct iwl_mvm *mvm)
147{
148 if (mvm->scan_rx_ant != ANT_NONE)
149 return mvm->scan_rx_ant;
Moshe Harela0544272014-12-08 21:13:14 +0200150 return iwl_mvm_get_valid_rx_ant(mvm);
David Spinadeld2496222014-05-20 12:46:37 +0300151}
152
Johannes Berg8ca151b2013-01-24 14:25:36 +0100153static inline __le16 iwl_mvm_scan_rx_chain(struct iwl_mvm *mvm)
154{
155 u16 rx_chain;
Oren Givon91b05d12013-08-19 08:36:48 +0300156 u8 rx_ant;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100157
David Spinadeld2496222014-05-20 12:46:37 +0300158 rx_ant = iwl_mvm_scan_rx_ant(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100159 rx_chain = rx_ant << PHY_RX_CHAIN_VALID_POS;
160 rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_MIMO_SEL_POS;
161 rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_SEL_POS;
162 rx_chain |= 0x1 << PHY_RX_CHAIN_DRIVER_FORCE_POS;
163 return cpu_to_le16(rx_chain);
164}
165
David Spinadelfb98be52014-05-04 12:51:10 +0300166static __le32 iwl_mvm_scan_rxon_flags(enum ieee80211_band band)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100167{
David Spinadelfb98be52014-05-04 12:51:10 +0300168 if (band == IEEE80211_BAND_2GHZ)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100169 return cpu_to_le32(PHY_BAND_24);
170 else
171 return cpu_to_le32(PHY_BAND_5);
172}
173
174static inline __le32
175iwl_mvm_scan_rate_n_flags(struct iwl_mvm *mvm, enum ieee80211_band band,
176 bool no_cck)
177{
178 u32 tx_ant;
179
180 mvm->scan_last_antenna_idx =
Moshe Harela0544272014-12-08 21:13:14 +0200181 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100182 mvm->scan_last_antenna_idx);
183 tx_ant = BIT(mvm->scan_last_antenna_idx) << RATE_MCS_ANT_POS;
184
185 if (band == IEEE80211_BAND_2GHZ && !no_cck)
186 return cpu_to_le32(IWL_RATE_1M_PLCP | RATE_MCS_CCK_MSK |
187 tx_ant);
188 else
189 return cpu_to_le32(IWL_RATE_6M_PLCP | tx_ant);
190}
191
Alexander Bondar8a110d92014-03-12 17:31:19 +0200192static void iwl_mvm_scan_condition_iterator(void *data, u8 *mac,
193 struct ieee80211_vif *vif)
Haim Dreyfuss61f63252013-11-03 23:02:59 +0200194{
Alexander Bondar8a110d92014-03-12 17:31:19 +0200195 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200196 int *global_cnt = data;
Haim Dreyfuss61f63252013-11-03 23:02:59 +0200197
David Spinadel1e2ebe02014-10-26 15:53:27 +0200198 if (vif->type != NL80211_IFTYPE_P2P_DEVICE && mvmvif->phy_ctxt &&
199 mvmvif->phy_ctxt->id < MAX_PHYS)
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200200 *global_cnt += 1;
Alexander Bondar8a110d92014-03-12 17:31:19 +0200201}
202
David Spinadel9437e992015-06-22 13:20:00 +0300203static enum iwl_mvm_traffic_load iwl_mvm_get_traffic_load(struct iwl_mvm *mvm)
204{
205 return IWL_MVM_TRAFFIC_LOW;
206}
207
208static enum
209iwl_mvm_scan_type iwl_mvm_get_scan_type(struct iwl_mvm *mvm,
210 struct ieee80211_vif *vif,
211 struct iwl_mvm_scan_params *params)
Alexander Bondar8a110d92014-03-12 17:31:19 +0200212{
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200213 int global_cnt = 0;
David Spinadel9437e992015-06-22 13:20:00 +0300214 enum iwl_mvm_traffic_load load;
215 bool low_latency;
Alexander Bondar8a110d92014-03-12 17:31:19 +0200216
217 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
218 IEEE80211_IFACE_ITER_NORMAL,
219 iwl_mvm_scan_condition_iterator,
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200220 &global_cnt);
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200221 if (!global_cnt)
David Spinadel9437e992015-06-22 13:20:00 +0300222 return IWL_SCAN_TYPE_UNASSOC;
Alexander Bondaref67f18d2014-03-30 10:47:08 +0300223
David Spinadel9437e992015-06-22 13:20:00 +0300224 load = iwl_mvm_get_traffic_load(mvm);
225 low_latency = iwl_mvm_low_latency(mvm);
Alexander Bondaref67f18d2014-03-30 10:47:08 +0300226
David Spinadel9437e992015-06-22 13:20:00 +0300227 if ((load == IWL_MVM_TRAFFIC_HIGH || low_latency) &&
228 vif->type != NL80211_IFTYPE_P2P_DEVICE &&
229 fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_FRAGMENTED_SCAN))
230 return IWL_SCAN_TYPE_FRAGMENTED;
Johannes Berg859d9142015-06-01 17:11:11 +0200231
David Spinadel9437e992015-06-22 13:20:00 +0300232 if (load >= IWL_MVM_TRAFFIC_MEDIUM || low_latency)
233 return IWL_SCAN_TYPE_MILD;
David Spinadel2ce89cd2014-07-22 13:11:18 +0300234
David Spinadel9437e992015-06-22 13:20:00 +0300235 return IWL_SCAN_TYPE_WILD;
Haim Dreyfuss61f63252013-11-03 23:02:59 +0200236}
237
Andrei Otcheretianski73897bd2014-07-09 18:59:14 +0300238static inline bool iwl_mvm_rrm_scan_needed(struct iwl_mvm *mvm)
239{
240 /* require rrm scan whenever the fw supports it */
Johannes Berg859d9142015-06-01 17:11:11 +0200241 return fw_has_capa(&mvm->fw->ucode_capa,
242 IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT);
Andrei Otcheretianski73897bd2014-07-09 18:59:14 +0300243}
244
Luciano Coelho999d2562015-03-27 10:28:26 +0300245static int iwl_mvm_max_scan_ie_fw_cmd_room(struct iwl_mvm *mvm)
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300246{
247 int max_probe_len;
248
Luciano Coelho1f940382015-02-10 13:03:38 +0200249 max_probe_len = SCAN_OFFLOAD_PROBE_REQ_SIZE;
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300250
251 /* we create the 802.11 header and SSID element */
252 max_probe_len -= 24 + 2;
253
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300254 /* DS parameter set element is added on 2.4GHZ band if required */
255 if (iwl_mvm_rrm_scan_needed(mvm))
256 max_probe_len -= 3;
257
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300258 return max_probe_len;
259}
260
Luciano Coelho999d2562015-03-27 10:28:26 +0300261int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm)
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300262{
Luciano Coelho999d2562015-03-27 10:28:26 +0300263 int max_ie_len = iwl_mvm_max_scan_ie_fw_cmd_room(mvm);
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300264
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300265 /* TODO: [BUG] This function should return the maximum allowed size of
266 * scan IEs, however the LMAC scan api contains both 2GHZ and 5GHZ IEs
267 * in the same command. So the correct implementation of this function
268 * is just iwl_mvm_max_scan_ie_fw_cmd_room() / 2. Currently the scan
269 * command has only 512 bytes and it would leave us with about 240
270 * bytes for scan IEs, which is clearly not enough. So meanwhile
271 * we will report an incorrect value. This may result in a failure to
272 * issue a scan in unified_scan_lmac and unified_sched_scan_lmac
273 * functions with -ENOBUFS, if a large enough probe will be provided.
274 */
275 return max_ie_len;
276}
277
Avraham Stern1fa1bcc2015-03-31 16:22:33 +0300278static u8 *iwl_mvm_dump_channel_list(struct iwl_scan_results_notif *res,
279 int num_res, u8 *buf, size_t buf_size)
280{
281 int i;
282 u8 *pos = buf, *end = buf + buf_size;
283
284 for (i = 0; pos < end && i < num_res; i++)
285 pos += snprintf(pos, end - pos, " %u", res[i].channel);
286
287 /* terminate the string in case the buffer was too short */
288 *(buf + buf_size - 1) = '\0';
289
290 return buf;
291}
292
Johannes Berg04168412015-06-23 21:22:09 +0200293void iwl_mvm_rx_lmac_scan_iter_complete_notif(struct iwl_mvm *mvm,
294 struct iwl_rx_cmd_buffer *rxb)
Alexander Bondare5d74642014-12-09 19:15:49 +0200295{
296 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Avraham Stern1083fd72015-03-31 16:14:41 +0300297 struct iwl_lmac_scan_complete_notif *notif = (void *)pkt->data;
Avraham Stern1fa1bcc2015-03-31 16:22:33 +0300298 u8 buf[256];
Alexander Bondare5d74642014-12-09 19:15:49 +0200299
300 IWL_DEBUG_SCAN(mvm,
Avraham Stern1fa1bcc2015-03-31 16:22:33 +0300301 "Scan offload iteration complete: status=0x%x scanned channels=%d channels list: %s\n",
302 notif->status, notif->scanned_channels,
303 iwl_mvm_dump_channel_list(notif->results,
304 notif->scanned_channels, buf,
305 sizeof(buf)));
Alexander Bondare5d74642014-12-09 19:15:49 +0200306}
307
Johannes Berg04168412015-06-23 21:22:09 +0200308void iwl_mvm_rx_scan_match_found(struct iwl_mvm *mvm,
309 struct iwl_rx_cmd_buffer *rxb)
David Spinadel35a000b2013-08-28 09:29:43 +0300310{
David Spinadeld2496222014-05-20 12:46:37 +0300311 IWL_DEBUG_SCAN(mvm, "Scheduled scan results\n");
312 ieee80211_sched_scan_results(mvm->hw);
David Spinadel35a000b2013-08-28 09:29:43 +0300313}
314
David Spinadelf0bf8592015-05-20 11:56:59 +0300315static const char *iwl_mvm_ebs_status_str(enum iwl_scan_ebs_status status)
316{
317 switch (status) {
318 case IWL_SCAN_EBS_SUCCESS:
319 return "successful";
320 case IWL_SCAN_EBS_INACTIVE:
321 return "inactive";
322 case IWL_SCAN_EBS_FAILED:
323 case IWL_SCAN_EBS_CHAN_NOT_FOUND:
324 default:
325 return "failed";
326 }
327}
328
Johannes Berg04168412015-06-23 21:22:09 +0200329void iwl_mvm_rx_lmac_scan_complete_notif(struct iwl_mvm *mvm,
330 struct iwl_rx_cmd_buffer *rxb)
David Spinadel35a000b2013-08-28 09:29:43 +0300331{
332 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Luciano Coelho9af91f42015-02-10 10:42:26 +0200333 struct iwl_periodic_scan_complete *scan_notif = (void *)pkt->data;
334 bool aborted = (scan_notif->status == IWL_SCAN_OFFLOAD_ABORTED);
David Spinadelfb98be52014-05-04 12:51:10 +0300335
Johannes Berga6623e82014-01-27 15:40:53 +0100336 /* scan status must be locked for proper checking */
337 lockdep_assert_held(&mvm->mutex);
338
Luciano Coelho9af91f42015-02-10 10:42:26 +0200339 /* We first check if we were stopping a scan, in which case we
340 * just clear the stopping flag. Then we check if it was a
341 * firmware initiated stop, in which case we need to inform
342 * mac80211.
343 * Note that we can have a stopping and a running scan
344 * simultaneously, but we can't have two different types of
345 * scans stopping or running at the same time (since LMAC
346 * doesn't support it).
347 */
Haim Dreyfusse820c2d2014-04-06 11:19:09 +0300348
Luciano Coelho9af91f42015-02-10 10:42:26 +0200349 if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_SCHED) {
350 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR);
David Spinadel35a000b2013-08-28 09:29:43 +0300351
Ayala Bekera7b3bc92015-08-20 04:00:38 +0300352 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n",
Luciano Coelho9af91f42015-02-10 10:42:26 +0200353 aborted ? "aborted" : "completed",
Ayala Bekera7b3bc92015-08-20 04:00:38 +0300354 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
355 IWL_DEBUG_SCAN(mvm,
356 "Last line %d, Last iteration %d, Time after last iteration %d\n",
Ayala Beker1a84e772015-07-22 13:54:31 +0300357 scan_notif->last_schedule_line,
358 scan_notif->last_schedule_iteration,
359 __le32_to_cpu(scan_notif->time_after_last_iter));
Luciano Coelho9af91f42015-02-10 10:42:26 +0200360
361 mvm->scan_status &= ~IWL_MVM_SCAN_STOPPING_SCHED;
362 } else if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR) {
363 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s\n",
364 aborted ? "aborted" : "completed",
David Spinadelf0bf8592015-05-20 11:56:59 +0300365 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
Luciano Coelho9af91f42015-02-10 10:42:26 +0200366
367 mvm->scan_status &= ~IWL_MVM_SCAN_STOPPING_REGULAR;
368 } else if (mvm->scan_status & IWL_MVM_SCAN_SCHED) {
369 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_REGULAR);
370
Ayala Bekera7b3bc92015-08-20 04:00:38 +0300371 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n",
Luciano Coelho9af91f42015-02-10 10:42:26 +0200372 aborted ? "aborted" : "completed",
Ayala Bekera7b3bc92015-08-20 04:00:38 +0300373 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
374 IWL_DEBUG_SCAN(mvm,
375 "Last line %d, Last iteration %d, Time after last iteration %d (FW)\n",
Ayala Beker1a84e772015-07-22 13:54:31 +0300376 scan_notif->last_schedule_line,
377 scan_notif->last_schedule_iteration,
378 __le32_to_cpu(scan_notif->time_after_last_iter));
Luciano Coelho9af91f42015-02-10 10:42:26 +0200379
380 mvm->scan_status &= ~IWL_MVM_SCAN_SCHED;
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200381 ieee80211_sched_scan_stopped(mvm->hw);
Luciano Coelho9af91f42015-02-10 10:42:26 +0200382 } else if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) {
383 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s (FW)\n",
384 aborted ? "aborted" : "completed",
David Spinadelf0bf8592015-05-20 11:56:59 +0300385 iwl_mvm_ebs_status_str(scan_notif->ebs_status));
Luciano Coelho9af91f42015-02-10 10:42:26 +0200386
387 mvm->scan_status &= ~IWL_MVM_SCAN_REGULAR;
David Spinadelfb98be52014-05-04 12:51:10 +0300388 ieee80211_scan_completed(mvm->hw,
Luciano Coelho1f940382015-02-10 13:03:38 +0200389 scan_notif->status == IWL_SCAN_OFFLOAD_ABORTED);
Eliad Peller4ff78182014-06-22 14:44:44 +0300390 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200391 }
David Spinadel35a000b2013-08-28 09:29:43 +0300392
David Spinadelf0bf8592015-05-20 11:56:59 +0300393 mvm->last_ebs_successful =
394 scan_notif->ebs_status == IWL_SCAN_EBS_SUCCESS ||
395 scan_notif->ebs_status == IWL_SCAN_EBS_INACTIVE;
David Spinadel35a000b2013-08-28 09:29:43 +0300396}
397
David Spinadel35a000b2013-08-28 09:29:43 +0300398static int iwl_ssid_exist(u8 *ssid, u8 ssid_len, struct iwl_ssid_ie *ssid_list)
399{
400 int i;
401
402 for (i = 0; i < PROBE_OPTION_MAX; i++) {
403 if (!ssid_list[i].len)
404 break;
405 if (ssid_list[i].len == ssid_len &&
406 !memcmp(ssid_list->ssid, ssid, ssid_len))
407 return i;
408 }
409 return -1;
410}
411
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300412/* We insert the SSIDs in an inverted order, because the FW will
413 * invert it back.
414 */
415static void iwl_scan_build_ssids(struct iwl_mvm_scan_params *params,
416 struct iwl_ssid_ie *ssids,
417 u32 *ssid_bitmap)
David Spinadel35a000b2013-08-28 09:29:43 +0300418{
419 int i, j;
420 int index;
421
422 /*
423 * copy SSIDs from match list.
424 * iwl_config_sched_scan_profiles() uses the order of these ssids to
425 * config match list.
426 */
Luciano Coelho1c1b5b22015-04-02 16:31:42 +0300427 for (i = 0, j = params->n_match_sets - 1;
428 j >= 0 && i < PROBE_OPTION_MAX;
429 i++, j--) {
Johannes Bergea73cbc2014-01-24 10:53:53 +0100430 /* skip empty SSID matchsets */
Luciano Coelho1c1b5b22015-04-02 16:31:42 +0300431 if (!params->match_sets[j].ssid.ssid_len)
Johannes Bergea73cbc2014-01-24 10:53:53 +0100432 continue;
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300433 ssids[i].id = WLAN_EID_SSID;
434 ssids[i].len = params->match_sets[j].ssid.ssid_len;
435 memcpy(ssids[i].ssid, params->match_sets[j].ssid.ssid,
436 ssids[i].len);
David Spinadel35a000b2013-08-28 09:29:43 +0300437 }
438
439 /* add SSIDs from scan SSID list */
440 *ssid_bitmap = 0;
Luciano Coelho1c1b5b22015-04-02 16:31:42 +0300441 for (j = params->n_ssids - 1;
442 j >= 0 && i < PROBE_OPTION_MAX;
443 i++, j--) {
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300444 index = iwl_ssid_exist(params->ssids[j].ssid,
445 params->ssids[j].ssid_len,
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300446 ssids);
David Spinadel35a000b2013-08-28 09:29:43 +0300447 if (index < 0) {
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300448 ssids[i].id = WLAN_EID_SSID;
449 ssids[i].len = params->ssids[j].ssid_len;
450 memcpy(ssids[i].ssid, params->ssids[j].ssid,
451 ssids[i].len);
452 *ssid_bitmap |= BIT(i);
David Spinadel35a000b2013-08-28 09:29:43 +0300453 } else {
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300454 *ssid_bitmap |= BIT(index);
David Spinadel35a000b2013-08-28 09:29:43 +0300455 }
456 }
457}
458
Luciano Coelho416c9b52015-05-05 11:32:29 +0300459static int
460iwl_mvm_config_sched_scan_profiles(struct iwl_mvm *mvm,
461 struct cfg80211_sched_scan_request *req)
David Spinadel35a000b2013-08-28 09:29:43 +0300462{
463 struct iwl_scan_offload_profile *profile;
464 struct iwl_scan_offload_profile_cfg *profile_cfg;
465 struct iwl_scan_offload_blacklist *blacklist;
466 struct iwl_host_cmd cmd = {
467 .id = SCAN_OFFLOAD_UPDATE_PROFILES_CMD,
David Spinadel35a000b2013-08-28 09:29:43 +0300468 .len[1] = sizeof(*profile_cfg),
469 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
470 .dataflags[1] = IWL_HCMD_DFL_NOCOPY,
471 };
472 int blacklist_len;
473 int i;
474 int ret;
475
476 if (WARN_ON(req->n_match_sets > IWL_SCAN_MAX_PROFILES))
477 return -EIO;
478
479 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_SHORT_BL)
480 blacklist_len = IWL_SCAN_SHORT_BLACKLIST_LEN;
481 else
482 blacklist_len = IWL_SCAN_MAX_BLACKLIST_LEN;
483
484 blacklist = kzalloc(sizeof(*blacklist) * blacklist_len, GFP_KERNEL);
485 if (!blacklist)
486 return -ENOMEM;
487
488 profile_cfg = kzalloc(sizeof(*profile_cfg), GFP_KERNEL);
489 if (!profile_cfg) {
490 ret = -ENOMEM;
491 goto free_blacklist;
492 }
493
494 cmd.data[0] = blacklist;
495 cmd.len[0] = sizeof(*blacklist) * blacklist_len;
496 cmd.data[1] = profile_cfg;
497
498 /* No blacklist configuration */
499
500 profile_cfg->num_profiles = req->n_match_sets;
501 profile_cfg->active_clients = SCAN_CLIENT_SCHED_SCAN;
502 profile_cfg->pass_match = SCAN_CLIENT_SCHED_SCAN;
503 profile_cfg->match_notify = SCAN_CLIENT_SCHED_SCAN;
David Spinadel6e0bbe52013-12-30 09:59:45 +0200504 if (!req->n_match_sets || !req->match_sets[0].ssid.ssid_len)
505 profile_cfg->any_beacon_notify = SCAN_CLIENT_SCHED_SCAN;
David Spinadel35a000b2013-08-28 09:29:43 +0300506
507 for (i = 0; i < req->n_match_sets; i++) {
508 profile = &profile_cfg->profiles[i];
509 profile->ssid_index = i;
510 /* Support any cipher and auth algorithm */
511 profile->unicast_cipher = 0xff;
512 profile->auth_alg = 0xff;
513 profile->network_type = IWL_NETWORK_TYPE_ANY;
514 profile->band_selection = IWL_SCAN_OFFLOAD_SELECT_ANY;
515 profile->client_bitmap = SCAN_CLIENT_SCHED_SCAN;
516 }
517
518 IWL_DEBUG_SCAN(mvm, "Sending scheduled scan profile config\n");
519
520 ret = iwl_mvm_send_cmd(mvm, &cmd);
521 kfree(profile_cfg);
522free_blacklist:
523 kfree(blacklist);
524
525 return ret;
526}
527
David Spinadeld2496222014-05-20 12:46:37 +0300528static bool iwl_mvm_scan_pass_all(struct iwl_mvm *mvm,
529 struct cfg80211_sched_scan_request *req)
530{
531 if (req->n_match_sets && req->match_sets[0].ssid.ssid_len) {
532 IWL_DEBUG_SCAN(mvm,
533 "Sending scheduled scan with filtering, n_match_sets %d\n",
534 req->n_match_sets);
535 return false;
536 }
537
538 IWL_DEBUG_SCAN(mvm, "Sending Scheduled scan without filtering\n");
539 return true;
540}
541
Luciano Coelhof2461792015-05-07 15:23:19 +0300542static int iwl_mvm_lmac_scan_abort(struct iwl_mvm *mvm)
David Spinadel35a000b2013-08-28 09:29:43 +0300543{
544 int ret;
545 struct iwl_host_cmd cmd = {
546 .id = SCAN_OFFLOAD_ABORT_CMD,
David Spinadel35a000b2013-08-28 09:29:43 +0300547 };
548 u32 status;
549
David Spinadel35a000b2013-08-28 09:29:43 +0300550 ret = iwl_mvm_send_cmd_status(mvm, &cmd, &status);
551 if (ret)
552 return ret;
553
554 if (status != CAN_ABORT_STATUS) {
555 /*
556 * The scan abort will return 1 for success or
557 * 2 for "failure". A failure condition can be
558 * due to simply not being in an active scan which
559 * can occur if we send the scan abort before the
560 * microcode has notified us that a scan is completed.
561 */
562 IWL_DEBUG_SCAN(mvm, "SCAN OFFLOAD ABORT ret %d.\n", status);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200563 ret = -ENOENT;
David Spinadel35a000b2013-08-28 09:29:43 +0300564 }
565
566 return ret;
567}
568
Luciano Coelho65ff5562015-03-20 13:35:47 +0200569static void iwl_mvm_scan_fill_tx_cmd(struct iwl_mvm *mvm,
570 struct iwl_scan_req_tx_cmd *tx_cmd,
571 bool no_cck)
David Spinadelfb98be52014-05-04 12:51:10 +0300572{
573 tx_cmd[0].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
574 TX_CMD_FLG_BT_DIS);
575 tx_cmd[0].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm,
576 IEEE80211_BAND_2GHZ,
577 no_cck);
578 tx_cmd[0].sta_id = mvm->aux_sta.sta_id;
579
580 tx_cmd[1].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
581 TX_CMD_FLG_BT_DIS);
582 tx_cmd[1].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm,
583 IEEE80211_BAND_5GHZ,
584 no_cck);
585 tx_cmd[1].sta_id = mvm->aux_sta.sta_id;
586}
587
588static void
589iwl_mvm_lmac_scan_cfg_channels(struct iwl_mvm *mvm,
590 struct ieee80211_channel **channels,
591 int n_channels, u32 ssid_bitmap,
Luciano Coelho65ff5562015-03-20 13:35:47 +0200592 struct iwl_scan_req_lmac *cmd)
David Spinadelfb98be52014-05-04 12:51:10 +0300593{
594 struct iwl_scan_channel_cfg_lmac *channel_cfg = (void *)&cmd->data;
595 int i;
596
597 for (i = 0; i < n_channels; i++) {
598 channel_cfg[i].channel_num =
599 cpu_to_le16(channels[i]->hw_value);
600 channel_cfg[i].iter_count = cpu_to_le16(1);
601 channel_cfg[i].iter_interval = 0;
602 channel_cfg[i].flags =
603 cpu_to_le32(IWL_UNIFIED_SCAN_CHANNEL_PARTIAL |
604 ssid_bitmap);
605 }
606}
607
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300608static u8 *iwl_mvm_copy_and_insert_ds_elem(struct iwl_mvm *mvm, const u8 *ies,
609 size_t len, u8 *const pos)
610{
611 static const u8 before_ds_params[] = {
612 WLAN_EID_SSID,
613 WLAN_EID_SUPP_RATES,
614 WLAN_EID_REQUEST,
615 WLAN_EID_EXT_SUPP_RATES,
616 };
617 size_t offs;
618 u8 *newpos = pos;
619
620 if (!iwl_mvm_rrm_scan_needed(mvm)) {
621 memcpy(newpos, ies, len);
622 return newpos + len;
623 }
624
625 offs = ieee80211_ie_split(ies, len,
626 before_ds_params,
627 ARRAY_SIZE(before_ds_params),
628 0);
629
630 memcpy(newpos, ies, offs);
631 newpos += offs;
632
633 /* Add a placeholder for DS Parameter Set element */
634 *newpos++ = WLAN_EID_DS_PARAMS;
635 *newpos++ = 1;
636 *newpos++ = 0;
637
638 memcpy(newpos, ies + offs, len - offs);
639 newpos += len - offs;
640
641 return newpos;
642}
643
David Spinadelfb98be52014-05-04 12:51:10 +0300644static void
Luciano Coelho65ff5562015-03-20 13:35:47 +0200645iwl_mvm_build_scan_probe(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
646 struct ieee80211_scan_ies *ies,
Luciano Coelho45d1b122015-04-15 16:34:13 +0300647 struct iwl_mvm_scan_params *params)
David Spinadelfb98be52014-05-04 12:51:10 +0300648{
Luciano Coelho45d1b122015-04-15 16:34:13 +0300649 struct ieee80211_mgmt *frame = (void *)params->preq.buf;
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300650 u8 *pos, *newpos;
Luciano Coelho45d1b122015-04-15 16:34:13 +0300651 const u8 *mac_addr = params->flags & NL80211_SCAN_FLAG_RANDOM_ADDR ?
652 params->mac_addr : NULL;
David Spinadelfb98be52014-05-04 12:51:10 +0300653
Johannes Bergeffd05a2014-11-18 17:21:19 +0100654 /*
655 * Unfortunately, right now the offload scan doesn't support randomising
656 * within the firmware, so until the firmware API is ready we implement
657 * it in the driver. This means that the scan iterations won't really be
658 * random, only when it's restarted, but at least that helps a bit.
659 */
660 if (mac_addr)
Luciano Coelho45d1b122015-04-15 16:34:13 +0300661 get_random_mask_addr(frame->sa, mac_addr,
662 params->mac_addr_mask);
Johannes Bergeffd05a2014-11-18 17:21:19 +0100663 else
664 memcpy(frame->sa, vif->addr, ETH_ALEN);
665
David Spinadelfb98be52014-05-04 12:51:10 +0300666 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
667 eth_broadcast_addr(frame->da);
David Spinadelfb98be52014-05-04 12:51:10 +0300668 eth_broadcast_addr(frame->bssid);
669 frame->seq_ctrl = 0;
670
671 pos = frame->u.probe_req.variable;
672 *pos++ = WLAN_EID_SSID;
673 *pos++ = 0;
674
Luciano Coelho45d1b122015-04-15 16:34:13 +0300675 params->preq.mac_header.offset = 0;
676 params->preq.mac_header.len = cpu_to_le16(24 + 2);
David Spinadelfb98be52014-05-04 12:51:10 +0300677
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300678 /* Insert ds parameter set element on 2.4 GHz band */
679 newpos = iwl_mvm_copy_and_insert_ds_elem(mvm,
680 ies->ies[IEEE80211_BAND_2GHZ],
681 ies->len[IEEE80211_BAND_2GHZ],
682 pos);
Luciano Coelho45d1b122015-04-15 16:34:13 +0300683 params->preq.band_data[0].offset = cpu_to_le16(pos - params->preq.buf);
684 params->preq.band_data[0].len = cpu_to_le16(newpos - pos);
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300685 pos = newpos;
David Spinadelfb98be52014-05-04 12:51:10 +0300686
687 memcpy(pos, ies->ies[IEEE80211_BAND_5GHZ],
688 ies->len[IEEE80211_BAND_5GHZ]);
Luciano Coelho45d1b122015-04-15 16:34:13 +0300689 params->preq.band_data[1].offset = cpu_to_le16(pos - params->preq.buf);
690 params->preq.band_data[1].len =
691 cpu_to_le16(ies->len[IEEE80211_BAND_5GHZ]);
David Spinadelfb98be52014-05-04 12:51:10 +0300692 pos += ies->len[IEEE80211_BAND_5GHZ];
693
694 memcpy(pos, ies->common_ies, ies->common_ie_len);
Luciano Coelho45d1b122015-04-15 16:34:13 +0300695 params->preq.common_data.offset = cpu_to_le16(pos - params->preq.buf);
696 params->preq.common_data.len = cpu_to_le16(ies->common_ie_len);
David Spinadelfb98be52014-05-04 12:51:10 +0300697}
698
Avraham Sternd7afbfc2015-05-12 12:19:48 +0300699static __le32 iwl_mvm_scan_priority(struct iwl_mvm *mvm,
700 enum iwl_scan_priority_ext prio)
701{
Johannes Berg859d9142015-06-01 17:11:11 +0200702 if (fw_has_api(&mvm->fw->ucode_capa,
703 IWL_UCODE_TLV_API_EXT_SCAN_PRIORITY))
Avraham Sternd7afbfc2015-05-12 12:19:48 +0300704 return cpu_to_le32(prio);
705
706 if (prio <= IWL_SCAN_PRIORITY_EXT_2)
707 return cpu_to_le32(IWL_SCAN_PRIORITY_LOW);
708
709 if (prio <= IWL_SCAN_PRIORITY_EXT_4)
710 return cpu_to_le32(IWL_SCAN_PRIORITY_MEDIUM);
711
712 return cpu_to_le32(IWL_SCAN_PRIORITY_HIGH);
713}
714
Luciano Coelho133c8252015-04-20 15:29:03 +0300715static void iwl_mvm_scan_lmac_dwell(struct iwl_mvm *mvm,
716 struct iwl_scan_req_lmac *cmd,
717 struct iwl_mvm_scan_params *params)
David Spinadelfb98be52014-05-04 12:51:10 +0300718{
David Spinadel9437e992015-06-22 13:20:00 +0300719 cmd->active_dwell = scan_timing[params->type].dwell_active;
720 cmd->passive_dwell = scan_timing[params->type].dwell_passive;
721 cmd->fragmented_dwell = scan_timing[params->type].dwell_fragmented;
722 cmd->max_out_time = cpu_to_le32(scan_timing[params->type].max_out_time);
723 cmd->suspend_time = cpu_to_le32(scan_timing[params->type].suspend_time);
Avraham Sternd7afbfc2015-05-12 12:19:48 +0300724 cmd->scan_prio = iwl_mvm_scan_priority(mvm, IWL_SCAN_PRIORITY_EXT_6);
David Spinadelfb98be52014-05-04 12:51:10 +0300725}
726
Luciano Coelho999d2562015-03-27 10:28:26 +0300727static inline bool iwl_mvm_scan_fits(struct iwl_mvm *mvm, int n_ssids,
728 struct ieee80211_scan_ies *ies,
729 int n_channels)
730{
731 return ((n_ssids <= PROBE_OPTION_MAX) &&
732 (n_channels <= mvm->fw->ucode_capa.n_scan_channels) &
733 (ies->common_ie_len +
734 ies->len[NL80211_BAND_2GHZ] +
735 ies->len[NL80211_BAND_5GHZ] <=
736 iwl_mvm_max_scan_ie_fw_cmd_room(mvm)));
737}
738
David Spinadel15286e22015-05-26 10:32:19 +0300739static inline bool iwl_mvm_scan_use_ebs(struct iwl_mvm *mvm,
Avraham Sterncd55cce2015-08-19 12:46:12 +0300740 struct ieee80211_vif *vif)
Luciano Coelho7d7de1e2015-04-17 09:53:55 +0300741{
742 const struct iwl_ucode_capabilities *capa = &mvm->fw->ucode_capa;
743
744 /* We can only use EBS if:
745 * 1. the feature is supported;
746 * 2. the last EBS was successful;
David Spinadel15286e22015-05-26 10:32:19 +0300747 * 3. if only single scan, the single scan EBS API is supported;
748 * 4. it's not a p2p find operation.
Luciano Coelho7d7de1e2015-04-17 09:53:55 +0300749 */
750 return ((capa->flags & IWL_UCODE_TLV_FLAGS_EBS_SUPPORT) &&
751 mvm->last_ebs_successful &&
David Spinadel15286e22015-05-26 10:32:19 +0300752 vif->type != NL80211_IFTYPE_P2P_DEVICE);
Luciano Coelho7d7de1e2015-04-17 09:53:55 +0300753}
754
Luciano Coelho87515402015-04-20 14:47:49 +0300755static int iwl_mvm_scan_lmac_flags(struct iwl_mvm *mvm,
756 struct iwl_mvm_scan_params *params)
757{
758 int flags = 0;
759
760 if (params->n_ssids == 0)
761 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASSIVE;
762
763 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0)
764 flags |= IWL_MVM_LMAC_SCAN_FLAG_PRE_CONNECTION;
765
David Spinadel9437e992015-06-22 13:20:00 +0300766 if (params->type == IWL_SCAN_TYPE_FRAGMENTED)
Luciano Coelho87515402015-04-20 14:47:49 +0300767 flags |= IWL_MVM_LMAC_SCAN_FLAG_FRAGMENTED;
768
769 if (iwl_mvm_rrm_scan_needed(mvm))
770 flags |= IWL_MVM_LMAC_SCAN_FLAGS_RRM_ENABLED;
771
772 if (params->pass_all)
773 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASS_ALL;
774 else
775 flags |= IWL_MVM_LMAC_SCAN_FLAG_MATCH;
776
777#ifdef CONFIG_IWLWIFI_DEBUGFS
778 if (mvm->scan_iter_notif_enabled)
779 flags |= IWL_MVM_LMAC_SCAN_FLAG_ITER_COMPLETE;
780#endif
781
782 return flags;
783}
784
Luciano Coelho6749dd82015-03-20 15:51:36 +0200785static int iwl_mvm_scan_lmac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Luciano Coelho3db7c6e2015-04-01 17:09:56 +0300786 struct iwl_mvm_scan_params *params)
David Spinadelfb98be52014-05-04 12:51:10 +0300787{
Luciano Coelho65ff5562015-03-20 13:35:47 +0200788 struct iwl_scan_req_lmac *cmd = mvm->scan_cmd;
Luciano Coelho45d1b122015-04-15 16:34:13 +0300789 struct iwl_scan_probe_req *preq =
790 (void *)(cmd->data + sizeof(struct iwl_scan_channel_cfg_lmac) *
791 mvm->fw->ucode_capa.n_scan_channels);
Luciano Coelho87515402015-04-20 14:47:49 +0300792 u32 ssid_bitmap = 0;
Avraham Sterncd55cce2015-08-19 12:46:12 +0300793 int i;
David Spinadelfb98be52014-05-04 12:51:10 +0300794
795 lockdep_assert_held(&mvm->mutex);
796
Luciano Coelho133c8252015-04-20 15:29:03 +0300797 memset(cmd, 0, ksize(cmd));
David Spinadelfb98be52014-05-04 12:51:10 +0300798
Avraham Sterncd55cce2015-08-19 12:46:12 +0300799 if (WARN_ON(params->n_scan_plans > IWL_MAX_SCHED_SCAN_PLANS))
800 return -EINVAL;
801
Luciano Coelho133c8252015-04-20 15:29:03 +0300802 iwl_mvm_scan_lmac_dwell(mvm, cmd, params);
803
804 cmd->rx_chain_select = iwl_mvm_scan_rx_chain(mvm);
805 cmd->iter_num = cpu_to_le32(1);
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300806 cmd->n_channels = (u8)params->n_channels;
David Spinadelfb98be52014-05-04 12:51:10 +0300807
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300808 cmd->delay = cpu_to_le32(params->delay);
Luciano Coelho2250fd92014-12-03 10:52:26 +0200809
Luciano Coelho87515402015-04-20 14:47:49 +0300810 cmd->scan_flags = cpu_to_le32(iwl_mvm_scan_lmac_flags(mvm, params));
David Spinadelfb98be52014-05-04 12:51:10 +0300811
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300812 cmd->flags = iwl_mvm_scan_rxon_flags(params->channels[0]->band);
David Spinadelfb98be52014-05-04 12:51:10 +0300813 cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP |
814 MAC_FILTER_IN_BEACON);
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300815 iwl_mvm_scan_fill_tx_cmd(mvm, cmd->tx_cmd, params->no_cck);
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300816 iwl_scan_build_ssids(params, cmd->direct_scan, &ssid_bitmap);
817
818 /* this API uses bits 1-20 instead of 0-19 */
819 ssid_bitmap <<= 1;
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300820
Avraham Sterncd55cce2015-08-19 12:46:12 +0300821 for (i = 0; i < params->n_scan_plans; i++) {
822 struct wiphy *wiphy = mvm->hw->wiphy;
823 struct cfg80211_sched_scan_plan *scan_plan =
824 &params->scan_plans[i];
David Spinadelfb98be52014-05-04 12:51:10 +0300825
Avraham Sterncd55cce2015-08-19 12:46:12 +0300826 if (WARN_ON(scan_plan->iterations >
827 wiphy->max_sched_scan_plan_iterations ||
828 scan_plan->interval >
829 wiphy->max_sched_scan_plan_interval))
830 return -EINVAL;
831
832 cmd->schedule[i].delay =
833 cpu_to_le16(scan_plan->interval);
834 cmd->schedule[i].iterations = scan_plan->iterations;
835 cmd->schedule[i].full_scan_mul = 1;
836 }
837
838 /*
839 * If the number of iterations of the last scan plan is set to
840 * zero, it should run infinitely. However, this is not always the case.
841 * For example, when regular scan is requested the driver sets one scan
842 * plan with one iteration.
843 */
844 if (!cmd->schedule[i - 1].iterations)
845 cmd->schedule[i - 1].iterations = 0xff;
846
847 if (iwl_mvm_scan_use_ebs(mvm, vif)) {
David Spinadel1f9c4182014-12-01 23:30:07 +0200848 cmd->channel_opt[0].flags =
849 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
850 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
851 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
852 cmd->channel_opt[0].non_ebs_ratio =
853 cpu_to_le16(IWL_DENSE_EBS_SCAN_RATIO);
854 cmd->channel_opt[1].flags =
855 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
856 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
857 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
858 cmd->channel_opt[1].non_ebs_ratio =
859 cpu_to_le16(IWL_SPARSE_EBS_SCAN_RATIO);
860 }
861
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300862 iwl_mvm_lmac_scan_cfg_channels(mvm, params->channels,
863 params->n_channels, ssid_bitmap, cmd);
David Spinadelfb98be52014-05-04 12:51:10 +0300864
Luciano Coelho45d1b122015-04-15 16:34:13 +0300865 *preq = params->preq;
David Spinadelfb98be52014-05-04 12:51:10 +0300866
Luciano Coelho8df3e682015-04-01 17:37:44 +0300867 return 0;
David Spinadelfb98be52014-05-04 12:51:10 +0300868}
869
David Spinadeld2496222014-05-20 12:46:37 +0300870static int rate_to_scan_rate_flag(unsigned int rate)
871{
872 static const int rate_to_scan_rate[IWL_RATE_COUNT] = {
873 [IWL_RATE_1M_INDEX] = SCAN_CONFIG_RATE_1M,
874 [IWL_RATE_2M_INDEX] = SCAN_CONFIG_RATE_2M,
875 [IWL_RATE_5M_INDEX] = SCAN_CONFIG_RATE_5M,
876 [IWL_RATE_11M_INDEX] = SCAN_CONFIG_RATE_11M,
877 [IWL_RATE_6M_INDEX] = SCAN_CONFIG_RATE_6M,
878 [IWL_RATE_9M_INDEX] = SCAN_CONFIG_RATE_9M,
879 [IWL_RATE_12M_INDEX] = SCAN_CONFIG_RATE_12M,
880 [IWL_RATE_18M_INDEX] = SCAN_CONFIG_RATE_18M,
881 [IWL_RATE_24M_INDEX] = SCAN_CONFIG_RATE_24M,
882 [IWL_RATE_36M_INDEX] = SCAN_CONFIG_RATE_36M,
883 [IWL_RATE_48M_INDEX] = SCAN_CONFIG_RATE_48M,
884 [IWL_RATE_54M_INDEX] = SCAN_CONFIG_RATE_54M,
885 };
886
887 return rate_to_scan_rate[rate];
888}
889
890static __le32 iwl_mvm_scan_config_rates(struct iwl_mvm *mvm)
891{
892 struct ieee80211_supported_band *band;
893 unsigned int rates = 0;
894 int i;
895
896 band = &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ];
897 for (i = 0; i < band->n_bitrates; i++)
898 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value);
899 band = &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ];
900 for (i = 0; i < band->n_bitrates; i++)
901 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value);
902
903 /* Set both basic rates and supported rates */
904 rates |= SCAN_CONFIG_SUPPORTED_RATE(rates);
905
906 return cpu_to_le32(rates);
907}
908
909int iwl_mvm_config_scan(struct iwl_mvm *mvm)
910{
911
912 struct iwl_scan_config *scan_config;
913 struct ieee80211_supported_band *band;
914 int num_channels =
915 mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels +
916 mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels;
Johannes Berg88742c92015-06-30 15:31:22 +0200917 int ret, i, j = 0, cmd_size;
David Spinadeld2496222014-05-20 12:46:37 +0300918 struct iwl_host_cmd cmd = {
Johannes Berg88742c92015-06-30 15:31:22 +0200919 .id = iwl_cmd_id(SCAN_CFG_CMD, IWL_ALWAYS_LONG_GROUP, 0),
David Spinadeld2496222014-05-20 12:46:37 +0300920 };
921
922 if (WARN_ON(num_channels > mvm->fw->ucode_capa.n_scan_channels))
923 return -ENOBUFS;
924
925 cmd_size = sizeof(*scan_config) + mvm->fw->ucode_capa.n_scan_channels;
926
927 scan_config = kzalloc(cmd_size, GFP_KERNEL);
928 if (!scan_config)
929 return -ENOMEM;
930
David Spinadeld2496222014-05-20 12:46:37 +0300931 scan_config->flags = cpu_to_le32(SCAN_CONFIG_FLAG_ACTIVATE |
932 SCAN_CONFIG_FLAG_ALLOW_CHUB_REQS |
933 SCAN_CONFIG_FLAG_SET_TX_CHAINS |
934 SCAN_CONFIG_FLAG_SET_RX_CHAINS |
935 SCAN_CONFIG_FLAG_SET_ALL_TIMES |
936 SCAN_CONFIG_FLAG_SET_LEGACY_RATES |
937 SCAN_CONFIG_FLAG_SET_MAC_ADDR |
938 SCAN_CONFIG_FLAG_SET_CHANNEL_FLAGS|
939 SCAN_CONFIG_N_CHANNELS(num_channels));
Moshe Harela0544272014-12-08 21:13:14 +0200940 scan_config->tx_chains = cpu_to_le32(iwl_mvm_get_valid_tx_ant(mvm));
David Spinadeld2496222014-05-20 12:46:37 +0300941 scan_config->rx_chains = cpu_to_le32(iwl_mvm_scan_rx_ant(mvm));
942 scan_config->legacy_rates = iwl_mvm_scan_config_rates(mvm);
943 scan_config->out_of_channel_time = cpu_to_le32(170);
944 scan_config->suspend_time = cpu_to_le32(30);
945 scan_config->dwell_active = 20;
946 scan_config->dwell_passive = 110;
947 scan_config->dwell_fragmented = 20;
948
949 memcpy(&scan_config->mac_addr, &mvm->addresses[0].addr, ETH_ALEN);
950
951 scan_config->bcast_sta_id = mvm->aux_sta.sta_id;
952 scan_config->channel_flags = IWL_CHANNEL_FLAG_EBS |
953 IWL_CHANNEL_FLAG_ACCURATE_EBS |
954 IWL_CHANNEL_FLAG_EBS_ADD |
955 IWL_CHANNEL_FLAG_PRE_SCAN_PASSIVE2ACTIVE;
956
957 band = &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ];
958 for (i = 0; i < band->n_channels; i++, j++)
Ilan Peera25d40e2015-01-23 21:13:01 +0200959 scan_config->channel_array[j] = band->channels[i].hw_value;
David Spinadeld2496222014-05-20 12:46:37 +0300960 band = &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ];
961 for (i = 0; i < band->n_channels; i++, j++)
Ilan Peera25d40e2015-01-23 21:13:01 +0200962 scan_config->channel_array[j] = band->channels[i].hw_value;
David Spinadeld2496222014-05-20 12:46:37 +0300963
964 cmd.data[0] = scan_config;
965 cmd.len[0] = cmd_size;
966 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
967
968 IWL_DEBUG_SCAN(mvm, "Sending UMAC scan config\n");
969
970 ret = iwl_mvm_send_cmd(mvm, &cmd);
971
972 kfree(scan_config);
973 return ret;
974}
975
Luciano Coelho6185af2a2015-05-07 11:13:24 +0300976static int iwl_mvm_scan_uid_by_status(struct iwl_mvm *mvm, int status)
David Spinadeld2496222014-05-20 12:46:37 +0300977{
978 int i;
979
Luciano Coelho507e4cd2015-03-19 22:58:33 +0200980 for (i = 0; i < mvm->max_scans; i++)
Luciano Coelho6185af2a2015-05-07 11:13:24 +0300981 if (mvm->scan_uid_status[i] == status)
David Spinadeld2496222014-05-20 12:46:37 +0300982 return i;
983
Luciano Coelho6185af2a2015-05-07 11:13:24 +0300984 return -ENOENT;
David Spinadeld2496222014-05-20 12:46:37 +0300985}
986
Avraham Sterncd55cce2015-08-19 12:46:12 +0300987static inline bool iwl_mvm_is_regular_scan(struct iwl_mvm_scan_params *params)
988{
989 return params->n_scan_plans == 1 &&
990 params->scan_plans[0].iterations == 1;
991}
992
Luciano Coelho133c8252015-04-20 15:29:03 +0300993static void iwl_mvm_scan_umac_dwell(struct iwl_mvm *mvm,
David Spinadeld2496222014-05-20 12:46:37 +0300994 struct iwl_scan_req_umac *cmd,
995 struct iwl_mvm_scan_params *params)
996{
David Spinadel9437e992015-06-22 13:20:00 +0300997 cmd->active_dwell = scan_timing[params->type].dwell_active;
998 cmd->passive_dwell = scan_timing[params->type].dwell_passive;
999 cmd->fragmented_dwell = scan_timing[params->type].dwell_fragmented;
1000 cmd->max_out_time = cpu_to_le32(scan_timing[params->type].max_out_time);
1001 cmd->suspend_time = cpu_to_le32(scan_timing[params->type].suspend_time);
Avraham Sternd7afbfc2015-05-12 12:19:48 +03001002 cmd->scan_priority =
1003 iwl_mvm_scan_priority(mvm, IWL_SCAN_PRIORITY_EXT_6);
Luciano Coelho133c8252015-04-20 15:29:03 +03001004
Avraham Sterncd55cce2015-08-19 12:46:12 +03001005 if (iwl_mvm_is_regular_scan(params))
Avraham Sternd7afbfc2015-05-12 12:19:48 +03001006 cmd->ooc_priority =
1007 iwl_mvm_scan_priority(mvm, IWL_SCAN_PRIORITY_EXT_6);
Luciano Coelho133c8252015-04-20 15:29:03 +03001008 else
Avraham Sternd7afbfc2015-05-12 12:19:48 +03001009 cmd->ooc_priority =
1010 iwl_mvm_scan_priority(mvm, IWL_SCAN_PRIORITY_EXT_2);
David Spinadeld2496222014-05-20 12:46:37 +03001011}
1012
1013static void
1014iwl_mvm_umac_scan_cfg_channels(struct iwl_mvm *mvm,
1015 struct ieee80211_channel **channels,
1016 int n_channels, u32 ssid_bitmap,
1017 struct iwl_scan_req_umac *cmd)
1018{
1019 struct iwl_scan_channel_cfg_umac *channel_cfg = (void *)&cmd->data;
1020 int i;
1021
1022 for (i = 0; i < n_channels; i++) {
1023 channel_cfg[i].flags = cpu_to_le32(ssid_bitmap);
1024 channel_cfg[i].channel_num = channels[i]->hw_value;
1025 channel_cfg[i].iter_count = 1;
1026 channel_cfg[i].iter_interval = 0;
1027 }
1028}
1029
Luciano Coelho6f4dcc72015-04-20 14:37:16 +03001030static u32 iwl_mvm_scan_umac_flags(struct iwl_mvm *mvm,
1031 struct iwl_mvm_scan_params *params)
David Spinadeld2496222014-05-20 12:46:37 +03001032{
1033 int flags = 0;
1034
Luciano Coelho6f4dcc72015-04-20 14:37:16 +03001035 if (params->n_ssids == 0)
David Spinadeld2496222014-05-20 12:46:37 +03001036 flags = IWL_UMAC_SCAN_GEN_FLAGS_PASSIVE;
1037
Luciano Coelho6f4dcc72015-04-20 14:37:16 +03001038 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0)
David Spinadeld2496222014-05-20 12:46:37 +03001039 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PRE_CONNECT;
1040
David Spinadel9437e992015-06-22 13:20:00 +03001041 if (params->type == IWL_SCAN_TYPE_FRAGMENTED)
David Spinadeld2496222014-05-20 12:46:37 +03001042 flags |= IWL_UMAC_SCAN_GEN_FLAGS_FRAGMENTED;
1043
1044 if (iwl_mvm_rrm_scan_needed(mvm))
1045 flags |= IWL_UMAC_SCAN_GEN_FLAGS_RRM_ENABLED;
1046
Luciano Coelho6f4dcc72015-04-20 14:37:16 +03001047 if (params->pass_all)
1048 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PASS_ALL;
1049 else
1050 flags |= IWL_UMAC_SCAN_GEN_FLAGS_MATCH;
1051
Avraham Sterncd55cce2015-08-19 12:46:12 +03001052 if (!iwl_mvm_is_regular_scan(params))
Luciano Coelho6f4dcc72015-04-20 14:37:16 +03001053 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PERIODIC;
1054
Avraham Sternee9219b2015-03-23 15:09:27 +02001055#ifdef CONFIG_IWLWIFI_DEBUGFS
1056 if (mvm->scan_iter_notif_enabled)
1057 flags |= IWL_UMAC_SCAN_GEN_FLAGS_ITER_COMPLETE;
1058#endif
David Spinadeld2496222014-05-20 12:46:37 +03001059 return flags;
1060}
1061
Luciano Coelho6749dd82015-03-20 15:51:36 +02001062static int iwl_mvm_scan_umac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001063 struct iwl_mvm_scan_params *params,
1064 int type)
David Spinadeld2496222014-05-20 12:46:37 +03001065{
David Spinadeld2496222014-05-20 12:46:37 +03001066 struct iwl_scan_req_umac *cmd = mvm->scan_cmd;
1067 struct iwl_scan_req_umac_tail *sec_part = (void *)&cmd->data +
1068 sizeof(struct iwl_scan_channel_cfg_umac) *
1069 mvm->fw->ucode_capa.n_scan_channels;
Avraham Sterncd55cce2015-08-19 12:46:12 +03001070 int uid, i;
Johannes Bergc8660dd2014-11-17 15:06:52 +01001071 u32 ssid_bitmap = 0;
David Spinadeld2496222014-05-20 12:46:37 +03001072
1073 lockdep_assert_held(&mvm->mutex);
1074
Avraham Sterncd55cce2015-08-19 12:46:12 +03001075 if (WARN_ON(params->n_scan_plans > IWL_MAX_SCHED_SCAN_PLANS))
1076 return -EINVAL;
1077
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001078 uid = iwl_mvm_scan_uid_by_status(mvm, 0);
1079 if (uid < 0)
1080 return uid;
David Spinadeld2496222014-05-20 12:46:37 +03001081
Luciano Coelho133c8252015-04-20 15:29:03 +03001082 memset(cmd, 0, ksize(cmd));
David Spinadeld2496222014-05-20 12:46:37 +03001083
Luciano Coelho133c8252015-04-20 15:29:03 +03001084 iwl_mvm_scan_umac_dwell(mvm, cmd, params);
1085
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001086 mvm->scan_uid_status[uid] = type;
Luciano Coelho8423cdc2015-04-17 14:49:58 +03001087
Luciano Coelho8423cdc2015-04-17 14:49:58 +03001088 cmd->uid = cpu_to_le32(uid);
Luciano Coelho6f4dcc72015-04-20 14:37:16 +03001089 cmd->general_flags = cpu_to_le32(iwl_mvm_scan_umac_flags(mvm, params));
Haim Dreyfuss4db65582015-01-05 15:00:35 +02001090
Avraham Stern8465fe62015-06-21 12:06:13 +03001091 if (type == IWL_MVM_SCAN_SCHED)
1092 cmd->flags = cpu_to_le32(IWL_UMAC_SCAN_FLAG_PREEMPTIVE);
1093
Avraham Sterncd55cce2015-08-19 12:46:12 +03001094 if (iwl_mvm_scan_use_ebs(mvm, vif))
Haim Dreyfuss4db65582015-01-05 15:00:35 +02001095 cmd->channel_flags = IWL_SCAN_CHANNEL_FLAG_EBS |
1096 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
1097 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD;
1098
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001099 cmd->n_channels = params->n_channels;
David Spinadeld2496222014-05-20 12:46:37 +03001100
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +03001101 iwl_scan_build_ssids(params, sec_part->direct_scan, &ssid_bitmap);
David Spinadeld2496222014-05-20 12:46:37 +03001102
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001103 iwl_mvm_umac_scan_cfg_channels(mvm, params->channels,
1104 params->n_channels, ssid_bitmap, cmd);
David Spinadeld2496222014-05-20 12:46:37 +03001105
Avraham Sterncd55cce2015-08-19 12:46:12 +03001106 for (i = 0; i < params->n_scan_plans; i++) {
1107 struct wiphy *wiphy = mvm->hw->wiphy;
1108 struct cfg80211_sched_scan_plan *scan_plan =
1109 &params->scan_plans[i];
1110
1111 if (WARN_ON(scan_plan->iterations >
1112 wiphy->max_sched_scan_plan_iterations ||
1113 scan_plan->interval >
1114 wiphy->max_sched_scan_plan_interval))
1115 return -EINVAL;
1116
1117 sec_part->schedule[i].iter_count = scan_plan->iterations;
1118 sec_part->schedule[i].interval =
1119 cpu_to_le16(scan_plan->interval);
1120 }
1121
1122 /*
1123 * If the number of iterations of the last scan plan is set to
1124 * zero, it should run infinitely. However, this is not always the case.
1125 * For example, when regular scan is requested the driver sets one scan
1126 * plan with one iteration.
Luciano Coelho8423cdc2015-04-17 14:49:58 +03001127 */
Avraham Sterncd55cce2015-08-19 12:46:12 +03001128 if (!sec_part->schedule[i - 1].iter_count)
1129 sec_part->schedule[i - 1].iter_count = 0xff;
Luciano Coelhocf5d3172015-04-16 20:13:28 +03001130
Luciano Coelho283c2492015-04-17 11:18:46 +03001131 sec_part->delay = cpu_to_le16(params->delay);
Luciano Coelho45d1b122015-04-15 16:34:13 +03001132 sec_part->preq = params->preq;
David Spinadeld2496222014-05-20 12:46:37 +03001133
Luciano Coelho8df3e682015-04-01 17:37:44 +03001134 return 0;
David Spinadeld2496222014-05-20 12:46:37 +03001135}
1136
Luciano Coelho6749dd82015-03-20 15:51:36 +02001137static int iwl_mvm_num_scans(struct iwl_mvm *mvm)
1138{
1139 return hweight32(mvm->scan_status & IWL_MVM_SCAN_MASK);
1140}
1141
1142static int iwl_mvm_check_running_scans(struct iwl_mvm *mvm, int type)
1143{
1144 /* This looks a bit arbitrary, but the idea is that if we run
1145 * out of possible simultaneous scans and the userspace is
1146 * trying to run a scan type that is already running, we
1147 * return -EBUSY. But if the userspace wants to start a
1148 * different type of scan, we stop the opposite type to make
1149 * space for the new request. The reason is backwards
1150 * compatibility with old wpa_supplicant that wouldn't stop a
1151 * scheduled scan before starting a normal scan.
1152 */
1153
1154 if (iwl_mvm_num_scans(mvm) < mvm->max_scans)
1155 return 0;
1156
1157 /* Use a switch, even though this is a bitmask, so that more
1158 * than one bits set will fall in default and we will warn.
1159 */
1160 switch (type) {
1161 case IWL_MVM_SCAN_REGULAR:
1162 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK)
1163 return -EBUSY;
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001164 return iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_SCHED, true);
Luciano Coelho6749dd82015-03-20 15:51:36 +02001165 case IWL_MVM_SCAN_SCHED:
1166 if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK)
1167 return -EBUSY;
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001168 iwl_mvm_scan_stop(mvm, IWL_MVM_SCAN_REGULAR, true);
Luciano Coelho19945df2015-03-20 16:11:28 +02001169 case IWL_MVM_SCAN_NETDETECT:
1170 /* No need to stop anything for net-detect since the
1171 * firmware is restarted anyway. This way, any sched
1172 * scans that were running will be restarted when we
1173 * resume.
1174 */
1175 return 0;
Luciano Coelho6749dd82015-03-20 15:51:36 +02001176 default:
1177 WARN_ON(1);
1178 break;
1179 }
1180
1181 return -EIO;
1182}
1183
1184int iwl_mvm_reg_scan_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1185 struct cfg80211_scan_request *req,
1186 struct ieee80211_scan_ies *ies)
1187{
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001188 struct iwl_host_cmd hcmd = {
1189 .len = { iwl_mvm_scan_size(mvm), },
1190 .data = { mvm->scan_cmd, },
1191 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
1192 };
1193 struct iwl_mvm_scan_params params = {};
Luciano Coelho6749dd82015-03-20 15:51:36 +02001194 int ret;
Avraham Sterncd55cce2015-08-19 12:46:12 +03001195 struct cfg80211_sched_scan_plan scan_plan = { .iterations = 1 };
Luciano Coelho6749dd82015-03-20 15:51:36 +02001196
1197 lockdep_assert_held(&mvm->mutex);
1198
1199 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) {
1200 IWL_ERR(mvm, "scan while LAR regdomain is not set\n");
1201 return -EBUSY;
1202 }
1203
1204 ret = iwl_mvm_check_running_scans(mvm, IWL_MVM_SCAN_REGULAR);
1205 if (ret)
1206 return ret;
1207
1208 iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN);
1209
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001210 /* we should have failed registration if scan_cmd was NULL */
1211 if (WARN_ON(!mvm->scan_cmd))
1212 return -ENOMEM;
1213
1214 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels))
1215 return -ENOBUFS;
1216
Luciano Coelho4b817052015-04-15 16:21:16 +03001217 params.n_ssids = req->n_ssids;
1218 params.flags = req->flags;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001219 params.n_channels = req->n_channels;
1220 params.delay = 0;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001221 params.ssids = req->ssids;
1222 params.channels = req->channels;
1223 params.mac_addr = req->mac_addr;
1224 params.mac_addr_mask = req->mac_addr_mask;
1225 params.no_cck = req->no_cck;
1226 params.pass_all = true;
1227 params.n_match_sets = 0;
1228 params.match_sets = NULL;
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001229
Avraham Sterncd55cce2015-08-19 12:46:12 +03001230 params.scan_plans = &scan_plan;
1231 params.n_scan_plans = 1;
Luciano Coelhocf5d3172015-04-16 20:13:28 +03001232
David Spinadel9437e992015-06-22 13:20:00 +03001233 params.type = iwl_mvm_get_scan_type(mvm, vif, &params);
Luciano Coelho4b817052015-04-15 16:21:16 +03001234
Luciano Coelho45d1b122015-04-15 16:34:13 +03001235 iwl_mvm_build_scan_probe(mvm, vif, ies, &params);
1236
Johannes Berg859d9142015-06-01 17:11:11 +02001237 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
Johannes Berg88742c92015-06-30 15:31:22 +02001238 hcmd.id = iwl_cmd_id(SCAN_REQ_UMAC, IWL_ALWAYS_LONG_GROUP, 0);
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001239 ret = iwl_mvm_scan_umac(mvm, vif, &params,
1240 IWL_MVM_SCAN_REGULAR);
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001241 } else {
1242 hcmd.id = SCAN_OFFLOAD_REQUEST_CMD;
Luciano Coelho45d1b122015-04-15 16:34:13 +03001243 ret = iwl_mvm_scan_lmac(mvm, vif, &params);
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001244 }
1245
1246 if (ret)
1247 return ret;
1248
1249 ret = iwl_mvm_send_cmd(mvm, &hcmd);
1250 if (!ret) {
1251 IWL_DEBUG_SCAN(mvm, "Scan request was sent successfully\n");
1252 mvm->scan_status |= IWL_MVM_SCAN_REGULAR;
1253 } else {
1254 /* If the scan failed, it usually means that the FW was unable
1255 * to allocate the time events. Warn on it, but maybe we
1256 * should try to send the command again with different params.
1257 */
1258 IWL_ERR(mvm, "Scan failed! ret %d\n", ret);
1259 }
Luciano Coelho6749dd82015-03-20 15:51:36 +02001260
1261 if (ret)
1262 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1263
1264 return ret;
1265}
1266
Luciano Coelho65ff5562015-03-20 13:35:47 +02001267int iwl_mvm_sched_scan_start(struct iwl_mvm *mvm,
1268 struct ieee80211_vif *vif,
1269 struct cfg80211_sched_scan_request *req,
Luciano Coelho19945df2015-03-20 16:11:28 +02001270 struct ieee80211_scan_ies *ies,
1271 int type)
Luciano Coelho65ff5562015-03-20 13:35:47 +02001272{
Luciano Coelho8df3e682015-04-01 17:37:44 +03001273 struct iwl_host_cmd hcmd = {
1274 .len = { iwl_mvm_scan_size(mvm), },
1275 .data = { mvm->scan_cmd, },
1276 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
1277 };
1278 struct iwl_mvm_scan_params params = {};
Luciano Coelho65ff5562015-03-20 13:35:47 +02001279 int ret;
1280
Luciano Coelho6749dd82015-03-20 15:51:36 +02001281 lockdep_assert_held(&mvm->mutex);
1282
1283 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) {
1284 IWL_ERR(mvm, "sched-scan while LAR regdomain is not set\n");
1285 return -EBUSY;
1286 }
1287
Luciano Coelho19945df2015-03-20 16:11:28 +02001288 ret = iwl_mvm_check_running_scans(mvm, type);
Luciano Coelho6749dd82015-03-20 15:51:36 +02001289 if (ret)
1290 return ret;
1291
Luciano Coelho8df3e682015-04-01 17:37:44 +03001292 /* we should have failed registration if scan_cmd was NULL */
1293 if (WARN_ON(!mvm->scan_cmd))
1294 return -ENOMEM;
1295
1296 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels))
1297 return -ENOBUFS;
1298
Luciano Coelho4b817052015-04-15 16:21:16 +03001299 params.n_ssids = req->n_ssids;
1300 params.flags = req->flags;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001301 params.n_channels = req->n_channels;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001302 params.ssids = req->ssids;
1303 params.channels = req->channels;
1304 params.mac_addr = req->mac_addr;
1305 params.mac_addr_mask = req->mac_addr_mask;
1306 params.no_cck = false;
1307 params.pass_all = iwl_mvm_scan_pass_all(mvm, req);
1308 params.n_match_sets = req->n_match_sets;
1309 params.match_sets = req->match_sets;
Avraham Sterncd55cce2015-08-19 12:46:12 +03001310 if (!req->n_scan_plans)
1311 return -EINVAL;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001312
Avraham Sterncd55cce2015-08-19 12:46:12 +03001313 params.n_scan_plans = req->n_scan_plans;
1314 params.scan_plans = req->scan_plans;
David Spinadel3b44a0e2015-06-21 11:57:36 +03001315
David Spinadel9437e992015-06-22 13:20:00 +03001316 params.type = iwl_mvm_get_scan_type(mvm, vif, &params);
Luciano Coelhocf5d3172015-04-16 20:13:28 +03001317
Luciano Coelho283c2492015-04-17 11:18:46 +03001318 /* In theory, LMAC scans can handle a 32-bit delay, but since
1319 * waiting for over 18 hours to start the scan is a bit silly
1320 * and to keep it aligned with UMAC scans (which only support
1321 * 16-bit delays), trim it down to 16-bits.
1322 */
1323 if (req->delay > U16_MAX) {
1324 IWL_DEBUG_SCAN(mvm,
1325 "delay value is > 16-bits, set to max possible\n");
1326 params.delay = U16_MAX;
1327 } else {
1328 params.delay = req->delay;
1329 }
1330
Luciano Coelho65ff5562015-03-20 13:35:47 +02001331 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
1332 if (ret)
1333 return ret;
1334
Luciano Coelho45d1b122015-04-15 16:34:13 +03001335 iwl_mvm_build_scan_probe(mvm, vif, ies, &params);
1336
Johannes Berg859d9142015-06-01 17:11:11 +02001337 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
Johannes Berg88742c92015-06-30 15:31:22 +02001338 hcmd.id = iwl_cmd_id(SCAN_REQ_UMAC, IWL_ALWAYS_LONG_GROUP, 0);
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001339 ret = iwl_mvm_scan_umac(mvm, vif, &params, IWL_MVM_SCAN_SCHED);
Luciano Coelho65ff5562015-03-20 13:35:47 +02001340 } else {
Luciano Coelho8df3e682015-04-01 17:37:44 +03001341 hcmd.id = SCAN_OFFLOAD_REQUEST_CMD;
Luciano Coelho7d7de1e2015-04-17 09:53:55 +03001342 ret = iwl_mvm_scan_lmac(mvm, vif, &params);
Luciano Coelho8df3e682015-04-01 17:37:44 +03001343 }
1344
1345 if (ret)
1346 return ret;
1347
1348 ret = iwl_mvm_send_cmd(mvm, &hcmd);
1349 if (!ret) {
1350 IWL_DEBUG_SCAN(mvm,
1351 "Sched scan request was sent successfully\n");
1352 mvm->scan_status |= type;
1353 } else {
1354 /* If the scan failed, it usually means that the FW was unable
1355 * to allocate the time events. Warn on it, but maybe we
1356 * should try to send the command again with different params.
1357 */
1358 IWL_ERR(mvm, "Sched scan failed! ret %d\n", ret);
Luciano Coelho65ff5562015-03-20 13:35:47 +02001359 }
1360
1361 return ret;
1362}
1363
Johannes Berg04168412015-06-23 21:22:09 +02001364void iwl_mvm_rx_umac_scan_complete_notif(struct iwl_mvm *mvm,
1365 struct iwl_rx_cmd_buffer *rxb)
David Spinadeld2496222014-05-20 12:46:37 +03001366{
1367 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1368 struct iwl_umac_scan_complete *notif = (void *)pkt->data;
1369 u32 uid = __le32_to_cpu(notif->uid);
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001370 bool aborted = (notif->status == IWL_SCAN_OFFLOAD_ABORTED);
David Spinadeld2496222014-05-20 12:46:37 +03001371
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001372 if (WARN_ON(!(mvm->scan_uid_status[uid] & mvm->scan_status)))
Johannes Berg04168412015-06-23 21:22:09 +02001373 return;
David Spinadeld2496222014-05-20 12:46:37 +03001374
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001375 /* if the scan is already stopping, we don't need to notify mac80211 */
1376 if (mvm->scan_uid_status[uid] == IWL_MVM_SCAN_REGULAR) {
1377 ieee80211_scan_completed(mvm->hw, aborted);
1378 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1379 } else if (mvm->scan_uid_status[uid] == IWL_MVM_SCAN_SCHED) {
1380 ieee80211_sched_scan_stopped(mvm->hw);
1381 }
1382
1383 mvm->scan_status &= ~mvm->scan_uid_status[uid];
David Spinadeld2496222014-05-20 12:46:37 +03001384 IWL_DEBUG_SCAN(mvm,
Ayala Bekera7b3bc92015-08-20 04:00:38 +03001385 "Scan completed, uid %u type %u, status %s, EBS status %s\n",
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001386 uid, mvm->scan_uid_status[uid],
David Spinadeld2496222014-05-20 12:46:37 +03001387 notif->status == IWL_SCAN_OFFLOAD_COMPLETED ?
1388 "completed" : "aborted",
Ayala Bekera7b3bc92015-08-20 04:00:38 +03001389 iwl_mvm_ebs_status_str(notif->ebs_status));
1390 IWL_DEBUG_SCAN(mvm,
1391 "Last line %d, Last iteration %d, Time from last iteration %d\n",
Ayala Beker1a84e772015-07-22 13:54:31 +03001392 notif->last_schedule, notif->last_iter,
1393 __le32_to_cpu(notif->time_from_last_iter));
David Spinadeld2496222014-05-20 12:46:37 +03001394
David Spinadelf0bf8592015-05-20 11:56:59 +03001395 if (notif->ebs_status != IWL_SCAN_EBS_SUCCESS &&
1396 notif->ebs_status != IWL_SCAN_EBS_INACTIVE)
Haim Dreyfuss5a4b2af2015-01-13 11:54:51 +02001397 mvm->last_ebs_successful = false;
1398
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001399 mvm->scan_uid_status[uid] = 0;
David Spinadeld2496222014-05-20 12:46:37 +03001400}
1401
Johannes Berg04168412015-06-23 21:22:09 +02001402void iwl_mvm_rx_umac_scan_iter_complete_notif(struct iwl_mvm *mvm,
1403 struct iwl_rx_cmd_buffer *rxb)
Avraham Sternee9219b2015-03-23 15:09:27 +02001404{
1405 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1406 struct iwl_umac_scan_iter_complete_notif *notif = (void *)pkt->data;
1407 u8 buf[256];
1408
1409 IWL_DEBUG_SCAN(mvm,
1410 "UMAC Scan iteration complete: status=0x%x scanned_channels=%d channels list: %s\n",
1411 notif->status, notif->scanned_channels,
1412 iwl_mvm_dump_channel_list(notif->results,
1413 notif->scanned_channels, buf,
1414 sizeof(buf)));
Avraham Sternee9219b2015-03-23 15:09:27 +02001415}
1416
Luciano Coelho434f3c12015-05-07 14:41:44 +03001417static int iwl_mvm_umac_scan_abort(struct iwl_mvm *mvm, int type)
David Spinadeld2496222014-05-20 12:46:37 +03001418{
Johannes Berg88742c92015-06-30 15:31:22 +02001419 struct iwl_umac_scan_abort cmd = {};
Luciano Coelho434f3c12015-05-07 14:41:44 +03001420 int uid, ret;
David Spinadeld2496222014-05-20 12:46:37 +03001421
1422 lockdep_assert_held(&mvm->mutex);
1423
Luciano Coelho434f3c12015-05-07 14:41:44 +03001424 /* We should always get a valid index here, because we already
1425 * checked that this type of scan was running in the generic
1426 * code.
1427 */
1428 uid = iwl_mvm_scan_uid_by_status(mvm, type);
1429 if (WARN_ON_ONCE(uid < 0))
1430 return uid;
1431
1432 cmd.uid = cpu_to_le32(uid);
1433
David Spinadeld2496222014-05-20 12:46:37 +03001434 IWL_DEBUG_SCAN(mvm, "Sending scan abort, uid %u\n", uid);
1435
Johannes Berg88742c92015-06-30 15:31:22 +02001436 ret = iwl_mvm_send_cmd_pdu(mvm,
1437 iwl_cmd_id(SCAN_ABORT_UMAC,
1438 IWL_ALWAYS_LONG_GROUP, 0),
1439 0, sizeof(cmd), &cmd);
Luciano Coelho434f3c12015-05-07 14:41:44 +03001440 if (!ret)
Luciano Coelho8d14ccd2015-05-07 17:05:30 +03001441 mvm->scan_uid_status[uid] = type << IWL_MVM_SCAN_STOPPING_SHIFT;
Luciano Coelho434f3c12015-05-07 14:41:44 +03001442
1443 return ret;
David Spinadeld2496222014-05-20 12:46:37 +03001444}
1445
Luciano Coelhof2461792015-05-07 15:23:19 +03001446static int iwl_mvm_scan_stop_wait(struct iwl_mvm *mvm, int type)
David Spinadeld2496222014-05-20 12:46:37 +03001447{
1448 struct iwl_notification_wait wait_scan_done;
Sara Sharon6eb031d2015-07-13 14:50:47 +03001449 static const u16 scan_done_notif[] = { SCAN_COMPLETE_UMAC,
Luciano Coelhof2461792015-05-07 15:23:19 +03001450 SCAN_OFFLOAD_COMPLETE, };
Luciano Coelho434f3c12015-05-07 14:41:44 +03001451 int ret;
David Spinadeld2496222014-05-20 12:46:37 +03001452
Luciano Coelhof2461792015-05-07 15:23:19 +03001453 lockdep_assert_held(&mvm->mutex);
1454
David Spinadeld2496222014-05-20 12:46:37 +03001455 iwl_init_notification_wait(&mvm->notif_wait, &wait_scan_done,
1456 scan_done_notif,
1457 ARRAY_SIZE(scan_done_notif),
Luciano Coelho434f3c12015-05-07 14:41:44 +03001458 NULL, NULL);
David Spinadeld2496222014-05-20 12:46:37 +03001459
1460 IWL_DEBUG_SCAN(mvm, "Preparing to stop scan, type %x\n", type);
1461
Johannes Berg859d9142015-06-01 17:11:11 +02001462 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN))
Luciano Coelhof2461792015-05-07 15:23:19 +03001463 ret = iwl_mvm_umac_scan_abort(mvm, type);
1464 else
1465 ret = iwl_mvm_lmac_scan_abort(mvm);
1466
David Spinadeld2496222014-05-20 12:46:37 +03001467 if (ret) {
Luciano Coelho434f3c12015-05-07 14:41:44 +03001468 IWL_DEBUG_SCAN(mvm, "couldn't stop scan type %d\n", type);
David Spinadeld2496222014-05-20 12:46:37 +03001469 iwl_remove_notification(&mvm->notif_wait, &wait_scan_done);
1470 return ret;
1471 }
1472
1473 ret = iwl_wait_notification(&mvm->notif_wait, &wait_scan_done, 1 * HZ);
David Spinadeld2496222014-05-20 12:46:37 +03001474
1475 return ret;
1476}
1477
1478int iwl_mvm_scan_size(struct iwl_mvm *mvm)
1479{
Johannes Berg859d9142015-06-01 17:11:11 +02001480 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN))
David Spinadeld2496222014-05-20 12:46:37 +03001481 return sizeof(struct iwl_scan_req_umac) +
1482 sizeof(struct iwl_scan_channel_cfg_umac) *
1483 mvm->fw->ucode_capa.n_scan_channels +
1484 sizeof(struct iwl_scan_req_umac_tail);
1485
Luciano Coelho65ff5562015-03-20 13:35:47 +02001486 return sizeof(struct iwl_scan_req_lmac) +
Luciano Coelho1f940382015-02-10 13:03:38 +02001487 sizeof(struct iwl_scan_channel_cfg_lmac) *
1488 mvm->fw->ucode_capa.n_scan_channels +
1489 sizeof(struct iwl_scan_probe_req);
David Spinadeld2496222014-05-20 12:46:37 +03001490}
David Spinadel4ffb3652015-03-10 10:06:02 +02001491
1492/*
1493 * This function is used in nic restart flow, to inform mac80211 about scans
1494 * that was aborted by restart flow or by an assert.
1495 */
1496void iwl_mvm_report_scan_aborted(struct iwl_mvm *mvm)
1497{
Johannes Berg859d9142015-06-01 17:11:11 +02001498 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001499 int uid, i;
Alexander Bondar963221b2015-03-26 11:07:35 +02001500
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001501 uid = iwl_mvm_scan_uid_by_status(mvm, IWL_MVM_SCAN_REGULAR);
1502 if (uid >= 0) {
David Spinadel4ffb3652015-03-10 10:06:02 +02001503 ieee80211_scan_completed(mvm->hw, true);
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001504 mvm->scan_uid_status[uid] = 0;
Alexander Bondar963221b2015-03-26 11:07:35 +02001505 }
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001506 uid = iwl_mvm_scan_uid_by_status(mvm, IWL_MVM_SCAN_SCHED);
1507 if (uid >= 0 && !mvm->restart_fw) {
David Spinadel4ffb3652015-03-10 10:06:02 +02001508 ieee80211_sched_scan_stopped(mvm->hw);
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001509 mvm->scan_uid_status[uid] = 0;
Alexander Bondar963221b2015-03-26 11:07:35 +02001510 }
1511
1512 /* We shouldn't have any UIDs still set. Loop over all the
1513 * UIDs to make sure there's nothing left there and warn if
1514 * any is found.
1515 */
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001516 for (i = 0; i < mvm->max_scans; i++) {
Luciano Coelho6185af2a2015-05-07 11:13:24 +03001517 if (WARN_ONCE(mvm->scan_uid_status[i],
1518 "UMAC scan UID %d status was not cleaned\n",
1519 i))
1520 mvm->scan_uid_status[i] = 0;
Alexander Bondar963221b2015-03-26 11:07:35 +02001521 }
David Spinadel4ffb3652015-03-10 10:06:02 +02001522 } else {
Luciano Coelho9af91f42015-02-10 10:42:26 +02001523 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR)
David Spinadel4ffb3652015-03-10 10:06:02 +02001524 ieee80211_scan_completed(mvm->hw, true);
Luciano Coelho9af91f42015-02-10 10:42:26 +02001525
1526 /* Sched scan will be restarted by mac80211 in
1527 * restart_hw, so do not report if FW is about to be
1528 * restarted.
1529 */
1530 if ((mvm->scan_status & IWL_MVM_SCAN_SCHED) && !mvm->restart_fw)
1531 ieee80211_sched_scan_stopped(mvm->hw);
David Spinadel4ffb3652015-03-10 10:06:02 +02001532 }
1533}
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001534
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001535int iwl_mvm_scan_stop(struct iwl_mvm *mvm, int type, bool notify)
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001536{
1537 int ret;
1538
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001539 if (!(mvm->scan_status & type))
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001540 return 0;
1541
1542 if (iwl_mvm_is_radio_killed(mvm)) {
1543 ret = 0;
1544 goto out;
1545 }
1546
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001547 ret = iwl_mvm_scan_stop_wait(mvm, type);
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001548 if (!ret)
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001549 mvm->scan_status |= type << IWL_MVM_SCAN_STOPPING_SHIFT;
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001550out:
1551 /* Clear the scan status so the next scan requests will
1552 * succeed and mark the scan as stopping, so that the Rx
1553 * handler doesn't do anything, as the scan was stopped from
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001554 * above.
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001555 */
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001556 mvm->scan_status &= ~type;
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001557
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001558 if (type == IWL_MVM_SCAN_REGULAR) {
1559 /* Since the rx handler won't do anything now, we have
1560 * to release the scan reference here.
1561 */
1562 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1563 if (notify)
1564 ieee80211_scan_completed(mvm->hw, true);
1565 } else if (notify) {
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001566 ieee80211_sched_scan_stopped(mvm->hw);
Luciano Coelhoc7d42482015-05-07 16:00:26 +03001567 }
Luciano Coelhodfbf1562015-05-05 11:21:34 +03001568
1569 return ret;
1570}