diff options
| author | Nitesh Shah <niteshs@qti.qualcomm.com> | 2016-06-29 17:54:35 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-07-05 13:14:05 +0530 |
| commit | fa4133fe4560c46e65fad01a18cedda9b094a871 (patch) | |
| tree | fb9d0958754cdc15f627fa35c61a1b28b9dc9e31 | |
| parent | 78b5fb0c2759da8da8cc0629f45b7bb0f0b52e57 (diff) | |
qcacld-2.0: CL 1536911 - update fw common interface files
WMI pdev params to specify retry limit for control frames, and
propagation delay.
Change-Id: I9662d4cfee0910706486ae1709749aacd938fa3c
CRs-fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 11 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 4e28d52b16e6..f4294262a7a9 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -3590,6 +3590,17 @@ typedef enum { WMI_PDEV_PARAM_CUST_TXPOWER_SCALE, /** ATF enabe/disabe dynamically */ WMI_PDEV_PARAM_ATF_DYNAMIC_ENABLE, + /** Set tx retry limit for control frames. 0 = disable, 31 = max */ + WMI_PDEV_PARAM_CTRL_RETRY_LIMIT, + /** Set propagation delay for 2G / 5G band. + * The propagation delay is fundamentally a per-peer property, but + * the target may not support per-peer settings for ack timeouts. + * This pdev parameter allows the MAC-level ack timeout to be set to + * a value suitable for the worst-case propagation delay of any peer + * within that pdev. + * Units are microseconds. + */ + WMI_PDEV_PARAM_PROPAGATION_DELAY, } WMI_PDEV_PARAM; diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index aa5ab60faec1..1997bd36481e 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_ 270 +#define __WMI_REVISION_ 271 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
