wmi_unified_api.h 72 KB

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