aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/wl12xx/wl1271_main.c
diff options
context:
space:
mode:
authorJuuso Oikarinen <juuso.oikarinen@nokia.com>2010-09-27 06:42:07 -0400
committerLuciano Coelho <luciano.coelho@nokia.com>2010-09-28 05:30:07 -0400
commit7a55724e0dc24cadaeb58f8306222a7802a24ff1 (patch)
tree941c2e705808b56980e167856b32b6d5d3fe58d1 /drivers/net/wireless/wl12xx/wl1271_main.c
parent8eab7b4708b5ef4701ecbe5d659f99743b77b668 (diff)
wl1271: Add support for hardware GEM cipher
This patch adds support for the hardware GEM cipher suite. Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com> Reviewed-by: Luciano Coelho <luciano.coelho@nokia.com> Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl1271_main.c')
-rw-r--r--drivers/net/wireless/wl12xx/wl1271_main.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c
index b7e9c69f3772..cb18f22bbc5c 100644
--- a/drivers/net/wireless/wl12xx/wl1271_main.c
+++ b/drivers/net/wireless/wl12xx/wl1271_main.c
@@ -1549,6 +1549,11 @@ static int wl1271_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
1549 tx_seq_32 = WL1271_TX_SECURITY_HI32(wl->tx_security_seq); 1549 tx_seq_32 = WL1271_TX_SECURITY_HI32(wl->tx_security_seq);
1550 tx_seq_16 = WL1271_TX_SECURITY_LO16(wl->tx_security_seq); 1550 tx_seq_16 = WL1271_TX_SECURITY_LO16(wl->tx_security_seq);
1551 break; 1551 break;
1552 case WL1271_CIPHER_SUITE_GEM:
1553 key_type = KEY_GEM;
1554 tx_seq_32 = WL1271_TX_SECURITY_HI32(wl->tx_security_seq);
1555 tx_seq_16 = WL1271_TX_SECURITY_LO16(wl->tx_security_seq);
1556 break;
1552 default: 1557 default:
1553 wl1271_error("Unknown key algo 0x%x", key_conf->cipher); 1558 wl1271_error("Unknown key algo 0x%x", key_conf->cipher);
1554 1559
@@ -2403,6 +2408,14 @@ EXPORT_SYMBOL_GPL(wl1271_unregister_hw);
2403 2408
2404int wl1271_init_ieee80211(struct wl1271 *wl) 2409int wl1271_init_ieee80211(struct wl1271 *wl)
2405{ 2410{
2411 static const u32 cipher_suites[] = {
2412 WLAN_CIPHER_SUITE_WEP40,
2413 WLAN_CIPHER_SUITE_WEP104,
2414 WLAN_CIPHER_SUITE_TKIP,
2415 WLAN_CIPHER_SUITE_CCMP,
2416 WL1271_CIPHER_SUITE_GEM,
2417 };
2418
2406 /* The tx descriptor buffer and the TKIP space. */ 2419 /* The tx descriptor buffer and the TKIP space. */
2407 wl->hw->extra_tx_headroom = WL1271_TKIP_IV_SPACE + 2420 wl->hw->extra_tx_headroom = WL1271_TKIP_IV_SPACE +
2408 sizeof(struct wl1271_tx_hw_descr); 2421 sizeof(struct wl1271_tx_hw_descr);
@@ -2420,6 +2433,9 @@ int wl1271_init_ieee80211(struct wl1271 *wl)
2420 IEEE80211_HW_CONNECTION_MONITOR | 2433 IEEE80211_HW_CONNECTION_MONITOR |
2421 IEEE80211_HW_SUPPORTS_CQM_RSSI; 2434 IEEE80211_HW_SUPPORTS_CQM_RSSI;
2422 2435
2436 wl->hw->wiphy->cipher_suites = cipher_suites;
2437 wl->hw->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites);
2438
2423 wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | 2439 wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
2424 BIT(NL80211_IFTYPE_ADHOC); 2440 BIT(NL80211_IFTYPE_ADHOC);
2425 wl->hw->wiphy->max_scan_ssids = 1; 2441 wl->hw->wiphy->max_scan_ssids = 1;