wmi_unified_api.h 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995
  1. /*
  2. * Copyright (c) 2013-2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /*
  27. * This file contains the API definitions for the Unified Wireless Module
  28. * Interface (WMI).
  29. */
  30. #ifndef _WMI_UNIFIED_API_H_
  31. #define _WMI_UNIFIED_API_H_
  32. #include <osdep.h>
  33. #ifdef CONFIG_MCL
  34. #include "wmi.h"
  35. #endif
  36. #include "htc_api.h"
  37. #include "wmi_unified_param.h"
  38. #include "wlan_objmgr_psoc_obj.h"
  39. #include "wlan_mgmt_txrx_utils_api.h"
  40. #ifdef WLAN_PMO_ENABLE
  41. #include "wmi_unified_pmo_api.h"
  42. #endif
  43. #ifdef CONVERGED_P2P_ENABLE
  44. #include "wlan_p2p_public_struct.h"
  45. #endif
  46. #include "wlan_scan_public_structs.h"
  47. #ifdef WLAN_FEATURE_DISA
  48. #include "wlan_disa_public_struct.h"
  49. #endif
  50. #ifdef WLAN_FEATURE_NAN_CONVERGENCE
  51. #include "nan_public_structs.h"
  52. #endif
  53. #ifdef WLAN_SUPPORT_GREEN_AP
  54. #include "wlan_green_ap_api.h"
  55. #endif
  56. typedef qdf_nbuf_t wmi_buf_t;
  57. #define wmi_buf_data(_buf) qdf_nbuf_data(_buf)
  58. #define WMI_LOGD(args ...) \
  59. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, ## args)
  60. #define WMI_LOGI(args ...) \
  61. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, ## args)
  62. #define WMI_LOGW(args ...) \
  63. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_WARN, ## args)
  64. #define WMI_LOGE(args ...) \
  65. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR, ## args)
  66. #define WMI_LOGP(args ...) \
  67. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
  68. #define WMI_DEBUG_ALWAYS
  69. #ifdef WMI_DEBUG_ALWAYS
  70. #define WMI_LOGA(args ...) \
  71. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
  72. #else
  73. #define WMI_LOGA(args ...)
  74. #endif
  75. struct wmi_soc;
  76. /**
  77. * struct wmi_ops - service callbacks to upper layer
  78. * @service_ready_cbk: service ready callback
  79. * @service_ready_ext_cbk: service ready ext callback
  80. * @ready_cbk: ready calback
  81. * @wma_process_fw_event_handler_cbk: generic event handler callback
  82. */
  83. struct wmi_rx_ops {
  84. int (*wma_process_fw_event_handler_cbk)(void *ctx,
  85. void *ev, uint8_t rx_ctx);
  86. };
  87. /**
  88. * enum wmi_target_type - type of supported wmi command
  89. * @WMI_TLV_TARGET: tlv based target
  90. * @WMI_NON_TLV_TARGET: non-tlv based target
  91. *
  92. */
  93. enum wmi_target_type {
  94. WMI_TLV_TARGET,
  95. WMI_NON_TLV_TARGET
  96. };
  97. /**
  98. * enum wmi_rx_exec_ctx - wmi rx execution context
  99. * @WMI_RX_WORK_CTX: work queue context execution provided by WMI layer
  100. * @WMI_RX_UMAC_CTX: execution context provided by umac layer
  101. *
  102. */
  103. enum wmi_rx_exec_ctx {
  104. WMI_RX_WORK_CTX,
  105. WMI_RX_UMAC_CTX
  106. };
  107. /**
  108. * attach for unified WMI
  109. *
  110. * @param scn_handle : handle to SCN.
  111. * @param target_type : type of supported wmi command
  112. * @param use_cookie : flag to indicate cookie based allocation
  113. * @param ops : handle to wmi ops
  114. * @psoc : objmgr psoc
  115. * @return opaque handle.
  116. */
  117. void *wmi_unified_attach(void *scn_handle,
  118. osdev_t osdev, enum wmi_target_type target_type,
  119. bool use_cookie, struct wmi_rx_ops *ops,
  120. struct wlan_objmgr_psoc *psoc);
  121. /**
  122. * wmi_mgmt_cmd_record() - Wrapper function for mgmt command logging macro
  123. *
  124. * @wmi_handle: wmi handle
  125. * @cmd: mgmt command
  126. * @header: pointer to 802.11 header
  127. * @vdev_id: vdev id
  128. * @chanfreq: channel frequency
  129. *
  130. * Return: none
  131. */
  132. void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, uint32_t cmd,
  133. void *header, uint32_t vdev_id, uint32_t chanfreq);
  134. /**
  135. * detach for unified WMI
  136. *
  137. * @param wmi_handle : handle to WMI.
  138. * @return void.
  139. */
  140. void wmi_unified_detach(struct wmi_unified *wmi_handle);
  141. void
  142. wmi_unified_remove_work(struct wmi_unified *wmi_handle);
  143. /**
  144. * generic function to allocate WMI buffer
  145. *
  146. * @param wmi_handle : handle to WMI.
  147. * @param len : length of the buffer
  148. * @return wmi_buf_t.
  149. */
  150. #ifdef MEMORY_DEBUG
  151. #define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
  152. wmi_buf_t
  153. wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint16_t len,
  154. uint8_t *file_name, uint32_t line_num);
  155. #else
  156. wmi_buf_t wmi_buf_alloc(wmi_unified_t wmi_handle, uint16_t len);
  157. #endif
  158. /**
  159. * generic function frees WMI net buffer
  160. *
  161. * @param net_buf : Pointer ot net_buf to be freed
  162. */
  163. void wmi_buf_free(wmi_buf_t net_buf);
  164. /**
  165. * generic function to send unified WMI command
  166. *
  167. * @param wmi_handle : handle to WMI.
  168. * @param buf : wmi command buffer
  169. * @param buflen : wmi command buffer length
  170. * @param cmd_id : WMI cmd id
  171. * @return 0 on success and -ve on failure.
  172. */
  173. QDF_STATUS
  174. wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf, uint32_t buflen,
  175. uint32_t cmd_id);
  176. /**
  177. * wmi_unified_register_event() - WMI event handler
  178. * registration function for converged components
  179. *
  180. * @wmi_handle: handle to WMI.
  181. * @event_id: WMI event ID
  182. * @handler_func: Event handler call back function
  183. *
  184. * @return 0 on success and -ve on failure.
  185. */
  186. int
  187. wmi_unified_register_event(wmi_unified_t wmi_handle,
  188. uint32_t event_id,
  189. wmi_unified_event_handler handler_func);
  190. /**
  191. * wmi_unified_register_event_handler() - WMI event handler
  192. * registration function
  193. *
  194. * @wmi_handle: handle to WMI.
  195. * @event_id: WMI event ID
  196. * @handler_func: Event handler call back function
  197. * @rx_ctx: rx event processing context
  198. *
  199. * @return 0 on success and -ve on failure.
  200. */
  201. int
  202. wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
  203. wmi_conv_event_id event_id,
  204. wmi_unified_event_handler handler_func,
  205. uint8_t rx_ctx);
  206. /**
  207. * WMI event handler unregister function for converged componets
  208. *
  209. * @param wmi_handle : handle to WMI.
  210. * @param event_id : WMI event ID
  211. * @return 0 on success and -ve on failure.
  212. */
  213. int
  214. wmi_unified_unregister_event(wmi_unified_t wmi_handle,
  215. uint32_t event_id);
  216. /**
  217. * WMI event handler unregister function
  218. *
  219. * @param wmi_handle : handle to WMI.
  220. * @param event_id : WMI event ID
  221. * @return 0 on success and -ve on failure.
  222. */
  223. int
  224. wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
  225. wmi_conv_event_id event_id);
  226. /**
  227. * request wmi to connet its htc service.
  228. * @param wmi_handle : handle to WMI.
  229. * @param htc_handle : handle to HTC.
  230. * @return void
  231. */
  232. QDF_STATUS
  233. wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
  234. void *htc_handle);
  235. /*
  236. * WMI API to verify the host has enough credits to suspend
  237. * @param wmi_handle : handle to WMI.
  238. */
  239. int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
  240. /**
  241. * WMI API to get updated host_credits
  242. * @param wmi_handle : handle to WMI.
  243. */
  244. int wmi_get_host_credits(wmi_unified_t wmi_handle);
  245. /**
  246. * WMI API to get WMI Pending Commands in the HTC queue
  247. * @param wmi_handle : handle to WMI.
  248. */
  249. int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
  250. /**
  251. * WMI API to set target suspend state
  252. * @param wmi_handle : handle to WMI.
  253. * @param val : suspend state boolean
  254. */
  255. void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
  256. /**
  257. * WMI API to set bus suspend state
  258. * @param wmi_handle: handle to WMI.
  259. * @param val: suspend state boolean
  260. */
  261. void wmi_set_is_wow_bus_suspended(wmi_unified_t wmi_handle, A_BOOL val);
  262. /**
  263. * WMI API to set crash injection state
  264. * @param wmi_handle: handle to WMI.
  265. * @param val: crash injection state boolean
  266. */
  267. void wmi_tag_crash_inject(wmi_unified_t wmi_handle, A_BOOL flag);
  268. /**
  269. * WMI API to set target assert
  270. * @param wmi_handle: handle to WMI.
  271. * @param val: target assert config value.
  272. *
  273. * Return: none.
  274. */
  275. void wmi_set_tgt_assert(wmi_unified_t wmi_handle, bool val);
  276. /**
  277. * generic function to block unified WMI command
  278. * @param wmi_handle : handle to WMI.
  279. * @return 0 on success and -ve on failure.
  280. */
  281. int
  282. wmi_stop(wmi_unified_t wmi_handle);
  283. /**
  284. * API to flush all the previous packets associated with the wmi endpoint
  285. *
  286. * @param wmi_handle : handle to WMI.
  287. */
  288. void
  289. wmi_flush_endpoint(wmi_unified_t wmi_handle);
  290. /**
  291. * wmi_pdev_id_conversion_enable() - API to enable pdev_id conversion in WMI
  292. * By default pdev_id conversion is not done in WMI.
  293. * This API can be used enable conversion in WMI.
  294. * @param wmi_handle : handle to WMI
  295. * Return none
  296. */
  297. void wmi_pdev_id_conversion_enable(wmi_unified_t wmi_handle);
  298. /**
  299. * API to handle wmi rx event after UMAC has taken care of execution
  300. * context
  301. *
  302. * @param wmi_handle : handle to WMI.
  303. * @param evt_buf : wmi event buffer
  304. */
  305. void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
  306. #ifdef FEATURE_RUNTIME_PM
  307. void
  308. wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
  309. bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
  310. #else
  311. static inline void
  312. wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
  313. {
  314. return;
  315. }
  316. static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
  317. {
  318. return false;
  319. }
  320. #endif
  321. void *wmi_unified_get_soc_handle(struct wmi_unified *wmi_handle);
  322. void *wmi_unified_get_pdev_handle(struct wmi_soc *soc, uint32_t pdev_idx);
  323. /**
  324. * UMAC Callback to process fw event.
  325. * @param wmi_handle : handle to WMI.
  326. * @param evt_buf : wmi event buffer
  327. */
  328. void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
  329. uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
  330. QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
  331. uint8_t macaddr[IEEE80211_ADDR_LEN],
  332. struct vdev_create_params *param);
  333. QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
  334. uint8_t if_id);
  335. QDF_STATUS wmi_unified_vdev_restart_send(void *wmi_hdl,
  336. uint8_t macaddr[IEEE80211_ADDR_LEN],
  337. struct vdev_start_params *param);
  338. QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
  339. uint8_t vdev_id);
  340. QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
  341. uint8_t bssid[IEEE80211_ADDR_LEN],
  342. struct vdev_up_params *params);
  343. QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
  344. uint8_t vdev_id);
  345. QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
  346. struct vdev_start_params *req);
  347. QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
  348. struct hidden_ssid_vdev_restart_params *restart_params);
  349. QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
  350. struct vdev_set_params *param);
  351. QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
  352. uint8_t
  353. peer_addr[IEEE80211_ADDR_LEN],
  354. uint8_t vdev_id);
  355. QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
  356. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  357. struct peer_flush_params *param);
  358. QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
  359. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  360. struct peer_set_params *param);
  361. QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
  362. struct peer_create_params *param);
  363. QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
  364. uint8_t macaddr[IEEE80211_ADDR_LEN],
  365. struct stats_request_params *param);
  366. QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
  367. uint32_t value, uint8_t pdev_id);
  368. #ifdef FEATURE_WLAN_D0WOW
  369. QDF_STATUS wmi_unified_d0wow_enable_send(void *wmi_hdl,
  370. uint8_t mac_id);
  371. QDF_STATUS wmi_unified_d0wow_disable_send(void *wmi_hdl,
  372. uint8_t mac_id);
  373. #endif
  374. QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
  375. struct wow_cmd_params *param,
  376. uint8_t mac_id);
  377. QDF_STATUS wmi_unified_wow_wakeup_send(void *wmi_hdl);
  378. QDF_STATUS wmi_unified_wow_add_wakeup_event_send(void *wmi_hdl,
  379. struct wow_add_wakeup_params *param);
  380. QDF_STATUS wmi_unified_wow_add_wakeup_pattern_send(void *wmi_hdl,
  381. struct wow_add_wakeup_pattern_params *param);
  382. QDF_STATUS wmi_unified_wow_remove_wakeup_pattern_send(void *wmi_hdl,
  383. struct wow_remove_wakeup_pattern_params *param);
  384. #ifndef CONFIG_MCL
  385. QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
  386. WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
  387. #else
  388. QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
  389. uint8_t macaddr[IEEE80211_ADDR_LEN],
  390. struct packet_enable_params *param);
  391. #endif
  392. QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl, uint8_t mac_id);
  393. QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
  394. struct suspend_params *param,
  395. uint8_t mac_id);
  396. QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
  397. uint8_t mac_id);
  398. QDF_STATUS
  399. wmi_unified_pdev_param_send(void *wmi_hdl,
  400. struct pdev_params *param,
  401. uint8_t mac_id);
  402. QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
  403. struct beacon_tmpl_params *param);
  404. QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
  405. struct beacon_params *param);
  406. QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
  407. struct peer_assoc_params *param);
  408. QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
  409. struct sta_ps_params *param);
  410. QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
  411. uint8_t macaddr[IEEE80211_ADDR_LEN],
  412. struct ap_ps_params *param);
  413. QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
  414. struct scan_req_params *param);
  415. QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
  416. struct scan_cancel_param *param);
  417. QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
  418. struct scan_chan_list_params *param);
  419. QDF_STATUS wmi_crash_inject(void *wmi_hdl,
  420. struct crash_inject *param);
  421. QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
  422. struct pdev_utf_params *param,
  423. uint8_t mac_id);
  424. QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
  425. struct dbglog_params *param);
  426. QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
  427. struct wmi_mgmt_params *param);
  428. QDF_STATUS wmi_offchan_data_tx_cmd_send(void *wmi_hdl,
  429. struct wmi_offchan_data_tx_params *param);
  430. QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
  431. uint32_t param_value);
  432. QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
  433. uint32_t vdev_id, uint8_t val);
  434. QDF_STATUS
  435. wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
  436. struct sta_uapsd_trig_params *param);
  437. QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
  438. QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
  439. struct p2p_ps_params *oppps);
  440. QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
  441. struct p2p_ps_params *noa);
  442. #ifdef CONVERGED_P2P_ENABLE
  443. QDF_STATUS wmi_unified_p2p_lo_start_cmd(void *wmi_hdl,
  444. struct p2p_lo_start *param);
  445. QDF_STATUS wmi_unified_p2p_lo_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
  446. #endif
  447. QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
  448. int value);
  449. QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
  450. QDF_STATUS wmi_unified_ocb_set_utc_time(void *wmi_hdl,
  451. struct ocb_utc_param *utc);
  452. QDF_STATUS wmi_unified_ocb_start_timing_advert(void *wmi_hdl,
  453. struct ocb_timing_advert_param *timing_advert);
  454. QDF_STATUS wmi_unified_ocb_stop_timing_advert(void *wmi_hdl,
  455. struct ocb_timing_advert_param *timing_advert);
  456. QDF_STATUS wmi_unified_ocb_set_config(void *wmi_hdl,
  457. struct ocb_config_param *config, uint32_t *ch_mhz);
  458. QDF_STATUS wmi_unified_ocb_get_tsf_timer(void *wmi_hdl,
  459. uint8_t vdev_id);
  460. QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
  461. struct wmi_lro_config_cmd_t *wmi_lro_cmd);
  462. QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
  463. struct thermal_cmd_params *thermal_info);
  464. QDF_STATUS wmi_unified_peer_rate_report_cmd(void *wmi_hdl,
  465. struct wmi_peer_rate_report_params *rate_report_params);
  466. QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
  467. (void *wmi_hdl,
  468. uint32_t adapter_1_chan_freq,
  469. uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
  470. QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
  471. (void *wmi_hdl,
  472. uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
  473. QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
  474. void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
  475. uint32_t pdev_id);
  476. #ifdef CONFIG_MCL
  477. QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
  478. wmi_bcn_send_from_host_cmd_fixed_param *param);
  479. #endif
  480. QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
  481. uint8_t vdev_id, uint32_t max_retries,
  482. uint32_t retry_interval);
  483. QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
  484. struct sta_params *params);
  485. QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
  486. struct wmi_gtx_config *gtx_info);
  487. QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
  488. uint8_t vdev_id,
  489. struct wmi_host_wme_vparams wmm_vparams[WMI_MAX_NUM_AC]);
  490. QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
  491. uint8_t vdev_id,
  492. struct wmi_probe_resp_params *probe_rsp_info);
  493. QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
  494. struct set_key_params *key_params);
  495. #ifdef WLAN_FEATURE_DISA
  496. /**
  497. * wmi_unified_encrypt_decrypt_send_cmd() - send encryptdecrypt cmd to fw
  498. * @wmi_hdl: wmi handle
  499. * @params: encrypt/decrypt params
  500. *
  501. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  502. */
  503. QDF_STATUS wmi_unified_encrypt_decrypt_send_cmd(void *wmi_hdl,
  504. struct disa_encrypt_decrypt_req_params *params);
  505. /**
  506. * wmi_extract_encrypt_decrypt_resp_params() -
  507. * extract encrypt decrypt resp params from event buffer
  508. * @wmi_handle: wmi handle
  509. * @evt_buf: pointer to event buffer
  510. * @resp: encrypt decrypt resp params
  511. *
  512. * Return: QDF_STATUS_SUCCESS for success or error code
  513. */
  514. QDF_STATUS wmi_extract_encrypt_decrypt_resp_params(void *wmi_hdl,
  515. uint8_t *evt_buf,
  516. struct disa_encrypt_decrypt_resp_params *resp);
  517. #endif
  518. QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
  519. A_UINT32 vdev_id, uint8_t *p2p_ie);
  520. QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
  521. struct gateway_update_req_param *req);
  522. QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
  523. struct rssi_monitor_param *req);
  524. QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
  525. struct scan_mac_oui *psetoui);
  526. QDF_STATUS wmi_unified_reset_passpoint_network_list_cmd(void *wmi_hdl,
  527. struct wifi_passpoint_req_param *req);
  528. QDF_STATUS wmi_unified_set_passpoint_network_list_cmd(void *wmi_hdl,
  529. struct wifi_passpoint_req_param *req);
  530. #ifdef CONFIG_MCL
  531. QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
  532. wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
  533. struct roam_offload_scan_params *roam_req);
  534. #endif
  535. /**
  536. * wmi_unified_roam_mawc_params_cmd() - configure roaming MAWC parameters
  537. * @wmi_hdl: wmi handle
  538. * @params: Parameters to be configured
  539. *
  540. * Pass the MAWC(Motion Aided wireless connectivity) related roaming
  541. * parameters from the host to the target
  542. *
  543. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  544. */
  545. QDF_STATUS wmi_unified_roam_mawc_params_cmd(void *wmi_hdl,
  546. struct wmi_mawc_roam_params *params);
  547. QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
  548. struct roam_offload_scan_rssi_params *roam_req);
  549. QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
  550. struct roam_scan_filter_params *roam_req);
  551. QDF_STATUS wmi_unified_set_epno_network_list_cmd(void *wmi_hdl,
  552. struct wifi_enhanched_pno_params *req);
  553. QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
  554. struct ipa_offload_control_params *ipa_offload);
  555. QDF_STATUS wmi_unified_extscan_get_capabilities_cmd(void *wmi_hdl,
  556. struct extscan_capabilities_params *pgetcapab);
  557. QDF_STATUS wmi_unified_extscan_get_cached_results_cmd(void *wmi_hdl,
  558. struct extscan_cached_result_params *pcached_results);
  559. QDF_STATUS wmi_unified_extscan_stop_change_monitor_cmd(void *wmi_hdl,
  560. struct extscan_capabilities_reset_params *reset_req);
  561. QDF_STATUS wmi_unified_extscan_start_change_monitor_cmd(void *wmi_hdl,
  562. struct extscan_set_sig_changereq_params *
  563. psigchange);
  564. QDF_STATUS wmi_unified_extscan_stop_hotlist_monitor_cmd(void *wmi_hdl,
  565. struct extscan_bssid_hotlist_reset_params *photlist_reset);
  566. QDF_STATUS wmi_unified_stop_extscan_cmd(void *wmi_hdl,
  567. struct extscan_stop_req_params *pstopcmd);
  568. QDF_STATUS wmi_unified_start_extscan_cmd(void *wmi_hdl,
  569. struct wifi_scan_cmd_req_params *pstart);
  570. QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
  571. const struct plm_req_params *plm);
  572. QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
  573. const struct plm_req_params *plm,
  574. uint32_t *gchannel_list);
  575. QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
  576. #ifdef FEATURE_WLAN_SCAN_PNO
  577. QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
  578. struct pno_scan_req_params *pno);
  579. #endif
  580. QDF_STATUS wmi_unified_nlo_mawc_cmd(void *wmi_hdl,
  581. struct nlo_mawc_params *params);
  582. QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
  583. uint8_t is_add_ts);
  584. QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
  585. (void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
  586. uint8_t addr[IEEE80211_ADDR_LEN]);
  587. QDF_STATUS wmi_unified_process_ll_stats_set_cmd
  588. (void *wmi_hdl, const struct ll_stats_set_params *set_req);
  589. QDF_STATUS wmi_unified_process_ll_stats_get_cmd
  590. (void *wmi_hdl, const struct ll_stats_get_params *get_req,
  591. uint8_t addr[IEEE80211_ADDR_LEN]);
  592. /**
  593. * wmi_unified_congestion_request_cmd() - send request to fw to get CCA
  594. * @wmi_hdl: wma handle
  595. * @vdev_id: vdev id
  596. *
  597. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  598. */
  599. QDF_STATUS wmi_unified_congestion_request_cmd(void *wmi_hdl,
  600. uint8_t vdev_id);
  601. QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
  602. QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
  603. QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
  604. struct link_status_params *link_status);
  605. #ifdef CONFIG_MCL
  606. QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
  607. wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
  608. QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
  609. wmi_mac_addr peer_macaddr);
  610. #endif
  611. #ifdef WLAN_SUPPORT_GREEN_AP
  612. QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
  613. struct wlan_green_ap_egap_params *egap_params);
  614. #endif
  615. QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
  616. uint32_t cmd, uint32_t value1, uint32_t value2);
  617. QDF_STATUS wmi_unified_wow_timer_pattern_cmd(void *wmi_hdl, uint8_t vdev_id,
  618. uint32_t cookie, uint32_t time);
  619. QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
  620. /**
  621. * wmi_unified_set_latency_config_cmd()
  622. * @wmi_handle: wmi handle
  623. * @param: WLM parameters
  624. *
  625. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  626. */
  627. QDF_STATUS wmi_unified_wlm_latency_level_cmd(void *wmi_hdl,
  628. struct wlm_latency_level_param *param);
  629. QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
  630. #ifdef WLAN_FEATURE_CIF_CFR
  631. /**
  632. * wmi_unified_oem_dma_ring_cfg() - configure OEM DMA rings
  633. * @wmi_handle: wmi handle
  634. * @data_len: len of dma cfg req
  635. * @data: dma cfg req
  636. *
  637. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  638. */
  639. QDF_STATUS wmi_unified_oem_dma_ring_cfg(void *wmi_hdl,
  640. wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
  641. #endif
  642. /**
  643. * wmi_unified_dbr_ring_cfg: Configure direct buffer rx rings
  644. * @wmi_hdl: WMI handle
  645. * @cfg: pointer to direct buffer rx config request
  646. *
  647. * Return: QDF status of operation
  648. */
  649. QDF_STATUS wmi_unified_dbr_ring_cfg(void *wmi_hdl,
  650. struct direct_buf_rx_cfg_req *cfg);
  651. QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
  652. uint32_t data_len,
  653. uint8_t *data);
  654. QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
  655. bool dfs_phyerr_filter_offload);
  656. #ifdef CONFIG_MCL
  657. QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
  658. WMI_PKTLOG_EVENT pktlog_event,
  659. uint32_t cmd_id,
  660. uint8_t user_triggered);
  661. #endif
  662. QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
  663. uint8_t vdev_id);
  664. QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
  665. QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
  666. uint8_t ac);
  667. QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
  668. struct aggr_add_ts_param *aggr_qos_rsp_msg);
  669. QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
  670. struct add_ts_param *msg);
  671. QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
  672. struct periodic_tx_pattern *
  673. pAddPeriodicTxPtrnParams,
  674. uint8_t vdev_id);
  675. QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
  676. uint8_t vdev_id,
  677. uint8_t pattern_id);
  678. QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
  679. struct stats_ext_params *preq);
  680. QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
  681. struct ext_wow_params *params);
  682. QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
  683. struct app_type2_params *appType2Params);
  684. QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
  685. uint32_t timer_val);
  686. QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
  687. struct nan_req_params *nan_req);
  688. QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
  689. struct dhcp_offload_info_params *params);
  690. QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
  691. QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
  692. uint32_t reg_dmn, uint16_t regdmn2G,
  693. uint16_t regdmn5G, uint8_t ctl2G,
  694. uint8_t ctl5G);
  695. QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
  696. struct tdls_channel_switch_params *chan_switch_params);
  697. QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
  698. void *tdls_param, uint8_t tdls_state);
  699. QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
  700. struct tdls_peer_state_params *peerStateParams,
  701. uint32_t *ch_mhz);
  702. QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
  703. struct fw_dump_req_param *mem_dump_req);
  704. QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
  705. struct vdev_ie_info_param *ie_info);
  706. QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(void *wmi_hdl,
  707. struct ocb_utc_param *utc);
  708. QDF_STATUS wmi_unified_dcc_get_stats_cmd(void *wmi_hdl,
  709. struct dcc_get_stats_param *get_stats_param);
  710. QDF_STATUS wmi_unified_dcc_clear_stats(void *wmi_hdl,
  711. uint32_t vdev_id, uint32_t dcc_stats_bitmap);
  712. QDF_STATUS wmi_unified_dcc_update_ndl(void *wmi_hdl,
  713. struct dcc_update_ndl_param *update_ndl_param);
  714. QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
  715. void *evt_buf);
  716. QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
  717. uint8_t *custom_addr);
  718. QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
  719. uint8_t *event,
  720. uint32_t len);
  721. QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
  722. struct wmi_wifi_start_log *start_log);
  723. QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
  724. QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
  725. struct wmi_pcl_chan_weights *msg);
  726. QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
  727. uint32_t hw_mode_index);
  728. QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
  729. struct wmi_dual_mac_config *msg);
  730. QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
  731. struct flashing_req_params *flashing);
  732. QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
  733. struct app_type1_params *app_type1_params);
  734. QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
  735. struct ssid_hotlist_request_params *request);
  736. QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
  737. uint8_t vdev_id);
  738. QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
  739. struct wmi_unit_test_cmd *wmi_utest);
  740. QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
  741. struct wmi_roam_invoke_cmd *roaminvoke,
  742. uint32_t ch_hz);
  743. QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
  744. uint32_t command, uint32_t vdev_id);
  745. #ifdef CONFIG_MCL
  746. QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
  747. struct ap_profile_params *ap_profile);
  748. #endif
  749. QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
  750. uint32_t scan_period,
  751. uint32_t scan_age,
  752. uint32_t vdev_id);
  753. QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
  754. uint8_t chan_count,
  755. uint32_t *chan_list,
  756. uint8_t list_type, uint32_t vdev_id);
  757. QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
  758. uint32_t vdev_id,
  759. int32_t rssi_change_thresh,
  760. uint32_t bcn_rssi_weight,
  761. uint32_t hirssi_delay_btw_scans);
  762. /**
  763. * wmi_unified_set_per_roam_config() - set PER roam config in FW
  764. * @wmi_hdl: wmi handle
  765. * @req_buf: per roam config request buffer
  766. *
  767. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  768. */
  769. QDF_STATUS wmi_unified_set_per_roam_config(void *wmi_hdl,
  770. struct wmi_per_roam_config_req *req_buf);
  771. QDF_STATUS wmi_unified_get_buf_extscan_hotlist_cmd(void *wmi_hdl,
  772. struct ext_scan_setbssi_hotlist_params *
  773. photlist, int *buf_len);
  774. /**
  775. * wmi_unified_set_active_bpf_mode_cmd() - config active BPF mode in FW
  776. * @wmi_hdl: the WMI handle
  777. * @vdev_id: the Id of the vdev to apply the configuration to
  778. * @ucast_mode: the active BPF mode to configure for unicast packets
  779. * @mcast_bcast_mode: the active BPF mode to configure for multicast/broadcast
  780. * packets
  781. */
  782. QDF_STATUS wmi_unified_set_active_bpf_mode_cmd(void *wmi_hdl,
  783. uint8_t vdev_id,
  784. enum wmi_host_active_bpf_mode ucast_mode,
  785. enum wmi_host_active_bpf_mode mcast_bcast_mode);
  786. QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
  787. uint8_t macaddr[IEEE80211_ADDR_LEN],
  788. struct stats_request_params *param);
  789. QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
  790. uint32_t param);
  791. QDF_STATUS wmi_unified_set_bwf_cmd_send(void *wmi_hdl,
  792. struct set_bwf_params *param);
  793. QDF_STATUS wmi_send_get_user_position_cmd(void *wmi_hdl, uint32_t value);
  794. QDF_STATUS wmi_send_get_peer_mumimo_tx_count_cmd(void *wmi_hdl, uint32_t value);
  795. QDF_STATUS wmi_send_reset_peer_mumimo_tx_count_cmd(void *wmi_hdl,
  796. uint32_t value);
  797. QDF_STATUS wmi_send_pdev_caldata_version_check_cmd(void *wmi_hdl,
  798. uint32_t value);
  799. QDF_STATUS wmi_unified_send_btcoex_wlan_priority_cmd(void *wmi_hdl,
  800. struct btcoex_cfg_params *param);
  801. QDF_STATUS wmi_unified_send_btcoex_duty_cycle_cmd(void *wmi_hdl,
  802. struct btcoex_cfg_params *param);
  803. QDF_STATUS wmi_unified_send_coex_ver_cfg_cmd(void *wmi_hdl,
  804. coex_ver_cfg_t *param);
  805. QDF_STATUS wmi_unified_send_coex_config_cmd(void *wmi_hdl,
  806. struct coex_config_params *param);
  807. QDF_STATUS wmi_unified_set_atf_cmd_send(void *wmi_hdl,
  808. struct set_atf_params *param);
  809. QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
  810. struct fips_params *param);
  811. QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
  812. struct wlan_profile_params *param);
  813. QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
  814. struct wlan_profile_params *param);
  815. QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
  816. struct channel_param *param);
  817. QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
  818. struct ht_ie_params *param);
  819. QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
  820. struct vht_ie_params *param);
  821. QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
  822. struct wmm_update_params *param);
  823. QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
  824. struct ant_switch_tbl_params *param);
  825. QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
  826. struct ratepwr_table_params *param);
  827. QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
  828. QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
  829. struct ctl_table_params *param);
  830. QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
  831. struct mimogain_table_params *param);
  832. QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
  833. struct ratepwr_chainmsk_params *param);
  834. QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
  835. struct macaddr_params *param);
  836. QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
  837. QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
  838. QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
  839. struct acparams_params *param);
  840. QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
  841. struct vap_dscp_tid_map_params *param);
  842. QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
  843. struct proxy_ast_reserve_params *param);
  844. QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
  845. struct pdev_qvit_params *param);
  846. QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
  847. struct mcast_group_update_params *param);
  848. QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
  849. struct peer_add_wds_entry_params *param);
  850. QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
  851. struct peer_del_wds_entry_params *param);
  852. /**
  853. * wmi_unified_set_bridge_mac_addr_cmd_send() - WMI set bridge mac addr cmd function
  854. * @param wmi_hdl : handle to WMI.
  855. * @param param : pointer to hold bridge mac addr param
  856. *
  857. * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  858. */
  859. QDF_STATUS wmi_unified_set_bridge_mac_addr_cmd_send(void *wmi_hdl,
  860. struct set_bridge_mac_addr_params *param);
  861. QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
  862. struct peer_update_wds_entry_params *param);
  863. QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
  864. QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
  865. QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
  866. QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
  867. struct smart_ant_enable_params *param);
  868. QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
  869. struct smart_ant_rx_ant_params *param);
  870. QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
  871. uint8_t macaddr[IEEE80211_ADDR_LEN],
  872. struct smart_ant_tx_ant_params *param);
  873. QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
  874. uint8_t macaddr[IEEE80211_ADDR_LEN],
  875. struct smart_ant_training_info_params *param);
  876. QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
  877. uint8_t macaddr[IEEE80211_ADDR_LEN],
  878. struct smart_ant_node_config_params *param);
  879. QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
  880. struct smart_ant_enable_tx_feedback_params *param);
  881. QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
  882. struct vdev_spectral_configure_params *param);
  883. QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
  884. struct vdev_spectral_enable_params *param);
  885. QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
  886. struct bss_chan_info_request_params *param);
  887. QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
  888. struct thermal_mitigation_params *param);
  889. QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
  890. uint8_t macaddr[IEEE80211_ADDR_LEN],
  891. struct set_neighbour_rx_params *param);
  892. QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
  893. struct set_fwtest_params *param);
  894. QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
  895. struct config_ratemask_params *param);
  896. /**
  897. * wmi_unified_vdev_set_custom_aggr_size_cmd_send() - WMI set custom aggr
  898. * size command
  899. * @param wmi_hdl : handle to WMI.
  900. * @param param : pointer to hold custom aggr size param
  901. *
  902. * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  903. */
  904. QDF_STATUS wmi_unified_vdev_set_custom_aggr_size_cmd_send(void *wmi_hdl,
  905. struct set_custom_aggr_size_params *param);
  906. /**
  907. * wmi_unified_vdev_set_qdepth_thresh_cmd_send() - WMI set qdepth threshold
  908. * @param wmi_hdl : handle to WMI.
  909. * @param param : pointer to hold set qdepth thresh param
  910. *
  911. * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  912. */
  913. QDF_STATUS wmi_unified_vdev_set_qdepth_thresh_cmd_send(void *wmi_hdl,
  914. struct set_qdepth_thresh_params *param);
  915. QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
  916. struct pdev_set_regdomain_params *param);
  917. QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
  918. struct set_quiet_mode_params *param);
  919. QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
  920. struct set_beacon_filter_params *param);
  921. QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
  922. struct remove_beacon_filter_params *param);
  923. QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
  924. uint8_t macaddr[IEEE80211_ADDR_LEN],
  925. struct addba_clearresponse_params *param);
  926. QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
  927. uint8_t macaddr[IEEE80211_ADDR_LEN],
  928. struct addba_send_params *param);
  929. QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
  930. uint8_t macaddr[IEEE80211_ADDR_LEN],
  931. struct delba_send_params *param);
  932. QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
  933. uint8_t macaddr[IEEE80211_ADDR_LEN],
  934. struct addba_setresponse_params *param);
  935. QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
  936. uint8_t macaddr[IEEE80211_ADDR_LEN],
  937. struct singleamsdu_params *param);
  938. QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
  939. uint8_t macaddr[IEEE80211_ADDR_LEN],
  940. struct set_qboost_params *param);
  941. QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
  942. struct mu_scan_params *param);
  943. QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
  944. struct lteu_config_params *param);
  945. QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
  946. struct set_ps_mode_params *param);
  947. QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
  948. struct wmi_init_cmd_param *param);
  949. bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
  950. /**
  951. * wmi_save_service_bitmap() - save service bitmap
  952. * @wmi_handle: wmi handle
  953. * @param evt_buf: pointer to event buffer
  954. *
  955. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
  956. */
  957. QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf,
  958. void *bitmap_buf);
  959. /**
  960. * wmi_save_ext_service_bitmap() - save extended service bitmap
  961. * @wmi_handle: wmi handle
  962. * @param evt_buf: pointer to event buffer
  963. *
  964. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
  965. */
  966. QDF_STATUS wmi_save_ext_service_bitmap(void *wmi_hdl, void *evt_buf,
  967. void *bitmap_buf);
  968. QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
  969. QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
  970. void *evt_buf,
  971. struct wlan_psoc_target_capability_info *ev);
  972. QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
  973. struct wlan_psoc_hal_reg_capability *hal_reg_cap);
  974. host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
  975. void *evt_buf, uint8_t *num_entries);
  976. uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
  977. QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
  978. void *ev, uint8_t *macaddr);
  979. wmi_host_mac_addr *wmi_ready_extract_mac_addr_list(void *wmi_hdl, void *ev,
  980. uint8_t *num_mac_addr);
  981. /**
  982. * wmi_extract_ready_params() - Extract data from ready event apart from
  983. * status, macaddr and version.
  984. * @wmi_handle: Pointer to WMI handle.
  985. * @evt_buf: Pointer to Ready event buffer.
  986. * @ev_param: Pointer to host defined struct to copy the data from event.
  987. *
  988. * Return: QDF_STATUS_SUCCESS on success.
  989. */
  990. QDF_STATUS wmi_extract_ready_event_params(void *wmi_hdl,
  991. void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
  992. QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
  993. void *ev, struct wmi_host_fw_ver *fw_ver);
  994. QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
  995. void *ev, struct wmi_host_fw_abi_ver *fw_ver);
  996. QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
  997. uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
  998. void *evt_b, uint32_t *len);
  999. QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
  1000. wmi_host_ext_resource_config *ext_cfg);
  1001. QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl);
  1002. QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
  1003. struct packet_power_info_params *param);
  1004. QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
  1005. struct gpio_config_params *param);
  1006. QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
  1007. struct gpio_output_params *param);
  1008. QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
  1009. struct rtt_meas_req_test_params *param);
  1010. QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
  1011. struct rtt_meas_req_params *param);
  1012. QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
  1013. struct rtt_keepalive_req_params *param);
  1014. QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
  1015. struct lci_set_params *param);
  1016. QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
  1017. struct lcr_set_params *param);
  1018. QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
  1019. struct periodic_chan_stats_params *param);
  1020. QDF_STATUS
  1021. wmi_send_atf_peer_request_cmd(void *wmi_hdl,
  1022. struct atf_peer_request_params *param);
  1023. QDF_STATUS
  1024. wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
  1025. struct atf_grouping_params *param);
  1026. /* Extract APIs */
  1027. QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
  1028. void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
  1029. QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
  1030. void *evt_buf, struct wmi_host_dcs_interference_param *param);
  1031. QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
  1032. wmi_host_ath_dcs_cw_int *cw_int);
  1033. QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
  1034. wmi_host_dcs_im_tgt_stats_t *wlan_stat);
  1035. QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
  1036. struct wmi_host_fips_event_param *param);
  1037. QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
  1038. wmi_host_vdev_start_resp *vdev_rsp);
  1039. /**
  1040. * wmi_extract_vdev_delete_resp - api to extract vdev delete
  1041. * response event params
  1042. * @wmi_handle: wma handle
  1043. * @evt_buf: pointer to event buffer
  1044. * @delele_rsp: pointer to hold delete response from firmware
  1045. *
  1046. * Return: QDF_STATUS_SUCCESS for successful event parse
  1047. * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
  1048. */
  1049. QDF_STATUS wmi_extract_vdev_delete_resp(void *wmi_hdl, void *evt_buf,
  1050. struct wmi_host_vdev_delete_resp *delele_rsp);
  1051. QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
  1052. uint8_t idx, struct tbttoffset_params *tbtt_param);
  1053. QDF_STATUS wmi_extract_ext_tbttoffset_update_params(void *wmi_hdl,
  1054. void *evt_buf, uint8_t idx,
  1055. struct tbttoffset_params *tbtt_param);
  1056. QDF_STATUS wmi_extract_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
  1057. uint32_t *num_vdevs);
  1058. QDF_STATUS wmi_extract_ext_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
  1059. uint32_t *num_vdevs);
  1060. QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
  1061. struct mgmt_rx_event_params *hdr, uint8_t **bufp);
  1062. QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
  1063. uint32_t *vdev_id);
  1064. QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
  1065. wmi_host_roam_event *ev);
  1066. QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
  1067. struct scan_event *param);
  1068. #ifdef CONVERGED_TDLS_ENABLE
  1069. /**
  1070. * wmi_extract_vdev_tdls_ev_param - extract vdev tdls param from event
  1071. * @wmi_handle: wmi handle
  1072. * @param evt_buf: pointer to event buffer
  1073. * @param param: Pointer to hold vdev tdls param
  1074. *
  1075. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1076. */
  1077. QDF_STATUS wmi_extract_vdev_tdls_ev_param(void *wmi_hdl, void *evt_buf,
  1078. struct tdls_event_info *param);
  1079. #endif
  1080. QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
  1081. wmi_host_mu_report_event *param);
  1082. QDF_STATUS wmi_extract_mu_db_entry(void *wmi_hdl, void *evt_buf,
  1083. uint8_t idx, wmi_host_mu_db_entry *param);
  1084. QDF_STATUS wmi_extract_mumimo_tx_count_ev_param(void *wmi_hdl, void *evt_buf,
  1085. wmi_host_peer_txmu_cnt_event *param);
  1086. QDF_STATUS wmi_extract_peer_gid_userpos_list_ev_param(void *wmi_hdl,
  1087. void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
  1088. QDF_STATUS wmi_extract_pdev_caldata_version_check_ev_param(void *wmi_hdl,
  1089. void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
  1090. QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
  1091. wmi_host_pdev_tpc_config_event *param);
  1092. QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
  1093. void *evt_buf, uint32_t *gpio_num);
  1094. QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
  1095. void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
  1096. QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
  1097. wmi_host_pdev_nfcal_power_all_channels_event *param);
  1098. QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
  1099. wmi_host_pdev_tpc_event *param);
  1100. QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
  1101. void *evt_buf,
  1102. wmi_host_pdev_generic_buffer_event *param);
  1103. QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
  1104. wmi_host_mgmt_tx_compl_event *param);
  1105. QDF_STATUS wmi_extract_offchan_data_tx_compl_param(void *wmi_hdl, void *evt_buf,
  1106. struct wmi_host_offchan_data_tx_compl_event *param);
  1107. QDF_STATUS wmi_extract_pdev_csa_switch_count_status(void *wmi_hdl,
  1108. void *evt_buf,
  1109. struct pdev_csa_switch_count_status *param);
  1110. QDF_STATUS wmi_extract_swba_num_vdevs(void *wmi_hdl, void *evt_buf,
  1111. uint32_t *num_vdevs);
  1112. QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
  1113. uint32_t idx, wmi_host_tim_info *tim_info);
  1114. QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
  1115. uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
  1116. #ifdef CONVERGED_P2P_ENABLE
  1117. QDF_STATUS wmi_extract_p2p_lo_stop_ev_param(void *wmi_hdl,
  1118. void *evt_buf, struct p2p_lo_event *param);
  1119. QDF_STATUS wmi_extract_p2p_noa_ev_param(void *wmi_hdl,
  1120. void *evt_buf, struct p2p_noa_info *param);
  1121. #endif
  1122. QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
  1123. void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
  1124. QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
  1125. wmi_host_peer_sta_kickout_event *ev);
  1126. QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
  1127. uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
  1128. QDF_STATUS wmi_extract_bcnflt_stats(void *wmi_hdl, void *evt_buf,
  1129. uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
  1130. QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
  1131. wmi_host_rtt_event_hdr *ev);
  1132. QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
  1133. wmi_host_rtt_meas_event *ev, uint8_t *hdump,
  1134. uint16_t hdump_len);
  1135. QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
  1136. wmi_host_rtt_error_report_event *ev);
  1137. QDF_STATUS wmi_extract_chan_stats(void *wmi_hdl, void *evt_buf,
  1138. uint32_t index, wmi_host_chan_stats *chan_stats);
  1139. QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
  1140. uint32_t *temp, uint32_t *level, uint32_t *pdev_id);
  1141. QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
  1142. uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
  1143. QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
  1144. uint16_t datalen, uint16_t *buf_offset,
  1145. wmi_host_phyerr_t *phyerr);
  1146. QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
  1147. uint16_t datalen, uint16_t *buf_offset,
  1148. wmi_host_phyerr_t *phyerr);
  1149. QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
  1150. uint16_t datalen, wmi_host_phyerr_t *phyerr);
  1151. QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
  1152. wmi_host_wlan_profile_ctx_t *profile_ctx);
  1153. QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
  1154. wmi_host_wlan_profile_t *profile_data);
  1155. QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
  1156. wmi_host_chan_info_event *chan_info);
  1157. QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
  1158. wmi_host_pdev_channel_hopping_event *ch_hopping);
  1159. QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
  1160. wmi_host_stats_event *stats_param);
  1161. QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
  1162. uint32_t index,
  1163. wmi_host_pdev_stats *pdev_stats);
  1164. QDF_STATUS wmi_extract_unit_test(void *wmi_hdl, void *evt_buf,
  1165. wmi_unit_test_event *unit_test, uint32_t maxspace);
  1166. QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
  1167. uint32_t index,
  1168. wmi_host_pdev_ext_stats *pdev_ext_stats);
  1169. QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
  1170. uint32_t index,
  1171. wmi_host_peer_extd_stats *peer_extd_stats);
  1172. QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
  1173. wmi_host_pdev_bss_chan_info_event *bss_chan_info);
  1174. QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
  1175. wmi_host_inst_stats_resp *inst_rssi_resp);
  1176. QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
  1177. uint32_t index, wmi_host_peer_stats *peer_stats);
  1178. QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
  1179. wmi_host_tx_data_traffic_ctrl_event *ev);
  1180. QDF_STATUS wmi_extract_atf_peer_stats_ev(void *wmi_hdl, void *evt_buf,
  1181. wmi_host_atf_peer_stats_event *ev);
  1182. QDF_STATUS wmi_extract_atf_token_info_ev(void *wmi_hdl, void *evt_buf,
  1183. uint8_t idx, wmi_host_atf_peer_stats_info *atf_token_info);
  1184. QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
  1185. uint32_t index, wmi_host_vdev_stats *vdev_stats);
  1186. QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
  1187. uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
  1188. QDF_STATUS wmi_extract_bcn_stats(void *wmi_hdl, void *evt_buf,
  1189. uint32_t index, wmi_host_bcn_stats *vdev_bcn_stats);
  1190. QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
  1191. struct wmi_power_dbg_params *param);
  1192. QDF_STATUS wmi_unified_send_multiple_vdev_restart_req_cmd(void *wmi_hdl,
  1193. struct multiple_vdev_restart_params *param);
  1194. /**
  1195. * wmi_unified_send_sar_limit_cmd() - send sar limit cmd to fw
  1196. * @wmi_hdl: wmi handle
  1197. * @params: sar limit command params
  1198. *
  1199. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1200. */
  1201. QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
  1202. struct sar_limit_cmd_params *params);
  1203. /**
  1204. * wmi_unified_get_sar_limit_cmd() - request current SAR limits from FW
  1205. * @wmi_hdl: wmi handle
  1206. *
  1207. * Return: QDF_STATUS_SUCCESS for success or error code
  1208. */
  1209. QDF_STATUS wmi_unified_get_sar_limit_cmd(void *wmi_hdl);
  1210. /**
  1211. * wmi_unified_extract_sar_limit_event() - extract SAR limits from FW event
  1212. * @wmi_hdl: wmi handle
  1213. * @evt_buf: event buffer received from firmware
  1214. * @event: SAR limit event which is to be populated by data extracted from
  1215. * the @evt_buf buffer
  1216. *
  1217. * Return: QDF_STATUS_SUCCESS for success or error code
  1218. */
  1219. QDF_STATUS wmi_unified_extract_sar_limit_event(void *wmi_hdl,
  1220. uint8_t *evt_buf,
  1221. struct sar_limit_event *event);
  1222. QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
  1223. struct wmi_adaptive_dwelltime_params *
  1224. wmi_param);
  1225. QDF_STATUS wmi_unified_fw_test_cmd(void *wmi_hdl,
  1226. struct set_fwtest_params *wmi_fwtest);
  1227. QDF_STATUS wmi_unified_peer_rx_reorder_queue_setup_send(void *wmi_hdl,
  1228. struct rx_reorder_queue_setup_params *param);
  1229. QDF_STATUS wmi_unified_peer_rx_reorder_queue_remove_send(void *wmi_hdl,
  1230. struct rx_reorder_queue_remove_params *param);
  1231. QDF_STATUS wmi_extract_service_ready_ext(void *wmi_hdl, uint8_t *evt_buf,
  1232. struct wlan_psoc_host_service_ext_param *param);
  1233. QDF_STATUS wmi_extract_hw_mode_cap_service_ready_ext(
  1234. void *wmi_hdl,
  1235. uint8_t *evt_buf, uint8_t hw_mode_idx,
  1236. struct wlan_psoc_host_hw_mode_caps *param);
  1237. QDF_STATUS wmi_extract_mac_phy_cap_service_ready_ext(
  1238. void *wmi_hdl,
  1239. uint8_t *evt_buf,
  1240. uint8_t hw_mode_id,
  1241. uint8_t phy_id,
  1242. struct wlan_psoc_host_mac_phy_caps *param);
  1243. QDF_STATUS wmi_extract_reg_cap_service_ready_ext(
  1244. void *wmi_hdl,
  1245. uint8_t *evt_buf, uint8_t phy_idx,
  1246. struct wlan_psoc_host_hal_reg_capabilities_ext *param);
  1247. /**
  1248. * wmi_extract_dbr_ring_cap_service_ready_ext: Extract direct buffer rx
  1249. * capability received through
  1250. * extended service ready event
  1251. * @wmi_hdl: WMI handle
  1252. * @evt_buf: Event buffer
  1253. * @idx: Index of the module for which capability is received
  1254. * @param: Pointer to direct buffer rx ring cap struct
  1255. *
  1256. * Return: QDF status of operation
  1257. */
  1258. QDF_STATUS wmi_extract_dbr_ring_cap_service_ready_ext(
  1259. void *wmi_hdl,
  1260. uint8_t *evt_buf, uint8_t idx,
  1261. struct wlan_psoc_host_dbr_ring_caps *param);
  1262. /**
  1263. * wmi_extract_dbr_buf_release_fixed : Extract direct buffer rx fixed param
  1264. * from buffer release event
  1265. * @wmi_hdl: WMI handle
  1266. * @evt_buf: Event buffer
  1267. * @param: Pointer to direct buffer rx response struct
  1268. *
  1269. * Return: QDF status of operation
  1270. */
  1271. QDF_STATUS wmi_extract_dbr_buf_release_fixed(
  1272. void *wmi_hdl,
  1273. uint8_t *evt_buf,
  1274. struct direct_buf_rx_rsp *param);
  1275. /**
  1276. * wmi_extract_dbr_buf_release_entry: Extract direct buffer rx buffer tlv
  1277. *
  1278. * @wmi_hdl: WMI handle
  1279. * @evt_buf: Event buffer
  1280. * @idx: Index of the module for which capability is received
  1281. * @param: Pointer to direct buffer rx entry
  1282. *
  1283. * Return: QDF status of operation
  1284. */
  1285. QDF_STATUS wmi_extract_dbr_buf_release_entry(
  1286. void *wmi_hdl,
  1287. uint8_t *evt_buf, uint8_t idx,
  1288. struct direct_buf_rx_entry *param);
  1289. QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
  1290. uint8_t *evt_buf,
  1291. struct wmi_host_pdev_utf_event *param);
  1292. QDF_STATUS wmi_extract_pdev_qvit_event(void *wmi_hdl,
  1293. uint8_t *evt_buf,
  1294. struct wmi_host_pdev_qvit_event *param);
  1295. QDF_STATUS wmi_extract_peer_delete_response_event(void *wmi_hdl,
  1296. uint8_t *evt_buf,
  1297. struct wmi_host_peer_delete_response_event *param);
  1298. QDF_STATUS wmi_extract_chainmask_tables(void *wmi_hdl, uint8_t *evt_buf,
  1299. struct wlan_psoc_host_chainmask_table *chainmask_table);
  1300. /**
  1301. * wmi_unified_dfs_phyerr_offload_en_cmd() - enable dfs phyerr offload
  1302. * @wmi_handle: wmi handle
  1303. * @pdev_id: pdev id
  1304. *
  1305. * Return: QDF_STATUS
  1306. */
  1307. QDF_STATUS wmi_unified_dfs_phyerr_offload_en_cmd(void *wmi_hdl,
  1308. uint32_t pdev_id);
  1309. /**
  1310. * wmi_unified_dfs_phyerr_offload_dis_cmd() - disable dfs phyerr offload
  1311. * @wmi_handle: wmi handle
  1312. * @pdev_id: pdev id
  1313. *
  1314. * Return: QDF_STATUS
  1315. */
  1316. QDF_STATUS wmi_unified_dfs_phyerr_offload_dis_cmd(void *wmi_hdl,
  1317. uint32_t pdev_id);
  1318. QDF_STATUS wmi_unified_set_country_cmd_send(void *wmi_hdl,
  1319. struct set_country *param);
  1320. /*
  1321. * wmi_unified_set_del_pmkid_cache() - set delete PMKID
  1322. * @wmi_hdl: wma handle
  1323. * @pmksa: pointer to pmk cache entry
  1324. *
  1325. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1326. */
  1327. QDF_STATUS wmi_unified_set_del_pmkid_cache(void *wmi_hdl,
  1328. struct wmi_unified_pmk_cache *pmksa);
  1329. #if defined(WLAN_FEATURE_FILS_SK)
  1330. /*
  1331. * wmi_unified_roam_send_hlp_cmd() -send HLP command info
  1332. * @wmi_hdl: wma handle
  1333. * @req_buf: Pointer to HLP params
  1334. *
  1335. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1336. */
  1337. QDF_STATUS wmi_unified_roam_send_hlp_cmd(void *wmi_hdl,
  1338. struct hlp_params *req_buf);
  1339. #endif
  1340. /**
  1341. * wmi_unified_send_request_get_rcpi_cmd() - command to request rcpi value
  1342. * @wmi_hdl: wma handle
  1343. * @get_rcpi_param: rcpi params
  1344. *
  1345. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1346. */
  1347. QDF_STATUS wmi_unified_send_request_get_rcpi_cmd(void *wmi_hdl,
  1348. struct rcpi_req *get_rcpi_param);
  1349. /**
  1350. * wmi_extract_rcpi_response_event - api to extract RCPI event params
  1351. * @wmi_handle: wma handle
  1352. * @evt_buf: pointer to event buffer
  1353. * @res: pointer to hold rcpi response from firmware
  1354. *
  1355. * Return: QDF_STATUS_SUCCESS for successful event parse
  1356. * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
  1357. */
  1358. QDF_STATUS wmi_extract_rcpi_response_event(void *wmi_hdl, void *evt_buf,
  1359. struct rcpi_res *res);
  1360. #ifdef WMI_INTERFACE_EVENT_LOGGING
  1361. void wmi_print_cmd_log(wmi_unified_t wmi, uint32_t count,
  1362. qdf_abstract_print *print, void *print_priv);
  1363. void wmi_print_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
  1364. qdf_abstract_print *print, void *print_priv);
  1365. void wmi_print_mgmt_cmd_log(wmi_unified_t wmi, uint32_t count,
  1366. qdf_abstract_print *print, void *print_priv);
  1367. void wmi_print_mgmt_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
  1368. qdf_abstract_print *print, void *print_priv);
  1369. void wmi_print_event_log(wmi_unified_t wmi, uint32_t count,
  1370. qdf_abstract_print *print, void *print_priv);
  1371. void wmi_print_rx_event_log(wmi_unified_t wmi, uint32_t count,
  1372. qdf_abstract_print *print, void *print_priv);
  1373. void wmi_print_mgmt_event_log(wmi_unified_t wmi, uint32_t count,
  1374. qdf_abstract_print *print, void *print_priv);
  1375. #endif /* WMI_INTERFACE_EVENT_LOGGING */
  1376. QDF_STATUS wmi_unified_send_dbs_scan_sel_params_cmd(void *wmi_hdl,
  1377. struct wmi_dbs_scan_sel_params *wmi_param);
  1378. QDF_STATUS wmi_unified_send_limit_off_chan_cmd(void *wmi_hdl,
  1379. struct wmi_limit_off_chan_param *wmi_param);
  1380. QDF_STATUS wmi_unified_set_arp_stats_req(void *wmi_hdl,
  1381. struct set_arp_stats *req_buf);
  1382. QDF_STATUS wmi_unified_get_arp_stats_req(void *wmi_hdl,
  1383. struct get_arp_stats *req_buf);
  1384. /**
  1385. * wmi_send_bcn_offload_control_cmd - send beacon ofload control cmd to fw
  1386. * @wmi_hdl: wmi handle
  1387. * @bcn_ctrl_param: pointer to bcn_offload_control param
  1388. *
  1389. * Return: QDF_STATUS_SUCCESS for success or error code
  1390. */
  1391. QDF_STATUS wmi_send_bcn_offload_control_cmd(void *wmi_hdl,
  1392. struct bcn_offload_control *bcn_ctrl_param);
  1393. /**
  1394. * wmi_unified_send_wds_entry_list_cmd() - WMI function to get list of
  1395. * wds entries from FW
  1396. * @wmi_hdl: wmi handle
  1397. *
  1398. * Send WMI_PDEV_WDS_ENTRY_LIST_CMDID parameters to fw.
  1399. *
  1400. * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
  1401. */
  1402. QDF_STATUS wmi_unified_send_dump_wds_table_cmd(void *wmi_hdl);
  1403. /**
  1404. * wmi_extract_wds_entry - api to extract wds entry
  1405. * @wmi_hdl: wmi handle
  1406. * @evt_buf: pointer to event buffer
  1407. * @wds_entry: wds entry
  1408. * @idx: index to point wds entry in event buffer
  1409. *
  1410. * Return: QDF_STATUS_SUCCESS for successful event parse
  1411. * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
  1412. */
  1413. QDF_STATUS wmi_extract_wds_entry(void *wmi_hdl, uint8_t *evt_buf,
  1414. struct wdsentry *wds_entry, u_int32_t idx);
  1415. #ifdef WLAN_FEATURE_NAN_CONVERGENCE
  1416. /**
  1417. * wmi_unified_ndp_initiator_req_cmd_send - api to send initiator request to FW
  1418. * @wmi_hdl: wma handle
  1419. * @req: pointer to request buffer
  1420. *
  1421. * Return: status of operation
  1422. */
  1423. QDF_STATUS wmi_unified_ndp_initiator_req_cmd_send(void *wmi_hdl,
  1424. struct nan_datapath_initiator_req *req);
  1425. /**
  1426. * wmi_unified_ndp_responder_req_cmd_send - api to send responder request to FW
  1427. * @wmi_hdl: wma handle
  1428. * @req: pointer to request buffer
  1429. *
  1430. * Return: status of operation
  1431. */
  1432. QDF_STATUS wmi_unified_ndp_responder_req_cmd_send(void *wmi_hdl,
  1433. struct nan_datapath_responder_req *req);
  1434. /**
  1435. * wmi_unified_ndp_end_req_cmd_send - api to send end request to FW
  1436. * @wmi_hdl: wma handle
  1437. * @req: pointer to request buffer
  1438. *
  1439. * Return: status of operation
  1440. */
  1441. QDF_STATUS wmi_unified_ndp_end_req_cmd_send(void *wmi_hdl,
  1442. struct nan_datapath_end_req *req);
  1443. /**
  1444. * wmi_extract_ndp_initiator_rsp - api to extract initiator rsp from even buffer
  1445. * @wmi_hdl: wma handle
  1446. * @data: event buffer
  1447. * @rsp: buffer to populate
  1448. *
  1449. * Return: status of operation
  1450. */
  1451. QDF_STATUS wmi_extract_ndp_initiator_rsp(wmi_unified_t wmi_handle,
  1452. uint8_t *data, struct nan_datapath_initiator_rsp **rsp);
  1453. /**
  1454. * wmi_extract_ndp_ind - api to extract ndp indication struct from even buffer
  1455. * @wmi_hdl: wma handle
  1456. * @data: event buffer
  1457. * @ind: buffer to populate
  1458. *
  1459. * Return: status of operation
  1460. */
  1461. QDF_STATUS wmi_extract_ndp_ind(wmi_unified_t wmi_handle, uint8_t *data,
  1462. struct nan_datapath_indication_event **ind);
  1463. /**
  1464. * wmi_extract_ndp_confirm - api to extract ndp confim struct from even buffer
  1465. * @wmi_hdl: wma handle
  1466. * @data: event buffer
  1467. * @ev: buffer to populate
  1468. *
  1469. * Return: status of operation
  1470. */
  1471. QDF_STATUS wmi_extract_ndp_confirm(wmi_unified_t wmi_handle, uint8_t *data,
  1472. struct nan_datapath_confirm_event **ev);
  1473. /**
  1474. * wmi_extract_ndp_responder_rsp - api to extract responder rsp from even buffer
  1475. * @wmi_hdl: wma handle
  1476. * @data: event buffer
  1477. * @rsp: buffer to populate
  1478. *
  1479. * Return: status of operation
  1480. */
  1481. QDF_STATUS wmi_extract_ndp_responder_rsp(wmi_unified_t wmi_handle,
  1482. uint8_t *data, struct nan_datapath_responder_rsp **rsp);
  1483. /**
  1484. * wmi_extract_ndp_end_rsp - api to extract ndp end rsp from even buffer
  1485. * @wmi_hdl: wma handle
  1486. * @data: event buffer
  1487. * @rsp: buffer to populate
  1488. *
  1489. * Return: status of operation
  1490. */
  1491. QDF_STATUS wmi_extract_ndp_end_rsp(wmi_unified_t wmi_handle, uint8_t *data,
  1492. struct nan_datapath_end_rsp_event **rsp);
  1493. /**
  1494. * wmi_extract_ndp_end_ind - api to extract ndp end indication from even buffer
  1495. * @wmi_hdl: wma handle
  1496. * @data: event buffer
  1497. * @ind: buffer to populate
  1498. *
  1499. * Return: status of operation
  1500. */
  1501. QDF_STATUS wmi_extract_ndp_end_ind(wmi_unified_t wmi_handle, uint8_t *data,
  1502. struct nan_datapath_end_indication_event **ind);
  1503. #endif
  1504. /**
  1505. * wmi_unified_send_btm_config() - Send BTM config to fw
  1506. * @wmi_hdl: wmi handle
  1507. * @params: pointer to wmi_btm_config
  1508. *
  1509. * Return: QDF_STATUS
  1510. */
  1511. QDF_STATUS wmi_unified_send_btm_config(void *wmi_hdl,
  1512. struct wmi_btm_config *params);
  1513. /**
  1514. * wmi_unified_send_obss_detection_cfg_cmd() - WMI function to send obss
  1515. * detection configuration to FW.
  1516. * @wmi_hdl: wmi handle
  1517. * @cfg: obss detection configuration
  1518. *
  1519. * Send WMI_SAP_OBSS_DETECTION_CFG_CMDID parameters to fw.
  1520. *
  1521. * Return: QDF_STATUS
  1522. */
  1523. QDF_STATUS wmi_unified_send_obss_detection_cfg_cmd(void *wmi_hdl,
  1524. struct wmi_obss_detection_cfg_param *cfg);
  1525. /**
  1526. * wmi_unified_extract_obss_detection_info() - WMI function to extract obss
  1527. * detection info from FW.
  1528. * @wmi_hdl: wmi handle
  1529. * @data: event data from firmware
  1530. * @info: Pointer to hold obss detection info
  1531. *
  1532. * This function is used to extract obss info from firmware.
  1533. *
  1534. * Return: QDF_STATUS
  1535. */
  1536. QDF_STATUS wmi_unified_extract_obss_detection_info(void *wmi_hdl,
  1537. uint8_t *data,
  1538. struct wmi_obss_detect_info
  1539. *info);
  1540. #ifdef WLAN_SUPPORT_FILS
  1541. /**
  1542. * wmi_unified_fils_vdev_config_send_cmd() - send FILS config cmd to fw
  1543. * @wmi_hdl: wmi handle
  1544. * @param: fils config params
  1545. *
  1546. * Return: QDF_STATUS_SUCCESS for success or error code
  1547. */
  1548. QDF_STATUS
  1549. wmi_unified_fils_vdev_config_send_cmd(void *wmi_hdl,
  1550. struct config_fils_params *param);
  1551. /**
  1552. * wmi_extract_swfda_vdev_id() - api to extract vdev id
  1553. * @wmi_hdl: wmi handle
  1554. * @evt_buf: pointer to event buffer
  1555. * @vdev_id: pointer to vdev id
  1556. *
  1557. * Return: QDF_STATUS_SUCCESS for success or error code
  1558. */
  1559. QDF_STATUS wmi_extract_swfda_vdev_id(void *wmi_hdl, void *evt_buf,
  1560. uint32_t *vdev_id);
  1561. /**
  1562. * wmi_unified_fils_discovery_send_cmd() - send FILS discovery cmd to fw
  1563. * @wmi_hdl: wmi handle
  1564. * @param: fils discovery params
  1565. *
  1566. * Return: QDF_STATUS_SUCCESS for success or error code
  1567. */
  1568. QDF_STATUS wmi_unified_fils_discovery_send_cmd(void *wmi_hdl,
  1569. struct fd_params *param);
  1570. #endif /* WLAN_SUPPORT_FILS */
  1571. #endif /* _WMI_UNIFIED_API_H_ */