diff options
| author | spuligil <spuligil@codeaurora.org> | 2018-06-18 15:24:20 -0700 |
|---|---|---|
| committer | spuligil <spuligil@codeaurora.org> | 2018-06-18 15:24:21 -0700 |
| commit | 7b6b7dbb4e4d875a0d5e4909be29cbd9624c83df (patch) | |
| tree | 07b1e90ef7944b29db096e0a1f529c24313b8c71 | |
| parent | ddf59d7c77436d8dae2c39f570eb40c1b123d340 (diff) | |
fw-api: CL 4811569 - update fw common interface files
Define WLM_FLAGS_PS_DISABLE_BMPS flag
Change-Id: I387882e51dfac3cdf58ac80f8d0b8d2ec0bca9ff
CRs-Fixed: 2262693
| -rwxr-xr-x | fw/wmi_unified.h | 9 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index 426e5a86c5c1..cbdbebff6914 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -22447,9 +22447,13 @@ typedef enum { #define WLM_FLAGS_ROAM_SUPPRESS 1 #define WLM_FLAGS_ALLOW_FINAL_BMISS_ROAM 2 -/* bit 8-9: reserved for roaming */ +/* bit 8: reserved for roaming */ + +/* bit 9-11 of flags is used for powersave operation */ +/* bit 9: WLM_FLAGS_PS_DISABLE_BMPS, disable BMPS if bit is set */ + +#define WLM_FLAGS_PS_DISABLE_BMPS 1 /* disable BMPS */ -/* bit 10-11 of flags is used for powersave operation */ /* bit 10: WLM_FLAGS_PS_DISABLE_CSS_COLLAPSE, disable css power collapse if bit is set */ #define WLM_FLAGS_PS_DISABLE_CSS_COLLAPSE 1 /* disable css power collapse */ @@ -22469,6 +22473,7 @@ typedef enum { #define WLM_FLAGS_SCAN_SET_DWELL_TIME_POLICY(flag, val) WMI_SET_BITS(flag, 2, 2, val) #define WLM_FLAGS_ROAM_GET_POLICY(flag) WMI_GET_BITS(flag, 6, 2) #define WLM_FLAGS_ROAM_SET_POLICY(flag, val) WMI_SET_BITS(flag, 6, 2, val) +#define WLM_FLAGS_PS_IS_BMPS_DISABLED(flag) WMI_GET_BITS(flag, 9, 1) #define WLM_FLAGS_PS_IS_CSS_CLPS_DISABLED(flag) WMI_GET_BITS(flag, 10, 1) #define WLM_FLAGS_PS_SET_CSS_CLPS_DISABLE(flag, val) WMI_SET_BITS(flag, 10, 1, val) #define WLM_FLAGS_PS_IS_SYS_SLP_DISABLED(flag) WMI_GET_BITS(flag, 11, 1) diff --git a/fw/wmi_version.h b/fw/wmi_version.h index bb62ee28e184..89c155750131 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_ 548 +#define __WMI_REVISION_ 549 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
