qcacld-3.0: CL 1635229 - update fw common interface files

Propagation from qcacld-2.0 to qcacld-3.0.

Report aggregation failure LL implementation.

Change-Id: Ibeaeb6f744480faa116c607eee7c19bdd73ea0d0
CRs-fixed: 865207
This commit is contained in:
Himanshu Agarwal
2016-09-09 12:59:17 +05:30
committad av qcabuildsw
förälder 97005de93e
incheckning 4eefcde5b1
3 ändrade filer med 32 tillägg och 1 borttagningar

Visa fil

@@ -1349,6 +1349,9 @@ typedef enum {
/** event to provide requested data from the target's flash memory */
WMI_READ_DATA_FROM_FLASH_EVENTID,
/** event to report rx aggregation failure frame information */
WMI_REPORT_RX_AGGR_FAILURE_EVENTID,
/* GPIO Event */
WMI_GPIO_INPUT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_GPIO),
/** upload H_CV info WMI event
@@ -4985,6 +4988,25 @@ typedef struct {
A_UINT32 rx_preamble; /* Bits 26-25 from rx_rate_kbps */
} wmi_vdev_rate_ht_info;
typedef struct {
/**
* TLV tag and len, tag equals
* WMITLV_TAG_STRUC_wmi_rx_aggr_failure_event_fixed_param
*/
A_UINT32 tlv_header;
A_UINT32 num_failure_info; /* How many holes on rx aggregation */
} wmi_rx_aggr_failure_event_fixed_param;
typedef struct {
/**
* TLV tag and len, tag equals
* WMITLV_wmi_rx_aggr_failure_info
*/
A_UINT32 tlv_header;
A_UINT32 start_seq; /* start sequence number of the hole */
A_UINT32 end_seq; /* end sequence number of the hole */
} wmi_rx_aggr_failure_info;
typedef struct {
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_stats_event_fixed_param */
wmi_stats_id stats_id;