Преглед на файлове

qcacld-3.0: Enable connect/disconnect flow for connection manager

Currently connect/disconnect flow is not enabled for connection
manager, enable connect/disconnect path for the connection
manager.

Change-Id: Ibe83639fb7191169aa6be819edbc94ff086c9f5d
CRs-Fixed: 2830693
Ashish Kumar Dhanotiya преди 4 години
родител
ревизия
1e0cbc3788
променени са 2 файла, в които са добавени 65 реда и са изтрити 5 реда
  1. 60 5
      core/hdd/src/wlan_hdd_cfg80211.c
  2. 5 0
      core/hdd/src/wlan_hdd_cfg80211.h

+ 60 - 5
core/hdd/src/wlan_hdd_cfg80211.c

@@ -170,6 +170,7 @@
 #include <osif_cm_util.h>
 #include <osif_cm_req.h>
 #include "wlan_hdd_bootup_marker.h"
+#include "wlan_hdd_cm_api.h"
 
 #define g_mode_rates_size (12)
 #define a_mode_rates_size (8)
@@ -20766,9 +20767,9 @@ static inline void hdd_dump_connect_req(struct hdd_adapter *adapter,
  *
  * Return: 0 for success, non-zero for failure
  */
-static int __wlan_hdd_cfg80211_connect(struct wiphy *wiphy,
-				       struct net_device *ndev,
-				       struct cfg80211_connect_params *req)
+int __wlan_hdd_cfg80211_connect(struct wiphy *wiphy,
+				struct net_device *ndev,
+				struct cfg80211_connect_params *req)
 {
 	int status;
 	uint32_t ch_freq;
@@ -20937,7 +20938,33 @@ static int __wlan_hdd_cfg80211_connect(struct wiphy *wiphy,
 
 	return status;
 }
+#ifdef FEATURE_CM_ENABLE
+/**
+ * wlan_hdd_cfg80211_connect() - cfg80211 connect api
+ * @wiphy: Pointer to wiphy
+ * @dev: Pointer to network device
+ * @req: Pointer to cfg80211 connect request
+ *
+ * Return: 0 for success, non-zero for failure
+ */
+static int wlan_hdd_cfg80211_connect(struct wiphy *wiphy,
+				     struct net_device *ndev,
+				     struct cfg80211_connect_params *req)
+{
+	int errno;
+	struct osif_vdev_sync *vdev_sync;
+
+	errno = osif_vdev_sync_op_start(ndev, &vdev_sync);
+	if (errno)
+		return errno;
 
+	errno = wlan_hdd_cm_connect(wiphy, ndev, req);
+
+	osif_vdev_sync_op_stop(vdev_sync);
+
+	return errno;
+}
+#else
 /**
  * wlan_hdd_cfg80211_connect() - cfg80211 connect api
  * @wiphy: Pointer to wiphy
@@ -20963,6 +20990,7 @@ static int wlan_hdd_cfg80211_connect(struct wiphy *wiphy,
 
 	return errno;
 }
+#endif
 
 /**
  * hdd_ieee80211_reason_code_to_str() - return string conversion of reason code
@@ -21176,8 +21204,8 @@ int wlan_hdd_disconnect(struct hdd_adapter *adapter, u16 reason,
  *
  * Return: 0 for success, non-zero for failure
  */
-static int __wlan_hdd_cfg80211_disconnect(struct wiphy *wiphy,
-					  struct net_device *dev, u16 reason)
+int __wlan_hdd_cfg80211_disconnect(struct wiphy *wiphy,
+				   struct net_device *dev, u16 reason)
 {
 	struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
 	int status;
@@ -21291,6 +21319,32 @@ static int __wlan_hdd_cfg80211_disconnect(struct wiphy *wiphy,
 	return status;
 }
 
+#ifdef FEATURE_CM_ENABLE
+/**
+ * wlan_hdd_cfg80211_disconnect() - cfg80211 disconnect api
+ * @wiphy: Pointer to wiphy
+ * @dev: Pointer to network device
+ * @reason: Disconnect reason code
+ *
+ * Return: 0 for success, non-zero for failure
+ */
+static int wlan_hdd_cfg80211_disconnect(struct wiphy *wiphy,
+					struct net_device *dev, u16 reason)
+{
+	int errno;
+	struct osif_vdev_sync *vdev_sync;
+
+	errno = osif_vdev_sync_op_start(dev, &vdev_sync);
+	if (errno)
+		return errno;
+
+	errno = wlan_hdd_cm_disconnect(wiphy, dev, reason);
+
+	osif_vdev_sync_op_stop(vdev_sync);
+
+	return errno;
+}
+#else
 /**
  * wlan_hdd_cfg80211_disconnect() - cfg80211 disconnect api
  * @wiphy: Pointer to wiphy
@@ -21315,6 +21369,7 @@ static int wlan_hdd_cfg80211_disconnect(struct wiphy *wiphy,
 
 	return errno;
 }
+#endif
 
 /**
  * __wlan_hdd_cfg80211_set_wiphy_params() - set wiphy parameters

+ 5 - 0
core/hdd/src/wlan_hdd_cfg80211.h

@@ -869,4 +869,9 @@ static inline void hdd_send_update_owe_info_event(struct hdd_adapter *adapter,
  */
 bool hdd_is_legacy_connection(struct hdd_adapter *adapter);
 
+int __wlan_hdd_cfg80211_disconnect(struct wiphy *wiphy,
+				   struct net_device *dev, u16 reason);
+int __wlan_hdd_cfg80211_connect(struct wiphy *wiphy,
+				struct net_device *ndev,
+				struct cfg80211_connect_params *req);
 #endif