dp_li_tx.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
  3. * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for
  6. * any purpose with or without fee is hereby granted, provided that the
  7. * above copyright notice and this permission notice appear in all
  8. * copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  11. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  12. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  13. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  14. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  15. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  16. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  17. * PERFORMANCE OF THIS SOFTWARE.
  18. */
  19. #ifndef __DP_LI_TX_H
  20. #define __DP_LI_TX_H
  21. #include <dp_types.h>
  22. /**
  23. * dp_tx_hw_enqueue_li() - Enqueue to TCL HW for transmit
  24. * @soc: DP Soc Handle
  25. * @vdev: DP vdev handle
  26. * @tx_desc: Tx Descriptor Handle
  27. * @tid: TID from HLOS for overriding default DSCP-TID mapping
  28. * @fw_metadata: Metadata to send to Target Firmware along with frame
  29. * @ring_id: Ring ID of H/W ring to which we enqueue the packet
  30. * @tx_exc_metadata: Handle that holds exception path meta data
  31. *
  32. * Gets the next free TCL HW DMA descriptor and sets up required parameters
  33. * from software Tx descriptor
  34. *
  35. * Return: QDF_STATUS_SUCCESS: success
  36. * QDF_STATUS_E_RESOURCES: Error return
  37. */
  38. QDF_STATUS
  39. dp_tx_hw_enqueue_li(struct dp_soc *soc, struct dp_vdev *vdev,
  40. struct dp_tx_desc_s *tx_desc, uint16_t fw_metadata,
  41. struct cdp_tx_exception_metadata *tx_exc_metadata,
  42. struct dp_tx_msdu_info_s *msdu_info);
  43. /**
  44. * dp_tx_comp_get_params_from_hal_desc_li() - Get TX desc from HAL comp desc
  45. * @soc: DP soc handle
  46. * @tx_comp_hal_desc: HAL TX Comp Descriptor
  47. * @r_tx_desc: SW Tx Descriptor retrieved from HAL desc.
  48. *
  49. * Return: None
  50. */
  51. void dp_tx_comp_get_params_from_hal_desc_li(struct dp_soc *soc,
  52. void *tx_comp_hal_desc,
  53. struct dp_tx_desc_s **r_tx_desc);
  54. /**
  55. * dp_tx_process_htt_completion_li() - Tx HTT Completion Indication Handler
  56. * @soc: Handle to DP soc structure
  57. * @tx_desc: software descriptor head pointer
  58. * @status : Tx completion status from HTT descriptor
  59. * @ring_id: ring number
  60. *
  61. * This function will process HTT Tx indication messages from Target
  62. *
  63. * Return: none
  64. */
  65. void dp_tx_process_htt_completion_li(struct dp_soc *soc,
  66. struct dp_tx_desc_s *tx_desc,
  67. uint8_t *status,
  68. uint8_t ring_id);
  69. /**
  70. * dp_tx_desc_pool_init_li() - Initialize Tx Descriptor pool(s)
  71. * @soc: Handle to DP Soc structure
  72. * @num_elem: pool descriptor number
  73. * @pool_id: pool to allocate
  74. *
  75. * Return: QDF_STATUS_SUCCESS - success, others - failure
  76. */
  77. QDF_STATUS dp_tx_desc_pool_init_li(struct dp_soc *soc,
  78. uint32_t num_elem,
  79. uint8_t pool_id);
  80. /**
  81. * dp_tx_desc_pool_deinit_li() - De-initialize Tx Descriptor pool(s)
  82. * @soc: Handle to DP Soc structure
  83. * @tx_desc_pool: Tx descriptor pool handler
  84. * @pool_id: pool to deinit
  85. *
  86. * Return: None.
  87. */
  88. void dp_tx_desc_pool_deinit_li(struct dp_soc *soc,
  89. struct dp_tx_desc_pool_s *tx_desc_pool,
  90. uint8_t pool_id);
  91. /**
  92. * dp_tx_compute_tx_delay_li() - Compute HW Tx completion delay
  93. * @soc: Handle to DP Soc structure
  94. * @vdev: vdev
  95. * @ts: Tx completion status
  96. * @delay_us: Delay to be calculated in microseconds
  97. *
  98. * Return: QDF_STATUS
  99. */
  100. QDF_STATUS dp_tx_compute_tx_delay_li(struct dp_soc *soc,
  101. struct dp_vdev *vdev,
  102. struct hal_tx_completion_status *ts,
  103. uint32_t *delay_us);
  104. #endif