cdp_txrx_flow_ctrl_legacy.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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_legacy.h
  28. * @brief Define the host data path legacy flow control API
  29. * functions
  30. */
  31. #ifndef _CDP_TXRX_FC_LEG_H_
  32. #define _CDP_TXRX_FC_LEG_H_
  33. /**
  34. * enum netif_action_type - Type of actions on netif queues
  35. * @WLAN_STOP_ALL_NETIF_QUEUE: stop all netif queues
  36. * @WLAN_START_ALL_NETIF_QUEUE: start all netif queues
  37. * @WLAN_WAKE_ALL_NETIF_QUEUE: wake all netif queues
  38. * @WLAN_STOP_ALL_NETIF_QUEUE_N_CARRIER: stop all queues and off carrier
  39. * @WLAN_START_ALL_NETIF_QUEUE_N_CARRIER: start all queues and on carrier
  40. * @WLAN_NETIF_TX_DISABLE: disable tx
  41. * @WLAN_NETIF_TX_DISABLE_N_CARRIER: disable tx and off carrier
  42. * @WLAN_NETIF_CARRIER_ON: on carrier
  43. * @WLAN_NETIF_CARRIER_OFF: off carrier
  44. */
  45. enum netif_action_type {
  46. WLAN_STOP_ALL_NETIF_QUEUE = 1,
  47. WLAN_START_ALL_NETIF_QUEUE,
  48. WLAN_WAKE_ALL_NETIF_QUEUE,
  49. WLAN_STOP_ALL_NETIF_QUEUE_N_CARRIER,
  50. WLAN_START_ALL_NETIF_QUEUE_N_CARRIER,
  51. WLAN_NETIF_TX_DISABLE,
  52. WLAN_NETIF_TX_DISABLE_N_CARRIER,
  53. WLAN_NETIF_CARRIER_ON,
  54. WLAN_NETIF_CARRIER_OFF,
  55. WLAN_NETIF_ACTION_TYPE_MAX,
  56. };
  57. /**
  58. * enum netif_reason_type - reason for netif queue action
  59. * @WLAN_CONTROL_PATH: action from control path
  60. * @WLAN_DATA_FLOW_CONTROL: because of flow control
  61. * @WLAN_FW_PAUSE: because of firmware pause
  62. * @WLAN_TX_ABORT: because of tx abort
  63. * @WLAN_VDEV_STOP: because of vdev stop
  64. * @WLAN_PEER_UNAUTHORISED: because of peer is unauthorised
  65. * @WLAN_THERMAL_MITIGATION: because of thermal mitigation
  66. */
  67. enum netif_reason_type {
  68. WLAN_CONTROL_PATH = 1,
  69. WLAN_DATA_FLOW_CONTROL,
  70. WLAN_FW_PAUSE,
  71. WLAN_TX_ABORT,
  72. WLAN_VDEV_STOP,
  73. WLAN_PEER_UNAUTHORISED,
  74. WLAN_THERMAL_MITIGATION,
  75. WLAN_REASON_TYPE_MAX,
  76. };
  77. #ifdef QCA_LL_LEGACY_TX_FLOW_CONTROL
  78. /**
  79. * ol_txrx_tx_flow_control_fp - tx flow control notification
  80. * function from txrx to OS shim
  81. * @osif_dev - the virtual device's OS shim object
  82. * @tx_resume - tx os q should be resumed or not
  83. */
  84. typedef void (*ol_txrx_tx_flow_control_fp)(void *osif_dev,
  85. bool tx_resume);
  86. int ol_txrx_register_tx_flow_control(uint8_t vdev_id,
  87. ol_txrx_tx_flow_control_fp flowControl,
  88. void *osif_fc_ctx);
  89. int ol_txrx_deregister_tx_flow_control_cb(uint8_t vdev_id);
  90. void ol_txrx_flow_control_cb(ol_txrx_vdev_handle vdev,
  91. bool tx_resume);
  92. bool
  93. ol_txrx_get_tx_resource(uint8_t sta_id,
  94. unsigned int low_watermark,
  95. unsigned int high_watermark_offset);
  96. int
  97. ol_txrx_ll_set_tx_pause_q_depth(uint8_t vdev_id, int pause_q_depth);
  98. #endif /* QCA_LL_LEGACY_TX_FLOW_CONTROL */
  99. void ol_txrx_vdev_flush(ol_txrx_vdev_handle data_vdev);
  100. #ifdef CONFIG_ICNSS
  101. static inline void ol_txrx_vdev_pause(ol_txrx_vdev_handle vdev, uint32_t reason)
  102. {
  103. return;
  104. }
  105. #else
  106. void ol_txrx_vdev_pause(ol_txrx_vdev_handle vdev, uint32_t reason);
  107. #endif
  108. #ifdef CONFIG_ICNSS
  109. static inline void ol_txrx_vdev_unpause(ol_txrx_vdev_handle data_vdev,
  110. uint32_t reason)
  111. {
  112. return;
  113. }
  114. #else
  115. void ol_txrx_vdev_unpause(ol_txrx_vdev_handle data_vdev, uint32_t reason);
  116. #endif
  117. #endif /* _CDP_TXRX_FC_LEG_H_ */