blob: ca31cdbac557342c39a393f411c1f542ecd38444 [file] [log] [blame]
Kalle Valo5e3dd152013-06-12 20:52:10 +03001/*
2 * Copyright (c) 2005-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#ifndef _WMI_H_
19#define _WMI_H_
20
21#include <linux/types.h>
22#include <net/mac80211.h>
23
24/*
25 * This file specifies the WMI interface for the Unified Software
26 * Architecture.
27 *
28 * It includes definitions of all the commands and events. Commands are
29 * messages from the host to the target. Events and Replies are messages
30 * from the target to the host.
31 *
32 * Ownership of correctness in regards to WMI commands belongs to the host
33 * driver and the target is not required to validate parameters for value,
34 * proper range, or any other checking.
35 *
36 * Guidelines for extending this interface are below.
37 *
38 * 1. Add new WMI commands ONLY within the specified range - 0x9000 - 0x9fff
39 *
40 * 2. Use ONLY u32 type for defining member variables within WMI
41 * command/event structures. Do not use u8, u16, bool or
42 * enum types within these structures.
43 *
44 * 3. DO NOT define bit fields within structures. Implement bit fields
45 * using masks if necessary. Do not use the programming language's bit
46 * field definition.
47 *
48 * 4. Define macros for encode/decode of u8, u16 fields within
49 * the u32 variables. Use these macros for set/get of these fields.
50 * Try to use this to optimize the structure without bloating it with
51 * u32 variables for every lower sized field.
52 *
53 * 5. Do not use PACK/UNPACK attributes for the structures as each member
54 * variable is already 4-byte aligned by virtue of being a u32
55 * type.
56 *
57 * 6. Comment each parameter part of the WMI command/event structure by
58 * using the 2 stars at the begining of C comment instead of one star to
59 * enable HTML document generation using Doxygen.
60 *
61 */
62
63/* Control Path */
64struct wmi_cmd_hdr {
65 __le32 cmd_id;
66} __packed;
67
68#define WMI_CMD_HDR_CMD_ID_MASK 0x00FFFFFF
69#define WMI_CMD_HDR_CMD_ID_LSB 0
70#define WMI_CMD_HDR_PLT_PRIV_MASK 0xFF000000
71#define WMI_CMD_HDR_PLT_PRIV_LSB 24
72
73#define HTC_PROTOCOL_VERSION 0x0002
74#define WMI_PROTOCOL_VERSION 0x0002
75
Michal Kaziorcff990c2014-08-04 09:18:33 +030076enum wmi_service {
77 WMI_SERVICE_BEACON_OFFLOAD = 0,
78 WMI_SERVICE_SCAN_OFFLOAD,
79 WMI_SERVICE_ROAM_OFFLOAD,
80 WMI_SERVICE_BCN_MISS_OFFLOAD,
81 WMI_SERVICE_STA_PWRSAVE,
82 WMI_SERVICE_STA_ADVANCED_PWRSAVE,
83 WMI_SERVICE_AP_UAPSD,
84 WMI_SERVICE_AP_DFS,
85 WMI_SERVICE_11AC,
86 WMI_SERVICE_BLOCKACK,
87 WMI_SERVICE_PHYERR,
88 WMI_SERVICE_BCN_FILTER,
89 WMI_SERVICE_RTT,
90 WMI_SERVICE_RATECTRL,
91 WMI_SERVICE_WOW,
92 WMI_SERVICE_RATECTRL_CACHE,
93 WMI_SERVICE_IRAM_TIDS,
94 WMI_SERVICE_ARPNS_OFFLOAD,
95 WMI_SERVICE_NLO,
96 WMI_SERVICE_GTK_OFFLOAD,
97 WMI_SERVICE_SCAN_SCH,
98 WMI_SERVICE_CSA_OFFLOAD,
99 WMI_SERVICE_CHATTER,
100 WMI_SERVICE_COEX_FREQAVOID,
101 WMI_SERVICE_PACKET_POWER_SAVE,
102 WMI_SERVICE_FORCE_FW_HANG,
103 WMI_SERVICE_GPIO,
104 WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM,
105 WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
106 WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
107 WMI_SERVICE_STA_KEEP_ALIVE,
108 WMI_SERVICE_TX_ENCAP,
109 WMI_SERVICE_BURST,
110 WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT,
111 WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT,
Michal Kaziorc4f8c832014-09-04 10:18:32 +0200112
113 /* keep last */
114 WMI_SERVICE_MAX,
Michal Kaziorcff990c2014-08-04 09:18:33 +0300115};
Kalle Valo5e3dd152013-06-12 20:52:10 +0300116
Michal Kaziorcff990c2014-08-04 09:18:33 +0300117enum wmi_10x_service {
118 WMI_10X_SERVICE_BEACON_OFFLOAD = 0,
119 WMI_10X_SERVICE_SCAN_OFFLOAD,
120 WMI_10X_SERVICE_ROAM_OFFLOAD,
121 WMI_10X_SERVICE_BCN_MISS_OFFLOAD,
122 WMI_10X_SERVICE_STA_PWRSAVE,
123 WMI_10X_SERVICE_STA_ADVANCED_PWRSAVE,
124 WMI_10X_SERVICE_AP_UAPSD,
125 WMI_10X_SERVICE_AP_DFS,
126 WMI_10X_SERVICE_11AC,
127 WMI_10X_SERVICE_BLOCKACK,
128 WMI_10X_SERVICE_PHYERR,
129 WMI_10X_SERVICE_BCN_FILTER,
130 WMI_10X_SERVICE_RTT,
131 WMI_10X_SERVICE_RATECTRL,
132 WMI_10X_SERVICE_WOW,
133 WMI_10X_SERVICE_RATECTRL_CACHE,
134 WMI_10X_SERVICE_IRAM_TIDS,
135 WMI_10X_SERVICE_BURST,
136
137 /* introduced in 10.2 */
138 WMI_10X_SERVICE_SMART_ANTENNA_SW_SUPPORT,
139 WMI_10X_SERVICE_FORCE_FW_HANG,
140 WMI_10X_SERVICE_SMART_ANTENNA_HW_SUPPORT,
141};
142
143enum wmi_main_service {
144 WMI_MAIN_SERVICE_BEACON_OFFLOAD = 0,
145 WMI_MAIN_SERVICE_SCAN_OFFLOAD,
146 WMI_MAIN_SERVICE_ROAM_OFFLOAD,
147 WMI_MAIN_SERVICE_BCN_MISS_OFFLOAD,
148 WMI_MAIN_SERVICE_STA_PWRSAVE,
149 WMI_MAIN_SERVICE_STA_ADVANCED_PWRSAVE,
150 WMI_MAIN_SERVICE_AP_UAPSD,
151 WMI_MAIN_SERVICE_AP_DFS,
152 WMI_MAIN_SERVICE_11AC,
153 WMI_MAIN_SERVICE_BLOCKACK,
154 WMI_MAIN_SERVICE_PHYERR,
155 WMI_MAIN_SERVICE_BCN_FILTER,
156 WMI_MAIN_SERVICE_RTT,
157 WMI_MAIN_SERVICE_RATECTRL,
158 WMI_MAIN_SERVICE_WOW,
159 WMI_MAIN_SERVICE_RATECTRL_CACHE,
160 WMI_MAIN_SERVICE_IRAM_TIDS,
161 WMI_MAIN_SERVICE_ARPNS_OFFLOAD,
162 WMI_MAIN_SERVICE_NLO,
163 WMI_MAIN_SERVICE_GTK_OFFLOAD,
164 WMI_MAIN_SERVICE_SCAN_SCH,
165 WMI_MAIN_SERVICE_CSA_OFFLOAD,
166 WMI_MAIN_SERVICE_CHATTER,
167 WMI_MAIN_SERVICE_COEX_FREQAVOID,
168 WMI_MAIN_SERVICE_PACKET_POWER_SAVE,
169 WMI_MAIN_SERVICE_FORCE_FW_HANG,
170 WMI_MAIN_SERVICE_GPIO,
171 WMI_MAIN_SERVICE_STA_DTIM_PS_MODULATED_DTIM,
172 WMI_MAIN_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
173 WMI_MAIN_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
174 WMI_MAIN_SERVICE_STA_KEEP_ALIVE,
175 WMI_MAIN_SERVICE_TX_ENCAP,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300176};
177
178static inline char *wmi_service_name(int service_id)
179{
Michal Kaziorcff990c2014-08-04 09:18:33 +0300180#define SVCSTR(x) case x: return #x
181
Kalle Valo5e3dd152013-06-12 20:52:10 +0300182 switch (service_id) {
Michal Kaziorcff990c2014-08-04 09:18:33 +0300183 SVCSTR(WMI_SERVICE_BEACON_OFFLOAD);
184 SVCSTR(WMI_SERVICE_SCAN_OFFLOAD);
185 SVCSTR(WMI_SERVICE_ROAM_OFFLOAD);
186 SVCSTR(WMI_SERVICE_BCN_MISS_OFFLOAD);
187 SVCSTR(WMI_SERVICE_STA_PWRSAVE);
188 SVCSTR(WMI_SERVICE_STA_ADVANCED_PWRSAVE);
189 SVCSTR(WMI_SERVICE_AP_UAPSD);
190 SVCSTR(WMI_SERVICE_AP_DFS);
191 SVCSTR(WMI_SERVICE_11AC);
192 SVCSTR(WMI_SERVICE_BLOCKACK);
193 SVCSTR(WMI_SERVICE_PHYERR);
194 SVCSTR(WMI_SERVICE_BCN_FILTER);
195 SVCSTR(WMI_SERVICE_RTT);
196 SVCSTR(WMI_SERVICE_RATECTRL);
197 SVCSTR(WMI_SERVICE_WOW);
198 SVCSTR(WMI_SERVICE_RATECTRL_CACHE);
199 SVCSTR(WMI_SERVICE_IRAM_TIDS);
200 SVCSTR(WMI_SERVICE_ARPNS_OFFLOAD);
201 SVCSTR(WMI_SERVICE_NLO);
202 SVCSTR(WMI_SERVICE_GTK_OFFLOAD);
203 SVCSTR(WMI_SERVICE_SCAN_SCH);
204 SVCSTR(WMI_SERVICE_CSA_OFFLOAD);
205 SVCSTR(WMI_SERVICE_CHATTER);
206 SVCSTR(WMI_SERVICE_COEX_FREQAVOID);
207 SVCSTR(WMI_SERVICE_PACKET_POWER_SAVE);
208 SVCSTR(WMI_SERVICE_FORCE_FW_HANG);
209 SVCSTR(WMI_SERVICE_GPIO);
210 SVCSTR(WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM);
211 SVCSTR(WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG);
212 SVCSTR(WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG);
213 SVCSTR(WMI_SERVICE_STA_KEEP_ALIVE);
214 SVCSTR(WMI_SERVICE_TX_ENCAP);
215 SVCSTR(WMI_SERVICE_BURST);
216 SVCSTR(WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT);
217 SVCSTR(WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300218 default:
Michal Kaziorcff990c2014-08-04 09:18:33 +0300219 return NULL;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300220 }
Michal Kaziorcff990c2014-08-04 09:18:33 +0300221
222#undef SVCSTR
Kalle Valo5e3dd152013-06-12 20:52:10 +0300223}
224
Michal Kaziorcff990c2014-08-04 09:18:33 +0300225#define WMI_SERVICE_IS_ENABLED(wmi_svc_bmap, svc_id) \
226 (__le32_to_cpu((wmi_svc_bmap)[(svc_id)/(sizeof(u32))]) & \
227 BIT((svc_id)%(sizeof(u32))))
228
229#define SVCMAP(x, y) \
230 do { \
231 if (WMI_SERVICE_IS_ENABLED((in), (x))) \
232 __set_bit(y, out); \
233 } while (0)
234
235static inline void wmi_10x_svc_map(const __le32 *in, unsigned long *out)
236{
237 SVCMAP(WMI_10X_SERVICE_BEACON_OFFLOAD,
238 WMI_SERVICE_BEACON_OFFLOAD);
239 SVCMAP(WMI_10X_SERVICE_SCAN_OFFLOAD,
240 WMI_SERVICE_SCAN_OFFLOAD);
241 SVCMAP(WMI_10X_SERVICE_ROAM_OFFLOAD,
242 WMI_SERVICE_ROAM_OFFLOAD);
243 SVCMAP(WMI_10X_SERVICE_BCN_MISS_OFFLOAD,
244 WMI_SERVICE_BCN_MISS_OFFLOAD);
245 SVCMAP(WMI_10X_SERVICE_STA_PWRSAVE,
246 WMI_SERVICE_STA_PWRSAVE);
247 SVCMAP(WMI_10X_SERVICE_STA_ADVANCED_PWRSAVE,
248 WMI_SERVICE_STA_ADVANCED_PWRSAVE);
249 SVCMAP(WMI_10X_SERVICE_AP_UAPSD,
250 WMI_SERVICE_AP_UAPSD);
251 SVCMAP(WMI_10X_SERVICE_AP_DFS,
252 WMI_SERVICE_AP_DFS);
253 SVCMAP(WMI_10X_SERVICE_11AC,
254 WMI_SERVICE_11AC);
255 SVCMAP(WMI_10X_SERVICE_BLOCKACK,
256 WMI_SERVICE_BLOCKACK);
257 SVCMAP(WMI_10X_SERVICE_PHYERR,
258 WMI_SERVICE_PHYERR);
259 SVCMAP(WMI_10X_SERVICE_BCN_FILTER,
260 WMI_SERVICE_BCN_FILTER);
261 SVCMAP(WMI_10X_SERVICE_RTT,
262 WMI_SERVICE_RTT);
263 SVCMAP(WMI_10X_SERVICE_RATECTRL,
264 WMI_SERVICE_RATECTRL);
265 SVCMAP(WMI_10X_SERVICE_WOW,
266 WMI_SERVICE_WOW);
267 SVCMAP(WMI_10X_SERVICE_RATECTRL_CACHE,
268 WMI_SERVICE_RATECTRL_CACHE);
269 SVCMAP(WMI_10X_SERVICE_IRAM_TIDS,
270 WMI_SERVICE_IRAM_TIDS);
271 SVCMAP(WMI_10X_SERVICE_BURST,
272 WMI_SERVICE_BURST);
273 SVCMAP(WMI_10X_SERVICE_SMART_ANTENNA_SW_SUPPORT,
274 WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT);
275 SVCMAP(WMI_10X_SERVICE_FORCE_FW_HANG,
276 WMI_SERVICE_FORCE_FW_HANG);
277 SVCMAP(WMI_10X_SERVICE_SMART_ANTENNA_HW_SUPPORT,
278 WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT);
279}
280
281static inline void wmi_main_svc_map(const __le32 *in, unsigned long *out)
282{
283 SVCMAP(WMI_MAIN_SERVICE_BEACON_OFFLOAD,
284 WMI_SERVICE_BEACON_OFFLOAD);
285 SVCMAP(WMI_MAIN_SERVICE_SCAN_OFFLOAD,
286 WMI_SERVICE_SCAN_OFFLOAD);
287 SVCMAP(WMI_MAIN_SERVICE_ROAM_OFFLOAD,
288 WMI_SERVICE_ROAM_OFFLOAD);
289 SVCMAP(WMI_MAIN_SERVICE_BCN_MISS_OFFLOAD,
290 WMI_SERVICE_BCN_MISS_OFFLOAD);
291 SVCMAP(WMI_MAIN_SERVICE_STA_PWRSAVE,
292 WMI_SERVICE_STA_PWRSAVE);
293 SVCMAP(WMI_MAIN_SERVICE_STA_ADVANCED_PWRSAVE,
294 WMI_SERVICE_STA_ADVANCED_PWRSAVE);
295 SVCMAP(WMI_MAIN_SERVICE_AP_UAPSD,
296 WMI_SERVICE_AP_UAPSD);
297 SVCMAP(WMI_MAIN_SERVICE_AP_DFS,
298 WMI_SERVICE_AP_DFS);
299 SVCMAP(WMI_MAIN_SERVICE_11AC,
300 WMI_SERVICE_11AC);
301 SVCMAP(WMI_MAIN_SERVICE_BLOCKACK,
302 WMI_SERVICE_BLOCKACK);
303 SVCMAP(WMI_MAIN_SERVICE_PHYERR,
304 WMI_SERVICE_PHYERR);
305 SVCMAP(WMI_MAIN_SERVICE_BCN_FILTER,
306 WMI_SERVICE_BCN_FILTER);
307 SVCMAP(WMI_MAIN_SERVICE_RTT,
308 WMI_SERVICE_RTT);
309 SVCMAP(WMI_MAIN_SERVICE_RATECTRL,
310 WMI_SERVICE_RATECTRL);
311 SVCMAP(WMI_MAIN_SERVICE_WOW,
312 WMI_SERVICE_WOW);
313 SVCMAP(WMI_MAIN_SERVICE_RATECTRL_CACHE,
314 WMI_SERVICE_RATECTRL_CACHE);
315 SVCMAP(WMI_MAIN_SERVICE_IRAM_TIDS,
316 WMI_SERVICE_IRAM_TIDS);
317 SVCMAP(WMI_MAIN_SERVICE_ARPNS_OFFLOAD,
318 WMI_SERVICE_ARPNS_OFFLOAD);
319 SVCMAP(WMI_MAIN_SERVICE_NLO,
320 WMI_SERVICE_NLO);
321 SVCMAP(WMI_MAIN_SERVICE_GTK_OFFLOAD,
322 WMI_SERVICE_GTK_OFFLOAD);
323 SVCMAP(WMI_MAIN_SERVICE_SCAN_SCH,
324 WMI_SERVICE_SCAN_SCH);
325 SVCMAP(WMI_MAIN_SERVICE_CSA_OFFLOAD,
326 WMI_SERVICE_CSA_OFFLOAD);
327 SVCMAP(WMI_MAIN_SERVICE_CHATTER,
328 WMI_SERVICE_CHATTER);
329 SVCMAP(WMI_MAIN_SERVICE_COEX_FREQAVOID,
330 WMI_SERVICE_COEX_FREQAVOID);
331 SVCMAP(WMI_MAIN_SERVICE_PACKET_POWER_SAVE,
332 WMI_SERVICE_PACKET_POWER_SAVE);
333 SVCMAP(WMI_MAIN_SERVICE_FORCE_FW_HANG,
334 WMI_SERVICE_FORCE_FW_HANG);
335 SVCMAP(WMI_MAIN_SERVICE_GPIO,
336 WMI_SERVICE_GPIO);
337 SVCMAP(WMI_MAIN_SERVICE_STA_DTIM_PS_MODULATED_DTIM,
338 WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM);
339 SVCMAP(WMI_MAIN_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
340 WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG);
341 SVCMAP(WMI_MAIN_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
342 WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG);
343 SVCMAP(WMI_MAIN_SERVICE_STA_KEEP_ALIVE,
344 WMI_SERVICE_STA_KEEP_ALIVE);
345 SVCMAP(WMI_MAIN_SERVICE_TX_ENCAP,
346 WMI_SERVICE_TX_ENCAP);
347}
348
349#undef SVCMAP
Kalle Valo5e3dd152013-06-12 20:52:10 +0300350
Kalle Valo5e3dd152013-06-12 20:52:10 +0300351/* 2 word representation of MAC addr */
352struct wmi_mac_addr {
353 union {
354 u8 addr[6];
355 struct {
356 u32 word0;
357 u32 word1;
358 } __packed;
359 } __packed;
360} __packed;
361
Bartosz Markowskice428702013-09-26 17:47:05 +0200362struct wmi_cmd_map {
363 u32 init_cmdid;
364 u32 start_scan_cmdid;
365 u32 stop_scan_cmdid;
366 u32 scan_chan_list_cmdid;
367 u32 scan_sch_prio_tbl_cmdid;
368 u32 pdev_set_regdomain_cmdid;
369 u32 pdev_set_channel_cmdid;
370 u32 pdev_set_param_cmdid;
371 u32 pdev_pktlog_enable_cmdid;
372 u32 pdev_pktlog_disable_cmdid;
373 u32 pdev_set_wmm_params_cmdid;
374 u32 pdev_set_ht_cap_ie_cmdid;
375 u32 pdev_set_vht_cap_ie_cmdid;
376 u32 pdev_set_dscp_tid_map_cmdid;
377 u32 pdev_set_quiet_mode_cmdid;
378 u32 pdev_green_ap_ps_enable_cmdid;
379 u32 pdev_get_tpc_config_cmdid;
380 u32 pdev_set_base_macaddr_cmdid;
381 u32 vdev_create_cmdid;
382 u32 vdev_delete_cmdid;
383 u32 vdev_start_request_cmdid;
384 u32 vdev_restart_request_cmdid;
385 u32 vdev_up_cmdid;
386 u32 vdev_stop_cmdid;
387 u32 vdev_down_cmdid;
388 u32 vdev_set_param_cmdid;
389 u32 vdev_install_key_cmdid;
390 u32 peer_create_cmdid;
391 u32 peer_delete_cmdid;
392 u32 peer_flush_tids_cmdid;
393 u32 peer_set_param_cmdid;
394 u32 peer_assoc_cmdid;
395 u32 peer_add_wds_entry_cmdid;
396 u32 peer_remove_wds_entry_cmdid;
397 u32 peer_mcast_group_cmdid;
398 u32 bcn_tx_cmdid;
399 u32 pdev_send_bcn_cmdid;
400 u32 bcn_tmpl_cmdid;
401 u32 bcn_filter_rx_cmdid;
402 u32 prb_req_filter_rx_cmdid;
403 u32 mgmt_tx_cmdid;
404 u32 prb_tmpl_cmdid;
405 u32 addba_clear_resp_cmdid;
406 u32 addba_send_cmdid;
407 u32 addba_status_cmdid;
408 u32 delba_send_cmdid;
409 u32 addba_set_resp_cmdid;
410 u32 send_singleamsdu_cmdid;
411 u32 sta_powersave_mode_cmdid;
412 u32 sta_powersave_param_cmdid;
413 u32 sta_mimo_ps_mode_cmdid;
414 u32 pdev_dfs_enable_cmdid;
415 u32 pdev_dfs_disable_cmdid;
416 u32 roam_scan_mode;
417 u32 roam_scan_rssi_threshold;
418 u32 roam_scan_period;
419 u32 roam_scan_rssi_change_threshold;
420 u32 roam_ap_profile;
421 u32 ofl_scan_add_ap_profile;
422 u32 ofl_scan_remove_ap_profile;
423 u32 ofl_scan_period;
424 u32 p2p_dev_set_device_info;
425 u32 p2p_dev_set_discoverability;
426 u32 p2p_go_set_beacon_ie;
427 u32 p2p_go_set_probe_resp_ie;
428 u32 p2p_set_vendor_ie_data_cmdid;
429 u32 ap_ps_peer_param_cmdid;
430 u32 ap_ps_peer_uapsd_coex_cmdid;
431 u32 peer_rate_retry_sched_cmdid;
432 u32 wlan_profile_trigger_cmdid;
433 u32 wlan_profile_set_hist_intvl_cmdid;
434 u32 wlan_profile_get_profile_data_cmdid;
435 u32 wlan_profile_enable_profile_id_cmdid;
436 u32 wlan_profile_list_profile_id_cmdid;
437 u32 pdev_suspend_cmdid;
438 u32 pdev_resume_cmdid;
439 u32 add_bcn_filter_cmdid;
440 u32 rmv_bcn_filter_cmdid;
441 u32 wow_add_wake_pattern_cmdid;
442 u32 wow_del_wake_pattern_cmdid;
443 u32 wow_enable_disable_wake_event_cmdid;
444 u32 wow_enable_cmdid;
445 u32 wow_hostwakeup_from_sleep_cmdid;
446 u32 rtt_measreq_cmdid;
447 u32 rtt_tsf_cmdid;
448 u32 vdev_spectral_scan_configure_cmdid;
449 u32 vdev_spectral_scan_enable_cmdid;
450 u32 request_stats_cmdid;
451 u32 set_arp_ns_offload_cmdid;
452 u32 network_list_offload_config_cmdid;
453 u32 gtk_offload_cmdid;
454 u32 csa_offload_enable_cmdid;
455 u32 csa_offload_chanswitch_cmdid;
456 u32 chatter_set_mode_cmdid;
457 u32 peer_tid_addba_cmdid;
458 u32 peer_tid_delba_cmdid;
459 u32 sta_dtim_ps_method_cmdid;
460 u32 sta_uapsd_auto_trig_cmdid;
461 u32 sta_keepalive_cmd;
462 u32 echo_cmdid;
463 u32 pdev_utf_cmdid;
464 u32 dbglog_cfg_cmdid;
465 u32 pdev_qvit_cmdid;
466 u32 pdev_ftm_intg_cmdid;
467 u32 vdev_set_keepalive_cmdid;
468 u32 vdev_get_keepalive_cmdid;
469 u32 force_fw_hang_cmdid;
470 u32 gpio_config_cmdid;
471 u32 gpio_output_cmdid;
472};
473
Kalle Valo5e3dd152013-06-12 20:52:10 +0300474/*
475 * wmi command groups.
476 */
477enum wmi_cmd_group {
478 /* 0 to 2 are reserved */
479 WMI_GRP_START = 0x3,
480 WMI_GRP_SCAN = WMI_GRP_START,
481 WMI_GRP_PDEV,
482 WMI_GRP_VDEV,
483 WMI_GRP_PEER,
484 WMI_GRP_MGMT,
485 WMI_GRP_BA_NEG,
486 WMI_GRP_STA_PS,
487 WMI_GRP_DFS,
488 WMI_GRP_ROAM,
489 WMI_GRP_OFL_SCAN,
490 WMI_GRP_P2P,
491 WMI_GRP_AP_PS,
492 WMI_GRP_RATE_CTRL,
493 WMI_GRP_PROFILE,
494 WMI_GRP_SUSPEND,
495 WMI_GRP_BCN_FILTER,
496 WMI_GRP_WOW,
497 WMI_GRP_RTT,
498 WMI_GRP_SPECTRAL,
499 WMI_GRP_STATS,
500 WMI_GRP_ARP_NS_OFL,
501 WMI_GRP_NLO_OFL,
502 WMI_GRP_GTK_OFL,
503 WMI_GRP_CSA_OFL,
504 WMI_GRP_CHATTER,
505 WMI_GRP_TID_ADDBA,
506 WMI_GRP_MISC,
507 WMI_GRP_GPIO,
508};
509
510#define WMI_CMD_GRP(grp_id) (((grp_id) << 12) | 0x1)
511#define WMI_EVT_GRP_START_ID(grp_id) (((grp_id) << 12) | 0x1)
512
Bartosz Markowski34957b22013-10-15 09:55:31 +0200513#define WMI_CMD_UNSUPPORTED 0
Bartosz Markowskib7e3adf2013-09-26 17:47:06 +0200514
515/* Command IDs and command events for MAIN FW. */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300516enum wmi_cmd_id {
517 WMI_INIT_CMDID = 0x1,
518
519 /* Scan specific commands */
520 WMI_START_SCAN_CMDID = WMI_CMD_GRP(WMI_GRP_SCAN),
521 WMI_STOP_SCAN_CMDID,
522 WMI_SCAN_CHAN_LIST_CMDID,
523 WMI_SCAN_SCH_PRIO_TBL_CMDID,
524
525 /* PDEV (physical device) specific commands */
526 WMI_PDEV_SET_REGDOMAIN_CMDID = WMI_CMD_GRP(WMI_GRP_PDEV),
527 WMI_PDEV_SET_CHANNEL_CMDID,
528 WMI_PDEV_SET_PARAM_CMDID,
529 WMI_PDEV_PKTLOG_ENABLE_CMDID,
530 WMI_PDEV_PKTLOG_DISABLE_CMDID,
531 WMI_PDEV_SET_WMM_PARAMS_CMDID,
532 WMI_PDEV_SET_HT_CAP_IE_CMDID,
533 WMI_PDEV_SET_VHT_CAP_IE_CMDID,
534 WMI_PDEV_SET_DSCP_TID_MAP_CMDID,
535 WMI_PDEV_SET_QUIET_MODE_CMDID,
536 WMI_PDEV_GREEN_AP_PS_ENABLE_CMDID,
537 WMI_PDEV_GET_TPC_CONFIG_CMDID,
538 WMI_PDEV_SET_BASE_MACADDR_CMDID,
539
540 /* VDEV (virtual device) specific commands */
541 WMI_VDEV_CREATE_CMDID = WMI_CMD_GRP(WMI_GRP_VDEV),
542 WMI_VDEV_DELETE_CMDID,
543 WMI_VDEV_START_REQUEST_CMDID,
544 WMI_VDEV_RESTART_REQUEST_CMDID,
545 WMI_VDEV_UP_CMDID,
546 WMI_VDEV_STOP_CMDID,
547 WMI_VDEV_DOWN_CMDID,
548 WMI_VDEV_SET_PARAM_CMDID,
549 WMI_VDEV_INSTALL_KEY_CMDID,
550
551 /* peer specific commands */
552 WMI_PEER_CREATE_CMDID = WMI_CMD_GRP(WMI_GRP_PEER),
553 WMI_PEER_DELETE_CMDID,
554 WMI_PEER_FLUSH_TIDS_CMDID,
555 WMI_PEER_SET_PARAM_CMDID,
556 WMI_PEER_ASSOC_CMDID,
557 WMI_PEER_ADD_WDS_ENTRY_CMDID,
558 WMI_PEER_REMOVE_WDS_ENTRY_CMDID,
559 WMI_PEER_MCAST_GROUP_CMDID,
560
561 /* beacon/management specific commands */
562 WMI_BCN_TX_CMDID = WMI_CMD_GRP(WMI_GRP_MGMT),
563 WMI_PDEV_SEND_BCN_CMDID,
564 WMI_BCN_TMPL_CMDID,
565 WMI_BCN_FILTER_RX_CMDID,
566 WMI_PRB_REQ_FILTER_RX_CMDID,
567 WMI_MGMT_TX_CMDID,
568 WMI_PRB_TMPL_CMDID,
569
570 /* commands to directly control BA negotiation directly from host. */
571 WMI_ADDBA_CLEAR_RESP_CMDID = WMI_CMD_GRP(WMI_GRP_BA_NEG),
572 WMI_ADDBA_SEND_CMDID,
573 WMI_ADDBA_STATUS_CMDID,
574 WMI_DELBA_SEND_CMDID,
575 WMI_ADDBA_SET_RESP_CMDID,
576 WMI_SEND_SINGLEAMSDU_CMDID,
577
578 /* Station power save specific config */
579 WMI_STA_POWERSAVE_MODE_CMDID = WMI_CMD_GRP(WMI_GRP_STA_PS),
580 WMI_STA_POWERSAVE_PARAM_CMDID,
581 WMI_STA_MIMO_PS_MODE_CMDID,
582
583 /** DFS-specific commands */
584 WMI_PDEV_DFS_ENABLE_CMDID = WMI_CMD_GRP(WMI_GRP_DFS),
585 WMI_PDEV_DFS_DISABLE_CMDID,
586
587 /* Roaming specific commands */
588 WMI_ROAM_SCAN_MODE = WMI_CMD_GRP(WMI_GRP_ROAM),
589 WMI_ROAM_SCAN_RSSI_THRESHOLD,
590 WMI_ROAM_SCAN_PERIOD,
591 WMI_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
592 WMI_ROAM_AP_PROFILE,
593
594 /* offload scan specific commands */
595 WMI_OFL_SCAN_ADD_AP_PROFILE = WMI_CMD_GRP(WMI_GRP_OFL_SCAN),
596 WMI_OFL_SCAN_REMOVE_AP_PROFILE,
597 WMI_OFL_SCAN_PERIOD,
598
599 /* P2P specific commands */
600 WMI_P2P_DEV_SET_DEVICE_INFO = WMI_CMD_GRP(WMI_GRP_P2P),
601 WMI_P2P_DEV_SET_DISCOVERABILITY,
602 WMI_P2P_GO_SET_BEACON_IE,
603 WMI_P2P_GO_SET_PROBE_RESP_IE,
604 WMI_P2P_SET_VENDOR_IE_DATA_CMDID,
605
606 /* AP power save specific config */
607 WMI_AP_PS_PEER_PARAM_CMDID = WMI_CMD_GRP(WMI_GRP_AP_PS),
608 WMI_AP_PS_PEER_UAPSD_COEX_CMDID,
609
610 /* Rate-control specific commands */
611 WMI_PEER_RATE_RETRY_SCHED_CMDID =
612 WMI_CMD_GRP(WMI_GRP_RATE_CTRL),
613
614 /* WLAN Profiling commands. */
615 WMI_WLAN_PROFILE_TRIGGER_CMDID = WMI_CMD_GRP(WMI_GRP_PROFILE),
616 WMI_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
617 WMI_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
618 WMI_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
619 WMI_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
620
621 /* Suspend resume command Ids */
622 WMI_PDEV_SUSPEND_CMDID = WMI_CMD_GRP(WMI_GRP_SUSPEND),
623 WMI_PDEV_RESUME_CMDID,
624
625 /* Beacon filter commands */
626 WMI_ADD_BCN_FILTER_CMDID = WMI_CMD_GRP(WMI_GRP_BCN_FILTER),
627 WMI_RMV_BCN_FILTER_CMDID,
628
629 /* WOW Specific WMI commands*/
630 WMI_WOW_ADD_WAKE_PATTERN_CMDID = WMI_CMD_GRP(WMI_GRP_WOW),
631 WMI_WOW_DEL_WAKE_PATTERN_CMDID,
632 WMI_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
633 WMI_WOW_ENABLE_CMDID,
634 WMI_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
635
636 /* RTT measurement related cmd */
637 WMI_RTT_MEASREQ_CMDID = WMI_CMD_GRP(WMI_GRP_RTT),
638 WMI_RTT_TSF_CMDID,
639
640 /* spectral scan commands */
641 WMI_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID = WMI_CMD_GRP(WMI_GRP_SPECTRAL),
642 WMI_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
643
644 /* F/W stats */
645 WMI_REQUEST_STATS_CMDID = WMI_CMD_GRP(WMI_GRP_STATS),
646
647 /* ARP OFFLOAD REQUEST*/
648 WMI_SET_ARP_NS_OFFLOAD_CMDID = WMI_CMD_GRP(WMI_GRP_ARP_NS_OFL),
649
650 /* NS offload confid*/
651 WMI_NETWORK_LIST_OFFLOAD_CONFIG_CMDID = WMI_CMD_GRP(WMI_GRP_NLO_OFL),
652
653 /* GTK offload Specific WMI commands*/
654 WMI_GTK_OFFLOAD_CMDID = WMI_CMD_GRP(WMI_GRP_GTK_OFL),
655
656 /* CSA offload Specific WMI commands*/
657 WMI_CSA_OFFLOAD_ENABLE_CMDID = WMI_CMD_GRP(WMI_GRP_CSA_OFL),
658 WMI_CSA_OFFLOAD_CHANSWITCH_CMDID,
659
660 /* Chatter commands*/
661 WMI_CHATTER_SET_MODE_CMDID = WMI_CMD_GRP(WMI_GRP_CHATTER),
662
663 /* addba specific commands */
664 WMI_PEER_TID_ADDBA_CMDID = WMI_CMD_GRP(WMI_GRP_TID_ADDBA),
665 WMI_PEER_TID_DELBA_CMDID,
666
667 /* set station mimo powersave method */
668 WMI_STA_DTIM_PS_METHOD_CMDID,
669 /* Configure the Station UAPSD AC Auto Trigger Parameters */
670 WMI_STA_UAPSD_AUTO_TRIG_CMDID,
671
672 /* STA Keep alive parameter configuration,
673 Requires WMI_SERVICE_STA_KEEP_ALIVE */
674 WMI_STA_KEEPALIVE_CMD,
675
676 /* misc command group */
677 WMI_ECHO_CMDID = WMI_CMD_GRP(WMI_GRP_MISC),
678 WMI_PDEV_UTF_CMDID,
679 WMI_DBGLOG_CFG_CMDID,
680 WMI_PDEV_QVIT_CMDID,
681 WMI_PDEV_FTM_INTG_CMDID,
682 WMI_VDEV_SET_KEEPALIVE_CMDID,
683 WMI_VDEV_GET_KEEPALIVE_CMDID,
Michal Kazior9cfbce72013-07-16 09:54:36 +0200684 WMI_FORCE_FW_HANG_CMDID,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300685
686 /* GPIO Configuration */
687 WMI_GPIO_CONFIG_CMDID = WMI_CMD_GRP(WMI_GRP_GPIO),
688 WMI_GPIO_OUTPUT_CMDID,
689};
690
691enum wmi_event_id {
692 WMI_SERVICE_READY_EVENTID = 0x1,
693 WMI_READY_EVENTID,
694
695 /* Scan specific events */
696 WMI_SCAN_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_SCAN),
697
698 /* PDEV specific events */
699 WMI_PDEV_TPC_CONFIG_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_PDEV),
700 WMI_CHAN_INFO_EVENTID,
701 WMI_PHYERR_EVENTID,
702
703 /* VDEV specific events */
704 WMI_VDEV_START_RESP_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_VDEV),
705 WMI_VDEV_STOPPED_EVENTID,
706 WMI_VDEV_INSTALL_KEY_COMPLETE_EVENTID,
707
708 /* peer specific events */
709 WMI_PEER_STA_KICKOUT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_PEER),
710
711 /* beacon/mgmt specific events */
712 WMI_MGMT_RX_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_MGMT),
713 WMI_HOST_SWBA_EVENTID,
714 WMI_TBTTOFFSET_UPDATE_EVENTID,
715
716 /* ADDBA Related WMI Events*/
717 WMI_TX_DELBA_COMPLETE_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_BA_NEG),
718 WMI_TX_ADDBA_COMPLETE_EVENTID,
719
720 /* Roam event to trigger roaming on host */
721 WMI_ROAM_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_ROAM),
722 WMI_PROFILE_MATCH,
723
724 /* WoW */
725 WMI_WOW_WAKEUP_HOST_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_WOW),
726
727 /* RTT */
728 WMI_RTT_MEASUREMENT_REPORT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_RTT),
729 WMI_TSF_MEASUREMENT_REPORT_EVENTID,
730 WMI_RTT_ERROR_REPORT_EVENTID,
731
732 /* GTK offload */
733 WMI_GTK_OFFLOAD_STATUS_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_GTK_OFL),
734 WMI_GTK_REKEY_FAIL_EVENTID,
735
736 /* CSA IE received event */
737 WMI_CSA_HANDLING_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_CSA_OFL),
738
739 /* Misc events */
740 WMI_ECHO_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_MISC),
741 WMI_PDEV_UTF_EVENTID,
742 WMI_DEBUG_MESG_EVENTID,
743 WMI_UPDATE_STATS_EVENTID,
744 WMI_DEBUG_PRINT_EVENTID,
745 WMI_DCS_INTERFERENCE_EVENTID,
746 WMI_PDEV_QVIT_EVENTID,
747 WMI_WLAN_PROFILE_DATA_EVENTID,
748 WMI_PDEV_FTM_INTG_EVENTID,
749 WMI_WLAN_FREQ_AVOID_EVENTID,
750 WMI_VDEV_GET_KEEPALIVE_EVENTID,
751
752 /* GPIO Event */
753 WMI_GPIO_INPUT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_GPIO),
754};
755
Bartosz Markowskib7e3adf2013-09-26 17:47:06 +0200756/* Command IDs and command events for 10.X firmware */
757enum wmi_10x_cmd_id {
758 WMI_10X_START_CMDID = 0x9000,
759 WMI_10X_END_CMDID = 0x9FFF,
760
761 /* initialize the wlan sub system */
762 WMI_10X_INIT_CMDID,
763
764 /* Scan specific commands */
765
766 WMI_10X_START_SCAN_CMDID = WMI_10X_START_CMDID,
767 WMI_10X_STOP_SCAN_CMDID,
768 WMI_10X_SCAN_CHAN_LIST_CMDID,
769 WMI_10X_ECHO_CMDID,
770
771 /* PDEV(physical device) specific commands */
772 WMI_10X_PDEV_SET_REGDOMAIN_CMDID,
773 WMI_10X_PDEV_SET_CHANNEL_CMDID,
774 WMI_10X_PDEV_SET_PARAM_CMDID,
775 WMI_10X_PDEV_PKTLOG_ENABLE_CMDID,
776 WMI_10X_PDEV_PKTLOG_DISABLE_CMDID,
777 WMI_10X_PDEV_SET_WMM_PARAMS_CMDID,
778 WMI_10X_PDEV_SET_HT_CAP_IE_CMDID,
779 WMI_10X_PDEV_SET_VHT_CAP_IE_CMDID,
780 WMI_10X_PDEV_SET_BASE_MACADDR_CMDID,
781 WMI_10X_PDEV_SET_DSCP_TID_MAP_CMDID,
782 WMI_10X_PDEV_SET_QUIET_MODE_CMDID,
783 WMI_10X_PDEV_GREEN_AP_PS_ENABLE_CMDID,
784 WMI_10X_PDEV_GET_TPC_CONFIG_CMDID,
785
786 /* VDEV(virtual device) specific commands */
787 WMI_10X_VDEV_CREATE_CMDID,
788 WMI_10X_VDEV_DELETE_CMDID,
789 WMI_10X_VDEV_START_REQUEST_CMDID,
790 WMI_10X_VDEV_RESTART_REQUEST_CMDID,
791 WMI_10X_VDEV_UP_CMDID,
792 WMI_10X_VDEV_STOP_CMDID,
793 WMI_10X_VDEV_DOWN_CMDID,
794 WMI_10X_VDEV_STANDBY_RESPONSE_CMDID,
795 WMI_10X_VDEV_RESUME_RESPONSE_CMDID,
796 WMI_10X_VDEV_SET_PARAM_CMDID,
797 WMI_10X_VDEV_INSTALL_KEY_CMDID,
798
799 /* peer specific commands */
800 WMI_10X_PEER_CREATE_CMDID,
801 WMI_10X_PEER_DELETE_CMDID,
802 WMI_10X_PEER_FLUSH_TIDS_CMDID,
803 WMI_10X_PEER_SET_PARAM_CMDID,
804 WMI_10X_PEER_ASSOC_CMDID,
805 WMI_10X_PEER_ADD_WDS_ENTRY_CMDID,
806 WMI_10X_PEER_REMOVE_WDS_ENTRY_CMDID,
807 WMI_10X_PEER_MCAST_GROUP_CMDID,
808
809 /* beacon/management specific commands */
810
811 WMI_10X_BCN_TX_CMDID,
812 WMI_10X_BCN_PRB_TMPL_CMDID,
813 WMI_10X_BCN_FILTER_RX_CMDID,
814 WMI_10X_PRB_REQ_FILTER_RX_CMDID,
815 WMI_10X_MGMT_TX_CMDID,
816
817 /* commands to directly control ba negotiation directly from host. */
818 WMI_10X_ADDBA_CLEAR_RESP_CMDID,
819 WMI_10X_ADDBA_SEND_CMDID,
820 WMI_10X_ADDBA_STATUS_CMDID,
821 WMI_10X_DELBA_SEND_CMDID,
822 WMI_10X_ADDBA_SET_RESP_CMDID,
823 WMI_10X_SEND_SINGLEAMSDU_CMDID,
824
825 /* Station power save specific config */
826 WMI_10X_STA_POWERSAVE_MODE_CMDID,
827 WMI_10X_STA_POWERSAVE_PARAM_CMDID,
828 WMI_10X_STA_MIMO_PS_MODE_CMDID,
829
830 /* set debug log config */
831 WMI_10X_DBGLOG_CFG_CMDID,
832
833 /* DFS-specific commands */
834 WMI_10X_PDEV_DFS_ENABLE_CMDID,
835 WMI_10X_PDEV_DFS_DISABLE_CMDID,
836
837 /* QVIT specific command id */
838 WMI_10X_PDEV_QVIT_CMDID,
839
840 /* Offload Scan and Roaming related commands */
841 WMI_10X_ROAM_SCAN_MODE,
842 WMI_10X_ROAM_SCAN_RSSI_THRESHOLD,
843 WMI_10X_ROAM_SCAN_PERIOD,
844 WMI_10X_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
845 WMI_10X_ROAM_AP_PROFILE,
846 WMI_10X_OFL_SCAN_ADD_AP_PROFILE,
847 WMI_10X_OFL_SCAN_REMOVE_AP_PROFILE,
848 WMI_10X_OFL_SCAN_PERIOD,
849
850 /* P2P specific commands */
851 WMI_10X_P2P_DEV_SET_DEVICE_INFO,
852 WMI_10X_P2P_DEV_SET_DISCOVERABILITY,
853 WMI_10X_P2P_GO_SET_BEACON_IE,
854 WMI_10X_P2P_GO_SET_PROBE_RESP_IE,
855
856 /* AP power save specific config */
857 WMI_10X_AP_PS_PEER_PARAM_CMDID,
858 WMI_10X_AP_PS_PEER_UAPSD_COEX_CMDID,
859
860 /* Rate-control specific commands */
861 WMI_10X_PEER_RATE_RETRY_SCHED_CMDID,
862
863 /* WLAN Profiling commands. */
864 WMI_10X_WLAN_PROFILE_TRIGGER_CMDID,
865 WMI_10X_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
866 WMI_10X_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
867 WMI_10X_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
868 WMI_10X_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
869
870 /* Suspend resume command Ids */
871 WMI_10X_PDEV_SUSPEND_CMDID,
872 WMI_10X_PDEV_RESUME_CMDID,
873
874 /* Beacon filter commands */
875 WMI_10X_ADD_BCN_FILTER_CMDID,
876 WMI_10X_RMV_BCN_FILTER_CMDID,
877
878 /* WOW Specific WMI commands*/
879 WMI_10X_WOW_ADD_WAKE_PATTERN_CMDID,
880 WMI_10X_WOW_DEL_WAKE_PATTERN_CMDID,
881 WMI_10X_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
882 WMI_10X_WOW_ENABLE_CMDID,
883 WMI_10X_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
884
885 /* RTT measurement related cmd */
886 WMI_10X_RTT_MEASREQ_CMDID,
887 WMI_10X_RTT_TSF_CMDID,
888
889 /* transmit beacon by value */
890 WMI_10X_PDEV_SEND_BCN_CMDID,
891
892 /* F/W stats */
893 WMI_10X_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID,
894 WMI_10X_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
895 WMI_10X_REQUEST_STATS_CMDID,
896
897 /* GPIO Configuration */
898 WMI_10X_GPIO_CONFIG_CMDID,
899 WMI_10X_GPIO_OUTPUT_CMDID,
900
901 WMI_10X_PDEV_UTF_CMDID = WMI_10X_END_CMDID - 1,
902};
903
904enum wmi_10x_event_id {
905 WMI_10X_SERVICE_READY_EVENTID = 0x8000,
906 WMI_10X_READY_EVENTID,
907 WMI_10X_START_EVENTID = 0x9000,
908 WMI_10X_END_EVENTID = 0x9FFF,
909
910 /* Scan specific events */
911 WMI_10X_SCAN_EVENTID = WMI_10X_START_EVENTID,
912 WMI_10X_ECHO_EVENTID,
913 WMI_10X_DEBUG_MESG_EVENTID,
914 WMI_10X_UPDATE_STATS_EVENTID,
915
916 /* Instantaneous RSSI event */
917 WMI_10X_INST_RSSI_STATS_EVENTID,
918
919 /* VDEV specific events */
920 WMI_10X_VDEV_START_RESP_EVENTID,
921 WMI_10X_VDEV_STANDBY_REQ_EVENTID,
922 WMI_10X_VDEV_RESUME_REQ_EVENTID,
923 WMI_10X_VDEV_STOPPED_EVENTID,
924
925 /* peer specific events */
926 WMI_10X_PEER_STA_KICKOUT_EVENTID,
927
928 /* beacon/mgmt specific events */
929 WMI_10X_HOST_SWBA_EVENTID,
930 WMI_10X_TBTTOFFSET_UPDATE_EVENTID,
931 WMI_10X_MGMT_RX_EVENTID,
932
933 /* Channel stats event */
934 WMI_10X_CHAN_INFO_EVENTID,
935
936 /* PHY Error specific WMI event */
937 WMI_10X_PHYERR_EVENTID,
938
939 /* Roam event to trigger roaming on host */
940 WMI_10X_ROAM_EVENTID,
941
942 /* matching AP found from list of profiles */
943 WMI_10X_PROFILE_MATCH,
944
945 /* debug print message used for tracing FW code while debugging */
946 WMI_10X_DEBUG_PRINT_EVENTID,
947 /* VI spoecific event */
948 WMI_10X_PDEV_QVIT_EVENTID,
949 /* FW code profile data in response to profile request */
950 WMI_10X_WLAN_PROFILE_DATA_EVENTID,
951
952 /*RTT related event ID*/
953 WMI_10X_RTT_MEASUREMENT_REPORT_EVENTID,
954 WMI_10X_TSF_MEASUREMENT_REPORT_EVENTID,
955 WMI_10X_RTT_ERROR_REPORT_EVENTID,
956
957 WMI_10X_WOW_WAKEUP_HOST_EVENTID,
958 WMI_10X_DCS_INTERFERENCE_EVENTID,
959
960 /* TPC config for the current operating channel */
961 WMI_10X_PDEV_TPC_CONFIG_EVENTID,
962
963 WMI_10X_GPIO_INPUT_EVENTID,
964 WMI_10X_PDEV_UTF_EVENTID = WMI_10X_END_EVENTID-1,
965};
966
Michal Kazior24c88f72014-07-25 13:32:17 +0200967enum wmi_10_2_cmd_id {
968 WMI_10_2_START_CMDID = 0x9000,
969 WMI_10_2_END_CMDID = 0x9FFF,
970 WMI_10_2_INIT_CMDID,
971 WMI_10_2_START_SCAN_CMDID = WMI_10_2_START_CMDID,
972 WMI_10_2_STOP_SCAN_CMDID,
973 WMI_10_2_SCAN_CHAN_LIST_CMDID,
974 WMI_10_2_ECHO_CMDID,
975 WMI_10_2_PDEV_SET_REGDOMAIN_CMDID,
976 WMI_10_2_PDEV_SET_CHANNEL_CMDID,
977 WMI_10_2_PDEV_SET_PARAM_CMDID,
978 WMI_10_2_PDEV_PKTLOG_ENABLE_CMDID,
979 WMI_10_2_PDEV_PKTLOG_DISABLE_CMDID,
980 WMI_10_2_PDEV_SET_WMM_PARAMS_CMDID,
981 WMI_10_2_PDEV_SET_HT_CAP_IE_CMDID,
982 WMI_10_2_PDEV_SET_VHT_CAP_IE_CMDID,
983 WMI_10_2_PDEV_SET_BASE_MACADDR_CMDID,
984 WMI_10_2_PDEV_SET_QUIET_MODE_CMDID,
985 WMI_10_2_PDEV_GREEN_AP_PS_ENABLE_CMDID,
986 WMI_10_2_PDEV_GET_TPC_CONFIG_CMDID,
987 WMI_10_2_VDEV_CREATE_CMDID,
988 WMI_10_2_VDEV_DELETE_CMDID,
989 WMI_10_2_VDEV_START_REQUEST_CMDID,
990 WMI_10_2_VDEV_RESTART_REQUEST_CMDID,
991 WMI_10_2_VDEV_UP_CMDID,
992 WMI_10_2_VDEV_STOP_CMDID,
993 WMI_10_2_VDEV_DOWN_CMDID,
994 WMI_10_2_VDEV_STANDBY_RESPONSE_CMDID,
995 WMI_10_2_VDEV_RESUME_RESPONSE_CMDID,
996 WMI_10_2_VDEV_SET_PARAM_CMDID,
997 WMI_10_2_VDEV_INSTALL_KEY_CMDID,
998 WMI_10_2_VDEV_SET_DSCP_TID_MAP_CMDID,
999 WMI_10_2_PEER_CREATE_CMDID,
1000 WMI_10_2_PEER_DELETE_CMDID,
1001 WMI_10_2_PEER_FLUSH_TIDS_CMDID,
1002 WMI_10_2_PEER_SET_PARAM_CMDID,
1003 WMI_10_2_PEER_ASSOC_CMDID,
1004 WMI_10_2_PEER_ADD_WDS_ENTRY_CMDID,
1005 WMI_10_2_PEER_UPDATE_WDS_ENTRY_CMDID,
1006 WMI_10_2_PEER_REMOVE_WDS_ENTRY_CMDID,
1007 WMI_10_2_PEER_MCAST_GROUP_CMDID,
1008 WMI_10_2_BCN_TX_CMDID,
1009 WMI_10_2_BCN_PRB_TMPL_CMDID,
1010 WMI_10_2_BCN_FILTER_RX_CMDID,
1011 WMI_10_2_PRB_REQ_FILTER_RX_CMDID,
1012 WMI_10_2_MGMT_TX_CMDID,
1013 WMI_10_2_ADDBA_CLEAR_RESP_CMDID,
1014 WMI_10_2_ADDBA_SEND_CMDID,
1015 WMI_10_2_ADDBA_STATUS_CMDID,
1016 WMI_10_2_DELBA_SEND_CMDID,
1017 WMI_10_2_ADDBA_SET_RESP_CMDID,
1018 WMI_10_2_SEND_SINGLEAMSDU_CMDID,
1019 WMI_10_2_STA_POWERSAVE_MODE_CMDID,
1020 WMI_10_2_STA_POWERSAVE_PARAM_CMDID,
1021 WMI_10_2_STA_MIMO_PS_MODE_CMDID,
1022 WMI_10_2_DBGLOG_CFG_CMDID,
1023 WMI_10_2_PDEV_DFS_ENABLE_CMDID,
1024 WMI_10_2_PDEV_DFS_DISABLE_CMDID,
1025 WMI_10_2_PDEV_QVIT_CMDID,
1026 WMI_10_2_ROAM_SCAN_MODE,
1027 WMI_10_2_ROAM_SCAN_RSSI_THRESHOLD,
1028 WMI_10_2_ROAM_SCAN_PERIOD,
1029 WMI_10_2_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
1030 WMI_10_2_ROAM_AP_PROFILE,
1031 WMI_10_2_OFL_SCAN_ADD_AP_PROFILE,
1032 WMI_10_2_OFL_SCAN_REMOVE_AP_PROFILE,
1033 WMI_10_2_OFL_SCAN_PERIOD,
1034 WMI_10_2_P2P_DEV_SET_DEVICE_INFO,
1035 WMI_10_2_P2P_DEV_SET_DISCOVERABILITY,
1036 WMI_10_2_P2P_GO_SET_BEACON_IE,
1037 WMI_10_2_P2P_GO_SET_PROBE_RESP_IE,
1038 WMI_10_2_AP_PS_PEER_PARAM_CMDID,
1039 WMI_10_2_AP_PS_PEER_UAPSD_COEX_CMDID,
1040 WMI_10_2_PEER_RATE_RETRY_SCHED_CMDID,
1041 WMI_10_2_WLAN_PROFILE_TRIGGER_CMDID,
1042 WMI_10_2_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
1043 WMI_10_2_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
1044 WMI_10_2_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
1045 WMI_10_2_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
1046 WMI_10_2_PDEV_SUSPEND_CMDID,
1047 WMI_10_2_PDEV_RESUME_CMDID,
1048 WMI_10_2_ADD_BCN_FILTER_CMDID,
1049 WMI_10_2_RMV_BCN_FILTER_CMDID,
1050 WMI_10_2_WOW_ADD_WAKE_PATTERN_CMDID,
1051 WMI_10_2_WOW_DEL_WAKE_PATTERN_CMDID,
1052 WMI_10_2_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
1053 WMI_10_2_WOW_ENABLE_CMDID,
1054 WMI_10_2_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
1055 WMI_10_2_RTT_MEASREQ_CMDID,
1056 WMI_10_2_RTT_TSF_CMDID,
1057 WMI_10_2_RTT_KEEPALIVE_CMDID,
1058 WMI_10_2_PDEV_SEND_BCN_CMDID,
1059 WMI_10_2_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID,
1060 WMI_10_2_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
1061 WMI_10_2_REQUEST_STATS_CMDID,
1062 WMI_10_2_GPIO_CONFIG_CMDID,
1063 WMI_10_2_GPIO_OUTPUT_CMDID,
1064 WMI_10_2_VDEV_RATEMASK_CMDID,
1065 WMI_10_2_PDEV_SMART_ANT_ENABLE_CMDID,
1066 WMI_10_2_PDEV_SMART_ANT_SET_RX_ANTENNA_CMDID,
1067 WMI_10_2_PEER_SMART_ANT_SET_TX_ANTENNA_CMDID,
1068 WMI_10_2_PEER_SMART_ANT_SET_TRAIN_INFO_CMDID,
1069 WMI_10_2_PEER_SMART_ANT_SET_NODE_CONFIG_OPS_CMDID,
1070 WMI_10_2_FORCE_FW_HANG_CMDID,
1071 WMI_10_2_PDEV_SET_ANTENNA_SWITCH_TABLE_CMDID,
1072 WMI_10_2_PDEV_SET_CTL_TABLE_CMDID,
1073 WMI_10_2_PDEV_SET_MIMOGAIN_TABLE_CMDID,
1074 WMI_10_2_PDEV_RATEPWR_TABLE_CMDID,
1075 WMI_10_2_PDEV_RATEPWR_CHAINMSK_TABLE_CMDID,
1076 WMI_10_2_PDEV_UTF_CMDID = WMI_10_2_END_CMDID - 1,
1077};
1078
1079enum wmi_10_2_event_id {
1080 WMI_10_2_SERVICE_READY_EVENTID = 0x8000,
1081 WMI_10_2_READY_EVENTID,
1082 WMI_10_2_DEBUG_MESG_EVENTID,
1083 WMI_10_2_START_EVENTID = 0x9000,
1084 WMI_10_2_END_EVENTID = 0x9FFF,
1085 WMI_10_2_SCAN_EVENTID = WMI_10_2_START_EVENTID,
1086 WMI_10_2_ECHO_EVENTID,
1087 WMI_10_2_UPDATE_STATS_EVENTID,
1088 WMI_10_2_INST_RSSI_STATS_EVENTID,
1089 WMI_10_2_VDEV_START_RESP_EVENTID,
1090 WMI_10_2_VDEV_STANDBY_REQ_EVENTID,
1091 WMI_10_2_VDEV_RESUME_REQ_EVENTID,
1092 WMI_10_2_VDEV_STOPPED_EVENTID,
1093 WMI_10_2_PEER_STA_KICKOUT_EVENTID,
1094 WMI_10_2_HOST_SWBA_EVENTID,
1095 WMI_10_2_TBTTOFFSET_UPDATE_EVENTID,
1096 WMI_10_2_MGMT_RX_EVENTID,
1097 WMI_10_2_CHAN_INFO_EVENTID,
1098 WMI_10_2_PHYERR_EVENTID,
1099 WMI_10_2_ROAM_EVENTID,
1100 WMI_10_2_PROFILE_MATCH,
1101 WMI_10_2_DEBUG_PRINT_EVENTID,
1102 WMI_10_2_PDEV_QVIT_EVENTID,
1103 WMI_10_2_WLAN_PROFILE_DATA_EVENTID,
1104 WMI_10_2_RTT_MEASUREMENT_REPORT_EVENTID,
1105 WMI_10_2_TSF_MEASUREMENT_REPORT_EVENTID,
1106 WMI_10_2_RTT_ERROR_REPORT_EVENTID,
1107 WMI_10_2_RTT_KEEPALIVE_EVENTID,
1108 WMI_10_2_WOW_WAKEUP_HOST_EVENTID,
1109 WMI_10_2_DCS_INTERFERENCE_EVENTID,
1110 WMI_10_2_PDEV_TPC_CONFIG_EVENTID,
1111 WMI_10_2_GPIO_INPUT_EVENTID,
1112 WMI_10_2_PEER_RATECODE_LIST_EVENTID,
1113 WMI_10_2_GENERIC_BUFFER_EVENTID,
1114 WMI_10_2_MCAST_BUF_RELEASE_EVENTID,
1115 WMI_10_2_MCAST_LIST_AGEOUT_EVENTID,
1116 WMI_10_2_WDS_PEER_EVENTID,
1117 WMI_10_2_PDEV_UTF_EVENTID = WMI_10_2_END_EVENTID - 1,
1118};
1119
Kalle Valo5e3dd152013-06-12 20:52:10 +03001120enum wmi_phy_mode {
1121 MODE_11A = 0, /* 11a Mode */
1122 MODE_11G = 1, /* 11b/g Mode */
1123 MODE_11B = 2, /* 11b Mode */
1124 MODE_11GONLY = 3, /* 11g only Mode */
1125 MODE_11NA_HT20 = 4, /* 11a HT20 mode */
1126 MODE_11NG_HT20 = 5, /* 11g HT20 mode */
1127 MODE_11NA_HT40 = 6, /* 11a HT40 mode */
1128 MODE_11NG_HT40 = 7, /* 11g HT40 mode */
1129 MODE_11AC_VHT20 = 8,
1130 MODE_11AC_VHT40 = 9,
1131 MODE_11AC_VHT80 = 10,
1132 /* MODE_11AC_VHT160 = 11, */
1133 MODE_11AC_VHT20_2G = 11,
1134 MODE_11AC_VHT40_2G = 12,
1135 MODE_11AC_VHT80_2G = 13,
1136 MODE_UNKNOWN = 14,
1137 MODE_MAX = 14
1138};
1139
Kalle Valo38a1d472013-09-08 17:56:14 +03001140static inline const char *ath10k_wmi_phymode_str(enum wmi_phy_mode mode)
1141{
1142 switch (mode) {
1143 case MODE_11A:
1144 return "11a";
1145 case MODE_11G:
1146 return "11g";
1147 case MODE_11B:
1148 return "11b";
1149 case MODE_11GONLY:
1150 return "11gonly";
1151 case MODE_11NA_HT20:
1152 return "11na-ht20";
1153 case MODE_11NG_HT20:
1154 return "11ng-ht20";
1155 case MODE_11NA_HT40:
1156 return "11na-ht40";
1157 case MODE_11NG_HT40:
1158 return "11ng-ht40";
1159 case MODE_11AC_VHT20:
1160 return "11ac-vht20";
1161 case MODE_11AC_VHT40:
1162 return "11ac-vht40";
1163 case MODE_11AC_VHT80:
1164 return "11ac-vht80";
1165 case MODE_11AC_VHT20_2G:
1166 return "11ac-vht20-2g";
1167 case MODE_11AC_VHT40_2G:
1168 return "11ac-vht40-2g";
1169 case MODE_11AC_VHT80_2G:
1170 return "11ac-vht80-2g";
1171 case MODE_UNKNOWN:
1172 /* skip */
1173 break;
1174
1175 /* no default handler to allow compiler to check that the
1176 * enum is fully handled */
1177 };
1178
1179 return "<unknown>";
1180}
1181
Kalle Valo5e3dd152013-06-12 20:52:10 +03001182#define WMI_CHAN_LIST_TAG 0x1
1183#define WMI_SSID_LIST_TAG 0x2
1184#define WMI_BSSID_LIST_TAG 0x3
1185#define WMI_IE_TAG 0x4
1186
1187struct wmi_channel {
1188 __le32 mhz;
1189 __le32 band_center_freq1;
1190 __le32 band_center_freq2; /* valid for 11ac, 80plus80 */
1191 union {
1192 __le32 flags; /* WMI_CHAN_FLAG_ */
1193 struct {
1194 u8 mode; /* only 6 LSBs */
1195 } __packed;
1196 } __packed;
1197 union {
1198 __le32 reginfo0;
1199 struct {
Michal Kazior02256932013-10-23 04:02:14 -07001200 /* note: power unit is 0.5 dBm */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001201 u8 min_power;
1202 u8 max_power;
1203 u8 reg_power;
1204 u8 reg_classid;
1205 } __packed;
1206 } __packed;
1207 union {
1208 __le32 reginfo1;
1209 struct {
1210 u8 antenna_max;
1211 } __packed;
1212 } __packed;
1213} __packed;
1214
1215struct wmi_channel_arg {
1216 u32 freq;
1217 u32 band_center_freq1;
1218 bool passive;
1219 bool allow_ibss;
1220 bool allow_ht;
1221 bool allow_vht;
1222 bool ht40plus;
Marek Puzyniake8a50f82013-11-20 09:59:47 +02001223 bool chan_radar;
Michal Kazior02256932013-10-23 04:02:14 -07001224 /* note: power unit is 0.5 dBm */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001225 u32 min_power;
1226 u32 max_power;
1227 u32 max_reg_power;
1228 u32 max_antenna_gain;
1229 u32 reg_class_id;
1230 enum wmi_phy_mode mode;
1231};
1232
1233enum wmi_channel_change_cause {
1234 WMI_CHANNEL_CHANGE_CAUSE_NONE = 0,
1235 WMI_CHANNEL_CHANGE_CAUSE_CSA,
1236};
1237
1238#define WMI_CHAN_FLAG_HT40_PLUS (1 << 6)
1239#define WMI_CHAN_FLAG_PASSIVE (1 << 7)
1240#define WMI_CHAN_FLAG_ADHOC_ALLOWED (1 << 8)
1241#define WMI_CHAN_FLAG_AP_DISABLED (1 << 9)
1242#define WMI_CHAN_FLAG_DFS (1 << 10)
1243#define WMI_CHAN_FLAG_ALLOW_HT (1 << 11)
1244#define WMI_CHAN_FLAG_ALLOW_VHT (1 << 12)
1245
1246/* Indicate reason for channel switch */
1247#define WMI_CHANNEL_CHANGE_CAUSE_CSA (1 << 13)
1248
1249#define WMI_MAX_SPATIAL_STREAM 3
1250
1251/* HT Capabilities*/
1252#define WMI_HT_CAP_ENABLED 0x0001 /* HT Enabled/ disabled */
1253#define WMI_HT_CAP_HT20_SGI 0x0002 /* Short Guard Interval with HT20 */
1254#define WMI_HT_CAP_DYNAMIC_SMPS 0x0004 /* Dynamic MIMO powersave */
1255#define WMI_HT_CAP_TX_STBC 0x0008 /* B3 TX STBC */
1256#define WMI_HT_CAP_TX_STBC_MASK_SHIFT 3
1257#define WMI_HT_CAP_RX_STBC 0x0030 /* B4-B5 RX STBC */
1258#define WMI_HT_CAP_RX_STBC_MASK_SHIFT 4
1259#define WMI_HT_CAP_LDPC 0x0040 /* LDPC supported */
1260#define WMI_HT_CAP_L_SIG_TXOP_PROT 0x0080 /* L-SIG TXOP Protection */
1261#define WMI_HT_CAP_MPDU_DENSITY 0x0700 /* MPDU Density */
1262#define WMI_HT_CAP_MPDU_DENSITY_MASK_SHIFT 8
1263#define WMI_HT_CAP_HT40_SGI 0x0800
1264
1265#define WMI_HT_CAP_DEFAULT_ALL (WMI_HT_CAP_ENABLED | \
1266 WMI_HT_CAP_HT20_SGI | \
1267 WMI_HT_CAP_HT40_SGI | \
1268 WMI_HT_CAP_TX_STBC | \
1269 WMI_HT_CAP_RX_STBC | \
1270 WMI_HT_CAP_LDPC)
1271
Kalle Valo5e3dd152013-06-12 20:52:10 +03001272/*
1273 * WMI_VHT_CAP_* these maps to ieee 802.11ac vht capability information
1274 * field. The fields not defined here are not supported, or reserved.
1275 * Do not change these masks and if you have to add new one follow the
1276 * bitmask as specified by 802.11ac draft.
1277 */
1278
1279#define WMI_VHT_CAP_MAX_MPDU_LEN_MASK 0x00000003
1280#define WMI_VHT_CAP_RX_LDPC 0x00000010
1281#define WMI_VHT_CAP_SGI_80MHZ 0x00000020
1282#define WMI_VHT_CAP_TX_STBC 0x00000080
1283#define WMI_VHT_CAP_RX_STBC_MASK 0x00000300
1284#define WMI_VHT_CAP_RX_STBC_MASK_SHIFT 8
1285#define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP 0x03800000
1286#define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIFT 23
1287#define WMI_VHT_CAP_RX_FIXED_ANT 0x10000000
1288#define WMI_VHT_CAP_TX_FIXED_ANT 0x20000000
1289
1290/* The following also refer for max HT AMSDU */
1291#define WMI_VHT_CAP_MAX_MPDU_LEN_3839 0x00000000
1292#define WMI_VHT_CAP_MAX_MPDU_LEN_7935 0x00000001
1293#define WMI_VHT_CAP_MAX_MPDU_LEN_11454 0x00000002
1294
1295#define WMI_VHT_CAP_DEFAULT_ALL (WMI_VHT_CAP_MAX_MPDU_LEN_11454 | \
1296 WMI_VHT_CAP_RX_LDPC | \
1297 WMI_VHT_CAP_SGI_80MHZ | \
1298 WMI_VHT_CAP_TX_STBC | \
1299 WMI_VHT_CAP_RX_STBC_MASK | \
1300 WMI_VHT_CAP_MAX_AMPDU_LEN_EXP | \
1301 WMI_VHT_CAP_RX_FIXED_ANT | \
1302 WMI_VHT_CAP_TX_FIXED_ANT)
1303
1304/*
1305 * Interested readers refer to Rx/Tx MCS Map definition as defined in
1306 * 802.11ac
1307 */
1308#define WMI_VHT_MAX_MCS_4_SS_MASK(r, ss) ((3 & (r)) << (((ss) - 1) << 1))
1309#define WMI_VHT_MAX_SUPP_RATE_MASK 0x1fff0000
1310#define WMI_VHT_MAX_SUPP_RATE_MASK_SHIFT 16
1311
1312enum {
1313 REGDMN_MODE_11A = 0x00001, /* 11a channels */
1314 REGDMN_MODE_TURBO = 0x00002, /* 11a turbo-only channels */
1315 REGDMN_MODE_11B = 0x00004, /* 11b channels */
1316 REGDMN_MODE_PUREG = 0x00008, /* 11g channels (OFDM only) */
1317 REGDMN_MODE_11G = 0x00008, /* XXX historical */
1318 REGDMN_MODE_108G = 0x00020, /* 11a+Turbo channels */
1319 REGDMN_MODE_108A = 0x00040, /* 11g+Turbo channels */
1320 REGDMN_MODE_XR = 0x00100, /* XR channels */
1321 REGDMN_MODE_11A_HALF_RATE = 0x00200, /* 11A half rate channels */
1322 REGDMN_MODE_11A_QUARTER_RATE = 0x00400, /* 11A quarter rate channels */
1323 REGDMN_MODE_11NG_HT20 = 0x00800, /* 11N-G HT20 channels */
1324 REGDMN_MODE_11NA_HT20 = 0x01000, /* 11N-A HT20 channels */
1325 REGDMN_MODE_11NG_HT40PLUS = 0x02000, /* 11N-G HT40 + channels */
1326 REGDMN_MODE_11NG_HT40MINUS = 0x04000, /* 11N-G HT40 - channels */
1327 REGDMN_MODE_11NA_HT40PLUS = 0x08000, /* 11N-A HT40 + channels */
1328 REGDMN_MODE_11NA_HT40MINUS = 0x10000, /* 11N-A HT40 - channels */
1329 REGDMN_MODE_11AC_VHT20 = 0x20000, /* 5Ghz, VHT20 */
1330 REGDMN_MODE_11AC_VHT40PLUS = 0x40000, /* 5Ghz, VHT40 + channels */
1331 REGDMN_MODE_11AC_VHT40MINUS = 0x80000, /* 5Ghz VHT40 - channels */
1332 REGDMN_MODE_11AC_VHT80 = 0x100000, /* 5Ghz, VHT80 channels */
1333 REGDMN_MODE_ALL = 0xffffffff
1334};
1335
1336#define REGDMN_CAP1_CHAN_HALF_RATE 0x00000001
1337#define REGDMN_CAP1_CHAN_QUARTER_RATE 0x00000002
1338#define REGDMN_CAP1_CHAN_HAL49GHZ 0x00000004
1339
1340/* regulatory capabilities */
1341#define REGDMN_EEPROM_EEREGCAP_EN_FCC_MIDBAND 0x0040
1342#define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_EVEN 0x0080
1343#define REGDMN_EEPROM_EEREGCAP_EN_KK_U2 0x0100
1344#define REGDMN_EEPROM_EEREGCAP_EN_KK_MIDBAND 0x0200
1345#define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_ODD 0x0400
1346#define REGDMN_EEPROM_EEREGCAP_EN_KK_NEW_11A 0x0800
1347
1348struct hal_reg_capabilities {
1349 /* regdomain value specified in EEPROM */
1350 __le32 eeprom_rd;
1351 /*regdomain */
1352 __le32 eeprom_rd_ext;
1353 /* CAP1 capabilities bit map. */
1354 __le32 regcap1;
1355 /* REGDMN EEPROM CAP. */
1356 __le32 regcap2;
1357 /* REGDMN MODE */
1358 __le32 wireless_modes;
1359 __le32 low_2ghz_chan;
1360 __le32 high_2ghz_chan;
1361 __le32 low_5ghz_chan;
1362 __le32 high_5ghz_chan;
1363} __packed;
1364
1365enum wlan_mode_capability {
1366 WHAL_WLAN_11A_CAPABILITY = 0x1,
1367 WHAL_WLAN_11G_CAPABILITY = 0x2,
1368 WHAL_WLAN_11AG_CAPABILITY = 0x3,
1369};
1370
1371/* structure used by FW for requesting host memory */
1372struct wlan_host_mem_req {
1373 /* ID of the request */
1374 __le32 req_id;
1375 /* size of the of each unit */
1376 __le32 unit_size;
1377 /* flags to indicate that
1378 * the number units is dependent
1379 * on number of resources(num vdevs num peers .. etc)
1380 */
1381 __le32 num_unit_info;
1382 /*
1383 * actual number of units to allocate . if flags in the num_unit_info
1384 * indicate that number of units is tied to number of a particular
1385 * resource to allocate then num_units filed is set to 0 and host
1386 * will derive the number units from number of the resources it is
1387 * requesting.
1388 */
1389 __le32 num_units;
1390} __packed;
1391
Kalle Valo5e3dd152013-06-12 20:52:10 +03001392/*
1393 * The following struct holds optional payload for
1394 * wmi_service_ready_event,e.g., 11ac pass some of the
1395 * device capability to the host.
1396 */
1397struct wmi_service_ready_event {
1398 __le32 sw_version;
1399 __le32 sw_version_1;
1400 __le32 abi_version;
1401 /* WMI_PHY_CAPABILITY */
1402 __le32 phy_capability;
1403 /* Maximum number of frag table entries that SW will populate less 1 */
1404 __le32 max_frag_entry;
Michal Kaziorc4f8c832014-09-04 10:18:32 +02001405 __le32 wmi_service_bitmap[16];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001406 __le32 num_rf_chains;
1407 /*
1408 * The following field is only valid for service type
1409 * WMI_SERVICE_11AC
1410 */
1411 __le32 ht_cap_info; /* WMI HT Capability */
1412 __le32 vht_cap_info; /* VHT capability info field of 802.11ac */
1413 __le32 vht_supp_mcs; /* VHT Supported MCS Set field Rx/Tx same */
1414 __le32 hw_min_tx_power;
1415 __le32 hw_max_tx_power;
1416 struct hal_reg_capabilities hal_reg_capabilities;
1417 __le32 sys_cap_info;
1418 __le32 min_pkt_size_enable; /* Enterprise mode short pkt enable */
1419 /*
1420 * Max beacon and Probe Response IE offload size
1421 * (includes optional P2P IEs)
1422 */
1423 __le32 max_bcn_ie_size;
1424 /*
1425 * request to host to allocate a chuck of memory and pss it down to FW
1426 * via WM_INIT. FW uses this as FW extesnsion memory for saving its
1427 * data structures. Only valid for low latency interfaces like PCIE
1428 * where FW can access this memory directly (or) by DMA.
1429 */
1430 __le32 num_mem_reqs;
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02001431 struct wlan_host_mem_req mem_reqs[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001432} __packed;
1433
Bartosz Markowski6f97d252013-09-26 17:47:09 +02001434/* This is the definition from 10.X firmware branch */
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02001435struct wmi_10x_service_ready_event {
Bartosz Markowski6f97d252013-09-26 17:47:09 +02001436 __le32 sw_version;
1437 __le32 abi_version;
1438
1439 /* WMI_PHY_CAPABILITY */
1440 __le32 phy_capability;
1441
1442 /* Maximum number of frag table entries that SW will populate less 1 */
1443 __le32 max_frag_entry;
Michal Kaziorc4f8c832014-09-04 10:18:32 +02001444 __le32 wmi_service_bitmap[16];
Bartosz Markowski6f97d252013-09-26 17:47:09 +02001445 __le32 num_rf_chains;
1446
1447 /*
1448 * The following field is only valid for service type
1449 * WMI_SERVICE_11AC
1450 */
1451 __le32 ht_cap_info; /* WMI HT Capability */
1452 __le32 vht_cap_info; /* VHT capability info field of 802.11ac */
1453 __le32 vht_supp_mcs; /* VHT Supported MCS Set field Rx/Tx same */
1454 __le32 hw_min_tx_power;
1455 __le32 hw_max_tx_power;
1456
1457 struct hal_reg_capabilities hal_reg_capabilities;
1458
1459 __le32 sys_cap_info;
1460 __le32 min_pkt_size_enable; /* Enterprise mode short pkt enable */
1461
1462 /*
1463 * request to host to allocate a chuck of memory and pss it down to FW
1464 * via WM_INIT. FW uses this as FW extesnsion memory for saving its
1465 * data structures. Only valid for low latency interfaces like PCIE
1466 * where FW can access this memory directly (or) by DMA.
1467 */
1468 __le32 num_mem_reqs;
1469
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02001470 struct wlan_host_mem_req mem_reqs[0];
Bartosz Markowski6f97d252013-09-26 17:47:09 +02001471} __packed;
1472
Kalle Valo5e3dd152013-06-12 20:52:10 +03001473#define WMI_SERVICE_READY_TIMEOUT_HZ (5*HZ)
1474#define WMI_UNIFIED_READY_TIMEOUT_HZ (5*HZ)
1475
1476struct wmi_ready_event {
1477 __le32 sw_version;
1478 __le32 abi_version;
1479 struct wmi_mac_addr mac_addr;
1480 __le32 status;
1481} __packed;
1482
1483struct wmi_resource_config {
1484 /* number of virtual devices (VAPs) to support */
1485 __le32 num_vdevs;
1486
1487 /* number of peer nodes to support */
1488 __le32 num_peers;
1489
1490 /*
1491 * In offload mode target supports features like WOW, chatter and
1492 * other protocol offloads. In order to support them some
1493 * functionalities like reorder buffering, PN checking need to be
1494 * done in target. This determines maximum number of peers suported
1495 * by target in offload mode
1496 */
1497 __le32 num_offload_peers;
1498
1499 /* For target-based RX reordering */
1500 __le32 num_offload_reorder_bufs;
1501
1502 /* number of keys per peer */
1503 __le32 num_peer_keys;
1504
1505 /* total number of TX/RX data TIDs */
1506 __le32 num_tids;
1507
1508 /*
1509 * max skid for resolving hash collisions
1510 *
1511 * The address search table is sparse, so that if two MAC addresses
1512 * result in the same hash value, the second of these conflicting
1513 * entries can slide to the next index in the address search table,
1514 * and use it, if it is unoccupied. This ast_skid_limit parameter
1515 * specifies the upper bound on how many subsequent indices to search
1516 * over to find an unoccupied space.
1517 */
1518 __le32 ast_skid_limit;
1519
1520 /*
1521 * the nominal chain mask for transmit
1522 *
1523 * The chain mask may be modified dynamically, e.g. to operate AP
1524 * tx with a reduced number of chains if no clients are associated.
1525 * This configuration parameter specifies the nominal chain-mask that
1526 * should be used when not operating with a reduced set of tx chains.
1527 */
1528 __le32 tx_chain_mask;
1529
1530 /*
1531 * the nominal chain mask for receive
1532 *
1533 * The chain mask may be modified dynamically, e.g. for a client
1534 * to use a reduced number of chains for receive if the traffic to
1535 * the client is low enough that it doesn't require downlink MIMO
1536 * or antenna diversity.
1537 * This configuration parameter specifies the nominal chain-mask that
1538 * should be used when not operating with a reduced set of rx chains.
1539 */
1540 __le32 rx_chain_mask;
1541
1542 /*
1543 * what rx reorder timeout (ms) to use for the AC
1544 *
1545 * Each WMM access class (voice, video, best-effort, background) will
1546 * have its own timeout value to dictate how long to wait for missing
1547 * rx MPDUs to arrive before flushing subsequent MPDUs that have
1548 * already been received.
1549 * This parameter specifies the timeout in milliseconds for each
1550 * class.
1551 */
1552 __le32 rx_timeout_pri_vi;
1553 __le32 rx_timeout_pri_vo;
1554 __le32 rx_timeout_pri_be;
1555 __le32 rx_timeout_pri_bk;
1556
1557 /*
1558 * what mode the rx should decap packets to
1559 *
1560 * MAC can decap to RAW (no decap), native wifi or Ethernet types
1561 * THis setting also determines the default TX behavior, however TX
1562 * behavior can be modified on a per VAP basis during VAP init
1563 */
1564 __le32 rx_decap_mode;
1565
Geert Uytterhoeven8e4a4f52014-03-11 11:23:45 +01001566 /* what is the maximum number of scan requests that can be queued */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001567 __le32 scan_max_pending_reqs;
1568
1569 /* maximum VDEV that could use BMISS offload */
1570 __le32 bmiss_offload_max_vdev;
1571
1572 /* maximum VDEV that could use offload roaming */
1573 __le32 roam_offload_max_vdev;
1574
1575 /* maximum AP profiles that would push to offload roaming */
1576 __le32 roam_offload_max_ap_profiles;
1577
1578 /*
1579 * how many groups to use for mcast->ucast conversion
1580 *
1581 * The target's WAL maintains a table to hold information regarding
1582 * which peers belong to a given multicast group, so that if
1583 * multicast->unicast conversion is enabled, the target can convert
1584 * multicast tx frames to a series of unicast tx frames, to each
1585 * peer within the multicast group.
1586 This num_mcast_groups configuration parameter tells the target how
1587 * many multicast groups to provide storage for within its multicast
1588 * group membership table.
1589 */
1590 __le32 num_mcast_groups;
1591
1592 /*
1593 * size to alloc for the mcast membership table
1594 *
1595 * This num_mcast_table_elems configuration parameter tells the
1596 * target how many peer elements it needs to provide storage for in
1597 * its multicast group membership table.
1598 * These multicast group membership table elements are shared by the
1599 * multicast groups stored within the table.
1600 */
1601 __le32 num_mcast_table_elems;
1602
1603 /*
1604 * whether/how to do multicast->unicast conversion
1605 *
1606 * This configuration parameter specifies whether the target should
1607 * perform multicast --> unicast conversion on transmit, and if so,
1608 * what to do if it finds no entries in its multicast group
1609 * membership table for the multicast IP address in the tx frame.
1610 * Configuration value:
1611 * 0 -> Do not perform multicast to unicast conversion.
1612 * 1 -> Convert multicast frames to unicast, if the IP multicast
1613 * address from the tx frame is found in the multicast group
1614 * membership table. If the IP multicast address is not found,
1615 * drop the frame.
1616 * 2 -> Convert multicast frames to unicast, if the IP multicast
1617 * address from the tx frame is found in the multicast group
1618 * membership table. If the IP multicast address is not found,
1619 * transmit the frame as multicast.
1620 */
1621 __le32 mcast2ucast_mode;
1622
1623 /*
1624 * how much memory to allocate for a tx PPDU dbg log
1625 *
1626 * This parameter controls how much memory the target will allocate
1627 * to store a log of tx PPDU meta-information (how large the PPDU
1628 * was, when it was sent, whether it was successful, etc.)
1629 */
1630 __le32 tx_dbg_log_size;
1631
1632 /* how many AST entries to be allocated for WDS */
1633 __le32 num_wds_entries;
1634
1635 /*
1636 * MAC DMA burst size, e.g., For target PCI limit can be
1637 * 0 -default, 1 256B
1638 */
1639 __le32 dma_burst_size;
1640
1641 /*
1642 * Fixed delimiters to be inserted after every MPDU to
1643 * account for interface latency to avoid underrun.
1644 */
1645 __le32 mac_aggr_delim;
1646
1647 /*
1648 * determine whether target is responsible for detecting duplicate
1649 * non-aggregate MPDU and timing out stale fragments.
1650 *
1651 * A-MPDU reordering is always performed on the target.
1652 *
1653 * 0: target responsible for frag timeout and dup checking
1654 * 1: host responsible for frag timeout and dup checking
1655 */
1656 __le32 rx_skip_defrag_timeout_dup_detection_check;
1657
1658 /*
1659 * Configuration for VoW :
1660 * No of Video Nodes to be supported
1661 * and Max no of descriptors for each Video link (node).
1662 */
1663 __le32 vow_config;
1664
1665 /* maximum VDEV that could use GTK offload */
1666 __le32 gtk_offload_max_vdev;
1667
1668 /* Number of msdu descriptors target should use */
1669 __le32 num_msdu_desc;
1670
1671 /*
1672 * Max. number of Tx fragments per MSDU
1673 * This parameter controls the max number of Tx fragments per MSDU.
1674 * This is sent by the target as part of the WMI_SERVICE_READY event
1675 * and is overriden by the OS shim as required.
1676 */
1677 __le32 max_frag_entries;
1678} __packed;
1679
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02001680struct wmi_resource_config_10x {
1681 /* number of virtual devices (VAPs) to support */
1682 __le32 num_vdevs;
1683
1684 /* number of peer nodes to support */
1685 __le32 num_peers;
1686
1687 /* number of keys per peer */
1688 __le32 num_peer_keys;
1689
1690 /* total number of TX/RX data TIDs */
1691 __le32 num_tids;
1692
1693 /*
1694 * max skid for resolving hash collisions
1695 *
1696 * The address search table is sparse, so that if two MAC addresses
1697 * result in the same hash value, the second of these conflicting
1698 * entries can slide to the next index in the address search table,
1699 * and use it, if it is unoccupied. This ast_skid_limit parameter
1700 * specifies the upper bound on how many subsequent indices to search
1701 * over to find an unoccupied space.
1702 */
1703 __le32 ast_skid_limit;
1704
1705 /*
1706 * the nominal chain mask for transmit
1707 *
1708 * The chain mask may be modified dynamically, e.g. to operate AP
1709 * tx with a reduced number of chains if no clients are associated.
1710 * This configuration parameter specifies the nominal chain-mask that
1711 * should be used when not operating with a reduced set of tx chains.
1712 */
1713 __le32 tx_chain_mask;
1714
1715 /*
1716 * the nominal chain mask for receive
1717 *
1718 * The chain mask may be modified dynamically, e.g. for a client
1719 * to use a reduced number of chains for receive if the traffic to
1720 * the client is low enough that it doesn't require downlink MIMO
1721 * or antenna diversity.
1722 * This configuration parameter specifies the nominal chain-mask that
1723 * should be used when not operating with a reduced set of rx chains.
1724 */
1725 __le32 rx_chain_mask;
1726
1727 /*
1728 * what rx reorder timeout (ms) to use for the AC
1729 *
1730 * Each WMM access class (voice, video, best-effort, background) will
1731 * have its own timeout value to dictate how long to wait for missing
1732 * rx MPDUs to arrive before flushing subsequent MPDUs that have
1733 * already been received.
1734 * This parameter specifies the timeout in milliseconds for each
1735 * class.
1736 */
1737 __le32 rx_timeout_pri_vi;
1738 __le32 rx_timeout_pri_vo;
1739 __le32 rx_timeout_pri_be;
1740 __le32 rx_timeout_pri_bk;
1741
1742 /*
1743 * what mode the rx should decap packets to
1744 *
1745 * MAC can decap to RAW (no decap), native wifi or Ethernet types
1746 * THis setting also determines the default TX behavior, however TX
1747 * behavior can be modified on a per VAP basis during VAP init
1748 */
1749 __le32 rx_decap_mode;
1750
Geert Uytterhoeven8e4a4f52014-03-11 11:23:45 +01001751 /* what is the maximum number of scan requests that can be queued */
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02001752 __le32 scan_max_pending_reqs;
1753
1754 /* maximum VDEV that could use BMISS offload */
1755 __le32 bmiss_offload_max_vdev;
1756
1757 /* maximum VDEV that could use offload roaming */
1758 __le32 roam_offload_max_vdev;
1759
1760 /* maximum AP profiles that would push to offload roaming */
1761 __le32 roam_offload_max_ap_profiles;
1762
1763 /*
1764 * how many groups to use for mcast->ucast conversion
1765 *
1766 * The target's WAL maintains a table to hold information regarding
1767 * which peers belong to a given multicast group, so that if
1768 * multicast->unicast conversion is enabled, the target can convert
1769 * multicast tx frames to a series of unicast tx frames, to each
1770 * peer within the multicast group.
1771 This num_mcast_groups configuration parameter tells the target how
1772 * many multicast groups to provide storage for within its multicast
1773 * group membership table.
1774 */
1775 __le32 num_mcast_groups;
1776
1777 /*
1778 * size to alloc for the mcast membership table
1779 *
1780 * This num_mcast_table_elems configuration parameter tells the
1781 * target how many peer elements it needs to provide storage for in
1782 * its multicast group membership table.
1783 * These multicast group membership table elements are shared by the
1784 * multicast groups stored within the table.
1785 */
1786 __le32 num_mcast_table_elems;
1787
1788 /*
1789 * whether/how to do multicast->unicast conversion
1790 *
1791 * This configuration parameter specifies whether the target should
1792 * perform multicast --> unicast conversion on transmit, and if so,
1793 * what to do if it finds no entries in its multicast group
1794 * membership table for the multicast IP address in the tx frame.
1795 * Configuration value:
1796 * 0 -> Do not perform multicast to unicast conversion.
1797 * 1 -> Convert multicast frames to unicast, if the IP multicast
1798 * address from the tx frame is found in the multicast group
1799 * membership table. If the IP multicast address is not found,
1800 * drop the frame.
1801 * 2 -> Convert multicast frames to unicast, if the IP multicast
1802 * address from the tx frame is found in the multicast group
1803 * membership table. If the IP multicast address is not found,
1804 * transmit the frame as multicast.
1805 */
1806 __le32 mcast2ucast_mode;
1807
1808 /*
1809 * how much memory to allocate for a tx PPDU dbg log
1810 *
1811 * This parameter controls how much memory the target will allocate
1812 * to store a log of tx PPDU meta-information (how large the PPDU
1813 * was, when it was sent, whether it was successful, etc.)
1814 */
1815 __le32 tx_dbg_log_size;
1816
1817 /* how many AST entries to be allocated for WDS */
1818 __le32 num_wds_entries;
1819
1820 /*
1821 * MAC DMA burst size, e.g., For target PCI limit can be
1822 * 0 -default, 1 256B
1823 */
1824 __le32 dma_burst_size;
1825
1826 /*
1827 * Fixed delimiters to be inserted after every MPDU to
1828 * account for interface latency to avoid underrun.
1829 */
1830 __le32 mac_aggr_delim;
1831
1832 /*
1833 * determine whether target is responsible for detecting duplicate
1834 * non-aggregate MPDU and timing out stale fragments.
1835 *
1836 * A-MPDU reordering is always performed on the target.
1837 *
1838 * 0: target responsible for frag timeout and dup checking
1839 * 1: host responsible for frag timeout and dup checking
1840 */
1841 __le32 rx_skip_defrag_timeout_dup_detection_check;
1842
1843 /*
1844 * Configuration for VoW :
1845 * No of Video Nodes to be supported
1846 * and Max no of descriptors for each Video link (node).
1847 */
1848 __le32 vow_config;
1849
1850 /* Number of msdu descriptors target should use */
1851 __le32 num_msdu_desc;
1852
1853 /*
1854 * Max. number of Tx fragments per MSDU
1855 * This parameter controls the max number of Tx fragments per MSDU.
1856 * This is sent by the target as part of the WMI_SERVICE_READY event
1857 * and is overriden by the OS shim as required.
1858 */
1859 __le32 max_frag_entries;
1860} __packed;
1861
Michal Kazior24c88f72014-07-25 13:32:17 +02001862struct wmi_resource_config_10_2 {
1863 struct wmi_resource_config_10x common;
1864 __le32 max_peer_ext_stats;
1865 __le32 smart_ant_cap; /* 0-disable, 1-enable */
1866 __le32 bk_min_free;
1867 __le32 be_min_free;
1868 __le32 vi_min_free;
1869 __le32 vo_min_free;
1870 __le32 rx_batchmode; /* 0-disable, 1-enable */
1871} __packed;
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02001872
Bartosz Markowskib3effe62013-09-26 17:47:11 +02001873#define NUM_UNITS_IS_NUM_VDEVS 0x1
1874#define NUM_UNITS_IS_NUM_PEERS 0x2
1875
Kalle Valo5e3dd152013-06-12 20:52:10 +03001876/* strucutre describing host memory chunk. */
1877struct host_memory_chunk {
1878 /* id of the request that is passed up in service ready */
1879 __le32 req_id;
1880 /* the physical address the memory chunk */
1881 __le32 ptr;
1882 /* size of the chunk */
1883 __le32 size;
1884} __packed;
1885
Michal Kaziorcf9fca82014-09-18 15:21:22 +02001886struct wmi_host_mem_chunks {
1887 __le32 count;
1888 /* some fw revisions require at least 1 chunk regardless of count */
1889 struct host_memory_chunk items[1];
1890} __packed;
1891
Kalle Valo5e3dd152013-06-12 20:52:10 +03001892struct wmi_init_cmd {
1893 struct wmi_resource_config resource_config;
Michal Kaziorcf9fca82014-09-18 15:21:22 +02001894 struct wmi_host_mem_chunks mem_chunks;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001895} __packed;
1896
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02001897/* _10x stucture is from 10.X FW API */
1898struct wmi_init_cmd_10x {
1899 struct wmi_resource_config_10x resource_config;
Michal Kaziorcf9fca82014-09-18 15:21:22 +02001900 struct wmi_host_mem_chunks mem_chunks;
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02001901} __packed;
1902
Michal Kazior24c88f72014-07-25 13:32:17 +02001903struct wmi_init_cmd_10_2 {
1904 struct wmi_resource_config_10_2 resource_config;
Michal Kaziorcf9fca82014-09-18 15:21:22 +02001905 struct wmi_host_mem_chunks mem_chunks;
Michal Kazior24c88f72014-07-25 13:32:17 +02001906} __packed;
1907
1908struct wmi_chan_list_entry {
1909 __le16 freq;
1910 u8 phy_mode; /* valid for 10.2 only */
1911 u8 reserved;
1912} __packed;
1913
Kalle Valo5e3dd152013-06-12 20:52:10 +03001914/* TLV for channel list */
1915struct wmi_chan_list {
1916 __le32 tag; /* WMI_CHAN_LIST_TAG */
1917 __le32 num_chan;
Michal Kazior24c88f72014-07-25 13:32:17 +02001918 struct wmi_chan_list_entry channel_list[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001919} __packed;
1920
1921struct wmi_bssid_list {
1922 __le32 tag; /* WMI_BSSID_LIST_TAG */
1923 __le32 num_bssid;
1924 struct wmi_mac_addr bssid_list[0];
1925} __packed;
1926
1927struct wmi_ie_data {
1928 __le32 tag; /* WMI_IE_TAG */
1929 __le32 ie_len;
1930 u8 ie_data[0];
1931} __packed;
1932
1933struct wmi_ssid {
1934 __le32 ssid_len;
1935 u8 ssid[32];
1936} __packed;
1937
1938struct wmi_ssid_list {
1939 __le32 tag; /* WMI_SSID_LIST_TAG */
1940 __le32 num_ssids;
1941 struct wmi_ssid ssids[0];
1942} __packed;
1943
1944/* prefix used by scan requestor ids on the host */
1945#define WMI_HOST_SCAN_REQUESTOR_ID_PREFIX 0xA000
1946
1947/* prefix used by scan request ids generated on the host */
1948/* host cycles through the lower 12 bits to generate ids */
1949#define WMI_HOST_SCAN_REQ_ID_PREFIX 0xA000
1950
1951#define WLAN_SCAN_PARAMS_MAX_SSID 16
1952#define WLAN_SCAN_PARAMS_MAX_BSSID 4
1953#define WLAN_SCAN_PARAMS_MAX_IE_LEN 256
1954
1955/* Scan priority numbers must be sequential, starting with 0 */
1956enum wmi_scan_priority {
1957 WMI_SCAN_PRIORITY_VERY_LOW = 0,
1958 WMI_SCAN_PRIORITY_LOW,
1959 WMI_SCAN_PRIORITY_MEDIUM,
1960 WMI_SCAN_PRIORITY_HIGH,
1961 WMI_SCAN_PRIORITY_VERY_HIGH,
1962 WMI_SCAN_PRIORITY_COUNT /* number of priorities supported */
1963};
1964
1965struct wmi_start_scan_cmd {
1966 /* Scan ID */
1967 __le32 scan_id;
1968 /* Scan requestor ID */
1969 __le32 scan_req_id;
1970 /* VDEV id(interface) that is requesting scan */
1971 __le32 vdev_id;
1972 /* Scan Priority, input to scan scheduler */
1973 __le32 scan_priority;
1974 /* Scan events subscription */
1975 __le32 notify_scan_events;
1976 /* dwell time in msec on active channels */
1977 __le32 dwell_time_active;
1978 /* dwell time in msec on passive channels */
1979 __le32 dwell_time_passive;
1980 /*
1981 * min time in msec on the BSS channel,only valid if atleast one
1982 * VDEV is active
1983 */
1984 __le32 min_rest_time;
1985 /*
1986 * max rest time in msec on the BSS channel,only valid if at least
1987 * one VDEV is active
1988 */
1989 /*
1990 * the scanner will rest on the bss channel at least min_rest_time
1991 * after min_rest_time the scanner will start checking for tx/rx
1992 * activity on all VDEVs. if there is no activity the scanner will
1993 * switch to off channel. if there is activity the scanner will let
1994 * the radio on the bss channel until max_rest_time expires.at
1995 * max_rest_time scanner will switch to off channel irrespective of
1996 * activity. activity is determined by the idle_time parameter.
1997 */
1998 __le32 max_rest_time;
1999 /*
2000 * time before sending next set of probe requests.
2001 * The scanner keeps repeating probe requests transmission with
2002 * period specified by repeat_probe_time.
2003 * The number of probe requests specified depends on the ssid_list
2004 * and bssid_list
2005 */
2006 __le32 repeat_probe_time;
2007 /* time in msec between 2 consequetive probe requests with in a set. */
2008 __le32 probe_spacing_time;
2009 /*
2010 * data inactivity time in msec on bss channel that will be used by
2011 * scanner for measuring the inactivity.
2012 */
2013 __le32 idle_time;
2014 /* maximum time in msec allowed for scan */
2015 __le32 max_scan_time;
2016 /*
2017 * delay in msec before sending first probe request after switching
2018 * to a channel
2019 */
2020 __le32 probe_delay;
2021 /* Scan control flags */
2022 __le32 scan_ctrl_flags;
2023
2024 /* Burst duration time in msecs */
2025 __le32 burst_duration;
2026 /*
2027 * TLV (tag length value ) paramerters follow the scan_cmd structure.
2028 * TLV can contain channel list, bssid list, ssid list and
2029 * ie. the TLV tags are defined above;
2030 */
2031} __packed;
2032
Bartosz Markowski89b7e762013-09-26 17:47:17 +02002033/* This is the definition from 10.X firmware branch */
2034struct wmi_start_scan_cmd_10x {
2035 /* Scan ID */
2036 __le32 scan_id;
2037
2038 /* Scan requestor ID */
2039 __le32 scan_req_id;
2040
2041 /* VDEV id(interface) that is requesting scan */
2042 __le32 vdev_id;
2043
2044 /* Scan Priority, input to scan scheduler */
2045 __le32 scan_priority;
2046
2047 /* Scan events subscription */
2048 __le32 notify_scan_events;
2049
2050 /* dwell time in msec on active channels */
2051 __le32 dwell_time_active;
2052
2053 /* dwell time in msec on passive channels */
2054 __le32 dwell_time_passive;
2055
2056 /*
2057 * min time in msec on the BSS channel,only valid if atleast one
2058 * VDEV is active
2059 */
2060 __le32 min_rest_time;
2061
2062 /*
2063 * max rest time in msec on the BSS channel,only valid if at least
2064 * one VDEV is active
2065 */
2066 /*
2067 * the scanner will rest on the bss channel at least min_rest_time
2068 * after min_rest_time the scanner will start checking for tx/rx
2069 * activity on all VDEVs. if there is no activity the scanner will
2070 * switch to off channel. if there is activity the scanner will let
2071 * the radio on the bss channel until max_rest_time expires.at
2072 * max_rest_time scanner will switch to off channel irrespective of
2073 * activity. activity is determined by the idle_time parameter.
2074 */
2075 __le32 max_rest_time;
2076
2077 /*
2078 * time before sending next set of probe requests.
2079 * The scanner keeps repeating probe requests transmission with
2080 * period specified by repeat_probe_time.
2081 * The number of probe requests specified depends on the ssid_list
2082 * and bssid_list
2083 */
2084 __le32 repeat_probe_time;
2085
2086 /* time in msec between 2 consequetive probe requests with in a set. */
2087 __le32 probe_spacing_time;
2088
2089 /*
2090 * data inactivity time in msec on bss channel that will be used by
2091 * scanner for measuring the inactivity.
2092 */
2093 __le32 idle_time;
2094
2095 /* maximum time in msec allowed for scan */
2096 __le32 max_scan_time;
2097
2098 /*
2099 * delay in msec before sending first probe request after switching
2100 * to a channel
2101 */
2102 __le32 probe_delay;
2103
2104 /* Scan control flags */
2105 __le32 scan_ctrl_flags;
2106
2107 /*
2108 * TLV (tag length value ) paramerters follow the scan_cmd structure.
2109 * TLV can contain channel list, bssid list, ssid list and
2110 * ie. the TLV tags are defined above;
2111 */
2112} __packed;
2113
Kalle Valo5e3dd152013-06-12 20:52:10 +03002114struct wmi_ssid_arg {
2115 int len;
2116 const u8 *ssid;
2117};
2118
2119struct wmi_bssid_arg {
2120 const u8 *bssid;
2121};
2122
2123struct wmi_start_scan_arg {
2124 u32 scan_id;
2125 u32 scan_req_id;
2126 u32 vdev_id;
2127 u32 scan_priority;
2128 u32 notify_scan_events;
2129 u32 dwell_time_active;
2130 u32 dwell_time_passive;
2131 u32 min_rest_time;
2132 u32 max_rest_time;
2133 u32 repeat_probe_time;
2134 u32 probe_spacing_time;
2135 u32 idle_time;
2136 u32 max_scan_time;
2137 u32 probe_delay;
2138 u32 scan_ctrl_flags;
2139
2140 u32 ie_len;
2141 u32 n_channels;
2142 u32 n_ssids;
2143 u32 n_bssids;
2144
2145 u8 ie[WLAN_SCAN_PARAMS_MAX_IE_LEN];
Michal Kazior24c88f72014-07-25 13:32:17 +02002146 u16 channels[64];
Kalle Valo5e3dd152013-06-12 20:52:10 +03002147 struct wmi_ssid_arg ssids[WLAN_SCAN_PARAMS_MAX_SSID];
2148 struct wmi_bssid_arg bssids[WLAN_SCAN_PARAMS_MAX_BSSID];
2149};
2150
2151/* scan control flags */
2152
2153/* passively scan all channels including active channels */
2154#define WMI_SCAN_FLAG_PASSIVE 0x1
2155/* add wild card ssid probe request even though ssid_list is specified. */
2156#define WMI_SCAN_ADD_BCAST_PROBE_REQ 0x2
2157/* add cck rates to rates/xrate ie for the generated probe request */
2158#define WMI_SCAN_ADD_CCK_RATES 0x4
2159/* add ofdm rates to rates/xrate ie for the generated probe request */
2160#define WMI_SCAN_ADD_OFDM_RATES 0x8
2161/* To enable indication of Chan load and Noise floor to host */
2162#define WMI_SCAN_CHAN_STAT_EVENT 0x10
2163/* Filter Probe request frames */
2164#define WMI_SCAN_FILTER_PROBE_REQ 0x20
2165/* When set, DFS channels will not be scanned */
2166#define WMI_SCAN_BYPASS_DFS_CHN 0x40
2167/* Different FW scan engine may choose to bail out on errors.
2168 * Allow the driver to have influence over that. */
2169#define WMI_SCAN_CONTINUE_ON_ERROR 0x80
2170
2171/* WMI_SCAN_CLASS_MASK must be the same value as IEEE80211_SCAN_CLASS_MASK */
2172#define WMI_SCAN_CLASS_MASK 0xFF000000
2173
Kalle Valo5e3dd152013-06-12 20:52:10 +03002174enum wmi_stop_scan_type {
2175 WMI_SCAN_STOP_ONE = 0x00000000, /* stop by scan_id */
2176 WMI_SCAN_STOP_VDEV_ALL = 0x01000000, /* stop by vdev_id */
2177 WMI_SCAN_STOP_ALL = 0x04000000, /* stop all scans */
2178};
2179
2180struct wmi_stop_scan_cmd {
2181 __le32 scan_req_id;
2182 __le32 scan_id;
2183 __le32 req_type;
2184 __le32 vdev_id;
2185} __packed;
2186
2187struct wmi_stop_scan_arg {
2188 u32 req_id;
2189 enum wmi_stop_scan_type req_type;
2190 union {
2191 u32 scan_id;
2192 u32 vdev_id;
2193 } u;
2194};
2195
2196struct wmi_scan_chan_list_cmd {
2197 __le32 num_scan_chans;
2198 struct wmi_channel chan_info[0];
2199} __packed;
2200
2201struct wmi_scan_chan_list_arg {
2202 u32 n_channels;
2203 struct wmi_channel_arg *channels;
2204};
2205
2206enum wmi_bss_filter {
2207 WMI_BSS_FILTER_NONE = 0, /* no beacons forwarded */
2208 WMI_BSS_FILTER_ALL, /* all beacons forwarded */
2209 WMI_BSS_FILTER_PROFILE, /* only beacons matching profile */
2210 WMI_BSS_FILTER_ALL_BUT_PROFILE, /* all but beacons matching profile */
2211 WMI_BSS_FILTER_CURRENT_BSS, /* only beacons matching current BSS */
2212 WMI_BSS_FILTER_ALL_BUT_BSS, /* all but beacons matching BSS */
2213 WMI_BSS_FILTER_PROBED_SSID, /* beacons matching probed ssid */
2214 WMI_BSS_FILTER_LAST_BSS, /* marker only */
2215};
2216
2217enum wmi_scan_event_type {
2218 WMI_SCAN_EVENT_STARTED = 0x1,
2219 WMI_SCAN_EVENT_COMPLETED = 0x2,
2220 WMI_SCAN_EVENT_BSS_CHANNEL = 0x4,
2221 WMI_SCAN_EVENT_FOREIGN_CHANNEL = 0x8,
2222 WMI_SCAN_EVENT_DEQUEUED = 0x10,
2223 WMI_SCAN_EVENT_PREEMPTED = 0x20, /* possibly by high-prio scan */
2224 WMI_SCAN_EVENT_START_FAILED = 0x40,
2225 WMI_SCAN_EVENT_RESTARTED = 0x80,
2226 WMI_SCAN_EVENT_MAX = 0x8000
2227};
2228
2229enum wmi_scan_completion_reason {
2230 WMI_SCAN_REASON_COMPLETED,
2231 WMI_SCAN_REASON_CANCELLED,
2232 WMI_SCAN_REASON_PREEMPTED,
2233 WMI_SCAN_REASON_TIMEDOUT,
2234 WMI_SCAN_REASON_MAX,
2235};
2236
2237struct wmi_scan_event {
2238 __le32 event_type; /* %WMI_SCAN_EVENT_ */
2239 __le32 reason; /* %WMI_SCAN_REASON_ */
2240 __le32 channel_freq; /* only valid for WMI_SCAN_EVENT_FOREIGN_CHANNEL */
2241 __le32 scan_req_id;
2242 __le32 scan_id;
2243 __le32 vdev_id;
2244} __packed;
2245
2246/*
2247 * This defines how much headroom is kept in the
2248 * receive frame between the descriptor and the
2249 * payload, in order for the WMI PHY error and
2250 * management handler to insert header contents.
2251 *
2252 * This is in bytes.
2253 */
2254#define WMI_MGMT_RX_HDR_HEADROOM 52
2255
2256/*
2257 * This event will be used for sending scan results
2258 * as well as rx mgmt frames to the host. The rx buffer
2259 * will be sent as part of this WMI event. It would be a
2260 * good idea to pass all the fields in the RX status
2261 * descriptor up to the host.
2262 */
Michal Kazior0d9b0432013-08-09 10:13:33 +02002263struct wmi_mgmt_rx_hdr_v1 {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002264 __le32 channel;
2265 __le32 snr;
2266 __le32 rate;
2267 __le32 phy_mode;
2268 __le32 buf_len;
2269 __le32 status; /* %WMI_RX_STATUS_ */
2270} __packed;
2271
Michal Kazior0d9b0432013-08-09 10:13:33 +02002272struct wmi_mgmt_rx_hdr_v2 {
2273 struct wmi_mgmt_rx_hdr_v1 v1;
2274 __le32 rssi_ctl[4];
2275} __packed;
2276
2277struct wmi_mgmt_rx_event_v1 {
2278 struct wmi_mgmt_rx_hdr_v1 hdr;
2279 u8 buf[0];
2280} __packed;
2281
2282struct wmi_mgmt_rx_event_v2 {
2283 struct wmi_mgmt_rx_hdr_v2 hdr;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002284 u8 buf[0];
2285} __packed;
2286
2287#define WMI_RX_STATUS_OK 0x00
2288#define WMI_RX_STATUS_ERR_CRC 0x01
2289#define WMI_RX_STATUS_ERR_DECRYPT 0x08
2290#define WMI_RX_STATUS_ERR_MIC 0x10
2291#define WMI_RX_STATUS_ERR_KEY_CACHE_MISS 0x20
2292
Janusz Dziedzic9702c682013-11-20 09:59:41 +02002293#define PHY_ERROR_SPECTRAL_SCAN 0x26
2294#define PHY_ERROR_FALSE_RADAR_EXT 0x24
2295#define PHY_ERROR_RADAR 0x05
2296
Kalle Valo5e3dd152013-06-12 20:52:10 +03002297struct wmi_single_phyerr_rx_hdr {
2298 /* TSF timestamp */
2299 __le32 tsf_timestamp;
2300
2301 /*
2302 * Current freq1, freq2
2303 *
2304 * [7:0]: freq1[lo]
2305 * [15:8] : freq1[hi]
2306 * [23:16]: freq2[lo]
2307 * [31:24]: freq2[hi]
2308 */
2309 __le16 freq1;
2310 __le16 freq2;
2311
2312 /*
2313 * Combined RSSI over all chains and channel width for this PHY error
2314 *
2315 * [7:0]: RSSI combined
2316 * [15:8]: Channel width (MHz)
2317 * [23:16]: PHY error code
2318 * [24:16]: reserved (future use)
2319 */
2320 u8 rssi_combined;
2321 u8 chan_width_mhz;
2322 u8 phy_err_code;
2323 u8 rsvd0;
2324
2325 /*
2326 * RSSI on chain 0 through 3
2327 *
2328 * This is formatted the same as the PPDU_START RX descriptor
2329 * field:
2330 *
2331 * [7:0]: pri20
2332 * [15:8]: sec20
2333 * [23:16]: sec40
2334 * [31:24]: sec80
2335 */
2336
2337 __le32 rssi_chain0;
2338 __le32 rssi_chain1;
2339 __le32 rssi_chain2;
2340 __le32 rssi_chain3;
2341
2342 /*
2343 * Last calibrated NF value for chain 0 through 3
2344 *
2345 * nf_list_1:
2346 *
2347 * + [15:0] - chain 0
2348 * + [31:16] - chain 1
2349 *
2350 * nf_list_2:
2351 *
2352 * + [15:0] - chain 2
2353 * + [31:16] - chain 3
2354 */
2355 __le32 nf_list_1;
2356 __le32 nf_list_2;
2357
Kalle Valo5e3dd152013-06-12 20:52:10 +03002358 /* Length of the frame */
2359 __le32 buf_len;
2360} __packed;
2361
2362struct wmi_single_phyerr_rx_event {
2363 /* Phy error event header */
2364 struct wmi_single_phyerr_rx_hdr hdr;
2365 /* frame buffer */
2366 u8 bufp[0];
2367} __packed;
2368
2369struct wmi_comb_phyerr_rx_hdr {
2370 /* Phy error phy error count */
2371 __le32 num_phyerr_events;
2372 __le32 tsf_l32;
2373 __le32 tsf_u32;
2374} __packed;
2375
2376struct wmi_comb_phyerr_rx_event {
2377 /* Phy error phy error count */
2378 struct wmi_comb_phyerr_rx_hdr hdr;
2379 /*
2380 * frame buffer - contains multiple payloads in the order:
2381 * header - payload, header - payload...
2382 * (The header is of type: wmi_single_phyerr_rx_hdr)
2383 */
2384 u8 bufp[0];
2385} __packed;
2386
Janusz Dziedzic9702c682013-11-20 09:59:41 +02002387#define PHYERR_TLV_SIG 0xBB
2388#define PHYERR_TLV_TAG_SEARCH_FFT_REPORT 0xFB
2389#define PHYERR_TLV_TAG_RADAR_PULSE_SUMMARY 0xF8
Simon Wunderlich855aed12014-08-02 09:12:54 +03002390#define PHYERR_TLV_TAG_SPECTRAL_SUMMARY_REPORT 0xF9
Janusz Dziedzic9702c682013-11-20 09:59:41 +02002391
2392struct phyerr_radar_report {
2393 __le32 reg0; /* RADAR_REPORT_REG0_* */
2394 __le32 reg1; /* REDAR_REPORT_REG1_* */
2395} __packed;
2396
2397#define RADAR_REPORT_REG0_PULSE_IS_CHIRP_MASK 0x80000000
2398#define RADAR_REPORT_REG0_PULSE_IS_CHIRP_LSB 31
2399
2400#define RADAR_REPORT_REG0_PULSE_IS_MAX_WIDTH_MASK 0x40000000
2401#define RADAR_REPORT_REG0_PULSE_IS_MAX_WIDTH_LSB 30
2402
2403#define RADAR_REPORT_REG0_AGC_TOTAL_GAIN_MASK 0x3FF00000
2404#define RADAR_REPORT_REG0_AGC_TOTAL_GAIN_LSB 20
2405
2406#define RADAR_REPORT_REG0_PULSE_DELTA_DIFF_MASK 0x000F0000
2407#define RADAR_REPORT_REG0_PULSE_DELTA_DIFF_LSB 16
2408
2409#define RADAR_REPORT_REG0_PULSE_DELTA_PEAK_MASK 0x0000FC00
2410#define RADAR_REPORT_REG0_PULSE_DELTA_PEAK_LSB 10
2411
2412#define RADAR_REPORT_REG0_PULSE_SIDX_MASK 0x000003FF
2413#define RADAR_REPORT_REG0_PULSE_SIDX_LSB 0
2414
2415#define RADAR_REPORT_REG1_PULSE_SRCH_FFT_VALID_MASK 0x80000000
2416#define RADAR_REPORT_REG1_PULSE_SRCH_FFT_VALID_LSB 31
2417
2418#define RADAR_REPORT_REG1_PULSE_AGC_MB_GAIN_MASK 0x7F000000
2419#define RADAR_REPORT_REG1_PULSE_AGC_MB_GAIN_LSB 24
2420
2421#define RADAR_REPORT_REG1_PULSE_SUBCHAN_MASK_MASK 0x00FF0000
2422#define RADAR_REPORT_REG1_PULSE_SUBCHAN_MASK_LSB 16
2423
2424#define RADAR_REPORT_REG1_PULSE_TSF_OFFSET_MASK 0x0000FF00
2425#define RADAR_REPORT_REG1_PULSE_TSF_OFFSET_LSB 8
2426
2427#define RADAR_REPORT_REG1_PULSE_DUR_MASK 0x000000FF
2428#define RADAR_REPORT_REG1_PULSE_DUR_LSB 0
2429
2430struct phyerr_fft_report {
2431 __le32 reg0; /* SEARCH_FFT_REPORT_REG0_ * */
2432 __le32 reg1; /* SEARCH_FFT_REPORT_REG1_ * */
2433} __packed;
2434
2435#define SEARCH_FFT_REPORT_REG0_TOTAL_GAIN_DB_MASK 0xFF800000
2436#define SEARCH_FFT_REPORT_REG0_TOTAL_GAIN_DB_LSB 23
2437
2438#define SEARCH_FFT_REPORT_REG0_BASE_PWR_DB_MASK 0x007FC000
2439#define SEARCH_FFT_REPORT_REG0_BASE_PWR_DB_LSB 14
2440
2441#define SEARCH_FFT_REPORT_REG0_FFT_CHN_IDX_MASK 0x00003000
2442#define SEARCH_FFT_REPORT_REG0_FFT_CHN_IDX_LSB 12
2443
2444#define SEARCH_FFT_REPORT_REG0_PEAK_SIDX_MASK 0x00000FFF
2445#define SEARCH_FFT_REPORT_REG0_PEAK_SIDX_LSB 0
2446
2447#define SEARCH_FFT_REPORT_REG1_RELPWR_DB_MASK 0xFC000000
2448#define SEARCH_FFT_REPORT_REG1_RELPWR_DB_LSB 26
2449
2450#define SEARCH_FFT_REPORT_REG1_AVGPWR_DB_MASK 0x03FC0000
2451#define SEARCH_FFT_REPORT_REG1_AVGPWR_DB_LSB 18
2452
2453#define SEARCH_FFT_REPORT_REG1_PEAK_MAG_MASK 0x0003FF00
2454#define SEARCH_FFT_REPORT_REG1_PEAK_MAG_LSB 8
2455
2456#define SEARCH_FFT_REPORT_REG1_NUM_STR_BINS_IB_MASK 0x000000FF
2457#define SEARCH_FFT_REPORT_REG1_NUM_STR_BINS_IB_LSB 0
2458
Janusz Dziedzic9702c682013-11-20 09:59:41 +02002459struct phyerr_tlv {
2460 __le16 len;
2461 u8 tag;
2462 u8 sig;
2463} __packed;
2464
2465#define DFS_RSSI_POSSIBLY_FALSE 50
2466#define DFS_PEAK_MAG_THOLD_POSSIBLY_FALSE 40
2467
Kalle Valo5e3dd152013-06-12 20:52:10 +03002468struct wmi_mgmt_tx_hdr {
2469 __le32 vdev_id;
2470 struct wmi_mac_addr peer_macaddr;
2471 __le32 tx_rate;
2472 __le32 tx_power;
2473 __le32 buf_len;
2474} __packed;
2475
2476struct wmi_mgmt_tx_cmd {
2477 struct wmi_mgmt_tx_hdr hdr;
2478 u8 buf[0];
2479} __packed;
2480
2481struct wmi_echo_event {
2482 __le32 value;
2483} __packed;
2484
2485struct wmi_echo_cmd {
2486 __le32 value;
2487} __packed;
2488
Kalle Valo5e3dd152013-06-12 20:52:10 +03002489struct wmi_pdev_set_regdomain_cmd {
2490 __le32 reg_domain;
2491 __le32 reg_domain_2G;
2492 __le32 reg_domain_5G;
2493 __le32 conformance_test_limit_2G;
2494 __le32 conformance_test_limit_5G;
2495} __packed;
2496
Marek Puzyniak821af6a2014-03-21 17:46:57 +02002497enum wmi_dfs_region {
2498 /* Uninitialized dfs domain */
2499 WMI_UNINIT_DFS_DOMAIN = 0,
2500
2501 /* FCC3 dfs domain */
2502 WMI_FCC_DFS_DOMAIN = 1,
2503
2504 /* ETSI dfs domain */
2505 WMI_ETSI_DFS_DOMAIN = 2,
2506
2507 /*Japan dfs domain */
2508 WMI_MKK4_DFS_DOMAIN = 3,
2509};
2510
2511struct wmi_pdev_set_regdomain_cmd_10x {
2512 __le32 reg_domain;
2513 __le32 reg_domain_2G;
2514 __le32 reg_domain_5G;
2515 __le32 conformance_test_limit_2G;
2516 __le32 conformance_test_limit_5G;
2517
2518 /* dfs domain from wmi_dfs_region */
2519 __le32 dfs_domain;
2520} __packed;
2521
Kalle Valo5e3dd152013-06-12 20:52:10 +03002522/* Command to set/unset chip in quiet mode */
2523struct wmi_pdev_set_quiet_cmd {
2524 /* period in TUs */
2525 __le32 period;
2526
2527 /* duration in TUs */
2528 __le32 duration;
2529
2530 /* offset in TUs */
2531 __le32 next_start;
2532
2533 /* enable/disable */
2534 __le32 enabled;
2535} __packed;
2536
Kalle Valo5e3dd152013-06-12 20:52:10 +03002537/*
2538 * 802.11g protection mode.
2539 */
2540enum ath10k_protmode {
2541 ATH10K_PROT_NONE = 0, /* no protection */
2542 ATH10K_PROT_CTSONLY = 1, /* CTS to self */
2543 ATH10K_PROT_RTSCTS = 2, /* RTS-CTS */
2544};
2545
Marek Kwaczynskie81bd102014-03-11 12:58:00 +02002546enum wmi_rtscts_profile {
2547 WMI_RTSCTS_FOR_NO_RATESERIES = 0,
2548 WMI_RTSCTS_FOR_SECOND_RATESERIES,
2549 WMI_RTSCTS_ACROSS_SW_RETRIES
2550};
2551
2552#define WMI_RTSCTS_ENABLED 1
2553#define WMI_RTSCTS_SET_MASK 0x0f
2554#define WMI_RTSCTS_SET_LSB 0
2555
2556#define WMI_RTSCTS_PROFILE_MASK 0xf0
2557#define WMI_RTSCTS_PROFILE_LSB 4
2558
Kalle Valo5e3dd152013-06-12 20:52:10 +03002559enum wmi_beacon_gen_mode {
2560 WMI_BEACON_STAGGERED_MODE = 0,
2561 WMI_BEACON_BURST_MODE = 1
2562};
2563
2564enum wmi_csa_event_ies_present_flag {
2565 WMI_CSA_IE_PRESENT = 0x00000001,
2566 WMI_XCSA_IE_PRESENT = 0x00000002,
2567 WMI_WBW_IE_PRESENT = 0x00000004,
2568 WMI_CSWARP_IE_PRESENT = 0x00000008,
2569};
2570
2571/* wmi CSA receive event from beacon frame */
2572struct wmi_csa_event {
2573 __le32 i_fc_dur;
2574 /* Bit 0-15: FC */
2575 /* Bit 16-31: DUR */
2576 struct wmi_mac_addr i_addr1;
2577 struct wmi_mac_addr i_addr2;
2578 __le32 csa_ie[2];
2579 __le32 xcsa_ie[2];
2580 __le32 wb_ie[2];
2581 __le32 cswarp_ie;
2582 __le32 ies_present_flag; /* wmi_csa_event_ies_present_flag */
2583} __packed;
2584
2585/* the definition of different PDEV parameters */
2586#define PDEV_DEFAULT_STATS_UPDATE_PERIOD 500
2587#define VDEV_DEFAULT_STATS_UPDATE_PERIOD 500
2588#define PEER_DEFAULT_STATS_UPDATE_PERIOD 500
2589
Bartosz Markowski226a3392013-09-26 17:47:16 +02002590struct wmi_pdev_param_map {
2591 u32 tx_chain_mask;
2592 u32 rx_chain_mask;
2593 u32 txpower_limit2g;
2594 u32 txpower_limit5g;
2595 u32 txpower_scale;
2596 u32 beacon_gen_mode;
2597 u32 beacon_tx_mode;
2598 u32 resmgr_offchan_mode;
2599 u32 protection_mode;
2600 u32 dynamic_bw;
2601 u32 non_agg_sw_retry_th;
2602 u32 agg_sw_retry_th;
2603 u32 sta_kickout_th;
2604 u32 ac_aggrsize_scaling;
2605 u32 ltr_enable;
2606 u32 ltr_ac_latency_be;
2607 u32 ltr_ac_latency_bk;
2608 u32 ltr_ac_latency_vi;
2609 u32 ltr_ac_latency_vo;
2610 u32 ltr_ac_latency_timeout;
2611 u32 ltr_sleep_override;
2612 u32 ltr_rx_override;
2613 u32 ltr_tx_activity_timeout;
2614 u32 l1ss_enable;
2615 u32 dsleep_enable;
2616 u32 pcielp_txbuf_flush;
2617 u32 pcielp_txbuf_watermark;
2618 u32 pcielp_txbuf_tmo_en;
2619 u32 pcielp_txbuf_tmo_value;
2620 u32 pdev_stats_update_period;
2621 u32 vdev_stats_update_period;
2622 u32 peer_stats_update_period;
2623 u32 bcnflt_stats_update_period;
2624 u32 pmf_qos;
2625 u32 arp_ac_override;
Bartosz Markowski226a3392013-09-26 17:47:16 +02002626 u32 dcs;
2627 u32 ani_enable;
2628 u32 ani_poll_period;
2629 u32 ani_listen_period;
2630 u32 ani_ofdm_level;
2631 u32 ani_cck_level;
2632 u32 dyntxchain;
2633 u32 proxy_sta;
2634 u32 idle_ps_config;
2635 u32 power_gating_sleep;
2636 u32 fast_channel_reset;
2637 u32 burst_dur;
2638 u32 burst_enable;
2639};
2640
2641#define WMI_PDEV_PARAM_UNSUPPORTED 0
2642
Kalle Valo5e3dd152013-06-12 20:52:10 +03002643enum wmi_pdev_param {
Ben Greeard0e0a552014-05-14 16:56:14 +03002644 /* TX chain mask */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002645 WMI_PDEV_PARAM_TX_CHAIN_MASK = 0x1,
Ben Greeard0e0a552014-05-14 16:56:14 +03002646 /* RX chain mask */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002647 WMI_PDEV_PARAM_RX_CHAIN_MASK,
2648 /* TX power limit for 2G Radio */
2649 WMI_PDEV_PARAM_TXPOWER_LIMIT2G,
2650 /* TX power limit for 5G Radio */
2651 WMI_PDEV_PARAM_TXPOWER_LIMIT5G,
2652 /* TX power scale */
2653 WMI_PDEV_PARAM_TXPOWER_SCALE,
2654 /* Beacon generation mode . 0: host, 1: target */
2655 WMI_PDEV_PARAM_BEACON_GEN_MODE,
2656 /* Beacon generation mode . 0: staggered 1: bursted */
2657 WMI_PDEV_PARAM_BEACON_TX_MODE,
2658 /*
2659 * Resource manager off chan mode .
2660 * 0: turn off off chan mode. 1: turn on offchan mode
2661 */
2662 WMI_PDEV_PARAM_RESMGR_OFFCHAN_MODE,
2663 /*
2664 * Protection mode:
2665 * 0: no protection 1:use CTS-to-self 2: use RTS/CTS
2666 */
2667 WMI_PDEV_PARAM_PROTECTION_MODE,
Michal Kaziorc4dd0d02013-11-13 11:05:10 +01002668 /*
2669 * Dynamic bandwidth - 0: disable, 1: enable
2670 *
2671 * When enabled HW rate control tries different bandwidths when
2672 * retransmitting frames.
2673 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002674 WMI_PDEV_PARAM_DYNAMIC_BW,
2675 /* Non aggregrate/ 11g sw retry threshold.0-disable */
2676 WMI_PDEV_PARAM_NON_AGG_SW_RETRY_TH,
2677 /* aggregrate sw retry threshold. 0-disable*/
2678 WMI_PDEV_PARAM_AGG_SW_RETRY_TH,
2679 /* Station kickout threshold (non of consecutive failures).0-disable */
2680 WMI_PDEV_PARAM_STA_KICKOUT_TH,
2681 /* Aggerate size scaling configuration per AC */
2682 WMI_PDEV_PARAM_AC_AGGRSIZE_SCALING,
2683 /* LTR enable */
2684 WMI_PDEV_PARAM_LTR_ENABLE,
2685 /* LTR latency for BE, in us */
2686 WMI_PDEV_PARAM_LTR_AC_LATENCY_BE,
2687 /* LTR latency for BK, in us */
2688 WMI_PDEV_PARAM_LTR_AC_LATENCY_BK,
2689 /* LTR latency for VI, in us */
2690 WMI_PDEV_PARAM_LTR_AC_LATENCY_VI,
2691 /* LTR latency for VO, in us */
2692 WMI_PDEV_PARAM_LTR_AC_LATENCY_VO,
2693 /* LTR AC latency timeout, in ms */
2694 WMI_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT,
2695 /* LTR platform latency override, in us */
2696 WMI_PDEV_PARAM_LTR_SLEEP_OVERRIDE,
2697 /* LTR-RX override, in us */
2698 WMI_PDEV_PARAM_LTR_RX_OVERRIDE,
2699 /* Tx activity timeout for LTR, in us */
2700 WMI_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT,
2701 /* L1SS state machine enable */
2702 WMI_PDEV_PARAM_L1SS_ENABLE,
2703 /* Deep sleep state machine enable */
2704 WMI_PDEV_PARAM_DSLEEP_ENABLE,
2705 /* RX buffering flush enable */
2706 WMI_PDEV_PARAM_PCIELP_TXBUF_FLUSH,
2707 /* RX buffering matermark */
2708 WMI_PDEV_PARAM_PCIELP_TXBUF_WATERMARK,
2709 /* RX buffering timeout enable */
2710 WMI_PDEV_PARAM_PCIELP_TXBUF_TMO_EN,
2711 /* RX buffering timeout value */
2712 WMI_PDEV_PARAM_PCIELP_TXBUF_TMO_VALUE,
2713 /* pdev level stats update period in ms */
2714 WMI_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD,
2715 /* vdev level stats update period in ms */
2716 WMI_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD,
2717 /* peer level stats update period in ms */
2718 WMI_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD,
2719 /* beacon filter status update period */
2720 WMI_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD,
2721 /* QOS Mgmt frame protection MFP/PMF 0: disable, 1: enable */
2722 WMI_PDEV_PARAM_PMF_QOS,
2723 /* Access category on which ARP frames are sent */
2724 WMI_PDEV_PARAM_ARP_AC_OVERRIDE,
2725 /* DCS configuration */
2726 WMI_PDEV_PARAM_DCS,
2727 /* Enable/Disable ANI on target */
2728 WMI_PDEV_PARAM_ANI_ENABLE,
2729 /* configure the ANI polling period */
2730 WMI_PDEV_PARAM_ANI_POLL_PERIOD,
2731 /* configure the ANI listening period */
2732 WMI_PDEV_PARAM_ANI_LISTEN_PERIOD,
2733 /* configure OFDM immunity level */
2734 WMI_PDEV_PARAM_ANI_OFDM_LEVEL,
2735 /* configure CCK immunity level */
2736 WMI_PDEV_PARAM_ANI_CCK_LEVEL,
2737 /* Enable/Disable CDD for 1x1 STAs in rate control module */
2738 WMI_PDEV_PARAM_DYNTXCHAIN,
2739 /* Enable/Disable proxy STA */
2740 WMI_PDEV_PARAM_PROXY_STA,
2741 /* Enable/Disable low power state when all VDEVs are inactive/idle. */
2742 WMI_PDEV_PARAM_IDLE_PS_CONFIG,
2743 /* Enable/Disable power gating sleep */
2744 WMI_PDEV_PARAM_POWER_GATING_SLEEP,
2745};
2746
Bartosz Markowski226a3392013-09-26 17:47:16 +02002747enum wmi_10x_pdev_param {
2748 /* TX chian mask */
2749 WMI_10X_PDEV_PARAM_TX_CHAIN_MASK = 0x1,
2750 /* RX chian mask */
2751 WMI_10X_PDEV_PARAM_RX_CHAIN_MASK,
2752 /* TX power limit for 2G Radio */
2753 WMI_10X_PDEV_PARAM_TXPOWER_LIMIT2G,
2754 /* TX power limit for 5G Radio */
2755 WMI_10X_PDEV_PARAM_TXPOWER_LIMIT5G,
2756 /* TX power scale */
2757 WMI_10X_PDEV_PARAM_TXPOWER_SCALE,
2758 /* Beacon generation mode . 0: host, 1: target */
2759 WMI_10X_PDEV_PARAM_BEACON_GEN_MODE,
2760 /* Beacon generation mode . 0: staggered 1: bursted */
2761 WMI_10X_PDEV_PARAM_BEACON_TX_MODE,
2762 /*
2763 * Resource manager off chan mode .
2764 * 0: turn off off chan mode. 1: turn on offchan mode
2765 */
2766 WMI_10X_PDEV_PARAM_RESMGR_OFFCHAN_MODE,
2767 /*
2768 * Protection mode:
2769 * 0: no protection 1:use CTS-to-self 2: use RTS/CTS
2770 */
2771 WMI_10X_PDEV_PARAM_PROTECTION_MODE,
2772 /* Dynamic bandwidth 0: disable 1: enable */
2773 WMI_10X_PDEV_PARAM_DYNAMIC_BW,
2774 /* Non aggregrate/ 11g sw retry threshold.0-disable */
2775 WMI_10X_PDEV_PARAM_NON_AGG_SW_RETRY_TH,
2776 /* aggregrate sw retry threshold. 0-disable*/
2777 WMI_10X_PDEV_PARAM_AGG_SW_RETRY_TH,
2778 /* Station kickout threshold (non of consecutive failures).0-disable */
2779 WMI_10X_PDEV_PARAM_STA_KICKOUT_TH,
2780 /* Aggerate size scaling configuration per AC */
2781 WMI_10X_PDEV_PARAM_AC_AGGRSIZE_SCALING,
2782 /* LTR enable */
2783 WMI_10X_PDEV_PARAM_LTR_ENABLE,
2784 /* LTR latency for BE, in us */
2785 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_BE,
2786 /* LTR latency for BK, in us */
2787 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_BK,
2788 /* LTR latency for VI, in us */
2789 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_VI,
2790 /* LTR latency for VO, in us */
2791 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_VO,
2792 /* LTR AC latency timeout, in ms */
2793 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT,
2794 /* LTR platform latency override, in us */
2795 WMI_10X_PDEV_PARAM_LTR_SLEEP_OVERRIDE,
2796 /* LTR-RX override, in us */
2797 WMI_10X_PDEV_PARAM_LTR_RX_OVERRIDE,
2798 /* Tx activity timeout for LTR, in us */
2799 WMI_10X_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT,
2800 /* L1SS state machine enable */
2801 WMI_10X_PDEV_PARAM_L1SS_ENABLE,
2802 /* Deep sleep state machine enable */
2803 WMI_10X_PDEV_PARAM_DSLEEP_ENABLE,
2804 /* pdev level stats update period in ms */
2805 WMI_10X_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD,
2806 /* vdev level stats update period in ms */
2807 WMI_10X_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD,
2808 /* peer level stats update period in ms */
2809 WMI_10X_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD,
2810 /* beacon filter status update period */
2811 WMI_10X_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD,
2812 /* QOS Mgmt frame protection MFP/PMF 0: disable, 1: enable */
2813 WMI_10X_PDEV_PARAM_PMF_QOS,
2814 /* Access category on which ARP and DHCP frames are sent */
2815 WMI_10X_PDEV_PARAM_ARPDHCP_AC_OVERRIDE,
2816 /* DCS configuration */
2817 WMI_10X_PDEV_PARAM_DCS,
2818 /* Enable/Disable ANI on target */
2819 WMI_10X_PDEV_PARAM_ANI_ENABLE,
2820 /* configure the ANI polling period */
2821 WMI_10X_PDEV_PARAM_ANI_POLL_PERIOD,
2822 /* configure the ANI listening period */
2823 WMI_10X_PDEV_PARAM_ANI_LISTEN_PERIOD,
2824 /* configure OFDM immunity level */
2825 WMI_10X_PDEV_PARAM_ANI_OFDM_LEVEL,
2826 /* configure CCK immunity level */
2827 WMI_10X_PDEV_PARAM_ANI_CCK_LEVEL,
2828 /* Enable/Disable CDD for 1x1 STAs in rate control module */
2829 WMI_10X_PDEV_PARAM_DYNTXCHAIN,
2830 /* Enable/Disable Fast channel reset*/
2831 WMI_10X_PDEV_PARAM_FAST_CHANNEL_RESET,
2832 /* Set Bursting DUR */
2833 WMI_10X_PDEV_PARAM_BURST_DUR,
2834 /* Set Bursting Enable*/
2835 WMI_10X_PDEV_PARAM_BURST_ENABLE,
Michal Kazior24c88f72014-07-25 13:32:17 +02002836
2837 /* following are available as of firmware 10.2 */
2838 WMI_10X_PDEV_PARAM_SMART_ANTENNA_DEFAULT_ANTENNA,
2839 WMI_10X_PDEV_PARAM_IGMPMLD_OVERRIDE,
2840 WMI_10X_PDEV_PARAM_IGMPMLD_TID,
2841 WMI_10X_PDEV_PARAM_ANTENNA_GAIN,
2842 WMI_10X_PDEV_PARAM_RX_DECAP_MODE,
2843 WMI_10X_PDEV_PARAM_RX_FILTER,
2844 WMI_10X_PDEV_PARAM_SET_MCAST_TO_UCAST_TID,
2845 WMI_10X_PDEV_PARAM_PROXY_STA_MODE,
2846 WMI_10X_PDEV_PARAM_SET_MCAST2UCAST_MODE,
2847 WMI_10X_PDEV_PARAM_SET_MCAST2UCAST_BUFFER,
2848 WMI_10X_PDEV_PARAM_REMOVE_MCAST2UCAST_BUFFER,
Bartosz Markowski226a3392013-09-26 17:47:16 +02002849};
2850
Kalle Valo5e3dd152013-06-12 20:52:10 +03002851struct wmi_pdev_set_param_cmd {
2852 __le32 param_id;
2853 __le32 param_value;
2854} __packed;
2855
2856struct wmi_pdev_get_tpc_config_cmd {
2857 /* parameter */
2858 __le32 param;
2859} __packed;
2860
2861#define WMI_TPC_RATE_MAX 160
2862#define WMI_TPC_TX_N_CHAIN 4
2863
2864enum wmi_tpc_config_event_flag {
2865 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_CDD = 0x1,
2866 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_STBC = 0x2,
2867 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_TXBF = 0x4,
2868};
2869
2870struct wmi_pdev_tpc_config_event {
2871 __le32 reg_domain;
2872 __le32 chan_freq;
2873 __le32 phy_mode;
2874 __le32 twice_antenna_reduction;
2875 __le32 twice_max_rd_power;
2876 s32 twice_antenna_gain;
2877 __le32 power_limit;
2878 __le32 rate_max;
2879 __le32 num_tx_chain;
2880 __le32 ctl;
2881 __le32 flags;
2882 s8 max_reg_allow_pow[WMI_TPC_TX_N_CHAIN];
2883 s8 max_reg_allow_pow_agcdd[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
2884 s8 max_reg_allow_pow_agstbc[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
2885 s8 max_reg_allow_pow_agtxbf[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
2886 u8 rates_array[WMI_TPC_RATE_MAX];
2887} __packed;
2888
2889/* Transmit power scale factor. */
2890enum wmi_tp_scale {
2891 WMI_TP_SCALE_MAX = 0, /* no scaling (default) */
2892 WMI_TP_SCALE_50 = 1, /* 50% of max (-3 dBm) */
2893 WMI_TP_SCALE_25 = 2, /* 25% of max (-6 dBm) */
2894 WMI_TP_SCALE_12 = 3, /* 12% of max (-9 dBm) */
2895 WMI_TP_SCALE_MIN = 4, /* min, but still on */
2896 WMI_TP_SCALE_SIZE = 5, /* max num of enum */
2897};
2898
Kalle Valo5e3dd152013-06-12 20:52:10 +03002899struct wmi_pdev_chanlist_update_event {
2900 /* number of channels */
2901 __le32 num_chan;
2902 /* array of channels */
2903 struct wmi_channel channel_list[1];
2904} __packed;
2905
2906#define WMI_MAX_DEBUG_MESG (sizeof(u32) * 32)
2907
2908struct wmi_debug_mesg_event {
2909 /* message buffer, NULL terminated */
2910 char bufp[WMI_MAX_DEBUG_MESG];
2911} __packed;
2912
2913enum {
2914 /* P2P device */
2915 VDEV_SUBTYPE_P2PDEV = 0,
2916 /* P2P client */
2917 VDEV_SUBTYPE_P2PCLI,
2918 /* P2P GO */
2919 VDEV_SUBTYPE_P2PGO,
2920 /* BT3.0 HS */
2921 VDEV_SUBTYPE_BT,
2922};
2923
2924struct wmi_pdev_set_channel_cmd {
2925 /* idnore power , only use flags , mode and freq */
2926 struct wmi_channel chan;
2927} __packed;
2928
2929/* Customize the DSCP (bit) to TID (0-7) mapping for QOS */
2930#define WMI_DSCP_MAP_MAX (64)
2931struct wmi_pdev_set_dscp_tid_map_cmd {
2932 /* map indicating DSCP to TID conversion */
2933 __le32 dscp_to_tid_map[WMI_DSCP_MAP_MAX];
2934} __packed;
2935
2936enum mcast_bcast_rate_id {
2937 WMI_SET_MCAST_RATE,
2938 WMI_SET_BCAST_RATE
2939};
2940
2941struct mcast_bcast_rate {
2942 enum mcast_bcast_rate_id rate_id;
2943 __le32 rate;
2944} __packed;
2945
2946struct wmi_wmm_params {
2947 __le32 cwmin;
2948 __le32 cwmax;
2949 __le32 aifs;
2950 __le32 txop;
2951 __le32 acm;
2952 __le32 no_ack;
2953} __packed;
2954
2955struct wmi_pdev_set_wmm_params {
2956 struct wmi_wmm_params ac_be;
2957 struct wmi_wmm_params ac_bk;
2958 struct wmi_wmm_params ac_vi;
2959 struct wmi_wmm_params ac_vo;
2960} __packed;
2961
2962struct wmi_wmm_params_arg {
2963 u32 cwmin;
2964 u32 cwmax;
2965 u32 aifs;
2966 u32 txop;
2967 u32 acm;
2968 u32 no_ack;
2969};
2970
2971struct wmi_pdev_set_wmm_params_arg {
2972 struct wmi_wmm_params_arg ac_be;
2973 struct wmi_wmm_params_arg ac_bk;
2974 struct wmi_wmm_params_arg ac_vi;
2975 struct wmi_wmm_params_arg ac_vo;
2976};
2977
2978struct wal_dbg_tx_stats {
2979 /* Num HTT cookies queued to dispatch list */
2980 __le32 comp_queued;
2981
2982 /* Num HTT cookies dispatched */
2983 __le32 comp_delivered;
2984
2985 /* Num MSDU queued to WAL */
2986 __le32 msdu_enqued;
2987
2988 /* Num MPDU queue to WAL */
2989 __le32 mpdu_enqued;
2990
2991 /* Num MSDUs dropped by WMM limit */
2992 __le32 wmm_drop;
2993
2994 /* Num Local frames queued */
2995 __le32 local_enqued;
2996
2997 /* Num Local frames done */
2998 __le32 local_freed;
2999
3000 /* Num queued to HW */
3001 __le32 hw_queued;
3002
3003 /* Num PPDU reaped from HW */
3004 __le32 hw_reaped;
3005
3006 /* Num underruns */
3007 __le32 underrun;
3008
3009 /* Num PPDUs cleaned up in TX abort */
3010 __le32 tx_abort;
3011
3012 /* Num MPDUs requed by SW */
3013 __le32 mpdus_requed;
3014
3015 /* excessive retries */
3016 __le32 tx_ko;
3017
3018 /* data hw rate code */
3019 __le32 data_rc;
3020
3021 /* Scheduler self triggers */
3022 __le32 self_triggers;
3023
3024 /* frames dropped due to excessive sw retries */
3025 __le32 sw_retry_failure;
3026
3027 /* illegal rate phy errors */
3028 __le32 illgl_rate_phy_err;
3029
3030 /* wal pdev continous xretry */
3031 __le32 pdev_cont_xretry;
3032
3033 /* wal pdev continous xretry */
3034 __le32 pdev_tx_timeout;
3035
3036 /* wal pdev resets */
3037 __le32 pdev_resets;
3038
Bartosz Markowski34d714e2014-03-28 14:35:16 +02003039 /* frames dropped due to non-availability of stateless TIDs */
3040 __le32 stateless_tid_alloc_failure;
3041
Kalle Valo5e3dd152013-06-12 20:52:10 +03003042 __le32 phy_underrun;
3043
3044 /* MPDU is more than txop limit */
3045 __le32 txop_ovf;
3046} __packed;
3047
3048struct wal_dbg_rx_stats {
3049 /* Cnts any change in ring routing mid-ppdu */
3050 __le32 mid_ppdu_route_change;
3051
3052 /* Total number of statuses processed */
3053 __le32 status_rcvd;
3054
3055 /* Extra frags on rings 0-3 */
3056 __le32 r0_frags;
3057 __le32 r1_frags;
3058 __le32 r2_frags;
3059 __le32 r3_frags;
3060
3061 /* MSDUs / MPDUs delivered to HTT */
3062 __le32 htt_msdus;
3063 __le32 htt_mpdus;
3064
3065 /* MSDUs / MPDUs delivered to local stack */
3066 __le32 loc_msdus;
3067 __le32 loc_mpdus;
3068
3069 /* AMSDUs that have more MSDUs than the status ring size */
3070 __le32 oversize_amsdu;
3071
3072 /* Number of PHY errors */
3073 __le32 phy_errs;
3074
3075 /* Number of PHY errors drops */
3076 __le32 phy_err_drop;
3077
3078 /* Number of mpdu errors - FCS, MIC, ENC etc. */
3079 __le32 mpdu_errs;
3080} __packed;
3081
3082struct wal_dbg_peer_stats {
3083 /* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */
3084 __le32 dummy;
3085} __packed;
3086
3087struct wal_dbg_stats {
3088 struct wal_dbg_tx_stats tx;
3089 struct wal_dbg_rx_stats rx;
3090 struct wal_dbg_peer_stats peer;
3091} __packed;
3092
3093enum wmi_stats_id {
3094 WMI_REQUEST_PEER_STAT = 0x01,
3095 WMI_REQUEST_AP_STAT = 0x02
3096};
3097
Ben Greeardb9cdda2014-03-28 14:35:15 +02003098struct wlan_inst_rssi_args {
3099 __le16 cfg_retry_count;
3100 __le16 retry_count;
3101};
3102
Kalle Valo5e3dd152013-06-12 20:52:10 +03003103struct wmi_request_stats_cmd {
3104 __le32 stats_id;
3105
Ben Greeardb9cdda2014-03-28 14:35:15 +02003106 __le32 vdev_id;
3107
3108 /* peer MAC address */
3109 struct wmi_mac_addr peer_macaddr;
3110
3111 /* Instantaneous RSSI arguments */
3112 struct wlan_inst_rssi_args inst_rssi_args;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003113} __packed;
3114
3115/* Suspend option */
3116enum {
3117 /* suspend */
3118 WMI_PDEV_SUSPEND,
3119
3120 /* suspend and disable all interrupts */
3121 WMI_PDEV_SUSPEND_AND_DISABLE_INTR,
3122};
3123
3124struct wmi_pdev_suspend_cmd {
3125 /* suspend option sent to target */
3126 __le32 suspend_opt;
3127} __packed;
3128
3129struct wmi_stats_event {
3130 __le32 stats_id; /* %WMI_REQUEST_ */
3131 /*
3132 * number of pdev stats event structures
3133 * (wmi_pdev_stats) 0 or 1
3134 */
3135 __le32 num_pdev_stats;
3136 /*
3137 * number of vdev stats event structures
3138 * (wmi_vdev_stats) 0 or max vdevs
3139 */
3140 __le32 num_vdev_stats;
3141 /*
3142 * number of peer stats event structures
3143 * (wmi_peer_stats) 0 or max peers
3144 */
3145 __le32 num_peer_stats;
3146 __le32 num_bcnflt_stats;
3147 /*
3148 * followed by
3149 * num_pdev_stats * size of(struct wmi_pdev_stats)
3150 * num_vdev_stats * size of(struct wmi_vdev_stats)
3151 * num_peer_stats * size of(struct wmi_peer_stats)
3152 *
3153 * By having a zero sized array, the pointer to data area
3154 * becomes available without increasing the struct size
3155 */
3156 u8 data[0];
3157} __packed;
3158
3159/*
3160 * PDEV statistics
3161 * TODO: add all PDEV stats here
3162 */
Chun-Yeow Yeoh52e346d2014-03-28 14:35:16 +02003163struct wmi_pdev_stats_old {
Kalle Valo5e3dd152013-06-12 20:52:10 +03003164 __le32 chan_nf; /* Channel noise floor */
3165 __le32 tx_frame_count; /* TX frame count */
3166 __le32 rx_frame_count; /* RX frame count */
3167 __le32 rx_clear_count; /* rx clear count */
3168 __le32 cycle_count; /* cycle count */
3169 __le32 phy_err_count; /* Phy error count */
3170 __le32 chan_tx_pwr; /* channel tx power */
3171 struct wal_dbg_stats wal; /* WAL dbg stats */
3172} __packed;
3173
Chun-Yeow Yeoh52e346d2014-03-28 14:35:16 +02003174struct wmi_pdev_stats_10x {
3175 __le32 chan_nf; /* Channel noise floor */
3176 __le32 tx_frame_count; /* TX frame count */
3177 __le32 rx_frame_count; /* RX frame count */
3178 __le32 rx_clear_count; /* rx clear count */
3179 __le32 cycle_count; /* cycle count */
3180 __le32 phy_err_count; /* Phy error count */
3181 __le32 chan_tx_pwr; /* channel tx power */
3182 struct wal_dbg_stats wal; /* WAL dbg stats */
3183 __le32 ack_rx_bad;
3184 __le32 rts_bad;
3185 __le32 rts_good;
3186 __le32 fcs_bad;
3187 __le32 no_beacons;
3188 __le32 mib_int_count;
3189} __packed;
3190
Kalle Valo5e3dd152013-06-12 20:52:10 +03003191/*
3192 * VDEV statistics
3193 * TODO: add all VDEV stats here
3194 */
3195struct wmi_vdev_stats {
3196 __le32 vdev_id;
3197} __packed;
3198
3199/*
3200 * peer statistics.
3201 * TODO: add more stats
3202 */
Ben Greear23c3aae2014-03-28 14:35:15 +02003203struct wmi_peer_stats_old {
Kalle Valo5e3dd152013-06-12 20:52:10 +03003204 struct wmi_mac_addr peer_macaddr;
3205 __le32 peer_rssi;
3206 __le32 peer_tx_rate;
3207} __packed;
3208
Ben Greear23c3aae2014-03-28 14:35:15 +02003209struct wmi_peer_stats_10x {
3210 struct wmi_mac_addr peer_macaddr;
3211 __le32 peer_rssi;
3212 __le32 peer_tx_rate;
3213 __le32 peer_rx_rate;
3214} __packed;
3215
Kalle Valo5e3dd152013-06-12 20:52:10 +03003216struct wmi_vdev_create_cmd {
3217 __le32 vdev_id;
3218 __le32 vdev_type;
3219 __le32 vdev_subtype;
3220 struct wmi_mac_addr vdev_macaddr;
3221} __packed;
3222
3223enum wmi_vdev_type {
3224 WMI_VDEV_TYPE_AP = 1,
3225 WMI_VDEV_TYPE_STA = 2,
3226 WMI_VDEV_TYPE_IBSS = 3,
3227 WMI_VDEV_TYPE_MONITOR = 4,
3228};
3229
3230enum wmi_vdev_subtype {
3231 WMI_VDEV_SUBTYPE_NONE = 0,
3232 WMI_VDEV_SUBTYPE_P2P_DEVICE = 1,
3233 WMI_VDEV_SUBTYPE_P2P_CLIENT = 2,
3234 WMI_VDEV_SUBTYPE_P2P_GO = 3,
3235};
3236
3237/* values for vdev_subtype */
3238
3239/* values for vdev_start_request flags */
3240/*
3241 * Indicates that AP VDEV uses hidden ssid. only valid for
3242 * AP/GO */
3243#define WMI_VDEV_START_HIDDEN_SSID (1<<0)
3244/*
3245 * Indicates if robust management frame/management frame
3246 * protection is enabled. For GO/AP vdevs, it indicates that
3247 * it may support station/client associations with RMF enabled.
3248 * For STA/client vdevs, it indicates that sta will
3249 * associate with AP with RMF enabled. */
3250#define WMI_VDEV_START_PMF_ENABLED (1<<1)
3251
3252struct wmi_p2p_noa_descriptor {
3253 __le32 type_count; /* 255: continuous schedule, 0: reserved */
3254 __le32 duration; /* Absent period duration in micro seconds */
3255 __le32 interval; /* Absent period interval in micro seconds */
3256 __le32 start_time; /* 32 bit tsf time when in starts */
3257} __packed;
3258
3259struct wmi_vdev_start_request_cmd {
3260 /* WMI channel */
3261 struct wmi_channel chan;
3262 /* unique id identifying the VDEV, generated by the caller */
3263 __le32 vdev_id;
3264 /* requestor id identifying the caller module */
3265 __le32 requestor_id;
3266 /* beacon interval from received beacon */
3267 __le32 beacon_interval;
3268 /* DTIM Period from the received beacon */
3269 __le32 dtim_period;
3270 /* Flags */
3271 __le32 flags;
3272 /* ssid field. Only valid for AP/GO/IBSS/BTAmp VDEV type. */
3273 struct wmi_ssid ssid;
3274 /* beacon/probe reponse xmit rate. Applicable for SoftAP. */
3275 __le32 bcn_tx_rate;
3276 /* beacon/probe reponse xmit power. Applicable for SoftAP. */
3277 __le32 bcn_tx_power;
3278 /* number of p2p NOA descriptor(s) from scan entry */
3279 __le32 num_noa_descriptors;
3280 /*
3281 * Disable H/W ack. This used by WMI_VDEV_RESTART_REQUEST_CMDID.
3282 * During CAC, Our HW shouldn't ack ditected frames
3283 */
3284 __le32 disable_hw_ack;
3285 /* actual p2p NOA descriptor from scan entry */
3286 struct wmi_p2p_noa_descriptor noa_descriptors[2];
3287} __packed;
3288
3289struct wmi_vdev_restart_request_cmd {
3290 struct wmi_vdev_start_request_cmd vdev_start_request_cmd;
3291} __packed;
3292
3293struct wmi_vdev_start_request_arg {
3294 u32 vdev_id;
3295 struct wmi_channel_arg channel;
3296 u32 bcn_intval;
3297 u32 dtim_period;
3298 u8 *ssid;
3299 u32 ssid_len;
3300 u32 bcn_tx_rate;
3301 u32 bcn_tx_power;
3302 bool disable_hw_ack;
3303 bool hidden_ssid;
3304 bool pmf_enabled;
3305};
3306
3307struct wmi_vdev_delete_cmd {
3308 /* unique id identifying the VDEV, generated by the caller */
3309 __le32 vdev_id;
3310} __packed;
3311
3312struct wmi_vdev_up_cmd {
3313 __le32 vdev_id;
3314 __le32 vdev_assoc_id;
3315 struct wmi_mac_addr vdev_bssid;
3316} __packed;
3317
3318struct wmi_vdev_stop_cmd {
3319 __le32 vdev_id;
3320} __packed;
3321
3322struct wmi_vdev_down_cmd {
3323 __le32 vdev_id;
3324} __packed;
3325
3326struct wmi_vdev_standby_response_cmd {
3327 /* unique id identifying the VDEV, generated by the caller */
3328 __le32 vdev_id;
3329} __packed;
3330
3331struct wmi_vdev_resume_response_cmd {
3332 /* unique id identifying the VDEV, generated by the caller */
3333 __le32 vdev_id;
3334} __packed;
3335
3336struct wmi_vdev_set_param_cmd {
3337 __le32 vdev_id;
3338 __le32 param_id;
3339 __le32 param_value;
3340} __packed;
3341
3342#define WMI_MAX_KEY_INDEX 3
3343#define WMI_MAX_KEY_LEN 32
3344
3345#define WMI_KEY_PAIRWISE 0x00
3346#define WMI_KEY_GROUP 0x01
3347#define WMI_KEY_TX_USAGE 0x02 /* default tx key - static wep */
3348
3349struct wmi_key_seq_counter {
3350 __le32 key_seq_counter_l;
3351 __le32 key_seq_counter_h;
3352} __packed;
3353
3354#define WMI_CIPHER_NONE 0x0 /* clear key */
3355#define WMI_CIPHER_WEP 0x1
3356#define WMI_CIPHER_TKIP 0x2
3357#define WMI_CIPHER_AES_OCB 0x3
3358#define WMI_CIPHER_AES_CCM 0x4
3359#define WMI_CIPHER_WAPI 0x5
3360#define WMI_CIPHER_CKIP 0x6
3361#define WMI_CIPHER_AES_CMAC 0x7
3362
3363struct wmi_vdev_install_key_cmd {
3364 __le32 vdev_id;
3365 struct wmi_mac_addr peer_macaddr;
3366 __le32 key_idx;
3367 __le32 key_flags;
3368 __le32 key_cipher; /* %WMI_CIPHER_ */
3369 struct wmi_key_seq_counter key_rsc_counter;
3370 struct wmi_key_seq_counter key_global_rsc_counter;
3371 struct wmi_key_seq_counter key_tsc_counter;
3372 u8 wpi_key_rsc_counter[16];
3373 u8 wpi_key_tsc_counter[16];
3374 __le32 key_len;
3375 __le32 key_txmic_len;
3376 __le32 key_rxmic_len;
3377
3378 /* contains key followed by tx mic followed by rx mic */
3379 u8 key_data[0];
3380} __packed;
3381
3382struct wmi_vdev_install_key_arg {
3383 u32 vdev_id;
3384 const u8 *macaddr;
3385 u32 key_idx;
3386 u32 key_flags;
3387 u32 key_cipher;
3388 u32 key_len;
3389 u32 key_txmic_len;
3390 u32 key_rxmic_len;
3391 const void *key_data;
3392};
3393
Janusz Dziedzic51ab1a02014-01-08 09:08:33 +01003394/*
3395 * vdev fixed rate format:
3396 * - preamble - b7:b6 - see WMI_RATE_PREMABLE_
3397 * - nss - b5:b4 - ss number (0 mean 1ss)
3398 * - rate_mcs - b3:b0 - as below
3399 * CCK: 0 - 11Mbps, 1 - 5,5Mbps, 2 - 2Mbps, 3 - 1Mbps,
3400 * 4 - 11Mbps (s), 5 - 5,5Mbps (s), 6 - 2Mbps (s)
3401 * OFDM: 0 - 48Mbps, 1 - 24Mbps, 2 - 12Mbps, 3 - 6Mbps,
3402 * 4 - 54Mbps, 5 - 36Mbps, 6 - 18Mbps, 7 - 9Mbps
3403 * HT/VHT: MCS index
3404 */
3405
Kalle Valo5e3dd152013-06-12 20:52:10 +03003406/* Preamble types to be used with VDEV fixed rate configuration */
3407enum wmi_rate_preamble {
3408 WMI_RATE_PREAMBLE_OFDM,
3409 WMI_RATE_PREAMBLE_CCK,
3410 WMI_RATE_PREAMBLE_HT,
3411 WMI_RATE_PREAMBLE_VHT,
3412};
3413
3414/* Value to disable fixed rate setting */
3415#define WMI_FIXED_RATE_NONE (0xff)
3416
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02003417struct wmi_vdev_param_map {
3418 u32 rts_threshold;
3419 u32 fragmentation_threshold;
3420 u32 beacon_interval;
3421 u32 listen_interval;
3422 u32 multicast_rate;
3423 u32 mgmt_tx_rate;
3424 u32 slot_time;
3425 u32 preamble;
3426 u32 swba_time;
3427 u32 wmi_vdev_stats_update_period;
3428 u32 wmi_vdev_pwrsave_ageout_time;
3429 u32 wmi_vdev_host_swba_interval;
3430 u32 dtim_period;
3431 u32 wmi_vdev_oc_scheduler_air_time_limit;
3432 u32 wds;
3433 u32 atim_window;
3434 u32 bmiss_count_max;
3435 u32 bmiss_first_bcnt;
3436 u32 bmiss_final_bcnt;
3437 u32 feature_wmm;
3438 u32 chwidth;
3439 u32 chextoffset;
3440 u32 disable_htprotection;
3441 u32 sta_quickkickout;
3442 u32 mgmt_rate;
3443 u32 protection_mode;
3444 u32 fixed_rate;
3445 u32 sgi;
3446 u32 ldpc;
3447 u32 tx_stbc;
3448 u32 rx_stbc;
3449 u32 intra_bss_fwd;
3450 u32 def_keyid;
3451 u32 nss;
3452 u32 bcast_data_rate;
3453 u32 mcast_data_rate;
3454 u32 mcast_indicate;
3455 u32 dhcp_indicate;
3456 u32 unknown_dest_indicate;
3457 u32 ap_keepalive_min_idle_inactive_time_secs;
3458 u32 ap_keepalive_max_idle_inactive_time_secs;
3459 u32 ap_keepalive_max_unresponsive_time_secs;
3460 u32 ap_enable_nawds;
3461 u32 mcast2ucast_set;
3462 u32 enable_rtscts;
3463 u32 txbf;
3464 u32 packet_powersave;
3465 u32 drop_unencry;
3466 u32 tx_encap_type;
3467 u32 ap_detect_out_of_sync_sleeping_sta_time_secs;
3468};
3469
3470#define WMI_VDEV_PARAM_UNSUPPORTED 0
3471
Kalle Valo5e3dd152013-06-12 20:52:10 +03003472/* the definition of different VDEV parameters */
3473enum wmi_vdev_param {
3474 /* RTS Threshold */
3475 WMI_VDEV_PARAM_RTS_THRESHOLD = 0x1,
3476 /* Fragmentation threshold */
3477 WMI_VDEV_PARAM_FRAGMENTATION_THRESHOLD,
3478 /* beacon interval in TUs */
3479 WMI_VDEV_PARAM_BEACON_INTERVAL,
3480 /* Listen interval in TUs */
3481 WMI_VDEV_PARAM_LISTEN_INTERVAL,
3482 /* muticast rate in Mbps */
3483 WMI_VDEV_PARAM_MULTICAST_RATE,
3484 /* management frame rate in Mbps */
3485 WMI_VDEV_PARAM_MGMT_TX_RATE,
3486 /* slot time (long vs short) */
3487 WMI_VDEV_PARAM_SLOT_TIME,
3488 /* preamble (long vs short) */
3489 WMI_VDEV_PARAM_PREAMBLE,
3490 /* SWBA time (time before tbtt in msec) */
3491 WMI_VDEV_PARAM_SWBA_TIME,
3492 /* time period for updating VDEV stats */
3493 WMI_VDEV_STATS_UPDATE_PERIOD,
3494 /* age out time in msec for frames queued for station in power save */
3495 WMI_VDEV_PWRSAVE_AGEOUT_TIME,
3496 /*
3497 * Host SWBA interval (time in msec before tbtt for SWBA event
3498 * generation).
3499 */
3500 WMI_VDEV_HOST_SWBA_INTERVAL,
3501 /* DTIM period (specified in units of num beacon intervals) */
3502 WMI_VDEV_PARAM_DTIM_PERIOD,
3503 /*
3504 * scheduler air time limit for this VDEV. used by off chan
3505 * scheduler.
3506 */
3507 WMI_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT,
3508 /* enable/dsiable WDS for this VDEV */
3509 WMI_VDEV_PARAM_WDS,
3510 /* ATIM Window */
3511 WMI_VDEV_PARAM_ATIM_WINDOW,
3512 /* BMISS max */
3513 WMI_VDEV_PARAM_BMISS_COUNT_MAX,
3514 /* BMISS first time */
3515 WMI_VDEV_PARAM_BMISS_FIRST_BCNT,
3516 /* BMISS final time */
3517 WMI_VDEV_PARAM_BMISS_FINAL_BCNT,
3518 /* WMM enables/disabled */
3519 WMI_VDEV_PARAM_FEATURE_WMM,
3520 /* Channel width */
3521 WMI_VDEV_PARAM_CHWIDTH,
3522 /* Channel Offset */
3523 WMI_VDEV_PARAM_CHEXTOFFSET,
3524 /* Disable HT Protection */
3525 WMI_VDEV_PARAM_DISABLE_HTPROTECTION,
3526 /* Quick STA Kickout */
3527 WMI_VDEV_PARAM_STA_QUICKKICKOUT,
3528 /* Rate to be used with Management frames */
3529 WMI_VDEV_PARAM_MGMT_RATE,
3530 /* Protection Mode */
3531 WMI_VDEV_PARAM_PROTECTION_MODE,
3532 /* Fixed rate setting */
3533 WMI_VDEV_PARAM_FIXED_RATE,
3534 /* Short GI Enable/Disable */
3535 WMI_VDEV_PARAM_SGI,
3536 /* Enable LDPC */
3537 WMI_VDEV_PARAM_LDPC,
3538 /* Enable Tx STBC */
3539 WMI_VDEV_PARAM_TX_STBC,
3540 /* Enable Rx STBC */
3541 WMI_VDEV_PARAM_RX_STBC,
3542 /* Intra BSS forwarding */
3543 WMI_VDEV_PARAM_INTRA_BSS_FWD,
3544 /* Setting Default xmit key for Vdev */
3545 WMI_VDEV_PARAM_DEF_KEYID,
3546 /* NSS width */
3547 WMI_VDEV_PARAM_NSS,
3548 /* Set the custom rate for the broadcast data frames */
3549 WMI_VDEV_PARAM_BCAST_DATA_RATE,
3550 /* Set the custom rate (rate-code) for multicast data frames */
3551 WMI_VDEV_PARAM_MCAST_DATA_RATE,
3552 /* Tx multicast packet indicate Enable/Disable */
3553 WMI_VDEV_PARAM_MCAST_INDICATE,
3554 /* Tx DHCP packet indicate Enable/Disable */
3555 WMI_VDEV_PARAM_DHCP_INDICATE,
3556 /* Enable host inspection of Tx unicast packet to unknown destination */
3557 WMI_VDEV_PARAM_UNKNOWN_DEST_INDICATE,
3558
3559 /* The minimum amount of time AP begins to consider STA inactive */
3560 WMI_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS,
3561
3562 /*
3563 * An associated STA is considered inactive when there is no recent
3564 * TX/RX activity and no downlink frames are buffered for it. Once a
3565 * STA exceeds the maximum idle inactive time, the AP will send an
3566 * 802.11 data-null as a keep alive to verify the STA is still
3567 * associated. If the STA does ACK the data-null, or if the data-null
3568 * is buffered and the STA does not retrieve it, the STA will be
3569 * considered unresponsive
3570 * (see WMI_VDEV_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS).
3571 */
3572 WMI_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS,
3573
3574 /*
3575 * An associated STA is considered unresponsive if there is no recent
3576 * TX/RX activity and downlink frames are buffered for it. Once a STA
3577 * exceeds the maximum unresponsive time, the AP will send a
3578 * WMI_STA_KICKOUT event to the host so the STA can be deleted. */
3579 WMI_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS,
3580
3581 /* Enable NAWDS : MCAST INSPECT Enable, NAWDS Flag set */
3582 WMI_VDEV_PARAM_AP_ENABLE_NAWDS,
3583 /* Enable/Disable RTS-CTS */
3584 WMI_VDEV_PARAM_ENABLE_RTSCTS,
3585 /* Enable TXBFee/er */
3586 WMI_VDEV_PARAM_TXBF,
3587
3588 /* Set packet power save */
3589 WMI_VDEV_PARAM_PACKET_POWERSAVE,
3590
3591 /*
3592 * Drops un-encrypted packets if eceived in an encrypted connection
3593 * otherwise forwards to host.
3594 */
3595 WMI_VDEV_PARAM_DROP_UNENCRY,
3596
3597 /*
3598 * Set the encapsulation type for frames.
3599 */
3600 WMI_VDEV_PARAM_TX_ENCAP_TYPE,
3601};
3602
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02003603/* the definition of different VDEV parameters */
3604enum wmi_10x_vdev_param {
3605 /* RTS Threshold */
3606 WMI_10X_VDEV_PARAM_RTS_THRESHOLD = 0x1,
3607 /* Fragmentation threshold */
3608 WMI_10X_VDEV_PARAM_FRAGMENTATION_THRESHOLD,
3609 /* beacon interval in TUs */
3610 WMI_10X_VDEV_PARAM_BEACON_INTERVAL,
3611 /* Listen interval in TUs */
3612 WMI_10X_VDEV_PARAM_LISTEN_INTERVAL,
3613 /* muticast rate in Mbps */
3614 WMI_10X_VDEV_PARAM_MULTICAST_RATE,
3615 /* management frame rate in Mbps */
3616 WMI_10X_VDEV_PARAM_MGMT_TX_RATE,
3617 /* slot time (long vs short) */
3618 WMI_10X_VDEV_PARAM_SLOT_TIME,
3619 /* preamble (long vs short) */
3620 WMI_10X_VDEV_PARAM_PREAMBLE,
3621 /* SWBA time (time before tbtt in msec) */
3622 WMI_10X_VDEV_PARAM_SWBA_TIME,
3623 /* time period for updating VDEV stats */
3624 WMI_10X_VDEV_STATS_UPDATE_PERIOD,
3625 /* age out time in msec for frames queued for station in power save */
3626 WMI_10X_VDEV_PWRSAVE_AGEOUT_TIME,
3627 /*
3628 * Host SWBA interval (time in msec before tbtt for SWBA event
3629 * generation).
3630 */
3631 WMI_10X_VDEV_HOST_SWBA_INTERVAL,
3632 /* DTIM period (specified in units of num beacon intervals) */
3633 WMI_10X_VDEV_PARAM_DTIM_PERIOD,
3634 /*
3635 * scheduler air time limit for this VDEV. used by off chan
3636 * scheduler.
3637 */
3638 WMI_10X_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT,
3639 /* enable/dsiable WDS for this VDEV */
3640 WMI_10X_VDEV_PARAM_WDS,
3641 /* ATIM Window */
3642 WMI_10X_VDEV_PARAM_ATIM_WINDOW,
3643 /* BMISS max */
3644 WMI_10X_VDEV_PARAM_BMISS_COUNT_MAX,
3645 /* WMM enables/disabled */
3646 WMI_10X_VDEV_PARAM_FEATURE_WMM,
3647 /* Channel width */
3648 WMI_10X_VDEV_PARAM_CHWIDTH,
3649 /* Channel Offset */
3650 WMI_10X_VDEV_PARAM_CHEXTOFFSET,
3651 /* Disable HT Protection */
3652 WMI_10X_VDEV_PARAM_DISABLE_HTPROTECTION,
3653 /* Quick STA Kickout */
3654 WMI_10X_VDEV_PARAM_STA_QUICKKICKOUT,
3655 /* Rate to be used with Management frames */
3656 WMI_10X_VDEV_PARAM_MGMT_RATE,
3657 /* Protection Mode */
3658 WMI_10X_VDEV_PARAM_PROTECTION_MODE,
3659 /* Fixed rate setting */
3660 WMI_10X_VDEV_PARAM_FIXED_RATE,
3661 /* Short GI Enable/Disable */
3662 WMI_10X_VDEV_PARAM_SGI,
3663 /* Enable LDPC */
3664 WMI_10X_VDEV_PARAM_LDPC,
3665 /* Enable Tx STBC */
3666 WMI_10X_VDEV_PARAM_TX_STBC,
3667 /* Enable Rx STBC */
3668 WMI_10X_VDEV_PARAM_RX_STBC,
3669 /* Intra BSS forwarding */
3670 WMI_10X_VDEV_PARAM_INTRA_BSS_FWD,
3671 /* Setting Default xmit key for Vdev */
3672 WMI_10X_VDEV_PARAM_DEF_KEYID,
3673 /* NSS width */
3674 WMI_10X_VDEV_PARAM_NSS,
3675 /* Set the custom rate for the broadcast data frames */
3676 WMI_10X_VDEV_PARAM_BCAST_DATA_RATE,
3677 /* Set the custom rate (rate-code) for multicast data frames */
3678 WMI_10X_VDEV_PARAM_MCAST_DATA_RATE,
3679 /* Tx multicast packet indicate Enable/Disable */
3680 WMI_10X_VDEV_PARAM_MCAST_INDICATE,
3681 /* Tx DHCP packet indicate Enable/Disable */
3682 WMI_10X_VDEV_PARAM_DHCP_INDICATE,
3683 /* Enable host inspection of Tx unicast packet to unknown destination */
3684 WMI_10X_VDEV_PARAM_UNKNOWN_DEST_INDICATE,
3685
3686 /* The minimum amount of time AP begins to consider STA inactive */
3687 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS,
3688
3689 /*
3690 * An associated STA is considered inactive when there is no recent
3691 * TX/RX activity and no downlink frames are buffered for it. Once a
3692 * STA exceeds the maximum idle inactive time, the AP will send an
3693 * 802.11 data-null as a keep alive to verify the STA is still
3694 * associated. If the STA does ACK the data-null, or if the data-null
3695 * is buffered and the STA does not retrieve it, the STA will be
3696 * considered unresponsive
3697 * (see WMI_10X_VDEV_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS).
3698 */
3699 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS,
3700
3701 /*
3702 * An associated STA is considered unresponsive if there is no recent
3703 * TX/RX activity and downlink frames are buffered for it. Once a STA
3704 * exceeds the maximum unresponsive time, the AP will send a
3705 * WMI_10X_STA_KICKOUT event to the host so the STA can be deleted. */
3706 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS,
3707
3708 /* Enable NAWDS : MCAST INSPECT Enable, NAWDS Flag set */
3709 WMI_10X_VDEV_PARAM_AP_ENABLE_NAWDS,
3710
3711 WMI_10X_VDEV_PARAM_MCAST2UCAST_SET,
3712 /* Enable/Disable RTS-CTS */
3713 WMI_10X_VDEV_PARAM_ENABLE_RTSCTS,
3714
3715 WMI_10X_VDEV_PARAM_AP_DETECT_OUT_OF_SYNC_SLEEPING_STA_TIME_SECS,
Michal Kazior24c88f72014-07-25 13:32:17 +02003716
3717 /* following are available as of firmware 10.2 */
3718 WMI_10X_VDEV_PARAM_TX_ENCAP_TYPE,
3719 WMI_10X_VDEV_PARAM_CABQ_MAXDUR,
3720 WMI_10X_VDEV_PARAM_MFPTEST_SET,
3721 WMI_10X_VDEV_PARAM_RTS_FIXED_RATE,
3722 WMI_10X_VDEV_PARAM_VHT_SGIMASK,
3723 WMI_10X_VDEV_PARAM_VHT80_RATEMASK,
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02003724};
3725
Kalle Valo5e3dd152013-06-12 20:52:10 +03003726/* slot time long */
3727#define WMI_VDEV_SLOT_TIME_LONG 0x1
3728/* slot time short */
3729#define WMI_VDEV_SLOT_TIME_SHORT 0x2
3730/* preablbe long */
3731#define WMI_VDEV_PREAMBLE_LONG 0x1
3732/* preablbe short */
3733#define WMI_VDEV_PREAMBLE_SHORT 0x2
3734
3735enum wmi_start_event_param {
3736 WMI_VDEV_RESP_START_EVENT = 0,
3737 WMI_VDEV_RESP_RESTART_EVENT,
3738};
3739
3740struct wmi_vdev_start_response_event {
3741 __le32 vdev_id;
3742 __le32 req_id;
3743 __le32 resp_type; /* %WMI_VDEV_RESP_ */
3744 __le32 status;
3745} __packed;
3746
3747struct wmi_vdev_standby_req_event {
3748 /* unique id identifying the VDEV, generated by the caller */
3749 __le32 vdev_id;
3750} __packed;
3751
3752struct wmi_vdev_resume_req_event {
3753 /* unique id identifying the VDEV, generated by the caller */
3754 __le32 vdev_id;
3755} __packed;
3756
3757struct wmi_vdev_stopped_event {
3758 /* unique id identifying the VDEV, generated by the caller */
3759 __le32 vdev_id;
3760} __packed;
3761
3762/*
3763 * common structure used for simple events
3764 * (stopped, resume_req, standby response)
3765 */
3766struct wmi_vdev_simple_event {
3767 /* unique id identifying the VDEV, generated by the caller */
3768 __le32 vdev_id;
3769} __packed;
3770
3771/* VDEV start response status codes */
3772/* VDEV succesfully started */
3773#define WMI_INIFIED_VDEV_START_RESPONSE_STATUS_SUCCESS 0x0
3774
3775/* requested VDEV not found */
3776#define WMI_INIFIED_VDEV_START_RESPONSE_INVALID_VDEVID 0x1
3777
3778/* unsupported VDEV combination */
3779#define WMI_INIFIED_VDEV_START_RESPONSE_NOT_SUPPORTED 0x2
3780
Simon Wunderlich855aed12014-08-02 09:12:54 +03003781/* TODO: please add more comments if you have in-depth information */
3782struct wmi_vdev_spectral_conf_cmd {
3783 __le32 vdev_id;
3784
3785 /* number of fft samples to send (0 for infinite) */
3786 __le32 scan_count;
3787 __le32 scan_period;
3788 __le32 scan_priority;
3789
3790 /* number of bins in the FFT: 2^(fft_size - bin_scale) */
3791 __le32 scan_fft_size;
3792 __le32 scan_gc_ena;
3793 __le32 scan_restart_ena;
3794 __le32 scan_noise_floor_ref;
3795 __le32 scan_init_delay;
3796 __le32 scan_nb_tone_thr;
3797 __le32 scan_str_bin_thr;
3798 __le32 scan_wb_rpt_mode;
3799 __le32 scan_rssi_rpt_mode;
3800 __le32 scan_rssi_thr;
3801 __le32 scan_pwr_format;
3802
3803 /* rpt_mode: Format of FFT report to software for spectral scan
3804 * triggered FFTs:
3805 * 0: No FFT report (only spectral scan summary report)
3806 * 1: 2-dword summary of metrics for each completed FFT + spectral
3807 * scan summary report
3808 * 2: 2-dword summary of metrics for each completed FFT +
3809 * 1x- oversampled bins(in-band) per FFT + spectral scan summary
3810 * report
3811 * 3: 2-dword summary of metrics for each completed FFT +
3812 * 2x- oversampled bins (all) per FFT + spectral scan summary
3813 */
3814 __le32 scan_rpt_mode;
3815 __le32 scan_bin_scale;
3816 __le32 scan_dbm_adj;
3817 __le32 scan_chn_mask;
3818} __packed;
3819
3820struct wmi_vdev_spectral_conf_arg {
3821 u32 vdev_id;
3822 u32 scan_count;
3823 u32 scan_period;
3824 u32 scan_priority;
3825 u32 scan_fft_size;
3826 u32 scan_gc_ena;
3827 u32 scan_restart_ena;
3828 u32 scan_noise_floor_ref;
3829 u32 scan_init_delay;
3830 u32 scan_nb_tone_thr;
3831 u32 scan_str_bin_thr;
3832 u32 scan_wb_rpt_mode;
3833 u32 scan_rssi_rpt_mode;
3834 u32 scan_rssi_thr;
3835 u32 scan_pwr_format;
3836 u32 scan_rpt_mode;
3837 u32 scan_bin_scale;
3838 u32 scan_dbm_adj;
3839 u32 scan_chn_mask;
3840};
3841
3842#define WMI_SPECTRAL_ENABLE_DEFAULT 0
3843#define WMI_SPECTRAL_COUNT_DEFAULT 0
3844#define WMI_SPECTRAL_PERIOD_DEFAULT 35
3845#define WMI_SPECTRAL_PRIORITY_DEFAULT 1
3846#define WMI_SPECTRAL_FFT_SIZE_DEFAULT 7
3847#define WMI_SPECTRAL_GC_ENA_DEFAULT 1
3848#define WMI_SPECTRAL_RESTART_ENA_DEFAULT 0
3849#define WMI_SPECTRAL_NOISE_FLOOR_REF_DEFAULT -96
3850#define WMI_SPECTRAL_INIT_DELAY_DEFAULT 80
3851#define WMI_SPECTRAL_NB_TONE_THR_DEFAULT 12
3852#define WMI_SPECTRAL_STR_BIN_THR_DEFAULT 8
3853#define WMI_SPECTRAL_WB_RPT_MODE_DEFAULT 0
3854#define WMI_SPECTRAL_RSSI_RPT_MODE_DEFAULT 0
3855#define WMI_SPECTRAL_RSSI_THR_DEFAULT 0xf0
3856#define WMI_SPECTRAL_PWR_FORMAT_DEFAULT 0
3857#define WMI_SPECTRAL_RPT_MODE_DEFAULT 2
3858#define WMI_SPECTRAL_BIN_SCALE_DEFAULT 1
3859#define WMI_SPECTRAL_DBM_ADJ_DEFAULT 1
3860#define WMI_SPECTRAL_CHN_MASK_DEFAULT 1
3861
3862struct wmi_vdev_spectral_enable_cmd {
3863 __le32 vdev_id;
3864 __le32 trigger_cmd;
3865 __le32 enable_cmd;
3866} __packed;
3867
3868#define WMI_SPECTRAL_TRIGGER_CMD_TRIGGER 1
3869#define WMI_SPECTRAL_TRIGGER_CMD_CLEAR 2
3870#define WMI_SPECTRAL_ENABLE_CMD_ENABLE 1
3871#define WMI_SPECTRAL_ENABLE_CMD_DISABLE 2
3872
Kalle Valo5e3dd152013-06-12 20:52:10 +03003873/* Beacon processing related command and event structures */
3874struct wmi_bcn_tx_hdr {
3875 __le32 vdev_id;
3876 __le32 tx_rate;
3877 __le32 tx_power;
3878 __le32 bcn_len;
3879} __packed;
3880
3881struct wmi_bcn_tx_cmd {
3882 struct wmi_bcn_tx_hdr hdr;
3883 u8 *bcn[0];
3884} __packed;
3885
3886struct wmi_bcn_tx_arg {
3887 u32 vdev_id;
3888 u32 tx_rate;
3889 u32 tx_power;
3890 u32 bcn_len;
3891 const void *bcn;
3892};
3893
Michal Kazior748afc42014-01-23 12:48:21 +01003894enum wmi_bcn_tx_ref_flags {
3895 WMI_BCN_TX_REF_FLAG_DTIM_ZERO = 0x1,
3896 WMI_BCN_TX_REF_FLAG_DELIVER_CAB = 0x2,
3897};
3898
Michal Kazior24c88f72014-07-25 13:32:17 +02003899/* TODO: It is unclear why "no antenna" works while any other seemingly valid
3900 * chainmask yields no beacons on the air at all.
3901 */
3902#define WMI_BCN_TX_REF_DEF_ANTENNA 0
3903
Michal Kazior748afc42014-01-23 12:48:21 +01003904struct wmi_bcn_tx_ref_cmd {
3905 __le32 vdev_id;
3906 __le32 data_len;
3907 /* physical address of the frame - dma pointer */
3908 __le32 data_ptr;
3909 /* id for host to track */
3910 __le32 msdu_id;
3911 /* frame ctrl to setup PPDU desc */
3912 __le32 frame_control;
3913 /* to control CABQ traffic: WMI_BCN_TX_REF_FLAG_ */
3914 __le32 flags;
Michal Kazior24c88f72014-07-25 13:32:17 +02003915 /* introduced in 10.2 */
3916 __le32 antenna_mask;
Michal Kazior748afc42014-01-23 12:48:21 +01003917} __packed;
3918
Kalle Valo5e3dd152013-06-12 20:52:10 +03003919/* Beacon filter */
3920#define WMI_BCN_FILTER_ALL 0 /* Filter all beacons */
3921#define WMI_BCN_FILTER_NONE 1 /* Pass all beacons */
3922#define WMI_BCN_FILTER_RSSI 2 /* Pass Beacons RSSI >= RSSI threshold */
3923#define WMI_BCN_FILTER_BSSID 3 /* Pass Beacons with matching BSSID */
3924#define WMI_BCN_FILTER_SSID 4 /* Pass Beacons with matching SSID */
3925
3926struct wmi_bcn_filter_rx_cmd {
3927 /* Filter ID */
3928 __le32 bcn_filter_id;
3929 /* Filter type - wmi_bcn_filter */
3930 __le32 bcn_filter;
3931 /* Buffer len */
3932 __le32 bcn_filter_len;
3933 /* Filter info (threshold, BSSID, RSSI) */
3934 u8 *bcn_filter_buf;
3935} __packed;
3936
3937/* Capabilities and IEs to be passed to firmware */
3938struct wmi_bcn_prb_info {
3939 /* Capabilities */
3940 __le32 caps;
3941 /* ERP info */
3942 __le32 erp;
3943 /* Advanced capabilities */
3944 /* HT capabilities */
3945 /* HT Info */
3946 /* ibss_dfs */
3947 /* wpa Info */
3948 /* rsn Info */
3949 /* rrm info */
3950 /* ath_ext */
3951 /* app IE */
3952} __packed;
3953
3954struct wmi_bcn_tmpl_cmd {
3955 /* unique id identifying the VDEV, generated by the caller */
3956 __le32 vdev_id;
3957 /* TIM IE offset from the beginning of the template. */
3958 __le32 tim_ie_offset;
3959 /* beacon probe capabilities and IEs */
3960 struct wmi_bcn_prb_info bcn_prb_info;
3961 /* beacon buffer length */
3962 __le32 buf_len;
3963 /* variable length data */
3964 u8 data[1];
3965} __packed;
3966
3967struct wmi_prb_tmpl_cmd {
3968 /* unique id identifying the VDEV, generated by the caller */
3969 __le32 vdev_id;
3970 /* beacon probe capabilities and IEs */
3971 struct wmi_bcn_prb_info bcn_prb_info;
3972 /* beacon buffer length */
3973 __le32 buf_len;
3974 /* Variable length data */
3975 u8 data[1];
3976} __packed;
3977
3978enum wmi_sta_ps_mode {
3979 /* enable power save for the given STA VDEV */
3980 WMI_STA_PS_MODE_DISABLED = 0,
3981 /* disable power save for a given STA VDEV */
3982 WMI_STA_PS_MODE_ENABLED = 1,
3983};
3984
3985struct wmi_sta_powersave_mode_cmd {
3986 /* unique id identifying the VDEV, generated by the caller */
3987 __le32 vdev_id;
3988
3989 /*
3990 * Power save mode
3991 * (see enum wmi_sta_ps_mode)
3992 */
3993 __le32 sta_ps_mode;
3994} __packed;
3995
3996enum wmi_csa_offload_en {
3997 WMI_CSA_OFFLOAD_DISABLE = 0,
3998 WMI_CSA_OFFLOAD_ENABLE = 1,
3999};
4000
4001struct wmi_csa_offload_enable_cmd {
4002 __le32 vdev_id;
4003 __le32 csa_offload_enable;
4004} __packed;
4005
4006struct wmi_csa_offload_chanswitch_cmd {
4007 __le32 vdev_id;
4008 struct wmi_channel chan;
4009} __packed;
4010
4011/*
4012 * This parameter controls the policy for retrieving frames from AP while the
4013 * STA is in sleep state.
4014 *
4015 * Only takes affect if the sta_ps_mode is enabled
4016 */
4017enum wmi_sta_ps_param_rx_wake_policy {
4018 /*
4019 * Wake up when ever there is an RX activity on the VDEV. In this mode
4020 * the Power save SM(state machine) will come out of sleep by either
4021 * sending null frame (or) a data frame (with PS==0) in response to TIM
4022 * bit set in the received beacon frame from AP.
4023 */
4024 WMI_STA_PS_RX_WAKE_POLICY_WAKE = 0,
4025
4026 /*
4027 * Here the power save state machine will not wakeup in response to TIM
4028 * bit, instead it will send a PSPOLL (or) UASPD trigger based on UAPSD
4029 * configuration setup by WMISET_PS_SET_UAPSD WMI command. When all
4030 * access categories are delivery-enabled, the station will send a
4031 * UAPSD trigger frame, otherwise it will send a PS-Poll.
4032 */
4033 WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD = 1,
4034};
4035
4036/*
4037 * Number of tx frames/beacon that cause the power save SM to wake up.
4038 *
4039 * Value 1 causes the SM to wake up for every TX. Value 0 has a special
4040 * meaning, It will cause the SM to never wake up. This is useful if you want
4041 * to keep the system to sleep all the time for some kind of test mode . host
4042 * can change this parameter any time. It will affect at the next tx frame.
4043 */
4044enum wmi_sta_ps_param_tx_wake_threshold {
4045 WMI_STA_PS_TX_WAKE_THRESHOLD_NEVER = 0,
4046 WMI_STA_PS_TX_WAKE_THRESHOLD_ALWAYS = 1,
4047
4048 /*
4049 * Values greater than one indicate that many TX attempts per beacon
4050 * interval before the STA will wake up
4051 */
4052};
4053
4054/*
4055 * The maximum number of PS-Poll frames the FW will send in response to
4056 * traffic advertised in TIM before waking up (by sending a null frame with PS
4057 * = 0). Value 0 has a special meaning: there is no maximum count and the FW
4058 * will send as many PS-Poll as are necessary to retrieve buffered BU. This
4059 * parameter is used when the RX wake policy is
4060 * WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD and ignored when the RX wake
4061 * policy is WMI_STA_PS_RX_WAKE_POLICY_WAKE.
4062 */
4063enum wmi_sta_ps_param_pspoll_count {
4064 WMI_STA_PS_PSPOLL_COUNT_NO_MAX = 0,
4065 /*
4066 * Values greater than 0 indicate the maximum numer of PS-Poll frames
4067 * FW will send before waking up.
4068 */
4069};
4070
4071/*
4072 * This will include the delivery and trigger enabled state for every AC.
4073 * This is the negotiated state with AP. The host MLME needs to set this based
4074 * on AP capability and the state Set in the association request by the
4075 * station MLME.Lower 8 bits of the value specify the UAPSD configuration.
4076 */
4077#define WMI_UAPSD_AC_TYPE_DELI 0
4078#define WMI_UAPSD_AC_TYPE_TRIG 1
4079
4080#define WMI_UAPSD_AC_BIT_MASK(ac, type) \
4081 ((type == WMI_UAPSD_AC_TYPE_DELI) ? (1<<(ac<<1)) : (1<<((ac<<1)+1)))
4082
4083enum wmi_sta_ps_param_uapsd {
4084 WMI_STA_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
4085 WMI_STA_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1),
4086 WMI_STA_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2),
4087 WMI_STA_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3),
4088 WMI_STA_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4),
4089 WMI_STA_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5),
4090 WMI_STA_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6),
4091 WMI_STA_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7),
4092};
4093
4094enum wmi_sta_powersave_param {
4095 /*
4096 * Controls how frames are retrievd from AP while STA is sleeping
4097 *
4098 * (see enum wmi_sta_ps_param_rx_wake_policy)
4099 */
4100 WMI_STA_PS_PARAM_RX_WAKE_POLICY = 0,
4101
4102 /*
4103 * The STA will go active after this many TX
4104 *
4105 * (see enum wmi_sta_ps_param_tx_wake_threshold)
4106 */
4107 WMI_STA_PS_PARAM_TX_WAKE_THRESHOLD = 1,
4108
4109 /*
4110 * Number of PS-Poll to send before STA wakes up
4111 *
4112 * (see enum wmi_sta_ps_param_pspoll_count)
4113 *
4114 */
4115 WMI_STA_PS_PARAM_PSPOLL_COUNT = 2,
4116
4117 /*
4118 * TX/RX inactivity time in msec before going to sleep.
4119 *
4120 * The power save SM will monitor tx/rx activity on the VDEV, if no
4121 * activity for the specified msec of the parameter the Power save
4122 * SM will go to sleep.
4123 */
4124 WMI_STA_PS_PARAM_INACTIVITY_TIME = 3,
4125
4126 /*
4127 * Set uapsd configuration.
4128 *
4129 * (see enum wmi_sta_ps_param_uapsd)
4130 */
4131 WMI_STA_PS_PARAM_UAPSD = 4,
4132};
4133
4134struct wmi_sta_powersave_param_cmd {
4135 __le32 vdev_id;
4136 __le32 param_id; /* %WMI_STA_PS_PARAM_ */
4137 __le32 param_value;
4138} __packed;
4139
4140/* No MIMO power save */
4141#define WMI_STA_MIMO_PS_MODE_DISABLE
4142/* mimo powersave mode static*/
4143#define WMI_STA_MIMO_PS_MODE_STATIC
4144/* mimo powersave mode dynamic */
4145#define WMI_STA_MIMO_PS_MODE_DYNAMIC
4146
4147struct wmi_sta_mimo_ps_mode_cmd {
4148 /* unique id identifying the VDEV, generated by the caller */
4149 __le32 vdev_id;
4150 /* mimo powersave mode as defined above */
4151 __le32 mimo_pwrsave_mode;
4152} __packed;
4153
4154/* U-APSD configuration of peer station from (re)assoc request and TSPECs */
4155enum wmi_ap_ps_param_uapsd {
4156 WMI_AP_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
4157 WMI_AP_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1),
4158 WMI_AP_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2),
4159 WMI_AP_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3),
4160 WMI_AP_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4),
4161 WMI_AP_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5),
4162 WMI_AP_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6),
4163 WMI_AP_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7),
4164};
4165
4166/* U-APSD maximum service period of peer station */
4167enum wmi_ap_ps_peer_param_max_sp {
4168 WMI_AP_PS_PEER_PARAM_MAX_SP_UNLIMITED = 0,
4169 WMI_AP_PS_PEER_PARAM_MAX_SP_2 = 1,
4170 WMI_AP_PS_PEER_PARAM_MAX_SP_4 = 2,
4171 WMI_AP_PS_PEER_PARAM_MAX_SP_6 = 3,
4172 MAX_WMI_AP_PS_PEER_PARAM_MAX_SP,
4173};
4174
4175/*
4176 * AP power save parameter
4177 * Set a power save specific parameter for a peer station
4178 */
4179enum wmi_ap_ps_peer_param {
4180 /* Set uapsd configuration for a given peer.
4181 *
4182 * Include the delivery and trigger enabled state for every AC.
4183 * The host MLME needs to set this based on AP capability and stations
4184 * request Set in the association request received from the station.
4185 *
4186 * Lower 8 bits of the value specify the UAPSD configuration.
4187 *
4188 * (see enum wmi_ap_ps_param_uapsd)
4189 * The default value is 0.
4190 */
4191 WMI_AP_PS_PEER_PARAM_UAPSD = 0,
4192
4193 /*
4194 * Set the service period for a UAPSD capable station
4195 *
4196 * The service period from wme ie in the (re)assoc request frame.
4197 *
4198 * (see enum wmi_ap_ps_peer_param_max_sp)
4199 */
4200 WMI_AP_PS_PEER_PARAM_MAX_SP = 1,
4201
4202 /* Time in seconds for aging out buffered frames for STA in PS */
4203 WMI_AP_PS_PEER_PARAM_AGEOUT_TIME = 2,
4204};
4205
4206struct wmi_ap_ps_peer_cmd {
4207 /* unique id identifying the VDEV, generated by the caller */
4208 __le32 vdev_id;
4209
4210 /* peer MAC address */
4211 struct wmi_mac_addr peer_macaddr;
4212
4213 /* AP powersave param (see enum wmi_ap_ps_peer_param) */
4214 __le32 param_id;
4215
4216 /* AP powersave param value */
4217 __le32 param_value;
4218} __packed;
4219
4220/* 128 clients = 4 words */
4221#define WMI_TIM_BITMAP_ARRAY_SIZE 4
4222
4223struct wmi_tim_info {
4224 __le32 tim_len;
4225 __le32 tim_mcast;
4226 __le32 tim_bitmap[WMI_TIM_BITMAP_ARRAY_SIZE];
4227 __le32 tim_changed;
4228 __le32 tim_num_ps_pending;
4229} __packed;
4230
4231/* Maximum number of NOA Descriptors supported */
4232#define WMI_P2P_MAX_NOA_DESCRIPTORS 4
4233#define WMI_P2P_OPPPS_ENABLE_BIT BIT(0)
4234#define WMI_P2P_OPPPS_CTWINDOW_OFFSET 1
4235#define WMI_P2P_NOA_CHANGED_BIT BIT(0)
4236
4237struct wmi_p2p_noa_info {
4238 /* Bit 0 - Flag to indicate an update in NOA schedule
4239 Bits 7-1 - Reserved */
4240 u8 changed;
4241 /* NOA index */
4242 u8 index;
4243 /* Bit 0 - Opp PS state of the AP
4244 Bits 1-7 - Ctwindow in TUs */
4245 u8 ctwindow_oppps;
4246 /* Number of NOA descriptors */
4247 u8 num_descriptors;
4248
4249 struct wmi_p2p_noa_descriptor descriptors[WMI_P2P_MAX_NOA_DESCRIPTORS];
4250} __packed;
4251
4252struct wmi_bcn_info {
4253 struct wmi_tim_info tim_info;
4254 struct wmi_p2p_noa_info p2p_noa_info;
4255} __packed;
4256
4257struct wmi_host_swba_event {
4258 __le32 vdev_map;
4259 struct wmi_bcn_info bcn_info[1];
4260} __packed;
4261
4262#define WMI_MAX_AP_VDEV 16
4263
4264struct wmi_tbtt_offset_event {
4265 __le32 vdev_map;
4266 __le32 tbttoffset_list[WMI_MAX_AP_VDEV];
4267} __packed;
4268
Kalle Valo5e3dd152013-06-12 20:52:10 +03004269struct wmi_peer_create_cmd {
4270 __le32 vdev_id;
4271 struct wmi_mac_addr peer_macaddr;
4272} __packed;
4273
4274struct wmi_peer_delete_cmd {
4275 __le32 vdev_id;
4276 struct wmi_mac_addr peer_macaddr;
4277} __packed;
4278
4279struct wmi_peer_flush_tids_cmd {
4280 __le32 vdev_id;
4281 struct wmi_mac_addr peer_macaddr;
4282 __le32 peer_tid_bitmap;
4283} __packed;
4284
4285struct wmi_fixed_rate {
4286 /*
4287 * rate mode . 0: disable fixed rate (auto rate)
4288 * 1: legacy (non 11n) rate specified as ieee rate 2*Mbps
4289 * 2: ht20 11n rate specified as mcs index
4290 * 3: ht40 11n rate specified as mcs index
4291 */
4292 __le32 rate_mode;
4293 /*
4294 * 4 rate values for 4 rate series. series 0 is stored in byte 0 (LSB)
4295 * and series 3 is stored at byte 3 (MSB)
4296 */
4297 __le32 rate_series;
4298 /*
4299 * 4 retry counts for 4 rate series. retry count for rate 0 is stored
4300 * in byte 0 (LSB) and retry count for rate 3 is stored at byte 3
4301 * (MSB)
4302 */
4303 __le32 rate_retries;
4304} __packed;
4305
4306struct wmi_peer_fixed_rate_cmd {
4307 /* unique id identifying the VDEV, generated by the caller */
4308 __le32 vdev_id;
4309 /* peer MAC address */
4310 struct wmi_mac_addr peer_macaddr;
4311 /* fixed rate */
4312 struct wmi_fixed_rate peer_fixed_rate;
4313} __packed;
4314
4315#define WMI_MGMT_TID 17
4316
4317struct wmi_addba_clear_resp_cmd {
4318 /* unique id identifying the VDEV, generated by the caller */
4319 __le32 vdev_id;
4320 /* peer MAC address */
4321 struct wmi_mac_addr peer_macaddr;
4322} __packed;
4323
4324struct wmi_addba_send_cmd {
4325 /* unique id identifying the VDEV, generated by the caller */
4326 __le32 vdev_id;
4327 /* peer MAC address */
4328 struct wmi_mac_addr peer_macaddr;
4329 /* Tid number */
4330 __le32 tid;
4331 /* Buffer/Window size*/
4332 __le32 buffersize;
4333} __packed;
4334
4335struct wmi_delba_send_cmd {
4336 /* unique id identifying the VDEV, generated by the caller */
4337 __le32 vdev_id;
4338 /* peer MAC address */
4339 struct wmi_mac_addr peer_macaddr;
4340 /* Tid number */
4341 __le32 tid;
4342 /* Is Initiator */
4343 __le32 initiator;
4344 /* Reason code */
4345 __le32 reasoncode;
4346} __packed;
4347
4348struct wmi_addba_setresponse_cmd {
4349 /* unique id identifying the vdev, generated by the caller */
4350 __le32 vdev_id;
4351 /* peer mac address */
4352 struct wmi_mac_addr peer_macaddr;
4353 /* Tid number */
4354 __le32 tid;
4355 /* status code */
4356 __le32 statuscode;
4357} __packed;
4358
4359struct wmi_send_singleamsdu_cmd {
4360 /* unique id identifying the vdev, generated by the caller */
4361 __le32 vdev_id;
4362 /* peer mac address */
4363 struct wmi_mac_addr peer_macaddr;
4364 /* Tid number */
4365 __le32 tid;
4366} __packed;
4367
4368enum wmi_peer_smps_state {
4369 WMI_PEER_SMPS_PS_NONE = 0x0,
4370 WMI_PEER_SMPS_STATIC = 0x1,
4371 WMI_PEER_SMPS_DYNAMIC = 0x2
4372};
4373
Michal Kazior9797feb2014-02-14 14:49:48 +01004374enum wmi_peer_chwidth {
4375 WMI_PEER_CHWIDTH_20MHZ = 0,
4376 WMI_PEER_CHWIDTH_40MHZ = 1,
4377 WMI_PEER_CHWIDTH_80MHZ = 2,
4378};
4379
Kalle Valo5e3dd152013-06-12 20:52:10 +03004380enum wmi_peer_param {
4381 WMI_PEER_SMPS_STATE = 0x1, /* see %wmi_peer_smps_state */
4382 WMI_PEER_AMPDU = 0x2,
4383 WMI_PEER_AUTHORIZE = 0x3,
4384 WMI_PEER_CHAN_WIDTH = 0x4,
4385 WMI_PEER_NSS = 0x5,
4386 WMI_PEER_USE_4ADDR = 0x6
4387};
4388
4389struct wmi_peer_set_param_cmd {
4390 __le32 vdev_id;
4391 struct wmi_mac_addr peer_macaddr;
4392 __le32 param_id;
4393 __le32 param_value;
4394} __packed;
4395
4396#define MAX_SUPPORTED_RATES 128
4397
4398struct wmi_rate_set {
4399 /* total number of rates */
4400 __le32 num_rates;
4401 /*
4402 * rates (each 8bit value) packed into a 32 bit word.
4403 * the rates are filled from least significant byte to most
4404 * significant byte.
4405 */
4406 __le32 rates[(MAX_SUPPORTED_RATES/4)+1];
4407} __packed;
4408
4409struct wmi_rate_set_arg {
4410 unsigned int num_rates;
4411 u8 rates[MAX_SUPPORTED_RATES];
4412};
4413
4414/*
4415 * NOTE: It would bea good idea to represent the Tx MCS
4416 * info in one word and Rx in another word. This is split
4417 * into multiple words for convenience
4418 */
4419struct wmi_vht_rate_set {
4420 __le32 rx_max_rate; /* Max Rx data rate */
4421 __le32 rx_mcs_set; /* Negotiated RX VHT rates */
4422 __le32 tx_max_rate; /* Max Tx data rate */
4423 __le32 tx_mcs_set; /* Negotiated TX VHT rates */
4424} __packed;
4425
4426struct wmi_vht_rate_set_arg {
4427 u32 rx_max_rate;
4428 u32 rx_mcs_set;
4429 u32 tx_max_rate;
4430 u32 tx_mcs_set;
4431};
4432
4433struct wmi_peer_set_rates_cmd {
4434 /* peer MAC address */
4435 struct wmi_mac_addr peer_macaddr;
4436 /* legacy rate set */
4437 struct wmi_rate_set peer_legacy_rates;
4438 /* ht rate set */
4439 struct wmi_rate_set peer_ht_rates;
4440} __packed;
4441
4442struct wmi_peer_set_q_empty_callback_cmd {
4443 /* unique id identifying the VDEV, generated by the caller */
4444 __le32 vdev_id;
4445 /* peer MAC address */
4446 struct wmi_mac_addr peer_macaddr;
4447 __le32 callback_enable;
4448} __packed;
4449
4450#define WMI_PEER_AUTH 0x00000001
4451#define WMI_PEER_QOS 0x00000002
4452#define WMI_PEER_NEED_PTK_4_WAY 0x00000004
4453#define WMI_PEER_NEED_GTK_2_WAY 0x00000010
4454#define WMI_PEER_APSD 0x00000800
4455#define WMI_PEER_HT 0x00001000
4456#define WMI_PEER_40MHZ 0x00002000
4457#define WMI_PEER_STBC 0x00008000
4458#define WMI_PEER_LDPC 0x00010000
4459#define WMI_PEER_DYN_MIMOPS 0x00020000
4460#define WMI_PEER_STATIC_MIMOPS 0x00040000
4461#define WMI_PEER_SPATIAL_MUX 0x00200000
4462#define WMI_PEER_VHT 0x02000000
4463#define WMI_PEER_80MHZ 0x04000000
4464#define WMI_PEER_PMF 0x08000000
4465
4466/*
4467 * Peer rate capabilities.
4468 *
4469 * This is of interest to the ratecontrol
4470 * module which resides in the firmware. The bit definitions are
4471 * consistent with that defined in if_athrate.c.
4472 */
4473#define WMI_RC_DS_FLAG 0x01
4474#define WMI_RC_CW40_FLAG 0x02
4475#define WMI_RC_SGI_FLAG 0x04
4476#define WMI_RC_HT_FLAG 0x08
4477#define WMI_RC_RTSCTS_FLAG 0x10
4478#define WMI_RC_TX_STBC_FLAG 0x20
4479#define WMI_RC_RX_STBC_FLAG 0xC0
4480#define WMI_RC_RX_STBC_FLAG_S 6
4481#define WMI_RC_WEP_TKIP_FLAG 0x100
4482#define WMI_RC_TS_FLAG 0x200
4483#define WMI_RC_UAPSD_FLAG 0x400
4484
4485/* Maximum listen interval supported by hw in units of beacon interval */
4486#define ATH10K_MAX_HW_LISTEN_INTERVAL 5
4487
Michal Kazior24c88f72014-07-25 13:32:17 +02004488struct wmi_common_peer_assoc_complete_cmd {
Kalle Valo5e3dd152013-06-12 20:52:10 +03004489 struct wmi_mac_addr peer_macaddr;
4490 __le32 vdev_id;
4491 __le32 peer_new_assoc; /* 1=assoc, 0=reassoc */
4492 __le32 peer_associd; /* 16 LSBs */
4493 __le32 peer_flags;
4494 __le32 peer_caps; /* 16 LSBs */
4495 __le32 peer_listen_intval;
4496 __le32 peer_ht_caps;
4497 __le32 peer_max_mpdu;
4498 __le32 peer_mpdu_density; /* 0..16 */
4499 __le32 peer_rate_caps;
4500 struct wmi_rate_set peer_legacy_rates;
4501 struct wmi_rate_set peer_ht_rates;
4502 __le32 peer_nss; /* num of spatial streams */
4503 __le32 peer_vht_caps;
4504 __le32 peer_phymode;
4505 struct wmi_vht_rate_set peer_vht_rates;
Michal Kazior24c88f72014-07-25 13:32:17 +02004506};
4507
4508struct wmi_main_peer_assoc_complete_cmd {
4509 struct wmi_common_peer_assoc_complete_cmd cmd;
4510
Kalle Valo5e3dd152013-06-12 20:52:10 +03004511 /* HT Operation Element of the peer. Five bytes packed in 2
4512 * INT32 array and filled from lsb to msb. */
4513 __le32 peer_ht_info[2];
4514} __packed;
4515
Michal Kazior24c88f72014-07-25 13:32:17 +02004516struct wmi_10_1_peer_assoc_complete_cmd {
4517 struct wmi_common_peer_assoc_complete_cmd cmd;
4518} __packed;
4519
4520#define WMI_PEER_ASSOC_INFO0_MAX_MCS_IDX_LSB 0
4521#define WMI_PEER_ASSOC_INFO0_MAX_MCS_IDX_MASK 0x0f
4522#define WMI_PEER_ASSOC_INFO0_MAX_NSS_LSB 4
4523#define WMI_PEER_ASSOC_INFO0_MAX_NSS_MASK 0xf0
4524
4525struct wmi_10_2_peer_assoc_complete_cmd {
4526 struct wmi_common_peer_assoc_complete_cmd cmd;
4527 __le32 info0; /* WMI_PEER_ASSOC_INFO0_ */
4528} __packed;
4529
Kalle Valo5e3dd152013-06-12 20:52:10 +03004530struct wmi_peer_assoc_complete_arg {
4531 u8 addr[ETH_ALEN];
4532 u32 vdev_id;
4533 bool peer_reassoc;
4534 u16 peer_aid;
4535 u32 peer_flags; /* see %WMI_PEER_ */
4536 u16 peer_caps;
4537 u32 peer_listen_intval;
4538 u32 peer_ht_caps;
4539 u32 peer_max_mpdu;
4540 u32 peer_mpdu_density; /* 0..16 */
4541 u32 peer_rate_caps; /* see %WMI_RC_ */
4542 struct wmi_rate_set_arg peer_legacy_rates;
4543 struct wmi_rate_set_arg peer_ht_rates;
4544 u32 peer_num_spatial_streams;
4545 u32 peer_vht_caps;
4546 enum wmi_phy_mode peer_phymode;
4547 struct wmi_vht_rate_set_arg peer_vht_rates;
4548};
4549
4550struct wmi_peer_add_wds_entry_cmd {
4551 /* peer MAC address */
4552 struct wmi_mac_addr peer_macaddr;
4553 /* wds MAC addr */
4554 struct wmi_mac_addr wds_macaddr;
4555} __packed;
4556
4557struct wmi_peer_remove_wds_entry_cmd {
4558 /* wds MAC addr */
4559 struct wmi_mac_addr wds_macaddr;
4560} __packed;
4561
4562struct wmi_peer_q_empty_callback_event {
4563 /* peer MAC address */
4564 struct wmi_mac_addr peer_macaddr;
4565} __packed;
4566
4567/*
4568 * Channel info WMI event
4569 */
4570struct wmi_chan_info_event {
4571 __le32 err_code;
4572 __le32 freq;
4573 __le32 cmd_flags;
4574 __le32 noise_floor;
4575 __le32 rx_clear_count;
4576 __le32 cycle_count;
4577} __packed;
4578
Kalle Valo5a13e762014-01-20 11:01:46 +02004579struct wmi_peer_sta_kickout_event {
4580 struct wmi_mac_addr peer_macaddr;
4581} __packed;
4582
Michal Kazior2e1dea42013-07-31 10:32:40 +02004583#define WMI_CHAN_INFO_FLAG_COMPLETE BIT(0)
4584
4585/* FIXME: empirically extrapolated */
4586#define WMI_CHAN_INFO_MSEC(x) ((x) / 76595)
4587
Kalle Valo5e3dd152013-06-12 20:52:10 +03004588/* Beacon filter wmi command info */
4589#define BCN_FLT_MAX_SUPPORTED_IES 256
4590#define BCN_FLT_MAX_ELEMS_IE_LIST (BCN_FLT_MAX_SUPPORTED_IES / 32)
4591
4592struct bss_bcn_stats {
4593 __le32 vdev_id;
4594 __le32 bss_bcnsdropped;
4595 __le32 bss_bcnsdelivered;
4596} __packed;
4597
4598struct bcn_filter_stats {
4599 __le32 bcns_dropped;
4600 __le32 bcns_delivered;
4601 __le32 activefilters;
4602 struct bss_bcn_stats bss_stats;
4603} __packed;
4604
4605struct wmi_add_bcn_filter_cmd {
4606 u32 vdev_id;
4607 u32 ie_map[BCN_FLT_MAX_ELEMS_IE_LIST];
4608} __packed;
4609
4610enum wmi_sta_keepalive_method {
4611 WMI_STA_KEEPALIVE_METHOD_NULL_FRAME = 1,
4612 WMI_STA_KEEPALIVE_METHOD_UNSOLICITATED_ARP_RESPONSE = 2,
4613};
4614
4615/* note: ip4 addresses are in network byte order, i.e. big endian */
4616struct wmi_sta_keepalive_arp_resp {
4617 __be32 src_ip4_addr;
4618 __be32 dest_ip4_addr;
4619 struct wmi_mac_addr dest_mac_addr;
4620} __packed;
4621
4622struct wmi_sta_keepalive_cmd {
4623 __le32 vdev_id;
4624 __le32 enabled;
4625 __le32 method; /* WMI_STA_KEEPALIVE_METHOD_ */
4626 __le32 interval; /* in seconds */
4627 struct wmi_sta_keepalive_arp_resp arp_resp;
4628} __packed;
4629
Michal Kazior9cfbce72013-07-16 09:54:36 +02004630enum wmi_force_fw_hang_type {
4631 WMI_FORCE_FW_HANG_ASSERT = 1,
4632 WMI_FORCE_FW_HANG_NO_DETECT,
4633 WMI_FORCE_FW_HANG_CTRL_EP_FULL,
4634 WMI_FORCE_FW_HANG_EMPTY_POINT,
4635 WMI_FORCE_FW_HANG_STACK_OVERFLOW,
4636 WMI_FORCE_FW_HANG_INFINITE_LOOP,
4637};
4638
4639#define WMI_FORCE_FW_HANG_RANDOM_TIME 0xFFFFFFFF
4640
4641struct wmi_force_fw_hang_cmd {
4642 __le32 type;
4643 __le32 delay_ms;
4644} __packed;
4645
Kalle Valof118a3e2014-01-03 12:59:31 +02004646enum ath10k_dbglog_level {
4647 ATH10K_DBGLOG_LEVEL_VERBOSE = 0,
4648 ATH10K_DBGLOG_LEVEL_INFO = 1,
4649 ATH10K_DBGLOG_LEVEL_WARN = 2,
4650 ATH10K_DBGLOG_LEVEL_ERR = 3,
4651};
4652
4653/* VAP ids to enable dbglog */
4654#define ATH10K_DBGLOG_CFG_VAP_LOG_LSB 0
4655#define ATH10K_DBGLOG_CFG_VAP_LOG_MASK 0x0000ffff
4656
4657/* to enable dbglog in the firmware */
4658#define ATH10K_DBGLOG_CFG_REPORTING_ENABLE_LSB 16
4659#define ATH10K_DBGLOG_CFG_REPORTING_ENABLE_MASK 0x00010000
4660
4661/* timestamp resolution */
4662#define ATH10K_DBGLOG_CFG_RESOLUTION_LSB 17
4663#define ATH10K_DBGLOG_CFG_RESOLUTION_MASK 0x000E0000
4664
4665/* number of queued messages before sending them to the host */
4666#define ATH10K_DBGLOG_CFG_REPORT_SIZE_LSB 20
4667#define ATH10K_DBGLOG_CFG_REPORT_SIZE_MASK 0x0ff00000
4668
4669/*
4670 * Log levels to enable. This defines the minimum level to enable, this is
4671 * not a bitmask. See enum ath10k_dbglog_level for the values.
4672 */
4673#define ATH10K_DBGLOG_CFG_LOG_LVL_LSB 28
4674#define ATH10K_DBGLOG_CFG_LOG_LVL_MASK 0x70000000
4675
4676/*
4677 * Note: this is a cleaned up version of a struct firmware uses. For
4678 * example, config_valid was hidden inside an array.
4679 */
4680struct wmi_dbglog_cfg_cmd {
4681 /* bitmask to hold mod id config*/
4682 __le32 module_enable;
4683
4684 /* see ATH10K_DBGLOG_CFG_ */
4685 __le32 config_enable;
4686
4687 /* mask of module id bits to be changed */
4688 __le32 module_valid;
4689
4690 /* mask of config bits to be changed, see ATH10K_DBGLOG_CFG_ */
4691 __le32 config_valid;
4692} __packed;
4693
Kalle Valo5e3dd152013-06-12 20:52:10 +03004694#define ATH10K_RTS_MAX 2347
4695#define ATH10K_FRAGMT_THRESHOLD_MIN 540
4696#define ATH10K_FRAGMT_THRESHOLD_MAX 2346
4697
4698#define WMI_MAX_EVENT 0x1000
4699/* Maximum number of pending TXed WMI packets */
Kalle Valo5e3dd152013-06-12 20:52:10 +03004700#define WMI_SKB_HEADROOM sizeof(struct wmi_cmd_hdr)
4701
4702/* By default disable power save for IBSS */
4703#define ATH10K_DEFAULT_ATIM 0
4704
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02004705#define WMI_MAX_MEM_REQS 16
4706
4707struct wmi_svc_rdy_ev_arg {
4708 __le32 min_tx_power;
4709 __le32 max_tx_power;
4710 __le32 ht_cap;
4711 __le32 vht_cap;
4712 __le32 sw_ver0;
4713 __le32 sw_ver1;
4714 __le32 phy_capab;
4715 __le32 num_rf_chains;
4716 __le32 eeprom_rd;
4717 __le32 num_mem_reqs;
4718 const __le32 *service_map;
4719 const struct wlan_host_mem_req *mem_reqs[WMI_MAX_MEM_REQS];
4720};
4721
Kalle Valo5e3dd152013-06-12 20:52:10 +03004722struct ath10k;
4723struct ath10k_vif;
4724
4725int ath10k_wmi_attach(struct ath10k *ar);
4726void ath10k_wmi_detach(struct ath10k *ar);
4727int ath10k_wmi_wait_for_service_ready(struct ath10k *ar);
4728int ath10k_wmi_wait_for_unified_ready(struct ath10k *ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004729
Michal Kazior95bf21f2014-05-16 17:15:39 +03004730int ath10k_wmi_connect(struct ath10k *ar);
Kalle Valo666a73f32014-09-10 18:23:23 +03004731
4732struct sk_buff *ath10k_wmi_alloc_skb(struct ath10k *ar, u32 len);
4733int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, u32 cmd_id);
4734
Marek Puzyniak00f54822014-02-10 17:14:24 +01004735int ath10k_wmi_pdev_suspend_target(struct ath10k *ar, u32 suspend_opt);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004736int ath10k_wmi_pdev_resume_target(struct ath10k *ar);
4737int ath10k_wmi_pdev_set_regdomain(struct ath10k *ar, u16 rd, u16 rd2g,
Marek Puzyniak821af6a2014-03-21 17:46:57 +02004738 u16 rd5g, u16 ctl2g, u16 ctl5g,
4739 enum wmi_dfs_region dfs_reg);
Bartosz Markowski226a3392013-09-26 17:47:16 +02004740int ath10k_wmi_pdev_set_param(struct ath10k *ar, u32 id, u32 value);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004741int ath10k_wmi_cmd_init(struct ath10k *ar);
4742int ath10k_wmi_start_scan(struct ath10k *ar, const struct wmi_start_scan_arg *);
4743void ath10k_wmi_start_scan_init(struct ath10k *ar, struct wmi_start_scan_arg *);
4744int ath10k_wmi_stop_scan(struct ath10k *ar,
4745 const struct wmi_stop_scan_arg *arg);
4746int ath10k_wmi_vdev_create(struct ath10k *ar, u32 vdev_id,
4747 enum wmi_vdev_type type,
4748 enum wmi_vdev_subtype subtype,
4749 const u8 macaddr[ETH_ALEN]);
4750int ath10k_wmi_vdev_delete(struct ath10k *ar, u32 vdev_id);
4751int ath10k_wmi_vdev_start(struct ath10k *ar,
4752 const struct wmi_vdev_start_request_arg *);
4753int ath10k_wmi_vdev_restart(struct ath10k *ar,
4754 const struct wmi_vdev_start_request_arg *);
4755int ath10k_wmi_vdev_stop(struct ath10k *ar, u32 vdev_id);
4756int ath10k_wmi_vdev_up(struct ath10k *ar, u32 vdev_id, u32 aid,
4757 const u8 *bssid);
4758int ath10k_wmi_vdev_down(struct ath10k *ar, u32 vdev_id);
4759int ath10k_wmi_vdev_set_param(struct ath10k *ar, u32 vdev_id,
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02004760 u32 param_id, u32 param_value);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004761int ath10k_wmi_vdev_install_key(struct ath10k *ar,
4762 const struct wmi_vdev_install_key_arg *arg);
Simon Wunderlich855aed12014-08-02 09:12:54 +03004763int ath10k_wmi_vdev_spectral_conf(struct ath10k *ar,
4764 const struct wmi_vdev_spectral_conf_arg *arg);
4765int ath10k_wmi_vdev_spectral_enable(struct ath10k *ar, u32 vdev_id, u32 trigger,
4766 u32 enable);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004767int ath10k_wmi_peer_create(struct ath10k *ar, u32 vdev_id,
Kalle Valo5b07e072014-09-14 12:50:06 +03004768 const u8 peer_addr[ETH_ALEN]);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004769int ath10k_wmi_peer_delete(struct ath10k *ar, u32 vdev_id,
Kalle Valo5b07e072014-09-14 12:50:06 +03004770 const u8 peer_addr[ETH_ALEN]);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004771int ath10k_wmi_peer_flush(struct ath10k *ar, u32 vdev_id,
Kalle Valo5b07e072014-09-14 12:50:06 +03004772 const u8 peer_addr[ETH_ALEN], u32 tid_bitmap);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004773int ath10k_wmi_peer_set_param(struct ath10k *ar, u32 vdev_id,
4774 const u8 *peer_addr,
4775 enum wmi_peer_param param_id, u32 param_value);
4776int ath10k_wmi_peer_assoc(struct ath10k *ar,
4777 const struct wmi_peer_assoc_complete_arg *arg);
4778int ath10k_wmi_set_psmode(struct ath10k *ar, u32 vdev_id,
4779 enum wmi_sta_ps_mode psmode);
4780int ath10k_wmi_set_sta_ps_param(struct ath10k *ar, u32 vdev_id,
4781 enum wmi_sta_powersave_param param_id,
4782 u32 value);
4783int ath10k_wmi_set_ap_ps_param(struct ath10k *ar, u32 vdev_id, const u8 *mac,
4784 enum wmi_ap_ps_peer_param param_id, u32 value);
4785int ath10k_wmi_scan_chan_list(struct ath10k *ar,
4786 const struct wmi_scan_chan_list_arg *arg);
Michal Kazior748afc42014-01-23 12:48:21 +01004787int ath10k_wmi_beacon_send_ref_nowait(struct ath10k_vif *arvif);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004788int ath10k_wmi_pdev_set_wmm_params(struct ath10k *ar,
Kalle Valo5b07e072014-09-14 12:50:06 +03004789 const struct wmi_pdev_set_wmm_params_arg *arg);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004790int ath10k_wmi_request_stats(struct ath10k *ar, enum wmi_stats_id stats_id);
Michal Kazior9cfbce72013-07-16 09:54:36 +02004791int ath10k_wmi_force_fw_hang(struct ath10k *ar,
4792 enum wmi_force_fw_hang_type type, u32 delay_ms);
Bartosz Markowski5e00d312013-09-26 17:47:12 +02004793int ath10k_wmi_mgmt_tx(struct ath10k *ar, struct sk_buff *skb);
Kalle Valof118a3e2014-01-03 12:59:31 +02004794int ath10k_wmi_dbglog_cfg(struct ath10k *ar, u32 module_enable);
Kalle Valo5e3dd152013-06-12 20:52:10 +03004795
4796#endif /* _WMI_H_ */