cdp_txrx_cmn.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. /*
  2. * Copyright (c) 2011-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_cmn.h
  28. * @brief Define the host data path converged API functions
  29. * called by the host control SW and the OS interface module
  30. */
  31. #ifndef _CDP_TXRX_CMN_H_
  32. #define _CDP_TXRX_CMN_H_
  33. #include "qdf_types.h"
  34. #include "qdf_nbuf.h"
  35. #include "cdp_txrx_ops.h"
  36. /******************************************************************************
  37. *
  38. * Common Data Path Header File
  39. *
  40. *****************************************************************************/
  41. static inline int
  42. cdp_soc_attach_target(ol_txrx_soc_handle soc)
  43. {
  44. if (soc->ops->cmn_drv_ops->txrx_soc_attach_target)
  45. return soc->ops->cmn_drv_ops->txrx_soc_attach_target(soc);
  46. return 0;
  47. }
  48. static inline void *
  49. cdp_vdev_attach(ol_txrx_soc_handle soc, void *pdev,
  50. uint8_t *vdev_mac_addr, uint8_t vdev_id, enum wlan_op_mode op_mode)
  51. {
  52. if (soc->ops->cmn_drv_ops->txrx_vdev_attach)
  53. return soc->ops->cmn_drv_ops->txrx_vdev_attach(pdev,
  54. vdev_mac_addr, vdev_id, op_mode);
  55. return NULL;
  56. }
  57. static inline void
  58. cdp_vdev_detach(ol_txrx_soc_handle soc, void *vdev,
  59. ol_txrx_vdev_delete_cb callback, void *cb_context)
  60. {
  61. if (soc->ops->cmn_drv_ops->txrx_vdev_detach)
  62. return soc->ops->cmn_drv_ops->txrx_vdev_detach(vdev,
  63. callback, cb_context);
  64. return;
  65. }
  66. static inline int
  67. cdp_pdev_attach_target(ol_txrx_soc_handle soc, void *pdev)
  68. {
  69. if (soc->ops->cmn_drv_ops->txrx_pdev_attach_target)
  70. return soc->ops->cmn_drv_ops->txrx_pdev_attach_target(pdev);
  71. return 0;
  72. }
  73. static inline void *cdp_pdev_attach
  74. (ol_txrx_soc_handle soc, void *ctrl_pdev,
  75. HTC_HANDLE htc_pdev, qdf_device_t osdev, uint8_t pdev_id)
  76. {
  77. if (soc->ops->cmn_drv_ops->txrx_pdev_attach)
  78. return soc->ops->cmn_drv_ops->txrx_pdev_attach(soc, ctrl_pdev,
  79. htc_pdev, osdev, pdev_id);
  80. return NULL;
  81. }
  82. static inline int cdp_pdev_post_attach(ol_txrx_soc_handle soc, void *pdev)
  83. {
  84. if (soc->ops->cmn_drv_ops->txrx_pdev_post_attach)
  85. return soc->ops->cmn_drv_ops->txrx_pdev_post_attach(pdev);
  86. return 0;
  87. }
  88. static inline void
  89. cdp_pdev_detach(ol_txrx_soc_handle soc, void *pdev, int force)
  90. {
  91. if (soc->ops->cmn_drv_ops->txrx_pdev_detach)
  92. return soc->ops->cmn_drv_ops->txrx_pdev_detach(pdev, force);
  93. return;
  94. }
  95. static inline void *cdp_peer_attach
  96. (ol_txrx_soc_handle soc, void *vdev,
  97. uint8_t *peer_mac_addr)
  98. {
  99. if (soc->ops->cmn_drv_ops->txrx_peer_attach)
  100. return soc->ops->cmn_drv_ops->txrx_peer_attach(vdev,
  101. peer_mac_addr);
  102. return NULL;
  103. }
  104. static inline void
  105. cdp_peer_detach(ol_txrx_soc_handle soc, void *peer)
  106. {
  107. if (soc->ops->cmn_drv_ops->txrx_peer_detach)
  108. return soc->ops->cmn_drv_ops->txrx_peer_detach(peer);
  109. return;
  110. }
  111. static inline int
  112. cdp_set_monitor_mode(ol_txrx_soc_handle soc, void *vdev)
  113. {
  114. if (soc->ops->cmn_drv_ops->txrx_set_monitor_mode)
  115. return soc->ops->cmn_drv_ops->txrx_set_monitor_mode(vdev);
  116. return 0;
  117. }
  118. static inline void
  119. cdp_set_curchan(ol_txrx_soc_handle soc,
  120. void *pdev,
  121. uint32_t chan_mhz)
  122. {
  123. if (soc->ops->cmn_drv_ops->txrx_set_curchan)
  124. return soc->ops->cmn_drv_ops->txrx_set_curchan(pdev, chan_mhz);
  125. return;
  126. }
  127. static inline void
  128. cdp_set_privacy_filters(ol_txrx_soc_handle soc, void *vdev,
  129. void *filter, uint32_t num)
  130. {
  131. if (soc->ops->cmn_drv_ops->txrx_set_privacy_filters)
  132. return soc->ops->cmn_drv_ops->txrx_set_privacy_filters(vdev,
  133. filter, num);
  134. return;
  135. }
  136. /******************************************************************************
  137. * Data Interface (B Interface)
  138. *****************************************************************************/
  139. static inline void
  140. cdp_vdev_register(ol_txrx_soc_handle soc, void *vdev,
  141. void *osif_vdev, struct ol_txrx_ops *txrx_ops)
  142. {
  143. if (soc->ops->cmn_drv_ops->txrx_vdev_register)
  144. return soc->ops->cmn_drv_ops->txrx_vdev_register(vdev,
  145. osif_vdev, txrx_ops);
  146. return;
  147. }
  148. static inline int
  149. cdp_mgmt_send(ol_txrx_soc_handle soc, void *vdev,
  150. qdf_nbuf_t tx_mgmt_frm, uint8_t type)
  151. {
  152. if (soc->ops->cmn_drv_ops->txrx_mgmt_send)
  153. return soc->ops->cmn_drv_ops->txrx_mgmt_send(vdev,
  154. tx_mgmt_frm, type);
  155. return 0;
  156. }
  157. static inline int
  158. cdp_mgmt_send_ext(ol_txrx_soc_handle soc, void *vdev,
  159. qdf_nbuf_t tx_mgmt_frm, uint8_t type,
  160. uint8_t use_6mbps, uint16_t chanfreq)
  161. {
  162. if (soc->ops->cmn_drv_ops->txrx_mgmt_send_ext)
  163. return soc->ops->cmn_drv_ops->txrx_mgmt_send_ext
  164. (vdev, tx_mgmt_frm, type, use_6mbps, chanfreq);
  165. return 0;
  166. }
  167. static inline void
  168. cdp_mgmt_tx_cb_set(ol_txrx_soc_handle soc, void *pdev,
  169. uint8_t type,
  170. ol_txrx_mgmt_tx_cb download_cb,
  171. ol_txrx_mgmt_tx_cb ota_ack_cb, void *ctxt)
  172. {
  173. if (soc->ops->cmn_drv_ops->txrx_mgmt_tx_cb_set)
  174. return soc->ops->cmn_drv_ops->txrx_mgmt_tx_cb_set
  175. (pdev, type, download_cb, ota_ack_cb, ctxt);
  176. return;
  177. }
  178. static inline int cdp_get_tx_pending(ol_txrx_soc_handle soc,
  179. void *pdev)
  180. {
  181. if (soc->ops->cmn_drv_ops->txrx_get_tx_pending)
  182. return soc->ops->cmn_drv_ops->txrx_get_tx_pending(pdev);
  183. return 0;
  184. }
  185. static inline void
  186. cdp_data_tx_cb_set(ol_txrx_soc_handle soc, void *data_vdev,
  187. ol_txrx_data_tx_cb callback, void *ctxt)
  188. {
  189. if (soc->ops->cmn_drv_ops->txrx_data_tx_cb_set)
  190. return soc->ops->cmn_drv_ops->txrx_data_tx_cb_set(data_vdev,
  191. callback, ctxt);
  192. return;
  193. }
  194. /******************************************************************************
  195. * Statistics and Debugging Interface (C Inteface)
  196. *****************************************************************************/
  197. static inline int
  198. cdp_aggr_cfg(ol_txrx_soc_handle soc, void *vdev,
  199. int max_subfrms_ampdu,
  200. int max_subfrms_amsdu)
  201. {
  202. if (soc->ops->cmn_drv_ops->txrx_aggr_cfg)
  203. return soc->ops->cmn_drv_ops->txrx_aggr_cfg(vdev,
  204. max_subfrms_ampdu, max_subfrms_amsdu);
  205. return 0;
  206. }
  207. static inline int
  208. cdp_fw_stats_get(ol_txrx_soc_handle soc, void *vdev,
  209. struct ol_txrx_stats_req *req, bool per_vdev,
  210. bool response_expected)
  211. {
  212. if (soc->ops->cmn_drv_ops->txrx_fw_stats_get)
  213. return soc->ops->cmn_drv_ops->txrx_fw_stats_get(vdev, req,
  214. per_vdev, response_expected);
  215. return 0;
  216. }
  217. static inline int
  218. cdp_debug(ol_txrx_soc_handle soc, void *vdev, int debug_specs)
  219. {
  220. if (soc->ops->cmn_drv_ops->txrx_debug)
  221. return soc->ops->cmn_drv_ops->txrx_debug(vdev, debug_specs);
  222. return 0;
  223. }
  224. static inline void cdp_fw_stats_cfg(ol_txrx_soc_handle soc,
  225. void *vdev, uint8_t cfg_stats_type, uint32_t cfg_val)
  226. {
  227. if (soc->ops->cmn_drv_ops->txrx_fw_stats_cfg)
  228. return soc->ops->cmn_drv_ops->txrx_fw_stats_cfg(vdev,
  229. cfg_stats_type, cfg_val);
  230. return;
  231. }
  232. static inline void cdp_print_level_set(ol_txrx_soc_handle soc, unsigned level)
  233. {
  234. if (soc->ops->cmn_drv_ops->txrx_print_level_set)
  235. return soc->ops->cmn_drv_ops->txrx_print_level_set(level);
  236. return;
  237. }
  238. static inline uint8_t *
  239. cdp_get_vdev_mac_addr(ol_txrx_soc_handle soc, void *vdev)
  240. {
  241. if (soc->ops->cmn_drv_ops->txrx_get_vdev_mac_addr)
  242. return soc->ops->cmn_drv_ops->txrx_get_vdev_mac_addr(vdev);
  243. return NULL;
  244. }
  245. /**
  246. * cdp_get_vdev_struct_mac_addr() - Return handle to struct qdf_mac_addr of
  247. * vdev
  248. * @vdev: vdev handle
  249. *
  250. * Return: Handle to struct qdf_mac_addr
  251. */
  252. static inline struct qdf_mac_addr *cdp_get_vdev_struct_mac_addr
  253. (ol_txrx_soc_handle soc, void *vdev)
  254. {
  255. if (soc->ops->cmn_drv_ops->txrx_get_vdev_struct_mac_addr)
  256. return soc->ops->cmn_drv_ops->txrx_get_vdev_struct_mac_addr
  257. (vdev);
  258. return NULL;
  259. }
  260. /**
  261. * cdp_get_pdev_from_vdev() - Return handle to pdev of vdev
  262. * @vdev: vdev handle
  263. *
  264. * Return: Handle to pdev
  265. */
  266. static inline void *cdp_get_pdev_from_vdev
  267. (ol_txrx_soc_handle soc, void *vdev)
  268. {
  269. if (soc->ops->cmn_drv_ops->txrx_get_pdev_from_vdev)
  270. return soc->ops->cmn_drv_ops->txrx_get_pdev_from_vdev(vdev);
  271. return NULL;
  272. }
  273. /**
  274. * cdp_get_ctrl_pdev_from_vdev() - Return control pdev of vdev
  275. * @vdev: vdev handle
  276. *
  277. * Return: Handle to control pdev
  278. */
  279. static inline void *
  280. cdp_get_ctrl_pdev_from_vdev(ol_txrx_soc_handle soc, void *vdev)
  281. {
  282. if (soc->ops->cmn_drv_ops->txrx_get_ctrl_pdev_from_vdev)
  283. return soc->ops->cmn_drv_ops->txrx_get_ctrl_pdev_from_vdev
  284. (vdev);
  285. return NULL;
  286. }
  287. static inline void *
  288. cdp_get_vdev_from_vdev_id(ol_txrx_soc_handle soc, void *pdev,
  289. uint8_t vdev_id)
  290. {
  291. if (soc->ops->cmn_drv_ops->txrx_get_vdev_from_vdev_id)
  292. return soc->ops->cmn_drv_ops->txrx_get_vdev_from_vdev_id
  293. (pdev, vdev_id);
  294. return NULL;
  295. }
  296. static inline void
  297. cdp_soc_detach(ol_txrx_soc_handle soc)
  298. {
  299. if (soc->ops->cmn_drv_ops->txrx_soc_detach)
  300. return soc->ops->cmn_drv_ops->txrx_soc_detach((void *)soc);
  301. return;
  302. }
  303. #endif /* _CDP_TXRX_CMN_H_ */