Przeglądaj źródła

qcacld-3.0: Change ops from vdev specific to psoc level

Currently in packet capture component the tx and rx ops are
stored in vdev but the ops should be only per psoc and
the ops will be registered only once per psoc. So change
tx and rx ops from vdev specific to psoc level.

Change-Id: I09e9dd5d83e7b10c86e80ebf2584469071060813
CRs-Fixed: 3049207
Vulupala Shashank Reddy 3 lat temu
rodzic
commit
5c72b5aded

+ 5 - 4
components/pkt_capture/core/inc/wlan_pkt_capture_priv.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2020-2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -56,8 +57,6 @@ struct pkt_capture_cb_context {
  * @vdev: pointer to vdev object
  * @mon_ctx: pointer to packet capture mon context
  * @cb_ctx: pointer to packet capture mon callback context
- * @rx_ops: rx ops
- * @tx_ops: tx ops
  * @frame_filter: config filter set by vendor command
  * @cfg_params: packet capture config params
  * @rx_avg_rssi: avg rssi of rx data packets
@@ -71,8 +70,6 @@ struct pkt_capture_vdev_priv {
 	struct wlan_objmgr_vdev *vdev;
 	struct pkt_capture_mon_context *mon_ctx;
 	struct pkt_capture_cb_context *cb_ctx;
-	struct wlan_pkt_capture_rx_ops rx_ops;
-	struct wlan_pkt_capture_tx_ops tx_ops;
 	struct pkt_capture_frame_filter frame_filter;
 	struct pkt_capture_cfg cfg_params;
 	int32_t rx_avg_rssi;
@@ -88,10 +85,14 @@ struct pkt_capture_vdev_priv {
  * @psoc: pointer to psoc object
  * @cfg_param: INI config params for packet capture
  * @cb_obj: struct contaning callback pointers
+ * @rx_ops: rx ops
+ * @tx_ops: tx ops
  */
 struct pkt_psoc_priv {
 	struct wlan_objmgr_psoc *psoc;
 	struct pkt_capture_cfg cfg_param;
 	struct pkt_capture_callbacks cb_obj;
+	struct wlan_pkt_capture_rx_ops rx_ops;
+	struct wlan_pkt_capture_tx_ops tx_ops;
 };
 #endif /* End  of _WLAN_PKT_CAPTURE_PRIV_STRUCT_H_ */

+ 10 - 2
components/pkt_capture/core/src/wlan_pkt_capture_main.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2020-2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -680,6 +681,7 @@ pkt_capture_register_callbacks(struct wlan_objmgr_vdev *vdev,
 			       void *context)
 {
 	struct pkt_capture_vdev_priv *vdev_priv;
+	struct pkt_psoc_priv *psoc_priv;
 	struct wlan_objmgr_psoc *psoc;
 	enum pkt_capture_mode mode;
 	QDF_STATUS status;
@@ -710,8 +712,14 @@ pkt_capture_register_callbacks(struct wlan_objmgr_vdev *vdev,
 		goto mgmt_rx_ops_fail;
 	}
 
-	target_if_pkt_capture_register_tx_ops(&vdev_priv->tx_ops);
-	target_if_pkt_capture_register_rx_ops(&vdev_priv->rx_ops);
+	psoc_priv = pkt_capture_psoc_get_priv(psoc);
+	if (!psoc_priv) {
+		pkt_capture_err("psoc_priv is NULL");
+		return QDF_STATUS_E_INVAL;
+	}
+
+	target_if_pkt_capture_register_tx_ops(&psoc_priv->tx_ops);
+	target_if_pkt_capture_register_rx_ops(&psoc_priv->rx_ops);
 	pkt_capture_wdi_event_subscribe(psoc);
 	pkt_capture_record_channel(vdev);
 	vdev_priv->curr_freq = vdev->vdev_mlme.des_chan->ch_freq;

+ 26 - 25
components/pkt_capture/dispatcher/src/wlan_pkt_capture_tgt_api.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -24,7 +25,7 @@ QDF_STATUS
 tgt_pkt_capture_register_ev_handler(struct wlan_objmgr_vdev *vdev)
 {
 	QDF_STATUS status = QDF_STATUS_E_FAILURE;
-	struct pkt_capture_vdev_priv *vdev_priv;
+	struct pkt_psoc_priv *psoc_priv;
 	struct wlan_pkt_capture_rx_ops *rx_ops;
 	struct wlan_objmgr_psoc *psoc;
 
@@ -34,13 +35,13 @@ tgt_pkt_capture_register_ev_handler(struct wlan_objmgr_vdev *vdev)
 		return status;
 	}
 
-	vdev_priv = pkt_capture_vdev_get_priv(vdev);
-	if (!vdev_priv) {
-		pkt_capture_err("vdev priv is NULL");
+	psoc_priv = pkt_capture_psoc_get_priv(psoc);
+	if (!psoc_priv) {
+		pkt_capture_err("psoc_priv is NULL");
 		return status;
 	}
 
-	rx_ops = &vdev_priv->rx_ops;
+	rx_ops = &psoc_priv->rx_ops;
 
 	if (!rx_ops->pkt_capture_register_ev_handlers)
 		return status;
@@ -60,7 +61,7 @@ QDF_STATUS
 tgt_pkt_capture_unregister_ev_handler(struct wlan_objmgr_vdev *vdev)
 {
 	QDF_STATUS status = QDF_STATUS_E_FAILURE;
-	struct pkt_capture_vdev_priv *vdev_priv;
+	struct pkt_psoc_priv *psoc_priv;
 	struct wlan_pkt_capture_rx_ops *rx_ops;
 	struct wlan_objmgr_psoc *psoc;
 
@@ -70,13 +71,13 @@ tgt_pkt_capture_unregister_ev_handler(struct wlan_objmgr_vdev *vdev)
 		return status;
 	}
 
-	vdev_priv = pkt_capture_vdev_get_priv(vdev);
-	if (!vdev_priv) {
-		pkt_capture_err("vdev priv is NULL");
+	psoc_priv = pkt_capture_psoc_get_priv(psoc);
+	if (!psoc_priv) {
+		pkt_capture_err("psoc_priv is NULL");
 		return status;
 	}
 
-	rx_ops = &vdev_priv->rx_ops;
+	rx_ops = &psoc_priv->rx_ops;
 
 	if (!rx_ops->pkt_capture_unregister_ev_handlers)
 		return status;
@@ -97,7 +98,7 @@ tgt_pkt_capture_send_mode(struct wlan_objmgr_vdev *vdev,
 			  enum pkt_capture_mode mode)
 {
 	QDF_STATUS status = QDF_STATUS_E_FAILURE;
-	struct pkt_capture_vdev_priv *vdev_priv;
+	struct pkt_psoc_priv *psoc_priv;
 	struct wlan_pkt_capture_tx_ops *tx_ops;
 	struct wlan_objmgr_psoc *psoc;
 
@@ -107,13 +108,13 @@ tgt_pkt_capture_send_mode(struct wlan_objmgr_vdev *vdev,
 		return status;
 	}
 
-	vdev_priv = pkt_capture_vdev_get_priv(vdev);
-	if (!vdev_priv) {
-		pkt_capture_err("vdev priv is NULL");
+	psoc_priv = pkt_capture_psoc_get_priv(psoc);
+	if (!psoc_priv) {
+		pkt_capture_err("psoc_priv is NULL");
 		return status;
 	}
 
-	tx_ops = &vdev_priv->tx_ops;
+	tx_ops = &psoc_priv->tx_ops;
 
 	if (!tx_ops->pkt_capture_send_mode)
 		return status;
@@ -131,7 +132,7 @@ tgt_pkt_capture_send_beacon_interval(struct wlan_objmgr_vdev *vdev,
 				     uint32_t nth_value)
 {
 	QDF_STATUS status = QDF_STATUS_E_FAILURE;
-	struct pkt_capture_vdev_priv *vdev_priv;
+	struct pkt_psoc_priv *psoc_priv;
 	struct wlan_pkt_capture_tx_ops *tx_ops;
 	struct wlan_objmgr_psoc *psoc;
 
@@ -141,13 +142,13 @@ tgt_pkt_capture_send_beacon_interval(struct wlan_objmgr_vdev *vdev,
 		return status;
 	}
 
-	vdev_priv = pkt_capture_vdev_get_priv(vdev);
-	if (!vdev_priv) {
-		pkt_capture_err("vdev priv is NULL");
+	psoc_priv = pkt_capture_psoc_get_priv(psoc);
+	if (!psoc_priv) {
+		pkt_capture_err("psoc_priv is NULL");
 		return status;
 	}
 
-	tx_ops = &vdev_priv->tx_ops;
+	tx_ops = &psoc_priv->tx_ops;
 
 	if (!tx_ops->pkt_capture_send_beacon_interval)
 		return status;
@@ -167,7 +168,7 @@ tgt_pkt_capture_send_config(struct wlan_objmgr_vdev *vdev,
 			    enum pkt_capture_config config)
 {
 	QDF_STATUS status = QDF_STATUS_E_FAILURE;
-	struct pkt_capture_vdev_priv *vdev_priv;
+	struct pkt_psoc_priv *psoc_priv;
 	struct wlan_pkt_capture_tx_ops *tx_ops;
 	struct wlan_objmgr_psoc *psoc;
 
@@ -177,13 +178,13 @@ tgt_pkt_capture_send_config(struct wlan_objmgr_vdev *vdev,
 		return status;
 	}
 
-	vdev_priv = pkt_capture_vdev_get_priv(vdev);
-	if (!vdev_priv) {
-		pkt_capture_err("vdev priv is NULL");
+	psoc_priv = pkt_capture_psoc_get_priv(psoc);
+	if (!psoc_priv) {
+		pkt_capture_err("psoc_priv is NULL");
 		return status;
 	}
 
-	tx_ops = &vdev_priv->tx_ops;
+	tx_ops = &psoc_priv->tx_ops;
 
 	if (!tx_ops->pkt_capture_send_config)
 		return status;