qcacmn: Add support for SET KEY convergence

Make changes to the cmn driver to support SET KEY
convergence feature

Change-Id: I17b5f368a1f735eb394ea70f9b61cc033c3eb20a
CRs-Fixed: 2358796
このコミットが含まれているのは:
Kiran Kumar Lokere
2018-09-19 13:48:48 -07:00
committed by nshrivas
コミット 25531c4717
17個のファイルの変更1014行の追加40行の削除

ファイルの表示

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016-2018 The Linux Foundation. All rights reserved.
* Copyright (c) 2016-2019 The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
@@ -1747,6 +1747,8 @@ struct wmi_probe_resp_params {
* @key_rxmic_len: rx mic length
* @key_tsc_counter: key tx sc counter
* @key_rsc_counter: key rx sc counter
* @key_rsc_ctr: key rx sc counter (stack variable, unnecessary heap alloc for
* key_rsc_counter should be cleaned up eventually)
* @rx_iv: receive IV, applicable only in case of WAPI
* @tx_iv: transmit IV, applicable only in case of WAPI
* @key_data: key data
@@ -1762,6 +1764,7 @@ struct set_key_params {
uint32_t key_rxmic_len;
uint64_t key_tsc_counter;
uint64_t *key_rsc_counter;
uint64_t key_rsc_ctr;
#if defined(ATH_SUPPORT_WAPI) || defined(FEATURE_WLAN_WAPI)
uint8_t rx_iv[16];
uint8_t tx_iv[16];