cdp_txrx_ops.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. /*
  2. * Copyright (c) 2011-2016 The Linux Foundation. All rights reserved.
  3. *
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for
  6. * any purpose with or without fee is hereby granted, provided that the
  7. * above copyright notice and this permission notice appear in all
  8. * copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  11. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  12. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  13. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  14. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  15. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  16. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  17. * PERFORMANCE OF THIS SOFTWARE.
  18. */
  19. /**
  20. * @file cdp_txrx_ops.h
  21. * @brief Define the host data path converged API functions
  22. * called by the host control SW and the OS interface module
  23. */
  24. #ifndef _CDP_TXRX_CMN_OPS_H_
  25. #define _CDP_TXRX_CMN_OPS_H_
  26. #include <cdp_txrx_cmn_struct.h>
  27. /******************************************************************************
  28. *
  29. * Control Interface (A Interface)
  30. *
  31. *****************************************************************************/
  32. struct cdp_cmn_ops {
  33. int(*txrx_soc_attach_target)(ol_txrx_soc_handle soc);
  34. int(*txrx_pdev_attach_target)(void *pdev);
  35. void *(*txrx_vdev_attach)
  36. (void *pdev, uint8_t *vdev_mac_addr,
  37. uint8_t vdev_id, enum wlan_op_mode op_mode);
  38. void(*txrx_vdev_detach)
  39. (void *vdev, ol_txrx_vdev_delete_cb callback,
  40. void *cb_context);
  41. void *(*txrx_pdev_attach)
  42. (ol_txrx_soc_handle soc, void *ctrl_pdev,
  43. HTC_HANDLE htc_pdev, qdf_device_t osdev, uint8_t pdev_id);
  44. void(*txrx_pdev_detach)(void *pdev, int force);
  45. void *(*txrx_peer_attach)
  46. (void *vdev, uint8_t *peer_mac_addr);
  47. void(*txrx_peer_detach)(void *peer);
  48. int(*txrx_set_monitor_mode)(void *vdev);
  49. void(*txrx_set_curchan)(void *pdev, uint32_t chan_mhz);
  50. void (*txrx_set_privacy_filters)
  51. (void *vdev, void *filter, uint32_t num);
  52. /********************************************************************
  53. * Data Interface (B Interface)
  54. ********************************************************************/
  55. void(*txrx_vdev_register)(void *vdev,
  56. void *osif_vdev, struct ol_txrx_ops *txrx_ops);
  57. int(*txrx_mgmt_send)(void *vdev,
  58. qdf_nbuf_t tx_mgmt_frm, uint8_t type);
  59. int(*txrx_mgmt_send_ext)(void *vdev,
  60. qdf_nbuf_t tx_mgmt_frm, uint8_t type, uint8_t use_6mbps,
  61. uint16_t chanfreq);
  62. /**
  63. * ol_txrx_mgmt_tx_cb - tx management delivery notification
  64. * callback function
  65. */
  66. void(*txrx_mgmt_tx_cb_set)
  67. (void *pdev, uint8_t type,
  68. ol_txrx_mgmt_tx_cb download_cb, ol_txrx_mgmt_tx_cb ota_ack_cb,
  69. void *ctxt);
  70. int (*txrx_get_tx_pending)(void *pdev);
  71. /**
  72. * ol_txrx_data_tx_cb - Function registered with the data path
  73. * that is called when tx frames marked as "no free" are
  74. * done being transmitted
  75. */
  76. void(*txrx_data_tx_cb_set)(void *data_vdev,
  77. ol_txrx_data_tx_cb callback, void *ctxt);
  78. /*******************************************************************
  79. * Statistics and Debugging Interface (C Inteface)
  80. ********************************************************************/
  81. int(*txrx_aggr_cfg)(void *vdev, int max_subfrms_ampdu,
  82. int max_subfrms_amsdu);
  83. int(*txrx_fw_stats_get)(void *vdev,
  84. struct ol_txrx_stats_req *req, bool per_vdev, bool response_expected);
  85. int(*txrx_debug)(void *vdev, int debug_specs);
  86. void(*txrx_fw_stats_cfg)(void *vdev,
  87. uint8_t cfg_stats_type, uint32_t cfg_val);
  88. void(*txrx_print_level_set)(unsigned level);
  89. /**
  90. * ol_txrx_get_vdev_mac_addr() - Return mac addr of vdev
  91. * @vdev: vdev handle
  92. *
  93. * Return: vdev mac address
  94. */
  95. uint8_t *(*txrx_get_vdev_mac_addr)(void *vdev);
  96. /**
  97. * ol_txrx_get_vdev_struct_mac_addr() - Return handle to struct qdf_mac_addr of
  98. * vdev
  99. * @vdev: vdev handle
  100. *
  101. * Return: Handle to struct qdf_mac_addr
  102. */
  103. struct qdf_mac_addr *
  104. (*txrx_get_vdev_struct_mac_addr)(void *vdev);
  105. /**
  106. * ol_txrx_get_pdev_from_vdev() - Return handle to pdev of vdev
  107. * @vdev: vdev handle
  108. *
  109. * Return: Handle to pdev
  110. */
  111. void *(*txrx_get_pdev_from_vdev)
  112. (void *vdev);
  113. /**
  114. * ol_txrx_get_ctrl_pdev_from_vdev() - Return control pdev of vdev
  115. * @vdev: vdev handle
  116. *
  117. * Return: Handle to control pdev
  118. */
  119. void *
  120. (*txrx_get_ctrl_pdev_from_vdev)(void *vdev);
  121. void *
  122. (*txrx_get_vdev_from_vdev_id)(uint8_t vdev_id);
  123. void (*txrx_soc_detach)(void *soc);
  124. };
  125. struct cdp_ctrl_ops {
  126. int
  127. (*txrx_mempools_attach)(void *ctrl_pdev);
  128. int
  129. (*txrx_set_filter_neighbour_peers)(
  130. void *pdev,
  131. u_int32_t val);
  132. /**
  133. * @brief set the safemode of the device
  134. * @details
  135. * This flag is used to bypass the encrypt and decrypt processes when
  136. * send and receive packets. It works like open AUTH mode, HW will
  137. * ctreate all packets as non-encrypt frames because no key installed.
  138. * For rx fragmented frames,it bypasses all the rx defragmentaion.
  139. *
  140. * @param vdev - the data virtual device object
  141. * @param val - the safemode state
  142. * @return - void
  143. */
  144. void
  145. (*txrx_set_safemode)(
  146. void *vdev,
  147. u_int32_t val);
  148. /**
  149. * @brief configure the drop unencrypted frame flag
  150. * @details
  151. * Rx related. When set this flag, all the unencrypted frames
  152. * received over a secure connection will be discarded
  153. *
  154. * @param vdev - the data virtual device object
  155. * @param val - flag
  156. * @return - void
  157. */
  158. void
  159. (*txrx_set_drop_unenc)(
  160. void *vdev,
  161. u_int32_t val);
  162. /**
  163. * @brief set the Tx encapsulation type of the VDEV
  164. * @details
  165. * This will be used to populate the HTT desc packet type field
  166. * during Tx
  167. * @param vdev - the data virtual device object
  168. * @param val - the Tx encap type
  169. * @return - void
  170. */
  171. void
  172. (*txrx_set_tx_encap_type)(
  173. void *vdev,
  174. enum htt_cmn_pkt_type val);
  175. /**
  176. * @brief set the Rx decapsulation type of the VDEV
  177. * @details
  178. * This will be used to configure into firmware and hardware
  179. * which format to decap all Rx packets into, for all peers under
  180. * the VDEV.
  181. * @param vdev - the data virtual device object
  182. * @param val - the Rx decap mode
  183. * @return - void
  184. */
  185. void
  186. (*txrx_set_vdev_rx_decap_type)(
  187. void *vdev,
  188. enum htt_cmn_pkt_type val);
  189. /**
  190. * @brief get the Rx decapsulation type of the VDEV
  191. *
  192. * @param vdev - the data virtual device object
  193. * @return - the Rx decap type
  194. */
  195. enum htt_pkt_type
  196. (*txrx_get_vdev_rx_decap_type)(void *vdev);
  197. /* Is this similar to ol_txrx_peer_state_update() in MCL */
  198. /**
  199. * @brief Update the authorize peer object at association time
  200. * @details
  201. * For the host-based implementation of rate-control, it
  202. * updates the peer/node-related parameters within rate-control
  203. * context of the peer at association.
  204. *
  205. * @param peer - pointer to the node's object
  206. * @authorize - either to authorize or unauthorize peer
  207. *
  208. * @return none
  209. */
  210. void
  211. (*txrx_peer_authorize)(void *peer,
  212. u_int32_t authorize);
  213. bool
  214. (*txrx_set_inact_params)(void *pdev,
  215. u_int16_t inact_check_interval,
  216. u_int16_t inact_normal,
  217. u_int16_t inact_overload);
  218. bool
  219. (*txrx_start_inact_timer)(
  220. void *pdev,
  221. bool enable);
  222. /**
  223. * @brief Set the overload status of the radio
  224. * @details
  225. * Set the overload status of the radio, updating the inactivity
  226. * threshold and inactivity count for each node.
  227. *
  228. * @param pdev - the data physical device object
  229. * @param overload - whether the radio is overloaded or not
  230. */
  231. void (*txrx_set_overload)(
  232. void *pdev,
  233. bool overload);
  234. /**
  235. * @brief Check the inactivity status of the peer/node
  236. *
  237. * @param peer - pointer to the node's object
  238. * @return true if the node is inactive; otherwise return false
  239. */
  240. bool
  241. (*txrx_peer_is_inact)(void *peer);
  242. /**
  243. * @brief Mark inactivity status of the peer/node
  244. * @details
  245. * If it becomes active, reset inactivity count to reload value;
  246. * if the inactivity status changed, notify umac band steering.
  247. *
  248. * @param peer - pointer to the node's object
  249. * @param inactive - whether the node is inactive or not
  250. */
  251. void (*txrx_mark_peer_inact)(
  252. void *peer,
  253. bool inactive);
  254. /* Should be ol_txrx_ctrl_api.h */
  255. void (*txrx_set_mesh_mode)(void *vdev, u_int32_t val);
  256. void (*tx_flush_buffers)(void *vdev);
  257. int (*txrx_is_target_ar900b)(void *vdev);
  258. };
  259. struct cdp_me_ops {
  260. u_int16_t (*tx_desc_alloc_and_mark_for_mcast_clone)
  261. (void *pdev, u_int16_t buf_count);
  262. u_int16_t (*tx_desc_free_and_unmark_for_mcast_clone)(
  263. void *pdev,
  264. u_int16_t buf_count);
  265. u_int16_t
  266. (*tx_get_mcast_buf_allocated_marked)
  267. (void *pdev);
  268. void
  269. (*tx_me_alloc_descriptor)(void *pdev);
  270. void
  271. (*tx_me_free_descriptor)(void *pdev);
  272. uint16_t
  273. (*tx_me_convert_ucast)(void *vdev,
  274. qdf_nbuf_t wbuf, u_int8_t newmac[][6],
  275. uint8_t newmaccnt);
  276. /* Should be a function pointer in ol_txrx_osif_ops{} */
  277. /**
  278. * @brief notify mcast frame indication from FW.
  279. * @details
  280. * This notification will be used to convert
  281. * multicast frame to unicast.
  282. *
  283. * @param pdev - handle to the ctrl SW's physical device object
  284. * @param vdev_id - ID of the virtual device received the special data
  285. * @param msdu - the multicast msdu returned by FW for host inspect
  286. */
  287. int (*mcast_notify)(void *pdev,
  288. u_int8_t vdev_id, qdf_nbuf_t msdu);
  289. };
  290. struct cdp_mon_ops {
  291. void (*txrx_monitor_set_filter_ucast_data)
  292. (void *, u_int8_t val);
  293. void (*txrx_monitor_set_filter_mcast_data)
  294. (void *, u_int8_t val);
  295. void (*txrx_monitor_set_filter_non_data)
  296. (void *, u_int8_t val);
  297. u_int8_t (*txrx_monitor_get_filter_ucast_data)
  298. (void *vdev_txrx_handle);
  299. u_int8_t (*txrx_monitor_get_filter_mcast_data)
  300. (void *vdev_txrx_handle);
  301. u_int8_t (*txrx_monitor_get_filter_non_data)
  302. (void *vdev_txrx_handle);
  303. int (*txrx_reset_monitor_mode)(void *pdev);
  304. };
  305. struct cdp_host_stats_ops {
  306. int (*txrx_host_stats_get)(void *vdev,
  307. struct ol_txrx_stats_req *req);
  308. void (*txrx_host_stats_clr)(void *vdev);
  309. void (*txrx_host_ce_stats)(void *vdev);
  310. int (*txrx_stats_publish)(void *pdev,
  311. struct ol_txrx_stats *buf);
  312. /**
  313. * @brief Enable enhanced stats functionality.
  314. *
  315. * @param pdev - the physical device object
  316. * @return - void
  317. */
  318. void (*txrx_enable_enhanced_stats)(void *pdev);
  319. /**
  320. * @brief Disable enhanced stats functionality.
  321. *
  322. * @param pdev - the physical device object
  323. * @return - void
  324. */
  325. void (*txrx_disable_enhanced_stats)(void *pdev);
  326. /**
  327. * @brief Get the desired stats from the message.
  328. *
  329. * @param pdev - the physical device object
  330. * @param stats_base - stats buffer recieved from FW
  331. * @param type - stats type.
  332. * @return - pointer to requested stat identified by type
  333. */
  334. uint32_t*(*txrx_get_stats_base)(void *pdev,
  335. uint32_t *stats_base, uint32_t msg_len, uint8_t type);
  336. void
  337. (*tx_print_tso_stats)(void *vdev);
  338. void
  339. (*tx_rst_tso_stats)(void *vdev);
  340. void
  341. (*tx_print_sg_stats)(void *vdev);
  342. void
  343. (*tx_rst_sg_stats)(void *vdev);
  344. void
  345. (*print_rx_cksum_stats)(void *vdev);
  346. void
  347. (*rst_rx_cksum_stats)(void *vdev);
  348. A_STATUS
  349. (*txrx_host_me_stats)(void *vdev);
  350. void
  351. (*txrx_per_peer_stats)(void *pdev, char *addr);
  352. int (*txrx_host_msdu_ttl_stats)(void *vdev,
  353. struct ol_txrx_stats_req *req);
  354. void
  355. (*print_lro_stats)(void *vdev);
  356. void
  357. (*reset_lro_stats)(void *vdev);
  358. };
  359. struct cdp_wds_ops {
  360. void
  361. (*txrx_set_wds_rx_policy)(void *vdev,
  362. u_int32_t val);
  363. };
  364. struct cdp_raw_ops {
  365. int (*txrx_get_nwifi_mode)(void *vdev);
  366. int
  367. (*rsim_tx_encap)(void *vdev, qdf_nbuf_t *pnbuf);
  368. };
  369. struct cdp_pflow_ops {
  370. uint32_t(*pflow_update_pdev_params)(void *,
  371. ol_ath_param_t, uint32_t, void *);
  372. };
  373. struct cdp_mob_drv_ops {
  374. /* FIXME to be fixed */
  375. };
  376. struct ol_if_ops {
  377. void (*peer_set_default_routing)(void *scn_handle,
  378. uint8_t *peer_macaddr, uint8_t vdev_id,
  379. bool hash_based, uint8_t ring_num);
  380. int (*peer_rx_reorder_queue_setup)(void *ol_soc_handle,
  381. uint8_t vdev_id, uint8_t *peer_mac,
  382. qdf_dma_addr_t hw_qdesc, int tid, uint16_t queue_num);
  383. int (*peer_rx_reorder_queue_remove)(void *ol_soc_handle,
  384. uint8_t vdev_id, uint8_t *peer_macaddr,
  385. uint32_t tid_mask);
  386. /* TODO: Add any other control path calls required to OL_IF/WMA layer */
  387. };
  388. struct cdp_ops {
  389. struct cdp_cmn_ops *cmn_drv_ops;
  390. struct cdp_ctrl_ops *ctrl_ops;
  391. struct cdp_me_ops *me_ops;
  392. struct cdp_mon_ops *mon_ops;
  393. struct cdp_host_stats_ops *host_stats_ops;
  394. struct cdp_wds_ops *wds_ops;
  395. struct cdp_raw_ops *raw_ops;
  396. struct cdp_pflow_ops *pflow_ops;
  397. struct cdp_mob_ops *mob_drv_ops;
  398. };
  399. #endif