|
@@ -450,6 +450,8 @@ typedef enum {
|
|
|
WMI_VDEV_GET_TX_POWER_CMDID,
|
|
|
/* limit STA offchannel activity */
|
|
|
WMI_VDEV_LIMIT_OFFCHAN_CMDID,
|
|
|
+ /** To set custom software retries per-AC for vdev */
|
|
|
+ WMI_VDEV_SET_CUSTOM_SW_RETRY_TH_CMDID,
|
|
|
|
|
|
/* peer specific commands */
|
|
|
|
|
@@ -4301,6 +4303,20 @@ typedef enum {
|
|
|
WMI_GET_BITS(param, WMI_VDEV_CUSTOM_TX_AC_EN_BITPOS, \
|
|
|
WMI_VDEV_CUSTOM_TX_AC_EN_NUM_BITS)
|
|
|
|
|
|
+typedef enum {
|
|
|
+ WMI_VDEV_CUSTOM_SW_RETRY_TYPE_NONAGGR = 0,
|
|
|
+ WMI_VDEV_CUSTOM_SW_RETRY_TYPE_AGGR = 1,
|
|
|
+ WMI_VDEV_CUSTOM_SW_RETRY_TYPE_MAX,
|
|
|
+} wmi_vdev_custom_sw_retry_type_t;
|
|
|
+
|
|
|
+typedef struct {
|
|
|
+ A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_vdev_set_custom_sw_retry_th_cmd_fixed_param */
|
|
|
+ A_UINT32 vdev_id; /* vdev id indicating to which the vdev custom software retries will be applied. */
|
|
|
+ A_UINT32 ac_type; /* access category (VI, VO, BE, BK) enum wmi_traffic_ac */
|
|
|
+ A_UINT32 sw_retry_type; /* 0 = non-aggr retry, 1 = aggr retry (wmi_vdev_custom_sw_retry_type_t enum) */
|
|
|
+ A_UINT32 sw_retry_th; /* max retry count per AC base on ac_type for the vdev mentioned in vdev id*/
|
|
|
+} wmi_vdev_set_custom_sw_retry_th_cmd_fixed_param;
|
|
|
+
|
|
|
/*
|
|
|
* Command to enable/disable Green AP Power Save.
|
|
|
* This helps conserve power during AP operation. When the AP has no
|
|
@@ -21542,6 +21558,7 @@ static INLINE A_UINT8 *wmi_id_to_name(A_UINT32 wmi_command)
|
|
|
WMI_RETURN_STRING(WMI_TWT_RESUME_DIALOG_CMDID);
|
|
|
WMI_RETURN_STRING(WMI_REQUEST_ROAM_SCAN_STATS_CMDID);
|
|
|
WMI_RETURN_STRING(WMI_PEER_TID_CONFIGURATIONS_CMDID);
|
|
|
+ WMI_RETURN_STRING(WMI_VDEV_SET_CUSTOM_SW_RETRY_TH_CMDID);
|
|
|
}
|
|
|
|
|
|
return "Invalid WMI cmd";
|