|
@@ -5864,9 +5864,7 @@ end:
|
|
|
}
|
|
|
|
|
|
void policy_mgr_handle_emlsr_sta_concurrency(struct wlan_objmgr_psoc *psoc,
|
|
|
- struct wlan_objmgr_vdev *vdev,
|
|
|
- bool ap_coming_up,
|
|
|
- bool sta_coming_up,
|
|
|
+ bool conc_con_coming_up,
|
|
|
bool emlsr_sta_coming_up)
|
|
|
{
|
|
|
uint8_t num_mlo = 0;
|
|
@@ -5877,25 +5875,24 @@ void policy_mgr_handle_emlsr_sta_concurrency(struct wlan_objmgr_psoc *psoc,
|
|
|
&num_mlo);
|
|
|
|
|
|
if (num_mlo < 2) {
|
|
|
- policy_mgr_debug("vdev %d ap state %d num mlo sta links %d",
|
|
|
- wlan_vdev_get_id(vdev), ap_coming_up, num_mlo);
|
|
|
+ policy_mgr_debug("conc_con_coming_up %d num mlo sta links %d",
|
|
|
+ conc_con_coming_up, num_mlo);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- policy_mgr_debug("vdev %d num_mlo %d is_mlo_emlsr %d",
|
|
|
- wlan_vdev_get_id(vdev), num_mlo, is_mlo_emlsr);
|
|
|
- policy_mgr_debug("ap state %d legacy sta state %d emlsr sta state %d",
|
|
|
- ap_coming_up, sta_coming_up, emlsr_sta_coming_up);
|
|
|
+ policy_mgr_debug("num_mlo %d is_mlo_emlsr %d conc_con_coming_up: %d",
|
|
|
+ num_mlo, is_mlo_emlsr, conc_con_coming_up);
|
|
|
|
|
|
if (!is_mlo_emlsr)
|
|
|
return;
|
|
|
|
|
|
- if (ap_coming_up || sta_coming_up || (emlsr_sta_coming_up &&
|
|
|
- policy_mgr_get_connection_count(psoc) > 2)) {
|
|
|
+ if (conc_con_coming_up ||
|
|
|
+ (emlsr_sta_coming_up &&
|
|
|
+ policy_mgr_get_connection_count(psoc) > 2)) {
|
|
|
/*
|
|
|
* Force disable one of the links (FW will decide which link) if
|
|
|
- * 1) EMLSR STA is present and new SAP/STA connection comes up.
|
|
|
- * 2) There is a legacy connection (SAP/P2P) and a STA comes
|
|
|
+ * 1) EMLSR STA is present and SAP/STA/NAN connection comes up.
|
|
|
+ * 2) There is a legacy connection (SAP/P2P/NAN) and a STA comes
|
|
|
* up in EMLSR mode.
|
|
|
*/
|
|
|
policy_mgr_mlo_sta_set_link(psoc, MLO_LINK_FORCE_REASON_CONNECT,
|
|
@@ -5904,14 +5901,15 @@ void policy_mgr_handle_emlsr_sta_concurrency(struct wlan_objmgr_psoc *psoc,
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!(ap_coming_up || sta_coming_up) && emlsr_sta_coming_up)
|
|
|
+ if (!conc_con_coming_up && emlsr_sta_coming_up)
|
|
|
/*
|
|
|
* No force i.e. Re-enable the disabled link if-
|
|
|
- * 1) EMLSR STA is present and new SAP/STA connection goes down.
|
|
|
- * One of the links was disabled while a new connection came up.
|
|
|
- * 2) Legacy connection (SAP/P2P) goes down and if STA is EMLSR
|
|
|
- * capable. One of the links was disabled after EMLSR
|
|
|
- * association.
|
|
|
+ * 1) EMLSR STA is present and new SAP/STA/NAN connection goes
|
|
|
+ * down. One of the links was disabled while a new connection
|
|
|
+ * came up.
|
|
|
+ * 2) Legacy connection (SAP/P2P/NAN) goes down and if STA is
|
|
|
+ * EMLSR capable. One of the links was disabled after EMLSR
|
|
|
+ * association.
|
|
|
*/
|
|
|
policy_mgr_mlo_sta_set_link(psoc,
|
|
|
MLO_LINK_FORCE_REASON_DISCONNECT,
|
|
@@ -6729,11 +6727,17 @@ policy_mgr_handle_ml_sta_links_on_vdev_up_csa(struct wlan_objmgr_psoc *psoc,
|
|
|
}
|
|
|
|
|
|
#define SET_LINK_TIMEOUT 6000
|
|
|
-static QDF_STATUS
|
|
|
-policy_mgr_wait_for_set_link_update(struct policy_mgr_psoc_priv_obj *pm_ctx)
|
|
|
+QDF_STATUS policy_mgr_wait_for_set_link_update(struct wlan_objmgr_psoc *psoc)
|
|
|
{
|
|
|
+ struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
QDF_STATUS status;
|
|
|
|
|
|
+ pm_ctx = policy_mgr_get_context(psoc);
|
|
|
+ if (!pm_ctx) {
|
|
|
+ policy_mgr_err("Invalid Context");
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
+ }
|
|
|
+
|
|
|
if (!policy_mgr_get_link_in_progress(pm_ctx)) {
|
|
|
policy_mgr_err("link is not in progress");
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
@@ -6755,16 +6759,8 @@ void policy_mgr_handle_ml_sta_link_on_traffic_type_change(
|
|
|
struct wlan_objmgr_psoc *psoc,
|
|
|
struct wlan_objmgr_vdev *vdev)
|
|
|
{
|
|
|
- struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
-
|
|
|
- pm_ctx = policy_mgr_get_context(psoc);
|
|
|
- if (!pm_ctx) {
|
|
|
- policy_mgr_err("Invalid Context");
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
/* Check if any set link is already progress and thus wait */
|
|
|
- policy_mgr_wait_for_set_link_update(pm_ctx);
|
|
|
+ policy_mgr_wait_for_set_link_update(psoc);
|
|
|
|
|
|
policy_mgr_handle_sap_cli_go_ml_sta_up_csa(psoc, vdev);
|
|
|
|
|
@@ -6772,7 +6768,7 @@ void policy_mgr_handle_ml_sta_link_on_traffic_type_change(
|
|
|
* Check if traffic type change lead to set link is progress and
|
|
|
* thus wait for it to complete.
|
|
|
*/
|
|
|
- policy_mgr_wait_for_set_link_update(pm_ctx);
|
|
|
+ policy_mgr_wait_for_set_link_update(psoc);
|
|
|
}
|
|
|
|
|
|
static QDF_STATUS
|