cdp_txrx_ipa.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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. #include <cdp_txrx_mob_def.h>
  33. /**
  34. * cdp_ipa_get_resource() - Get allocated wlan resources for ipa data path
  35. * @soc - data path soc handle
  36. * @pdev - device instance pointer
  37. * @ipa_res - ipa resources pointer
  38. *
  39. * Get allocated wlan resources for ipa data path
  40. *
  41. * return none
  42. */
  43. static inline void
  44. cdp_ipa_get_resource(ol_txrx_soc_handle soc, void *pdev,
  45. struct ol_txrx_ipa_resources *ipa_res)
  46. {
  47. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  48. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  49. "%s invalid instance", __func__);
  50. return;
  51. }
  52. if (soc->ops->ipa_ops->ipa_get_resource)
  53. return soc->ops->ipa_ops->ipa_get_resource(pdev, ipa_res);
  54. return;
  55. }
  56. /**
  57. * cdp_ipa_set_doorbell_paddr() - give IPA db paddr to fw
  58. * @soc - data path soc handle
  59. * @pdev - device instance pointer
  60. * @ipa_tx_uc_doorbell_paddr - tx db paddr
  61. * @ipa_rx_uc_doorbell_paddr - rx db paddr
  62. *
  63. * give IPA db paddr to fw
  64. *
  65. * return none
  66. */
  67. static inline void
  68. cdp_ipa_set_doorbell_paddr(ol_txrx_soc_handle soc, void *pdev,
  69. qdf_dma_addr_t ipa_tx_uc_doorbell_paddr,
  70. qdf_dma_addr_t ipa_rx_uc_doorbell_paddr)
  71. {
  72. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  73. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  74. "%s invalid instance", __func__);
  75. return;
  76. }
  77. if (soc->ops->ipa_ops->ipa_set_doorbell_paddr)
  78. return soc->ops->ipa_ops->ipa_set_doorbell_paddr(pdev,
  79. ipa_tx_uc_doorbell_paddr, ipa_rx_uc_doorbell_paddr);
  80. return;
  81. }
  82. /**
  83. * cdp_ipa_set_active() - activate/de-ctivate wlan fw ipa data path
  84. * @soc - data path soc handle
  85. * @pdev - device instance pointer
  86. * @uc_active - activate or de-activate
  87. * @is_tx - toggle tx or rx data path
  88. *
  89. * activate/de-ctivate wlan fw ipa data path
  90. *
  91. * return none
  92. */
  93. static inline void
  94. cdp_ipa_set_active(ol_txrx_soc_handle soc, void *pdev,
  95. bool uc_active, bool is_tx)
  96. {
  97. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  98. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  99. "%s invalid instance", __func__);
  100. return;
  101. }
  102. if (soc->ops->ipa_ops->ipa_set_active)
  103. return soc->ops->ipa_ops->ipa_set_active(pdev, uc_active,
  104. is_tx);
  105. return;
  106. }
  107. /**
  108. * cdp_ipa_op_response() - event handler from fw
  109. * @soc - data path soc handle
  110. * @pdev - device instance pointer
  111. * @op_msg - event contents from firmware
  112. *
  113. * event handler from fw
  114. *
  115. * return none
  116. */
  117. static inline void
  118. cdp_ipa_op_response(ol_txrx_soc_handle soc, void *pdev,
  119. uint8_t *op_msg)
  120. {
  121. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  122. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  123. "%s invalid instance", __func__);
  124. return;
  125. }
  126. if (soc->ops->ipa_ops->ipa_op_response)
  127. return soc->ops->ipa_ops->ipa_op_response(pdev, op_msg);
  128. return;
  129. }
  130. /**
  131. * cdp_ipa_register_op_cb() - register event handler function pointer
  132. * @soc - data path soc handle
  133. * @pdev - device instance pointer
  134. * @op_cb - event handler callback function pointer
  135. * @osif_dev - osif instance pointer
  136. *
  137. * register event handler function pointer
  138. *
  139. * return none
  140. */
  141. static inline void
  142. cdp_ipa_register_op_cb(ol_txrx_soc_handle soc, void *pdev,
  143. ipa_op_cb_type op_cb, void *osif_dev)
  144. {
  145. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  146. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  147. "%s invalid instance", __func__);
  148. return;
  149. }
  150. if (soc->ops->ipa_ops->ipa_register_op_cb)
  151. return soc->ops->ipa_ops->ipa_register_op_cb(pdev, op_cb,
  152. osif_dev);
  153. return;
  154. }
  155. /**
  156. * cdp_ipa_get_stat() - get ipa data path stats from fw
  157. * @soc - data path soc handle
  158. * @pdev - device instance pointer
  159. *
  160. * get ipa data path stats from fw async
  161. *
  162. * return none
  163. */
  164. static inline void
  165. cdp_ipa_get_stat(ol_txrx_soc_handle soc, void *pdev)
  166. {
  167. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  168. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  169. "%s invalid instance", __func__);
  170. return;
  171. }
  172. if (soc->ops->ipa_ops->ipa_get_stat)
  173. return soc->ops->ipa_ops->ipa_get_stat(pdev);
  174. return;
  175. }
  176. /**
  177. * cdp_tx_send_ipa_data_frame() - send IPA data frame
  178. * @vdev: vdev
  179. * @skb: skb
  180. *
  181. * Return: skb/ NULL is for success
  182. */
  183. static inline qdf_nbuf_t cdp_ipa_tx_send_data_frame(ol_txrx_soc_handle soc,
  184. void *vdev, qdf_nbuf_t skb)
  185. {
  186. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  187. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  188. "%s invalid instance", __func__);
  189. return skb;
  190. }
  191. if (soc->ops->ipa_ops->ipa_tx_data_frame)
  192. return soc->ops->ipa_ops->ipa_tx_data_frame(vdev, skb);
  193. return skb;
  194. }
  195. /**
  196. * cdp_ipa_set_uc_tx_partition_base() - set tx packet partition base
  197. * @pdev: physical device instance
  198. * @value: partition base value
  199. *
  200. * Return: none
  201. */
  202. static inline void cdp_ipa_set_uc_tx_partition_base(ol_txrx_soc_handle soc,
  203. void *pdev, uint32_t value)
  204. {
  205. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  206. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  207. "%s invalid instance", __func__);
  208. return;
  209. }
  210. if (soc->ops->ipa_ops->ipa_set_uc_tx_partition_base)
  211. return soc->ops->ipa_ops->ipa_set_uc_tx_partition_base(pdev,
  212. value);
  213. return;
  214. }
  215. #endif /* _CDP_TXRX_IPA_H_ */