Prechádzať zdrojové kódy

qcacld-3.0: Add CDP handles in DP component context

Currently the CDP handles like soc/hif/hal_soc are not
available in any of the the DP component contexts.
Modules like FISA etc need these handles.

Store the CDP handles like soc/hif_handle/hal_soc in
the DP component context.

Change-Id: Iaee4d0e15cbaa7d871dc9e246d177ad310b4c6ba
CRs-Fixed: 3505720
Rakesh Pillai 1 rok pred
rodič
commit
51d63bdc63

+ 6 - 0
components/dp/core/inc/wlan_dp_priv.h

@@ -472,6 +472,9 @@ struct dp_direct_link_context {
  * @pdev: object manager pdev context
  * @qdf_dev: qdf device
  * @dp_cfg: place holder for DP configuration
+ * @cdp_soc: CDP SoC handle
+ * @hif_handle: HIF handle
+ * @hal_soc: HAL SoC handle
  * @intf_list_lock: DP interfaces list lock
  * @intf_list: DP interfaces list
  * @rps: rps
@@ -526,6 +529,9 @@ struct wlan_dp_psoc_context {
 	struct wlan_objmgr_pdev *pdev;
 	qdf_device_t qdf_dev;
 	struct wlan_dp_psoc_cfg dp_cfg;
+	ol_txrx_soc_handle cdp_soc;
+	struct hif_opaque_softc *hif_handle;
+	void *hal_soc;
 
 	qdf_spinlock_t intf_list_lock;
 	qdf_list_t intf_list;

+ 4 - 0
components/dp/dispatcher/inc/wlan_dp_ucfg_api.h

@@ -92,6 +92,10 @@ QDF_STATUS ucfg_dp_create_intf(struct wlan_objmgr_psoc *psoc,
 			       struct qdf_mac_addr *intf_addr,
 			       qdf_netdev_t ndev);
 
+void ucfg_dp_set_hif_handle(struct wlan_objmgr_psoc *psoc,
+			    struct hif_opaque_softc *hif_handle);
+void ucfg_dp_set_cmn_dp_handle(struct wlan_objmgr_psoc *psoc,
+			       ol_txrx_soc_handle soc);
 /**
  * ucfg_dp_init() - DP module initialization API
  *

+ 32 - 0
components/dp/dispatcher/src/wlan_dp_ucfg_api.c

@@ -176,6 +176,38 @@ ucfg_dp_destroy_intf(struct wlan_objmgr_psoc *psoc,
 	return QDF_STATUS_SUCCESS;
 }
 
+void ucfg_dp_set_cmn_dp_handle(struct wlan_objmgr_psoc *psoc,
+			       ol_txrx_soc_handle soc)
+{
+	struct wlan_dp_psoc_context *dp_ctx;
+	cdp_config_param_type soc_param;
+	QDF_STATUS status;
+
+	dp_ctx = dp_psoc_get_priv(psoc);
+
+	dp_ctx->cdp_soc = soc;
+
+	soc_param.hal_soc_hdl = NULL;
+	status = cdp_txrx_get_psoc_param(dp_ctx->cdp_soc, CDP_TXRX_HAL_SOC_HDL,
+					 &soc_param);
+	if (QDF_IS_STATUS_ERROR(status)) {
+		dp_err("Unable to fetch hal soc handle");
+		return;
+	}
+
+	dp_ctx->hal_soc = soc_param.hal_soc_hdl;
+}
+
+void ucfg_dp_set_hif_handle(struct wlan_objmgr_psoc *psoc,
+			    struct hif_opaque_softc *hif_handle)
+{
+	struct wlan_dp_psoc_context *dp_ctx;
+
+	dp_ctx = dp_psoc_get_priv(psoc);
+
+	dp_ctx->hif_handle = hif_handle;
+}
+
 QDF_STATUS ucfg_dp_init(void)
 {
 	QDF_STATUS status;

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

@@ -863,6 +863,7 @@ QDF_STATUS cds_open(struct wlan_objmgr_psoc *psoc)
 	}
 
 	wlan_psoc_set_dp_handle(psoc, gp_cds_context->dp_soc);
+	ucfg_dp_set_cmn_dp_handle(psoc, gp_cds_context->dp_soc);
 	ucfg_pmo_psoc_update_dp_handle(psoc, gp_cds_context->dp_soc);
 	ucfg_ocb_update_dp_handle(psoc, gp_cds_context->dp_soc);
 

+ 1 - 0
core/hdd/src/wlan_hdd_driver_ops.c

@@ -474,6 +474,7 @@ int hdd_hif_open(struct device *dev, void *bdev, const struct hif_bus_id *bid,
 				cfg_get(hdd_ctx->psoc,
 					CFG_DP_CE_SERVICE_MAX_YIELD_TIME));
 	ucfg_pmo_psoc_set_hif_handle(hdd_ctx->psoc, hif_ctx);
+	ucfg_dp_set_hif_handle(hdd_ctx->psoc, hif_ctx);
 	hif_set_ce_service_max_rx_ind_flush(hif_ctx,
 				cfg_get(hdd_ctx->psoc,
 					CFG_DP_CE_SERVICE_MAX_RX_IND_FLUSH));