blob: 8386a86e2ca27a625399db91c662e03f66760d93 [file] [log] [blame]
Tomas Winkler2a421b92008-06-12 09:47:10 +08001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
Wey-Yi Guy901069c2011-04-05 09:42:00 -07005 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
Tomas Winkler2a421b92008-06-12 09:47:10 +08006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
19 * USA
20 *
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Tomas Winkler2a421b92008-06-12 09:47:10 +080026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *****************************************************************************/
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
John W. Linville7e272fc2008-09-24 18:13:14 -040029#include <linux/types.h>
Tomas Winkler2a421b92008-06-12 09:47:10 +080030#include <linux/etherdevice.h>
John W. Linville7e272fc2008-09-24 18:13:14 -040031#include <net/mac80211.h>
Tomas Winkler2a421b92008-06-12 09:47:10 +080032
33#include "iwl-eeprom.h"
34#include "iwl-dev.h"
35#include "iwl-core.h"
36#include "iwl-sta.h"
37#include "iwl-io.h"
38#include "iwl-helpers.h"
Wey-Yi Guye80d70e2011-06-03 07:54:15 -070039#include "iwl-agn.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070040#include "iwl-trans.h"
Tomas Winkler2a421b92008-06-12 09:47:10 +080041
42/* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
43 * sending probe req. This should be set long enough to hear probe responses
44 * from more than one AP. */
Tomas Winklerfe905f12008-07-11 11:53:39 +080045#define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
46#define IWL_ACTIVE_DWELL_TIME_52 (20)
47
48#define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
49#define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
Tomas Winkler2a421b92008-06-12 09:47:10 +080050
Tomas Winkler2a421b92008-06-12 09:47:10 +080051/* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
52 * Must be set longer than active dwell time.
53 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
54#define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
55#define IWL_PASSIVE_DWELL_TIME_52 (10)
56#define IWL_PASSIVE_DWELL_BASE (100)
57#define IWL_CHANNEL_TUNE_TIME 5
58
Stanislaw Gruszkacd446002010-09-13 14:46:36 +020059static int iwl_send_scan_abort(struct iwl_priv *priv)
60{
61 int ret;
62 struct iwl_rx_packet *pkt;
63 struct iwl_host_cmd cmd = {
64 .id = REPLY_SCAN_ABORT_CMD,
Emmanuel Grumbache419d622011-07-08 08:46:14 -070065 .flags = CMD_SYNC | CMD_WANT_SKB,
Stanislaw Gruszkacd446002010-09-13 14:46:36 +020066 };
Tomas Winklerfe905f12008-07-11 11:53:39 +080067
Stanislaw Gruszkacd446002010-09-13 14:46:36 +020068 /* Exit instantly with error when device is not ready
69 * to receive scan abort command or it does not perform
70 * hardware scan currently */
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -070071 if (!test_bit(STATUS_READY, &priv->shrd->status) ||
72 !test_bit(STATUS_GEO_CONFIGURED, &priv->shrd->status) ||
73 !test_bit(STATUS_SCAN_HW, &priv->shrd->status) ||
74 test_bit(STATUS_FW_ERROR, &priv->shrd->status) ||
75 test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
Stanislaw Gruszkacd446002010-09-13 14:46:36 +020076 return -EIO;
77
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070078 ret = iwl_trans_send_cmd(trans(priv), &cmd);
Stanislaw Gruszkacd446002010-09-13 14:46:36 +020079 if (ret)
80 return ret;
81
82 pkt = (struct iwl_rx_packet *)cmd.reply_page;
83 if (pkt->u.status != CAN_ABORT_STATUS) {
84 /* The scan abort will return 1 for success or
85 * 2 for "failure". A failure condition can be
86 * due to simply not being in an active scan which
87 * can occur if we send the scan abort before we
88 * the microcode has notified us that a scan is
89 * completed. */
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +020090 IWL_DEBUG_SCAN(priv, "SCAN_ABORT ret %d.\n", pkt->u.status);
Stanislaw Gruszkacd446002010-09-13 14:46:36 +020091 ret = -EIO;
92 }
93
Emmanuel Grumbach790428b2011-08-25 23:11:05 -070094 iwl_free_pages(priv->shrd, cmd.reply_page);
Stanislaw Gruszkacd446002010-09-13 14:46:36 +020095 return ret;
96}
97
Stanislaw Gruszka02d8c142010-09-13 14:46:38 +020098static void iwl_complete_scan(struct iwl_priv *priv, bool aborted)
99{
100 /* check if scan was requested from mac80211 */
101 if (priv->scan_request) {
102 IWL_DEBUG_SCAN(priv, "Complete scan in mac80211\n");
103 ieee80211_scan_completed(priv->hw, aborted);
104 }
105
Johannes Bergc6baf7f2011-07-23 10:24:47 -0700106 if (priv->scan_type == IWL_SCAN_ROC) {
107 ieee80211_remain_on_channel_expired(priv->hw);
108 priv->hw_roc_channel = NULL;
109 schedule_delayed_work(&priv->hw_roc_disable_work, 10 * HZ);
110 }
111
Johannes Berg266af4c72011-03-10 20:13:26 -0800112 priv->scan_type = IWL_SCAN_NORMAL;
Stanislaw Gruszka02d8c142010-09-13 14:46:38 +0200113 priv->scan_vif = NULL;
114 priv->scan_request = NULL;
115}
116
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +0200117void iwl_force_scan_end(struct iwl_priv *priv)
Stanislaw Gruszkaf5354c12010-09-13 14:46:39 +0200118{
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700119 lockdep_assert_held(&priv->shrd->mutex);
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +0200120
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700121 if (!test_bit(STATUS_SCANNING, &priv->shrd->status)) {
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +0200122 IWL_DEBUG_SCAN(priv, "Forcing scan end while not scanning\n");
123 return;
124 }
125
Stanislaw Gruszkaf5354c12010-09-13 14:46:39 +0200126 IWL_DEBUG_SCAN(priv, "Forcing scan end\n");
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700127 clear_bit(STATUS_SCANNING, &priv->shrd->status);
128 clear_bit(STATUS_SCAN_HW, &priv->shrd->status);
129 clear_bit(STATUS_SCAN_ABORTING, &priv->shrd->status);
Stanislaw Gruszkaf5354c12010-09-13 14:46:39 +0200130 iwl_complete_scan(priv, true);
131}
132
Stanislaw Gruszkacd446002010-09-13 14:46:36 +0200133static void iwl_do_scan_abort(struct iwl_priv *priv)
134{
135 int ret;
136
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700137 lockdep_assert_held(&priv->shrd->mutex);
Stanislaw Gruszkacd446002010-09-13 14:46:36 +0200138
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700139 if (!test_bit(STATUS_SCANNING, &priv->shrd->status)) {
Stanislaw Gruszkacd446002010-09-13 14:46:36 +0200140 IWL_DEBUG_SCAN(priv, "Not performing scan to abort\n");
141 return;
142 }
143
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700144 if (test_and_set_bit(STATUS_SCAN_ABORTING, &priv->shrd->status)) {
Stanislaw Gruszkacd446002010-09-13 14:46:36 +0200145 IWL_DEBUG_SCAN(priv, "Scan abort in progress\n");
146 return;
147 }
148
149 ret = iwl_send_scan_abort(priv);
150 if (ret) {
151 IWL_DEBUG_SCAN(priv, "Send scan abort failed %d\n", ret);
Stanislaw Gruszkaf5354c12010-09-13 14:46:39 +0200152 iwl_force_scan_end(priv);
Stanislaw Gruszkacd446002010-09-13 14:46:36 +0200153 } else
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300154 IWL_DEBUG_SCAN(priv, "Successfully send scan abort\n");
Stanislaw Gruszkacd446002010-09-13 14:46:36 +0200155}
Tomas Winklerfe905f12008-07-11 11:53:39 +0800156
Tomas Winkler2a421b92008-06-12 09:47:10 +0800157/**
158 * iwl_scan_cancel - Cancel any currently executing HW scan
Tomas Winkler2a421b92008-06-12 09:47:10 +0800159 */
160int iwl_scan_cancel(struct iwl_priv *priv)
161{
Stanislaw Gruszkacd446002010-09-13 14:46:36 +0200162 IWL_DEBUG_SCAN(priv, "Queuing abort scan\n");
Emmanuel Grumbach74e28e42011-08-25 23:10:41 -0700163 queue_work(priv->shrd->workqueue, &priv->abort_scan);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800164 return 0;
165}
Stanislaw Gruszkacd446002010-09-13 14:46:36 +0200166
Tomas Winkler2a421b92008-06-12 09:47:10 +0800167/**
168 * iwl_scan_cancel_timeout - Cancel any currently executing HW scan
169 * @ms: amount of time to wait (in milliseconds) for scan to abort
170 *
Tomas Winkler2a421b92008-06-12 09:47:10 +0800171 */
172int iwl_scan_cancel_timeout(struct iwl_priv *priv, unsigned long ms)
173{
Stanislaw Gruszkae693a802010-09-13 14:46:37 +0200174 unsigned long timeout = jiffies + msecs_to_jiffies(ms);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800175
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700176 lockdep_assert_held(&priv->shrd->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800177
Stanislaw Gruszkae693a802010-09-13 14:46:37 +0200178 IWL_DEBUG_SCAN(priv, "Scan cancel timeout\n");
179
180 iwl_do_scan_abort(priv);
181
182 while (time_before_eq(jiffies, timeout)) {
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700183 if (!test_bit(STATUS_SCAN_HW, &priv->shrd->status))
Stanislaw Gruszkae693a802010-09-13 14:46:37 +0200184 break;
185 msleep(20);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800186 }
187
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700188 return test_bit(STATUS_SCAN_HW, &priv->shrd->status);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800189}
Tomas Winkler2a421b92008-06-12 09:47:10 +0800190
Tomas Winkler2a421b92008-06-12 09:47:10 +0800191/* Service response to REPLY_SCAN_CMD (0x80) */
192static void iwl_rx_reply_scan(struct iwl_priv *priv,
193 struct iwl_rx_mem_buffer *rxb)
194{
195#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800196 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800197 struct iwl_scanreq_notification *notif =
198 (struct iwl_scanreq_notification *)pkt->u.raw;
199
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200200 IWL_DEBUG_SCAN(priv, "Scan request status = 0x%x\n", notif->status);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800201#endif
202}
203
204/* Service SCAN_START_NOTIFICATION (0x82) */
205static void iwl_rx_scan_start_notif(struct iwl_priv *priv,
206 struct iwl_rx_mem_buffer *rxb)
207{
Zhu Yi2f301222009-10-09 17:19:45 +0800208 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800209 struct iwl_scanstart_notification *notif =
210 (struct iwl_scanstart_notification *)pkt->u.raw;
211 priv->scan_start_tsf = le32_to_cpu(notif->tsf_low);
Tomas Winklere1623442009-01-27 14:27:56 -0800212 IWL_DEBUG_SCAN(priv, "Scan start: "
Tomas Winkler2a421b92008-06-12 09:47:10 +0800213 "%d [802.11%s] "
214 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
215 notif->channel,
216 notif->band ? "bg" : "a",
Tomas Winklerfe905f12008-07-11 11:53:39 +0800217 le32_to_cpu(notif->tsf_high),
218 le32_to_cpu(notif->tsf_low),
219 notif->status, notif->beacon_timer);
Johannes Bergc6baf7f2011-07-23 10:24:47 -0700220
Johannes Berg390808d2011-09-20 15:37:22 -0700221 if (priv->scan_type == IWL_SCAN_ROC &&
222 !priv->hw_roc_start_notified) {
Johannes Bergc6baf7f2011-07-23 10:24:47 -0700223 ieee80211_ready_on_channel(priv->hw);
Johannes Berg390808d2011-09-20 15:37:22 -0700224 priv->hw_roc_start_notified = true;
225 }
Tomas Winkler2a421b92008-06-12 09:47:10 +0800226}
227
228/* Service SCAN_RESULTS_NOTIFICATION (0x83) */
229static void iwl_rx_scan_results_notif(struct iwl_priv *priv,
230 struct iwl_rx_mem_buffer *rxb)
231{
232#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yi2f301222009-10-09 17:19:45 +0800233 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800234 struct iwl_scanresults_notification *notif =
235 (struct iwl_scanresults_notification *)pkt->u.raw;
236
Tomas Winklere1623442009-01-27 14:27:56 -0800237 IWL_DEBUG_SCAN(priv, "Scan ch.res: "
Tomas Winkler2a421b92008-06-12 09:47:10 +0800238 "%d [802.11%s] "
239 "(TSF: 0x%08X:%08X) - %d "
Henry Zhangh220575f2010-01-22 14:22:44 -0800240 "elapsed=%lu usec\n",
Tomas Winkler2a421b92008-06-12 09:47:10 +0800241 notif->channel,
242 notif->band ? "bg" : "a",
243 le32_to_cpu(notif->tsf_high),
244 le32_to_cpu(notif->tsf_low),
245 le32_to_cpu(notif->statistics[0]),
Henry Zhangh220575f2010-01-22 14:22:44 -0800246 le32_to_cpu(notif->tsf_low) - priv->scan_start_tsf);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800247#endif
Tomas Winkler2a421b92008-06-12 09:47:10 +0800248}
249
250/* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
251static void iwl_rx_scan_complete_notif(struct iwl_priv *priv,
252 struct iwl_rx_mem_buffer *rxb)
253{
Zhu Yi2f301222009-10-09 17:19:45 +0800254 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800255 struct iwl_scancomplete_notification *scan_notif = (void *)pkt->u.raw;
256
Tomas Winklere1623442009-01-27 14:27:56 -0800257 IWL_DEBUG_SCAN(priv, "Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
Tomas Winkler2a421b92008-06-12 09:47:10 +0800258 scan_notif->scanned_channels,
259 scan_notif->tsf_low,
260 scan_notif->tsf_high, scan_notif->status);
261
262 /* The HW is no longer scanning */
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700263 clear_bit(STATUS_SCAN_HW, &priv->shrd->status);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800264
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200265 IWL_DEBUG_SCAN(priv, "Scan on %sGHz took %dms\n",
Johannes Berg00700ee2010-04-06 04:12:37 -0700266 (priv->scan_band == IEEE80211_BAND_2GHZ) ? "2.4" : "5.2",
Stanislaw Gruszkaef1b21f2010-11-12 08:47:07 +0100267 jiffies_to_msecs(jiffies - priv->scan_start));
Tomas Winkler2a421b92008-06-12 09:47:10 +0800268
Emmanuel Grumbach74e28e42011-08-25 23:10:41 -0700269 queue_work(priv->shrd->workqueue, &priv->scan_completed);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800270
Wey-Yi Guyf78e5452010-08-23 07:57:15 -0700271 if (priv->iw_mode != NL80211_IFTYPE_ADHOC &&
Stanislaw Gruszka88e58fc2011-01-28 16:47:47 +0100272 iwl_advanced_bt_coexist(priv) &&
Johannes Bergd5926d92010-09-13 14:46:34 +0200273 priv->bt_status != scan_notif->bt_status) {
Wey-Yi Guyf78e5452010-08-23 07:57:15 -0700274 if (scan_notif->bt_status) {
275 /* BT on */
276 if (!priv->bt_ch_announce)
277 priv->bt_traffic_load =
278 IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
279 /*
280 * otherwise, no traffic load information provided
281 * no changes made
282 */
283 } else {
284 /* BT off */
285 priv->bt_traffic_load =
286 IWL_BT_COEX_TRAFFIC_LOAD_NONE;
287 }
288 priv->bt_status = scan_notif->bt_status;
Emmanuel Grumbach74e28e42011-08-25 23:10:41 -0700289 queue_work(priv->shrd->workqueue,
290 &priv->bt_traffic_change_work);
Wey-Yi Guyf78e5452010-08-23 07:57:15 -0700291 }
Tomas Winkler2a421b92008-06-12 09:47:10 +0800292}
293
294void iwl_setup_rx_scan_handlers(struct iwl_priv *priv)
295{
296 /* scan handlers */
297 priv->rx_handlers[REPLY_SCAN_CMD] = iwl_rx_reply_scan;
298 priv->rx_handlers[SCAN_START_NOTIFICATION] = iwl_rx_scan_start_notif;
299 priv->rx_handlers[SCAN_RESULTS_NOTIFICATION] =
300 iwl_rx_scan_results_notif;
301 priv->rx_handlers[SCAN_COMPLETE_NOTIFICATION] =
302 iwl_rx_scan_complete_notif;
303}
Tomas Winkler2a421b92008-06-12 09:47:10 +0800304
Johannes Berg6e809a12011-09-20 15:37:20 -0700305static u16 iwl_get_active_dwell_time(struct iwl_priv *priv,
306 enum ieee80211_band band, u8 n_probes)
Tomas Winkler2a421b92008-06-12 09:47:10 +0800307{
308 if (band == IEEE80211_BAND_5GHZ)
Tomas Winklerfe905f12008-07-11 11:53:39 +0800309 return IWL_ACTIVE_DWELL_TIME_52 +
310 IWL_ACTIVE_DWELL_FACTOR_52GHZ * (n_probes + 1);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800311 else
Tomas Winklerfe905f12008-07-11 11:53:39 +0800312 return IWL_ACTIVE_DWELL_TIME_24 +
313 IWL_ACTIVE_DWELL_FACTOR_24GHZ * (n_probes + 1);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800314}
315
Johannes Berg390808d2011-09-20 15:37:22 -0700316static u16 iwl_limit_dwell(struct iwl_priv *priv, u16 dwell_time)
317{
318 struct iwl_rxon_context *ctx;
319
320 /*
321 * If we're associated, we clamp the dwell time 98%
322 * of the smallest beacon interval (minus 2 * channel
323 * tune time)
324 */
325 for_each_context(priv, ctx) {
326 u16 value;
327
328 if (!iwl_is_associated_ctx(ctx))
329 continue;
330 value = ctx->beacon_int;
331 if (!value)
332 value = IWL_PASSIVE_DWELL_BASE;
333 value = (value * 98) / 100 - IWL_CHANNEL_TUNE_TIME * 2;
334 dwell_time = min(value, dwell_time);
335 }
336
337 return dwell_time;
338}
339
Johannes Berg6e809a12011-09-20 15:37:20 -0700340static u16 iwl_get_passive_dwell_time(struct iwl_priv *priv,
341 enum ieee80211_band band)
Tomas Winkler2a421b92008-06-12 09:47:10 +0800342{
Tomas Winklerfe905f12008-07-11 11:53:39 +0800343 u16 passive = (band == IEEE80211_BAND_2GHZ) ?
Tomas Winkler2a421b92008-06-12 09:47:10 +0800344 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_24 :
345 IWL_PASSIVE_DWELL_BASE + IWL_PASSIVE_DWELL_TIME_52;
346
Johannes Berg390808d2011-09-20 15:37:22 -0700347 return iwl_limit_dwell(priv, passive);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800348}
349
Johannes Berg6e809a12011-09-20 15:37:20 -0700350static int iwl_get_single_channel_for_scan(struct iwl_priv *priv,
351 struct ieee80211_vif *vif,
352 enum ieee80211_band band,
353 struct iwl_scan_channel *scan_ch)
354{
355 const struct ieee80211_supported_band *sband;
356 u16 passive_dwell = 0;
357 u16 active_dwell = 0;
358 int added = 0;
359 u16 channel = 0;
360
361 sband = iwl_get_hw_mode(priv, band);
362 if (!sband) {
363 IWL_ERR(priv, "invalid band\n");
364 return added;
365 }
366
367 active_dwell = iwl_get_active_dwell_time(priv, band, 0);
368 passive_dwell = iwl_get_passive_dwell_time(priv, band);
369
370 if (passive_dwell <= active_dwell)
371 passive_dwell = active_dwell + 1;
372
373 channel = iwl_get_single_channel_number(priv, band);
374 if (channel) {
375 scan_ch->channel = cpu_to_le16(channel);
376 scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE;
377 scan_ch->active_dwell = cpu_to_le16(active_dwell);
378 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
379 /* Set txpower levels to defaults */
380 scan_ch->dsp_atten = 110;
381 if (band == IEEE80211_BAND_5GHZ)
382 scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3;
383 else
384 scan_ch->tx_gain = ((1 << 5) | (5 << 3));
385 added++;
386 } else
387 IWL_ERR(priv, "no valid channel found\n");
388 return added;
389}
390
391static int iwl_get_channels_for_scan(struct iwl_priv *priv,
392 struct ieee80211_vif *vif,
393 enum ieee80211_band band,
394 u8 is_active, u8 n_probes,
395 struct iwl_scan_channel *scan_ch)
396{
397 struct ieee80211_channel *chan;
398 const struct ieee80211_supported_band *sband;
399 const struct iwl_channel_info *ch_info;
400 u16 passive_dwell = 0;
401 u16 active_dwell = 0;
402 int added, i;
403 u16 channel;
404
405 sband = iwl_get_hw_mode(priv, band);
406 if (!sband)
407 return 0;
408
409 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
410 passive_dwell = iwl_get_passive_dwell_time(priv, band);
411
412 if (passive_dwell <= active_dwell)
413 passive_dwell = active_dwell + 1;
414
415 for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
416 chan = priv->scan_request->channels[i];
417
418 if (chan->band != band)
419 continue;
420
421 channel = chan->hw_value;
422 scan_ch->channel = cpu_to_le16(channel);
423
424 ch_info = iwl_get_channel_info(priv, band, channel);
425 if (!is_channel_valid(ch_info)) {
426 IWL_DEBUG_SCAN(priv,
427 "Channel %d is INVALID for this band.\n",
428 channel);
429 continue;
430 }
431
432 if (!is_active || is_channel_passive(ch_info) ||
433 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN))
434 scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE;
435 else
436 scan_ch->type = SCAN_CHANNEL_TYPE_ACTIVE;
437
438 if (n_probes)
439 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
440
441 scan_ch->active_dwell = cpu_to_le16(active_dwell);
442 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
443
444 /* Set txpower levels to defaults */
445 scan_ch->dsp_atten = 110;
446
447 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
448 * power level:
449 * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3;
450 */
451 if (band == IEEE80211_BAND_5GHZ)
452 scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3;
453 else
454 scan_ch->tx_gain = ((1 << 5) | (5 << 3));
455
456 IWL_DEBUG_SCAN(priv, "Scanning ch=%d prob=0x%X [%s %d]\n",
457 channel, le32_to_cpu(scan_ch->type),
458 (scan_ch->type & SCAN_CHANNEL_TYPE_ACTIVE) ?
459 "ACTIVE" : "PASSIVE",
460 (scan_ch->type & SCAN_CHANNEL_TYPE_ACTIVE) ?
461 active_dwell : passive_dwell);
462
463 scan_ch++;
464 added++;
465 }
466
467 IWL_DEBUG_SCAN(priv, "total channels to scan %d\n", added);
468 return added;
469}
470
471static int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
472{
473 struct iwl_host_cmd cmd = {
474 .id = REPLY_SCAN_CMD,
475 .len = { sizeof(struct iwl_scan_cmd), },
476 .flags = CMD_SYNC,
477 };
478 struct iwl_scan_cmd *scan;
479 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
480 u32 rate_flags = 0;
481 u16 cmd_len;
482 u16 rx_chain = 0;
483 enum ieee80211_band band;
484 u8 n_probes = 0;
485 u8 rx_ant = hw_params(priv).valid_rx_ant;
486 u8 rate;
487 bool is_active = false;
488 int chan_mod;
489 u8 active_chains;
490 u8 scan_tx_antennas = hw_params(priv).valid_tx_ant;
491 int ret;
492
493 lockdep_assert_held(&priv->shrd->mutex);
494
495 if (vif)
496 ctx = iwl_rxon_ctx_from_vif(vif);
497
498 if (!priv->scan_cmd) {
499 priv->scan_cmd = kmalloc(sizeof(struct iwl_scan_cmd) +
500 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
501 if (!priv->scan_cmd) {
502 IWL_DEBUG_SCAN(priv,
503 "fail to allocate memory for scan\n");
504 return -ENOMEM;
505 }
506 }
507 scan = priv->scan_cmd;
508 memset(scan, 0, sizeof(struct iwl_scan_cmd) + IWL_MAX_SCAN_SIZE);
509
510 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
511 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
512
513 if (priv->scan_type != IWL_SCAN_ROC &&
514 iwl_is_any_associated(priv)) {
515 u16 interval = 0;
516 u32 extra;
517 u32 suspend_time = 100;
518 u32 scan_suspend_time = 100;
519
520 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
521 switch (priv->scan_type) {
522 case IWL_SCAN_ROC:
523 WARN_ON(1);
524 break;
525 case IWL_SCAN_RADIO_RESET:
526 interval = 0;
527 break;
528 case IWL_SCAN_NORMAL:
529 interval = vif->bss_conf.beacon_int;
530 break;
531 }
532
533 scan->suspend_time = 0;
534 scan->max_out_time = cpu_to_le32(200 * 1024);
535 if (!interval)
536 interval = suspend_time;
537
538 extra = (suspend_time / interval) << 22;
539 scan_suspend_time = (extra |
540 ((suspend_time % interval) * 1024));
541 scan->suspend_time = cpu_to_le32(scan_suspend_time);
542 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
543 scan_suspend_time, interval);
544 } else if (priv->scan_type == IWL_SCAN_ROC) {
545 scan->suspend_time = 0;
546 scan->max_out_time = 0;
547 scan->quiet_time = 0;
548 scan->quiet_plcp_th = 0;
549 }
550
551 switch (priv->scan_type) {
552 case IWL_SCAN_RADIO_RESET:
553 IWL_DEBUG_SCAN(priv, "Start internal passive scan.\n");
554 break;
555 case IWL_SCAN_NORMAL:
556 if (priv->scan_request->n_ssids) {
557 int i, p = 0;
558 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
559 for (i = 0; i < priv->scan_request->n_ssids; i++) {
560 /* always does wildcard anyway */
561 if (!priv->scan_request->ssids[i].ssid_len)
562 continue;
563 scan->direct_scan[p].id = WLAN_EID_SSID;
564 scan->direct_scan[p].len =
565 priv->scan_request->ssids[i].ssid_len;
566 memcpy(scan->direct_scan[p].ssid,
567 priv->scan_request->ssids[i].ssid,
568 priv->scan_request->ssids[i].ssid_len);
569 n_probes++;
570 p++;
571 }
572 is_active = true;
573 } else
574 IWL_DEBUG_SCAN(priv, "Start passive scan.\n");
575 break;
576 case IWL_SCAN_ROC:
577 IWL_DEBUG_SCAN(priv, "Start ROC scan.\n");
578 break;
579 }
580
581 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
582 scan->tx_cmd.sta_id = ctx->bcast_sta_id;
583 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
584
585 switch (priv->scan_band) {
586 case IEEE80211_BAND_2GHZ:
587 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
588 chan_mod = le32_to_cpu(
589 priv->contexts[IWL_RXON_CTX_BSS].active.flags &
590 RXON_FLG_CHANNEL_MODE_MSK)
591 >> RXON_FLG_CHANNEL_MODE_POS;
592 if (chan_mod == CHANNEL_MODE_PURE_40) {
593 rate = IWL_RATE_6M_PLCP;
594 } else {
595 rate = IWL_RATE_1M_PLCP;
596 rate_flags = RATE_MCS_CCK_MSK;
597 }
598 /*
599 * Internal scans are passive, so we can indiscriminately set
600 * the BT ignore flag on 2.4 GHz since it applies to TX only.
601 */
602 if (priv->cfg->bt_params &&
603 priv->cfg->bt_params->advanced_bt_coexist)
604 scan->tx_cmd.tx_flags |= TX_CMD_FLG_IGNORE_BT;
605 break;
606 case IEEE80211_BAND_5GHZ:
607 rate = IWL_RATE_6M_PLCP;
608 break;
609 default:
610 IWL_WARN(priv, "Invalid scan band\n");
611 return -EIO;
612 }
613
614 /*
615 * If active scanning is requested but a certain channel is
616 * marked passive, we can do active scanning if we detect
617 * transmissions.
618 *
619 * There is an issue with some firmware versions that triggers
620 * a sysassert on a "good CRC threshold" of zero (== disabled),
621 * on a radar channel even though this means that we should NOT
622 * send probes.
623 *
624 * The "good CRC threshold" is the number of frames that we
625 * need to receive during our dwell time on a channel before
626 * sending out probes -- setting this to a huge value will
627 * mean we never reach it, but at the same time work around
628 * the aforementioned issue. Thus use IWL_GOOD_CRC_TH_NEVER
629 * here instead of IWL_GOOD_CRC_TH_DISABLED.
630 *
631 * This was fixed in later versions along with some other
632 * scan changes, and the threshold behaves as a flag in those
633 * versions.
634 */
635 if (priv->new_scan_threshold_behaviour)
636 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT :
637 IWL_GOOD_CRC_TH_DISABLED;
638 else
639 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT :
640 IWL_GOOD_CRC_TH_NEVER;
641
642 band = priv->scan_band;
643
644 if (priv->cfg->scan_rx_antennas[band])
645 rx_ant = priv->cfg->scan_rx_antennas[band];
646
647 if (band == IEEE80211_BAND_2GHZ &&
648 priv->cfg->bt_params &&
649 priv->cfg->bt_params->advanced_bt_coexist) {
650 /* transmit 2.4 GHz probes only on first antenna */
651 scan_tx_antennas = first_antenna(scan_tx_antennas);
652 }
653
654 priv->scan_tx_ant[band] = iwl_toggle_tx_ant(priv,
655 priv->scan_tx_ant[band],
656 scan_tx_antennas);
657 rate_flags |= iwl_ant_idx_to_flags(priv->scan_tx_ant[band]);
658 scan->tx_cmd.rate_n_flags = iwl_hw_set_rate_n_flags(rate, rate_flags);
659
660 /* In power save mode use one chain, otherwise use all chains */
661 if (test_bit(STATUS_POWER_PMI, &priv->shrd->status)) {
662 /* rx_ant has been set to all valid chains previously */
663 active_chains = rx_ant &
664 ((u8)(priv->chain_noise_data.active_chains));
665 if (!active_chains)
666 active_chains = rx_ant;
667
668 IWL_DEBUG_SCAN(priv, "chain_noise_data.active_chains: %u\n",
669 priv->chain_noise_data.active_chains);
670
671 rx_ant = first_antenna(active_chains);
672 }
673 if (priv->cfg->bt_params &&
674 priv->cfg->bt_params->advanced_bt_coexist &&
675 priv->bt_full_concurrent) {
676 /* operated as 1x1 in full concurrency mode */
677 rx_ant = first_antenna(rx_ant);
678 }
679
680 /* MIMO is not used here, but value is required */
681 rx_chain |=
682 hw_params(priv).valid_rx_ant << RXON_RX_CHAIN_VALID_POS;
683 rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS;
684 rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_SEL_POS;
685 rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS;
686 scan->rx_chain = cpu_to_le16(rx_chain);
687 switch (priv->scan_type) {
688 case IWL_SCAN_NORMAL:
689 cmd_len = iwl_fill_probe_req(priv,
690 (struct ieee80211_mgmt *)scan->data,
691 vif->addr,
692 priv->scan_request->ie,
693 priv->scan_request->ie_len,
694 IWL_MAX_SCAN_SIZE - sizeof(*scan));
695 break;
696 case IWL_SCAN_RADIO_RESET:
697 case IWL_SCAN_ROC:
698 /* use bcast addr, will not be transmitted but must be valid */
699 cmd_len = iwl_fill_probe_req(priv,
700 (struct ieee80211_mgmt *)scan->data,
701 iwl_bcast_addr, NULL, 0,
702 IWL_MAX_SCAN_SIZE - sizeof(*scan));
703 break;
704 default:
705 BUG();
706 }
707 scan->tx_cmd.len = cpu_to_le16(cmd_len);
708
709 scan->filter_flags |= (RXON_FILTER_ACCEPT_GRP_MSK |
710 RXON_FILTER_BCON_AWARE_MSK);
711
712 switch (priv->scan_type) {
713 case IWL_SCAN_RADIO_RESET:
714 scan->channel_count =
715 iwl_get_single_channel_for_scan(priv, vif, band,
716 (void *)&scan->data[cmd_len]);
717 break;
718 case IWL_SCAN_NORMAL:
719 scan->channel_count =
720 iwl_get_channels_for_scan(priv, vif, band,
721 is_active, n_probes,
722 (void *)&scan->data[cmd_len]);
723 break;
724 case IWL_SCAN_ROC: {
725 struct iwl_scan_channel *scan_ch;
Johannes Berg390808d2011-09-20 15:37:22 -0700726 int n_chan, i;
727 u16 dwell;
Johannes Berg6e809a12011-09-20 15:37:20 -0700728
Johannes Berg390808d2011-09-20 15:37:22 -0700729 dwell = iwl_limit_dwell(priv, priv->hw_roc_duration);
730 n_chan = DIV_ROUND_UP(priv->hw_roc_duration, dwell);
731
732 scan->channel_count = n_chan;
Johannes Berg6e809a12011-09-20 15:37:20 -0700733
734 scan_ch = (void *)&scan->data[cmd_len];
Johannes Berg6e809a12011-09-20 15:37:20 -0700735
Johannes Berg390808d2011-09-20 15:37:22 -0700736 for (i = 0; i < n_chan; i++) {
737 scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE;
738 scan_ch->channel =
739 cpu_to_le16(priv->hw_roc_channel->hw_value);
Johannes Berg6e809a12011-09-20 15:37:20 -0700740
Johannes Berg390808d2011-09-20 15:37:22 -0700741 if (i == n_chan - 1)
742 dwell = priv->hw_roc_duration - i * dwell;
743
744 scan_ch->active_dwell =
745 scan_ch->passive_dwell = cpu_to_le16(dwell);
746
747 /* Set txpower levels to defaults */
748 scan_ch->dsp_atten = 110;
749
750 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
751 * power level:
752 * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3;
753 */
754 if (priv->hw_roc_channel->band == IEEE80211_BAND_5GHZ)
755 scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3;
756 else
757 scan_ch->tx_gain = ((1 << 5) | (5 << 3));
758
759 scan_ch++;
Johannes Berg6e809a12011-09-20 15:37:20 -0700760 }
Johannes Berg390808d2011-09-20 15:37:22 -0700761 }
762
Johannes Berg6e809a12011-09-20 15:37:20 -0700763 break;
764 }
765
766 if (scan->channel_count == 0) {
767 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
768 return -EIO;
769 }
770
771 cmd.len[0] += le16_to_cpu(scan->tx_cmd.len) +
772 scan->channel_count * sizeof(struct iwl_scan_channel);
773 cmd.data[0] = scan;
774 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
775 scan->len = cpu_to_le16(cmd.len[0]);
776
777 /* set scan bit here for PAN params */
778 set_bit(STATUS_SCAN_HW, &priv->shrd->status);
779
780 ret = iwlagn_set_pan_params(priv);
781 if (ret)
782 return ret;
783
784 ret = iwl_trans_send_cmd(trans(priv), &cmd);
785 if (ret) {
786 clear_bit(STATUS_SCAN_HW, &priv->shrd->status);
787 iwlagn_set_pan_params(priv);
788 }
789
790 return ret;
791}
792
Tomas Winklerf53696d2008-06-12 09:47:12 +0800793void iwl_init_scan_params(struct iwl_priv *priv)
794{
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700795 u8 ant_idx = fls(hw_params(priv).valid_tx_ant) - 1;
Tomas Winklerf53696d2008-06-12 09:47:12 +0800796 if (!priv->scan_tx_ant[IEEE80211_BAND_5GHZ])
Tomas Winkler76eff182008-10-14 12:32:45 -0700797 priv->scan_tx_ant[IEEE80211_BAND_5GHZ] = ant_idx;
Tomas Winklerf53696d2008-06-12 09:47:12 +0800798 if (!priv->scan_tx_ant[IEEE80211_BAND_2GHZ])
Tomas Winkler76eff182008-10-14 12:32:45 -0700799 priv->scan_tx_ant[IEEE80211_BAND_2GHZ] = ant_idx;
Tomas Winklerf53696d2008-06-12 09:47:12 +0800800}
801
Johannes Berg266af4c72011-03-10 20:13:26 -0800802int __must_check iwl_scan_initiate(struct iwl_priv *priv,
803 struct ieee80211_vif *vif,
804 enum iwl_scan_type scan_type,
805 enum ieee80211_band band)
Tomas Winkler2a421b92008-06-12 09:47:10 +0800806{
Johannes Berg3eecce52010-09-13 14:46:33 +0200807 int ret;
Johannes Berg88be0262010-04-07 00:21:36 -0700808
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700809 lockdep_assert_held(&priv->shrd->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800810
Johannes Berg3eecce52010-09-13 14:46:33 +0200811 cancel_delayed_work(&priv->scan_check);
812
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700813 if (!iwl_is_ready_rf(priv->shrd)) {
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200814 IWL_WARN(priv, "Request scan called when driver not ready.\n");
Johannes Berg3eecce52010-09-13 14:46:33 +0200815 return -EIO;
816 }
817
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700818 if (test_bit(STATUS_SCAN_HW, &priv->shrd->status)) {
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200819 IWL_DEBUG_SCAN(priv,
Johannes Berg3eecce52010-09-13 14:46:33 +0200820 "Multiple concurrent scan requests in parallel.\n");
821 return -EBUSY;
822 }
823
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700824 if (test_bit(STATUS_SCAN_ABORTING, &priv->shrd->status)) {
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200825 IWL_DEBUG_SCAN(priv, "Scan request while abort pending.\n");
Johannes Berg3eecce52010-09-13 14:46:33 +0200826 return -EBUSY;
827 }
828
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200829 IWL_DEBUG_SCAN(priv, "Starting %sscan...\n",
Johannes Berg266af4c72011-03-10 20:13:26 -0800830 scan_type == IWL_SCAN_NORMAL ? "" :
Johannes Bergc6baf7f2011-07-23 10:24:47 -0700831 scan_type == IWL_SCAN_ROC ? "remain-on-channel " :
Johannes Berg266af4c72011-03-10 20:13:26 -0800832 "internal short ");
Johannes Berg3eecce52010-09-13 14:46:33 +0200833
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700834 set_bit(STATUS_SCANNING, &priv->shrd->status);
Johannes Berg266af4c72011-03-10 20:13:26 -0800835 priv->scan_type = scan_type;
Johannes Berg3eecce52010-09-13 14:46:33 +0200836 priv->scan_start = jiffies;
837 priv->scan_band = band;
838
Don Fry5c3d29f2011-07-08 08:46:29 -0700839 ret = iwlagn_request_scan(priv, vif);
Johannes Berg3eecce52010-09-13 14:46:33 +0200840 if (ret) {
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700841 clear_bit(STATUS_SCANNING, &priv->shrd->status);
Johannes Berg266af4c72011-03-10 20:13:26 -0800842 priv->scan_type = IWL_SCAN_NORMAL;
Johannes Berg3eecce52010-09-13 14:46:33 +0200843 return ret;
844 }
845
Emmanuel Grumbach74e28e42011-08-25 23:10:41 -0700846 queue_delayed_work(priv->shrd->workqueue, &priv->scan_check,
Johannes Berg3eecce52010-09-13 14:46:33 +0200847 IWL_SCAN_CHECK_WATCHDOG);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800848
849 return 0;
850}
Tomas Winkler2a421b92008-06-12 09:47:10 +0800851
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -0800852int iwl_mac_hw_scan(struct ieee80211_hw *hw,
Johannes Berga060bbf2010-04-27 11:59:34 +0200853 struct ieee80211_vif *vif,
854 struct cfg80211_scan_request *req)
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -0800855{
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -0800856 struct iwl_priv *priv = hw->priv;
Johannes Berg00700ee2010-04-06 04:12:37 -0700857 int ret;
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -0800858
859 IWL_DEBUG_MAC80211(priv, "enter\n");
860
Johannes Berg00700ee2010-04-06 04:12:37 -0700861 if (req->n_channels == 0)
862 return -EINVAL;
863
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700864 mutex_lock(&priv->shrd->mutex);
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -0800865
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700866 if (test_bit(STATUS_SCANNING, &priv->shrd->status) &&
Johannes Berg266af4c72011-03-10 20:13:26 -0800867 priv->scan_type != IWL_SCAN_NORMAL) {
Reinette Chatrebbcbb9e2010-02-02 10:57:12 -0800868 IWL_DEBUG_SCAN(priv, "Scan already in progress.\n");
869 ret = -EAGAIN;
870 goto out_unlock;
871 }
872
Johannes Berg00700ee2010-04-06 04:12:37 -0700873 /* mac80211 will only ask for one band at a time */
Johannes Berg1ecf9fc2009-04-20 14:36:56 -0700874 priv->scan_request = req;
Johannes Bergf84b29e2010-05-18 02:29:13 -0700875 priv->scan_vif = vif;
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -0800876
Johannes Bergf84b29e2010-05-18 02:29:13 -0700877 /*
878 * If an internal scan is in progress, just set
879 * up the scan_request as per above.
880 */
Johannes Berg266af4c72011-03-10 20:13:26 -0800881 if (priv->scan_type != IWL_SCAN_NORMAL) {
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200882 IWL_DEBUG_SCAN(priv, "SCAN request during internal scan\n");
Johannes Bergf84b29e2010-05-18 02:29:13 -0700883 ret = 0;
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200884 } else
Johannes Berg266af4c72011-03-10 20:13:26 -0800885 ret = iwl_scan_initiate(priv, vif, IWL_SCAN_NORMAL,
Johannes Berg3eecce52010-09-13 14:46:33 +0200886 req->channels[0]->band);
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -0800887
888 IWL_DEBUG_MAC80211(priv, "leave\n");
889
890out_unlock:
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700891 mutex_unlock(&priv->shrd->mutex);
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -0800892
893 return ret;
894}
Abhijeet Kolekare9dde6f62009-02-18 15:54:27 -0800895
Wey-Yi Guyafbdd692010-01-22 14:22:43 -0800896/*
897 * internal short scan, this function should only been called while associated.
898 * It will reset and tune the radio to prevent possible RF related problem
899 */
Johannes Berg88be0262010-04-07 00:21:36 -0700900void iwl_internal_short_hw_scan(struct iwl_priv *priv)
Wey-Yi Guyafbdd692010-01-22 14:22:43 -0800901{
Emmanuel Grumbach74e28e42011-08-25 23:10:41 -0700902 queue_work(priv->shrd->workqueue, &priv->start_internal_scan);
Johannes Berg88be0262010-04-07 00:21:36 -0700903}
904
Stanislaw Gruszkac2408792010-07-30 16:41:08 +0200905static void iwl_bg_start_internal_scan(struct work_struct *work)
Johannes Berg88be0262010-04-07 00:21:36 -0700906{
907 struct iwl_priv *priv =
908 container_of(work, struct iwl_priv, start_internal_scan);
909
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200910 IWL_DEBUG_SCAN(priv, "Start internal scan\n");
911
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700912 mutex_lock(&priv->shrd->mutex);
Wey-Yi Guyafbdd692010-01-22 14:22:43 -0800913
Johannes Berg266af4c72011-03-10 20:13:26 -0800914 if (priv->scan_type == IWL_SCAN_RADIO_RESET) {
Reinette Chatre073d5ea2010-05-13 14:49:44 -0700915 IWL_DEBUG_SCAN(priv, "Internal scan already in progress\n");
916 goto unlock;
917 }
918
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700919 if (test_bit(STATUS_SCANNING, &priv->shrd->status)) {
Wey-Yi Guyafbdd692010-01-22 14:22:43 -0800920 IWL_DEBUG_SCAN(priv, "Scan already in progress.\n");
Johannes Berg88be0262010-04-07 00:21:36 -0700921 goto unlock;
Wey-Yi Guyafbdd692010-01-22 14:22:43 -0800922 }
Johannes Berg88be0262010-04-07 00:21:36 -0700923
Johannes Berg266af4c72011-03-10 20:13:26 -0800924 if (iwl_scan_initiate(priv, NULL, IWL_SCAN_RADIO_RESET, priv->band))
Johannes Berg3eecce52010-09-13 14:46:33 +0200925 IWL_DEBUG_SCAN(priv, "failed to start internal short scan\n");
Johannes Berg88be0262010-04-07 00:21:36 -0700926 unlock:
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700927 mutex_unlock(&priv->shrd->mutex);
Wey-Yi Guyafbdd692010-01-22 14:22:43 -0800928}
Wey-Yi Guyafbdd692010-01-22 14:22:43 -0800929
Stanislaw Gruszkac2408792010-07-30 16:41:08 +0200930static void iwl_bg_scan_check(struct work_struct *data)
Tomas Winkler2a421b92008-06-12 09:47:10 +0800931{
932 struct iwl_priv *priv =
933 container_of(data, struct iwl_priv, scan_check.work);
934
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200935 IWL_DEBUG_SCAN(priv, "Scan check work\n");
936
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +0200937 /* Since we are here firmware does not finish scan and
938 * most likely is in bad shape, so we don't bother to
939 * send abort command, just force scan complete to mac80211 */
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700940 mutex_lock(&priv->shrd->mutex);
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +0200941 iwl_force_scan_end(priv);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700942 mutex_unlock(&priv->shrd->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800943}
Samuel Ortiz77fecfb82009-01-23 13:45:12 -0800944
Tomas Winkler2a421b92008-06-12 09:47:10 +0800945/**
Tomas Winkler2a421b92008-06-12 09:47:10 +0800946 * iwl_fill_probe_req - fill in all required fields and IE for probe request
947 */
Tomas Winklerf53696d2008-06-12 09:47:12 +0800948
Johannes Berg1ecf9fc2009-04-20 14:36:56 -0700949u16 iwl_fill_probe_req(struct iwl_priv *priv, struct ieee80211_mgmt *frame,
Johannes Berg3a0b9aa2010-05-12 03:33:12 -0700950 const u8 *ta, const u8 *ies, int ie_len, int left)
Tomas Winkler2a421b92008-06-12 09:47:10 +0800951{
952 int len = 0;
953 u8 *pos = NULL;
Tomas Winklerf53696d2008-06-12 09:47:12 +0800954
Tomas Winkler2a421b92008-06-12 09:47:10 +0800955 /* Make sure there is enough space for the probe request,
956 * two mandatory IEs and the data */
957 left -= 24;
958 if (left < 0)
959 return 0;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800960
961 frame->frame_control = cpu_to_le16(IEEE80211_STYPE_PROBE_REQ);
962 memcpy(frame->da, iwl_bcast_addr, ETH_ALEN);
Johannes Berg3a0b9aa2010-05-12 03:33:12 -0700963 memcpy(frame->sa, ta, ETH_ALEN);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800964 memcpy(frame->bssid, iwl_bcast_addr, ETH_ALEN);
965 frame->seq_ctrl = 0;
966
Tomas Winklerf53696d2008-06-12 09:47:12 +0800967 len += 24;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800968
Tomas Winklerf53696d2008-06-12 09:47:12 +0800969 /* ...next IE... */
970 pos = &frame->u.probe_req.variable[0];
971
972 /* fill in our indirect SSID IE */
Tomas Winkler2a421b92008-06-12 09:47:10 +0800973 left -= 2;
974 if (left < 0)
975 return 0;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800976 *pos++ = WLAN_EID_SSID;
Reinette Chatre1382c712010-02-25 10:02:19 -0800977 *pos++ = 0;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800978
Reinette Chatre1382c712010-02-25 10:02:19 -0800979 len += 2;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800980
Johannes Berg1ecf9fc2009-04-20 14:36:56 -0700981 if (WARN_ON(left < ie_len))
982 return len;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800983
Stanislaw Gruszkaeb2ec0f2010-04-16 15:46:41 +0200984 if (ies && ie_len) {
Wey-Yi Guyafbdd692010-01-22 14:22:43 -0800985 memcpy(pos, ies, ie_len);
Stanislaw Gruszkaeb2ec0f2010-04-16 15:46:41 +0200986 len += ie_len;
987 }
Tomas Winklerf53696d2008-06-12 09:47:12 +0800988
Tomas Winkler2a421b92008-06-12 09:47:10 +0800989 return (u16)len;
990}
991
Stanislaw Gruszkac2408792010-07-30 16:41:08 +0200992static void iwl_bg_abort_scan(struct work_struct *work)
Tomas Winkler2a421b92008-06-12 09:47:10 +0800993{
994 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan);
995
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +0200996 IWL_DEBUG_SCAN(priv, "Abort scan work\n");
997
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +0200998 /* We keep scan_check work queued in case when firmware will not
999 * report back scan completed notification */
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001000 mutex_lock(&priv->shrd->mutex);
Stanislaw Gruszka6bd17582010-09-13 14:46:40 +02001001 iwl_scan_cancel_timeout(priv, 200);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001002 mutex_unlock(&priv->shrd->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08001003}
1004
Stanislaw Gruszkac2408792010-07-30 16:41:08 +02001005static void iwl_bg_scan_completed(struct work_struct *work)
Tomas Winklereedda362008-10-06 16:05:32 +08001006{
1007 struct iwl_priv *priv =
1008 container_of(work, struct iwl_priv, scan_completed);
Stanislaw Gruszka02d8c142010-09-13 14:46:38 +02001009 bool aborted;
Tomas Winklereedda362008-10-06 16:05:32 +08001010
Johannes Berg266af4c72011-03-10 20:13:26 -08001011 IWL_DEBUG_SCAN(priv, "Completed scan.\n");
Tomas Winklereedda362008-10-06 16:05:32 +08001012
Reinette Chatrefbc9f972009-05-15 16:13:46 -07001013 cancel_delayed_work(&priv->scan_check);
1014
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001015 mutex_lock(&priv->shrd->mutex);
Johannes Bergd5926d92010-09-13 14:46:34 +02001016
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -07001017 aborted = test_and_clear_bit(STATUS_SCAN_ABORTING, &priv->shrd->status);
Johannes Bergd5926d92010-09-13 14:46:34 +02001018 if (aborted)
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +02001019 IWL_DEBUG_SCAN(priv, "Aborted scan completed.\n");
Johannes Bergd5926d92010-09-13 14:46:34 +02001020
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -07001021 if (!test_and_clear_bit(STATUS_SCANNING, &priv->shrd->status)) {
Stanislaw Gruszka7cf24422010-09-13 14:46:44 +02001022 IWL_DEBUG_SCAN(priv, "Scan already completed.\n");
Stanislaw Gruszka3a160a52010-09-13 14:46:45 +02001023 goto out_settings;
Wey-Yi Guyafbdd692010-01-22 14:22:43 -08001024 }
Johannes Bergf84b29e2010-05-18 02:29:13 -07001025
Johannes Bergc6baf7f2011-07-23 10:24:47 -07001026 if (priv->scan_type == IWL_SCAN_ROC) {
1027 ieee80211_remain_on_channel_expired(priv->hw);
1028 priv->hw_roc_channel = NULL;
1029 schedule_delayed_work(&priv->hw_roc_disable_work, 10 * HZ);
Johannes Berg266af4c72011-03-10 20:13:26 -08001030 }
1031
1032 if (priv->scan_type != IWL_SCAN_NORMAL && !aborted) {
Stanislaw Gruszka02d8c142010-09-13 14:46:38 +02001033 int err;
Johannes Bergf84b29e2010-05-18 02:29:13 -07001034
Stanislaw Gruszka02d8c142010-09-13 14:46:38 +02001035 /* Check if mac80211 requested scan during our internal scan */
1036 if (priv->scan_request == NULL)
1037 goto out_complete;
1038
1039 /* If so request a new scan */
Johannes Berg266af4c72011-03-10 20:13:26 -08001040 err = iwl_scan_initiate(priv, priv->scan_vif, IWL_SCAN_NORMAL,
Johannes Berg3eecce52010-09-13 14:46:33 +02001041 priv->scan_request->channels[0]->band);
Johannes Berg3eecce52010-09-13 14:46:33 +02001042 if (err) {
1043 IWL_DEBUG_SCAN(priv,
1044 "failed to initiate pending scan: %d\n", err);
Stanislaw Gruszka02d8c142010-09-13 14:46:38 +02001045 aborted = true;
1046 goto out_complete;
1047 }
1048
1049 goto out;
Johannes Berg3eecce52010-09-13 14:46:33 +02001050 }
Johannes Bergf84b29e2010-05-18 02:29:13 -07001051
Stanislaw Gruszka02d8c142010-09-13 14:46:38 +02001052out_complete:
1053 iwl_complete_scan(priv, aborted);
1054
Stanislaw Gruszka3a160a52010-09-13 14:46:45 +02001055out_settings:
Stanislaw Gruszka02d8c142010-09-13 14:46:38 +02001056 /* Can we still talk to firmware ? */
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -07001057 if (!iwl_is_ready_rf(priv->shrd))
Stanislaw Gruszka02d8c142010-09-13 14:46:38 +02001058 goto out;
1059
Wey-Yi Guye80d70e2011-06-03 07:54:15 -07001060 iwlagn_post_scan(priv);
Johannes Berg52a02d12010-08-27 09:44:50 -07001061
Stanislaw Gruszkaa25a66a2010-10-22 17:04:26 +02001062out:
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001063 mutex_unlock(&priv->shrd->mutex);
Tomas Winklereedda362008-10-06 16:05:32 +08001064}
Tomas Winklereedda362008-10-06 16:05:32 +08001065
Tomas Winkler2a421b92008-06-12 09:47:10 +08001066void iwl_setup_scan_deferred_work(struct iwl_priv *priv)
1067{
Tomas Winklereedda362008-10-06 16:05:32 +08001068 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
Tomas Winkler2a421b92008-06-12 09:47:10 +08001069 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
Johannes Berg88be0262010-04-07 00:21:36 -07001070 INIT_WORK(&priv->start_internal_scan, iwl_bg_start_internal_scan);
Tomas Winkler2a421b92008-06-12 09:47:10 +08001071 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);
1072}
Tomas Winkler2a421b92008-06-12 09:47:10 +08001073
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +02001074void iwl_cancel_scan_deferred_work(struct iwl_priv *priv)
1075{
1076 cancel_work_sync(&priv->start_internal_scan);
1077 cancel_work_sync(&priv->abort_scan);
1078 cancel_work_sync(&priv->scan_completed);
1079
1080 if (cancel_delayed_work_sync(&priv->scan_check)) {
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001081 mutex_lock(&priv->shrd->mutex);
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +02001082 iwl_force_scan_end(priv);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001083 mutex_unlock(&priv->shrd->mutex);
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +02001084 }
1085}