cdp_txrx_tx_delay.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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_tx_delay.h
  28. * @brief Define the host data path histogram API functions
  29. * called by the host control SW and the OS interface module
  30. */
  31. #ifndef _CDP_TXRX_COMPUTE_TX_DELAY_H_
  32. #define _CDP_TXRX_COMPUTE_TX_DELAY_H_
  33. /**
  34. * cdp_tx_delay() - get tx packet delay
  35. * @soc: data path soc handle
  36. * @pdev: physical device instance
  37. * @queue_delay_microsec: tx packet delay within queue, usec
  38. * @tx_delay_microsec: tx packet delay, usec
  39. * @category: packet catagory
  40. *
  41. * Return: NONE
  42. */
  43. static inline void
  44. cdp_tx_delay(ol_txrx_soc_handle soc, void *pdev,
  45. uint32_t *queue_delay_microsec, uint32_t *tx_delay_microsec,
  46. int category)
  47. {
  48. if (!soc || !soc->ops || !soc->ops->delay_ops) {
  49. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  50. "%s invalid instance", __func__);
  51. return;
  52. }
  53. if (soc->ops->delay_ops->tx_delay)
  54. return soc->ops->delay_ops->tx_delay(pdev,
  55. queue_delay_microsec, tx_delay_microsec, category);
  56. return;
  57. }
  58. /**
  59. * cdp_tx_delay_hist() - get tx packet delay histogram
  60. * @soc: data path soc handle
  61. * @pdev: physical device instance
  62. * @bin_values: bin
  63. * @category: packet catagory
  64. *
  65. * Return: NONE
  66. */
  67. static inline void
  68. cdp_tx_delay_hist(ol_txrx_soc_handle soc, void *pdev,
  69. uint16_t *bin_values, int category)
  70. {
  71. if (!soc || !soc->ops || !soc->ops->delay_ops) {
  72. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  73. "%s invalid instance", __func__);
  74. return;
  75. }
  76. if (soc->ops->delay_ops->tx_delay_hist)
  77. return soc->ops->delay_ops->tx_delay_hist(pdev,
  78. bin_values, category);
  79. return;
  80. }
  81. /**
  82. * cdp_tx_packet_count() - get tx packet count
  83. * @soc: data path soc handle
  84. * @pdev: physical device instance
  85. * @out_packet_loss_count: packet loss count
  86. * @category: packet catagory
  87. *
  88. * Return: NONE
  89. */
  90. static inline void
  91. cdp_tx_packet_count(ol_txrx_soc_handle soc, void *pdev,
  92. uint16_t *out_packet_count, uint16_t *out_packet_loss_count,
  93. int category)
  94. {
  95. if (!soc || !soc->ops || !soc->ops->delay_ops) {
  96. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  97. "%s invalid instance", __func__);
  98. return;
  99. }
  100. if (soc->ops->delay_ops->tx_packet_count)
  101. return soc->ops->delay_ops->tx_packet_count(pdev,
  102. out_packet_count, out_packet_loss_count, category);
  103. return;
  104. }
  105. /**
  106. * cdp_tx_set_compute_interval() - set tx packet stat compute interval
  107. * @soc: data path soc handle
  108. * @pdev: physical device instance
  109. * @interval: compute interval
  110. *
  111. * Return: NONE
  112. */
  113. static inline void
  114. cdp_tx_set_compute_interval(ol_txrx_soc_handle soc, void *pdev,
  115. uint32_t interval)
  116. {
  117. if (!soc || !soc->ops || !soc->ops->delay_ops) {
  118. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  119. "%s invalid instance", __func__);
  120. return;
  121. }
  122. if (soc->ops->delay_ops->tx_set_compute_interval)
  123. return soc->ops->delay_ops->tx_set_compute_interval(pdev,
  124. interval);
  125. return;
  126. }
  127. #endif /* _CDP_TXRX_COMPUTE_TX_DELAY_H_ */