|
@@ -733,6 +733,8 @@ typedef enum {
|
|
|
WMITLV_TAG_STRUC_wmi_mnt_filter_cmd_fixed_param,
|
|
|
WMITLV_TAG_STRUC_wmi_get_chip_power_stats_cmd_fixed_param,
|
|
|
WMITLV_TAG_STRUC_wmi_pdev_chip_power_stats_event_fixed_param,
|
|
|
+ WMITLV_TAG_STRUC_wmi_coex_get_antenna_isolation_cmd_fixed_param,
|
|
|
+ WMITLV_TAG_STRUC_wmi_coex_report_isolation_event_fixed_param,
|
|
|
} WMITLV_TAG_ID;
|
|
|
|
|
|
/*
|
|
@@ -1033,6 +1035,7 @@ typedef enum {
|
|
|
OP(WMI_PDEV_GET_ANTDIV_STATUS_CMDID) \
|
|
|
OP(WMI_MNT_FILTER_CMDID) \
|
|
|
OP(WMI_PDEV_GET_CHIP_POWER_STATS_CMDID) \
|
|
|
+ OP(WMI_COEX_GET_ANTENNA_ISOLATION_CMDID) \
|
|
|
/* add new CMD_LIST elements above this line */
|
|
|
|
|
|
/*
|
|
@@ -1190,6 +1193,7 @@ typedef enum {
|
|
|
OP(WMI_PEER_ANTDIV_INFO_EVENTID) \
|
|
|
OP(WMI_PDEV_ANTDIV_STATUS_EVENTID) \
|
|
|
OP(WMI_PDEV_CHIP_POWER_STATS_EVENTID) \
|
|
|
+ OP(WMI_COEX_REPORT_ANTENNA_ISOLATION_EVENTID) \
|
|
|
/* add new EVT_LIST elements above this line */
|
|
|
|
|
|
/* TLV definitions of WMI commands */
|
|
@@ -2611,6 +2615,11 @@ WMITLV_CREATE_PARAM_STRUC(WMI_EXTSCAN_CONFIGURE_MAWC_CMDID);
|
|
|
WMITLV_ELEM(id, op, buf, len, WMITLV_TAG_STRUC_WMI_COEX_CONFIG_CMD_fixed_param, WMI_COEX_CONFIG_CMD_fixed_param, fixed_param, WMITLV_SIZE_FIX)
|
|
|
WMITLV_CREATE_PARAM_STRUC(WMI_COEX_CONFIG_CMDID);
|
|
|
|
|
|
+/* Coex get antenna isolation cmd */
|
|
|
+#define WMITLV_TABLE_WMI_COEX_GET_ANTENNA_ISOLATION_CMDID(id, op, buf, len) \
|
|
|
+ WMITLV_ELEM(id, op, buf, len, WMITLV_TAG_STRUC_wmi_coex_get_antenna_isolation_cmd_fixed_param, wmi_coex_get_antenna_isolation_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
|
|
|
+WMITLV_CREATE_PARAM_STRUC(WMI_COEX_GET_ANTENNA_ISOLATION_CMDID);
|
|
|
+
|
|
|
/* bpf offload capability get cmd */
|
|
|
#define WMITLV_TABLE_WMI_BPF_GET_CAPABILITY_CMDID(id, op, buf, len) \
|
|
|
WMITLV_ELEM(id, op, buf, len, WMITLV_TAG_STRUC_wmi_bpf_get_capability_cmd_fixed_param, wmi_bpf_get_capability_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
|
|
@@ -3523,6 +3532,11 @@ WMITLV_CREATE_PARAM_STRUC(WMI_NAN_STARTED_CLUSTER_EVENTID);
|
|
|
WMITLV_ELEM(id, op, buf, len, WMITLV_TAG_STRUC_wmi_nan_joined_cluster_event_fixed_param, wmi_nan_joined_cluster_event_fixed_param_PROTOTYPE, fixed_param, WMITLV_SIZE_FIX)
|
|
|
WMITLV_CREATE_PARAM_STRUC(WMI_NAN_JOINED_CLUSTER_EVENTID);
|
|
|
|
|
|
+/* Coex report antenna isolation event */
|
|
|
+#define WMITLV_TABLE_WMI_COEX_REPORT_ANTENNA_ISOLATION_EVENTID(id, op, buf, len) \
|
|
|
+ WMITLV_ELEM(id, op, buf, len, WMITLV_TAG_STRUC_wmi_coex_report_isolation_event_fixed_param, wmi_coex_report_isolation_event_fixed_param, fixed_param, WMITLV_SIZE_FIX)
|
|
|
+WMITLV_CREATE_PARAM_STRUC(WMI_COEX_REPORT_ANTENNA_ISOLATION_EVENTID);
|
|
|
+
|
|
|
/* NDP capabilities response event */
|
|
|
#define WMITLV_TABLE_WMI_NDI_CAP_RSP_EVENTID(id, op, buf, len) \
|
|
|
WMITLV_ELEM(id, op, buf, len, WMITLV_TAG_STRUC_wmi_ndi_cap_rsp_event_fixed_param, wmi_ndi_cap_rsp_event_fixed_param_PROTOTYPE, fixed_param, WMITLV_SIZE_FIX)
|