Merge tag 'renesas-dt-cleanups-for-v3.19' of git://git.kernel.org/pub/scm/linux/kerne...
[cascardo/linux.git] / drivers / net / wireless / iwlwifi / mvm / scan.c
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  *
8  * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
9  * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
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
26  * in the file called COPYING.
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  *
34  * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
35  * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
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"
70 #include "iwl-eeprom-parse.h"
71 #include "fw-api-scan.h"
72
73 #define IWL_PLCP_QUIET_THRESH 1
74 #define IWL_ACTIVE_QUIET_TIME 10
75
76 struct iwl_mvm_scan_params {
77         u32 max_out_time;
78         u32 suspend_time;
79         bool passive_fragmented;
80         struct _dwell {
81                 u16 passive;
82                 u16 active;
83         } dwell[IEEE80211_NUM_BANDS];
84 };
85
86 static inline __le16 iwl_mvm_scan_rx_chain(struct iwl_mvm *mvm)
87 {
88         u16 rx_chain;
89         u8 rx_ant;
90
91         if (mvm->scan_rx_ant != ANT_NONE)
92                 rx_ant = mvm->scan_rx_ant;
93         else
94                 rx_ant = mvm->fw->valid_rx_ant;
95         rx_chain = rx_ant << PHY_RX_CHAIN_VALID_POS;
96         rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_MIMO_SEL_POS;
97         rx_chain |= rx_ant << PHY_RX_CHAIN_FORCE_SEL_POS;
98         rx_chain |= 0x1 << PHY_RX_CHAIN_DRIVER_FORCE_POS;
99         return cpu_to_le16(rx_chain);
100 }
101
102 static __le32 iwl_mvm_scan_rxon_flags(enum ieee80211_band band)
103 {
104         if (band == IEEE80211_BAND_2GHZ)
105                 return cpu_to_le32(PHY_BAND_24);
106         else
107                 return cpu_to_le32(PHY_BAND_5);
108 }
109
110 static inline __le32
111 iwl_mvm_scan_rate_n_flags(struct iwl_mvm *mvm, enum ieee80211_band band,
112                           bool no_cck)
113 {
114         u32 tx_ant;
115
116         mvm->scan_last_antenna_idx =
117                 iwl_mvm_next_antenna(mvm, mvm->fw->valid_tx_ant,
118                                      mvm->scan_last_antenna_idx);
119         tx_ant = BIT(mvm->scan_last_antenna_idx) << RATE_MCS_ANT_POS;
120
121         if (band == IEEE80211_BAND_2GHZ && !no_cck)
122                 return cpu_to_le32(IWL_RATE_1M_PLCP | RATE_MCS_CCK_MSK |
123                                    tx_ant);
124         else
125                 return cpu_to_le32(IWL_RATE_6M_PLCP | tx_ant);
126 }
127
128 /*
129  * We insert the SSIDs in an inverted order, because the FW will
130  * invert it back. The most prioritized SSID, which is first in the
131  * request list, is not copied here, but inserted directly to the probe
132  * request.
133  */
134 static void iwl_mvm_scan_fill_ssids(struct iwl_ssid_ie *cmd_ssid,
135                                     struct cfg80211_ssid *ssids,
136                                     int n_ssids, int first)
137 {
138         int fw_idx, req_idx;
139
140         for (req_idx = n_ssids - 1, fw_idx = 0; req_idx >= first;
141              req_idx--, fw_idx++) {
142                 cmd_ssid[fw_idx].id = WLAN_EID_SSID;
143                 cmd_ssid[fw_idx].len = ssids[req_idx].ssid_len;
144                 memcpy(cmd_ssid[fw_idx].ssid,
145                        ssids[req_idx].ssid,
146                        ssids[req_idx].ssid_len);
147         }
148 }
149
150 /*
151  * If req->n_ssids > 0, it means we should do an active scan.
152  * In case of active scan w/o directed scan, we receive a zero-length SSID
153  * just to notify that this scan is active and not passive.
154  * In order to notify the FW of the number of SSIDs we wish to scan (including
155  * the zero-length one), we need to set the corresponding bits in chan->type,
156  * one for each SSID, and set the active bit (first). If the first SSID is
157  * already included in the probe template, so we need to set only
158  * req->n_ssids - 1 bits in addition to the first bit.
159  */
160 static u16 iwl_mvm_get_active_dwell(enum ieee80211_band band, int n_ssids)
161 {
162         if (band == IEEE80211_BAND_2GHZ)
163                 return 20  + 3 * (n_ssids + 1);
164         return 10  + 2 * (n_ssids + 1);
165 }
166
167 static u16 iwl_mvm_get_passive_dwell(enum ieee80211_band band)
168 {
169         return band == IEEE80211_BAND_2GHZ ? 100 + 20 : 100 + 10;
170 }
171
172 static void iwl_mvm_scan_fill_channels(struct iwl_scan_cmd *cmd,
173                                        struct cfg80211_scan_request *req,
174                                        bool basic_ssid,
175                                        struct iwl_mvm_scan_params *params)
176 {
177         struct iwl_scan_channel *chan = (struct iwl_scan_channel *)
178                 (cmd->data + le16_to_cpu(cmd->tx_cmd.len));
179         int i;
180         int type = BIT(req->n_ssids) - 1;
181         enum ieee80211_band band = req->channels[0]->band;
182
183         if (!basic_ssid)
184                 type |= BIT(req->n_ssids);
185
186         for (i = 0; i < cmd->channel_count; i++) {
187                 chan->channel = cpu_to_le16(req->channels[i]->hw_value);
188                 chan->type = cpu_to_le32(type);
189                 if (req->channels[i]->flags & IEEE80211_CHAN_NO_IR)
190                         chan->type &= cpu_to_le32(~SCAN_CHANNEL_TYPE_ACTIVE);
191                 chan->active_dwell = cpu_to_le16(params->dwell[band].active);
192                 chan->passive_dwell = cpu_to_le16(params->dwell[band].passive);
193                 chan->iteration_count = cpu_to_le16(1);
194                 chan++;
195         }
196 }
197
198 /*
199  * Fill in probe request with the following parameters:
200  * TA is our vif HW address, which mac80211 ensures we have.
201  * Packet is broadcasted, so this is both SA and DA.
202  * The probe request IE is made out of two: first comes the most prioritized
203  * SSID if a directed scan is requested. Second comes whatever extra
204  * information was given to us as the scan request IE.
205  */
206 static u16 iwl_mvm_fill_probe_req(struct ieee80211_mgmt *frame, const u8 *ta,
207                                   int n_ssids, const u8 *ssid, int ssid_len,
208                                   const u8 *band_ie, int band_ie_len,
209                                   const u8 *common_ie, int common_ie_len,
210                                   int left)
211 {
212         int len = 0;
213         u8 *pos = NULL;
214
215         /* Make sure there is enough space for the probe request,
216          * two mandatory IEs and the data */
217         left -= 24;
218         if (left < 0)
219                 return 0;
220
221         frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
222         eth_broadcast_addr(frame->da);
223         memcpy(frame->sa, ta, ETH_ALEN);
224         eth_broadcast_addr(frame->bssid);
225         frame->seq_ctrl = 0;
226
227         len += 24;
228
229         /* for passive scans, no need to fill anything */
230         if (n_ssids == 0)
231                 return (u16)len;
232
233         /* points to the payload of the request */
234         pos = &frame->u.probe_req.variable[0];
235
236         /* fill in our SSID IE */
237         left -= ssid_len + 2;
238         if (left < 0)
239                 return 0;
240         *pos++ = WLAN_EID_SSID;
241         *pos++ = ssid_len;
242         if (ssid && ssid_len) { /* ssid_len may be == 0 even if ssid is valid */
243                 memcpy(pos, ssid, ssid_len);
244                 pos += ssid_len;
245         }
246
247         len += ssid_len + 2;
248
249         if (WARN_ON(left < band_ie_len + common_ie_len))
250                 return len;
251
252         if (band_ie && band_ie_len) {
253                 memcpy(pos, band_ie, band_ie_len);
254                 pos += band_ie_len;
255                 len += band_ie_len;
256         }
257
258         if (common_ie && common_ie_len) {
259                 memcpy(pos, common_ie, common_ie_len);
260                 pos += common_ie_len;
261                 len += common_ie_len;
262         }
263
264         return (u16)len;
265 }
266
267 static void iwl_mvm_scan_condition_iterator(void *data, u8 *mac,
268                                             struct ieee80211_vif *vif)
269 {
270         struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
271         bool *global_bound = data;
272
273         if (mvmvif->phy_ctxt && mvmvif->phy_ctxt->id < MAX_PHYS)
274                 *global_bound = true;
275 }
276
277 static void iwl_mvm_scan_calc_params(struct iwl_mvm *mvm,
278                                      struct ieee80211_vif *vif,
279                                      int n_ssids, u32 flags,
280                                      struct iwl_mvm_scan_params *params)
281 {
282         bool global_bound = false;
283         enum ieee80211_band band;
284         u8 frag_passive_dwell = 0;
285
286         ieee80211_iterate_active_interfaces_atomic(mvm->hw,
287                                             IEEE80211_IFACE_ITER_NORMAL,
288                                             iwl_mvm_scan_condition_iterator,
289                                             &global_bound);
290
291         if (!global_bound)
292                 goto not_bound;
293
294         params->suspend_time = 30;
295         params->max_out_time = 170;
296
297         if (iwl_mvm_low_latency(mvm)) {
298                 if (mvm->fw->ucode_capa.api[0] &
299                     IWL_UCODE_TLV_API_FRAGMENTED_SCAN) {
300                         params->suspend_time = 105;
301                         params->max_out_time = 70;
302                         frag_passive_dwell = 20;
303                 } else {
304                         params->suspend_time = 120;
305                         params->max_out_time = 120;
306                 }
307         }
308
309         if (frag_passive_dwell && (mvm->fw->ucode_capa.api[0] &
310                                    IWL_UCODE_TLV_API_FRAGMENTED_SCAN)) {
311                 /*
312                  * P2P device scan should not be fragmented to avoid negative
313                  * impact on P2P device discovery. Configure max_out_time to be
314                  * equal to dwell time on passive channel. Take a longest
315                  * possible value, one that corresponds to 2GHz band
316                  */
317                 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
318                         u32 passive_dwell =
319                                 iwl_mvm_get_passive_dwell(IEEE80211_BAND_2GHZ);
320                         params->max_out_time = passive_dwell;
321                 } else {
322                         params->passive_fragmented = true;
323                 }
324         }
325
326         if (flags & NL80211_SCAN_FLAG_LOW_PRIORITY)
327                 params->max_out_time = 200;
328
329 not_bound:
330
331         for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) {
332                 if (params->passive_fragmented)
333                         params->dwell[band].passive = frag_passive_dwell;
334                 else
335                         params->dwell[band].passive =
336                                 iwl_mvm_get_passive_dwell(band);
337                 params->dwell[band].active = iwl_mvm_get_active_dwell(band,
338                                                                       n_ssids);
339         }
340 }
341
342 static inline bool iwl_mvm_rrm_scan_needed(struct iwl_mvm *mvm)
343 {
344         /* require rrm scan whenever the fw supports it */
345         return mvm->fw->ucode_capa.capa[0] &
346                IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT;
347 }
348
349 static int iwl_mvm_max_scan_ie_fw_cmd_room(struct iwl_mvm *mvm,
350                                            bool is_sched_scan)
351 {
352         int max_probe_len;
353
354         if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
355                 max_probe_len = SCAN_OFFLOAD_PROBE_REQ_SIZE;
356         else
357                 max_probe_len = mvm->fw->ucode_capa.max_probe_length;
358
359         /* we create the 802.11 header and SSID element */
360         max_probe_len -= 24 + 2;
361
362         /* basic ssid is added only for hw_scan with and old api */
363         if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID) &&
364             !(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN) &&
365             !is_sched_scan)
366                 max_probe_len -= 32;
367
368         return max_probe_len;
369 }
370
371 int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm, bool is_sched_scan)
372 {
373         int max_ie_len = iwl_mvm_max_scan_ie_fw_cmd_room(mvm, is_sched_scan);
374
375         if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN))
376                 return max_ie_len;
377
378         /* TODO: [BUG] This function should return the maximum allowed size of
379          * scan IEs, however the LMAC scan api contains both 2GHZ and 5GHZ IEs
380          * in the same command. So the correct implementation of this function
381          * is just iwl_mvm_max_scan_ie_fw_cmd_room() / 2. Currently the scan
382          * command has only 512 bytes and it would leave us with about 240
383          * bytes for scan IEs, which is clearly not enough. So meanwhile
384          * we will report an incorrect value. This may result in a failure to
385          * issue a scan in unified_scan_lmac and unified_sched_scan_lmac
386          * functions with -ENOBUFS, if a large enough probe will be provided.
387          */
388         return max_ie_len;
389 }
390
391 int iwl_mvm_scan_request(struct iwl_mvm *mvm,
392                          struct ieee80211_vif *vif,
393                          struct cfg80211_scan_request *req)
394 {
395         struct iwl_host_cmd hcmd = {
396                 .id = SCAN_REQUEST_CMD,
397                 .len = { 0, },
398                 .data = { mvm->scan_cmd, },
399                 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
400         };
401         struct iwl_scan_cmd *cmd = mvm->scan_cmd;
402         int ret;
403         u32 status;
404         int ssid_len = 0;
405         u8 *ssid = NULL;
406         bool basic_ssid = !(mvm->fw->ucode_capa.flags &
407                            IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID);
408         struct iwl_mvm_scan_params params = {};
409
410         lockdep_assert_held(&mvm->mutex);
411
412         /* we should have failed registration if scan_cmd was NULL */
413         if (WARN_ON(mvm->scan_cmd == NULL))
414                 return -ENOMEM;
415
416         IWL_DEBUG_SCAN(mvm, "Handling mac80211 scan request\n");
417         mvm->scan_status = IWL_MVM_SCAN_OS;
418         memset(cmd, 0, ksize(cmd));
419
420         cmd->channel_count = (u8)req->n_channels;
421         cmd->quiet_time = cpu_to_le16(IWL_ACTIVE_QUIET_TIME);
422         cmd->quiet_plcp_th = cpu_to_le16(IWL_PLCP_QUIET_THRESH);
423         cmd->rxchain_sel_flags = iwl_mvm_scan_rx_chain(mvm);
424
425         iwl_mvm_scan_calc_params(mvm, vif, req->n_ssids, req->flags, &params);
426         cmd->max_out_time = cpu_to_le32(params.max_out_time);
427         cmd->suspend_time = cpu_to_le32(params.suspend_time);
428         if (params.passive_fragmented)
429                 cmd->scan_flags |= SCAN_FLAGS_FRAGMENTED_SCAN;
430
431         cmd->rxon_flags = iwl_mvm_scan_rxon_flags(req->channels[0]->band);
432         cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP |
433                                         MAC_FILTER_IN_BEACON);
434
435         if (vif->type == NL80211_IFTYPE_P2P_DEVICE)
436                 cmd->type = cpu_to_le32(SCAN_TYPE_DISCOVERY_FORCED);
437         else
438                 cmd->type = cpu_to_le32(SCAN_TYPE_FORCED);
439
440         cmd->repeats = cpu_to_le32(1);
441
442         /*
443          * If the user asked for passive scan, don't change to active scan if
444          * you see any activity on the channel - remain passive.
445          */
446         if (req->n_ssids > 0) {
447                 cmd->passive2active = cpu_to_le16(1);
448                 cmd->scan_flags |= SCAN_FLAGS_PASSIVE2ACTIVE;
449                 if (basic_ssid) {
450                         ssid = req->ssids[0].ssid;
451                         ssid_len = req->ssids[0].ssid_len;
452                 }
453         } else {
454                 cmd->passive2active = 0;
455                 cmd->scan_flags &= ~SCAN_FLAGS_PASSIVE2ACTIVE;
456         }
457
458         iwl_mvm_scan_fill_ssids(cmd->direct_scan, req->ssids, req->n_ssids,
459                                 basic_ssid ? 1 : 0);
460
461         cmd->tx_cmd.tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
462                                            3 << TX_CMD_FLG_BT_PRIO_POS);
463
464         cmd->tx_cmd.sta_id = mvm->aux_sta.sta_id;
465         cmd->tx_cmd.life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
466         cmd->tx_cmd.rate_n_flags =
467                         iwl_mvm_scan_rate_n_flags(mvm, req->channels[0]->band,
468                                                   req->no_cck);
469
470         cmd->tx_cmd.len =
471                 cpu_to_le16(iwl_mvm_fill_probe_req(
472                             (struct ieee80211_mgmt *)cmd->data,
473                             vif->addr,
474                             req->n_ssids, ssid, ssid_len,
475                             req->ie, req->ie_len, NULL, 0,
476                             mvm->fw->ucode_capa.max_probe_length));
477
478         iwl_mvm_scan_fill_channels(cmd, req, basic_ssid, &params);
479
480         cmd->len = cpu_to_le16(sizeof(struct iwl_scan_cmd) +
481                 le16_to_cpu(cmd->tx_cmd.len) +
482                 (cmd->channel_count * sizeof(struct iwl_scan_channel)));
483         hcmd.len[0] = le16_to_cpu(cmd->len);
484
485         status = SCAN_RESPONSE_OK;
486         ret = iwl_mvm_send_cmd_status(mvm, &hcmd, &status);
487         if (!ret && status == SCAN_RESPONSE_OK) {
488                 IWL_DEBUG_SCAN(mvm, "Scan request was sent successfully\n");
489         } else {
490                 /*
491                  * If the scan failed, it usually means that the FW was unable
492                  * to allocate the time events. Warn on it, but maybe we
493                  * should try to send the command again with different params.
494                  */
495                 IWL_ERR(mvm, "Scan failed! status 0x%x ret %d\n",
496                         status, ret);
497                 mvm->scan_status = IWL_MVM_SCAN_NONE;
498                 ret = -EIO;
499         }
500         return ret;
501 }
502
503 int iwl_mvm_rx_scan_response(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
504                           struct iwl_device_cmd *cmd)
505 {
506         struct iwl_rx_packet *pkt = rxb_addr(rxb);
507         struct iwl_cmd_response *resp = (void *)pkt->data;
508
509         IWL_DEBUG_SCAN(mvm, "Scan response received. status 0x%x\n",
510                        le32_to_cpu(resp->status));
511         return 0;
512 }
513
514 int iwl_mvm_rx_scan_complete(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
515                           struct iwl_device_cmd *cmd)
516 {
517         struct iwl_rx_packet *pkt = rxb_addr(rxb);
518         struct iwl_scan_complete_notif *notif = (void *)pkt->data;
519
520         lockdep_assert_held(&mvm->mutex);
521
522         IWL_DEBUG_SCAN(mvm, "Scan complete: status=0x%x scanned channels=%d\n",
523                        notif->status, notif->scanned_channels);
524
525         if (mvm->scan_status == IWL_MVM_SCAN_OS)
526                 mvm->scan_status = IWL_MVM_SCAN_NONE;
527         ieee80211_scan_completed(mvm->hw, notif->status != SCAN_COMP_STATUS_OK);
528
529         iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
530
531         return 0;
532 }
533
534 int iwl_mvm_rx_scan_offload_results(struct iwl_mvm *mvm,
535                                     struct iwl_rx_cmd_buffer *rxb,
536                                     struct iwl_device_cmd *cmd)
537 {
538         struct iwl_rx_packet *pkt = rxb_addr(rxb);
539         u8 client_bitmap = 0;
540
541         if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)) {
542                 struct iwl_sched_scan_results *notif = (void *)pkt->data;
543
544                 client_bitmap = notif->client_bitmap;
545         }
546
547         if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN ||
548             client_bitmap & SCAN_CLIENT_SCHED_SCAN) {
549                 if (mvm->scan_status == IWL_MVM_SCAN_SCHED) {
550                         IWL_DEBUG_SCAN(mvm, "Scheduled scan results\n");
551                         ieee80211_sched_scan_results(mvm->hw);
552                 } else {
553                         IWL_DEBUG_SCAN(mvm, "Scan results\n");
554                 }
555         }
556
557         return 0;
558 }
559
560 static bool iwl_mvm_scan_abort_notif(struct iwl_notif_wait_data *notif_wait,
561                                      struct iwl_rx_packet *pkt, void *data)
562 {
563         struct iwl_mvm *mvm =
564                 container_of(notif_wait, struct iwl_mvm, notif_wait);
565         struct iwl_scan_complete_notif *notif;
566         u32 *resp;
567
568         switch (pkt->hdr.cmd) {
569         case SCAN_ABORT_CMD:
570                 resp = (void *)pkt->data;
571                 if (*resp == CAN_ABORT_STATUS) {
572                         IWL_DEBUG_SCAN(mvm,
573                                        "Scan can be aborted, wait until completion\n");
574                         return false;
575                 }
576
577                 /*
578                  * If scan cannot be aborted, it means that we had a
579                  * SCAN_COMPLETE_NOTIFICATION in the pipe and it called
580                  * ieee80211_scan_completed already.
581                  */
582                 IWL_DEBUG_SCAN(mvm, "Scan cannot be aborted, exit now: %d\n",
583                                *resp);
584                 return true;
585
586         case SCAN_COMPLETE_NOTIFICATION:
587                 notif = (void *)pkt->data;
588                 IWL_DEBUG_SCAN(mvm, "Scan aborted: status 0x%x\n",
589                                notif->status);
590                 return true;
591
592         default:
593                 WARN_ON(1);
594                 return false;
595         };
596 }
597
598 static int iwl_mvm_cancel_regular_scan(struct iwl_mvm *mvm)
599 {
600         struct iwl_notification_wait wait_scan_abort;
601         static const u8 scan_abort_notif[] = { SCAN_ABORT_CMD,
602                                                SCAN_COMPLETE_NOTIFICATION };
603         int ret;
604
605         if (mvm->scan_status == IWL_MVM_SCAN_NONE)
606                 return 0;
607
608         if (iwl_mvm_is_radio_killed(mvm)) {
609                 ieee80211_scan_completed(mvm->hw, true);
610                 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
611                 mvm->scan_status = IWL_MVM_SCAN_NONE;
612                 return 0;
613         }
614
615         iwl_init_notification_wait(&mvm->notif_wait, &wait_scan_abort,
616                                    scan_abort_notif,
617                                    ARRAY_SIZE(scan_abort_notif),
618                                    iwl_mvm_scan_abort_notif, NULL);
619
620         ret = iwl_mvm_send_cmd_pdu(mvm, SCAN_ABORT_CMD, 0, 0, NULL);
621         if (ret) {
622                 IWL_ERR(mvm, "Couldn't send SCAN_ABORT_CMD: %d\n", ret);
623                 /* mac80211's state will be cleaned in the nic_restart flow */
624                 goto out_remove_notif;
625         }
626
627         return iwl_wait_notification(&mvm->notif_wait, &wait_scan_abort, HZ);
628
629 out_remove_notif:
630         iwl_remove_notification(&mvm->notif_wait, &wait_scan_abort);
631         return ret;
632 }
633
634 int iwl_mvm_rx_scan_offload_complete_notif(struct iwl_mvm *mvm,
635                                            struct iwl_rx_cmd_buffer *rxb,
636                                            struct iwl_device_cmd *cmd)
637 {
638         struct iwl_rx_packet *pkt = rxb_addr(rxb);
639         u8 status, ebs_status;
640
641         if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN) {
642                 struct iwl_periodic_scan_complete *scan_notif;
643
644                 scan_notif = (void *)pkt->data;
645                 status = scan_notif->status;
646                 ebs_status = scan_notif->ebs_status;
647         } else  {
648                 struct iwl_scan_offload_complete *scan_notif;
649
650                 scan_notif = (void *)pkt->data;
651                 status = scan_notif->status;
652                 ebs_status = scan_notif->ebs_status;
653         }
654         /* scan status must be locked for proper checking */
655         lockdep_assert_held(&mvm->mutex);
656
657         IWL_DEBUG_SCAN(mvm,
658                        "%s completed, status %s, EBS status %s\n",
659                        mvm->scan_status == IWL_MVM_SCAN_SCHED ?
660                                 "Scheduled scan" : "Scan",
661                        status == IWL_SCAN_OFFLOAD_COMPLETED ?
662                                 "completed" : "aborted",
663                        ebs_status == IWL_SCAN_EBS_SUCCESS ?
664                                 "success" : "failed");
665
666
667         /* only call mac80211 completion if the stop was initiated by FW */
668         if (mvm->scan_status == IWL_MVM_SCAN_SCHED) {
669                 mvm->scan_status = IWL_MVM_SCAN_NONE;
670                 ieee80211_sched_scan_stopped(mvm->hw);
671         } else if (mvm->scan_status == IWL_MVM_SCAN_OS) {
672                 mvm->scan_status = IWL_MVM_SCAN_NONE;
673                 ieee80211_scan_completed(mvm->hw,
674                                          status == IWL_SCAN_OFFLOAD_ABORTED);
675         }
676
677         mvm->last_ebs_successful = !ebs_status;
678
679         return 0;
680 }
681
682 static void iwl_scan_offload_build_tx_cmd(struct iwl_mvm *mvm,
683                                           struct ieee80211_vif *vif,
684                                           struct ieee80211_scan_ies *ies,
685                                           enum ieee80211_band band,
686                                           struct iwl_tx_cmd *cmd,
687                                           u8 *data)
688 {
689         u16 cmd_len;
690
691         cmd->tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL);
692         cmd->life_time = cpu_to_le32(TX_CMD_LIFE_TIME_INFINITE);
693         cmd->sta_id = mvm->aux_sta.sta_id;
694
695         cmd->rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm, band, false);
696
697         cmd_len = iwl_mvm_fill_probe_req((struct ieee80211_mgmt *)data,
698                                          vif->addr,
699                                          1, NULL, 0,
700                                          ies->ies[band], ies->len[band],
701                                          ies->common_ies, ies->common_ie_len,
702                                          SCAN_OFFLOAD_PROBE_REQ_SIZE);
703         cmd->len = cpu_to_le16(cmd_len);
704 }
705
706 static void iwl_build_scan_cmd(struct iwl_mvm *mvm,
707                                struct ieee80211_vif *vif,
708                                struct cfg80211_sched_scan_request *req,
709                                struct iwl_scan_offload_cmd *scan,
710                                struct iwl_mvm_scan_params *params)
711 {
712         scan->channel_count = req->n_channels;
713         scan->quiet_time = cpu_to_le16(IWL_ACTIVE_QUIET_TIME);
714         scan->quiet_plcp_th = cpu_to_le16(IWL_PLCP_QUIET_THRESH);
715         scan->good_CRC_th = IWL_GOOD_CRC_TH_DEFAULT;
716         scan->rx_chain = iwl_mvm_scan_rx_chain(mvm);
717
718         scan->max_out_time = cpu_to_le32(params->max_out_time);
719         scan->suspend_time = cpu_to_le32(params->suspend_time);
720
721         scan->filter_flags |= cpu_to_le32(MAC_FILTER_ACCEPT_GRP |
722                                           MAC_FILTER_IN_BEACON);
723         scan->scan_type = cpu_to_le32(SCAN_TYPE_BACKGROUND);
724         scan->rep_count = cpu_to_le32(1);
725
726         if (params->passive_fragmented)
727                 scan->scan_flags |= SCAN_FLAGS_FRAGMENTED_SCAN;
728 }
729
730 static int iwl_ssid_exist(u8 *ssid, u8 ssid_len, struct iwl_ssid_ie *ssid_list)
731 {
732         int i;
733
734         for (i = 0; i < PROBE_OPTION_MAX; i++) {
735                 if (!ssid_list[i].len)
736                         break;
737                 if (ssid_list[i].len == ssid_len &&
738                     !memcmp(ssid_list->ssid, ssid, ssid_len))
739                         return i;
740         }
741         return -1;
742 }
743
744 static void iwl_scan_offload_build_ssid(struct cfg80211_sched_scan_request *req,
745                                         struct iwl_ssid_ie *direct_scan,
746                                         u32 *ssid_bitmap, bool basic_ssid)
747 {
748         int i, j;
749         int index;
750
751         /*
752          * copy SSIDs from match list.
753          * iwl_config_sched_scan_profiles() uses the order of these ssids to
754          * config match list.
755          */
756         for (i = 0; i < req->n_match_sets && i < PROBE_OPTION_MAX; i++) {
757                 /* skip empty SSID matchsets */
758                 if (!req->match_sets[i].ssid.ssid_len)
759                         continue;
760                 direct_scan[i].id = WLAN_EID_SSID;
761                 direct_scan[i].len = req->match_sets[i].ssid.ssid_len;
762                 memcpy(direct_scan[i].ssid, req->match_sets[i].ssid.ssid,
763                        direct_scan[i].len);
764         }
765
766         /* add SSIDs from scan SSID list */
767         *ssid_bitmap = 0;
768         for (j = 0; j < req->n_ssids && i < PROBE_OPTION_MAX; j++) {
769                 index = iwl_ssid_exist(req->ssids[j].ssid,
770                                        req->ssids[j].ssid_len,
771                                        direct_scan);
772                 if (index < 0) {
773                         if (!req->ssids[j].ssid_len && basic_ssid)
774                                 continue;
775                         direct_scan[i].id = WLAN_EID_SSID;
776                         direct_scan[i].len = req->ssids[j].ssid_len;
777                         memcpy(direct_scan[i].ssid, req->ssids[j].ssid,
778                                direct_scan[i].len);
779                         *ssid_bitmap |= BIT(i + 1);
780                         i++;
781                 } else {
782                         *ssid_bitmap |= BIT(index + 1);
783                 }
784         }
785 }
786
787 static void iwl_build_channel_cfg(struct iwl_mvm *mvm,
788                                   struct cfg80211_sched_scan_request *req,
789                                   u8 *channels_buffer,
790                                   enum ieee80211_band band,
791                                   int *head,
792                                   u32 ssid_bitmap,
793                                   struct iwl_mvm_scan_params *params)
794 {
795         u32 n_channels = mvm->fw->ucode_capa.n_scan_channels;
796         __le32 *type = (__le32 *)channels_buffer;
797         __le16 *channel_number = (__le16 *)(type + n_channels);
798         __le16 *iter_count = channel_number + n_channels;
799         __le32 *iter_interval = (__le32 *)(iter_count + n_channels);
800         u8 *active_dwell = (u8 *)(iter_interval + n_channels);
801         u8 *passive_dwell = active_dwell + n_channels;
802         int i, index = 0;
803
804         for (i = 0; i < req->n_channels; i++) {
805                 struct ieee80211_channel *chan = req->channels[i];
806
807                 if (chan->band != band)
808                         continue;
809
810                 index = *head;
811                 (*head)++;
812
813                 channel_number[index] = cpu_to_le16(chan->hw_value);
814                 active_dwell[index] = params->dwell[band].active;
815                 passive_dwell[index] = params->dwell[band].passive;
816
817                 iter_count[index] = cpu_to_le16(1);
818                 iter_interval[index] = 0;
819
820                 if (!(chan->flags & IEEE80211_CHAN_NO_IR))
821                         type[index] |=
822                                 cpu_to_le32(IWL_SCAN_OFFLOAD_CHANNEL_ACTIVE);
823
824                 type[index] |= cpu_to_le32(IWL_SCAN_OFFLOAD_CHANNEL_FULL |
825                                            IWL_SCAN_OFFLOAD_CHANNEL_PARTIAL);
826
827                 if (chan->flags & IEEE80211_CHAN_NO_HT40)
828                         type[index] |=
829                                 cpu_to_le32(IWL_SCAN_OFFLOAD_CHANNEL_NARROW);
830
831                 /* scan for all SSIDs from req->ssids */
832                 type[index] |= cpu_to_le32(ssid_bitmap);
833         }
834 }
835
836 int iwl_mvm_config_sched_scan(struct iwl_mvm *mvm,
837                               struct ieee80211_vif *vif,
838                               struct cfg80211_sched_scan_request *req,
839                               struct ieee80211_scan_ies *ies)
840 {
841         int band_2ghz = mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels;
842         int band_5ghz = mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels;
843         int head = 0;
844         u32 ssid_bitmap;
845         int cmd_len;
846         int ret;
847         u8 *probes;
848         bool basic_ssid = !(mvm->fw->ucode_capa.flags &
849                             IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID);
850
851         struct iwl_scan_offload_cfg *scan_cfg;
852         struct iwl_host_cmd cmd = {
853                 .id = SCAN_OFFLOAD_CONFIG_CMD,
854         };
855         struct iwl_mvm_scan_params params = {};
856
857         lockdep_assert_held(&mvm->mutex);
858
859         cmd_len = sizeof(struct iwl_scan_offload_cfg) +
860                   mvm->fw->ucode_capa.n_scan_channels * IWL_SCAN_CHAN_SIZE +
861                   2 * SCAN_OFFLOAD_PROBE_REQ_SIZE;
862
863         scan_cfg = kzalloc(cmd_len, GFP_KERNEL);
864         if (!scan_cfg)
865                 return -ENOMEM;
866
867         probes = scan_cfg->data +
868                 mvm->fw->ucode_capa.n_scan_channels * IWL_SCAN_CHAN_SIZE;
869
870         iwl_mvm_scan_calc_params(mvm, vif, req->n_ssids, 0, &params);
871         iwl_build_scan_cmd(mvm, vif, req, &scan_cfg->scan_cmd, &params);
872         scan_cfg->scan_cmd.len = cpu_to_le16(cmd_len);
873
874         iwl_scan_offload_build_ssid(req, scan_cfg->scan_cmd.direct_scan,
875                                     &ssid_bitmap, basic_ssid);
876         /* build tx frames for supported bands */
877         if (band_2ghz) {
878                 iwl_scan_offload_build_tx_cmd(mvm, vif, ies,
879                                               IEEE80211_BAND_2GHZ,
880                                               &scan_cfg->scan_cmd.tx_cmd[0],
881                                               probes);
882                 iwl_build_channel_cfg(mvm, req, scan_cfg->data,
883                                       IEEE80211_BAND_2GHZ, &head,
884                                       ssid_bitmap, &params);
885         }
886         if (band_5ghz) {
887                 iwl_scan_offload_build_tx_cmd(mvm, vif, ies,
888                                               IEEE80211_BAND_5GHZ,
889                                               &scan_cfg->scan_cmd.tx_cmd[1],
890                                               probes +
891                                                 SCAN_OFFLOAD_PROBE_REQ_SIZE);
892                 iwl_build_channel_cfg(mvm, req, scan_cfg->data,
893                                       IEEE80211_BAND_5GHZ, &head,
894                                       ssid_bitmap, &params);
895         }
896
897         cmd.data[0] = scan_cfg;
898         cmd.len[0] = cmd_len;
899         cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
900
901         IWL_DEBUG_SCAN(mvm, "Sending scheduled scan config\n");
902
903         ret = iwl_mvm_send_cmd(mvm, &cmd);
904         kfree(scan_cfg);
905         return ret;
906 }
907
908 int iwl_mvm_config_sched_scan_profiles(struct iwl_mvm *mvm,
909                                        struct cfg80211_sched_scan_request *req)
910 {
911         struct iwl_scan_offload_profile *profile;
912         struct iwl_scan_offload_profile_cfg *profile_cfg;
913         struct iwl_scan_offload_blacklist *blacklist;
914         struct iwl_host_cmd cmd = {
915                 .id = SCAN_OFFLOAD_UPDATE_PROFILES_CMD,
916                 .len[1] = sizeof(*profile_cfg),
917                 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
918                 .dataflags[1] = IWL_HCMD_DFL_NOCOPY,
919         };
920         int blacklist_len;
921         int i;
922         int ret;
923
924         if (WARN_ON(req->n_match_sets > IWL_SCAN_MAX_PROFILES))
925                         return -EIO;
926
927         if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_SHORT_BL)
928                 blacklist_len = IWL_SCAN_SHORT_BLACKLIST_LEN;
929         else
930                 blacklist_len = IWL_SCAN_MAX_BLACKLIST_LEN;
931
932         blacklist = kzalloc(sizeof(*blacklist) * blacklist_len, GFP_KERNEL);
933         if (!blacklist)
934                 return -ENOMEM;
935
936         profile_cfg = kzalloc(sizeof(*profile_cfg), GFP_KERNEL);
937         if (!profile_cfg) {
938                 ret = -ENOMEM;
939                 goto free_blacklist;
940         }
941
942         cmd.data[0] = blacklist;
943         cmd.len[0] = sizeof(*blacklist) * blacklist_len;
944         cmd.data[1] = profile_cfg;
945
946         /* No blacklist configuration */
947
948         profile_cfg->num_profiles = req->n_match_sets;
949         profile_cfg->active_clients = SCAN_CLIENT_SCHED_SCAN;
950         profile_cfg->pass_match = SCAN_CLIENT_SCHED_SCAN;
951         profile_cfg->match_notify = SCAN_CLIENT_SCHED_SCAN;
952         if (!req->n_match_sets || !req->match_sets[0].ssid.ssid_len)
953                 profile_cfg->any_beacon_notify = SCAN_CLIENT_SCHED_SCAN;
954
955         for (i = 0; i < req->n_match_sets; i++) {
956                 profile = &profile_cfg->profiles[i];
957                 profile->ssid_index = i;
958                 /* Support any cipher and auth algorithm */
959                 profile->unicast_cipher = 0xff;
960                 profile->auth_alg = 0xff;
961                 profile->network_type = IWL_NETWORK_TYPE_ANY;
962                 profile->band_selection = IWL_SCAN_OFFLOAD_SELECT_ANY;
963                 profile->client_bitmap = SCAN_CLIENT_SCHED_SCAN;
964         }
965
966         IWL_DEBUG_SCAN(mvm, "Sending scheduled scan profile config\n");
967
968         ret = iwl_mvm_send_cmd(mvm, &cmd);
969         kfree(profile_cfg);
970 free_blacklist:
971         kfree(blacklist);
972
973         return ret;
974 }
975
976 int iwl_mvm_sched_scan_start(struct iwl_mvm *mvm,
977                              struct cfg80211_sched_scan_request *req)
978 {
979         struct iwl_scan_offload_req scan_req = {
980                 .watchdog = IWL_SCHED_SCAN_WATCHDOG,
981
982                 .schedule_line[0].iterations = IWL_FAST_SCHED_SCAN_ITERATIONS,
983                 .schedule_line[0].delay = cpu_to_le16(req->interval / 1000),
984                 .schedule_line[0].full_scan_mul = 1,
985
986                 .schedule_line[1].iterations = 0xff,
987                 .schedule_line[1].delay = cpu_to_le16(req->interval / 1000),
988                 .schedule_line[1].full_scan_mul = IWL_FULL_SCAN_MULTIPLIER,
989         };
990
991         if (req->n_match_sets && req->match_sets[0].ssid.ssid_len) {
992                 IWL_DEBUG_SCAN(mvm,
993                                "Sending scheduled scan with filtering, filter len %d\n",
994                                req->n_match_sets);
995         } else {
996                 IWL_DEBUG_SCAN(mvm,
997                                "Sending Scheduled scan without filtering\n");
998                 scan_req.flags |= cpu_to_le16(IWL_SCAN_OFFLOAD_FLAG_PASS_ALL);
999         }
1000
1001         if (mvm->last_ebs_successful &&
1002             mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_EBS_SUPPORT)
1003                 scan_req.flags |=
1004                         cpu_to_le16(IWL_SCAN_OFFLOAD_FLAG_EBS_ACCURATE_MODE);
1005
1006         return iwl_mvm_send_cmd_pdu(mvm, SCAN_OFFLOAD_REQUEST_CMD, 0,
1007                                     sizeof(scan_req), &scan_req);
1008 }
1009
1010 static int iwl_mvm_send_scan_offload_abort(struct iwl_mvm *mvm)
1011 {
1012         int ret;
1013         struct iwl_host_cmd cmd = {
1014                 .id = SCAN_OFFLOAD_ABORT_CMD,
1015         };
1016         u32 status;
1017
1018         /* Exit instantly with error when device is not ready
1019          * to receive scan abort command or it does not perform
1020          * scheduled scan currently */
1021         if (mvm->scan_status != IWL_MVM_SCAN_SCHED &&
1022             (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN) ||
1023              mvm->scan_status != IWL_MVM_SCAN_OS))
1024                 return -EIO;
1025
1026         ret = iwl_mvm_send_cmd_status(mvm, &cmd, &status);
1027         if (ret)
1028                 return ret;
1029
1030         if (status != CAN_ABORT_STATUS) {
1031                 /*
1032                  * The scan abort will return 1 for success or
1033                  * 2 for "failure".  A failure condition can be
1034                  * due to simply not being in an active scan which
1035                  * can occur if we send the scan abort before the
1036                  * microcode has notified us that a scan is completed.
1037                  */
1038                 IWL_DEBUG_SCAN(mvm, "SCAN OFFLOAD ABORT ret %d.\n", status);
1039                 ret = -ENOENT;
1040         }
1041
1042         return ret;
1043 }
1044
1045 int iwl_mvm_scan_offload_stop(struct iwl_mvm *mvm, bool notify)
1046 {
1047         int ret;
1048         struct iwl_notification_wait wait_scan_done;
1049         static const u8 scan_done_notif[] = { SCAN_OFFLOAD_COMPLETE, };
1050         bool sched = mvm->scan_status == IWL_MVM_SCAN_SCHED;
1051
1052         lockdep_assert_held(&mvm->mutex);
1053
1054         if (mvm->scan_status != IWL_MVM_SCAN_SCHED &&
1055             (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN) ||
1056              mvm->scan_status != IWL_MVM_SCAN_OS)) {
1057                 IWL_DEBUG_SCAN(mvm, "No scan to stop\n");
1058                 return 0;
1059         }
1060
1061         iwl_init_notification_wait(&mvm->notif_wait, &wait_scan_done,
1062                                    scan_done_notif,
1063                                    ARRAY_SIZE(scan_done_notif),
1064                                    NULL, NULL);
1065
1066         ret = iwl_mvm_send_scan_offload_abort(mvm);
1067         if (ret) {
1068                 IWL_DEBUG_SCAN(mvm, "Send stop %sscan failed %d\n",
1069                                sched ? "offloaded " : "", ret);
1070                 iwl_remove_notification(&mvm->notif_wait, &wait_scan_done);
1071                 return ret;
1072         }
1073
1074         IWL_DEBUG_SCAN(mvm, "Successfully sent stop %sscan\n",
1075                        sched ? "offloaded " : "");
1076
1077         ret = iwl_wait_notification(&mvm->notif_wait, &wait_scan_done, 1 * HZ);
1078         if (ret)
1079                 return ret;
1080
1081         /*
1082          * Clear the scan status so the next scan requests will succeed. This
1083          * also ensures the Rx handler doesn't do anything, as the scan was
1084          * stopped from above.
1085          */
1086         mvm->scan_status = IWL_MVM_SCAN_NONE;
1087
1088         if (notify) {
1089                 if (sched)
1090                         ieee80211_sched_scan_stopped(mvm->hw);
1091                 else
1092                         ieee80211_scan_completed(mvm->hw, true);
1093         }
1094
1095         return 0;
1096 }
1097
1098 static void iwl_mvm_unified_scan_fill_tx_cmd(struct iwl_mvm *mvm,
1099                                              struct iwl_scan_req_tx_cmd *tx_cmd,
1100                                              bool no_cck)
1101 {
1102         tx_cmd[0].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
1103                                          TX_CMD_FLG_BT_DIS);
1104         tx_cmd[0].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm,
1105                                                            IEEE80211_BAND_2GHZ,
1106                                                            no_cck);
1107         tx_cmd[0].sta_id = mvm->aux_sta.sta_id;
1108
1109         tx_cmd[1].tx_flags = cpu_to_le32(TX_CMD_FLG_SEQ_CTL |
1110                                          TX_CMD_FLG_BT_DIS);
1111         tx_cmd[1].rate_n_flags = iwl_mvm_scan_rate_n_flags(mvm,
1112                                                            IEEE80211_BAND_5GHZ,
1113                                                            no_cck);
1114         tx_cmd[1].sta_id = mvm->aux_sta.sta_id;
1115 }
1116
1117 static void
1118 iwl_mvm_lmac_scan_cfg_channels(struct iwl_mvm *mvm,
1119                                struct ieee80211_channel **channels,
1120                                int n_channels, u32 ssid_bitmap,
1121                                struct iwl_scan_req_unified_lmac *cmd)
1122 {
1123         struct iwl_scan_channel_cfg_lmac *channel_cfg = (void *)&cmd->data;
1124         int i;
1125
1126         for (i = 0; i < n_channels; i++) {
1127                 channel_cfg[i].channel_num =
1128                         cpu_to_le16(channels[i]->hw_value);
1129                 channel_cfg[i].iter_count = cpu_to_le16(1);
1130                 channel_cfg[i].iter_interval = 0;
1131                 channel_cfg[i].flags =
1132                         cpu_to_le32(IWL_UNIFIED_SCAN_CHANNEL_PARTIAL |
1133                                     ssid_bitmap);
1134         }
1135 }
1136
1137 static void
1138 iwl_mvm_build_unified_scan_probe(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1139                                  struct ieee80211_scan_ies *ies,
1140                                  struct iwl_scan_req_unified_lmac *cmd)
1141 {
1142         struct iwl_scan_probe_req *preq = (void *)(cmd->data +
1143                 sizeof(struct iwl_scan_channel_cfg_lmac) *
1144                         mvm->fw->ucode_capa.n_scan_channels);
1145         struct ieee80211_mgmt *frame = (struct ieee80211_mgmt *)preq->buf;
1146         u8 *pos;
1147
1148         frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
1149         eth_broadcast_addr(frame->da);
1150         memcpy(frame->sa, vif->addr, ETH_ALEN);
1151         eth_broadcast_addr(frame->bssid);
1152         frame->seq_ctrl = 0;
1153
1154         pos = frame->u.probe_req.variable;
1155         *pos++ = WLAN_EID_SSID;
1156         *pos++ = 0;
1157
1158         preq->mac_header.offset = 0;
1159         preq->mac_header.len = cpu_to_le16(24 + 2);
1160
1161         memcpy(pos, ies->ies[IEEE80211_BAND_2GHZ],
1162                ies->len[IEEE80211_BAND_2GHZ]);
1163         preq->band_data[0].offset = cpu_to_le16(pos - preq->buf);
1164         preq->band_data[0].len = cpu_to_le16(ies->len[IEEE80211_BAND_2GHZ]);
1165         pos += ies->len[IEEE80211_BAND_2GHZ];
1166
1167         memcpy(pos, ies->ies[IEEE80211_BAND_5GHZ],
1168                ies->len[IEEE80211_BAND_5GHZ]);
1169         preq->band_data[1].offset = cpu_to_le16(pos - preq->buf);
1170         preq->band_data[1].len = cpu_to_le16(ies->len[IEEE80211_BAND_5GHZ]);
1171         pos += ies->len[IEEE80211_BAND_5GHZ];
1172
1173         memcpy(pos, ies->common_ies, ies->common_ie_len);
1174         preq->common_data.offset = cpu_to_le16(pos - preq->buf);
1175         preq->common_data.len = cpu_to_le16(ies->common_ie_len);
1176 }
1177
1178 static void
1179 iwl_mvm_build_generic_unified_scan_cmd(struct iwl_mvm *mvm,
1180                                        struct iwl_scan_req_unified_lmac *cmd,
1181                                        struct iwl_mvm_scan_params *params)
1182 {
1183         memset(cmd, 0, ksize(cmd));
1184         cmd->active_dwell = params->dwell[IEEE80211_BAND_2GHZ].active;
1185         cmd->passive_dwell = params->dwell[IEEE80211_BAND_2GHZ].passive;
1186         if (params->passive_fragmented)
1187                 cmd->fragmented_dwell =
1188                                 params->dwell[IEEE80211_BAND_2GHZ].passive;
1189         cmd->rx_chain_select = iwl_mvm_scan_rx_chain(mvm);
1190         cmd->max_out_time = cpu_to_le32(params->max_out_time);
1191         cmd->suspend_time = cpu_to_le32(params->suspend_time);
1192         cmd->scan_prio = cpu_to_le32(IWL_SCAN_PRIORITY_HIGH);
1193         cmd->iter_num = cpu_to_le32(1);
1194
1195         if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_EBS_SUPPORT &&
1196             mvm->last_ebs_successful) {
1197                 cmd->channel_opt[0].flags =
1198                         cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
1199                                     IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
1200                                     IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
1201                 cmd->channel_opt[1].flags =
1202                         cpu_to_le16(IWL_SCAN_CHANNEL_FLAG_EBS |
1203                                     IWL_SCAN_CHANNEL_FLAG_EBS_ACCURATE |
1204                                     IWL_SCAN_CHANNEL_FLAG_CACHE_ADD);
1205         }
1206
1207         if (iwl_mvm_rrm_scan_needed(mvm))
1208                 cmd->scan_flags |=
1209                         cpu_to_le32(IWL_MVM_LMAC_SCAN_FLAGS_RRM_ENABLED);
1210 }
1211
1212 int iwl_mvm_unified_scan_lmac(struct iwl_mvm *mvm,
1213                               struct ieee80211_vif *vif,
1214                               struct ieee80211_scan_request *req)
1215 {
1216         struct iwl_host_cmd hcmd = {
1217                 .id = SCAN_OFFLOAD_REQUEST_CMD,
1218                 .len = { sizeof(struct iwl_scan_req_unified_lmac) +
1219                          sizeof(struct iwl_scan_channel_cfg_lmac) *
1220                                 mvm->fw->ucode_capa.n_scan_channels +
1221                          sizeof(struct iwl_scan_probe_req), },
1222                 .data = { mvm->scan_cmd, },
1223                 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
1224         };
1225         struct iwl_scan_req_unified_lmac *cmd = mvm->scan_cmd;
1226         struct iwl_mvm_scan_params params = {};
1227         u32 flags;
1228         int ssid_bitmap = 0;
1229         int ret, i;
1230
1231         lockdep_assert_held(&mvm->mutex);
1232
1233         /* we should have failed registration if scan_cmd was NULL */
1234         if (WARN_ON(mvm->scan_cmd == NULL))
1235                 return -ENOMEM;
1236
1237         if (req->req.n_ssids > PROBE_OPTION_MAX ||
1238             req->ies.common_ie_len + req->ies.len[NL80211_BAND_2GHZ] +
1239             req->ies.len[NL80211_BAND_5GHZ] >
1240                 iwl_mvm_max_scan_ie_fw_cmd_room(mvm, false) ||
1241             req->req.n_channels > mvm->fw->ucode_capa.n_scan_channels)
1242                 return -ENOBUFS;
1243
1244         mvm->scan_status = IWL_MVM_SCAN_OS;
1245
1246         iwl_mvm_scan_calc_params(mvm, vif, req->req.n_ssids, req->req.flags,
1247                                  &params);
1248
1249         iwl_mvm_build_generic_unified_scan_cmd(mvm, cmd, &params);
1250
1251         cmd->n_channels = (u8)req->req.n_channels;
1252
1253         flags = IWL_MVM_LMAC_SCAN_FLAG_PASS_ALL;
1254
1255         if (req->req.n_ssids == 1 && req->req.ssids[0].ssid_len != 0)
1256                 flags |= IWL_MVM_LMAC_SCAN_FLAG_PRE_CONNECTION;
1257
1258         if (params.passive_fragmented)
1259                 flags |= IWL_MVM_LMAC_SCAN_FLAG_FRAGMENTED;
1260
1261         if (req->req.n_ssids == 0)
1262                 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASSIVE;
1263
1264         cmd->scan_flags |= cpu_to_le32(flags);
1265
1266         cmd->flags = iwl_mvm_scan_rxon_flags(req->req.channels[0]->band);
1267         cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP |
1268                                         MAC_FILTER_IN_BEACON);
1269         iwl_mvm_unified_scan_fill_tx_cmd(mvm, cmd->tx_cmd, req->req.no_cck);
1270         iwl_mvm_scan_fill_ssids(cmd->direct_scan, req->req.ssids,
1271                                 req->req.n_ssids, 0);
1272
1273         cmd->schedule[0].delay = 0;
1274         cmd->schedule[0].iterations = 1;
1275         cmd->schedule[0].full_scan_mul = 0;
1276         cmd->schedule[1].delay = 0;
1277         cmd->schedule[1].iterations = 0;
1278         cmd->schedule[1].full_scan_mul = 0;
1279
1280         for (i = 1; i <= req->req.n_ssids; i++)
1281                 ssid_bitmap |= BIT(i);
1282
1283         iwl_mvm_lmac_scan_cfg_channels(mvm, req->req.channels,
1284                                        req->req.n_channels, ssid_bitmap,
1285                                        cmd);
1286
1287         iwl_mvm_build_unified_scan_probe(mvm, vif, &req->ies, cmd);
1288
1289         ret = iwl_mvm_send_cmd(mvm, &hcmd);
1290         if (!ret) {
1291                 IWL_DEBUG_SCAN(mvm, "Scan request was sent successfully\n");
1292         } else {
1293                 /*
1294                  * If the scan failed, it usually means that the FW was unable
1295                  * to allocate the time events. Warn on it, but maybe we
1296                  * should try to send the command again with different params.
1297                  */
1298                 IWL_ERR(mvm, "Scan failed! ret %d\n", ret);
1299                 mvm->scan_status = IWL_MVM_SCAN_NONE;
1300                 ret = -EIO;
1301         }
1302         return ret;
1303 }
1304
1305 int iwl_mvm_unified_sched_scan_lmac(struct iwl_mvm *mvm,
1306                                     struct ieee80211_vif *vif,
1307                                     struct cfg80211_sched_scan_request *req,
1308                                     struct ieee80211_scan_ies *ies)
1309 {
1310         struct iwl_host_cmd hcmd = {
1311                 .id = SCAN_OFFLOAD_REQUEST_CMD,
1312                 .len = { sizeof(struct iwl_scan_req_unified_lmac) +
1313                          sizeof(struct iwl_scan_channel_cfg_lmac) *
1314                                 mvm->fw->ucode_capa.n_scan_channels +
1315                          sizeof(struct iwl_scan_probe_req), },
1316                 .data = { mvm->scan_cmd, },
1317                 .dataflags = { IWL_HCMD_DFL_NOCOPY, },
1318         };
1319         struct iwl_scan_req_unified_lmac *cmd = mvm->scan_cmd;
1320         struct iwl_mvm_scan_params params = {};
1321         int ret;
1322         u32 flags = 0, ssid_bitmap = 0;
1323
1324         lockdep_assert_held(&mvm->mutex);
1325
1326         /* we should have failed registration if scan_cmd was NULL */
1327         if (WARN_ON(mvm->scan_cmd == NULL))
1328                 return -ENOMEM;
1329
1330         if (req->n_ssids > PROBE_OPTION_MAX ||
1331             ies->common_ie_len + ies->len[NL80211_BAND_2GHZ] +
1332             ies->len[NL80211_BAND_5GHZ] >
1333                 iwl_mvm_max_scan_ie_fw_cmd_room(mvm, true) ||
1334             req->n_channels > mvm->fw->ucode_capa.n_scan_channels)
1335                 return -ENOBUFS;
1336
1337         iwl_mvm_scan_calc_params(mvm, vif, req->n_ssids, 0, &params);
1338
1339         iwl_mvm_build_generic_unified_scan_cmd(mvm, cmd, &params);
1340
1341         cmd->n_channels = (u8)req->n_channels;
1342
1343         if (req->n_match_sets && req->match_sets[0].ssid.ssid_len) {
1344                 IWL_DEBUG_SCAN(mvm,
1345                                "Sending scheduled scan with filtering, n_match_sets %d\n",
1346                                req->n_match_sets);
1347         } else {
1348                 IWL_DEBUG_SCAN(mvm,
1349                                "Sending Scheduled scan without filtering\n");
1350                 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASS_ALL;
1351         }
1352
1353         if (req->n_ssids == 1 && req->ssids[0].ssid_len != 0)
1354                 flags |= IWL_MVM_LMAC_SCAN_FLAG_PRE_CONNECTION;
1355
1356         if (params.passive_fragmented)
1357                 flags |= IWL_MVM_LMAC_SCAN_FLAG_FRAGMENTED;
1358
1359         if (req->n_ssids == 0)
1360                 flags |= IWL_MVM_LMAC_SCAN_FLAG_PASSIVE;
1361
1362         cmd->scan_flags |= cpu_to_le32(flags);
1363
1364         cmd->flags = iwl_mvm_scan_rxon_flags(req->channels[0]->band);
1365         cmd->filter_flags = cpu_to_le32(MAC_FILTER_ACCEPT_GRP |
1366                                         MAC_FILTER_IN_BEACON);
1367         iwl_mvm_unified_scan_fill_tx_cmd(mvm, cmd->tx_cmd, false);
1368         iwl_scan_offload_build_ssid(req, cmd->direct_scan, &ssid_bitmap, false);
1369
1370         cmd->schedule[0].delay = cpu_to_le16(req->interval / MSEC_PER_SEC);
1371         cmd->schedule[0].iterations = IWL_FAST_SCHED_SCAN_ITERATIONS;
1372         cmd->schedule[0].full_scan_mul = 1;
1373
1374         cmd->schedule[1].delay = cpu_to_le16(req->interval / MSEC_PER_SEC);
1375         cmd->schedule[1].iterations = 0xff;
1376         cmd->schedule[1].full_scan_mul = IWL_FULL_SCAN_MULTIPLIER;
1377
1378         iwl_mvm_lmac_scan_cfg_channels(mvm, req->channels, req->n_channels,
1379                                        ssid_bitmap, cmd);
1380
1381         iwl_mvm_build_unified_scan_probe(mvm, vif, ies, cmd);
1382
1383         ret = iwl_mvm_send_cmd(mvm, &hcmd);
1384         if (!ret) {
1385                 IWL_DEBUG_SCAN(mvm,
1386                                "Sched scan request was sent successfully\n");
1387         } else {
1388                 /*
1389                  * If the scan failed, it usually means that the FW was unable
1390                  * to allocate the time events. Warn on it, but maybe we
1391                  * should try to send the command again with different params.
1392                  */
1393                 IWL_ERR(mvm, "Sched scan failed! ret %d\n", ret);
1394                 mvm->scan_status = IWL_MVM_SCAN_NONE;
1395                 ret = -EIO;
1396         }
1397         return ret;
1398 }
1399
1400
1401 int iwl_mvm_cancel_scan(struct iwl_mvm *mvm)
1402 {
1403         if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
1404                 return iwl_mvm_scan_offload_stop(mvm, true);
1405         return iwl_mvm_cancel_regular_scan(mvm);
1406 }