cdp_txrx_host_stats.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. #include <cdp_txrx_stats_struct.h>
  34. /* WIN */
  35. /* Need to remove the "req" parameter */
  36. /* Need to rename the function to reflect the functionality "show" / "display"
  37. * WIN -- to figure out whether to change OSIF to converge (not an immediate AI)
  38. * */
  39. #if WLAN_FEATURE_FASTPATH
  40. int ol_txrx_host_stats_get(
  41. ol_txrx_vdev_handle vdev,
  42. struct ol_txrx_stats_req *req);
  43. void
  44. ol_txrx_host_stats_clr(ol_txrx_vdev_handle vdev);
  45. void
  46. ol_txrx_host_ce_stats(ol_txrx_vdev_handle vdev);
  47. int
  48. ol_txrx_stats_publish(ol_txrx_pdev_handle pdev, struct ol_txrx_stats *buf);
  49. /**
  50. * @brief Enable enhanced stats functionality.
  51. *
  52. * @param pdev - the physical device object
  53. * @return - void
  54. */
  55. void
  56. ol_txrx_enable_enhanced_stats(ol_txrx_pdev_handle pdev);
  57. /**
  58. * @brief Disable enhanced stats functionality.
  59. *
  60. * @param pdev - the physical device object
  61. * @return - void
  62. */
  63. void
  64. ol_txrx_disable_enhanced_stats(ol_txrx_pdev_handle pdev);
  65. #if ENHANCED_STATS
  66. /**
  67. * @brief Get the desired stats from the message.
  68. *
  69. * @param pdev - the physical device object
  70. * @param stats_base - stats buffer recieved from FW
  71. * @param type - stats type.
  72. * @return - pointer to requested stat identified by type
  73. */
  74. uint32_t *ol_txrx_get_stats_base(ol_txrx_pdev_handle pdev,
  75. uint32_t *stats_base, uint32_t msg_len, uint8_t type);
  76. #endif
  77. #endif /* WLAN_FEATURE_FASTPATH*/
  78. #if (HOST_SW_TSO_ENABLE || HOST_SW_TSO_SG_ENABLE)
  79. void
  80. ol_tx_print_tso_stats(
  81. ol_txrx_vdev_handle vdev);
  82. void
  83. ol_tx_rst_tso_stats(ol_txrx_vdev_handle vdev);
  84. #endif /* HOST_SW_TSO_ENABLE || HOST_SW_TSO_SG_ENABLE */
  85. #if HOST_SW_SG_ENABLE
  86. void
  87. ol_tx_print_sg_stats(
  88. ol_txrx_vdev_handle vdev);
  89. void
  90. ol_tx_rst_sg_stats(ol_txrx_vdev_handle vdev);
  91. #endif /* HOST_SW_SG_ENABLE */
  92. #if RX_CHECKSUM_OFFLOAD
  93. void
  94. ol_print_rx_cksum_stats(
  95. ol_txrx_vdev_handle vdev);
  96. void
  97. ol_rst_rx_cksum_stats(ol_txrx_vdev_handle vdev);
  98. #endif /* RX_CHECKSUM_OFFLOAD */
  99. #if (ATH_SUPPORT_IQUE && WLAN_FEATURE_FASTPATH)
  100. A_STATUS
  101. ol_txrx_host_me_stats(ol_txrx_vdev_handle vdev);
  102. #endif /* WLAN_FEATURE_FASTPATH */
  103. #if PEER_FLOW_CONTROL
  104. extern void
  105. ol_txrx_per_peer_stats(struct ol_txrx_pdev_t *pdev, char *addr);
  106. #endif
  107. #if WLAN_FEATURE_FASTPATH && PEER_FLOW_CONTROL
  108. int ol_txrx_host_msdu_ttl_stats(
  109. ol_txrx_vdev_handle vdev,
  110. struct ol_txrx_stats_req *req);
  111. #endif
  112. #define BSS_CHAN_INFO_READ 1
  113. #define BSS_CHAN_INFO_READ_AND_CLEAR 2
  114. #define TX_FRAME_TYPE_DATA 0
  115. #define TX_FRAME_TYPE_MGMT 1
  116. #define TX_FRAME_TYPE_BEACON 2
  117. #if HOST_SW_LRO_ENABLE
  118. void
  119. ol_print_lro_stats(ol_txrx_vdev_handle vdev);
  120. void
  121. ol_reset_lro_stats(ol_txrx_vdev_handle vdev);
  122. #endif /* HOST_SW_LRO_ENABLE */
  123. #endif