Răsfoiți Sursa

qcacld-3.0: Add WMA API to know if vdev is roaming

Add WMA API and DP ol_if callback to know if vdev is roaming in progress

Change-Id: Ice43413516d8b2490bf7ddf6fcac85ee5dee421b
CRs-Fixed: 2458886
Manjunathappa Prakash 5 ani în urmă
părinte
comite
8280a15953
3 a modificat fișierele cu 17 adăugiri și 1 ștergeri
  1. 2 1
      core/cds/src/cds_api.c
  2. 8 0
      core/wma/inc/wma.h
  3. 7 0
      core/wma/src/wma_data.c

+ 2 - 1
core/cds/src/cds_api.c

@@ -92,7 +92,8 @@ static struct ol_if_ops  dp_ol_if_ops = {
 	.is_hw_dbs_2x2_capable = policy_mgr_is_hw_dbs_2x2_capable,
 	.lro_hash_config = target_if_lro_hash_config,
 	.rx_mic_error = wma_rx_mic_error_ind,
-	.rx_invalid_peer = wma_rx_invalid_peer_ind
+	.rx_invalid_peer = wma_rx_invalid_peer_ind,
+	.is_roam_inprogress = wma_is_roam_in_progress
     /* TODO: Add any other control path calls required to OL_IF/WMA layer */
 };
 #else

+ 8 - 0
core/wma/inc/wma.h

@@ -2463,6 +2463,14 @@ void wma_check_and_set_wake_timer(uint32_t time);
  */
 uint8_t wma_rx_invalid_peer_ind(uint8_t vdev_id, void *wh);
 
+/**
+ * is_roam_inprogress() - Is vdev in progress
+ * @vdev_id: vdev of interest
+ *
+ * Return: true if roaming, false otherwise
+ */
+bool wma_is_roam_in_progress(uint32_t vdev_id);
+
 /**
  * wma_get_psoc_from_scn_handle() - API to get psoc from scn handle
  * @scn_handle: opaque wma handle

+ 7 - 0
core/wma/src/wma_data.c

@@ -3303,3 +3303,10 @@ uint8_t wma_rx_invalid_peer_ind(uint8_t vdev_id, void *wh)
 
 	return 0;
 }
+
+bool wma_is_roam_in_progress(uint32_t vdev_id)
+{
+	tp_wma_handle wma = cds_get_context(QDF_MODULE_ID_WMA);
+
+	return wma->interfaces[vdev_id].roaming_in_progress;
+}