wmi_unified_priv.h 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325
  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
  20. * Module Interface (WMI).
  21. */
  22. #ifndef _WMI_UNIFIED_PRIV_H_
  23. #define _WMI_UNIFIED_PRIV_H_
  24. #include <osdep.h>
  25. #include "wmi_unified_api.h"
  26. #include "wmi_unified_param.h"
  27. #include "wlan_scan_ucfg_api.h"
  28. #ifdef CONFIG_MCL
  29. #include <wmi_unified.h>
  30. #endif
  31. #include "qdf_atomic.h"
  32. #include <wbuff.h>
  33. #ifdef DFS_COMPONENT_ENABLE
  34. #include <wlan_dfs_public_struct.h>
  35. #endif
  36. #include <qdf_threads.h>
  37. #ifdef WLAN_SUPPORT_GREEN_AP
  38. #include "wlan_green_ap_api.h"
  39. #endif
  40. #ifdef WLAN_FEATURE_NAN_CONVERGENCE
  41. #include "nan_public_structs.h"
  42. #endif
  43. #ifdef WLAN_SUPPORT_TWT
  44. #include "wmi_unified_twt_param.h"
  45. #endif
  46. #ifdef WMI_SMART_ANT_SUPPORT
  47. #include "wmi_unified_smart_ant_param.h"
  48. #endif
  49. #ifdef WMI_DBR_SUPPORT
  50. #include "wmi_unified_dbr_param.h"
  51. #endif
  52. #ifdef WMI_ATF_SUPPORT
  53. #include "wmi_unified_atf_param.h"
  54. #endif
  55. #define WMI_UNIFIED_MAX_EVENT 0x100
  56. #ifdef WMI_EXT_DBG
  57. #define WMI_EXT_DBG_DIR "WMI_EXT_DBG"
  58. #define WMI_EXT_DBG_FILE "wmi_log"
  59. #define WMI_EXT_DBG_FILE_PERM (QDF_FILE_USR_READ | \
  60. QDF_FILE_GRP_READ | \
  61. QDF_FILE_OTH_READ)
  62. #define WMI_EXT_DBG_QUEUE_SIZE 1024
  63. #define WMI_EXT_DBG_DUMP_ROW_SIZE 16
  64. #define WMI_EXT_DBG_DUMP_GROUP_SIZE 1
  65. /**
  66. * enum WMI_MSG_TYPE - WMI message types
  67. * @ WMI_MSG_TYPE_CMD - Message is of type WMI command
  68. * @ WMI_MSG_TYPE_EVENT - Message is of type WMI event
  69. */
  70. enum WMI_MSG_TYPE {
  71. WMI_MSG_TYPE_CMD = 0,
  72. WMI_MSG_TYPE_EVENT,
  73. };
  74. /**
  75. * struct wmi_ext_dbg_msg - WMI command/event msg details
  76. * @ node - qdf list node of wmi messages
  77. * @ len - command/event message length
  78. * @ ts - Time of WMI command/event handling
  79. * @ WMI_MSG_TYPE - message type
  80. * @ bug - command/event buffer
  81. */
  82. struct wmi_ext_dbg_msg {
  83. qdf_list_node_t node;
  84. uint32_t len;
  85. uint64_t ts;
  86. enum WMI_MSG_TYPE type;
  87. uint8_t buf[0];
  88. };
  89. #endif /*WMI_EXT_DBG */
  90. #ifdef WMI_INTERFACE_EVENT_LOGGING
  91. #ifndef WMI_EVENT_DEBUG_MAX_ENTRY
  92. #define WMI_EVENT_DEBUG_MAX_ENTRY (1024)
  93. #endif
  94. #define WMI_EVENT_DEBUG_ENTRY_MAX_LENGTH (16)
  95. /* wmi_mgmt commands */
  96. #ifndef WMI_MGMT_EVENT_DEBUG_MAX_ENTRY
  97. #define WMI_MGMT_EVENT_DEBUG_MAX_ENTRY (256)
  98. #endif
  99. /* wmi diag rx events max buffer */
  100. #ifndef WMI_DIAG_RX_EVENT_DEBUG_MAX_ENTRY
  101. #define WMI_DIAG_RX_EVENT_DEBUG_MAX_ENTRY (256)
  102. #endif
  103. #define wmi_alert(params...) QDF_TRACE_FATAL(QDF_MODULE_ID_WMI, ## params)
  104. #define wmi_err(params...) QDF_TRACE_ERROR(QDF_MODULE_ID_WMI, ## params)
  105. #define wmi_warn(params...) QDF_TRACE_WARN(QDF_MODULE_ID_WMI, ## params)
  106. #define wmi_info(params...) QDF_TRACE_INFO(QDF_MODULE_ID_WMI, ## params)
  107. #define wmi_debug(params...) QDF_TRACE_DEBUG(QDF_MODULE_ID_WMI, ## params)
  108. #define wmi_nofl_alert(params...) \
  109. QDF_TRACE_FATAL_NO_FL(QDF_MODULE_ID_WMI, ## params)
  110. #define wmi_nofl_err(params...) \
  111. QDF_TRACE_ERROR_NO_FL(QDF_MODULE_ID_WMI, ## params)
  112. #define wmi_nofl_warn(params...) \
  113. QDF_TRACE_WARN_NO_FL(QDF_MODULE_ID_WMI, ## params)
  114. #define wmi_nofl_info(params...) \
  115. QDF_TRACE_INFO_NO_FL(QDF_MODULE_ID_WMI, ## params)
  116. #define wmi_nofl_debug(params...) \
  117. QDF_TRACE_DEBUG_NO_FL(QDF_MODULE_ID_WMI, ## params)
  118. #define wmi_alert_rl(params...) QDF_TRACE_FATAL_RL(QDF_MODULE_ID_WMI, params)
  119. #define wmi_err_rl(params...) QDF_TRACE_ERROR_RL(QDF_MODULE_ID_WMI, params)
  120. #define wmi_warn_rl(params...) QDF_TRACE_WARN_RL(QDF_MODULE_ID_WMI, params)
  121. #define wmi_info_rl(params...) QDF_TRACE_INFO_RL(QDF_MODULE_ID_WMI, params)
  122. #define wmi_debug_rl(params...) QDF_TRACE_DEBUG_RL(QDF_MODULE_ID_WMI, params)
  123. /**
  124. * struct wmi_command_debug - WMI command log buffer data type
  125. * @ command - Store WMI Command id
  126. * @ data - Stores WMI command data
  127. * @ time - Time of WMI command handling
  128. */
  129. struct wmi_command_debug {
  130. uint32_t command;
  131. /*16 bytes of WMI cmd excluding TLV and WMI headers */
  132. uint32_t data[WMI_EVENT_DEBUG_ENTRY_MAX_LENGTH/sizeof(uint32_t)];
  133. uint64_t time;
  134. };
  135. /**
  136. * struct wmi_event_debug - WMI event log buffer data type
  137. * @ command - Store WMI Event id
  138. * @ data - Stores WMI Event data
  139. * @ time - Time of WMI Event handling
  140. */
  141. struct wmi_event_debug {
  142. uint32_t event;
  143. /*16 bytes of WMI event data excluding TLV header */
  144. uint32_t data[WMI_EVENT_DEBUG_ENTRY_MAX_LENGTH/sizeof(uint32_t)];
  145. uint64_t time;
  146. };
  147. /**
  148. * struct wmi_command_header - Type for accessing frame data
  149. * @ type - 802.11 Frame type
  150. * @ subType - 802.11 Frame subtype
  151. * @ protVer - 802.11 Version
  152. */
  153. struct wmi_command_header {
  154. #ifndef ANI_LITTLE_BIT_ENDIAN
  155. uint32_t sub_type:4;
  156. uint32_t type:2;
  157. uint32_t prot_ver:2;
  158. #else
  159. uint32_t prot_ver:2;
  160. uint32_t type:2;
  161. uint32_t sub_type:4;
  162. #endif
  163. };
  164. /**
  165. * struct wmi_log_buf_t - WMI log buffer information type
  166. * @buf - Refernce to WMI log buffer
  167. * @ length - length of buffer
  168. * @ buf_tail_idx - Tail index of buffer
  169. * @ p_buf_tail_idx - refernce to buffer tail index. It is added to accommodate
  170. * unified design since MCL uses global variable for buffer tail index
  171. * @ size - the size of the buffer in number of entries
  172. */
  173. struct wmi_log_buf_t {
  174. void *buf;
  175. uint32_t length;
  176. uint32_t buf_tail_idx;
  177. uint32_t *p_buf_tail_idx;
  178. uint32_t size;
  179. };
  180. /**
  181. * struct wmi_debug_log_info - Meta data to hold information of all buffers
  182. * used for WMI logging
  183. * @wmi_command_log_buf_info - Buffer info for WMI Command log
  184. * @wmi_command_tx_cmp_log_buf_info - Buffer info for WMI Command Tx completion
  185. * log
  186. * @wmi_event_log_buf_info - Buffer info for WMI Event log
  187. * @wmi_rx_event_log_buf_info - Buffer info for WMI event received log
  188. * @wmi_mgmt_command_log_buf_info - Buffer info for WMI Management Command log
  189. * @wmi_mgmt_command_tx_cmp_log_buf_info - Buffer info for WMI Management
  190. * Command Tx completion log
  191. * @wmi_mgmt_event_log_buf_info - Buffer info for WMI Management event log
  192. * @wmi_diag_event_log_buf_info - Buffer info for WMI diag event log
  193. * @wmi_record_lock - Lock WMI recording
  194. * @wmi_logging_enable - Enable/Disable state for WMI logging
  195. * @wmi_id_to_name - Function refernce to API to convert Command id to
  196. * string name
  197. * @wmi_log_debugfs_dir - refernce to debugfs directory
  198. */
  199. struct wmi_debug_log_info {
  200. struct wmi_log_buf_t wmi_command_log_buf_info;
  201. struct wmi_log_buf_t wmi_command_tx_cmp_log_buf_info;
  202. struct wmi_log_buf_t wmi_event_log_buf_info;
  203. struct wmi_log_buf_t wmi_rx_event_log_buf_info;
  204. struct wmi_log_buf_t wmi_mgmt_command_log_buf_info;
  205. struct wmi_log_buf_t wmi_mgmt_command_tx_cmp_log_buf_info;
  206. struct wmi_log_buf_t wmi_mgmt_event_log_buf_info;
  207. struct wmi_log_buf_t wmi_diag_event_log_buf_info;
  208. qdf_spinlock_t wmi_record_lock;
  209. bool wmi_logging_enable;
  210. struct dentry *wmi_log_debugfs_dir;
  211. };
  212. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  213. #ifdef WLAN_OPEN_SOURCE
  214. struct fwdebug {
  215. struct sk_buff_head fwlog_queue;
  216. struct completion fwlog_completion;
  217. A_BOOL fwlog_open;
  218. };
  219. #endif /* WLAN_OPEN_SOURCE */
  220. /**
  221. * struct wmi_wq_dbg_info - WMI WQ debug info
  222. * @ wd_msg_type_id - wmi event id
  223. * @ wmi_wq - WMI workqueue struct
  224. * @ task - WMI workqueue task struct
  225. */
  226. struct wmi_wq_dbg_info {
  227. uint32_t wd_msg_type_id;
  228. qdf_workqueue_t *wmi_wq;
  229. qdf_thread_t *task;
  230. };
  231. struct wmi_ops {
  232. QDF_STATUS (*send_vdev_create_cmd)(wmi_unified_t wmi_handle,
  233. uint8_t macaddr[IEEE80211_ADDR_LEN],
  234. struct vdev_create_params *param);
  235. QDF_STATUS (*send_vdev_delete_cmd)(wmi_unified_t wmi_handle,
  236. uint8_t if_id);
  237. QDF_STATUS (*send_vdev_stop_cmd)(wmi_unified_t wmi,
  238. uint8_t vdev_id);
  239. QDF_STATUS (*send_vdev_down_cmd)(wmi_unified_t wmi,
  240. uint8_t vdev_id);
  241. QDF_STATUS (*send_vdev_start_cmd)(wmi_unified_t wmi,
  242. struct vdev_start_params *req);
  243. QDF_STATUS (*send_vdev_set_nac_rssi_cmd)(wmi_unified_t wmi,
  244. struct vdev_scan_nac_rssi_params *req);
  245. QDF_STATUS (*send_hidden_ssid_vdev_restart_cmd)(wmi_unified_t wmi_handle,
  246. struct hidden_ssid_vdev_restart_params *restart_params);
  247. QDF_STATUS (*send_peer_flush_tids_cmd)(wmi_unified_t wmi,
  248. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  249. struct peer_flush_params *param);
  250. QDF_STATUS (*send_peer_delete_cmd)(wmi_unified_t wmi,
  251. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  252. uint8_t vdev_id);
  253. QDF_STATUS (*send_peer_param_cmd)(wmi_unified_t wmi,
  254. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  255. struct peer_set_params *param);
  256. QDF_STATUS (*send_vdev_up_cmd)(wmi_unified_t wmi,
  257. uint8_t bssid[IEEE80211_ADDR_LEN],
  258. struct vdev_up_params *params);
  259. QDF_STATUS (*send_peer_create_cmd)(wmi_unified_t wmi,
  260. struct peer_create_params *param);
  261. #ifdef WLAN_SUPPORT_GREEN_AP
  262. QDF_STATUS (*send_green_ap_ps_cmd)(wmi_unified_t wmi_handle,
  263. uint32_t value, uint8_t pdev_id);
  264. QDF_STATUS (*extract_green_ap_egap_status_info)(
  265. uint8_t *evt_buf,
  266. struct wlan_green_ap_egap_status_info *egap_status_info_params);
  267. #endif
  268. QDF_STATUS
  269. (*send_pdev_utf_cmd)(wmi_unified_t wmi_handle,
  270. struct pdev_utf_params *param,
  271. uint8_t mac_id);
  272. QDF_STATUS
  273. (*send_pdev_param_cmd)(wmi_unified_t wmi_handle,
  274. struct pdev_params *param,
  275. uint8_t mac_id);
  276. QDF_STATUS (*send_suspend_cmd)(wmi_unified_t wmi_handle,
  277. struct suspend_params *param,
  278. uint8_t mac_id);
  279. QDF_STATUS (*send_resume_cmd)(wmi_unified_t wmi_handle,
  280. uint8_t mac_id);
  281. #ifdef FEATURE_WLAN_D0WOW
  282. QDF_STATUS (*send_d0wow_enable_cmd)(wmi_unified_t wmi_handle,
  283. uint8_t mac_id);
  284. QDF_STATUS (*send_d0wow_disable_cmd)(wmi_unified_t wmi_handle,
  285. uint8_t mac_id);
  286. #endif
  287. QDF_STATUS (*send_wow_enable_cmd)(wmi_unified_t wmi_handle,
  288. struct wow_cmd_params *param,
  289. uint8_t mac_id);
  290. QDF_STATUS (*send_set_ap_ps_param_cmd)(wmi_unified_t wmi_handle,
  291. uint8_t *peer_addr,
  292. struct ap_ps_params *param);
  293. QDF_STATUS (*send_set_sta_ps_param_cmd)(wmi_unified_t wmi_handle,
  294. struct sta_ps_params *param);
  295. QDF_STATUS (*send_crash_inject_cmd)(wmi_unified_t wmi_handle,
  296. struct crash_inject *param);
  297. QDF_STATUS
  298. (*send_dbglog_cmd)(wmi_unified_t wmi_handle,
  299. struct dbglog_params *dbglog_param);
  300. QDF_STATUS (*send_vdev_set_param_cmd)(wmi_unified_t wmi_handle,
  301. struct vdev_set_params *param);
  302. QDF_STATUS (*send_vdev_sifs_trigger_cmd)(wmi_unified_t wmi_handle,
  303. struct sifs_trigger_param *param);
  304. QDF_STATUS (*send_stats_request_cmd)(wmi_unified_t wmi_handle,
  305. uint8_t macaddr[IEEE80211_ADDR_LEN],
  306. struct stats_request_params *param);
  307. #ifdef CONFIG_WIN
  308. QDF_STATUS (*send_packet_log_enable_cmd)(wmi_unified_t wmi_handle,
  309. WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
  310. #else
  311. QDF_STATUS (*send_packet_log_enable_cmd)(wmi_unified_t wmi_handle,
  312. uint8_t macaddr[IEEE80211_ADDR_LEN],
  313. struct packet_enable_params *param);
  314. #endif
  315. QDF_STATUS (*send_packet_log_disable_cmd)(wmi_unified_t wmi_handle,
  316. uint8_t mac_id);
  317. QDF_STATUS (*send_beacon_send_cmd)(wmi_unified_t wmi_handle,
  318. struct beacon_params *param);
  319. QDF_STATUS (*send_beacon_tmpl_send_cmd)(wmi_unified_t wmi_handle,
  320. struct beacon_tmpl_params *param);
  321. QDF_STATUS (*send_peer_assoc_cmd)(wmi_unified_t wmi_handle,
  322. struct peer_assoc_params *param);
  323. QDF_STATUS (*send_scan_start_cmd)(wmi_unified_t wmi_handle,
  324. struct scan_req_params *param);
  325. QDF_STATUS (*send_scan_stop_cmd)(wmi_unified_t wmi_handle,
  326. struct scan_cancel_param *param);
  327. QDF_STATUS (*send_scan_chan_list_cmd)(wmi_unified_t wmi_handle,
  328. struct scan_chan_list_params *param);
  329. QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
  330. struct wmi_mgmt_params *param);
  331. QDF_STATUS (*send_offchan_data_tx_cmd)(wmi_unified_t wmi_handle,
  332. struct wmi_offchan_data_tx_params *param);
  333. QDF_STATUS (*send_modem_power_state_cmd)(wmi_unified_t wmi_handle,
  334. uint32_t param_value);
  335. QDF_STATUS (*send_set_sta_ps_mode_cmd)(wmi_unified_t wmi_handle,
  336. uint32_t vdev_id, uint8_t val);
  337. QDF_STATUS (*send_get_temperature_cmd)(wmi_unified_t wmi_handle);
  338. #ifdef CONVERGED_P2P_ENABLE
  339. QDF_STATUS (*send_set_p2pgo_oppps_req_cmd)(wmi_unified_t wmi_handle,
  340. struct p2p_ps_params *oppps);
  341. QDF_STATUS (*send_set_p2pgo_noa_req_cmd)(wmi_unified_t wmi_handle,
  342. struct p2p_ps_params *noa);
  343. #ifdef FEATURE_P2P_LISTEN_OFFLOAD
  344. QDF_STATUS (*send_p2p_lo_start_cmd)(wmi_unified_t wmi_handle,
  345. struct p2p_lo_start *param);
  346. QDF_STATUS (*send_p2p_lo_stop_cmd)(wmi_unified_t wmi_handle,
  347. uint8_t vdev_id);
  348. #endif /* FEATURE_P2P_LISTEN_OFFLOAD */
  349. #endif /* CONVERGED_P2P_ENABLE */
  350. QDF_STATUS (*send_set_smps_params_cmd)(wmi_unified_t wmi_handle,
  351. uint8_t vdev_id,
  352. int value);
  353. QDF_STATUS (*send_set_mimops_cmd)(wmi_unified_t wmi_handle,
  354. uint8_t vdev_id, int value);
  355. QDF_STATUS (*send_set_sta_uapsd_auto_trig_cmd)(wmi_unified_t wmi_handle,
  356. struct sta_uapsd_trig_params *param);
  357. #ifdef WLAN_FEATURE_DSRC
  358. QDF_STATUS (*send_ocb_set_utc_time_cmd)(wmi_unified_t wmi_handle,
  359. struct ocb_utc_param *utc);
  360. QDF_STATUS (*send_ocb_get_tsf_timer_cmd)(wmi_unified_t wmi_handle,
  361. uint8_t vdev_id);
  362. QDF_STATUS (*send_ocb_start_timing_advert_cmd)(wmi_unified_t wmi_handle,
  363. struct ocb_timing_advert_param *timing_advert);
  364. QDF_STATUS (*send_ocb_stop_timing_advert_cmd)(wmi_unified_t wmi_handle,
  365. struct ocb_timing_advert_param *timing_advert);
  366. QDF_STATUS (*send_dcc_get_stats_cmd)(wmi_unified_t wmi_handle,
  367. struct ocb_dcc_get_stats_param *get_stats_param);
  368. QDF_STATUS (*send_dcc_clear_stats_cmd)(wmi_unified_t wmi_handle,
  369. uint32_t vdev_id, uint32_t dcc_stats_bitmap);
  370. QDF_STATUS (*send_dcc_update_ndl_cmd)(wmi_unified_t wmi_handle,
  371. struct ocb_dcc_update_ndl_param *update_ndl_param);
  372. QDF_STATUS (*send_ocb_set_config_cmd)(wmi_unified_t wmi_handle,
  373. struct ocb_config *config);
  374. QDF_STATUS (*extract_ocb_chan_config_resp)(wmi_unified_t wmi_hdl,
  375. void *evt_buf,
  376. uint32_t *status);
  377. QDF_STATUS (*extract_ocb_tsf_timer)(wmi_unified_t wmi_hdl,
  378. void *evt_buf,
  379. struct ocb_get_tsf_timer_response *resp);
  380. QDF_STATUS (*extract_dcc_update_ndl_resp)(wmi_unified_t wmi_hdl,
  381. void *evt_buf, struct ocb_dcc_update_ndl_response *resp);
  382. QDF_STATUS (*extract_dcc_stats)(wmi_unified_t wmi_hdl,
  383. void *evt_buf,
  384. struct ocb_dcc_get_stats_response **response);
  385. #endif /* WLAN_FEATURE_DSRC */
  386. QDF_STATUS (*send_lro_config_cmd)(wmi_unified_t wmi_handle,
  387. struct wmi_lro_config_cmd_t *wmi_lro_cmd);
  388. QDF_STATUS (*send_set_thermal_mgmt_cmd)(wmi_unified_t wmi_handle,
  389. struct thermal_cmd_params *thermal_info);
  390. QDF_STATUS (*send_peer_rate_report_cmd)(wmi_unified_t wmi_handle,
  391. struct wmi_peer_rate_report_params *rate_report_params);
  392. #ifdef WMI_CONCURRENCY_SUPPORT
  393. QDF_STATUS (*send_set_mcc_channel_time_quota_cmd)
  394. (wmi_unified_t wmi_handle,
  395. uint32_t adapter_1_chan_freq,
  396. uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
  397. QDF_STATUS (*send_set_mcc_channel_time_latency_cmd)
  398. (wmi_unified_t wmi_handle,
  399. uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
  400. QDF_STATUS (*send_set_enable_disable_mcc_adaptive_scheduler_cmd)(
  401. wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler,
  402. uint32_t pdev_id);
  403. #endif /* WMI_CONCURRENCY_SUPPORT */
  404. QDF_STATUS (*send_p2p_go_set_beacon_ie_cmd)(wmi_unified_t wmi_handle,
  405. uint32_t vdev_id, uint8_t *p2p_ie);
  406. QDF_STATUS (*send_probe_rsp_tmpl_send_cmd)(wmi_unified_t wmi_handle,
  407. uint8_t vdev_id,
  408. struct wmi_probe_resp_params *probe_rsp_info);
  409. QDF_STATUS (*send_setup_install_key_cmd)(wmi_unified_t wmi_handle,
  410. struct set_key_params *key_params);
  411. QDF_STATUS (*send_reset_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
  412. struct wifi_passpoint_req_param *req);
  413. #ifdef WMI_ROAM_SUPPORT
  414. #ifdef FEATURE_LFR_SUBNET_DETECTION
  415. QDF_STATUS (*send_set_gateway_params_cmd)(wmi_unified_t wmi_handle,
  416. struct gateway_update_req_param *req);
  417. #endif /* FEATURE_LFR_SUBNET_DETECTION */
  418. #ifdef FEATURE_RSSI_MONITOR
  419. QDF_STATUS (*send_set_rssi_monitoring_cmd)(wmi_unified_t wmi_handle,
  420. struct rssi_monitor_param *req);
  421. #endif /* FEATURE_RSSI_MONITOR */
  422. QDF_STATUS (*send_roam_scan_offload_rssi_thresh_cmd)(wmi_unified_t wmi_handle,
  423. struct roam_offload_scan_rssi_params *roam_req);
  424. QDF_STATUS (*send_roam_mawc_params_cmd)(wmi_unified_t wmi_handle,
  425. struct wmi_mawc_roam_params *params);
  426. QDF_STATUS (*send_roam_scan_filter_cmd)(wmi_unified_t wmi_handle,
  427. struct roam_scan_filter_params *roam_req);
  428. QDF_STATUS (*send_roam_scan_offload_mode_cmd)(wmi_unified_t wmi_handle,
  429. wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
  430. struct roam_offload_scan_params *roam_req);
  431. QDF_STATUS (*send_roam_scan_offload_ap_profile_cmd)(wmi_unified_t wmi_handle,
  432. struct ap_profile_params *ap_profile);
  433. QDF_STATUS (*send_roam_scan_offload_cmd)(wmi_unified_t wmi_handle,
  434. uint32_t command, uint32_t vdev_id);
  435. QDF_STATUS (*send_roam_scan_offload_scan_period_cmd)(wmi_unified_t wmi_handle,
  436. uint32_t scan_period,
  437. uint32_t scan_age,
  438. uint32_t vdev_id);
  439. QDF_STATUS (*send_roam_scan_offload_chan_list_cmd)(wmi_unified_t wmi_handle,
  440. uint8_t chan_count,
  441. uint32_t *chan_list,
  442. uint8_t list_type, uint32_t vdev_id);
  443. QDF_STATUS (*send_roam_scan_offload_rssi_change_cmd)(wmi_unified_t wmi_handle,
  444. uint32_t vdev_id,
  445. int32_t rssi_change_thresh,
  446. uint32_t bcn_rssi_weight,
  447. uint32_t hirssi_delay_btw_scans);
  448. QDF_STATUS (*send_per_roam_config_cmd)(wmi_unified_t wmi_handle,
  449. struct wmi_per_roam_config_req *req_buf);
  450. QDF_STATUS (*send_offload_11k_cmd)(wmi_unified_t wmi_handle,
  451. struct wmi_11k_offload_params *params);
  452. QDF_STATUS (*send_invoke_neighbor_report_cmd)(wmi_unified_t wmi_handle,
  453. struct wmi_invoke_neighbor_report_params *params);
  454. QDF_STATUS (*send_btm_config)(wmi_unified_t wmi_handle,
  455. struct wmi_btm_config *params);
  456. QDF_STATUS (*send_limit_off_chan_cmd)(wmi_unified_t wmi_handle,
  457. struct wmi_limit_off_chan_param *limit_off_chan_param);
  458. #ifdef WLAN_FEATURE_FILS_SK
  459. QDF_STATUS (*send_roam_scan_hlp_cmd) (wmi_unified_t wmi_handle,
  460. struct hlp_params *params);
  461. #endif /* WLAN_FEATURE_FILS_SK */
  462. #ifdef FEATURE_WLAN_ESE
  463. QDF_STATUS (*send_plm_stop_cmd)(wmi_unified_t wmi_handle,
  464. const struct plm_req_params *plm);
  465. QDF_STATUS (*send_plm_start_cmd)(wmi_unified_t wmi_handle,
  466. const struct plm_req_params *plm,
  467. uint32_t *gchannel_list);
  468. #endif /* FEATURE_WLAN_ESE */
  469. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  470. QDF_STATUS (*send_set_ric_req_cmd)(wmi_unified_t wmi_handle, void *msg,
  471. uint8_t is_add_ts);
  472. QDF_STATUS (*send_process_roam_synch_complete_cmd)(wmi_unified_t wmi_handle,
  473. uint8_t vdev_id);
  474. QDF_STATUS (*send_roam_invoke_cmd)(wmi_unified_t wmi_handle,
  475. struct wmi_roam_invoke_cmd *roaminvoke,
  476. uint32_t ch_hz);
  477. #endif /* WLAN_FEATURE_ROAM_OFFLOAD */
  478. #endif /* WMI_ROAM_SUPPORT */
  479. QDF_STATUS (*send_scan_probe_setoui_cmd)(wmi_unified_t wmi_handle,
  480. struct scan_mac_oui *psetoui);
  481. QDF_STATUS (*send_set_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
  482. struct wifi_passpoint_req_param *req);
  483. QDF_STATUS (*send_set_epno_network_list_cmd)(wmi_unified_t wmi_handle,
  484. struct wifi_enhanced_pno_params *req);
  485. QDF_STATUS (*send_extscan_get_capabilities_cmd)(wmi_unified_t wmi_handle,
  486. struct extscan_capabilities_params *pgetcapab);
  487. QDF_STATUS (*send_extscan_get_cached_results_cmd)(wmi_unified_t wmi_handle,
  488. struct extscan_cached_result_params *pcached_results);
  489. QDF_STATUS (*send_extscan_stop_change_monitor_cmd)(wmi_unified_t wmi_handle,
  490. struct extscan_capabilities_reset_params *reset_req);
  491. QDF_STATUS (*send_extscan_start_change_monitor_cmd)(wmi_unified_t wmi_handle,
  492. struct extscan_set_sig_changereq_params *
  493. psigchange);
  494. QDF_STATUS (*send_extscan_stop_hotlist_monitor_cmd)(wmi_unified_t wmi_handle,
  495. struct extscan_bssid_hotlist_reset_params *photlist_reset);
  496. QDF_STATUS (*send_extscan_start_hotlist_monitor_cmd)(wmi_unified_t wmi_handle,
  497. struct extscan_bssid_hotlist_set_params *params);
  498. QDF_STATUS (*send_stop_extscan_cmd)(wmi_unified_t wmi_handle,
  499. struct extscan_stop_req_params *pstopcmd);
  500. QDF_STATUS (*send_start_extscan_cmd)(wmi_unified_t wmi_handle,
  501. struct wifi_scan_cmd_req_params *pstart);
  502. QDF_STATUS (*send_csa_offload_enable_cmd)(wmi_unified_t wmi_handle,
  503. uint8_t vdev_id);
  504. QDF_STATUS (*send_pno_stop_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  505. QDF_STATUS (*send_pno_start_cmd)(wmi_unified_t wmi_handle,
  506. struct pno_scan_req_params *pno);
  507. QDF_STATUS (*send_nlo_mawc_cmd)(wmi_unified_t wmi_handle,
  508. struct nlo_mawc_params *params);
  509. #ifdef IPA_OFFLOAD
  510. QDF_STATUS (*send_ipa_offload_control_cmd)(wmi_unified_t wmi_handle,
  511. struct ipa_uc_offload_control_params *ipa_offload);
  512. #endif
  513. QDF_STATUS (*send_process_ll_stats_clear_cmd)
  514. (wmi_unified_t wmi_handle,
  515. const struct ll_stats_clear_params *clear_req,
  516. uint8_t addr[IEEE80211_ADDR_LEN]);
  517. QDF_STATUS (*send_process_ll_stats_set_cmd)
  518. (wmi_unified_t wmi_handle, const struct ll_stats_set_params *set_req);
  519. QDF_STATUS (*send_process_ll_stats_get_cmd)
  520. (wmi_unified_t wmi_handle, const struct ll_stats_get_params *get_req,
  521. uint8_t addr[IEEE80211_ADDR_LEN]);
  522. QDF_STATUS (*send_congestion_cmd)(wmi_unified_t wmi_handle,
  523. uint8_t vdev_id);
  524. QDF_STATUS (*send_snr_request_cmd)(wmi_unified_t wmi_handle);
  525. QDF_STATUS (*send_snr_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  526. QDF_STATUS (*send_link_status_req_cmd)(wmi_unified_t wmi_handle,
  527. struct link_status_params *link_status);
  528. #ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
  529. QDF_STATUS (*send_add_wow_wakeup_event_cmd)(wmi_unified_t wmi_handle,
  530. uint32_t vdev_id,
  531. uint32_t *bitmap,
  532. bool enable);
  533. QDF_STATUS (*send_wow_patterns_to_fw_cmd)(wmi_unified_t wmi_handle,
  534. uint8_t vdev_id, uint8_t ptrn_id,
  535. const uint8_t *ptrn, uint8_t ptrn_len,
  536. uint8_t ptrn_offset, const uint8_t *mask,
  537. uint8_t mask_len, bool user,
  538. uint8_t default_patterns);
  539. QDF_STATUS (*send_enable_arp_ns_offload_cmd)(wmi_unified_t wmi_handle,
  540. struct pmo_arp_offload_params *arp_offload_req,
  541. struct pmo_ns_offload_params *ns_offload_req,
  542. uint8_t vdev_id);
  543. QDF_STATUS (*send_conf_hw_filter_cmd)(wmi_unified_t wmi,
  544. struct pmo_hw_filter_params *req);
  545. QDF_STATUS (*send_enable_enhance_multicast_offload_cmd)(
  546. wmi_unified_t wmi_handle,
  547. uint8_t vdev_id, bool action);
  548. QDF_STATUS (*send_add_clear_mcbc_filter_cmd)(wmi_unified_t wmi_handle,
  549. uint8_t vdev_id,
  550. struct qdf_mac_addr multicast_addr,
  551. bool clearList);
  552. QDF_STATUS (*send_multiple_add_clear_mcbc_filter_cmd)(wmi_unified_t wmi_handle,
  553. uint8_t vdev_id,
  554. struct pmo_mcast_filter_params *filter_param);
  555. QDF_STATUS (*send_gtk_offload_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
  556. struct pmo_gtk_req *params,
  557. bool enable_offload,
  558. uint32_t gtk_offload_opcode);
  559. QDF_STATUS (*send_process_gtk_offload_getinfo_cmd)(wmi_unified_t wmi_handle,
  560. uint8_t vdev_id,
  561. uint64_t offload_req_opcode);
  562. QDF_STATUS (*send_wow_sta_ra_filter_cmd)(wmi_unified_t wmi_handle,
  563. uint8_t vdev_id, uint8_t default_pattern,
  564. uint16_t rate_limit_interval);
  565. QDF_STATUS (*send_action_frame_patterns_cmd)(wmi_unified_t wmi_handle,
  566. struct pmo_action_wakeup_set_params *action_params);
  567. QDF_STATUS (*extract_gtk_rsp_event)(wmi_unified_t wmi_handle,
  568. void *evt_buf,
  569. struct pmo_gtk_rsp_params *gtk_rsp_param, uint32_t len);
  570. QDF_STATUS (*send_wow_delete_pattern_cmd)(wmi_unified_t wmi_handle,
  571. uint8_t ptrn_id,
  572. uint8_t vdev_id);
  573. QDF_STATUS (*send_host_wakeup_ind_to_fw_cmd)(wmi_unified_t wmi_handle);
  574. QDF_STATUS (*send_wow_timer_pattern_cmd)(wmi_unified_t wmi_handle,
  575. uint8_t vdev_id, uint32_t cookie, uint32_t time);
  576. #ifdef FEATURE_WLAN_LPHB
  577. QDF_STATUS (*send_lphb_config_hbenable_cmd)(wmi_unified_t wmi_handle,
  578. wmi_hb_set_enable_cmd_fixed_param *params);
  579. QDF_STATUS (*send_lphb_config_tcp_params_cmd)(wmi_unified_t wmi_handle,
  580. wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req);
  581. QDF_STATUS (*send_lphb_config_tcp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
  582. wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp);
  583. QDF_STATUS (*send_lphb_config_udp_params_cmd)(wmi_unified_t wmi_handle,
  584. wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req);
  585. QDF_STATUS (*send_lphb_config_udp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
  586. wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req);
  587. #endif /* FEATURE_WLAN_LPHB */
  588. #ifdef WLAN_FEATURE_PACKET_FILTERING
  589. QDF_STATUS (*send_enable_disable_packet_filter_cmd)(wmi_unified_t wmi_handle,
  590. uint8_t vdev_id, bool enable);
  591. QDF_STATUS (*send_config_packet_filter_cmd)(wmi_unified_t wmi_handle,
  592. uint8_t vdev_id, struct pmo_rcv_pkt_fltr_cfg *rcv_filter_param,
  593. uint8_t filter_id, bool enable);
  594. #endif
  595. #endif /* end of WLAN_POWER_MANAGEMENT_OFFLOAD */
  596. #ifdef CONFIG_MCL
  597. QDF_STATUS (*send_bcn_buf_ll_cmd)(wmi_unified_t wmi_handle,
  598. wmi_bcn_send_from_host_cmd_fixed_param * param);
  599. QDF_STATUS (*send_pktlog_wmi_send_cmd)(wmi_unified_t wmi_handle,
  600. WMI_PKTLOG_EVENT pktlog_event,
  601. WMI_CMD_ID cmd_id, uint8_t user_triggered);
  602. #endif
  603. #ifdef WLAN_SUPPORT_GREEN_AP
  604. QDF_STATUS (*send_egap_conf_params_cmd)(wmi_unified_t wmi_handle,
  605. struct wlan_green_ap_egap_params *egap_params);
  606. #endif
  607. #ifdef WLAN_FEATURE_CIF_CFR
  608. QDF_STATUS (*send_oem_dma_cfg_cmd)(wmi_unified_t wmi_handle,
  609. wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
  610. #endif
  611. QDF_STATUS (*send_start_oem_data_cmd)(wmi_unified_t wmi_handle,
  612. uint32_t data_len,
  613. uint8_t *data);
  614. QDF_STATUS
  615. (*send_dfs_phyerr_filter_offload_en_cmd)(wmi_unified_t wmi_handle,
  616. bool dfs_phyerr_filter_offload);
  617. QDF_STATUS (*send_bss_color_change_enable_cmd)(wmi_unified_t wmi_handle,
  618. uint32_t vdev_id,
  619. bool enable);
  620. QDF_STATUS (*send_obss_color_collision_cfg_cmd)(wmi_unified_t wmi_handle,
  621. struct wmi_obss_color_collision_cfg_param *cfg);
  622. QDF_STATUS (*extract_obss_color_collision_info)(uint8_t *evt_buf,
  623. struct wmi_obss_color_collision_info *info);
  624. #ifdef WMI_STA_SUPPORT
  625. QDF_STATUS (*send_del_ts_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
  626. uint8_t ac);
  627. QDF_STATUS (*send_aggr_qos_cmd)(wmi_unified_t wmi_handle,
  628. struct aggr_add_ts_param *aggr_qos_rsp_msg);
  629. QDF_STATUS (*send_add_ts_cmd)(wmi_unified_t wmi_handle,
  630. struct add_ts_param *msg);
  631. QDF_STATUS (*send_process_add_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
  632. struct periodic_tx_pattern *
  633. pAddPeriodicTxPtrnParams,
  634. uint8_t vdev_id);
  635. QDF_STATUS (*send_process_del_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
  636. uint8_t vdev_id,
  637. uint8_t pattern_id);
  638. QDF_STATUS (*send_set_auto_shutdown_timer_cmd)(wmi_unified_t wmi_handle,
  639. uint32_t timer_val);
  640. #ifdef WLAN_FEATURE_NAN
  641. QDF_STATUS (*send_nan_req_cmd)(wmi_unified_t wmi_handle,
  642. struct nan_req_params *nan_req);
  643. #endif
  644. QDF_STATUS (*send_process_ch_avoid_update_cmd)(wmi_unified_t wmi_handle);
  645. QDF_STATUS (*send_process_set_ie_info_cmd)(wmi_unified_t wmi_handle,
  646. struct vdev_ie_info_param *ie_info);
  647. QDF_STATUS (*send_set_base_macaddr_indicate_cmd)(wmi_unified_t wmi_handle,
  648. uint8_t *custom_addr);
  649. QDF_STATUS (*send_pdev_set_pcl_cmd)(wmi_unified_t wmi_handle,
  650. struct wmi_pcl_chan_weights *msg);
  651. QDF_STATUS (*send_pdev_set_hw_mode_cmd)(wmi_unified_t wmi_handle,
  652. uint32_t hw_mode_index);
  653. #ifdef WLAN_POLICY_MGR_ENABLE
  654. QDF_STATUS (*send_pdev_set_dual_mac_config_cmd)(wmi_unified_t wmi_handle,
  655. struct policy_mgr_dual_mac_config *msg);
  656. #endif
  657. QDF_STATUS (*send_set_led_flashing_cmd)(wmi_unified_t wmi_handle,
  658. struct flashing_req_params *flashing);
  659. QDF_STATUS (*send_set_arp_stats_req_cmd)(wmi_unified_t wmi_handle,
  660. struct set_arp_stats *req_buf);
  661. QDF_STATUS (*send_get_arp_stats_req_cmd)(wmi_unified_t wmi_handle,
  662. struct get_arp_stats *req_buf);
  663. QDF_STATUS (*send_set_del_pmkid_cache_cmd) (wmi_unified_t wmi_handle,
  664. struct wmi_unified_pmk_cache *req_buf);
  665. QDF_STATUS (*send_adapt_dwelltime_params_cmd)(wmi_unified_t wmi_handle,
  666. struct wmi_adaptive_dwelltime_params *dwelltime_params);
  667. QDF_STATUS (*send_dbs_scan_sel_params_cmd)(wmi_unified_t wmi_handle,
  668. struct wmi_dbs_scan_sel_params *dbs_scan_params);
  669. QDF_STATUS (*send_vdev_set_gtx_cfg_cmd)(wmi_unified_t wmi_handle,
  670. uint32_t if_id,
  671. struct wmi_gtx_config *gtx_info);
  672. QDF_STATUS (*send_set_sta_keep_alive_cmd)(wmi_unified_t wmi_handle,
  673. struct sta_params *params);
  674. QDF_STATUS (*send_set_sta_sa_query_param_cmd)(wmi_unified_t wmi_handle,
  675. uint8_t vdev_id, uint32_t max_retries,
  676. uint32_t retry_interval);
  677. QDF_STATUS (*send_fw_profiling_cmd)(wmi_unified_t wmi_handle,
  678. uint32_t cmd, uint32_t value1, uint32_t value2);
  679. QDF_STATUS (*send_nat_keepalive_en_cmd)(wmi_unified_t wmi_handle,
  680. uint8_t vdev_id);
  681. QDF_STATUS (*send_process_dhcp_ind_cmd)(wmi_unified_t wmi_handle,
  682. wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
  683. QDF_STATUS (*send_get_link_speed_cmd)(wmi_unified_t wmi_handle,
  684. wmi_mac_addr peer_macaddr);
  685. QDF_STATUS (*send_wlm_latency_level_cmd)(wmi_unified_t wmi_handle,
  686. struct wlm_latency_level_param *param);
  687. QDF_STATUS (*send_sar_limit_cmd)(wmi_unified_t wmi_handle,
  688. struct sar_limit_cmd_params *params);
  689. QDF_STATUS (*get_sar_limit_cmd)(wmi_unified_t wmi_handle);
  690. QDF_STATUS (*extract_sar_limit_event)(wmi_unified_t wmi_handle,
  691. uint8_t *evt_buf,
  692. struct sar_limit_event *event);
  693. QDF_STATUS (*extract_sar2_result_event)(void *handle,
  694. uint8_t *event,
  695. uint32_t len);
  696. #ifdef WLAN_FEATURE_DISA
  697. QDF_STATUS (*send_encrypt_decrypt_send_cmd)(wmi_unified_t wmi_handle,
  698. struct disa_encrypt_decrypt_req_params *params);
  699. QDF_STATUS (*extract_encrypt_decrypt_resp_event)(wmi_unified_t wmi_handle,
  700. void *evt_buf,
  701. struct disa_encrypt_decrypt_resp_params *resp);
  702. #endif
  703. #ifdef CONVERGED_TDLS_ENABLE
  704. QDF_STATUS (*send_set_tdls_offchan_mode_cmd)(wmi_unified_t wmi_handle,
  705. struct tdls_channel_switch_params *chan_switch_params);
  706. QDF_STATUS (*send_update_fw_tdls_state_cmd)(wmi_unified_t wmi_handle,
  707. void *tdls_param, uint8_t tdls_state);
  708. QDF_STATUS (*send_update_tdls_peer_state_cmd)(wmi_unified_t wmi_handle,
  709. struct tdls_peer_state_params *peerStateParams,
  710. uint32_t *ch_mhz);
  711. QDF_STATUS (*extract_vdev_tdls_ev_param)(wmi_unified_t wmi_handle,
  712. void *evt_buf, struct tdls_event_info *param);
  713. #endif /* CONVERGED_TDLS_ENABLE */
  714. #endif /* WMI_STA_SUPPORT */
  715. QDF_STATUS (*send_stats_ext_req_cmd)(wmi_unified_t wmi_handle,
  716. struct stats_ext_params *preq);
  717. #ifdef WLAN_FEATURE_EXTWOW_SUPPORT
  718. QDF_STATUS (*send_enable_ext_wow_cmd)(wmi_unified_t wmi_handle,
  719. struct ext_wow_params *params);
  720. QDF_STATUS (*send_set_app_type2_params_in_fw_cmd)(wmi_unified_t wmi_handle,
  721. struct app_type2_params *appType2Params);
  722. QDF_STATUS (*send_app_type1_params_in_fw_cmd)(wmi_unified_t wmi_handle,
  723. struct app_type1_params *app_type1_params);
  724. #endif /* WLAN_FEATURE_EXTWOW_SUPPORT */
  725. QDF_STATUS (*send_process_dhcpserver_offload_cmd)(wmi_unified_t wmi_handle,
  726. struct dhcp_offload_info_params *params);
  727. QDF_STATUS (*send_regdomain_info_to_fw_cmd)(wmi_unified_t wmi_handle,
  728. uint32_t reg_dmn, uint16_t regdmn2G,
  729. uint16_t regdmn5G, uint8_t ctl2G,
  730. uint8_t ctl5G);
  731. QDF_STATUS (*send_process_fw_mem_dump_cmd)(wmi_unified_t wmi_handle,
  732. struct fw_dump_req_param *mem_dump_req);
  733. QDF_STATUS (*save_fw_version_cmd)(wmi_unified_t wmi_handle, void *evt_buf);
  734. QDF_STATUS (*check_and_update_fw_version_cmd)(wmi_unified_t wmi_hdl, void *ev);
  735. QDF_STATUS (*send_log_supported_evt_cmd)(wmi_unified_t wmi_handle,
  736. uint8_t *event,
  737. uint32_t len);
  738. QDF_STATUS (*send_enable_specific_fw_logs_cmd)(wmi_unified_t wmi_handle,
  739. struct wmi_wifi_start_log *start_log);
  740. QDF_STATUS (*send_flush_logs_to_fw_cmd)(wmi_unified_t wmi_handle);
  741. QDF_STATUS (*send_set_ssid_hotlist_cmd)(wmi_unified_t wmi_handle,
  742. struct ssid_hotlist_request_params *request);
  743. QDF_STATUS (*send_unit_test_cmd)(wmi_unified_t wmi_handle,
  744. struct wmi_unit_test_cmd *wmi_utest);
  745. #ifdef FEATURE_WLAN_APF
  746. QDF_STATUS
  747. (*send_set_active_apf_mode_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
  748. enum wmi_host_active_apf_mode ucast_mode,
  749. enum wmi_host_active_apf_mode mcast_bcast_mode);
  750. QDF_STATUS (*send_apf_enable_cmd)(wmi_unified_t wmi_handle, uint32_t vdev_id,
  751. bool enable);
  752. QDF_STATUS (*send_apf_write_work_memory_cmd)(wmi_unified_t wmi_handle,
  753. struct wmi_apf_write_memory_params *apf_write_params);
  754. QDF_STATUS (*send_apf_read_work_memory_cmd)(wmi_unified_t wmi_handle,
  755. struct wmi_apf_read_memory_params *apf_read_params);
  756. QDF_STATUS (*extract_apf_read_memory_resp_event)(wmi_unified_t wmi_handle,
  757. void *evt_buf,
  758. struct wmi_apf_read_memory_resp_event_params *resp);
  759. #endif /* FEATURE_WLAN_APF */
  760. QDF_STATUS (*send_pdev_get_tpc_config_cmd)(wmi_unified_t wmi_handle,
  761. uint32_t param);
  762. #ifdef WMI_ATF_SUPPORT
  763. QDF_STATUS (*send_set_bwf_cmd)(wmi_unified_t wmi_handle,
  764. struct set_bwf_params *param);
  765. #endif
  766. QDF_STATUS (*send_pdev_fips_cmd)(wmi_unified_t wmi_handle,
  767. struct fips_params *param);
  768. QDF_STATUS (*send_wlan_profile_enable_cmd)(wmi_unified_t wmi_handle,
  769. struct wlan_profile_params *param);
  770. QDF_STATUS (*send_wlan_profile_trigger_cmd)(wmi_unified_t wmi_handle,
  771. struct wlan_profile_params *param);
  772. QDF_STATUS (*send_pdev_set_chan_cmd)(wmi_unified_t wmi_handle,
  773. struct channel_param *param);
  774. QDF_STATUS (*send_set_ht_ie_cmd)(wmi_unified_t wmi_handle,
  775. struct ht_ie_params *param);
  776. QDF_STATUS (*send_set_vht_ie_cmd)(wmi_unified_t wmi_handle,
  777. struct vht_ie_params *param);
  778. QDF_STATUS (*send_wmm_update_cmd)(wmi_unified_t wmi_handle,
  779. struct wmm_update_params *param);
  780. QDF_STATUS (*send_process_update_edca_param_cmd)(wmi_unified_t wmi_handle,
  781. uint8_t vdev_id, bool mu_edca_param,
  782. struct wmi_host_wme_vparams wmm_vparams[WMI_MAX_NUM_AC]);
  783. QDF_STATUS (*send_set_ratepwr_table_cmd)(wmi_unified_t wmi_handle,
  784. struct ratepwr_table_params *param);
  785. QDF_STATUS (*send_get_ratepwr_table_cmd)(wmi_unified_t wmi_handle);
  786. QDF_STATUS (*send_set_ctl_table_cmd)(wmi_unified_t wmi_handle,
  787. struct ctl_table_params *param);
  788. QDF_STATUS (*send_set_mimogain_table_cmd)(wmi_unified_t wmi_handle,
  789. struct mimogain_table_params *param);
  790. QDF_STATUS (*send_set_ratepwr_chainmsk_cmd)(wmi_unified_t wmi_handle,
  791. struct ratepwr_chainmsk_params *param);
  792. QDF_STATUS (*send_set_macaddr_cmd)(wmi_unified_t wmi_handle,
  793. struct macaddr_params *param);
  794. QDF_STATUS (*send_pdev_scan_start_cmd)(wmi_unified_t wmi_handle);
  795. QDF_STATUS (*send_pdev_scan_end_cmd)(wmi_unified_t wmi_handle);
  796. QDF_STATUS (*send_set_acparams_cmd)(wmi_unified_t wmi_handle,
  797. struct acparams_params *param);
  798. QDF_STATUS (*send_set_vap_dscp_tid_map_cmd)(wmi_unified_t wmi_handle,
  799. struct vap_dscp_tid_map_params *param);
  800. QDF_STATUS (*send_proxy_ast_reserve_cmd)(wmi_unified_t wmi_handle,
  801. struct proxy_ast_reserve_params *param);
  802. QDF_STATUS (*send_pdev_qvit_cmd)(wmi_unified_t wmi_handle,
  803. struct pdev_qvit_params *param);
  804. QDF_STATUS (*send_mcast_group_update_cmd)(wmi_unified_t wmi_handle,
  805. struct mcast_group_update_params *param);
  806. QDF_STATUS (*send_peer_add_wds_entry_cmd)(wmi_unified_t wmi_handle,
  807. struct peer_add_wds_entry_params *param);
  808. QDF_STATUS (*send_peer_del_wds_entry_cmd)(wmi_unified_t wmi_handle,
  809. struct peer_del_wds_entry_params *param);
  810. QDF_STATUS (*send_set_bridge_mac_addr_cmd)(wmi_unified_t wmi_handle,
  811. struct set_bridge_mac_addr_params *param);
  812. QDF_STATUS (*send_peer_update_wds_entry_cmd)(wmi_unified_t wmi_handle,
  813. struct peer_update_wds_entry_params *param);
  814. QDF_STATUS (*send_phyerr_enable_cmd)(wmi_unified_t wmi_handle);
  815. QDF_STATUS (*send_phyerr_disable_cmd)(wmi_unified_t wmi_handle);
  816. #ifdef WMI_SMART_ANT_SUPPORT
  817. QDF_STATUS (*send_set_ant_switch_tbl_cmd)(wmi_unified_t wmi_handle,
  818. struct ant_switch_tbl_params *param);
  819. QDF_STATUS (*send_smart_ant_enable_cmd)(wmi_unified_t wmi_handle,
  820. struct smart_ant_enable_params *param);
  821. QDF_STATUS (*send_smart_ant_set_rx_ant_cmd)(wmi_unified_t wmi_handle,
  822. struct smart_ant_rx_ant_params *param);
  823. QDF_STATUS (*send_smart_ant_set_tx_ant_cmd)(wmi_unified_t wmi_handle,
  824. uint8_t macaddr[IEEE80211_ADDR_LEN],
  825. struct smart_ant_tx_ant_params *param);
  826. QDF_STATUS (*send_smart_ant_set_training_info_cmd)(wmi_unified_t wmi_handle,
  827. uint8_t macaddr[IEEE80211_ADDR_LEN],
  828. struct smart_ant_training_info_params *param);
  829. QDF_STATUS (*send_smart_ant_set_node_config_cmd)(wmi_unified_t wmi_handle,
  830. uint8_t macaddr[IEEE80211_ADDR_LEN],
  831. struct smart_ant_node_config_params *param);
  832. #endif
  833. QDF_STATUS (*send_smart_ant_enable_tx_feedback_cmd)(wmi_unified_t wmi_handle,
  834. struct smart_ant_enable_tx_feedback_params *param);
  835. QDF_STATUS (*send_vdev_spectral_configure_cmd)(wmi_unified_t wmi_handle,
  836. struct vdev_spectral_configure_params *param);
  837. QDF_STATUS (*send_vdev_spectral_enable_cmd)(wmi_unified_t wmi_handle,
  838. struct vdev_spectral_enable_params *param);
  839. QDF_STATUS (*send_bss_chan_info_request_cmd)(wmi_unified_t wmi_handle,
  840. struct bss_chan_info_request_params *param);
  841. QDF_STATUS (*send_thermal_mitigation_param_cmd)(wmi_unified_t wmi_handle,
  842. struct thermal_mitigation_params *param);
  843. QDF_STATUS (*send_vdev_set_neighbour_rx_cmd)(wmi_unified_t wmi_handle,
  844. uint8_t macaddr[IEEE80211_ADDR_LEN],
  845. struct set_neighbour_rx_params *param);
  846. QDF_STATUS (*send_vdev_set_fwtest_param_cmd)(wmi_unified_t wmi_handle,
  847. struct set_fwtest_params *param);
  848. QDF_STATUS (*send_vdev_config_ratemask_cmd)(wmi_unified_t wmi_handle,
  849. struct config_ratemask_params *param);
  850. QDF_STATUS (*send_vdev_set_custom_aggr_size_cmd)(wmi_unified_t wmi_handle,
  851. struct set_custom_aggr_size_params *param);
  852. QDF_STATUS (*send_vdev_set_qdepth_thresh_cmd)(wmi_unified_t wmi_handle,
  853. struct set_qdepth_thresh_params *param);
  854. QDF_STATUS (*send_peer_chan_width_switch_cmd)(wmi_unified_t wmi_handle,
  855. struct peer_chan_width_switch_params *param);
  856. QDF_STATUS (*send_wow_wakeup_cmd)(wmi_unified_t wmi_handle);
  857. QDF_STATUS (*send_wow_add_wakeup_event_cmd)(wmi_unified_t wmi_handle,
  858. struct wow_add_wakeup_params *param);
  859. QDF_STATUS (*send_wow_add_wakeup_pattern_cmd)(wmi_unified_t wmi_handle,
  860. struct wow_add_wakeup_pattern_params *param);
  861. QDF_STATUS (*send_wow_remove_wakeup_pattern_cmd)(wmi_unified_t wmi_handle,
  862. struct wow_remove_wakeup_pattern_params *param);
  863. QDF_STATUS (*send_pdev_set_regdomain_cmd)(wmi_unified_t wmi_handle,
  864. struct pdev_set_regdomain_params *param);
  865. QDF_STATUS (*send_set_quiet_mode_cmd)(wmi_unified_t wmi_handle,
  866. struct set_quiet_mode_params *param);
  867. QDF_STATUS (*send_set_beacon_filter_cmd)(wmi_unified_t wmi_handle,
  868. struct set_beacon_filter_params *param);
  869. QDF_STATUS (*send_remove_beacon_filter_cmd)(wmi_unified_t wmi_handle,
  870. struct remove_beacon_filter_params *param);
  871. /*
  872. QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
  873. uint8_t macaddr[IEEE80211_ADDR_LEN],
  874. struct mgmt_params *param);
  875. */
  876. QDF_STATUS (*send_addba_clearresponse_cmd)(wmi_unified_t wmi_handle,
  877. uint8_t macaddr[IEEE80211_ADDR_LEN],
  878. struct addba_clearresponse_params *param);
  879. QDF_STATUS (*send_addba_send_cmd)(wmi_unified_t wmi_handle,
  880. uint8_t macaddr[IEEE80211_ADDR_LEN],
  881. struct addba_send_params *param);
  882. QDF_STATUS (*send_delba_send_cmd)(wmi_unified_t wmi_handle,
  883. uint8_t macaddr[IEEE80211_ADDR_LEN],
  884. struct delba_send_params *param);
  885. QDF_STATUS (*send_addba_setresponse_cmd)(wmi_unified_t wmi_handle,
  886. uint8_t macaddr[IEEE80211_ADDR_LEN],
  887. struct addba_setresponse_params *param);
  888. QDF_STATUS (*send_singleamsdu_cmd)(wmi_unified_t wmi_handle,
  889. uint8_t macaddr[IEEE80211_ADDR_LEN],
  890. struct singleamsdu_params *param);
  891. QDF_STATUS (*send_set_qboost_param_cmd)(wmi_unified_t wmi_handle,
  892. uint8_t macaddr[IEEE80211_ADDR_LEN],
  893. struct set_qboost_params *param);
  894. QDF_STATUS (*send_mu_scan_cmd)(wmi_unified_t wmi_handle,
  895. struct mu_scan_params *param);
  896. QDF_STATUS (*send_lteu_config_cmd)(wmi_unified_t wmi_handle,
  897. struct lteu_config_params *param);
  898. QDF_STATUS (*send_set_ps_mode_cmd)(wmi_unified_t wmi_handle,
  899. struct set_ps_mode_params *param);
  900. QDF_STATUS (*save_service_bitmap)(wmi_unified_t wmi_handle,
  901. void *evt_buf, void *bitmap_buf);
  902. QDF_STATUS (*save_ext_service_bitmap)(wmi_unified_t wmi_handle,
  903. void *evt_buf, void *bitmap_buf);
  904. bool (*is_service_enabled)(wmi_unified_t wmi_handle,
  905. uint32_t service_id);
  906. QDF_STATUS (*get_target_cap_from_service_ready)(wmi_unified_t wmi_handle,
  907. void *evt_buf, struct wlan_psoc_target_capability_info *ev);
  908. QDF_STATUS (*extract_fw_version)(wmi_unified_t wmi_handle,
  909. void *ev, struct wmi_host_fw_ver *fw_ver);
  910. QDF_STATUS (*extract_fw_abi_version)(wmi_unified_t wmi_handle,
  911. void *ev, struct wmi_host_fw_abi_ver *fw_ver);
  912. QDF_STATUS (*extract_hal_reg_cap)(wmi_unified_t wmi_handle, void *evt_buf,
  913. struct wlan_psoc_hal_reg_capability *hal_reg_cap);
  914. host_mem_req * (*extract_host_mem_req)(wmi_unified_t wmi_handle,
  915. void *evt_buf, uint8_t *num_entries);
  916. QDF_STATUS (*init_cmd_send)(wmi_unified_t wmi_handle,
  917. struct wmi_init_cmd_param *param);
  918. QDF_STATUS (*save_fw_version)(wmi_unified_t wmi_handle, void *evt_buf);
  919. uint32_t (*ready_extract_init_status)(wmi_unified_t wmi_hdl, void *ev);
  920. QDF_STATUS (*ready_extract_mac_addr)(wmi_unified_t wmi_hdl, void *ev,
  921. uint8_t *macaddr);
  922. wmi_host_mac_addr * (*ready_extract_mac_addr_list)(wmi_unified_t wmi_hdl,
  923. void *ev, uint8_t *num_mac_addr);
  924. QDF_STATUS (*extract_ready_event_params)(wmi_unified_t wmi_handle,
  925. void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
  926. QDF_STATUS (*check_and_update_fw_version)(wmi_unified_t wmi_hdl, void *ev);
  927. uint8_t* (*extract_dbglog_data_len)(wmi_unified_t wmi_handle, void *evt_buf,
  928. uint32_t *len);
  929. QDF_STATUS (*send_ext_resource_config)(wmi_unified_t wmi_handle,
  930. wmi_host_ext_resource_config *ext_cfg);
  931. QDF_STATUS (*send_nf_dbr_dbm_info_get_cmd)(wmi_unified_t wmi_handle,
  932. uint8_t mac_id);
  933. QDF_STATUS (*send_packet_power_info_get_cmd)(wmi_unified_t wmi_handle,
  934. struct packet_power_info_params *param);
  935. QDF_STATUS (*send_gpio_config_cmd)(wmi_unified_t wmi_handle,
  936. struct gpio_config_params *param);
  937. QDF_STATUS (*send_gpio_output_cmd)(wmi_unified_t wmi_handle,
  938. struct gpio_output_params *param);
  939. QDF_STATUS (*send_rtt_meas_req_test_cmd)(wmi_unified_t wmi_handle,
  940. struct rtt_meas_req_test_params *param);
  941. QDF_STATUS (*send_rtt_meas_req_cmd)(wmi_unified_t wmi_handle,
  942. struct rtt_meas_req_params *param);
  943. QDF_STATUS (*send_rtt_keepalive_req_cmd)(wmi_unified_t wmi_handle,
  944. struct rtt_keepalive_req_params *param);
  945. QDF_STATUS (*send_lci_set_cmd)(wmi_unified_t wmi_handle,
  946. struct lci_set_params *param);
  947. QDF_STATUS (*send_lcr_set_cmd)(wmi_unified_t wmi_handle,
  948. struct lcr_set_params *param);
  949. QDF_STATUS (*send_periodic_chan_stats_config_cmd)(wmi_unified_t wmi_handle,
  950. struct periodic_chan_stats_params *param);
  951. #ifdef WLAN_ATF_ENABLE
  952. QDF_STATUS (*send_set_atf_cmd)(wmi_unified_t wmi_handle,
  953. struct set_atf_params *param);
  954. QDF_STATUS
  955. (*send_atf_peer_request_cmd)(wmi_unified_t wmi_handle,
  956. struct atf_peer_request_params *param);
  957. QDF_STATUS
  958. (*send_set_atf_grouping_cmd)(wmi_unified_t wmi_handle,
  959. struct atf_grouping_params *param);
  960. QDF_STATUS
  961. (*send_set_atf_group_ac_cmd)(wmi_unified_t wmi_handle,
  962. struct atf_group_ac_params *param);
  963. QDF_STATUS (*extract_atf_peer_stats_ev)(wmi_unified_t wmi_handle,
  964. void *evt_buf,
  965. wmi_host_atf_peer_stats_event *ev);
  966. QDF_STATUS (*extract_atf_token_info_ev)(wmi_unified_t wmi_handle,
  967. void *evt_buf, uint8_t idx,
  968. wmi_host_atf_peer_stats_info *atf_info);
  969. #endif
  970. QDF_STATUS (*send_get_user_position_cmd)(wmi_unified_t wmi_handle,
  971. uint32_t value);
  972. QDF_STATUS
  973. (*send_reset_peer_mumimo_tx_count_cmd)(wmi_unified_t wmi_handle,
  974. uint32_t value);
  975. QDF_STATUS (*send_get_peer_mumimo_tx_count_cmd)(wmi_unified_t wmi_handle,
  976. uint32_t value);
  977. QDF_STATUS
  978. (*send_pdev_caldata_version_check_cmd)(wmi_unified_t wmi_handle,
  979. uint32_t value);
  980. QDF_STATUS
  981. (*send_btcoex_wlan_priority_cmd)(wmi_unified_t wmi_handle,
  982. struct btcoex_cfg_params *param);
  983. QDF_STATUS
  984. (*send_start_11d_scan_cmd)(wmi_unified_t wmi_handle,
  985. struct reg_start_11d_scan_req *param);
  986. QDF_STATUS
  987. (*send_stop_11d_scan_cmd)(wmi_unified_t wmi_handle,
  988. struct reg_stop_11d_scan_req *param);
  989. QDF_STATUS
  990. (*send_btcoex_duty_cycle_cmd)(wmi_unified_t wmi_handle,
  991. struct btcoex_cfg_params *param);
  992. QDF_STATUS
  993. (*send_coex_ver_cfg_cmd)(wmi_unified_t wmi_handle, coex_ver_cfg_t *param);
  994. QDF_STATUS
  995. (*send_coex_config_cmd)(wmi_unified_t wmi_handle,
  996. struct coex_config_params *param);
  997. QDF_STATUS (*send_bcn_offload_control_cmd)(wmi_unified_t wmi_handle,
  998. struct bcn_offload_control *bcn_ctrl_param);
  999. #ifdef OL_ATH_SMART_LOGGING
  1000. QDF_STATUS
  1001. (*send_smart_logging_enable_cmd)(wmi_unified_t wmi_handle, uint32_t param);
  1002. QDF_STATUS
  1003. (*send_smart_logging_fatal_cmd)(wmi_unified_t wmi_handle,
  1004. struct wmi_debug_fatal_events *param);
  1005. #endif /* OL_ATH_SMART_LOGGING */
  1006. QDF_STATUS (*extract_wds_addr_event)(wmi_unified_t wmi_handle,
  1007. void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
  1008. QDF_STATUS (*extract_dcs_interference_type)(wmi_unified_t wmi_handle,
  1009. void *evt_buf, struct wmi_host_dcs_interference_param *param);
  1010. QDF_STATUS (*extract_dcs_cw_int)(wmi_unified_t wmi_handle, void *evt_buf,
  1011. wmi_host_ath_dcs_cw_int *cw_int);
  1012. QDF_STATUS (*extract_dcs_im_tgt_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1013. wmi_host_dcs_im_tgt_stats_t *wlan_stat);
  1014. QDF_STATUS (*extract_fips_event_data)(wmi_unified_t wmi_handle,
  1015. void *evt_buf, struct wmi_host_fips_event_param *param);
  1016. QDF_STATUS (*extract_vdev_start_resp)(wmi_unified_t wmi_handle, void *evt_buf,
  1017. wmi_host_vdev_start_resp *vdev_rsp);
  1018. QDF_STATUS (*extract_vdev_delete_resp)(wmi_unified_t wmi_handle, void *evt_buf,
  1019. struct wmi_host_vdev_delete_resp *delete_rsp);
  1020. QDF_STATUS (*extract_tbttoffset_update_params)(void *wmi_hdl, void *evt_buf,
  1021. uint8_t idx, struct tbttoffset_params *tbtt_param);
  1022. QDF_STATUS (*extract_ext_tbttoffset_update_params)(void *wmi_hdl, void *evt_buf,
  1023. uint8_t idx, struct tbttoffset_params *tbtt_param);
  1024. QDF_STATUS (*extract_tbttoffset_num_vdevs)(void *wmi_hdl, void *evt_buf,
  1025. uint32_t *num_vdevs);
  1026. QDF_STATUS (*extract_ext_tbttoffset_num_vdevs)(void *wmi_hdl, void *evt_buf,
  1027. uint32_t *num_vdevs);
  1028. QDF_STATUS (*extract_mgmt_rx_params)(wmi_unified_t wmi_handle, void *evt_buf,
  1029. struct mgmt_rx_event_params *hdr, uint8_t **bufp);
  1030. QDF_STATUS (*extract_vdev_stopped_param)(wmi_unified_t wmi_handle,
  1031. void *evt_buf, uint32_t *vdev_id);
  1032. QDF_STATUS (*extract_vdev_roam_param)(wmi_unified_t wmi_handle, void *evt_buf,
  1033. wmi_host_roam_event *param);
  1034. QDF_STATUS (*extract_vdev_scan_ev_param)(wmi_unified_t wmi_handle,
  1035. void *evt_buf, struct scan_event *param);
  1036. QDF_STATUS (*extract_mu_ev_param)(wmi_unified_t wmi_handle, void *evt_buf,
  1037. wmi_host_mu_report_event *param);
  1038. QDF_STATUS (*extract_mu_db_entry)(wmi_unified_t wmi_hdl, void *evt_buf,
  1039. uint8_t idx, wmi_host_mu_db_entry *param);
  1040. QDF_STATUS (*extract_mumimo_tx_count_ev_param)(wmi_unified_t wmi_handle,
  1041. void *evt_buf, wmi_host_peer_txmu_cnt_event *param);
  1042. QDF_STATUS (*extract_peer_gid_userpos_list_ev_param)(wmi_unified_t wmi_handle,
  1043. void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
  1044. QDF_STATUS
  1045. (*extract_esp_estimation_ev_param)(wmi_unified_t wmi_handle, void *evt_buf,
  1046. struct esp_estimation_event *param);
  1047. QDF_STATUS (*extract_pdev_caldata_version_check_ev_param)(
  1048. wmi_unified_t wmi_handle,
  1049. void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
  1050. QDF_STATUS (*extract_pdev_tpc_config_ev_param)(wmi_unified_t wmi_handle,
  1051. void *evt_buf, wmi_host_pdev_tpc_config_event *param);
  1052. QDF_STATUS (*extract_gpio_input_ev_param)(wmi_unified_t wmi_handle,
  1053. void *evt_buf, uint32_t *gpio_num);
  1054. QDF_STATUS (*extract_pdev_reserve_ast_ev_param)(wmi_unified_t wmi_handle,
  1055. void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
  1056. QDF_STATUS (*extract_nfcal_power_ev_param)(wmi_unified_t wmi_handle,
  1057. void *evt_buf,
  1058. wmi_host_pdev_nfcal_power_all_channels_event *param);
  1059. QDF_STATUS (*extract_pdev_tpc_ev_param)(wmi_unified_t wmi_handle,
  1060. void *evt_buf, wmi_host_pdev_tpc_event *param);
  1061. QDF_STATUS (*extract_pdev_generic_buffer_ev_param)(wmi_unified_t wmi_handle,
  1062. void *evt_buf, wmi_host_pdev_generic_buffer_event *param);
  1063. QDF_STATUS (*extract_mgmt_tx_compl_param)(wmi_unified_t wmi_handle,
  1064. void *evt_buf, wmi_host_mgmt_tx_compl_event *param);
  1065. QDF_STATUS (*extract_offchan_data_tx_compl_param)(wmi_unified_t wmi_handle,
  1066. void *evt_buf,
  1067. struct wmi_host_offchan_data_tx_compl_event *param);
  1068. QDF_STATUS (*extract_pdev_csa_switch_count_status)(wmi_unified_t wmi_handle,
  1069. void *evt_buf, struct pdev_csa_switch_count_status *param);
  1070. QDF_STATUS (*extract_swba_num_vdevs)(wmi_unified_t wmi_handle, void *evt_buf,
  1071. uint32_t *num_vdevs);
  1072. QDF_STATUS (*extract_swba_tim_info)(wmi_unified_t wmi_handle, void *evt_buf,
  1073. uint32_t idx, wmi_host_tim_info *tim_info);
  1074. QDF_STATUS (*extract_swba_noa_info)(wmi_unified_t wmi_handle, void *evt_buf,
  1075. uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
  1076. #ifdef CONVERGED_P2P_ENABLE
  1077. #ifdef FEATURE_P2P_LISTEN_OFFLOAD
  1078. QDF_STATUS (*extract_p2p_lo_stop_ev_param)(wmi_unified_t wmi_handle,
  1079. void *evt_buf, struct p2p_lo_event *param);
  1080. #endif
  1081. QDF_STATUS (*extract_p2p_noa_ev_param)(wmi_unified_t wmi_handle,
  1082. void *evt_buf, struct p2p_noa_info *param);
  1083. QDF_STATUS (*set_mac_addr_rx_filter)(wmi_unified_t wmi_handle,
  1084. struct p2p_set_mac_filter *param);
  1085. QDF_STATUS
  1086. (*extract_mac_addr_rx_filter_evt_param)(wmi_unified_t wmi_handle,
  1087. void *evt_buf,
  1088. struct p2p_set_mac_filter_evt *param);
  1089. #endif
  1090. QDF_STATUS (*extract_peer_sta_ps_statechange_ev)(wmi_unified_t wmi_handle,
  1091. void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
  1092. QDF_STATUS (*extract_peer_sta_kickout_ev)(wmi_unified_t wmi_handle,
  1093. void *evt_buf, wmi_host_peer_sta_kickout_event *ev);
  1094. QDF_STATUS (*extract_peer_ratecode_list_ev)(wmi_unified_t wmi_handle,
  1095. void *evt_buf, uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
  1096. QDF_STATUS (*extract_comb_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
  1097. uint16_t datalen, uint16_t *buf_offset, wmi_host_phyerr_t *phyerr);
  1098. QDF_STATUS (*extract_single_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
  1099. uint16_t datalen, uint16_t *buf_offset, wmi_host_phyerr_t *phyerr);
  1100. QDF_STATUS (*extract_composite_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
  1101. uint16_t datalen, wmi_host_phyerr_t *phyerr);
  1102. QDF_STATUS (*extract_rtt_hdr)(wmi_unified_t wmi_handle, void *evt_buf,
  1103. wmi_host_rtt_event_hdr *ev);
  1104. QDF_STATUS (*extract_rtt_ev)(wmi_unified_t wmi_handle, void *evt_buf,
  1105. wmi_host_rtt_meas_event *ev, uint8_t *hdump, uint16_t hdump_len);
  1106. QDF_STATUS (*extract_rtt_error_report_ev)(wmi_unified_t wmi_handle,
  1107. void *evt_buf, wmi_host_rtt_error_report_event *ev);
  1108. QDF_STATUS (*extract_all_stats_count)(wmi_unified_t wmi_handle, void *evt_buf,
  1109. wmi_host_stats_event *stats_param);
  1110. QDF_STATUS (*extract_pdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1111. uint32_t index, wmi_host_pdev_stats *pdev_stats);
  1112. QDF_STATUS (*extract_unit_test)(wmi_unified_t wmi_handle, void *evt_buf,
  1113. wmi_unit_test_event *unit_test, uint32_t maxspace);
  1114. QDF_STATUS (*extract_pdev_ext_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1115. uint32_t index, wmi_host_pdev_ext_stats *pdev_ext_stats);
  1116. QDF_STATUS (*extract_vdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1117. uint32_t index, wmi_host_vdev_stats *vdev_stats);
  1118. QDF_STATUS (*extract_per_chain_rssi_stats)(wmi_unified_t wmi_handle,
  1119. void *evt_buf, uint32_t index,
  1120. struct wmi_host_per_chain_rssi_stats *rssi_stats);
  1121. QDF_STATUS (*extract_peer_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1122. uint32_t index, wmi_host_peer_stats *peer_stats);
  1123. QDF_STATUS (*extract_bcnflt_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1124. uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
  1125. QDF_STATUS (*extract_peer_extd_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1126. uint32_t index, wmi_host_peer_extd_stats *peer_extd_stats);
  1127. QDF_STATUS (*extract_peer_retry_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1128. uint32_t index,
  1129. struct wmi_host_peer_retry_stats *peer_retry_stats);
  1130. QDF_STATUS (*extract_chan_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1131. uint32_t index, wmi_host_chan_stats *chan_stats);
  1132. QDF_STATUS (*extract_thermal_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1133. uint32_t *temp, uint32_t *level, uint32_t *pdev_id);
  1134. QDF_STATUS (*extract_thermal_level_stats)(wmi_unified_t wmi_handle,
  1135. void *evt_buf, uint8_t idx, uint32_t *levelcount,
  1136. uint32_t *dccount);
  1137. QDF_STATUS (*extract_profile_ctx)(wmi_unified_t wmi_handle, void *evt_buf,
  1138. wmi_host_wlan_profile_ctx_t *profile_ctx);
  1139. QDF_STATUS (*extract_profile_data)(wmi_unified_t wmi_handle, void *evt_buf,
  1140. uint8_t idx,
  1141. wmi_host_wlan_profile_t *profile_data);
  1142. QDF_STATUS (*extract_chan_info_event)(wmi_unified_t wmi_handle, void *evt_buf,
  1143. wmi_host_chan_info_event *chan_info);
  1144. QDF_STATUS (*extract_channel_hopping_event)(wmi_unified_t wmi_handle,
  1145. void *evt_buf,
  1146. wmi_host_pdev_channel_hopping_event *ch_hopping);
  1147. QDF_STATUS (*extract_bss_chan_info_event)(wmi_unified_t wmi_handle,
  1148. void *evt_buf,
  1149. wmi_host_pdev_bss_chan_info_event *bss_chan_info);
  1150. QDF_STATUS (*extract_inst_rssi_stats_event)(wmi_unified_t wmi_handle,
  1151. void *evt_buf, wmi_host_inst_stats_resp *inst_rssi_resp);
  1152. QDF_STATUS (*extract_tx_data_traffic_ctrl_ev)(wmi_unified_t wmi_handle,
  1153. void *evt_buf, wmi_host_tx_data_traffic_ctrl_event *ev);
  1154. QDF_STATUS (*extract_vdev_extd_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1155. uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
  1156. QDF_STATUS (*extract_vdev_nac_rssi_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1157. struct wmi_host_vdev_nac_rssi_event *vdev_nac_rssi_stats);
  1158. QDF_STATUS (*extract_bcn_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1159. uint32_t index, wmi_host_bcn_stats *bcn_stats);
  1160. #ifdef OL_ATH_SMART_LOGGING
  1161. QDF_STATUS (*extract_smartlog_event)(wmi_unified_t wmi_handle, void *evt_buf,
  1162. struct wmi_debug_fatal_events *event);
  1163. #endif /* OL_ATH_SMART_LOGGING */
  1164. QDF_STATUS (*send_power_dbg_cmd)(wmi_unified_t wmi_handle,
  1165. struct wmi_power_dbg_params *param);
  1166. QDF_STATUS (*send_multiple_vdev_restart_req_cmd)(wmi_unified_t wmi_handle,
  1167. struct multiple_vdev_restart_params *param);
  1168. QDF_STATUS (*send_fw_test_cmd)(wmi_unified_t wmi_handle,
  1169. struct set_fwtest_params *wmi_fwtest);
  1170. #ifdef WLAN_FEATURE_ACTION_OUI
  1171. QDF_STATUS (*send_action_oui_cmd)(wmi_unified_t wmi_handle,
  1172. struct action_oui_request *req);
  1173. #endif /* WLAN_FEATURE_ACTION_OUI */
  1174. QDF_STATUS (*send_peer_rx_reorder_queue_setup_cmd)(wmi_unified_t wmi_handle,
  1175. struct rx_reorder_queue_setup_params *param);
  1176. QDF_STATUS (*send_peer_rx_reorder_queue_remove_cmd)(wmi_unified_t wmi_handle,
  1177. struct rx_reorder_queue_remove_params *param);
  1178. QDF_STATUS (*extract_service_ready_ext)(wmi_unified_t wmi_handle,
  1179. uint8_t *evt_buf,
  1180. struct wlan_psoc_host_service_ext_param *param);
  1181. QDF_STATUS (*extract_hw_mode_cap_service_ready_ext)(
  1182. wmi_unified_t wmi_handle,
  1183. uint8_t *evt_buf, uint8_t hw_mode_idx,
  1184. struct wlan_psoc_host_hw_mode_caps *param);
  1185. QDF_STATUS (*extract_mac_phy_cap_service_ready_ext)(
  1186. wmi_unified_t wmi_handle,
  1187. uint8_t *evt_buf,
  1188. uint8_t hw_mode_id,
  1189. uint8_t phy_id,
  1190. struct wlan_psoc_host_mac_phy_caps *param);
  1191. QDF_STATUS (*extract_reg_cap_service_ready_ext)(
  1192. wmi_unified_t wmi_handle,
  1193. uint8_t *evt_buf, uint8_t phy_idx,
  1194. struct wlan_psoc_host_hal_reg_capabilities_ext *param);
  1195. QDF_STATUS (*extract_dbr_ring_cap_service_ready_ext)(
  1196. wmi_unified_t wmi_handle,
  1197. uint8_t *evt_buf, uint8_t idx,
  1198. struct wlan_psoc_host_dbr_ring_caps *param);
  1199. QDF_STATUS (*extract_sar_cap_service_ready_ext)(
  1200. wmi_unified_t wmi_handle,
  1201. uint8_t *evt_buf,
  1202. struct wlan_psoc_host_service_ext_param *ext_param);
  1203. #ifdef WMI_DBR_SUPPORT
  1204. QDF_STATUS (*send_dbr_cfg_cmd)(wmi_unified_t wmi_handle,
  1205. struct direct_buf_rx_cfg_req *cfg);
  1206. QDF_STATUS (*extract_dbr_buf_release_fixed)(
  1207. wmi_unified_t wmi_handle,
  1208. uint8_t *evt_buf,
  1209. struct direct_buf_rx_rsp *param);
  1210. QDF_STATUS (*extract_dbr_buf_release_entry)(
  1211. wmi_unified_t wmi_handle,
  1212. uint8_t *evt_buf, uint8_t idx,
  1213. struct direct_buf_rx_entry *param);
  1214. QDF_STATUS (*extract_dbr_buf_metadata)(
  1215. wmi_unified_t wmi_handle,
  1216. uint8_t *evt_buf, uint8_t idx,
  1217. struct direct_buf_rx_metadata *param);
  1218. #endif
  1219. QDF_STATUS (*extract_pdev_utf_event)(wmi_unified_t wmi_hdl,
  1220. uint8_t *evt_buf,
  1221. struct wmi_host_pdev_utf_event *param);
  1222. QDF_STATUS (*extract_pdev_qvit_event)(wmi_unified_t wmi_hdl,
  1223. uint8_t *evt_buf,
  1224. struct wmi_host_pdev_qvit_event *param);
  1225. uint16_t (*wmi_set_htc_tx_tag)(wmi_unified_t wmi_handle,
  1226. wmi_buf_t buf, uint32_t cmd_id);
  1227. QDF_STATUS (*extract_peer_delete_response_event)(
  1228. wmi_unified_t wmi_handle,
  1229. void *evt_buf,
  1230. struct wmi_host_peer_delete_response_event *param);
  1231. bool (*is_management_record)(uint32_t cmd_id);
  1232. bool (*is_diag_event)(uint32_t event_id);
  1233. uint8_t *(*wmi_id_to_name)(uint32_t cmd_id);
  1234. QDF_STATUS (*send_dfs_phyerr_offload_en_cmd)(wmi_unified_t wmi_handle,
  1235. uint32_t pdev_id);
  1236. QDF_STATUS (*send_dfs_phyerr_offload_dis_cmd)(wmi_unified_t wmi_handle,
  1237. uint32_t pdev_id);
  1238. QDF_STATUS (*extract_reg_chan_list_update_event)(wmi_unified_t wmi_handle,
  1239. uint8_t *evt_buf,
  1240. struct cur_regulatory_info
  1241. *reg_info,
  1242. uint32_t len);
  1243. QDF_STATUS (*extract_reg_11d_new_country_event)(wmi_unified_t wmi_handle,
  1244. uint8_t *evt_buf,
  1245. struct reg_11d_new_country *reg_11d_country,
  1246. uint32_t len);
  1247. QDF_STATUS (*extract_reg_ch_avoid_event)(wmi_unified_t wmi_handle,
  1248. uint8_t *evt_buf,
  1249. struct ch_avoid_ind_type *ch_avoid_event,
  1250. uint32_t len);
  1251. QDF_STATUS (*extract_chainmask_tables)(wmi_unified_t wmi_handle,
  1252. uint8_t *evt_buf,
  1253. struct wlan_psoc_host_chainmask_table *chainmask_table);
  1254. QDF_STATUS (*send_get_rcpi_cmd)(wmi_unified_t wmi_handle,
  1255. struct rcpi_req *get_rcpi_param);
  1256. QDF_STATUS (*extract_rcpi_response_event)(wmi_unified_t wmi_handle,
  1257. void *evt_buf,
  1258. struct rcpi_res *res);
  1259. QDF_STATUS (*extract_dfs_cac_complete_event)(wmi_unified_t wmi_handle,
  1260. uint8_t *evt_buf,
  1261. uint32_t *vdev_id,
  1262. uint32_t len);
  1263. QDF_STATUS (*extract_dfs_radar_detection_event)(wmi_unified_t wmi_handle,
  1264. uint8_t *evt_buf,
  1265. struct radar_found_info *radar_found,
  1266. uint32_t len);
  1267. QDF_STATUS (*extract_wlan_radar_event_info)(wmi_unified_t wmi_handle,
  1268. uint8_t *evt_buf,
  1269. struct radar_event_info *wlan_radar_event,
  1270. uint32_t len);
  1271. QDF_STATUS (*send_set_country_cmd)(wmi_unified_t wmi_handle,
  1272. struct set_country *param);
  1273. uint32_t (*convert_pdev_id_host_to_target)(uint32_t pdev_id);
  1274. uint32_t (*convert_pdev_id_target_to_host)(uint32_t pdev_id);
  1275. QDF_STATUS (*send_user_country_code_cmd)(wmi_unified_t wmi_handle,
  1276. uint8_t pdev_id, struct cc_regdmn_s *rd);
  1277. QDF_STATUS (*send_wds_entry_list_cmd)(wmi_unified_t wmi_handle);
  1278. QDF_STATUS (*extract_wds_entry)(wmi_unified_t wmi_handle,
  1279. uint8_t *evt_buf,
  1280. struct wdsentry *wds_entry,
  1281. u_int32_t idx);
  1282. #ifdef WLAN_FEATURE_NAN_CONVERGENCE
  1283. QDF_STATUS (*send_ndp_initiator_req_cmd)(wmi_unified_t wmi_handle,
  1284. struct nan_datapath_initiator_req *req);
  1285. QDF_STATUS (*send_ndp_responder_req_cmd)(wmi_unified_t wmi_handle,
  1286. struct nan_datapath_responder_req *req);
  1287. QDF_STATUS (*send_ndp_end_req_cmd)(wmi_unified_t wmi_handle,
  1288. struct nan_datapath_end_req *req);
  1289. QDF_STATUS (*extract_ndp_initiator_rsp)(wmi_unified_t wmi_handle,
  1290. uint8_t *data, struct nan_datapath_initiator_rsp *rsp);
  1291. QDF_STATUS (*extract_ndp_ind)(wmi_unified_t wmi_handle,
  1292. uint8_t *data, struct nan_datapath_indication_event *ind);
  1293. QDF_STATUS (*extract_ndp_confirm)(wmi_unified_t wmi_handle,
  1294. uint8_t *data, struct nan_datapath_confirm_event *ev);
  1295. QDF_STATUS (*extract_ndp_responder_rsp)(wmi_unified_t wmi_handle,
  1296. uint8_t *data, struct nan_datapath_responder_rsp *rsp);
  1297. QDF_STATUS (*extract_ndp_end_rsp)(wmi_unified_t wmi_handle,
  1298. uint8_t *data, struct nan_datapath_end_rsp_event *rsp);
  1299. QDF_STATUS (*extract_ndp_end_ind)(wmi_unified_t wmi_handle,
  1300. uint8_t *data, struct nan_datapath_end_indication_event **ind);
  1301. QDF_STATUS (*extract_ndp_sch_update)(wmi_unified_t wmi_handle,
  1302. uint8_t *data, struct nan_datapath_sch_update_event *ind);
  1303. #endif /* WLAN_FEATURE_NAN_CONVERGENCE */
  1304. QDF_STATUS (*send_obss_detection_cfg_cmd)(wmi_unified_t wmi_handle,
  1305. struct wmi_obss_detection_cfg_param *obss_cfg_param);
  1306. QDF_STATUS (*extract_obss_detection_info)(uint8_t *evt_buf,
  1307. struct wmi_obss_detect_info *info);
  1308. #ifdef WLAN_SUPPORT_FILS
  1309. QDF_STATUS (*send_vdev_fils_enable_cmd)(wmi_unified_t wmi_handle,
  1310. struct config_fils_params *param);
  1311. QDF_STATUS (*extract_swfda_vdev_id)(wmi_unified_t wmi_handle, void *evt_buf,
  1312. uint32_t *vdev_id);
  1313. QDF_STATUS (*send_fils_discovery_send_cmd)(wmi_unified_t wmi_handle,
  1314. struct fd_params *param);
  1315. #endif /* WLAN_SUPPORT_FILS */
  1316. QDF_STATUS
  1317. (*send_roam_scan_stats_cmd)(wmi_unified_t wmi_handle,
  1318. struct wmi_roam_scan_stats_req *params);
  1319. QDF_STATUS
  1320. (*extract_roam_scan_stats_res_evt)(wmi_unified_t wmi_handle,
  1321. void *evt_buf,
  1322. uint32_t *vdev_id,
  1323. struct wmi_roam_scan_stats_res **res_param);
  1324. QDF_STATUS
  1325. (*extract_offload_bcn_tx_status_evt)(wmi_unified_t wmi_handle,
  1326. void *evt_buf, uint32_t *vdev_id,
  1327. uint32_t *tx_status);
  1328. void (*wmi_pdev_id_conversion_enable)(wmi_unified_t wmi_handle);
  1329. void (*send_time_stamp_sync_cmd)(wmi_unified_t wmi_handle);
  1330. void (*wmi_free_allocated_event)(uint32_t cmd_event_id,
  1331. void **wmi_cmd_struct_ptr);
  1332. int (*wmi_check_and_pad_event)(void *os_handle, void *param_struc_ptr,
  1333. uint32_t param_buf_len,
  1334. uint32_t wmi_cmd_event_id,
  1335. void **wmi_cmd_struct_ptr);
  1336. int (*wmi_check_command_params)(void *os_handle, void *param_struc_ptr,
  1337. uint32_t param_buf_len,
  1338. uint32_t wmi_cmd_event_id);
  1339. #ifdef WLAN_SUPPORT_TWT
  1340. QDF_STATUS (*send_twt_enable_cmd)(wmi_unified_t wmi_handle,
  1341. struct wmi_twt_enable_param *params);
  1342. QDF_STATUS (*send_twt_disable_cmd)(wmi_unified_t wmi_handle,
  1343. struct wmi_twt_disable_param *params);
  1344. QDF_STATUS (*send_twt_add_dialog_cmd)(wmi_unified_t wmi_handle,
  1345. struct wmi_twt_add_dialog_param *params);
  1346. QDF_STATUS (*send_twt_del_dialog_cmd)(wmi_unified_t wmi_handle,
  1347. struct wmi_twt_del_dialog_param *params);
  1348. QDF_STATUS (*send_twt_pause_dialog_cmd)(wmi_unified_t wmi_handle,
  1349. struct wmi_twt_pause_dialog_cmd_param *params);
  1350. QDF_STATUS (*send_twt_resume_dialog_cmd)(wmi_unified_t wmi_handle,
  1351. struct wmi_twt_resume_dialog_cmd_param *params);
  1352. QDF_STATUS (*extract_twt_enable_comp_event)(wmi_unified_t wmi_handle,
  1353. uint8_t *evt_buf,
  1354. struct wmi_twt_enable_complete_event_param *params);
  1355. QDF_STATUS (*extract_twt_disable_comp_event)(wmi_unified_t wmi_handle,
  1356. uint8_t *evt_buf,
  1357. struct wmi_twt_disable_complete_event *params);
  1358. QDF_STATUS (*extract_twt_add_dialog_comp_event)(wmi_unified_t wmi_handle,
  1359. uint8_t *evt_buf,
  1360. struct wmi_twt_add_dialog_complete_event_param *params);
  1361. QDF_STATUS (*extract_twt_del_dialog_comp_event)(wmi_unified_t wmi_handle,
  1362. uint8_t *evt_buf,
  1363. struct wmi_twt_del_dialog_complete_event_param *params);
  1364. QDF_STATUS (*extract_twt_pause_dialog_comp_event)(wmi_unified_t wmi_handle,
  1365. uint8_t *evt_buf,
  1366. struct wmi_twt_pause_dialog_complete_event_param *params);
  1367. QDF_STATUS (*extract_twt_resume_dialog_comp_event)(wmi_unified_t wmi_handle,
  1368. uint8_t *evt_buf,
  1369. struct wmi_twt_resume_dialog_complete_event_param *params);
  1370. #endif
  1371. #ifdef QCA_SUPPORT_CP_STATS
  1372. QDF_STATUS (*extract_cca_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1373. struct wmi_host_congestion_stats *stats);
  1374. #endif /* QCA_SUPPORT_CP_STATS */
  1375. #if defined(WLAN_DFS_PARTIAL_OFFLOAD) && defined(HOST_DFS_SPOOF_TEST)
  1376. QDF_STATUS (*send_dfs_average_radar_params_cmd)(
  1377. wmi_unified_t wmi_handle,
  1378. struct dfs_radar_found_params *params);
  1379. QDF_STATUS (*extract_dfs_status_from_fw)(wmi_unified_t wmi_handle,
  1380. void *evt_buf,
  1381. uint32_t *dfs_status_check);
  1382. #endif
  1383. #ifdef OBSS_PD
  1384. QDF_STATUS (*send_obss_spatial_reuse_set)(wmi_unified_t wmi_handle,
  1385. struct wmi_host_obss_spatial_reuse_set_param
  1386. *obss_spatial_reuse_param);
  1387. #endif
  1388. QDF_STATUS
  1389. (*extract_ctl_failsafe_check_ev_param)(
  1390. wmi_unified_t wmi_handle,
  1391. void *evt_buf,
  1392. struct wmi_host_pdev_ctl_failsafe_event *param);
  1393. };
  1394. /* Forward declartion for psoc*/
  1395. struct wlan_objmgr_psoc;
  1396. /**
  1397. * struct wmi_init_cmd - Saved wmi INIT command
  1398. * @buf: Buffer containing the wmi INIT command
  1399. * @buf_len: Length of the buffer
  1400. */
  1401. struct wmi_cmd_init {
  1402. wmi_buf_t buf;
  1403. uint32_t buf_len;
  1404. };
  1405. /**
  1406. * @abi_version_0: WMI Major and Minor versions
  1407. * @abi_version_1: WMI change revision
  1408. * @abi_version_ns_0: ABI version namespace first four dwords
  1409. * @abi_version_ns_1: ABI version namespace second four dwords
  1410. * @abi_version_ns_2: ABI version namespace third four dwords
  1411. * @abi_version_ns_3: ABI version namespace fourth four dwords
  1412. */
  1413. struct wmi_host_abi_version {
  1414. uint32_t abi_version_0;
  1415. uint32_t abi_version_1;
  1416. uint32_t abi_version_ns_0;
  1417. uint32_t abi_version_ns_1;
  1418. uint32_t abi_version_ns_2;
  1419. uint32_t abi_version_ns_3;
  1420. };
  1421. #define NUM_DEBUG_INFOS 9
  1422. struct wmi_unified {
  1423. void *scn_handle; /* handle to device */
  1424. osdev_t osdev; /* handle to use OS-independent services */
  1425. struct wbuff_mod_handle *wbuff_handle; /* handle to wbuff */
  1426. qdf_atomic_t pending_cmds;
  1427. HTC_ENDPOINT_ID wmi_endpoint_id;
  1428. uint16_t max_msg_len;
  1429. uint32_t *event_id;
  1430. wmi_unified_event_handler *event_handler;
  1431. enum wmi_rx_exec_ctx *ctx;
  1432. void *htc_handle;
  1433. qdf_spinlock_t eventq_lock;
  1434. qdf_nbuf_queue_t event_queue;
  1435. qdf_work_t rx_event_work;
  1436. qdf_workqueue_t *wmi_rx_work_queue;
  1437. int wmi_stop_in_progress;
  1438. struct wmi_host_abi_version fw_abi_version;
  1439. struct wmi_host_abi_version final_abi_vers;
  1440. uint32_t num_of_diag_events_logs;
  1441. uint32_t *events_logs_list;
  1442. #ifdef WLAN_OPEN_SOURCE
  1443. struct fwdebug dbglog;
  1444. struct dentry *debugfs_phy;
  1445. #endif /* WLAN_OPEN_SOURCE */
  1446. #ifdef WMI_INTERFACE_EVENT_LOGGING
  1447. struct wmi_debug_log_info log_info;
  1448. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  1449. qdf_atomic_t is_target_suspended;
  1450. #ifdef FEATURE_RUNTIME_PM
  1451. qdf_atomic_t runtime_pm_inprogress;
  1452. #endif
  1453. qdf_atomic_t is_wow_bus_suspended;
  1454. bool tag_crash_inject;
  1455. bool tgt_force_assert_enable;
  1456. enum wmi_target_type target_type;
  1457. struct wmi_rx_ops rx_ops;
  1458. struct wmi_ops *ops;
  1459. bool use_cookie;
  1460. bool wmi_stopinprogress;
  1461. uint32_t *wmi_events;
  1462. #ifndef CONFIG_MCL
  1463. uint32_t *pdev_param;
  1464. uint32_t *vdev_param;
  1465. #endif
  1466. uint32_t *services;
  1467. struct wmi_soc *soc;
  1468. uint16_t wmi_max_cmds;
  1469. struct dentry *debugfs_de[NUM_DEBUG_INFOS];
  1470. #ifdef WMI_EXT_DBG
  1471. int wmi_ext_dbg_msg_queue_size;
  1472. qdf_list_t wmi_ext_dbg_msg_queue;
  1473. qdf_spinlock_t wmi_ext_dbg_msg_queue_lock;
  1474. qdf_dentry_t wmi_ext_dbg_dentry;
  1475. #endif /*WMI_EXT_DBG*/
  1476. };
  1477. #define WMI_MAX_RADIOS 3
  1478. struct wmi_soc {
  1479. struct wlan_objmgr_psoc *wmi_psoc;
  1480. void *scn_handle; /* handle to device */
  1481. qdf_atomic_t num_pdevs;
  1482. enum wmi_target_type target_type;
  1483. void *htc_handle;
  1484. uint32_t event_id[WMI_UNIFIED_MAX_EVENT];
  1485. wmi_unified_event_handler event_handler[WMI_UNIFIED_MAX_EVENT];
  1486. uint32_t max_event_idx;
  1487. enum wmi_rx_exec_ctx ctx[WMI_UNIFIED_MAX_EVENT];
  1488. qdf_spinlock_t ctx_lock;
  1489. struct wmi_unified *wmi_pdev[WMI_MAX_RADIOS];
  1490. HTC_ENDPOINT_ID wmi_endpoint_id[WMI_MAX_RADIOS];
  1491. uint16_t max_msg_len[WMI_MAX_RADIOS];
  1492. struct wmi_ops *ops;
  1493. const uint32_t *svc_ids;
  1494. uint32_t wmi_events[wmi_events_max];
  1495. /* WMI service bitmap received from target */
  1496. uint32_t *wmi_service_bitmap;
  1497. uint32_t *wmi_ext_service_bitmap;
  1498. #ifndef CONFIG_MCL
  1499. uint32_t pdev_param[wmi_pdev_param_max];
  1500. uint32_t vdev_param[wmi_vdev_param_max];
  1501. #endif
  1502. uint32_t services[wmi_services_max];
  1503. uint16_t wmi_max_cmds;
  1504. uint32_t soc_idx;
  1505. #ifdef WMI_INTERFACE_EVENT_LOGGING
  1506. uint32_t buf_offset_command;
  1507. uint32_t buf_offset_event;
  1508. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  1509. };
  1510. /**
  1511. * wmi_mtrace() - Wrappper function for qdf_mtrace api
  1512. * @message_id: 32-Bit Wmi message ID
  1513. * @vdev_id: Vdev ID
  1514. * @data: Actual message contents
  1515. *
  1516. * This function converts the 32-bit WMI message ID in 15-bit message ID
  1517. * format for qdf_mtrace as in qdf_mtrace message there are only 15
  1518. * bits reserved for message ID.
  1519. * out of these 15-bits, 8-bits (From MSB) specifies the WMI_GRP_ID
  1520. * and remaining 7-bits specifies the actual WMI command. With this
  1521. * notation there can be maximum 256 groups and each group can have
  1522. * max 128 commands can be supported.
  1523. *
  1524. * Return: None
  1525. */
  1526. void wmi_mtrace(uint32_t message_id, uint16_t vdev_id, uint32_t data);
  1527. void wmi_unified_register_module(enum wmi_target_type target_type,
  1528. void (*wmi_attach)(wmi_unified_t wmi_handle));
  1529. void wmi_tlv_init(void);
  1530. void wmi_non_tlv_init(void);
  1531. #ifdef WMI_NON_TLV_SUPPORT
  1532. /* ONLY_NON_TLV_TARGET:TLV attach dummy function definition for case when
  1533. * driver supports only NON-TLV target (WIN mainline) */
  1534. #define wmi_tlv_attach(x) qdf_print("TLV Unavailable")
  1535. #else
  1536. void wmi_tlv_attach(wmi_unified_t wmi_handle);
  1537. #endif
  1538. void wmi_non_tlv_attach(wmi_unified_t wmi_handle);
  1539. #ifdef FEATURE_WLAN_EXTSCAN
  1540. void wmi_extscan_attach_tlv(struct wmi_unified *wmi_handle);
  1541. #else
  1542. static inline void wmi_extscan_attach_tlv(struct wmi_unified *wmi_handle)
  1543. {
  1544. }
  1545. #endif
  1546. #ifdef WMI_SMART_ANT_SUPPORT
  1547. void wmi_smart_ant_attach_tlv(struct wmi_unified *wmi_handle);
  1548. #else
  1549. static inline void wmi_smart_ant_attach_tlv(struct wmi_unified *wmi_handle)
  1550. {
  1551. }
  1552. #endif
  1553. #ifdef WMI_DBR_SUPPORT
  1554. void wmi_dbr_attach_tlv(struct wmi_unified *wmi_handle);
  1555. #else
  1556. static inline void wmi_dbr_attach_tlv(struct wmi_unified *wmi_handle)
  1557. {
  1558. }
  1559. #endif
  1560. #ifdef WMI_ATF_SUPPORT
  1561. void wmi_atf_attach_tlv(struct wmi_unified *wmi_handle);
  1562. #else
  1563. static inline void wmi_atf_attach_tlv(struct wmi_unified *wmi_handle)
  1564. {
  1565. }
  1566. #endif
  1567. #ifdef WMI_AP_SUPPORT
  1568. void wmi_ap_attach_tlv(struct wmi_unified *wmi_handle);
  1569. #else
  1570. static inline void wmi_ap_attach_tlv(struct wmi_unified *wmi_handle)
  1571. {
  1572. }
  1573. #endif
  1574. #ifdef WLAN_FEATURE_DSRC
  1575. void wmi_ocb_attach_tlv(wmi_unified_t wmi_handle);
  1576. #else
  1577. static inline void wmi_ocb_attach_tlv(wmi_unified_t wmi_handle)
  1578. {
  1579. }
  1580. #endif
  1581. #ifdef WLAN_FEATURE_NAN_CONVERGENCE
  1582. void wmi_nan_attach_tlv(wmi_unified_t wmi_handle);
  1583. #else
  1584. static inline void wmi_nan_attach_tlv(wmi_unified_t wmi_handle)
  1585. {
  1586. }
  1587. #endif
  1588. #ifdef FEATURE_P2P_LISTEN_OFFLOAD
  1589. void wmi_p2p_listen_offload_attach_tlv(wmi_unified_t wmi_handle);
  1590. #else
  1591. static inline
  1592. void wmi_p2p_listen_offload_attach_tlv(wmi_unified_t wmi_handle)
  1593. {
  1594. }
  1595. #endif
  1596. #ifdef CONVERGED_P2P_ENABLE
  1597. void wmi_p2p_attach_tlv(wmi_unified_t wmi_handle);
  1598. #else
  1599. static inline void wmi_p2p_attach_tlv(struct wmi_unified *wmi_handle)
  1600. {
  1601. }
  1602. #endif
  1603. #ifdef FEATURE_LFR_SUBNET_DETECTION
  1604. void wmi_lfr_subnet_detection_attach_tlv(wmi_unified_t wmi_handle);
  1605. #else
  1606. static inline
  1607. void wmi_lfr_subnet_detection_attach_tlv(struct wmi_unified *wmi_handle)
  1608. {
  1609. }
  1610. #endif
  1611. #ifdef FEATURE_RSSI_MONITOR
  1612. void wmi_rssi_monitor_attach_tlv(wmi_unified_t wmi_handle);
  1613. #else
  1614. static inline
  1615. void wmi_rssi_monitor_attach_tlv(struct wmi_unified *wmi_handle)
  1616. {
  1617. }
  1618. #endif
  1619. #ifdef FEATURE_WLAN_ESE
  1620. void wmi_ese_attach_tlv(wmi_unified_t wmi_handle);
  1621. #else
  1622. static inline void wmi_ese_attach_tlv(struct wmi_unified *wmi_handle)
  1623. {
  1624. }
  1625. #endif
  1626. #ifdef WLAN_FEATURE_ROAM_OFFLOAD
  1627. void wmi_roam_offload_attach_tlv(wmi_unified_t wmi_handle);
  1628. #else
  1629. static inline
  1630. void wmi_roam_offload_attach_tlv(struct wmi_unified *wmi_handle)
  1631. {
  1632. }
  1633. #endif
  1634. #ifdef WLAN_FEATURE_FILS_SK
  1635. void wmi_fils_sk_attach_tlv(wmi_unified_t wmi_handle);
  1636. #else
  1637. static inline void wmi_fils_sk_attach_tlv(struct wmi_unified *wmi_handle)
  1638. {
  1639. }
  1640. #endif
  1641. #ifdef WMI_ROAM_SUPPORT
  1642. void wmi_roam_attach_tlv(struct wmi_unified *wmi_handle);
  1643. #else
  1644. static inline void wmi_roam_attach_tlv(struct wmi_unified *wmi_handle)
  1645. {
  1646. }
  1647. #endif
  1648. #ifdef WMI_CONCURRENCY_SUPPORT
  1649. void wmi_concurrency_attach_tlv(struct wmi_unified *wmi_handle);
  1650. #else
  1651. static inline void wmi_concurrency_attach_tlv(struct wmi_unified *wmi_handle)
  1652. {
  1653. }
  1654. #endif
  1655. #ifdef FEATURE_WLAN_D0WOW
  1656. void wmi_d0wow_attach_tlv(struct wmi_unified *wmi_handle);
  1657. #else
  1658. static inline void wmi_d0wow_attach_tlv(struct wmi_unified *wmi_handle)
  1659. {
  1660. }
  1661. #endif
  1662. #ifdef FEATURE_WLAN_RA_FILTERING
  1663. void wmi_ra_filtering_attach_tlv(struct wmi_unified *wmi_handle);
  1664. #else
  1665. static inline
  1666. void wmi_ra_filtering_attach_tlv(struct wmi_unified *wmi_handle)
  1667. {
  1668. }
  1669. #endif
  1670. #ifdef FEATURE_WLAN_LPHB
  1671. void wmi_lphb_attach_tlv(struct wmi_unified *wmi_handle);
  1672. #else
  1673. static inline void wmi_lphb_attach_tlv(struct wmi_unified *wmi_handle)
  1674. {
  1675. }
  1676. #endif
  1677. #ifdef WLAN_FEATURE_PACKET_FILTERING
  1678. void wmi_packet_filtering_attach_tlv(struct wmi_unified *wmi_handle);
  1679. #else
  1680. static inline
  1681. void wmi_packet_filtering_attach_tlv(struct wmi_unified *wmi_handle)
  1682. {
  1683. }
  1684. #endif
  1685. #ifdef WLAN_FEATURE_EXTWOW_SUPPORT
  1686. void wmi_extwow_attach_tlv(struct wmi_unified *wmi_handle);
  1687. #else
  1688. static inline void wmi_extwow_attach_tlv(struct wmi_unified *wmi_handle)
  1689. {
  1690. }
  1691. #endif
  1692. #ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
  1693. void wmi_pmo_attach_tlv(struct wmi_unified *wmi_handle);
  1694. #else
  1695. static inline void wmi_pmo_attach_tlv(struct wmi_unified *wmi_handle)
  1696. {
  1697. }
  1698. #endif
  1699. #ifdef CONVERGED_TDLS_ENABLE
  1700. void wmi_tdls_attach_tlv(struct wmi_unified *wmi_handle);
  1701. #else
  1702. static inline void wmi_tdls_attach_tlv(struct wmi_unified *wmi_handle)
  1703. {
  1704. }
  1705. #endif
  1706. #ifdef WLAN_FEATURE_DISA
  1707. void wmi_disa_attach_tlv(struct wmi_unified *wmi_handle);
  1708. #else
  1709. static inline void wmi_disa_attach_tlv(struct wmi_unified *wmi_handle)
  1710. {
  1711. }
  1712. #endif
  1713. #ifdef WLAN_POLICY_MGR_ENABLE
  1714. void wmi_policy_mgr_attach_tlv(struct wmi_unified *wmi_handle);
  1715. #else
  1716. static inline
  1717. void wmi_policy_mgr_attach_tlv(struct wmi_unified *wmi_handle)
  1718. {
  1719. }
  1720. #endif
  1721. #ifdef WMI_STA_SUPPORT
  1722. void wmi_sta_attach_tlv(struct wmi_unified *wmi_handle);
  1723. #else
  1724. static inline void wmi_sta_attach_tlv(struct wmi_unified *wmi_handle)
  1725. {
  1726. }
  1727. #endif
  1728. /**
  1729. * wmi_align() - provides word aligned parameter
  1730. * @param: parameter to be aligned
  1731. *
  1732. * Return: word aligned parameter
  1733. */
  1734. static inline uint32_t wmi_align(uint32_t param)
  1735. {
  1736. return roundup(param, sizeof(uint32_t));
  1737. }
  1738. /**
  1739. * wmi_vdev_map_to_vdev_id() - Provides vdev id corresponding to idx
  1740. * from vdev map
  1741. * @vdev_map: Bitmask containing information of active vdev ids
  1742. * @idx: Index referring to the i'th bit set from LSB in vdev map
  1743. *
  1744. * This API returns the vdev id for the i'th bit set from LSB in vdev map.
  1745. * Index runs through 1 from maximum number of vdevs set in the vdev map
  1746. *
  1747. * Return: vdev id of the vdev object
  1748. */
  1749. static inline uint32_t wmi_vdev_map_to_vdev_id(uint32_t vdev_map,
  1750. uint32_t idx)
  1751. {
  1752. uint32_t vdev_count = 0, vdev_set = 0, vdev_id = WLAN_INVALID_VDEV_ID;
  1753. while (vdev_map) {
  1754. vdev_set += (vdev_map & 0x1);
  1755. if (vdev_set == (idx+1)) {
  1756. vdev_id = vdev_count;
  1757. break;
  1758. }
  1759. vdev_map >>= 1;
  1760. vdev_count++;
  1761. }
  1762. return vdev_id;
  1763. }
  1764. /**
  1765. * wmi_vdev_map_to_num_vdevs() - Provides number of vdevs active based on the
  1766. * vdev map received from FW
  1767. * @vdev_map: Bitmask containing information of active vdev ids
  1768. *
  1769. * Return: Number of vdevs set in the vdev bit mask
  1770. */
  1771. static inline uint32_t wmi_vdev_map_to_num_vdevs(uint32_t vdev_map)
  1772. {
  1773. uint32_t num_vdevs = 0;
  1774. while (vdev_map) {
  1775. num_vdevs += (vdev_map & 0x1);
  1776. vdev_map >>= 1;
  1777. }
  1778. return num_vdevs;
  1779. }
  1780. #ifdef WMI_EXT_DBG
  1781. /**
  1782. * wmi_ext_dbg_msg_get() - Allocate memory for wmi debug msg
  1783. *
  1784. * @buflen: Length of WMI message buffer
  1785. *
  1786. * Return: Allocated msg buffer else NULL on failure.
  1787. */
  1788. static inline struct wmi_ext_dbg_msg *wmi_ext_dbg_msg_get(uint32_t buflen)
  1789. {
  1790. return qdf_mem_malloc(sizeof(struct wmi_ext_dbg_msg) + buflen);
  1791. }
  1792. /**
  1793. * wmi_ext_dbg_msg_put() - Free wmi debug msg buffer
  1794. *
  1795. * @msg: wmi message buffer to be freed
  1796. *
  1797. * Return: none
  1798. */
  1799. static inline void wmi_ext_dbg_msg_put(struct wmi_ext_dbg_msg *msg)
  1800. {
  1801. qdf_mem_free(msg);
  1802. }
  1803. #else
  1804. static inline QDF_STATUS wmi_ext_dbg_msg_cmd_record(struct wmi_unified
  1805. *wmi_handle,
  1806. uint8_t *buf, uint32_t len)
  1807. {
  1808. return QDF_STATUS_SUCCESS;
  1809. }
  1810. static inline QDF_STATUS wmi_ext_dbg_msg_event_record(struct wmi_unified
  1811. *wmi_handle,
  1812. uint8_t *buf,
  1813. uint32_t len)
  1814. {
  1815. return QDF_STATUS_SUCCESS;
  1816. }
  1817. static inline QDF_STATUS wmi_ext_dbgfs_init(struct wmi_unified *wmi_handle)
  1818. {
  1819. return QDF_STATUS_SUCCESS;
  1820. }
  1821. static inline QDF_STATUS wmi_ext_dbgfs_deinit(struct wmi_unified *wmi_handle)
  1822. {
  1823. return QDF_STATUS_SUCCESS;
  1824. }
  1825. #endif /*WMI_EXT_DBG */
  1826. #endif