diff options
author | Rajkumar Manoharan <rmanohar@qti.qualcomm.com> | 2017-09-26 00:29:41 +0200 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2017-10-13 13:40:06 +0200 |
commit | 2ea9f12cefe4b6bf291e1717512b0ccb04bf71e9 (patch) | |
tree | 883de6e0175abc99ed83af1ee3547e80cabf4450 /drivers/net/wireless/ath/ath10k/hw.h | |
parent | ath10k: check power save support in STA mode through FW IE (diff) | |
download | linux-2ea9f12cefe4b6bf291e1717512b0ccb04bf71e9.tar.xz linux-2ea9f12cefe4b6bf291e1717512b0ccb04bf71e9.zip |
ath10k: add new cipher suite support
QCA99x0 and QCA4019 family chips support CCMP-256, GCMP-128, and
GCMP-256 ciphers in hardware, so advertise support for these. As
firmware does not support group management frame ciphers (BIP),
handle them in software (mac80211).
Reviewed-by: Sebastian Gottschall <s.gottschall@dd-wrt.com>
Cc: Jouni Malinen <jouni@qca.qualcomm.com>
Signed-off-by: Rajkumar Manoharan <rmanohar@qti.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/hw.h')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/hw.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath10k/hw.h b/drivers/net/wireless/ath/ath10k/hw.h index f80840fae517..05f26e5858ad 100644 --- a/drivers/net/wireless/ath/ath10k/hw.h +++ b/drivers/net/wireless/ath/ath10k/hw.h @@ -550,6 +550,9 @@ struct ath10k_hw_params { */ int vht160_mcs_rx_highest; int vht160_mcs_tx_highest; + + /* Number of ciphers supported (i.e First N) in cipher_suites array */ + int n_cipher_suites; }; struct htt_rx_desc; |