fw-api: CL 3018077 - update fw common interface files

WMI_PDEV_DIV_GET_RSSI_ANTID_CMDID

Change-Id: I2389f442f0e664bcd28c8d726dea5b09e27552f2
CRs-Fixed: 1107600
This commit is contained in:
Sandeep Puligilla
2017-04-20 11:00:48 -07:00
committed by snandini
parent 3c4ffc4c01
commit 18ecb71811
3 changed files with 23 additions and 1 deletions

View File

@@ -366,6 +366,8 @@ typedef enum {
WMI_PDEV_CHECK_CAL_VERSION_CMDID,
/** Set Diversity Gain */
WMI_PDEV_SET_DIVERSITY_GAIN_CMDID,
/** Get chain RSSI and antena index command */
WMI_PDEV_DIV_GET_RSSI_ANTID_CMDID,
/* VDEV (virtual device) specific commands */
/** vdev create */
@@ -4305,6 +4307,18 @@ typedef struct {
A_UINT32 param;
} wmi_pdev_get_tpc_config_cmd_fixed_param;
typedef struct {
A_UINT32 tlv_header; /* WMITLV_TAG_STRUC_wmi_pdev_div_get_rssi_antid_fixed_param */
/** pdev_id for identifying the MAC */
A_UINT32 pdev_id;
/** RSSI (rssi_chain_x_pri20) on each chain (units: dB above noise floor) */
A_UINT32 chain_rssi[WMI_MAX_CHAINS];
/** index of the last-used antenna for each chain */
A_UINT32 ant_id[WMI_MAX_CHAINS];
/** mac address of diversity peer */
wmi_mac_addr macaddr;
} wmi_pdev_div_get_rssi_antid_fixed_param;
#define WMI_FAST_DIVERSITY_BIT_OFFSET 0
#define WMI_SLOW_DIVERSITY_BIT_OFFSET 1