blob: acff2e7e3d1f991d56687bf05874a3e4dc403250 [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"
70#include "iwl-eeprom-parse.h"
71#include "fw-api-scan.h"
72
73#define IWL_PLCP_QUIET_THRESH 1
74#define IWL_ACTIVE_QUIET_TIME 10
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
78struct iwl_mvm_scan_params {
79 u32 max_out_time;
80 u32 suspend_time;
Alexander Bondar50df8a32014-03-12 20:30:51 +020081 bool passive_fragmented;
Luciano Coelhof7b788b2015-04-02 00:08:35 +030082 u32 n_channels;
83 u32 delay;
84 int n_ssids;
85 struct cfg80211_ssid *ssids;
86 struct ieee80211_channel **channels;
87 u16 interval; /* interval between scans (in secs) */
88 u32 flags;
89 u8 *mac_addr;
90 u8 *mac_addr_mask;
91 bool no_cck;
92 bool pass_all;
93 int n_match_sets;
Luciano Coelho45d1b122015-04-15 16:34:13 +030094 struct iwl_scan_probe_req preq;
Luciano Coelhof7b788b2015-04-02 00:08:35 +030095 struct cfg80211_match_set *match_sets;
Alexander Bondar50df8a32014-03-12 20:30:51 +020096 struct _dwell {
97 u16 passive;
98 u16 active;
David Spinadel190f1022015-02-17 12:45:21 +020099 u16 fragmented;
Alexander Bondar50df8a32014-03-12 20:30:51 +0200100 } dwell[IEEE80211_NUM_BANDS];
Alexander Bondar8a110d92014-03-12 17:31:19 +0200101};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100102
David Spinadeld2496222014-05-20 12:46:37 +0300103enum iwl_umac_scan_uid_type {
104 IWL_UMAC_SCAN_UID_REG_SCAN = BIT(0),
105 IWL_UMAC_SCAN_UID_SCHED_SCAN = BIT(1),
106 IWL_UMAC_SCAN_UID_ALL = IWL_UMAC_SCAN_UID_REG_SCAN |
107 IWL_UMAC_SCAN_UID_SCHED_SCAN,
108};
109
110static int iwl_umac_scan_stop(struct iwl_mvm *mvm,
111 enum iwl_umac_scan_uid_type type, bool notify);
112
113static u8 iwl_mvm_scan_rx_ant(struct iwl_mvm *mvm)
114{
115 if (mvm->scan_rx_ant != ANT_NONE)
116 return mvm->scan_rx_ant;
Moshe Harela0544272014-12-08 21:13:14 +0200117 return iwl_mvm_get_valid_rx_ant(mvm);
David Spinadeld2496222014-05-20 12:46:37 +0300118}
119
Johannes Berg8ca151b2013-01-24 14:25:36 +0100120static inline __le16 iwl_mvm_scan_rx_chain(struct iwl_mvm *mvm)
121{
122 u16 rx_chain;
Oren Givon91b05d12013-08-19 08:36:48 +0300123 u8 rx_ant;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100124
David Spinadeld2496222014-05-20 12:46:37 +0300125 rx_ant = iwl_mvm_scan_rx_ant(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100126 rx_chain = rx_ant << PHY_RX_CHAIN_VALID_POS;
127 rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_MIMO_SEL_POS;
128 rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_SEL_POS;
129 rx_chain |= 0x1 << PHY_RX_CHAIN_DRIVER_FORCE_POS;
130 return cpu_to_le16(rx_chain);
131}
132
David Spinadelfb98be52014-05-04 12:51:10 +0300133static __le32 iwl_mvm_scan_rxon_flags(enum ieee80211_band band)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100134{
David Spinadelfb98be52014-05-04 12:51:10 +0300135 if (band == IEEE80211_BAND_2GHZ)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100136 return cpu_to_le32(PHY_BAND_24);
137 else
138 return cpu_to_le32(PHY_BAND_5);
139}
140
141static inline __le32
142iwl_mvm_scan_rate_n_flags(struct iwl_mvm *mvm, enum ieee80211_band band,
143 bool no_cck)
144{
145 u32 tx_ant;
146
147 mvm->scan_last_antenna_idx =
Moshe Harela0544272014-12-08 21:13:14 +0200148 iwl_mvm_next_antenna(mvm, iwl_mvm_get_valid_tx_ant(mvm),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100149 mvm->scan_last_antenna_idx);
150 tx_ant = BIT(mvm->scan_last_antenna_idx) << RATE_MCS_ANT_POS;
151
152 if (band == IEEE80211_BAND_2GHZ && !no_cck)
153 return cpu_to_le32(IWL_RATE_1M_PLCP | RATE_MCS_CCK_MSK |
154 tx_ant);
155 else
156 return cpu_to_le32(IWL_RATE_6M_PLCP | tx_ant);
157}
158
159/*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100160 * If req->n_ssids > 0, it means we should do an active scan.
161 * In case of active scan w/o directed scan, we receive a zero-length SSID
162 * just to notify that this scan is active and not passive.
163 * In order to notify the FW of the number of SSIDs we wish to scan (including
164 * the zero-length one), we need to set the corresponding bits in chan->type,
David Spinadel20f1a5d2013-08-21 09:14:27 +0300165 * one for each SSID, and set the active bit (first). If the first SSID is
166 * already included in the probe template, so we need to set only
167 * req->n_ssids - 1 bits in addition to the first bit.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100168 */
David Spinadel3cae0732014-12-29 15:43:48 +0200169static u16 iwl_mvm_get_active_dwell(struct iwl_mvm *mvm,
170 enum ieee80211_band band, int n_ssids)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100171{
David Spinadel3cae0732014-12-29 15:43:48 +0200172 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BASIC_DWELL)
173 return 10;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100174 if (band == IEEE80211_BAND_2GHZ)
David Spinadel39745332014-09-10 16:40:41 +0300175 return 20 + 3 * (n_ssids + 1);
176 return 10 + 2 * (n_ssids + 1);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100177}
178
David Spinadel3cae0732014-12-29 15:43:48 +0200179static u16 iwl_mvm_get_passive_dwell(struct iwl_mvm *mvm,
180 enum ieee80211_band band)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100181{
David Spinadel3cae0732014-12-29 15:43:48 +0200182 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BASIC_DWELL)
183 return 110;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100184 return band == IEEE80211_BAND_2GHZ ? 100 + 20 : 100 + 10;
185}
186
Alexander Bondar8a110d92014-03-12 17:31:19 +0200187static void iwl_mvm_scan_condition_iterator(void *data, u8 *mac,
188 struct ieee80211_vif *vif)
Haim Dreyfuss61f63252013-11-03 23:02:59 +0200189{
Alexander Bondar8a110d92014-03-12 17:31:19 +0200190 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200191 int *global_cnt = data;
Haim Dreyfuss61f63252013-11-03 23:02:59 +0200192
David Spinadel1e2ebe02014-10-26 15:53:27 +0200193 if (vif->type != NL80211_IFTYPE_P2P_DEVICE && mvmvif->phy_ctxt &&
194 mvmvif->phy_ctxt->id < MAX_PHYS)
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200195 *global_cnt += 1;
Alexander Bondar8a110d92014-03-12 17:31:19 +0200196}
197
Luciano Coelho4b817052015-04-15 16:21:16 +0300198static void iwl_mvm_scan_calc_dwell(struct iwl_mvm *mvm,
199 struct ieee80211_vif *vif,
200 struct iwl_mvm_scan_params *params)
Alexander Bondar8a110d92014-03-12 17:31:19 +0200201{
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200202 int global_cnt = 0;
Alexander Bondar50df8a32014-03-12 20:30:51 +0200203 enum ieee80211_band band;
David Spinadel2ce89cd2014-07-22 13:11:18 +0300204 u8 frag_passive_dwell = 0;
Alexander Bondar8a110d92014-03-12 17:31:19 +0200205
206 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
207 IEEE80211_IFACE_ITER_NORMAL,
208 iwl_mvm_scan_condition_iterator,
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200209 &global_cnt);
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200210 if (!global_cnt)
Alexander Bondaref67f18d2014-03-30 10:47:08 +0300211 goto not_bound;
212
David Spinadel2ce89cd2014-07-22 13:11:18 +0300213 params->suspend_time = 30;
Haim Dreyfuss44e9cd72014-12-18 12:34:01 +0200214 params->max_out_time = 120;
Alexander Bondaref67f18d2014-03-30 10:47:08 +0300215
216 if (iwl_mvm_low_latency(mvm)) {
David Spinadel2ce89cd2014-07-22 13:11:18 +0300217 if (mvm->fw->ucode_capa.api[0] &
218 IWL_UCODE_TLV_API_FRAGMENTED_SCAN) {
219 params->suspend_time = 105;
Haim Dreyfussc3f8d0a2014-12-02 11:03:16 +0200220 /*
221 * If there is more than one active interface make
222 * passive scan more fragmented.
223 */
David Spinadelef177082015-02-15 14:45:33 +0200224 frag_passive_dwell = 40;
Haim Dreyfuss44e9cd72014-12-18 12:34:01 +0200225 params->max_out_time = frag_passive_dwell;
David Spinadel2ce89cd2014-07-22 13:11:18 +0300226 } else {
227 params->suspend_time = 120;
228 params->max_out_time = 120;
229 }
230 }
231
232 if (frag_passive_dwell && (mvm->fw->ucode_capa.api[0] &
233 IWL_UCODE_TLV_API_FRAGMENTED_SCAN)) {
234 /*
235 * P2P device scan should not be fragmented to avoid negative
236 * impact on P2P device discovery. Configure max_out_time to be
237 * equal to dwell time on passive channel. Take a longest
238 * possible value, one that corresponds to 2GHz band
239 */
240 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
241 u32 passive_dwell =
David Spinadel3cae0732014-12-29 15:43:48 +0200242 iwl_mvm_get_passive_dwell(mvm,
243 IEEE80211_BAND_2GHZ);
David Spinadel2ce89cd2014-07-22 13:11:18 +0300244 params->max_out_time = passive_dwell;
245 } else {
246 params->passive_fragmented = true;
247 }
Alexander Bondar50df8a32014-03-12 20:30:51 +0200248 }
249
Luciano Coelho4b817052015-04-15 16:21:16 +0300250 if ((params->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
Luciano Coelhoc1537662015-04-09 14:48:11 +0300251 (params->max_out_time > 200))
Johannes Bergab480032014-06-04 10:13:50 +0200252 params->max_out_time = 200;
253
Alexander Bondaref67f18d2014-03-30 10:47:08 +0300254not_bound:
255
Alexander Bondar50df8a32014-03-12 20:30:51 +0200256 for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) {
David Spinadel2ce89cd2014-07-22 13:11:18 +0300257 if (params->passive_fragmented)
David Spinadel190f1022015-02-17 12:45:21 +0200258 params->dwell[band].fragmented = frag_passive_dwell;
259
260 params->dwell[band].passive = iwl_mvm_get_passive_dwell(mvm,
261 band);
Luciano Coelho4b817052015-04-15 16:21:16 +0300262 params->dwell[band].active =
263 iwl_mvm_get_active_dwell(mvm, band, params->n_ssids);
Alexander Bondar50df8a32014-03-12 20:30:51 +0200264 }
Luciano Coelho0616c622015-04-09 12:18:56 +0300265
266 IWL_DEBUG_SCAN(mvm,
267 "scan parameters: max_out_time %d, suspend_time %d, passive_fragmented %d\n",
268 params->max_out_time, params->suspend_time,
269 params->passive_fragmented);
270 IWL_DEBUG_SCAN(mvm,
271 "dwell[IEEE80211_BAND_2GHZ]: passive %d, active %d, fragmented %d\n",
272 params->dwell[IEEE80211_BAND_2GHZ].passive,
273 params->dwell[IEEE80211_BAND_2GHZ].active,
274 params->dwell[IEEE80211_BAND_2GHZ].fragmented);
275 IWL_DEBUG_SCAN(mvm,
276 "dwell[IEEE80211_BAND_5GHZ]: passive %d, active %d, fragmented %d\n",
277 params->dwell[IEEE80211_BAND_5GHZ].passive,
278 params->dwell[IEEE80211_BAND_5GHZ].active,
279 params->dwell[IEEE80211_BAND_5GHZ].fragmented);
Haim Dreyfuss61f63252013-11-03 23:02:59 +0200280}
281
Andrei Otcheretianski73897bd2014-07-09 18:59:14 +0300282static inline bool iwl_mvm_rrm_scan_needed(struct iwl_mvm *mvm)
283{
284 /* require rrm scan whenever the fw supports it */
285 return mvm->fw->ucode_capa.capa[0] &
286 IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT;
287}
288
Luciano Coelho999d2562015-03-27 10:28:26 +0300289static int iwl_mvm_max_scan_ie_fw_cmd_room(struct iwl_mvm *mvm)
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300290{
291 int max_probe_len;
292
Luciano Coelho1f940382015-02-10 13:03:38 +0200293 max_probe_len = SCAN_OFFLOAD_PROBE_REQ_SIZE;
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300294
295 /* we create the 802.11 header and SSID element */
296 max_probe_len -= 24 + 2;
297
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300298 /* DS parameter set element is added on 2.4GHZ band if required */
299 if (iwl_mvm_rrm_scan_needed(mvm))
300 max_probe_len -= 3;
301
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300302 return max_probe_len;
303}
304
Luciano Coelho999d2562015-03-27 10:28:26 +0300305int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm)
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300306{
Luciano Coelho999d2562015-03-27 10:28:26 +0300307 int max_ie_len = iwl_mvm_max_scan_ie_fw_cmd_room(mvm);
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300308
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300309 /* TODO: [BUG] This function should return the maximum allowed size of
310 * scan IEs, however the LMAC scan api contains both 2GHZ and 5GHZ IEs
311 * in the same command. So the correct implementation of this function
312 * is just iwl_mvm_max_scan_ie_fw_cmd_room() / 2. Currently the scan
313 * command has only 512 bytes and it would leave us with about 240
314 * bytes for scan IEs, which is clearly not enough. So meanwhile
315 * we will report an incorrect value. This may result in a failure to
316 * issue a scan in unified_scan_lmac and unified_sched_scan_lmac
317 * functions with -ENOBUFS, if a large enough probe will be provided.
318 */
319 return max_ie_len;
320}
321
Alexander Bondare5d74642014-12-09 19:15:49 +0200322int iwl_mvm_rx_scan_offload_iter_complete_notif(struct iwl_mvm *mvm,
323 struct iwl_rx_cmd_buffer *rxb,
324 struct iwl_device_cmd *cmd)
325{
326 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Avraham Stern1083fd72015-03-31 16:14:41 +0300327 struct iwl_lmac_scan_complete_notif *notif = (void *)pkt->data;
Alexander Bondare5d74642014-12-09 19:15:49 +0200328
329 IWL_DEBUG_SCAN(mvm,
330 "Scan offload iteration complete: status=0x%x scanned channels=%d\n",
331 notif->status, notif->scanned_channels);
332 return 0;
333}
334
David Spinadelfb98be52014-05-04 12:51:10 +0300335int iwl_mvm_rx_scan_offload_results(struct iwl_mvm *mvm,
336 struct iwl_rx_cmd_buffer *rxb,
337 struct iwl_device_cmd *cmd)
David Spinadel35a000b2013-08-28 09:29:43 +0300338{
David Spinadeld2496222014-05-20 12:46:37 +0300339 IWL_DEBUG_SCAN(mvm, "Scheduled scan results\n");
340 ieee80211_sched_scan_results(mvm->hw);
David Spinadel35a000b2013-08-28 09:29:43 +0300341
342 return 0;
343}
344
David Spinadel35a000b2013-08-28 09:29:43 +0300345int iwl_mvm_rx_scan_offload_complete_notif(struct iwl_mvm *mvm,
346 struct iwl_rx_cmd_buffer *rxb,
347 struct iwl_device_cmd *cmd)
348{
349 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Luciano Coelho9af91f42015-02-10 10:42:26 +0200350 struct iwl_periodic_scan_complete *scan_notif = (void *)pkt->data;
351 bool aborted = (scan_notif->status == IWL_SCAN_OFFLOAD_ABORTED);
352 bool ebs_successful = (scan_notif->ebs_status == IWL_SCAN_EBS_SUCCESS);
David Spinadelfb98be52014-05-04 12:51:10 +0300353
Johannes Berga6623e82014-01-27 15:40:53 +0100354 /* scan status must be locked for proper checking */
355 lockdep_assert_held(&mvm->mutex);
356
Luciano Coelho9af91f42015-02-10 10:42:26 +0200357 /* We first check if we were stopping a scan, in which case we
358 * just clear the stopping flag. Then we check if it was a
359 * firmware initiated stop, in which case we need to inform
360 * mac80211.
361 * Note that we can have a stopping and a running scan
362 * simultaneously, but we can't have two different types of
363 * scans stopping or running at the same time (since LMAC
364 * doesn't support it).
365 */
Haim Dreyfusse820c2d2014-04-06 11:19:09 +0300366
Luciano Coelho9af91f42015-02-10 10:42:26 +0200367 if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_SCHED) {
368 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR);
David Spinadel35a000b2013-08-28 09:29:43 +0300369
Luciano Coelho9af91f42015-02-10 10:42:26 +0200370 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s\n",
371 aborted ? "aborted" : "completed",
372 ebs_successful ? "successful" : "failed");
373
374 mvm->scan_status &= ~IWL_MVM_SCAN_STOPPING_SCHED;
375 } else if (mvm->scan_status & IWL_MVM_SCAN_STOPPING_REGULAR) {
376 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s\n",
377 aborted ? "aborted" : "completed",
378 ebs_successful ? "successful" : "failed");
379
380 mvm->scan_status &= ~IWL_MVM_SCAN_STOPPING_REGULAR;
381 } else if (mvm->scan_status & IWL_MVM_SCAN_SCHED) {
382 WARN_ON_ONCE(mvm->scan_status & IWL_MVM_SCAN_REGULAR);
383
384 IWL_DEBUG_SCAN(mvm, "Scheduled scan %s, EBS status %s (FW)\n",
385 aborted ? "aborted" : "completed",
386 ebs_successful ? "successful" : "failed");
387
388 mvm->scan_status &= ~IWL_MVM_SCAN_SCHED;
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200389 ieee80211_sched_scan_stopped(mvm->hw);
Luciano Coelho9af91f42015-02-10 10:42:26 +0200390 } else if (mvm->scan_status & IWL_MVM_SCAN_REGULAR) {
391 IWL_DEBUG_SCAN(mvm, "Regular scan %s, EBS status %s (FW)\n",
392 aborted ? "aborted" : "completed",
393 ebs_successful ? "successful" : "failed");
394
395 mvm->scan_status &= ~IWL_MVM_SCAN_REGULAR;
David Spinadelfb98be52014-05-04 12:51:10 +0300396 ieee80211_scan_completed(mvm->hw,
Luciano Coelho1f940382015-02-10 13:03:38 +0200397 scan_notif->status == IWL_SCAN_OFFLOAD_ABORTED);
Eliad Peller4ff78182014-06-22 14:44:44 +0300398 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200399 }
David Spinadel35a000b2013-08-28 09:29:43 +0300400
Luciano Coelho9af91f42015-02-10 10:42:26 +0200401 mvm->last_ebs_successful = ebs_successful;
Haim Dreyfusse820c2d2014-04-06 11:19:09 +0300402
David Spinadel35a000b2013-08-28 09:29:43 +0300403 return 0;
404}
405
David Spinadel35a000b2013-08-28 09:29:43 +0300406static int iwl_ssid_exist(u8 *ssid, u8 ssid_len, struct iwl_ssid_ie *ssid_list)
407{
408 int i;
409
410 for (i = 0; i < PROBE_OPTION_MAX; i++) {
411 if (!ssid_list[i].len)
412 break;
413 if (ssid_list[i].len == ssid_len &&
414 !memcmp(ssid_list->ssid, ssid, ssid_len))
415 return i;
416 }
417 return -1;
418}
419
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300420/* We insert the SSIDs in an inverted order, because the FW will
421 * invert it back.
422 */
423static void iwl_scan_build_ssids(struct iwl_mvm_scan_params *params,
424 struct iwl_ssid_ie *ssids,
425 u32 *ssid_bitmap)
David Spinadel35a000b2013-08-28 09:29:43 +0300426{
427 int i, j;
428 int index;
429
430 /*
431 * copy SSIDs from match list.
432 * iwl_config_sched_scan_profiles() uses the order of these ssids to
433 * config match list.
434 */
Luciano Coelho1c1b5b22015-04-02 16:31:42 +0300435 for (i = 0, j = params->n_match_sets - 1;
436 j >= 0 && i < PROBE_OPTION_MAX;
437 i++, j--) {
Johannes Bergea73cbc2014-01-24 10:53:53 +0100438 /* skip empty SSID matchsets */
Luciano Coelho1c1b5b22015-04-02 16:31:42 +0300439 if (!params->match_sets[j].ssid.ssid_len)
Johannes Bergea73cbc2014-01-24 10:53:53 +0100440 continue;
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300441 ssids[i].id = WLAN_EID_SSID;
442 ssids[i].len = params->match_sets[j].ssid.ssid_len;
443 memcpy(ssids[i].ssid, params->match_sets[j].ssid.ssid,
444 ssids[i].len);
David Spinadel35a000b2013-08-28 09:29:43 +0300445 }
446
447 /* add SSIDs from scan SSID list */
448 *ssid_bitmap = 0;
Luciano Coelho1c1b5b22015-04-02 16:31:42 +0300449 for (j = params->n_ssids - 1;
450 j >= 0 && i < PROBE_OPTION_MAX;
451 i++, j--) {
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300452 index = iwl_ssid_exist(params->ssids[j].ssid,
453 params->ssids[j].ssid_len,
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300454 ssids);
David Spinadel35a000b2013-08-28 09:29:43 +0300455 if (index < 0) {
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300456 if (!params->ssids[j].ssid_len)
David Spinadel35a000b2013-08-28 09:29:43 +0300457 continue;
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300458 ssids[i].id = WLAN_EID_SSID;
459 ssids[i].len = params->ssids[j].ssid_len;
460 memcpy(ssids[i].ssid, params->ssids[j].ssid,
461 ssids[i].len);
462 *ssid_bitmap |= BIT(i);
David Spinadel35a000b2013-08-28 09:29:43 +0300463 } else {
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300464 *ssid_bitmap |= BIT(index);
David Spinadel35a000b2013-08-28 09:29:43 +0300465 }
466 }
467}
468
David Spinadel35a000b2013-08-28 09:29:43 +0300469int iwl_mvm_config_sched_scan_profiles(struct iwl_mvm *mvm,
470 struct cfg80211_sched_scan_request *req)
471{
472 struct iwl_scan_offload_profile *profile;
473 struct iwl_scan_offload_profile_cfg *profile_cfg;
474 struct iwl_scan_offload_blacklist *blacklist;
475 struct iwl_host_cmd cmd = {
476 .id = SCAN_OFFLOAD_UPDATE_PROFILES_CMD,
David Spinadel35a000b2013-08-28 09:29:43 +0300477 .len[1] = sizeof(*profile_cfg),
478 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
479 .dataflags[1] = IWL_HCMD_DFL_NOCOPY,
480 };
481 int blacklist_len;
482 int i;
483 int ret;
484
485 if (WARN_ON(req->n_match_sets > IWL_SCAN_MAX_PROFILES))
486 return -EIO;
487
488 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_SHORT_BL)
489 blacklist_len = IWL_SCAN_SHORT_BLACKLIST_LEN;
490 else
491 blacklist_len = IWL_SCAN_MAX_BLACKLIST_LEN;
492
493 blacklist = kzalloc(sizeof(*blacklist) * blacklist_len, GFP_KERNEL);
494 if (!blacklist)
495 return -ENOMEM;
496
497 profile_cfg = kzalloc(sizeof(*profile_cfg), GFP_KERNEL);
498 if (!profile_cfg) {
499 ret = -ENOMEM;
500 goto free_blacklist;
501 }
502
503 cmd.data[0] = blacklist;
504 cmd.len[0] = sizeof(*blacklist) * blacklist_len;
505 cmd.data[1] = profile_cfg;
506
507 /* No blacklist configuration */
508
509 profile_cfg->num_profiles = req->n_match_sets;
510 profile_cfg->active_clients = SCAN_CLIENT_SCHED_SCAN;
511 profile_cfg->pass_match = SCAN_CLIENT_SCHED_SCAN;
512 profile_cfg->match_notify = SCAN_CLIENT_SCHED_SCAN;
David Spinadel6e0bbe52013-12-30 09:59:45 +0200513 if (!req->n_match_sets || !req->match_sets[0].ssid.ssid_len)
514 profile_cfg->any_beacon_notify = SCAN_CLIENT_SCHED_SCAN;
David Spinadel35a000b2013-08-28 09:29:43 +0300515
516 for (i = 0; i < req->n_match_sets; i++) {
517 profile = &profile_cfg->profiles[i];
518 profile->ssid_index = i;
519 /* Support any cipher and auth algorithm */
520 profile->unicast_cipher = 0xff;
521 profile->auth_alg = 0xff;
522 profile->network_type = IWL_NETWORK_TYPE_ANY;
523 profile->band_selection = IWL_SCAN_OFFLOAD_SELECT_ANY;
524 profile->client_bitmap = SCAN_CLIENT_SCHED_SCAN;
525 }
526
527 IWL_DEBUG_SCAN(mvm, "Sending scheduled scan profile config\n");
528
529 ret = iwl_mvm_send_cmd(mvm, &cmd);
530 kfree(profile_cfg);
531free_blacklist:
532 kfree(blacklist);
533
534 return ret;
535}
536
David Spinadeld2496222014-05-20 12:46:37 +0300537static bool iwl_mvm_scan_pass_all(struct iwl_mvm *mvm,
538 struct cfg80211_sched_scan_request *req)
539{
540 if (req->n_match_sets && req->match_sets[0].ssid.ssid_len) {
541 IWL_DEBUG_SCAN(mvm,
542 "Sending scheduled scan with filtering, n_match_sets %d\n",
543 req->n_match_sets);
544 return false;
545 }
546
547 IWL_DEBUG_SCAN(mvm, "Sending Scheduled scan without filtering\n");
548 return true;
549}
550
David Spinadelfb98be52014-05-04 12:51:10 +0300551static int iwl_mvm_send_scan_offload_abort(struct iwl_mvm *mvm)
David Spinadel35a000b2013-08-28 09:29:43 +0300552{
553 int ret;
554 struct iwl_host_cmd cmd = {
555 .id = SCAN_OFFLOAD_ABORT_CMD,
David Spinadel35a000b2013-08-28 09:29:43 +0300556 };
557 u32 status;
558
559 /* Exit instantly with error when device is not ready
560 * to receive scan abort command or it does not perform
561 * scheduled scan currently */
Luciano Coelho9af91f42015-02-10 10:42:26 +0200562 if (!mvm->scan_status)
David Spinadel35a000b2013-08-28 09:29:43 +0300563 return -EIO;
564
565 ret = iwl_mvm_send_cmd_status(mvm, &cmd, &status);
566 if (ret)
567 return ret;
568
569 if (status != CAN_ABORT_STATUS) {
570 /*
571 * The scan abort will return 1 for success or
572 * 2 for "failure". A failure condition can be
573 * due to simply not being in an active scan which
574 * can occur if we send the scan abort before the
575 * microcode has notified us that a scan is completed.
576 */
577 IWL_DEBUG_SCAN(mvm, "SCAN OFFLOAD ABORT ret %d.\n", status);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200578 ret = -ENOENT;
David Spinadel35a000b2013-08-28 09:29:43 +0300579 }
580
581 return ret;
582}
583
David Spinadelfb98be52014-05-04 12:51:10 +0300584int iwl_mvm_scan_offload_stop(struct iwl_mvm *mvm, bool notify)
David Spinadel35a000b2013-08-28 09:29:43 +0300585{
586 int ret;
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200587 struct iwl_notification_wait wait_scan_done;
588 static const u8 scan_done_notif[] = { SCAN_OFFLOAD_COMPLETE, };
Luciano Coelho9af91f42015-02-10 10:42:26 +0200589 bool sched = !!(mvm->scan_status & IWL_MVM_SCAN_SCHED);
David Spinadel35a000b2013-08-28 09:29:43 +0300590
591 lockdep_assert_held(&mvm->mutex);
592
David Spinadeld2496222014-05-20 12:46:37 +0300593 if (mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_UMAC_SCAN)
594 return iwl_umac_scan_stop(mvm, IWL_UMAC_SCAN_UID_SCHED_SCAN,
595 notify);
596
Luciano Coelho9af91f42015-02-10 10:42:26 +0200597 /* FIXME: For now we only check if no scan is set here, since
598 * we only support LMAC in this flow and it doesn't support
599 * multiple scans.
600 */
601 if (!mvm->scan_status)
Emmanuel Grumbach90ea15c2015-01-18 21:39:30 +0200602 return 0;
603
Luciano Coelho54331db2015-02-05 00:39:22 +0200604 if (iwl_mvm_is_radio_killed(mvm)) {
605 ret = 0;
Emmanuel Grumbach90ea15c2015-01-18 21:39:30 +0200606 goto out;
Luciano Coelho54331db2015-02-05 00:39:22 +0200607 }
Emmanuel Grumbach90ea15c2015-01-18 21:39:30 +0200608
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200609 iwl_init_notification_wait(&mvm->notif_wait, &wait_scan_done,
610 scan_done_notif,
611 ARRAY_SIZE(scan_done_notif),
612 NULL, NULL);
613
David Spinadelfb98be52014-05-04 12:51:10 +0300614 ret = iwl_mvm_send_scan_offload_abort(mvm);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200615 if (ret) {
David Spinadelfb98be52014-05-04 12:51:10 +0300616 IWL_DEBUG_SCAN(mvm, "Send stop %sscan failed %d\n",
617 sched ? "offloaded " : "", ret);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200618 iwl_remove_notification(&mvm->notif_wait, &wait_scan_done);
Luciano Coelho54331db2015-02-05 00:39:22 +0200619 goto out;
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200620 }
621
David Spinadelfb98be52014-05-04 12:51:10 +0300622 IWL_DEBUG_SCAN(mvm, "Successfully sent stop %sscan\n",
Luciano Coelho9af91f42015-02-10 10:42:26 +0200623 sched ? "scheduled " : "");
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200624
625 ret = iwl_wait_notification(&mvm->notif_wait, &wait_scan_done, 1 * HZ);
Luciano Coelho54331db2015-02-05 00:39:22 +0200626out:
Luciano Coelho9af91f42015-02-10 10:42:26 +0200627 /* Clear the scan status so the next scan requests will
628 * succeed and mark the scan as stopping, so that the Rx
629 * handler doesn't do anything, as the scan was stopped from
630 * above. Since the rx handler won't do anything now, we have
631 * to release the scan reference here.
Arik Nemtsov33ea27f2014-02-10 15:34:29 +0200632 */
Luciano Coelho9af91f42015-02-10 10:42:26 +0200633 if (mvm->scan_status == IWL_MVM_SCAN_REGULAR)
Eliad Peller4ff78182014-06-22 14:44:44 +0300634 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
635
Luciano Coelho9af91f42015-02-10 10:42:26 +0200636 if (sched) {
637 mvm->scan_status &= ~IWL_MVM_SCAN_SCHED;
638 mvm->scan_status |= IWL_MVM_SCAN_STOPPING_SCHED;
639 if (notify)
David Spinadelfb98be52014-05-04 12:51:10 +0300640 ieee80211_sched_scan_stopped(mvm->hw);
Luciano Coelho9af91f42015-02-10 10:42:26 +0200641 } else {
642 mvm->scan_status &= ~IWL_MVM_SCAN_REGULAR;
643 mvm->scan_status |= IWL_MVM_SCAN_STOPPING_REGULAR;
644 if (notify)
David Spinadelfb98be52014-05-04 12:51:10 +0300645 ieee80211_scan_completed(mvm->hw, true);
646 }
David Spinadel636a2cd2014-05-01 15:57:22 +0300647
Luciano Coelho54331db2015-02-05 00:39:22 +0200648 return ret;
David Spinadel35a000b2013-08-28 09:29:43 +0300649}
David Spinadelfb98be52014-05-04 12:51:10 +0300650
Luciano Coelho65ff5562015-03-20 13:35:47 +0200651static void iwl_mvm_scan_fill_tx_cmd(struct iwl_mvm *mvm,
652 struct iwl_scan_req_tx_cmd *tx_cmd,
653 bool no_cck)
David Spinadelfb98be52014-05-04 12:51:10 +0300654{
655 tx_cmd[0].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
656 TX_CMD_FLG_BT_DIS);
657 tx_cmd[0].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm,
658 IEEE80211_BAND_2GHZ,
659 no_cck);
660 tx_cmd[0].sta_id = mvm->aux_sta.sta_id;
661
662 tx_cmd[1].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
663 TX_CMD_FLG_BT_DIS);
664 tx_cmd[1].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm,
665 IEEE80211_BAND_5GHZ,
666 no_cck);
667 tx_cmd[1].sta_id = mvm->aux_sta.sta_id;
668}
669
670static void
671iwl_mvm_lmac_scan_cfg_channels(struct iwl_mvm *mvm,
672 struct ieee80211_channel **channels,
673 int n_channels, u32 ssid_bitmap,
Luciano Coelho65ff5562015-03-20 13:35:47 +0200674 struct iwl_scan_req_lmac *cmd)
David Spinadelfb98be52014-05-04 12:51:10 +0300675{
676 struct iwl_scan_channel_cfg_lmac *channel_cfg = (void *)&cmd->data;
677 int i;
678
679 for (i = 0; i < n_channels; i++) {
680 channel_cfg[i].channel_num =
681 cpu_to_le16(channels[i]->hw_value);
682 channel_cfg[i].iter_count = cpu_to_le16(1);
683 channel_cfg[i].iter_interval = 0;
684 channel_cfg[i].flags =
685 cpu_to_le32(IWL_UNIFIED_SCAN_CHANNEL_PARTIAL |
686 ssid_bitmap);
687 }
688}
689
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300690static u8 *iwl_mvm_copy_and_insert_ds_elem(struct iwl_mvm *mvm, const u8 *ies,
691 size_t len, u8 *const pos)
692{
693 static const u8 before_ds_params[] = {
694 WLAN_EID_SSID,
695 WLAN_EID_SUPP_RATES,
696 WLAN_EID_REQUEST,
697 WLAN_EID_EXT_SUPP_RATES,
698 };
699 size_t offs;
700 u8 *newpos = pos;
701
702 if (!iwl_mvm_rrm_scan_needed(mvm)) {
703 memcpy(newpos, ies, len);
704 return newpos + len;
705 }
706
707 offs = ieee80211_ie_split(ies, len,
708 before_ds_params,
709 ARRAY_SIZE(before_ds_params),
710 0);
711
712 memcpy(newpos, ies, offs);
713 newpos += offs;
714
715 /* Add a placeholder for DS Parameter Set element */
716 *newpos++ = WLAN_EID_DS_PARAMS;
717 *newpos++ = 1;
718 *newpos++ = 0;
719
720 memcpy(newpos, ies + offs, len - offs);
721 newpos += len - offs;
722
723 return newpos;
724}
725
David Spinadelfb98be52014-05-04 12:51:10 +0300726static void
Luciano Coelho65ff5562015-03-20 13:35:47 +0200727iwl_mvm_build_scan_probe(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
728 struct ieee80211_scan_ies *ies,
Luciano Coelho45d1b122015-04-15 16:34:13 +0300729 struct iwl_mvm_scan_params *params)
David Spinadelfb98be52014-05-04 12:51:10 +0300730{
Luciano Coelho45d1b122015-04-15 16:34:13 +0300731 struct ieee80211_mgmt *frame = (void *)params->preq.buf;
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300732 u8 *pos, *newpos;
Luciano Coelho45d1b122015-04-15 16:34:13 +0300733 const u8 *mac_addr = params->flags & NL80211_SCAN_FLAG_RANDOM_ADDR ?
734 params->mac_addr : NULL;
David Spinadelfb98be52014-05-04 12:51:10 +0300735
Johannes Bergeffd05a2014-11-18 17:21:19 +0100736 /*
737 * Unfortunately, right now the offload scan doesn't support randomising
738 * within the firmware, so until the firmware API is ready we implement
739 * it in the driver. This means that the scan iterations won't really be
740 * random, only when it's restarted, but at least that helps a bit.
741 */
742 if (mac_addr)
Luciano Coelho45d1b122015-04-15 16:34:13 +0300743 get_random_mask_addr(frame->sa, mac_addr,
744 params->mac_addr_mask);
Johannes Bergeffd05a2014-11-18 17:21:19 +0100745 else
746 memcpy(frame->sa, vif->addr, ETH_ALEN);
747
David Spinadelfb98be52014-05-04 12:51:10 +0300748 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
749 eth_broadcast_addr(frame->da);
David Spinadelfb98be52014-05-04 12:51:10 +0300750 eth_broadcast_addr(frame->bssid);
751 frame->seq_ctrl = 0;
752
753 pos = frame->u.probe_req.variable;
754 *pos++ = WLAN_EID_SSID;
755 *pos++ = 0;
756
Luciano Coelho45d1b122015-04-15 16:34:13 +0300757 params->preq.mac_header.offset = 0;
758 params->preq.mac_header.len = cpu_to_le16(24 + 2);
David Spinadelfb98be52014-05-04 12:51:10 +0300759
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300760 /* Insert ds parameter set element on 2.4 GHz band */
761 newpos = iwl_mvm_copy_and_insert_ds_elem(mvm,
762 ies->ies[IEEE80211_BAND_2GHZ],
763 ies->len[IEEE80211_BAND_2GHZ],
764 pos);
Luciano Coelho45d1b122015-04-15 16:34:13 +0300765 params->preq.band_data[0].offset = cpu_to_le16(pos - params->preq.buf);
766 params->preq.band_data[0].len = cpu_to_le16(newpos - pos);
Andrei Otcheretianski66dc5272014-09-02 17:55:40 +0300767 pos = newpos;
David Spinadelfb98be52014-05-04 12:51:10 +0300768
769 memcpy(pos, ies->ies[IEEE80211_BAND_5GHZ],
770 ies->len[IEEE80211_BAND_5GHZ]);
Luciano Coelho45d1b122015-04-15 16:34:13 +0300771 params->preq.band_data[1].offset = cpu_to_le16(pos - params->preq.buf);
772 params->preq.band_data[1].len =
773 cpu_to_le16(ies->len[IEEE80211_BAND_5GHZ]);
David Spinadelfb98be52014-05-04 12:51:10 +0300774 pos += ies->len[IEEE80211_BAND_5GHZ];
775
776 memcpy(pos, ies->common_ies, ies->common_ie_len);
Luciano Coelho45d1b122015-04-15 16:34:13 +0300777 params->preq.common_data.offset = cpu_to_le16(pos - params->preq.buf);
778 params->preq.common_data.len = cpu_to_le16(ies->common_ie_len);
David Spinadelfb98be52014-05-04 12:51:10 +0300779}
780
781static void
Luciano Coelho65ff5562015-03-20 13:35:47 +0200782iwl_mvm_build_generic_scan_cmd(struct iwl_mvm *mvm,
783 struct iwl_scan_req_lmac *cmd,
784 struct iwl_mvm_scan_params *params)
David Spinadelfb98be52014-05-04 12:51:10 +0300785{
David Spinadelaf913442014-06-12 19:29:40 +0300786 memset(cmd, 0, ksize(cmd));
David Spinadel2ce89cd2014-07-22 13:11:18 +0300787 cmd->active_dwell = params->dwell[IEEE80211_BAND_2GHZ].active;
788 cmd->passive_dwell = params->dwell[IEEE80211_BAND_2GHZ].passive;
789 if (params->passive_fragmented)
790 cmd->fragmented_dwell =
David Spinadel190f1022015-02-17 12:45:21 +0200791 params->dwell[IEEE80211_BAND_2GHZ].fragmented;
David Spinadelfb98be52014-05-04 12:51:10 +0300792 cmd->rx_chain_select = iwl_mvm_scan_rx_chain(mvm);
793 cmd->max_out_time = cpu_to_le32(params->max_out_time);
794 cmd->suspend_time = cpu_to_le32(params->suspend_time);
795 cmd->scan_prio = cpu_to_le32(IWL_SCAN_PRIORITY_HIGH);
David Spinadelfb98be52014-05-04 12:51:10 +0300796 cmd->iter_num = cpu_to_le32(1);
David Spinadelaf913442014-06-12 19:29:40 +0300797
Andrei Otcheretianski73897bd2014-07-09 18:59:14 +0300798 if (iwl_mvm_rrm_scan_needed(mvm))
799 cmd->scan_flags |=
800 cpu_to_le32(IWL_MVM_LMAC_SCAN_FLAGS_RRM_ENABLED);
David Spinadelfb98be52014-05-04 12:51:10 +0300801}
802
Luciano Coelho999d2562015-03-27 10:28:26 +0300803static inline bool iwl_mvm_scan_fits(struct iwl_mvm *mvm, int n_ssids,
804 struct ieee80211_scan_ies *ies,
805 int n_channels)
806{
807 return ((n_ssids <= PROBE_OPTION_MAX) &&
808 (n_channels <= mvm->fw->ucode_capa.n_scan_channels) &
809 (ies->common_ie_len +
810 ies->len[NL80211_BAND_2GHZ] +
811 ies->len[NL80211_BAND_5GHZ] <=
812 iwl_mvm_max_scan_ie_fw_cmd_room(mvm)));
813}
814
Luciano Coelho6749dd82015-03-20 15:51:36 +0200815static int iwl_mvm_scan_lmac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Luciano Coelho3db7c6e2015-04-01 17:09:56 +0300816 struct iwl_mvm_scan_params *params)
David Spinadelfb98be52014-05-04 12:51:10 +0300817{
Luciano Coelho65ff5562015-03-20 13:35:47 +0200818 struct iwl_scan_req_lmac *cmd = mvm->scan_cmd;
Luciano Coelho45d1b122015-04-15 16:34:13 +0300819 struct iwl_scan_probe_req *preq =
820 (void *)(cmd->data + sizeof(struct iwl_scan_channel_cfg_lmac) *
821 mvm->fw->ucode_capa.n_scan_channels);
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300822 u32 flags = 0, ssid_bitmap = 0;
David Spinadelfb98be52014-05-04 12:51:10 +0300823
824 lockdep_assert_held(&mvm->mutex);
825
Luciano Coelho3db7c6e2015-04-01 17:09:56 +0300826 iwl_mvm_build_generic_scan_cmd(mvm, cmd, params);
David Spinadelfb98be52014-05-04 12:51:10 +0300827
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300828 cmd->n_channels = (u8)params->n_channels;
David Spinadelfb98be52014-05-04 12:51:10 +0300829
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300830 cmd->delay = cpu_to_le32(params->delay);
David Spinadelfb98be52014-05-04 12:51:10 +0300831
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300832 if (params->pass_all)
833 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASS_ALL;
834 else
835 flags |= IWL_MVM_LMAC_SCAN_FLAG_MATCH;
836
837 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0)
David Spinadelfb98be52014-05-04 12:51:10 +0300838 flags |= IWL_MVM_LMAC_SCAN_FLAG_PRE_CONNECTION;
839
Luciano Coelho3db7c6e2015-04-01 17:09:56 +0300840 if (params->passive_fragmented)
David Spinadelfb98be52014-05-04 12:51:10 +0300841 flags |= IWL_MVM_LMAC_SCAN_FLAG_FRAGMENTED;
842
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300843 if (params->n_ssids == 0)
David Spinadelfb98be52014-05-04 12:51:10 +0300844 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASSIVE;
845
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300846#ifdef CONFIG_IWLWIFI_DEBUGFS
847 /* TODO: Check if it's okay to have this in regular scans */
848 if (mvm->scan_iter_notif_enabled)
849 flags |= IWL_MVM_LMAC_SCAN_FLAG_ITER_COMPLETE;
850#endif
851
Andrei Otcheretianski73897bd2014-07-09 18:59:14 +0300852 cmd->scan_flags |= cpu_to_le32(flags);
David Spinadelfb98be52014-05-04 12:51:10 +0300853
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300854 cmd->flags = iwl_mvm_scan_rxon_flags(params->channels[0]->band);
David Spinadelfb98be52014-05-04 12:51:10 +0300855 cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP |
856 MAC_FILTER_IN_BEACON);
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300857 iwl_mvm_scan_fill_tx_cmd(mvm, cmd->tx_cmd, params->no_cck);
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300858 iwl_scan_build_ssids(params, cmd->direct_scan, &ssid_bitmap);
Luciano Coelho5ef766f2015-04-02 15:37:05 +0300859
860 /* this API uses bits 1-20 instead of 0-19 */
861 ssid_bitmap <<= 1;
David Spinadelfb98be52014-05-04 12:51:10 +0300862
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300863 cmd->schedule[0].delay = cpu_to_le16(params->interval);
David Spinadelfb98be52014-05-04 12:51:10 +0300864 cmd->schedule[0].iterations = 1;
865 cmd->schedule[0].full_scan_mul = 0;
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300866 cmd->schedule[1].delay = cpu_to_le16(params->interval);
David Spinadelfb98be52014-05-04 12:51:10 +0300867 cmd->schedule[1].iterations = 0;
868 cmd->schedule[1].full_scan_mul = 0;
869
David Spinadel1f9c4182014-12-01 23:30:07 +0200870 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_SINGLE_SCAN_EBS &&
871 mvm->last_ebs_successful) {
872 cmd->channel_opt[0].flags =
873 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
874 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
875 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
876 cmd->channel_opt[0].non_ebs_ratio =
877 cpu_to_le16(IWL_DENSE_EBS_SCAN_RATIO);
878 cmd->channel_opt[1].flags =
879 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
880 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
881 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
882 cmd->channel_opt[1].non_ebs_ratio =
883 cpu_to_le16(IWL_SPARSE_EBS_SCAN_RATIO);
884 }
885
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300886 iwl_mvm_lmac_scan_cfg_channels(mvm, params->channels,
887 params->n_channels, ssid_bitmap, cmd);
David Spinadelfb98be52014-05-04 12:51:10 +0300888
Luciano Coelho45d1b122015-04-15 16:34:13 +0300889 *preq = params->preq;
David Spinadelfb98be52014-05-04 12:51:10 +0300890
Luciano Coelho3db7c6e2015-04-01 17:09:56 +0300891 return 0;
David Spinadelfb98be52014-05-04 12:51:10 +0300892}
893
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300894static int
895iwl_mvm_sched_scan_lmac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Luciano Coelho45d1b122015-04-15 16:34:13 +0300896 struct iwl_mvm_scan_params *params)
David Spinadelfb98be52014-05-04 12:51:10 +0300897{
Luciano Coelho65ff5562015-03-20 13:35:47 +0200898 struct iwl_scan_req_lmac *cmd = mvm->scan_cmd;
Luciano Coelho45d1b122015-04-15 16:34:13 +0300899 struct iwl_scan_probe_req *preq =
900 (void *)(cmd->data + sizeof(struct iwl_scan_channel_cfg_lmac) *
901 mvm->fw->ucode_capa.n_scan_channels);
David Spinadelfb98be52014-05-04 12:51:10 +0300902 u32 flags = 0, ssid_bitmap = 0;
903
904 lockdep_assert_held(&mvm->mutex);
905
Luciano Coelho8df3e682015-04-01 17:37:44 +0300906 iwl_mvm_build_generic_scan_cmd(mvm, cmd, params);
David Spinadelfb98be52014-05-04 12:51:10 +0300907
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300908 cmd->n_channels = (u8)params->n_channels;
David Spinadelfb98be52014-05-04 12:51:10 +0300909
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300910 cmd->delay = cpu_to_le32(params->delay);
Luciano Coelho2250fd92014-12-03 10:52:26 +0200911
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300912 if (params->pass_all)
David Spinadelfb98be52014-05-04 12:51:10 +0300913 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASS_ALL;
David Spinadel7e2a3882014-12-23 14:38:09 +0200914 else
915 flags |= IWL_MVM_LMAC_SCAN_FLAG_MATCH;
David Spinadelfb98be52014-05-04 12:51:10 +0300916
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300917 if (params->n_ssids == 1 && params->ssids[0].ssid_len != 0)
David Spinadelfb98be52014-05-04 12:51:10 +0300918 flags |= IWL_MVM_LMAC_SCAN_FLAG_PRE_CONNECTION;
919
Luciano Coelho8df3e682015-04-01 17:37:44 +0300920 if (params->passive_fragmented)
David Spinadelfb98be52014-05-04 12:51:10 +0300921 flags |= IWL_MVM_LMAC_SCAN_FLAG_FRAGMENTED;
922
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300923 if (params->n_ssids == 0)
David Spinadelfb98be52014-05-04 12:51:10 +0300924 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASSIVE;
925
Alexander Bondare5d74642014-12-09 19:15:49 +0200926#ifdef CONFIG_IWLWIFI_DEBUGFS
927 if (mvm->scan_iter_notif_enabled)
928 flags |= IWL_MVM_LMAC_SCAN_FLAG_ITER_COMPLETE;
929#endif
930
Andrei Otcheretianski73897bd2014-07-09 18:59:14 +0300931 cmd->scan_flags |= cpu_to_le32(flags);
David Spinadelfb98be52014-05-04 12:51:10 +0300932
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300933 cmd->flags = iwl_mvm_scan_rxon_flags(params->channels[0]->band);
David Spinadelfb98be52014-05-04 12:51:10 +0300934 cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP |
935 MAC_FILTER_IN_BEACON);
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300936 iwl_mvm_scan_fill_tx_cmd(mvm, cmd->tx_cmd, params->no_cck);
David Spinadelfb98be52014-05-04 12:51:10 +0300937
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +0300938 iwl_scan_build_ssids(params, cmd->direct_scan, &ssid_bitmap);
939
940 /* this API uses bits 1-20 instead of 0-19 */
941 ssid_bitmap <<= 1;
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300942
943 cmd->schedule[0].delay = cpu_to_le16(params->interval);
David Spinadelfb98be52014-05-04 12:51:10 +0300944 cmd->schedule[0].iterations = IWL_FAST_SCHED_SCAN_ITERATIONS;
945 cmd->schedule[0].full_scan_mul = 1;
946
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300947 cmd->schedule[1].delay = cpu_to_le16(params->interval);
David Spinadelfb98be52014-05-04 12:51:10 +0300948 cmd->schedule[1].iterations = 0xff;
949 cmd->schedule[1].full_scan_mul = IWL_FULL_SCAN_MULTIPLIER;
950
David Spinadel1f9c4182014-12-01 23:30:07 +0200951 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_EBS_SUPPORT &&
952 mvm->last_ebs_successful) {
953 cmd->channel_opt[0].flags =
954 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
955 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
956 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
957 cmd->channel_opt[0].non_ebs_ratio =
958 cpu_to_le16(IWL_DENSE_EBS_SCAN_RATIO);
959 cmd->channel_opt[1].flags =
960 cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
961 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
962 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
963 cmd->channel_opt[1].non_ebs_ratio =
964 cpu_to_le16(IWL_SPARSE_EBS_SCAN_RATIO);
965 }
966
Luciano Coelhof7b788b2015-04-02 00:08:35 +0300967 iwl_mvm_lmac_scan_cfg_channels(mvm, params->channels,
968 params->n_channels, ssid_bitmap, cmd);
David Spinadelfb98be52014-05-04 12:51:10 +0300969
Luciano Coelho45d1b122015-04-15 16:34:13 +0300970 *preq = params->preq;
David Spinadelfb98be52014-05-04 12:51:10 +0300971
Luciano Coelho8df3e682015-04-01 17:37:44 +0300972 return 0;
David Spinadelfb98be52014-05-04 12:51:10 +0300973}
974
975
976int iwl_mvm_cancel_scan(struct iwl_mvm *mvm)
977{
David Spinadeld2496222014-05-20 12:46:37 +0300978 if (mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_UMAC_SCAN)
979 return iwl_umac_scan_stop(mvm, IWL_UMAC_SCAN_UID_REG_SCAN,
980 true);
981
Luciano Coelho9af91f42015-02-10 10:42:26 +0200982 if (!(mvm->scan_status & IWL_MVM_SCAN_REGULAR))
Emmanuel Grumbach9b520d82014-11-04 15:54:11 +0200983 return 0;
984
985 if (iwl_mvm_is_radio_killed(mvm)) {
986 ieee80211_scan_completed(mvm->hw, true);
987 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
Luciano Coelho9af91f42015-02-10 10:42:26 +0200988 mvm->scan_status &= ~IWL_MVM_SCAN_REGULAR;
Emmanuel Grumbach9b520d82014-11-04 15:54:11 +0200989 return 0;
990 }
991
Luciano Coelho1f940382015-02-10 13:03:38 +0200992 return iwl_mvm_scan_offload_stop(mvm, true);
David Spinadelfb98be52014-05-04 12:51:10 +0300993}
David Spinadeld2496222014-05-20 12:46:37 +0300994
995/* UMAC scan API */
996
997struct iwl_umac_scan_done {
998 struct iwl_mvm *mvm;
999 enum iwl_umac_scan_uid_type type;
1000};
1001
1002static int rate_to_scan_rate_flag(unsigned int rate)
1003{
1004 static const int rate_to_scan_rate[IWL_RATE_COUNT] = {
1005 [IWL_RATE_1M_INDEX] = SCAN_CONFIG_RATE_1M,
1006 [IWL_RATE_2M_INDEX] = SCAN_CONFIG_RATE_2M,
1007 [IWL_RATE_5M_INDEX] = SCAN_CONFIG_RATE_5M,
1008 [IWL_RATE_11M_INDEX] = SCAN_CONFIG_RATE_11M,
1009 [IWL_RATE_6M_INDEX] = SCAN_CONFIG_RATE_6M,
1010 [IWL_RATE_9M_INDEX] = SCAN_CONFIG_RATE_9M,
1011 [IWL_RATE_12M_INDEX] = SCAN_CONFIG_RATE_12M,
1012 [IWL_RATE_18M_INDEX] = SCAN_CONFIG_RATE_18M,
1013 [IWL_RATE_24M_INDEX] = SCAN_CONFIG_RATE_24M,
1014 [IWL_RATE_36M_INDEX] = SCAN_CONFIG_RATE_36M,
1015 [IWL_RATE_48M_INDEX] = SCAN_CONFIG_RATE_48M,
1016 [IWL_RATE_54M_INDEX] = SCAN_CONFIG_RATE_54M,
1017 };
1018
1019 return rate_to_scan_rate[rate];
1020}
1021
1022static __le32 iwl_mvm_scan_config_rates(struct iwl_mvm *mvm)
1023{
1024 struct ieee80211_supported_band *band;
1025 unsigned int rates = 0;
1026 int i;
1027
1028 band = &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ];
1029 for (i = 0; i < band->n_bitrates; i++)
1030 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value);
1031 band = &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ];
1032 for (i = 0; i < band->n_bitrates; i++)
1033 rates |= rate_to_scan_rate_flag(band->bitrates[i].hw_value);
1034
1035 /* Set both basic rates and supported rates */
1036 rates |= SCAN_CONFIG_SUPPORTED_RATE(rates);
1037
1038 return cpu_to_le32(rates);
1039}
1040
1041int iwl_mvm_config_scan(struct iwl_mvm *mvm)
1042{
1043
1044 struct iwl_scan_config *scan_config;
1045 struct ieee80211_supported_band *band;
1046 int num_channels =
1047 mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels +
1048 mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels;
1049 int ret, i, j = 0, cmd_size, data_size;
1050 struct iwl_host_cmd cmd = {
1051 .id = SCAN_CFG_CMD,
1052 };
1053
1054 if (WARN_ON(num_channels > mvm->fw->ucode_capa.n_scan_channels))
1055 return -ENOBUFS;
1056
1057 cmd_size = sizeof(*scan_config) + mvm->fw->ucode_capa.n_scan_channels;
1058
1059 scan_config = kzalloc(cmd_size, GFP_KERNEL);
1060 if (!scan_config)
1061 return -ENOMEM;
1062
1063 data_size = cmd_size - sizeof(struct iwl_mvm_umac_cmd_hdr);
1064 scan_config->hdr.size = cpu_to_le16(data_size);
1065 scan_config->flags = cpu_to_le32(SCAN_CONFIG_FLAG_ACTIVATE |
1066 SCAN_CONFIG_FLAG_ALLOW_CHUB_REQS |
1067 SCAN_CONFIG_FLAG_SET_TX_CHAINS |
1068 SCAN_CONFIG_FLAG_SET_RX_CHAINS |
1069 SCAN_CONFIG_FLAG_SET_ALL_TIMES |
1070 SCAN_CONFIG_FLAG_SET_LEGACY_RATES |
1071 SCAN_CONFIG_FLAG_SET_MAC_ADDR |
1072 SCAN_CONFIG_FLAG_SET_CHANNEL_FLAGS|
1073 SCAN_CONFIG_N_CHANNELS(num_channels));
Moshe Harela0544272014-12-08 21:13:14 +02001074 scan_config->tx_chains = cpu_to_le32(iwl_mvm_get_valid_tx_ant(mvm));
David Spinadeld2496222014-05-20 12:46:37 +03001075 scan_config->rx_chains = cpu_to_le32(iwl_mvm_scan_rx_ant(mvm));
1076 scan_config->legacy_rates = iwl_mvm_scan_config_rates(mvm);
1077 scan_config->out_of_channel_time = cpu_to_le32(170);
1078 scan_config->suspend_time = cpu_to_le32(30);
1079 scan_config->dwell_active = 20;
1080 scan_config->dwell_passive = 110;
1081 scan_config->dwell_fragmented = 20;
1082
1083 memcpy(&scan_config->mac_addr, &mvm->addresses[0].addr, ETH_ALEN);
1084
1085 scan_config->bcast_sta_id = mvm->aux_sta.sta_id;
1086 scan_config->channel_flags = IWL_CHANNEL_FLAG_EBS |
1087 IWL_CHANNEL_FLAG_ACCURATE_EBS |
1088 IWL_CHANNEL_FLAG_EBS_ADD |
1089 IWL_CHANNEL_FLAG_PRE_SCAN_PASSIVE2ACTIVE;
1090
1091 band = &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ];
1092 for (i = 0; i < band->n_channels; i++, j++)
Ilan Peera25d40e2015-01-23 21:13:01 +02001093 scan_config->channel_array[j] = band->channels[i].hw_value;
David Spinadeld2496222014-05-20 12:46:37 +03001094 band = &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ];
1095 for (i = 0; i < band->n_channels; i++, j++)
Ilan Peera25d40e2015-01-23 21:13:01 +02001096 scan_config->channel_array[j] = band->channels[i].hw_value;
David Spinadeld2496222014-05-20 12:46:37 +03001097
1098 cmd.data[0] = scan_config;
1099 cmd.len[0] = cmd_size;
1100 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
1101
1102 IWL_DEBUG_SCAN(mvm, "Sending UMAC scan config\n");
1103
1104 ret = iwl_mvm_send_cmd(mvm, &cmd);
1105
1106 kfree(scan_config);
1107 return ret;
1108}
1109
1110static int iwl_mvm_find_scan_uid(struct iwl_mvm *mvm, u32 uid)
1111{
1112 int i;
1113
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001114 for (i = 0; i < mvm->max_scans; i++)
David Spinadeld2496222014-05-20 12:46:37 +03001115 if (mvm->scan_uid[i] == uid)
1116 return i;
1117
1118 return i;
1119}
1120
1121static int iwl_mvm_find_free_scan_uid(struct iwl_mvm *mvm)
1122{
1123 return iwl_mvm_find_scan_uid(mvm, 0);
1124}
1125
1126static bool iwl_mvm_find_scan_type(struct iwl_mvm *mvm,
1127 enum iwl_umac_scan_uid_type type)
1128{
1129 int i;
1130
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001131 for (i = 0; i < mvm->max_scans; i++)
David Spinadeld2496222014-05-20 12:46:37 +03001132 if (mvm->scan_uid[i] & type)
1133 return true;
1134
1135 return false;
1136}
1137
Alexander Bondar963221b2015-03-26 11:07:35 +02001138static int iwl_mvm_find_first_scan(struct iwl_mvm *mvm,
1139 enum iwl_umac_scan_uid_type type)
1140{
1141 int i;
1142
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001143 for (i = 0; i < mvm->max_scans; i++)
Alexander Bondar963221b2015-03-26 11:07:35 +02001144 if (mvm->scan_uid[i] & type)
1145 return i;
1146
1147 return i;
1148}
1149
David Spinadeld2496222014-05-20 12:46:37 +03001150static u32 iwl_generate_scan_uid(struct iwl_mvm *mvm,
1151 enum iwl_umac_scan_uid_type type)
1152{
1153 u32 uid;
1154
1155 /* make sure exactly one bit is on in scan type */
1156 WARN_ON(hweight8(type) != 1);
1157
1158 /*
1159 * Make sure scan uids are unique. If one scan lasts long time while
1160 * others are completing frequently, the seq number will wrap up and
1161 * we may have more than one scan with the same uid.
1162 */
1163 do {
1164 uid = type | (mvm->scan_seq_num <<
1165 IWL_UMAC_SCAN_UID_SEQ_OFFSET);
1166 mvm->scan_seq_num++;
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001167 } while (iwl_mvm_find_scan_uid(mvm, uid) < mvm->max_scans);
David Spinadeld2496222014-05-20 12:46:37 +03001168
1169 IWL_DEBUG_SCAN(mvm, "Generated scan UID %u\n", uid);
1170
1171 return uid;
1172}
1173
1174static void
1175iwl_mvm_build_generic_umac_scan_cmd(struct iwl_mvm *mvm,
1176 struct iwl_scan_req_umac *cmd,
1177 struct iwl_mvm_scan_params *params)
1178{
1179 memset(cmd, 0, ksize(cmd));
1180 cmd->hdr.size = cpu_to_le16(iwl_mvm_scan_size(mvm) -
1181 sizeof(struct iwl_mvm_umac_cmd_hdr));
1182 cmd->active_dwell = params->dwell[IEEE80211_BAND_2GHZ].active;
1183 cmd->passive_dwell = params->dwell[IEEE80211_BAND_2GHZ].passive;
1184 if (params->passive_fragmented)
1185 cmd->fragmented_dwell =
David Spinadel190f1022015-02-17 12:45:21 +02001186 params->dwell[IEEE80211_BAND_2GHZ].fragmented;
David Spinadeld2496222014-05-20 12:46:37 +03001187 cmd->max_out_time = cpu_to_le32(params->max_out_time);
1188 cmd->suspend_time = cpu_to_le32(params->suspend_time);
1189 cmd->scan_priority = cpu_to_le32(IWL_SCAN_PRIORITY_HIGH);
1190}
1191
1192static void
1193iwl_mvm_umac_scan_cfg_channels(struct iwl_mvm *mvm,
1194 struct ieee80211_channel **channels,
1195 int n_channels, u32 ssid_bitmap,
1196 struct iwl_scan_req_umac *cmd)
1197{
1198 struct iwl_scan_channel_cfg_umac *channel_cfg = (void *)&cmd->data;
1199 int i;
1200
1201 for (i = 0; i < n_channels; i++) {
1202 channel_cfg[i].flags = cpu_to_le32(ssid_bitmap);
1203 channel_cfg[i].channel_num = channels[i]->hw_value;
1204 channel_cfg[i].iter_count = 1;
1205 channel_cfg[i].iter_interval = 0;
1206 }
1207}
1208
1209static u32 iwl_mvm_scan_umac_common_flags(struct iwl_mvm *mvm, int n_ssids,
1210 struct cfg80211_ssid *ssids,
1211 int fragmented)
1212{
1213 int flags = 0;
1214
1215 if (n_ssids == 0)
1216 flags = IWL_UMAC_SCAN_GEN_FLAGS_PASSIVE;
1217
1218 if (n_ssids == 1 && ssids[0].ssid_len != 0)
1219 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PRE_CONNECT;
1220
1221 if (fragmented)
1222 flags |= IWL_UMAC_SCAN_GEN_FLAGS_FRAGMENTED;
1223
1224 if (iwl_mvm_rrm_scan_needed(mvm))
1225 flags |= IWL_UMAC_SCAN_GEN_FLAGS_RRM_ENABLED;
1226
1227 return flags;
1228}
1229
Luciano Coelho6749dd82015-03-20 15:51:36 +02001230static int iwl_mvm_scan_umac(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001231 struct iwl_mvm_scan_params *params)
David Spinadeld2496222014-05-20 12:46:37 +03001232{
David Spinadeld2496222014-05-20 12:46:37 +03001233 struct iwl_scan_req_umac *cmd = mvm->scan_cmd;
1234 struct iwl_scan_req_umac_tail *sec_part = (void *)&cmd->data +
1235 sizeof(struct iwl_scan_channel_cfg_umac) *
1236 mvm->fw->ucode_capa.n_scan_channels;
David Spinadeld2496222014-05-20 12:46:37 +03001237 u32 uid, flags;
Johannes Bergc8660dd2014-11-17 15:06:52 +01001238 u32 ssid_bitmap = 0;
Luciano Coelho5ef766f2015-04-02 15:37:05 +03001239 int uid_idx;
David Spinadeld2496222014-05-20 12:46:37 +03001240
1241 lockdep_assert_held(&mvm->mutex);
1242
1243 uid_idx = iwl_mvm_find_free_scan_uid(mvm);
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001244 if (uid_idx >= mvm->max_scans)
David Spinadeld2496222014-05-20 12:46:37 +03001245 return -EBUSY;
1246
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001247 iwl_mvm_build_generic_umac_scan_cmd(mvm, cmd, params);
David Spinadeld2496222014-05-20 12:46:37 +03001248
1249 uid = iwl_generate_scan_uid(mvm, IWL_UMAC_SCAN_UID_REG_SCAN);
1250 mvm->scan_uid[uid_idx] = uid;
1251 cmd->uid = cpu_to_le32(uid);
1252
1253 cmd->ooc_priority = cpu_to_le32(IWL_SCAN_PRIORITY_HIGH);
1254
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001255 flags = iwl_mvm_scan_umac_common_flags(mvm, params->n_ssids,
1256 params->ssids,
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001257 params->passive_fragmented);
David Spinadeld2496222014-05-20 12:46:37 +03001258
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001259 if (params->pass_all)
1260 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PASS_ALL;
1261 else
1262 flags |= IWL_UMAC_SCAN_GEN_FLAGS_MATCH;
David Spinadeld2496222014-05-20 12:46:37 +03001263
1264 cmd->general_flags = cpu_to_le32(flags);
Haim Dreyfuss4db65582015-01-05 15:00:35 +02001265
1266 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_SINGLE_SCAN_EBS &&
1267 mvm->last_ebs_successful)
1268 cmd->channel_flags = IWL_SCAN_CHANNEL_FLAG_EBS |
1269 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
1270 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD;
1271
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001272 cmd->n_channels = params->n_channels;
David Spinadeld2496222014-05-20 12:46:37 +03001273
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +03001274 iwl_scan_build_ssids(params, sec_part->direct_scan, &ssid_bitmap);
David Spinadeld2496222014-05-20 12:46:37 +03001275
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001276 iwl_mvm_umac_scan_cfg_channels(mvm, params->channels,
1277 params->n_channels, ssid_bitmap, cmd);
David Spinadeld2496222014-05-20 12:46:37 +03001278
1279 sec_part->schedule[0].iter_count = 1;
1280 sec_part->delay = 0;
Luciano Coelho45d1b122015-04-15 16:34:13 +03001281 sec_part->preq = params->preq;
David Spinadeld2496222014-05-20 12:46:37 +03001282
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001283 return 0;
David Spinadeld2496222014-05-20 12:46:37 +03001284}
1285
Luciano Coelho6749dd82015-03-20 15:51:36 +02001286static int iwl_mvm_sched_scan_umac(struct iwl_mvm *mvm,
1287 struct ieee80211_vif *vif,
Luciano Coelho8df3e682015-04-01 17:37:44 +03001288 struct iwl_mvm_scan_params *params)
David Spinadeld2496222014-05-20 12:46:37 +03001289{
David Spinadeld2496222014-05-20 12:46:37 +03001290 struct iwl_scan_req_umac *cmd = mvm->scan_cmd;
1291 struct iwl_scan_req_umac_tail *sec_part = (void *)&cmd->data +
1292 sizeof(struct iwl_scan_channel_cfg_umac) *
1293 mvm->fw->ucode_capa.n_scan_channels;
David Spinadeld2496222014-05-20 12:46:37 +03001294 u32 uid, flags;
Johannes Bergc8660dd2014-11-17 15:06:52 +01001295 u32 ssid_bitmap = 0;
Luciano Coelho8df3e682015-04-01 17:37:44 +03001296 int uid_idx;
David Spinadeld2496222014-05-20 12:46:37 +03001297
1298 lockdep_assert_held(&mvm->mutex);
1299
1300 uid_idx = iwl_mvm_find_free_scan_uid(mvm);
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001301 if (uid_idx >= mvm->max_scans)
David Spinadeld2496222014-05-20 12:46:37 +03001302 return -EBUSY;
1303
Luciano Coelho8df3e682015-04-01 17:37:44 +03001304 iwl_mvm_build_generic_umac_scan_cmd(mvm, cmd, params);
David Spinadeld2496222014-05-20 12:46:37 +03001305
1306 cmd->flags = cpu_to_le32(IWL_UMAC_SCAN_FLAG_PREEMPTIVE);
1307
1308 uid = iwl_generate_scan_uid(mvm, IWL_UMAC_SCAN_UID_SCHED_SCAN);
1309 mvm->scan_uid[uid_idx] = uid;
1310 cmd->uid = cpu_to_le32(uid);
1311
1312 cmd->ooc_priority = cpu_to_le32(IWL_SCAN_PRIORITY_LOW);
1313
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001314 flags = iwl_mvm_scan_umac_common_flags(mvm, params->n_ssids,
1315 params->ssids,
Luciano Coelho8df3e682015-04-01 17:37:44 +03001316 params->passive_fragmented);
David Spinadeld2496222014-05-20 12:46:37 +03001317
1318 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PERIODIC;
1319
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001320 if (params->pass_all)
David Spinadeld2496222014-05-20 12:46:37 +03001321 flags |= IWL_UMAC_SCAN_GEN_FLAGS_PASS_ALL;
1322 else
1323 flags |= IWL_UMAC_SCAN_GEN_FLAGS_MATCH;
1324
1325 cmd->general_flags = cpu_to_le32(flags);
1326
1327 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_EBS_SUPPORT &&
1328 mvm->last_ebs_successful)
1329 cmd->channel_flags = IWL_SCAN_CHANNEL_FLAG_EBS |
1330 IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
1331 IWL_SCAN_CHANNEL_FLAG_CACHE_ADD;
1332
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001333 cmd->n_channels = params->n_channels;
David Spinadeld2496222014-05-20 12:46:37 +03001334
Luciano Coelhoe2ec4f62015-04-02 17:49:04 +03001335 iwl_scan_build_ssids(params, sec_part->direct_scan, &ssid_bitmap);
David Spinadeld2496222014-05-20 12:46:37 +03001336
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001337 iwl_mvm_umac_scan_cfg_channels(mvm, params->channels,
1338 params->n_channels, ssid_bitmap, cmd);
David Spinadeld2496222014-05-20 12:46:37 +03001339
1340 sec_part->schedule[0].interval =
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001341 cpu_to_le16(params->interval / MSEC_PER_SEC);
David Spinadeld2496222014-05-20 12:46:37 +03001342 sec_part->schedule[0].iter_count = 0xff;
1343
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001344 if (params->delay > U16_MAX) {
Luciano Coelho2250fd92014-12-03 10:52:26 +02001345 IWL_DEBUG_SCAN(mvm,
1346 "delay value is > 16-bits, set to max possible\n");
1347 sec_part->delay = cpu_to_le16(U16_MAX);
1348 } else {
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001349 sec_part->delay = cpu_to_le16(params->delay);
Luciano Coelho2250fd92014-12-03 10:52:26 +02001350 }
David Spinadeld2496222014-05-20 12:46:37 +03001351
Luciano Coelho45d1b122015-04-15 16:34:13 +03001352 sec_part->preq = params->preq;
David Spinadeld2496222014-05-20 12:46:37 +03001353
Luciano Coelho8df3e682015-04-01 17:37:44 +03001354 return 0;
David Spinadeld2496222014-05-20 12:46:37 +03001355}
1356
Luciano Coelho6749dd82015-03-20 15:51:36 +02001357static int iwl_mvm_num_scans(struct iwl_mvm *mvm)
1358{
1359 return hweight32(mvm->scan_status & IWL_MVM_SCAN_MASK);
1360}
1361
1362static int iwl_mvm_check_running_scans(struct iwl_mvm *mvm, int type)
1363{
1364 /* This looks a bit arbitrary, but the idea is that if we run
1365 * out of possible simultaneous scans and the userspace is
1366 * trying to run a scan type that is already running, we
1367 * return -EBUSY. But if the userspace wants to start a
1368 * different type of scan, we stop the opposite type to make
1369 * space for the new request. The reason is backwards
1370 * compatibility with old wpa_supplicant that wouldn't stop a
1371 * scheduled scan before starting a normal scan.
1372 */
1373
1374 if (iwl_mvm_num_scans(mvm) < mvm->max_scans)
1375 return 0;
1376
1377 /* Use a switch, even though this is a bitmask, so that more
1378 * than one bits set will fall in default and we will warn.
1379 */
1380 switch (type) {
1381 case IWL_MVM_SCAN_REGULAR:
1382 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR_MASK)
1383 return -EBUSY;
1384 return iwl_mvm_scan_offload_stop(mvm, true);
1385 case IWL_MVM_SCAN_SCHED:
1386 if (mvm->scan_status & IWL_MVM_SCAN_SCHED_MASK)
1387 return -EBUSY;
1388 return iwl_mvm_cancel_scan(mvm);
Luciano Coelho19945df2015-03-20 16:11:28 +02001389 case IWL_MVM_SCAN_NETDETECT:
1390 /* No need to stop anything for net-detect since the
1391 * firmware is restarted anyway. This way, any sched
1392 * scans that were running will be restarted when we
1393 * resume.
1394 */
1395 return 0;
Luciano Coelho6749dd82015-03-20 15:51:36 +02001396 default:
1397 WARN_ON(1);
1398 break;
1399 }
1400
1401 return -EIO;
1402}
1403
1404int iwl_mvm_reg_scan_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1405 struct cfg80211_scan_request *req,
1406 struct ieee80211_scan_ies *ies)
1407{
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001408 struct iwl_host_cmd hcmd = {
1409 .len = { iwl_mvm_scan_size(mvm), },
1410 .data = { mvm->scan_cmd, },
1411 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
1412 };
1413 struct iwl_mvm_scan_params params = {};
Luciano Coelho6749dd82015-03-20 15:51:36 +02001414 int ret;
1415
1416 lockdep_assert_held(&mvm->mutex);
1417
1418 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) {
1419 IWL_ERR(mvm, "scan while LAR regdomain is not set\n");
1420 return -EBUSY;
1421 }
1422
1423 ret = iwl_mvm_check_running_scans(mvm, IWL_MVM_SCAN_REGULAR);
1424 if (ret)
1425 return ret;
1426
1427 iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN);
1428
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001429 /* we should have failed registration if scan_cmd was NULL */
1430 if (WARN_ON(!mvm->scan_cmd))
1431 return -ENOMEM;
1432
1433 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels))
1434 return -ENOBUFS;
1435
Luciano Coelho4b817052015-04-15 16:21:16 +03001436 params.n_ssids = req->n_ssids;
1437 params.flags = req->flags;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001438 params.n_channels = req->n_channels;
1439 params.delay = 0;
1440 params.interval = 0;
1441 params.ssids = req->ssids;
1442 params.channels = req->channels;
1443 params.mac_addr = req->mac_addr;
1444 params.mac_addr_mask = req->mac_addr_mask;
1445 params.no_cck = req->no_cck;
1446 params.pass_all = true;
1447 params.n_match_sets = 0;
1448 params.match_sets = NULL;
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001449
Luciano Coelho4b817052015-04-15 16:21:16 +03001450 iwl_mvm_scan_calc_dwell(mvm, vif, &params);
1451
Luciano Coelho45d1b122015-04-15 16:34:13 +03001452 iwl_mvm_build_scan_probe(mvm, vif, ies, &params);
1453
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001454 if (mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_UMAC_SCAN) {
1455 hcmd.id = SCAN_REQ_UMAC;
Luciano Coelho45d1b122015-04-15 16:34:13 +03001456 ret = iwl_mvm_scan_umac(mvm, vif, &params);
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001457 } else {
1458 hcmd.id = SCAN_OFFLOAD_REQUEST_CMD;
Luciano Coelho45d1b122015-04-15 16:34:13 +03001459 ret = iwl_mvm_scan_lmac(mvm, vif, &params);
Luciano Coelho3db7c6e2015-04-01 17:09:56 +03001460 }
1461
1462 if (ret)
1463 return ret;
1464
1465 ret = iwl_mvm_send_cmd(mvm, &hcmd);
1466 if (!ret) {
1467 IWL_DEBUG_SCAN(mvm, "Scan request was sent successfully\n");
1468 mvm->scan_status |= IWL_MVM_SCAN_REGULAR;
1469 } else {
1470 /* If the scan failed, it usually means that the FW was unable
1471 * to allocate the time events. Warn on it, but maybe we
1472 * should try to send the command again with different params.
1473 */
1474 IWL_ERR(mvm, "Scan failed! ret %d\n", ret);
1475 }
Luciano Coelho6749dd82015-03-20 15:51:36 +02001476
1477 if (ret)
1478 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1479
1480 return ret;
1481}
1482
Luciano Coelho65ff5562015-03-20 13:35:47 +02001483int iwl_mvm_sched_scan_start(struct iwl_mvm *mvm,
1484 struct ieee80211_vif *vif,
1485 struct cfg80211_sched_scan_request *req,
Luciano Coelho19945df2015-03-20 16:11:28 +02001486 struct ieee80211_scan_ies *ies,
1487 int type)
Luciano Coelho65ff5562015-03-20 13:35:47 +02001488{
Luciano Coelho8df3e682015-04-01 17:37:44 +03001489 struct iwl_host_cmd hcmd = {
1490 .len = { iwl_mvm_scan_size(mvm), },
1491 .data = { mvm->scan_cmd, },
1492 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
1493 };
1494 struct iwl_mvm_scan_params params = {};
Luciano Coelho65ff5562015-03-20 13:35:47 +02001495 int ret;
1496
Luciano Coelho6749dd82015-03-20 15:51:36 +02001497 lockdep_assert_held(&mvm->mutex);
1498
1499 if (iwl_mvm_is_lar_supported(mvm) && !mvm->lar_regdom_set) {
1500 IWL_ERR(mvm, "sched-scan while LAR regdomain is not set\n");
1501 return -EBUSY;
1502 }
1503
Luciano Coelho19945df2015-03-20 16:11:28 +02001504 ret = iwl_mvm_check_running_scans(mvm, type);
Luciano Coelho6749dd82015-03-20 15:51:36 +02001505 if (ret)
1506 return ret;
1507
Luciano Coelho8df3e682015-04-01 17:37:44 +03001508 /* we should have failed registration if scan_cmd was NULL */
1509 if (WARN_ON(!mvm->scan_cmd))
1510 return -ENOMEM;
1511
1512 if (!iwl_mvm_scan_fits(mvm, req->n_ssids, ies, req->n_channels))
1513 return -ENOBUFS;
1514
Luciano Coelho4b817052015-04-15 16:21:16 +03001515 params.n_ssids = req->n_ssids;
1516 params.flags = req->flags;
Luciano Coelhof7b788b2015-04-02 00:08:35 +03001517 params.n_channels = req->n_channels;
1518 params.delay = req->delay;
1519 params.ssids = req->ssids;
1520 params.channels = req->channels;
1521 params.mac_addr = req->mac_addr;
1522 params.mac_addr_mask = req->mac_addr_mask;
1523 params.no_cck = false;
1524 params.pass_all = iwl_mvm_scan_pass_all(mvm, req);
1525 params.n_match_sets = req->n_match_sets;
1526 params.match_sets = req->match_sets;
1527
1528 if (req->interval > U16_MAX) {
1529 IWL_DEBUG_SCAN(mvm,
1530 "interval value is > 16-bits, set to max possible\n");
1531 params.interval = U16_MAX;
1532 } else {
1533 params.interval = req->interval / MSEC_PER_SEC;
1534 }
Luciano Coelho8df3e682015-04-01 17:37:44 +03001535
Luciano Coelho4b817052015-04-15 16:21:16 +03001536 iwl_mvm_scan_calc_dwell(mvm, vif, &params);
1537
Luciano Coelho65ff5562015-03-20 13:35:47 +02001538 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
1539 if (ret)
1540 return ret;
1541
Luciano Coelho45d1b122015-04-15 16:34:13 +03001542 iwl_mvm_build_scan_probe(mvm, vif, ies, &params);
1543
Luciano Coelho65ff5562015-03-20 13:35:47 +02001544 if (mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_UMAC_SCAN) {
Luciano Coelho8df3e682015-04-01 17:37:44 +03001545 hcmd.id = SCAN_REQ_UMAC;
Luciano Coelho45d1b122015-04-15 16:34:13 +03001546 ret = iwl_mvm_sched_scan_umac(mvm, vif, &params);
Luciano Coelho65ff5562015-03-20 13:35:47 +02001547 } else {
Luciano Coelho8df3e682015-04-01 17:37:44 +03001548 hcmd.id = SCAN_OFFLOAD_REQUEST_CMD;
Luciano Coelho45d1b122015-04-15 16:34:13 +03001549 ret = iwl_mvm_sched_scan_lmac(mvm, vif, &params);
Luciano Coelho8df3e682015-04-01 17:37:44 +03001550 }
1551
1552 if (ret)
1553 return ret;
1554
1555 ret = iwl_mvm_send_cmd(mvm, &hcmd);
1556 if (!ret) {
1557 IWL_DEBUG_SCAN(mvm,
1558 "Sched scan request was sent successfully\n");
1559 mvm->scan_status |= type;
1560 } else {
1561 /* If the scan failed, it usually means that the FW was unable
1562 * to allocate the time events. Warn on it, but maybe we
1563 * should try to send the command again with different params.
1564 */
1565 IWL_ERR(mvm, "Sched scan failed! ret %d\n", ret);
Luciano Coelho65ff5562015-03-20 13:35:47 +02001566 }
1567
1568 return ret;
1569}
1570
David Spinadeld2496222014-05-20 12:46:37 +03001571int iwl_mvm_rx_umac_scan_complete_notif(struct iwl_mvm *mvm,
1572 struct iwl_rx_cmd_buffer *rxb,
1573 struct iwl_device_cmd *cmd)
1574{
1575 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1576 struct iwl_umac_scan_complete *notif = (void *)pkt->data;
1577 u32 uid = __le32_to_cpu(notif->uid);
1578 bool sched = !!(uid & IWL_UMAC_SCAN_UID_SCHED_SCAN);
1579 int uid_idx = iwl_mvm_find_scan_uid(mvm, uid);
1580
David Spinadel2992a322014-11-10 11:16:53 +02001581 /*
1582 * Scan uid may be set to zero in case of scan abort request from above.
1583 */
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001584 if (uid_idx >= mvm->max_scans)
David Spinadeld2496222014-05-20 12:46:37 +03001585 return 0;
1586
1587 IWL_DEBUG_SCAN(mvm,
1588 "Scan completed, uid %u type %s, status %s, EBS status %s\n",
1589 uid, sched ? "sched" : "regular",
1590 notif->status == IWL_SCAN_OFFLOAD_COMPLETED ?
1591 "completed" : "aborted",
1592 notif->ebs_status == IWL_SCAN_EBS_SUCCESS ?
1593 "success" : "failed");
1594
Haim Dreyfuss5a4b2af2015-01-13 11:54:51 +02001595 if (notif->ebs_status)
1596 mvm->last_ebs_successful = false;
1597
David Spinadeld2496222014-05-20 12:46:37 +03001598 mvm->scan_uid[uid_idx] = 0;
1599
1600 if (!sched) {
1601 ieee80211_scan_completed(mvm->hw,
1602 notif->status ==
1603 IWL_SCAN_OFFLOAD_ABORTED);
1604 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1605 } else if (!iwl_mvm_find_scan_type(mvm, IWL_UMAC_SCAN_UID_SCHED_SCAN)) {
1606 ieee80211_sched_scan_stopped(mvm->hw);
1607 } else {
1608 IWL_DEBUG_SCAN(mvm, "Another sched scan is running\n");
1609 }
1610
1611 return 0;
1612}
1613
1614static bool iwl_scan_umac_done_check(struct iwl_notif_wait_data *notif_wait,
1615 struct iwl_rx_packet *pkt, void *data)
1616{
1617 struct iwl_umac_scan_done *scan_done = data;
1618 struct iwl_umac_scan_complete *notif = (void *)pkt->data;
1619 u32 uid = __le32_to_cpu(notif->uid);
1620 int uid_idx = iwl_mvm_find_scan_uid(scan_done->mvm, uid);
1621
1622 if (WARN_ON(pkt->hdr.cmd != SCAN_COMPLETE_UMAC))
1623 return false;
1624
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001625 if (uid_idx >= scan_done->mvm->max_scans)
David Spinadeld2496222014-05-20 12:46:37 +03001626 return false;
1627
1628 /*
1629 * Clear scan uid of scans that was aborted from above and completed
Haim Dreyfuss5a4b2af2015-01-13 11:54:51 +02001630 * in FW so the RX handler does nothing. Set last_ebs_successful here if
1631 * needed.
David Spinadeld2496222014-05-20 12:46:37 +03001632 */
1633 scan_done->mvm->scan_uid[uid_idx] = 0;
1634
Haim Dreyfuss5a4b2af2015-01-13 11:54:51 +02001635 if (notif->ebs_status)
1636 scan_done->mvm->last_ebs_successful = false;
1637
David Spinadeld2496222014-05-20 12:46:37 +03001638 return !iwl_mvm_find_scan_type(scan_done->mvm, scan_done->type);
1639}
1640
1641static int iwl_umac_scan_abort_one(struct iwl_mvm *mvm, u32 uid)
1642{
1643 struct iwl_umac_scan_abort cmd = {
1644 .hdr.size = cpu_to_le16(sizeof(struct iwl_umac_scan_abort) -
1645 sizeof(struct iwl_mvm_umac_cmd_hdr)),
1646 .uid = cpu_to_le32(uid),
1647 };
1648
1649 lockdep_assert_held(&mvm->mutex);
1650
1651 IWL_DEBUG_SCAN(mvm, "Sending scan abort, uid %u\n", uid);
1652
1653 return iwl_mvm_send_cmd_pdu(mvm, SCAN_ABORT_UMAC, 0, sizeof(cmd), &cmd);
1654}
1655
1656static int iwl_umac_scan_stop(struct iwl_mvm *mvm,
1657 enum iwl_umac_scan_uid_type type, bool notify)
1658{
1659 struct iwl_notification_wait wait_scan_done;
1660 static const u8 scan_done_notif[] = { SCAN_COMPLETE_UMAC, };
1661 struct iwl_umac_scan_done scan_done = {
1662 .mvm = mvm,
1663 .type = type,
1664 };
1665 int i, ret = -EIO;
1666
1667 iwl_init_notification_wait(&mvm->notif_wait, &wait_scan_done,
1668 scan_done_notif,
1669 ARRAY_SIZE(scan_done_notif),
1670 iwl_scan_umac_done_check, &scan_done);
1671
1672 IWL_DEBUG_SCAN(mvm, "Preparing to stop scan, type %x\n", type);
1673
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001674 for (i = 0; i < mvm->max_scans; i++) {
David Spinadeld2496222014-05-20 12:46:37 +03001675 if (mvm->scan_uid[i] & type) {
1676 int err;
1677
1678 if (iwl_mvm_is_radio_killed(mvm) &&
1679 (type & IWL_UMAC_SCAN_UID_REG_SCAN)) {
1680 ieee80211_scan_completed(mvm->hw, true);
1681 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1682 break;
1683 }
1684
1685 err = iwl_umac_scan_abort_one(mvm, mvm->scan_uid[i]);
1686 if (!err)
1687 ret = 0;
1688 }
1689 }
1690
1691 if (ret) {
1692 IWL_DEBUG_SCAN(mvm, "Couldn't stop scan\n");
1693 iwl_remove_notification(&mvm->notif_wait, &wait_scan_done);
1694 return ret;
1695 }
1696
1697 ret = iwl_wait_notification(&mvm->notif_wait, &wait_scan_done, 1 * HZ);
1698 if (ret)
1699 return ret;
1700
1701 if (notify) {
1702 if (type & IWL_UMAC_SCAN_UID_SCHED_SCAN)
1703 ieee80211_sched_scan_stopped(mvm->hw);
1704 if (type & IWL_UMAC_SCAN_UID_REG_SCAN) {
1705 ieee80211_scan_completed(mvm->hw, true);
1706 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1707 }
1708 }
1709
1710 return ret;
1711}
1712
1713int iwl_mvm_scan_size(struct iwl_mvm *mvm)
1714{
1715 if (mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_UMAC_SCAN)
1716 return sizeof(struct iwl_scan_req_umac) +
1717 sizeof(struct iwl_scan_channel_cfg_umac) *
1718 mvm->fw->ucode_capa.n_scan_channels +
1719 sizeof(struct iwl_scan_req_umac_tail);
1720
Luciano Coelho65ff5562015-03-20 13:35:47 +02001721 return sizeof(struct iwl_scan_req_lmac) +
Luciano Coelho1f940382015-02-10 13:03:38 +02001722 sizeof(struct iwl_scan_channel_cfg_lmac) *
1723 mvm->fw->ucode_capa.n_scan_channels +
1724 sizeof(struct iwl_scan_probe_req);
David Spinadeld2496222014-05-20 12:46:37 +03001725}
David Spinadel4ffb3652015-03-10 10:06:02 +02001726
1727/*
1728 * This function is used in nic restart flow, to inform mac80211 about scans
1729 * that was aborted by restart flow or by an assert.
1730 */
1731void iwl_mvm_report_scan_aborted(struct iwl_mvm *mvm)
1732{
1733 if (mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_UMAC_SCAN) {
Alexander Bondar963221b2015-03-26 11:07:35 +02001734 u32 uid, i;
1735
1736 uid = iwl_mvm_find_first_scan(mvm, IWL_UMAC_SCAN_UID_REG_SCAN);
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001737 if (uid < mvm->max_scans) {
David Spinadel4ffb3652015-03-10 10:06:02 +02001738 ieee80211_scan_completed(mvm->hw, true);
Alexander Bondar963221b2015-03-26 11:07:35 +02001739 mvm->scan_uid[uid] = 0;
1740 }
1741 uid = iwl_mvm_find_first_scan(mvm,
1742 IWL_UMAC_SCAN_UID_SCHED_SCAN);
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001743 if (uid < mvm->max_scans && !mvm->restart_fw) {
David Spinadel4ffb3652015-03-10 10:06:02 +02001744 ieee80211_sched_scan_stopped(mvm->hw);
Alexander Bondar963221b2015-03-26 11:07:35 +02001745 mvm->scan_uid[uid] = 0;
1746 }
1747
1748 /* We shouldn't have any UIDs still set. Loop over all the
1749 * UIDs to make sure there's nothing left there and warn if
1750 * any is found.
1751 */
Luciano Coelho507e4cd2015-03-19 22:58:33 +02001752 for (i = 0; i < mvm->max_scans; i++) {
Alexander Bondar963221b2015-03-26 11:07:35 +02001753 if (WARN_ONCE(mvm->scan_uid[i],
1754 "UMAC scan UID %d was not cleaned\n",
1755 mvm->scan_uid[i]))
1756 mvm->scan_uid[i] = 0;
1757 }
David Spinadel4ffb3652015-03-10 10:06:02 +02001758 } else {
Luciano Coelho9af91f42015-02-10 10:42:26 +02001759 if (mvm->scan_status & IWL_MVM_SCAN_REGULAR)
David Spinadel4ffb3652015-03-10 10:06:02 +02001760 ieee80211_scan_completed(mvm->hw, true);
Luciano Coelho9af91f42015-02-10 10:42:26 +02001761
1762 /* Sched scan will be restarted by mac80211 in
1763 * restart_hw, so do not report if FW is about to be
1764 * restarted.
1765 */
1766 if ((mvm->scan_status & IWL_MVM_SCAN_SCHED) && !mvm->restart_fw)
1767 ieee80211_sched_scan_stopped(mvm->hw);
David Spinadel4ffb3652015-03-10 10:06:02 +02001768 }
1769}