Explorar o código

qcacld-3.0: Add config option for CFG_TGT_NUM_MSDU_DESC

Add driver config option for CFG_TGT_NUM_MSDU_DESC

Change-Id: I9c738de779d03819e6920e9d3e260ec3d1fbd524
CRs-Fixed: 2390958
Ajit Pal Singh %!s(int64=6) %!d(string=hai) anos
pai
achega
a70e315601

+ 4 - 0
Kbuild

@@ -2552,6 +2552,10 @@ ifdef CONFIG_CFG_GTK_OFFLOAD_MAX_VDEV
 ccflags-y += -DCFG_TGT_DEFAULT_GTK_OFFLOAD_MAX_VDEV=$(CONFIG_CFG_GTK_OFFLOAD_MAX_VDEV)
 endif
 
+ifdef CONFIG_TGT_NUM_MSDU_DESC
+ccflags-y += -DCFG_TGT_NUM_MSDU_DESC=$(CONFIG_TGT_NUM_MSDU_DESC)
+endif
+
 ifdef CONFIG_CFG_ROAM_OFFLOAD_MAX_VDEV
 ccflags-y += -DCFG_TGT_DEFAULT_ROAM_OFFLOAD_MAX_VDEV=$(CONFIG_CFG_ROAM_OFFLOAD_MAX_VDEV)
 endif

+ 4 - 0
components/nan/core/inc/nan_public_structs.h

@@ -26,7 +26,11 @@
 #include "qdf_types.h"
 #include "qdf_status.h"
 #include "scheduler_api.h"
+#if defined(CONFIG_HL_SUPPORT)
+#include "wlan_tgt_def_config_hl.h"
+#else
 #include "wlan_tgt_def_config.h"
+#endif
 
 struct wlan_objmgr_psoc;
 struct wlan_objmgr_vdev;

+ 1 - 0
configs/default_defconfig

@@ -417,6 +417,7 @@ ifeq ($(CONFIG_ROME_IF),sdio)
 	CONFIG_TX_DESC_HI_PRIO_RESERVE := y
 	CONFIG_PER_VDEV_TX_DESC_POOL := y
 	CONFIG_FEATURE_HL_GROUP_CREDIT_FLOW_CONTROL := y
+	CONFIG_TGT_NUM_MSDU_DESC := 0
 endif
 
 ifeq ($(CONFIG_ROME_IF),snoc)

+ 1 - 0
configs/genoa.sdio.debug_defconfig

@@ -47,4 +47,5 @@ else
 	QCA_WIFI_FTM_NL80211 :=n
 endif
 CONFIG_LINUX_QCMBR :=y
+CONFIG_TGT_NUM_MSDU_DESC := 0
 ###################################

+ 1 - 0
configs/genoa.sdio.perf_defconfig

@@ -53,4 +53,5 @@ endif
 CONFIG_QCA_WIFI_FTM := n
 QCA_WIFI_FTM_NL80211 := n
 CONFIG_LINUX_QCMBR := n
+CONFIG_TGT_NUM_MSDU_DESC := 0
 ###################################

+ 1 - 0
configs/genoa.usb.debug_defconfig

@@ -49,4 +49,5 @@ else
 endif
 CONFIG_LINUX_QCMBR :=y
 CONFIG_QCN7605_SUPPORT := y
+CONFIG_TGT_NUM_MSDU_DESC := 0
 ###################################

+ 1 - 0
configs/genoa.usb.perf_defconfig

@@ -55,4 +55,5 @@ CONFIG_QCA_WIFI_FTM := n
 QCA_WIFI_FTM_NL80211 := n
 CONFIG_LINUX_QCMBR := n
 CONFIG_QCN7605_SUPPORT := y
+CONFIG_TGT_NUM_MSDU_DESC := 0
 ###################################

+ 4 - 0
core/wma/src/wma_dev_if.c

@@ -62,7 +62,11 @@
 
 #include "wlan_policy_mgr_api.h"
 #include "wma_nan_datapath.h"
+#if defined(CONFIG_HL_SUPPORT)
+#include "wlan_tgt_def_config_hl.h"
+#else
 #include "wlan_tgt_def_config.h"
+#endif
 #include <wlan_dfs_tgt_api.h>
 #include <cdp_txrx_handle.h>
 #include "wlan_pmo_ucfg_api.h"

+ 4 - 0
core/wma/src/wma_scan_roam.c

@@ -57,7 +57,11 @@
 #include "ol_fw.h"
 
 #include "wma_internal.h"
+#if defined(CONFIG_HL_SUPPORT)
+#include "wlan_tgt_def_config_hl.h"
+#else
 #include "wlan_tgt_def_config.h"
+#endif
 #include "wlan_reg_services_api.h"
 #include "wlan_roam_debug.h"
 #include "wlan_mlme_public_struct.h"