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