wmi_unified_api.h 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490
  1. /*
  2. * Copyright (c) 2013-2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /*
  19. * This file contains the API definitions for the Unified Wireless Module
  20. * Interface (WMI).
  21. */
  22. #ifndef _WMI_UNIFIED_API_H_
  23. #define _WMI_UNIFIED_API_H_
  24. #include <osdep.h>
  25. #ifdef CONFIG_MCL
  26. #include "wmi.h"
  27. #endif
  28. #include "htc_api.h"
  29. #include "wmi_unified_param.h"
  30. #include "service_ready_param.h"
  31. #include "wlan_objmgr_psoc_obj.h"
  32. #include "wlan_mgmt_txrx_utils_api.h"
  33. #ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
  34. #include "wmi_unified_pmo_api.h"
  35. #endif
  36. #ifdef CONVERGED_P2P_ENABLE
  37. #include "wlan_p2p_public_struct.h"
  38. #endif
  39. #include "wlan_scan_public_structs.h"
  40. #ifdef WLAN_FEATURE_DISA
  41. #include "wlan_disa_public_struct.h"
  42. #endif
  43. #ifdef WLAN_FEATURE_ACTION_OUI
  44. #include "wlan_action_oui_public_struct.h"
  45. #endif
  46. #ifdef WLAN_FEATURE_NAN_CONVERGENCE
  47. #include "nan_public_structs.h"
  48. #endif
  49. #ifdef WLAN_SUPPORT_GREEN_AP
  50. #include "wlan_green_ap_api.h"
  51. #endif
  52. #ifdef WLAN_FEATURE_DSRC
  53. #include "wlan_ocb_public_structs.h"
  54. #endif
  55. #ifdef WLAN_SUPPORT_TWT
  56. #include "wmi_unified_twt_param.h"
  57. #include "wmi_unified_twt_api.h"
  58. #endif
  59. #ifdef FEATURE_WLAN_EXTSCAN
  60. #include "wmi_unified_extscan_api.h"
  61. #endif
  62. #ifdef IPA_OFFLOAD
  63. #include "wlan_ipa_public_struct.h"
  64. #endif
  65. typedef qdf_nbuf_t wmi_buf_t;
  66. #define wmi_buf_data(_buf) qdf_nbuf_data(_buf)
  67. #define WMI_LOGD(args ...) \
  68. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, ## args)
  69. #define WMI_LOGI(args ...) \
  70. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, ## args)
  71. #define WMI_LOGW(args ...) \
  72. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_WARN, ## args)
  73. #define WMI_LOGE(args ...) \
  74. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR, ## args)
  75. #define WMI_LOGP(args ...) \
  76. QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
  77. #define PHYERROR_MAX_BUFFER_LENGTH 0x7F000000
  78. struct wmi_soc;
  79. struct policy_mgr_dual_mac_config;
  80. /**
  81. * struct wmi_ops - service callbacks to upper layer
  82. * @service_ready_cbk: service ready callback
  83. * @service_ready_ext_cbk: service ready ext callback
  84. * @ready_cbk: ready calback
  85. * @wma_process_fw_event_handler_cbk: generic event handler callback
  86. */
  87. struct wmi_rx_ops {
  88. int (*wma_process_fw_event_handler_cbk)(void *ctx,
  89. void *ev, uint8_t rx_ctx);
  90. };
  91. /**
  92. * enum wmi_target_type - type of supported wmi command
  93. * @WMI_TLV_TARGET: tlv based target
  94. * @WMI_NON_TLV_TARGET: non-tlv based target
  95. *
  96. */
  97. enum wmi_target_type {
  98. WMI_TLV_TARGET,
  99. WMI_NON_TLV_TARGET,
  100. WMI_MAX_TARGET_TYPE
  101. };
  102. /**
  103. * enum wmi_rx_exec_ctx - wmi rx execution context
  104. * @WMI_RX_WORK_CTX: work queue context execution provided by WMI layer
  105. * @WMI_RX_UMAC_CTX: execution context provided by umac layer
  106. *
  107. */
  108. enum wmi_rx_exec_ctx {
  109. WMI_RX_WORK_CTX,
  110. WMI_RX_UMAC_CTX
  111. };
  112. /**
  113. * struct wmi_unified_attach_params - wmi init parameters
  114. * @param osdev : NIC device
  115. * @param target_type : type of supported wmi command
  116. * @param use_cookie : flag to indicate cookie based allocation
  117. * @param ops : handle to wmi ops
  118. * @psoc : objmgr psoc
  119. * @max_commands : max commands
  120. */
  121. struct wmi_unified_attach_params {
  122. osdev_t osdev;
  123. enum wmi_target_type target_type;
  124. bool use_cookie;
  125. struct wmi_rx_ops *rx_ops;
  126. struct wlan_objmgr_psoc *psoc;
  127. uint16_t max_commands;
  128. uint32_t soc_id;
  129. };
  130. /**
  131. * attach for unified WMI
  132. *
  133. * @param scn_handle : handle to SCN.
  134. * @param params : attach params for WMI
  135. *
  136. */
  137. void *wmi_unified_attach(void *scn_handle,
  138. struct wmi_unified_attach_params *params);
  139. /**
  140. * wmi_mgmt_cmd_record() - Wrapper function for mgmt command logging macro
  141. *
  142. * @wmi_handle: wmi handle
  143. * @cmd: mgmt command
  144. * @header: pointer to 802.11 header
  145. * @vdev_id: vdev id
  146. * @chanfreq: channel frequency
  147. *
  148. * Return: none
  149. */
  150. void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, uint32_t cmd,
  151. void *header, uint32_t vdev_id, uint32_t chanfreq);
  152. /**
  153. * detach for unified WMI
  154. *
  155. * @param wmi_handle : handle to WMI.
  156. * @return void.
  157. */
  158. void wmi_unified_detach(struct wmi_unified *wmi_handle);
  159. /**
  160. * API to sync time between host and firmware
  161. *
  162. * @param wmi_handle : handle to WMI.
  163. * @return void.
  164. */
  165. void wmi_send_time_stamp_sync_cmd_tlv(void *wmi_hdl);
  166. void
  167. wmi_unified_remove_work(struct wmi_unified *wmi_handle);
  168. /**
  169. * generic function to allocate WMI buffer
  170. *
  171. * @param wmi_handle : handle to WMI.
  172. * @param len : length of the buffer
  173. * @return wmi_buf_t.
  174. */
  175. #ifdef NBUF_MEMORY_DEBUG
  176. #define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
  177. wmi_buf_t
  178. wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint32_t len,
  179. uint8_t *file_name, uint32_t line_num);
  180. #else
  181. /**
  182. * wmi_buf_alloc() - generic function to allocate WMI buffer
  183. * @wmi_handle: handle to WMI.
  184. * @len: length of the buffer
  185. *
  186. * Return: return wmi_buf_t or null if memory alloc fails
  187. */
  188. #define wmi_buf_alloc(wmi_handle, len) \
  189. wmi_buf_alloc_fl(wmi_handle, len, __func__, __LINE__)
  190. wmi_buf_t wmi_buf_alloc_fl(wmi_unified_t wmi_handle, uint32_t len,
  191. const char *func, uint32_t line);
  192. #endif
  193. /**
  194. * generic function frees WMI net buffer
  195. *
  196. * @param net_buf : Pointer ot net_buf to be freed
  197. */
  198. void wmi_buf_free(wmi_buf_t net_buf);
  199. /**
  200. * wmi_unified_cmd_send() - generic function to send unified WMI command
  201. * @wmi_handle: handle to WMI.
  202. * @buf: wmi command buffer
  203. * @buflen: wmi command buffer length
  204. * @cmd_id: WMI cmd id
  205. *
  206. * Note, it is NOT safe to access buf after calling this function!
  207. *
  208. * Return: QDF_STATUS
  209. */
  210. #define wmi_unified_cmd_send(wmi_handle, buf, buflen, cmd_id) \
  211. wmi_unified_cmd_send_fl(wmi_handle, buf, buflen, \
  212. cmd_id, __func__, __LINE__)
  213. QDF_STATUS
  214. wmi_unified_cmd_send_fl(wmi_unified_t wmi_handle, wmi_buf_t buf,
  215. uint32_t buflen, uint32_t cmd_id,
  216. const char *func, uint32_t line);
  217. /**
  218. * wmi_unified_register_event() - WMI event handler
  219. * registration function for converged components
  220. *
  221. * @wmi_handle: handle to WMI.
  222. * @event_id: WMI event ID
  223. * @handler_func: Event handler call back function
  224. *
  225. * @return 0 on success and -ve on failure.
  226. */
  227. int
  228. wmi_unified_register_event(wmi_unified_t wmi_handle,
  229. uint32_t event_id,
  230. wmi_unified_event_handler handler_func);
  231. /**
  232. * wmi_unified_register_event_handler() - WMI event handler
  233. * registration function
  234. *
  235. * @wmi_handle: handle to WMI.
  236. * @event_id: WMI event ID
  237. * @handler_func: Event handler call back function
  238. * @rx_ctx: rx event processing context
  239. *
  240. * @return 0 on success and -ve on failure.
  241. */
  242. int
  243. wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
  244. wmi_conv_event_id event_id,
  245. wmi_unified_event_handler handler_func,
  246. uint8_t rx_ctx);
  247. /**
  248. * WMI event handler unregister function for converged componets
  249. *
  250. * @param wmi_handle : handle to WMI.
  251. * @param event_id : WMI event ID
  252. * @return 0 on success and -ve on failure.
  253. */
  254. int
  255. wmi_unified_unregister_event(wmi_unified_t wmi_handle,
  256. uint32_t event_id);
  257. /**
  258. * WMI event handler unregister function
  259. *
  260. * @param wmi_handle : handle to WMI.
  261. * @param event_id : WMI event ID
  262. * @return 0 on success and -ve on failure.
  263. */
  264. int
  265. wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
  266. wmi_conv_event_id event_id);
  267. /**
  268. * request wmi to connet its htc service.
  269. * @param wmi_handle : handle to WMI.
  270. * @param htc_handle : handle to HTC.
  271. * @return void
  272. */
  273. QDF_STATUS
  274. wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
  275. void *htc_handle);
  276. /*
  277. * WMI API to verify the host has enough credits to suspend
  278. * @param wmi_handle : handle to WMI.
  279. */
  280. int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
  281. /**
  282. * WMI API to get updated host_credits
  283. * @param wmi_handle : handle to WMI.
  284. */
  285. int wmi_get_host_credits(wmi_unified_t wmi_handle);
  286. /**
  287. * WMI API to get WMI Pending Commands in the HTC queue
  288. * @param wmi_handle : handle to WMI.
  289. */
  290. int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
  291. /**
  292. * WMI API to set target suspend state
  293. * @param wmi_handle : handle to WMI.
  294. * @param val : suspend state boolean
  295. */
  296. void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
  297. /**
  298. * WMI API to set bus suspend state
  299. * @param wmi_handle: handle to WMI.
  300. * @param val: suspend state boolean
  301. */
  302. void wmi_set_is_wow_bus_suspended(wmi_unified_t wmi_handle, A_BOOL val);
  303. /**
  304. * WMI API to set crash injection state
  305. * @param wmi_handle: handle to WMI.
  306. * @param val: crash injection state boolean
  307. */
  308. void wmi_tag_crash_inject(wmi_unified_t wmi_handle, A_BOOL flag);
  309. /**
  310. * WMI API to set target assert
  311. * @param wmi_handle: handle to WMI.
  312. * @param val: target assert config value.
  313. *
  314. * Return: none.
  315. */
  316. void wmi_set_tgt_assert(wmi_unified_t wmi_handle, bool val);
  317. /**
  318. * generic function to block unified WMI command
  319. * @param wmi_handle : handle to WMI.
  320. * @return 0 on success and -ve on failure.
  321. */
  322. int
  323. wmi_stop(wmi_unified_t wmi_handle);
  324. /**
  325. * API to flush all the previous packets associated with the wmi endpoint
  326. *
  327. * @param wmi_handle : handle to WMI.
  328. */
  329. void
  330. wmi_flush_endpoint(wmi_unified_t wmi_handle);
  331. /**
  332. * wmi_pdev_id_conversion_enable() - API to enable pdev_id conversion in WMI
  333. * By default pdev_id conversion is not done in WMI.
  334. * This API can be used enable conversion in WMI.
  335. * @param wmi_handle : handle to WMI
  336. * Return none
  337. */
  338. void wmi_pdev_id_conversion_enable(wmi_unified_t wmi_handle);
  339. /**
  340. * API to handle wmi rx event after UMAC has taken care of execution
  341. * context
  342. *
  343. * @param wmi_handle : handle to WMI.
  344. * @param evt_buf : wmi event buffer
  345. */
  346. void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
  347. #ifdef FEATURE_RUNTIME_PM
  348. void
  349. wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
  350. bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
  351. #else
  352. static inline void
  353. wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
  354. {
  355. return;
  356. }
  357. static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
  358. {
  359. return false;
  360. }
  361. #endif
  362. void *wmi_unified_get_soc_handle(struct wmi_unified *wmi_handle);
  363. void *wmi_unified_get_pdev_handle(struct wmi_soc *soc, uint32_t pdev_idx);
  364. /**
  365. * UMAC Callback to process fw event.
  366. * @param wmi_handle : handle to WMI.
  367. * @param evt_buf : wmi event buffer
  368. */
  369. void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
  370. uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
  371. QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
  372. uint8_t macaddr[IEEE80211_ADDR_LEN],
  373. struct vdev_create_params *param);
  374. QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
  375. uint8_t if_id);
  376. QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
  377. uint8_t vdev_id);
  378. QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
  379. uint8_t bssid[IEEE80211_ADDR_LEN],
  380. struct vdev_up_params *params);
  381. QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
  382. uint8_t vdev_id);
  383. QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
  384. struct vdev_start_params *req);
  385. /**
  386. * wmi_unified_vdev_set_nac_rssi_send() - send NAC_RSSI command to fw
  387. * @param wmi_handle : handle to WMI
  388. * @param req : pointer to hold nac rssi request data
  389. *
  390. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  391. */
  392. QDF_STATUS wmi_unified_vdev_set_nac_rssi_send(void *wmi_hdl,
  393. struct vdev_scan_nac_rssi_params *req);
  394. QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
  395. struct hidden_ssid_vdev_restart_params *restart_params);
  396. QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
  397. struct vdev_set_params *param);
  398. QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
  399. uint8_t
  400. peer_addr[IEEE80211_ADDR_LEN],
  401. uint8_t vdev_id);
  402. QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
  403. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  404. struct peer_flush_params *param);
  405. QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
  406. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  407. struct peer_set_params *param);
  408. QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
  409. struct peer_create_params *param);
  410. QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
  411. uint8_t macaddr[IEEE80211_ADDR_LEN],
  412. struct stats_request_params *param);
  413. QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
  414. uint32_t value, uint8_t pdev_id);
  415. #ifdef FEATURE_WLAN_D0WOW
  416. QDF_STATUS wmi_unified_d0wow_enable_send(void *wmi_hdl,
  417. uint8_t mac_id);
  418. QDF_STATUS wmi_unified_d0wow_disable_send(void *wmi_hdl,
  419. uint8_t mac_id);
  420. #endif
  421. QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
  422. struct wow_cmd_params *param,
  423. uint8_t mac_id);
  424. QDF_STATUS wmi_unified_wow_wakeup_send(void *wmi_hdl);
  425. QDF_STATUS wmi_unified_wow_add_wakeup_event_send(void *wmi_hdl,
  426. struct wow_add_wakeup_params *param);
  427. QDF_STATUS wmi_unified_wow_add_wakeup_pattern_send(void *wmi_hdl,
  428. struct wow_add_wakeup_pattern_params *param);
  429. QDF_STATUS wmi_unified_wow_remove_wakeup_pattern_send(void *wmi_hdl,
  430. struct wow_remove_wakeup_pattern_params *param);
  431. #ifndef CONFIG_MCL
  432. QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
  433. WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
  434. #else
  435. QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
  436. uint8_t macaddr[IEEE80211_ADDR_LEN],
  437. struct packet_enable_params *param);
  438. #endif
  439. QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl, uint8_t mac_id);
  440. QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
  441. struct suspend_params *param,
  442. uint8_t mac_id);
  443. QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
  444. uint8_t mac_id);
  445. QDF_STATUS
  446. wmi_unified_pdev_param_send(void *wmi_hdl,
  447. struct pdev_params *param,
  448. uint8_t mac_id);
  449. QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
  450. struct beacon_tmpl_params *param);
  451. QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
  452. struct beacon_params *param);
  453. QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
  454. struct peer_assoc_params *param);
  455. QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
  456. struct sta_ps_params *param);
  457. QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
  458. uint8_t macaddr[IEEE80211_ADDR_LEN],
  459. struct ap_ps_params *param);
  460. QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
  461. struct scan_req_params *param);
  462. QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
  463. struct scan_cancel_param *param);
  464. QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
  465. struct scan_chan_list_params *param);
  466. QDF_STATUS wmi_crash_inject(void *wmi_hdl,
  467. struct crash_inject *param);
  468. QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
  469. struct pdev_utf_params *param,
  470. uint8_t mac_id);
  471. #ifdef FEATURE_FW_LOG_PARSING
  472. QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
  473. struct dbglog_params *param);
  474. #else
  475. static inline QDF_STATUS
  476. wmi_unified_dbglog_cmd_send(void *wmi_hdl,
  477. struct dbglog_params *param)
  478. {
  479. return QDF_STATUS_SUCCESS;
  480. }
  481. #endif
  482. QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
  483. struct wmi_mgmt_params *param);
  484. QDF_STATUS wmi_offchan_data_tx_cmd_send(void *wmi_hdl,
  485. struct wmi_offchan_data_tx_params *param);
  486. QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
  487. uint32_t param_value);
  488. QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
  489. uint32_t vdev_id, uint8_t val);
  490. QDF_STATUS
  491. wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
  492. struct sta_uapsd_trig_params *param);
  493. QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
  494. QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
  495. struct p2p_ps_params *oppps);
  496. QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
  497. struct p2p_ps_params *noa);
  498. #ifdef CONVERGED_P2P_ENABLE
  499. #ifdef FEATURE_P2P_LISTEN_OFFLOAD
  500. QDF_STATUS wmi_unified_p2p_lo_start_cmd(void *wmi_hdl,
  501. struct p2p_lo_start *param);
  502. QDF_STATUS wmi_unified_p2p_lo_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
  503. #endif
  504. #endif
  505. QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
  506. int value);
  507. QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
  508. #ifdef WLAN_FEATURE_DSRC
  509. /**
  510. * wmi_unified_ocb_start_timing_advert() - start sending the timing
  511. * advertisement frames on a channel
  512. * @wmi_handle: pointer to the wmi handle
  513. * @timing_advert: pointer to the timing advertisement struct
  514. *
  515. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  516. */
  517. QDF_STATUS wmi_unified_ocb_start_timing_advert(struct wmi_unified *wmi_handle,
  518. struct ocb_timing_advert_param *timing_advert);
  519. /**
  520. * wmi_unified_ocb_stop_timing_advert() - stop sending the timing
  521. * advertisement frames on a channel
  522. * @wmi_handle: pointer to the wmi handle
  523. * @timing_advert: pointer to the timing advertisement struct
  524. *
  525. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  526. */
  527. QDF_STATUS wmi_unified_ocb_stop_timing_advert(struct wmi_unified *wmi_handle,
  528. struct ocb_timing_advert_param *timing_advert);
  529. /**
  530. * wmi_unified_ocb_set_config() - send the OCB config to the FW
  531. * @wmi_handle: pointer to the wmi handle
  532. * @config: the OCB configuration
  533. *
  534. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failures
  535. */
  536. QDF_STATUS wmi_unified_ocb_set_config(struct wmi_unified *wmi_handle,
  537. struct ocb_config *config);
  538. /**
  539. * wmi_unified_ocb_get_tsf_timer() - get ocb tsf timer val
  540. * @wmi_handle: pointer to the wmi handle
  541. * @req: request for tsf timer
  542. *
  543. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  544. */
  545. QDF_STATUS wmi_unified_ocb_get_tsf_timer(struct wmi_unified *wmi_handle,
  546. struct ocb_get_tsf_timer_param *req);
  547. /**
  548. * wmi_unified_ocb_set_utc_time_cmd() - get ocb tsf timer val
  549. * @wmi_handle: pointer to the wmi handle
  550. * @vdev_id: vdev id
  551. *
  552. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  553. */
  554. QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(struct wmi_unified *wmi_handle,
  555. struct ocb_utc_param *utc);
  556. /**
  557. * wmi_unified_dcc_get_stats_cmd() - get the DCC channel stats
  558. * @wmi_handle: pointer to the wmi handle
  559. * @get_stats_param: pointer to the dcc stats
  560. *
  561. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  562. */
  563. QDF_STATUS wmi_unified_dcc_get_stats_cmd(struct wmi_unified *wmi_handle,
  564. struct ocb_dcc_get_stats_param *get_stats_param);
  565. /**
  566. * wmi_unified_dcc_clear_stats() - command to clear the DCC stats
  567. * @wmi_handle: pointer to the wmi handle
  568. * @clear_stats_param: parameters to the command
  569. *
  570. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  571. */
  572. QDF_STATUS wmi_unified_dcc_clear_stats(struct wmi_unified *wmi_handle,
  573. struct ocb_dcc_clear_stats_param *clear_stats_param);
  574. /**
  575. * wmi_unified_dcc_update_ndl() - command to update the NDL data
  576. * @wmi_handle: pointer to the wmi handle
  577. * @update_ndl_param: pointer to the request parameters
  578. *
  579. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failures
  580. */
  581. QDF_STATUS wmi_unified_dcc_update_ndl(struct wmi_unified *wmi_handle,
  582. struct ocb_dcc_update_ndl_param *update_ndl_param);
  583. /**
  584. * wmi_extract_ocb_set_channel_config_resp() - extract status from wmi event
  585. * @wmi_handle: wmi handle
  586. * @evt_buf: pointer to event buffer
  587. * @status: status buffer
  588. *
  589. * Return: QDF_STATUS_SUCCESS on success
  590. */
  591. QDF_STATUS
  592. wmi_extract_ocb_set_channel_config_resp(struct wmi_unified *wmi_handle,
  593. void *evt_buf,
  594. uint32_t *status);
  595. /**
  596. * wmi_extract_ocb_tsf_timer() - extract tsf timer from wmi event
  597. * @wmi_handle: wmi handle
  598. * @evt_buf: pointer to event buffer
  599. * @resp: tsf timer
  600. *
  601. * Return: QDF_STATUS_SUCCESS on success
  602. */
  603. QDF_STATUS wmi_extract_ocb_tsf_timer(struct wmi_unified *wmi_handle,
  604. void *evt_buf,
  605. struct ocb_get_tsf_timer_response *resp);
  606. /**
  607. * wmi_extract_dcc_update_ndl_resp() - extract NDL update from wmi event
  608. * @wmi_handle: wmi handle
  609. * @evt_buf: pointer to event buffer
  610. * @resp: ndl update status
  611. *
  612. * Return: QDF_STATUS_SUCCESS on success
  613. */
  614. QDF_STATUS wmi_extract_dcc_update_ndl_resp(struct wmi_unified *wmi_handle,
  615. void *evt_buf, struct ocb_dcc_update_ndl_response *resp);
  616. /**
  617. * wmi_extract_dcc_stats() - extract DCC stats from wmi event
  618. * @wmi_handle: wmi handle
  619. * @evt_buf: pointer to event buffer
  620. * @resp: DCC stats
  621. *
  622. * Since length of the response is variable, response buffer will be allocated.
  623. * The caller must free the response buffer.
  624. *
  625. * Return: QDF_STATUS_SUCCESS on success
  626. */
  627. QDF_STATUS wmi_extract_dcc_stats(struct wmi_unified *wmi_handle,
  628. void *evt_buf,
  629. struct ocb_dcc_get_stats_response **response);
  630. #endif
  631. QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
  632. struct wmi_lro_config_cmd_t *wmi_lro_cmd);
  633. QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
  634. struct thermal_cmd_params *thermal_info);
  635. QDF_STATUS wmi_unified_peer_rate_report_cmd(void *wmi_hdl,
  636. struct wmi_peer_rate_report_params *rate_report_params);
  637. QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
  638. (void *wmi_hdl,
  639. uint32_t adapter_1_chan_freq,
  640. uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
  641. QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
  642. (void *wmi_hdl,
  643. uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
  644. QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
  645. void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
  646. uint32_t pdev_id);
  647. #ifdef CONFIG_MCL
  648. QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
  649. wmi_bcn_send_from_host_cmd_fixed_param *param);
  650. #endif
  651. QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
  652. uint8_t vdev_id, uint32_t max_retries,
  653. uint32_t retry_interval);
  654. QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
  655. struct sta_params *params);
  656. QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
  657. struct wmi_gtx_config *gtx_info);
  658. QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
  659. uint8_t vdev_id, bool mu_edca_param,
  660. struct wmi_host_wme_vparams wmm_vparams[WMI_MAX_NUM_AC]);
  661. QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
  662. uint8_t vdev_id,
  663. struct wmi_probe_resp_params *probe_rsp_info);
  664. QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
  665. struct set_key_params *key_params);
  666. #ifdef WLAN_FEATURE_DISA
  667. /**
  668. * wmi_unified_encrypt_decrypt_send_cmd() - send encryptdecrypt cmd to fw
  669. * @wmi_hdl: wmi handle
  670. * @params: encrypt/decrypt params
  671. *
  672. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  673. */
  674. QDF_STATUS wmi_unified_encrypt_decrypt_send_cmd(void *wmi_hdl,
  675. struct disa_encrypt_decrypt_req_params *params);
  676. /**
  677. * wmi_extract_encrypt_decrypt_resp_params() -
  678. * extract encrypt decrypt resp params from event buffer
  679. * @wmi_handle: wmi handle
  680. * @evt_buf: pointer to event buffer
  681. * @resp: encrypt decrypt resp params
  682. *
  683. * Return: QDF_STATUS_SUCCESS for success or error code
  684. */
  685. QDF_STATUS wmi_extract_encrypt_decrypt_resp_params(void *wmi_hdl,
  686. uint8_t *evt_buf,
  687. struct disa_encrypt_decrypt_resp_params *resp);
  688. #endif
  689. QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
  690. uint32_t vdev_id, uint8_t *p2p_ie);
  691. QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
  692. struct gateway_update_req_param *req);
  693. QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
  694. struct rssi_monitor_param *req);
  695. QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
  696. struct scan_mac_oui *psetoui);
  697. #ifdef CONFIG_MCL
  698. QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
  699. wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
  700. struct roam_offload_scan_params *roam_req);
  701. #endif
  702. /**
  703. * wmi_unified_roam_mawc_params_cmd() - configure roaming MAWC parameters
  704. * @wmi_hdl: wmi handle
  705. * @params: Parameters to be configured
  706. *
  707. * Pass the MAWC(Motion Aided wireless connectivity) related roaming
  708. * parameters from the host to the target
  709. *
  710. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  711. */
  712. QDF_STATUS wmi_unified_roam_mawc_params_cmd(void *wmi_hdl,
  713. struct wmi_mawc_roam_params *params);
  714. QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
  715. struct roam_offload_scan_rssi_params *roam_req);
  716. QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
  717. struct roam_scan_filter_params *roam_req);
  718. #ifdef IPA_OFFLOAD
  719. QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
  720. struct ipa_uc_offload_control_params *ipa_offload);
  721. #endif
  722. QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
  723. const struct plm_req_params *plm);
  724. QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
  725. const struct plm_req_params *plm,
  726. uint32_t *gchannel_list);
  727. QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
  728. #ifdef FEATURE_WLAN_SCAN_PNO
  729. QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
  730. struct pno_scan_req_params *pno);
  731. #endif
  732. QDF_STATUS wmi_unified_nlo_mawc_cmd(void *wmi_hdl,
  733. struct nlo_mawc_params *params);
  734. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  735. QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
  736. uint8_t is_add_ts);
  737. QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
  738. uint8_t vdev_id);
  739. #endif
  740. QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
  741. (void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
  742. uint8_t addr[IEEE80211_ADDR_LEN]);
  743. QDF_STATUS wmi_unified_process_ll_stats_set_cmd
  744. (void *wmi_hdl, const struct ll_stats_set_params *set_req);
  745. QDF_STATUS wmi_unified_process_ll_stats_get_cmd
  746. (void *wmi_hdl, const struct ll_stats_get_params *get_req,
  747. uint8_t addr[IEEE80211_ADDR_LEN]);
  748. /**
  749. * wmi_unified_congestion_request_cmd() - send request to fw to get CCA
  750. * @wmi_hdl: wma handle
  751. * @vdev_id: vdev id
  752. *
  753. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  754. */
  755. QDF_STATUS wmi_unified_congestion_request_cmd(void *wmi_hdl,
  756. uint8_t vdev_id);
  757. QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
  758. QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
  759. QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
  760. struct link_status_params *link_status);
  761. #ifdef CONFIG_MCL
  762. QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
  763. wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
  764. QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
  765. wmi_mac_addr peer_macaddr);
  766. #endif
  767. #ifdef WLAN_SUPPORT_GREEN_AP
  768. QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
  769. struct wlan_green_ap_egap_params *egap_params);
  770. #endif
  771. QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
  772. uint32_t cmd, uint32_t value1, uint32_t value2);
  773. QDF_STATUS wmi_unified_wow_timer_pattern_cmd(void *wmi_hdl, uint8_t vdev_id,
  774. uint32_t cookie, uint32_t time);
  775. QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
  776. /**
  777. * wmi_unified_set_latency_config_cmd()
  778. * @wmi_handle: wmi handle
  779. * @param: WLM parameters
  780. *
  781. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  782. */
  783. QDF_STATUS wmi_unified_wlm_latency_level_cmd(void *wmi_hdl,
  784. struct wlm_latency_level_param *param);
  785. QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
  786. #ifdef WLAN_FEATURE_CIF_CFR
  787. /**
  788. * wmi_unified_oem_dma_ring_cfg() - configure OEM DMA rings
  789. * @wmi_handle: wmi handle
  790. * @data_len: len of dma cfg req
  791. * @data: dma cfg req
  792. *
  793. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  794. */
  795. QDF_STATUS wmi_unified_oem_dma_ring_cfg(void *wmi_hdl,
  796. wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
  797. #endif
  798. /**
  799. * wmi_unified_dbr_ring_cfg: Configure direct buffer rx rings
  800. * @wmi_hdl: WMI handle
  801. * @cfg: pointer to direct buffer rx config request
  802. *
  803. * Return: QDF status of operation
  804. */
  805. QDF_STATUS wmi_unified_dbr_ring_cfg(void *wmi_hdl,
  806. struct direct_buf_rx_cfg_req *cfg);
  807. QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
  808. uint32_t data_len,
  809. uint8_t *data);
  810. QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
  811. bool dfs_phyerr_filter_offload);
  812. #ifdef CONFIG_MCL
  813. QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
  814. WMI_PKTLOG_EVENT pktlog_event,
  815. uint32_t cmd_id,
  816. uint8_t user_triggered);
  817. #endif
  818. QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
  819. uint8_t vdev_id);
  820. QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
  821. QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
  822. uint8_t ac);
  823. QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
  824. struct aggr_add_ts_param *aggr_qos_rsp_msg);
  825. QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
  826. struct add_ts_param *msg);
  827. QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
  828. struct periodic_tx_pattern *
  829. pAddPeriodicTxPtrnParams,
  830. uint8_t vdev_id);
  831. QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
  832. uint8_t vdev_id,
  833. uint8_t pattern_id);
  834. QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
  835. struct stats_ext_params *preq);
  836. QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
  837. struct ext_wow_params *params);
  838. QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
  839. struct app_type2_params *appType2Params);
  840. QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
  841. uint32_t timer_val);
  842. QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
  843. struct nan_req_params *nan_req);
  844. QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
  845. struct dhcp_offload_info_params *params);
  846. QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
  847. QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
  848. uint32_t reg_dmn, uint16_t regdmn2G,
  849. uint16_t regdmn5G, uint8_t ctl2G,
  850. uint8_t ctl5G);
  851. QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
  852. struct tdls_channel_switch_params *chan_switch_params);
  853. QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
  854. void *tdls_param, uint8_t tdls_state);
  855. QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
  856. struct tdls_peer_state_params *peerStateParams,
  857. uint32_t *ch_mhz);
  858. QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
  859. struct fw_dump_req_param *mem_dump_req);
  860. QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
  861. struct vdev_ie_info_param *ie_info);
  862. QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
  863. void *evt_buf);
  864. QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
  865. uint8_t *custom_addr);
  866. QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
  867. uint8_t *event,
  868. uint32_t len);
  869. QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
  870. struct wmi_wifi_start_log *start_log);
  871. QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
  872. QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
  873. struct wmi_pcl_chan_weights *msg);
  874. QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
  875. uint32_t hw_mode_index);
  876. QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
  877. struct policy_mgr_dual_mac_config *msg);
  878. QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
  879. struct flashing_req_params *flashing);
  880. QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
  881. struct app_type1_params *app_type1_params);
  882. QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
  883. struct ssid_hotlist_request_params *request);
  884. QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
  885. struct wmi_unit_test_cmd *wmi_utest);
  886. QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
  887. struct wmi_roam_invoke_cmd *roaminvoke,
  888. uint32_t ch_hz);
  889. QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
  890. uint32_t command, uint32_t vdev_id);
  891. #ifdef CONFIG_MCL
  892. QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
  893. struct ap_profile_params *ap_profile);
  894. #endif
  895. QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
  896. uint32_t scan_period,
  897. uint32_t scan_age,
  898. uint32_t vdev_id);
  899. QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
  900. uint8_t chan_count,
  901. uint32_t *chan_list,
  902. uint8_t list_type, uint32_t vdev_id);
  903. QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
  904. uint32_t vdev_id,
  905. int32_t rssi_change_thresh,
  906. uint32_t bcn_rssi_weight,
  907. uint32_t hirssi_delay_btw_scans);
  908. /**
  909. * wmi_unified_set_per_roam_config() - set PER roam config in FW
  910. * @wmi_hdl: wmi handle
  911. * @req_buf: per roam config request buffer
  912. *
  913. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  914. */
  915. QDF_STATUS wmi_unified_set_per_roam_config(void *wmi_hdl,
  916. struct wmi_per_roam_config_req *req_buf);
  917. #ifdef FEATURE_WLAN_APF
  918. /**
  919. * wmi_unified_set_active_apf_mode_cmd() - config active APF mode in FW
  920. * @wmi: the WMI handle
  921. * @vdev_id: the Id of the vdev to apply the configuration to
  922. * @ucast_mode: the active APF mode to configure for unicast packets
  923. * @mcast_bcast_mode: the active APF mode to configure for multicast/broadcast
  924. * packets
  925. */
  926. QDF_STATUS
  927. wmi_unified_set_active_apf_mode_cmd(wmi_unified_t wmi, uint8_t vdev_id,
  928. enum wmi_host_active_apf_mode ucast_mode,
  929. enum wmi_host_active_apf_mode
  930. mcast_bcast_mode);
  931. /**
  932. * wmi_unified_send_apf_enable_cmd() - send apf enable/disable cmd
  933. * @wmi: wmi handle
  934. * @vdev_id: VDEV id
  935. * @enable: true: enable, false: disable
  936. *
  937. * This function passes the apf enable command to fw
  938. *
  939. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  940. */
  941. QDF_STATUS wmi_unified_send_apf_enable_cmd(wmi_unified_t wmi,
  942. uint32_t vdev_id, bool enable);
  943. /**
  944. * wmi_unified_send_apf_write_work_memory_cmd() - send cmd to write into the APF
  945. * work memory.
  946. * @wmi: wmi handle
  947. * @write_params: parameters and buffer pointer for the write
  948. *
  949. * This function passes the write apf work mem command to fw
  950. *
  951. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  952. */
  953. QDF_STATUS wmi_unified_send_apf_write_work_memory_cmd(wmi_unified_t wmi,
  954. struct wmi_apf_write_memory_params *write_params);
  955. /**
  956. * wmi_unified_send_apf_read_work_memory_cmd() - send cmd to read part of APF
  957. * work memory
  958. * @wmi: wmi handle
  959. * @read_params: contains relative address and length to read from
  960. *
  961. * This function passes the read apf work mem command to fw
  962. *
  963. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  964. */
  965. QDF_STATUS wmi_unified_send_apf_read_work_memory_cmd(wmi_unified_t wmi,
  966. struct wmi_apf_read_memory_params *read_params);
  967. /**
  968. * wmi_extract_apf_read_memory_resp_event() - exctract read mem resp event
  969. * @wmi: wmi handle
  970. * @evt_buf: Pointer to the event buffer
  971. * @resp: pointer to memory to extract event parameters into
  972. *
  973. * This function exctracts read mem response event into the given structure ptr
  974. *
  975. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  976. */
  977. QDF_STATUS
  978. wmi_extract_apf_read_memory_resp_event(wmi_unified_t wmi, void *evt_buf,
  979. struct wmi_apf_read_memory_resp_event_params
  980. *read_mem_evt);
  981. #endif /* FEATURE_WLAN_APF */
  982. QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
  983. uint8_t macaddr[IEEE80211_ADDR_LEN],
  984. struct stats_request_params *param);
  985. QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
  986. uint32_t param);
  987. QDF_STATUS wmi_unified_set_bwf_cmd_send(void *wmi_hdl,
  988. struct set_bwf_params *param);
  989. QDF_STATUS wmi_send_get_user_position_cmd(void *wmi_hdl, uint32_t value);
  990. QDF_STATUS wmi_send_get_peer_mumimo_tx_count_cmd(void *wmi_hdl, uint32_t value);
  991. QDF_STATUS wmi_send_reset_peer_mumimo_tx_count_cmd(void *wmi_hdl,
  992. uint32_t value);
  993. QDF_STATUS wmi_send_pdev_caldata_version_check_cmd(void *wmi_hdl,
  994. uint32_t value);
  995. QDF_STATUS wmi_unified_send_btcoex_wlan_priority_cmd(void *wmi_hdl,
  996. struct btcoex_cfg_params *param);
  997. QDF_STATUS wmi_unified_send_btcoex_duty_cycle_cmd(void *wmi_hdl,
  998. struct btcoex_cfg_params *param);
  999. QDF_STATUS wmi_unified_send_coex_ver_cfg_cmd(void *wmi_hdl,
  1000. coex_ver_cfg_t *param);
  1001. QDF_STATUS wmi_unified_send_coex_config_cmd(void *wmi_hdl,
  1002. struct coex_config_params *param);
  1003. QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
  1004. struct fips_params *param);
  1005. QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
  1006. struct wlan_profile_params *param);
  1007. QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
  1008. struct wlan_profile_params *param);
  1009. QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
  1010. struct channel_param *param);
  1011. QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
  1012. struct ht_ie_params *param);
  1013. QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
  1014. struct vht_ie_params *param);
  1015. QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
  1016. struct wmm_update_params *param);
  1017. QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
  1018. struct ant_switch_tbl_params *param);
  1019. QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
  1020. struct ratepwr_table_params *param);
  1021. QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
  1022. QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
  1023. struct ctl_table_params *param);
  1024. QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
  1025. struct mimogain_table_params *param);
  1026. QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
  1027. struct ratepwr_chainmsk_params *param);
  1028. QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
  1029. struct macaddr_params *param);
  1030. QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
  1031. QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
  1032. QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
  1033. struct acparams_params *param);
  1034. QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
  1035. struct vap_dscp_tid_map_params *param);
  1036. QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
  1037. struct proxy_ast_reserve_params *param);
  1038. QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
  1039. struct pdev_qvit_params *param);
  1040. QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
  1041. struct mcast_group_update_params *param);
  1042. QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
  1043. struct peer_add_wds_entry_params *param);
  1044. QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
  1045. struct peer_del_wds_entry_params *param);
  1046. /**
  1047. * wmi_unified_set_bridge_mac_addr_cmd_send() - WMI set bridge mac addr cmd function
  1048. * @param wmi_hdl : handle to WMI.
  1049. * @param param : pointer to hold bridge mac addr param
  1050. *
  1051. * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1052. */
  1053. QDF_STATUS wmi_unified_set_bridge_mac_addr_cmd_send(void *wmi_hdl,
  1054. struct set_bridge_mac_addr_params *param);
  1055. QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
  1056. struct peer_update_wds_entry_params *param);
  1057. QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
  1058. QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
  1059. QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
  1060. QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
  1061. struct smart_ant_enable_params *param);
  1062. QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
  1063. struct smart_ant_rx_ant_params *param);
  1064. QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
  1065. uint8_t macaddr[IEEE80211_ADDR_LEN],
  1066. struct smart_ant_tx_ant_params *param);
  1067. QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
  1068. uint8_t macaddr[IEEE80211_ADDR_LEN],
  1069. struct smart_ant_training_info_params *param);
  1070. QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
  1071. uint8_t macaddr[IEEE80211_ADDR_LEN],
  1072. struct smart_ant_node_config_params *param);
  1073. QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
  1074. struct smart_ant_enable_tx_feedback_params *param);
  1075. QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
  1076. struct vdev_spectral_configure_params *param);
  1077. QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
  1078. struct vdev_spectral_enable_params *param);
  1079. QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
  1080. struct bss_chan_info_request_params *param);
  1081. QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
  1082. struct thermal_mitigation_params *param);
  1083. QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
  1084. uint8_t macaddr[IEEE80211_ADDR_LEN],
  1085. struct set_neighbour_rx_params *param);
  1086. QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
  1087. struct set_fwtest_params *param);
  1088. QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
  1089. struct config_ratemask_params *param);
  1090. /**
  1091. * wmi_unified_vdev_set_custom_aggr_size_cmd_send() - WMI set custom aggr
  1092. * size command
  1093. * @param wmi_hdl : handle to WMI.
  1094. * @param param : pointer to hold custom aggr size param
  1095. *
  1096. * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1097. */
  1098. QDF_STATUS wmi_unified_vdev_set_custom_aggr_size_cmd_send(void *wmi_hdl,
  1099. struct set_custom_aggr_size_params *param);
  1100. /**
  1101. * wmi_unified_vdev_set_qdepth_thresh_cmd_send() - WMI set qdepth threshold
  1102. * @param wmi_hdl : handle to WMI.
  1103. * @param param : pointer to hold set qdepth thresh param
  1104. *
  1105. * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1106. */
  1107. QDF_STATUS wmi_unified_vdev_set_qdepth_thresh_cmd_send(void *wmi_hdl,
  1108. struct set_qdepth_thresh_params *param);
  1109. QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
  1110. struct pdev_set_regdomain_params *param);
  1111. QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
  1112. struct set_quiet_mode_params *param);
  1113. QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
  1114. struct set_beacon_filter_params *param);
  1115. QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
  1116. struct remove_beacon_filter_params *param);
  1117. QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
  1118. uint8_t macaddr[IEEE80211_ADDR_LEN],
  1119. struct addba_clearresponse_params *param);
  1120. QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
  1121. uint8_t macaddr[IEEE80211_ADDR_LEN],
  1122. struct addba_send_params *param);
  1123. QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
  1124. uint8_t macaddr[IEEE80211_ADDR_LEN],
  1125. struct delba_send_params *param);
  1126. QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
  1127. uint8_t macaddr[IEEE80211_ADDR_LEN],
  1128. struct addba_setresponse_params *param);
  1129. QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
  1130. uint8_t macaddr[IEEE80211_ADDR_LEN],
  1131. struct singleamsdu_params *param);
  1132. QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
  1133. uint8_t macaddr[IEEE80211_ADDR_LEN],
  1134. struct set_qboost_params *param);
  1135. QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
  1136. struct mu_scan_params *param);
  1137. QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
  1138. struct lteu_config_params *param);
  1139. QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
  1140. struct set_ps_mode_params *param);
  1141. QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
  1142. struct wmi_init_cmd_param *param);
  1143. bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
  1144. /**
  1145. * wmi_save_service_bitmap() - save service bitmap
  1146. * @wmi_handle: wmi handle
  1147. * @param evt_buf: pointer to event buffer
  1148. *
  1149. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
  1150. */
  1151. QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf,
  1152. void *bitmap_buf);
  1153. /**
  1154. * wmi_save_ext_service_bitmap() - save extended service bitmap
  1155. * @wmi_handle: wmi handle
  1156. * @param evt_buf: pointer to event buffer
  1157. *
  1158. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
  1159. */
  1160. QDF_STATUS wmi_save_ext_service_bitmap(void *wmi_hdl, void *evt_buf,
  1161. void *bitmap_buf);
  1162. QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
  1163. QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
  1164. void *evt_buf,
  1165. struct wlan_psoc_target_capability_info *ev);
  1166. QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
  1167. struct wlan_psoc_hal_reg_capability *hal_reg_cap);
  1168. host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
  1169. void *evt_buf, uint8_t *num_entries);
  1170. uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
  1171. QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
  1172. void *ev, uint8_t *macaddr);
  1173. wmi_host_mac_addr *wmi_ready_extract_mac_addr_list(void *wmi_hdl, void *ev,
  1174. uint8_t *num_mac_addr);
  1175. /**
  1176. * wmi_extract_ready_params() - Extract data from ready event apart from
  1177. * status, macaddr and version.
  1178. * @wmi_handle: Pointer to WMI handle.
  1179. * @evt_buf: Pointer to Ready event buffer.
  1180. * @ev_param: Pointer to host defined struct to copy the data from event.
  1181. *
  1182. * Return: QDF_STATUS_SUCCESS on success.
  1183. */
  1184. QDF_STATUS wmi_extract_ready_event_params(void *wmi_hdl,
  1185. void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
  1186. QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
  1187. void *ev, struct wmi_host_fw_ver *fw_ver);
  1188. QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
  1189. void *ev, struct wmi_host_fw_abi_ver *fw_ver);
  1190. QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
  1191. uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
  1192. void *evt_b, uint32_t *len);
  1193. QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
  1194. wmi_host_ext_resource_config *ext_cfg);
  1195. QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl,
  1196. uint8_t mac_id);
  1197. QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
  1198. struct packet_power_info_params *param);
  1199. QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
  1200. struct gpio_config_params *param);
  1201. QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
  1202. struct gpio_output_params *param);
  1203. QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
  1204. struct rtt_meas_req_test_params *param);
  1205. QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
  1206. struct rtt_meas_req_params *param);
  1207. QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
  1208. struct rtt_keepalive_req_params *param);
  1209. QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
  1210. struct lci_set_params *param);
  1211. QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
  1212. struct lcr_set_params *param);
  1213. QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
  1214. struct periodic_chan_stats_params *param);
  1215. #ifdef WLAN_ATF_ENABLE
  1216. QDF_STATUS
  1217. wmi_unified_set_atf_cmd_send(void *wmi_hdl,
  1218. struct set_atf_params *param);
  1219. QDF_STATUS
  1220. wmi_send_atf_peer_request_cmd(void *wmi_hdl,
  1221. struct atf_peer_request_params *param);
  1222. QDF_STATUS
  1223. wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
  1224. struct atf_grouping_params *param);
  1225. QDF_STATUS
  1226. wmi_send_set_atf_group_ac_cmd(void *wmi_hdl,
  1227. struct atf_group_ac_params *param);
  1228. QDF_STATUS
  1229. wmi_extract_atf_peer_stats_ev(void *wmi_hdl, void *evt_buf,
  1230. wmi_host_atf_peer_stats_event *ev);
  1231. QDF_STATUS
  1232. wmi_extract_atf_token_info_ev(void *wmi_hdl, void *evt_buf, uint8_t idx,
  1233. wmi_host_atf_peer_stats_info *atf_token_info);
  1234. #endif
  1235. /* Extract APIs */
  1236. QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
  1237. void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
  1238. QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
  1239. void *evt_buf, struct wmi_host_dcs_interference_param *param);
  1240. QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
  1241. wmi_host_ath_dcs_cw_int *cw_int);
  1242. QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
  1243. wmi_host_dcs_im_tgt_stats_t *wlan_stat);
  1244. QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
  1245. struct wmi_host_fips_event_param *param);
  1246. QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
  1247. wmi_host_vdev_start_resp *vdev_rsp);
  1248. /**
  1249. * wmi_extract_vdev_delete_resp - api to extract vdev delete
  1250. * response event params
  1251. * @wmi_handle: wma handle
  1252. * @evt_buf: pointer to event buffer
  1253. * @delele_rsp: pointer to hold delete response from firmware
  1254. *
  1255. * Return: QDF_STATUS_SUCCESS for successful event parse
  1256. * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
  1257. */
  1258. QDF_STATUS wmi_extract_vdev_delete_resp(void *wmi_hdl, void *evt_buf,
  1259. struct wmi_host_vdev_delete_resp *delele_rsp);
  1260. QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
  1261. uint8_t idx, struct tbttoffset_params *tbtt_param);
  1262. QDF_STATUS wmi_extract_ext_tbttoffset_update_params(void *wmi_hdl,
  1263. void *evt_buf, uint8_t idx,
  1264. struct tbttoffset_params *tbtt_param);
  1265. QDF_STATUS wmi_extract_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
  1266. uint32_t *num_vdevs);
  1267. QDF_STATUS wmi_extract_ext_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
  1268. uint32_t *num_vdevs);
  1269. QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
  1270. struct mgmt_rx_event_params *hdr, uint8_t **bufp);
  1271. QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
  1272. uint32_t *vdev_id);
  1273. QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
  1274. wmi_host_roam_event *ev);
  1275. QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
  1276. struct scan_event *param);
  1277. #ifdef CONVERGED_TDLS_ENABLE
  1278. /**
  1279. * wmi_extract_vdev_tdls_ev_param - extract vdev tdls param from event
  1280. * @wmi_handle: wmi handle
  1281. * @param evt_buf: pointer to event buffer
  1282. * @param param: Pointer to hold vdev tdls param
  1283. *
  1284. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1285. */
  1286. QDF_STATUS wmi_extract_vdev_tdls_ev_param(void *wmi_hdl, void *evt_buf,
  1287. struct tdls_event_info *param);
  1288. #endif
  1289. QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
  1290. wmi_host_mu_report_event *param);
  1291. QDF_STATUS wmi_extract_mu_db_entry(void *wmi_hdl, void *evt_buf,
  1292. uint8_t idx, wmi_host_mu_db_entry *param);
  1293. QDF_STATUS wmi_extract_mumimo_tx_count_ev_param(void *wmi_hdl, void *evt_buf,
  1294. wmi_host_peer_txmu_cnt_event *param);
  1295. QDF_STATUS wmi_extract_peer_gid_userpos_list_ev_param(void *wmi_hdl,
  1296. void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
  1297. QDF_STATUS
  1298. wmi_extract_esp_estimate_ev_param(void *wmi_hdl, void *evt_buf,
  1299. struct esp_estimation_event *param);
  1300. QDF_STATUS wmi_extract_pdev_caldata_version_check_ev_param(void *wmi_hdl,
  1301. void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
  1302. QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
  1303. wmi_host_pdev_tpc_config_event *param);
  1304. QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
  1305. void *evt_buf, uint32_t *gpio_num);
  1306. QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
  1307. void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
  1308. QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
  1309. wmi_host_pdev_nfcal_power_all_channels_event *param);
  1310. QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
  1311. wmi_host_pdev_tpc_event *param);
  1312. QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
  1313. void *evt_buf,
  1314. wmi_host_pdev_generic_buffer_event *param);
  1315. QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
  1316. wmi_host_mgmt_tx_compl_event *param);
  1317. QDF_STATUS wmi_extract_offchan_data_tx_compl_param(void *wmi_hdl, void *evt_buf,
  1318. struct wmi_host_offchan_data_tx_compl_event *param);
  1319. QDF_STATUS wmi_extract_pdev_csa_switch_count_status(void *wmi_hdl,
  1320. void *evt_buf,
  1321. struct pdev_csa_switch_count_status *param);
  1322. QDF_STATUS wmi_extract_swba_num_vdevs(void *wmi_hdl, void *evt_buf,
  1323. uint32_t *num_vdevs);
  1324. QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
  1325. uint32_t idx, wmi_host_tim_info *tim_info);
  1326. QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
  1327. uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
  1328. #ifdef CONVERGED_P2P_ENABLE
  1329. QDF_STATUS wmi_extract_p2p_lo_stop_ev_param(void *wmi_hdl,
  1330. void *evt_buf, struct p2p_lo_event *param);
  1331. QDF_STATUS wmi_extract_p2p_noa_ev_param(void *wmi_hdl,
  1332. void *evt_buf, struct p2p_noa_info *param);
  1333. #endif
  1334. QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
  1335. void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
  1336. QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
  1337. wmi_host_peer_sta_kickout_event *ev);
  1338. QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
  1339. uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
  1340. QDF_STATUS wmi_extract_bcnflt_stats(void *wmi_hdl, void *evt_buf,
  1341. uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
  1342. QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
  1343. wmi_host_rtt_event_hdr *ev);
  1344. QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
  1345. wmi_host_rtt_meas_event *ev, uint8_t *hdump,
  1346. uint16_t hdump_len);
  1347. QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
  1348. wmi_host_rtt_error_report_event *ev);
  1349. QDF_STATUS wmi_extract_chan_stats(void *wmi_hdl, void *evt_buf,
  1350. uint32_t index, wmi_host_chan_stats *chan_stats);
  1351. QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
  1352. uint32_t *temp, uint32_t *level, uint32_t *pdev_id);
  1353. QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
  1354. uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
  1355. QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
  1356. uint16_t datalen, uint16_t *buf_offset,
  1357. wmi_host_phyerr_t *phyerr);
  1358. QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
  1359. uint16_t datalen, uint16_t *buf_offset,
  1360. wmi_host_phyerr_t *phyerr);
  1361. QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
  1362. uint16_t datalen, wmi_host_phyerr_t *phyerr);
  1363. QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
  1364. wmi_host_wlan_profile_ctx_t *profile_ctx);
  1365. QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
  1366. wmi_host_wlan_profile_t *profile_data);
  1367. QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
  1368. wmi_host_chan_info_event *chan_info);
  1369. QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
  1370. wmi_host_pdev_channel_hopping_event *ch_hopping);
  1371. QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
  1372. wmi_host_stats_event *stats_param);
  1373. QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
  1374. uint32_t index,
  1375. wmi_host_pdev_stats *pdev_stats);
  1376. QDF_STATUS wmi_extract_unit_test(void *wmi_hdl, void *evt_buf,
  1377. wmi_unit_test_event *unit_test, uint32_t maxspace);
  1378. QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
  1379. uint32_t index,
  1380. wmi_host_pdev_ext_stats *pdev_ext_stats);
  1381. QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
  1382. uint32_t index,
  1383. wmi_host_peer_extd_stats *peer_extd_stats);
  1384. QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
  1385. wmi_host_pdev_bss_chan_info_event *bss_chan_info);
  1386. QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
  1387. wmi_host_inst_stats_resp *inst_rssi_resp);
  1388. QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
  1389. uint32_t index, wmi_host_peer_stats *peer_stats);
  1390. QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
  1391. wmi_host_tx_data_traffic_ctrl_event *ev);
  1392. QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
  1393. uint32_t index, wmi_host_vdev_stats *vdev_stats);
  1394. QDF_STATUS wmi_extract_per_chain_rssi_stats(void *wmi_hdl, void *evt_buf,
  1395. uint32_t index, struct wmi_host_per_chain_rssi_stats *rssi_stats);
  1396. QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
  1397. uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
  1398. QDF_STATUS wmi_extract_bcn_stats(void *wmi_hdl, void *evt_buf,
  1399. uint32_t index, wmi_host_bcn_stats *vdev_bcn_stats);
  1400. /**
  1401. * wmi_extract_vdev_nac_rssi_stats() - extract NAC_RSSI stats from event
  1402. * @wmi_handle: wmi handle
  1403. * @param evt_buf: pointer to event buffer
  1404. * @param vdev_extd_stats: Pointer to hold nac rssi stats
  1405. *
  1406. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1407. */
  1408. QDF_STATUS wmi_extract_vdev_nac_rssi_stats(void *wmi_hdl, void *evt_buf,
  1409. struct wmi_host_vdev_nac_rssi_event *vdev_nac_rssi_stats);
  1410. QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
  1411. struct wmi_power_dbg_params *param);
  1412. QDF_STATUS wmi_unified_send_multiple_vdev_restart_req_cmd(void *wmi_hdl,
  1413. struct multiple_vdev_restart_params *param);
  1414. /**
  1415. * wmi_unified_send_sar_limit_cmd() - send sar limit cmd to fw
  1416. * @wmi_hdl: wmi handle
  1417. * @params: sar limit command params
  1418. *
  1419. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1420. */
  1421. QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
  1422. struct sar_limit_cmd_params *params);
  1423. /**
  1424. * wmi_unified_get_sar_limit_cmd() - request current SAR limits from FW
  1425. * @wmi_hdl: wmi handle
  1426. *
  1427. * Return: QDF_STATUS_SUCCESS for success or error code
  1428. */
  1429. QDF_STATUS wmi_unified_get_sar_limit_cmd(void *wmi_hdl);
  1430. /**
  1431. * wmi_unified_extract_sar_limit_event() - extract SAR limits from FW event
  1432. * @wmi_hdl: wmi handle
  1433. * @evt_buf: event buffer received from firmware
  1434. * @event: SAR limit event which is to be populated by data extracted from
  1435. * the @evt_buf buffer
  1436. *
  1437. * Return: QDF_STATUS_SUCCESS for success or error code
  1438. */
  1439. QDF_STATUS wmi_unified_extract_sar_limit_event(void *wmi_hdl,
  1440. uint8_t *evt_buf,
  1441. struct sar_limit_event *event);
  1442. /**
  1443. * wmi_unified_extract_sar2_result_event() - extract SAR limits from FW event
  1444. * @handle: wmi handle
  1445. * @event: event buffer received from firmware
  1446. * @len: length of the event buffer
  1447. *
  1448. * Return: QDF_STATUS_SUCCESS for success or error code
  1449. */
  1450. QDF_STATUS wmi_unified_extract_sar2_result_event(void *handle,
  1451. uint8_t *event, uint32_t len);
  1452. /**
  1453. * wmi_extract_sar_cap_service_ready_ext() - extract SAR cap from
  1454. * FW service ready event
  1455. * @wmi_hdl: wmi handle
  1456. * @evt_buf: event buffer received from firmware
  1457. * @ext_param: extended target info
  1458. *
  1459. * Return: QDF_STATUS_SUCCESS for success or error code
  1460. */
  1461. QDF_STATUS wmi_extract_sar_cap_service_ready_ext(
  1462. void *wmi_hdl,
  1463. uint8_t *evt_buf,
  1464. struct wlan_psoc_host_service_ext_param *ext_param);
  1465. QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
  1466. struct wmi_adaptive_dwelltime_params *
  1467. wmi_param);
  1468. QDF_STATUS wmi_unified_fw_test_cmd(void *wmi_hdl,
  1469. struct set_fwtest_params *wmi_fwtest);
  1470. QDF_STATUS wmi_unified_peer_rx_reorder_queue_setup_send(void *wmi_hdl,
  1471. struct rx_reorder_queue_setup_params *param);
  1472. QDF_STATUS wmi_unified_peer_rx_reorder_queue_remove_send(void *wmi_hdl,
  1473. struct rx_reorder_queue_remove_params *param);
  1474. QDF_STATUS wmi_extract_service_ready_ext(void *wmi_hdl, uint8_t *evt_buf,
  1475. struct wlan_psoc_host_service_ext_param *param);
  1476. QDF_STATUS wmi_extract_hw_mode_cap_service_ready_ext(
  1477. void *wmi_hdl,
  1478. uint8_t *evt_buf, uint8_t hw_mode_idx,
  1479. struct wlan_psoc_host_hw_mode_caps *param);
  1480. QDF_STATUS wmi_extract_mac_phy_cap_service_ready_ext(
  1481. void *wmi_hdl,
  1482. uint8_t *evt_buf,
  1483. uint8_t hw_mode_id,
  1484. uint8_t phy_id,
  1485. struct wlan_psoc_host_mac_phy_caps *param);
  1486. QDF_STATUS wmi_extract_reg_cap_service_ready_ext(
  1487. void *wmi_hdl,
  1488. uint8_t *evt_buf, uint8_t phy_idx,
  1489. struct wlan_psoc_host_hal_reg_capabilities_ext *param);
  1490. /**
  1491. * wmi_extract_dbr_ring_cap_service_ready_ext: Extract direct buffer rx
  1492. * capability received through
  1493. * extended service ready event
  1494. * @wmi_hdl: WMI handle
  1495. * @evt_buf: Event buffer
  1496. * @idx: Index of the module for which capability is received
  1497. * @param: Pointer to direct buffer rx ring cap struct
  1498. *
  1499. * Return: QDF status of operation
  1500. */
  1501. QDF_STATUS wmi_extract_dbr_ring_cap_service_ready_ext(
  1502. void *wmi_hdl,
  1503. uint8_t *evt_buf, uint8_t idx,
  1504. struct wlan_psoc_host_dbr_ring_caps *param);
  1505. /**
  1506. * wmi_extract_dbr_buf_release_fixed : Extract direct buffer rx fixed param
  1507. * from buffer release event
  1508. * @wmi_hdl: WMI handle
  1509. * @evt_buf: Event buffer
  1510. * @param: Pointer to direct buffer rx response struct
  1511. *
  1512. * Return: QDF status of operation
  1513. */
  1514. QDF_STATUS wmi_extract_dbr_buf_release_fixed(
  1515. void *wmi_hdl,
  1516. uint8_t *evt_buf,
  1517. struct direct_buf_rx_rsp *param);
  1518. /**
  1519. * wmi_extract_dbr_buf_release_entry: Extract direct buffer rx buffer tlv
  1520. *
  1521. * @wmi_hdl: WMI handle
  1522. * @evt_buf: Event buffer
  1523. * @idx: Index of the module for which capability is received
  1524. * @param: Pointer to direct buffer rx entry
  1525. *
  1526. * Return: QDF status of operation
  1527. */
  1528. QDF_STATUS wmi_extract_dbr_buf_release_entry(
  1529. void *wmi_hdl,
  1530. uint8_t *evt_buf, uint8_t idx,
  1531. struct direct_buf_rx_entry *param);
  1532. /**
  1533. * wmi_extract_dbr_buf_metadata: Extract direct buffer metadata
  1534. *
  1535. * @wmi_hdl: WMI handle
  1536. * @evt_buf: Event buffer
  1537. * @idx: Index of the module for which capability is received
  1538. * @param: Pointer to direct buffer metadata
  1539. *
  1540. * Return: QDF status of operation
  1541. */
  1542. QDF_STATUS wmi_extract_dbr_buf_metadata(
  1543. void *wmi_hdl,
  1544. uint8_t *evt_buf, uint8_t idx,
  1545. struct direct_buf_rx_metadata *param);
  1546. QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
  1547. uint8_t *evt_buf,
  1548. struct wmi_host_pdev_utf_event *param);
  1549. QDF_STATUS wmi_extract_pdev_qvit_event(void *wmi_hdl,
  1550. uint8_t *evt_buf,
  1551. struct wmi_host_pdev_qvit_event *param);
  1552. QDF_STATUS wmi_extract_peer_delete_response_event(void *wmi_hdl,
  1553. uint8_t *evt_buf,
  1554. struct wmi_host_peer_delete_response_event *param);
  1555. QDF_STATUS wmi_extract_chainmask_tables(void *wmi_hdl, uint8_t *evt_buf,
  1556. struct wlan_psoc_host_chainmask_table *chainmask_table);
  1557. /**
  1558. * wmi_unified_dfs_phyerr_offload_en_cmd() - enable dfs phyerr offload
  1559. * @wmi_handle: wmi handle
  1560. * @pdev_id: pdev id
  1561. *
  1562. * Return: QDF_STATUS
  1563. */
  1564. QDF_STATUS wmi_unified_dfs_phyerr_offload_en_cmd(void *wmi_hdl,
  1565. uint32_t pdev_id);
  1566. /**
  1567. * wmi_unified_dfs_phyerr_offload_dis_cmd() - disable dfs phyerr offload
  1568. * @wmi_handle: wmi handle
  1569. * @pdev_id: pdev id
  1570. *
  1571. * Return: QDF_STATUS
  1572. */
  1573. QDF_STATUS wmi_unified_dfs_phyerr_offload_dis_cmd(void *wmi_hdl,
  1574. uint32_t pdev_id);
  1575. QDF_STATUS wmi_unified_set_country_cmd_send(void *wmi_hdl,
  1576. struct set_country *param);
  1577. #ifdef WLAN_FEATURE_ACTION_OUI
  1578. /**
  1579. * wmi_unified_send_action_oui_cmd() - send action oui cmd to fw
  1580. * @wmi_hdl: wma handle
  1581. * @req: wmi action oui message to be send
  1582. *
  1583. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1584. */
  1585. QDF_STATUS
  1586. wmi_unified_send_action_oui_cmd(void *wmi_hdl,
  1587. struct action_oui_request *req);
  1588. #endif /* WLAN_FEATURE_ACTION_OUI */
  1589. /*
  1590. * wmi_unified_set_del_pmkid_cache() - set delete PMKID
  1591. * @wmi_hdl: wma handle
  1592. * @pmksa: pointer to pmk cache entry
  1593. *
  1594. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1595. */
  1596. QDF_STATUS wmi_unified_set_del_pmkid_cache(void *wmi_hdl,
  1597. struct wmi_unified_pmk_cache *pmksa);
  1598. #if defined(WLAN_FEATURE_FILS_SK)
  1599. /*
  1600. * wmi_unified_roam_send_hlp_cmd() -send HLP command info
  1601. * @wmi_hdl: wma handle
  1602. * @req_buf: Pointer to HLP params
  1603. *
  1604. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1605. */
  1606. QDF_STATUS wmi_unified_roam_send_hlp_cmd(void *wmi_hdl,
  1607. struct hlp_params *req_buf);
  1608. #endif
  1609. /**
  1610. * wmi_unified_send_request_get_rcpi_cmd() - command to request rcpi value
  1611. * @wmi_hdl: wma handle
  1612. * @get_rcpi_param: rcpi params
  1613. *
  1614. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1615. */
  1616. QDF_STATUS wmi_unified_send_request_get_rcpi_cmd(void *wmi_hdl,
  1617. struct rcpi_req *get_rcpi_param);
  1618. /**
  1619. * wmi_extract_rcpi_response_event - api to extract RCPI event params
  1620. * @wmi_handle: wma handle
  1621. * @evt_buf: pointer to event buffer
  1622. * @res: pointer to hold rcpi response from firmware
  1623. *
  1624. * Return: QDF_STATUS_SUCCESS for successful event parse
  1625. * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
  1626. */
  1627. QDF_STATUS wmi_extract_rcpi_response_event(void *wmi_hdl, void *evt_buf,
  1628. struct rcpi_res *res);
  1629. #ifdef WMI_INTERFACE_EVENT_LOGGING
  1630. void wmi_print_cmd_log(wmi_unified_t wmi, uint32_t count,
  1631. qdf_abstract_print *print, void *print_priv);
  1632. void wmi_print_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
  1633. qdf_abstract_print *print, void *print_priv);
  1634. void wmi_print_mgmt_cmd_log(wmi_unified_t wmi, uint32_t count,
  1635. qdf_abstract_print *print, void *print_priv);
  1636. void wmi_print_mgmt_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
  1637. qdf_abstract_print *print, void *print_priv);
  1638. void wmi_print_event_log(wmi_unified_t wmi, uint32_t count,
  1639. qdf_abstract_print *print, void *print_priv);
  1640. void wmi_print_rx_event_log(wmi_unified_t wmi, uint32_t count,
  1641. qdf_abstract_print *print, void *print_priv);
  1642. void wmi_print_mgmt_event_log(wmi_unified_t wmi, uint32_t count,
  1643. qdf_abstract_print *print, void *print_priv);
  1644. #endif /* WMI_INTERFACE_EVENT_LOGGING */
  1645. QDF_STATUS wmi_unified_send_dbs_scan_sel_params_cmd(void *wmi_hdl,
  1646. struct wmi_dbs_scan_sel_params *wmi_param);
  1647. QDF_STATUS wmi_unified_send_limit_off_chan_cmd(void *wmi_hdl,
  1648. struct wmi_limit_off_chan_param *wmi_param);
  1649. QDF_STATUS wmi_unified_set_arp_stats_req(void *wmi_hdl,
  1650. struct set_arp_stats *req_buf);
  1651. QDF_STATUS wmi_unified_get_arp_stats_req(void *wmi_hdl,
  1652. struct get_arp_stats *req_buf);
  1653. /**
  1654. * wmi_send_bcn_offload_control_cmd - send beacon ofload control cmd to fw
  1655. * @wmi_hdl: wmi handle
  1656. * @bcn_ctrl_param: pointer to bcn_offload_control param
  1657. *
  1658. * Return: QDF_STATUS_SUCCESS for success or error code
  1659. */
  1660. QDF_STATUS wmi_send_bcn_offload_control_cmd(void *wmi_hdl,
  1661. struct bcn_offload_control *bcn_ctrl_param);
  1662. /**
  1663. * wmi_unified_send_wds_entry_list_cmd() - WMI function to get list of
  1664. * wds entries from FW
  1665. * @wmi_hdl: wmi handle
  1666. *
  1667. * Send WMI_PDEV_WDS_ENTRY_LIST_CMDID parameters to fw.
  1668. *
  1669. * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
  1670. */
  1671. QDF_STATUS wmi_unified_send_dump_wds_table_cmd(void *wmi_hdl);
  1672. /**
  1673. * wmi_extract_wds_entry - api to extract wds entry
  1674. * @wmi_hdl: wmi handle
  1675. * @evt_buf: pointer to event buffer
  1676. * @wds_entry: wds entry
  1677. * @idx: index to point wds entry in event buffer
  1678. *
  1679. * Return: QDF_STATUS_SUCCESS for successful event parse
  1680. * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
  1681. */
  1682. QDF_STATUS wmi_extract_wds_entry(void *wmi_hdl, uint8_t *evt_buf,
  1683. struct wdsentry *wds_entry, u_int32_t idx);
  1684. #ifdef WLAN_FEATURE_NAN_CONVERGENCE
  1685. /**
  1686. * wmi_unified_ndp_initiator_req_cmd_send - api to send initiator request to FW
  1687. * @wmi_hdl: wmi handle
  1688. * @req: pointer to request buffer
  1689. *
  1690. * Return: status of operation
  1691. */
  1692. QDF_STATUS wmi_unified_ndp_initiator_req_cmd_send(void *wmi_hdl,
  1693. struct nan_datapath_initiator_req *req);
  1694. /**
  1695. * wmi_unified_ndp_responder_req_cmd_send - api to send responder request to FW
  1696. * @wmi_hdl: wmi handle
  1697. * @req: pointer to request buffer
  1698. *
  1699. * Return: status of operation
  1700. */
  1701. QDF_STATUS wmi_unified_ndp_responder_req_cmd_send(void *wmi_hdl,
  1702. struct nan_datapath_responder_req *req);
  1703. /**
  1704. * wmi_unified_ndp_end_req_cmd_send - api to send end request to FW
  1705. * @wmi_hdl: wmi handle
  1706. * @req: pointer to request buffer
  1707. *
  1708. * Return: status of operation
  1709. */
  1710. QDF_STATUS wmi_unified_ndp_end_req_cmd_send(void *wmi_hdl,
  1711. struct nan_datapath_end_req *req);
  1712. /**
  1713. * wmi_extract_ndp_initiator_rsp - api to extract initiator rsp from even buffer
  1714. * @wmi_hdl: wmi handle
  1715. * @data: event buffer
  1716. * @rsp: buffer to populate
  1717. *
  1718. * Return: status of operation
  1719. */
  1720. QDF_STATUS wmi_extract_ndp_initiator_rsp(wmi_unified_t wmi_handle,
  1721. uint8_t *data, struct nan_datapath_initiator_rsp *rsp);
  1722. /**
  1723. * wmi_extract_ndp_ind - api to extract ndp indication struct from even buffer
  1724. * @wmi_hdl: wmi handle
  1725. * @data: event buffer
  1726. * @ind: buffer to populate
  1727. *
  1728. * Return: status of operation
  1729. */
  1730. QDF_STATUS wmi_extract_ndp_ind(wmi_unified_t wmi_handle, uint8_t *data,
  1731. struct nan_datapath_indication_event *ind);
  1732. /**
  1733. * wmi_extract_ndp_confirm - api to extract ndp confim struct from even buffer
  1734. * @wmi_hdl: wmi handle
  1735. * @data: event buffer
  1736. * @ev: buffer to populate
  1737. *
  1738. * Return: status of operation
  1739. */
  1740. QDF_STATUS wmi_extract_ndp_confirm(wmi_unified_t wmi_handle, uint8_t *data,
  1741. struct nan_datapath_confirm_event *ev);
  1742. /**
  1743. * wmi_extract_ndp_responder_rsp - api to extract responder rsp from even buffer
  1744. * @wmi_hdl: wmi handle
  1745. * @data: event buffer
  1746. * @rsp: buffer to populate
  1747. *
  1748. * Return: status of operation
  1749. */
  1750. QDF_STATUS wmi_extract_ndp_responder_rsp(wmi_unified_t wmi_handle,
  1751. uint8_t *data, struct nan_datapath_responder_rsp *rsp);
  1752. /**
  1753. * wmi_extract_ndp_end_rsp - api to extract ndp end rsp from even buffer
  1754. * @wmi_hdl: wmi handle
  1755. * @data: event buffer
  1756. * @rsp: buffer to populate
  1757. *
  1758. * Return: status of operation
  1759. */
  1760. QDF_STATUS wmi_extract_ndp_end_rsp(wmi_unified_t wmi_handle, uint8_t *data,
  1761. struct nan_datapath_end_rsp_event *rsp);
  1762. /**
  1763. * wmi_extract_ndp_end_ind - api to extract ndp end indication from even buffer
  1764. * @wmi_hdl: wmi handle
  1765. * @data: event buffer
  1766. * @ind: buffer to populate
  1767. *
  1768. * Return: status of operation
  1769. */
  1770. QDF_STATUS wmi_extract_ndp_end_ind(wmi_unified_t wmi_handle, uint8_t *data,
  1771. struct nan_datapath_end_indication_event **ind);
  1772. /**
  1773. * wmi_extract_ndp_sch_update - api to extract ndp sch update from event buffer
  1774. * @wmi_hdl: wmi handle
  1775. * @data: event buffer
  1776. * @ind: buffer to populate
  1777. *
  1778. * Return: status of operation
  1779. */
  1780. QDF_STATUS wmi_extract_ndp_sch_update(wmi_unified_t wmi_handle, uint8_t *data,
  1781. struct nan_datapath_sch_update_event *ind);
  1782. #endif
  1783. /**
  1784. * wmi_unified_send_btm_config() - Send BTM config to fw
  1785. * @wmi_hdl: wmi handle
  1786. * @params: pointer to wmi_btm_config
  1787. *
  1788. * Return: QDF_STATUS
  1789. */
  1790. QDF_STATUS wmi_unified_send_btm_config(void *wmi_hdl,
  1791. struct wmi_btm_config *params);
  1792. /**
  1793. * wmi_unified_send_obss_detection_cfg_cmd() - WMI function to send obss
  1794. * detection configuration to FW.
  1795. * @wmi_hdl: wmi handle
  1796. * @cfg: obss detection configuration
  1797. *
  1798. * Send WMI_SAP_OBSS_DETECTION_CFG_CMDID parameters to fw.
  1799. *
  1800. * Return: QDF_STATUS
  1801. */
  1802. QDF_STATUS wmi_unified_send_obss_detection_cfg_cmd(void *wmi_hdl,
  1803. struct wmi_obss_detection_cfg_param *cfg);
  1804. /**
  1805. * wmi_unified_extract_obss_detection_info() - WMI function to extract obss
  1806. * detection info from FW.
  1807. * @wmi_hdl: wmi handle
  1808. * @data: event data from firmware
  1809. * @info: Pointer to hold obss detection info
  1810. *
  1811. * This function is used to extract obss info from firmware.
  1812. *
  1813. * Return: QDF_STATUS
  1814. */
  1815. QDF_STATUS wmi_unified_extract_obss_detection_info(void *wmi_hdl,
  1816. uint8_t *data,
  1817. struct wmi_obss_detect_info
  1818. *info);
  1819. /**
  1820. * wmi_unified_send_bss_color_change_enable_cmd() - WMI function to send bss
  1821. * color change enable to FW.
  1822. * @wmi_hdl: wmi handle
  1823. * @vdev_id: vdev ID
  1824. * @enable: enable or disable color change handeling within firmware
  1825. *
  1826. * Send WMI_BSS_COLOR_CHANGE_ENABLE_CMDID parameters to fw,
  1827. * thereby firmware updates bss color when AP announces bss color change.
  1828. *
  1829. * Return: QDF_STATUS
  1830. */
  1831. QDF_STATUS wmi_unified_send_bss_color_change_enable_cmd(void *wmi_hdl,
  1832. uint32_t vdev_id,
  1833. bool enable);
  1834. /**
  1835. * wmi_unified_send_obss_color_collision_cfg_cmd() - WMI function to send bss
  1836. * color collision detection configuration to FW.
  1837. * @wmi_hdl: wmi handle
  1838. * @cfg: obss color collision detection configuration
  1839. *
  1840. * Send WMI_OBSS_COLOR_COLLISION_DET_CONFIG_CMDID parameters to fw.
  1841. *
  1842. * Return: QDF_STATUS
  1843. */
  1844. QDF_STATUS wmi_unified_send_obss_color_collision_cfg_cmd(void *wmi_hdl,
  1845. struct wmi_obss_color_collision_cfg_param *cfg);
  1846. /**
  1847. * wmi_unified_extract_obss_color_collision_info() - WMI function to extract
  1848. * obss color collision info from FW.
  1849. * @wmi_hdl: wmi handle
  1850. * @data: event data from firmware
  1851. * @info: Pointer to hold bss color collision info
  1852. *
  1853. * This function is used to extract bss collision info from firmware.
  1854. *
  1855. * Return: QDF_STATUS
  1856. */
  1857. QDF_STATUS wmi_unified_extract_obss_color_collision_info(void *wmi_hdl,
  1858. uint8_t *data, struct wmi_obss_color_collision_info *info);
  1859. #ifdef WLAN_SUPPORT_GREEN_AP
  1860. QDF_STATUS wmi_extract_green_ap_egap_status_info(
  1861. void *wmi_hdl, uint8_t *evt_buf,
  1862. struct wlan_green_ap_egap_status_info *egap_status_info_params);
  1863. #endif
  1864. #ifdef WLAN_SUPPORT_FILS
  1865. /**
  1866. * wmi_unified_fils_vdev_config_send_cmd() - send FILS config cmd to fw
  1867. * @wmi_hdl: wmi handle
  1868. * @param: fils config params
  1869. *
  1870. * Return: QDF_STATUS_SUCCESS for success or error code
  1871. */
  1872. QDF_STATUS
  1873. wmi_unified_fils_vdev_config_send_cmd(void *wmi_hdl,
  1874. struct config_fils_params *param);
  1875. /**
  1876. * wmi_extract_swfda_vdev_id() - api to extract vdev id
  1877. * @wmi_hdl: wmi handle
  1878. * @evt_buf: pointer to event buffer
  1879. * @vdev_id: pointer to vdev id
  1880. *
  1881. * Return: QDF_STATUS_SUCCESS for success or error code
  1882. */
  1883. QDF_STATUS wmi_extract_swfda_vdev_id(void *wmi_hdl, void *evt_buf,
  1884. uint32_t *vdev_id);
  1885. /**
  1886. * wmi_unified_fils_discovery_send_cmd() - send FILS discovery cmd to fw
  1887. * @wmi_hdl: wmi handle
  1888. * @param: fils discovery params
  1889. *
  1890. * Return: QDF_STATUS_SUCCESS for success or error code
  1891. */
  1892. QDF_STATUS wmi_unified_fils_discovery_send_cmd(void *wmi_hdl,
  1893. struct fd_params *param);
  1894. #endif /* WLAN_SUPPORT_FILS */
  1895. /**
  1896. * wmi_unified_send_roam_scan_stats_cmd() - Wrapper to request roam scan stats
  1897. * @wmi_hdl: wmi handle
  1898. * @params: request params
  1899. *
  1900. * This function is used to send the roam scan stats request command to
  1901. * firmware.
  1902. *
  1903. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1904. */
  1905. QDF_STATUS
  1906. wmi_unified_send_roam_scan_stats_cmd(void *wmi_hdl,
  1907. struct wmi_roam_scan_stats_req *params);
  1908. /**
  1909. * wmi_extract_roam_scan_stats_res_evt() - API to extract roam scan stats res
  1910. * @wmi: wmi handle
  1911. * @evt_buf: pointer to the event buffer
  1912. * @vdev_id: output pointer to hold vdev id
  1913. * @res_param: output pointer to hold extracted memory
  1914. *
  1915. * Return: QDF_STATUS
  1916. */
  1917. QDF_STATUS
  1918. wmi_extract_roam_scan_stats_res_evt(wmi_unified_t wmi, void *evt_buf,
  1919. uint32_t *vdev_id,
  1920. struct wmi_roam_scan_stats_res **res_param);
  1921. /**
  1922. * wmi_unified_offload_11k_cmd() - send 11k offload command
  1923. * @wmi_hdl: wmi handle
  1924. * @params: 11k offload params
  1925. *
  1926. * This function passes the 11k offload command params to FW
  1927. *
  1928. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1929. */
  1930. QDF_STATUS wmi_unified_offload_11k_cmd(void *wmi_hdl,
  1931. struct wmi_11k_offload_params *params);
  1932. /**
  1933. * wmi_unified_invoke_neighbor_report_cmd() - send invoke neighbor report cmd
  1934. * @wmi_hdl: wmi handle
  1935. * @params: invoke neighbor report params
  1936. *
  1937. * This function passes the invoke neighbor report command to fw
  1938. *
  1939. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1940. */
  1941. QDF_STATUS wmi_unified_invoke_neighbor_report_cmd(void *wmi_hdl,
  1942. struct wmi_invoke_neighbor_report_params *params);
  1943. /* wmi_get_ch_width_from_phy_mode() - convert phy mode to channel width
  1944. * @wmi_hdl: wmi handle
  1945. * @phymode: phy mode
  1946. *
  1947. * Return: wmi channel width
  1948. */
  1949. wmi_host_channel_width wmi_get_ch_width_from_phy_mode(void *wmi_hdl,
  1950. WMI_HOST_WLAN_PHY_MODE phymode);
  1951. #ifdef QCA_SUPPORT_CP_STATS
  1952. /**
  1953. * wmi_extract_cca_stats() - api to extract congestion stats from event buffer
  1954. * @wmi_handle: wma handle
  1955. * @evt_buf: event buffer
  1956. * @datalen: length of buffer
  1957. * @stats: buffer to populated after stats extraction
  1958. *
  1959. * Return: status of operation
  1960. */
  1961. QDF_STATUS wmi_extract_cca_stats(wmi_unified_t wmi_handle, void *evt_buf,
  1962. struct wmi_host_congestion_stats *stats);
  1963. #endif /* QCA_SUPPORT_CP_STATS */
  1964. #if defined(WLAN_DFS_PARTIAL_OFFLOAD) && defined(HOST_DFS_SPOOF_TEST)
  1965. /**
  1966. * wmi_unified_dfs_send_avg_params_cmd() - send average radar parameters cmd.
  1967. * @wmi_hdl: wmi handle
  1968. * @params: radar found params
  1969. *
  1970. * This function passes the average radar parameters to fw
  1971. *
  1972. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1973. */
  1974. QDF_STATUS
  1975. wmi_unified_dfs_send_avg_params_cmd(void *wmi_hdl,
  1976. struct dfs_radar_found_params *params);
  1977. /**
  1978. * wmi_extract_dfs_status_from_fw() - extract host dfs status from fw.
  1979. * @wmi_hdl: wmi handle
  1980. * @evt_buf: pointer to event buffer
  1981. * @dfs_status_check: pointer to the host dfs status
  1982. *
  1983. * This function extracts the result of host dfs from fw
  1984. *
  1985. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1986. */
  1987. QDF_STATUS wmi_extract_dfs_status_from_fw(void *wmi_hdl, void *evt_buf,
  1988. uint32_t *dfs_status_check);
  1989. #endif
  1990. #ifdef OL_ATH_SMART_LOGGING
  1991. /**
  1992. * wmi_unified_send_smart_logging_enable_cmd() - send smart logging enable cmd
  1993. * @wmi_hdl: wmi handle
  1994. * @params: enable/disable
  1995. *
  1996. * This function enables/disable the smart logging feature
  1997. *
  1998. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  1999. */
  2000. QDF_STATUS wmi_unified_send_smart_logging_enable_cmd(void *wmi_hdl,
  2001. uint32_t param);
  2002. /**
  2003. * wmi_unified_send_smart_logging_fatal_cmd() - send smart logging fatal cmd
  2004. * @wmi_hdl: wmi handle
  2005. * @param: Fatal event
  2006. *
  2007. * This function sends the smart log fatal events to the FW
  2008. *
  2009. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  2010. */
  2011. QDF_STATUS wmi_unified_send_smart_logging_fatal_cmd
  2012. (void *wmi_hdl,
  2013. struct wmi_debug_fatal_events *param);
  2014. /**
  2015. * wmi_extract_smartlog_ev() - extract smartlog event info from event
  2016. * @wmi_handle: wmi handle
  2017. * @param evt_buf: pointer to event buffer
  2018. * @param ev: Pointer to hold fatal events
  2019. *
  2020. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  2021. */
  2022. QDF_STATUS wmi_extract_smartlog_ev
  2023. (void *wmi_hdl, void *evt_buf,
  2024. struct wmi_debug_fatal_events *ev);
  2025. #endif /* OL_ATH_SMART_LOGGING */
  2026. void wmi_process_fw_event_worker_thread_ctx(struct wmi_unified *wmi_handle,
  2027. HTC_PACKET * htc_packet);
  2028. #ifdef OBSS_PD
  2029. /**
  2030. * wmi_extract_smartlog_ev() - extract smartlog event info from event
  2031. * @wmi_handle: wmi handle
  2032. * @param evt_buf: pointer to event buffer
  2033. * @param ev: Pointer to hold fatal events
  2034. *
  2035. * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
  2036. */
  2037. QDF_STATUS wmi_unified_send_obss_spatial_reuse_set_cmd(void *wmi_handle,
  2038. struct wmi_host_obss_spatial_reuse_set_param *obss_spatial_reuse_param);
  2039. #endif /* OBSS_PD */
  2040. #endif /* _WMI_UNIFIED_API_H_ */