diff options
| author | Himanshu Agarwal <himanaga@qti.qualcomm.com> | 2016-06-08 14:31:48 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-06-09 14:57:38 +0530 |
| commit | 4dd8b260c2090ed1df57fbed4967ffe282671752 (patch) | |
| tree | 0ead4cbfe89e7e34fef6eefc828d5f95033aaf34 | |
| parent | 384e9bd18502e071ecb2f038cb55f4f0744b7388 (diff) | |
qcacld-2.0: CL 1524393 – update fw common interface files
Add WMI VDEV SW_RETRY_TH params
Add halphy module ID
Change-Id: Ie7c14aadf124a0aaaad1470e678e99f2fb5d436b
CRs-Fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wlan_module_ids.h | 1 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 11 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wlan_module_ids.h b/CORE/SERVICES/COMMON/wlan_module_ids.h index ac69a90da7e2..716a4f68fac1 100644 --- a/CORE/SERVICES/COMMON/wlan_module_ids.h +++ b/CORE/SERVICES/COMMON/wlan_module_ids.h @@ -99,6 +99,7 @@ typedef enum { WLAN_MODULE_NAN20, /* 0x40 */ WLAN_MODULE_QBOOST, /* 0x41 */ WLAN_MODULE_P2P_LISTEN_OFFLOAD, /* 0x42 */ + WLAN_MODULE_HALPHY, /* 0x43 */ WLAN_MODULE_ID_MAX, WLAN_MODULE_ID_INVALID = WLAN_MODULE_ID_MAX, diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 96d3a4ca2aaf..fcfba3b5de9e 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -5288,6 +5288,17 @@ typedef enum { WMI_VDEV_PARAM_MGMT_TX_POWER, /* + * Vdev level non aggregration/11g sw retry threshold. + * 0-disable, min:0, max:31, default:15 + */ + WMI_VDEV_PARAM_NON_AGG_SW_RETRY_TH, + /* + * Vdev level aggregration sw retry threshold. + * 0-disable, min:0, max:31, default:15 + */ + WMI_VDEV_PARAM_AGG_SW_RETRY_TH, + + /* * === ADD NEW VDEV PARAM TYPES ABOVE THIS LINE === * The below vdev param types are used for prototyping, and are * prone to change. diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 57c2ed41c3da..f2e272c931e4 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_ 259 +#define __WMI_REVISION_ 260 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
