فهرست منبع

qcacld-3.0: Optimize wlan memory for kuno

Disable CFR/EPPING/NAN/more_tx_desc/OEM DATA and
RSSI_MONITOR/APF/P2P_DEBUG/P2P_LISTEN/SPECTAL_SCAN

Update wlan_hdd_debugfs_offload.c for APF compile error.

Change-Id: I8ede890b0b821cec5f03f2ede535f34d8883638d
CRs-Fixed: 3332742
chunquan 2 سال پیش
والد
کامیت
dcbebde9e4
3فایلهای تغییر یافته به همراه46 افزوده شده و 0 حذف شده
  1. 4 0
      Kbuild
  2. 31 0
      configs/default_defconfig
  3. 11 0
      core/hdd/src/wlan_hdd_debugfs_offload.c

+ 4 - 0
Kbuild

@@ -3604,6 +3604,10 @@ cppflags-$(CONFIG_MULTI_IF_LOG) += -DMULTI_IF_LOG
 #Set SLUB_MEM_OPTIMIZE
 cppflags-$(CONFIG_SLUB_MEM_OPTIMIZE) += -DSLUB_MEM_OPTIMIZE
 
+ifeq ($(CONFIG_ARCH_SDXBAAGHA), y)
+cppflags-$(CONFIG_WLAN_MEMORY_OPT) += -DWLAN_MEMORY_OPT
+endif
+
 #Set DFS_PRI_MULTIPLIER
 cppflags-$(CONFIG_DFS_PRI_MULTIPLIER) += -DDFS_PRI_MULTIPLIER
 

+ 31 - 0
configs/default_defconfig

@@ -1524,6 +1524,37 @@ CONFIG_MAX_CLIENTS_ALLOWED := 64
 ifneq ($(CONFIG_SLUB_DEBUG), y)
 CONFIG_DP_TRACE := n
 endif
+CONFIG_DIRECT_BUF_RX_ENABLE := n
+CONFIG_WMI_DBR_SUPPORT := n
+CONFIG_WLAN_CFR_ENABLE := n
+CONFIG_WLAN_ENH_CFR_ENABLE := n
+CONFIG_QCACLD_FEATURE_APF := n
+CONFIG_QCACLD_FEATURE_NAN := n
+CONFIG_FEATURE_EPPING := n
+CONFIG_WLAN_FEATURE_P2P_DEBUG := n
+CONFIG_WLAN_CONV_SPECTRAL_ENABLE := n
+CONFIG_FEATURE_MONITOR_MODE_SUPPORT := n
+CONFIG_FEATURE_RSSI_MONITOR := n
+CONFIG_FEATURE_P2P_LISTEN_OFFLOAD := n
+CONFIG_FEATURE_OEM_DATA := n
+CONFIG_MORE_TX_DESC := n
+endif
+
+ifeq ($(CONFIG_ARCH_SDXBAAGHA), y)
+CONFIG_DIRECT_BUF_RX_ENABLE := n
+CONFIG_WMI_DBR_SUPPORT := n
+CONFIG_WLAN_CFR_ENABLE := n
+CONFIG_WLAN_ENH_CFR_ENABLE := n
+CONFIG_QCACLD_FEATURE_APF := n
+CONFIG_QCACLD_FEATURE_NAN := n
+CONFIG_FEATURE_EPPING := n
+CONFIG_WLAN_FEATURE_P2P_DEBUG := n
+CONFIG_WLAN_CONV_SPECTRAL_ENABLE := n
+CONFIG_FEATURE_MONITOR_MODE_SUPPORT := n
+CONFIG_FEATURE_RSSI_MONITOR := n
+CONFIG_FEATURE_P2P_LISTEN_OFFLOAD := n
+CONFIG_FEATURE_OEM_DATA := n
+CONFIG_MORE_TX_DESC := n
 endif
 
 #Enable Hang Event

+ 11 - 0
core/hdd/src/wlan_hdd_debugfs_offload.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2018-2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021-2022 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
@@ -328,6 +329,7 @@ wlan_hdd_ns_offload_info_debugfs(struct hdd_context *hdd_ctx,
 }
 #endif
 
+#ifdef FEATURE_WLAN_APF
 /**
  * wlan_hdd_apf_info_debugfs() - Populate apf offload info
  * @hdd_ctx: pointer to hdd context
@@ -360,6 +362,15 @@ wlan_hdd_apf_info_debugfs(struct hdd_context *hdd_ctx,
 
 	return length;
 }
+#else
+static ssize_t
+wlan_hdd_apf_info_debugfs(struct hdd_context *hdd_ctx,
+			  struct hdd_adapter *adapter, uint8_t *buf,
+			  ssize_t buf_avail_len)
+{
+	return 0;
+}
+#endif
 
 ssize_t
 wlan_hdd_debugfs_update_filters_info(struct hdd_context *hdd_ctx,