wmi_unified_priv.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
  1. /*
  2. * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /*
  27. * This file contains the API definitions for the Unified Wireless
  28. * Module Interface (WMI).
  29. */
  30. #ifndef _WMI_UNIFIED_PRIV_H_
  31. #define _WMI_UNIFIED_PRIV_H_
  32. #include <osdep.h>
  33. #include "a_types.h"
  34. #include "wmi.h"
  35. #include "wmi_unified.h"
  36. #include "qdf_atomic.h"
  37. #define WMI_UNIFIED_MAX_EVENT 0x100
  38. #define WMI_MAX_CMDS 1024
  39. typedef qdf_nbuf_t wmi_buf_t;
  40. #ifdef WMI_INTERFACE_EVENT_LOGGING
  41. #define WMI_EVENT_DEBUG_MAX_ENTRY (1024)
  42. struct wmi_command_debug {
  43. uint32_t command;
  44. uint32_t data[4]; /*16 bytes of WMI cmd excluding TLV and WMI headers */
  45. uint64_t time;
  46. };
  47. struct wmi_event_debug {
  48. uint32_t event;
  49. uint32_t data[4]; /*16 bytes of WMI event data excluding TLV header */
  50. uint64_t time;
  51. };
  52. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  53. #ifdef WLAN_OPEN_SOURCE
  54. struct fwdebug {
  55. struct sk_buff_head fwlog_queue;
  56. struct completion fwlog_completion;
  57. A_BOOL fwlog_open;
  58. };
  59. #endif /* WLAN_OPEN_SOURCE */
  60. struct wmi_ops {
  61. QDF_STATUS (*send_vdev_create_cmd)(wmi_unified_t wmi_handle,
  62. uint8_t macaddr[IEEE80211_ADDR_LEN],
  63. struct vdev_create_params *param);
  64. QDF_STATUS (*send_vdev_delete_cmd)(wmi_unified_t wmi_handle,
  65. uint8_t if_id);
  66. QDF_STATUS (*send_vdev_stop_cmd)(wmi_unified_t wmi,
  67. uint8_t vdev_id);
  68. QDF_STATUS (*send_vdev_down_cmd)(wmi_unified_t wmi,
  69. uint8_t vdev_id);
  70. QDF_STATUS (*send_peer_flush_tids_cmd)(wmi_unified_t wmi,
  71. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  72. struct peer_flush_params *param);
  73. QDF_STATUS (*send_peer_delete_cmd)(wmi_unified_t wmi,
  74. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  75. uint8_t vdev_id);
  76. QDF_STATUS (*send_peer_param_cmd)(wmi_unified_t wmi,
  77. uint8_t peer_addr[IEEE80211_ADDR_LEN],
  78. struct peer_set_params *param);
  79. QDF_STATUS (*send_vdev_up_cmd)(wmi_unified_t wmi,
  80. uint8_t bssid[IEEE80211_ADDR_LEN],
  81. struct vdev_up_params *params);
  82. QDF_STATUS (*send_peer_create_cmd)(wmi_unified_t wmi,
  83. struct peer_create_params *param);
  84. QDF_STATUS (*send_green_ap_ps_cmd)(wmi_unified_t wmi_handle,
  85. uint32_t value, uint8_t mac_id);
  86. QDF_STATUS
  87. (*send_pdev_utf_cmd)(wmi_unified_t wmi_handle,
  88. struct pdev_utf_params *param,
  89. uint8_t mac_id);
  90. QDF_STATUS
  91. (*send_pdev_param_cmd)(wmi_unified_t wmi_handle,
  92. struct pdev_params *param,
  93. uint8_t mac_id);
  94. QDF_STATUS (*send_suspend_cmd)(wmi_unified_t wmi_handle,
  95. struct suspend_params *param,
  96. uint8_t mac_id);
  97. QDF_STATUS (*send_resume_cmd)(wmi_unified_t wmi_handle,
  98. uint8_t mac_id);
  99. QDF_STATUS (*send_wow_enable_cmd)(wmi_unified_t wmi_handle,
  100. struct wow_cmd_params *param,
  101. uint8_t mac_id);
  102. QDF_STATUS (*send_set_ap_ps_param_cmd)(wmi_unified_t wmi_handle,
  103. uint8_t *peer_addr,
  104. struct ap_ps_params *param);
  105. QDF_STATUS (*send_set_sta_ps_param_cmd)(wmi_unified_t wmi_handle,
  106. struct sta_ps_params *param);
  107. QDF_STATUS (*send_crash_inject_cmd)(wmi_unified_t wmi_handle,
  108. struct crash_inject *param);
  109. QDF_STATUS
  110. (*send_dbglog_cmd)(wmi_unified_t wmi_handle,
  111. struct dbglog_params *dbglog_param);
  112. QDF_STATUS (*send_vdev_set_param_cmd)(wmi_unified_t wmi_handle,
  113. struct vdev_set_params *param);
  114. QDF_STATUS (*send_stats_request_cmd)(wmi_unified_t wmi_handle,
  115. uint8_t macaddr[IEEE80211_ADDR_LEN],
  116. struct stats_request_params *param);
  117. QDF_STATUS (*send_packet_log_enable_cmd)(wmi_unified_t wmi_handle,
  118. uint8_t macaddr[IEEE80211_ADDR_LEN],
  119. struct packet_enable_params *param);
  120. QDF_STATUS (*send_beacon_send_cmd)(wmi_unified_t wmi_handle,
  121. struct beacon_params *param);
  122. QDF_STATUS (*send_peer_assoc_cmd)(wmi_unified_t wmi_handle,
  123. struct peer_assoc_params *param);
  124. QDF_STATUS (*send_scan_start_cmd)(wmi_unified_t wmi_handle,
  125. struct scan_start_params *param);
  126. QDF_STATUS (*send_scan_stop_cmd)(wmi_unified_t wmi_handle,
  127. struct scan_stop_params *param);
  128. QDF_STATUS (*send_scan_chan_list_cmd)(wmi_unified_t wmi_handle,
  129. struct scan_chan_list_params *param);
  130. QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
  131. struct wmi_mgmt_params *param);
  132. QDF_STATUS (*send_modem_power_state_cmd)(wmi_unified_t wmi_handle,
  133. uint32_t param_value);
  134. QDF_STATUS (*send_set_sta_ps_mode_cmd)(wmi_unified_t wmi_handle,
  135. uint32_t vdev_id, uint8_t val);
  136. QDF_STATUS (*send_get_temperature_cmd)(wmi_unified_t wmi_handle);
  137. QDF_STATUS (*send_set_p2pgo_oppps_req_cmd)(wmi_unified_t wmi_handle,
  138. struct p2p_ps_params *oppps);
  139. QDF_STATUS (*send_set_p2pgo_noa_req_cmd)(wmi_unified_t wmi_handle,
  140. struct p2p_ps_params *noa);
  141. QDF_STATUS (*send_set_smps_params_cmd)(wmi_unified_t wmi_handle,
  142. uint8_t vdev_id,
  143. int value);
  144. QDF_STATUS (*send_set_mimops_cmd)(wmi_unified_t wmi_handle,
  145. uint8_t vdev_id, int value);
  146. QDF_STATUS (*send_set_sta_uapsd_auto_trig_cmd)(wmi_unified_t wmi_handle,
  147. struct sta_uapsd_trig_params *param);
  148. QDF_STATUS (*send_ocb_set_utc_time_cmd)(wmi_unified_t wmi_handle,
  149. struct ocb_utc_param *utc);
  150. QDF_STATUS (*send_ocb_get_tsf_timer_cmd)(wmi_unified_t wmi_handle,
  151. uint8_t vdev_id);
  152. QDF_STATUS (*send_ocb_start_timing_advert_cmd)(wmi_unified_t wmi_handle,
  153. struct ocb_timing_advert_param *timing_advert);
  154. QDF_STATUS (*send_ocb_stop_timing_advert_cmd)(wmi_unified_t wmi_handle,
  155. struct ocb_timing_advert_param *timing_advert);
  156. QDF_STATUS (*send_dcc_get_stats_cmd)(wmi_unified_t wmi_handle,
  157. struct dcc_get_stats_param *get_stats_param);
  158. QDF_STATUS (*send_dcc_clear_stats_cmd)(wmi_unified_t wmi_handle,
  159. uint32_t vdev_id, uint32_t dcc_stats_bitmap);
  160. QDF_STATUS (*send_dcc_update_ndl_cmd)(wmi_unified_t wmi_handle,
  161. struct dcc_update_ndl_param *update_ndl_param);
  162. QDF_STATUS (*send_ocb_set_config_cmd)(wmi_unified_t wmi_handle,
  163. struct ocb_config_param *config, uint32_t *ch_mhz);
  164. QDF_STATUS (*send_lro_config_cmd)(wmi_unified_t wmi_handle,
  165. struct wmi_lro_config_cmd_t *wmi_lro_cmd);
  166. QDF_STATUS (*send_set_thermal_mgmt_cmd)(wmi_unified_t wmi_handle,
  167. struct thermal_cmd_params *thermal_info);
  168. QDF_STATUS (*send_set_mcc_channel_time_quota_cmd)
  169. (wmi_unified_t wmi_handle,
  170. uint32_t adapter_1_chan_freq,
  171. uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
  172. QDF_STATUS (*send_set_mcc_channel_time_latency_cmd)
  173. (wmi_unified_t wmi_handle,
  174. uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
  175. QDF_STATUS (*send_set_enable_disable_mcc_adaptive_scheduler_cmd)(
  176. wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler);
  177. QDF_STATUS (*send_p2p_go_set_beacon_ie_cmd)(wmi_unified_t wmi_handle,
  178. A_UINT32 vdev_id, uint8_t *p2p_ie);
  179. QDF_STATUS (*send_probe_rsp_tmpl_send_cmd)(wmi_unified_t wmi_handle,
  180. uint8_t vdev_id,
  181. struct wmi_probe_resp_params *probe_rsp_info,
  182. uint8_t *frm);
  183. QDF_STATUS (*send_process_update_edca_param_cmd)(wmi_unified_t wmi_handle,
  184. uint8_t vdev_id,
  185. wmi_wmm_vparams gwmm_param[WMI_MAX_NUM_AC]);
  186. QDF_STATUS (*send_vdev_set_gtx_cfg_cmd)(wmi_unified_t wmi_handle,
  187. uint32_t if_id,
  188. struct wmi_gtx_config *gtx_info);
  189. QDF_STATUS (*send_set_sta_keep_alive_cmd)(wmi_unified_t wmi_handle,
  190. struct sta_params *params);
  191. QDF_STATUS (*send_set_sta_sa_query_param_cmd)(wmi_unified_t wmi_handle,
  192. uint8_t vdev_id, uint32_t max_retries,
  193. uint32_t retry_interval);
  194. QDF_STATUS (*send_bcn_buf_ll_cmd)(wmi_unified_t wmi_handle,
  195. wmi_bcn_send_from_host_cmd_fixed_param *param);
  196. QDF_STATUS (*send_set_gateway_params_cmd)(wmi_unified_t wmi_handle,
  197. struct gateway_update_req_param *req);
  198. QDF_STATUS (*send_set_rssi_monitoring_cmd)(wmi_unified_t wmi_handle,
  199. struct rssi_monitor_param *req);
  200. QDF_STATUS (*send_scan_probe_setoui_cmd)(wmi_unified_t wmi_handle,
  201. struct scan_mac_oui *psetoui);
  202. QDF_STATUS (*send_reset_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
  203. struct wifi_passpoint_req_param *req);
  204. QDF_STATUS (*send_set_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
  205. struct wifi_passpoint_req_param *req);
  206. QDF_STATUS (*send_set_epno_network_list_cmd)(wmi_unified_t wmi_handle,
  207. struct wifi_enhanched_pno_params *req);
  208. QDF_STATUS (*send_extscan_get_capabilities_cmd)(wmi_unified_t wmi_handle,
  209. struct extscan_capabilities_params *pgetcapab);
  210. QDF_STATUS (*send_extscan_get_cached_results_cmd)(wmi_unified_t wmi_handle,
  211. struct extscan_cached_result_params *pcached_results);
  212. QDF_STATUS (*send_extscan_stop_change_monitor_cmd)(wmi_unified_t wmi_handle,
  213. struct extscan_capabilities_reset_params *reset_req);
  214. QDF_STATUS (*send_extscan_start_change_monitor_cmd)(wmi_unified_t wmi_handle,
  215. struct extscan_set_sig_changereq_params *
  216. psigchange);
  217. QDF_STATUS (*send_extscan_stop_hotlist_monitor_cmd)(wmi_unified_t wmi_handle,
  218. struct extscan_bssid_hotlist_reset_params *photlist_reset);
  219. QDF_STATUS (*send_stop_extscan_cmd)(wmi_unified_t wmi_handle,
  220. struct extscan_stop_req_params *pstopcmd);
  221. QDF_STATUS (*send_start_extscan_cmd)(wmi_unified_t wmi_handle,
  222. struct wifi_scan_cmd_req_params *pstart);
  223. QDF_STATUS (*send_plm_stop_cmd)(wmi_unified_t wmi_handle,
  224. const struct plm_req_params *plm);
  225. QDF_STATUS (*send_plm_start_cmd)(wmi_unified_t wmi_handle,
  226. const struct plm_req_params *plm,
  227. uint32_t *gchannel_list);
  228. QDF_STATUS (*send_csa_offload_enable_cmd)(wmi_unified_t wmi_handle,
  229. uint8_t vdev_id);
  230. QDF_STATUS (*send_pno_stop_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  231. QDF_STATUS (*send_pno_start_cmd)(wmi_unified_t wmi_handle,
  232. struct pno_scan_req_params *pno,
  233. uint32_t *gchannel_freq_list);
  234. QDF_STATUS (*send_ipa_offload_control_cmd)(wmi_unified_t wmi_handle,
  235. struct ipa_offload_control_params *ipa_offload);
  236. QDF_STATUS (*send_set_ric_req_cmd)(wmi_unified_t wmi_handle, void *msg,
  237. uint8_t is_add_ts);
  238. QDF_STATUS (*send_process_ll_stats_clear_cmd)
  239. (wmi_unified_t wmi_handle,
  240. const struct ll_stats_clear_params *clear_req,
  241. uint8_t addr[IEEE80211_ADDR_LEN]);
  242. QDF_STATUS (*send_process_ll_stats_set_cmd)
  243. (wmi_unified_t wmi_handle, const struct ll_stats_set_params *set_req);
  244. QDF_STATUS (*send_process_ll_stats_get_cmd)
  245. (wmi_unified_t wmi_handle, const struct ll_stats_get_params *get_req,
  246. uint8_t addr[IEEE80211_ADDR_LEN]);
  247. QDF_STATUS (*send_get_stats_cmd)(wmi_unified_t wmi_handle,
  248. struct pe_stats_req *get_stats_param,
  249. uint8_t addr[IEEE80211_ADDR_LEN]);
  250. QDF_STATUS (*send_snr_request_cmd)(wmi_unified_t wmi_handle);
  251. QDF_STATUS (*send_snr_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  252. QDF_STATUS (*send_link_status_req_cmd)(wmi_unified_t wmi_handle,
  253. struct link_status_params *link_status);
  254. QDF_STATUS (*send_lphb_config_hbenable_cmd)(wmi_unified_t wmi_handle,
  255. wmi_hb_set_enable_cmd_fixed_param *params);
  256. QDF_STATUS (*send_lphb_config_tcp_params_cmd)(wmi_unified_t wmi_handle,
  257. wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req);
  258. QDF_STATUS (*send_lphb_config_tcp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
  259. wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp);
  260. QDF_STATUS (*send_lphb_config_udp_params_cmd)(wmi_unified_t wmi_handle,
  261. wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req);
  262. QDF_STATUS (*send_lphb_config_udp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
  263. wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req);
  264. QDF_STATUS (*send_process_dhcp_ind_cmd)(wmi_unified_t wmi_handle,
  265. wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
  266. QDF_STATUS (*send_get_link_speed_cmd)(wmi_unified_t wmi_handle,
  267. wmi_mac_addr peer_macaddr);
  268. QDF_STATUS (*send_egap_conf_params_cmd)(wmi_unified_t wmi_handle,
  269. wmi_ap_ps_egap_param_cmd_fixed_param *egap_params);
  270. QDF_STATUS (*send_fw_profiling_cmd)(wmi_unified_t wmi_handle,
  271. uint32_t cmd, uint32_t value1, uint32_t value2);
  272. QDF_STATUS (*send_wow_sta_ra_filter_cmd)(wmi_unified_t wmi_handle,
  273. uint8_t vdev_id, uint8_t default_pattern,
  274. uint16_t rate_limit_interval);
  275. QDF_STATUS (*send_nat_keepalive_en_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
  276. QDF_STATUS (*send_start_oem_data_cmd)(wmi_unified_t wmi_handle,
  277. uint8_t data_len,
  278. uint8_t *data);
  279. QDF_STATUS
  280. (*send_dfs_phyerr_filter_offload_en_cmd)(wmi_unified_t wmi_handle,
  281. bool dfs_phyerr_filter_offload);
  282. QDF_STATUS (*send_pktlog_wmi_send_cmd)(wmi_unified_t wmi_handle,
  283. WMI_PKTLOG_EVENT pktlog_event,
  284. WMI_CMD_ID cmd_id);
  285. QDF_STATUS (*send_add_wow_wakeup_event_cmd)(wmi_unified_t wmi_handle,
  286. uint32_t vdev_id,
  287. uint32_t bitmap,
  288. bool enable);
  289. QDF_STATUS (*send_wow_patterns_to_fw_cmd)(wmi_unified_t wmi_handle,
  290. uint8_t vdev_id, uint8_t ptrn_id,
  291. const uint8_t *ptrn, uint8_t ptrn_len,
  292. uint8_t ptrn_offset, const uint8_t *mask,
  293. uint8_t mask_len, bool user,
  294. uint8_t default_patterns);
  295. QDF_STATUS (*send_wow_delete_pattern_cmd)(wmi_unified_t wmi_handle, uint8_t ptrn_id,
  296. uint8_t vdev_id);
  297. QDF_STATUS (*send_host_wakeup_ind_to_fw_cmd)(wmi_unified_t wmi_handle);
  298. QDF_STATUS (*send_del_ts_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
  299. uint8_t ac);
  300. QDF_STATUS (*send_aggr_qos_cmd)(wmi_unified_t wmi_handle,
  301. struct aggr_add_ts_param *aggr_qos_rsp_msg);
  302. QDF_STATUS (*send_add_ts_cmd)(wmi_unified_t wmi_handle,
  303. struct add_ts_param *msg);
  304. QDF_STATUS (*send_enable_disable_packet_filter_cmd)(wmi_unified_t wmi_handle,
  305. uint8_t vdev_id, bool enable);
  306. QDF_STATUS (*send_config_packet_filter_cmd)(wmi_unified_t wmi_handle,
  307. uint8_t vdev_id, struct rcv_pkt_filter_config *rcv_filter_param,
  308. uint8_t filter_id, bool enable);
  309. QDF_STATUS (*send_add_clear_mcbc_filter_cmd)(wmi_unified_t wmi_handle,
  310. uint8_t vdev_id,
  311. struct qdf_mac_addr multicast_addr,
  312. bool clearList);
  313. QDF_STATUS (*send_gtk_offload_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
  314. struct gtk_offload_params *params,
  315. bool enable_offload,
  316. uint32_t gtk_offload_opcode);
  317. QDF_STATUS (*send_process_gtk_offload_getinfo_cmd)(wmi_unified_t wmi_handle,
  318. uint8_t vdev_id,
  319. uint64_t offload_req_opcode);
  320. QDF_STATUS (*send_process_add_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
  321. struct periodic_tx_pattern *
  322. pAddPeriodicTxPtrnParams,
  323. uint8_t vdev_id);
  324. QDF_STATUS (*send_process_del_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
  325. uint8_t vdev_id,
  326. uint8_t pattern_id);
  327. QDF_STATUS (*send_stats_ext_req_cmd)(wmi_unified_t wmi_handle,
  328. struct stats_ext_params *preq);
  329. QDF_STATUS (*send_enable_ext_wow_cmd)(wmi_unified_t wmi_handle,
  330. struct ext_wow_params *params);
  331. QDF_STATUS (*send_set_app_type2_params_in_fw_cmd)(wmi_unified_t wmi_handle,
  332. struct app_type2_params *appType2Params);
  333. QDF_STATUS (*send_set_auto_shutdown_timer_cmd)(wmi_unified_t wmi_handle,
  334. uint32_t timer_val);
  335. QDF_STATUS (*send_nan_req_cmd)(wmi_unified_t wmi_handle,
  336. struct nan_req_params *nan_req);
  337. QDF_STATUS (*send_process_dhcpserver_offload_cmd)(wmi_unified_t wmi_handle,
  338. struct dhcp_offload_info_params *pDhcpSrvOffloadInfo);
  339. QDF_STATUS (*send_process_ch_avoid_update_cmd)(wmi_unified_t wmi_handle);
  340. QDF_STATUS (*send_regdomain_info_to_fw_cmd)(wmi_unified_t wmi_handle,
  341. uint32_t reg_dmn, uint16_t regdmn2G,
  342. uint16_t regdmn5G, int8_t ctl2G,
  343. int8_t ctl5G);
  344. QDF_STATUS (*send_set_tdls_offchan_mode_cmd)(wmi_unified_t wmi_handle,
  345. struct tdls_channel_switch_params *chan_switch_params);
  346. QDF_STATUS (*send_update_fw_tdls_state_cmd)(wmi_unified_t wmi_handle,
  347. void *tdls_param, uint8_t tdls_state);
  348. QDF_STATUS (*send_update_tdls_peer_state_cmd)(wmi_unified_t wmi_handle,
  349. struct tdls_peer_state_params *peerStateParams,
  350. uint32_t *ch_mhz);
  351. QDF_STATUS (*send_process_fw_mem_dump_cmd)(wmi_unified_t wmi_handle,
  352. struct fw_dump_req_param *mem_dump_req);
  353. QDF_STATUS (*send_process_set_ie_info_cmd)(wmi_unified_t wmi_handle,
  354. struct vdev_ie_info_param *ie_info);
  355. QDF_STATUS (*send_init_cmd)(wmi_unified_t wmi_handle,
  356. wmi_resource_config *res_cfg,
  357. uint8_t num_mem_chunks, struct wmi_host_mem_chunk *mem_chunk,
  358. bool action);
  359. QDF_STATUS (*save_fw_version_cmd)(wmi_unified_t wmi_handle, void *evt_buf);
  360. QDF_STATUS (*check_and_update_fw_version_cmd)(wmi_unified_t wmi_hdl, void *ev);
  361. QDF_STATUS (*send_saved_init_cmd)(wmi_unified_t wmi_handle);
  362. QDF_STATUS (*send_set_base_macaddr_indicate_cmd)(wmi_unified_t wmi_handle,
  363. uint8_t *custom_addr);
  364. QDF_STATUS (*send_log_supported_evt_cmd)(wmi_unified_t wmi_handle,
  365. uint8_t *event,
  366. uint32_t len);
  367. QDF_STATUS (*send_enable_specific_fw_logs_cmd)(wmi_unified_t wmi_handle,
  368. struct wmi_wifi_start_log *start_log);
  369. QDF_STATUS (*send_flush_logs_to_fw_cmd)(wmi_unified_t wmi_handle);
  370. QDF_STATUS (*send_soc_set_pcl_cmd)(wmi_unified_t wmi_handle,
  371. struct wmi_pcl_list *msg);
  372. QDF_STATUS (*send_soc_set_hw_mode_cmd)(wmi_unified_t wmi_handle,
  373. uint32_t hw_mode_index);
  374. QDF_STATUS (*send_soc_set_dual_mac_config_cmd)(wmi_unified_t wmi_handle,
  375. struct wmi_dual_mac_config *msg);
  376. QDF_STATUS (*send_enable_arp_ns_offload_cmd)(wmi_unified_t wmi_handle,
  377. struct host_offload_req_param *param, bool arp_only,
  378. uint8_t vdev_id);
  379. QDF_STATUS (*send_set_led_flashing_cmd)(wmi_unified_t wmi_handle,
  380. struct flashing_req_params *flashing);
  381. QDF_STATUS (*send_app_type1_params_in_fw_cmd)(wmi_unified_t wmi_handle,
  382. struct app_type1_params *app_type1_params);
  383. QDF_STATUS (*send_set_ssid_hotlist_cmd)(wmi_unified_t wmi_handle,
  384. struct ssid_hotlist_request_params *request);
  385. QDF_STATUS (*send_process_roam_synch_complete_cmd)(wmi_unified_t wmi_handle,
  386. uint8_t vdev_id);
  387. QDF_STATUS (*send_unit_test_cmd)(wmi_unified_t wmi_handle,
  388. struct wmi_unit_test_cmd *wmi_utest);
  389. QDF_STATUS (*send_roam_invoke_cmd)(wmi_unified_t wmi_handle,
  390. struct wmi_roam_invoke_cmd *roaminvoke,
  391. uint32_t ch_hz);
  392. QDF_STATUS (*send_roam_scan_offload_cmd)(wmi_unified_t wmi_handle,
  393. uint32_t command, uint32_t vdev_id);
  394. QDF_STATUS (*send_roam_scan_offload_ap_profile_cmd)(wmi_unified_t wmi_handle,
  395. wmi_ap_profile *ap_profile_p,
  396. uint32_t vdev_id);
  397. QDF_STATUS (*send_roam_scan_offload_scan_period_cmd)(wmi_unified_t wmi_handle,
  398. uint32_t scan_period,
  399. uint32_t scan_age,
  400. uint32_t vdev_id);
  401. QDF_STATUS (*send_roam_scan_offload_chan_list_cmd)(wmi_unified_t wmi_handle,
  402. uint8_t chan_count,
  403. uint8_t *chan_list,
  404. uint8_t list_type, uint32_t vdev_id);
  405. QDF_STATUS (*send_roam_scan_offload_rssi_change_cmd)(wmi_unified_t wmi_handle,
  406. uint32_t vdev_id,
  407. int32_t rssi_change_thresh,
  408. uint32_t bcn_rssi_weight,
  409. uint32_t hirssi_delay_btw_scans);
  410. QDF_STATUS (*send_get_buf_extscan_hotlist_cmd)(wmi_unified_t wmi_handle,
  411. struct ext_scan_setbssi_hotlist_params *
  412. photlist, int *buf_len);
  413. };
  414. /**
  415. * struct wmi_init_cmd - Saved wmi INIT command
  416. * @buf: Buffer containing the wmi INIT command
  417. * @buf_len: Length of the buffer
  418. */
  419. struct wmi_init_cmd {
  420. wmi_buf_t buf;
  421. uint32_t buf_len;
  422. };
  423. struct wmi_unified {
  424. ol_scn_t scn_handle; /* handle to device */
  425. osdev_t osdev; /* handle to use OS-independent services */
  426. qdf_atomic_t pending_cmds;
  427. HTC_ENDPOINT_ID wmi_endpoint_id;
  428. uint16_t max_msg_len;
  429. WMI_EVT_ID event_id[WMI_UNIFIED_MAX_EVENT];
  430. wmi_unified_event_handler event_handler[WMI_UNIFIED_MAX_EVENT];
  431. enum wmi_rx_exec_ctx ctx[WMI_UNIFIED_MAX_EVENT];
  432. uint32_t max_event_idx;
  433. void *htc_handle;
  434. qdf_spinlock_t eventq_lock;
  435. qdf_nbuf_queue_t event_queue;
  436. struct work_struct rx_event_work;
  437. int wmi_stop_in_progress;
  438. struct _wmi_abi_version fw_abi_version;
  439. struct _wmi_abi_version final_abi_vers;
  440. struct wmi_init_cmd saved_wmi_init_cmd;
  441. uint32_t num_of_diag_events_logs;
  442. uint32_t *events_logs_list;
  443. struct host_offload_req_param arp_info;
  444. #ifdef WLAN_OPEN_SOURCE
  445. struct fwdebug dbglog;
  446. struct dentry *debugfs_phy;
  447. #endif /* WLAN_OPEN_SOURCE */
  448. #ifdef WMI_INTERFACE_EVENT_LOGGING
  449. qdf_spinlock_t wmi_record_lock;
  450. #endif /*WMI_INTERFACE_EVENT_LOGGING */
  451. qdf_atomic_t is_target_suspended;
  452. #ifdef FEATURE_RUNTIME_PM
  453. qdf_atomic_t runtime_pm_inprogress;
  454. #endif
  455. struct wmi_rx_ops rx_ops;
  456. struct wmi_ops *ops;
  457. void *event_handler_cookie[WMI_UNIFIED_MAX_EVENT];
  458. bool use_cookie;
  459. };
  460. struct wmi_ops *wmi_get_tlv_ops(void);
  461. struct wmi_ops *wmi_get_non_tlv_ops(void);
  462. #endif