diff options
author | Bob Copeland <me@bobcopeland.com> | 2008-10-29 08:30:54 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-10 15:17:33 -0500 |
commit | 9ad9a26e7b7b6671a9aefbb1edb2e8a9ed50ee8d (patch) | |
tree | 49fa66ba8d66525696030245628bdc439d208dd4 /drivers/net/wireless/ath5k/base.c | |
parent | 2a941ecb5178cb8c94190f17a42f35a772cbc5c6 (diff) |
ath5k: enable hardware encryption for WEP
This change re-enables hardware encryption for ath5k after setting up
mac80211 to handle the initialization vectors which happens to make it
work. Add a module param (nohwcrypt) to optionally turn it off.
Signed-off-by: Bob Copeland <me@bobcopeland.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath5k/base.c')
-rw-r--r-- | drivers/net/wireless/ath5k/base.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c index 6f368e8cdf17..4bf3678529b8 100644 --- a/drivers/net/wireless/ath5k/base.c +++ b/drivers/net/wireless/ath5k/base.c | |||
@@ -60,6 +60,9 @@ | |||
60 | #include "debug.h" | 60 | #include "debug.h" |
61 | 61 | ||
62 | static int ath5k_calinterval = 10; /* Calibrate PHY every 10 secs (TODO: Fixme) */ | 62 | static int ath5k_calinterval = 10; /* Calibrate PHY every 10 secs (TODO: Fixme) */ |
63 | static int modparam_nohwcrypt; | ||
64 | module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444); | ||
65 | MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); | ||
63 | 66 | ||
64 | 67 | ||
65 | /******************\ | 68 | /******************\ |
@@ -2975,11 +2978,12 @@ ath5k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, | |||
2975 | struct ath5k_softc *sc = hw->priv; | 2978 | struct ath5k_softc *sc = hw->priv; |
2976 | int ret = 0; | 2979 | int ret = 0; |
2977 | 2980 | ||
2981 | if (modparam_nohwcrypt) | ||
2982 | return -EOPNOTSUPP; | ||
2983 | |||
2978 | switch (key->alg) { | 2984 | switch (key->alg) { |
2979 | case ALG_WEP: | 2985 | case ALG_WEP: |
2980 | /* XXX: fix hardware encryption, its not working. For now | 2986 | break; |
2981 | * allow software encryption */ | ||
2982 | /* break; */ | ||
2983 | case ALG_TKIP: | 2987 | case ALG_TKIP: |
2984 | case ALG_CCMP: | 2988 | case ALG_CCMP: |
2985 | return -EOPNOTSUPP; | 2989 | return -EOPNOTSUPP; |
@@ -2999,6 +3003,7 @@ ath5k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, | |||
2999 | } | 3003 | } |
3000 | __set_bit(key->keyidx, sc->keymap); | 3004 | __set_bit(key->keyidx, sc->keymap); |
3001 | key->hw_key_idx = key->keyidx; | 3005 | key->hw_key_idx = key->keyidx; |
3006 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; | ||
3002 | break; | 3007 | break; |
3003 | case DISABLE_KEY: | 3008 | case DISABLE_KEY: |
3004 | ath5k_hw_reset_key(sc->ah, key->keyidx); | 3009 | ath5k_hw_reset_key(sc->ah, key->keyidx); |