cdp_txrx_host_stats.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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. #if WLAN_FEATURE_FASTPATH
  39. static inline int cdp_host_stats_get(ol_txrx_soc_handle soc,
  40. void *vdev,
  41. struct ol_txrx_stats_req *req)
  42. {
  43. if (soc->ops->host_stats_ops->txrx_host_stats_get)
  44. return soc->ops->host_stats_ops->txrx_host_stats_get(vdev, req);
  45. return 0;
  46. }
  47. static inline void
  48. cdp_host_stats_clr(ol_txrx_soc_handle soc, void *vdev)
  49. {
  50. if (soc->ops->host_stats_ops->txrx_host_stats_clr)
  51. return soc->ops->host_stats_ops->txrx_host_stats_clr(vdev);
  52. return;
  53. }
  54. static inline void
  55. cdp_host_ce_stats(ol_txrx_soc_handle soc, void *vdev)
  56. {
  57. if (soc->ops->host_stats_ops->txrx_host_ce_stats)
  58. return soc->ops->host_stats_ops->txrx_host_ce_stats(vdev);
  59. return;
  60. }
  61. static inline int cdp_stats_publish
  62. (ol_txrx_soc_handle soc, void *pdev,
  63. struct ol_txrx_stats *buf)
  64. {
  65. if (soc->ops->host_stats_ops->txrx_stats_publish)
  66. return soc->ops->host_stats_ops->txrx_stats_publish(pdev, buf);
  67. return 0;
  68. }
  69. /**
  70. * @brief Enable enhanced stats functionality.
  71. *
  72. * @param pdev - the physical device object
  73. * @return - void
  74. */
  75. static inline void
  76. cdp_enable_enhanced_stats(ol_txrx_soc_handle soc, void *pdev)
  77. {
  78. if (soc->ops->host_stats_ops->txrx_enable_enhanced_stats)
  79. return soc->ops->host_stats_ops->txrx_enable_enhanced_stats
  80. (pdev);
  81. return;
  82. }
  83. /**
  84. * @brief Disable enhanced stats functionality.
  85. *
  86. * @param pdev - the physical device object
  87. * @return - void
  88. */
  89. static inline void
  90. cdp_disable_enhanced_stats(ol_txrx_soc_handle soc, void *pdev)
  91. {
  92. if (soc->ops->host_stats_ops->txrx_disable_enhanced_stats)
  93. return soc->ops->host_stats_ops->txrx_disable_enhanced_stats
  94. (pdev);
  95. return;
  96. }
  97. #if ENHANCED_STATS
  98. /**
  99. * @brief Get the desired stats from the message.
  100. *
  101. * @param pdev - the physical device object
  102. * @param stats_base - stats buffer recieved from FW
  103. * @param type - stats type.
  104. * @return - pointer to requested stat identified by type
  105. */
  106. static inline uint32_t *cdp_get_stats_base
  107. (ol_txrx_soc_handle soc, void *pdev,
  108. uint32_t *stats_base, uint32_t msg_len, uint8_t type)
  109. {
  110. if (soc->ops->host_stats_ops->txrx_get_stats_base)
  111. return (uint32_t *)soc->ops->host_stats_ops->txrx_get_stats_base
  112. (pdev, stats_base, msg_len, type);
  113. return 0;
  114. }
  115. #endif
  116. #endif /* WLAN_FEATURE_FASTPATH*/
  117. #if (HOST_SW_TSO_ENABLE || HOST_SW_TSO_SG_ENABLE)
  118. static inline void
  119. cdp_tx_print_tso_stats(ol_txrx_soc_handle soc,
  120. void *vdev)
  121. {
  122. if (soc->ops->host_stats_ops->tx_print_tso_stats)
  123. return soc->ops->host_stats_ops->tx_print_tso_stats(vdev);
  124. return;
  125. }
  126. static inline void
  127. cdp_tx_rst_tso_stats(ol_txrx_soc_handle soc, void *vdev)
  128. {
  129. if (soc->ops->host_stats_ops->tx_rst_tso_stats)
  130. return soc->ops->host_stats_ops->tx_rst_tso_stats(vdev);
  131. return;
  132. }
  133. #endif /* HOST_SW_TSO_ENABLE || HOST_SW_TSO_SG_ENABLE */
  134. #if HOST_SW_SG_ENABLE
  135. static inline void
  136. cdp_tx_print_sg_stats(ol_txrx_soc_handle soc,
  137. void *vdev)
  138. {
  139. if (soc->ops->host_stats_ops->tx_print_sg_stats)
  140. return soc->ops->host_stats_ops->tx_print_sg_stats(vdev);
  141. return;
  142. }
  143. static inline void
  144. cdp_tx_rst_sg_stats(ol_txrx_soc_handle soc, void *vdev)
  145. {
  146. if (soc->ops->host_stats_ops->tx_rst_sg_stats)
  147. return soc->ops->host_stats_ops->tx_rst_sg_stats(vdev);
  148. return;
  149. }
  150. #endif /* HOST_SW_SG_ENABLE */
  151. #if RX_CHECKSUM_OFFLOAD
  152. static inline void
  153. cdp_print_rx_cksum_stats(ol_txrx_soc_handle soc,
  154. void *vdev)
  155. {
  156. if (soc->ops->host_stats_ops->print_rx_cksum_stats)
  157. return soc->ops->host_stats_ops->print_rx_cksum_stats(vdev);
  158. return;
  159. }
  160. static inline void
  161. cdp_rst_rx_cksum_stats(ol_txrx_soc_handle soc, void *vdev)
  162. {
  163. if (soc->ops->host_stats_ops->rst_rx_cksum_stats)
  164. return soc->ops->host_stats_ops->rst_rx_cksum_stats(vdev);
  165. return;
  166. }
  167. #endif /* RX_CHECKSUM_OFFLOAD */
  168. #if (ATH_SUPPORT_IQUE && WLAN_FEATURE_FASTPATH)
  169. static inline A_STATUS
  170. cdp_host_me_stats(ol_txrx_soc_handle soc, void *vdev)
  171. {
  172. if (soc->ops->host_stats_ops->txrx_host_me_stats)
  173. return soc->ops->host_stats_ops->txrx_host_me_stats(vdev);
  174. return 0;
  175. }
  176. #endif /* WLAN_FEATURE_FASTPATH */
  177. #if PEER_FLOW_CONTROL
  178. static inline void cdp_per_peer_stats
  179. (ol_txrx_soc_handle soc, void *pdev, char *addr)
  180. {
  181. if (soc->ops->host_stats_ops->txrx_per_peer_stats)
  182. return soc->ops->host_stats_ops->txrx_per_peer_stats
  183. (pdev, addr);
  184. return;
  185. }
  186. #endif
  187. #if WLAN_FEATURE_FASTPATH && PEER_FLOW_CONTROL
  188. static inline int cdp_host_msdu_ttl_stats(ol_txrx_soc_handle soc,
  189. void *vdev,
  190. struct ol_txrx_stats_req *req)
  191. {
  192. if (soc->ops->host_stats_ops->txrx_host_msdu_ttl_stats)
  193. return soc->ops->host_stats_ops->txrx_host_msdu_ttl_stats
  194. (vdev, req);
  195. return 0;
  196. }
  197. #endif
  198. #if HOST_SW_LRO_ENABLE
  199. static inline void
  200. cdp_print_lro_stats(ol_txrx_soc_handle soc, void *vdev)
  201. {
  202. if (soc->ops->host_stats_ops->print_lro_stats)
  203. return soc->ops->host_stats_ops->print_lro_stats(vdev);
  204. return;
  205. }
  206. static inline void
  207. cdp_reset_lro_stats(ol_txrx_soc_handle soc, void *vdev)
  208. {
  209. if (soc->ops->host_stats_ops->reset_lro_stats)
  210. return soc->ops->host_stats_ops->reset_lro_stats(vdev);
  211. return;
  212. }
  213. #endif /* HOST_SW_LRO_ENABLE */
  214. /**
  215. * @brief Parse the stats header and get the payload from the message.
  216. *
  217. * @param pdev - the physical device object
  218. * @param msg_word - stats buffer recieved from FW
  219. * @param msg_len - length of the message
  220. * @param type - place holder for parsed message type
  221. * @param status - place holder for parsed message status
  222. * @return - pointer to received stat payload
  223. */
  224. #if ATH_BAND_STEERING || ENHANCED_STATS
  225. uint32_t *ol_txrx_get_en_stats_base(ol_txrx_pdev_handle txrx_pdev, uint32_t *msg_word,
  226. uint32_t msg_len, enum htt_t2h_en_stats_type *type, enum htt_t2h_en_stats_status *status);
  227. #endif
  228. #endif /* _CDP_TXRX_HOST_STATS_H_ */