diff options
author | Johannes Berg <johannes.berg@intel.com> | 2010-04-30 17:42:15 -0400 |
---|---|---|
committer | Reinette Chatre <reinette.chatre@intel.com> | 2010-04-30 18:03:51 -0400 |
commit | 96ff56419504ac6a610ff1af42330e0423242e16 (patch) | |
tree | f9f47566e06944cde52d5c7e2902d9a683656891 /drivers/net/wireless/iwlwifi/iwl-scan.c | |
parent | 0250ececdf6813457c98719e2d33b3684881fde0 (diff) |
iwlwifi: work around passive scan issue
Some firmware versions don't behave properly when
passive scanning is requested on radar channels
without enabling active scanning on receiving a
good frame. Work around that issue by asking the
firmware to only enable the active scanning after
receiving a huge number of good frames, a number
that can never be reached during our dwell time.
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.c | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-scan.c b/drivers/net/wireless/iwlwifi/iwl-scan.c index 5062f4ebb6a9..2367286eb74d 100644 --- a/drivers/net/wireless/iwlwifi/iwl-scan.c +++ b/drivers/net/wireless/iwlwifi/iwl-scan.c | |||
@@ -812,16 +812,29 @@ static void iwl_bg_request_scan(struct work_struct *data) | |||
812 | rate = IWL_RATE_1M_PLCP; | 812 | rate = IWL_RATE_1M_PLCP; |
813 | rate_flags = RATE_MCS_CCK_MSK; | 813 | rate_flags = RATE_MCS_CCK_MSK; |
814 | } | 814 | } |
815 | scan->good_CRC_th = 0; | 815 | scan->good_CRC_th = IWL_GOOD_CRC_TH_DISABLED; |
816 | } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) { | 816 | } else if (priv->scan_bands & BIT(IEEE80211_BAND_5GHZ)) { |
817 | band = IEEE80211_BAND_5GHZ; | 817 | band = IEEE80211_BAND_5GHZ; |
818 | rate = IWL_RATE_6M_PLCP; | 818 | rate = IWL_RATE_6M_PLCP; |
819 | /* | 819 | /* |
820 | * If active scaning is requested but a certain channel | 820 | * If active scanning is requested but a certain channel is |
821 | * is marked passive, we can do active scanning if we | 821 | * marked passive, we can do active scanning if we detect |
822 | * detect transmissions. | 822 | * transmissions. |
823 | * | ||
824 | * There is an issue with some firmware versions that triggers | ||
825 | * a sysassert on a "good CRC threshold" of zero (== disabled), | ||
826 | * on a radar channel even though this means that we should NOT | ||
827 | * send probes. | ||
828 | * | ||
829 | * The "good CRC threshold" is the number of frames that we | ||
830 | * need to receive during our dwell time on a channel before | ||
831 | * sending out probes -- setting this to a huge value will | ||
832 | * mean we never reach it, but at the same time work around | ||
833 | * the aforementioned issue. Thus use IWL_GOOD_CRC_TH_NEVER | ||
834 | * here instead of IWL_GOOD_CRC_TH_DISABLED. | ||
823 | */ | 835 | */ |
824 | scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH : 0; | 836 | scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT : |
837 | IWL_GOOD_CRC_TH_NEVER; | ||
825 | 838 | ||
826 | /* Force use of chains B and C (0x6) for scan Rx for 4965 | 839 | /* Force use of chains B and C (0x6) for scan Rx for 4965 |
827 | * Avoid A (0x1) because of its off-channel reception on A-band. | 840 | * Avoid A (0x1) because of its off-channel reception on A-band. |