cdp_txrx_cfg.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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_cfg.h
  28. * @brief Define the host data path configuration API functions
  29. */
  30. #ifndef _CDP_TXRX_CFG_H_
  31. #define _CDP_TXRX_CFG_H_
  32. /**
  33. * cdp_cfg_set_rx_fwd_disabled() - enable/disable rx forwarding
  34. * @soc - data path soc handle
  35. * @pdev - data path device instance
  36. * @disable_rx_fwd - enable or disable rx forwarding
  37. *
  38. * enable/disable rx forwarding
  39. *
  40. * return NONE
  41. */
  42. static inline void
  43. cdp_cfg_set_rx_fwd_disabled(ol_txrx_soc_handle soc, void *pdev,
  44. uint8_t disable_rx_fwd)
  45. {
  46. if (!soc || !soc->ops || !soc->ops->cfg_ops) {
  47. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  48. "%s invalid instance", __func__);
  49. return;
  50. }
  51. if (soc->ops->cfg_ops->set_cfg_rx_fwd_disabled)
  52. return soc->ops->cfg_ops->set_cfg_rx_fwd_disabled(pdev,
  53. disable_rx_fwd);
  54. }
  55. /**
  56. * cdp_cfg_set_packet_log_enabled() - enable/disable packet log
  57. * @soc - data path soc handle
  58. * @pdev - data path device instance
  59. * @val - enable or disable packet log
  60. *
  61. * packet log enable or disable
  62. *
  63. * return NONE
  64. */
  65. static inline void
  66. cdp_cfg_set_packet_log_enabled(ol_txrx_soc_handle soc,
  67. void *pdev, uint8_t val)
  68. {
  69. if (!soc || !soc->ops || !soc->ops->cfg_ops) {
  70. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  71. "%s invalid instance", __func__);
  72. return;
  73. }
  74. if (soc->ops->cfg_ops->set_cfg_packet_log_enabled)
  75. return soc->ops->cfg_ops->set_cfg_packet_log_enabled(pdev,
  76. val);
  77. }
  78. /**
  79. * cdp_cfg_attach() - attach config module
  80. * @soc - data path soc handle
  81. * @osdev - os instance
  82. * @cfg_param - configuration parameter should be propagated
  83. *
  84. * Allocate configuration module instance, and propagate configuration values
  85. *
  86. * return soc configuration module instance
  87. */
  88. static inline void
  89. *cdp_cfg_attach(ol_txrx_soc_handle soc,
  90. qdf_device_t osdev, void *cfg_param)
  91. {
  92. if (!soc || !soc->ops || !soc->ops->cfg_ops) {
  93. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  94. "%s invalid instance", __func__);
  95. return NULL;
  96. }
  97. if (soc->ops->cfg_ops->cfg_attach)
  98. return soc->ops->cfg_ops->cfg_attach(osdev, cfg_param);
  99. return NULL;
  100. }
  101. /**
  102. * cdp_cfg_vdev_rx_set_intrabss_fwd() - enable/disable intra bass forwarding
  103. * @soc - data path soc handle
  104. * @vdev - virtual interface instance
  105. * @val - enable or disable intra bss forwarding
  106. *
  107. * ap isolate, do not forward intra bss traffic
  108. *
  109. * return NONE
  110. */
  111. static inline void
  112. cdp_cfg_vdev_rx_set_intrabss_fwd(ol_txrx_soc_handle soc, void *vdev, bool val)
  113. {
  114. if (!soc || !soc->ops || !soc->ops->cfg_ops) {
  115. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  116. "%s invalid instance", __func__);
  117. return;
  118. }
  119. if (soc->ops->cfg_ops->vdev_rx_set_intrabss_fwd)
  120. return soc->ops->cfg_ops->vdev_rx_set_intrabss_fwd(vdev, val);
  121. }
  122. /**
  123. * cdp_cfg_is_rx_fwd_disabled() - get vdev rx forward
  124. * @soc - data path soc handle
  125. * @vdev - virtual interface instance
  126. *
  127. * Return rx forward feature enable status
  128. *
  129. * return 1 enabled
  130. * 0 disabled
  131. */
  132. static inline uint8_t
  133. cdp_cfg_is_rx_fwd_disabled(ol_txrx_soc_handle soc, void *vdev)
  134. {
  135. if (!soc || !soc->ops || !soc->ops->cfg_ops) {
  136. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  137. "%s invalid instance", __func__);
  138. return 0;
  139. }
  140. if (soc->ops->cfg_ops->is_rx_fwd_disabled)
  141. return soc->ops->cfg_ops->is_rx_fwd_disabled(vdev);
  142. return 0;
  143. }
  144. /**
  145. * cdp_cfg_tx_set_is_mgmt_over_wmi_enabled() - mgmt tx over wmi enable/disable
  146. * @soc - data path soc handle
  147. * @value - feature enable or disable
  148. *
  149. * Enable or disable management packet TX over WMI feature
  150. *
  151. * return None
  152. */
  153. static inline void
  154. cdp_cfg_tx_set_is_mgmt_over_wmi_enabled(ol_txrx_soc_handle soc,
  155. uint8_t value)
  156. {
  157. if (!soc || !soc->ops || !soc->ops->cfg_ops) {
  158. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  159. "%s invalid instance", __func__);
  160. return;
  161. }
  162. if (soc->ops->cfg_ops->tx_set_is_mgmt_over_wmi_enabled)
  163. return soc->ops->cfg_ops->tx_set_is_mgmt_over_wmi_enabled(
  164. value);
  165. }
  166. /**
  167. * cdp_cfg_is_high_latency() - query data path is in high or low latency
  168. * @soc - data path soc handle
  169. * @pdev - data path device instance
  170. *
  171. * query data path is in high or low latency
  172. *
  173. * return 1 high latency data path, usb or sdio
  174. * 0 low latency data path
  175. */
  176. static inline int
  177. cdp_cfg_is_high_latency(ol_txrx_soc_handle soc, void *pdev)
  178. {
  179. if (!soc || !soc->ops || !soc->ops->cfg_ops) {
  180. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  181. "%s invalid instance", __func__);
  182. return 0;
  183. }
  184. if (soc->ops->cfg_ops->is_high_latency)
  185. return soc->ops->cfg_ops->is_high_latency(pdev);
  186. return 0;
  187. }
  188. /**
  189. * cdp_cfg_set_flow_control_parameters() - set flow control params
  190. * @soc - data path soc handle
  191. * @cfg - dp config module instance
  192. * @param - parameters should set
  193. *
  194. * set flow control params
  195. *
  196. * return None
  197. */
  198. static inline void
  199. cdp_cfg_set_flow_control_parameters(ol_txrx_soc_handle soc,
  200. void *cfg, void *param)
  201. {
  202. if (!soc || !soc->ops || !soc->ops->cfg_ops) {
  203. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  204. "%s invalid instance", __func__);
  205. return;
  206. }
  207. if (soc->ops->cfg_ops->set_flow_control_parameters)
  208. return soc->ops->cfg_ops->set_flow_control_parameters(cfg,
  209. param);
  210. return;
  211. }
  212. /**
  213. * cdp_cfg_set_flow_steering - Set Rx flow steering config based on CFG ini
  214. * config.
  215. *
  216. * @pdev - handle to the physical device
  217. * @val - 0 - disable, 1 - enable
  218. *
  219. * Return: None
  220. */
  221. static inline void cdp_cfg_set_flow_steering(ol_txrx_soc_handle soc,
  222. void *pdev, uint8_t val)
  223. {
  224. if (!soc || !soc->ops || !soc->ops->cfg_ops) {
  225. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  226. "%s invalid instance", __func__);
  227. return;
  228. }
  229. if (soc->ops->cfg_ops->set_flow_steering)
  230. return soc->ops->cfg_ops->set_flow_steering(pdev, val);
  231. return;
  232. }
  233. #endif /* _CDP_TXRX_CFG_H_ */