cdp_txrx_cmn_struct.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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 "qdf_types.h"
  27. #include "qdf_nbuf.h"
  28. /*
  29. * htt_dbg_stats_type -
  30. * bit positions for each stats type within a stats type bitmask
  31. * The bitmask contains 24 bits.
  32. */
  33. enum htt_cmn_dbg_stats_type {
  34. HTT_DBG_CMN_STATS_WAL_PDEV_TXRX = 0, /* bit 0 -> 0x1 */
  35. HTT_DBG_CMN_STATS_RX_REORDER = 1, /* bit 1 -> 0x2 */
  36. HTT_DBG_CMN_STATS_RX_RATE_INFO = 2, /* bit 2 -> 0x4 */
  37. HTT_DBG_CMN_STATS_TX_PPDU_LOG = 3, /* bit 3 -> 0x8 */
  38. HTT_DBG_CMN_STATS_TX_RATE_INFO = 4, /* bit 4 -> 0x10 */
  39. HTT_DBG_CMN_STATS_TIDQ = 5, /* bit 5 -> 0x20 */
  40. HTT_DBG_CMN_STATS_TXBF_INFO = 6, /* bit 6 -> 0x40 */
  41. HTT_DBG_CMN_STATS_SND_INFO = 7, /* bit 7 -> 0x80 */
  42. HTT_DBG_CMN_STATS_ERROR_INFO = 8, /* bit 8 -> 0x100 */
  43. HTT_DBG_CMN_STATS_TX_SELFGEN_INFO = 9, /* bit 9 -> 0x200 */
  44. HTT_DBG_CMN_STATS_TX_MU_INFO = 10, /* bit 10 -> 0x400 */
  45. HTT_DBG_CMN_STATS_SIFS_RESP_INFO = 11, /* bit 11 -> 0x800 */
  46. HTT_DBG_CMN_STATS_RESET_INFO = 12, /* bit 12 -> 0x1000 */
  47. HTT_DBG_CMN_STATS_MAC_WDOG_INFO = 13, /* bit 13 -> 0x2000 */
  48. HTT_DBG_CMN_STATS_TX_DESC_INFO = 14, /* bit 14 -> 0x4000 */
  49. HTT_DBG_CMN_STATS_TX_FETCH_MGR_INFO = 15, /* bit 15 -> 0x8000 */
  50. HTT_DBG_CMN_STATS_TX_PFSCHED_INFO = 16, /* bit 16 -> 0x10000 */
  51. HTT_DBG_CMN_STATS_TX_PATH_STATS_INFO = 17, /* bit 17 -> 0x20000 */
  52. /* bits 18-23 currently reserved */
  53. /* keep this last */
  54. HTT_DBG_CMN_NUM_STATS
  55. };
  56. /**
  57. * @brief General specification of the tx frame contents
  58. *
  59. * @details
  60. * for efficiency, the HTT packet type values correspond
  61. * to the bit positions of the WAL packet type values, so the
  62. * translation is a simple shift operation.
  63. */
  64. enum htt_cmn_pkt_type {
  65. htt_cmn_pkt_type_raw = 0,
  66. htt_cmn_pkt_type_native_wifi = 1,
  67. htt_cmn_pkt_type_ethernet = 2,
  68. /* keep this last */
  69. htt_cmn_pkt_num_types
  70. };
  71. enum htt_cmn_t2h_en_stats_type {
  72. /* keep this alwyas first */
  73. HTT_CMN_T2H_EN_STATS_TYPE_START = 0,
  74. /** ppdu_common_stats is the payload */
  75. HTT_CMN_T2H_EN_STATS_TYPE_COMMON = 1,
  76. /** ppdu_sant_stats is the payload */
  77. HTT_CMN_T2H_EN_STATS_TYPE_SANT = 2,
  78. /** ppdu_common_stats_v2 is the payload */
  79. HTT_CMN_T2H_EN_STATS_TYPE_COMMON_V2 = 3,
  80. /* Keep this last */
  81. HTT_CMN_T2H_EN_STATS_TYPE_END = 0x1f,
  82. };
  83. enum htt_cmn_t2h_en_stats_status {
  84. /* Keep this first always */
  85. HTT_CMN_T2H_EN_STATS_STATUS_PARTIAL = 0,
  86. HTT_CMN_T2H_EN_STATS_STATUS_PRESENT = 1,
  87. HTT_CMN_T2H_EN_STATS_STATUS_ERROR = 2,
  88. HTT_CMN_T2H_EN_STATS_STATUS_INVALID = 3,
  89. /* keep this always last */
  90. HTT_CMN_T2H_EN_STATS_STATUS_SERIES_DONE = 7,
  91. };
  92. typedef struct cdp_soc_t *ol_txrx_soc_handle;
  93. /**
  94. * ol_txrx_vdev_delete_cb - callback registered during vdev
  95. * detach
  96. */
  97. typedef void (*ol_txrx_vdev_delete_cb)(void *context);
  98. /**
  99. * ol_osif_vdev_handle - paque handle for OS shim virtual device
  100. * object
  101. */
  102. struct ol_osif_vdev_t;
  103. typedef struct ol_osif_vdev_t *ol_osif_vdev_handle;
  104. /**
  105. * wlan_op_mode - Virtual device operation mode
  106. * @wlan_op_mode_unknown: Unknown mode
  107. * @wlan_op_mode_ap: AP mode
  108. * @wlan_op_mode_ibss: IBSS mode
  109. * @wlan_op_mode_sta: STA (client) mode
  110. * @wlan_op_mode_monitor: Monitor mode
  111. * @wlan_op_mode_ocb: OCB mode
  112. */
  113. enum wlan_op_mode {
  114. wlan_op_mode_unknown,
  115. wlan_op_mode_ap,
  116. wlan_op_mode_ibss,
  117. wlan_op_mode_sta,
  118. wlan_op_mode_monitor,
  119. wlan_op_mode_ocb,
  120. };
  121. /**
  122. * cdp_mgmt_tx_cb - tx management delivery notification
  123. * callback function
  124. */
  125. typedef void
  126. (*ol_txrx_mgmt_tx_cb)(void *ctxt, qdf_nbuf_t tx_mgmt_frm, int had_error);
  127. /**
  128. * ol_rxrx_data_tx_cb - Function registered with the data path
  129. * that is called when tx frames marked as "no free" are
  130. * done being transmitted
  131. */
  132. typedef void
  133. (*ol_txrx_data_tx_cb)(void *ctxt, qdf_nbuf_t tx_frm, int had_error);
  134. /**
  135. * ol_txrx_tx_fp - top-level transmit function
  136. * @data_vdev - handle to the virtual device object
  137. * @msdu_list - list of network buffers
  138. */
  139. typedef qdf_nbuf_t (*ol_txrx_tx_fp)(void *data_vdev,
  140. qdf_nbuf_t msdu_list);
  141. /**
  142. * ol_txrx_tx_flow_control_fp - tx flow control notification
  143. * function from txrx to OS shim
  144. * @osif_dev - the virtual device's OS shim object
  145. * @tx_resume - tx os q should be resumed or not
  146. */
  147. typedef void (*ol_txrx_tx_flow_control_fp)(void *osif_dev,
  148. bool tx_resume);
  149. /**
  150. * ol_txrx_rx_fp - receive function to hand batches of data
  151. * frames from txrx to OS shim
  152. * @data_vdev - handle to the OSIF virtual device object
  153. * @msdu_list - list of network buffers
  154. */
  155. typedef QDF_STATUS(*ol_txrx_rx_fp)(void *osif_dev, qdf_nbuf_t msdu_list);
  156. /**
  157. * ol_txrx_rx_check_wai_fp - OSIF WAPI receive function
  158. */
  159. typedef bool (*ol_txrx_rx_check_wai_fp)(ol_osif_vdev_handle vdev,
  160. qdf_nbuf_t mpdu_head,
  161. qdf_nbuf_t mpdu_tail);
  162. /**
  163. * ol_txrx_rx_mon_fp - OSIF monitor mode receive function for single
  164. * MPDU (802.11 format)
  165. */
  166. typedef void (*ol_txrx_rx_mon_fp)(ol_osif_vdev_handle vdev,
  167. qdf_nbuf_t mpdu,
  168. void *rx_status);
  169. /**
  170. * ol_txrx_proxy_arp_fp - proxy arp function pointer
  171. */
  172. typedef int (*ol_txrx_proxy_arp_fp)(ol_osif_vdev_handle vdev,
  173. qdf_nbuf_t netbuf);
  174. /**
  175. * ol_txrx_stats_callback - statistics notify callback
  176. */
  177. typedef void (*ol_txrx_stats_callback)(void *ctxt,
  178. enum htt_cmn_dbg_stats_type type,
  179. uint8_t *buf, int bytes);
  180. /**
  181. * ol_txrx_ops - (pointers to) the functions used for tx and rx
  182. * data xfer
  183. *
  184. * There are two portions of these txrx operations.
  185. * The rx portion is filled in by OSIF SW before calling
  186. * ol_txrx_osif_vdev_register; inside the ol_txrx_osif_vdev_register
  187. * the txrx SW stores a copy of these rx function pointers, to use
  188. * as it delivers rx data frames to the OSIF SW.
  189. * The tx portion is filled in by the txrx SW inside
  190. * ol_txrx_osif_vdev_register; when the function call returns,
  191. * the OSIF SW stores a copy of these tx functions to use as it
  192. * delivers tx data frames to the txrx SW.
  193. *
  194. * @tx.std - the tx function pointer for standard data
  195. * frames This function pointer is set by the txrx SW
  196. * perform host-side transmit operations based on
  197. * whether a HL or LL host/target interface is in use.
  198. * @tx.flow_control_cb - the transmit flow control
  199. * function that is registered by the
  200. * OSIF which is called from txrx to
  201. * indicate whether the transmit OS
  202. * queues should be paused/resumed
  203. * @rx.std - the OS shim rx function to deliver rx data
  204. * frames to. This can have different values for
  205. * different virtual devices, e.g. so one virtual
  206. * device's OS shim directly hands rx frames to the OS,
  207. * but another virtual device's OS shim filters out P2P
  208. * messages before sending the rx frames to the OS. The
  209. * netbufs delivered to the osif_rx function are in the
  210. * format specified by the OS to use for tx and rx
  211. * frames (either 802.3 or native WiFi)
  212. * @rx.wai_check - the tx function pointer for WAPI frames
  213. * @rx.mon - the OS shim rx monitor function to deliver
  214. * monitor data to Though in practice, it is probable
  215. * that the same function will be used for delivering
  216. * rx monitor data for all virtual devices, in theory
  217. * each different virtual device can have a different
  218. * OS shim function for accepting rx monitor data. The
  219. * netbufs delivered to the osif_rx_mon function are in
  220. * 802.11 format. Each netbuf holds a 802.11 MPDU, not
  221. * an 802.11 MSDU. Depending on compile-time
  222. * configuration, each netbuf may also have a
  223. * monitor-mode encapsulation header such as a radiotap
  224. * header added before the MPDU contents.
  225. * @proxy_arp - proxy arp function pointer - specified by
  226. * OS shim, stored by txrx
  227. */
  228. struct ol_txrx_ops {
  229. /* tx function pointers - specified by txrx, stored by OS shim */
  230. struct {
  231. ol_txrx_tx_fp tx;
  232. } tx;
  233. /* rx function pointers - specified by OS shim, stored by txrx */
  234. struct {
  235. ol_txrx_rx_fp rx;
  236. ol_txrx_rx_check_wai_fp wai_check;
  237. ol_txrx_rx_mon_fp mon;
  238. } rx;
  239. /* proxy arp function pointer - specified by OS shim, stored by txrx */
  240. ol_txrx_proxy_arp_fp proxy_arp;
  241. };
  242. /**
  243. * ol_txrx_stats_req - specifications of the requested
  244. * statistics
  245. */
  246. struct ol_txrx_stats_req {
  247. uint32_t stats_type_upload_mask; /* which stats to upload */
  248. uint32_t stats_type_reset_mask; /* which stats to reset */
  249. /* stats will be printed if either print element is set */
  250. struct {
  251. int verbose; /* verbose stats printout */
  252. int concise; /* concise stats printout (takes precedence) */
  253. } print; /* print uploaded stats */
  254. /* stats notify callback will be invoked if fp is non-NULL */
  255. struct {
  256. ol_txrx_stats_callback fp;
  257. void *ctxt;
  258. } callback;
  259. /* stats will be copied into the specified buffer if buf is non-NULL */
  260. struct {
  261. uint8_t *buf;
  262. int byte_limit; /* don't copy more than this */
  263. } copy;
  264. /*
  265. * If blocking is true, the caller will take the specified semaphore
  266. * to wait for the stats to be uploaded, and the driver will release
  267. * the semaphore when the stats are done being uploaded.
  268. */
  269. struct {
  270. int blocking;
  271. /*Note: this needs to change to some qdf_* type */
  272. qdf_semaphore_t *sem_ptr;
  273. } wait;
  274. };
  275. /* DP soc struct definition */
  276. struct cdp_soc_t {
  277. struct cdp_ops *ops;
  278. struct ol_if_ops *ol_ops;
  279. };
  280. #define TXRX_FW_STATS_TXSTATS 1
  281. #define TXRX_FW_STATS_RXSTATS 2
  282. #define TXRX_FW_STATS_RX_RATE_INFO 3
  283. #define TXRX_FW_STATS_PHYSTATS 4
  284. #define TXRX_FW_STATS_PHYSTATS_CONCISE 5
  285. #define TXRX_FW_STATS_TX_RATE_INFO 6
  286. #define TXRX_FW_STATS_TID_STATE 7
  287. #define TXRX_FW_STATS_HOST_STATS 8
  288. #define TXRX_FW_STATS_CLEAR_HOST_STATS 9
  289. #define TXRX_FW_STATS_CE_STATS 10
  290. #define TXRX_FW_STATS_VOW_UMAC_COUNTER 11
  291. #define TXRX_FW_STATS_ME_STATS 12
  292. #define TXRX_FW_STATS_TXBF_INFO 13
  293. #define TXRX_FW_STATS_SND_INFO 14
  294. #define TXRX_FW_STATS_ERROR_INFO 15
  295. #define TXRX_FW_STATS_TX_SELFGEN_INFO 16
  296. #define TXRX_FW_STATS_TX_MU_INFO 17
  297. #define TXRX_FW_SIFS_RESP_INFO 18
  298. #define TXRX_FW_RESET_STATS 19
  299. #define TXRX_FW_MAC_WDOG_STATS 20
  300. #define TXRX_FW_MAC_DESC_STATS 21
  301. #define TXRX_FW_MAC_FETCH_MGR_STATS 22
  302. #define TXRX_FW_MAC_PREFETCH_MGR_STATS 23
  303. #endif