瀏覽代碼

qcacld-3.0: Init-Deinit changes for WCN6450

Add changes to init-deinit WCN6450 from HDD layer

Change-Id: I0572fa109738326b469bd2b77b9e7c600ac672f8
CRs-Fixed: 3381728
Karthik Kantamneni 2 年之前
父節點
當前提交
e0cfa501a1
共有 3 個文件被更改,包括 25 次插入4 次删除
  1. 21 1
      core/cds/src/cds_api.c
  2. 2 1
      core/wma/src/wma_main.c
  3. 2 2
      os_if/dp/src/os_if_dp_lro.c

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

@@ -838,6 +838,25 @@ QDF_STATUS cds_open(struct wlan_objmgr_psoc *psoc)
 				goto err_soc_detach;
 			}
 		hdd_ctx->is_wifi3_0_target = true;
+	} else if (hdd_ctx->target_type == TARGET_TYPE_WCN6450) {
+		gp_cds_context->dp_soc =
+			cdp_soc_attach(RHINE_DP,
+				       gp_cds_context->hif_context,
+				       htcInfo.target_psoc,
+				       gp_cds_context->htc_ctx,
+				       gp_cds_context->qdf_ctx,
+				       &dp_ol_if_ops);
+		if (gp_cds_context->dp_soc)
+			if (!cdp_soc_init(gp_cds_context->dp_soc, RHINE_DP,
+					  gp_cds_context->hif_context,
+					  htcInfo.target_psoc,
+					  gp_cds_context->htc_ctx,
+					  gp_cds_context->qdf_ctx,
+					  &dp_ol_if_ops)) {
+				status = QDF_STATUS_E_FAILURE;
+				goto err_soc_detach;
+			}
+		hdd_ctx->is_wifi3_0_target = true;
 	} else {
 		gp_cds_context->dp_soc = cdp_soc_attach(MOB_DRV_LEGACY_DP,
 			gp_cds_context->hif_context, htcInfo.target_psoc,
@@ -968,7 +987,8 @@ QDF_STATUS cds_dp_open(struct wlan_objmgr_psoc *psoc)
 	    hdd_ctx->target_type == TARGET_TYPE_QCA6750 ||
 	    hdd_ctx->target_type == TARGET_TYPE_KIWI ||
 	    hdd_ctx->target_type == TARGET_TYPE_MANGO ||
-	    hdd_ctx->target_type == TARGET_TYPE_PEACH) {
+	    hdd_ctx->target_type == TARGET_TYPE_PEACH ||
+	    hdd_ctx->target_type == TARGET_TYPE_WCN6450) {
 		qdf_status = cdp_pdev_init(cds_get_context(QDF_MODULE_ID_SOC),
 					   gp_cds_context->htc_ctx,
 					   gp_cds_context->qdf_ctx, 0);

+ 2 - 1
core/wma/src/wma_main.c

@@ -7732,7 +7732,8 @@ static void wma_set_wifi_start_packet_stats(void *wma_handle,
 		ATH_PKTLOG_RX | ATH_PKTLOG_TX |
 		ATH_PKTLOG_TEXT | ATH_PKTLOG_SW_EVENT;
 #elif defined(QCA_WIFI_QCA6390) || defined(QCA_WIFI_QCA6490) || \
-      defined(QCA_WIFI_QCA6750) || defined(QCA_WIFI_KIWI)
+      defined(QCA_WIFI_QCA6750) || defined(QCA_WIFI_KIWI) || \
+      defines(QCA_WIFI_WCN6450)
 	log_state = ATH_PKTLOG_RCFIND | ATH_PKTLOG_RCUPDATE |
 		    ATH_PKTLOG_TX | ATH_PKTLOG_LITE_T2H |
 		    ATH_PKTLOG_SW_EVENT | ATH_PKTLOG_RX;

+ 2 - 2
os_if/dp/src/os_if_dp_lro.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023 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
@@ -31,7 +31,7 @@
 
 #if defined(QCA_WIFI_QCA6290) || defined(QCA_WIFI_QCA6390) || \
     defined(QCA_WIFI_QCA6490) || defined(QCA_WIFI_QCA6750) || \
-    defined(QCA_WIFI_KIWI)
+    defined(QCA_WIFI_KIWI) || defined(QCA_WIFI_WCN6450)
 #ifdef WLAN_FEATURE_LRO_CTX_IN_CB
 static qdf_lro_ctx_t osif_dp_get_lro_ctx(struct sk_buff *skb)
 {