diff options
| author | spuligil <spuligil@codeaurora.org> | 2018-06-14 09:02:49 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-06-18 15:14:48 -0700 |
| commit | 71cedde3d7b919795e39da1db50594dec6392d8d (patch) | |
| tree | a681c7085cb69e16d23bd6ec1b903b6c0b32dfaf | |
| parent | b88a1b28a6d921812f4202f569f9f1dc7271a477 (diff) | |
fw-api: CL 4798258 - update fw common interface files
Add WMI_VDEV_PARAM_DISABLE_CABQ def
Change-Id: Iff247bcfc1ae549bdf4697bb06eb6d15f508dbc8
CRs-Fixed: 1107600
| -rwxr-xr-x | fw/wmi_unified.h | 14 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index 86cf40d57029..5ac939e23492 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -8532,6 +8532,20 @@ typedef enum { */ WMI_VDEV_PARAM_GTX_ENABLE, /* 0x85 */ + /* + * Enable/Disable multicast buffer. + * A FLAG to enable & disable buffering of multicast frames at AP + * when stations are in Power Save mode. + * Once AP disables buffering of multicast frame, + * clients which goes into Power save mode will not receive these frames. + * by default MCAST buffering will be enabled. + * (CABQ = Content After Beacon Queue = multicast queue) + * Host will send this VDEV param command, + * With Value = 1 means fw will disable the MCAST buffering + * With Value = 0 means fw will enable the MCAST buffering. + */ + WMI_VDEV_PARAM_DISABLE_CABQ, /* 0x86 */ + /*=== ADD NEW VDEV PARAM TYPES ABOVE THIS LINE === * The below vdev param types are used for prototyping, and are diff --git a/fw/wmi_version.h b/fw/wmi_version.h index dafa2feb410e..03cc360f79e8 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_ 545 +#define __WMI_REVISION_ 546 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
