Эх сурвалжийг харах

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

Change-Id: I33d21a83e887d5c48b0430845acaba11597eed5c
WMI: add disable_rts_cts flag to peer_tid config msg
CRs-Fixed: 2262693
spuligil 6 жил өмнө
parent
commit
de04cd4aad

+ 1 - 0
fw/wmi_services.h

@@ -376,6 +376,7 @@ typedef  enum  {
     WMI_SERVICE_GET_MWS_ANTENNA_SHARING_STATE = 191, /* FW provides LTE-Coex Antenna sharing info */
     WMI_SERVICE_ENHANCED_TPC_CONFIG_EVENT = 192, /* FW provides enhanced tx power control configuration dump */
     WMI_SERVICE_WLM_STATS_REQUEST = 193, /* FW supports WLAN latency manager stats request */
+    WMI_SERVICE_EXT_PEER_TID_CONFIGS_SUPPORT = 194, /* Extended Peer Tid configuration support for QoS related settings */
 
 
     /******* ADD NEW SERVICES HERE *******/

+ 30 - 0
fw/wmi_unified.h

@@ -2942,6 +2942,13 @@ typedef struct {
     #define WMI_RSRC_CFG_FLAG_HTT_PEER_STATS_S 21
     #define WMI_RSRC_CFG_FLAG_HTT_PEER_STATS_M 0x200000
 
+    /*
+     * If this BIT is set, then the target should use peer_tid_ext to analyze
+     * per peer per tid extended configurations
+     */
+    #define WMI_RSRC_CFG_FLAG_PEER_TID_EXT_S 22
+    #define WMI_RSRC_CFG_FLAG_PEER_TID_EXT_M 0x400000
+
     A_UINT32 flag1;
 
     /** @brief smart_ant_cap - Smart Antenna capabilities information
@@ -3190,6 +3197,11 @@ typedef struct {
 #define WMI_RSRC_CFG_FLAG_HTT_PEER_STATS_GET(word32) \
     WMI_RSRC_CFG_FLAG_GET((word32), HTT_PEER_STATS)
 
+#define WMI_RSRC_CFG_FLAG_PEER_TID_EXT_SET(word32, value) \
+    WMI_RSRC_CFG_FLAG_SET((word32), PEER_TID_EXT, (value))
+#define WMI_RSRC_CFG_FLAG_PEER_TID_EXT_GET(word32) \
+    WMI_RSRC_CFG_FLAG_GET((word32), PEER_TID_EXT)
+
 
 typedef struct {
     A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_init_cmd_fixed_param */
@@ -16000,6 +16012,15 @@ typedef enum {
     WMI_PEER_TID_SW_RETRY_NO_RETRY = 0xFFFFFFFF,
 } WMI_PEER_TID_CONFIG_SW_RETRY_THRESHOLD;
 
+/*
+ * values for tid_config_supported_bitmap field,
+ * in wmi_peer_tid_configurations_cmd structure.
+ */
+typedef enum {
+      /* Used to indicate that disable_rts_cts field is valid */
+      WMI_PEER_TID_DISABLE_RTS_CTS_VALID = 0x00000001,
+} WMI_PEER_TID_EXT_CONFIG_VALID_BITMAP;
+
 /**
  * Command format for the TID configuration
  */
@@ -16043,6 +16064,15 @@ typedef struct {
      * tx rate to use during each retransmission.
      */
     A_UINT32 sw_retry_threshold;
+
+    /*--- Start of extended structure ---*/
+    /* Bitmap to indicate which fields in the extended structure are valid.
+     * Bitmap values correspond to enum WMI_PEER_TID_EXT_CONFIG_VALID_BITMAP
+     */
+    A_UINT32 tid_config_supported_bitmap;
+
+    /* Knob to enable/disable RTS/CTS per TID */
+    A_UINT32 disable_rts_cts;
 } wmi_peer_tid_configurations_cmd_fixed_param;
 
 /* The below enable/disable macros are used for both per peer CFR capture

+ 1 - 1
fw/wmi_version.h

@@ -36,7 +36,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_ 618
+#define __WMI_REVISION_ 619
 
 /** The Version Namespace should not be normally changed. Only
  *  host and firmware of the same WMI namespace will work