cdp_txrx_me.h 3.4 KB

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