wmi_unified_api.h 70 KB

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