cdp_txrx_host_stats.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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_host_stats.h
  28. * @brief Define the host data path stats API functions
  29. * called by the host control SW and the OS interface module
  30. */
  31. #ifndef _CDP_TXRX_HOST_STATS_H_
  32. #define _CDP_TXRX_HOST_STATS_H_
  33. /* WIN */
  34. /* Need to remove the "req" parameter */
  35. /* Need to rename the function to reflect the functionality "show" / "display"
  36. * WIN -- to figure out whether to change OSIF to converge (not an immediate AI)
  37. * */
  38. static inline int cdp_host_stats_get(ol_txrx_soc_handle soc,
  39. void *vdev,
  40. struct ol_txrx_stats_req *req)
  41. {
  42. if (soc->ops->host_stats_ops->txrx_host_stats_get)
  43. return soc->ops->host_stats_ops->txrx_host_stats_get(vdev, req);
  44. return 0;
  45. }
  46. static inline void
  47. cdp_host_stats_clr(ol_txrx_soc_handle soc, void *vdev)
  48. {
  49. if (soc->ops->host_stats_ops->txrx_host_stats_clr)
  50. return soc->ops->host_stats_ops->txrx_host_stats_clr(vdev);
  51. return;
  52. }
  53. static inline void
  54. cdp_host_ce_stats(ol_txrx_soc_handle soc, void *vdev)
  55. {
  56. if (soc->ops->host_stats_ops->txrx_host_ce_stats)
  57. return soc->ops->host_stats_ops->txrx_host_ce_stats(vdev);
  58. return;
  59. }
  60. static inline int cdp_stats_publish
  61. (ol_txrx_soc_handle soc, void *pdev,
  62. struct ol_txrx_stats *buf)
  63. {
  64. if (soc->ops->host_stats_ops->txrx_stats_publish)
  65. return soc->ops->host_stats_ops->txrx_stats_publish(pdev, buf);
  66. return 0;
  67. }
  68. /**
  69. * @brief Enable enhanced stats functionality.
  70. *
  71. * @param pdev - the physical device object
  72. * @return - void
  73. */
  74. static inline void
  75. cdp_enable_enhanced_stats(ol_txrx_soc_handle soc, void *pdev)
  76. {
  77. if (soc->ops->host_stats_ops->txrx_enable_enhanced_stats)
  78. return soc->ops->host_stats_ops->txrx_enable_enhanced_stats
  79. (pdev);
  80. return;
  81. }
  82. /**
  83. * @brief Disable enhanced stats functionality.
  84. *
  85. * @param pdev - the physical device object
  86. * @return - void
  87. */
  88. static inline void
  89. cdp_disable_enhanced_stats(ol_txrx_soc_handle soc, void *pdev)
  90. {
  91. if (soc->ops->host_stats_ops->txrx_disable_enhanced_stats)
  92. return soc->ops->host_stats_ops->txrx_disable_enhanced_stats
  93. (pdev);
  94. return;
  95. }
  96. /**
  97. * @brief Get the desired stats from the message.
  98. *
  99. * @param pdev - the physical device object
  100. * @param stats_base - stats buffer recieved from FW
  101. * @param type - stats type.
  102. * @return - pointer to requested stat identified by type
  103. */
  104. static inline uint32_t *cdp_get_stats_base
  105. (ol_txrx_soc_handle soc, void *pdev,
  106. uint32_t *stats_base, uint32_t msg_len, uint8_t type)
  107. {
  108. if (soc->ops->host_stats_ops->txrx_get_stats_base)
  109. return (uint32_t *)soc->ops->host_stats_ops->txrx_get_stats_base
  110. (pdev, stats_base, msg_len, type);
  111. return 0;
  112. }
  113. static inline void
  114. cdp_tx_print_tso_stats(ol_txrx_soc_handle soc,
  115. void *vdev)
  116. {
  117. if (soc->ops->host_stats_ops->tx_print_tso_stats)
  118. return soc->ops->host_stats_ops->tx_print_tso_stats(vdev);
  119. return;
  120. }
  121. static inline void
  122. cdp_tx_rst_tso_stats(ol_txrx_soc_handle soc, void *vdev)
  123. {
  124. if (soc->ops->host_stats_ops->tx_rst_tso_stats)
  125. return soc->ops->host_stats_ops->tx_rst_tso_stats(vdev);
  126. return;
  127. }
  128. static inline void
  129. cdp_tx_print_sg_stats(ol_txrx_soc_handle soc,
  130. void *vdev)
  131. {
  132. if (soc->ops->host_stats_ops->tx_print_sg_stats)
  133. return soc->ops->host_stats_ops->tx_print_sg_stats(vdev);
  134. return;
  135. }
  136. static inline void
  137. cdp_tx_rst_sg_stats(ol_txrx_soc_handle soc, void *vdev)
  138. {
  139. if (soc->ops->host_stats_ops->tx_rst_sg_stats)
  140. return soc->ops->host_stats_ops->tx_rst_sg_stats(vdev);
  141. return;
  142. }
  143. static inline void
  144. cdp_print_rx_cksum_stats(ol_txrx_soc_handle soc,
  145. void *vdev)
  146. {
  147. if (soc->ops->host_stats_ops->print_rx_cksum_stats)
  148. return soc->ops->host_stats_ops->print_rx_cksum_stats(vdev);
  149. return;
  150. }
  151. static inline void
  152. cdp_rst_rx_cksum_stats(ol_txrx_soc_handle soc, void *vdev)
  153. {
  154. if (soc->ops->host_stats_ops->rst_rx_cksum_stats)
  155. return soc->ops->host_stats_ops->rst_rx_cksum_stats(vdev);
  156. return;
  157. }
  158. static inline A_STATUS
  159. cdp_host_me_stats(ol_txrx_soc_handle soc, void *vdev)
  160. {
  161. if (soc->ops->host_stats_ops->txrx_host_me_stats)
  162. return soc->ops->host_stats_ops->txrx_host_me_stats(vdev);
  163. return 0;
  164. }
  165. static inline void cdp_per_peer_stats
  166. (ol_txrx_soc_handle soc, void *pdev, char *addr)
  167. {
  168. if (soc->ops->host_stats_ops->txrx_per_peer_stats)
  169. return soc->ops->host_stats_ops->txrx_per_peer_stats
  170. (pdev, addr);
  171. return;
  172. }
  173. static inline int cdp_host_msdu_ttl_stats(ol_txrx_soc_handle soc,
  174. void *vdev,
  175. struct ol_txrx_stats_req *req)
  176. {
  177. if (soc->ops->host_stats_ops->txrx_host_msdu_ttl_stats)
  178. return soc->ops->host_stats_ops->txrx_host_msdu_ttl_stats
  179. (vdev, req);
  180. return 0;
  181. }
  182. static inline void
  183. cdp_print_lro_stats(ol_txrx_soc_handle soc, void *vdev)
  184. {
  185. if (soc->ops->host_stats_ops->print_lro_stats)
  186. return soc->ops->host_stats_ops->print_lro_stats(vdev);
  187. return;
  188. }
  189. static inline void
  190. cdp_reset_lro_stats(ol_txrx_soc_handle soc, void *vdev)
  191. {
  192. if (soc->ops->host_stats_ops->reset_lro_stats)
  193. return soc->ops->host_stats_ops->reset_lro_stats(vdev);
  194. return;
  195. }
  196. /**
  197. * @brief Parse the stats header and get the payload from the message.
  198. *
  199. * @param pdev - the physical device object
  200. * @param msg_word - stats buffer recieved from FW
  201. * @param msg_len - length of the message
  202. * @param type - place holder for parsed message type
  203. * @param status - place holder for parsed message status
  204. * @return - pointer to received stat payload
  205. */
  206. #if ATH_BAND_STEERING || ENHANCED_STATS
  207. uint32_t *ol_txrx_get_en_stats_base(ol_txrx_pdev_handle txrx_pdev, uint32_t *msg_word,
  208. uint32_t msg_len, enum htt_cmn_t2h_en_stats_type *type, enum htt_cmn_t2h_en_stats_status *status);
  209. #endif
  210. #endif /* _CDP_TXRX_HOST_STATS_H_ */