diff options
| -rwxr-xr-x | fw/wmi_services.h | 1 | ||||
| -rwxr-xr-x | fw/wmi_unified.h | 8 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/fw/wmi_services.h b/fw/wmi_services.h index 2863f4a31e6a..57ef47b0dcef 100755 --- a/fw/wmi_services.h +++ b/fw/wmi_services.h @@ -388,6 +388,7 @@ typedef enum { WMI_SERVICE_THREE_WAY_COEX_CONFIG_OVERRIDE = 203, /* BTCOEX Three-way CoEx Config Override Feature support */ WMI_SERVICE_TX_PWR_PER_PEER = 204, /* target supports per-peer tx pwr spec via WMI_PEER_USE_FIXED_PWR */ WMI_SERVICE_NO_STA_PLUS_STA_SUPPORT = 205, /* indicates target doesn't support STA + STA concurrency */ + WMI_SERVICE_WPA3_FT_FILS = 206, /******* ADD NEW SERVICES HERE *******/ diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index d1184933a0e6..e6c551bfcc6e 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -11891,6 +11891,8 @@ enum { WMI_AUTH_RSNA_SUITE_B_8021X_SHA384, WMI_AUTH_FT_RSNA_SAE, WMI_AUTH_FT_RSNA_SUITE_B_8021X_SHA384, + WMI_AUTH_FT_RSNA_FILS_SHA256, + WMI_AUTH_FT_RSNA_FILS_SHA384, }; typedef enum { @@ -17984,7 +17986,11 @@ typedef struct { 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*/ + /* + * key_buffer contains kck,kck2,kek,kek2,replay counter, in order + * The split between kck vs. kek should be known to host based on akmp. + */ + A_UINT8 key_buffer[GTK_OFFLOAD_KEK_EXTENDED_BYTES+GTK_OFFLOAD_KCK_EXTENDED_BYTES+GTK_REPLAY_COUNTER_BYTES]; } wmi_key_material_ext; typedef struct { diff --git a/fw/wmi_version.h b/fw/wmi_version.h index db44ca469741..1afae172f8f3 100755 --- a/fw/wmi_version.h +++ b/fw/wmi_version.h @@ -36,7 +36,7 @@ #define __WMI_VER_MINOR_ 0 /** WMI revision number has to be incremented when there is a * change that may or may not break compatibility. */ -#define __WMI_REVISION_ 649 +#define __WMI_REVISION_ 650 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
