|
@@ -11616,6 +11616,8 @@ enum {
|
|
|
WMI_AUTH_RSNA_FILS_SHA384,
|
|
|
WMI_AUTH_RSNA_SUITE_B_8021X_SHA256,
|
|
|
WMI_AUTH_RSNA_SUITE_B_8021X_SHA384,
|
|
|
+ WMI_AUTH_FT_RSNA_SAE,
|
|
|
+ WMI_AUTH_FT_RSNA_SUITE_B_8021X_SHA384,
|
|
|
};
|
|
|
|
|
|
typedef enum {
|
|
@@ -12179,6 +12181,8 @@ typedef struct {
|
|
|
A_UINT32 r0kh_id_len;
|
|
|
A_UINT32 psk_msk[ROAM_OFFLOAD_PSK_MSK_BYTES>>2]; /* psk/msk offload. As this 4 byte aligned, we don't declare it as tlv array */
|
|
|
A_UINT32 psk_msk_len; /**length of psk_msk*/
|
|
|
+ A_UINT32 psk_msk_ext_len; /**length of psk_msk_ext*/
|
|
|
+ A_UINT32 psk_msk_ext[ROAM_OFFLOAD_PSK_MSK_BYTES>>2];
|
|
|
} wmi_roam_11r_offload_tlv_param;
|
|
|
|
|
|
/* This TLV will be filled only in case of ESE */
|
|
@@ -17692,6 +17696,8 @@ typedef struct {
|
|
|
(2) data/mgmt frame is received from roamed AP, which needs to return to host
|
|
|
*/
|
|
|
|
|
|
+#define GTK_OFFLOAD_KCK_EXTENDED_BYTES 32
|
|
|
+
|
|
|
typedef struct {
|
|
|
/** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_key_material */
|
|
|
A_UINT32 tlv_header;
|
|
@@ -17701,6 +17707,12 @@ typedef struct {
|
|
|
A_UINT8 replay_counter[GTK_REPLAY_COUNTER_BYTES];
|
|
|
} wmi_key_material;
|
|
|
|
|
|
+typedef struct {
|
|
|
+ /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_key_material_ext */
|
|
|
+ A_UINT32 tlv_header;
|
|
|
+ A_UINT8 key_buffer[GTK_OFFLOAD_KEK_EXTENDED_BYTES+GTK_OFFLOAD_KCK_EXTENDED_BYTES+GTK_REPLAY_COUNTER_BYTES]; /*the split of kck, kek should be known to host based on akmp*/
|
|
|
+} wmi_key_material_ext;
|
|
|
+
|
|
|
typedef struct {
|
|
|
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_roam_synch_event_fixed_param */
|
|
|
/** Unique id identifying the VDEV on which roaming is done by firmware */
|
|
@@ -17736,7 +17748,7 @@ typedef struct {
|
|
|
* A_UINT32 status; subnet changed status not being used currently.
|
|
|
* will pass the information using roam_status.
|
|
|
* A_UINT8 reassoc_req_frame[]; length identified by reassoc_req_len
|
|
|
- *
|
|
|
+ * wmi_key_material_ext key_ext
|
|
|
**/
|
|
|
} wmi_roam_synch_event_fixed_param;
|
|
|
|
|
@@ -22109,7 +22121,7 @@ typedef enum wmi_coex_config_type {
|
|
|
* arg5 - t_delay for high priority traffic (microsecond units)
|
|
|
*/
|
|
|
WMI_COEX_CONFIG_THREE_WAY_DELAY_PARA = 33,
|
|
|
- /* WMI_COEX_CONFIG_THREE_WAY_COEX_START
|
|
|
+ /* WMI_COEX_CONFIG_THREE_WAY_COEX_START
|
|
|
* config to set coex parameters from WLAN host to adjust priorities
|
|
|
* among wlan/bt/zb
|
|
|
* arg1 - priority level 1, the serialized coex scenorio ID will be put here
|