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

Change-Id: I79f0296eef2ed8672ba20d75791d7317931a5f44
WMI: add rsrc cfg flags to specify AC to use for ARP frms
CRs-Fixed: 2262693
This commit is contained in:
Sandeep Puligilla
2021-12-13 06:01:08 -08:00
parent 9f2d727be7
commit 26f51661d6
2 changed files with 25 additions and 2 deletions

View File

@@ -4051,7 +4051,20 @@ typedef struct {
* for MBSSID_NON_TX_VAP
* Refer to WMI_RSRC_CFG_FLAGS2_CALC_NEXT_DTIM_COUNT_GET/SET macros.
*
* Bits 31:10 - Reserved
* Bit 10 - arp_ac_override_valid
* 0 -> arp_ac_override field is invalid
* 1 -> arp_ac_override field is valid
* Refer to WMI_RSRC_CFG_FLAGS2_ARP_AC_OVERRIDE_VALID_GET/SET macros.
* Bit 12:11 - arp_ac_override
* If the AC override valid bit is set then this field will specify the
* access category to use for ARP frames
* 0 - WMM_AC_BE
* 1 - WMM_AC_BK
* 2 - WMM_AC_VI
* 3 - WMM_AC_VO
* Refer to WMI_RSRC_CFG_FLAGS2_ARP_AC_OVERRIDE_GET/SET macros.
*
* Bits 31:13 - Reserved
*/
A_UINT32 flags2;
/** @brief host_service_flags - can be used by Host to indicate
@@ -4436,6 +4449,16 @@ typedef struct {
#define WMI_RSRC_CFG_FLAGS2_CALC_NEXT_DTIM_COUNT_SET(flags2, value) \
WMI_SET_BITS(flags2, 9, 1, value)
#define WMI_RSRC_CFG_FLAGS2_ARP_AC_OVERRIDE_VALID_GET(flags2) \
WMI_GET_BITS(flags2, 10, 1)
#define WMI_RSRC_CFG_FLAGS2_ARP_AC_OVERRIDE_VALID_SET(flags2, value) \
WMI_SET_BITS(flags2, 10, 1, value)
#define WMI_RSRC_CFG_FLAGS2_ARP_AC_OVERRIDE_GET(flags2) \
WMI_GET_BITS(flags2, 11, 2)
#define WMI_RSRC_CFG_FLAGS2_ARP_AC_OVERRIDE_SET(flags2, value) \
WMI_SET_BITS(flags2, 11, 2, value)
#define WMI_RSRC_CFG_HOST_SERVICE_FLAG_NAN_IFACE_SUPPORT_GET(host_service_flags) \
WMI_GET_BITS(host_service_flags, 0, 1)
#define WMI_RSRC_CFG_HOST_SERVICE_FLAG_NAN_IFACE_SUPPORT_SET(host_service_flags, val) \