diff options
| author | Nitesh Shah <niteshs@qti.qualcomm.com> | 2016-07-21 15:16:51 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-07-28 14:36:57 +0530 |
| commit | 1c91c3ddf1f88c7f9aa4b4994b4dd5e9a0a6a127 (patch) | |
| tree | facb6fdf6f41aef41393a3e79dd6111317f46a7c | |
| parent | 7dd802d79e8d9dc4b9662dd226bc77e94bc9a27c (diff) | |
qcacld-2.0: CL 1594673 - update fw common interface files
Adding new event for NAN Wake up with zero length.
Adding WMI_EP definitions.
Change-Id: I3940ffaf856fe9697818b6e56df3a49bf4750af0
CRs-fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi.h | 9 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 1 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/CORE/SERVICES/COMMON/wmi.h b/CORE/SERVICES/COMMON/wmi.h index ae7500c80ab2..7d31ff203b2c 100644 --- a/CORE/SERVICES/COMMON/wmi.h +++ b/CORE/SERVICES/COMMON/wmi.h @@ -91,9 +91,16 @@ PREPACK struct host_app_area_s { #define WMI_SET_FIELD(_msg_buf, _msg_type, _f, _val) \ SET_FIELD(_msg_buf, _msg_type ## _ ## _f, _val) -#define WMI_EP_APASS 0x0 +/* TYPO: leave incorrect name as an alias for the correct name */ +#define WMI_EP_APASS WMI_EP_APSS +/* WLAN driver running on apps processor sub-system */ +#define WMI_EP_APSS 0x0 #define WMI_EP_LPASS 0x1 #define WMI_EP_SENSOR 0x2 +/* WLAN driver running on NANO Hub */ +#define WMI_EP_NANOHUB 0x3 +#define WMI_EP_MODEM 0x4 +#define WMI_EP_LOCATION 0x5 /* * Control Path diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index c788fdb95650..ae16dce2a7e6 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -8167,6 +8167,7 @@ typedef enum wake_reason_e { WOW_REASON_TDLS_CONN_TRACKER_EVENT, WOW_REASON_CRITICAL_LOG, WOW_REASON_P2P_LISTEN_OFFLOAD, + WOW_REASON_NAN_EVENT_WAKE_HOST, WOW_REASON_DEBUG_TEST = 0xFF, } WOW_WAKE_REASON_TYPE; diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 90ce34a35fdf..e1c0a5b65854 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_ 278 +#define __WMI_REVISION_ 279 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
