qcacld-3.0: Add iwpriv interface for Motion detection

iwpriv interface is added for configuring Motion detection
feature specific parameters

Added under flag WLAN_FEATURE_MOTION_DETECTION

Change-Id: Ic20c8c43782cf037317f412962fab4a6928eb0b9
CRs-Fixed: 2376722
diff --git a/core/wma/inc/wma.h b/core/wma/inc/wma.h
index 27a99ce..2d4511a 100644
--- a/core/wma/inc/wma.h
+++ b/core/wma/inc/wma.h
@@ -2595,4 +2595,31 @@
  */
 uint8_t *wma_get_igtk(struct wma_txrx_node *iface, uint16_t *key_len);
 
+#ifdef WLAN_FEATURE_MOTION_DETECTION
+/**
+ * wma_motion_det_host_event_handler - motion detection event handler
+ * @handle: WMA global handle
+ * @event: motion detection event
+ * @len: Length of cmd
+ *
+ * Call motion detection event callback handler
+ *
+ * Return: 0 on success, else error on failure
+ */
+
+int wma_motion_det_host_event_handler(void *handle, u_int8_t *event,
+				      u_int32_t len);
+
+/**
+ * wma_motion_det_base_line_host_event_handler - md baselining event handler
+ * @handle: WMA global handle
+ * @event: motion detection baselining event
+ * @len: Length of cmd
+ *
+ * Return: 0 on success, else error on failure
+ */
+int wma_motion_det_base_line_host_event_handler(void *handle, u_int8_t *event,
+						u_int32_t len);
+#endif /* WLAN_FEATURE_MOTION_DETECTION */
+
 #endif