Jelajahi Sumber

qcacld-3.0: Enable time sync only on connection/roam

Currently WMI_DBGLOG_TIME_STAMP_SYNC_CMDID command sent
every 1 sec causes RTPM collapse and inturn has power
impact. So to avoid this enable time of the day synchronization
only after connection/roaming.

Send WMI_DBGLOG_TIME_STAMP_SYNC_CMDID as part of RSO
start command.

Change-Id: Iee3cefe1318a6e5507a43cefb9666cc2a439fe06
CRs-Fixed: 3060762
Pragaspathi Thilagaraj 3 tahun lalu
induk
melakukan
c304893863

+ 0 - 2
components/mlme/core/src/wlan_mlme_main.c

@@ -400,8 +400,6 @@ static void mlme_init_generic_cfg(struct wlan_objmgr_psoc *psoc,
 	gen->enabled_11d = cfg_get(psoc, CFG_11D_SUPPORT_ENABLED);
 	gen->enable_beacon_reception_stats =
 		cfg_get(psoc, CFG_ENABLE_BEACON_RECEPTION_STATS);
-	gen->enable_remove_time_stamp_sync_cmd =
-		cfg_get(psoc, CFG_REMOVE_TIME_STAMP_SYNC_CMD);
 	gen->disable_4way_hs_offload =
 		cfg_get(psoc, CFG_DISABLE_4WAY_HS_OFFLOAD);
 	gen->mgmt_retry_max = cfg_get(psoc, CFG_MGMT_RETRY_MAX);

+ 0 - 24
components/mlme/dispatcher/inc/cfg_mlme_generic.h

@@ -624,29 +624,6 @@ enum wlan_wds_mode {
 			0, \
 			"Enable disable beacon reception stats")
 
-/*
- * <ini>
- * gRemoveTimeStampSyncCmd - Enable/Disable to remove time stamp sync cmd
- * @Min: 0
- * @Max: 1
- * @Default: 1
- *
- * This ini is used to enable/disable the removal of time stamp sync cmd.
- * If we disable this periodic time sync update to firmware then roaming
- * timestamp updates to kmsg will have invalid timestamp as firmware will
- * use this timestamp to capture when roaming has happened with respect
- * to host timestamp.
- *
- *
- * Usage: External
- *
- * </ini>
- */
-#define CFG_REMOVE_TIME_STAMP_SYNC_CMD CFG_INI_BOOL( \
-	"gRemoveTimeStampSyncCmd", \
-	1, \
-	"Enable to remove time stamp sync cmd")
-
 /*
  * <ini>
  * disable_4way_hs_offload - Enable/Disable 4 way handshake offload to firmware
@@ -924,7 +901,6 @@ enum wlan_wds_mode {
 	CFG(CFG_DROPPED_PKT_DISCONNECT_THRESHOLD) \
 	CFG(CFG_ITO_REPEAT_COUNT) \
 	CFG(CFG_ENABLE_BEACON_RECEPTION_STATS) \
-	CFG(CFG_REMOVE_TIME_STAMP_SYNC_CMD) \
 	CFG(CFG_MGMT_RETRY_MAX) \
 	CFG(CFG_BMISS_SKIP_FULL_SCAN) \
 	CFG(CFG_ENABLE_RING_BUFFER) \

+ 0 - 2
components/mlme/dispatcher/inc/wlan_mlme_public_struct.h

@@ -1300,7 +1300,6 @@ struct dual_sta_policy {
  * @enabled_11h: enable 11h flag
  * @enabled_11d: enable 11d flag
  * @enable_beacon_reception_stats: enable beacon reception stats
- * @enable_remove_time_stamp_sync_cmd: Enable remove time stamp sync cmd
  * @data_stall_recovery_fw_support: whether FW supports Data stall recovery.
  * @enable_change_channel_bandwidth: enable/disable change channel bw in mission
  * mode
@@ -1350,7 +1349,6 @@ struct wlan_mlme_generic {
 	bool enabled_11d;
 	bool enable_deauth_to_disassoc_map;
 	bool enable_beacon_reception_stats;
-	bool enable_remove_time_stamp_sync_cmd;
 	bool data_stall_recovery_fw_support;
 	uint32_t disable_4way_hs_offload;
 	bool as_enabled;

+ 15 - 0
components/target_if/connection_mgr/src/target_if_cm_roam_offload.c

@@ -864,6 +864,19 @@ static QDF_STATUS target_if_cm_roam_offload_chan_list(
 							   rso_chan_info);
 }
 
+/**
+ * target_if_cm_roam_send_time_sync_cmd  - Send time of the day in millisecs
+ * to firmware.
+ * @wmi_handle: WMI handle
+ *
+ * Return: None
+ */
+static void
+target_if_cm_roam_send_time_sync_cmd(wmi_unified_t wmi_handle)
+{
+	return wmi_send_time_stamp_sync_cmd_tlv(wmi_handle);
+}
+
 /**
  * target_if_cm_roam_send_start() - Send roam start related commands
  * to wmi
@@ -887,6 +900,8 @@ target_if_cm_roam_send_start(struct wlan_objmgr_vdev *vdev,
 	if (!wmi_handle)
 		return QDF_STATUS_E_FAILURE;
 
+	target_if_cm_roam_send_time_sync_cmd(wmi_handle);
+
 	status = target_if_cm_roam_scan_offload_rssi_thresh(
 							wmi_handle,
 							&req->rssi_params);

+ 0 - 1
core/wma/inc/wma.h

@@ -1032,7 +1032,6 @@ typedef struct {
 	bool in_imps;
 	bool dynamic_nss_chains_support;
 	uint8_t  ito_repeat_count;
-	qdf_mc_timer_t wma_fw_time_sync_timer;
 	bool fw_therm_throt_support;
 	bool enable_tx_compl_tsf64;
 #ifdef WLAN_FEATURE_11BE

+ 0 - 50
core/wma/src/wma_main.c

@@ -121,8 +121,6 @@
 #define WMA_LOG_COMPLETION_TIMER 3000 /* 3 seconds */
 #define WMI_TLV_HEADROOM 128
 
