cdp_txrx_ops.h 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218
  1. /*
  2. * Copyright (c) 2017-2018 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. #include <cdp_txrx_stats_struct.h>
  28. #include "cdp_txrx_handle.h"
  29. #include <cdp_txrx_mon_struct.h>
  30. #include "wlan_objmgr_psoc_obj.h"
  31. #ifdef IPA_OFFLOAD
  32. #ifdef CONFIG_IPA_WDI_UNIFIED_API
  33. #include <qdf_ipa_wdi3.h>
  34. #else
  35. #include <qdf_ipa.h>
  36. #endif
  37. #endif
  38. /**
  39. * bitmap values to indicate special handling of peer_delete
  40. */
  41. #define CDP_PEER_DELETE_NO_SPECIAL 0
  42. #define CDP_PEER_DO_NOT_START_UNMAP_TIMER 1
  43. /* same as ieee80211_nac_param */
  44. enum cdp_nac_param_cmd {
  45. /* IEEE80211_NAC_PARAM_ADD */
  46. CDP_NAC_PARAM_ADD = 1,
  47. /* IEEE80211_NAC_PARAM_DEL */
  48. CDP_NAC_PARAM_DEL,
  49. /* IEEE80211_NAC_PARAM_LIST */
  50. CDP_NAC_PARAM_LIST,
  51. };
  52. /******************************************************************************
  53. *
  54. * Control Interface (A Interface)
  55. *
  56. *****************************************************************************/
  57. struct cdp_cmn_ops {
  58. int (*txrx_soc_attach_target)(ol_txrx_soc_handle soc);
  59. int (*txrx_pdev_attach_target)(struct cdp_pdev *pdev);
  60. struct cdp_vdev *(*txrx_vdev_attach)
  61. (struct cdp_pdev *pdev, uint8_t *vdev_mac_addr,
  62. uint8_t vdev_id, enum wlan_op_mode op_mode);
  63. void (*txrx_vdev_detach)
  64. (struct cdp_vdev *vdev, ol_txrx_vdev_delete_cb callback,
  65. void *cb_context);
  66. struct cdp_pdev *(*txrx_pdev_attach)
  67. (ol_txrx_soc_handle soc, struct cdp_ctrl_objmgr_pdev *ctrl_pdev,
  68. HTC_HANDLE htc_pdev, qdf_device_t osdev, uint8_t pdev_id);
  69. int (*txrx_pdev_post_attach)(struct cdp_pdev *pdev);
  70. void (*txrx_pdev_pre_detach)(struct cdp_pdev *pdev, int force);
  71. void (*txrx_pdev_detach)(struct cdp_pdev *pdev, int force);
  72. void *(*txrx_peer_create)
  73. (struct cdp_vdev *vdev, uint8_t *peer_mac_addr,
  74. struct cdp_ctrl_objmgr_peer *ctrl_peer);
  75. void (*txrx_peer_setup)
  76. (struct cdp_vdev *vdev_hdl, void *peer_hdl);
  77. void (*txrx_peer_teardown)
  78. (struct cdp_vdev *vdev_hdl, void *peer_hdl);
  79. int (*txrx_peer_add_ast)
  80. (ol_txrx_soc_handle soc, struct cdp_peer *peer_hdl,
  81. uint8_t *mac_addr, enum cdp_txrx_ast_entry_type type,
  82. uint32_t flags);
  83. void (*txrx_peer_del_ast)
  84. (ol_txrx_soc_handle soc, void *ast_hdl);
  85. int (*txrx_peer_update_ast)
  86. (ol_txrx_soc_handle soc, struct cdp_peer *peer_hdl,
  87. uint8_t *mac_addr, uint32_t flags);
  88. void *(*txrx_peer_ast_hash_find)
  89. (ol_txrx_soc_handle soc, uint8_t *ast_mac_addr);
  90. uint8_t (*txrx_peer_ast_get_pdev_id)
  91. (ol_txrx_soc_handle soc, void *ast_hdl);
  92. uint8_t (*txrx_peer_ast_get_next_hop)
  93. (ol_txrx_soc_handle soc, void *ast_hdl);
  94. void (*txrx_peer_ast_set_type)
  95. (ol_txrx_soc_handle soc, void *ast_hdl,
  96. enum cdp_txrx_ast_entry_type type);
  97. enum cdp_txrx_ast_entry_type (*txrx_peer_ast_get_type)
  98. (ol_txrx_soc_handle soc, void *ast_hdl);
  99. void (*txrx_peer_delete)(void *peer, uint32_t bitmap);
  100. int (*txrx_set_monitor_mode)(struct cdp_vdev *vdev,
  101. uint8_t smart_monitor);
  102. uint8_t (*txrx_get_pdev_id_frm_pdev)(struct cdp_pdev *pdev);
  103. void (*txrx_pdev_set_chan_noise_floor)(struct cdp_pdev *pdev,
  104. int16_t chan_noise_floor);
  105. void (*txrx_set_nac)(struct cdp_peer *peer);
  106. void (*txrx_set_pdev_tx_capture)(struct cdp_pdev *pdev, int val);
  107. void (*txrx_get_peer_mac_from_peer_id)
  108. (struct cdp_pdev *pdev_handle,
  109. uint32_t peer_id, uint8_t *peer_mac);
  110. void (*txrx_vdev_tx_lock)(struct cdp_vdev *vdev);
  111. void (*txrx_vdev_tx_unlock)(struct cdp_vdev *vdev);
  112. void (*txrx_ath_getstats)(void *pdev,
  113. struct cdp_dev_stats *stats, uint8_t type);
  114. void (*txrx_set_gid_flag)(struct cdp_pdev *pdev, u_int8_t *mem_status,
  115. u_int8_t *user_position);
  116. uint32_t (*txrx_fw_supported_enh_stats_version)(struct cdp_pdev *pdev);
  117. void (*txrx_if_mgmt_drain)(void *ni, int force);
  118. void (*txrx_set_curchan)(struct cdp_pdev *pdev, uint32_t chan_mhz);
  119. void (*txrx_set_privacy_filters)
  120. (struct cdp_vdev *vdev, void *filter, uint32_t num);
  121. /********************************************************************
  122. * Data Interface (B Interface)
  123. ********************************************************************/
  124. void (*txrx_vdev_register)(struct cdp_vdev *vdev,
  125. void *osif_vdev, struct cdp_ctrl_objmgr_vdev *ctrl_vdev,
  126. struct ol_txrx_ops *txrx_ops);
  127. int (*txrx_mgmt_send)(struct cdp_vdev *vdev,
  128. qdf_nbuf_t tx_mgmt_frm, uint8_t type);
  129. int (*txrx_mgmt_send_ext)(struct cdp_vdev *vdev,
  130. qdf_nbuf_t tx_mgmt_frm, uint8_t type, uint8_t use_6mbps,
  131. uint16_t chanfreq);
  132. /**
  133. * ol_txrx_mgmt_tx_cb - tx management delivery notification
  134. * callback function
  135. */
  136. void (*txrx_mgmt_tx_cb_set)(struct cdp_pdev *pdev, uint8_t type,
  137. ol_txrx_mgmt_tx_cb download_cb,
  138. ol_txrx_mgmt_tx_cb ota_ack_cb,
  139. void *ctxt);
  140. int (*txrx_get_tx_pending)(struct cdp_pdev *pdev);
  141. /**
  142. * ol_txrx_data_tx_cb - Function registered with the data path
  143. * that is called when tx frames marked as "no free" are
  144. * done being transmitted
  145. */
  146. void (*txrx_data_tx_cb_set)(struct cdp_vdev *data_vdev,
  147. ol_txrx_data_tx_cb callback, void *ctxt);
  148. /*******************************************************************
  149. * Statistics and Debugging Interface (C Interface)
  150. ********************************************************************/
  151. int (*txrx_aggr_cfg)(struct cdp_vdev *vdev, int max_subfrms_ampdu,
  152. int max_subfrms_amsdu);
  153. A_STATUS (*txrx_fw_stats_get)(struct cdp_vdev *vdev,
  154. struct ol_txrx_stats_req *req,
  155. bool per_vdev, bool response_expected);
  156. int (*txrx_debug)(struct cdp_vdev *vdev, int debug_specs);
  157. void (*txrx_fw_stats_cfg)(struct cdp_vdev *vdev,
  158. uint8_t cfg_stats_type, uint32_t cfg_val);
  159. void (*txrx_print_level_set)(unsigned level);
  160. /**
  161. * ol_txrx_get_vdev_mac_addr() - Return mac addr of vdev
  162. * @vdev: vdev handle
  163. *
  164. * Return: vdev mac address
  165. */
  166. uint8_t * (*txrx_get_vdev_mac_addr)(struct cdp_vdev *vdev);
  167. /**
  168. * ol_txrx_get_vdev_struct_mac_addr() - Return handle to struct qdf_mac_addr of
  169. * vdev
  170. * @vdev: vdev handle
  171. *
  172. * Return: Handle to struct qdf_mac_addr
  173. */
  174. struct qdf_mac_addr *
  175. (*txrx_get_vdev_struct_mac_addr)(struct cdp_vdev *vdev);
  176. /**
  177. * ol_txrx_get_pdev_from_vdev() - Return handle to pdev of vdev
  178. * @vdev: vdev handle
  179. *
  180. * Return: Handle to pdev
  181. */
  182. struct cdp_pdev *(*txrx_get_pdev_from_vdev)
  183. (struct cdp_vdev *vdev);
  184. /**
  185. * ol_txrx_get_ctrl_pdev_from_vdev() - Return control pdev of vdev
  186. * @vdev: vdev handle
  187. *
  188. * Return: Handle to control pdev
  189. */
  190. struct cdp_cfg *
  191. (*txrx_get_ctrl_pdev_from_vdev)(struct cdp_vdev *vdev);
  192. struct cdp_vdev *
  193. (*txrx_get_vdev_from_vdev_id)(struct cdp_pdev *pdev,
  194. uint8_t vdev_id);
  195. void (*txrx_soc_detach)(void *soc);
  196. int (*addba_resp_tx_completion)(void *peer_handle, uint8_t tid,
  197. int status);
  198. int (*addba_requestprocess)(void *peer_handle, uint8_t dialogtoken,
  199. uint16_t tid, uint16_t batimeout,
  200. uint16_t buffersize,
  201. uint16_t startseqnum);
  202. void (*addba_responsesetup)(void *peer_handle, uint8_t tid,
  203. uint8_t *dialogtoken, uint16_t *statuscode,
  204. uint16_t *buffersize, uint16_t *batimeout);
  205. int (*delba_process)(void *peer_handle,
  206. int tid, uint16_t reasoncode);
  207. /**
  208. * delba_tx_completion() - Indicate delba tx status
  209. * @peer_handle: Peer handle
  210. * @tid: Tid number
  211. * @status: Tx completion status
  212. *
  213. * Return: 0 on Success, 1 on failure
  214. */
  215. int (*delba_tx_completion)(void *peer_handle,
  216. uint8_t tid, int status);
  217. void (*set_addba_response)(void *peer_handle,
  218. uint8_t tid, uint16_t statuscode);
  219. uint8_t (*get_peer_mac_addr_frm_id)(struct cdp_soc_t *soc_handle,
  220. uint16_t peer_id, uint8_t *mac_addr);
  221. void (*set_vdev_dscp_tid_map)(struct cdp_vdev *vdev_handle,
  222. uint8_t map_id);
  223. void (*flush_cache_rx_queue)(void);
  224. void (*set_pdev_dscp_tid_map)(struct cdp_pdev *pdev, uint8_t map_id,
  225. uint8_t tos, uint8_t tid);
  226. QDF_STATUS (*txrx_stats_request)(struct cdp_vdev *vdev,
  227. struct cdp_txrx_stats_req *req);
  228. QDF_STATUS (*display_stats)(void *psoc, uint16_t value,
  229. enum qdf_stats_verbosity_level level);
  230. void (*txrx_soc_set_nss_cfg)(ol_txrx_soc_handle soc, int config);
  231. int(*txrx_soc_get_nss_cfg)(ol_txrx_soc_handle soc);
  232. QDF_STATUS (*txrx_intr_attach)(void *soc);
  233. void (*txrx_intr_detach)(void *soc);
  234. void (*set_pn_check)(struct cdp_vdev *vdev,
  235. struct cdp_peer *peer_handle, enum cdp_sec_type sec_type,
  236. uint32_t *rx_pn);
  237. QDF_STATUS (*update_config_parameters)(struct cdp_soc *psoc,
  238. struct cdp_config_params *params);
  239. void *(*get_dp_txrx_handle)(struct cdp_pdev *pdev_hdl);
  240. void (*set_dp_txrx_handle)(struct cdp_pdev *pdev_hdl,
  241. void *dp_txrx_hdl);
  242. void *(*get_soc_dp_txrx_handle)(struct cdp_soc *soc_handle);
  243. void (*set_soc_dp_txrx_handle)(struct cdp_soc *soc_handle,
  244. void *dp_txrx_handle);
  245. void (*txrx_peer_reset_ast)
  246. (ol_txrx_soc_handle soc, uint8_t *ast_macaddr, void *vdev_hdl);
  247. void (*txrx_peer_reset_ast_table)(ol_txrx_soc_handle soc,
  248. void *vdev_hdl);
  249. void (*txrx_peer_flush_ast_table)(ol_txrx_soc_handle soc);
  250. QDF_STATUS (*txrx_peer_map_attach)(ol_txrx_soc_handle soc,
  251. uint32_t num_peers);
  252. void (*txrx_pdev_set_ctrl_pdev)(struct cdp_pdev *pdev_hdl,
  253. struct cdp_ctrl_objmgr_pdev *ctrl_pdev);
  254. ol_txrx_tx_fp tx_send;
  255. };
  256. struct cdp_ctrl_ops {
  257. int
  258. (*txrx_mempools_attach)(void *ctrl_pdev);
  259. int
  260. (*txrx_set_filter_neighbour_peers)(
  261. struct cdp_pdev *pdev,
  262. uint32_t val);
  263. int
  264. (*txrx_update_filter_neighbour_peers)(
  265. struct cdp_vdev *vdev,
  266. uint32_t cmd, uint8_t *macaddr);
  267. /**
  268. * @brief set the safemode of the device
  269. * @details
  270. * This flag is used to bypass the encrypt and decrypt processes when
  271. * send and receive packets. It works like open AUTH mode, HW will
  272. * ctreate all packets as non-encrypt frames because no key installed.
  273. * For rx fragmented frames,it bypasses all the rx defragmentaion.
  274. *
  275. * @param vdev - the data virtual device object
  276. * @param val - the safemode state
  277. * @return - void
  278. */
  279. void
  280. (*txrx_set_safemode)(
  281. struct cdp_vdev *vdev,
  282. u_int32_t val);
  283. /**
  284. * @brief configure the drop unencrypted frame flag
  285. * @details
  286. * Rx related. When set this flag, all the unencrypted frames
  287. * received over a secure connection will be discarded
  288. *
  289. * @param vdev - the data virtual device object
  290. * @param val - flag
  291. * @return - void
  292. */
  293. void
  294. (*txrx_set_drop_unenc)(
  295. struct cdp_vdev *vdev,
  296. u_int32_t val);
  297. /**
  298. * @brief set the Tx encapsulation type of the VDEV
  299. * @details
  300. * This will be used to populate the HTT desc packet type field
  301. * during Tx
  302. * @param vdev - the data virtual device object
  303. * @param val - the Tx encap type
  304. * @return - void
  305. */
  306. void
  307. (*txrx_set_tx_encap_type)(
  308. struct cdp_vdev *vdev,
  309. enum htt_cmn_pkt_type val);
  310. /**
  311. * @brief set the Rx decapsulation type of the VDEV
  312. * @details
  313. * This will be used to configure into firmware and hardware
  314. * which format to decap all Rx packets into, for all peers under
  315. * the VDEV.
  316. * @param vdev - the data virtual device object
  317. * @param val - the Rx decap mode
  318. * @return - void
  319. */
  320. void
  321. (*txrx_set_vdev_rx_decap_type)(
  322. struct cdp_vdev *vdev,
  323. enum htt_cmn_pkt_type val);
  324. /**
  325. * @brief get the Rx decapsulation type of the VDEV
  326. *
  327. * @param vdev - the data virtual device object
  328. * @return - the Rx decap type
  329. */
  330. enum htt_cmn_pkt_type
  331. (*txrx_get_vdev_rx_decap_type)(struct cdp_vdev *vdev);
  332. /* Is this similar to ol_txrx_peer_state_update() in MCL */
  333. /**
  334. * @brief Update the authorize peer object at association time
  335. * @details
  336. * For the host-based implementation of rate-control, it
  337. * updates the peer/node-related parameters within rate-control
  338. * context of the peer at association.
  339. *
  340. * @param peer - pointer to the node's object
  341. * @authorize - either to authorize or unauthorize peer
  342. *
  343. * @return none
  344. */
  345. void
  346. (*txrx_peer_authorize)(struct cdp_peer *peer,
  347. u_int32_t authorize);
  348. bool
  349. (*txrx_set_inact_params)(struct cdp_pdev *pdev,
  350. u_int16_t inact_check_interval,
  351. u_int16_t inact_normal,
  352. u_int16_t inact_overload);
  353. bool
  354. (*txrx_start_inact_timer)(
  355. struct cdp_pdev *pdev,
  356. bool enable);
  357. /**
  358. * @brief Set the overload status of the radio
  359. * @details
  360. * Set the overload status of the radio, updating the inactivity
  361. * threshold and inactivity count for each node.
  362. *
  363. * @param pdev - the data physical device object
  364. * @param overload - whether the radio is overloaded or not
  365. */
  366. void (*txrx_set_overload)(
  367. struct cdp_pdev *pdev,
  368. bool overload);
  369. /**
  370. * @brief Check the inactivity status of the peer/node
  371. *
  372. * @param peer - pointer to the node's object
  373. * @return true if the node is inactive; otherwise return false
  374. */
  375. bool
  376. (*txrx_peer_is_inact)(void *peer);
  377. /**
  378. * @brief Mark inactivity status of the peer/node
  379. * @details
  380. * If it becomes active, reset inactivity count to reload value;
  381. * if the inactivity status changed, notify umac band steering.
  382. *
  383. * @param peer - pointer to the node's object
  384. * @param inactive - whether the node is inactive or not
  385. */
  386. void (*txrx_mark_peer_inact)(
  387. void *peer,
  388. bool inactive);
  389. /* Should be ol_txrx_ctrl_api.h */
  390. void (*txrx_set_mesh_mode)(struct cdp_vdev *vdev, u_int32_t val);
  391. /**
  392. * @brief setting mesh rx filter
  393. * @details
  394. * based on the bits enabled in the filter packets has to be dropped.
  395. *
  396. * @param vdev - the data virtual device object
  397. * @param val - value to set
  398. */
  399. void (*txrx_set_mesh_rx_filter)(struct cdp_vdev *vdev, uint32_t val);
  400. void (*tx_flush_buffers)(struct cdp_vdev *vdev);
  401. int (*txrx_is_target_ar900b)(struct cdp_vdev *vdev);
  402. void (*txrx_set_vdev_param)(struct cdp_vdev *vdev,
  403. enum cdp_vdev_param_type param, uint32_t val);
  404. void (*txrx_peer_set_nawds)(struct cdp_peer *peer, uint8_t value);
  405. /**
  406. * @brief Set the reo dest ring num of the radio
  407. * @details
  408. * Set the reo destination ring no on which we will receive
  409. * pkts for this radio.
  410. *
  411. * @param pdev - the data physical device object
  412. * @param reo_dest_ring_num - value ranges between 1 - 4
  413. */
  414. void (*txrx_set_pdev_reo_dest)(
  415. struct cdp_pdev *pdev,
  416. enum cdp_host_reo_dest_ring reo_dest_ring_num);
  417. /**
  418. * @brief Get the reo dest ring num of the radio
  419. * @details
  420. * Get the reo destination ring no on which we will receive
  421. * pkts for this radio.
  422. *
  423. * @param pdev - the data physical device object
  424. * @return the reo destination ring number
  425. */
  426. enum cdp_host_reo_dest_ring (*txrx_get_pdev_reo_dest)(
  427. struct cdp_pdev *pdev);
  428. int (*txrx_wdi_event_sub)(struct cdp_pdev *pdev, void *event_cb_sub,
  429. uint32_t event);
  430. int (*txrx_wdi_event_unsub)(struct cdp_pdev *pdev, void *event_cb_sub,
  431. uint32_t event);
  432. int (*txrx_get_sec_type)(struct cdp_peer *peer, uint8_t sec_idx);
  433. void (*txrx_update_mgmt_txpow_vdev)(struct cdp_vdev *vdev,
  434. uint8_t subtype, uint8_t tx_power);
  435. void (*txrx_set_pdev_param)(struct cdp_pdev *pdev,
  436. enum cdp_pdev_param_type type, uint8_t val);
  437. void * (*txrx_get_pldev)(struct cdp_pdev *pdev);
  438. #ifdef ATH_SUPPORT_NAC_RSSI
  439. QDF_STATUS (*txrx_vdev_config_for_nac_rssi)(struct cdp_vdev *vdev,
  440. enum cdp_nac_param_cmd cmd, char *bssid, char *client_macaddr,
  441. uint8_t chan_num);
  442. QDF_STATUS (*txrx_vdev_get_neighbour_rssi)(struct cdp_vdev *vdev,
  443. char *macaddr,
  444. uint8_t *rssi);
  445. #endif
  446. void (*set_key)(struct cdp_peer *peer_handle,
  447. bool is_unicast, uint32_t *key);
  448. };
  449. struct cdp_me_ops {
  450. u_int16_t (*tx_desc_alloc_and_mark_for_mcast_clone)
  451. (struct cdp_pdev *pdev, u_int16_t buf_count);
  452. u_int16_t (*tx_desc_free_and_unmark_for_mcast_clone)(
  453. struct cdp_pdev *pdev,
  454. u_int16_t buf_count);
  455. u_int16_t
  456. (*tx_get_mcast_buf_allocated_marked)
  457. (struct cdp_pdev *pdev);
  458. void
  459. (*tx_me_alloc_descriptor)(struct cdp_pdev *pdev);
  460. void
  461. (*tx_me_free_descriptor)(struct cdp_pdev *pdev);
  462. uint16_t
  463. (*tx_me_convert_ucast)(struct cdp_vdev *vdev,
  464. qdf_nbuf_t wbuf, u_int8_t newmac[][6],
  465. uint8_t newmaccnt);
  466. /* Should be a function pointer in ol_txrx_osif_ops{} */
  467. /**
  468. * @brief notify mcast frame indication from FW.
  469. * @details
  470. * This notification will be used to convert
  471. * multicast frame to unicast.
  472. *
  473. * @param pdev - handle to the ctrl SW's physical device object
  474. * @param vdev_id - ID of the virtual device received the special data
  475. * @param msdu - the multicast msdu returned by FW for host inspect
  476. */
  477. int (*mcast_notify)(struct cdp_pdev *pdev,
  478. u_int8_t vdev_id, qdf_nbuf_t msdu);
  479. };
  480. struct cdp_mon_ops {
  481. void (*txrx_monitor_set_filter_ucast_data)
  482. (struct cdp_pdev *, u_int8_t val);
  483. void (*txrx_monitor_set_filter_mcast_data)
  484. (struct cdp_pdev *, u_int8_t val);
  485. void (*txrx_monitor_set_filter_non_data)
  486. (struct cdp_pdev *, u_int8_t val);
  487. bool (*txrx_monitor_get_filter_ucast_data)
  488. (struct cdp_vdev *vdev_txrx_handle);
  489. bool (*txrx_monitor_get_filter_mcast_data)
  490. (struct cdp_vdev *vdev_txrx_handle);
  491. bool (*txrx_monitor_get_filter_non_data)
  492. (struct cdp_vdev *vdev_txrx_handle);
  493. int (*txrx_reset_monitor_mode)(struct cdp_pdev *pdev);
  494. /* HK advance monitor filter support */
  495. int (*txrx_set_advance_monitor_filter)
  496. (struct cdp_pdev *pdev, struct cdp_monitor_filter *filter_val);
  497. };
  498. struct cdp_host_stats_ops {
  499. int (*txrx_host_stats_get)(struct cdp_vdev *vdev,
  500. struct ol_txrx_stats_req *req);
  501. void (*txrx_host_stats_clr)(struct cdp_vdev *vdev);
  502. void (*txrx_host_ce_stats)(struct cdp_vdev *vdev);
  503. int (*txrx_stats_publish)(struct cdp_pdev *pdev,
  504. void *buf);
  505. /**
  506. * @brief Enable enhanced stats functionality.
  507. *
  508. * @param pdev - the physical device object
  509. * @return - void
  510. */
  511. void (*txrx_enable_enhanced_stats)(struct cdp_pdev *pdev);
  512. /**
  513. * @brief Disable enhanced stats functionality.
  514. *
  515. * @param pdev - the physical device object
  516. * @return - void
  517. */
  518. void (*txrx_disable_enhanced_stats)(struct cdp_pdev *pdev);
  519. /**
  520. * @brief Get the desired stats from the message.
  521. *
  522. * @param pdev - the physical device object
  523. * @param stats_base - stats buffer received from FW
  524. * @param type - stats type.
  525. * @return - pointer to requested stat identified by type
  526. */
  527. uint32_t * (*txrx_get_stats_base)(struct cdp_pdev *pdev,
  528. uint32_t *stats_base, uint32_t msg_len, uint8_t type);
  529. void
  530. (*tx_print_tso_stats)(struct cdp_vdev *vdev);
  531. void
  532. (*tx_rst_tso_stats)(struct cdp_vdev *vdev);
  533. void
  534. (*tx_print_sg_stats)(struct cdp_vdev *vdev);
  535. void
  536. (*tx_rst_sg_stats)(struct cdp_vdev *vdev);
  537. void
  538. (*print_rx_cksum_stats)(struct cdp_vdev *vdev);
  539. void
  540. (*rst_rx_cksum_stats)(struct cdp_vdev *vdev);
  541. A_STATUS
  542. (*txrx_host_me_stats)(struct cdp_vdev *vdev);
  543. void
  544. (*txrx_per_peer_stats)(struct cdp_pdev *pdev, char *addr);
  545. int (*txrx_host_msdu_ttl_stats)(struct cdp_vdev *vdev,
  546. struct ol_txrx_stats_req *req);
  547. void
  548. (*print_lro_stats)(struct cdp_vdev *vdev);
  549. void
  550. (*reset_lro_stats)(struct cdp_vdev *vdev);
  551. void
  552. (*get_fw_peer_stats)(struct cdp_pdev *pdev, uint8_t *addr,
  553. uint32_t cap);
  554. void
  555. (*get_htt_stats)(struct cdp_pdev *pdev, void *data,
  556. uint32_t data_len);
  557. void
  558. (*txrx_update_pdev_stats)(struct cdp_pdev *pdev, void *data,
  559. uint16_t stats_id);
  560. struct cdp_peer_stats*
  561. (*txrx_get_peer_stats)(struct cdp_peer *peer);
  562. void
  563. (*txrx_reset_peer_ald_stats)(struct cdp_peer *peer);
  564. void
  565. (*txrx_reset_peer_stats)(struct cdp_peer *peer);
  566. int
  567. (*txrx_get_vdev_stats)(struct cdp_vdev *vdev, void *buf,
  568. bool is_aggregate);
  569. int
  570. (*txrx_process_wmi_host_vdev_stats)(ol_txrx_soc_handle soc,
  571. void *data, uint32_t len,
  572. uint32_t stats_id);
  573. int
  574. (*txrx_get_vdev_extd_stats)(struct cdp_vdev *vdev_handle,
  575. void *buffer);
  576. };
  577. struct cdp_wds_ops {
  578. void
  579. (*txrx_set_wds_rx_policy)(struct cdp_vdev *vdev,
  580. u_int32_t val);
  581. void
  582. (*txrx_wds_peer_tx_policy_update)(struct cdp_peer *peer,
  583. int wds_tx_ucast, int wds_tx_mcast);
  584. int (*vdev_set_wds)(void *vdev, uint32_t val);
  585. };
  586. struct cdp_raw_ops {
  587. int (*txrx_get_nwifi_mode)(struct cdp_vdev *vdev);
  588. void (*rsim_get_astentry)(struct cdp_vdev *vdev,
  589. qdf_nbuf_t *pnbuf,
  590. struct cdp_raw_ast *raw_ast);
  591. };
  592. #ifdef CONFIG_WIN
  593. struct cdp_pflow_ops {
  594. uint32_t(*pflow_update_pdev_params)(void *,
  595. enum _ol_ath_param_t, uint32_t, void *);
  596. };
  597. #endif /* CONFIG_WIN */
  598. #define LRO_IPV4_SEED_ARR_SZ 5
  599. #define LRO_IPV6_SEED_ARR_SZ 11
  600. /**
  601. * struct cdp_lro_hash_config - set rx_offld(LRO/GRO) init parameters
  602. * @lro_enable: indicates whether rx_offld is enabled
  603. * @tcp_flag: If the TCP flags from the packet do not match
  604. * the values in this field after masking with TCP flags mask
  605. * below, packet is not rx_offld eligible
  606. * @tcp_flag_mask: field for comparing the TCP values provided
  607. * above with the TCP flags field in the received packet
  608. * @toeplitz_hash_ipv4: contains seed needed to compute the flow id
  609. * 5-tuple toeplitz hash for ipv4 packets
  610. * @toeplitz_hash_ipv6: contains seed needed to compute the flow id
  611. * 5-tuple toeplitz hash for ipv6 packets
  612. */
  613. struct cdp_lro_hash_config {
  614. uint32_t lro_enable;
  615. uint32_t tcp_flag:9,
  616. tcp_flag_mask:9;
  617. uint32_t toeplitz_hash_ipv4[LRO_IPV4_SEED_ARR_SZ];
  618. uint32_t toeplitz_hash_ipv6[LRO_IPV6_SEED_ARR_SZ];
  619. };
  620. struct ol_if_ops {
  621. void
  622. (*peer_set_default_routing)(struct cdp_ctrl_objmgr_pdev *ctrl_pdev,
  623. uint8_t *peer_macaddr, uint8_t vdev_id,
  624. bool hash_based, uint8_t ring_num);
  625. QDF_STATUS
  626. (*peer_rx_reorder_queue_setup)(struct cdp_ctrl_objmgr_pdev *ctrl_pdev,
  627. uint8_t vdev_id, uint8_t *peer_mac,
  628. qdf_dma_addr_t hw_qdesc, int tid,
  629. uint16_t queue_num,
  630. uint8_t ba_window_size_valid,
  631. uint16_t ba_window_size);
  632. QDF_STATUS
  633. (*peer_rx_reorder_queue_remove)(struct cdp_ctrl_objmgr_pdev *ctrl_pdev,
  634. uint8_t vdev_id, uint8_t *peer_macaddr,
  635. uint32_t tid_mask);
  636. int (*peer_unref_delete)(void *scn_handle, uint8_t vdev_id,
  637. uint8_t *peer_macaddr);
  638. bool (*is_hw_dbs_2x2_capable)(struct wlan_objmgr_psoc *psoc);
  639. int (*peer_add_wds_entry)(void *ol_soc_handle,
  640. const uint8_t *dest_macaddr, uint8_t *peer_macaddr,
  641. uint32_t flags);
  642. int (*peer_update_wds_entry)(void *ol_soc_handle,
  643. uint8_t *dest_macaddr, uint8_t *peer_macaddr,
  644. uint32_t flags);
  645. void (*peer_del_wds_entry)(void *ol_soc_handle,
  646. uint8_t *wds_macaddr);
  647. QDF_STATUS
  648. (*lro_hash_config)(struct wlan_objmgr_psoc *ctrl_psoc,
  649. struct cdp_lro_hash_config *rx_offld_hash);
  650. void (*update_dp_stats)(void *soc, void *stats, uint16_t id,
  651. uint8_t type);
  652. uint8_t (*rx_invalid_peer)(void *ctrl_pdev, void *msg);
  653. int (*peer_map_event)(void *ol_soc_handle, uint16_t peer_id, uint16_t hw_peer_id,
  654. uint8_t vdev_id, uint8_t *peer_mac_addr,
  655. enum cdp_txrx_ast_entry_type peer_type);
  656. int (*peer_unmap_event)(void *ol_soc_handle, uint16_t peer_id);
  657. int (*get_dp_cfg_param)(void *ol_soc_handle, enum cdp_cfg_param_type param_num);
  658. void (*rx_mic_error)(void *ol_soc_handle,
  659. uint16_t vdev_id, void *wh);
  660. bool (*rx_frag_tkip_demic)(struct wlan_objmgr_peer *ctrl_peer,
  661. qdf_nbuf_t nbuf,
  662. uint16_t hdr_space);
  663. uint8_t (*freq_to_channel)(void *ol_soc_handle, uint16_t vdev_id);
  664. void (*record_act_change)(struct wlan_objmgr_pdev *pdev,
  665. u_int8_t *dstmac, bool active);
  666. #ifdef ATH_SUPPORT_NAC_RSSI
  667. int (*config_fw_for_nac_rssi)(struct wlan_objmgr_pdev *pdev,
  668. u_int8_t vdev_id, enum cdp_nac_param_cmd cmd, char *bssid,
  669. char *client_macaddr, uint8_t chan_num);
  670. int (*config_bssid_in_fw_for_nac_rssi)(struct wlan_objmgr_pdev *pdev,
  671. u_int8_t vdev_id, enum cdp_nac_param_cmd cmd, char *bssid);
  672. #endif
  673. int (*peer_sta_kickout)(void *ctrl_pdev, uint8_t *peer_macaddr);
  674. /**
  675. * send_delba() - Send delba to peer
  676. * @pdev_handle: Dp pdev handle
  677. * @ctrl_peer: Peer handle
  678. * @peer_macaddr: Peer mac addr
  679. * @tid: Tid number
  680. *
  681. * Return: 0 for success, non-zero for failure
  682. */
  683. int (*send_delba)(void *pdev_handle, void *ctrl_peer,
  684. uint8_t *peer_macaddr, uint8_t tid, void *vdev_handle);
  685. /* TODO: Add any other control path calls required to OL_IF/WMA layer */
  686. };
  687. #ifndef CONFIG_WIN
  688. /* From here MCL specific OPs */
  689. /**
  690. * struct cdp_misc_ops - mcl ops not classified
  691. * @set_ibss_vdev_heart_beat_timer:
  692. * @bad_peer_txctl_set_setting:
  693. * @bad_peer_txctl_update_threshold:
  694. * @hl_tdls_flag_reset:
  695. * @tx_non_std:
  696. * @get_vdev_id:
  697. * @set_wisa_mode:
  698. * @txrx_data_stall_cb_register:
  699. * @txrx_data_stall_cb_deregister:
  700. * @txrx_post_data_stall_event
  701. * @runtime_suspend:
  702. * @runtime_resume:
  703. */
  704. struct cdp_misc_ops {
  705. uint16_t (*set_ibss_vdev_heart_beat_timer)(struct cdp_vdev *vdev,
  706. uint16_t timer_value_sec);
  707. void (*set_wmm_param)(struct cdp_pdev *cfg_pdev,
  708. struct ol_tx_wmm_param_t wmm_param);
  709. void (*bad_peer_txctl_set_setting)(struct cdp_pdev *pdev, int enable,
  710. int period, int txq_limit);
  711. void (*bad_peer_txctl_update_threshold)(struct cdp_pdev *pdev,
  712. int level, int tput_thresh, int tx_limit);
  713. void (*hl_tdls_flag_reset)(struct cdp_vdev *vdev, bool flag);
  714. qdf_nbuf_t (*tx_non_std)(struct cdp_vdev *vdev,
  715. enum ol_tx_spec tx_spec, qdf_nbuf_t msdu_list);
  716. uint16_t (*get_vdev_id)(struct cdp_vdev *vdev);
  717. uint32_t (*get_tx_ack_stats)(uint8_t vdev_id);
  718. QDF_STATUS (*set_wisa_mode)(struct cdp_vdev *vdev, bool enable);
  719. QDF_STATUS (*txrx_data_stall_cb_register)(data_stall_detect_cb cb);
  720. QDF_STATUS (*txrx_data_stall_cb_deregister)(data_stall_detect_cb cb);
  721. void (*txrx_post_data_stall_event)(
  722. enum data_stall_log_event_indicator indicator,
  723. enum data_stall_log_event_type data_stall_type,
  724. uint32_t pdev_id, uint32_t vdev_id_bitmap,
  725. enum data_stall_log_recovery_type recovery_type);
  726. QDF_STATUS (*runtime_suspend)(struct cdp_pdev *pdev);
  727. QDF_STATUS (*runtime_resume)(struct cdp_pdev *pdev);
  728. int (*get_opmode)(struct cdp_vdev *vdev);
  729. void (*mark_first_wakeup_packet)(uint8_t value);
  730. void (*update_mac_id)(uint8_t vdev_id, uint8_t mac_id);
  731. void (*flush_rx_frames)(void *peer, bool drop);
  732. A_STATUS (*get_intra_bss_fwd_pkts_count)(uint8_t vdev_id,
  733. uint64_t *fwd_tx_packets, uint64_t *fwd_rx_packets);
  734. void (*pkt_log_init)(struct cdp_pdev *handle, void *scn);
  735. void (*pkt_log_con_service)(struct cdp_pdev *pdev, void *scn);
  736. };
  737. /**
  738. * struct cdp_tx_delay_ops - mcl tx delay ops
  739. * @tx_delay:
  740. * @tx_delay_hist:
  741. * @tx_packet_count:
  742. * @tx_set_compute_interval:
  743. */
  744. struct cdp_tx_delay_ops {
  745. void (*tx_delay)(struct cdp_pdev *pdev, uint32_t *queue_delay_microsec,
  746. uint32_t *tx_delay_microsec, int category);
  747. void (*tx_delay_hist)(struct cdp_pdev *pdev,
  748. uint16_t *bin_values, int category);
  749. void (*tx_packet_count)(struct cdp_pdev *pdev,
  750. uint16_t *out_packet_count,
  751. uint16_t *out_packet_loss_count, int category);
  752. void (*tx_set_compute_interval)(struct cdp_pdev *pdev,
  753. uint32_t interval);
  754. };
  755. /**
  756. * struct cdp_pmf_ops - mcl protected management frame ops
  757. * @get_pn_info:
  758. */
  759. struct cdp_pmf_ops {
  760. void (*get_pn_info)(void *peer, uint8_t **last_pn_valid,
  761. uint64_t **last_pn, uint32_t **rmf_pn_replays);
  762. };
  763. /**
  764. * struct cdp_cfg_ops - mcl configuration ops
  765. * @set_cfg_rx_fwd_disabled:
  766. * @set_cfg_packet_log_enabled:
  767. * @cfg_attach:
  768. * @vdev_rx_set_intrabss_fwd:
  769. * @get_opmode:
  770. * @is_rx_fwd_disabled:
  771. * @tx_set_is_mgmt_over_wmi_enabled:
  772. * @is_high_latency:
  773. * @set_flow_control_parameters:
  774. */
  775. struct cdp_cfg_ops {
  776. void (*set_cfg_rx_fwd_disabled)(struct cdp_cfg *cfg_pdev,
  777. uint8_t disable_rx_fwd);
  778. void (*set_cfg_packet_log_enabled)(struct cdp_cfg *cfg_pdev,
  779. uint8_t val);
  780. struct cdp_cfg * (*cfg_attach)(qdf_device_t osdev, void *cfg_param);
  781. void (*vdev_rx_set_intrabss_fwd)(struct cdp_vdev *vdev, bool val);
  782. uint8_t (*is_rx_fwd_disabled)(struct cdp_vdev *vdev);
  783. void (*tx_set_is_mgmt_over_wmi_enabled)(uint8_t value);
  784. int (*is_high_latency)(struct cdp_cfg *cfg_pdev);
  785. void (*set_flow_control_parameters)(struct cdp_cfg *cfg_pdev,
  786. void *param);
  787. void (*set_flow_steering)(struct cdp_cfg *cfg_pdev, uint8_t val);
  788. void (*set_ptp_rx_opt_enabled)(struct cdp_cfg *cfg_pdev, uint8_t val);
  789. };
  790. /**
  791. * struct cdp_flowctl_ops - mcl flow control
  792. * @register_pause_cb:
  793. * @set_desc_global_pool_size:
  794. * @dump_flow_pool_info:
  795. */
  796. struct cdp_flowctl_ops {
  797. QDF_STATUS (*flow_pool_map_handler)(struct cdp_soc_t *soc,
  798. struct cdp_pdev *pdev,
  799. uint8_t vdev_id);
  800. void (*flow_pool_unmap_handler)(struct cdp_soc_t *soc,
  801. struct cdp_pdev *pdev,
  802. uint8_t vdev_id);
  803. QDF_STATUS (*register_pause_cb)(struct cdp_soc_t *soc,
  804. tx_pause_callback);
  805. void (*set_desc_global_pool_size)(uint32_t num_msdu_desc);
  806. void (*dump_flow_pool_info)(void *);
  807. };
  808. /**
  809. * struct cdp_lflowctl_ops - mcl legacy flow control ops
  810. * @register_tx_flow_control:
  811. * @deregister_tx_flow_control_cb:
  812. * @flow_control_cb:
  813. * @get_tx_resource:
  814. * @ll_set_tx_pause_q_depth:
  815. * @vdev_flush:
  816. * @vdev_pause:
  817. * @vdev_unpause:
  818. */
  819. struct cdp_lflowctl_ops {
  820. #ifdef QCA_HL_NETDEV_FLOW_CONTROL
  821. int (*register_tx_flow_control)(struct cdp_soc_t *soc,
  822. tx_pause_callback flowcontrol);
  823. int (*set_vdev_tx_desc_limit)(u8 vdev_id, u8 chan);
  824. int (*set_vdev_os_queue_status)(u8 vdev_id,
  825. enum netif_action_type action);
  826. #else
  827. int (*register_tx_flow_control)(uint8_t vdev_id,
  828. ol_txrx_tx_flow_control_fp flowControl, void *osif_fc_ctx,
  829. ol_txrx_tx_flow_control_is_pause_fp flow_control_is_pause);
  830. #endif /* QCA_HL_NETDEV_FLOW_CONTROL */
  831. int (*deregister_tx_flow_control_cb)(uint8_t vdev_id);
  832. void (*flow_control_cb)(struct cdp_vdev *vdev, bool tx_resume);
  833. bool (*get_tx_resource)(uint8_t sta_id,
  834. unsigned int low_watermark,
  835. unsigned int high_watermark_offset);
  836. int (*ll_set_tx_pause_q_depth)(uint8_t vdev_id, int pause_q_depth);
  837. void (*vdev_flush)(struct cdp_vdev *vdev);
  838. void (*vdev_pause)(struct cdp_vdev *vdev, uint32_t reason);
  839. void (*vdev_unpause)(struct cdp_vdev *vdev, uint32_t reason);
  840. };
  841. #ifdef IPA_OFFLOAD
  842. /**
  843. * struct cdp_ipa_ops - mcl ipa data path ops
  844. * @ipa_get_resource:
  845. * @ipa_set_doorbell_paddr:
  846. * @ipa_set_active:
  847. * @ipa_op_response:
  848. * @ipa_register_op_cb:
  849. * @ipa_get_stat:
  850. * @ipa_tx_data_frame:
  851. */
  852. struct cdp_ipa_ops {
  853. QDF_STATUS (*ipa_get_resource)(struct cdp_pdev *pdev);
  854. QDF_STATUS (*ipa_set_doorbell_paddr)(struct cdp_pdev *pdev);
  855. QDF_STATUS (*ipa_set_active)(struct cdp_pdev *pdev, bool uc_active,
  856. bool is_tx);
  857. QDF_STATUS (*ipa_op_response)(struct cdp_pdev *pdev, uint8_t *op_msg);
  858. QDF_STATUS (*ipa_register_op_cb)(struct cdp_pdev *pdev,
  859. void (*ipa_uc_op_cb_type)(uint8_t *op_msg, void *osif_ctxt),
  860. void *usr_ctxt);
  861. QDF_STATUS (*ipa_get_stat)(struct cdp_pdev *pdev);
  862. qdf_nbuf_t (*ipa_tx_data_frame)(struct cdp_vdev *vdev, qdf_nbuf_t skb);
  863. void (*ipa_set_uc_tx_partition_base)(struct cdp_cfg *pdev,
  864. uint32_t value);
  865. #ifdef FEATURE_METERING
  866. QDF_STATUS (*ipa_uc_get_share_stats)(struct cdp_pdev *pdev,
  867. uint8_t reset_stats);
  868. QDF_STATUS (*ipa_uc_set_quota)(struct cdp_pdev *pdev,
  869. uint64_t quota_bytes);
  870. #endif
  871. QDF_STATUS (*ipa_enable_autonomy)(struct cdp_pdev *pdev);
  872. QDF_STATUS (*ipa_disable_autonomy)(struct cdp_pdev *pdev);
  873. #ifdef CONFIG_IPA_WDI_UNIFIED_API
  874. QDF_STATUS (*ipa_setup)(struct cdp_pdev *pdev, void *ipa_i2w_cb,
  875. void *ipa_w2i_cb, void *ipa_wdi_meter_notifier_cb,
  876. uint32_t ipa_desc_size, void *ipa_priv, bool is_rm_enabled,
  877. uint32_t *tx_pipe_handle, uint32_t *rx_pipe_handle,
  878. bool is_smmu_enabled, qdf_ipa_sys_connect_params_t *sys_in);
  879. #else /* CONFIG_IPA_WDI_UNIFIED_API */
  880. QDF_STATUS (*ipa_setup)(struct cdp_pdev *pdev, void *ipa_i2w_cb,
  881. void *ipa_w2i_cb, void *ipa_wdi_meter_notifier_cb,
  882. uint32_t ipa_desc_size, void *ipa_priv, bool is_rm_enabled,
  883. uint32_t *tx_pipe_handle, uint32_t *rx_pipe_handle);
  884. #endif /* CONFIG_IPA_WDI_UNIFIED_API */
  885. QDF_STATUS (*ipa_cleanup)(uint32_t tx_pipe_handle,
  886. uint32_t rx_pipe_handle);
  887. QDF_STATUS (*ipa_setup_iface)(char *ifname, uint8_t *mac_addr,
  888. qdf_ipa_client_type_t prod_client,
  889. qdf_ipa_client_type_t cons_client,
  890. uint8_t session_id, bool is_ipv6_enabled);
  891. QDF_STATUS (*ipa_cleanup_iface)(char *ifname, bool is_ipv6_enabled);
  892. QDF_STATUS (*ipa_enable_pipes)(struct cdp_pdev *pdev);
  893. QDF_STATUS (*ipa_disable_pipes)(struct cdp_pdev *pdev);
  894. QDF_STATUS (*ipa_set_perf_level)(int client,
  895. uint32_t max_supported_bw_mbps);
  896. };
  897. #endif
  898. /**
  899. * struct cdp_bus_ops - mcl bus suspend/resume ops
  900. * @bus_suspend:
  901. * @bus_resume:
  902. */
  903. struct cdp_bus_ops {
  904. QDF_STATUS (*bus_suspend)(struct cdp_pdev *opaque_pdev);
  905. QDF_STATUS (*bus_resume)(struct cdp_pdev *opaque_pdev);
  906. };
  907. /**
  908. * struct cdp_ocb_ops - mcl ocb ops
  909. * @set_ocb_chan_info:
  910. * @get_ocb_chan_info:
  911. */
  912. struct cdp_ocb_ops {
  913. void (*set_ocb_chan_info)(struct cdp_vdev *vdev,
  914. struct ol_txrx_ocb_set_chan ocb_set_chan);
  915. struct ol_txrx_ocb_chan_info *
  916. (*get_ocb_chan_info)(struct cdp_vdev *vdev);
  917. };
  918. /**
  919. * struct cdp_peer_ops - mcl peer related ops
  920. * @register_peer:
  921. * @clear_peer:
  922. * @cfg_attach:
  923. * @find_peer_by_addr:
  924. * @find_peer_by_addr_and_vdev:
  925. * @local_peer_id:
  926. * @peer_find_by_local_id:
  927. * @peer_state_update:
  928. * @get_vdevid:
  929. * @get_vdev_by_sta_id:
  930. * @register_ocb_peer:
  931. * @peer_get_peer_mac_addr:
  932. * @get_peer_state:
  933. * @get_vdev_for_peer:
  934. * @update_ibss_add_peer_num_of_vdev:
  935. * @remove_peers_for_vdev:
  936. * @remove_peers_for_vdev_no_lock:
  937. * @copy_mac_addr_raw:
  938. * @add_last_real_peer:
  939. * @get_last_mgmt_timestamp:
  940. * @set_last_mgmt_timestamp:
  941. * @is_vdev_restore_last_peer:
  942. * @update_last_real_peer:
  943. */
  944. struct cdp_peer_ops {
  945. QDF_STATUS (*register_peer)(struct cdp_pdev *pdev,
  946. struct ol_txrx_desc_type *sta_desc);
  947. QDF_STATUS (*clear_peer)(struct cdp_pdev *pdev, uint8_t sta_id);
  948. QDF_STATUS (*change_peer_state)(uint8_t sta_id,
  949. enum ol_txrx_peer_state sta_state,
  950. bool roam_synch_in_progress);
  951. void * (*peer_get_ref_by_addr)(struct cdp_pdev *pdev,
  952. u8 *peer_addr, uint8_t *peer_id,
  953. enum peer_debug_id_type debug_id);
  954. void (*peer_release_ref)(void *peer, enum peer_debug_id_type debug_id);
  955. void * (*find_peer_by_addr)(struct cdp_pdev *pdev,
  956. uint8_t *peer_addr, uint8_t *peer_id);
  957. void * (*find_peer_by_addr_and_vdev)(struct cdp_pdev *pdev,
  958. struct cdp_vdev *vdev,
  959. uint8_t *peer_addr, uint8_t *peer_id);
  960. uint16_t (*local_peer_id)(void *peer);
  961. void * (*peer_find_by_local_id)(struct cdp_pdev *pdev,
  962. uint8_t local_peer_id);
  963. QDF_STATUS (*peer_state_update)(struct cdp_pdev *pdev,
  964. uint8_t *peer_addr,
  965. enum ol_txrx_peer_state state);
  966. QDF_STATUS (*get_vdevid)(void *peer, uint8_t *vdev_id);
  967. struct cdp_vdev * (*get_vdev_by_sta_id)(struct cdp_pdev *pdev,
  968. uint8_t sta_id);
  969. QDF_STATUS (*register_ocb_peer)(uint8_t *mac_addr, uint8_t *peer_id);
  970. uint8_t * (*peer_get_peer_mac_addr)(void *peer);
  971. int (*get_peer_state)(void *peer);
  972. struct cdp_vdev * (*get_vdev_for_peer)(void *peer);
  973. int16_t (*update_ibss_add_peer_num_of_vdev)(struct cdp_vdev *vdev,
  974. int16_t peer_num_delta);
  975. void (*remove_peers_for_vdev)(struct cdp_vdev *vdev,
  976. ol_txrx_vdev_peer_remove_cb callback,
  977. void *callback_context, bool remove_last_peer);
  978. void (*remove_peers_for_vdev_no_lock)(struct cdp_vdev *vdev,
  979. ol_txrx_vdev_peer_remove_cb callback,
  980. void *callback_context);
  981. void (*copy_mac_addr_raw)(struct cdp_vdev *vdev, uint8_t *bss_addr);
  982. void (*add_last_real_peer)(struct cdp_pdev *pdev,
  983. struct cdp_vdev *vdev, uint8_t *peer_id);
  984. bool (*is_vdev_restore_last_peer)(void *peer);
  985. void (*update_last_real_peer)(struct cdp_pdev *pdev, void *peer,
  986. uint8_t *peer_id, bool restore_last_peer);
  987. void (*peer_detach_force_delete)(void *peer);
  988. bool (*get_last_mgmt_timestamp)(struct cdp_pdev *ppdev,
  989. u8 *peer_addr,
  990. u8 subtype,
  991. qdf_time_t *timestamp);
  992. bool (*update_last_mgmt_timestamp)(struct cdp_pdev *ppdev,
  993. u8 *peer_addr,
  994. qdf_time_t timestamp,
  995. u8 subtype);
  996. };
  997. /**
  998. * struct cdp_ocb_ops - mcl ocb ops
  999. * @throttle_init_period:
  1000. * @throttle_set_level:
  1001. */
  1002. struct cdp_throttle_ops {
  1003. void (*throttle_init_period)(struct cdp_pdev *pdev, int period,
  1004. uint8_t *dutycycle_level);
  1005. void (*throttle_set_level)(struct cdp_pdev *pdev, int level);
  1006. };
  1007. /**
  1008. * struct cdp_ocb_ops - mcl ocb ops
  1009. * @clear_stats:
  1010. * @stats:
  1011. */
  1012. struct cdp_mob_stats_ops {
  1013. void (*clear_stats)(uint16_t bitmap);
  1014. int (*stats)(uint8_t vdev_id, char *buffer, unsigned buf_len);
  1015. };
  1016. #endif /* CONFIG_WIN */
  1017. #ifdef RECEIVE_OFFLOAD
  1018. /**
  1019. * struct cdp_rx_offld_ops - mcl receive offload ops
  1020. * @register_rx_offld_flush_cb:
  1021. * @deregister_rx_offld_flush_cb:
  1022. */
  1023. struct cdp_rx_offld_ops {
  1024. void (*register_rx_offld_flush_cb)(void (rx_offld_flush_cb)(void *));
  1025. void (*deregister_rx_offld_flush_cb)(void);
  1026. };
  1027. #endif
  1028. struct cdp_ops {
  1029. struct cdp_cmn_ops *cmn_drv_ops;
  1030. struct cdp_ctrl_ops *ctrl_ops;
  1031. struct cdp_me_ops *me_ops;
  1032. struct cdp_mon_ops *mon_ops;
  1033. struct cdp_host_stats_ops *host_stats_ops;
  1034. struct cdp_wds_ops *wds_ops;
  1035. struct cdp_raw_ops *raw_ops;
  1036. struct cdp_pflow_ops *pflow_ops;
  1037. #ifndef CONFIG_WIN
  1038. struct cdp_misc_ops *misc_ops;
  1039. struct cdp_cfg_ops *cfg_ops;
  1040. struct cdp_flowctl_ops *flowctl_ops;
  1041. struct cdp_lflowctl_ops *l_flowctl_ops;
  1042. #ifdef IPA_OFFLOAD
  1043. struct cdp_ipa_ops *ipa_ops;
  1044. #endif
  1045. #ifdef RECEIVE_OFFLOAD
  1046. struct cdp_rx_offld_ops *rx_offld_ops;
  1047. #endif
  1048. struct cdp_bus_ops *bus_ops;
  1049. struct cdp_ocb_ops *ocb_ops;
  1050. struct cdp_peer_ops *peer_ops;
  1051. struct cdp_throttle_ops *throttle_ops;
  1052. struct cdp_mob_stats_ops *mob_stats_ops;
  1053. struct cdp_tx_delay_ops *delay_ops;
  1054. struct cdp_pmf_ops *pmf_ops;
  1055. #endif /* CONFIG_WIN */
  1056. };
  1057. #endif