diff options
| author | Service qcabuildsw <qcabuildsw@localhost> | 2017-02-08 20:32:15 -0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-02-08 20:32:15 -0800 |
| commit | 5936171a7cecd3a4d4130ff27a67e20e80a4ca19 (patch) | |
| tree | 169b037474a165c1fe77a8adb21f8f38d671eba8 | |
| parent | 28fe7c39eaaf8e15a5d3bffeef98c75b26e6ef64 (diff) | |
| parent | d8f664b4574c3d16b726c4f18448d15ba37eb77a (diff) | |
Merge "fw-api: CL 2826987 - update fw common interface files" into wlan-api.lnx.1.1-dev
| -rwxr-xr-x | fw/wmi_unified.h | 16 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
2 files changed, 13 insertions, 5 deletions
diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index 28bd1d6fd262..df281d75a9cc 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -8082,6 +8082,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 +8100,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 +8538,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 ROAM_REASON_RSO_STATUS 0x7 /* reserved up through 0xF */ /* subnet status: bits 4-5 */ @@ -8558,10 +8564,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_ROAM_REASSOC 0x3 /** indicate that reassociation is done. 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 diff --git a/fw/wmi_version.h b/fw/wmi_version.h index 50d8ff0ca780..16c10192bf8d 100755 --- a/fw/wmi_version.h +++ b/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_ 339 +#define __WMI_REVISION_ 340 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
