qcacmn: Add channel noise floor and rx cycle count to DCS IM stats

Add additional stats namely channel noise floor and rx cycle count
to DCS interference stats structure maintained by WMI.

Change-Id: I0e6245c1888b5028daaa94e309ca7cc49073edc9
CRs-Fixed: 1087114
This commit is contained in:
Sathish Kumar
2016-11-08 14:58:29 +05:30
committed by qcabuildsw
parent 9c71b366e9
commit ba2b5da6dc

View File

@@ -6195,6 +6195,8 @@ typedef struct _hp_dcs_mib_stats {
* @phyerr_cnt: * @phyerr_cnt:
* @mib_stats: wmi_host_dcs_mib_stats_t - collected mib stats as explained * @mib_stats: wmi_host_dcs_mib_stats_t - collected mib stats as explained
* in mib structure * in mib structure
* @chan_nf: Channel noise floor (Units are in dBm)
* @my_bss_rx_cycle_count: BSS rx cycle count
*/ */
typedef struct _wmi_host_dcs_im_tgt_stats { typedef struct _wmi_host_dcs_im_tgt_stats {
uint32_t reg_tsf32; uint32_t reg_tsf32;
@@ -6203,6 +6205,8 @@ typedef struct _wmi_host_dcs_im_tgt_stats {
uint32_t rx_time; uint32_t rx_time;
uint32_t phyerr_cnt; uint32_t phyerr_cnt;
wmi_host_dcs_mib_stats_t mib_stats; wmi_host_dcs_mib_stats_t mib_stats;
uint32_t chan_nf;
uint32_t my_bss_rx_cycle_count;
} wmi_host_dcs_im_tgt_stats_t; } wmi_host_dcs_im_tgt_stats_t;
/** /**