|
@@ -353,6 +353,40 @@ target_if_cm_roam_ho_delay_config(struct wlan_objmgr_vdev *vdev,
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * target_if_cm_exclude_rm_partial_scan_freq() - Indicate to FW whether to
|
|
|
+ * exclude the channels in roam full scan that are already scanned as part of
|
|
|
+ * partial scan or not.
|
|
|
+ * @vdev: vdev object
|
|
|
+ * @exclude_rm_partial_scan_freq: Include/exclude the channels in roam full scan
|
|
|
+ * that are already scanned as part of partial scan.
|
|
|
+ *
|
|
|
+ * Return: QDF_STATUS
|
|
|
+ */
|
|
|
+static QDF_STATUS
|
|
|
+target_if_cm_exclude_rm_partial_scan_freq(struct wlan_objmgr_vdev *vdev,
|
|
|
+ uint8_t exclude_rm_partial_scan_freq)
|
|
|
+{
|
|
|
+ QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
+ uint8_t vdev_id;
|
|
|
+ wmi_unified_t wmi_handle;
|
|
|
+
|
|
|
+ wmi_handle = target_if_cm_roam_get_wmi_handle_from_vdev(vdev);
|
|
|
+ if (!wmi_handle)
|
|
|
+ return status;
|
|
|
+
|
|
|
+ vdev_id = wlan_vdev_get_id(vdev);
|
|
|
+ status = target_if_roam_set_param(
|
|
|
+ wmi_handle, vdev_id,
|
|
|
+ WMI_ROAM_PARAM_ROAM_CONTROL_FULL_SCAN_CHANNEL_OPTIMIZATION,
|
|
|
+ exclude_rm_partial_scan_freq);
|
|
|
+
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
+ target_if_err("Failed to set WMI_ROAM_PARAM_ROAM_CONTROL_FULL_SCAN_CHANNEL_OPTIMIZATION");
|
|
|
+
|
|
|
+ return status;
|
|
|
+}
|
|
|
+
|
|
|
static void
|
|
|
target_if_cm_roam_register_lfr3_ops(struct wlan_cm_roam_tx_ops *tx_ops)
|
|
|
{
|
|
@@ -362,6 +396,8 @@ target_if_cm_roam_register_lfr3_ops(struct wlan_cm_roam_tx_ops *tx_ops)
|
|
|
tx_ops->send_roam_rt_stats_config = target_if_cm_roam_rt_stats_config;
|
|
|
tx_ops->send_roam_ho_delay_config = target_if_cm_roam_ho_delay_config;
|
|
|
tx_ops->send_roam_mcc_disallow = target_if_cm_roam_mcc_disallow;
|
|
|
+ tx_ops->send_exclude_rm_partial_scan_freq =
|
|
|
+ target_if_cm_exclude_rm_partial_scan_freq;
|
|
|
target_if_cm_roam_register_vendor_handoff_ops(tx_ops);
|
|
|
target_if_cm_roam_register_linkspeed_state(tx_ops);
|
|
|
}
|
|
@@ -390,6 +426,13 @@ target_if_cm_roam_mcc_disallow(struct wlan_objmgr_vdev *vdev,
|
|
|
{
|
|
|
return QDF_STATUS_E_NOSUPPORT;
|
|
|
}
|
|
|
+
|
|
|
+static QDF_STATUS
|
|
|
+target_if_cm_exclude_rm_partial_scan_freq(struct wlan_objmgr_vdev *vdev,
|
|
|
+ uint8_t exclude_rm_partial_scan_freq)
|
|
|
+{
|
|
|
+ return QDF_STATUS_E_NOSUPPORT;
|
|
|
+}
|
|
|
#endif
|
|
|
|
|
|
/**
|
|
@@ -1394,6 +1437,10 @@ target_if_cm_roam_send_start(struct wlan_objmgr_vdev *vdev,
|
|
|
target_if_cm_roam_ho_delay_config(
|
|
|
vdev, vdev_id, req->wlan_roam_ho_delay_config);
|
|
|
|
|
|
+ if (req->wlan_exclude_rm_partial_scan_freq)
|
|
|
+ target_if_cm_exclude_rm_partial_scan_freq(
|
|
|
+ vdev, req->wlan_exclude_rm_partial_scan_freq);
|
|
|
+
|
|
|
is_mcc_disallowed = !wlan_cm_same_band_sta_allowed(psoc);
|
|
|
target_if_cm_roam_mcc_disallow(vdev, vdev_id, is_mcc_disallowed);
|
|
|
/* add other wmi commands */
|
|
@@ -1781,6 +1828,10 @@ target_if_cm_roam_send_update_config(struct wlan_objmgr_vdev *vdev,
|
|
|
vdev, vdev_id,
|
|
|
req->wlan_roam_ho_delay_config);
|
|
|
|
|
|
+ if (req->wlan_exclude_rm_partial_scan_freq)
|
|
|
+ target_if_cm_exclude_rm_partial_scan_freq(
|
|
|
+ vdev, req->wlan_exclude_rm_partial_scan_freq);
|
|
|
+
|
|
|
is_mcc_disallowed = !wlan_cm_same_band_sta_allowed(psoc);
|
|
|
target_if_cm_roam_mcc_disallow(vdev, vdev_id,
|
|
|
is_mcc_disallowed);
|