ソースを参照

qcacld-3.0: Make changes to update tsf_id and mac_id

Currently host Sents WMI command to Fw to read tsf_id and mac_id
but in cases where there is change in mac_id after vdev start,
new tsf_id and mac_id is not updated in host to read from correct
scratch register. Which results in reading tsf value from wrong
scratch registers.

To fix the issue Fw will sent the WMI_VDEV_TSF_REPORT_EVENT directly
to host with updated mac_id and tsf_id. Make changes to update
tsf_id and mac_id from the direct event received.

Change-Id: I0b98022d1e91e1c7bcf85853c3f14a36ef0f2f7b
CRs-Fixed: 3334879
Amit Mehta 2 年 前
コミット
b687959634
1 ファイル変更7 行追加6 行削除
  1. 7 6
      core/hdd/src/wlan_hdd_tsf.c

+ 7 - 6
core/hdd/src/wlan_hdd_tsf.c

@@ -586,16 +586,17 @@ static inline int hdd_tsf_reg_is_details_valid(struct hdd_adapter *adapter)
 static inline void
 wlan_hdd_tsf_reg_update_details(struct hdd_adapter *adapter, struct stsf *ptsf)
 {
-	if (!qdf_atomic_read(&adapter->tsf_details_valid)) {
+	if (adapter->tsf_id != ptsf->tsf_id ||
+	    adapter->tsf_mac_id != ptsf->mac_id) {
 		if (ptsf->tsf_id_valid) {
 			adapter->tsf_id = ptsf->tsf_id;
 			adapter->tsf_mac_id = ptsf->mac_id;
 			qdf_atomic_set(&adapter->tsf_details_valid, 1);
 		}
 	}
-	hdd_info("tsf_id %u tsf_id_valid %u mac_id %u mac_id_valid %u",
-		 ptsf->tsf_id, ptsf->tsf_id_valid, ptsf->mac_id,
-		 ptsf->mac_id_valid);
+	hdd_info("vdev_id %u tsf_id %u tsf_id_valid %u mac_id %u",
+		 adapter->vdev_id, ptsf->tsf_id, ptsf->tsf_id_valid,
+		 ptsf->mac_id);
 }
 
 static inline
@@ -3162,6 +3163,8 @@ int hdd_get_tsf_cb(void *pcb_cxt, struct stsf *ptsf)
 	hdd_info("tsf cb handle event, device_mode is %d",
 		adapter->device_mode);
 
+	wlan_hdd_tsf_reg_update_details(adapter, ptsf);
+
 	capture_timer = &adapter->host_capture_req_timer;
 	capture_req_timer_status =
 		qdf_mc_timer_get_current_state(capture_timer);
@@ -3186,8 +3189,6 @@ int hdd_get_tsf_cb(void *pcb_cxt, struct stsf *ptsf)
 	adapter->cur_tsf_sync_soc_time =
 		hdd_convert_qtime_to_us(tsf_sync_soc_time) * NSEC_PER_USEC;
 
-	wlan_hdd_tsf_reg_update_details(adapter, ptsf);
-
 	qdf_event_set(&tsf_sync_get_completion_evt);
 	hdd_update_tsf(adapter, adapter->cur_target_time);
 	hdd_info("Vdev=%u, tsf_low=%u, tsf_high=%u ptsf->soc_timer_low=%u ptsf->soc_timer_high=%u",