cdp_txrx_mob_def.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. /*
  2. * Copyright (c) 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. #ifndef __CDP_TXRX_MOB_DEF_H
  19. #define __CDP_TXRX_MOB_DEF_H
  20. #include <sir_types.h>
  21. #include <htt.h>
  22. #define OL_TXQ_PAUSE_REASON_FW (1 << 0)
  23. #define OL_TXQ_PAUSE_REASON_PEER_UNAUTHORIZED (1 << 1)
  24. #define OL_TXQ_PAUSE_REASON_TX_ABORT (1 << 2)
  25. #define OL_TXQ_PAUSE_REASON_VDEV_STOP (1 << 3)
  26. #define OL_TXQ_PAUSE_REASON_THERMAL_MITIGATION (1 << 4)
  27. /* command options for dumpStats*/
  28. #define WLAN_HDD_STATS 0
  29. #define WLAN_TXRX_STATS 1
  30. #define WLAN_TXRX_HIST_STATS 2
  31. #define WLAN_TXRX_TSO_STATS 3
  32. #define WLAN_HDD_NETIF_OPER_HISTORY 4
  33. #define WLAN_DUMP_TX_FLOW_POOL_INFO 5
  34. #define WLAN_TXRX_DESC_STATS 6
  35. #define WLAN_HIF_STATS 7
  36. #define WLAN_LRO_STATS 8
  37. #define WLAN_SCHEDULER_STATS 21
  38. #define WLAN_TX_QUEUE_STATS 22
  39. #define WLAN_BUNDLE_STATS 23
  40. #define WLAN_CREDIT_STATS 24
  41. #define OL_TXRX_INVALID_NUM_PEERS (-1)
  42. #define OL_TXRX_MAC_ADDR_LEN 6
  43. /* Maximum number of station supported by data path, including BC. */
  44. #define WLAN_MAX_STA_COUNT (HAL_NUM_STA)
  45. /* The symbolic station ID return to HDD to specify the packet is bc/mc */
  46. #define WLAN_RX_BCMC_STA_ID (WLAN_MAX_STA_COUNT + 1)
  47. /* The symbolic station ID return to HDD to specify the packet is
  48. to soft-AP itself */
  49. #define WLAN_RX_SAP_SELF_STA_ID (WLAN_MAX_STA_COUNT + 2)
  50. /* is 802.11 address multicast/broadcast? */
  51. #define IEEE80211_IS_MULTICAST(_a) (*(_a) & 0x01)
  52. #define MAX_PEERS 32
  53. /*
  54. * Bins used for reporting delay histogram:
  55. * bin 0: 0 - 10 ms delay
  56. * bin 1: 10 - 20 ms delay
  57. * bin 2: 20 - 40 ms delay
  58. * bin 3: 40 - 80 ms delay
  59. * bin 4: 80 - 160 ms delay
  60. * bin 5: > 160 ms delay
  61. */
  62. #define QCA_TX_DELAY_HIST_REPORT_BINS 6
  63. /* BA actions */
  64. #define IEEE80211_ACTION_BA_ADDBA_REQUEST 0 /* ADDBA request */
  65. #define IEEE80211_ACTION_BA_ADDBA_RESPONSE 1 /* ADDBA response */
  66. #define IEEE80211_ACTION_BA_DELBA 2 /* DELBA */
  67. #define IEEE80211_BA_POLICY_DELAYED 0
  68. #define IEEE80211_BA_POLICY_IMMEDIATE 1
  69. #define IEEE80211_BA_AMSDU_SUPPORTED 1
  70. /**
  71. * enum netif_action_type - Type of actions on netif queues
  72. * @WLAN_STOP_ALL_NETIF_QUEUE: stop all netif queues
  73. * @WLAN_START_ALL_NETIF_QUEUE: start all netif queues
  74. * @WLAN_WAKE_ALL_NETIF_QUEUE: wake all netif queues
  75. * @WLAN_STOP_ALL_NETIF_QUEUE_N_CARRIER: stop all queues and off carrier
  76. * @WLAN_START_ALL_NETIF_QUEUE_N_CARRIER: start all queues and on carrier
  77. * @WLAN_NETIF_TX_DISABLE: disable tx
  78. * @WLAN_NETIF_TX_DISABLE_N_CARRIER: disable tx and off carrier
  79. * @WLAN_NETIF_CARRIER_ON: on carrier
  80. * @WLAN_NETIF_CARRIER_OFF: off carrier
  81. */
  82. enum netif_action_type {
  83. WLAN_STOP_ALL_NETIF_QUEUE = 1,
  84. WLAN_START_ALL_NETIF_QUEUE,
  85. WLAN_WAKE_ALL_NETIF_QUEUE,
  86. WLAN_STOP_ALL_NETIF_QUEUE_N_CARRIER,
  87. WLAN_START_ALL_NETIF_QUEUE_N_CARRIER,
  88. WLAN_NETIF_TX_DISABLE,
  89. WLAN_NETIF_TX_DISABLE_N_CARRIER,
  90. WLAN_NETIF_CARRIER_ON,
  91. WLAN_NETIF_CARRIER_OFF,
  92. WLAN_NETIF_ACTION_TYPE_MAX,
  93. };
  94. /**
  95. * enum netif_reason_type - reason for netif queue action
  96. * @WLAN_CONTROL_PATH: action from control path
  97. * @WLAN_DATA_FLOW_CONTROL: because of flow control
  98. * @WLAN_FW_PAUSE: because of firmware pause
  99. * @WLAN_TX_ABORT: because of tx abort
  100. * @WLAN_VDEV_STOP: because of vdev stop
  101. * @WLAN_PEER_UNAUTHORISED: because of peer is unauthorised
  102. * @WLAN_THERMAL_MITIGATION: because of thermal mitigation
  103. */
  104. enum netif_reason_type {
  105. WLAN_CONTROL_PATH = 1,
  106. WLAN_DATA_FLOW_CONTROL,
  107. WLAN_FW_PAUSE,
  108. WLAN_TX_ABORT,
  109. WLAN_VDEV_STOP,
  110. WLAN_PEER_UNAUTHORISED,
  111. WLAN_THERMAL_MITIGATION,
  112. WLAN_REASON_TYPE_MAX,
  113. };
  114. enum ol_rx_err_type {
  115. OL_RX_ERR_DEFRAG_MIC,
  116. OL_RX_ERR_PN,
  117. OL_RX_ERR_UNKNOWN_PEER,
  118. OL_RX_ERR_MALFORMED,
  119. OL_RX_ERR_TKIP_MIC,
  120. OL_RX_ERR_DECRYPT,
  121. OL_RX_ERR_MPDU_LENGTH,
  122. OL_RX_ERR_ENCRYPT_REQUIRED,
  123. OL_RX_ERR_DUP,
  124. OL_RX_ERR_UNKNOWN,
  125. OL_RX_ERR_FCS,
  126. OL_RX_ERR_PRIVACY,
  127. OL_RX_ERR_NONE_FRAG,
  128. OL_RX_ERR_NONE = 0xFF
  129. };
  130. enum throttle_level {
  131. THROTTLE_LEVEL_0,
  132. THROTTLE_LEVEL_1,
  133. THROTTLE_LEVEL_2,
  134. THROTTLE_LEVEL_3,
  135. /* Invalid */
  136. THROTTLE_LEVEL_MAX,
  137. };
  138. enum {
  139. OL_TX_WMM_AC_BE,
  140. OL_TX_WMM_AC_BK,
  141. OL_TX_WMM_AC_VI,
  142. OL_TX_WMM_AC_VO,
  143. OL_TX_NUM_WMM_AC
  144. };
  145. /**
  146. * @enum ol_tx_spec
  147. * @brief indicate what non-standard transmission actions to apply
  148. * @details
  149. * Indicate one or more of the following:
  150. * - The tx frame already has a complete 802.11 header.
  151. * Thus, skip 802.3/native-WiFi to 802.11 header encapsulation and
  152. * A-MSDU aggregation.
  153. * - The tx frame should not be aggregated (A-MPDU or A-MSDU)
  154. * - The tx frame is already encrypted - don't attempt encryption.
  155. * - The tx frame is a segment of a TCP jumbo frame.
  156. * - This tx frame should not be unmapped and freed by the txrx layer
  157. * after transmission, but instead given to a registered tx completion
  158. * callback.
  159. * More than one of these specification can apply, though typically
  160. * only a single specification is applied to a tx frame.
  161. * A compound specification can be created, as a bit-OR of these
  162. * specifications.
  163. */
  164. enum ol_tx_spec {
  165. OL_TX_SPEC_STD = 0x0, /* do regular processing */
  166. OL_TX_SPEC_RAW = 0x1, /* skip encap + A-MSDU aggr */
  167. OL_TX_SPEC_NO_AGGR = 0x2, /* skip encap + all aggr */
  168. OL_TX_SPEC_NO_ENCRYPT = 0x4, /* skip encap + encrypt */
  169. OL_TX_SPEC_TSO = 0x8, /* TCP segmented */
  170. OL_TX_SPEC_NWIFI_NO_ENCRYPT = 0x10, /* skip encrypt for nwifi */
  171. OL_TX_SPEC_NO_FREE = 0x20, /* give to cb rather than free */
  172. };
  173. /**
  174. * struct ol_txrx_desc_type - txrx descriptor type
  175. * @sta_id: sta id
  176. * @is_qos_enabled: is station qos enabled
  177. * @is_wapi_supported: is station wapi supported
  178. */
  179. struct ol_txrx_desc_type {
  180. uint8_t sta_id;
  181. uint8_t is_qos_enabled;
  182. uint8_t is_wapi_supported;
  183. };
  184. /**
  185. * struct txrx_pdev_cfg_param_t - configuration information
  186. * passed to the data path
  187. */
  188. struct txrx_pdev_cfg_param_t {
  189. uint8_t is_full_reorder_offload;
  190. /* IPA Micro controller data path offload enable flag */
  191. uint8_t is_uc_offload_enabled;
  192. /* IPA Micro controller data path offload TX buffer count */
  193. uint32_t uc_tx_buffer_count;
  194. /* IPA Micro controller data path offload TX buffer size */
  195. uint32_t uc_tx_buffer_size;
  196. /* IPA Micro controller data path offload RX indication ring count */
  197. uint32_t uc_rx_indication_ring_count;
  198. /* IPA Micro controller data path offload TX partition base */
  199. uint32_t uc_tx_partition_base;
  200. /* IP, TCP and UDP checksum offload */
  201. bool ip_tcp_udp_checksum_offload;
  202. /* Rx processing in thread from TXRX */
  203. bool enable_rxthread;
  204. /* CE classification enabled through INI */
  205. bool ce_classify_enabled;
  206. #ifdef QCA_LL_TX_FLOW_CONTROL_V2
  207. /* Threshold to stop queue in percentage */
  208. uint32_t tx_flow_stop_queue_th;
  209. /* Start queue offset in percentage */
  210. uint32_t tx_flow_start_queue_offset;
  211. #endif
  212. };
  213. /**
  214. * ol_txrx_ipa_resources - Resources needed for IPA
  215. */
  216. struct ol_txrx_ipa_resources {
  217. qdf_dma_addr_t ce_sr_base_paddr;
  218. uint32_t ce_sr_ring_size;
  219. qdf_dma_addr_t ce_reg_paddr;
  220. qdf_dma_addr_t tx_comp_ring_base_paddr;
  221. uint32_t tx_comp_ring_size;
  222. uint32_t tx_num_alloc_buffer;
  223. qdf_dma_addr_t rx_rdy_ring_base_paddr;
  224. uint32_t rx_rdy_ring_size;
  225. qdf_dma_addr_t rx_proc_done_idx_paddr;
  226. void *rx_proc_done_idx_vaddr;
  227. qdf_dma_addr_t rx2_rdy_ring_base_paddr;
  228. uint32_t rx2_rdy_ring_size;
  229. qdf_dma_addr_t rx2_proc_done_idx_paddr;
  230. void *rx2_proc_done_idx_vaddr;
  231. };
  232. struct ol_txrx_ocb_chan_info {
  233. uint32_t chan_freq;
  234. uint16_t disable_rx_stats_hdr:1;
  235. };
  236. /**
  237. * ol_mic_error_info - carries the information associated with
  238. * a MIC error
  239. * @vdev_id: virtual device ID
  240. * @key_id: Key ID
  241. * @pn: packet number
  242. * @sa: source address
  243. * @da: destination address
  244. * @ta: transmitter address
  245. */
  246. struct ol_mic_error_info {
  247. uint8_t vdev_id;
  248. uint32_t key_id;
  249. uint64_t pn;
  250. uint8_t sa[OL_TXRX_MAC_ADDR_LEN];
  251. uint8_t da[OL_TXRX_MAC_ADDR_LEN];
  252. uint8_t ta[OL_TXRX_MAC_ADDR_LEN];
  253. };
  254. /**
  255. * ol_error_info - carries the information associated with an
  256. * error indicated by the firmware
  257. * @mic_err: MIC error information
  258. */
  259. struct ol_error_info {
  260. union {
  261. struct ol_mic_error_info mic_err;
  262. } u;
  263. };
  264. /**
  265. * struct ol_txrx_ocb_set_chan - txrx OCB channel info
  266. * @ocb_channel_count: Channel count
  267. * @ocb_channel_info: OCB channel info
  268. */
  269. struct ol_txrx_ocb_set_chan {
  270. uint32_t ocb_channel_count;
  271. struct ol_txrx_ocb_chan_info *ocb_channel_info;
  272. };
  273. /**
  274. * @brief Parameter type to pass WMM setting to ol_txrx_set_wmm_param
  275. * @details
  276. * The struct is used to specify informaiton to update TX WMM scheduler.
  277. */
  278. struct ol_tx_ac_param_t {
  279. uint32_t aifs;
  280. uint32_t cwmin;
  281. uint32_t cwmax;
  282. };
  283. struct ol_tx_wmm_param_t {
  284. struct ol_tx_ac_param_t ac[OL_TX_NUM_WMM_AC];
  285. };
  286. struct ieee80211_ba_parameterset {
  287. #if _BYTE_ORDER == _BIG_ENDIAN
  288. uint16_t buffersize:10, /* B6-15 buffer size */
  289. tid:4, /* B2-5 TID */
  290. bapolicy:1, /* B1 block ack policy */
  291. amsdusupported:1; /* B0 amsdu supported */
  292. #else
  293. uint16_t amsdusupported:1, /* B0 amsdu supported */
  294. bapolicy:1, /* B1 block ack policy */
  295. tid:4, /* B2-5 TID */
  296. buffersize:10; /* B6-15 buffer size */
  297. #endif
  298. } __packed;
  299. struct ieee80211_ba_seqctrl {
  300. #if _BYTE_ORDER == _BIG_ENDIAN
  301. uint16_t startseqnum:12, /* B4-15 starting sequence number */
  302. fragnum:4; /* B0-3 fragment number */
  303. #else
  304. uint16_t fragnum:4, /* B0-3 fragment number */
  305. startseqnum:12; /* B4-15 starting sequence number */
  306. #endif
  307. } __packed;
  308. struct ieee80211_delba_parameterset {
  309. #if _BYTE_ORDER == _BIG_ENDIAN
  310. uint16_t tid:4, /* B12-15 tid */
  311. initiator:1, /* B11 initiator */
  312. reserved0:11; /* B0-10 reserved */
  313. #else
  314. uint16_t reserved0:11, /* B0-10 reserved */
  315. initiator:1, /* B11 initiator */
  316. tid:4; /* B12-15 tid */
  317. #endif
  318. } __packed;
  319. typedef QDF_STATUS(*rx_callback_fp)(void *p_cds_gctx,
  320. qdf_nbuf_t pDataBuff,
  321. uint8_t ucSTAId);
  322. /**
  323. * ol_txrx_vdev_peer_remove_cb - wma_remove_peer callback
  324. */
  325. typedef void (*ol_txrx_vdev_peer_remove_cb)(void *handle, uint8_t *bssid,
  326. uint8_t vdev_id, void *peer, bool roam_synch_in_progress);
  327. /**
  328. * ol_txrx_tx_flow_control_fp - tx flow control notification
  329. * function from txrx to OS shim
  330. * @osif_dev - the virtual device's OS shim object
  331. * @tx_resume - tx os q should be resumed or not
  332. */
  333. typedef void (*ol_txrx_tx_flow_control_fp)(void *osif_dev, bool tx_resume);
  334. /**
  335. * ol_txrx_tx_flow_control_fp - tx flow control notification
  336. * function from txrx to OS shim
  337. * @osif_dev - the virtual device's OS shim object
  338. * @tx_resume - tx os q should be resumed or not
  339. */
  340. typedef void (*tx_flow_control_fp)(void *osif_dev,
  341. bool tx_resume);
  342. /**
  343. * @typedef ol_tx_pause_callback_fp
  344. * @brief OSIF function registered with the data path
  345. */
  346. typedef void (*ol_tx_pause_callback_fp)(uint8_t vdev_id,
  347. enum netif_action_type action,
  348. enum netif_reason_type reason);
  349. typedef void (*ipa_op_cb_type)(uint8_t *op_msg,
  350. void *osif_ctxt);
  351. #endif /* __CDP_TXRX_MOB_DEF_H */