cdp_txrx_me.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /*
  2. * Copyright (c) 2016-2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * @file cdp_txrx_me.h
  20. * @brief Define the host data path mcast enhance API functions
  21. * called by the host control SW and the OS interface module
  22. */
  23. #ifndef _CDP_TXRX_ME_H_
  24. #define _CDP_TXRX_ME_H_
  25. #include <cdp_txrx_ops.h>
  26. /* TODO: adf need to be replaced with qdf */
  27. #include "cdp_txrx_handle.h"
  28. static inline u_int16_t
  29. cdp_tx_desc_alloc_and_mark_for_mcast_clone(ol_txrx_soc_handle soc,
  30. struct cdp_pdev *pdev, u_int16_t buf_count)
  31. {
  32. if (!soc || !soc->ops) {
  33. QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
  34. "%s: Invalid Instance", __func__);
  35. QDF_BUG(0);
  36. return 0;
  37. }
  38. if (!soc->ops->me_ops ||
  39. !soc->ops->me_ops->tx_desc_alloc_and_mark_for_mcast_clone)
  40. return 0;
  41. return soc->ops->me_ops->
  42. tx_desc_alloc_and_mark_for_mcast_clone
  43. (pdev, buf_count);
  44. }
  45. static inline u_int16_t
  46. cdp_tx_desc_free_and_unmark_for_mcast_clone(ol_txrx_soc_handle soc,
  47. struct cdp_pdev *pdev, u_int16_t buf_count)
  48. {
  49. if (!soc || !soc->ops) {
  50. QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
  51. "%s: Invalid Instance", __func__);
  52. QDF_BUG(0);
  53. return 0;
  54. }
  55. if (!soc->ops->me_ops ||
  56. !soc->ops->me_ops->tx_desc_free_and_unmark_for_mcast_clone)
  57. return 0;
  58. return soc->ops->me_ops->
  59. tx_desc_free_and_unmark_for_mcast_clone
  60. (pdev, buf_count);
  61. }
  62. static inline u_int16_t
  63. cdp_tx_get_mcast_buf_allocated_marked(ol_txrx_soc_handle soc,
  64. struct cdp_pdev *pdev)
  65. {
  66. if (!soc || !soc->ops) {
  67. QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
  68. "%s: Invalid Instance", __func__);
  69. QDF_BUG(0);
  70. return 0;
  71. }
  72. if (!soc->ops->me_ops ||
  73. !soc->ops->me_ops->tx_get_mcast_buf_allocated_marked)
  74. return 0;
  75. return soc->ops->me_ops->tx_get_mcast_buf_allocated_marked
  76. (pdev);
  77. }
  78. static inline void
  79. cdp_tx_me_alloc_descriptor(ol_txrx_soc_handle soc, struct cdp_pdev *pdev)
  80. {
  81. if (!soc || !soc->ops) {
  82. QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
  83. "%s: Invalid Instance", __func__);
  84. QDF_BUG(0);
  85. return;
  86. }
  87. if (!soc->ops->me_ops ||
  88. !soc->ops->me_ops->tx_me_alloc_descriptor)
  89. return;
  90. soc->ops->me_ops->tx_me_alloc_descriptor(pdev);
  91. }
  92. static inline void
  93. cdp_tx_me_free_descriptor(ol_txrx_soc_handle soc, struct cdp_pdev *pdev)
  94. {
  95. if (!soc || !soc->ops) {
  96. QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
  97. "%s: Invalid Instance", __func__);
  98. QDF_BUG(0);
  99. return;
  100. }
  101. if (!soc->ops->me_ops ||
  102. !soc->ops->me_ops->tx_me_free_descriptor)
  103. return;
  104. soc->ops->me_ops->tx_me_free_descriptor(pdev);
  105. }
  106. static inline uint16_t
  107. cdp_tx_me_convert_ucast(ol_txrx_soc_handle soc, struct cdp_vdev *vdev,
  108. qdf_nbuf_t wbuf, u_int8_t newmac[][6], uint8_t newmaccnt)
  109. {
  110. if (!soc || !soc->ops) {
  111. QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
  112. "%s: Invalid Instance", __func__);
  113. QDF_BUG(0);
  114. return 0;
  115. }
  116. if (!soc->ops->me_ops ||
  117. !soc->ops->me_ops->tx_me_convert_ucast)
  118. return 0;
  119. return soc->ops->me_ops->tx_me_convert_ucast
  120. (vdev, wbuf, newmac, newmaccnt);
  121. }
  122. static inline uint16_t
  123. cdp_tx_me_find_ast_entry(ol_txrx_soc_handle soc, struct cdp_vdev *vdev,
  124. uint8_t *da_mac_addr, uint8_t *ra_mac_addr)
  125. {
  126. if (!soc || !soc->ops) {
  127. QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
  128. "%s: Invalid Instance", __func__);
  129. QDF_BUG(0);
  130. return 0;
  131. }
  132. if (!soc->ops->me_ops ||
  133. !soc->ops->me_ops->tx_me_find_ast_entry)
  134. return 0;
  135. return soc->ops->me_ops->tx_me_find_ast_entry(vdev, da_mac_addr,
  136. ra_mac_addr);
  137. }
  138. /* Should be a function pointer in ol_txrx_osif_ops{} */
  139. /**
  140. * @brief notify mcast frame indication from FW.
  141. * @details
  142. * This notification will be used to convert
  143. * multicast frame to unicast.
  144. *
  145. * @param pdev - handle to the ctrl SW's physical device object
  146. * @param vdev_id - ID of the virtual device received the special data
  147. * @param msdu - the multicast msdu returned by FW for host inspect
  148. */
  149. static inline int cdp_mcast_notify(ol_txrx_soc_handle soc,
  150. struct cdp_pdev *pdev, u_int8_t vdev_id, qdf_nbuf_t msdu)
  151. {
  152. if (!soc || !soc->ops) {
  153. QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
  154. "%s: Invalid Instance", __func__);
  155. QDF_BUG(0);
  156. return 0;
  157. }
  158. if (!soc->ops->me_ops ||
  159. !soc->ops->me_ops->mcast_notify)
  160. return 0;
  161. return soc->ops->me_ops->mcast_notify(pdev, vdev_id, msdu);
  162. }
  163. #endif