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

Change-Id: I46fd7ba10d965505014d4f1264a78c66a94fcffd
WMI: add DISABLE_WDS_MEC_INTRABSS_OFFLOAD flag
CRs-Fixed: 2262693
This commit is contained in:
spuligil
2022-08-30 06:01:52 -07:00
parent c561998452
commit 03db641da3
2 changed files with 20 additions and 2 deletions

View File

@@ -4280,8 +4280,21 @@ typedef struct {
* 0 -> disable SAWF based scheduling
* 1 -> enable SAWF based scheduling
* Refer to WMI_RSRC_CFG_FLAGS2_SAWF_CONFIG_ENABLE_GET/SET macros.
* Bit 14 - notify_frame_support
* Flag to enable notify_frame_support from host.
* 0 -> disable notify_frame_support feature
* 1 -> enable_notify_frame_support feature
* Refer to WMI_RSRC_CFG_FLAGS2_NOTIFY_FRAME_CONFIG_ENABLE_GET/SET
* macros.
* Bit 15 - disable_wds_mec_intrabss
* Flag to disable wds learning, MEC, intrabss offload.
* By default, it is enabled.
* 0 -> enable wds_mec_intrabss offload
* 1 -> disable wds_mec_intrabss offload
* Refer to WMI_RSRC_CFG_FLAGS2_DISABLE_WDS_MEC_INTRABSS_OFFLOAD_GET /
* SET macros.
*
* Bits 31:14 - Reserved
* Bits 31:16 - Reserved
*/
A_UINT32 flags2;
/** @brief host_service_flags - can be used by Host to indicate
@@ -4720,6 +4733,11 @@ typedef struct {
#define WMI_RSRC_CFG_FLAGS2_NOTIFY_FRAME_CONFIG_ENABLE_SET(flags2, value) \
WMI_SET_BITS(flags2, 14, 1, value)
#define WMI_RSRC_CFG_FLAGS2_DISABLE_WDS_MEC_INTRABSS_OFFLOAD_GET(flags2) \
WMI_GET_BITS(flags2, 15, 1)
#define WMI_RSRC_CFG_FLAGS2_DISABLE_WDS_MEC_INTRABSS_OFFLOAD_SET(flags2, value) \
WMI_SET_BITS(flags2, 15, 1, value)
#define WMI_RSRC_CFG_HOST_SERVICE_FLAG_NAN_IFACE_SUPPORT_GET(host_service_flags) \
WMI_GET_BITS(host_service_flags, 0, 1)