cdp_txrx_ops.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780
  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. int (*txrx_pdev_post_attach)(void *pdev);
  45. void(*txrx_pdev_detach)(void *pdev, int force);
  46. void *(*txrx_peer_attach)
  47. (void *vdev, uint8_t *peer_mac_addr);
  48. void(*txrx_peer_detach)(void *peer);
  49. int(*txrx_set_monitor_mode)(void *vdev);
  50. void(*txrx_set_curchan)(void *pdev, uint32_t chan_mhz);
  51. void (*txrx_set_privacy_filters)
  52. (void *vdev, void *filter, uint32_t num);
  53. /********************************************************************
  54. * Data Interface (B Interface)
  55. ********************************************************************/
  56. void(*txrx_vdev_register)(void *vdev,
  57. void *osif_vdev, struct ol_txrx_ops *txrx_ops);
  58. int(*txrx_mgmt_send)(void *vdev,
  59. qdf_nbuf_t tx_mgmt_frm, uint8_t type);
  60. int(*txrx_mgmt_send_ext)(void *vdev,
  61. qdf_nbuf_t tx_mgmt_frm, uint8_t type, uint8_t use_6mbps,
  62. uint16_t chanfreq);
  63. /**
  64. * ol_txrx_mgmt_tx_cb - tx management delivery notification
  65. * callback function
  66. */
  67. void(*txrx_mgmt_tx_cb_set)
  68. (void *pdev, uint8_t type,
  69. ol_txrx_mgmt_tx_cb download_cb, ol_txrx_mgmt_tx_cb ota_ack_cb,
  70. void *ctxt);
  71. int (*txrx_get_tx_pending)(void *pdev);
  72. /**
  73. * ol_txrx_data_tx_cb - Function registered with the data path
  74. * that is called when tx frames marked as "no free" are
  75. * done being transmitted
  76. */
  77. void(*txrx_data_tx_cb_set)(void *data_vdev,
  78. ol_txrx_data_tx_cb callback, void *ctxt);
  79. /*******************************************************************
  80. * Statistics and Debugging Interface (C Inteface)
  81. ********************************************************************/
  82. int(*txrx_aggr_cfg)(void *vdev, int max_subfrms_ampdu,
  83. int max_subfrms_amsdu);
  84. A_STATUS(*txrx_fw_stats_get)(void *vdev, struct ol_txrx_stats_req *req,
  85. bool per_vdev, bool response_expected);
  86. int(*txrx_debug)(void *vdev, int debug_specs);
  87. void(*txrx_fw_stats_cfg)(void *vdev,
  88. uint8_t cfg_stats_type, uint32_t cfg_val);
  89. void(*txrx_print_level_set)(unsigned level);
  90. /**
  91. * ol_txrx_get_vdev_mac_addr() - Return mac addr of vdev
  92. * @vdev: vdev handle
  93. *
  94. * Return: vdev mac address
  95. */
  96. uint8_t *(*txrx_get_vdev_mac_addr)(void *vdev);
  97. /**
  98. * ol_txrx_get_vdev_struct_mac_addr() - Return handle to struct qdf_mac_addr of
  99. * vdev
  100. * @vdev: vdev handle
  101. *
  102. * Return: Handle to struct qdf_mac_addr
  103. */
  104. struct qdf_mac_addr *
  105. (*txrx_get_vdev_struct_mac_addr)(void *vdev);
  106. /**
  107. * ol_txrx_get_pdev_from_vdev() - Return handle to pdev of vdev
  108. * @vdev: vdev handle
  109. *
  110. * Return: Handle to pdev
  111. */
  112. void *(*txrx_get_pdev_from_vdev)
  113. (void *vdev);
  114. /**
  115. * ol_txrx_get_ctrl_pdev_from_vdev() - Return control pdev of vdev
  116. * @vdev: vdev handle
  117. *
  118. * Return: Handle to control pdev
  119. */
  120. void *
  121. (*txrx_get_ctrl_pdev_from_vdev)(void *vdev);
  122. void *
  123. (*txrx_get_vdev_from_vdev_id)(void *pdev, uint8_t vdev_id);
  124. void (*txrx_soc_detach)(void *soc);
  125. };
  126. struct cdp_ctrl_ops {
  127. int
  128. (*txrx_mempools_attach)(void *ctrl_pdev);
  129. int
  130. (*txrx_set_filter_neighbour_peers)(
  131. void *pdev,
  132. u_int32_t val);
  133. /**
  134. * @brief set the safemode of the device
  135. * @details
  136. * This flag is used to bypass the encrypt and decrypt processes when
  137. * send and receive packets. It works like open AUTH mode, HW will
  138. * ctreate all packets as non-encrypt frames because no key installed.
  139. * For rx fragmented frames,it bypasses all the rx defragmentaion.
  140. *
  141. * @param vdev - the data virtual device object
  142. * @param val - the safemode state
  143. * @return - void
  144. */
  145. void
  146. (*txrx_set_safemode)(
  147. void *vdev,
  148. u_int32_t val);
  149. /**
  150. * @brief configure the drop unencrypted frame flag
  151. * @details
  152. * Rx related. When set this flag, all the unencrypted frames
  153. * received over a secure connection will be discarded
  154. *
  155. * @param vdev - the data virtual device object
  156. * @param val - flag
  157. * @return - void
  158. */
  159. void
  160. (*txrx_set_drop_unenc)(
  161. void *vdev,
  162. u_int32_t val);
  163. /**
  164. * @brief set the Tx encapsulation type of the VDEV
  165. * @details
  166. * This will be used to populate the HTT desc packet type field
  167. * during Tx
  168. * @param vdev - the data virtual device object
  169. * @param val - the Tx encap type
  170. * @return - void
  171. */
  172. void
  173. (*txrx_set_tx_encap_type)(
  174. void *vdev,
  175. enum htt_cmn_pkt_type val);
  176. /**
  177. * @brief set the Rx decapsulation type of the VDEV
  178. * @details
  179. * This will be used to configure into firmware and hardware
  180. * which format to decap all Rx packets into, for all peers under
  181. * the VDEV.
  182. * @param vdev - the data virtual device object
  183. * @param val - the Rx decap mode
  184. * @return - void
  185. */
  186. void
  187. (*txrx_set_vdev_rx_decap_type)(
  188. void *vdev,
  189. enum htt_cmn_pkt_type val);
  190. /**
  191. * @brief get the Rx decapsulation type of the VDEV
  192. *
  193. * @param vdev - the data virtual device object
  194. * @return - the Rx decap type
  195. */
  196. enum htt_pkt_type
  197. (*txrx_get_vdev_rx_decap_type)(void *vdev);
  198. /* Is this similar to ol_txrx_peer_state_update() in MCL */
  199. /**
  200. * @brief Update the authorize peer object at association time
  201. * @details
  202. * For the host-based implementation of rate-control, it
  203. * updates the peer/node-related parameters within rate-control
  204. * context of the peer at association.
  205. *
  206. * @param peer - pointer to the node's object
  207. * @authorize - either to authorize or unauthorize peer
  208. *
  209. * @return none
  210. */
  211. void
  212. (*txrx_peer_authorize)(void *peer,
  213. u_int32_t authorize);
  214. bool
  215. (*txrx_set_inact_params)(void *pdev,
  216. u_int16_t inact_check_interval,
  217. u_int16_t inact_normal,
  218. u_int16_t inact_overload);
  219. bool
  220. (*txrx_start_inact_timer)(
  221. void *pdev,
  222. bool enable);
  223. /**
  224. * @brief Set the overload status of the radio
  225. * @details
  226. * Set the overload status of the radio, updating the inactivity
  227. * threshold and inactivity count for each node.
  228. *
  229. * @param pdev - the data physical device object
  230. * @param overload - whether the radio is overloaded or not
  231. */
  232. void (*txrx_set_overload)(
  233. void *pdev,
  234. bool overload);
  235. /**
  236. * @brief Check the inactivity status of the peer/node
  237. *
  238. * @param peer - pointer to the node's object
  239. * @return true if the node is inactive; otherwise return false
  240. */
  241. bool
  242. (*txrx_peer_is_inact)(void *peer);
  243. /**
  244. * @brief Mark inactivity status of the peer/node
  245. * @details
  246. * If it becomes active, reset inactivity count to reload value;
  247. * if the inactivity status changed, notify umac band steering.
  248. *
  249. * @param peer - pointer to the node's object
  250. * @param inactive - whether the node is inactive or not
  251. */
  252. void (*txrx_mark_peer_inact)(
  253. void *peer,
  254. bool inactive);
  255. /* Should be ol_txrx_ctrl_api.h */
  256. void (*txrx_set_mesh_mode)(void *vdev, u_int32_t val);
  257. void (*tx_flush_buffers)(void *vdev);
  258. int (*txrx_is_target_ar900b)(void *vdev);
  259. };
  260. struct cdp_me_ops {
  261. u_int16_t (*tx_desc_alloc_and_mark_for_mcast_clone)
  262. (void *pdev, u_int16_t buf_count);
  263. u_int16_t (*tx_desc_free_and_unmark_for_mcast_clone)(
  264. void *pdev,
  265. u_int16_t buf_count);
  266. u_int16_t
  267. (*tx_get_mcast_buf_allocated_marked)
  268. (void *pdev);
  269. void
  270. (*tx_me_alloc_descriptor)(void *pdev);
  271. void
  272. (*tx_me_free_descriptor)(void *pdev);
  273. uint16_t
  274. (*tx_me_convert_ucast)(void *vdev,
  275. qdf_nbuf_t wbuf, u_int8_t newmac[][6],
  276. uint8_t newmaccnt);
  277. /* Should be a function pointer in ol_txrx_osif_ops{} */
  278. /**
  279. * @brief notify mcast frame indication from FW.
  280. * @details
  281. * This notification will be used to convert
  282. * multicast frame to unicast.
  283. *
  284. * @param pdev - handle to the ctrl SW's physical device object
  285. * @param vdev_id - ID of the virtual device received the special data
  286. * @param msdu - the multicast msdu returned by FW for host inspect
  287. */
  288. int (*mcast_notify)(void *pdev,
  289. u_int8_t vdev_id, qdf_nbuf_t msdu);
  290. };
  291. struct cdp_mon_ops {
  292. void (*txrx_monitor_set_filter_ucast_data)
  293. (void *, u_int8_t val);
  294. void (*txrx_monitor_set_filter_mcast_data)
  295. (void *, u_int8_t val);
  296. void (*txrx_monitor_set_filter_non_data)
  297. (void *, u_int8_t val);
  298. u_int8_t (*txrx_monitor_get_filter_ucast_data)
  299. (void *vdev_txrx_handle);
  300. u_int8_t (*txrx_monitor_get_filter_mcast_data)
  301. (void *vdev_txrx_handle);
  302. u_int8_t (*txrx_monitor_get_filter_non_data)
  303. (void *vdev_txrx_handle);
  304. int (*txrx_reset_monitor_mode)(void *pdev);
  305. };
  306. struct cdp_host_stats_ops {
  307. int (*txrx_host_stats_get)(void *vdev,
  308. struct ol_txrx_stats_req *req);
  309. void (*txrx_host_stats_clr)(void *vdev);
  310. void (*txrx_host_ce_stats)(void *vdev);
  311. int (*txrx_stats_publish)(void *pdev,
  312. void *buf);
  313. /**
  314. * @brief Enable enhanced stats functionality.
  315. *
  316. * @param pdev - the physical device object
  317. * @return - void
  318. */
  319. void (*txrx_enable_enhanced_stats)(void *pdev);
  320. /**
  321. * @brief Disable enhanced stats functionality.
  322. *
  323. * @param pdev - the physical device object
  324. * @return - void
  325. */
  326. void (*txrx_disable_enhanced_stats)(void *pdev);
  327. /**
  328. * @brief Get the desired stats from the message.
  329. *
  330. * @param pdev - the physical device object
  331. * @param stats_base - stats buffer recieved from FW
  332. * @param type - stats type.
  333. * @return - pointer to requested stat identified by type
  334. */
  335. uint32_t*(*txrx_get_stats_base)(void *pdev,
  336. uint32_t *stats_base, uint32_t msg_len, uint8_t type);
  337. void
  338. (*tx_print_tso_stats)(void *vdev);
  339. void
  340. (*tx_rst_tso_stats)(void *vdev);
  341. void
  342. (*tx_print_sg_stats)(void *vdev);
  343. void
  344. (*tx_rst_sg_stats)(void *vdev);
  345. void
  346. (*print_rx_cksum_stats)(void *vdev);
  347. void
  348. (*rst_rx_cksum_stats)(void *vdev);
  349. A_STATUS
  350. (*txrx_host_me_stats)(void *vdev);
  351. void
  352. (*txrx_per_peer_stats)(void *pdev, char *addr);
  353. int (*txrx_host_msdu_ttl_stats)(void *vdev,
  354. struct ol_txrx_stats_req *req);
  355. void
  356. (*print_lro_stats)(void *vdev);
  357. void
  358. (*reset_lro_stats)(void *vdev);
  359. };
  360. struct cdp_wds_ops {
  361. void
  362. (*txrx_set_wds_rx_policy)(void *vdev,
  363. u_int32_t val);
  364. };
  365. struct cdp_raw_ops {
  366. int (*txrx_get_nwifi_mode)(void *vdev);
  367. int
  368. (*rsim_tx_encap)(void *vdev, qdf_nbuf_t *pnbuf);
  369. };
  370. #ifdef CONFIG_WIN
  371. struct cdp_pflow_ops {
  372. uint32_t(*pflow_update_pdev_params)(void *,
  373. ol_ath_param_t, uint32_t, void *);
  374. };
  375. #endif /* CONFIG_WIN */
  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. #ifndef CONFIG_WIN
  389. /* From here MCL specific OPs */
  390. /**
  391. * struct cdp_misc_ops - mcl ops not classified
  392. * @set_ibss_vdev_heart_beat_timer:
  393. * @bad_peer_txctl_set_setting:
  394. * @bad_peer_txctl_update_threshold:
  395. * @hl_tdls_flag_reset:
  396. * @tx_non_std:
  397. * @get_vdev_id:
  398. * @set_wisa_mode:
  399. * @runtime_suspend:
  400. * @runtime_resume:
  401. */
  402. struct cdp_misc_ops {
  403. uint16_t (*set_ibss_vdev_heart_beat_timer)(void *vdev,
  404. uint16_t timer_value_sec);
  405. void (*set_wmm_param)(void *cfg_pdev,
  406. struct ol_tx_wmm_param_t wmm_param);
  407. void (*bad_peer_txctl_set_setting)(void *pdev, int enable,
  408. int period, int txq_limit);
  409. void (*bad_peer_txctl_update_threshold)(void *pdev,
  410. int level, int tput_thresh, int tx_limit);
  411. void (*hl_tdls_flag_reset)(void *vdev, bool flag);
  412. qdf_nbuf_t (*tx_non_std)(void *vdev,
  413. enum ol_tx_spec tx_spec, qdf_nbuf_t msdu_list);
  414. uint16_t (*get_vdev_id)(void *vdev);
  415. QDF_STATUS (*set_wisa_mode)(void *vdev, bool enable);
  416. QDF_STATUS (*runtime_suspend)(void *pdev);
  417. QDF_STATUS (*runtime_resume)(void *pdev);
  418. int (*get_opmode)(void *vdev);
  419. void (*mark_first_wakeup_packet)(uint8_t value);
  420. void (*update_mac_id)(uint8_t vdev_id, uint8_t mac_id);
  421. void (*flush_rx_frames)(void *peer, bool drop);
  422. A_STATUS (*get_intra_bss_fwd_pkts_count)(uint8_t vdev_id,
  423. uint64_t *fwd_tx_packets, uint64_t *fwd_rx_packets);
  424. void (*pkt_log_init)(void *handle, void *scn);
  425. void (*pkt_log_con_service)(void *pdev, void *scn);
  426. };
  427. /**
  428. * struct cdp_tx_delay_ops - mcl tx delay ops
  429. * @tx_delay:
  430. * @tx_delay_hist:
  431. * @tx_packet_count:
  432. * @tx_set_compute_interval:
  433. */
  434. struct cdp_tx_delay_ops {
  435. void (*tx_delay)(void *pdev, uint32_t *queue_delay_microsec,
  436. uint32_t *tx_delay_microsec, int category);
  437. void (*tx_delay_hist)(void *pdev,
  438. uint16_t *bin_values, int category);
  439. void (*tx_packet_count)(void *pdev, uint16_t *out_packet_count,
  440. uint16_t *out_packet_loss_count, int category);
  441. void (*tx_set_compute_interval)(void *pdev, uint32_t interval);
  442. };
  443. /**
  444. * struct cdp_pmf_ops - mcl protected management frame ops
  445. * @get_pn_info:
  446. */
  447. struct cdp_pmf_ops {
  448. void (*get_pn_info)(void *peer, uint8_t **last_pn_valid,
  449. uint64_t **last_pn, uint32_t **rmf_pn_replays);
  450. };
  451. /**
  452. * struct cdp_cfg_ops - mcl configuration ops
  453. * @set_cfg_rx_fwd_disabled:
  454. * @set_cfg_packet_log_enabled:
  455. * @cfg_attach:
  456. * @vdev_rx_set_intrabss_fwd:
  457. * @get_opmode:
  458. * @is_rx_fwd_disabled:
  459. * @tx_set_is_mgmt_over_wmi_enabled:
  460. * @is_high_latency:
  461. * @set_flow_control_parameters:
  462. */
  463. struct cdp_cfg_ops {
  464. void (*set_cfg_rx_fwd_disabled)(void *pdev, uint8_t disable_rx_fwd);
  465. void (*set_cfg_packet_log_enabled)(void *pdev, uint8_t val);
  466. void * (*cfg_attach)(qdf_device_t osdev, void *cfg_param);
  467. void (*vdev_rx_set_intrabss_fwd)(void *vdev, bool val);
  468. uint8_t (*is_rx_fwd_disabled)(void *vdev);
  469. void (*tx_set_is_mgmt_over_wmi_enabled)(uint8_t value);
  470. int (*is_high_latency)(void *pdev);
  471. void (*set_flow_control_parameters)(void *cfg, void *param);
  472. void (*set_flow_steering)(void *pdev, uint8_t val);
  473. };
  474. /**
  475. * struct cdp_flowctl_ops - mcl flow control
  476. * @register_pause_cb:
  477. * @set_desc_global_pool_size:
  478. * @dump_flow_pool_info:
  479. */
  480. struct cdp_flowctl_ops {
  481. QDF_STATUS (*register_pause_cb)(ol_tx_pause_callback_fp);
  482. void (*set_desc_global_pool_size)(uint32_t num_msdu_desc);
  483. void (*dump_flow_pool_info)(void);
  484. };
  485. /**
  486. * struct cdp_lflowctl_ops - mcl legacy flow control ops
  487. * @register_tx_flow_control:
  488. * @deregister_tx_flow_control_cb:
  489. * @flow_control_cb:
  490. * @get_tx_resource:
  491. * @ll_set_tx_pause_q_depth:
  492. * @vdev_flush:
  493. * @vdev_pause:
  494. * @vdev_unpause:
  495. */
  496. struct cdp_lflowctl_ops {
  497. int (*register_tx_flow_control)(uint8_t vdev_id,
  498. ol_txrx_tx_flow_control_fp flowControl, void *osif_fc_ctx);
  499. int (*deregister_tx_flow_control_cb)(uint8_t vdev_id);
  500. void (*flow_control_cb)(void *vdev, bool tx_resume);
  501. bool (*get_tx_resource)(uint8_t sta_id,
  502. unsigned int low_watermark,
  503. unsigned int high_watermark_offset);
  504. int (*ll_set_tx_pause_q_depth)(uint8_t vdev_id, int pause_q_depth);
  505. void (*vdev_flush)(void *vdev);
  506. void (*vdev_pause)(void *vdev, uint32_t reason);
  507. void (*vdev_unpause)(void *vdev, uint32_t reason);
  508. };
  509. /**
  510. * struct cdp_ipa_ops - mcl ipa data path ops
  511. * @ipa_get_resource:
  512. * @ipa_set_doorbell_paddr:
  513. * @ipa_set_active:
  514. * @ipa_op_response:
  515. * @ipa_register_op_cb:
  516. * @ipa_get_stat:
  517. * @ipa_tx_data_frame:
  518. */
  519. struct cdp_ipa_ops {
  520. void (*ipa_get_resource)(void *pdev,
  521. struct ol_txrx_ipa_resources *ipa_res);
  522. void (*ipa_set_doorbell_paddr)(void *pdev,
  523. qdf_dma_addr_t ipa_tx_uc_doorbell_paddr,
  524. qdf_dma_addr_t ipa_rx_uc_doorbell_paddr);
  525. void (*ipa_set_active)(void *pdev, bool uc_active, bool is_tx);
  526. void (*ipa_op_response)(void *pdev, uint8_t *op_msg);
  527. void (*ipa_register_op_cb)(void *pdev,
  528. void (*ipa_uc_op_cb_type)(uint8_t *op_msg, void *osif_ctxt),
  529. void *osif_dev);
  530. void (*ipa_get_stat)(void *pdev);
  531. qdf_nbuf_t (*ipa_tx_data_frame)(void *vdev, qdf_nbuf_t skb);
  532. void (*ipa_set_uc_tx_partition_base)(void *pdev, uint32_t value);
  533. };
  534. /**
  535. * struct cdp_lro_ops - mcl large receive offload ops
  536. * @register_lro_flush_cb:
  537. * @deregister_lro_flush_cb:
  538. */
  539. struct cdp_lro_ops {
  540. void (*register_lro_flush_cb)(void (lro_flush_cb)(void *),
  541. void *(lro_init_cb)(void));
  542. void (*deregister_lro_flush_cb)(void (lro_deinit_cb)(void *));
  543. };
  544. /**
  545. * struct cdp_bus_ops - mcl bus suspend/resume ops
  546. * @bus_suspend:
  547. * @bus_resume:
  548. */
  549. struct cdp_bus_ops {
  550. QDF_STATUS (*bus_suspend)(void);
  551. QDF_STATUS (*bus_resume)(void);
  552. };
  553. /**
  554. * struct cdp_ocb_ops - mcl ocb ops
  555. * @set_ocb_chan_info:
  556. * @get_ocb_chan_info:
  557. */
  558. struct cdp_ocb_ops {
  559. void (*set_ocb_chan_info)(void *vdev,
  560. struct ol_txrx_ocb_set_chan ocb_set_chan);
  561. struct ol_txrx_ocb_chan_info * (*get_ocb_chan_info)(void *vdev);
  562. };
  563. /**
  564. * struct cdp_peer_ops - mcl peer related ops
  565. * @register_peer:
  566. * @clear_peer:
  567. * @cfg_attach:
  568. * @find_peer_by_addr:
  569. * @find_peer_by_addr_and_vdev:
  570. * @local_peer_id:
  571. * @peer_find_by_local_id:
  572. * @peer_state_update:
  573. * @get_vdevid:
  574. * @get_vdev_by_sta_id:
  575. * @register_ocb_peer:
  576. * @peer_get_peer_mac_addr:
  577. * @get_peer_state:
  578. * @get_vdev_for_peer:
  579. * @update_ibss_add_peer_num_of_vdev:
  580. * @remove_peers_for_vdev:
  581. * @remove_peers_for_vdev_no_lock:
  582. * @copy_mac_addr_raw:
  583. * @add_last_real_peer:
  584. * @last_assoc_received:
  585. * @last_disassoc_received:
  586. * @last_deauth_received:
  587. * @is_vdev_restore_last_peer:
  588. * @update_last_real_peer:
  589. */
  590. struct cdp_peer_ops {
  591. QDF_STATUS (*register_peer)(void *pdev,
  592. struct ol_txrx_desc_type *sta_desc);
  593. QDF_STATUS (*clear_peer)(void *pdev, uint8_t sta_id);
  594. QDF_STATUS (*change_peer_state)(uint8_t sta_id,
  595. enum ol_txrx_peer_state sta_state,
  596. bool roam_synch_in_progress);
  597. void * (*find_peer_by_addr)(void *pdev,
  598. uint8_t *peer_addr, uint8_t *peer_id);
  599. void * (*find_peer_by_addr_and_vdev)(void *pdev, void *vdev,
  600. uint8_t *peer_addr, uint8_t *peer_id);
  601. uint16_t (*local_peer_id)(void *peer);
  602. void * (*peer_find_by_local_id)(void *pdev, uint8_t local_peer_id);
  603. QDF_STATUS (*peer_state_update)(void *pdev, uint8_t *peer_addr,
  604. enum ol_txrx_peer_state state);
  605. QDF_STATUS (*get_vdevid)(void *peer, uint8_t *vdev_id);
  606. void * (*get_vdev_by_sta_id)(uint8_t sta_id);
  607. QDF_STATUS (*register_ocb_peer)(void *cds_ctx, uint8_t *mac_addr,
  608. uint8_t *peer_id);
  609. uint8_t * (*peer_get_peer_mac_addr)(void *peer);
  610. int (*get_peer_state)(void *peer);
  611. void * (*get_vdev_for_peer)(void *peer);
  612. int16_t (*update_ibss_add_peer_num_of_vdev)(void *vdev,
  613. int16_t peer_num_delta);
  614. void (*remove_peers_for_vdev)(void *vdev,
  615. ol_txrx_vdev_peer_remove_cb callback,
  616. void *callback_context, bool remove_last_peer);
  617. void (*remove_peers_for_vdev_no_lock)(void *vdev,
  618. ol_txrx_vdev_peer_remove_cb callback,
  619. void *callback_context);
  620. void (*copy_mac_addr_raw)(void *vdev, uint8_t *bss_addr);
  621. void (*add_last_real_peer)(void *pdev, void *vdev, uint8_t *peer_id);
  622. qdf_time_t * (*last_assoc_received)(void *peer);
  623. qdf_time_t * (*last_disassoc_received)(void *peer);
  624. qdf_time_t * (*last_deauth_received)(void *peer);
  625. bool (*is_vdev_restore_last_peer)(void *peer);
  626. void (*update_last_real_peer)(void *pdev, void *peer,
  627. uint8_t *peer_id, bool restore_last_peer);
  628. void (*peer_detach_force_delete)(void *peer);
  629. };
  630. /**
  631. * struct cdp_ocb_ops - mcl ocb ops
  632. * @throttle_init_period:
  633. * @throttle_set_level:
  634. */
  635. struct cdp_throttle_ops {
  636. void (*throttle_init_period)(void *pdev, int period,
  637. uint8_t *dutycycle_level);
  638. void (*throttle_set_level)(void *pdev, int level);
  639. };
  640. /**
  641. * struct cdp_ocb_ops - mcl ocb ops
  642. * @display_stats:
  643. * @clear_stats:
  644. * @stats:
  645. */
  646. struct cdp_mob_stats_ops {
  647. void (*display_stats)(uint16_t bitmap);
  648. void (*clear_stats)(uint16_t bitmap);
  649. int (*stats)(uint8_t vdev_id, char *buffer, unsigned buf_len);
  650. };
  651. #endif /* CONFIG_WIN */
  652. struct cdp_ops {
  653. struct cdp_cmn_ops *cmn_drv_ops;
  654. struct cdp_ctrl_ops *ctrl_ops;
  655. struct cdp_me_ops *me_ops;
  656. struct cdp_mon_ops *mon_ops;
  657. struct cdp_host_stats_ops *host_stats_ops;
  658. struct cdp_wds_ops *wds_ops;
  659. struct cdp_raw_ops *raw_ops;
  660. struct cdp_pflow_ops *pflow_ops;
  661. #ifndef CONFIG_WIN
  662. struct cdp_misc_ops *misc_ops;
  663. struct cdp_cfg_ops *cfg_ops;
  664. struct cdp_flowctl_ops *flowctl_ops;
  665. struct cdp_lflowctl_ops *l_flowctl_ops;
  666. struct cdp_ipa_ops *ipa_ops;
  667. struct cdp_lro_ops *lro_ops;
  668. struct cdp_bus_ops *bus_ops;
  669. struct cdp_ocb_ops *ocb_ops;
  670. struct cdp_peer_ops *peer_ops;
  671. struct cdp_throttle_ops *throttle_ops;
  672. struct cdp_mob_stats_ops *mob_stats_ops;
  673. struct cdp_tx_delay_ops *delay_ops;
  674. struct cdp_pmf_ops *pmf_ops;
  675. #endif /* CONFIG_WIN */
  676. };
  677. #endif