cdp_txrx_cmn.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  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 void
  83. cdp_pdev_detach(ol_txrx_soc_handle soc, void *pdev, int force)
  84. {
  85. if (soc->ops->cmn_drv_ops->txrx_pdev_detach)
  86. return soc->ops->cmn_drv_ops->txrx_pdev_detach(pdev, force);
  87. return;
  88. }
  89. static inline void *cdp_peer_attach
  90. (ol_txrx_soc_handle soc, void *vdev,
  91. uint8_t *peer_mac_addr)
  92. {
  93. if (soc->ops->cmn_drv_ops->txrx_peer_attach)
  94. return soc->ops->cmn_drv_ops->txrx_peer_attach(vdev,
  95. peer_mac_addr);
  96. return NULL;
  97. }
  98. static inline void
  99. cdp_peer_detach(ol_txrx_soc_handle soc, void *peer)
  100. {
  101. if (soc->ops->cmn_drv_ops->txrx_peer_detach)
  102. return soc->ops->cmn_drv_ops->txrx_peer_detach(peer);
  103. return;
  104. }
  105. static inline int
  106. cdp_set_monitor_mode(ol_txrx_soc_handle soc, void *vdev)
  107. {
  108. if (soc->ops->cmn_drv_ops->txrx_set_monitor_mode)
  109. return soc->ops->cmn_drv_ops->txrx_set_monitor_mode(vdev);
  110. return 0;
  111. }
  112. static inline void
  113. cdp_set_curchan(ol_txrx_soc_handle soc,
  114. void *pdev,
  115. uint32_t chan_mhz)
  116. {
  117. if (soc->ops->cmn_drv_ops->txrx_set_curchan)
  118. return soc->ops->cmn_drv_ops->txrx_set_curchan(pdev, chan_mhz);
  119. return;
  120. }
  121. static inline void
  122. cdp_set_privacy_filters(ol_txrx_soc_handle soc, void *vdev,
  123. void *filter, uint32_t num)
  124. {
  125. if (soc->ops->cmn_drv_ops->txrx_set_privacy_filters)
  126. return soc->ops->cmn_drv_ops->txrx_set_privacy_filters(vdev,
  127. filter, num);
  128. return;
  129. }
  130. /******************************************************************************
  131. * Data Interface (B Interface)
  132. *****************************************************************************/
  133. static inline void
  134. cdp_vdev_register(ol_txrx_soc_handle soc, void *vdev,
  135. void *osif_vdev, struct ol_txrx_ops *txrx_ops)
  136. {
  137. if (soc->ops->cmn_drv_ops->txrx_vdev_register)
  138. return soc->ops->cmn_drv_ops->txrx_vdev_register(vdev,
  139. osif_vdev, txrx_ops);
  140. return;
  141. }
  142. static inline int
  143. cdp_mgmt_send(ol_txrx_soc_handle soc, void *vdev,
  144. qdf_nbuf_t tx_mgmt_frm, uint8_t type)
  145. {
  146. if (soc->ops->cmn_drv_ops->txrx_mgmt_send)
  147. return soc->ops->cmn_drv_ops->txrx_mgmt_send(vdev,
  148. tx_mgmt_frm, type);
  149. return 0;
  150. }
  151. static inline int
  152. cdp_mgmt_send_ext(ol_txrx_soc_handle soc, void *vdev,
  153. qdf_nbuf_t tx_mgmt_frm, uint8_t type,
  154. uint8_t use_6mbps, uint16_t chanfreq)
  155. {
  156. if (soc->ops->cmn_drv_ops->txrx_mgmt_send_ext)
  157. return soc->ops->cmn_drv_ops->txrx_mgmt_send_ext
  158. (vdev, tx_mgmt_frm, type, use_6mbps, chanfreq);
  159. return 0;
  160. }
  161. static inline void
  162. cdp_mgmt_tx_cb_set(ol_txrx_soc_handle soc, void *pdev,
  163. uint8_t type,
  164. ol_txrx_mgmt_tx_cb download_cb,
  165. ol_txrx_mgmt_tx_cb ota_ack_cb, void *ctxt)
  166. {
  167. if (soc->ops->cmn_drv_ops->txrx_mgmt_tx_cb_set)
  168. return soc->ops->cmn_drv_ops->txrx_mgmt_tx_cb_set
  169. (pdev, type, download_cb, ota_ack_cb, ctxt);
  170. return;
  171. }
  172. static inline int cdp_get_tx_pending(ol_txrx_soc_handle soc,
  173. void *pdev)
  174. {
  175. if (soc->ops->cmn_drv_ops->txrx_get_tx_pending)
  176. return soc->ops->cmn_drv_ops->txrx_get_tx_pending(pdev);
  177. return 0;
  178. }
  179. static inline void
  180. cdp_data_tx_cb_set(ol_txrx_soc_handle soc, void *data_vdev,
  181. ol_txrx_data_tx_cb callback, void *ctxt)
  182. {
  183. if (soc->ops->cmn_drv_ops->txrx_data_tx_cb_set)
  184. return soc->ops->cmn_drv_ops->txrx_data_tx_cb_set(data_vdev,
  185. callback, ctxt);
  186. return;
  187. }
  188. /******************************************************************************
  189. * Statistics and Debugging Interface (C Inteface)
  190. *****************************************************************************/
  191. static inline int
  192. cdp_aggr_cfg(ol_txrx_soc_handle soc, void *vdev,
  193. int max_subfrms_ampdu,
  194. int max_subfrms_amsdu)
  195. {
  196. if (soc->ops->cmn_drv_ops->txrx_aggr_cfg)
  197. return soc->ops->cmn_drv_ops->txrx_aggr_cfg(vdev,
  198. max_subfrms_ampdu, max_subfrms_amsdu);
  199. return 0;
  200. }
  201. static inline int
  202. cdp_fw_stats_get(ol_txrx_soc_handle soc, void *vdev,
  203. struct ol_txrx_stats_req *req, bool per_vdev,
  204. bool response_expected)
  205. {
  206. if (soc->ops->cmn_drv_ops->txrx_fw_stats_get)
  207. return soc->ops->cmn_drv_ops->txrx_fw_stats_get(vdev, req,
  208. per_vdev, response_expected);
  209. return 0;
  210. }
  211. static inline int
  212. cdp_debug(ol_txrx_soc_handle soc, void *vdev, int debug_specs)
  213. {
  214. if (soc->ops->cmn_drv_ops->txrx_debug)
  215. return soc->ops->cmn_drv_ops->txrx_debug(vdev, debug_specs);
  216. return 0;
  217. }
  218. static inline void cdp_fw_stats_cfg(ol_txrx_soc_handle soc,
  219. void *vdev, uint8_t cfg_stats_type, uint32_t cfg_val)
  220. {
  221. if (soc->ops->cmn_drv_ops->txrx_fw_stats_cfg)
  222. return soc->ops->cmn_drv_ops->txrx_fw_stats_cfg(vdev,
  223. cfg_stats_type, cfg_val);
  224. return;
  225. }
  226. static inline void cdp_print_level_set(ol_txrx_soc_handle soc, unsigned level)
  227. {
  228. if (soc->ops->cmn_drv_ops->txrx_print_level_set)
  229. return soc->ops->cmn_drv_ops->txrx_print_level_set(level);
  230. return;
  231. }
  232. static inline uint8_t *
  233. cdp_get_vdev_mac_addr(ol_txrx_soc_handle soc, void *vdev)
  234. {
  235. if (soc->ops->cmn_drv_ops->txrx_get_vdev_mac_addr)
  236. return soc->ops->cmn_drv_ops->txrx_get_vdev_mac_addr(vdev);
  237. return NULL;
  238. }
  239. /**
  240. * cdp_get_vdev_struct_mac_addr() - Return handle to struct qdf_mac_addr of
  241. * vdev
  242. * @vdev: vdev handle
  243. *
  244. * Return: Handle to struct qdf_mac_addr
  245. */
  246. static inline struct qdf_mac_addr *cdp_get_vdev_struct_mac_addr
  247. (ol_txrx_soc_handle soc, void *vdev)
  248. {
  249. if (soc->ops->cmn_drv_ops->txrx_get_vdev_struct_mac_addr)
  250. return soc->ops->cmn_drv_ops->txrx_get_vdev_struct_mac_addr
  251. (vdev);
  252. return NULL;
  253. }
  254. /**
  255. * cdp_get_pdev_from_vdev() - Return handle to pdev of vdev
  256. * @vdev: vdev handle
  257. *
  258. * Return: Handle to pdev
  259. */
  260. static inline void *cdp_get_pdev_from_vdev
  261. (ol_txrx_soc_handle soc, void *vdev)
  262. {
  263. if (soc->ops->cmn_drv_ops->txrx_get_pdev_from_vdev)
  264. return soc->ops->cmn_drv_ops->txrx_get_pdev_from_vdev(vdev);
  265. return NULL;
  266. }
  267. /**
  268. * cdp_get_ctrl_pdev_from_vdev() - Return control pdev of vdev
  269. * @vdev: vdev handle
  270. *
  271. * Return: Handle to control pdev
  272. */
  273. static inline void *
  274. cdp_get_ctrl_pdev_from_vdev(ol_txrx_soc_handle soc, void *vdev)
  275. {
  276. if (soc->ops->cmn_drv_ops->txrx_get_ctrl_pdev_from_vdev)
  277. return soc->ops->cmn_drv_ops->txrx_get_ctrl_pdev_from_vdev
  278. (vdev);
  279. return NULL;
  280. }
  281. static inline void *
  282. cdp_get_vdev_from_vdev_id(ol_txrx_soc_handle soc, uint8_t vdev_id)
  283. {
  284. if (soc->ops->cmn_drv_ops->txrx_get_vdev_from_vdev_id)
  285. return soc->ops->cmn_drv_ops->txrx_get_vdev_from_vdev_id
  286. (vdev_id);
  287. return NULL;
  288. }
  289. static inline void
  290. cdp_soc_detach(ol_txrx_soc_handle soc)
  291. {
  292. if (soc->ops->cmn_drv_ops->txrx_soc_detach)
  293. return soc->ops->cmn_drv_ops->txrx_soc_detach((void *)soc);
  294. return;
  295. }
  296. #endif /* _CDP_TXRX_CMN_H_ */