-#define WMA_FW_TIME_SYNC_TIMER 60000 /* 1 min */
-
 static uint32_t g_fw_wlan_feat_caps;
 /**
  * wma_get_fw_wlan_feat_caps() - get fw feature capablity
@@ -4027,29 +4025,6 @@ fail:
 
 }
 
-/**
- * wma_send_time_stamp_sync_cmd() - timer callback send timestamp to
- * firmware to sync with host.
- * @wma_handle: wma handle
- *
- * Return: void
- */
-static void wma_send_time_stamp_sync_cmd(void *data)
-{
-	tp_wma_handle wma_handle;
-	QDF_STATUS qdf_status;
-
-	wma_handle = (tp_wma_handle) data;
-
-	wmi_send_time_stamp_sync_cmd_tlv(wma_handle->wmi_handle);
-
-	/* Start/Restart the timer */
-	qdf_status = qdf_mc_timer_start(&wma_handle->wma_fw_time_sync_timer,
-				       WMA_FW_TIME_SYNC_TIMER);
-	if (QDF_IS_STATUS_ERROR(qdf_status))
-		wma_err("Failed to start the firmware time sync timer");
-}
-
 #ifdef WLAN_CONV_SPECTRAL_ENABLE
 static void wma_register_spectral_cmds(tp_wma_handle wma_handle)
 {
@@ -4197,22 +4172,6 @@ QDF_STATUS wma_start(void)
 		goto end;
 	}
 
-	if (!mac->mlme_cfg->gen.enable_remove_time_stamp_sync_cmd &&
-	    cds_get_conparam() != QDF_GLOBAL_FTM_MODE) {
-		/* Initialize firmware time stamp sync timer */
-		qdf_status = qdf_mc_timer_init(
-					&wma_handle->wma_fw_time_sync_timer,
-					QDF_TIMER_TYPE_SW,
-					wma_send_time_stamp_sync_cmd,
-					wma_handle);
-		if (QDF_IS_STATUS_ERROR(qdf_status)) {
-			wma_err("Failed to init fw time sync timer");
-			goto end;
-		}
-
-		/* Start firmware time stamp sync timer */
-		wma_send_time_stamp_sync_cmd(wma_handle);
-	}
 	/* Initialize log completion timeout */
 	qdf_status = qdf_mc_timer_init(&wma_handle->log_completion_timer,
 			QDF_TIMER_TYPE_SW,
@@ -4357,15 +4316,6 @@ QDF_STATUS wma_stop(void)
 					  i);
 	}
 
-	if (!mac->mlme_cfg->gen.enable_remove_time_stamp_sync_cmd &&
-	    cds_get_conparam() != QDF_GLOBAL_FTM_MODE) {
-		/* Destroy firmware time stamp sync timer */
-		qdf_status = qdf_mc_timer_destroy(
-				&wma_handle->wma_fw_time_sync_timer);
-		if (QDF_IS_STATUS_ERROR(qdf_status))
-			wma_err("Failed to destroy fw sync timer");
-	}
-
 	qdf_status = wma_tx_detach(wma_handle);
 	if (qdf_status != QDF_STATUS_SUCCESS) {
 		wma_err("Failed to deregister tx management");