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

Change-Id: Ic4c4d2b3ca79bac06c1461465be11faee3ea03ad
WMI: provide VIDEO_OVER_WIFI_ENABLE flag in WMI_INIT_CMD
CRs-Fixed: 2262693
This commit is contained in:
spuligil
2019-02-21 12:00:46 -08:00
vanhempi ce4de4b975
commit 3cfdedee78
3 muutettua tiedostoa jossa 16 lisäystä ja 1 poistoa

Näytä tiedosto

@@ -379,6 +379,7 @@ typedef enum {
WMI_SERVICE_EXT_PEER_TID_CONFIGS_SUPPORT = 194, /* Extended Peer Tid configuration support for QoS related settings */ WMI_SERVICE_EXT_PEER_TID_CONFIGS_SUPPORT = 194, /* Extended Peer Tid configuration support for QoS related settings */
WMI_SERVICE_WPA3_FT_SAE_SUPPORT = 195, /* FW roaming support for WPA3_FT_SAE */ WMI_SERVICE_WPA3_FT_SAE_SUPPORT = 195, /* FW roaming support for WPA3_FT_SAE */
WMI_SERVICE_WPA3_FT_SUITE_B_SUPPORT = 196, /* FW roaming support for WPA3_FT_SUITE_B */ WMI_SERVICE_WPA3_FT_SUITE_B_SUPPORT = 196, /* FW roaming support for WPA3_FT_SUITE_B */
WMI_SERVICE_VOW_ENABLE=197, /* FW supports a set of features to optimize VoW performance */
/******* ADD NEW SERVICES HERE *******/ /******* ADD NEW SERVICES HERE *******/

Näytä tiedosto

@@ -2949,6 +2949,15 @@ typedef struct {
#define WMI_RSRC_CFG_FLAG_PEER_TID_EXT_S 22 #define WMI_RSRC_CFG_FLAG_PEER_TID_EXT_S 22
#define WMI_RSRC_CFG_FLAG_PEER_TID_EXT_M 0x400000 #define WMI_RSRC_CFG_FLAG_PEER_TID_EXT_M 0x400000
/*
* If the VIDEO_OVER_WIFI_ENABLE flag is set, the target will use a
* series of algorithmic adjustments to optimize Video performance
* by reducing latency, reducing latency jitter, and minimizing
* dropped packets.
*/
#define WMI_RSRC_CFG_FLAG_VIDEO_OVER_WIFI_ENABLE_S 23
#define WMI_RSRC_CFG_FLAG_VIDEO_OVER_WIFI_ENABLE_M 0x800000
A_UINT32 flag1; A_UINT32 flag1;
/** @brief smart_ant_cap - Smart Antenna capabilities information /** @brief smart_ant_cap - Smart Antenna capabilities information
@@ -3202,6 +3211,11 @@ typedef struct {
#define WMI_RSRC_CFG_FLAG_PEER_TID_EXT_GET(word32) \ #define WMI_RSRC_CFG_FLAG_PEER_TID_EXT_GET(word32) \
WMI_RSRC_CFG_FLAG_GET((word32), PEER_TID_EXT) WMI_RSRC_CFG_FLAG_GET((word32), PEER_TID_EXT)
#define WMI_RSRC_CFG_FLAG_VIDEO_OVER_WIFI_ENABLE_SET(word32, value) \
WMI_RSRC_CFG_FLAG_SET((word32), VIDEO_OVER_WIFI_ENABLE, (value))
#define WMI_RSRC_CFG_FLAG_VIDEO_OVER_WIFI_ENABLE_GET(word32) \
WMI_RSRC_CFG_FLAG_GET((word32), VIDEO_OVER_WIFI_ENABLE)
typedef struct { typedef struct {
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_init_cmd_fixed_param */ A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_init_cmd_fixed_param */

Näytä tiedosto

@@ -36,7 +36,7 @@
#define __WMI_VER_MINOR_ 0 #define __WMI_VER_MINOR_ 0
/** WMI revision number has to be incremented when there is a /** WMI revision number has to be incremented when there is a
* change that may or may not break compatibility. */ * change that may or may not break compatibility. */
#define __WMI_REVISION_ 631 #define __WMI_REVISION_ 632
/** The Version Namespace should not be normally changed. Only /** The Version Namespace should not be normally changed. Only
* host and firmware of the same WMI namespace will work * host and firmware of the same WMI namespace will work