Ver Fonte

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

Add WMI_SIMULATION_TEST_CMD msg def

Change-Id: Ided64652c96ffb4090d49927064aa66948368566
CRs-Fixed: 2262693
spuligil há 5 anos atrás
pai
commit
625453614f
3 ficheiros alterados com 111 adições e 1 exclusões
  1. 8 0
      fw/wmi_tlv_defs.h
  2. 102 0
      fw/wmi_unified.h
  3. 1 1
      fw/wmi_version.h

+ 8 - 0
fw/wmi_tlv_defs.h

@@ -1067,6 +1067,7 @@ typedef enum {
     WMITLV_TAG_STRUC_wmi_ant_controller_cmd_fixed_param,
     WMITLV_TAG_STRUC_wmi_pdev_srg_bss_color_bitmap_cmd_fixed_param,
     WMITLV_TAG_STRUC_wmi_pdev_srg_partial_bssid_bitmap_cmd_fixed_param,
+    WMITLV_TAG_STRUC_wmi_simulation_test_cmd_fixed_param,
 } WMITLV_TAG_ID;
 
 /*
@@ -1505,6 +1506,7 @@ typedef enum {
     OP(WMI_ANT_CONTROLLER_CMDID) \
     OP(WMI_PDEV_SET_SRG_BSS_COLOR_BITMAP_CMDID) \
     OP(WMI_PDEV_SET_SRG_PARTIAL_BSSID_BITMAP_CMDID) \
+    OP(WMI_SIMULATION_TEST_CMDID) \
     /* add new CMD_LIST elements above this line */
 
 
@@ -4366,6 +4368,12 @@ WMITLV_CREATE_PARAM_STRUC(WMI_PDEV_SET_SRG_BSS_COLOR_BITMAP_CMDID);
     WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_pdev_srg_partial_bssid_bitmap_cmd_fixed_param, wmi_pdev_srg_partial_bssid_bitmap_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX)
 WMITLV_CREATE_PARAM_STRUC(WMI_PDEV_SET_SRG_PARTIAL_BSSID_BITMAP_CMDID);
 
+/* Simulation test command */
+#define WMITLV_TABLE_WMI_SIMULATION_TEST_CMDID(id,op,buf,len) \
+    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_STRUC_wmi_simulation_test_cmd_fixed_param, wmi_simulation_test_cmd_fixed_param, fixed_param, WMITLV_SIZE_FIX) \
+    WMITLV_ELEM(id,op,buf,len, WMITLV_TAG_ARRAY_BYTE, A_UINT8, bufp, WMITLV_SIZE_VAR)
+WMITLV_CREATE_PARAM_STRUC(WMI_SIMULATION_TEST_CMDID);
+
 
 /************************** TLV definitions of WMI events *******************************/
 

+ 102 - 0
fw/wmi_unified.h

@@ -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 */
 

+ 1 - 1
fw/wmi_version.h

@@ -36,7 +36,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_ 819
+#define __WMI_REVISION_ 820
 
 /** The Version Namespace should not be normally changed. Only
  *  host and firmware of the same WMI namespace will work