cdp_txrx_me.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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_me.h
  28. * @brief Define the host data path mcast enhance API functions
  29. * called by the host control SW and the OS interface module
  30. */
  31. #ifndef _CDP_TXRX_ME_H_
  32. #define _CDP_TXRX_ME_H_
  33. #include <cdp_txrx_ops.h>
  34. /* TODO: adf need to be replaced with qdf */
  35. #if ATH_SUPPORT_ME_FW_BASED
  36. static inline u_int16_t
  37. cdp_tx_desc_alloc_and_mark_for_mcast_clone(ol_txrx_soc_handle soc,
  38. void *pdev, u_int16_t buf_count)
  39. {
  40. if (soc->ops->me_ops->tx_desc_alloc_and_mark_for_mcast_clone)
  41. return soc->ops->me_ops->
  42. tx_desc_alloc_and_mark_for_mcast_clone
  43. (pdev, buf_count);
  44. return 0;
  45. }
  46. static inline u_int16_t
  47. cdp_tx_desc_free_and_unmark_for_mcast_clone(ol_txrx_soc_handle soc,
  48. void *pdev, u_int16_t buf_count)
  49. {
  50. if (soc->ops->me_ops->tx_desc_free_and_unmark_for_mcast_clone)
  51. return soc->ops->me_ops->
  52. tx_desc_free_and_unmark_for_mcast_clone
  53. (pdev, buf_count);
  54. return 0;
  55. }
  56. static inline u_int16_t
  57. cdp_tx_get_mcast_buf_allocated_marked(ol_txrx_soc_handle soc,
  58. void *pdev)
  59. {
  60. if (soc->ops->me_ops->tx_get_mcast_buf_allocated_marked)
  61. return soc->ops->me_ops->tx_get_mcast_buf_allocated_marked
  62. (pdev);
  63. return 0;
  64. }
  65. #else
  66. static inline void
  67. cdp_tx_me_alloc_descriptor(ol_txrx_soc_handle soc, void *pdev)
  68. {
  69. if (soc->ops->me_ops->tx_me_alloc_descriptor)
  70. return soc->ops->me_ops->tx_me_alloc_descriptor(pdev);
  71. return;
  72. }
  73. static inline void
  74. cdp_tx_me_free_descriptor(ol_txrx_soc_handle soc, void *pdev)
  75. {
  76. if (soc->ops->me_ops->tx_me_free_descriptor)
  77. return soc->ops->me_ops->tx_me_free_descriptor(pdev);
  78. return;
  79. }
  80. static inline uint16_t
  81. cdp_tx_me_convert_ucast(ol_txrx_soc_handle soc, void *vdev,
  82. qdf_nbuf_t wbuf, u_int8_t newmac[][6], uint8_t newmaccnt)
  83. {
  84. if (soc->ops->me_ops->tx_me_convert_ucast)
  85. return soc->ops->me_ops->tx_me_convert_ucast
  86. (vdev, wbuf, newmac, newmaccnt);
  87. return 0;
  88. }
  89. #endif
  90. /* Should be a function pointer in ol_txrx_osif_ops{} */
  91. #if ATH_MCAST_HOST_INSPECT
  92. /**
  93. * @brief notify mcast frame indication from FW.
  94. * @details
  95. * This notification will be used to convert
  96. * multicast frame to unicast.
  97. *
  98. * @param pdev - handle to the ctrl SW's physical device object
  99. * @param vdev_id - ID of the virtual device received the special data
  100. * @param msdu - the multicast msdu returned by FW for host inspect
  101. */
  102. static inline int cdp_mcast_notify(ol_txrx_soc_handle soc, void *pdev,
  103. u_int8_t vdev_id, qdf_nbuf_t msdu)
  104. {
  105. if (soc->ops->me_ops->mcast_notify)
  106. return soc->ops->me_ops->mcast_notify(pdev, vdev_id, msdu);
  107. return 0;
  108. }
  109. #endif
  110. #endif