|
@@ -23,4 +23,75 @@
|
|
|
#ifndef _WLAN_NAN_TGT_IF_H_
|
|
|
#define _WLAN_NAN_TGT_IF_H_
|
|
|
|
|
|
+#include "qdf_types.h"
|
|
|
+
|
|
|
+#include <qdf_mem.h>
|
|
|
+#include <qdf_status.h>
|
|
|
+#include <wmi_unified_api.h>
|
|
|
+#include <wmi_unified_priv.h>
|
|
|
+#include <wmi_unified_param.h>
|
|
|
+#include <wlan_objmgr_psoc_obj.h>
|
|
|
+#include <wlan_scan_tgt_api.h>
|
|
|
+#include <target_if.h>
|
|
|
+#include <target_if_scan.h>
|
|
|
+
|
|
|
+struct wlan_objmgr_psoc;
|
|
|
+struct wlan_lmac_if_rx_ops;
|
|
|
+struct wlan_lmac_if_tx_ops;
|
|
|
+struct wlan_lmac_if_nan_rx_ops;
|
|
|
+
|
|
|
+/**
|
|
|
+ * target_if_nan_get_tx_ops() - retrieve the nan tx_ops
|
|
|
+ * @psoc: psoc context
|
|
|
+ *
|
|
|
+ * API to retrieve the nan tx_ops from the psoc context
|
|
|
+ *
|
|
|
+ * Return: nan tx_ops pointer
|
|
|
+ */
|
|
|
+struct wlan_lmac_if_nan_tx_ops *target_if_nan_get_tx_ops(
|
|
|
+ struct wlan_objmgr_psoc *psoc);
|
|
|
+
|
|
|
+/**
|
|
|
+ * target_if_nan_get_rx_ops() - retrieve the nan rx_ops
|
|
|
+ * @psoc: psoc context
|
|
|
+ *
|
|
|
+ * API to retrieve the nan rx_ops from the psoc context
|
|
|
+ *
|
|
|
+ * Return: nan rx_ops pointer
|
|
|
+ */
|
|
|
+struct wlan_lmac_if_nan_rx_ops *target_if_nan_get_rx_ops(
|
|
|
+ struct wlan_objmgr_psoc *psoc);
|
|
|
+
|
|
|
+/**
|
|
|
+ * target_if_nan_register_tx_ops() - registers nan tx ops
|
|
|
+ * @tx_ops: tx ops
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+void target_if_nan_register_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops);
|
|
|
+
|
|
|
+/**
|
|
|
+ * target_if_nan_register_rx_ops() - registers nan rx ops
|
|
|
+ * @tx_ops: rx ops
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+void target_if_nan_register_rx_ops(struct wlan_lmac_if_rx_ops *rx_ops);
|
|
|
+
|
|
|
+/**
|
|
|
+ * target_if_nan_register_events() - registers with NDP events
|
|
|
+ * @psoc: pointer to psoc object
|
|
|
+ *
|
|
|
+ * Return: status of operation
|
|
|
+ */
|
|
|
+QDF_STATUS target_if_nan_register_events(struct wlan_objmgr_psoc *psoc);
|
|
|
+
|
|
|
+/**
|
|
|
+ * target_if_nan_deregister_events() - registers nan rx ops
|
|
|
+ * @psoc: pointer to psoc object
|
|
|
+ *
|
|
|
+ * Return: status of operation
|
|
|
+ */
|
|
|
+QDF_STATUS target_if_nan_deregister_events(struct wlan_objmgr_psoc *psoc);
|
|
|
+
|
|
|
#endif /* _WIFI_POS_TGT_IF_H_ */
|