qcacmn: Add tlv formation of key installation commands in common wmi layer
Move tlv formation of wmi setup key installation commands from umac to common wmi layer. Change-Id: I51250a9b1b6bb5aed06657b9f88f4659430f4c74 CRs-Fixed: 987362
This commit is contained in:

committed by
Gerrit - the friendly Code Review server

parent
466963e7cd
commit
9efd9bfc2c
@@ -61,6 +61,7 @@
|
||||
#define WMI_IPV4_ADDR_LEN 4
|
||||
#define WMI_KEEP_ALIVE_NULL_PKT 1
|
||||
#define WMI_KEEP_ALIVE_UNSOLICIT_ARP_RSP 2
|
||||
#define WMI_MAC_MAX_KEY_LENGTH 32
|
||||
#define WMI_KRK_KEY_LEN 16
|
||||
#ifdef WLAN_FEATURE_ROAM_OFFLOAD
|
||||
#define WMI_BTK_KEY_LEN 32
|
||||
@@ -856,6 +857,36 @@ struct wmi_probe_resp_params {
|
||||
uint32_t ucProxyProbeReqValidIEBmap[8];
|
||||
};
|
||||
|
||||
/* struct set_key_params: structure containing
|
||||
* installation key parameters
|
||||
* @vdev_id: vdev id
|
||||
* @key_len: key length
|
||||
* @key_idx: key index
|
||||
* @peer_mac: peer mac address
|
||||
* @key_flags: key flags, 0:pairwise key, 1:group key, 2:static key
|
||||
* @key_cipher: key cipher based on security mode
|
||||
* @key_txmic_len: tx mic length
|
||||
* @key_rxmic_len: rx mic length
|
||||
* @rx_iv: receive IV, applicable only in case of WAPI
|
||||
* @tx_iv: transmit IV, applicable only in case of WAPI
|
||||
* @key_data: key data
|
||||
*/
|
||||
struct set_key_params {
|
||||
uint8_t vdev_id;
|
||||
uint16_t key_len;
|
||||
uint32_t key_idx;
|
||||
uint8_t peer_mac[IEEE80211_ADDR_LEN];
|
||||
uint32_t key_flags;
|
||||
uint32_t key_cipher;
|
||||
uint32_t key_txmic_len;
|
||||
uint32_t key_rxmic_len;
|
||||
#ifdef FEATURE_WLAN_WAPI
|
||||
uint8_t rx_iv[16];
|
||||
uint8_t tx_iv[16];
|
||||
#endif
|
||||
uint8_t key_data[WMI_MAC_MAX_KEY_LENGTH];
|
||||
};
|
||||
|
||||
/**
|
||||
* struct sta_params - sta keep alive parameters
|
||||
* @vdev_id: vdev id
|
||||
|
Reference in New Issue
Block a user