aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/iwl-scan.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2010-04-06 07:12:42 -0400
committerReinette Chatre <reinette.chatre@intel.com>2010-04-16 16:47:37 -0400
commitb6e4c55aaee4fd40526a6816e60c68dd62e565c4 (patch)
tree64bbff3fc159290e41173d0a227375eafe941943 /drivers/net/wireless/iwlwifi/iwl-scan.c
parent811ecc995b18eb58067ffa75b961ece3b84a1f03 (diff)
iwlwifi: trigger scan synchronously
Scan requesting doesn't need to be asynchronous since all code paths leading up to it can sleep. Make the scan request a new util operation that is hw-specific (to account for 3945 vs. agn) and call it right in place. This patch moves a lot of code into iwlagn as it need not be in iwlcore. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-scan.c')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-scan.c418
1 files changed, 9 insertions, 409 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-scan.c b/drivers/net/wireless/iwlwifi/iwl-scan.c
index 18b89d3bd88d..92115f59ab85 100644
--- a/drivers/net/wireless/iwlwifi/iwl-scan.c
+++ b/drivers/net/wireless/iwlwifi/iwl-scan.c
@@ -284,150 +284,6 @@ u16 iwl_get_passive_dwell_time(struct iwl_priv *priv,
284} 284}
285EXPORT_SYMBOL(iwl_get_passive_dwell_time); 285EXPORT_SYMBOL(iwl_get_passive_dwell_time);
286 286
287static int iwl_get_single_channel_for_scan(struct iwl_priv *priv,
288 enum ieee80211_band band,
289 struct iwl_scan_channel *scan_ch)
290{
291 const struct ieee80211_supported_band *sband;
292 const struct iwl_channel_info *ch_info;
293 u16 passive_dwell = 0;
294 u16 active_dwell = 0;
295 int i, added = 0;
296 u16 channel = 0;
297
298 sband = iwl_get_hw_mode(priv, band);
299 if (!sband) {
300 IWL_ERR(priv, "invalid band\n");
301 return added;
302 }
303
304 active_dwell = iwl_get_active_dwell_time(priv, band, 0);
305 passive_dwell = iwl_get_passive_dwell_time(priv, band);
306
307 if (passive_dwell <= active_dwell)
308 passive_dwell = active_dwell + 1;
309
310 /* only scan single channel, good enough to reset the RF */
311 /* pick the first valid not in-use channel */
312 if (band == IEEE80211_BAND_5GHZ) {
313 for (i = 14; i < priv->channel_count; i++) {
314 if (priv->channel_info[i].channel !=
315 le16_to_cpu(priv->staging_rxon.channel)) {
316 channel = priv->channel_info[i].channel;
317 ch_info = iwl_get_channel_info(priv,
318 band, channel);
319 if (is_channel_valid(ch_info))
320 break;
321 }
322 }
323 } else {
324 for (i = 0; i < 14; i++) {
325 if (priv->channel_info[i].channel !=
326 le16_to_cpu(priv->staging_rxon.channel)) {
327 channel =
328 priv->channel_info[i].channel;
329 ch_info = iwl_get_channel_info(priv,
330 band, channel);
331 if (is_channel_valid(ch_info))
332 break;
333 }
334 }
335 }
336 if (channel) {
337 scan_ch->channel = cpu_to_le16(channel);
338 scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE;
339 scan_ch->active_dwell = cpu_to_le16(active_dwell);
340 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
341 /* Set txpower levels to defaults */
342 scan_ch->dsp_atten = 110;
343 if (band == IEEE80211_BAND_5GHZ)
344 scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3;
345 else
346 scan_ch->tx_gain = ((1 << 5) | (5 << 3));
347 added++;
348 } else
349 IWL_ERR(priv, "no valid channel found\n");
350 return added;
351}
352
353static int iwl_get_channels_for_scan(struct iwl_priv *priv,
354 enum ieee80211_band band,
355 u8 is_active, u8 n_probes,
356 struct iwl_scan_channel *scan_ch)
357{
358 struct ieee80211_channel *chan;
359 const struct ieee80211_supported_band *sband;
360 const struct iwl_channel_info *ch_info;
361 u16 passive_dwell = 0;
362 u16 active_dwell = 0;
363 int added, i;
364 u16 channel;
365
366 sband = iwl_get_hw_mode(priv, band);
367 if (!sband)
368 return 0;
369
370 active_dwell = iwl_get_active_dwell_time(priv, band, n_probes);
371 passive_dwell = iwl_get_passive_dwell_time(priv, band);
372
373 if (passive_dwell <= active_dwell)
374 passive_dwell = active_dwell + 1;
375
376 for (i = 0, added = 0; i < priv->scan_request->n_channels; i++) {
377 chan = priv->scan_request->channels[i];
378
379 if (chan->band != band)
380 continue;
381
382 channel = ieee80211_frequency_to_channel(chan->center_freq);
383 scan_ch->channel = cpu_to_le16(channel);
384
385 ch_info = iwl_get_channel_info(priv, band, channel);
386 if (!is_channel_valid(ch_info)) {
387 IWL_DEBUG_SCAN(priv, "Channel %d is INVALID for this band.\n",
388 channel);
389 continue;
390 }
391
392 if (!is_active || is_channel_passive(ch_info) ||
393 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN))
394 scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE;
395 else
396 scan_ch->type = SCAN_CHANNEL_TYPE_ACTIVE;
397
398 if (n_probes)
399 scan_ch->type |= IWL_SCAN_PROBE_MASK(n_probes);
400
401 scan_ch->active_dwell = cpu_to_le16(active_dwell);
402 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
403
404 /* Set txpower levels to defaults */
405 scan_ch->dsp_atten = 110;
406
407 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
408 * power level:
409 * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3;
410 */
411 if (band == IEEE80211_BAND_5GHZ)
412 scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3;
413 else
414 scan_ch->tx_gain = ((1 << 5) | (5 << 3));
415
416 IWL_DEBUG_SCAN(priv, "Scanning ch=%d prob=0x%X [%s %d]\n",
417 channel, le32_to_cpu(scan_ch->type),
418 (scan_ch->type & SCAN_CHANNEL_TYPE_ACTIVE) ?
419 "ACTIVE" : "PASSIVE",
420 (scan_ch->type & SCAN_CHANNEL_TYPE_ACTIVE) ?
421 active_dwell : passive_dwell);
422
423 scan_ch++;
424 added++;
425 }
426
427 IWL_DEBUG_SCAN(priv, "total channels to scan %d\n", added);
428 return added;
429}
430
431void iwl_init_scan_params(struct iwl_priv *priv) 287void iwl_init_scan_params(struct iwl_priv *priv)
432{ 288{
433 u8 ant_idx = fls(priv->hw_params.valid_tx_ant) - 1; 289 u8 ant_idx = fls(priv->hw_params.valid_tx_ant) - 1;
@@ -447,7 +303,10 @@ static int iwl_scan_initiate(struct iwl_priv *priv)
447 priv->is_internal_short_scan = false; 303 priv->is_internal_short_scan = false;
448 priv->scan_start = jiffies; 304 priv->scan_start = jiffies;
449 305
450 queue_work(priv->workqueue, &priv->request_scan); 306 if (WARN_ON(!priv->cfg->ops->utils->request_scan))
307 return -EOPNOTSUPP;
308
309 priv->cfg->ops->utils->request_scan(priv);
451 310
452 return 0; 311 return 0;
453} 312}
@@ -455,7 +314,6 @@ static int iwl_scan_initiate(struct iwl_priv *priv)
455int iwl_mac_hw_scan(struct ieee80211_hw *hw, 314int iwl_mac_hw_scan(struct ieee80211_hw *hw,
456 struct cfg80211_scan_request *req) 315 struct cfg80211_scan_request *req)
457{ 316{
458 unsigned long flags;
459 struct iwl_priv *priv = hw->priv; 317 struct iwl_priv *priv = hw->priv;
460 int ret; 318 int ret;
461 319
@@ -465,7 +323,6 @@ int iwl_mac_hw_scan(struct ieee80211_hw *hw,
465 return -EINVAL; 323 return -EINVAL;
466 324
467 mutex_lock(&priv->mutex); 325 mutex_lock(&priv->mutex);
468 spin_lock_irqsave(&priv->lock, flags);
469 326
470 if (!iwl_is_ready_rf(priv)) { 327 if (!iwl_is_ready_rf(priv)) {
471 ret = -EIO; 328 ret = -EIO;
@@ -494,7 +351,6 @@ int iwl_mac_hw_scan(struct ieee80211_hw *hw,
494 IWL_DEBUG_MAC80211(priv, "leave\n"); 351 IWL_DEBUG_MAC80211(priv, "leave\n");
495 352
496out_unlock: 353out_unlock:
497 spin_unlock_irqrestore(&priv->lock, flags);
498 mutex_unlock(&priv->mutex); 354 mutex_unlock(&priv->mutex);
499 355
500 return ret; 356 return ret;
@@ -537,13 +393,15 @@ static void iwl_bg_start_internal_scan(struct work_struct *work)
537 IWL_DEBUG_SCAN(priv, "Start internal short scan...\n"); 393 IWL_DEBUG_SCAN(priv, "Start internal short scan...\n");
538 set_bit(STATUS_SCANNING, &priv->status); 394 set_bit(STATUS_SCANNING, &priv->status);
539 priv->is_internal_short_scan = true; 395 priv->is_internal_short_scan = true;
540 queue_work(priv->workqueue, &priv->request_scan); 396
397 if (WARN_ON(!priv->cfg->ops->utils->request_scan))
398 goto unlock;
399
400 priv->cfg->ops->utils->request_scan(priv);
541 unlock: 401 unlock:
542 mutex_unlock(&priv->mutex); 402 mutex_unlock(&priv->mutex);
543} 403}
544 404
545#define IWL_SCAN_CHECK_WATCHDOG (7 * HZ)
546
547void iwl_bg_scan_check(struct work_struct *data) 405void iwl_bg_scan_check(struct work_struct *data)
548{ 406{
549 struct iwl_priv *priv = 407 struct iwl_priv *priv =
@@ -614,263 +472,6 @@ u16 iwl_fill_probe_req(struct iwl_priv *priv, struct ieee80211_mgmt *frame,
614} 472}
615EXPORT_SYMBOL(iwl_fill_probe_req); 473EXPORT_SYMBOL(iwl_fill_probe_req);
616 474
617static void iwl_bg_request_scan(struct work_struct *data)
618{
619 struct iwl_priv *priv =
620 container_of(data, struct iwl_priv, request_scan);
621 struct iwl_host_cmd cmd = {
622 .id = REPLY_SCAN_CMD,
623 .len = sizeof(struct iwl_scan_cmd),
624 .flags = CMD_SIZE_HUGE,
625 };
626 struct iwl_scan_cmd *scan;
627 struct ieee80211_conf *conf = NULL;
628 u32 rate_flags = 0;
629 u16 cmd_len;
630 u16 rx_chain = 0;
631 enum ieee80211_band band;
632 u8 n_probes = 0;
633 u8 rx_ant = priv->hw_params.valid_rx_ant;
634 u8 rate;
635 bool is_active = false;
636 int chan_mod;
637 u8 active_chains;
638
639 conf = ieee80211_get_hw_conf(priv->hw);
640
641 mutex_lock(&priv->mutex);
642
643 cancel_delayed_work(&priv->scan_check);
644
645 if (!iwl_is_ready(priv)) {
646 IWL_WARN(priv, "request scan called when driver not ready.\n");
647 goto done;
648 }
649
650 /* Make sure the scan wasn't canceled before this queued work
651 * was given the chance to run... */
652 if (!test_bit(STATUS_SCANNING, &priv->status))
653 goto done;
654
655 /* This should never be called or scheduled if there is currently
656 * a scan active in the hardware. */
657 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
658 IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests in parallel. "
659 "Ignoring second request.\n");
660 goto done;
661 }
662
663 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
664 IWL_DEBUG_SCAN(priv, "Aborting scan due to device shutdown\n");
665 goto done;
666 }
667
668 if (test_bit(STATUS_SCAN_ABORTING, &priv->status)) {
669 IWL_DEBUG_HC(priv, "Scan request while abort pending. Queuing.\n");
670 goto done;
671 }
672
673 if (iwl_is_rfkill(priv)) {
674 IWL_DEBUG_HC(priv, "Aborting scan due to RF Kill activation\n");
675 goto done;
676 }
677
678 if (!test_bit(STATUS_READY, &priv->status)) {
679 IWL_DEBUG_HC(priv, "Scan request while uninitialized. Queuing.\n");
680 goto done;
681 }
682
683 if (!priv->scan_cmd) {
684 priv->scan_cmd = kmalloc(sizeof(struct iwl_scan_cmd) +
685 IWL_MAX_SCAN_SIZE, GFP_KERNEL);
686 if (!priv->scan_cmd) {
687 IWL_DEBUG_SCAN(priv,
688 "fail to allocate memory for scan\n");
689 goto done;
690 }
691 }
692 scan = priv->scan_cmd;
693 memset(scan, 0, sizeof(struct iwl_scan_cmd) + IWL_MAX_SCAN_SIZE);
694
695 scan->quiet_plcp_th = IWL_PLCP_QUIET_THRESH;
696 scan->quiet_time = IWL_ACTIVE_QUIET_TIME;
697
698 if (iwl_is_associated(priv)) {
699 u16 interval = 0;
700 u32 extra;
701 u32 suspend_time = 100;
702 u32 scan_suspend_time = 100;
703 unsigned long flags;
704
705 IWL_DEBUG_INFO(priv, "Scanning while associated...\n");
706 spin_lock_irqsave(&priv->lock, flags);
707 interval = priv->beacon_int;
708 spin_unlock_irqrestore(&priv->lock, flags);
709
710 scan->suspend_time = 0;
711 scan->max_out_time = cpu_to_le32(200 * 1024);
712 if (!interval)
713 interval = suspend_time;
714
715 extra = (suspend_time / interval) << 22;
716 scan_suspend_time = (extra |
717 ((suspend_time % interval) * 1024));
718 scan->suspend_time = cpu_to_le32(scan_suspend_time);
719 IWL_DEBUG_SCAN(priv, "suspend_time 0x%X beacon interval %d\n",
720 scan_suspend_time, interval);
721 }
722
723 if (priv->is_internal_short_scan) {
724 IWL_DEBUG_SCAN(priv, "Start internal passive scan.\n");
725 } else if (priv->scan_request->n_ssids) {
726 int i, p = 0;
727 IWL_DEBUG_SCAN(priv, "Kicking off active scan\n");
728 for (i = 0; i < priv->scan_request->n_ssids; i++) {
729 /* always does wildcard anyway */
730 if (!priv->scan_request->ssids[i].ssid_len)
731 continue;
732 scan->direct_scan[p].id = WLAN_EID_SSID;
733 scan->direct_scan[p].len =
734 priv->scan_request->ssids[i].ssid_len;
735 memcpy(scan->direct_scan[p].ssid,
736 priv->scan_request->ssids[i].ssid,
737 priv->scan_request->ssids[i].ssid_len);
738 n_probes++;
739 p++;
740 }
741 is_active = true;
742 } else
743 IWL_DEBUG_SCAN(priv, "Start passive scan.\n");
744
745 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
746 scan->tx_cmd.sta_id = priv->hw_params.bcast_sta_id;
747 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
748
749 switch (priv->scan_band) {
750 case IEEE80211_BAND_2GHZ:
751 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
752 chan_mod = le32_to_cpu(priv->active_rxon.flags & RXON_FLG_CHANNEL_MODE_MSK)
753 >> RXON_FLG_CHANNEL_MODE_POS;
754 if (chan_mod == CHANNEL_MODE_PURE_40) {
755 rate = IWL_RATE_6M_PLCP;
756 } else {
757 rate = IWL_RATE_1M_PLCP;
758 rate_flags = RATE_MCS_CCK_MSK;
759 }
760 scan->good_CRC_th = 0;
761 break;
762 case IEEE80211_BAND_5GHZ:
763 rate = IWL_RATE_6M_PLCP;
764 /*
765 * If active scaning is requested but a certain channel
766 * is marked passive, we can do active scanning if we
767 * detect transmissions.
768 */
769 scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0;
770
771 /* Force use of chains B and C (0x6) for scan Rx
772 * Avoid A (0x1) for the device has off-channel reception
773 * on A-band.
774 */
775 if (priv->cfg->off_channel_workaround)
776 rx_ant = ANT_BC;
777 break;
778 default:
779 IWL_WARN(priv, "Invalid scan band count\n");
780 goto done;
781 }
782
783 band = priv->scan_band;
784
785 priv->scan_tx_ant[band] =
786 iwl_toggle_tx_ant(priv, priv->scan_tx_ant[band]);
787 rate_flags |= iwl_ant_idx_to_flags(priv->scan_tx_ant[band]);
788 scan->tx_cmd.rate_n_flags = iwl_hw_set_rate_n_flags(rate, rate_flags);
789
790 /* In power save mode use one chain, otherwise use all chains */
791 if (test_bit(STATUS_POWER_PMI, &priv->status)) {
792 /* rx_ant has been set to all valid chains previously */
793 active_chains = rx_ant &
794 ((u8)(priv->chain_noise_data.active_chains));
795 if (!active_chains)
796 active_chains = rx_ant;
797
798 IWL_DEBUG_SCAN(priv, "chain_noise_data.active_chains: %u\n",
799 priv->chain_noise_data.active_chains);
800
801 rx_ant = first_antenna(active_chains);
802 }
803 /* MIMO is not used here, but value is required */
804 rx_chain |= priv->hw_params.valid_rx_ant << RXON_RX_CHAIN_VALID_POS;
805 rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS;
806 rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_SEL_POS;
807 rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS;
808 scan->rx_chain = cpu_to_le16(rx_chain);
809 if (!priv->is_internal_short_scan) {
810 cmd_len = iwl_fill_probe_req(priv,
811 (struct ieee80211_mgmt *)scan->data,
812 priv->scan_request->ie,
813 priv->scan_request->ie_len,
814 IWL_MAX_SCAN_SIZE - sizeof(*scan));
815 } else {
816 cmd_len = iwl_fill_probe_req(priv,
817 (struct ieee80211_mgmt *)scan->data,
818 NULL, 0,
819 IWL_MAX_SCAN_SIZE - sizeof(*scan));
820
821 }
822 scan->tx_cmd.len = cpu_to_le16(cmd_len);
823 if (iwl_is_monitor_mode(priv))
824 scan->filter_flags = RXON_FILTER_PROMISC_MSK;
825
826 scan->filter_flags |= (RXON_FILTER_ACCEPT_GRP_MSK |
827 RXON_FILTER_BCON_AWARE_MSK);
828
829 if (priv->is_internal_short_scan) {
830 scan->channel_count =
831 iwl_get_single_channel_for_scan(priv, band,
832 (void *)&scan->data[le16_to_cpu(
833 scan->tx_cmd.len)]);
834 } else {
835 scan->channel_count =
836 iwl_get_channels_for_scan(priv, band,
837 is_active, n_probes,
838 (void *)&scan->data[le16_to_cpu(
839 scan->tx_cmd.len)]);
840 }
841 if (scan->channel_count == 0) {
842 IWL_DEBUG_SCAN(priv, "channel count %d\n", scan->channel_count);
843 goto done;
844 }
845
846 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
847 scan->channel_count * sizeof(struct iwl_scan_channel);
848 cmd.data = scan;
849 scan->len = cpu_to_le16(cmd.len);
850
851 set_bit(STATUS_SCAN_HW, &priv->status);
852 if (iwl_send_cmd_sync(priv, &cmd))
853 goto done;
854
855 queue_delayed_work(priv->workqueue, &priv->scan_check,
856 IWL_SCAN_CHECK_WATCHDOG);
857
858 mutex_unlock(&priv->mutex);
859 return;
860
861 done:
862 /* Cannot perform scan. Make sure we clear scanning
863 * bits from status so next scan request can be performed.
864 * If we don't clear scanning status bit here all next scan
865 * will fail
866 */
867 clear_bit(STATUS_SCAN_HW, &priv->status);
868 clear_bit(STATUS_SCANNING, &priv->status);
869 /* inform mac80211 scan aborted */
870 queue_work(priv->workqueue, &priv->scan_completed);
871 mutex_unlock(&priv->mutex);
872}
873
874void iwl_bg_abort_scan(struct work_struct *work) 475void iwl_bg_abort_scan(struct work_struct *work)
875{ 476{
876 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan); 477 struct iwl_priv *priv = container_of(work, struct iwl_priv, abort_scan);
@@ -918,7 +519,6 @@ EXPORT_SYMBOL(iwl_bg_scan_completed);
918void iwl_setup_scan_deferred_work(struct iwl_priv *priv) 519void iwl_setup_scan_deferred_work(struct iwl_priv *priv)
919{ 520{
920 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed); 521 INIT_WORK(&priv->scan_completed, iwl_bg_scan_completed);
921 INIT_WORK(&priv->request_scan, iwl_bg_request_scan);
922 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan); 522 INIT_WORK(&priv->abort_scan, iwl_bg_abort_scan);
923 INIT_WORK(&priv->start_internal_scan, iwl_bg_start_internal_scan); 523 INIT_WORK(&priv->start_internal_scan, iwl_bg_start_internal_scan);
924 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check); 524 INIT_DELAYED_WORK(&priv->scan_check, iwl_bg_scan_check);