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