diff options
| author | spuligil <spuligil@codeaurora.org> | 2019-10-24 04:06:14 -0700 |
|---|---|---|
| committer | spuligil <spuligil@codeaurora.org> | 2019-10-24 04:06:14 -0700 |
| commit | 419c8cf2eabdfb39f70f82a89afa2e407483d192 (patch) | |
| tree | 2a2c1193d451c549d4d3af05404f9c4a2fd8e442 | |
| parent | c5fc5d6c5f8dd9cc99e1ec37889aeb5848ae07ae (diff) | |
fw-api: CL 8441602 - update fw common interface files
Change-Id: I504a98d0408cbe4b4d57461b7ded171231931578
WMI: add WMI_CIPHER_BIP_CMAC,GMAC_128,256 defs (also WMI fix: add TLV header to wmi_cfr_filter_group_config struct)
CRs-Fixed: 2262693
| -rwxr-xr-x | fw/wmi_services.h | 1 | ||||
| -rwxr-xr-x | fw/wmi_unified.h | 7 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/fw/wmi_services.h b/fw/wmi_services.h index e695fa87b44a..8bbe6626f5f5 100755 --- 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 f3feccf5a555..cb2154f4132c 100755 --- 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 c9e8460af594..29d47af30209 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_ 728 +#define __WMI_REVISION_ 729 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
