diff options
| author | Krishna Kumaar Natarajan <kknatara@qca.qualcomm.com> | 2016-03-23 15:58:21 -0700 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-03-28 12:54:56 +0530 |
| commit | 7f435daa96d78161ce9d176cd8cf679e28893de9 (patch) | |
| tree | 98fddbb69a0ce3344d7b4b5380f1029958079c18 | |
| parent | 524d6e5ee08d6336f9451b94db88cd41d178987d (diff) | |
qcacld-2.0: CL 1481784 - update fw common interface files
Define ROAM_START and ROAM_ABORT WMI notifications.
Change-Id: Idf0fec82a847f9c54fdad9daad30aaed6a7b590d
CRs-Fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 9 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 9 insertions, 2 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index b52c2345c39c..aaf5ec256289 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -7088,10 +7088,12 @@ typedef struct { A_UINT32 reason; /** associated AP's rssi calculated by FW when reason code is WMI_ROAM_REASON_LOW_RSSI*/ A_UINT32 rssi; - + /** roam notification */ + A_UINT32 notif; } wmi_roam_event_fixed_param; /* roam_reason: bits 0-3 */ +#define WMI_ROAM_REASON_INVALID 0x0 /** invalid reason. Do not interpret reason field */ #define WMI_ROAM_REASON_BETTER_AP 0x1 /** found a better AP */ #define WMI_ROAM_REASON_BMISS 0x2 /** beacon miss detected */ #define WMI_ROAM_REASON_DEAUTH 0x2 /** deauth/disassoc received */ @@ -7132,6 +7134,11 @@ typedef enum { (((roam_reason) & WMI_ROAM_SUBNET_CHANGE_STATUS_MASK) >> \ 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 */ + /**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 a69589f3edc1..abe6ca51acd3 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_ 228 +#define __WMI_REVISION_ 229 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
