|
@@ -1713,6 +1713,9 @@ typedef enum {
|
|
|
/** event to get TX power per input HALPHY parameters */
|
|
|
WMI_GET_TPC_POWER_EVENTID,
|
|
|
|
|
|
+ /** event to provide MU-EDCA Parameters (to update host's beacon config) */
|
|
|
+ WMI_MUEDCA_PARAMS_CONFIG_EVENTID,
|
|
|
+
|
|
|
/* GPIO Event */
|
|
|
WMI_GPIO_INPUT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_GPIO),
|
|
|
/** upload H_CV info WMI event
|
|
@@ -25649,6 +25652,37 @@ typedef struct {
|
|
|
A_UINT32 pulse_width; /** Duration of pulse in micro seconds */
|
|
|
} wmi_hpcs_pulse_start_cmd_fixed_param;
|
|
|
|
|
|
+typedef struct {
|
|
|
+ /* TLV tag and len; tag equals wmi_muedca_params_config_event_fixed_param */
|
|
|
+ A_UINT32 tlv_header; /** TLV Header */
|
|
|
+ A_UINT32 pdev_id;
|
|
|
+ /*
|
|
|
+ * The following per-AC arrays are indexed using the
|
|
|
+ * WMI_AC_xxx / wmi_traffic_ac enum values.
|
|
|
+ */
|
|
|
+ /* aifsn
|
|
|
+ * Arbitration inter frame spacing number (AIFSN)
|
|
|
+ * Values are integers used for back off computation.
|
|
|
+ */
|
|
|
+ A_UINT32 aifsn[WMI_AC_MAX];
|
|
|
+ /* ecwmin
|
|
|
+ * Exponent form of ContentionWindow min (ECWmin)
|
|
|
+ * Values are integers used for back off computation.
|
|
|
+ */
|
|
|
+ A_UINT32 ecwmin[WMI_AC_MAX];
|
|
|
+ /* ecwmax
|
|
|
+ * Exponent form of ContentionWindow max (ECWmax)
|
|
|
+ * Values are integers used for back off computation.
|
|
|
+ */
|
|
|
+ A_UINT32 ecwmax[WMI_AC_MAX];
|
|
|
+ /* muedca_expiration_time
|
|
|
+ * MU EDCA Expiration time refers to the length of time after the most
|
|
|
+ * recent UL trigger time. The MU EDCA Timer field indicates the time
|
|
|
+ * limit, in units of 8 TUs
|
|
|
+ */
|
|
|
+ A_UINT32 muedca_expiration_time[WMI_AC_MAX];
|
|
|
+ } wmi_muedca_params_config_event_fixed_param;
|
|
|
+
|
|
|
/* Default PE Duration subfield indicates the PE duration in units of 4 us */
|
|
|
#define WMI_HEOPS_DEFPE_GET_D3(he_ops) WMI_GET_BITS(he_ops, 0, 3)
|
|
|
#define WMI_HEOPS_DEFPE_SET_D3(he_ops, value) WMI_SET_BITS(he_ops, 0, 3, value)
|