|
@@ -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.*/
|