wmi_unified_api.h 68 KB

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