Procházet zdrojové kódy

qcacld-3.0: Do not send baselining start/stop during motion detection

Motion detection baselining can be started during Motion detection
phase which results in false motion detection

Do not send baselining start/stop during Motion detection phase,
to prevent false motion detection

CRs-Fixed: 2556575

Change-Id: I20de48b3d09cf8adec3a3a2d9585ad3754f12a9e
Visweswara Tanuku před 5 roky
rodič
revize
6aca92114d

+ 1 - 0
core/hdd/inc/wlan_hdd_main.h

@@ -1307,6 +1307,7 @@ struct hdd_adapter {
 #ifdef WLAN_FEATURE_MOTION_DETECTION
 	bool motion_detection_mode;
 	bool motion_det_cfg;
+	bool motion_det_in_progress;
 	uint32_t motion_det_baseline_value;
 #endif /* WLAN_FEATURE_MOTION_DETECTION */
 };

+ 4 - 0
core/hdd/src/wlan_hdd_main.c

@@ -12833,6 +12833,10 @@ QDF_STATUS hdd_md_host_evt_cb(void *ctx, struct sir_md_evt *event)
 		return QDF_STATUS_E_INVAL;
 	}
 
+	/* When motion is detected, reset the motion_det_in_progress flag */
+	if (event->status)
+		adapter->motion_det_in_progress = false;
+
 	hdd_debug("Motion Detection CB vdev_id=%u, status=%u",
 		  event->vdev_id, event->status);
 

+ 13 - 1
core/hdd/src/wlan_hdd_wext.c

@@ -5491,8 +5491,14 @@ static int hdd_we_motion_det_start_stop(struct hdd_adapter *adapter, int value)
 	motion_det.vdev_id = adapter->vdev_id;
 	motion_det.enable = value;
 
-	if (!value)
+	if (value) {
+		/* For motion detection start, set motion_det_in_progress */
+		adapter->motion_det_in_progress = true;
+	} else {
+		/* For motion detection stop, reset motion_det_in_progress */
+		adapter->motion_det_in_progress = false;
 		adapter->motion_detection_mode = 0;
+	}
 
 	sme_motion_det_enable(hdd_ctx->mac_handle, &motion_det);
 
@@ -5517,6 +5523,12 @@ static int hdd_we_motion_det_base_line_start_stop(struct hdd_adapter *adapter,
 		return -EINVAL;
 	}
 
+	/* Do not send baselining start/stop during motion detection phase */
+	if (adapter->motion_det_in_progress) {
+		hdd_err("Motion detection still in progress, try later");
+		return -EAGAIN;
+	}
+
 	motion_det_base_line.vdev_id = adapter->vdev_id;
 	motion_det_base_line.enable = value;
 	sme_motion_det_base_line_enable(hdd_ctx->mac_handle,