cdp_txrx_peer_ops.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Copyright (c) 2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /**
  27. * @file cdp_txrx_peer.h
  28. * @brief Define the host data path peer API functions
  29. * called by the host control SW and the OS interface module
  30. */
  31. #ifndef _CDP_TXRX_PEER_H_
  32. #define _CDP_TXRX_PEER_H_
  33. typedef QDF_STATUS (*ol_rx_callback_fp)(void *p_cds_gctx,
  34. qdf_nbuf_t pDataBuff,
  35. uint8_t ucSTAId);
  36. /**
  37. * struct ol_txrx_peer_state - Peer state information
  38. */
  39. enum ol_txrx_peer_state {
  40. OL_TXRX_PEER_STATE_INVALID,
  41. OL_TXRX_PEER_STATE_DISC, /* initial state */
  42. OL_TXRX_PEER_STATE_CONN, /* authentication in progress */
  43. OL_TXRX_PEER_STATE_AUTH, /* authentication successful */
  44. };
  45. /**
  46. * struct ol_txrx_desc_type - txrx descriptor type
  47. * @sta_id: sta id
  48. * @is_qos_enabled: is station qos enabled
  49. * @is_wapi_supported: is station wapi supported
  50. */
  51. struct ol_txrx_desc_type {
  52. uint8_t sta_id;
  53. uint8_t is_qos_enabled;
  54. uint8_t is_wapi_supported;
  55. };
  56. QDF_STATUS ol_txrx_register_peer(struct ol_txrx_desc_type *sta_desc);
  57. /**
  58. * ol_txrx_vdev_peer_remove_cb - wma_remove_peer callback
  59. */
  60. typedef void (*ol_txrx_vdev_peer_remove_cb)(void *handle, uint8_t *bssid,
  61. uint8_t vdev_id,
  62. ol_txrx_peer_handle peer,
  63. bool roam_synch_in_progress);
  64. QDF_STATUS ol_txrx_clear_peer(uint8_t sta_id);
  65. QDF_STATUS ol_txrx_change_peer_state(uint8_t sta_id,
  66. enum ol_txrx_peer_state sta_state,
  67. bool roam_synch_in_progress);
  68. ol_txrx_peer_handle ol_txrx_find_peer_by_addr(ol_txrx_pdev_handle pdev,
  69. uint8_t *peer_addr,
  70. uint8_t *peer_id);
  71. ol_txrx_peer_handle
  72. ol_txrx_find_peer_by_addr_and_vdev(ol_txrx_pdev_handle pdev,
  73. ol_txrx_vdev_handle vdev,
  74. uint8_t *peer_addr, uint8_t *peer_id);
  75. #ifdef QCA_SUPPORT_TXRX_LOCAL_PEER_ID
  76. uint16_t ol_txrx_local_peer_id(ol_txrx_peer_handle peer);
  77. ol_txrx_peer_handle ol_txrx_find_peer_by_addr(ol_txrx_pdev_handle pdev,
  78. uint8_t *peer_addr,
  79. uint8_t *peer_id);
  80. ol_txrx_peer_handle
  81. ol_txrx_find_peer_by_addr_and_vdev(ol_txrx_pdev_handle pdev,
  82. ol_txrx_vdev_handle vdev,
  83. uint8_t *peer_addr, uint8_t *peer_id);
  84. ol_txrx_peer_handle
  85. ol_txrx_peer_find_by_local_id(ol_txrx_pdev_handle pdev, uint8_t local_peer_id);
  86. #else
  87. #define ol_txrx_local_peer_id(peer) OL_TXRX_INVALID_LOCAL_PEER_ID
  88. #define ol_txrx_find_peer_by_addr(pdev, peer_addr, peer_id) NULL
  89. #define ol_txrx_find_peer_by_addr_and_vdev(pdev, vdev, peer_addr, peer_id) NULL
  90. #define ol_txrx_peer_find_by_local_id(pdev, local_peer_id) NULL
  91. #endif /* QCA_SUPPORT_TXRX_LOCAL_PEER_ID */
  92. QDF_STATUS
  93. ol_txrx_peer_state_update(ol_txrx_pdev_handle pdev, uint8_t *peer_addr,
  94. enum ol_txrx_peer_state state);
  95. QDF_STATUS ol_txrx_get_vdevid(struct ol_txrx_peer_t *peer, uint8_t *vdev_id);
  96. void *ol_txrx_get_vdev_by_sta_id(uint8_t sta_id);
  97. QDF_STATUS ol_txrx_register_ocb_peer(void *cds_ctx, uint8_t *mac_addr,
  98. uint8_t *peer_id);
  99. /**
  100. * ol_txrx_peer_get_peer_mac_addr() - return mac_addr from peer handle.
  101. * @peer: handle to peer
  102. *
  103. * returns mac addrs for module which do not know peer type
  104. *
  105. * Return: the mac_addr from peer
  106. */
  107. uint8_t *ol_txrx_peer_get_peer_mac_addr(ol_txrx_peer_handle peer);
  108. /**
  109. * ol_txrx_get_peer_state() - Return peer state of peer
  110. * @peer: peer handle
  111. *
  112. * Return: return peer state
  113. */
  114. int ol_txrx_get_peer_state(ol_txrx_peer_handle peer);
  115. /**
  116. * ol_txrx_get_vdev_for_peer() - Return vdev from peer handle
  117. * @peer: peer handle
  118. *
  119. * Return: vdev handle from peer
  120. */
  121. ol_txrx_vdev_handle
  122. ol_txrx_get_vdev_for_peer(ol_txrx_peer_handle peer);
  123. /**
  124. * ol_txrx_update_ibss_add_peer_num_of_vdev() - update and return peer num
  125. * @vdev: vdev handle
  126. * @peer_num_delta: peer nums to be adjusted
  127. *
  128. * Return: -1 for failure or total peer nums after adjustment.
  129. */
  130. int16_t
  131. ol_txrx_update_ibss_add_peer_num_of_vdev(ol_txrx_vdev_handle vdev,
  132. int16_t peer_num_delta);
  133. /**
  134. * ol_txrx_remove_peers_for_vdev() - remove all vdev peers with lock held
  135. * @vdev: vdev handle
  136. * @callback: callback function to remove the peer.
  137. * @callback_context: handle for callback function
  138. * @remove_last_peer: Does it required to last peer.
  139. *
  140. * Return: NONE
  141. */
  142. void
  143. ol_txrx_remove_peers_for_vdev(ol_txrx_vdev_handle vdev,
  144. ol_txrx_vdev_peer_remove_cb callback,
  145. void *callback_context, bool remove_last_peer);
  146. /**
  147. * ol_txrx_remove_peers_for_vdev_no_lock() - remove vdev peers with no lock.
  148. * @vdev: vdev handle
  149. * @callback: callback function to remove the peer.
  150. * @callback_context: handle for callback function
  151. *
  152. * Return: NONE
  153. */
  154. void
  155. ol_txrx_remove_peers_for_vdev_no_lock(ol_txrx_vdev_handle vdev,
  156. ol_txrx_vdev_peer_remove_cb callback,
  157. void *callback_context);
  158. #endif /* _CDP_TXRX_PEER_H_ */