1 /******************************************************************************
5 * Copyright(c) 2008 Intel Corporation. All rights reserved.
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.
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.
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,
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
24 * Contact Information:
25 * Tomas Winkler <tomas.winkler@intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *****************************************************************************/
28 #include <net/mac80211.h>
29 #include <linux/etherdevice.h>
31 #include "iwl-eeprom.h"
36 #include "iwl-helpers.h"
38 /* For active scan, listen ACTIVE_DWELL_TIME (msec) on each channel after
39 * sending probe req. This should be set long enough to hear probe responses
40 * from more than one AP. */
41 #define IWL_ACTIVE_DWELL_TIME_24 (30) /* all times in msec */
42 #define IWL_ACTIVE_DWELL_TIME_52 (20)
44 #define IWL_ACTIVE_DWELL_FACTOR_24GHZ (3)
45 #define IWL_ACTIVE_DWELL_FACTOR_52GHZ (2)
47 /* For faster active scanning, scan will move to the next channel if fewer than
48 * PLCP_QUIET_THRESH packets are heard on this channel within
49 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
50 * time if it's a quiet channel (nothing responded to our probe, and there's
52 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
53 #define IWL_PLCP_QUIET_THRESH __constant_cpu_to_le16(1) /* packets */
54 #define IWL_ACTIVE_QUIET_TIME __constant_cpu_to_le16(10) /* msec */
56 /* For passive scan, listen PASSIVE_DWELL_TIME (msec) on each channel.
57 * Must be set longer than active dwell time.
58 * For the most reliable scan, set > AP beacon interval (typically 100msec). */
59 #define IWL_PASSIVE_DWELL_TIME_24 (20) /* all times in msec */
60 #define IWL_PASSIVE_DWELL_TIME_52 (10)
61 #define IWL_PASSIVE_DWELL_BASE (100)
62 #define IWL_CHANNEL_TUNE_TIME 5
64 #define IWL_SCAN_PROBE_MASK(n) cpu_to_le32((BIT(n) | (BIT(n) - BIT(1))))
67 static int scan_tx_ant
[3] = {
68 RATE_MCS_ANT_A_MSK
, RATE_MCS_ANT_B_MSK
, RATE_MCS_ANT_C_MSK
73 static int iwl_is_empty_essid(const char *essid
, int essid_len
)
75 /* Single white space is for Linksys APs */
76 if (essid_len
== 1 && essid
[0] == ' ')
79 /* Otherwise, if the entire essid is 0, we assume it is hidden */
82 if (essid
[essid_len
] != '\0')
91 static const char *iwl_escape_essid(const char *essid
, u8 essid_len
)
93 static char escaped
[IW_ESSID_MAX_SIZE
* 2 + 1];
94 const char *s
= essid
;
97 if (iwl_is_empty_essid(essid
, essid_len
)) {
98 memcpy(escaped
, "<hidden>", sizeof("<hidden>"));
102 essid_len
= min(essid_len
, (u8
) IW_ESSID_MAX_SIZE
);
103 while (essid_len
--) {
116 * iwl_scan_cancel - Cancel any currently executing HW scan
118 * NOTE: priv->mutex is not required before calling this function
120 int iwl_scan_cancel(struct iwl_priv
*priv
)
122 if (!test_bit(STATUS_SCAN_HW
, &priv
->status
)) {
123 clear_bit(STATUS_SCANNING
, &priv
->status
);
127 if (test_bit(STATUS_SCANNING
, &priv
->status
)) {
128 if (!test_bit(STATUS_SCAN_ABORTING
, &priv
->status
)) {
129 IWL_DEBUG_SCAN("Queuing scan abort.\n");
130 set_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
131 queue_work(priv
->workqueue
, &priv
->abort_scan
);
134 IWL_DEBUG_SCAN("Scan abort already in progress.\n");
136 return test_bit(STATUS_SCANNING
, &priv
->status
);
141 EXPORT_SYMBOL(iwl_scan_cancel
);
143 * iwl_scan_cancel_timeout - Cancel any currently executing HW scan
144 * @ms: amount of time to wait (in milliseconds) for scan to abort
146 * NOTE: priv->mutex must be held before calling this function
148 int iwl_scan_cancel_timeout(struct iwl_priv
*priv
, unsigned long ms
)
150 unsigned long now
= jiffies
;
153 ret
= iwl_scan_cancel(priv
);
155 mutex_unlock(&priv
->mutex
);
156 while (!time_after(jiffies
, now
+ msecs_to_jiffies(ms
)) &&
157 test_bit(STATUS_SCANNING
, &priv
->status
))
159 mutex_lock(&priv
->mutex
);
161 return test_bit(STATUS_SCANNING
, &priv
->status
);
166 EXPORT_SYMBOL(iwl_scan_cancel_timeout
);
168 static int iwl_send_scan_abort(struct iwl_priv
*priv
)
171 struct iwl_rx_packet
*res
;
172 struct iwl_host_cmd cmd
= {
173 .id
= REPLY_SCAN_ABORT_CMD
,
174 .meta
.flags
= CMD_WANT_SKB
,
177 /* If there isn't a scan actively going on in the hardware
178 * then we are in between scan bands and not actually
179 * actively scanning, so don't send the abort command */
180 if (!test_bit(STATUS_SCAN_HW
, &priv
->status
)) {
181 clear_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
185 ret
= iwl_send_cmd_sync(priv
, &cmd
);
187 clear_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
191 res
= (struct iwl_rx_packet
*)cmd
.meta
.u
.skb
->data
;
192 if (res
->u
.status
!= CAN_ABORT_STATUS
) {
193 /* The scan abort will return 1 for success or
194 * 2 for "failure". A failure condition can be
195 * due to simply not being in an active scan which
196 * can occur if we send the scan abort before we
197 * the microcode has notified us that a scan is
199 IWL_DEBUG_INFO("SCAN_ABORT returned %d.\n", res
->u
.status
);
200 clear_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
201 clear_bit(STATUS_SCAN_HW
, &priv
->status
);
204 priv
->alloc_rxb_skb
--;
205 dev_kfree_skb_any(cmd
.meta
.u
.skb
);
211 /* Service response to REPLY_SCAN_CMD (0x80) */
212 static void iwl_rx_reply_scan(struct iwl_priv
*priv
,
213 struct iwl_rx_mem_buffer
*rxb
)
215 #ifdef CONFIG_IWLWIFI_DEBUG
216 struct iwl_rx_packet
*pkt
= (struct iwl_rx_packet
*)rxb
->skb
->data
;
217 struct iwl_scanreq_notification
*notif
=
218 (struct iwl_scanreq_notification
*)pkt
->u
.raw
;
220 IWL_DEBUG_RX("Scan request status = 0x%x\n", notif
->status
);
224 /* Service SCAN_START_NOTIFICATION (0x82) */
225 static void iwl_rx_scan_start_notif(struct iwl_priv
*priv
,
226 struct iwl_rx_mem_buffer
*rxb
)
228 struct iwl_rx_packet
*pkt
= (struct iwl_rx_packet
*)rxb
->skb
->data
;
229 struct iwl_scanstart_notification
*notif
=
230 (struct iwl_scanstart_notification
*)pkt
->u
.raw
;
231 priv
->scan_start_tsf
= le32_to_cpu(notif
->tsf_low
);
232 IWL_DEBUG_SCAN("Scan start: "
234 "(TSF: 0x%08X:%08X) - %d (beacon timer %u)\n",
236 notif
->band
? "bg" : "a",
237 le32_to_cpu(notif
->tsf_high
),
238 le32_to_cpu(notif
->tsf_low
),
239 notif
->status
, notif
->beacon_timer
);
242 /* Service SCAN_RESULTS_NOTIFICATION (0x83) */
243 static void iwl_rx_scan_results_notif(struct iwl_priv
*priv
,
244 struct iwl_rx_mem_buffer
*rxb
)
246 #ifdef CONFIG_IWLWIFI_DEBUG
247 struct iwl_rx_packet
*pkt
= (struct iwl_rx_packet
*)rxb
->skb
->data
;
248 struct iwl_scanresults_notification
*notif
=
249 (struct iwl_scanresults_notification
*)pkt
->u
.raw
;
251 IWL_DEBUG_SCAN("Scan ch.res: "
253 "(TSF: 0x%08X:%08X) - %d "
254 "elapsed=%lu usec (%dms since last)\n",
256 notif
->band
? "bg" : "a",
257 le32_to_cpu(notif
->tsf_high
),
258 le32_to_cpu(notif
->tsf_low
),
259 le32_to_cpu(notif
->statistics
[0]),
260 le32_to_cpu(notif
->tsf_low
) - priv
->scan_start_tsf
,
261 jiffies_to_msecs(elapsed_jiffies
262 (priv
->last_scan_jiffies
, jiffies
)));
265 priv
->last_scan_jiffies
= jiffies
;
266 priv
->next_scan_jiffies
= 0;
269 /* Service SCAN_COMPLETE_NOTIFICATION (0x84) */
270 static void iwl_rx_scan_complete_notif(struct iwl_priv
*priv
,
271 struct iwl_rx_mem_buffer
*rxb
)
273 #ifdef CONFIG_IWLWIFI_DEBUG
274 struct iwl_rx_packet
*pkt
= (struct iwl_rx_packet
*)rxb
->skb
->data
;
275 struct iwl_scancomplete_notification
*scan_notif
= (void *)pkt
->u
.raw
;
277 IWL_DEBUG_SCAN("Scan complete: %d channels (TSF 0x%08X:%08X) - %d\n",
278 scan_notif
->scanned_channels
,
280 scan_notif
->tsf_high
, scan_notif
->status
);
283 /* The HW is no longer scanning */
284 clear_bit(STATUS_SCAN_HW
, &priv
->status
);
286 /* The scan completion notification came in, so kill that timer... */
287 cancel_delayed_work(&priv
->scan_check
);
289 IWL_DEBUG_INFO("Scan pass on %sGHz took %dms\n",
290 (priv
->scan_bands
& BIT(IEEE80211_BAND_2GHZ
)) ?
292 jiffies_to_msecs(elapsed_jiffies
293 (priv
->scan_pass_start
, jiffies
)));
295 /* Remove this scanned band from the list of pending
296 * bands to scan, band G precedes A in order of scanning
297 * as seen in iwl_bg_request_scan */
298 if (priv
->scan_bands
& BIT(IEEE80211_BAND_2GHZ
))
299 priv
->scan_bands
&= ~BIT(IEEE80211_BAND_2GHZ
);
300 else if (priv
->scan_bands
& BIT(IEEE80211_BAND_5GHZ
))
301 priv
->scan_bands
&= ~BIT(IEEE80211_BAND_5GHZ
);
303 /* If a request to abort was given, or the scan did not succeed
304 * then we reset the scan state machine and terminate,
305 * re-queuing another scan if one has been requested */
306 if (test_bit(STATUS_SCAN_ABORTING
, &priv
->status
)) {
307 IWL_DEBUG_INFO("Aborted scan completed.\n");
308 clear_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
310 /* If there are more bands on this scan pass reschedule */
311 if (priv
->scan_bands
)
315 priv
->last_scan_jiffies
= jiffies
;
316 priv
->next_scan_jiffies
= 0;
317 IWL_DEBUG_INFO("Setting scan to off\n");
319 clear_bit(STATUS_SCANNING
, &priv
->status
);
321 IWL_DEBUG_INFO("Scan took %dms\n",
322 jiffies_to_msecs(elapsed_jiffies(priv
->scan_start
, jiffies
)));
324 queue_work(priv
->workqueue
, &priv
->scan_completed
);
329 priv
->scan_pass_start
= jiffies
;
330 queue_work(priv
->workqueue
, &priv
->request_scan
);
333 void iwl_setup_rx_scan_handlers(struct iwl_priv
*priv
)
336 priv
->rx_handlers
[REPLY_SCAN_CMD
] = iwl_rx_reply_scan
;
337 priv
->rx_handlers
[SCAN_START_NOTIFICATION
] = iwl_rx_scan_start_notif
;
338 priv
->rx_handlers
[SCAN_RESULTS_NOTIFICATION
] =
339 iwl_rx_scan_results_notif
;
340 priv
->rx_handlers
[SCAN_COMPLETE_NOTIFICATION
] =
341 iwl_rx_scan_complete_notif
;
343 EXPORT_SYMBOL(iwl_setup_rx_scan_handlers
);
345 static inline u16
iwl_get_active_dwell_time(struct iwl_priv
*priv
,
346 enum ieee80211_band band
,
349 if (band
== IEEE80211_BAND_5GHZ
)
350 return IWL_ACTIVE_DWELL_TIME_52
+
351 IWL_ACTIVE_DWELL_FACTOR_52GHZ
* (n_probes
+ 1);
353 return IWL_ACTIVE_DWELL_TIME_24
+
354 IWL_ACTIVE_DWELL_FACTOR_24GHZ
* (n_probes
+ 1);
357 static u16
iwl_get_passive_dwell_time(struct iwl_priv
*priv
,
358 enum ieee80211_band band
)
360 u16 passive
= (band
== IEEE80211_BAND_2GHZ
) ?
361 IWL_PASSIVE_DWELL_BASE
+ IWL_PASSIVE_DWELL_TIME_24
:
362 IWL_PASSIVE_DWELL_BASE
+ IWL_PASSIVE_DWELL_TIME_52
;
364 if (iwl_is_associated(priv
)) {
365 /* If we're associated, we clamp the maximum passive
366 * dwell time to be 98% of the beacon interval (minus
367 * 2 * channel tune time) */
368 passive
= priv
->beacon_int
;
369 if ((passive
> IWL_PASSIVE_DWELL_BASE
) || !passive
)
370 passive
= IWL_PASSIVE_DWELL_BASE
;
371 passive
= (passive
* 98) / 100 - IWL_CHANNEL_TUNE_TIME
* 2;
377 static int iwl_get_channels_for_scan(struct iwl_priv
*priv
,
378 enum ieee80211_band band
,
379 u8 is_active
, u8 n_probes
,
380 struct iwl_scan_channel
*scan_ch
)
382 const struct ieee80211_channel
*channels
= NULL
;
383 const struct ieee80211_supported_band
*sband
;
384 const struct iwl_channel_info
*ch_info
;
385 u16 passive_dwell
= 0;
386 u16 active_dwell
= 0;
390 sband
= iwl_get_hw_mode(priv
, band
);
394 channels
= sband
->channels
;
396 active_dwell
= iwl_get_active_dwell_time(priv
, band
, n_probes
);
397 passive_dwell
= iwl_get_passive_dwell_time(priv
, band
);
399 if (passive_dwell
<= active_dwell
)
400 passive_dwell
= active_dwell
+ 1;
402 for (i
= 0, added
= 0; i
< sband
->n_channels
; i
++) {
403 if (channels
[i
].flags
& IEEE80211_CHAN_DISABLED
)
407 ieee80211_frequency_to_channel(channels
[i
].center_freq
);
408 scan_ch
->channel
= cpu_to_le16(channel
);
410 ch_info
= iwl_get_channel_info(priv
, band
, channel
);
411 if (!is_channel_valid(ch_info
)) {
412 IWL_DEBUG_SCAN("Channel %d is INVALID for this band.\n",
417 if (!is_active
|| is_channel_passive(ch_info
) ||
418 (channels
[i
].flags
& IEEE80211_CHAN_PASSIVE_SCAN
))
419 scan_ch
->type
= SCAN_CHANNEL_TYPE_PASSIVE
;
421 scan_ch
->type
= SCAN_CHANNEL_TYPE_ACTIVE
;
424 scan_ch
->type
|= IWL_SCAN_PROBE_MASK(n_probes
);
426 scan_ch
->active_dwell
= cpu_to_le16(active_dwell
);
427 scan_ch
->passive_dwell
= cpu_to_le16(passive_dwell
);
429 /* Set txpower levels to defaults */
430 scan_ch
->dsp_atten
= 110;
432 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
434 * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3;
436 if (band
== IEEE80211_BAND_5GHZ
)
437 scan_ch
->tx_gain
= ((1 << 5) | (3 << 3)) | 3;
439 scan_ch
->tx_gain
= ((1 << 5) | (5 << 3));
441 IWL_DEBUG_SCAN("Scanning ch=%d prob=0x%X [%s %d]\n",
442 channel
, le32_to_cpu(scan_ch
->type
),
443 (scan_ch
->type
& SCAN_CHANNEL_TYPE_ACTIVE
) ?
444 "ACTIVE" : "PASSIVE",
445 (scan_ch
->type
& SCAN_CHANNEL_TYPE_ACTIVE
) ?
446 active_dwell
: passive_dwell
);
452 IWL_DEBUG_SCAN("total channels to scan %d \n", added
);
456 void iwl_init_scan_params(struct iwl_priv
*priv
)
458 if (!priv
->scan_tx_ant
[IEEE80211_BAND_5GHZ
])
459 priv
->scan_tx_ant
[IEEE80211_BAND_5GHZ
] = RATE_MCS_ANT_INIT_IND
;
460 if (!priv
->scan_tx_ant
[IEEE80211_BAND_2GHZ
])
461 priv
->scan_tx_ant
[IEEE80211_BAND_2GHZ
] = RATE_MCS_ANT_INIT_IND
;
464 int iwl_scan_initiate(struct iwl_priv
*priv
)
466 if (priv
->iw_mode
== IEEE80211_IF_TYPE_AP
) {
467 IWL_ERROR("APs don't scan.\n");
471 if (!iwl_is_ready_rf(priv
)) {
472 IWL_DEBUG_SCAN("Aborting scan due to not ready.\n");
476 if (test_bit(STATUS_SCANNING
, &priv
->status
)) {
477 IWL_DEBUG_SCAN("Scan already in progress.\n");
481 if (test_bit(STATUS_SCAN_ABORTING
, &priv
->status
)) {
482 IWL_DEBUG_SCAN("Scan request while abort pending. "
487 IWL_DEBUG_INFO("Starting scan...\n");
488 if (priv
->cfg
->sku
& IWL_SKU_G
)
489 priv
->scan_bands
|= BIT(IEEE80211_BAND_2GHZ
);
490 if (priv
->cfg
->sku
& IWL_SKU_A
)
491 priv
->scan_bands
|= BIT(IEEE80211_BAND_5GHZ
);
492 set_bit(STATUS_SCANNING
, &priv
->status
);
493 priv
->scan_start
= jiffies
;
494 priv
->scan_pass_start
= priv
->scan_start
;
496 queue_work(priv
->workqueue
, &priv
->request_scan
);
500 EXPORT_SYMBOL(iwl_scan_initiate
);
502 #define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
504 static void iwl_bg_scan_check(struct work_struct
*data
)
506 struct iwl_priv
*priv
=
507 container_of(data
, struct iwl_priv
, scan_check
.work
);
509 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
512 mutex_lock(&priv
->mutex
);
513 if (test_bit(STATUS_SCANNING
, &priv
->status
) ||
514 test_bit(STATUS_SCAN_ABORTING
, &priv
->status
)) {
515 IWL_DEBUG(IWL_DL_SCAN
, "Scan completion watchdog resetting "
517 jiffies_to_msecs(IWL_SCAN_CHECK_WATCHDOG
));
519 if (!test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
520 iwl_send_scan_abort(priv
);
522 mutex_unlock(&priv
->mutex
);
525 * iwl_supported_rate_to_ie - fill in the supported rate in IE field
527 * return : set the bit for each supported rate insert in ie
529 static u16
iwl_supported_rate_to_ie(u8
*ie
, u16 supported_rate
,
530 u16 basic_rate
, int *left
)
532 u16 ret_rates
= 0, bit
;
537 for (bit
= 1, i
= 0; i
< IWL_RATE_COUNT
; i
++, bit
<<= 1) {
538 if (bit
& supported_rate
) {
540 rates
[*cnt
] = iwl_rates
[i
].ieee
|
541 ((bit
& basic_rate
) ? 0x80 : 0x00);
545 (*cnt
>= IWL_SUPPORTED_RATES_IE_LEN
))
554 static void iwl_ht_cap_to_ie(const struct ieee80211_supported_band
*sband
,
557 struct ieee80211_ht_cap
*ht_cap
;
559 if (!sband
|| !sband
->ht_info
.ht_supported
)
562 if (*left
< sizeof(struct ieee80211_ht_cap
))
565 *pos
++ = sizeof(struct ieee80211_ht_cap
);
566 ht_cap
= (struct ieee80211_ht_cap
*) pos
;
568 ht_cap
->cap_info
= cpu_to_le16(sband
->ht_info
.cap
);
569 memcpy(ht_cap
->supp_mcs_set
, sband
->ht_info
.supp_mcs_set
, 16);
570 ht_cap
->ampdu_params_info
=
571 (sband
->ht_info
.ampdu_factor
& IEEE80211_HT_CAP_AMPDU_FACTOR
) |
572 ((sband
->ht_info
.ampdu_density
<< 2) &
573 IEEE80211_HT_CAP_AMPDU_DENSITY
);
574 *left
-= sizeof(struct ieee80211_ht_cap
);
578 * iwl_fill_probe_req - fill in all required fields and IE for probe request
581 static u16
iwl_fill_probe_req(struct iwl_priv
*priv
,
582 enum ieee80211_band band
,
583 struct ieee80211_mgmt
*frame
,
588 u16 active_rates
, ret_rates
, cck_rates
, active_rate_basic
;
589 const struct ieee80211_supported_band
*sband
=
590 iwl_get_hw_mode(priv
, band
);
593 /* Make sure there is enough space for the probe request,
594 * two mandatory IEs and the data */
599 frame
->frame_control
= cpu_to_le16(IEEE80211_STYPE_PROBE_REQ
);
600 memcpy(frame
->da
, iwl_bcast_addr
, ETH_ALEN
);
601 memcpy(frame
->sa
, priv
->mac_addr
, ETH_ALEN
);
602 memcpy(frame
->bssid
, iwl_bcast_addr
, ETH_ALEN
);
608 pos
= &frame
->u
.probe_req
.variable
[0];
610 /* fill in our indirect SSID IE */
614 *pos
++ = WLAN_EID_SSID
;
619 /* fill in supported rate */
624 *pos
++ = WLAN_EID_SUPP_RATES
;
627 /* exclude 60M rate */
628 active_rates
= priv
->rates_mask
;
629 active_rates
&= ~IWL_RATE_60M_MASK
;
631 active_rate_basic
= active_rates
& IWL_BASIC_RATES_MASK
;
633 cck_rates
= IWL_CCK_RATES_MASK
& active_rates
;
634 ret_rates
= iwl_supported_rate_to_ie(pos
, cck_rates
,
635 active_rate_basic
, &left
);
636 active_rates
&= ~ret_rates
;
638 ret_rates
= iwl_supported_rate_to_ie(pos
, active_rates
,
639 active_rate_basic
, &left
);
640 active_rates
&= ~ret_rates
;
645 if (active_rates
== 0)
648 /* fill in supported extended rate */
653 /* ... fill it in... */
654 *pos
++ = WLAN_EID_EXT_SUPP_RATES
;
656 iwl_supported_rate_to_ie(pos
, active_rates
, active_rate_basic
, &left
);
670 *pos
++ = WLAN_EID_HT_CAPABILITY
;
672 iwl_ht_cap_to_ie(sband
, pos
, &left
);
679 static u32
iwl_scan_tx_ant(struct iwl_priv
*priv
, enum ieee80211_band band
)
683 ind
= priv
->scan_tx_ant
[band
];
684 for (i
= 0; i
< priv
->hw_params
.tx_chains_num
; i
++) {
685 ind
= (ind
+1) >= priv
->hw_params
.tx_chains_num
? 0 : ind
+1;
686 if (priv
->hw_params
.valid_tx_ant
& (1 << ind
)) {
687 priv
->scan_tx_ant
[band
] = ind
;
691 IWL_DEBUG_SCAN("select TX ANT = %c\n", 'A' + ind
);
692 return scan_tx_ant
[ind
];
696 static void iwl_bg_request_scan(struct work_struct
*data
)
698 struct iwl_priv
*priv
=
699 container_of(data
, struct iwl_priv
, request_scan
);
700 struct iwl_host_cmd cmd
= {
701 .id
= REPLY_SCAN_CMD
,
702 .len
= sizeof(struct iwl_scan_cmd
),
703 .meta
.flags
= CMD_SIZE_HUGE
,
705 struct iwl_scan_cmd
*scan
;
706 struct ieee80211_conf
*conf
= NULL
;
710 enum ieee80211_band band
;
712 u8 rx_chain
= 0x7; /* bitmap: ABC chains */
714 conf
= ieee80211_get_hw_conf(priv
->hw
);
716 mutex_lock(&priv
->mutex
);
718 if (!iwl_is_ready(priv
)) {
719 IWL_WARNING("request scan called when driver not ready.\n");
723 /* Make sure the scan wasn't cancelled before this queued work
724 * was given the chance to run... */
725 if (!test_bit(STATUS_SCANNING
, &priv
->status
))
728 /* This should never be called or scheduled if there is currently
729 * a scan active in the hardware. */
730 if (test_bit(STATUS_SCAN_HW
, &priv
->status
)) {
731 IWL_DEBUG_INFO("Multiple concurrent scan requests in parallel. "
732 "Ignoring second request.\n");
737 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
)) {
738 IWL_DEBUG_SCAN("Aborting scan due to device shutdown\n");
742 if (test_bit(STATUS_SCAN_ABORTING
, &priv
->status
)) {
743 IWL_DEBUG_HC("Scan request while abort pending. Queuing.\n");
747 if (iwl_is_rfkill(priv
)) {
748 IWL_DEBUG_HC("Aborting scan due to RF Kill activation\n");
752 if (!test_bit(STATUS_READY
, &priv
->status
)) {
753 IWL_DEBUG_HC("Scan request while uninitialized. Queuing.\n");
757 if (!priv
->scan_bands
) {
758 IWL_DEBUG_HC("Aborting scan due to no requested bands\n");
763 priv
->scan
= kmalloc(sizeof(struct iwl_scan_cmd
) +
764 IWL_MAX_SCAN_SIZE
, GFP_KERNEL
);
771 memset(scan
, 0, sizeof(struct iwl_scan_cmd
) + IWL_MAX_SCAN_SIZE
);
773 scan
->quiet_plcp_th
= IWL_PLCP_QUIET_THRESH
;
774 scan
->quiet_time
= IWL_ACTIVE_QUIET_TIME
;
776 if (iwl_is_associated(priv
)) {
779 u32 suspend_time
= 100;
780 u32 scan_suspend_time
= 100;
783 IWL_DEBUG_INFO("Scanning while associated...\n");
785 spin_lock_irqsave(&priv
->lock
, flags
);
786 interval
= priv
->beacon_int
;
787 spin_unlock_irqrestore(&priv
->lock
, flags
);
789 scan
->suspend_time
= 0;
790 scan
->max_out_time
= cpu_to_le32(200 * 1024);
792 interval
= suspend_time
;
794 extra
= (suspend_time
/ interval
) << 22;
795 scan_suspend_time
= (extra
|
796 ((suspend_time
% interval
) * 1024));
797 scan
->suspend_time
= cpu_to_le32(scan_suspend_time
);
798 IWL_DEBUG_SCAN("suspend_time 0x%X beacon interval %d\n",
799 scan_suspend_time
, interval
);
802 /* We should add the ability for user to lock to PASSIVE ONLY */
803 if (priv
->one_direct_scan
) {
804 IWL_DEBUG_SCAN("Start direct scan for '%s'\n",
805 iwl_escape_essid(priv
->direct_ssid
,
806 priv
->direct_ssid_len
));
807 scan
->direct_scan
[0].id
= WLAN_EID_SSID
;
808 scan
->direct_scan
[0].len
= priv
->direct_ssid_len
;
809 memcpy(scan
->direct_scan
[0].ssid
,
810 priv
->direct_ssid
, priv
->direct_ssid_len
);
812 } else if (!iwl_is_associated(priv
) && priv
->essid_len
) {
813 IWL_DEBUG_SCAN("Start direct scan for '%s' (not associated)\n",
814 iwl_escape_essid(priv
->essid
, priv
->essid_len
));
815 scan
->direct_scan
[0].id
= WLAN_EID_SSID
;
816 scan
->direct_scan
[0].len
= priv
->essid_len
;
817 memcpy(scan
->direct_scan
[0].ssid
, priv
->essid
, priv
->essid_len
);
820 IWL_DEBUG_SCAN("Start indirect scan.\n");
823 scan
->tx_cmd
.tx_flags
= TX_CMD_FLG_SEQ_CTL_MSK
;
824 scan
->tx_cmd
.sta_id
= priv
->hw_params
.bcast_sta_id
;
825 scan
->tx_cmd
.stop_time
.life_time
= TX_CMD_LIFE_TIME_INFINITE
;
828 if (priv
->scan_bands
& BIT(IEEE80211_BAND_2GHZ
)) {
829 band
= IEEE80211_BAND_2GHZ
;
830 scan
->flags
= RXON_FLG_BAND_24G_MSK
| RXON_FLG_AUTO_DETECT_MSK
;
831 tx_ant
= iwl_scan_tx_ant(priv
, band
);
832 if (priv
->active_rxon
.flags
& RXON_FLG_CHANNEL_MODE_PURE_40_MSK
)
833 scan
->tx_cmd
.rate_n_flags
=
834 iwl_hw_set_rate_n_flags(IWL_RATE_6M_PLCP
,
837 scan
->tx_cmd
.rate_n_flags
=
838 iwl_hw_set_rate_n_flags(IWL_RATE_1M_PLCP
,
841 scan
->good_CRC_th
= 0;
842 } else if (priv
->scan_bands
& BIT(IEEE80211_BAND_5GHZ
)) {
843 band
= IEEE80211_BAND_5GHZ
;
844 tx_ant
= iwl_scan_tx_ant(priv
, band
);
845 scan
->tx_cmd
.rate_n_flags
=
846 iwl_hw_set_rate_n_flags(IWL_RATE_6M_PLCP
,
848 scan
->good_CRC_th
= IWL_GOOD_CRC_TH
;
850 /* Force use of chains B and C (0x6) for scan Rx for 4965
851 * Avoid A (0x1) because of its off-channel reception on A-band.
852 * MIMO is not used here, but value is required */
853 if ((priv
->hw_rev
& CSR_HW_REV_TYPE_MSK
) == CSR_HW_REV_TYPE_4965
)
856 IWL_WARNING("Invalid scan band count\n");
860 scan
->rx_chain
= RXON_RX_CHAIN_DRIVER_FORCE_MSK
|
861 cpu_to_le16((0x7 << RXON_RX_CHAIN_VALID_POS
) |
862 (rx_chain
<< RXON_RX_CHAIN_FORCE_SEL_POS
) |
863 (0x7 << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS
));
865 cmd_len
= iwl_fill_probe_req(priv
, band
,
866 (struct ieee80211_mgmt
*)scan
->data
,
867 IWL_MAX_SCAN_SIZE
- sizeof(*scan
));
869 scan
->tx_cmd
.len
= cpu_to_le16(cmd_len
);
871 if (priv
->iw_mode
== IEEE80211_IF_TYPE_MNTR
)
872 scan
->filter_flags
= RXON_FILTER_PROMISC_MSK
;
874 scan
->filter_flags
|= (RXON_FILTER_ACCEPT_GRP_MSK
|
875 RXON_FILTER_BCON_AWARE_MSK
);
877 scan
->channel_count
=
878 iwl_get_channels_for_scan(priv
, band
, 1, /* active */
880 (void *)&scan
->data
[le16_to_cpu(scan
->tx_cmd
.len
)]);
882 if (scan
->channel_count
== 0) {
883 IWL_DEBUG_SCAN("channel count %d\n", scan
->channel_count
);
887 cmd
.len
+= le16_to_cpu(scan
->tx_cmd
.len
) +
888 scan
->channel_count
* sizeof(struct iwl_scan_channel
);
890 scan
->len
= cpu_to_le16(cmd
.len
);
892 set_bit(STATUS_SCAN_HW
, &priv
->status
);
893 ret
= iwl_send_cmd_sync(priv
, &cmd
);
897 queue_delayed_work(priv
->workqueue
, &priv
->scan_check
,
898 IWL_SCAN_CHECK_WATCHDOG
);
900 mutex_unlock(&priv
->mutex
);
904 /* inform mac80211 scan aborted */
905 queue_work(priv
->workqueue
, &priv
->scan_completed
);
906 mutex_unlock(&priv
->mutex
);
909 static void iwl_bg_abort_scan(struct work_struct
*work
)
911 struct iwl_priv
*priv
= container_of(work
, struct iwl_priv
, abort_scan
);
913 if (!iwl_is_ready(priv
))
916 mutex_lock(&priv
->mutex
);
918 set_bit(STATUS_SCAN_ABORTING
, &priv
->status
);
919 iwl_send_scan_abort(priv
);
921 mutex_unlock(&priv
->mutex
);
924 void iwl_setup_scan_deferred_work(struct iwl_priv
*priv
)
926 /* FIXME: move here when resolved PENDING
927 * INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed); */
928 INIT_WORK(&priv
->request_scan
, iwl_bg_request_scan
);
929 INIT_WORK(&priv
->abort_scan
, iwl_bg_abort_scan
);
930 INIT_DELAYED_WORK(&priv
->scan_check
, iwl_bg_scan_check
);
932 EXPORT_SYMBOL(iwl_setup_scan_deferred_work
);