ol_tx_queue.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Copyright (c) 2012-2015 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 ol_tx_queue.h
  28. * @brief API definitions for the tx frame queue module within the data SW.
  29. */
  30. #ifndef _OL_TX_QUEUE__H_
  31. #define _OL_TX_QUEUE__H_
  32. #include <cdf_nbuf.h> /* cdf_nbuf_t */
  33. #include <ol_txrx_types.h> /* ol_txrx_vdev_t, etc. */
  34. #include <cdf_types.h> /* bool */
  35. /*--- function prototypes for optional queue log feature --------------------*/
  36. #if defined(ENABLE_TX_QUEUE_LOG)
  37. void
  38. ol_tx_queue_log_enqueue(struct ol_txrx_pdev_t *pdev,
  39. struct ol_txrx_msdu_info_t *msdu_info,
  40. int frms, int bytes);
  41. void
  42. ol_tx_queue_log_dequeue(struct ol_txrx_pdev_t *pdev,
  43. struct ol_tx_frms_queue_t *txq, int frms, int bytes);
  44. void
  45. ol_tx_queue_log_free(struct ol_txrx_pdev_t *pdev,
  46. struct ol_tx_frms_queue_t *txq,
  47. int tid, int frms, int bytes);
  48. #define OL_TX_QUEUE_LOG_ENQUEUE ol_tx_queue_log_enqueue
  49. #define OL_TX_QUEUE_LOG_DEQUEUE ol_tx_queue_log_dequeue
  50. #define OL_TX_QUEUE_LOG_FREE ol_tx_queue_log_free
  51. #else
  52. #define OL_TX_QUEUE_LOG_ENQUEUE(pdev, msdu_info, frms, bytes) /* no-op */
  53. #define OL_TX_QUEUE_LOG_DEQUEUE(pdev, txq, frms, bytes) /* no-op */
  54. #define OL_TX_QUEUE_LOG_FREE(pdev, txq, tid, frms, bytes) /* no-op */
  55. #endif /* TXRX_DEBUG_LEVEL > 5 */
  56. #define ol_tx_enqueue(pdev, txq, tx_desc, tx_msdu_info) /* no-op */
  57. #define ol_tx_dequeue(pdev, ext_tid, txq, head, num_frames, credit, bytes) 0
  58. #define ol_tx_queue_free(pdev, txq, tid) /* no-op */
  59. #define ol_tx_queue_discard(pdev, flush, tx_descs) /* no-op */
  60. void
  61. ol_tx_queue_log_sched(struct ol_txrx_pdev_t *pdev,
  62. int credit,
  63. int *num_active_tids,
  64. uint32_t **active_bitmap, uint8_t **data);
  65. #define OL_TX_QUEUE_LOG_SCHED( \
  66. pdev, credit, num_active_tids, active_bitmap, data)
  67. #define ol_tx_queues_display(pdev) /* no-op */
  68. #define ol_tx_queue_decs_reinit(peer, peer_id) /* no-op */
  69. #ifdef QCA_SUPPORT_TX_THROTTLE
  70. /**
  71. * @brief - initialize the throttle context
  72. * @param pdev - the physical device object, which stores the txqs
  73. */
  74. void ol_tx_throttle_init(struct ol_txrx_pdev_t *pdev);
  75. #else
  76. #define ol_tx_throttle_init(pdev) /*no op */
  77. #endif
  78. #endif /* _OL_TX_QUEUE__H_ */