Browse Source

qcacld-3.0: Use ini to set 5GL+5GH MLSR

Default config
mlo_5gl_5gh_mlsr=0

Disable 5GL+5GH MLS
mlo_5gl_5gh_mlsr=0

Enable 5GL+5GH MLS
mlo_5gl_5gh_mlsr=1

Change-Id: Iefc6944b1e915e021dc20dee64ba60ce06ea273b
CRs-Fixed: 3720188
Aasir Rasheed 1 year ago
parent
commit
e9df705b4b

+ 4 - 1
components/mlme/core/src/wlan_mlme_main.c

@@ -2583,7 +2583,10 @@ static void mlme_init_sta_mlo_cfg(struct wlan_objmgr_psoc *psoc,
 	sta->mlo_same_link_mld_address =
 		cfg_default(CFG_MLO_SAME_LINK_MLD_ADDR);
 	sta->mlo_5gl_5gh_mlsr =
-		cfg_default(CFG_MLO_MLO_5GL_5GH_MLSR);
+		cfg_get(psoc, CFG_MLO_MLO_5GL_5GH_MLSR);
+
+	mlme_debug("mlo_support_link_num: %d, mlo_support_link_band: 0x%x",
+		   sta->mlo_support_link_num, sta->mlo_support_link_band);
 }
 
 static bool

+ 4 - 3
components/mlme/dispatcher/inc/cfg_mlme_sta.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021, The Linux Foundation. All rights reserved.
- * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2024 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 above
@@ -761,7 +761,7 @@
  * </cfg>
  */
 
-#define CFG_MLO_MLO_5GL_5GH_MLSR CFG_BOOL( \
+#define CFG_MLO_MLO_5GL_5GH_MLSR CFG_INI_BOOL( \
 		"mlo_5gl_5gh_mlsr",\
 		0, \
 		"enable 5GL+5GH MLSR")
@@ -797,5 +797,6 @@
 	CFG_MLO_SUPPORT_LINK_BAND_CFG \
 	CFG_MLO_PREFER_PERCENTAGE_CFG \
 	CFG_MLO_SAME_LINK_MLD_ADDR_CFG \
-	CFG_EHT_DISABLE_PUNCT_IN_US_LPI_CFG
+	CFG_EHT_DISABLE_PUNCT_IN_US_LPI_CFG \
+	CFG_MLO_MLO_5GL_5GH_MLSR_CFG
 #endif /* CFG_MLME_STA_H__ */