fw-api: CL 25171661 - update fw common interface files
WMI: add COEX_MULTIPLE_CONFIG_CMD msg def Change-Id: I4126bb51025830dcfa0a3d01e21e5808e8fbc626 CRs-Fixed: 2262693
This commit is contained in:
@@ -647,6 +647,7 @@ typedef enum {
|
||||
WMI_SERVICE_PDEV_PARAM_IN_UTF_WMI = 394, /* FW supports receiving and sending pdev_id parameter in WMI_PDEV_UTF_(CMD/EVENT) */
|
||||
WMI_SERVICE_SW_PROG_DFS_SUPPORT = 395, /* Indicate FW support SW progressive DFS */
|
||||
WMI_SERVICE_MULTIPLE_REORDER_QUEUE_SETUP_SUPPORT = 396, /* Indicate FW supports multiple TID reorder queues setup in one cmd */
|
||||
WMI_SERVICE_MULTIPLE_COEX_CONFIG_SUPPORT = 397, /* FW supports mutiple coex configs in one cmd */
|
||||
|
||||
WMI_MAX_EXT2_SERVICE
|
||||
|
||||
|
@@ -1417,6 +1417,7 @@ typedef enum {
|
||||
WMITLV_TAG_STRUC_wmi_dbw_chan_info,
|
||||
WMITLV_TAG_STRUC_wmi_peer_multiple_reorder_queue_setup_cmd_fixed_param,
|
||||
WMITLV_TAG_STRUC_wmi_peer_per_reorder_q_setup_params_t,
|
||||
WMITLV_TAG_STRUC_wmi_coex_multiple_config_cmd_fixed_param,
|
||||
} WMITLV_TAG_ID;
|
||||
/*
|
||||
* IMPORTANT: Please add _ALL_ WMI Commands Here.
|
||||
@@ -1957,6 +1958,7 @@ typedef enum {
|
||||
OP(WMI_VDEV_OOB_CONNECTION_REQ_CMDID) \
|
||||
OP(WMI_AUDIO_TRANSPORT_SWITCH_RESP_STATUS_CMDID) \
|
||||
OP(WMI_PEER_MULTIPLE_REORDER_QUEUE_SETUP_CMDID) \
|
||||
OP(WMI_COEX_MULTIPLE_CONFIG_CMDID) \
|
||||
/* add new CMD_LIST elements above this line */
|
||||
|
||||
|
||||
@@ -5531,6 +5533,12 @@ WMITLV_CREATE_PARAM_STRUC(WMI_CSA_EVENT_STATUS_INDICATION_CMDID);
|
||||
WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_vdev_oob_connection_req_cmd_fixed_param, wmi_vdev_oob_connection_req_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
|
||||
WMITLV_CREATE_PARAM_STRUC(WMI_VDEV_OOB_CONNECTION_REQ_CMDID);
|
||||
|
||||
/* Multiple BTCOEX config commands. */
|
||||
#define WMITLV_TABLE_WMI_COEX_MULTIPLE_CONFIG_CMDID(id,op,buf,len) \
|
||||
WMITLV_ELEM(id, op, buf, len, WMITLV_TAG_STRUC_wmi_coex_multiple_config_cmd_fixed_param, wmi_coex_multiple_config_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX) \
|
||||
WMITLV_ELEM(id, op, buf, len, WMITLV_TAG_ARRAY_STRUC, WMI_COEX_CONFIG_CMD_fixed_param, config_list, WMITLV_SIZE_VAR)
|
||||
WMITLV_CREATE_PARAM_STRUC(WMI_COEX_MULTIPLE_CONFIG_CMDID);
|
||||
|
||||
|
||||
|
||||
/************************** TLV definitions of WMI events *******************************/
|
||||
|
@@ -1379,6 +1379,7 @@ typedef enum {
|
||||
WMI_COEX_DBAM_CMDID,
|
||||
WMI_TAS_POWER_HISTORY_CMDID,
|
||||
WMI_ESL_EGID_CMDID,
|
||||
WMI_COEX_MULTIPLE_CONFIG_CMDID,
|
||||
|
||||
/**
|
||||
* OBSS scan offload enable/disable commands
|
||||
@@ -34694,7 +34695,7 @@ typedef enum wmi_coex_config_type {
|
||||
} WMI_COEX_CONFIG_TYPE;
|
||||
|
||||
typedef struct {
|
||||
A_UINT32 tlv_header;
|
||||
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_WMI_COEX_CONFIG_CMD_fixed_param */
|
||||
A_UINT32 vdev_id;
|
||||
A_UINT32 config_type; /* wmi_coex_config_type enum */
|
||||
A_UINT32 config_arg1;
|
||||
@@ -34705,6 +34706,14 @@ typedef struct {
|
||||
A_UINT32 config_arg6;
|
||||
} WMI_COEX_CONFIG_CMD_fixed_param;
|
||||
|
||||
typedef struct {
|
||||
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_coex_multiple_config_cmd_fixed_param */
|
||||
/*
|
||||
* This struct is followed by other TLVs:
|
||||
* WMI_COEX_CONFIG_CMD_fixed_param config_list[num_config];
|
||||
*/
|
||||
} wmi_coex_multiple_config_cmd_fixed_param;
|
||||
|
||||
typedef enum wmi_coex_dbam_mode_type {
|
||||
WMI_COEX_DBAM_DISABLE = 0,
|
||||
WMI_COEX_DBAM_ENABLE = 1,
|
||||
@@ -37054,6 +37063,7 @@ static INLINE A_UINT8 *wmi_id_to_name(A_UINT32 wmi_command)
|
||||
WMI_RETURN_STRING(WMI_VDEV_OOB_CONNECTION_REQ_CMDID);
|
||||
WMI_RETURN_STRING(WMI_AUDIO_TRANSPORT_SWITCH_RESP_STATUS_CMDID);
|
||||
WMI_RETURN_STRING(WMI_PEER_MULTIPLE_REORDER_QUEUE_SETUP_CMDID);
|
||||
WMI_RETURN_STRING(WMI_COEX_MULTIPLE_CONFIG_CMDID);
|
||||
}
|
||||
|
||||
return (A_UINT8 *) "Invalid WMI cmd";
|
||||
|
@@ -37,7 +37,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_ 1413
|
||||
#define __WMI_REVISION_ 1414
|
||||
|
||||
/** The Version Namespace should not be normally changed. Only
|
||||
* host and firmware of the same WMI namespace will work
|
||||
|
Reference in New Issue
Block a user