diff options
| author | tinlin <tinlin@codeaurora.org> | 2017-11-20 18:49:59 +0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-11-28 02:33:51 -0800 |
| commit | 5474307bd3f90d20506dd4378c8983e1441798e5 (patch) | |
| tree | deb99100bf024b80a6dc33693ad4f0b5c123d24b | |
| parent | f12d90ae9ff1c97e76553e44d8eb33a5cc3d45a3 (diff) | |
qcacld-2.0: CL 3186656 - Update fw common interface files
Add rssi_thresh_offset_5g
Change-Id: Ie0b0f784a89e18e408bbbb9445f21e624d451b0c
CRs-fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 24 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 15 insertions, 11 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 871064757efe..eaed161fb97e 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -4400,7 +4400,7 @@ typedef enum { */ WMI_PDEV_PARAM_ABG_MODE_TX_CHAIN_NUM, /** Enable/Disable cck txfir override - * bit 0 - enable (1) or disale (0) CCK tx FIR + * bit 0 - enable (1) or disable (0) CCK tx FIR * bits 31:1 - unused / reserved (set to 0) */ WMI_PDEV_PARAM_ENABLE_CCK_TXFIR_OVERRIDE, @@ -9336,6 +9336,10 @@ typedef struct { A_UINT32 hirssi_scan_delta; /** 5G scan upper bound */ A_UINT32 hirssi_upper_bound; + /** roam scan rssi threshold for 5G band. + * offset from roam_scan_rssi_thres, in dB units + */ + A_INT32 rssi_thresh_offset_5g; /* The TLVs will follow. * wmi_roam_scan_extended_threshold_param extended_param; * wmi_roam_earlystop_rssi_thres_param earlystop_param; @@ -9889,15 +9893,15 @@ enum { }; /** lca_enable_source_bitmap */ -#define WMI_ROAM_LCA_DISALLOW_SOURCE_PER = 0x1, -#define WMI_ROAM_LCA_DISALLOW_SOURCE_BMISS = 0x2, -#define WMI_ROAM_LCA_DISALLOW_SOURCE_LOW_RSSI = 0x4, -#define WMI_ROAM_LCA_DISALLOW_SOURCE_HIGH_RSSI = 0x8, -#define WMI_ROAM_LCA_DISALLOW_SOURCE_PERIODIC = 0x10, -#define WMI_ROAM_LCA_DISALLOW_SOURCE_MAWC = 0x20, /* MAWC = Motion Aided Wifi connectivity */ -#define WMI_ROAM_LCA_DISALLOW_SOURCE_DENSE = 0x40, -#define WMI_ROAM_LCA_DISALLOW_SOURCE_BACKGROUND = 0x80, -#define WMI_ROAM_LCA_DISALLOW_SOURCE_FORCED = 0x100, +#define WMI_ROAM_LCA_DISALLOW_SOURCE_PER 0x1 +#define WMI_ROAM_LCA_DISALLOW_SOURCE_BMISS 0x2 +#define WMI_ROAM_LCA_DISALLOW_SOURCE_LOW_RSSI 0x4 +#define WMI_ROAM_LCA_DISALLOW_SOURCE_HIGH_RSSI 0x8 +#define WMI_ROAM_LCA_DISALLOW_SOURCE_PERIODIC 0x10 +#define WMI_ROAM_LCA_DISALLOW_SOURCE_MAWC 0x20 /* MAWC = Motion Aided Wifi connectivity */ +#define WMI_ROAM_LCA_DISALLOW_SOURCE_DENSE 0x40 +#define WMI_ROAM_LCA_DISALLOW_SOURCE_BACKGROUND 0x80 +#define WMI_ROAM_LCA_DISALLOW_SOURCE_FORCED 0x100 typedef struct { A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_roam_filter_list_fixed_param */ diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index df82b3234fe2..a69a1d5cfd96 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_ 407 +#define __WMI_REVISION_ 408 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
