diff options
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 6 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 51223cad6fec..ba4f57405056 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -8800,6 +8800,7 @@ typedef struct #define LPI_IE_BITMAP_SCAN_ID 0x00100000 // extscan inserts the scan cycle count for this value; other scan clients can insert the scan id of the scan, if needed. #define LPI_IE_BITMAP_FLAGS 0x00200000 // reserved as a bitmap to indicate more scan information; one such use being to indicate if the on-going scan is interrupted or not #define LPI_IE_BITMAP_CACHING_REQD 0x00400000 // extscan will use this field to indicate if this frame info needs to be cached in LOWI LP or not +#define LPI_IE_BITMAP_REPORT_CONTEXT_HUB 0x00800000 // extscan will use this field to indicate to LOWI LP whether to report result to context hub or not. #define LPI_IE_BITMAP_ALL 0xFFFFFFFF typedef struct { @@ -9798,6 +9799,8 @@ typedef enum { WMI_EXTSCAN_BUCKET_COMPLETED_EVENT = 0x0008, WMI_EXTSCAN_BUCKET_FAILED_EVENT = 0x0010, WMI_EXTSCAN_BUCKET_OVERRUN_EVENT = 0x0020, + WMI_EXTSCAN_THRESHOLD_NUM_SCANS = 0x0040, + WMI_EXTSCAN_THRESHOLD_PERCENT = 0x0080, WMI_EXTSCAN_EVENT_MAX = 0x8000 } wmi_extscan_event_type; @@ -9822,6 +9825,7 @@ typedef enum { typedef enum { WMI_EXTSCAN_BUCKET_CACHE_RESULTS = 0x0001, // Cache the results of bucket whose configuration flags has this bit set + WMI_EXTSCAN_REPORT_EVENT_CONTEXT_HUB = 0x0002, // Report ext scan results to context hub or not. } wmi_extscan_bucket_configuration_flags; typedef enum { @@ -10350,6 +10354,8 @@ typedef struct { A_UINT32 first_entry_index; /**number of bssids in this page */ A_UINT32 num_entries_in_page; + /** number of buckets scanned**/ + A_UINT32 buckets_scanned; /* Followed by the variable length TLVs * wmi_extscan_wlan_descriptor bssid_list[] * wmi_extscan_rssi_info rssi_list[] diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index ade40a897b97..9e5d257081e6 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_ 195 +#define __WMI_REVISION_ 196 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
