소스 검색

qcacld-3.0: Change AFC enable static configure to INI configure

Currently if host enable AFC in WMI INIT CMD, target will trigger AFC
request if current country has AP SP reg rules. We have changed regdb
on specific SP to enable AFC test, to not affect other SP which shares
regdb and FW, introduce INI to control AFC enable/disable for
flexibility.

And because currently no country support AP SP reg rule per spec,
so disable AFC by default.

Change-Id: I0e5eb2dac0a8df01635437fe8353ca5431ae5d2a
CRs-Fixed: 3393896
Will Huang 2 년 전
부모
커밋
e5e71efe2c
2개의 변경된 파일10개의 추가작업 그리고 8개의 파일을 삭제
  1. 6 4
      components/mlme/core/src/wlan_mlme_main.c
  2. 4 4
      components/mlme/dispatcher/inc/cfg_mlme_reg.h

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

@@ -2768,10 +2768,11 @@ static void mlme_init_powersave_params(struct wlan_objmgr_psoc *psoc,
 }
 
 #if defined(CONFIG_AFC_SUPPORT) && defined(CONFIG_BAND_6GHZ)
-static void mlme_init_afc_cfg(struct wlan_mlme_reg *reg)
+static void mlme_init_afc_cfg(struct wlan_objmgr_psoc *psoc,
+			      struct wlan_mlme_reg *reg)
 {
 	reg->enable_6ghz_sp_pwrmode_supp =
-		cfg_default(CFG_6GHZ_SP_POWER_MODE_SUPP);
+		cfg_get(psoc, CFG_6GHZ_SP_POWER_MODE_SUPP);
 	reg->afc_disable_timer_check =
 		cfg_default(CFG_AFC_TIMER_CHECK_DIS);
 	reg->afc_disable_request_id_check =
@@ -2780,7 +2781,8 @@ static void mlme_init_afc_cfg(struct wlan_mlme_reg *reg)
 		cfg_default(CFG_AFC_REG_NO_ACTION);
 }
 #else
-static inline void mlme_init_afc_cfg(struct wlan_mlme_reg *reg)
+static inline void mlme_init_afc_cfg(struct wlan_objmgr_psoc *psoc,
+				     struct wlan_mlme_reg *reg)
 {
 }
 #endif
@@ -2880,7 +2882,7 @@ static void mlme_init_reg_cfg(struct wlan_objmgr_psoc *psoc,
 	reg->enable_nan_on_indoor_channels =
 		cfg_get(psoc, CFG_INDOOR_CHANNEL_SUPPORT_FOR_NAN);
 
-	mlme_init_afc_cfg(reg);
+	mlme_init_afc_cfg(psoc, reg);
 	mlme_init_acs_avoid_freq_list(psoc, reg);
 	mlme_init_coex_unsafe_chan_cfg(psoc, reg);
 	mlme_init_coex_unsafe_chan_reg_disable_cfg(psoc, reg);

+ 4 - 4
components/mlme/dispatcher/inc/cfg_mlme_reg.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-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
@@ -333,7 +333,7 @@
  * enable_6ghz_sp_pwrmode_supp - Enable 6Ghz SP power mode
  * @Min: 0
  * @Max: 1
- * @Default: 1
+ * @Default: 0
  *
  * This cfg is used to control support of 6Ghz SP power mode.
  *
@@ -342,8 +342,8 @@
  * Supported Feature: SAP
  *
  */
-#define CFG_6GHZ_SP_POWER_MODE_SUPP CFG_BOOL( \
-	"enable_6ghz_sp_pwrmode_supp", true, \
+#define CFG_6GHZ_SP_POWER_MODE_SUPP CFG_INI_BOOL( \
+	"enable_6ghz_sp_pwrmode_supp", false, \
 	"Enable support for SP Power mode in 6GHz")
 
 /*