cdp_txrx_ipa.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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_ipa.h
  28. * @brief Define the host data path IP Acceleraor API functions
  29. */
  30. #ifndef _CDP_TXRX_IPA_H_
  31. #define _CDP_TXRX_IPA_H_
  32. /**
  33. * ol_txrx_ipa_resources - Resources needed for IPA
  34. */
  35. struct ol_txrx_ipa_resources {
  36. qdf_dma_addr_t ce_sr_base_paddr;
  37. uint32_t ce_sr_ring_size;
  38. qdf_dma_addr_t ce_reg_paddr;
  39. qdf_dma_addr_t tx_comp_ring_base_paddr;
  40. uint32_t tx_comp_ring_size;
  41. uint32_t tx_num_alloc_buffer;
  42. qdf_dma_addr_t rx_rdy_ring_base_paddr;
  43. uint32_t rx_rdy_ring_size;
  44. qdf_dma_addr_t rx_proc_done_idx_paddr;
  45. void *rx_proc_done_idx_vaddr;
  46. qdf_dma_addr_t rx2_rdy_ring_base_paddr;
  47. uint32_t rx2_rdy_ring_size;
  48. qdf_dma_addr_t rx2_proc_done_idx_paddr;
  49. void *rx2_proc_done_idx_vaddr;
  50. };
  51. #ifdef IPA_OFFLOAD
  52. void
  53. ol_txrx_ipa_uc_get_resource(ol_txrx_pdev_handle pdev,
  54. struct ol_txrx_ipa_resources *ipa_res);
  55. void
  56. ol_txrx_ipa_uc_set_doorbell_paddr(ol_txrx_pdev_handle pdev,
  57. qdf_dma_addr_t ipa_tx_uc_doorbell_paddr,
  58. qdf_dma_addr_t ipa_rx_uc_doorbell_paddr);
  59. void
  60. ol_txrx_ipa_uc_set_active(ol_txrx_pdev_handle pdev,
  61. bool uc_active, bool is_tx);
  62. void ol_txrx_ipa_uc_op_response(ol_txrx_pdev_handle pdev, uint8_t *op_msg);
  63. void ol_txrx_ipa_uc_register_op_cb(ol_txrx_pdev_handle pdev,
  64. void (*ipa_uc_op_cb_type)(uint8_t *op_msg,
  65. void *osif_ctxt),
  66. void *osif_dev);
  67. void ol_txrx_ipa_uc_get_stat(ol_txrx_pdev_handle pdev);
  68. qdf_nbuf_t ol_tx_send_ipa_data_frame(void *vdev, qdf_nbuf_t skb);
  69. #else
  70. static inline void
  71. ol_txrx_ipa_uc_get_resource(ol_txrx_pdev_handle pdev,
  72. struct ol_txrx_ipa_resources *ipa_res)
  73. {
  74. return;
  75. }
  76. static inline void
  77. ol_txrx_ipa_uc_set_doorbell_paddr(ol_txrx_pdev_handle pdev,
  78. qdf_dma_addr_t ipa_tx_uc_doorbell_paddr,
  79. qdf_dma_addr_t ipa_rx_uc_doorbell_paddr)
  80. {
  81. return;
  82. }
  83. static inline void
  84. ol_txrx_ipa_uc_set_active(ol_txrx_pdev_handle pdev,
  85. bool uc_active, bool is_tx)
  86. {
  87. return;
  88. }
  89. static inline void
  90. ol_txrx_ipa_uc_op_response(ol_txrx_pdev_handle pdev, uint8_t *op_msg)
  91. {
  92. return;
  93. }
  94. static inline void
  95. ol_txrx_ipa_uc_register_op_cb(ol_txrx_pdev_handle pdev,
  96. void (*ipa_uc_op_cb_type)(uint8_t *op_msg,
  97. void *osif_ctxt),
  98. void *osif_dev)
  99. {
  100. return;
  101. }
  102. static inline void ol_txrx_ipa_uc_get_stat(ol_txrx_pdev_handle pdev)
  103. {
  104. return;
  105. }
  106. #endif /* IPA_OFFLOAD */
  107. #endif /* _CDP_TXRX_IPA_H_ */