Browse Source

qcacld-3.0: Modify default value for roaming enhancements specific ini

Modify roaming enhancements specific ini default value to work
adaptive 11r and roaming enhancements feature.

Change-Id: I58efd5d8cc50ca1a2b9252c9aad8484cda58ae25
CRs-Fixed: 2521810
Abhinav Kumar 5 years ago
parent
commit
697db312e2

+ 12 - 7
components/mlme/dispatcher/inc/cfg_mlme_btm.h

@@ -72,7 +72,7 @@
  * btm_offload_config - Configure BTM
  * @Min: 0x00000000
  * @Max: 0xFFFFFFFF
- * @Default: 0x00000041
+ * @Default: 0x000001c1
  *
  * This ini is used to configure BTM
  *
@@ -95,7 +95,12 @@
  *
  * BIT 6: Set this to 1 will send BTM query frame and 0 not sent.
  *
- * BIT 7-31: Reserved
+ * BIT 7: Roam BTM candidates based on the roam score instead of BTM preferred
+ * value
+ *
+ * BIT 8: BTM query preference over 11k neighbor report request
+ *
+ * BIT 9-31: Reserved
  *
  * Supported Feature: STA
  *
@@ -107,7 +112,7 @@
 	"btm_offload_config", \
 	0x00000000, \
 	0xffffffff, \
-	0x00000041, \
+	0x000001c1, \
 	CFG_VALUE_OR_DEFAULT, \
 	"configure btm offload")
 
@@ -214,7 +219,7 @@
  * the disassoc imminent
  * @Min: 0
  * @Max: 0xffffffff
- * @Default: 0
+ * @Default: 10000
  *
  * When AP sends, BTM request with disassoc imminent bit set, the STA should
  * roam to a new AP within the disassc timeout provided by the ap. If the Roam
@@ -232,7 +237,7 @@
 			"btm_disassoc_timer_threshold", \
 			0, \
 			0xffffffff, \
-			0, \
+			10000, \
 			CFG_VALUE_OR_DEFAULT, \
 			"BTM disassociation timer threshold")
 
@@ -275,7 +280,7 @@
  * its score is greater than minimum_btm_candidate_score.
  * @Min: 0
  * @Max: 10000
- * @Default: 1800
+ * @Default: 2600
  *
  * This ini is applicable only for candidate selection during BTM roam trigger.
  * For this roam_score_delta_bitmap bit 10 should be set to 1.
@@ -292,7 +297,7 @@
 	"minimum_btm_candidate_score", \
 	0, \
 	10000, \
-	1800, \
+	2600, \
 	CFG_VALUE_OR_DEFAULT, \
 	"Minimum BTM candidate score")
 

+ 8 - 8
components/mlme/dispatcher/inc/cfg_mlme_scoring.h

@@ -135,7 +135,7 @@
  * chan_width_weightage - Channel Width Weightage to calculate best candidate
  * @Min: 0
  * @Max: 100
- * @Default: 17
+ * @Default: 12
  *
  * This ini is used to increase/decrease Channel Width weightage in best
  * candidate selection. AP with Higher channel width will get higher weightage
@@ -152,7 +152,7 @@
 	"chan_width_weightage", \
 	0, \
 	100, \
-	17, \
+	12, \
 	CFG_VALUE_OR_DEFAULT, \
 	"Channel width weightage")
 
@@ -273,7 +273,7 @@
  * calculate best candidate
  * @Min: 0
  * @Max: 100
- * @Default: 5
+ * @Default: 25
  *
  * This ini is used to increase/decrease channel congestion weightage in
  * candidate selection. Congestion is measured with the help of ESP/QBSS load.
@@ -290,7 +290,7 @@
 	"channel_congestion_weightage", \
 	0, \
 	100, \
-	5, \
+	25, \
 	CFG_VALUE_OR_DEFAULT, \
 	"Channel Congestion Weightage")
 
@@ -1140,7 +1140,7 @@
  * idle_roam_score_delta - Roam score delta value in percentage for idle roam.
  * @Min: 0
  * @Max: 100
- * @Default: 10
+ * @Default: 0
  *
  * This ini is used to configure the minimum change in roam score
  * value of the AP to consider it as candidate for
@@ -1159,7 +1159,7 @@
 		"idle_roam_score_delta", \
 		0, \
 		100, \
-		10, \
+		0, \
 		CFG_VALUE_OR_DEFAULT, \
 		"Roam score delta for Idle roam trigger")
 
@@ -1169,7 +1169,7 @@
  * roaming.
  * @Min: 0
  * @Max: 100
- * @Default: 10
+ * @Default: 0
  *
  * This ini is used to configure the minimum change in roam score
  * value of the AP to consider it as candidate when the sta is disconnected
@@ -1189,7 +1189,7 @@
 	"btm_roam_score_delta", \
 	0, \
 	100, \
-	10, \
+	0, \
 	CFG_VALUE_OR_DEFAULT, \
 	"Roam score delta for BTM roam trigger")