cdp_txrx_flow_ctrl_legacy.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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_flow_ctrl_legacy.h
  28. * @brief Define the host data path legacy flow control API
  29. * functions
  30. */
  31. #ifndef _CDP_TXRX_FC_LEG_H_
  32. #define _CDP_TXRX_FC_LEG_H_
  33. #include <cdp_txrx_mob_def.h>
  34. /**
  35. * cdp_fc_register() - Register flow control callback function pointer
  36. * @soc - data path soc handle
  37. * @vdev_id - virtual interface id to register flow control
  38. * @flowControl - callback function pointer
  39. * @osif_fc_ctx - client context pointer
  40. *
  41. * Register flow control callback function pointer and client context pointer
  42. *
  43. * return 0 success
  44. */
  45. static inline int
  46. cdp_fc_register(ol_txrx_soc_handle soc, uint8_t vdev_id,
  47. ol_txrx_tx_flow_control_fp flowControl, void *osif_fc_ctx)
  48. {
  49. if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
  50. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  51. "%s invalid instance", __func__);
  52. return 0;
  53. }
  54. if (soc->ops->l_flowctl_ops->register_tx_flow_control)
  55. return soc->ops->l_flowctl_ops->register_tx_flow_control(
  56. vdev_id, flowControl, osif_fc_ctx);
  57. return 0;
  58. }
  59. /**
  60. * cdp_fc_deregister() - remove flow control instance
  61. * @soc - data path soc handle
  62. * @vdev_id - virtual interface id to register flow control
  63. *
  64. * remove flow control instance
  65. *
  66. * return 0 success
  67. */
  68. static inline int
  69. cdp_fc_deregister(ol_txrx_soc_handle soc, uint8_t vdev_id)
  70. {
  71. if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
  72. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  73. "%s invalid instance", __func__);
  74. return 0;
  75. }
  76. if (soc->ops->l_flowctl_ops->deregister_tx_flow_control_cb)
  77. return soc->ops->l_flowctl_ops->deregister_tx_flow_control_cb(
  78. vdev_id);
  79. return 0;
  80. }
  81. /**
  82. * cdp_fc_get_tx_resource() - get data path resource count
  83. * @soc - data path soc handle
  84. * @sta_id - local peer id
  85. * @low_watermark - low resource threshold
  86. * @high_watermark_offset - high resource threshold
  87. *
  88. * get data path resource count
  89. *
  90. * return true enough data path resource available
  91. * false resource is not avaialbe
  92. */
  93. static inline bool
  94. cdp_fc_get_tx_resource(ol_txrx_soc_handle soc, uint8_t sta_id,
  95. unsigned int low_watermark, unsigned int high_watermark_offset)
  96. {
  97. if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
  98. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  99. "%s invalid instance", __func__);
  100. return false;
  101. }
  102. if (soc->ops->l_flowctl_ops->get_tx_resource)
  103. return soc->ops->l_flowctl_ops->get_tx_resource(sta_id,
  104. low_watermark, high_watermark_offset);
  105. return false;
  106. }
  107. /**
  108. * cdp_fc_ll_set_tx_pause_q_depth() - set pause queue depth
  109. * @soc - data path soc handle
  110. * @vdev_id - virtual interface id to register flow control
  111. * @pause_q_depth - pending tx queue delth
  112. *
  113. * set pause queue depth
  114. *
  115. * return 0 success
  116. */
  117. static inline int
  118. cdp_fc_ll_set_tx_pause_q_depth(ol_txrx_soc_handle soc,
  119. uint8_t vdev_id, int pause_q_depth)
  120. {
  121. if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
  122. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  123. "%s invalid instance", __func__);
  124. return 0;
  125. }
  126. if (soc->ops->l_flowctl_ops->ll_set_tx_pause_q_depth)
  127. return soc->ops->l_flowctl_ops->ll_set_tx_pause_q_depth(vdev_id,
  128. pause_q_depth);
  129. return 0;
  130. }
  131. /**
  132. * cdp_fc_vdev_flush() - flush tx queue
  133. * @soc - data path soc handle
  134. * @vdev - virtual interface context pointer
  135. *
  136. * flush tx queue
  137. *
  138. * return None
  139. */
  140. static inline void
  141. cdp_fc_vdev_flush(ol_txrx_soc_handle soc, void *vdev)
  142. {
  143. if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
  144. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  145. "%s invalid instance", __func__);
  146. return;
  147. }
  148. if (soc->ops->l_flowctl_ops->vdev_flush)
  149. return soc->ops->l_flowctl_ops->vdev_flush(vdev);
  150. return;
  151. }
  152. /**
  153. * cdp_fc_vdev_pause() - pause tx scheduler on vdev
  154. * @soc - data path soc handle
  155. * @vdev - virtual interface context pointer
  156. * @reason - pause reason
  157. *
  158. * pause tx scheduler on vdev
  159. *
  160. * return None
  161. */
  162. static inline void
  163. cdp_fc_vdev_pause(ol_txrx_soc_handle soc, void *vdev,
  164. uint32_t reason)
  165. {
  166. if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
  167. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  168. "%s invalid instance", __func__);
  169. return;
  170. }
  171. if (soc->ops->l_flowctl_ops->vdev_pause)
  172. return soc->ops->l_flowctl_ops->vdev_pause(vdev, reason);
  173. return;
  174. }
  175. /**
  176. * cdp_fc_vdev_unpause() - resume tx scheduler on vdev
  177. * @soc - data path soc handle
  178. * @vdev - virtual interface context pointer
  179. * @reason - pause reason
  180. *
  181. * resume tx scheduler on vdev
  182. *
  183. * return None
  184. */
  185. static inline void
  186. cdp_fc_vdev_unpause(ol_txrx_soc_handle soc, void *vdev,
  187. uint32_t reason)
  188. {
  189. if (!soc || !soc->ops || !soc->ops->l_flowctl_ops) {
  190. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  191. "%s invalid instance", __func__);
  192. return;
  193. }
  194. if (soc->ops->l_flowctl_ops->vdev_unpause)
  195. return soc->ops->l_flowctl_ops->vdev_unpause(vdev, reason);
  196. return;
  197. }
  198. #endif /* _CDP_TXRX_FC_LEG_H_ */