cdp_txrx_cmn_struct.h 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /*
  2. * Copyright (c) 2011-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * @file cdp_txrx_cmn_struct.h
  20. * @brief Define the host data path converged API functions
  21. * called by the host control SW and the OS interface module
  22. */
  23. #ifndef _CDP_TXRX_CMN_STRUCT_H_
  24. #define _CDP_TXRX_CMN_STRUCT_H_
  25. #include "htc_api.h"
  26. #include "htt.h"
  27. #include "qdf_types.h"
  28. #include "qdf_nbuf.h"
  29. typedef struct cdp_soc_t *ol_txrx_soc_handle;
  30. /**
  31. * ol_txrx_vdev_delete_cb - callback registered during vdev
  32. * detach
  33. */
  34. typedef void (*ol_txrx_vdev_delete_cb)(void *context);
  35. /**
  36. * ol_osif_vdev_handle - paque handle for OS shim virtual device
  37. * object
  38. */
  39. struct ol_osif_vdev_t;
  40. typedef struct ol_osif_vdev_t *ol_osif_vdev_handle;
  41. /**
  42. * wlan_op_mode - Virtual device operation mode
  43. * @wlan_op_mode_unknown: Unknown mode
  44. * @wlan_op_mode_ap: AP mode
  45. * @wlan_op_mode_ibss: IBSS mode
  46. * @wlan_op_mode_sta: STA (client) mode
  47. * @wlan_op_mode_monitor: Monitor mode
  48. * @wlan_op_mode_ocb: OCB mode
  49. */
  50. enum wlan_op_mode {
  51. wlan_op_mode_unknown,
  52. wlan_op_mode_ap,
  53. wlan_op_mode_ibss,
  54. wlan_op_mode_sta,
  55. wlan_op_mode_monitor,
  56. wlan_op_mode_ocb,
  57. };
  58. /**
  59. * cdp_mgmt_tx_cb - tx management delivery notification
  60. * callback function
  61. */
  62. typedef void
  63. (*ol_txrx_mgmt_tx_cb)(void *ctxt, qdf_nbuf_t tx_mgmt_frm, int had_error);
  64. /**
  65. * ol_rxrx_data_tx_cb - Function registered with the data path
  66. * that is called when tx frames marked as "no free" are
  67. * done being transmitted
  68. */
  69. typedef void
  70. (*ol_txrx_data_tx_cb)(void *ctxt, qdf_nbuf_t tx_frm, int had_error);
  71. /**
  72. * ol_txrx_tx_fp - top-level transmit function
  73. * @data_vdev - handle to the virtual device object
  74. * @msdu_list - list of network buffers
  75. */
  76. typedef qdf_nbuf_t (*ol_txrx_tx_fp)(void *data_vdev,
  77. qdf_nbuf_t msdu_list);
  78. /**
  79. * ol_txrx_tx_flow_control_fp - tx flow control notification
  80. * function from txrx to OS shim
  81. * @osif_dev - the virtual device's OS shim object
  82. * @tx_resume - tx os q should be resumed or not
  83. */
  84. typedef void (*ol_txrx_tx_flow_control_fp)(void *osif_dev,
  85. bool tx_resume);
  86. /**
  87. * ol_txrx_rx_fp - receive function to hand batches of data
  88. * frames from txrx to OS shim
  89. * @data_vdev - handle to the OSIF virtual device object
  90. * @msdu_list - list of network buffers
  91. */
  92. typedef QDF_STATUS(*ol_txrx_rx_fp)(void *osif_dev, qdf_nbuf_t msdu_list);
  93. /**
  94. * ol_txrx_rx_check_wai_fp - OSIF WAPI receive function
  95. */
  96. typedef bool (*ol_txrx_rx_check_wai_fp)(ol_osif_vdev_handle vdev,
  97. qdf_nbuf_t mpdu_head,
  98. qdf_nbuf_t mpdu_tail);
  99. /**
  100. * ol_txrx_rx_mon_fp - OSIF monitor mode receive function for single
  101. * MPDU (802.11 format)
  102. */
  103. typedef void (*ol_txrx_rx_mon_fp)(ol_osif_vdev_handle vdev,
  104. qdf_nbuf_t mpdu,
  105. void *rx_status);
  106. /**
  107. * ol_txrx_proxy_arp_fp - proxy arp function pointer
  108. */
  109. typedef int (*ol_txrx_proxy_arp_fp)(ol_osif_vdev_handle vdev,
  110. qdf_nbuf_t netbuf);
  111. /**
  112. * ol_txrx_stats_callback - statistics notify callback
  113. */
  114. typedef void (*ol_txrx_stats_callback)(void *ctxt,
  115. enum htt_dbg_stats_type type,
  116. uint8_t *buf, int bytes);
  117. /**
  118. * ol_txrx_ops - (pointers to) the functions used for tx and rx
  119. * data xfer
  120. *
  121. * There are two portions of these txrx operations.
  122. * The rx portion is filled in by OSIF SW before calling
  123. * ol_txrx_osif_vdev_register; inside the ol_txrx_osif_vdev_register
  124. * the txrx SW stores a copy of these rx function pointers, to use
  125. * as it delivers rx data frames to the OSIF SW.
  126. * The tx portion is filled in by the txrx SW inside
  127. * ol_txrx_osif_vdev_register; when the function call returns,
  128. * the OSIF SW stores a copy of these tx functions to use as it
  129. * delivers tx data frames to the txrx SW.
  130. *
  131. * @tx.std - the tx function pointer for standard data
  132. * frames This function pointer is set by the txrx SW
  133. * perform host-side transmit operations based on
  134. * whether a HL or LL host/target interface is in use.
  135. * @tx.flow_control_cb - the transmit flow control
  136. * function that is registered by the
  137. * OSIF which is called from txrx to
  138. * indicate whether the transmit OS
  139. * queues should be paused/resumed
  140. * @rx.std - the OS shim rx function to deliver rx data
  141. * frames to. This can have different values for
  142. * different virtual devices, e.g. so one virtual
  143. * device's OS shim directly hands rx frames to the OS,
  144. * but another virtual device's OS shim filters out P2P
  145. * messages before sending the rx frames to the OS. The
  146. * netbufs delivered to the osif_rx function are in the
  147. * format specified by the OS to use for tx and rx
  148. * frames (either 802.3 or native WiFi)
  149. * @rx.wai_check - the tx function pointer for WAPI frames
  150. * @rx.mon - the OS shim rx monitor function to deliver
  151. * monitor data to Though in practice, it is probable
  152. * that the same function will be used for delivering
  153. * rx monitor data for all virtual devices, in theory
  154. * each different virtual device can have a different
  155. * OS shim function for accepting rx monitor data. The
  156. * netbufs delivered to the osif_rx_mon function are in
  157. * 802.11 format. Each netbuf holds a 802.11 MPDU, not
  158. * an 802.11 MSDU. Depending on compile-time
  159. * configuration, each netbuf may also have a
  160. * monitor-mode encapsulation header such as a radiotap
  161. * header added before the MPDU contents.
  162. * @proxy_arp - proxy arp function pointer - specified by
  163. * OS shim, stored by txrx
  164. */
  165. struct ol_txrx_ops {
  166. /* tx function pointers - specified by txrx, stored by OS shim */
  167. struct {
  168. ol_txrx_tx_fp tx;
  169. } tx;
  170. /* rx function pointers - specified by OS shim, stored by txrx */
  171. struct {
  172. ol_txrx_rx_fp rx;
  173. ol_txrx_rx_check_wai_fp wai_check;
  174. ol_txrx_rx_mon_fp mon;
  175. } rx;
  176. /* proxy arp function pointer - specified by OS shim, stored by txrx */
  177. ol_txrx_proxy_arp_fp proxy_arp;
  178. };
  179. /**
  180. * ol_txrx_stats_req - specifications of the requested
  181. * statistics
  182. */
  183. struct ol_txrx_stats_req {
  184. uint32_t stats_type_upload_mask; /* which stats to upload */
  185. uint32_t stats_type_reset_mask; /* which stats to reset */
  186. /* stats will be printed if either print element is set */
  187. struct {
  188. int verbose; /* verbose stats printout */
  189. int concise; /* concise stats printout (takes precedence) */
  190. } print; /* print uploaded stats */
  191. /* stats notify callback will be invoked if fp is non-NULL */
  192. struct {
  193. ol_txrx_stats_callback fp;
  194. void *ctxt;
  195. } callback;
  196. /* stats will be copied into the specified buffer if buf is non-NULL */
  197. struct {
  198. uint8_t *buf;
  199. int byte_limit; /* don't copy more than this */
  200. } copy;
  201. /*
  202. * If blocking is true, the caller will take the specified semaphore
  203. * to wait for the stats to be uploaded, and the driver will release
  204. * the semaphore when the stats are done being uploaded.
  205. */
  206. struct {
  207. int blocking;
  208. /*Note: this needs to change to some qdf_* type */
  209. qdf_semaphore_t *sem_ptr;
  210. } wait;
  211. };
  212. /* DP soc struct definition */
  213. struct cdp_soc_t {
  214. struct cdp_ops *ops;
  215. struct ol_if_ops *ol_ops;
  216. };
  217. #define TXRX_FW_STATS_TXSTATS 1
  218. #define TXRX_FW_STATS_RXSTATS 2
  219. #define TXRX_FW_STATS_RX_RATE_INFO 3
  220. #define TXRX_FW_STATS_PHYSTATS 4
  221. #define TXRX_FW_STATS_PHYSTATS_CONCISE 5
  222. #define TXRX_FW_STATS_TX_RATE_INFO 6
  223. #define TXRX_FW_STATS_TID_STATE 7
  224. #define TXRX_FW_STATS_HOST_STATS 8
  225. #define TXRX_FW_STATS_CLEAR_HOST_STATS 9
  226. #define TXRX_FW_STATS_CE_STATS 10
  227. #define TXRX_FW_STATS_VOW_UMAC_COUNTER 11
  228. #define TXRX_FW_STATS_ME_STATS 12
  229. #define TXRX_FW_STATS_TXBF_INFO 13
  230. #define TXRX_FW_STATS_SND_INFO 14
  231. #define TXRX_FW_STATS_ERROR_INFO 15
  232. #define TXRX_FW_STATS_TX_SELFGEN_INFO 16
  233. #define TXRX_FW_STATS_TX_MU_INFO 17
  234. #define TXRX_FW_SIFS_RESP_INFO 18
  235. #define TXRX_FW_RESET_STATS 19
  236. #define TXRX_FW_MAC_WDOG_STATS 20
  237. #define TXRX_FW_MAC_DESC_STATS 21
  238. #define TXRX_FW_MAC_FETCH_MGR_STATS 22
  239. #define TXRX_FW_MAC_PREFETCH_MGR_STATS 23
  240. #endif