ol_tx.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Copyright (c) 2011-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.h
  28. * @brief Internal definitions for the high-level tx module.
  29. */
  30. #ifndef _OL_TX__H_
  31. #define _OL_TX__H_
  32. #include <cdf_nbuf.h> /* cdf_nbuf_t */
  33. #include <cdf_lock.h>
  34. #include <ol_txrx_api.h> /* ol_txrx_vdev_handle */
  35. #include <ol_txrx_types.h> /* ol_tx_desc_t, ol_txrx_msdu_info_t */
  36. cdf_nbuf_t ol_tx_ll(ol_txrx_vdev_handle vdev, cdf_nbuf_t msdu_list);
  37. #ifdef WLAN_FEATURE_FASTPATH
  38. cdf_nbuf_t ol_tx_ll_fast(ol_txrx_vdev_handle vdev, cdf_nbuf_t msdu_list);
  39. #endif
  40. cdf_nbuf_t ol_tx_ll_queue(ol_txrx_vdev_handle vdev, cdf_nbuf_t msdu_list);
  41. #ifdef QCA_LL_LEGACY_TX_FLOW_CONTROL
  42. #define OL_TX_LL ol_tx_ll_queue
  43. #else
  44. #define OL_TX_LL ol_tx_ll
  45. #endif
  46. #ifdef QCA_LL_LEGACY_TX_FLOW_CONTROL
  47. void ol_tx_vdev_ll_pause_queue_send(void *context);
  48. void ol_tx_pdev_ll_pause_queue_send_all(struct ol_txrx_pdev_t *pdev);
  49. #else
  50. static inline void ol_tx_vdev_ll_pause_queue_send(void *context)
  51. {
  52. return;
  53. }
  54. static inline
  55. void ol_tx_pdev_ll_pause_queue_send_all(struct ol_txrx_pdev_t *pdev)
  56. {
  57. return;
  58. }
  59. #endif
  60. cdf_nbuf_t
  61. ol_tx_non_std_ll(ol_txrx_vdev_handle data_vdev,
  62. enum ol_tx_spec tx_spec, cdf_nbuf_t msdu_list);
  63. cdf_nbuf_t
  64. ol_tx_reinject(struct ol_txrx_vdev_t *vdev, cdf_nbuf_t msdu, uint16_t peer_id);
  65. void ol_txrx_mgmt_tx_complete(void *ctxt, cdf_nbuf_t netbuf, int err);
  66. #if defined(FEATURE_TSO)
  67. void ol_tso_seg_list_init(struct ol_txrx_pdev_t *pdev, uint32_t num_seg);
  68. void ol_tso_seg_list_deinit(struct ol_txrx_pdev_t *pdev);
  69. #else
  70. static inline void ol_tso_seg_list_init(struct ol_txrx_pdev_t *pdev,
  71. uint32_t num_seg)
  72. {
  73. return;
  74. }
  75. static inline void ol_tso_seg_list_deinit(struct ol_txrx_pdev_t *pdev)
  76. {
  77. return;
  78. }
  79. #endif
  80. #endif /* _OL_TX__H_ */