|
@@ -851,7 +851,7 @@ typedef enum {
|
|
|
WMI_ROAM_SET_PARAM_CMDID,
|
|
|
/** Enable or Disable roam vendor control */
|
|
|
WMI_ROAM_ENABLE_VENDOR_CONTROL_CMDID,
|
|
|
- /** Get roam vendor control params */
|
|
|
+ /** Get firmware ini value */
|
|
|
WMI_ROAM_GET_VENDOR_CONTROL_PARAM_CMDID,
|
|
|
|
|
|
/** offload scan specific commands */
|
|
@@ -1888,7 +1888,7 @@ typedef enum {
|
|
|
WMI_ROAM_CAPABILITY_REPORT_EVENTID,
|
|
|
/** Send AP frame content like beacon/probe resp etc.. */
|
|
|
WMI_ROAM_FRAME_EVENTID,
|
|
|
- /** GET Roam Vendor Control Param event */
|
|
|
+ /** Send firmware ini value corresponding to param_id */
|
|
|
WMI_ROAM_GET_VENDOR_CONTROL_PARAM_EVENTID,
|
|
|
|
|
|
/** P2P disc found */
|
|
@@ -34541,6 +34541,8 @@ typedef enum {
|
|
|
ROAM_VENDOR_CONTROL_PARAM_PASSIVE_CH_DWELLTIME,
|
|
|
ROAM_VENDOR_CONTROL_PARAM_HOME_CH_TIME,
|
|
|
ROAM_VENDOR_CONTROL_PARAM_AWAY_TIME,
|
|
|
+ /* Sending query for all roam_vendor_control_param */
|
|
|
+ ROAM_VENDOR_CONTROL_PARAM_ALL = 0xFFFFFFFF,
|
|
|
} WMI_ROAM_GET_VENDOR_CONTROL_PARAM_ID;
|
|
|
|
|
|
typedef struct {
|
|
@@ -34557,12 +34559,25 @@ typedef struct {
|
|
|
A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_roam_get_vendor_control_param_event_fixed_param */
|
|
|
/** unique id identifying the VDEV, generated by the caller */
|
|
|
A_UINT32 vdev_id;
|
|
|
- /** Vendor Control Param ID from enum WMI_ROAM_GET_VENDOR_CONTROL_PARAM_ID */
|
|
|
+ /**
|
|
|
+ * Vendor Control Param ID from enum WMI_ROAM_GET_VENDOR_CONTROL_PARAM_ID
|
|
|
+ * If param_id is ROAM_VENDOR_CONTROL_PARAM_ALL, send all vendor control
|
|
|
+ * param value defined in enum WMI_ROAM_GET_VENDOR_CONTROL_PARAM_ID
|
|
|
+ * using wmi_vendor_control_param tlv
|
|
|
+ */
|
|
|
A_UINT32 param_id;
|
|
|
/** Vendor control param value */
|
|
|
A_UINT32 param_value;
|
|
|
} wmi_roam_get_vendor_control_param_event_fixed_param;
|
|
|
|
|
|
+typedef struct {
|
|
|
+ A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_vendor_control_param */
|
|
|
+ /** Vendor Control Param ID from enum WMI_ROAM_GET_VENDOR_CONTROL_PARAM_ID */
|
|
|
+ A_UINT32 param_id;
|
|
|
+ /** Vendor control param value */
|
|
|
+ A_UINT32 param_value;
|
|
|
+} wmi_vendor_control_param;
|
|
|
+
|
|
|
/** the definition of different ROAM parameters */
|
|
|
typedef enum {
|
|
|
/* roam param to configure below roam events
|