diff options
| author | Manikandaraja Venkatachalapathy <vmanikan@qca.qualcomm.com> | 2014-02-26 20:46:00 -0800 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-02-28 21:22:14 -0800 |
| commit | 77b3b36cfd4483bc1ec193217befb1a58322dcc4 (patch) | |
| tree | b970beceabef57a428a5d428f385d390b0da7b62 | |
| parent | c1776e32eeacc1649921da95e283d5041a035675 (diff) | |
qcacld: CL 848725 - update fw common interface files
wmi_revision updated and tx failure count
related fields added in wmi header file
Change-Id: I201baeb0f211b07f40cb55f068e709031f191bee
CRs-Fixed: 623842
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 9 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 49f9cd6dba2e..6b5e9111017e 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -2986,6 +2986,9 @@ typedef enum { /* enable/disable drift sample. 0: disable; 1: clk_drift; 2: ap_drift; 3 both clk and ap drift*/ WMI_VDEV_PARAM_EARLY_RX_DRIFT_SAMPLE, + /* set Tx failure count threshold for the vdev */ + WMI_VDEV_PARAM_SET_IBSS_TX_FAIL_CNT_THR, + } WMI_VDEV_PARAM; enum wmi_pkt_type { @@ -3832,7 +3835,7 @@ typedef struct { * For AP VDEV this peer corresponds to the remote peer STA. */ #define WMI_PEER_CRIT_PROTO_HINT_ENABLED 0x9 -/* set Tx failure count threshold for the peer*/ +/* set Tx failure count threshold for the peer - Currently unused */ #define WMI_PEER_TX_FAIL_CNT_THR 0xA /** mimo ps values for the parameter WMI_PEER_MIMO_PS_STATE */ @@ -6155,8 +6158,10 @@ typedef struct { A_UINT32 vdev_id; /** mac address */ wmi_mac_addr peer_mac_address; - /** tx failure count */ + /** tx failure count- will eventually be removed and not used * */ A_UINT32 tx_fail_cnt; + /** seq number of the nth tx_fail_event */ + A_UINT32 seq_no; } wmi_peer_tx_fail_cnt_thr_event_fixed_param; enum wmi_rmc_mode { diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index fb3e00c77ac1..decb79f1356a 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_ 36 +#define __WMI_REVISION_ 37 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
