diff options
| author | spuligil <spuligil@codeaurora.org> | 2019-12-03 18:00:33 -0800 |
|---|---|---|
| committer | spuligil <spuligil@codeaurora.org> | 2019-12-03 18:00:34 -0800 |
| commit | 3944a7669ba6280f272e07ce98b49bffbc559853 (patch) | |
| tree | f35641a836fa120f5c4e03b91ca21bca3b1d0108 | |
| parent | 8abd62b1cda3e2fff244a1ee21f2514d31708475 (diff) | |
fw-api: CL 8955096 - update fw common interface files
Add WMI_ROAM_BMISS_FINAL_SCAN_TYPE_FLAG def
Change-Id: I8f2a1124f9d52344f5254f35b5bc4694ce01bea0
CRs-Fixed: 2262693
| -rwxr-xr-x | fw/wmi_unified.h | 12 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
2 files changed, 10 insertions, 4 deletions
diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index 632375dfee88..8a59f33a81a0 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -10627,16 +10627,22 @@ typedef struct { /** Upto 8 bits are available for Roaming module to be sent along with WMI_VDEV_PARAM_ROAM_FW_OFFLOAD WMI_VDEV_PARAM **/ -/* Enable Roaming FW offload LFR1.5/LFR2.0 implementation */ +/* Bit 0: Enable Roaming FW offload LFR1.5/LFR2.0 implementation */ #define WMI_ROAM_FW_OFFLOAD_ENABLE_FLAG 0x1 -/* Enable Roaming module in FW to do scan based on Final BMISS */ +/* Bit 1: Enable Roaming module in FW to do scan based on Final BMISS */ #define WMI_ROAM_BMISS_FINAL_SCAN_ENABLE_FLAG 0x2 -/** +/* Bit 2: * To enable/disable EAPOL_4WAY_HANDSHAKE process while roaming. * param value = 0 --> Enable EAPOL 4way handshake * param value = 1 --> Skip EAPOL 4way handshake */ #define WMI_VDEV_PARAM_SKIP_ROAM_EAPOL_4WAY_HANDSHAKE 0x4 +/* Bit 3: + * Scan type when WMI_ROAM_BMISS_FINAL_SCAN_ENABLE_FLAG is set: + * value = 0 --> Chanmap scan followed by one full scan if no candidate found. + * value = 1 --> Chanmap scan only + */ +#define WMI_ROAM_BMISS_FINAL_SCAN_TYPE_FLAG 0x8 /** slot time long */ #define WMI_VDEV_SLOT_TIME_LONG 0x1 diff --git a/fw/wmi_version.h b/fw/wmi_version.h index 08ba94f89bae..f671515e5155 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_ 751 +#define __WMI_REVISION_ 752 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
