#define WMI_ROAM_NOTIF_DISASSOC_RECV 0xa /** indicate disassoc received, notif_params to be sent as reason code, notif_params1 to be sent as frame length */
#define WMI_ROAM_NOTIF_SCAN_MODE_SUCCESS_WITH_HO_FAIL 0xb /** indicate that roaming scan mode is successful but cause disconnection and subsequent
** WMI_ROAM_REASON_HO_FAILED is event expected */
#define WMI_ROAM_NOTIF_SCAN_END 0xc /** indicate roam scan end, notif_params to be sent as WMI_ROAM_TRIGGER_REASON_ID */
/**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
A_UINT32 timestamp; /* Timestamp in milli seconds */
A_UINT32 roam_status; /* 0 - Roaming is success, 1 - Roaming is failed */
A_UINT32 roam_fail_reason; /* from WMI_ROAM_FAIL_REASON_ID */
wmi_mac_addr bssid; /* bssid corresponds to roam_fail_reason */
} wmi_roam_result;
typedef struct {
@@ -32457,6 +32464,29 @@ typedef struct {
wmi_mac_addr partner_link_addr; /* Assigned link address which can be used as self link addr when vdev is not created */
} wmi_roam_mlo_config_cmd_fixed_param;
typedef struct {
A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_vdev_set_param_cmd_fixed_param */
/** unique id identifying the VDEV, generated by the caller */
A_UINT32 vdev_id;
/** parameter id - see WMI_ROAM_PARAM */
A_UINT32 param_id;
/** parameter value */
A_UINT32 param_value;
} wmi_roam_set_param_cmd_fixed_param;
/** the definition of different ROAM parameters */
typedef enum {
/* roam param to configure below roam events
* Bit : 0 disabled - do not send WMI_ROAM_NOTIF_SCAN_END in WMI_ROAM_EVENTID
* Bit : 0 enabled - send WMI_ROAM_NOTIF_SCAN_END in WMI_ROAM_EVENTID
* Bit : 1 disabled - do not send 1) WMI_ROAM_STATS_EVENTID 2) WMI_ROAM_NOTIF_SCAN_START and WMI_ROAM_NOTIF_SCAN_END notifs in WMI_ROAM_EVENTID in suspend mode
* Bit : 1 enabled - send 1) WMI_ROAM_STATS_EVENTID 2) WMI_ROAM_NOTIF_SCAN_START and WMI_ROAM_NOTIF_SCAN_END notifs in WMI_ROAM_EVENTID in suspend mode
* Bit : 2-31 - reserved
*/
WMI_ROAM_PARAM_ROAM_EVENTS_CONFIG = 0x1,
/*=== END ROAM_PARAM_PROTOTYPE SECTION ===*/
} WMI_ROAM_PARAM;
typedef struct {
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_vdev_get_big_data_cmd_fixed_param */