cdp_txrx_flow_ctrl_v2.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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_v2.h
  28. * @brief Define the host data path flow control version 2 API
  29. * functions
  30. */
  31. #ifndef _CDP_TXRX_FC_V2_H_
  32. #define _CDP_TXRX_FC_V2_H_
  33. #include <cdp_txrx_ops.h>
  34. /**
  35. * cdp_register_pause_cb() - Register flow control callback function pointer
  36. * @soc - data path soc handle
  37. * @pause_cb - callback function pointer
  38. *
  39. * Register flow control callback function pointer and client context pointer
  40. *
  41. * return QDF_STATUS_SUCCESS success
  42. */
  43. static inline QDF_STATUS
  44. cdp_register_pause_cb(ol_txrx_soc_handle soc,
  45. ol_tx_pause_callback_fp pause_cb)
  46. {
  47. if (!soc || !soc->ops || !soc->ops->flowctl_ops) {
  48. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  49. "%s invalid instance", __func__);
  50. return QDF_STATUS_E_INVAL;
  51. }
  52. if (soc->ops->flowctl_ops->register_pause_cb)
  53. return soc->ops->flowctl_ops->register_pause_cb(pause_cb);
  54. return QDF_STATUS_SUCCESS;
  55. }
  56. /**
  57. * cdp_set_desc_global_pool_size() - set global device pool size
  58. * @soc - data path soc handle
  59. * @num_msdu_desc - descriptor pool size
  60. *
  61. * set global device pool size
  62. *
  63. * return none
  64. */
  65. static inline void
  66. cdp_set_desc_global_pool_size(ol_txrx_soc_handle soc,
  67. uint32_t num_msdu_desc)
  68. {
  69. if (!soc || !soc->ops || !soc->ops->flowctl_ops) {
  70. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  71. "%s invalid instance", __func__);
  72. return;
  73. }
  74. if (soc->ops->flowctl_ops->set_desc_global_pool_size)
  75. return soc->ops->flowctl_ops->set_desc_global_pool_size(
  76. num_msdu_desc);
  77. return;
  78. }
  79. /**
  80. * cdp_dump_flow_pool_info() - dump flow pool information
  81. * @soc - data path soc handle
  82. *
  83. * dump flow pool information
  84. *
  85. * return none
  86. */
  87. static inline void
  88. cdp_dump_flow_pool_info(ol_txrx_soc_handle soc)
  89. {
  90. if (!soc || !soc->ops || !soc->ops->flowctl_ops) {
  91. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  92. "%s invalid instance", __func__);
  93. return;
  94. }
  95. if (soc->ops->flowctl_ops->dump_flow_pool_info)
  96. return soc->ops->flowctl_ops->dump_flow_pool_info();
  97. return;
  98. }
  99. #endif /* _CDP_TXRX_FC_V2_H_ */