diff --git a/fw/wmi_services.h b/fw/wmi_services.h index e695fa87b4..8bbe6626f5 100644 --- a/fw/wmi_services.h +++ b/fw/wmi_services.h @@ -415,6 +415,7 @@ typedef enum { WMI_SERVICE_QMI_STATS_SUPPORT = 225, WMI_SERVICE_CFR_CAPTURE_FILTER_SUPPORT = 226, /* Indicate FW Supports Channel Frequency Response (CFR) via WMI_CFR_CAPTURE_FILTER_CMDID */ WMI_SERVICE_STA_BSS_MAX_IDLE_TIME = 227, /* Indicate FW supports BSS Max Idle time feature via WMI_VDEV_BSS_MAX_IDLE_TIME_CMDID */ + WMI_SERVICE_BIP_CIPHER_SUPPORT = 228, /* FW supports new BIP_CIPHER suites (WMI_CIPHER_BIP_xxx) */ /******* ADD NEW SERVICES HERE *******/ diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index f3feccf5a5..cb2154f413 100644 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -9507,6 +9507,10 @@ typedef struct { #define WMI_CIPHER_AES_GCM 0x9 #define WMI_CIPHER_AES_GMAC 0xa #define WMI_CIPHER_WAPI_GCM_SM4 0xb +#define WMI_CIPHER_BIP_CMAC_128 0xc +#define WMI_CIPHER_BIP_CMAC_256 0xd +#define WMI_CIPHER_BIP_GMAC_128 0xe +#define WMI_CIPHER_BIP_GMAC_256 0xf typedef struct { A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_vdev_install_key_cmd_fixed_param */ @@ -28068,6 +28072,9 @@ typedef struct { WMI_GET_BITS(param, WMI_CFR_GROUP_NSS_BIT_POS, WMI_CFR_GROUP_NSS_MASK_NUM_BITS) typedef struct { + /** TLV tag and len; tag equals + * WMITLV_TAG_STRUC_wmi_cfr_filter_group_config */ + A_UINT32 tlv_header; /* Filter group number for which the below filters needs to be applied */ A_UINT32 filter_group_id; /* Indicates which of the below filter's value is valid diff --git a/fw/wmi_version.h b/fw/wmi_version.h index c9e8460af5..29d47af302 100644 --- 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_ 728 +#define __WMI_REVISION_ 729 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work