diff options
| author | Krishna Kumaar Natarajan <kknatara@qca.qualcomm.com> | 2015-03-15 19:57:43 -0700 |
|---|---|---|
| committer | AnjaneeDevi Kapparapu <c_akappa@qti.qualcomm.com> | 2015-03-23 15:08:21 +0530 |
| commit | 001ea3baa41e67cb07930e2a35a1ddbccfea2195 (patch) | |
| tree | b689b6ea9e4e9266e902c208c49e64f464ad052b | |
| parent | ab59130a599ac80c281505b57f2d6b4b1d30e319 (diff) | |
qcacld: CL 1242470 - update fw common interface files
This change set adds wmi interface changes for 5G scan.
Change-Id: I1614d2a3bfa0e98fd727061bf08e58ddfa6923ad
CRs-Fixed: 808109
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 10 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 7de05396549d..319efc4c5aa9 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2014 The Linux Foundation. All rights reserved. + * Copyright (c) 2013-2015 The Linux Foundation. All rights reserved. * * Previously licensed under the ISC license by Qualcomm Atheros, Inc. * @@ -5000,6 +5000,12 @@ typedef struct { A_UINT32 roam_scan_rssi_thresh; /** When using Hw generated beacon RSSI interrupts */ A_UINT32 roam_rssi_thresh_diff; + /** 5G scan max count */ + A_UINT32 hirssi_scan_max_count; + /** 5G scan rssi change threshold value */ + A_UINT32 hirssi_scan_delta; + /** 5G scan upper bound */ + A_UINT32 hirssi_upper_bound; } wmi_roam_scan_rssi_threshold_fixed_param; /** @@ -5030,6 +5036,8 @@ typedef struct { A_UINT32 roam_scan_rssi_change_thresh; /** When using Hw generated beacon RSSI interrupts */ A_UINT32 bcn_rssi_weight; + /** Minimum delay between two 5G scans */ + A_UINT32 hirssi_delay_btw_scans; } wmi_roam_scan_rssi_change_threshold_fixed_param; #define WMI_ROAM_SCAN_CHAN_LIST_TYPE_NONE 0x1 diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 937c27717119..def633471daf 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_ 91 +#define __WMI_REVISION_ 92 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
