wmi_unified_api.h 75 KB

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