|
@@ -462,7 +462,8 @@ typedef enum {
|
|
|
WMI_PEER_SET_RX_BLOCKSIZE_CMDID,
|
|
|
/** request peer antdiv info from FW. FW shall respond with PEER_ANTDIV_INFO_EVENTID */
|
|
|
WMI_PEER_ANTDIV_INFO_REQ_CMDID,
|
|
|
-
|
|
|
+ /** Peer operating mode change indication sent to host to update stats */
|
|
|
+ WMI_PEER_OPER_MODE_CHANGE_EVENTID,
|
|
|
|
|
|
/* beacon/management specific commands */
|
|
|
|
|
@@ -8082,6 +8083,10 @@ typedef struct {
|
|
|
* and to look for a matching AP profile from a list of
|
|
|
* configured profiles. */
|
|
|
|
|
|
+/* flags for roam_scan_mode_cmd
|
|
|
+ * indicate the status (success/fail) of wmi_roam_scan_mode cmd through WMI_ROAM_EVENTID */
|
|
|
+#define WMI_ROAM_SCAN_MODE_FLAG_REPORT_STATUS 0x1
|
|
|
+
|
|
|
/**
|
|
|
* WMI_ROAM_SCAN_MODE: Set Roam Scan mode
|
|
|
* the roam scan mode is one of the periodic, rssi change, both, none.
|
|
@@ -8096,6 +8101,7 @@ typedef struct {
|
|
|
A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_roam_scan_mode_fixed_param */
|
|
|
A_UINT32 roam_scan_mode;
|
|
|
A_UINT32 vdev_id;
|
|
|
+ A_UINT32 flags; /* see WMI_ROAM_SCAN_MODE_FLAG defs */
|
|
|
} wmi_roam_scan_mode_fixed_param;
|
|
|
|
|
|
#define WMI_ROAM_SCAN_MODE_NONE 0x0
|
|
@@ -8533,6 +8539,7 @@ typedef struct {
|
|
|
* WMI_ROAM_REASON_HO_FAILED no matter WMI_ROAM_INVOKE_CMDID is called or not.
|
|
|
*/
|
|
|
#define WMI_ROAM_REASON_INVOKE_ROAM_FAIL 0x6
|
|
|
+#define WMI_ROAM_REASON_RSO_STATUS 0x7
|
|
|
/* reserved up through 0xF */
|
|
|
|
|
|
/* subnet status: bits 4-5 */
|
|
@@ -8558,9 +8565,12 @@ typedef enum
|
|
|
WMI_ROAM_SUBNET_CHANGE_STATUS_SHIFT)
|
|
|
|
|
|
/* roaming notification */
|
|
|
-#define WMI_ROAM_NOTIF_INVALID 0x0 /** invalid notification. Do not interpret notif field */
|
|
|
-#define WMI_ROAM_NOTIF_ROAM_START 0x1 /** indicate that roaming is started. sent only in non WOW state */
|
|
|
-#define WMI_ROAM_NOTIF_ROAM_ABORT 0x2 /** indicate that roaming is aborted. sent only in non WOW state */
|
|
|
+#define WMI_ROAM_NOTIF_INVALID 0x0 /** invalid notification. Do not interpret notif field */
|
|
|
+#define WMI_ROAM_NOTIF_ROAM_START 0x1 /** indicate that roaming is started. sent only in non WOW state */
|
|
|
+#define WMI_ROAM_NOTIF_ROAM_ABORT 0x2 /** indicate that roaming is aborted. sent only in non WOW state */
|
|
|
+#define WMI_ROAM_NOTIF_ROAM_REASSOC 0x3 /** indicate that reassociation is done. sent only in non WOW state */
|
|
|
+#define WMI_ROAM_NOTIF_SCAN_MODE_SUCCESS 0x4 /** indicate that roaming scan mode is successful */
|
|
|
+#define WMI_ROAM_NOTIF_SCAN_MODE_FAIL 0x5 /** indicate that roaming scan mode is failed due to internal roaming state */
|
|
|
|
|
|
/**whenever RIC request information change, host driver should pass all ric related information to firmware (now only support tsepc)
|
|
|
* Once, 11r roaming happens, firmware can generate RIC request in reassoc request based on these informations
|
|
@@ -10030,6 +10040,14 @@ typedef struct enlo_candidate_score_params_t {
|
|
|
A_UINT32 band5GHz_bonus; /* 5GHz RSSI score bonus (applied to all 5GHz networks) */
|
|
|
} enlo_candidate_score_params;
|
|
|
|
|
|
+typedef struct connected_nlo_bss_band_rssi_pref_t {
|
|
|
+ A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_connected_nlo_bss_band_rssi_pref */
|
|
|
+ /** band which needs to get preference over other band - see wmi_set_vdev_ie_band enum */
|
|
|
+ A_UINT32 band;
|
|
|
+ /* Amount of RSSI preference (in dB) that can be given to band (mentioned above) over other band */
|
|
|
+ A_INT32 rssi_pref;
|
|
|
+} connected_nlo_bss_band_rssi_pref;
|
|
|
+
|
|
|
typedef struct connected_nlo_rssi_params_t {
|
|
|
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_connected_nlo_rssi_params */
|
|
|
/* Relative rssi threshold (in dB) by which new BSS should have better rssi than
|
|
@@ -10064,13 +10082,16 @@ typedef struct wmi_nlo_config {
|
|
|
A_UINT32 ie_bitmap[WMI_IE_BITMAP_SIZE];
|
|
|
/** Number of vendor OUIs. In the TLV vendor_oui[] **/
|
|
|
A_UINT32 num_vendor_oui;
|
|
|
+ /** Number of connected NLO band preferences **/
|
|
|
+ A_UINT32 num_cnlo_band_pref;
|
|
|
/* The TLVs will follow.
|
|
|
* nlo_configured_parameters nlo_list[];
|
|
|
- * A_UINT32 channel_list[];
|
|
|
+ * A_UINT32 channel_list[num_of_channels];
|
|
|
* nlo_channel_prediction_cfg ch_prediction_cfg;
|
|
|
* enlo_candidate_score_params candidate_score_params;
|
|
|
- * wmi_vendor_oui vendor_oui[];
|
|
|
+ * wmi_vendor_oui vendor_oui[num_vendor_oui];
|
|
|
* connected_nlo_rssi_params cnlo_rssi_params;
|
|
|
+ * connected_nlo_bss_band_rssi_pref cnlo_bss_band_rssi_pref[num_cnlo_band_pref];
|
|
|
*/
|
|
|
} wmi_nlo_config_cmd_fixed_param;
|
|
|
|
|
@@ -10646,7 +10667,10 @@ typedef struct {
|
|
|
A_UINT32 cwmin;
|
|
|
A_UINT32 cwmax;
|
|
|
A_UINT32 aifs;
|
|
|
- A_UINT32 txoplimit;
|
|
|
+ union {
|
|
|
+ A_UINT32 txoplimit;
|
|
|
+ A_UINT32 mu_edca_timer;
|
|
|
+ };
|
|
|
A_UINT32 acm;
|
|
|
A_UINT32 no_ack;
|
|
|
} wmi_wmm_vparams;
|
|
@@ -11776,6 +11800,35 @@ typedef struct {
|
|
|
A_INT32 chain_rssi[8];
|
|
|
} wmi_peer_antdiv_info;
|
|
|
|
|
|
+typedef enum {
|
|
|
+ WMI_PEER_IND_SMPS = 0x0, /* spatial multiplexing power save */
|
|
|
+ WMI_PEER_IND_OMN, /* operating mode notification */
|
|
|
+ WMI_PEER_IND_OMI, /* operating mode indication */
|
|
|
+} WMI_PEER_OPER_MODE_IND;
|
|
|
+
|
|
|
+typedef struct {
|
|
|
+ /** TLV tag and len; tag equals
|
|
|
+ * WMITLV_TAG_STRUC_wmi_peer_oper_mode_change */
|
|
|
+ A_UINT32 tlv_header;
|
|
|
+ /** mac addr of the peer */
|
|
|
+ wmi_mac_addr peer_mac_address;
|
|
|
+ /** Peer type indication WMI_PEER_OPER_MODE_IND. */
|
|
|
+ A_UINT32 ind_type;
|
|
|
+ /** new_rxnss valid for all peer_operating mode ind. */
|
|
|
+ A_UINT32 new_rxnss;
|
|
|
+ /** new_bw valid for peer_operating mode ind. OMN/OMI
|
|
|
+ * value of this bw is as per 11ax/ac standard:
|
|
|
+ * 0 = 20MHz,1 = 40MHz, 2= 80MHz, 3 = 160MHz
|
|
|
+ */
|
|
|
+ A_UINT32 new_bw;
|
|
|
+ /** new_txnss valid for peer_operating mode ind. OMI */
|
|
|
+ A_UINT32 new_txnss;
|
|
|
+ /** new_disablemu: disable mu mode
|
|
|
+ * valid for peer_operating mode ind. OMI
|
|
|
+ */
|
|
|
+ A_UINT32 new_disablemu;
|
|
|
+} wmi_peer_oper_mode_change_event_fixed_param;
|
|
|
+
|
|
|
/** FW response when tx failure count has reached threshold
|
|
|
* for a peer */
|
|
|
typedef struct {
|