|
@@ -16087,6 +16087,12 @@ typedef struct {
|
|
|
};
|
|
|
A_UINT32 mlo_flags;
|
|
|
};
|
|
|
+/* NOTE:
|
|
|
+ * Since this struct is embedded inside WMI TLV structs, it cannot
|
|
|
+ * have any fields added, as expanding this struct would break
|
|
|
+ * backwards-compatibility by changing the offsets of the subsequent
|
|
|
+ * fields in the structs that contain this struct.
|
|
|
+ */
|
|
|
} wmi_mlo_flags;
|
|
|
|
|
|
typedef struct {
|
|
@@ -16110,6 +16116,12 @@ typedef struct {
|
|
|
wmi_mlo_flags mlo_flags; /*only mlo enable and assoc link flag need by vdev start*/
|
|
|
} wmi_vdev_start_mlo_params;
|
|
|
|
|
|
+/* this TLV structure used for passing mlo parameters on vdev stop */
|
|
|
+typedef struct {
|
|
|
+ A_UINT32 tlv_header; /** TLV tag and len; */
|
|
|
+ wmi_mlo_flags mlo_flags; /* only mlo_link_switch flag needed by vdev stop */
|
|
|
+} wmi_vdev_stop_mlo_params;
|
|
|
+
|
|
|
typedef struct {
|
|
|
A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_vdev_update_mac_addr_cmd_fixed_param */
|
|
|
/** Unique id identifying the VDEV to update mac addr */
|
|
@@ -16977,6 +16989,12 @@ typedef struct {
|
|
|
A_UINT32 tlv_header; /** TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_vdev_stop_cmd_fixed_param */
|
|
|
/** unique id identifying the VDEV, generated by the caller */
|
|
|
A_UINT32 vdev_id;
|
|
|
+
|
|
|
+ /* The TLVs follows this structure:
|
|
|
+ * - wmi_vdev_stop_mlo_params mlo_params[0/1];
|
|
|
+ * optional TLV, host may provide this TLV to indicate the vdev stop
|
|
|
+ * is done for link switch.
|
|
|
+ */
|
|
|
} wmi_vdev_stop_cmd_fixed_param;
|
|
|
|
|
|
typedef struct {
|
|
@@ -19808,6 +19826,7 @@ typedef struct {
|
|
|
typedef struct {
|
|
|
A_UINT32 tlv_header; /** TLV tag and len */
|
|
|
A_UINT32 mlo_hw_link_id_bitmap; /* Hardware link id of the link which has crashed or was not created in the first place */
|
|
|
+ wmi_mlo_flags mlo_flags; /* to indicate whether peer delete is due to link switch */
|
|
|
} wmi_peer_delete_mlo_params;
|
|
|
|
|
|
typedef struct {
|