diff options
| author | tinlin <tinlin@codeaurora.org> | 2017-11-22 11:32:12 +0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-11-28 05:49:30 -0800 |
| commit | 679d71ceccbd0d223cf273d1c55a1ec9cf9146f6 (patch) | |
| tree | 8519ea54d94184c07913d3b699c0c9f2977d2e12 | |
| parent | c73e73a3d2d5cf80e6a25bef9ad3008e822a31ef (diff) | |
qcacld-2.0: CL 3565057 - Update fw common interface files
Define vdev param enable/disable OCE features
Change-Id: I59f9760d96b2c11ae51cdd2c1e6cd672a12043c3
CRs-fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 12 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index da8024bb45e6..a94b9b1a541b 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -7375,6 +7375,15 @@ typedef enum { #define WMI_GI_1600_NS 2 #define WMI_GI_3200_NS 3 +/** OCE(Optimized Connectivity_Experience) Feature flags */ +#define WMI_VDEV_OCE_PROBE_REQUEST_RATE_FEATURE_BITMAP 0x1 +#define WMI_VDEV_OCE_PROBE_RESPONSE_RATE_FEATURE_BITMAP 0x2 +#define WMI_VDEV_OCE_BEACON_RATE_FEATURE_BITMAP 0x4 +#define WMI_VDEV_OCE_PROBE_REQUEST_DEFERRAL_FEATURE_BITMAP 0x8 +#define WMI_VDEV_OCE_FILS_DISCOVERY_FRAME_FEATURE_BITMAP 0x10 +#define WMI_VDEV_OCE_ESP_FEATURE_BITMAP 0x20 +#define WMI_VDEV_OCE_REASSOC_REJECT_FEATURE_BITMAP 0x40 + /** the definition of different VDEV parameters */ typedef enum { /** RTS Threshold */ @@ -7840,6 +7849,9 @@ typedef enum { */ WMI_VDEV_PARAM_NUM_GROUP_KEYS, /* 0x77 */ + /** VDEV parameter to enable or disable various OCE features */ + WMI_VDEV_PARAM_ENABLE_DISABLE_OCE_FEATURES, /* 0x78 */ + /*=== ADD NEW VDEV PARAM TYPES ABOVE THIS LINE === * The below vdev param types are used for prototyping, and are * prone to change. diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 99bc5e6a8cb8..e8a4afe7baba 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_ 449 +#define __WMI_REVISION_ 450 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
