Parcourir la source

qcacld-3.0: move DP related INI config to hdd_dp_cfg.h

Move DP related INI config from hdd_config.h to hdd_dp_cfg.h

Change-Id: I9bb1b6a1e51396fc6af7d2e2f6c553d6e2a958f4
CRs-Fixed: 3599799
Venkateswara Naralasetty il y a 1 an
Parent
commit
4b174992a8
2 fichiers modifiés avec 33 ajouts et 33 suppressions
  1. 1 30
      core/hdd/inc/hdd_config.h
  2. 32 3
      core/hdd/inc/hdd_dp_cfg.h

+ 1 - 30
core/hdd/inc/hdd_config.h

@@ -1291,34 +1291,6 @@ enum host_log_level {
 #define CFG_DYNAMIC_MAC_ADDR_UPDATE_SUPPORTED_ALL
 #endif
 
-#ifdef FEATURE_ENABLE_CE_DP_IRQ_AFFINE
-/*
- * <ini>
- * Enable_ce_dp_irq_affine - Enable/disable affinity on datapath CE IRQs
- *
- * @Min: 0
- * @Max: 1
- * Default: 0
- *
- * This ini param is used to enable/disable the affinity on datapath
- * Copy Engine IRQs.
- *
- * Supported Feature: STA/SAP
- *
- * Usage: External
- *
- * </ini>
- */
-#define CFG_ENABLE_CE_DP_IRQ_AFFINE CFG_INI_BOOL(\
-			"Enable_ce_dp_irq_affine", \
-			0, \
-			"Enable/disable irq affinity on datapath CEs")
-#define CFG_ENABLE_CE_DP_IRQ_AFFINE_ALL \
-	CFG(CFG_ENABLE_CE_DP_IRQ_AFFINE)
-#else
-#define CFG_ENABLE_CE_DP_IRQ_AFFINE_ALL
-#endif
-
 #define CFG_HDD_ALL \
 	CFG_DYNAMIC_MAC_ADDR_UPDATE_SUPPORTED_ALL \
 	CFG_ENABLE_PACKET_LOG_ALL \
@@ -1356,6 +1328,5 @@ enum host_log_level {
 	CFG(CFG_ENABLE_HOST_MODULE_LOG_LEVEL) \
 	SAR_SAFETY_FEATURE_ALL \
 	CFG_GET_WIFI_FEATURES_ALL \
-	CFG_CPU_CXPC_THRESHOLD_ALL \
-	CFG_ENABLE_CE_DP_IRQ_AFFINE_ALL
+	CFG_CPU_CXPC_THRESHOLD_ALL
 #endif

+ 32 - 3
core/hdd/inc/hdd_dp_cfg.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2020 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-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
@@ -443,7 +443,7 @@
  * gWmiCreditCount - Credit count for WMI exchange
  * @0: Not allowed
  * @1: Serialize WMI commands, 1 command at a time
- * @Default: 2: As advertized by FW
+ * @Default: 2: As advertised by FW
  *
  * This ini is used to serialize the WMI commandsif required.
  *
@@ -479,9 +479,38 @@
 #define CFG_HDD_DP_LEGACY_TX_FLOW
 #endif
 
+#ifdef FEATURE_ENABLE_CE_DP_IRQ_AFFINE
+/*
+ * <ini>
+ * Enable_ce_dp_irq_affine - Enable/disable affinity on datapath CE IRQs
+ *
+ * @Min: 0
+ * @Max: 1
+ * Default: 0
+ *
+ * This ini param is used to enable/disable the affinity on datapath
+ * Copy Engine IRQs.
+ *
+ * Supported Feature: STA/SAP
+ *
+ * Usage: External
+ *
+ * </ini>
+ */
+#define CFG_ENABLE_CE_DP_IRQ_AFFINE CFG_INI_BOOL(\
+			"Enable_ce_dp_irq_affine", \
+			0, \
+			"Enable/disable irq affinity on datapath CEs")
+#define CFG_ENABLE_CE_DP_IRQ_AFFINE_ALL \
+	CFG(CFG_ENABLE_CE_DP_IRQ_AFFINE)
+#else
+#define CFG_ENABLE_CE_DP_IRQ_AFFINE_ALL
+#endif
+
 #define CFG_HDD_DP_ALL \
 	CFG(CFG_DP_NAPI_CE_CPU_MASK) \
 	CFG(CFG_DP_HTC_WMI_CREDIT_CNT) \
 	CFG_MSCS_FEATURE_ALL \
-	CFG_HDD_DP_LEGACY_TX_FLOW
+	CFG_HDD_DP_LEGACY_TX_FLOW \
+	CFG_ENABLE_CE_DP_IRQ_AFFINE_ALL
 #endif