소스 검색

qcacld-3.0: Remove INI parameter gEnableLPRx

As part of WiFi ini clean-up FR, the ini parameter gEnableLPRx,
is identified as it is no longer used. Hence it can be deprecated,
and all instances of the config CFG_LPRx is removed.

Change-Id: I77f8f6839534c9a79cb3c7414582a5f31b87c561
CRs-Fixed: 2896027
Aditya Kodukula 4 년 전
부모
커밋
edfbff8b2a

+ 0 - 2
components/fw_offload/core/inc/wlan_fw_offload_main.h

@@ -206,7 +206,6 @@ struct wlan_fwol_neighbor_report_cfg {
  * @tsf_irq_host_gpio_pin: TSF GPIO Pin config
  * @tsf_sync_host_gpio_pin: TSF Sync GPIO Pin config
  * @tsf_ptp_options: TSF Plus feature options config
- * @lprx_enable: LPRx feature enable config
  * @sae_enable: SAE feature enable config
  * @gcmp_enable: GCMP feature enable config
  * @enable_tx_sch_delay: Enable TX SCH delay value config
@@ -257,7 +256,6 @@ struct wlan_fwol_cfg {
 #endif
 #endif
 #endif
-	bool lprx_enable;
 #ifdef WLAN_FEATURE_SAE
 	bool sae_enable;
 #endif

+ 0 - 1
components/fw_offload/core/src/wlan_fw_offload_main.c

@@ -598,7 +598,6 @@ QDF_STATUS fwol_cfg_on_psoc_enable(struct wlan_objmgr_psoc *psoc)
 				(uint8_t)enable_fw_wow_mod_log_level_num;
 	ucfg_fwol_init_tsf_ptp_options(psoc, fwol_cfg);
 	ucfg_fwol_init_sae_cfg(psoc, fwol_cfg);
-	fwol_cfg->lprx_enable = cfg_get(psoc, CFG_LPRX);
 	fwol_cfg->gcmp_enable = cfg_get(psoc, CFG_ENABLE_GCMP);
 	fwol_cfg->enable_tx_sch_delay = cfg_get(psoc, CFG_TX_SCH_DELAY);
 	fwol_cfg->enable_secondary_rate = cfg_get(psoc,

+ 0 - 20
components/fw_offload/dispatcher/inc/cfg_fwol_generic.h

@@ -625,25 +625,6 @@
 #define CFG_FWOL_DHCP
 #endif
 
-/*
- * <ini>
- * gEnableLPRx - Enable/Disable LPRx
- * @Min: 0
- * @Max: 1
- * @Default: 1
- *
- * This ini Enables or disables the LPRx in FW
- *
- * Usage: External
- *
- * </ini>
- */
-
-#define CFG_LPRX CFG_INI_BOOL( \
-		"gEnableLPRx", \
-		1, \
-		"LPRx control")
-
 #ifdef WLAN_FEATURE_SAE
 /*
  * <ini>
@@ -886,7 +867,6 @@
 	__CFG_SET_TSF_IRQ_HOST_GPIO_PIN \
 	__CFG_SET_TSF_SYNC_HOST_GPIO_PIN \
 	__CFG_SET_TSF_PTP_OPT \
-	CFG(CFG_LPRX) \
 	__CFG_IS_SAE_ENABLED \
 	CFG(CFG_ENABLE_GCMP) \
 	CFG(CFG_TX_SCH_DELAY) \

+ 0 - 16
components/fw_offload/dispatcher/inc/wlan_fwol_ucfg_api.h

@@ -454,15 +454,6 @@ QDF_STATUS ucfg_fwol_get_dhcp_max_num_clients(struct wlan_objmgr_psoc *psoc,
  */
 QDF_STATUS ucfg_fwol_get_tsf_ptp_options(struct wlan_objmgr_psoc *psoc,
 					 uint32_t *tsf_ptp_options);
-/**
- * ucfg_fwol_get_lprx_enable() - Get LPRx feature enable status
- * @psoc: pointer to the psoc object
- * @lprx_enable: Pointer to return LPRX feature enable status
- *
- * Return: QDF Status
- */
-QDF_STATUS ucfg_fwol_get_lprx_enable(struct wlan_objmgr_psoc *psoc,
-				     bool *lprx_enable);
 
 /**
  * ucfg_fwol_get_sae_enable() - Get SAE feature enable status
@@ -887,13 +878,6 @@ ucfg_fwol_get_tsf_ptp_options(struct wlan_objmgr_psoc *psoc,
 	return QDF_STATUS_E_FAILURE;
 }
 
-static inline QDF_STATUS
-ucfg_fwol_get_lprx_enable(struct wlan_objmgr_psoc *psoc,
-			  bool *lprx_enable)
-{
-	return QDF_STATUS_E_FAILURE;
-}
-
 static inline bool ucfg_fwol_get_sae_enable(struct wlan_objmgr_psoc *psoc)
 {
 	return false;

+ 0 - 16
components/fw_offload/dispatcher/src/wlan_fwol_ucfg_api.c

@@ -742,22 +742,6 @@ QDF_STATUS ucfg_fwol_get_tsf_ptp_options(struct wlan_objmgr_psoc *psoc,
 
 #endif
 
-QDF_STATUS ucfg_fwol_get_lprx_enable(struct wlan_objmgr_psoc *psoc,
-				     bool *lprx_enable)
-{
-	struct wlan_fwol_psoc_obj *fwol_obj;
-
-	fwol_obj = fwol_get_psoc_obj(psoc);
-	if (!fwol_obj) {
-		fwol_err("Failed to get FWOL obj");
-		*lprx_enable = cfg_default(CFG_LPRX);
-		return QDF_STATUS_E_FAILURE;
-	}
-
-	*lprx_enable = fwol_obj->cfg.lprx_enable;
-	return QDF_STATUS_SUCCESS;
-}
-
 #ifdef WLAN_FEATURE_SAE
 bool ucfg_fwol_get_sae_enable(struct wlan_objmgr_psoc *psoc)
 {

+ 8 - 7
core/hdd/src/wlan_hdd_main.c

@@ -6361,6 +6361,7 @@ int hdd_set_fw_params(struct hdd_adapter *adapter)
 	bool enable_dtim_1chrx;
 	QDF_STATUS status;
 	struct hdd_context *hdd_ctx;
+	bool is_lprx_enabled;
 	bool bval = false;
 	uint8_t enable_tx_sch_delay, dfs_chan_ageout_time;
 	uint32_t dtim_sel_diversity, enable_secondary_rate;
@@ -6377,13 +6378,13 @@ int hdd_set_fw_params(struct hdd_adapter *adapter)
 		return 0;
 	}
 
-	ret = -1;
-	if (QDF_IS_STATUS_SUCCESS(ucfg_fwol_get_lprx_enable(hdd_ctx->psoc,
-							    &bval))) {
-		ret = sme_cli_set_command(adapter->vdev_id,
-					  WMI_PDEV_PARAM_DTIM_SYNTH,
-					  bval, PDEV_CMD);
-	}
+	/* The ini gEnableLPRx is deprecated. By default, the ini
+	 * is enabled. So, making the variable is_lprx_enabled true.
+	 */
+	is_lprx_enabled = true;
+	ret = sme_cli_set_command(adapter->vdev_id,
+				  WMI_PDEV_PARAM_DTIM_SYNTH,
+				  is_lprx_enabled, PDEV_CMD);
 	if (ret) {
 		hdd_err("Failed to set LPRx");
 		goto error;