diff options
| author | Visweswara Tanuku <vtanuku@codeaurora.org> | 2018-10-08 16:01:33 +0530 |
|---|---|---|
| committer | Visweswara Tanuku <vtanuku@codeaurora.org> | 2018-10-08 16:03:20 +0530 |
| commit | 22cc6250d508ab21e983d9d21d515526cc2e9717 (patch) | |
| tree | 617e656be9d63cbf2ee1d87ecb415b62a43fb5ae | |
| parent | 6589406beca57a4159bbd66d2c76fc13c6cd5c34 (diff) | |
qcacld-2.0: CL 5471710 - Update fw common interface files
WMI: add notif_params field to roam event msg
CRs-fixed: 865207
Change-Id: Ie7e3dbc8dbdeebfc2eff6c722c43f7842eaad435
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 5 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 84be281a01ae..585c612485a2 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -11684,6 +11684,10 @@ typedef struct { A_UINT32 rssi; /** roam notification */ A_UINT32 notif; + /** roam notification param + * Refer to WMI_ROAM_NOTIF_ defs to interpret the notif_params value. + */ + A_UINT32 notif_params; } wmi_roam_event_fixed_param; /* roam_reason: bits 0-3 */ @@ -11753,6 +11757,7 @@ typedef enum { #define WMI_ROAM_NOTIF_SCAN_MODE_FAIL 0x5 /** indicate that roaming scan mode is failed due to internal roaming state */ #define WMI_ROAM_NOTIF_DISCONNECT 0x6 /** indicate that roaming not allowed due BTM req */ #define WMI_ROAM_NOTIF_SUBNET_CHANGED 0x7 /** indicate that subnet has changed */ +#define WMI_ROAM_NOTIF_SCAN_START 0x8 /** indicate roam scan start, 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 diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 8a41dc7cfdbe..a83734573f28 100644 --- a/CORE/SERVICES/COMMON/wmi_version.h +++ b/CORE/SERVICES/COMMON/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_ 579 +#define __WMI_REVISION_ 580 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
