cdp_txrx_ctrl.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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_ctrl.h
  28. * @brief Define the host data path control API functions
  29. * called by the host control SW and the OS interface module
  30. */
  31. #ifndef _CDP_TXRX_CTRL_H_
  32. #define _CDP_TXRX_CTRL_H_
  33. static inline int cdp_is_target_ar900b
  34. (ol_txrx_soc_handle soc, void *vdev)
  35. {
  36. if (soc->ops->ctrl_ops->txrx_is_target_ar900b)
  37. return soc->ops->ctrl_ops->txrx_is_target_ar900b(vdev);
  38. return 0;
  39. }
  40. /* WIN */
  41. static inline int
  42. cdp_mempools_attach(ol_txrx_soc_handle soc, void *ctrl_pdev)
  43. {
  44. if (soc->ops->ctrl_ops->txrx_mempools_attach)
  45. return soc->ops->ctrl_ops->txrx_mempools_attach(ctrl_pdev);
  46. return 0;
  47. }
  48. static inline int
  49. cdp_set_filter_neighbour_peers(ol_txrx_soc_handle soc,
  50. void *pdev, u_int32_t val)
  51. {
  52. if (soc->ops->ctrl_ops->txrx_set_filter_neighbour_peers)
  53. return soc->ops->ctrl_ops->txrx_set_filter_neighbour_peers
  54. (pdev, val);
  55. return 0;
  56. }
  57. /**
  58. * @brief set the safemode of the device
  59. * @details
  60. * This flag is used to bypass the encrypt and decrypt processes when send and
  61. * receive packets. It works like open AUTH mode, HW will treate all packets
  62. * as non-encrypt frames because no key installed. For rx fragmented frames,
  63. * it bypasses all the rx defragmentaion.
  64. *
  65. * @param vdev - the data virtual device object
  66. * @param val - the safemode state
  67. * @return - void
  68. */
  69. static inline void
  70. cdp_set_safemode(ol_txrx_soc_handle soc,
  71. void *vdev, u_int32_t val)
  72. {
  73. if (soc->ops->ctrl_ops->txrx_set_safemode)
  74. return soc->ops->ctrl_ops->txrx_set_safemode(vdev, val);
  75. return;
  76. }
  77. /**
  78. * @brief configure the drop unencrypted frame flag
  79. * @details
  80. * Rx related. When set this flag, all the unencrypted frames
  81. * received over a secure connection will be discarded
  82. *
  83. * @param vdev - the data virtual device object
  84. * @param val - flag
  85. * @return - void
  86. */
  87. static inline void
  88. cdp_set_drop_unenc(ol_txrx_soc_handle soc,
  89. void *vdev, u_int32_t val)
  90. {
  91. if (soc->ops->ctrl_ops->txrx_set_drop_unenc)
  92. return soc->ops->ctrl_ops->txrx_set_drop_unenc(vdev, val);
  93. return;
  94. }
  95. /**
  96. * @brief set the Tx encapsulation type of the VDEV
  97. * @details
  98. * This will be used to populate the HTT desc packet type field during Tx
  99. *
  100. * @param vdev - the data virtual device object
  101. * @param val - the Tx encap type (htt_pkt_type)
  102. * @return - void
  103. */
  104. static inline void
  105. cdp_set_tx_encap_type(ol_txrx_soc_handle soc,
  106. void *vdev, enum htt_cmn_pkt_type val)
  107. {
  108. if (soc->ops->ctrl_ops->txrx_set_tx_encap_type)
  109. return soc->ops->ctrl_ops->txrx_set_tx_encap_type(vdev, val);
  110. return;
  111. }
  112. /**
  113. * @brief set the Rx decapsulation type of the VDEV
  114. * @details
  115. * This will be used to configure into firmware and hardware which format to
  116. * decap all Rx packets into, for all peers under the VDEV.
  117. *
  118. * @param vdev - the data virtual device object
  119. * @param val - the Rx decap mode (htt_pkt_type)
  120. * @return - void
  121. */
  122. static inline void
  123. cdp_set_vdev_rx_decap_type(ol_txrx_soc_handle soc,
  124. void *vdev, enum htt_cmn_pkt_type val)
  125. {
  126. if (soc->ops->ctrl_ops->txrx_set_vdev_rx_decap_type)
  127. return soc->ops->ctrl_ops->txrx_set_vdev_rx_decap_type
  128. (vdev, val);
  129. return;
  130. }
  131. /**
  132. * @brief get the Rx decapsulation type of the VDEV
  133. *
  134. * @param vdev - the data virtual device object
  135. * @return - the Rx decap type (htt_pkt_type)
  136. */
  137. static inline enum htt_pkt_type
  138. cdp_get_vdev_rx_decap_type(ol_txrx_soc_handle soc, void *vdev)
  139. {
  140. if (soc->ops->ctrl_ops->txrx_get_vdev_rx_decap_type)
  141. return soc->ops->ctrl_ops->txrx_get_vdev_rx_decap_type(vdev);
  142. return 0;
  143. }
  144. /* Is this similar to ol_txrx_peer_state_update() in MCL */
  145. /**
  146. * @brief Update the authorize peer object at association time
  147. * @details
  148. * For the host-based implementation of rate-control, it
  149. * updates the peer/node-related parameters within rate-control
  150. * context of the peer at association.
  151. *
  152. * @param peer - pointer to the node's object
  153. * @authorize - either to authorize or unauthorize peer
  154. *
  155. * @return none
  156. */
  157. static inline void
  158. cdp_peer_authorize(ol_txrx_soc_handle soc,
  159. struct ol_txrx_peer_t *peer, u_int32_t authorize)
  160. {
  161. if (soc->ops->ctrl_ops->txrx_peer_authorize)
  162. return soc->ops->ctrl_ops->txrx_peer_authorize
  163. (peer, authorize);
  164. return;
  165. }
  166. static inline bool
  167. cdp_set_inact_params(ol_txrx_soc_handle soc, void *pdev,
  168. u_int16_t inact_check_interval,
  169. u_int16_t inact_normal,
  170. u_int16_t inact_overload)
  171. {
  172. if (soc->ops->ctrl_ops->txrx_set_inact_params)
  173. return soc->ops->ctrl_ops->txrx_set_inact_params
  174. (pdev, inact_check_interval, inact_normal,
  175. inact_overload);
  176. return false;
  177. }
  178. static inline bool
  179. cdp_start_inact_timer(ol_txrx_soc_handle soc,
  180. void *pdev,
  181. bool enable)
  182. {
  183. if (soc->ops->ctrl_ops->txrx_start_inact_timer)
  184. return soc->ops->ctrl_ops->txrx_start_inact_timer
  185. (pdev, enable);
  186. return false;
  187. }
  188. /**
  189. * @brief Set the overload status of the radio
  190. * @details
  191. * Set the overload status of the radio, updating the inactivity
  192. * threshold and inactivity count for each node.
  193. *
  194. * @param pdev - the data physical device object
  195. * @param overload - whether the radio is overloaded or not
  196. */
  197. static inline void
  198. cdp_set_overload(ol_txrx_soc_handle soc, void *pdev,
  199. bool overload)
  200. {
  201. if (soc->ops->ctrl_ops->txrx_set_overload)
  202. return soc->ops->ctrl_ops->txrx_set_overload(pdev, overload);
  203. return;
  204. }
  205. /**
  206. * @brief Check the inactivity status of the peer/node
  207. *
  208. * @param peer - pointer to the node's object
  209. * @return true if the node is inactive; otherwise return false
  210. */
  211. static inline bool
  212. cdp_peer_is_inact(ol_txrx_soc_handle soc, void *peer)
  213. {
  214. if (soc->ops->ctrl_ops->txrx_peer_is_inact)
  215. return soc->ops->ctrl_ops->txrx_peer_is_inact(peer);
  216. return false;
  217. }
  218. /**
  219. * @brief Mark inactivity status of the peer/node
  220. * @details
  221. * If it becomes active, reset inactivity count to reload value;
  222. * if the inactivity status changed, notify umac band steering.
  223. *
  224. * @param peer - pointer to the node's object
  225. * @param inactive - whether the node is inactive or not
  226. */
  227. static inline void
  228. cdp_mark_peer_inact(ol_txrx_soc_handle soc,
  229. void *peer,
  230. bool inactive)
  231. {
  232. if (soc->ops->ctrl_ops->txrx_mark_peer_inact)
  233. return soc->ops->ctrl_ops->txrx_mark_peer_inact
  234. (peer, inactive);
  235. return;
  236. }
  237. /* Should be ol_txrx_ctrl_api.h */
  238. static inline void cdp_set_mesh_mode
  239. (ol_txrx_soc_handle soc, void *vdev, u_int32_t val)
  240. {
  241. if (soc->ops->ctrl_ops->txrx_set_mesh_mode)
  242. return soc->ops->ctrl_ops->txrx_set_mesh_mode(vdev, val);
  243. return;
  244. }
  245. static inline void cdp_tx_flush_buffers
  246. (ol_txrx_soc_handle soc, void *vdev)
  247. {
  248. if (soc->ops->ctrl_ops->tx_flush_buffers)
  249. return soc->ops->ctrl_ops->tx_flush_buffers(vdev);
  250. return;
  251. }
  252. #endif