|
@@ -1059,6 +1059,8 @@ typedef enum {
|
|
|
WMI_FWTEST_CMDID,
|
|
|
/* Q-Boost configuration test commands */
|
|
|
WMI_QBOOST_CFG_CMDID,
|
|
|
+ /* Simulation Test command */
|
|
|
+ WMI_SIMULATION_TEST_CMDID,
|
|
|
|
|
|
/** TDLS Configuration */
|
|
|
/** enable/disable TDLS */
|
|
@@ -25911,6 +25913,7 @@ static INLINE A_UINT8 *wmi_id_to_name(A_UINT32 wmi_command)
|
|
|
WMI_RETURN_STRING(WMI_AUDIO_AGGR_GET_STATISTICS_CMDID);
|
|
|
WMI_RETURN_STRING(WMI_AUDIO_AGGR_RESET_STATISTICS_CMDID);
|
|
|
WMI_RETURN_STRING(WMI_ANT_CONTROLLER_CMDID);
|
|
|
+ WMI_RETURN_STRING(WMI_SIMULATION_TEST_CMDID);
|
|
|
}
|
|
|
|
|
|
return "Invalid WMI cmd";
|
|
@@ -30190,6 +30193,105 @@ typedef struct {
|
|
|
A_UINT32 srg_partial_bssid_bitmap[2];
|
|
|
} wmi_pdev_srg_partial_bssid_bitmap_cmd_fixed_param;
|
|
|
|
|
|
+typedef enum {
|
|
|
+ /* Simulation test command types */
|
|
|
+ WMI_SIM_TEST_FRAME_CONTENT_CHANGE_CMD,
|
|
|
+ WMI_SIM_TEST_DROP_FRAME_CMD,
|
|
|
+ WMI_SIM_TEST_DELAY_FRAME_CMD,
|
|
|
+ WMI_SIM_TEST_CONFIGURATION_CMD,
|
|
|
+
|
|
|
+ WMI_SIM_TEST_CMD_UNKNOWN = 255,
|
|
|
+} WMI_SIMULATION_TEST_CMD_TYPE;
|
|
|
+
|
|
|
+typedef enum {
|
|
|
+ /* Simulation test sub-command types */
|
|
|
+ WMI_SIM_TEST_SUB_CMD_UNKNOWN = 255,
|
|
|
+} WMI_SIMULATION_TEST_SUB_CMD_TYPE;
|
|
|
+
|
|
|
+#define WMI_SIM_FRAME_TYPE_BIT_POS 0
|
|
|
+#define WMI_SIM_FRAME_SUBTYPE_BIT_POS 8
|
|
|
+#define WMI_SIM_FRAME_SEQ_BIT_POS 16
|
|
|
+#define WMI_SIM_FRAME_OFFSET_BIT_POS 0
|
|
|
+#define WMI_SIM_FRAME_LENGTH_BIT_POS 16
|
|
|
+
|
|
|
+#define WMI_SIM_FRAME_TYPE_SET(param, value) \
|
|
|
+ WMI_SET_BITS(param, WMI_SIM_FRAME_TYPE_BIT_POS, 8, value)
|
|
|
+#define WMI_SIM_FRAME_TYPE_GET(param) \
|
|
|
+ WMI_GET_BITS(param, WMI_SIM_FRAME_TYPE_BIT_POS, 8)
|
|
|
+
|
|
|
+#define WMI_SIM_FRAME_SUBTYPE_SET(param, value) \
|
|
|
+ WMI_SET_BITS(param, WMI_SIM_FRAME_SUBTYPE_BIT_POS, 8, value)
|
|
|
+#define WMI_SIM_FRAME_SUBTYPE_GET(param) \
|
|
|
+ WMI_GET_BITS(param, WMI_SIM_FRAME_SUBTYPE_BIT_POS, 8)
|
|
|
+
|
|
|
+#define WMI_SIM_FRAME_SEQ_SET(param, value) \
|
|
|
+ WMI_SET_BITS(param, WMI_SIM_FRAME_SEQ_BIT_POS, 8, value)
|
|
|
+#define WMI_SIM_FRAME_SEQ_GET(param) \
|
|
|
+ WMI_GET_BITS(param, WMI_SIM_FRAME_SEQ_BIT_POS, 8)
|
|
|
+
|
|
|
+#define WMI_SIM_FRAME_OFFSET_SET(param, value) \
|
|
|
+ WMI_SET_BITS(param, WMI_SIM_FRAME_OFFSET_BIT_POS, 16, value)
|
|
|
+#define WMI_SIM_FRAME_OFFSET_GET(param) \
|
|
|
+ WMI_GET_BITS(param, WMI_SIM_FRAME_OFFSET_BIT_POS, 16)
|
|
|
+
|
|
|
+#define WMI_SIM_FRAME_LENGTH_SET(param, value) \
|
|
|
+ WMI_SET_BITS(param, WMI_SIM_FRAME_LENGTH_BIT_POS, 16, value)
|
|
|
+#define WMI_SIM_FRAME_LENGTH_GET(param) \
|
|
|
+ WMI_GET_BITS(param, WMI_SIM_FRAME_LENGTH_BIT_POS, 16)
|
|
|
+
|
|
|
+typedef struct {
|
|
|
+ /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_simulation_test_cmd_fixed_param */
|
|
|
+ A_UINT32 tlv_header;
|
|
|
+ /** pdev_id for identifying the MAC.
|
|
|
+ * See macros starting with WMI_PDEV_ID_ for values.
|
|
|
+ * In non-DBDC case host should set it to 0.
|
|
|
+ */
|
|
|
+ A_UINT32 pdev_id;
|
|
|
+ /** vdev_id for identifying the vap simulation command needs to be applied.
|
|
|
+ * This is for future purpose, currently only 1 vap is supported for
|
|
|
+ * simulation test mode.
|
|
|
+ * Host will always set it to 0 for now.
|
|
|
+ */
|
|
|
+ A_UINT32 vdev_id;
|
|
|
+ /** peer MAC address for identifying the peer for which the simulation
|
|
|
+ * command needs to be applied.
|
|
|
+ * peer_macaddr needs to be set to '0' for simulation commands which
|
|
|
+ * needs to be applied at pdev or vdev level.
|
|
|
+ */
|
|
|
+ wmi_mac_addr peer_macaddr;
|
|
|
+ /** test command type, as per WMI_SIMULATION_TEST_CMD_TYPE */
|
|
|
+ A_UINT32 test_cmd_type;
|
|
|
+ /** test command type, as per WMI_SIMULATION_TEST_SUB_CMD_TYPE */
|
|
|
+ A_UINT32 test_subcmd_type;
|
|
|
+ /**
|
|
|
+ * The frame type, frame subtype, and frame sequence number
|
|
|
+ * are stored as bitfields within the below A_UINT32 "word".
|
|
|
+ * Use the WMI_SIM_xxx_GET/SET macros to read and
|
|
|
+ * write these bitfields.
|
|
|
+ **/
|
|
|
+ A_UINT32 frame_type_subtype_seq;
|
|
|
+ /**
|
|
|
+ * The frame offset and frame length,
|
|
|
+ * are stored as bitfields within the below A_UINT32 "word".
|
|
|
+ * Use the WMI_SIM_xxx_GET/SET macros to read and
|
|
|
+ * write these bitfields.
|
|
|
+ **/
|
|
|
+ A_UINT32 frame_offset_length;
|
|
|
+ /** buf_len: Buffer length in bytes
|
|
|
+ * In some cases buf_len == frame_length, but not always.
|
|
|
+ * For example, a DELAY_FRAME command will not involve any frame
|
|
|
+ * contents, so frame_length will be zero, but buf_len will be
|
|
|
+ * non-zero because it will contain command-specific parameters.
|
|
|
+ */
|
|
|
+ A_UINT32 buf_len;
|
|
|
+/* This TLV is followed by array of bytes:
|
|
|
+ * A_UINT8 bufp[];
|
|
|
+ * For FRAME_CONTENT_CHANGE commands, bufp contains the first 64 bytes
|
|
|
+ * of the frame.
|
|
|
+ */
|
|
|
+} wmi_simulation_test_cmd_fixed_param;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
/* ADD NEW DEFS HERE */
|
|
|
|