wmi_unified_priv.h 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  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. #ifdef CONVERGED_P2P_ENABLE
  33. #include <wlan_p2p_public_struct.h>
  34. #endif
  35. #ifdef DFS_COMPONENT_ENABLE
  36. #include <wlan_dfs_public_struct.h>
  37. #endif
  38. #include <qdf_threads.h>
  39. #ifdef WLAN_SUPPORT_GREEN_AP
  40. #include "wlan_green_ap_api.h"
  41. #endif
  42. #ifdef WLAN_FEATURE_NAN_CONVERGENCE
  43. #include "nan_public_structs.h"
  44. #endif
  45. #ifdef WLAN_SUPPORT_TWT
  46. #include "wmi_unified_twt_param.h"
  47. #endif
  48. #define WMI_UNIFIED_MAX_EVENT 0x100
  49. #ifdef WMI_INTERFACE_EVENT_LOGGING
  50. #define WMI_EVENT_DEBUG_MAX_ENTRY (1024)
  51. #define WMI_EVENT_DEBUG_ENTRY_MAX_LENGTH (16)
  52. /* wmi_mgmt commands */
  53. #define WMI_MGMT_EVENT_DEBUG_MAX_ENTRY (256)
  54. /**
  55. * struct wmi_command_debug - WMI command log buffer data type
  56. * @ command - Store WMI Command id
  57. * @ data - Stores WMI command data
  58. * @ time - Time of WMI command handling
  59. */
  60. struct wmi_command_debug {
  61. uint32_t command;
  62. /*16 bytes of WMI cmd excluding TLV and WMI headers */
  63. uint32_t data[WMI_EVENT_DEBUG_ENTRY_MAX_LENGTH/sizeof(uint32_t)];
  64. uint64_t time;
  65. };
  66. /**
  67. * struct wmi_event_debug - WMI event log buffer data type
  68. * @ command - Store WMI Event id
  69. * @ data - Stores WMI Event data
  70. * @ time - Time of WMI Event handling
  71. */
  72. struct wmi_event_debug {
  73. uint32_t event;
  74. /*16 bytes of WMI event data excluding TLV header */
  75. uint32_t data[WMI_EVENT_DEBUG_ENTRY_MAX_LENGTH/sizeof(uint32_t)];
  76. uint64_t time;
  77. };
  78. /**
  79. * struct wmi_command_header - Type for accessing frame data
  80. * @ type - 802.11 Frame type
  81. * @ subType - 802.11 Frame subtype
  82. * @ protVer - 802.11 Version
  83. */
  84. struct wmi_command_header {
  85. #ifndef ANI_LITTLE_BIT_ENDIAN
  86. uint32_t sub_type:4;
  87. uint32_t type:2;
  88. uint32_t prot_ver:2;
  89. #else
  90. uint32_t prot_ver:2;
  91. uint32_t type:2;
  92. uint32_t sub_type:4;
  93. #endif
  94. };
  95. /**
  96. * struct wmi_log_buf_t - WMI log buffer information type
  97. * @buf - Refernce to WMI log buffer
  98. * @ length - length of buffer
  99. * @ buf_tail_idx - Tail index of buffer
  100. * @ p_buf_tail_idx - refernce to buffer tail index. It is added to accommodate
  101. * unified design since MCL uses global variable for buffer tail index
  102. * @ size - the size of the buffer in number of entries
  103. */
  104. struct wmi_log_buf_t {
  105. void *buf;
  106. uint32_t length;
  107. uint32_t buf_tail_idx;
  108. uint32_t *p_buf_tail_idx;
  109. uint32_t size;
  110. };
  111. /**
  112. * struct wmi_debug_log_info - Meta data to hold information of all buffers
  113. * used for WMI logging
  114. * @wmi_command_log_buf_info - Buffer info for WMI Command log
  115. * @wmi_command_tx_cmp_log_buf_info - Buffer info for WMI Command Tx completion
  116. * log
  117. * @wmi_event_log_buf_info - Buffer info for WMI Event log
  118. * @wmi_rx_event_log_buf_info - Buffer info for WMI event received log
  119. * @wmi_mgmt_command_log_buf_info - Buffer info for WMI Management Command log
  120. * @wmi_mgmt_command_tx_cmp_log_buf_info - Buffer info for WMI Management
  121. * Command Tx completion log
  122. * @wmi_mgmt_event_log_buf_info - Buffer info for WMI Management event log
  123. * @wmi_record_lock - Lock WMI recording
  124. * @wmi_logging_enable - Enable/Disable state for WMI logging
  125. * @buf_offset_command - Offset from where WMI command data should be logged
  126. * @buf_offset_event - Offset from where WMI event data should be logged
  127. * @is_management_record - Function refernce to check if command/event is
  128. * management record
  129. * @wmi_id_to_name - Function refernce to API to convert Command id to
  130. * string name
  131. * @wmi_log_debugfs_dir - refernce to debugfs directory
  132. */
  133. struct wmi_debug_log_info {
  134. struct wmi_log_buf_t wmi_command_log_buf_info;
  135. struct wmi_log_buf_t wmi_command_tx_cmp_log_buf_info;
  136. struct wmi_log_buf_t wmi_event_log_buf_info;
  137. struct wmi_log_buf_t wmi_rx_event_log_buf_info;
  138. struct wmi_log_buf_t wmi_mgmt_command_log_buf_info;
  139. struct wmi_log_buf_t wmi_mgmt_command_tx_cmp_log_buf_info;
  140. struct wmi_log_buf_t wmi_mgmt_event_log_buf_info;
  141. qdf_spinlock_t wmi_record_lock;
  142. bool wmi_logging_enable;
  143. uint32_t buf_offset_command;
  144. uint32_t buf_offset_event;
  145. struct dentry *wmi_log_debugfs_dir;
  146. uint8_t wmi_instance_id;
  147. };
  148. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  149. #ifdef WLAN_OPEN_SOURCE
  150. struct fwdebug {
  151. struct sk_buff_head fwlog_queue;
  152. struct completion fwlog_completion;
  153. A_BOOL fwlog_open;
  154. };
  155. #endif /* WLAN_OPEN_SOURCE */
  156. /**
  157. * struct wmi_wq_dbg_info - WMI WQ debug info
  158. * @ wd_msg_type_id - wmi event id
  159. * @ wmi_wq - WMI workqueue struct
  160. * @ task - WMI workqueue task struct
  161. */
  162. struct wmi_wq_dbg_info {
  163. uint32_t wd_msg_type_id;
  164. qdf_workqueue_t *wmi_wq;
  165. qdf_thread_t *task;
  166. };
  167. struct wmi_ops {
  168. QDF_STATUS (*send_vdev_create_cmd)(wmi_unified_t wmi_handle,
  169. uint8_t macaddr[IEEE80211_ADDR_LEN],
  170. struct vdev_create_params *param);
  171. QDF_STATUS (*send_vdev_delete_cmd)(wmi_unified_t wmi_handle,
  172. uint8_t if_id);
  173. QDF_STATUS (*send_vdev_stop_cmd)(wmi_unified_t wmi,
  174. uint8_t vdev_id);
  175. QDF_STATUS (*send_vdev_down_cmd)(wmi_unified_t wmi,
  176. uint8_t vdev_id);
  177. QDF_STATUS (*send_vdev_start_cmd)(wmi_unified_t wmi,
  178. struct vdev_start_params *req);
  179. QDF_STATUS (*send_vdev_set_nac_rssi_cmd)(wmi_unified_t wmi,
  180. struct vdev_scan_nac_rssi_params *req);
  181. QDF_STATUS (*send_hidden_ssid_vdev_restart_cmd)(wmi_unified_t wmi_handle,
  182. struct hidden_ssid_vdev_restart_params *restart_params);
  183. QDF_STATUS (*send_peer_flush_tids_cmd)(wmi_unified_t wmi,
  184. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  185. struct peer_flush_params *param);
  186. QDF_STATUS (*send_peer_delete_cmd)(wmi_unified_t wmi,
  187. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  188. uint8_t vdev_id);
  189. QDF_STATUS (*send_peer_param_cmd)(wmi_unified_t wmi,
  190. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  191. struct peer_set_params *param);
  192. QDF_STATUS (*send_vdev_up_cmd)(wmi_unified_t wmi,
  193. uint8_t bssid[IEEE80211_ADDR_LEN],
  194. struct vdev_up_params *params);
  195. QDF_STATUS (*send_peer_create_cmd)(wmi_unified_t wmi,
  196. struct peer_create_params *param);
  197. #ifdef WLAN_SUPPORT_GREEN_AP
  198. QDF_STATUS (*send_green_ap_ps_cmd)(wmi_unified_t wmi_handle,
  199. uint32_t value, uint8_t pdev_id);
  200. QDF_STATUS (*extract_green_ap_egap_status_info)(
  201. uint8_t *evt_buf,
  202. struct wlan_green_ap_egap_status_info *egap_status_info_params);
  203. #endif
  204. QDF_STATUS
  205. (*send_pdev_utf_cmd)(wmi_unified_t wmi_handle,
  206. struct pdev_utf_params *param,
  207. uint8_t mac_id);
  208. QDF_STATUS
  209. (*send_pdev_param_cmd)(wmi_unified_t wmi_handle,
  210. struct pdev_params *param,
  211. uint8_t mac_id);
  212. QDF_STATUS (*send_suspend_cmd)(wmi_unified_t wmi_handle,
  213. struct suspend_params *param,
  214. uint8_t mac_id);
  215. QDF_STATUS (*send_resume_cmd)(wmi_unified_t wmi_handle,
  216. uint8_t mac_id);
  217. #ifdef FEATURE_WLAN_D0WOW
  218. QDF_STATUS (*send_d0wow_enable_cmd)(wmi_unified_t wmi_handle,
  219. uint8_t mac_id);
  220. QDF_STATUS (*send_d0wow_disable_cmd)(wmi_unified_t wmi_handle,
  221. uint8_t mac_id);
  222. #endif
  223. QDF_STATUS (*send_wow_enable_cmd)(wmi_unified_t wmi_handle,
  224. struct wow_cmd_params *param,
  225. uint8_t mac_id);
  226. QDF_STATUS (*send_set_ap_ps_param_cmd)(wmi_unified_t wmi_handle,
  227. uint8_t *peer_addr,
  228. struct ap_ps_params *param);
  229. QDF_STATUS (*send_set_sta_ps_param_cmd)(wmi_unified_t wmi_handle,
  230. struct sta_ps_params *param);
  231. QDF_STATUS (*send_crash_inject_cmd)(wmi_unified_t wmi_handle,
  232. struct crash_inject *param);
  233. QDF_STATUS
  234. (*send_dbglog_cmd)(wmi_unified_t wmi_handle,
  235. struct dbglog_params *dbglog_param);
  236. QDF_STATUS (*send_vdev_set_param_cmd)(wmi_unified_t wmi_handle,
  237. struct vdev_set_params *param);
  238. QDF_STATUS (*send_stats_request_cmd)(wmi_unified_t wmi_handle,
  239. uint8_t macaddr[IEEE80211_ADDR_LEN],
  240. struct stats_request_params *param);
  241. #ifdef CONFIG_WIN
  242. QDF_STATUS (*send_packet_log_enable_cmd)(wmi_unified_t wmi_handle,
  243. WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
  244. #else
  245. QDF_STATUS (*send_packet_log_enable_cmd)(wmi_unified_t wmi_handle,
  246. uint8_t macaddr[IEEE80211_ADDR_LEN],
  247. struct packet_enable_params *param);
  248. #endif
  249. QDF_STATUS (*send_packet_log_disable_cmd)(wmi_unified_t wmi_handle,
  250. uint8_t mac_id);
  251. QDF_STATUS (*send_beacon_send_cmd)(wmi_unified_t wmi_handle,
  252. struct beacon_params *param);
  253. QDF_STATUS (*send_beacon_tmpl_send_cmd)(wmi_unified_t wmi_handle,
  254. struct beacon_tmpl_params *param);
  255. QDF_STATUS (*send_peer_assoc_cmd)(wmi_unified_t wmi_handle,
  256. struct peer_assoc_params *param);
  257. QDF_STATUS (*send_scan_start_cmd)(wmi_unified_t wmi_handle,
  258. struct scan_req_params *param);
  259. QDF_STATUS (*send_scan_stop_cmd)(wmi_unified_t wmi_handle,
  260. struct scan_cancel_param *param);
  261. QDF_STATUS (*send_scan_chan_list_cmd)(wmi_unified_t wmi_handle,
  262. struct scan_chan_list_params *param);
  263. QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
  264. struct wmi_mgmt_params *param);
  265. QDF_STATUS (*send_offchan_data_tx_cmd)(wmi_unified_t wmi_handle,
  266. struct wmi_offchan_data_tx_params *param);
  267. QDF_STATUS (*send_modem_power_state_cmd)(wmi_unified_t wmi_handle,
  268. uint32_t param_value);
  269. QDF_STATUS (*send_set_sta_ps_mode_cmd)(wmi_unified_t wmi_handle,
  270. uint32_t vdev_id, uint8_t val);
  271. QDF_STATUS (*send_get_temperature_cmd)(wmi_unified_t wmi_handle);
  272. QDF_STATUS (*send_set_p2pgo_oppps_req_cmd)(wmi_unified_t wmi_handle,
  273. struct p2p_ps_params *oppps);
  274. QDF_STATUS (*send_set_p2pgo_noa_req_cmd)(wmi_unified_t wmi_handle,
  275. struct p2p_ps_params *noa);
  276. #ifdef CONVERGED_P2P_ENABLE
  277. QDF_STATUS (*send_p2p_lo_start_cmd)(wmi_unified_t wmi_handle,
  278. struct p2p_lo_start *param);
  279. QDF_STATUS (*send_p2p_lo_stop_cmd)(wmi_unified_t wmi_handle,
  280. uint8_t vdev_id);
  281. #endif
  282. QDF_STATUS (*send_set_smps_params_cmd)(wmi_unified_t wmi_handle,
  283. uint8_t vdev_id,
  284. int value);
  285. QDF_STATUS (*send_set_mimops_cmd)(wmi_unified_t wmi_handle,
  286. uint8_t vdev_id, int value);
  287. QDF_STATUS (*send_set_sta_uapsd_auto_trig_cmd)(wmi_unified_t wmi_handle,
  288. struct sta_uapsd_trig_params *param);
  289. #ifdef WLAN_FEATURE_DSRC
  290. QDF_STATUS (*send_ocb_set_utc_time_cmd)(wmi_unified_t wmi_handle,
  291. struct ocb_utc_param *utc);
  292. QDF_STATUS (*send_ocb_get_tsf_timer_cmd)(wmi_unified_t wmi_handle,
  293. uint8_t vdev_id);
  294. QDF_STATUS (*send_ocb_start_timing_advert_cmd)(wmi_unified_t wmi_handle,
  295. struct ocb_timing_advert_param *timing_advert);
  296. QDF_STATUS (*send_ocb_stop_timing_advert_cmd)(wmi_unified_t wmi_handle,
  297. struct ocb_timing_advert_param *timing_advert);
  298. QDF_STATUS (*send_dcc_get_stats_cmd)(wmi_unified_t wmi_handle,
  299. struct ocb_dcc_get_stats_param *get_stats_param);
  300. QDF_STATUS (*send_dcc_clear_stats_cmd)(wmi_unified_t wmi_handle,
  301. uint32_t vdev_id, uint32_t dcc_stats_bitmap);
  302. QDF_STATUS (*send_dcc_update_ndl_cmd)(wmi_unified_t wmi_handle,
  303. struct ocb_dcc_update_ndl_param *update_ndl_param);
  304. QDF_STATUS (*send_ocb_set_config_cmd)(wmi_unified_t wmi_handle,
  305. struct ocb_config *config);
  306. QDF_STATUS (*extract_ocb_chan_config_resp)(wmi_unified_t wmi_hdl,
  307. void *evt_buf,
  308. uint32_t *status);
  309. QDF_STATUS (*extract_ocb_tsf_timer)(wmi_unified_t wmi_hdl,
  310. void *evt_buf,
  311. struct ocb_get_tsf_timer_response *resp);
  312. QDF_STATUS (*extract_dcc_update_ndl_resp)(wmi_unified_t wmi_hdl,
  313. void *evt_buf, struct ocb_dcc_update_ndl_response *resp);
  314. QDF_STATUS (*extract_dcc_stats)(wmi_unified_t wmi_hdl,
  315. void *evt_buf,
  316. struct ocb_dcc_get_stats_response **response);
  317. #endif
  318. QDF_STATUS (*send_lro_config_cmd)(wmi_unified_t wmi_handle,
  319. struct wmi_lro_config_cmd_t *wmi_lro_cmd);
  320. QDF_STATUS (*send_set_thermal_mgmt_cmd)(wmi_unified_t wmi_handle,
  321. struct thermal_cmd_params *thermal_info);
  322. QDF_STATUS (*send_peer_rate_report_cmd)(wmi_unified_t wmi_handle,
  323. struct wmi_peer_rate_report_params *rate_report_params);
  324. QDF_STATUS (*send_set_mcc_channel_time_quota_cmd)
  325. (wmi_unified_t wmi_handle,
  326. uint32_t adapter_1_chan_freq,
  327. uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
  328. QDF_STATUS (*send_set_mcc_channel_time_latency_cmd)
  329. (wmi_unified_t wmi_handle,
  330. uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
  331. QDF_STATUS (*send_set_enable_disable_mcc_adaptive_scheduler_cmd)(
  332. wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler,
  333. uint32_t pdev_id);
  334. QDF_STATUS (*send_p2p_go_set_beacon_ie_cmd)(wmi_unified_t wmi_handle,
  335. uint32_t vdev_id, uint8_t *p2p_ie);
  336. QDF_STATUS (*send_probe_rsp_tmpl_send_cmd)(wmi_unified_t wmi_handle,
  337. uint8_t vdev_id,
  338. struct wmi_probe_resp_params *probe_rsp_info);
  339. QDF_STATUS (*send_setup_install_key_cmd)(wmi_unified_t wmi_handle,
  340. struct set_key_params *key_params);
  341. QDF_STATUS (*send_vdev_set_gtx_cfg_cmd)(wmi_unified_t wmi_handle,
  342. uint32_t if_id,
  343. struct wmi_gtx_config *gtx_info);
  344. QDF_STATUS (*send_set_sta_keep_alive_cmd)(wmi_unified_t wmi_handle,
  345. struct sta_params *params);
  346. QDF_STATUS (*send_set_sta_sa_query_param_cmd)(wmi_unified_t wmi_handle,
  347. uint8_t vdev_id, uint32_t max_retries,
  348. uint32_t retry_interval);
  349. QDF_STATUS (*send_set_gateway_params_cmd)(wmi_unified_t wmi_handle,
  350. struct gateway_update_req_param *req);
  351. QDF_STATUS (*send_set_rssi_monitoring_cmd)(wmi_unified_t wmi_handle,
  352. struct rssi_monitor_param *req);
  353. QDF_STATUS (*send_scan_probe_setoui_cmd)(wmi_unified_t wmi_handle,
  354. struct scan_mac_oui *psetoui);
  355. QDF_STATUS (*send_reset_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
  356. struct wifi_passpoint_req_param *req);
  357. QDF_STATUS (*send_roam_scan_offload_rssi_thresh_cmd)(wmi_unified_t wmi_handle,
  358. struct roam_offload_scan_rssi_params *roam_req);
  359. QDF_STATUS (*send_roam_mawc_params_cmd)(wmi_unified_t wmi_handle,
  360. struct wmi_mawc_roam_params *params);
  361. QDF_STATUS (*send_roam_scan_filter_cmd)(wmi_unified_t wmi_handle,
  362. struct roam_scan_filter_params *roam_req);
  363. #if defined(WLAN_FEATURE_FILS_SK)
  364. QDF_STATUS (*send_roam_scan_hlp_cmd) (wmi_unified_t wmi_handle,
  365. struct hlp_params *params);
  366. #endif
  367. QDF_STATUS (*send_set_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
  368. struct wifi_passpoint_req_param *req);
  369. QDF_STATUS (*send_set_epno_network_list_cmd)(wmi_unified_t wmi_handle,
  370. struct wifi_enhanched_pno_params *req);
  371. QDF_STATUS (*send_extscan_get_capabilities_cmd)(wmi_unified_t wmi_handle,
  372. struct extscan_capabilities_params *pgetcapab);
  373. QDF_STATUS (*send_extscan_get_cached_results_cmd)(wmi_unified_t wmi_handle,
  374. struct extscan_cached_result_params *pcached_results);
  375. QDF_STATUS (*send_extscan_stop_change_monitor_cmd)(wmi_unified_t wmi_handle,
  376. struct extscan_capabilities_reset_params *reset_req);
  377. QDF_STATUS (*send_extscan_start_change_monitor_cmd)(wmi_unified_t wmi_handle,
  378. struct extscan_set_sig_changereq_params *
  379. psigchange);
  380. QDF_STATUS (*send_extscan_stop_hotlist_monitor_cmd)(wmi_unified_t wmi_handle,
  381. struct extscan_bssid_hotlist_reset_params *photlist_reset);
  382. QDF_STATUS (*send_stop_extscan_cmd)(wmi_unified_t wmi_handle,
  383. struct extscan_stop_req_params *pstopcmd);
  384. QDF_STATUS (*send_start_extscan_cmd)(wmi_unified_t wmi_handle,
  385. struct wifi_scan_cmd_req_params *pstart);
  386. QDF_STATUS (*send_plm_stop_cmd)(wmi_unified_t wmi_handle,
  387. const struct plm_req_params *plm);
  388. QDF_STATUS (*send_wlm_latency_level_cmd)(wmi_unified_t wmi_handle,
  389. struct wlm_latency_level_param *param);
  390. QDF_STATUS (*send_plm_start_cmd)(wmi_unified_t wmi_handle,
  391. const struct plm_req_params *plm,
  392. uint32_t *gchannel_list);
  393. QDF_STATUS (*send_csa_offload_enable_cmd)(wmi_unified_t wmi_handle,
  394. uint8_t vdev_id);
  395. QDF_STATUS (*send_pno_stop_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  396. QDF_STATUS (*send_pno_start_cmd)(wmi_unified_t wmi_handle,
  397. struct pno_scan_req_params *pno);
  398. QDF_STATUS (*send_nlo_mawc_cmd)(wmi_unified_t wmi_handle,
  399. struct nlo_mawc_params *params);
  400. #ifdef IPA_OFFLOAD
  401. QDF_STATUS (*send_ipa_offload_control_cmd)(wmi_unified_t wmi_handle,
  402. struct ipa_uc_offload_control_params *ipa_offload);
  403. #endif
  404. QDF_STATUS (*send_set_ric_req_cmd)(wmi_unified_t wmi_handle, void *msg,
  405. uint8_t is_add_ts);
  406. QDF_STATUS (*send_process_ll_stats_clear_cmd)
  407. (wmi_unified_t wmi_handle,
  408. const struct ll_stats_clear_params *clear_req,
  409. uint8_t addr[IEEE80211_ADDR_LEN]);
  410. QDF_STATUS (*send_process_ll_stats_set_cmd)
  411. (wmi_unified_t wmi_handle, const struct ll_stats_set_params *set_req);
  412. QDF_STATUS (*send_process_ll_stats_get_cmd)
  413. (wmi_unified_t wmi_handle, const struct ll_stats_get_params *get_req,
  414. uint8_t addr[IEEE80211_ADDR_LEN]);
  415. QDF_STATUS (*send_congestion_cmd)(wmi_unified_t wmi_handle,
  416. uint8_t vdev_id);
  417. QDF_STATUS (*send_snr_request_cmd)(wmi_unified_t wmi_handle);
  418. QDF_STATUS (*send_snr_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  419. QDF_STATUS (*send_link_status_req_cmd)(wmi_unified_t wmi_handle,
  420. struct link_status_params *link_status);
  421. #ifdef WLAN_PMO_ENABLE
  422. QDF_STATUS (*send_add_wow_wakeup_event_cmd)(wmi_unified_t wmi_handle,
  423. uint32_t vdev_id,
  424. uint32_t *bitmap,
  425. bool enable);
  426. QDF_STATUS (*send_wow_patterns_to_fw_cmd)(wmi_unified_t wmi_handle,
  427. uint8_t vdev_id, uint8_t ptrn_id,
  428. const uint8_t *ptrn, uint8_t ptrn_len,
  429. uint8_t ptrn_offset, const uint8_t *mask,
  430. uint8_t mask_len, bool user,
  431. uint8_t default_patterns);
  432. QDF_STATUS (*send_enable_arp_ns_offload_cmd)(wmi_unified_t wmi_handle,
  433. struct pmo_arp_offload_params *arp_offload_req,
  434. struct pmo_ns_offload_params *ns_offload_req,
  435. uint8_t vdev_id);
  436. QDF_STATUS (*send_conf_hw_filter_cmd)(wmi_unified_t wmi,
  437. struct pmo_hw_filter_params *req);
  438. QDF_STATUS (*send_enable_enhance_multicast_offload_cmd)(
  439. wmi_unified_t wmi_handle,
  440. uint8_t vdev_id, bool action);
  441. QDF_STATUS (*send_add_clear_mcbc_filter_cmd)(wmi_unified_t wmi_handle,
  442. uint8_t vdev_id,
  443. struct qdf_mac_addr multicast_addr,
  444. bool clearList);
  445. QDF_STATUS (*send_multiple_add_clear_mcbc_filter_cmd)(wmi_unified_t wmi_handle,
  446. uint8_t vdev_id,
  447. struct pmo_mcast_filter_params *filter_param);
  448. QDF_STATUS (*send_gtk_offload_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
  449. struct pmo_gtk_req *params,
  450. bool enable_offload,
  451. uint32_t gtk_offload_opcode);
  452. QDF_STATUS (*send_process_gtk_offload_getinfo_cmd)(wmi_unified_t wmi_handle,
  453. uint8_t vdev_id,
  454. uint64_t offload_req_opcode);
  455. QDF_STATUS (*send_wow_sta_ra_filter_cmd)(wmi_unified_t wmi_handle,
  456. uint8_t vdev_id, uint8_t default_pattern,
  457. uint16_t rate_limit_interval);
  458. QDF_STATUS (*send_action_frame_patterns_cmd)(wmi_unified_t wmi_handle,
  459. struct pmo_action_wakeup_set_params *action_params);
  460. QDF_STATUS (*extract_gtk_rsp_event)(wmi_unified_t wmi_handle,
  461. void *evt_buf,
  462. struct pmo_gtk_rsp_params *gtk_rsp_param, uint32_t len);
  463. QDF_STATUS (*send_lphb_config_hbenable_cmd)(wmi_unified_t wmi_handle,
  464. wmi_hb_set_enable_cmd_fixed_param *params);
  465. QDF_STATUS (*send_lphb_config_tcp_params_cmd)(wmi_unified_t wmi_handle,
  466. wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req);
  467. QDF_STATUS (*send_lphb_config_tcp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
  468. wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp);
  469. QDF_STATUS (*send_lphb_config_udp_params_cmd)(wmi_unified_t wmi_handle,
  470. wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req);
  471. QDF_STATUS (*send_lphb_config_udp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
  472. wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req);
  473. QDF_STATUS (*send_enable_disable_packet_filter_cmd)(wmi_unified_t wmi_handle,
  474. uint8_t vdev_id, bool enable);
  475. QDF_STATUS (*send_config_packet_filter_cmd)(wmi_unified_t wmi_handle,
  476. uint8_t vdev_id, struct pmo_rcv_pkt_fltr_cfg *rcv_filter_param,
  477. uint8_t filter_id, bool enable);
  478. #endif /* end of WLAN_PMO_ENABLE */
  479. #ifdef CONFIG_MCL
  480. QDF_STATUS (*send_process_dhcp_ind_cmd)(wmi_unified_t wmi_handle,
  481. wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
  482. QDF_STATUS (*send_get_link_speed_cmd)(wmi_unified_t wmi_handle,
  483. wmi_mac_addr peer_macaddr);
  484. QDF_STATUS (*send_bcn_buf_ll_cmd)(wmi_unified_t wmi_handle,
  485. wmi_bcn_send_from_host_cmd_fixed_param * param);
  486. QDF_STATUS (*send_roam_scan_offload_mode_cmd)(wmi_unified_t wmi_handle,
  487. wmi_start_scan_cmd_fixed_param * scan_cmd_fp,
  488. struct roam_offload_scan_params *roam_req);
  489. QDF_STATUS (*send_roam_scan_offload_ap_profile_cmd)(wmi_unified_t wmi_handle,
  490. struct ap_profile_params *ap_profile);
  491. QDF_STATUS (*send_pktlog_wmi_send_cmd)(wmi_unified_t wmi_handle,
  492. WMI_PKTLOG_EVENT pktlog_event,
  493. WMI_CMD_ID cmd_id, uint8_t user_triggered);
  494. #endif
  495. #ifdef WLAN_SUPPORT_GREEN_AP
  496. QDF_STATUS (*send_egap_conf_params_cmd)(wmi_unified_t wmi_handle,
  497. struct wlan_green_ap_egap_params *egap_params);
  498. #endif
  499. QDF_STATUS (*send_fw_profiling_cmd)(wmi_unified_t wmi_handle,
  500. uint32_t cmd, uint32_t value1, uint32_t value2);
  501. QDF_STATUS (*send_nat_keepalive_en_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  502. #ifdef WLAN_FEATURE_CIF_CFR
  503. QDF_STATUS (*send_oem_dma_cfg_cmd)(wmi_unified_t wmi_handle,
  504. wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
  505. #endif
  506. QDF_STATUS (*send_dbr_cfg_cmd)(wmi_unified_t wmi_handle,
  507. struct direct_buf_rx_cfg_req *cfg);
  508. QDF_STATUS (*send_start_oem_data_cmd)(wmi_unified_t wmi_handle,
  509. uint32_t data_len,
  510. uint8_t *data);
  511. QDF_STATUS
  512. (*send_dfs_phyerr_filter_offload_en_cmd)(wmi_unified_t wmi_handle,
  513. bool dfs_phyerr_filter_offload);
  514. QDF_STATUS (*send_wow_delete_pattern_cmd)(wmi_unified_t wmi_handle, uint8_t ptrn_id,
  515. uint8_t vdev_id);
  516. QDF_STATUS (*send_host_wakeup_ind_to_fw_cmd)(wmi_unified_t wmi_handle);
  517. QDF_STATUS (*send_del_ts_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
  518. uint8_t ac);
  519. QDF_STATUS (*send_aggr_qos_cmd)(wmi_unified_t wmi_handle,
  520. struct aggr_add_ts_param *aggr_qos_rsp_msg);
  521. QDF_STATUS (*send_add_ts_cmd)(wmi_unified_t wmi_handle,
  522. struct add_ts_param *msg);
  523. QDF_STATUS (*send_process_add_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
  524. struct periodic_tx_pattern *
  525. pAddPeriodicTxPtrnParams,
  526. uint8_t vdev_id);
  527. QDF_STATUS (*send_process_del_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
  528. uint8_t vdev_id,
  529. uint8_t pattern_id);
  530. QDF_STATUS (*send_stats_ext_req_cmd)(wmi_unified_t wmi_handle,
  531. struct stats_ext_params *preq);
  532. QDF_STATUS (*send_enable_ext_wow_cmd)(wmi_unified_t wmi_handle,
  533. struct ext_wow_params *params);
  534. QDF_STATUS (*send_set_app_type2_params_in_fw_cmd)(wmi_unified_t wmi_handle,
  535. struct app_type2_params *appType2Params);
  536. QDF_STATUS (*send_set_auto_shutdown_timer_cmd)(wmi_unified_t wmi_handle,
  537. uint32_t timer_val);
  538. QDF_STATUS (*send_nan_req_cmd)(wmi_unified_t wmi_handle,
  539. struct nan_req_params *nan_req);
  540. QDF_STATUS (*send_process_dhcpserver_offload_cmd)(wmi_unified_t wmi_handle,
  541. struct dhcp_offload_info_params *params);
  542. QDF_STATUS (*send_process_ch_avoid_update_cmd)(wmi_unified_t wmi_handle);
  543. QDF_STATUS (*send_regdomain_info_to_fw_cmd)(wmi_unified_t wmi_handle,
  544. uint32_t reg_dmn, uint16_t regdmn2G,
  545. uint16_t regdmn5G, uint8_t ctl2G,
  546. uint8_t ctl5G);
  547. QDF_STATUS (*send_set_tdls_offchan_mode_cmd)(wmi_unified_t wmi_handle,
  548. struct tdls_channel_switch_params *chan_switch_params);
  549. QDF_STATUS (*send_update_fw_tdls_state_cmd)(wmi_unified_t wmi_handle,
  550. void *tdls_param, uint8_t tdls_state);
  551. QDF_STATUS (*send_update_tdls_peer_state_cmd)(wmi_unified_t wmi_handle,
  552. struct tdls_peer_state_params *peerStateParams,
  553. uint32_t *ch_mhz);
  554. QDF_STATUS (*send_process_fw_mem_dump_cmd)(wmi_unified_t wmi_handle,
  555. struct fw_dump_req_param *mem_dump_req);
  556. QDF_STATUS (*send_process_set_ie_info_cmd)(wmi_unified_t wmi_handle,
  557. struct vdev_ie_info_param *ie_info);
  558. QDF_STATUS (*save_fw_version_cmd)(wmi_unified_t wmi_handle, void *evt_buf);
  559. QDF_STATUS (*check_and_update_fw_version_cmd)(wmi_unified_t wmi_hdl, void *ev);
  560. QDF_STATUS (*send_set_base_macaddr_indicate_cmd)(wmi_unified_t wmi_handle,
  561. uint8_t *custom_addr);
  562. QDF_STATUS (*send_log_supported_evt_cmd)(wmi_unified_t wmi_handle,
  563. uint8_t *event,
  564. uint32_t len);
  565. QDF_STATUS (*send_enable_specific_fw_logs_cmd)(wmi_unified_t wmi_handle,
  566. struct wmi_wifi_start_log *start_log);
  567. QDF_STATUS (*send_flush_logs_to_fw_cmd)(wmi_unified_t wmi_handle);
  568. QDF_STATUS (*send_pdev_set_pcl_cmd)(wmi_unified_t wmi_handle,
  569. struct wmi_pcl_chan_weights *msg);
  570. QDF_STATUS (*send_pdev_set_hw_mode_cmd)(wmi_unified_t wmi_handle,
  571. uint32_t hw_mode_index);
  572. QDF_STATUS (*send_pdev_set_dual_mac_config_cmd)(wmi_unified_t wmi_handle,
  573. struct policy_mgr_dual_mac_config *msg);
  574. QDF_STATUS (*send_set_led_flashing_cmd)(wmi_unified_t wmi_handle,
  575. struct flashing_req_params *flashing);
  576. QDF_STATUS (*send_app_type1_params_in_fw_cmd)(wmi_unified_t wmi_handle,
  577. struct app_type1_params *app_type1_params);
  578. QDF_STATUS (*send_set_ssid_hotlist_cmd)(wmi_unified_t wmi_handle,
  579. struct ssid_hotlist_request_params *request);
  580. QDF_STATUS (*send_process_roam_synch_complete_cmd)(wmi_unified_t wmi_handle,
  581. uint8_t vdev_id);
  582. QDF_STATUS (*send_unit_test_cmd)(wmi_unified_t wmi_handle,
  583. struct wmi_unit_test_cmd *wmi_utest);
  584. QDF_STATUS (*send_roam_invoke_cmd)(wmi_unified_t wmi_handle,
  585. struct wmi_roam_invoke_cmd *roaminvoke,
  586. uint32_t ch_hz);
  587. QDF_STATUS (*send_roam_scan_offload_cmd)(wmi_unified_t wmi_handle,
  588. uint32_t command, uint32_t vdev_id);
  589. QDF_STATUS (*send_roam_scan_offload_scan_period_cmd)(wmi_unified_t wmi_handle,
  590. uint32_t scan_period,
  591. uint32_t scan_age,
  592. uint32_t vdev_id);
  593. QDF_STATUS (*send_roam_scan_offload_chan_list_cmd)(wmi_unified_t wmi_handle,
  594. uint8_t chan_count,
  595. uint32_t *chan_list,
  596. uint8_t list_type, uint32_t vdev_id);
  597. QDF_STATUS (*send_roam_scan_offload_rssi_change_cmd)(wmi_unified_t wmi_handle,
  598. uint32_t vdev_id,
  599. int32_t rssi_change_thresh,
  600. uint32_t bcn_rssi_weight,
  601. uint32_t hirssi_delay_btw_scans);
  602. QDF_STATUS (*send_per_roam_config_cmd)(wmi_unified_t wmi_handle,
  603. struct wmi_per_roam_config_req *req_buf);
  604. QDF_STATUS (*send_set_arp_stats_req_cmd)(wmi_unified_t wmi_handle,
  605. struct set_arp_stats *req_buf);
  606. QDF_STATUS (*send_get_arp_stats_req_cmd)(wmi_unified_t wmi_handle,
  607. struct get_arp_stats *req_buf);
  608. QDF_STATUS (*send_get_buf_extscan_hotlist_cmd)(wmi_unified_t wmi_handle,
  609. struct ext_scan_setbssi_hotlist_params *
  610. photlist, int *buf_len);
  611. QDF_STATUS (*send_set_active_bpf_mode_cmd)(wmi_unified_t wmi_handle,
  612. uint8_t vdev_id,
  613. enum wmi_host_active_bpf_mode ucast_mode,
  614. enum wmi_host_active_bpf_mode mcast_bcast_mode);
  615. QDF_STATUS (*send_pdev_get_tpc_config_cmd)(wmi_unified_t wmi_handle,
  616. uint32_t param);
  617. QDF_STATUS (*send_set_bwf_cmd)(wmi_unified_t wmi_handle,
  618. struct set_bwf_params *param);
  619. QDF_STATUS (*send_set_atf_cmd)(wmi_unified_t wmi_handle,
  620. struct set_atf_params *param);
  621. QDF_STATUS (*send_pdev_fips_cmd)(wmi_unified_t wmi_handle,
  622. struct fips_params *param);
  623. QDF_STATUS (*send_wlan_profile_enable_cmd)(wmi_unified_t wmi_handle,
  624. struct wlan_profile_params *param);
  625. QDF_STATUS (*send_wlan_profile_trigger_cmd)(wmi_unified_t wmi_handle,
  626. struct wlan_profile_params *param);
  627. QDF_STATUS (*send_pdev_set_chan_cmd)(wmi_unified_t wmi_handle,
  628. struct channel_param *param);
  629. QDF_STATUS (*send_set_ht_ie_cmd)(wmi_unified_t wmi_handle,
  630. struct ht_ie_params *param);
  631. QDF_STATUS (*send_set_vht_ie_cmd)(wmi_unified_t wmi_handle,
  632. struct vht_ie_params *param);
  633. QDF_STATUS (*send_wmm_update_cmd)(wmi_unified_t wmi_handle,
  634. struct wmm_update_params *param);
  635. QDF_STATUS (*send_process_update_edca_param_cmd)(wmi_unified_t wmi_handle,
  636. uint8_t vdev_id, bool mu_edca_param,
  637. struct wmi_host_wme_vparams wmm_vparams[WMI_MAX_NUM_AC]);
  638. QDF_STATUS (*send_set_ant_switch_tbl_cmd)(wmi_unified_t wmi_handle,
  639. struct ant_switch_tbl_params *param);
  640. QDF_STATUS (*send_set_ratepwr_table_cmd)(wmi_unified_t wmi_handle,
  641. struct ratepwr_table_params *param);
  642. QDF_STATUS (*send_get_ratepwr_table_cmd)(wmi_unified_t wmi_handle);
  643. QDF_STATUS (*send_set_ctl_table_cmd)(wmi_unified_t wmi_handle,
  644. struct ctl_table_params *param);
  645. QDF_STATUS (*send_set_mimogain_table_cmd)(wmi_unified_t wmi_handle,
  646. struct mimogain_table_params *param);
  647. QDF_STATUS (*send_set_ratepwr_chainmsk_cmd)(wmi_unified_t wmi_handle,
  648. struct ratepwr_chainmsk_params *param);
  649. QDF_STATUS (*send_set_macaddr_cmd)(wmi_unified_t wmi_handle,
  650. struct macaddr_params *param);
  651. QDF_STATUS (*send_pdev_scan_start_cmd)(wmi_unified_t wmi_handle);
  652. QDF_STATUS (*send_pdev_scan_end_cmd)(wmi_unified_t wmi_handle);
  653. QDF_STATUS (*send_set_acparams_cmd)(wmi_unified_t wmi_handle,
  654. struct acparams_params *param);
  655. QDF_STATUS (*send_set_vap_dscp_tid_map_cmd)(wmi_unified_t wmi_handle,
  656. struct vap_dscp_tid_map_params *param);
  657. QDF_STATUS (*send_proxy_ast_reserve_cmd)(wmi_unified_t wmi_handle,
  658. struct proxy_ast_reserve_params *param);
  659. QDF_STATUS (*send_pdev_qvit_cmd)(wmi_unified_t wmi_handle,
  660. struct pdev_qvit_params *param);
  661. QDF_STATUS (*send_mcast_group_update_cmd)(wmi_unified_t wmi_handle,
  662. struct mcast_group_update_params *param);
  663. QDF_STATUS (*send_peer_add_wds_entry_cmd)(wmi_unified_t wmi_handle,
  664. struct peer_add_wds_entry_params *param);
  665. QDF_STATUS (*send_peer_del_wds_entry_cmd)(wmi_unified_t wmi_handle,
  666. struct peer_del_wds_entry_params *param);
  667. QDF_STATUS (*send_set_bridge_mac_addr_cmd)(wmi_unified_t wmi_handle,
  668. struct set_bridge_mac_addr_params *param);
  669. QDF_STATUS (*send_peer_update_wds_entry_cmd)(wmi_unified_t wmi_handle,
  670. struct peer_update_wds_entry_params *param);
  671. QDF_STATUS (*send_phyerr_enable_cmd)(wmi_unified_t wmi_handle);
  672. QDF_STATUS (*send_phyerr_disable_cmd)(wmi_unified_t wmi_handle);
  673. QDF_STATUS (*send_smart_ant_enable_cmd)(wmi_unified_t wmi_handle,
  674. struct smart_ant_enable_params *param);
  675. QDF_STATUS (*send_smart_ant_set_rx_ant_cmd)(wmi_unified_t wmi_handle,
  676. struct smart_ant_rx_ant_params *param);
  677. QDF_STATUS (*send_smart_ant_set_tx_ant_cmd)(wmi_unified_t wmi_handle,
  678. uint8_t macaddr[IEEE80211_ADDR_LEN],
  679. struct smart_ant_tx_ant_params *param);
  680. QDF_STATUS (*send_smart_ant_set_training_info_cmd)(wmi_unified_t wmi_handle,
  681. uint8_t macaddr[IEEE80211_ADDR_LEN],
  682. struct smart_ant_training_info_params *param);
  683. QDF_STATUS (*send_smart_ant_set_node_config_cmd)(wmi_unified_t wmi_handle,
  684. uint8_t macaddr[IEEE80211_ADDR_LEN],
  685. struct smart_ant_node_config_params *param);
  686. QDF_STATUS (*send_smart_ant_enable_tx_feedback_cmd)(wmi_unified_t wmi_handle,
  687. struct smart_ant_enable_tx_feedback_params *param);
  688. QDF_STATUS (*send_vdev_spectral_configure_cmd)(wmi_unified_t wmi_handle,
  689. struct vdev_spectral_configure_params *param);
  690. QDF_STATUS (*send_vdev_spectral_enable_cmd)(wmi_unified_t wmi_handle,
  691. struct vdev_spectral_enable_params *param);
  692. QDF_STATUS (*send_set_del_pmkid_cache_cmd) (wmi_unified_t wmi_handle,
  693. struct wmi_unified_pmk_cache *req_buf);
  694. QDF_STATUS (*send_bss_chan_info_request_cmd)(wmi_unified_t wmi_handle,
  695. struct bss_chan_info_request_params *param);
  696. QDF_STATUS (*send_thermal_mitigation_param_cmd)(wmi_unified_t wmi_handle,
  697. struct thermal_mitigation_params *param);
  698. QDF_STATUS (*send_vdev_set_neighbour_rx_cmd)(wmi_unified_t wmi_handle,
  699. uint8_t macaddr[IEEE80211_ADDR_LEN],
  700. struct set_neighbour_rx_params *param);
  701. QDF_STATUS (*send_vdev_set_fwtest_param_cmd)(wmi_unified_t wmi_handle,
  702. struct set_fwtest_params *param);
  703. QDF_STATUS (*send_vdev_config_ratemask_cmd)(wmi_unified_t wmi_handle,
  704. struct config_ratemask_params *param);
  705. QDF_STATUS (*send_vdev_set_custom_aggr_size_cmd)(wmi_unified_t wmi_handle,
  706. struct set_custom_aggr_size_params *param);
  707. QDF_STATUS (*send_vdev_set_qdepth_thresh_cmd)(wmi_unified_t wmi_handle,
  708. struct set_qdepth_thresh_params *param);
  709. QDF_STATUS (*send_wow_wakeup_cmd)(wmi_unified_t wmi_handle);
  710. QDF_STATUS (*send_wow_add_wakeup_event_cmd)(wmi_unified_t wmi_handle,
  711. struct wow_add_wakeup_params *param);
  712. QDF_STATUS (*send_wow_add_wakeup_pattern_cmd)(wmi_unified_t wmi_handle,
  713. struct wow_add_wakeup_pattern_params *param);
  714. QDF_STATUS (*send_wow_remove_wakeup_pattern_cmd)(wmi_unified_t wmi_handle,
  715. struct wow_remove_wakeup_pattern_params *param);
  716. QDF_STATUS (*send_pdev_set_regdomain_cmd)(wmi_unified_t wmi_handle,
  717. struct pdev_set_regdomain_params *param);
  718. QDF_STATUS (*send_set_quiet_mode_cmd)(wmi_unified_t wmi_handle,
  719. struct set_quiet_mode_params *param);
  720. QDF_STATUS (*send_set_beacon_filter_cmd)(wmi_unified_t wmi_handle,
  721. struct set_beacon_filter_params *param);
  722. QDF_STATUS (*send_remove_beacon_filter_cmd)(wmi_unified_t wmi_handle,
  723. struct remove_beacon_filter_params *param);
  724. /*
  725. QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
  726. uint8_t macaddr[IEEE80211_ADDR_LEN],
  727. struct mgmt_params *param);
  728. */
  729. QDF_STATUS (*send_addba_clearresponse_cmd)(wmi_unified_t wmi_handle,
  730. uint8_t macaddr[IEEE80211_ADDR_LEN],
  731. struct addba_clearresponse_params *param);
  732. QDF_STATUS (*send_addba_send_cmd)(wmi_unified_t wmi_handle,
  733. uint8_t macaddr[IEEE80211_ADDR_LEN],
  734. struct addba_send_params *param);
  735. QDF_STATUS (*send_delba_send_cmd)(wmi_unified_t wmi_handle,
  736. uint8_t macaddr[IEEE80211_ADDR_LEN],
  737. struct delba_send_params *param);
  738. QDF_STATUS (*send_addba_setresponse_cmd)(wmi_unified_t wmi_handle,
  739. uint8_t macaddr[IEEE80211_ADDR_LEN],
  740. struct addba_setresponse_params *param);
  741. QDF_STATUS (*send_singleamsdu_cmd)(wmi_unified_t wmi_handle,
  742. uint8_t macaddr[IEEE80211_ADDR_LEN],
  743. struct singleamsdu_params *param);
  744. QDF_STATUS (*send_set_qboost_param_cmd)(wmi_unified_t wmi_handle,
  745. uint8_t macaddr[IEEE80211_ADDR_LEN],
  746. struct set_qboost_params *param);
  747. QDF_STATUS (*send_mu_scan_cmd)(wmi_unified_t wmi_handle,
  748. struct mu_scan_params *param);
  749. QDF_STATUS (*send_lteu_config_cmd)(wmi_unified_t wmi_handle,
  750. struct lteu_config_params *param);
  751. QDF_STATUS (*send_set_ps_mode_cmd)(wmi_unified_t wmi_handle,
  752. struct set_ps_mode_params *param);
  753. QDF_STATUS (*save_service_bitmap)(wmi_unified_t wmi_handle,
  754. void *evt_buf, void *bitmap_buf);
  755. QDF_STATUS (*save_ext_service_bitmap)(wmi_unified_t wmi_handle,
  756. void *evt_buf, void *bitmap_buf);
  757. bool (*is_service_enabled)(wmi_unified_t wmi_handle,
  758. uint32_t service_id);
  759. QDF_STATUS (*get_target_cap_from_service_ready)(wmi_unified_t wmi_handle,
  760. void *evt_buf, struct wlan_psoc_target_capability_info *ev);
  761. QDF_STATUS (*extract_fw_version)(wmi_unified_t wmi_handle,
  762. void *ev, struct wmi_host_fw_ver *fw_ver);
  763. QDF_STATUS (*extract_fw_abi_version)(wmi_unified_t wmi_handle,
  764. void *ev, struct wmi_host_fw_abi_ver *fw_ver);
  765. QDF_STATUS (*extract_hal_reg_cap)(wmi_unified_t wmi_handle, void *evt_buf,
  766. struct wlan_psoc_hal_reg_capability *hal_reg_cap);
  767. host_mem_req * (*extract_host_mem_req)(wmi_unified_t wmi_handle,
  768. void *evt_buf, uint8_t *num_entries);
  769. QDF_STATUS (*init_cmd_send)(wmi_unified_t wmi_handle,
  770. struct wmi_init_cmd_param *param);
  771. QDF_STATUS (*save_fw_version)(wmi_unified_t wmi_handle, void *evt_buf);
  772. uint32_t (*ready_extract_init_status)(wmi_unified_t wmi_hdl, void *ev);
  773. QDF_STATUS (*ready_extract_mac_addr)(wmi_unified_t wmi_hdl, void *ev,
  774. uint8_t *macaddr);
  775. wmi_host_mac_addr * (*ready_extract_mac_addr_list)(wmi_unified_t wmi_hdl,
  776. void *ev, uint8_t *num_mac_addr);
  777. QDF_STATUS (*extract_ready_event_params)(wmi_unified_t wmi_handle,
  778. void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
  779. QDF_STATUS (*check_and_update_fw_version)(wmi_unified_t wmi_hdl, void *ev);
  780. uint8_t* (*extract_dbglog_data_len)(wmi_unified_t wmi_handle, void *evt_buf,
  781. uint32_t *len);
  782. QDF_STATUS (*send_ext_resource_config)(wmi_unified_t wmi_handle,
  783. wmi_host_ext_resource_config *ext_cfg);
  784. QDF_STATUS (*send_nf_dbr_dbm_info_get_cmd)(wmi_unified_t wmi_handle,
  785. uint8_t mac_id);
  786. QDF_STATUS (*send_packet_power_info_get_cmd)(wmi_unified_t wmi_handle,
  787. struct packet_power_info_params *param);
  788. QDF_STATUS (*send_gpio_config_cmd)(wmi_unified_t wmi_handle,
  789. struct gpio_config_params *param);
  790. QDF_STATUS (*send_gpio_output_cmd)(wmi_unified_t wmi_handle,
  791. struct gpio_output_params *param);
  792. QDF_STATUS (*send_rtt_meas_req_test_cmd)(wmi_unified_t wmi_handle,
  793. struct rtt_meas_req_test_params *param);
  794. QDF_STATUS (*send_rtt_meas_req_cmd)(wmi_unified_t wmi_handle,
  795. struct rtt_meas_req_params *param);
  796. QDF_STATUS (*send_rtt_keepalive_req_cmd)(wmi_unified_t wmi_handle,
  797. struct rtt_keepalive_req_params *param);
  798. QDF_STATUS (*send_lci_set_cmd)(wmi_unified_t wmi_handle,
  799. struct lci_set_params *param);
  800. QDF_STATUS (*send_lcr_set_cmd)(wmi_unified_t wmi_handle,
  801. struct lcr_set_params *param);
  802. QDF_STATUS (*send_periodic_chan_stats_config_cmd)(wmi_unified_t wmi_handle,
  803. struct periodic_chan_stats_params *param);
  804. QDF_STATUS
  805. (*send_atf_peer_request_cmd)(wmi_unified_t wmi_handle,
  806. struct atf_peer_request_params *param);
  807. QDF_STATUS
  808. (*send_set_atf_grouping_cmd)(wmi_unified_t wmi_handle,
  809. struct atf_grouping_params *param);
  810. QDF_STATUS (*send_get_user_position_cmd)(wmi_unified_t wmi_handle,
  811. uint32_t value);
  812. QDF_STATUS
  813. (*send_reset_peer_mumimo_tx_count_cmd)(wmi_unified_t wmi_handle,
  814. uint32_t value);
  815. QDF_STATUS (*send_get_peer_mumimo_tx_count_cmd)(wmi_unified_t wmi_handle,
  816. uint32_t value);
  817. QDF_STATUS
  818. (*send_pdev_caldata_version_check_cmd)(wmi_unified_t wmi_handle,
  819. uint32_t value);
  820. QDF_STATUS
  821. (*send_btcoex_wlan_priority_cmd)(wmi_unified_t wmi_handle,
  822. struct btcoex_cfg_params *param);
  823. QDF_STATUS
  824. (*send_start_11d_scan_cmd)(wmi_unified_t wmi_handle,
  825. struct reg_start_11d_scan_req *param);
  826. QDF_STATUS
  827. (*send_stop_11d_scan_cmd)(wmi_unified_t wmi_handle,
  828. struct reg_stop_11d_scan_req *param);
  829. QDF_STATUS
  830. (*send_btcoex_duty_cycle_cmd)(wmi_unified_t wmi_handle,
  831. struct btcoex_cfg_params *param);
  832. QDF_STATUS
  833. (*send_coex_ver_cfg_cmd)(wmi_unified_t wmi_handle, coex_ver_cfg_t *param);
  834. QDF_STATUS
  835. (*send_coex_config_cmd)(wmi_unified_t wmi_handle,
  836. struct coex_config_params *param);
  837. QDF_STATUS (*send_bcn_offload_control_cmd)(wmi_unified_t wmi_handle,
  838. struct bcn_offload_control *bcn_ctrl_param);
  839. QDF_STATUS (*extract_wds_addr_event)(wmi_unified_t wmi_handle,
  840. void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
  841. QDF_STATUS (*extract_dcs_interference_type)(wmi_unified_t wmi_handle,
  842. void *evt_buf, struct wmi_host_dcs_interference_param *param);
  843. QDF_STATUS (*extract_dcs_cw_int)(wmi_unified_t wmi_handle, void *evt_buf,
  844. wmi_host_ath_dcs_cw_int *cw_int);
  845. QDF_STATUS (*extract_dcs_im_tgt_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  846. wmi_host_dcs_im_tgt_stats_t *wlan_stat);
  847. QDF_STATUS (*extract_fips_event_data)(wmi_unified_t wmi_handle,
  848. void *evt_buf, struct wmi_host_fips_event_param *param);
  849. QDF_STATUS (*extract_vdev_start_resp)(wmi_unified_t wmi_handle, void *evt_buf,
  850. wmi_host_vdev_start_resp *vdev_rsp);
  851. QDF_STATUS (*extract_vdev_delete_resp)(wmi_unified_t wmi_handle, void *evt_buf,
  852. struct wmi_host_vdev_delete_resp *delete_rsp);
  853. QDF_STATUS (*extract_tbttoffset_update_params)(void *wmi_hdl, void *evt_buf,
  854. uint8_t idx, struct tbttoffset_params *tbtt_param);
  855. QDF_STATUS (*extract_ext_tbttoffset_update_params)(void *wmi_hdl, void *evt_buf,
  856. uint8_t idx, struct tbttoffset_params *tbtt_param);
  857. QDF_STATUS (*extract_tbttoffset_num_vdevs)(void *wmi_hdl, void *evt_buf,
  858. uint32_t *num_vdevs);
  859. QDF_STATUS (*extract_ext_tbttoffset_num_vdevs)(void *wmi_hdl, void *evt_buf,
  860. uint32_t *num_vdevs);
  861. QDF_STATUS (*extract_mgmt_rx_params)(wmi_unified_t wmi_handle, void *evt_buf,
  862. struct mgmt_rx_event_params *hdr, uint8_t **bufp);
  863. QDF_STATUS (*extract_vdev_stopped_param)(wmi_unified_t wmi_handle,
  864. void *evt_buf, uint32_t *vdev_id);
  865. QDF_STATUS (*extract_vdev_roam_param)(wmi_unified_t wmi_handle, void *evt_buf,
  866. wmi_host_roam_event *param);
  867. QDF_STATUS (*extract_vdev_scan_ev_param)(wmi_unified_t wmi_handle,
  868. void *evt_buf, struct scan_event *param);
  869. #ifdef CONVERGED_TDLS_ENABLE
  870. QDF_STATUS (*extract_vdev_tdls_ev_param)(wmi_unified_t wmi_handle,
  871. void *evt_buf, struct tdls_event_info *param);
  872. #endif
  873. QDF_STATUS (*extract_mu_ev_param)(wmi_unified_t wmi_handle, void *evt_buf,
  874. wmi_host_mu_report_event *param);
  875. QDF_STATUS (*extract_mu_db_entry)(wmi_unified_t wmi_hdl, void *evt_buf,
  876. uint8_t idx, wmi_host_mu_db_entry *param);
  877. QDF_STATUS (*extract_mumimo_tx_count_ev_param)(wmi_unified_t wmi_handle,
  878. void *evt_buf, wmi_host_peer_txmu_cnt_event *param);
  879. QDF_STATUS (*extract_peer_gid_userpos_list_ev_param)(wmi_unified_t wmi_handle,
  880. void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
  881. QDF_STATUS (*extract_pdev_caldata_version_check_ev_param)(
  882. wmi_unified_t wmi_handle,
  883. void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
  884. QDF_STATUS (*extract_pdev_tpc_config_ev_param)(wmi_unified_t wmi_handle,
  885. void *evt_buf, wmi_host_pdev_tpc_config_event *param);
  886. QDF_STATUS (*extract_gpio_input_ev_param)(wmi_unified_t wmi_handle,
  887. void *evt_buf, uint32_t *gpio_num);
  888. QDF_STATUS (*extract_pdev_reserve_ast_ev_param)(wmi_unified_t wmi_handle,
  889. void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
  890. QDF_STATUS (*extract_nfcal_power_ev_param)(wmi_unified_t wmi_handle,
  891. void *evt_buf,
  892. wmi_host_pdev_nfcal_power_all_channels_event *param);
  893. QDF_STATUS (*extract_pdev_tpc_ev_param)(wmi_unified_t wmi_handle,
  894. void *evt_buf, wmi_host_pdev_tpc_event *param);
  895. QDF_STATUS (*extract_pdev_generic_buffer_ev_param)(wmi_unified_t wmi_handle,
  896. void *evt_buf, wmi_host_pdev_generic_buffer_event *param);
  897. QDF_STATUS (*extract_mgmt_tx_compl_param)(wmi_unified_t wmi_handle,
  898. void *evt_buf, wmi_host_mgmt_tx_compl_event *param);
  899. QDF_STATUS (*extract_offchan_data_tx_compl_param)(wmi_unified_t wmi_handle,
  900. void *evt_buf,
  901. struct wmi_host_offchan_data_tx_compl_event *param);
  902. QDF_STATUS (*extract_pdev_csa_switch_count_status)(wmi_unified_t wmi_handle,
  903. void *evt_buf, struct pdev_csa_switch_count_status *param);
  904. QDF_STATUS (*extract_swba_num_vdevs)(wmi_unified_t wmi_handle, void *evt_buf,
  905. uint32_t *num_vdevs);
  906. QDF_STATUS (*extract_swba_tim_info)(wmi_unified_t wmi_handle, void *evt_buf,
  907. uint32_t idx, wmi_host_tim_info *tim_info);
  908. QDF_STATUS (*extract_swba_noa_info)(wmi_unified_t wmi_handle, void *evt_buf,
  909. uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
  910. #ifdef CONVERGED_P2P_ENABLE
  911. QDF_STATUS (*extract_p2p_lo_stop_ev_param)(wmi_unified_t wmi_handle,
  912. void *evt_buf, struct p2p_lo_event *param);
  913. QDF_STATUS (*extract_p2p_noa_ev_param)(wmi_unified_t wmi_handle,
  914. void *evt_buf, struct p2p_noa_info *param);
  915. #endif
  916. QDF_STATUS (*extract_peer_sta_ps_statechange_ev)(wmi_unified_t wmi_handle,
  917. void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
  918. QDF_STATUS (*extract_peer_sta_kickout_ev)(wmi_unified_t wmi_handle,
  919. void *evt_buf, wmi_host_peer_sta_kickout_event *ev);
  920. QDF_STATUS (*extract_peer_ratecode_list_ev)(wmi_unified_t wmi_handle,
  921. void *evt_buf, uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
  922. QDF_STATUS (*extract_comb_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
  923. uint16_t datalen, uint16_t *buf_offset, wmi_host_phyerr_t *phyerr);
  924. QDF_STATUS (*extract_single_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
  925. uint16_t datalen, uint16_t *buf_offset, wmi_host_phyerr_t *phyerr);
  926. QDF_STATUS (*extract_composite_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
  927. uint16_t datalen, wmi_host_phyerr_t *phyerr);
  928. QDF_STATUS (*extract_rtt_hdr)(wmi_unified_t wmi_handle, void *evt_buf,
  929. wmi_host_rtt_event_hdr *ev);
  930. QDF_STATUS (*extract_rtt_ev)(wmi_unified_t wmi_handle, void *evt_buf,
  931. wmi_host_rtt_meas_event *ev, uint8_t *hdump, uint16_t hdump_len);
  932. QDF_STATUS (*extract_rtt_error_report_ev)(wmi_unified_t wmi_handle,
  933. void *evt_buf, wmi_host_rtt_error_report_event *ev);
  934. QDF_STATUS (*extract_all_stats_count)(wmi_unified_t wmi_handle, void *evt_buf,
  935. wmi_host_stats_event *stats_param);
  936. QDF_STATUS (*extract_pdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  937. uint32_t index, wmi_host_pdev_stats *pdev_stats);
  938. QDF_STATUS (*extract_unit_test)(wmi_unified_t wmi_handle, void *evt_buf,
  939. wmi_unit_test_event *unit_test, uint32_t maxspace);
  940. QDF_STATUS (*extract_pdev_ext_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  941. uint32_t index, wmi_host_pdev_ext_stats *pdev_ext_stats);
  942. QDF_STATUS (*extract_vdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  943. uint32_t index, wmi_host_vdev_stats *vdev_stats);
  944. QDF_STATUS (*extract_per_chain_rssi_stats)(wmi_unified_t wmi_handle,
  945. void *evt_buf, uint32_t index,
  946. struct wmi_host_per_chain_rssi_stats *rssi_stats);
  947. QDF_STATUS (*extract_peer_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  948. uint32_t index, wmi_host_peer_stats *peer_stats);
  949. QDF_STATUS (*extract_bcnflt_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  950. uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
  951. QDF_STATUS (*extract_peer_extd_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  952. uint32_t index, wmi_host_peer_extd_stats *peer_extd_stats);
  953. QDF_STATUS (*extract_chan_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  954. uint32_t index, wmi_host_chan_stats *chan_stats);
  955. QDF_STATUS (*extract_thermal_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  956. uint32_t *temp, uint32_t *level, uint32_t *pdev_id);
  957. QDF_STATUS (*extract_thermal_level_stats)(wmi_unified_t wmi_handle,
  958. void *evt_buf, uint8_t idx, uint32_t *levelcount,
  959. uint32_t *dccount);
  960. QDF_STATUS (*extract_profile_ctx)(wmi_unified_t wmi_handle, void *evt_buf,
  961. wmi_host_wlan_profile_ctx_t *profile_ctx);
  962. QDF_STATUS (*extract_profile_data)(wmi_unified_t wmi_handle, void *evt_buf,
  963. uint8_t idx,
  964. wmi_host_wlan_profile_t *profile_data);
  965. QDF_STATUS (*extract_chan_info_event)(wmi_unified_t wmi_handle, void *evt_buf,
  966. wmi_host_chan_info_event *chan_info);
  967. QDF_STATUS (*extract_channel_hopping_event)(wmi_unified_t wmi_handle,
  968. void *evt_buf,
  969. wmi_host_pdev_channel_hopping_event *ch_hopping);
  970. QDF_STATUS (*extract_bss_chan_info_event)(wmi_unified_t wmi_handle,
  971. void *evt_buf,
  972. wmi_host_pdev_bss_chan_info_event *bss_chan_info);
  973. QDF_STATUS (*extract_inst_rssi_stats_event)(wmi_unified_t wmi_handle,
  974. void *evt_buf, wmi_host_inst_stats_resp *inst_rssi_resp);
  975. QDF_STATUS (*extract_tx_data_traffic_ctrl_ev)(wmi_unified_t wmi_handle,
  976. void *evt_buf, wmi_host_tx_data_traffic_ctrl_event *ev);
  977. QDF_STATUS (*extract_atf_peer_stats_ev)(wmi_unified_t wmi_handle,
  978. void *evt_buf, wmi_host_atf_peer_stats_event *ev);
  979. QDF_STATUS (*extract_atf_token_info_ev)(wmi_unified_t wmi_handle,
  980. void *evt_buf,
  981. uint8_t idx,
  982. wmi_host_atf_peer_stats_info *atf_token_info);
  983. QDF_STATUS (*extract_vdev_extd_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  984. uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
  985. QDF_STATUS (*extract_vdev_nac_rssi_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  986. struct wmi_host_vdev_nac_rssi_event *vdev_nac_rssi_stats);
  987. QDF_STATUS (*extract_bcn_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  988. uint32_t index, wmi_host_bcn_stats *bcn_stats);
  989. QDF_STATUS (*send_power_dbg_cmd)(wmi_unified_t wmi_handle,
  990. struct wmi_power_dbg_params *param);
  991. QDF_STATUS (*send_multiple_vdev_restart_req_cmd)(wmi_unified_t wmi_handle,
  992. struct multiple_vdev_restart_params *param);
  993. QDF_STATUS (*send_adapt_dwelltime_params_cmd)(wmi_unified_t wmi_handle,
  994. struct wmi_adaptive_dwelltime_params *dwelltime_params);
  995. QDF_STATUS (*send_dbs_scan_sel_params_cmd)(wmi_unified_t wmi_handle,
  996. struct wmi_dbs_scan_sel_params *dbs_scan_params);
  997. QDF_STATUS (*send_fw_test_cmd)(wmi_unified_t wmi_handle,
  998. struct set_fwtest_params *wmi_fwtest);
  999. #ifdef WLAN_FEATURE_DISA
  1000. QDF_STATUS (*send_encrypt_decrypt_send_cmd)(wmi_unified_t wmi_handle,
  1001. struct disa_encrypt_decrypt_req_params *params);
  1002. QDF_STATUS (*extract_encrypt_decrypt_resp_event)(wmi_unified_t wmi_handle,
  1003. void *evt_buf,
  1004. struct disa_encrypt_decrypt_resp_params *resp);
  1005. #endif
  1006. QDF_STATUS (*send_sar_limit_cmd)(wmi_unified_t wmi_handle,
  1007. struct sar_limit_cmd_params *params);
  1008. QDF_STATUS (*get_sar_limit_cmd)(wmi_unified_t wmi_handle);
  1009. QDF_STATUS (*extract_sar_limit_event)(wmi_unified_t wmi_handle,
  1010. uint8_t *evt_buf,
  1011. struct sar_limit_event *event);
  1012. QDF_STATUS (*send_peer_rx_reorder_queue_setup_cmd)(wmi_unified_t wmi_handle,
  1013. struct rx_reorder_queue_setup_params *param);
  1014. QDF_STATUS (*send_peer_rx_reorder_queue_remove_cmd)(wmi_unified_t wmi_handle,
  1015. struct rx_reorder_queue_remove_params *param);
  1016. QDF_STATUS (*extract_service_ready_ext)(wmi_unified_t wmi_handle,
  1017. uint8_t *evt_buf,
  1018. struct wlan_psoc_host_service_ext_param *param);
  1019. QDF_STATUS (*extract_hw_mode_cap_service_ready_ext)(
  1020. wmi_unified_t wmi_handle,
  1021. uint8_t *evt_buf, uint8_t hw_mode_idx,
  1022. struct wlan_psoc_host_hw_mode_caps *param);
  1023. QDF_STATUS (*extract_mac_phy_cap_service_ready_ext)(
  1024. wmi_unified_t wmi_handle,
  1025. uint8_t *evt_buf,
  1026. uint8_t hw_mode_id,
  1027. uint8_t phy_id,
  1028. struct wlan_psoc_host_mac_phy_caps *param);
  1029. QDF_STATUS (*extract_reg_cap_service_ready_ext)(
  1030. wmi_unified_t wmi_handle,
  1031. uint8_t *evt_buf, uint8_t phy_idx,
  1032. struct wlan_psoc_host_hal_reg_capabilities_ext *param);
  1033. QDF_STATUS (*extract_dbr_ring_cap_service_ready_ext)(
  1034. wmi_unified_t wmi_handle,
  1035. uint8_t *evt_buf, uint8_t idx,
  1036. struct wlan_psoc_host_dbr_ring_caps *param);
  1037. QDF_STATUS (*extract_dbr_buf_release_fixed)(
  1038. wmi_unified_t wmi_handle,
  1039. uint8_t *evt_buf,
  1040. struct direct_buf_rx_rsp *param);
  1041. QDF_STATUS (*extract_dbr_buf_release_entry)(
  1042. wmi_unified_t wmi_handle,
  1043. uint8_t *evt_buf, uint8_t idx,
  1044. struct direct_buf_rx_entry *param);
  1045. QDF_STATUS (*extract_dbr_buf_metadata)(
  1046. wmi_unified_t wmi_handle,
  1047. uint8_t *evt_buf, uint8_t idx,
  1048. struct direct_buf_rx_metadata *param);
  1049. QDF_STATUS (*extract_pdev_utf_event)(wmi_unified_t wmi_hdl,
  1050. uint8_t *evt_buf,
  1051. struct wmi_host_pdev_utf_event *param);
  1052. QDF_STATUS (*extract_pdev_qvit_event)(wmi_unified_t wmi_hdl,
  1053. uint8_t *evt_buf,
  1054. struct wmi_host_pdev_qvit_event *param);
  1055. uint16_t (*wmi_set_htc_tx_tag)(wmi_unified_t wmi_handle,
  1056. wmi_buf_t buf, uint32_t cmd_id);
  1057. QDF_STATUS (*extract_peer_delete_response_event)(
  1058. wmi_unified_t wmi_handle,
  1059. void *evt_buf,
  1060. struct wmi_host_peer_delete_response_event *param);
  1061. bool (*is_management_record)(uint32_t cmd_id);
  1062. uint8_t *(*wmi_id_to_name)(uint32_t cmd_id);
  1063. QDF_STATUS (*send_dfs_phyerr_offload_en_cmd)(wmi_unified_t wmi_handle,
  1064. uint32_t pdev_id);
  1065. QDF_STATUS (*send_dfs_phyerr_offload_dis_cmd)(wmi_unified_t wmi_handle,
  1066. uint32_t pdev_id);
  1067. QDF_STATUS (*extract_reg_chan_list_update_event)(wmi_unified_t wmi_handle,
  1068. uint8_t *evt_buf,
  1069. struct cur_regulatory_info
  1070. *reg_info,
  1071. uint32_t len);
  1072. QDF_STATUS (*extract_reg_11d_new_country_event)(wmi_unified_t wmi_handle,
  1073. uint8_t *evt_buf,
  1074. struct reg_11d_new_country *reg_11d_country,
  1075. uint32_t len);
  1076. QDF_STATUS (*extract_reg_ch_avoid_event)(wmi_unified_t wmi_handle,
  1077. uint8_t *evt_buf,
  1078. struct ch_avoid_ind_type *ch_avoid_event,
  1079. uint32_t len);
  1080. QDF_STATUS (*extract_chainmask_tables)(wmi_unified_t wmi_handle,
  1081. uint8_t *evt_buf,
  1082. struct wlan_psoc_host_chainmask_table *chainmask_table);
  1083. QDF_STATUS (*send_get_rcpi_cmd)(wmi_unified_t wmi_handle,
  1084. struct rcpi_req *get_rcpi_param);
  1085. QDF_STATUS (*extract_rcpi_response_event)(wmi_unified_t wmi_handle,
  1086. void *evt_buf,
  1087. struct rcpi_res *res);
  1088. #ifdef DFS_COMPONENT_ENABLE
  1089. QDF_STATUS (*extract_dfs_cac_complete_event)(wmi_unified_t wmi_handle,
  1090. uint8_t *evt_buf,
  1091. uint32_t *vdev_id,
  1092. uint32_t len);
  1093. QDF_STATUS (*extract_dfs_radar_detection_event)(wmi_unified_t wmi_handle,
  1094. uint8_t *evt_buf,
  1095. struct radar_found_info *radar_found,
  1096. uint32_t len);
  1097. QDF_STATUS (*extract_wlan_radar_event_info)(wmi_unified_t wmi_handle,
  1098. uint8_t *evt_buf,
  1099. struct radar_event_info *wlan_radar_event,
  1100. uint32_t len);
  1101. #endif
  1102. QDF_STATUS (*send_set_country_cmd)(wmi_unified_t wmi_handle,
  1103. struct set_country *param);
  1104. uint32_t (*convert_pdev_id_host_to_target)(uint32_t pdev_id);
  1105. uint32_t (*convert_pdev_id_target_to_host)(uint32_t pdev_id);
  1106. QDF_STATUS (*send_user_country_code_cmd)(wmi_unified_t wmi_handle,
  1107. uint8_t pdev_id, struct cc_regdmn_s *rd);
  1108. QDF_STATUS (*send_limit_off_chan_cmd)(wmi_unified_t wmi_handle,
  1109. struct wmi_limit_off_chan_param *limit_off_chan_param);
  1110. QDF_STATUS (*send_wow_timer_pattern_cmd)(wmi_unified_t wmi_handle,
  1111. uint8_t vdev_id, uint32_t cookie, uint32_t time);
  1112. QDF_STATUS (*send_wds_entry_list_cmd)(wmi_unified_t wmi_handle);
  1113. QDF_STATUS (*extract_wds_entry)(wmi_unified_t wmi_handle,
  1114. uint8_t *evt_buf,
  1115. struct wdsentry *wds_entry,
  1116. u_int32_t idx);
  1117. #ifdef WLAN_FEATURE_NAN_CONVERGENCE
  1118. QDF_STATUS (*send_ndp_initiator_req_cmd)(wmi_unified_t wmi_handle,
  1119. struct nan_datapath_initiator_req *req);
  1120. QDF_STATUS (*send_ndp_responder_req_cmd)(wmi_unified_t wmi_handle,
  1121. struct nan_datapath_responder_req *req);
  1122. QDF_STATUS (*send_ndp_end_req_cmd)(wmi_unified_t wmi_handle,
  1123. struct nan_datapath_end_req *req);
  1124. QDF_STATUS (*extract_ndp_initiator_rsp)(wmi_unified_t wmi_handle,
  1125. uint8_t *data, struct nan_datapath_initiator_rsp *rsp);
  1126. QDF_STATUS (*extract_ndp_ind)(wmi_unified_t wmi_handle,
  1127. uint8_t *data, struct nan_datapath_indication_event *ind);
  1128. QDF_STATUS (*extract_ndp_confirm)(wmi_unified_t wmi_handle,
  1129. uint8_t *data, struct nan_datapath_confirm_event *ev);
  1130. QDF_STATUS (*extract_ndp_responder_rsp)(wmi_unified_t wmi_handle,
  1131. uint8_t *data, struct nan_datapath_responder_rsp *rsp);
  1132. QDF_STATUS (*extract_ndp_end_rsp)(wmi_unified_t wmi_handle,
  1133. uint8_t *data, struct nan_datapath_end_rsp_event *rsp);
  1134. QDF_STATUS (*extract_ndp_end_ind)(wmi_unified_t wmi_handle,
  1135. uint8_t *data, struct nan_datapath_end_indication_event **ind);
  1136. #endif /* WLAN_FEATURE_NAN_CONVERGENCE */
  1137. QDF_STATUS (*send_btm_config)(wmi_unified_t wmi_handle,
  1138. struct wmi_btm_config *params);
  1139. QDF_STATUS (*send_obss_detection_cfg_cmd)(wmi_unified_t wmi_handle,
  1140. struct wmi_obss_detection_cfg_param *obss_cfg_param);
  1141. QDF_STATUS (*extract_obss_detection_info)(uint8_t *evt_buf,
  1142. struct wmi_obss_detect_info *info);
  1143. #ifdef WLAN_SUPPORT_FILS
  1144. QDF_STATUS (*send_vdev_fils_enable_cmd)(wmi_unified_t wmi_handle,
  1145. struct config_fils_params *param);
  1146. QDF_STATUS (*extract_swfda_vdev_id)(wmi_unified_t wmi_handle, void *evt_buf,
  1147. uint32_t *vdev_id);
  1148. QDF_STATUS (*send_fils_discovery_send_cmd)(wmi_unified_t wmi_handle,
  1149. struct fd_params *param);
  1150. #endif /* WLAN_SUPPORT_FILS */
  1151. QDF_STATUS (*send_offload_11k_cmd)(wmi_unified_t wmi_handle,
  1152. struct wmi_11k_offload_params *params);
  1153. QDF_STATUS (*send_invoke_neighbor_report_cmd)(wmi_unified_t wmi_handle,
  1154. struct wmi_invoke_neighbor_report_params *params);
  1155. void (*wmi_pdev_id_conversion_enable)(wmi_unified_t wmi_handle);
  1156. void (*send_time_stamp_sync_cmd)(wmi_unified_t wmi_handle);
  1157. void (*wmi_free_allocated_event)(uint32_t cmd_event_id,
  1158. void **wmi_cmd_struct_ptr);
  1159. int (*wmi_check_and_pad_event)(void *os_handle, void *param_struc_ptr,
  1160. uint32_t param_buf_len,
  1161. uint32_t wmi_cmd_event_id,
  1162. void **wmi_cmd_struct_ptr);
  1163. int (*wmi_check_command_params)(void *os_handle, void *param_struc_ptr,
  1164. uint32_t param_buf_len,
  1165. uint32_t wmi_cmd_event_id);
  1166. QDF_STATUS (*send_bss_color_change_enable_cmd)(wmi_unified_t wmi_handle,
  1167. uint32_t vdev_id,
  1168. bool enable);
  1169. QDF_STATUS (*send_obss_color_collision_cfg_cmd)(wmi_unified_t wmi_handle,
  1170. struct wmi_obss_color_collision_cfg_param *cfg);
  1171. QDF_STATUS (*extract_obss_color_collision_info)(uint8_t *evt_buf,
  1172. struct wmi_obss_color_collision_info *info);
  1173. #ifdef WLAN_SUPPORT_TWT
  1174. QDF_STATUS (*send_twt_enable_cmd)(wmi_unified_t wmi_handle,
  1175. struct wmi_twt_enable_param *params);
  1176. QDF_STATUS (*send_twt_disable_cmd)(wmi_unified_t wmi_handle,
  1177. struct wmi_twt_disable_param *params);
  1178. QDF_STATUS (*send_twt_add_dialog_cmd)(wmi_unified_t wmi_handle,
  1179. struct wmi_twt_add_dialog_param *params);
  1180. QDF_STATUS (*send_twt_del_dialog_cmd)(wmi_unified_t wmi_handle,
  1181. struct wmi_twt_del_dialog_param *params);
  1182. QDF_STATUS (*send_twt_pause_dialog_cmd)(wmi_unified_t wmi_handle,
  1183. struct wmi_twt_pause_dialog_cmd_param *params);
  1184. QDF_STATUS (*send_twt_resume_dialog_cmd)(wmi_unified_t wmi_handle,
  1185. struct wmi_twt_resume_dialog_cmd_param *params);
  1186. QDF_STATUS (*extract_twt_enable_comp_event)(wmi_unified_t wmi_handle,
  1187. uint8_t *evt_buf,
  1188. struct wmi_twt_enable_complete_event_param *params);
  1189. QDF_STATUS (*extract_twt_disable_comp_event)(wmi_unified_t wmi_handle,
  1190. uint8_t *evt_buf,
  1191. struct wmi_twt_disable_complete_event *params);
  1192. QDF_STATUS (*extract_twt_add_dialog_comp_event)(wmi_unified_t wmi_handle,
  1193. uint8_t *evt_buf,
  1194. struct wmi_twt_add_dialog_complete_event_param *params);
  1195. QDF_STATUS (*extract_twt_del_dialog_comp_event)(wmi_unified_t wmi_handle,
  1196. uint8_t *evt_buf,
  1197. struct wmi_twt_del_dialog_complete_event_param *params);
  1198. QDF_STATUS (*extract_twt_pause_dialog_comp_event)(wmi_unified_t wmi_handle,
  1199. uint8_t *evt_buf,
  1200. struct wmi_twt_pause_dialog_complete_event_param *params);
  1201. QDF_STATUS (*extract_twt_resume_dialog_comp_event)(wmi_unified_t wmi_handle,
  1202. uint8_t *evt_buf,
  1203. struct wmi_twt_resume_dialog_complete_event_param *params);
  1204. #endif
  1205. #ifdef QCA_SUPPORT_CP_STATS
  1206. QDF_STATUS (*extract_cca_stats)(wmi_unified_t wmi_handle, void *evt_buf,
  1207. struct wmi_host_congestion_stats *stats);
  1208. #endif /* QCA_SUPPORT_CP_STATS */
  1209. };
  1210. /* Forward declartion for psoc*/
  1211. struct wlan_objmgr_psoc;
  1212. /**
  1213. * struct wmi_init_cmd - Saved wmi INIT command
  1214. * @buf: Buffer containing the wmi INIT command
  1215. * @buf_len: Length of the buffer
  1216. */
  1217. struct wmi_cmd_init {
  1218. wmi_buf_t buf;
  1219. uint32_t buf_len;
  1220. };
  1221. /**
  1222. * @abi_version_0: WMI Major and Minor versions
  1223. * @abi_version_1: WMI change revision
  1224. * @abi_version_ns_0: ABI version namespace first four dwords
  1225. * @abi_version_ns_1: ABI version namespace second four dwords
  1226. * @abi_version_ns_2: ABI version namespace third four dwords
  1227. * @abi_version_ns_3: ABI version namespace fourth four dwords
  1228. */
  1229. struct wmi_host_abi_version {
  1230. uint32_t abi_version_0;
  1231. uint32_t abi_version_1;
  1232. uint32_t abi_version_ns_0;
  1233. uint32_t abi_version_ns_1;
  1234. uint32_t abi_version_ns_2;
  1235. uint32_t abi_version_ns_3;
  1236. };
  1237. struct wmi_unified {
  1238. void *scn_handle; /* handle to device */
  1239. osdev_t osdev; /* handle to use OS-independent services */
  1240. qdf_atomic_t pending_cmds;
  1241. HTC_ENDPOINT_ID wmi_endpoint_id;
  1242. uint16_t max_msg_len;
  1243. uint32_t *event_id;
  1244. wmi_unified_event_handler *event_handler;
  1245. enum wmi_rx_exec_ctx *ctx;
  1246. void *htc_handle;
  1247. qdf_spinlock_t eventq_lock;
  1248. qdf_nbuf_queue_t event_queue;
  1249. qdf_work_t rx_event_work;
  1250. qdf_workqueue_t *wmi_rx_work_queue;
  1251. int wmi_stop_in_progress;
  1252. struct wmi_host_abi_version fw_abi_version;
  1253. struct wmi_host_abi_version final_abi_vers;
  1254. uint32_t num_of_diag_events_logs;
  1255. uint32_t *events_logs_list;
  1256. #ifdef WLAN_OPEN_SOURCE
  1257. struct fwdebug dbglog;
  1258. struct dentry *debugfs_phy;
  1259. #endif /* WLAN_OPEN_SOURCE */
  1260. #ifdef WMI_INTERFACE_EVENT_LOGGING
  1261. struct wmi_debug_log_info log_info;
  1262. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  1263. qdf_atomic_t is_target_suspended;
  1264. #ifdef FEATURE_RUNTIME_PM
  1265. qdf_atomic_t runtime_pm_inprogress;
  1266. #endif
  1267. qdf_atomic_t is_wow_bus_suspended;
  1268. bool tag_crash_inject;
  1269. bool tgt_force_assert_enable;
  1270. enum wmi_target_type target_type;
  1271. struct wmi_rx_ops rx_ops;
  1272. struct wmi_ops *ops;
  1273. bool use_cookie;
  1274. bool wmi_stopinprogress;
  1275. uint32_t *wmi_events;
  1276. #ifndef CONFIG_MCL
  1277. uint32_t *pdev_param;
  1278. uint32_t *vdev_param;
  1279. #endif
  1280. uint32_t *services;
  1281. struct wmi_soc *soc;
  1282. uint16_t wmi_max_cmds;
  1283. };
  1284. #define WMI_MAX_RADIOS 3
  1285. struct wmi_soc {
  1286. struct wlan_objmgr_psoc *wmi_psoc;
  1287. void *scn_handle; /* handle to device */
  1288. qdf_atomic_t num_pdevs;
  1289. enum wmi_target_type target_type;
  1290. void *htc_handle;
  1291. uint32_t event_id[WMI_UNIFIED_MAX_EVENT];
  1292. wmi_unified_event_handler event_handler[WMI_UNIFIED_MAX_EVENT];
  1293. uint32_t max_event_idx;
  1294. enum wmi_rx_exec_ctx ctx[WMI_UNIFIED_MAX_EVENT];
  1295. qdf_spinlock_t ctx_lock;
  1296. struct wmi_unified *wmi_pdev[WMI_MAX_RADIOS];
  1297. HTC_ENDPOINT_ID wmi_endpoint_id[WMI_MAX_RADIOS];
  1298. uint16_t max_msg_len[WMI_MAX_RADIOS];
  1299. struct wmi_ops *ops;
  1300. const uint32_t *svc_ids;
  1301. uint32_t wmi_events[wmi_events_max];
  1302. /* WMI service bitmap received from target */
  1303. uint32_t *wmi_service_bitmap;
  1304. uint32_t *wmi_ext_service_bitmap;
  1305. #ifndef CONFIG_MCL
  1306. uint32_t pdev_param[wmi_pdev_param_max];
  1307. uint32_t vdev_param[wmi_vdev_param_max];
  1308. #endif
  1309. uint32_t services[wmi_services_max];
  1310. uint16_t wmi_max_cmds;
  1311. };
  1312. void wmi_unified_register_module(enum wmi_target_type target_type,
  1313. void (*wmi_attach)(wmi_unified_t wmi_handle));
  1314. void wmi_tlv_init(void);
  1315. void wmi_non_tlv_init(void);
  1316. #ifdef WMI_NON_TLV_SUPPORT
  1317. /* ONLY_NON_TLV_TARGET:TLV attach dummy function defintion for case when
  1318. * driver supports only NON-TLV target (WIN mainline) */
  1319. #define wmi_tlv_attach(x) qdf_print("TLV Unavailable\n")
  1320. #else
  1321. void wmi_tlv_attach(wmi_unified_t wmi_handle);
  1322. #endif
  1323. void wmi_non_tlv_attach(wmi_unified_t wmi_handle);
  1324. /**
  1325. * wmi_align() - provides word aligned parameter
  1326. * @param: parameter to be aligned
  1327. *
  1328. * Return: word aligned parameter
  1329. */
  1330. static inline uint32_t wmi_align(uint32_t param)
  1331. {
  1332. return roundup(param, sizeof(uint32_t));
  1333. }
  1334. /**
  1335. * wmi_vdev_map_to_vdev_id() - Provides vdev id corresponding to idx
  1336. * from vdev map
  1337. * @vdev_map: Bitmask containing information of active vdev ids
  1338. * @idx: Index referring to the i'th bit set from LSB in vdev map
  1339. *
  1340. * This API returns the vdev id for the i'th bit set from LSB in vdev map.
  1341. * Index runs through 1 from maximum number of vdevs set in the vdev map
  1342. *
  1343. * Return: vdev id of the vdev object
  1344. */
  1345. static inline uint32_t wmi_vdev_map_to_vdev_id(uint32_t vdev_map,
  1346. uint32_t idx)
  1347. {
  1348. uint32_t vdev_count = 0, vdev_set = 0, vdev_id = WLAN_INVALID_VDEV_ID;
  1349. while (vdev_map) {
  1350. vdev_set += (vdev_map & 0x1);
  1351. if (vdev_set == (idx+1)) {
  1352. vdev_id = vdev_count;
  1353. break;
  1354. }
  1355. vdev_map >>= 1;
  1356. vdev_count++;
  1357. }
  1358. return vdev_id;
  1359. }
  1360. /**
  1361. * wmi_vdev_map_to_num_vdevs() - Provides number of vdevs active based on the
  1362. * vdev map received from FW
  1363. * @vdev_map: Bitmask containing information of active vdev ids
  1364. *
  1365. * Return: Number of vdevs set in the vdev bit mask
  1366. */
  1367. static inline uint32_t wmi_vdev_map_to_num_vdevs(uint32_t vdev_map)
  1368. {
  1369. uint32_t num_vdevs = 0;
  1370. while (vdev_map) {
  1371. num_vdevs += (vdev_map & 0x1);
  1372. vdev_map >>= 1;
  1373. }
  1374. return num_vdevs;
  1375. }
  1376. #endif