|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2012-2020 The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. 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
|
|
@@ -414,6 +414,29 @@
|
|
|
#endif
|
|
|
|
|
|
#ifdef WLAN_FEATURE_DP_BUS_BANDWIDTH
|
|
|
+/*
|
|
|
+ * <ini>
|
|
|
+ * gBusBandwidthSuperHighThreshold - bus bandwidth super high threshold
|
|
|
+ *
|
|
|
+ * @Min: 0
|
|
|
+ * @Max: 4294967295UL
|
|
|
+ * @Default: 22000
|
|
|
+ *
|
|
|
+ * This ini specifies the bus bandwidth super high threshold
|
|
|
+ *
|
|
|
+ * Usage: Internal
|
|
|
+ *
|
|
|
+ * </ini>
|
|
|
+ */
|
|
|
+#define CFG_DP_BUS_BANDWIDTH_SUPER_HIGH_THRESHOLD \
|
|
|
+ CFG_INI_UINT( \
|
|
|
+ "gBusBandwidthSuperHighThreshold", \
|
|
|
+ 0, \
|
|
|
+ 4294967295UL, \
|
|
|
+ 22000, \
|
|
|
+ CFG_VALUE_OR_DEFAULT, \
|
|
|
+ "Bus bandwidth super high threshold")
|
|
|
+
|
|
|
/*
|
|
|
* <ini>
|
|
|
* gBusBandwidthUltraHighThreshold - bus bandwidth ultra high threshold
|
|
@@ -422,7 +445,7 @@
|
|
|
* @Max: 4294967295UL
|
|
|
* @Default: 12000
|
|
|
*
|
|
|
- * This ini specifies the bus bandwidth very high threshold
|
|
|
+ * This ini specifies the bus bandwidth ultra high threshold
|
|
|
*
|
|
|
* Usage: Internal
|
|
|
*
|
|
@@ -1525,6 +1548,7 @@
|
|
|
|
|
|
#ifdef WLAN_FEATURE_DP_BUS_BANDWIDTH
|
|
|
#define CFG_HDD_DP_BUS_BANDWIDTH \
|
|
|
+ CFG(CFG_DP_BUS_BANDWIDTH_SUPER_HIGH_THRESHOLD) \
|
|
|
CFG(CFG_DP_BUS_BANDWIDTH_ULTRA_HIGH_THRESHOLD) \
|
|
|
CFG(CFG_DP_BUS_BANDWIDTH_VERY_HIGH_THRESHOLD) \
|
|
|
CFG(CFG_DP_BUS_BANDWIDTH_DBS_THRESHOLD) \
|