|
@@ -517,6 +517,10 @@ typedef enum {
|
|
|
WMI_PEER_RESERVED0_CMDID,
|
|
|
/** Peer/Tid/Msduq threshold update */
|
|
|
WMI_PEER_TID_MSDUQ_QDEPTH_THRESH_UPDATE_CMDID,
|
|
|
+ /** TID specific configurations per peer of type
|
|
|
+ * wmi_peer_tid_configurations_cmd_fixed_param
|
|
|
+ */
|
|
|
+ WMI_PEER_TID_CONFIGURATIONS_CMDID,
|
|
|
|
|
|
/* beacon/management specific commands */
|
|
|
|
|
@@ -14751,6 +14755,99 @@ typedef struct {
|
|
|
*/
|
|
|
} wmi_peer_tid_msduq_qdepth_thresh_update_cmd_fixed_param;
|
|
|
|
|
|
+/**
|
|
|
+ * ACK policy to be followed for the TID
|
|
|
+ */
|
|
|
+typedef enum {
|
|
|
+ /** Used when the host does not want to configure the ACK policy */
|
|
|
+ WMI_PEER_TID_CONFIG_ACK_POLICY_IGNORE,
|
|
|
+ /** Allow ACK for the TID */
|
|
|
+ WMI_PEER_TID_CONFIG_ACK,
|
|
|
+ /** Do not expect ACK for the TID */
|
|
|
+ WMI_PEER_TID_CONFIG_NOACK,
|
|
|
+} WMI_PEER_TID_CONFIG_ACK_POLICY;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Aggregation control policy for the TID
|
|
|
+ */
|
|
|
+typedef enum {
|
|
|
+ /** Used when the host does not want to configure the aggregation policy */
|
|
|
+ WMI_PEER_TID_CONFIG_AGGR_CONTROL_IGNORE,
|
|
|
+ /** Enable aggregation for the TID */
|
|
|
+ WMI_PEER_TID_CONFIG_AGGR_CONTROL_ENABLE,
|
|
|
+ /** Disable aggregation for the TID */
|
|
|
+ WMI_PEER_TID_CONFIG_AGGR_CONTROL_DISABLE,
|
|
|
+} WMI_PEER_TID_CONFIG_AGGR_CONTROL;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Rate control policy for the TID
|
|
|
+ */
|
|
|
+typedef enum {
|
|
|
+ /** Used when the host does not want to configure the rate control policy */
|
|
|
+ WMI_PEER_TID_CONFIG_RATE_CONTROL_IGNORE,
|
|
|
+ /** Auto rate control */
|
|
|
+ WMI_PEER_TID_CONFIG_RATE_CONTROL_AUTO,
|
|
|
+ /** Fixed rate control */
|
|
|
+ WMI_PEER_TID_CONFIG_RATE_CONTROL_FIXED_RATE,
|
|
|
+} WMI_PEER_TID_CONFIG_RATE_CONTROL;
|
|
|
+
|
|
|
+/**
|
|
|
+ * SW retry threshold for the TID
|
|
|
+ */
|
|
|
+typedef enum {
|
|
|
+ /** Used when the host does not want to configure the SW retry threshold */
|
|
|
+ WMI_PEER_TID_SW_RETRY_IGNORE = 0,
|
|
|
+ WMI_PEER_TID_SW_RETRY_MIN = 1,
|
|
|
+ WMI_PEER_TID_SW_RETRY_MAX = 30,
|
|
|
+ /** No SW retry for the TID */
|
|
|
+ WMI_PEER_TID_SW_RETRY_NO_RETRY = 0xFFFFFFFF,
|
|
|
+} WMI_PEER_TID_CONFIG_SW_RETRY_THRESHOLD;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Command format for the TID configuration
|
|
|
+ */
|
|
|
+typedef struct {
|
|
|
+ /** TLV tag and len; tag equals
|
|
|
+ * WMITLV_TAG_STRUC_wmi_peer_tid_configurations_cmd_fixed_param
|
|
|
+ */
|
|
|
+ A_UINT32 tlv_header;
|
|
|
+
|
|
|
+ /** vdev id */
|
|
|
+ A_UINT32 vdev_id;
|
|
|
+
|
|
|
+ /** peer MAC address */
|
|
|
+ wmi_mac_addr peer_mac_address;
|
|
|
+
|
|
|
+ /** TID number, generated by the caller.
|
|
|
+ * Valid range for QoS TID : 0-15
|
|
|
+ * Valid range for non QOS/Mgmt TID: 16-19
|
|
|
+ * Any other TID number is invalid.
|
|
|
+ */
|
|
|
+ A_UINT32 tid_num;
|
|
|
+
|
|
|
+ /** ACK policy - of type WMI_PEER_TID_CONFIG_ACK_POLICY */
|
|
|
+ A_UINT32 ack_policy;
|
|
|
+
|
|
|
+ /** Aggregation control - of type WMI_PEER_TID_CONFIG_AGGR_CONTROL */
|
|
|
+ A_UINT32 aggr_control;
|
|
|
+
|
|
|
+ /** Rate control - of type WMI_PEER_TID_CONFIG_RATE_CONTROL */
|
|
|
+ A_UINT32 rate_control;
|
|
|
+
|
|
|
+ /** Fixed rate control parameters - of type WMI_PEER_PARAM_FIXED_RATE.
|
|
|
+ * This is applicable only when rate_control is
|
|
|
+ * WMI_PEER_TID_CONFIG_RATE_CONTROL_FIXED_RATE
|
|
|
+ */
|
|
|
+ A_UINT32 rcode_rcflags;
|
|
|
+
|
|
|
+ /** MPDU SW retry threshold - of type WMI_PEER_TID_CONFIG_SW_RETRY_THRESHOLD
|
|
|
+ * This SW retry threshold limits the total number of retransmits of
|
|
|
+ * nacked or unacked MPDUs, but it is up to the FW to decide what
|
|
|
+ * tx rate to use during each retransmission.
|
|
|
+ */
|
|
|
+ A_UINT32 sw_retry_threshold;
|
|
|
+} wmi_peer_tid_configurations_cmd_fixed_param;
|
|
|
+
|
|
|
typedef enum {
|
|
|
WMI_PEER_IND_SMPS = 0x0, /* spatial multiplexing power save */
|
|
|
WMI_PEER_IND_OMN, /* operating mode notification */
|
|
@@ -21431,6 +21528,7 @@ static INLINE A_UINT8 *wmi_id_to_name(A_UINT32 wmi_command)
|
|
|
WMI_RETURN_STRING(WMI_TWT_PAUSE_DIALOG_CMDID);
|
|
|
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);
|
|
|
}
|
|
|
|
|
|
return "Invalid WMI cmd";
|