Browse Source

fw-api: CL 8893572 - update fw common interface files

Change-Id: If52b9f035497a285692337276d7ac78d052038c2
WMI: add counter fields in roam msgs, change ROAM_FAIL_REASON enum
CRs-Fixed: 2262693
spuligil 5 years ago
parent
commit
16f11653ed
2 changed files with 24 additions and 11 deletions
  1. 23 10
      fw/wmi_unified.h
  2. 1 1
      fw/wmi_version.h

+ 23 - 10
fw/wmi_unified.h

@@ -26524,6 +26524,8 @@ typedef struct {
      * Updated RSSI threshold value in dBm for next roam trigger.
      */
     A_UINT32 next_rssi_trigger_threshold;
+    A_UINT32 roam_scan_channel_count; /* Number of channels scanned during roam scan */
+    A_UINT32 roam_ap_count; /* Number of roamable APs */
 } wmi_roam_scan_info;
 
 typedef struct {
@@ -26557,16 +26559,25 @@ typedef struct {
 } wmi_roam_ap_info;
 
 typedef enum {
-    /* Failures for not triggering roam scan */
-    WMI_ROAM_FAIL_REASON_NO_SCAN_START = 1,
-    WMI_ROAM_FAIL_REASON_NO_AP_FOUND,
-    WMI_ROAM_FAIL_REASON_NO_CAND_AP_FOUND,
-
-    /* Roam scan is triggered but roaming failed reasons */
-    WMI_ROAM_FAIL_REASON_AP_REJECT,
-    WMI_ROAM_FAIL_REASON_HANDSHAKE_TIMEOUT,
-
-    WMI_ROAM_FAIL_REASON_UNKNOWN,
+    /* Failures reasons for not triggering roaming */
+    WMI_ROAM_FAIL_REASON_NO_SCAN_START = 1, /* Roam scan not started */
+    WMI_ROAM_FAIL_REASON_NO_AP_FOUND,       /* No roamable APs found during roam scan */
+    WMI_ROAM_FAIL_REASON_NO_CAND_AP_FOUND,  /* No candidate APs found during roam scan */
+
+    /* Failure reasons after roaming is triggered */
+    WMI_ROAM_FAIL_REASON_HOST,              /* Roam fail due to VDEV STOP issued from Host */
+    WMI_ROAM_FAIL_REASON_AUTH_SEND,         /* Unable to send auth request frame */
+    WMI_ROAM_FAIL_REASON_AUTH_RECV,         /* Received auth response with error status code */
+    WMI_ROAM_FAIL_REASON_NO_AUTH_RESP,      /* Not receiving auth response frame */
+    WMI_ROAM_FAIL_REASON_REASSOC_SEND,      /* Unable to send reassoc request frame */
+    WMI_ROAM_FAIL_REASON_REASSOC_RECV,      /* Received reassoc response with error status code */
+    WMI_ROAM_FAIL_REASON_NO_REASSOC_RESP,   /* Not receiving reassoc response frame */
+    WMI_ROAM_FAIL_REASON_EAPOL_TIMEOUT,     /* EAPOL TIMEOUT */
+    WMI_ROAM_FAIL_REASON_MLME,              /* MLME internal error */
+    WMI_ROAM_FAIL_REASON_INTERNAL_ABORT,    /* Internal abort */
+
+
+    WMI_ROAM_FAIL_REASON_UNKNOWN = 255,
 } WMI_ROAM_FAIL_REASON_ID;
 
 typedef struct {
@@ -26599,6 +26610,7 @@ typedef struct {
      * This timestamp indicates the time when neighbor report response is sent.
      */
     A_UINT32 neighbor_report_response_timestamp; /* in milli seconds */
+    A_UINT32 neighbor_report_channel_count; /* Number of channels received in neighbor report response */
 } wmi_roam_neighbor_report_info;
 
 typedef struct {
@@ -26609,6 +26621,7 @@ typedef struct {
 typedef struct {
     A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_roam_stats_event_fixed_param */
     A_UINT32 vdev_id;
+    A_UINT32 roam_scan_trigger_count; /* Number of roam scans triggered */
 } wmi_roam_stats_event_fixed_param;
 
 typedef struct {

+ 1 - 1
fw/wmi_version.h

@@ -36,7 +36,7 @@
 #define __WMI_VER_MINOR_    0
 /** WMI revision number has to be incremented when there is a
  *  change that may or may not break compatibility. */
-#define __WMI_REVISION_ 748
+#define __WMI_REVISION_ 749
 
 /** The Version Namespace should not be normally changed. Only
  *  host and firmware of the same WMI namespace will work