Просмотр исходного кода

qcacld-3.0: Cleanup policy_mgr_get_mode API

API policy_mgr_get_mode is not required anymore in the host driver,
with this change remove policy_mgr_get_mode API and related code.

Change-Id: I697eb928d9f55d80022b78ce238aa218451dfa0b
CRs-Fixed: 3582902
Ashish Kumar Dhanotiya 1 год назад
Родитель
Сommit
02a882f64a

+ 7 - 2
components/cmn_services/policy_mgr/src/wlan_policy_mgr_action.c

@@ -385,8 +385,13 @@ QDF_STATUS policy_mgr_update_connection_info(struct wlan_objmgr_psoc *psoc,
 
 	cur_freq = pm_conc_connection_list[conn_index].freq;
 
-	mode = policy_mgr_get_mode(psoc, conn_table_entry.type,
-				   conn_table_entry.sub_type, vdev_id);
+	mode = policy_mgr_qdf_opmode_to_pm_con_mode(
+					psoc,
+					wlan_get_opmode_from_vdev_id(
+								pm_ctx->pdev,
+								vdev_id),
+					vdev_id);
+
 	ch_freq = conn_table_entry.mhz;
 	status = policy_mgr_get_nss_for_vdev(psoc, mode, &nss_2g, &nss_5g);
 	if (QDF_IS_STATUS_SUCCESS(status)) {

+ 0 - 53
components/cmn_services/policy_mgr/src/wlan_policy_mgr_core.c

@@ -2105,59 +2105,6 @@ uint32_t policy_mgr_get_connection_for_vdev_id(struct wlan_objmgr_psoc *psoc,
 	return conn_index;
 }
 
-enum policy_mgr_con_mode policy_mgr_get_mode(struct wlan_objmgr_psoc *psoc,
-					     uint8_t type, uint8_t subtype,
-					     uint32_t vdev_id)
-
-{
-	enum policy_mgr_con_mode mode = PM_MAX_NUM_OF_MODE;
-
-	if (type == WMI_VDEV_TYPE_AP) {
-		switch (subtype) {
-		case 0:
-	/*
-	 * This feature flag is added on temporary basis, once LL_LT_SAP is
-	 * enabled, this feature flag will be removed.
-	 */
-#ifdef WLAN_FEATURE_LL_LT_SAP
-			if (policy_mgr_is_vdev_ll_lt_sap(psoc, vdev_id))
-				mode = PM_LL_LT_SAP_MODE;
-			else
-#endif
-				mode = PM_SAP_MODE;
-			break;
-		case WMI_UNIFIED_VDEV_SUBTYPE_P2P_GO:
-			mode = PM_P2P_GO_MODE;
-			break;
-		default:
-			policy_mgr_err("Unknown subtype %d for type %d",
-				subtype, type);
-			break;
-		}
-	} else if (type == WMI_VDEV_TYPE_STA) {
-		switch (subtype) {
-		case 0:
-			mode = PM_STA_MODE;
-			break;
-		case WMI_UNIFIED_VDEV_SUBTYPE_P2P_CLIENT:
-			mode = PM_P2P_CLIENT_MODE;
-			break;
-		default:
-			policy_mgr_err("Unknown subtype %d for type %d",
-				subtype, type);
-			break;
-		}
-	} else if (type == WMI_VDEV_TYPE_NAN) {
-		mode = PM_NAN_DISC_MODE;
-	} else if (type == WMI_VDEV_TYPE_NDI) {
-		mode = PM_NDI_MODE;
-	} else {
-		policy_mgr_err("Unknown type %d", type);
-	}
-
-	return mode;
-}
-
 /**
  * policy_mgr_get_bw() - Get channel bandwidth type used by WMI
  * @chan_width: channel bandwidth type defined by host

+ 2 - 2
components/cmn_services/policy_mgr/src/wlan_policy_mgr_get_set_utils.c

@@ -5173,8 +5173,8 @@ QDF_STATUS policy_mgr_incr_connection_count(struct wlan_objmgr_psoc *psoc,
 		return QDF_STATUS_E_FAILURE;
 	}
 
-	mode = policy_mgr_get_mode(psoc, conn_table_entry.type,
-				   conn_table_entry.sub_type, vdev_id);
+	mode =  policy_mgr_qdf_opmode_to_pm_con_mode(psoc, op_mode, vdev_id);
+
 	ch_freq = conn_table_entry.mhz;
 	status = policy_mgr_get_nss_for_vdev(psoc, mode, &nss_2g, &nss_5g);
 	if (QDF_IS_STATUS_SUCCESS(status)) {

+ 0 - 14
components/cmn_services/policy_mgr/src/wlan_policy_mgr_i.h

@@ -819,20 +819,6 @@ void policy_mgr_dump_current_concurrency(struct wlan_objmgr_psoc *psoc);
 
 void pm_dbs_opportunistic_timer_handler(void *data);
 
-/**
- * policy_mgr_get_mode() - Get policy manager mode
- * @psoc: psoc handle
- * @type: WMI vdev type for which policy mgr mode is required
- * @subtype: Subtype of the vdev type
- * @vdev_id: Vdev id for which the policy mgr type is required
- *
- *
- * Return: policy_mgr_con_mode
- */
-enum policy_mgr_con_mode policy_mgr_get_mode(struct wlan_objmgr_psoc *psoc,
-					     uint8_t type, uint8_t subtype,
-					     uint32_t vdev_id);
-
 /**
  * policy_mgr_get_channel_list() - Get channel list based on PCL and mode
  * @psoc: psoc object