fw-api: CL 20275495 - update fw common interface files

Change-Id: I109b9efd66be46eda70a3aa5dab4d4d7141196b8
WMI: update wmi_hw_bd_status_type enum
CRs-Fixed: 2262693
This commit is contained in:
spuligil
2022-11-10 18:01:02 -08:00
committed by Madan Koyyalamudi
parent bdeb27f700
commit 1038b7458a
2 changed files with 24 additions and 9 deletions

View File

@@ -3287,18 +3287,33 @@ typedef enum {
} WMI_AFC_FEATURE_6G_DEPLOYMENT_TYPE;
typedef enum {
WMI_BDF_VERSION_OK = 0,
WMI_BDF_VERSION_CHECK_DISABLED = 0,
/* WMI_BDF_VERSION_TOO_OLD:
* BDF version is older than the oldest version supported by FW.
/* WMI_BDF_VERSION_CHECK_GOOD:
* BDF version is matched with FW.
*/
WMI_BDF_VERSION_TOO_OLD = 1,
WMI_BDF_VERSION_CHECK_GOOD = 1,
/* WMI_BDF_VERSION_TOO_NEW:
* BDF version is newer than the newest version supported by FW.
/* WMI_BDF_VERSION_TEMPLATE_TOO_OLD:
* BDF template version is older than the oldest version supported by FW.
*/
WMI_BDF_VERSION_TOO_NEW = 2,
} wmi_hw_bd_status_type;
WMI_BDF_VERSION_TEMPLATE_TOO_OLD = 2,
/* WMI_BDF_VERSION_TEMPLATE_TOO_NEW:
* BDF template version is newer than the newest version supported by FW.
*/
WMI_BDF_VERSION_TEMPLATE_TOO_NEW = 3,
/* WMI_BDF_VERSION_FW_TOO_OLD:
* FW version is older than the major version supported by BDF.
*/
WMI_BDF_VERSION_FW_TOO_OLD = 4,
/* WMI_BDF_VERSION_FW_TOO_NEW:
* FW version is newer than the minor version supported by BDF.
*/
WMI_BDF_VERSION_FW_TOO_NEW = 5,
} wmi_bdf_version_status_type;
typedef struct {
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_service_ready_ext2_event_fixed_param.*/