|
@@ -412,6 +412,8 @@ typedef enum {
|
|
|
WMI_PDEV_SET_RAP_CONFIG_CMDID,
|
|
|
/** Specify DSM filters along with disallow bssid filters */
|
|
|
WMI_PDEV_DSM_FILTER_CMDID,
|
|
|
+ /** enable/disable periodic frame injection */
|
|
|
+ WMI_PDEV_FRAME_INJECT_CMDID,
|
|
|
|
|
|
/* VDEV (virtual device) specific commands */
|
|
|
/** vdev create */
|
|
@@ -10920,6 +10922,46 @@ typedef struct {
|
|
|
/** app IE */
|
|
|
} wmi_bcn_prb_info;
|
|
|
|
|
|
+enum wmi_frame_inject_type {
|
|
|
+ /* Transmit QoS null frame each period */
|
|
|
+ WMI_FRAME_INJECT_TYPE_QOS_NULL,
|
|
|
+ /* Transmit CTS to self each period */
|
|
|
+ WMI_FRAME_INJECT_TYPE_CTS_TO_SELF,
|
|
|
+ /* Transmit HOST provided buffer instead of forming frame in FW */
|
|
|
+ WMI_FRAME_INJECT_TYPE_HOST_BUFFER,
|
|
|
+ /* Max valid frame inject type for sanity checks*/
|
|
|
+ WMI_FRAME_INJECT_TYPE_MAX,
|
|
|
+};
|
|
|
+
|
|
|
+typedef struct {
|
|
|
+ /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_frame_inject_cmd_fixed_param */
|
|
|
+ A_UINT32 tlv_header;
|
|
|
+ /** unique id identifying the VDEV, generated by the caller.
|
|
|
+ * At any time only one vdev per mac can have this feature enabled.
|
|
|
+ * Two consecutive enable commands on same mac will result in previous
|
|
|
+ * command being disabled and new one being enabled.
|
|
|
+ */
|
|
|
+ A_UINT32 vdev_id;
|
|
|
+ /** enable or disable injection */
|
|
|
+ A_UINT32 enable;
|
|
|
+ /** frame type to be used for frame injection. possible values are
|
|
|
+ * defined in enum wmi_frame_inject_type.
|
|
|
+ */
|
|
|
+ A_UINT32 frame_type;
|
|
|
+ /** periodicity of frame injection in milliseconds */
|
|
|
+ A_UINT32 frame_inject_period;
|
|
|
+ /** Destination address of frame */
|
|
|
+ wmi_mac_addr frame_addr1;
|
|
|
+ /** variable buffer length. Can be used for frame template.
|
|
|
+ * data is in TLV data[]
|
|
|
+ */
|
|
|
+ A_UINT32 buf_len;
|
|
|
+ /*
|
|
|
+ * The TLVs follows:
|
|
|
+ * A_UINT8 data[]; <-- Variable length data
|
|
|
+ */
|
|
|
+} wmi_frame_inject_cmd_fixed_param;
|
|
|
+
|
|
|
typedef struct {
|
|
|
A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_bcn_tmpl_cmd_fixed_param */
|
|
|
/** unique id identifying the VDEV, generated by the caller */
|
|
@@ -25371,6 +25413,7 @@ static INLINE A_UINT8 *wmi_id_to_name(A_UINT32 wmi_command)
|
|
|
WMI_RETURN_STRING(WMI_VDEV_AUDIO_SYNC_QTIMER_CMDID);
|
|
|
WMI_RETURN_STRING(WMI_ROAM_GET_SCAN_CHANNEL_LIST_CMDID);
|
|
|
WMI_RETURN_STRING(WMI_VDEV_GET_BIG_DATA_CMDID);
|
|
|
+ WMI_RETURN_STRING(WMI_PDEV_FRAME_INJECT_CMDID);
|
|
|
}
|
|
|
|
|
|
return "Invalid WMI cmd";
|