|
@@ -60,6 +60,14 @@ struct ol_txrx_desc_type {
|
|
|
|
|
|
QDF_STATUS ol_txrx_register_peer(struct ol_txrx_desc_type *sta_desc);
|
|
|
|
|
|
+/**
|
|
|
+ * ol_txrx_vdev_peer_remove_cb - wma_remove_peer callback
|
|
|
+ */
|
|
|
+typedef void (*ol_txrx_vdev_peer_remove_cb)(void *handle, uint8_t *bssid,
|
|
|
+ uint8_t vdev_id,
|
|
|
+ ol_txrx_peer_handle peer,
|
|
|
+ bool roam_synch_in_progress);
|
|
|
+
|
|
|
QDF_STATUS ol_txrx_clear_peer(uint8_t sta_id);
|
|
|
|
|
|
QDF_STATUS ol_txrx_change_peer_state(uint8_t sta_id,
|
|
@@ -103,4 +111,66 @@ void *ol_txrx_get_vdev_by_sta_id(uint8_t sta_id);
|
|
|
QDF_STATUS ol_txrx_register_ocb_peer(void *cds_ctx, uint8_t *mac_addr,
|
|
|
uint8_t *peer_id);
|
|
|
|
|
|
+/**
|
|
|
+ * ol_txrx_peer_get_peer_mac_addr() - return mac_addr from peer handle.
|
|
|
+ * @peer: handle to peer
|
|
|
+ *
|
|
|
+ * returns mac addrs for module which do not know peer type
|
|
|
+ *
|
|
|
+ * Return: the mac_addr from peer
|
|
|
+ */
|
|
|
+uint8_t *ol_txrx_peer_get_peer_mac_addr(ol_txrx_peer_handle peer);
|
|
|
+
|
|
|
+/**
|
|
|
+ * ol_txrx_get_peer_state() - Return peer state of peer
|
|
|
+ * @peer: peer handle
|
|
|
+ *
|
|
|
+ * Return: return peer state
|
|
|
+ */
|
|
|
+int ol_txrx_get_peer_state(ol_txrx_peer_handle peer);
|
|
|
+
|
|
|
+/**
|
|
|
+ * ol_txrx_get_vdev_for_peer() - Return vdev from peer handle
|
|
|
+ * @peer: peer handle
|
|
|
+ *
|
|
|
+ * Return: vdev handle from peer
|
|
|
+ */
|
|
|
+ol_txrx_vdev_handle
|
|
|
+ol_txrx_get_vdev_for_peer(ol_txrx_peer_handle peer);
|
|
|
+
|
|
|
+/**
|
|
|
+ * ol_txrx_update_ibss_add_peer_num_of_vdev() - update and return peer num
|
|
|
+ * @vdev: vdev handle
|
|
|
+ * @peer_num_delta: peer nums to be adjusted
|
|
|
+ *
|
|
|
+ * Return: -1 for failure or total peer nums after adjustment.
|
|
|
+ */
|
|
|
+int16_t
|
|
|
+ol_txrx_update_ibss_add_peer_num_of_vdev(ol_txrx_vdev_handle vdev,
|
|
|
+ int16_t peer_num_delta);
|
|
|
+/**
|
|
|
+ * ol_txrx_remove_peers_for_vdev() - remove all vdev peers with lock held
|
|
|
+ * @vdev: vdev handle
|
|
|
+ * @callback: callback function to remove the peer.
|
|
|
+ * @callback_context: handle for callback function
|
|
|
+ * @remove_last_peer: Does it required to last peer.
|
|
|
+ *
|
|
|
+ * Return: NONE
|
|
|
+ */
|
|
|
+void
|
|
|
+ol_txrx_remove_peers_for_vdev(ol_txrx_vdev_handle vdev,
|
|
|
+ ol_txrx_vdev_peer_remove_cb callback,
|
|
|
+ void *callback_context, bool remove_last_peer);
|
|
|
+/**
|
|
|
+ * ol_txrx_remove_peers_for_vdev_no_lock() - remove vdev peers with no lock.
|
|
|
+ * @vdev: vdev handle
|
|
|
+ * @callback: callback function to remove the peer.
|
|
|
+ * @callback_context: handle for callback function
|
|
|
+ *
|
|
|
+ * Return: NONE
|
|
|
+ */
|
|
|
+void
|
|
|
+ol_txrx_remove_peers_for_vdev_no_lock(ol_txrx_vdev_handle vdev,
|
|
|
+ ol_txrx_vdev_peer_remove_cb callback,
|
|
|
+ void *callback_context);
|
|
|
#endif /* _CDP_TXRX_PEER_H_ */
|