diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index c0959840a2..250093c7df 100644 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -3446,6 +3446,13 @@ typedef struct { #define WMI_TARGET_CAP_MULTIPASS_SAP_SUPPORT_SET(target_cap_flags, value) \ WMI_SET_BITS(target_cap_flags, 13, 1, value) +/* ML FULL monitor mode */ +#define WMI_TARGET_CAP_ML_MONITOR_MODE_SUPPORT_GET(target_cap_flags) \ + WMI_GET_BITS(target_cap_flags, 14, 1) +#define WMI_TARGET_CAP_ML_MONITOR_MODE_SUPPORT_SET(target_cap_flags, value) \ + WMI_SET_BITS(target_cap_flags, 14, 1, value) + + /* * wmi_htt_msdu_idx_to_htt_msdu_qtype GET/SET APIs */ @@ -3589,7 +3596,8 @@ typedef struct { * Bit11 - [ML-STA + SL-STA] 0: not supported; 1:supported * Bit12 - [ML-STA + SL-SAP] 0: not supported; 1:supported * Bit 13 - Support for multipass SAP - * Bits 31:14 - Reserved + * Bit 14 - Support for ML monitor mode + * Bits 31:15 - Reserved */ A_UINT32 target_cap_flags; @@ -4698,7 +4706,13 @@ typedef struct { * Refer to the below definitions of the * WMI_RSRC_CFG_HOST_SERVICE_FLAG_SMEM_MAILBOX_SUPPORT_GET * and _SET macros. - * Bits 31:16 - Reserved + * Bit 16 + * ML FULL monitor mode + * This bit will be set by host to enable ML_FULL_MONITOR_MODE + * Refer to the below definitions of the + * WMI_RSRC_CFG_HOST_SERVICE_FLAG_ML_FULL_MONITOR_MODE_SUPPORT_GET + * and _SET macros + * Bits 31:17 - Reserved */ A_UINT32 host_service_flags; @@ -5159,6 +5173,12 @@ typedef struct { #define WMI_RSRC_CFG_HOST_SERVICE_FLAG_QMS_DLKM_SUPPORT_SET(host_service_flags, val) /* DEPRECATED */ \ WMI_RSRC_CFG_HOST_SERVICE_FLAG_SMEM_MAILBOX_SUPPORT_SET(host_service_flags, val) +/* ML FULL monitor mode */ +#define WMI_RSRC_CFG_HOST_SERVICE_FLAG_ML_FULL_MONITOR_MODE_SUPPORT_GET(host_service_flags) \ + WMI_GET_BITS(host_service_flags, 16, 1) +#define WMI_RSRC_CFG_HOST_SERVICE_FLAG_ML_FULL_MONITOR_MODE_SUPPORT_SET(host_service_flags, val) \ + WMI_SET_BITS(host_service_flags, 16, 1, val) + #define WMI_RSRC_CFG_CARRIER_CFG_CHARTER_ENABLE_GET(carrier_config) \ WMI_GET_BITS(carrier_config, 0, 1) diff --git a/fw/wmi_version.h b/fw/wmi_version.h index 9a61d50e50..75d56c663f 100644 --- a/fw/wmi_version.h +++ b/fw/wmi_version.h @@ -37,7 +37,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_ 1452 +#define __WMI_REVISION_ 1453 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work